rs6000: Add cast for int to enum conversion
[binutils-gdb.git] / gdb / ChangeLog
1 2015-10-22 Simon Marchi <simon.marchi@polymtl.ca>
2
3 * rs6000-tdep.c (variants): Add (enum bfd_architecture) cast.
4
5 2015-10-22 Simon Marchi <simon.marchi@polymtl.ca>
6
7 * mips-linux-tdep.c (mips64_linux_get_longjmp_target): Change type of
8 buf to gdb_byte*.
9 (supply_32bit_reg): Add cast.
10 (mips64_fill_gregset): Likewise.
11
12 2015-10-21 Simon Marchi <simon.marchi@polymtl.ca>
13
14 PR python/18073
15 * python/py-type.c (typy_get_composite): Allow returning a
16 function type.
17
18 2015-10-21 Keven Boell <keven.boell@intel.com>
19
20 * dwarf2read.c (set_die_type): Add read of
21 DW_AT_allocated and DW_AT_associated.
22 * f-typeprint.c: New include of typeprint.h
23 (f_print_type): Add check for allocated/associated
24 status of type.
25 (f_type_print_varspec_suffix): Add check for
26 * gdbtypes.c (create_array_type_with_stride):
27 Add check for valid data location of type in
28 case allocated or associated attributes are set.
29 Length of an array should be only calculated if
30 allocated or associated is resolved as true.
31 (is_dynamic_type_internal): Add check for allocated/
32 associated.
33 (resolve_dynamic_array): Evaluate allocated/associated
34 properties.
35 * gdbtypes.h (enum dynamic_prop_node_kind): <DYN_PROP_ALLOCATED>
36 <DYN_PROP_ASSOCIATED>: New enums.
37 (TYPE_ALLOCATED_PROP, TYPE_ASSOCIATED_PROP): New macros.
38 (type_not_allocated): New function.
39 (type_not_associated): New function.
40 * valarith.c (value_subscripted_rvalue): Add check for
41 allocated/associated.
42 * valprint.c: New include of typeprint.h.
43 (valprint_check_validity): Add check for allocated/associated.
44 (value_check_printable): Add check for allocated/
45 associated.
46 * typeprint.h (val_print_not_allocated): New function.
47 (val_print_not_associated): New function.
48 * typeprint.c (val_print_not_allocated): New function.
49 (val_print_not_associated): New function.
50
51 2015-10-21 Antoine Tremblay <antoine.tremblay@ericsson.com>
52
53 * Makefile.in: Add arm.c/o.
54 * arch/arm.c: New file.
55 * arch/arm.h: (IS_THUMB_ADDR): Move macro from arm-tdep.c.
56 (MAKE_THUMB_ADDR): Likewise.
57 (UNMAKE_THUMB_ADDR): Likewise.
58 * arm-tdep.c (int thumb_insn_size): Move to arm.c.
59 (IS_THUMB_ADDR): Move to arm.h.
60 (MAKE_THUMB_ADDR): Likewise.
61 (UNMAKE_THUMB_ADDR): Likewise.
62 * configure.tgt: Add arm.o to all ARM configs.
63
64 2015-10-21 Yao Qi <yao.qi@linaro.org>
65
66 * lib/range-stepping-support.exp (exec_cmd_expect_vCont_count):
67 Remove argument exp_vCont_s.
68 * gdb.base/range-stepping.exp: Callers updated.
69 * gdb.trace/range-stepping.exp: Likewise.
70
71 2015-10-21 Aleksandar Ristovski <aristovski@qnx.com>
72
73 * gdb/nto-tdep.c (QNX_NOTE_NAME, QNX_INFO_SECT_NAME): New defines.
74 (nto_sniff_abi_note_section): New function.
75 (nto_elf_osabi_sniffer): Use new function to recognize nto specific
76 binary.
77
78 2015-10-21 Aleksandar Ristovski <aristovski@qnx.com>
79
80 * nto-procfs.c (procfs_wait): Set stopped_flags nad stopped_pc.
81 (procfs_stopped_by_watchpoint): Use flags stored in inferior data.
82 * nto-tdep.c (nto_new_inferior_data_reg): New definition.
83 (nto_new_inferior_data, nto_inferior_data_cleanup, nto_inferior_data):
84 New functions.
85 (_initialize_nto_tdep): New forward declaration, new function.
86 * nto-tdep.h (struct nto_inferior_data): New struct.
87 (nto_inferior_data): New function declaration.
88
89 2015-10-20 Jan Kratochvil <jan.kratochvil@redhat.com>
90
91 * findvar.c (address_from_register): Check REGNUM validity.
92
93 2015-10-20 Aleksandar Ristovski <aristovski@qnx.com>
94
95 * gdb/nto-procfs.c (procfs_pid_to_exec_file): New function.
96 (init_procfs_targets): Wire new function.
97
98 2015-10-20 Aleksandar Ristovski <aristovski@qnx.com>
99
100 * nto-procfs.c (sys/auxv.h): Include.
101 (procfs_xfer_partial): Implement TARGET_OBJECT_AUXV.
102 * nto-tdep.c (nto_read_auxv_from_initial_stack): New function.
103 * nto-tdep.h (nto_read_auxv_from_initial_stack): New declaration.
104
105 2015-10-20 Aleksandar Ristovski <aristovski@qnx.com>
106
107 * nto-procfs.c (nto_procfs_path): Rename to...
108 (nodestr): ... this, and change type.
109 (nto_node): Use new variable and logic accordingly.
110 (procfs_open_1): Use new variable name. Use local buffer to construct
111 procfrs path.
112 (procfs_pidlist): Use NODESTR to construct procfs path.
113 (procfs_files_info): Use NODESTR to output meaningful text.
114 (do_attach): Construct procfs using NODESTR.
115 (procfs_create_inferior): Compare pointer to NULL.
116
117 2015-10-19 Josh Stone <jistone@redhat.com>
118
119 * linux-nat.c (linux_handle_syscall_trap): Always update entry/
120 return state, even when not actively catching syscalls at all.
121 (linux_handle_extended_wait): Mark syscall_state like an entry.
122 (wait_lwp): Set syscall_state ignored for other traps.
123 (linux_nat_filter_event): Likewise.
124
125 2015-10-19 Luis Machado <lgustavo@codesourcery.com>
126
127 * remote.c (remote_wait_as): Set rs->waiting_for_stop_reply to 0
128 when handling 'E', 'T', 'S', 'X' and 'W' packets.
129 Do not set rs->waiting_for_stop_reply back to 1.
130
131 2015-10-16 Aleksandar Ristovski <aristovski@qnx.com>
132
133 * nto-procfs.c (common/filestuff.h): Include.
134 (procfs_can_use_hw_breakpoint): Fix enum name.
135 (procfs_open_1): Fix compiler warning.
136 (procfs_pidlist): Make static.
137 (procfs_meminfo): Make static, fix type name, add missing argument.
138 (procfs_store_registers): Make static.
139 (procfs_thread_info): Remove unused function.
140 (_initialize_procfs): Forward declare.
141
142 2015-10-16 Yao Qi <yao.qi@arm.com>
143
144 * MAINTAINERS: Update my email address.
145
146 2015-10-15 Yao Qi <yao.qi@linaro.org>
147
148 * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint):
149 Call gdbarch_breakpoint_from_pc to instruction length.
150 (aarch64_linux_remove_hw_breakpoint): Likewise.
151 * common/common-regcache.h (regcache_register_size): Declare.
152 * nat/aarch64-linux-hw-point.c: Include "common-regcache.h".
153 (aarch64_point_is_aligned): Set alignment to 2 for breakpoint if
154 the process is 32bit, otherwise set alignment to 4.
155 (aarch64_handle_breakpoint): Update comments.
156 * regcache.c (regcache_register_size): New function.
157
158 2015-10-15 Aleksandar Ristovski <aristovski@qnx.com>
159
160 * gdbarch.sh (core_regset_section): Remove.
161 * gdbarch.h: Regenerate.
162
163 2015-10-14 Yao Qi <yao.qi@linaro.org>
164
165 * arch/aarch64-insn.h (struct aarch64_memory_operand): Move enum
166 out of it.
167 (enum aarch64_memory_operand_type): New.
168
169 2015-10-13 David Edelsohn <dje.gcc@gmail.com>
170
171 * xcoffread.c (dwarf2_xcoff_names): Add .dwmac and .dwpbtyp.
172
173 2015-10-13 Pedro Alves <palves@redhat.com>
174
175 * ada-lang.c (ada_enum_name): Constify local.
176 * ada-typeprint.c (print_range_bound): Constify locals.
177 * c-varobj.c (c_describe_child): Likewise.
178 * cli/cli-setshow.c (do_set_command): Likewise.
179 * gdb_vecs.c (delim_string_to_char_ptr_vec_append): Likewise.
180 * dwarf2read.c (find_file_and_directory): Likewise.
181 (anonymous_struct_prefix, dwarf2_name): Likewise.
182 * gnu-v3-abi.c (gnuv3_rtti_type): Likewise.
183 * go-lang.c (unpack_mangled_go_symbol): Likewise.
184 * jv-typeprint.c (java_type_print_base): Likewise.
185 * ser-tcp.c (net_open): Likewise.
186 * symfile.c (deduce_language_from_filename): Likewise.
187 * symtab.c (gdb_mangle_name): Likewise.
188 * tui/tui-io.c (tui_redisplay_readline): Likewise.
189
190 2015-10-13 Pedro Alves <palves@redhat.com>
191
192 * infrun.c (restore_execution_direction): New function.
193 (fetch_inferior_event): Use it instead of
194 make_cleanup_restore_integer.
195 (execution_direction): Change type to enum
196 exec_direction_kind.
197 * infrun.h (execution_direction): Likewise.
198
199 2015-10-13 Pedro Alves <palves@redhat.com>
200
201 * ada-lang.c (ada_value_primitive_packed_val): Constify
202 locals. Use value_contents_writeable. Remove casts.
203
204 2015-10-13 Pedro Alves <palves@redhat.com>
205
206 * ada-lang.c (ada_value_primitive_packed_val): Add casts to malloc
207 and alloca calls.
208
209 2015-10-13 Simon Marchi <simon.marchi@polymtl.ca>
210
211 * lm32-tdep.c (lm32_push_dummy_call): Replace call to
212 write_memory with write_memory_unsigned_integer.
213
214 2015-10-13 Simon Marchi <simon.marchi@polymtl.ca>
215
216 * solib-dsbt.c (cmp_name): Constify arguments.
217 * solib-frv.c (cmp_name): Likewise.
218 * solib-svr4.c (svr4_create_solib_event_breakpoints): Likewise.
219 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Likewise.
220 (bfd_lookup_symbol_from_dyn_symtab): Likewise.
221 (gdb_bfd_lookup_symbol): Likewise.
222 * solib.h (gdb_bfd_lookup_symbol): Likewise.
223 (gdb_bfd_lookup_symbol_from_symtab): Likewise.
224
225 2015-10-12 Andrew Burgess <andrew.burgess@embecosm.com>
226
227 * stack.c (parse_frame_specification): Remove message parameter,
228 replace with fixed string in function body, update function
229 comment.
230 (frame_info): Remove message to parse_frame_specification.
231 (select_frame_command): Likewise.
232
233 2015-10-12 Andrew Burgess <andrew.burgess@embecosm.com>
234
235 * stack.c (parse_frame_specification): Delete.
236 (parse_frame_specification_1): Rename to
237 parse_frame_specification.
238 (frame_info): Use parse_frame_specification.
239 (select_frame_command): Likewise.
240 (return_command): Use select_frame and print_stack_frame rather
241 than frame_command and select_frame_command.
242 (func_command): Use get_current_frame rather than
243 parse_frame_specification.
244
245 2015-10-12 Andrew Burgess <andrew.burgess@embecosm.com>
246
247 * stack.c (func_command): Return early when there is no ARG
248 string.
249
250 2015-10-12 Andrew Burgess <andrew.burgess@embecosm.com>
251
252 * stack.c: Include safe-ctype.h not ctype.h.
253 (parse_frame_specification): Use ISSPACE not isspace.
254 (backtrace_command): Use TOLOWER not tolower.
255
256 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
257
258 * mep-tdep.c (current_me_module): Add cast.
259 (mep_gdbarch_init): Likewise.
260
261 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
262
263 * m32c-tdep.c (m32c_move_reg_t): Replace with...
264 (m32c_write_reg_t): ...this and...
265 (m32c_read_reg_t): ...this.
266 (struct m32c_reg): Update types of read and write.
267 (m32c_raw_read): Change declaration type to m32c_read_reg_t and
268 adjust definition.
269 (m32c_banked_read): Likewise.
270 (m32c_sb_read): Likewise.
271 (m32c_part_read): Likewise.
272 (m32c_cat_read): Likewise.
273 (m32c_r3r2r1r0_read): Likewise.
274 (m32c_raw_write): Change declaration type to m32c_write_reg_t
275 and adjust definition.
276 (m32c_banked_write): Likewise.
277 (m32c_sb_write): Likewise.
278 (m32c_part_write): Likewise.
279 (m32c_cat_write): Likewise.
280 (m32c_r3r2r1r0_write): Likewise.
281
282 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
283
284 * aarch64-linux-tdep.c (aarch64_linux_syscall_record): Add cast.
285
286 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
287
288 * aarch64-linux-tdep.c (aarch64_canonicalize_syscall): Return
289 gdb_sys_no_syscall instead of -1.
290
291 2015-10-12 Yao Qi <yao.qi@linaro.org>
292
293 * NEWS: Mention the change.
294
295 2015-10-12 Yao Qi <yao.qi@linaro.org>
296
297 * arch/aarch64-insn.c (emit_load_store): Rename to ...
298 (aarch64_emit_load_store): ... it. All callers updated.
299
300 2015-10-12 Yao Qi <yao.qi@linaro.org>
301
302 * arch/aarch64-insn.c (emit_insn): Rename to ...
303 (aarch64_emit_insn): ... it. All callers updated.
304
305 2015-10-12 Yao Qi <yao.qi@linaro.org>
306
307 * aarch64-linux-tdep.c: Include arch-utils.h.
308 (aarch64_linux_init_abi): Call set_gdbarch_max_insn_length,
309 set_gdbarch_displaced_step_copy_insn,
310 set_gdbarch_displaced_step_fixup,
311 set_gdbarch_displaced_step_free_closure,
312 set_gdbarch_displaced_step_location,
313 and set_gdbarch_displaced_step_hw_singlestep.
314 * aarch64-tdep.c (struct displaced_step_closure): New.
315 (struct aarch64_displaced_step_data): New.
316 (aarch64_displaced_step_b): New function.
317 (aarch64_displaced_step_b_cond): Likewise.
318 (aarch64_register): Likewise.
319 (aarch64_displaced_step_cb): Likewise.
320 (aarch64_displaced_step_tb): Likewise.
321 (aarch64_displaced_step_adr): Likewise.
322 (aarch64_displaced_step_ldr_literal): Likewise.
323 (aarch64_displaced_step_others): Likewise.
324 (aarch64_displaced_step_copy_insn): Likewise.
325 (aarch64_displaced_step_fixup): Likewise.
326 (aarch64_displaced_step_hw_singlestep): Likewise.
327 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): New macro.
328 (aarch64_displaced_step_copy_insn): Declare.
329 (aarch64_displaced_step_fixup): Declare.
330 (aarch64_displaced_step_hw_singlestep): Declare.
331 * arch/aarch64-insn.c (emit_insn): Moved from
332 gdbserver/linux-aarch64-low.c.
333 (emit_load_store): Likewise.
334 * arch/aarch64-insn.h (enum aarch64_opcodes): Moved from
335 gdbserver/linux-aarch64-low.c.
336 (struct aarch64_register): Likewise.
337 (struct aarch64_memory_operand): Likewise.
338 (ENCODE): Likewise.
339 (can_encode_int32): New macro.
340 (emit_b, emit_bcond, emit_cb, emit_ldr, emit_ldrsw): Likewise.
341 (emit_tb, emit_nop): Likewise.
342 (emit_insn): Declare.
343 (emit_load_store): Declare.
344
345 2015-10-12 Yao Qi <yao.qi@linaro.org>
346
347 * arch/aarch64-insn.c (aarch64_decode_ldr_literal): Moved from
348 gdbserver/linux-aarch64-low.c.
349 (aarch64_relocate_instruction): Likewise.
350 * arch/aarch64-insn.h (aarch64_decode_ldr_literal): Declare.
351 (struct aarch64_insn_data): Moved from
352 gdbserver/linux-aarch64-low.c.
353 (struct aarch64_insn_visitor): Likewise.
354 (aarch64_relocate_instruction): Declare.
355
356 2015-10-12 Pierre-Marie de Rodat <derodat@adacore.com>
357
358 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT>: If
359 EVAL_AVOID_SIDE_EFFECTS mode, forward the VALUE_LVAL attribute
360 to the returned value.
361
362 2015-10-09 Joel Brobecker <brobecker@adacore.com>
363
364 * ada-lang.c (ada_unpack_from_contents): Add guard that unpacked
365 is large enough for BIT_SIZE. Update function comment.
366
367 2015-10-09 Joel Brobecker <brobecker@adacore.com>
368
369 * ada-lang.c (ada_value_primitive_packed_val): Move
370 src_len variable to local block where used. Override
371 BIT_SIZE if bigger than size of resolved type.
372
373 2015-10-09 Joel Brobecker <brobecker@adacore.com>
374
375 * gdbtypes.h (is_scalar_type): Add extern declaration.
376 * gdbtypes.c (is_scalar_type): Make non-static.
377 * ada-lang.c (ada_value_primitive_packed_val): Use is_scalar_type
378 to compute IS_SCALAR instead of doing it ourselves.
379
380 2015-10-09 Joel Brobecker <brobecker@adacore.com>
381
382 * ada-lang.c (ada_value_primitive_packed_val): Rework handling
383 of case where TYPE is dynamic.
384
385 2015-10-09 Joel Brobecker <brobecker@adacore.com>
386
387 * ada-lang.c (ada_unpack_from_contents): New function,
388 extracted from ada_value_primitive_packed_val.
389 (ada_value_primitive_packed_val): Replace extracted out code
390 by call to ada_unpack_from_contents.
391
392 2015-10-09 Joel Brobecker <brobecker@adacore.com>
393
394 * ada-lang.c (ada_value_primitive_packed_val): Reorder local
395 variable declarations.
396
397 2015-10-09 Joel Brobecker <brobecker@adacore.com>
398
399 * ada-lang.c (ada_value_primitive_packed_val): Change the type
400 of local variables src and unpacked to "gdb_type *" instead of
401 "unsigned char *".
402
403 2015-10-09 Joel Brobecker <brobecker@adacore.com>
404
405 * ada-lang.c (ada_value_primitive_packed_val): Make the name
406 of various local variables more explicit and consistent.
407 No real code change otherwise.
408
409 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
410
411 * i386-tdep.h (struct gdbarch_tdep): Change type of
412 register_reggroup_p to gdbarch_register_reggroup_p_ftype.
413
414 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
415
416 * cris-tdep.c (struct instruction_environment): Change type of
417 byte_order to enum bfd_endian.
418
419 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
420
421 * arm-linux-tdep.c (arm_canonicalize_syscall): Add
422 enum gdb_syscall casts.
423
424 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
425
426 * aarch64-tdep.c (stack_item_t): Change type of data to gdb_byte*.
427 * arm-tdep.c (struct stack_item): Likewise.
428 (push_stack_item): Add gdb_byte* cast.
429 * avr-tdep.c (struct stack_item): Change type of data to gdb_byte*.
430 (push_stack_item): Add gdb_byte* cast.
431 * cli/cli-dump.c (dump_memory_to_file): Change type of buf to gdb_byte*
432 and add cast.
433 * cris-tdep.c (struct stack_item): Change type of data to gdb_byte*.
434 (push_stack_item): Add gdb_byte* cast.
435 * gcore.c (gcore_copy_callback): Change type of memhunk to gdb_byte* and
436 add cast.
437 * gdbtypes.h (print_scalar_formatted): Change type of first parameter to
438 gdb_byte*.
439 * h8300-tdep.c (h8300_extract_return_value): Change type of valbuf to
440 gdb_byte* and remove unnecessary cast.
441 (h8300h_extract_return_value): Likewise.
442 (h8300_store_return_value): Change type of valbuf to gdb_byte*.
443 (h8300h_store_return_value): Likewise.
444 * iq2000-tdep.c (iq2000_extract_return_value): Change type of valbuf to
445 gdb_byte* and remove unnecessary cast.
446 * jit.c (jit_reader_try_read_symtab): Change type of gdb_mem to gdb_byte*
447 and add cast.
448 * m32r-tdep.c (m32r_store_return_value): Change type of valbuf to
449 gdb_byte* and remove unnecessary cast.
450 (m32r_extract_return_value): Change type of dst to gdb_byte* and remove
451 valbuf.
452 * mep-tdep.c (mep_pseudo_cr32_read): Change type of buf to gdb_byte*.
453 (mep_pseudo_cr64_read): Likewise.
454 (mep_pseudo_csr_write): Likewise.
455 (mep_pseudo_cr32_write): Likewise.
456 (mep_pseudo_cr64_write): Likewise.
457 * mi/mi-main.c (mi_cmd_data_write_memory): Change type of buffer to
458 gdb_byte* and add cast.
459 * moxie-tdep.c (moxie_store_return_value): Change type of valbuf to
460 gdb_byte* and remove unnecessary cast.
461 (moxie_extract_return_value): Change type of dst to gdb_byte* and remove
462 valbuf.
463 * p-valprint.c (print_scalar_formatted): Change type of valaddr to
464 gdb_byte*.
465 * printcmd.c (void): Likewise.
466 * python/py-inferior.c (infpy_read_memory): Change type of buffer to
467 gdb_byte* and add cast.
468 (infpy_write_memory): Likewise.
469 (infpy_search_memory): Likewise.
470 * regcache.c (regcache_raw_write_signed): Change type of buf to gdb_byte*
471 and add cast.
472 (regcache_raw_write_unsigned): Likewise.
473 (regcache_cooked_write_signed): Likewise.
474 (regcache_cooked_write_unsigned): Likewise.
475 * sh64-tdep.c (h64_extract_return_value): Change type of valbuf to
476 gdb_byte*.
477
478 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
479
480 * fbsd-tdep.c (fbsd_collect_regset_section_cb): Add cast.
481 * linux-tdep.c (linux_collect_regset_section_cb_data): Likewise.
482
483 2015-10-09 Eli Zaretskii <eliz@gnu.org>
484
485 * stack.c (print_stack_frame):
486 * utils.c (printchar): Fix typos in commentary.
487
488 2015-10-08 Iain Buclaw <ibuclaw@gdcproject.org>
489
490 * d-exp.y: (UnaryExpression): Support `type.sizeof' expressions.
491 (PostfixExpression): Support `expr.sizeof' expressions.
492 (PrimaryExpression): Support `typeof(expr)' expressions.
493
494 2015-10-08 Maciej W. Rozycki <macro@imgtec.com>
495
496 * MAINTAINERS: Update my email address.
497
498 2015-10-08 Markus Metzger <markus.t.metzger@intel.com>
499
500 * record-btrace.c (record_btrace_resume): Fix void return.
501
502 2015-10-07 Yao Qi <yao.qi@linaro.org>
503
504 * aarch64-tdep.c: Include opcode/aarch64.h.
505 (submask): Move it above.
506 (bit): Likewise.
507 (bits): Likewise.
508 (aarch64_software_single_step): Call aarch64_decode_insn.
509 Decode instruction by aarch64_inst instead of using
510 aarch64_decode_bcond and decode_masked_match.
511
512 2015-10-06 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
513
514 * cli/cli-dump.c (restore_command): Parse load_offset (bias) as address
515 only when the file is binary.
516
517 2015-10-02 James Bowman <james.bowman@ftdichip.com>
518
519 * ft32-tdep.c (ft32_analyze_prologue): Add function prolog
520 subroutine handling.
521
522 2015-10-01 Simon Marchi <simon.marchi@ericsson.com>
523
524 * common/vec.h (VEC_OP (T,cleanup)): Add pointer cast.
525
526 2015-09-30 Doug Evans <dje@google.com>
527
528 * dwarf2read.c (setup_type_unit_groups): Add comment.
529
530 2015-09-30 Pedro Alves <palves@redhat.com>
531
532 * linux-nat.c (linux_nat_always_non_stop_p): Always return 1.
533 * x86-linux-nat.c (x86_linux_always_non_stop_p): Delete.
534 (x86_linux_create_target): Don't install
535 x86_linux_always_non_stop_p.
536
537 2015-09-30 Don Breazeal <donb@codesourcery.com>
538
539 * remote.c (remote_parse_stop_reply): Call strprefix instead
540 of strncmp.
541
542 2015-09-30 Simon Marchi <simon.marchi@ericsson.com>
543
544 * gdbarch.sh (struct gdbarch_info): Change tdep_info's type to void *.
545 * gdbarch.h: Regenerate.
546 * i386-tdep.c (i386_gdbarch_init): Remove cast to
547 struct gdbarch_tdep_info *.
548 * mips-tdep.c (mips_gdbarch_init): Likewise.
549 * ppc-linux-tdep (ppu2spu_sniffer): Likewise.
550 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
551 * spu-multiarch.c (spu_gdbarch): Likewise.
552
553 2015-09-30 Kevin Buettner <kevinb@redhat.com>
554
555 * infcmd.c (finish_command_fsm_should_stop): Don't attempt to
556 record a NULL value.
557
558 2015-09-29 Kevin Buettner <kevinb@redhat.com>
559
560 * msp430-tdep.c (msp430_push_dummy_call): Treat reference, struct,
561 and union arguments the same as pointer arguments when determining
562 size of argument.
563
564 2015-09-29 James Bowman <james.bowman@ftdichip.com>
565
566 * ft32-tdep.c: #include "opcode/ft32.h".
567 Delete local macros IS_PUSH, PUSH_REG, IS_LINK, LINK_SIZE.
568 (ft32_analyze_prologue): Use FT32_* macros.
569
570 2015-09-28 Simon Marchi <simon.marchi@ericsson.com>
571
572 * cli/cli-script.c (read_next_line): Fix stdout -> stdin in
573 comment.
574
575 2015-09-28 Doug Evans <dje@google.com>
576
577 * MAINTAINERS: Add Iain Buclaw as D language maintainer.
578
579 2015-09-28 Doug Evans <dje@google.com>
580
581 * common/filestuff.c (make_cleanup_close): Update comment.
582
583 2015-09-26 Simon Marchi <simon.marchi@polymtl.ca>
584
585 * btrace.c (parse_xml_btrace_block): Fix cast of
586 xml_find_attribute's return value.
587 * memory-map.c (memory_map_start_memory): Likewise.
588 * solib-svr4.c (library_list_start_library): Likewise.
589 * solib-target.c (library_list_start_segment): Likewise.
590 (library_list_start_section): Likewise.
591 * tracepoint.c (traceframe_info_start_memory): Likewise.
592
593 2015-09-26 Iain Buclaw <ibuclaw@gdcproject.org>
594
595 * d-namespace.c (d_lookup_symbol): New arg langdef.
596 All callers updated. Support looking up symbol as a primitive type.
597 (lookup_module_scope): New arg langdef. All callers updated.
598 Call d_lookup_symbol directly for simple bare symbols.
599
600 2015-09-25 Simon Marchi <simon.marchi@ericsson.com>
601
602 * macrocmd.c (print_macro_callback): Add cast(s).
603 * macrotab.c (macro_bcache_str): Likewise.
604 (new_macro_definition): Likewise.
605 * main.c (captured_main): Likewise.
606 * maint.c (print_bfd_section_info): Likewise.
607 * mdebugread.c (mdebug_build_psymtabs): Likewise.
608 (basic_type): Likewise.
609 * memattr.c (mem_region_cmp): Likewise.
610 * memory-map.c (memory_map_start_memory): Likewise.
611 (memory_map_end_memory): Likewise.
612 (memory_map_start_property): Likewise.
613 (memory_map_end_property): Likewise.
614 (clear_result): Likewise.
615 * memrange.c (compare_mem_ranges): Likewise.
616 * mep-tdep.c (mep_analyze_frame_prologue): Likewise.
617 * mi/mi-cmd-var.c (mi_cmd_var_update_iter): Likewise.
618 * mi/mi-console.c (mi_console_file_delete): Likewise.
619 (mi_console_file_fputs): Likewise.
620 (mi_console_raw_packet): Likewise.
621 (mi_console_file_flush): Likewise.
622 (mi_console_set_raw): Likewise.
623 * mi/mi-interp.c (mi_interpreter_resume): Likewise.
624 (mi_new_thread): Likewise.
625 (mi_thread_exit): Likewise.
626 (mi_record_changed): Likewise.
627 (mi_inferior_added): Likewise.
628 (mi_inferior_appeared): Likewise.
629 (mi_inferior_exit): Likewise.
630 (mi_inferior_removed): Likewise.
631 (mi_interp_data): Likewise.
632 (mi_on_normal_stop): Likewise.
633 (mi_traceframe_changed): Likewise.
634 (mi_tsv_created): Likewise.
635 (mi_tsv_deleted): Likewise.
636 (mi_tsv_modified): Likewise.
637 (mi_breakpoint_created): Likewise.
638 (mi_breakpoint_deleted): Likewise.
639 (mi_breakpoint_modified): Likewise.
640 (mi_output_running_pid): Likewise.
641 (mi_inferior_count): Likewise.
642 (mi_solib_loaded): Likewise.
643 (mi_solib_unloaded): Likewise.
644 (mi_command_param_changed): Likewise.
645 (mi_memory_changed): Likewise.
646 (report_initial_inferior): Likewise.
647 (mi_ui_out): Likewise.
648 (mi_set_logging): Likewise.
649 * mi/mi-main.c (collect_cores): Likewise.
650 (print_one_inferior): Likewise.
651 (free_vector_of_ints): Likewise.
652 (free_splay_tree): Likewise.
653 (mi_execute_command): Likewise.
654 * mi/mi-out.c (mi_table_body): Likewise.
655 (mi_table_end): Likewise.
656 (mi_table_header): Likewise.
657 (mi_begin): Likewise.
658 (mi_end): Likewise.
659 (mi_field_int): Likewise.
660 (mi_field_string): Likewise.
661 (mi_field_fmt): Likewise.
662 (mi_flush): Likewise.
663 (mi_redirect): Likewise.
664 (field_separator): Likewise.
665 (mi_open): Likewise.
666 (mi_close): Likewise.
667 (mi_out_buffered): Likewise.
668 (mi_out_rewind): Likewise.
669 (mi_out_put): Likewise.
670 (mi_version): Likewise.
671 (mi_out_data_dtor): Likewise.
672 * mi/mi-parse.c (mi_parse_cleanup): Likewise.
673 * microblaze-tdep.c (microblaze_frame_cache): Likewise.
674 * minidebug.c (lzma_open): Likewise.
675 (lzma_pread): Likewise.
676 (lzma_close): Likewise.
677 (lzma_stat): Likewise.
678 * mips-linux-tdep.c (mips_linux_init_abi): Likewise.
679 * mips-sde-tdep.c (mips_sde_frame_cache): Likewise.
680 (mips_sde_elf_osabi_sniff_abi_tag_sections): Likewise.
681 * mips-tdep.c (mips_insn16_frame_cache): Likewise.
682 (mips_micro_frame_cache): Likewise.
683 (mips_insn32_frame_cache): Likewise.
684 (mips_stub_frame_cache): Likewise.
685 (gdb_print_insn_mips): Likewise.
686 (value_of_mips_user_reg): Likewise.
687 (mips_gdbarch_init): Likewise.
688 * mips64obsd-tdep.c (mips64obsd_supply_gregset): Likewise.
689 * mipsnbsd-tdep.c (mipsnbsd_supply_fpregset): Likewise.
690 (mipsnbsd_supply_gregset): Likewise.
691 * mn10300-linux-tdep.c (am33_supply_fpregset_method): Likewise.
692 (am33_collect_gregset_method): Likewise.
693 (am33_collect_fpregset_method): Likewise.
694 * mn10300-tdep.c (mn10300_analyze_frame_prologue): Likewise.
695 * moxie-tdep.c (moxie_frame_cache): Likewise.
696 * msp430-tdep.c (msp430_get_opcode_byte): Likewise.
697 (msp430_analyze_frame_prologue): Likewise.
698 * mt-tdep.c (mt_frame_unwind_cache): Likewise.
699 * nios2-linux-tdep.c (nios2_supply_gregset): Likewise.
700 (nios2_collect_gregset): Likewise.
701 * nios2-tdep.c (nios2_frame_unwind_cache): Likewise.
702 (nios2_stub_frame_cache): Likewise.
703 * objc-lang.c (find_methods): Likewise.
704 * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
705 (get_objfile_pspace_data): Likewise.
706 (get_objfile_bfd_data): Likewise.
707 (objfile_bfd_data_free): Likewise.
708 (add_to_objfile_sections): Likewise.
709 (do_free_objfile_cleanup): Likewise.
710 (resume_section_map_updates_cleanup): Likewise.
711 * opencl-lang.c (builtin_opencl_type): Likewise.
712 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Likewise.
713 * osdata.c (osdata_start_osdata): Likewise.
714 (osdata_start_item): Likewise.
715 (osdata_start_column): Likewise.
716 (osdata_end_column): Likewise.
717 (clear_parsing_data): Likewise.
718 (osdata_free_cleanup): Likewise.
719 * parse.c (type_stack_cleanup): Likewise.
720 (exp_uses_objfile_iter): Likewise.
721 * ppc-linux-tdep.c (ppc_linux_supply_gregset): Likewise.
722 (ppc_linux_collect_gregset): Likewise.
723 (ppu2spu_prev_arch): Likewise.
724 (ppu2spu_this_id): Likewise.
725 (ppu2spu_prev_register): Likewise.
726 (ppu2spu_unwind_register): Likewise.
727 (ppu2spu_sniffer): Likewise.
728 (ppu2spu_dealloc_cache): Likewise.
729 (ppc_linux_init_abi): Likewise.
730 * ppcfbsd-tdep.c (ppcfbsd_sigtramp_frame_cache): Likewise.
731 * ppcobsd-tdep.c (ppcobsd_sigtramp_frame_cache): Likewise.
732 * progspace.c (restore_program_space): Likewise.
733 * psymtab.c (find_pc_sect_psymtab): Likewise.
734 (compare_psymbols): Likewise.
735 (psymbol_bcache_full): Likewise.
736 (allocate_psymtab): Likewise.
737 (discard_psymtabs_upto): Likewise.
738 * python/py-block.c (set_block): Likewise.
739 (del_objfile_blocks): Likewise.
740 * python/py-breakpoint.c (build_bp_list): Likewise.
741 * python/py-inferior.c (inferior_to_inferior_object): Likewise.
742 (build_inferior_list): Likewise.
743 (py_free_inferior): Likewise.
744 * python/py-objfile.c (py_free_objfile): Likewise.
745 (objfile_to_objfile_object): Likewise.
746 * python/py-prettyprint.c (py_restore_tstate): Likewise.
747 * python/py-progspace.c (py_free_pspace): Likewise.
748 (pspace_to_pspace_object): Likewise.
749 * python/py-symbol.c (set_symbol): Likewise.
750 (del_objfile_symbols): Likewise.
751 * python/py-symtab.c (set_sal): Likewise.
752 (set_symtab): Likewise.
753 (del_objfile_symtab): Likewise.
754 (del_objfile_sal): Likewise.
755 * python/py-type.c (save_objfile_types): Likewise.
756 (set_type): Likewise.
757 * python/py-unwind.c (pyuw_prev_register): Likewise.
758 (pyuw_on_new_gdbarch): Likewise.
759 * python/py-utils.c (py_decref): Likewise.
760 (py_xdecref): Likewise.
761 (gdb_py_generic_dict): Likewise.
762 * python/py-xmethods.c (gdbpy_free_xmethod_worker_data): Likewise.
763 (gdbpy_clone_xmethod_worker_data): Likewise.
764 (gdbpy_get_xmethod_arg_types): Likewise.
765 (gdbpy_get_xmethod_result_type): Likewise.
766 (gdbpy_invoke_xmethod): Likewise.
767 * python/python.c (gdbpy_apply_type_printers): Likewise.
768 (gdbpy_free_type_printers): Likewise.
769 * record-btrace.c (record_btrace_disable_callback): Likewise.
770 (bfcache_hash): Likewise.
771 (bfcache_eq): Likewise.
772 (btrace_get_frame_function): Likewise.
773 (record_btrace_frame_unwind_stop_reason): Likewise.
774 (record_btrace_frame_this_id): Likewise.
775 (record_btrace_frame_prev_register): Likewise.
776 (record_btrace_frame_dealloc_cache): Likewise.
777 * record-full.c (record_full_message_wrapper): Likewise.
778 (record_full_save_cleanups): Likewise.
779 * regcache.c (regcache_descr): Likewise.
780 (do_regcache_xfree): Likewise.
781 (do_regcache_invalidate): Likewise.
782 (do_cooked_read): Likewise.
783 (regcache_transfer_regset): Likewise.
784 * reggroups.c (reggroup_add): Likewise.
785 (reggroup_next): Likewise.
786 (reggroup_prev): Likewise.
787 * remote-fileio.c (do_remote_fileio_request): Likewise.
788 * remote-notif.c (remote_async_get_pending_events_handler): Likewise.
789 (do_notif_event_xfree): Likewise.
790 * remote.c (get_remote_arch_state): Likewise.
791 (remote_pspace_data_cleanup): Likewise.
792 (get_remote_exec_file): Likewise.
793 (set_pspace_remote_exec_file): Likewise.
794 (compare_pnums): Likewise.
795 (clear_threads_listing_context): Likewise.
796 (remote_newthread_step): Likewise.
797 (start_thread): Likewise.
798 (end_thread): Likewise.
799 (remove_child_of_pending_fork): Likewise.
800 (remove_stop_reply_for_inferior): Likewise.
801 (remove_stop_reply_of_remote_state): Likewise.
802 (remote_notif_remove_once_on_match): Likewise.
803 (stop_reply_match_ptid_and_ws): Likewise.
804 (kill_child_of_pending_fork): Likewise.
805 (register_remote_g_packet_guess): Likewise.
806 (remote_read_description_p): Likewise.
807 (remote_read_description): Likewise.
808 (free_actions_list_cleanup_wrapper): Likewise.
809 (remote_async_serial_handler): Likewise.
810 * rl78-tdep.c (rl78_get_opcode_byte): Likewise.
811 (rl78_analyze_frame_prologue): Likewise.
812 * rs6000-tdep.c (ppc_supply_gregset): Likewise.
813 (ppc_supply_fpregset): Likewise.
814 (ppc_supply_vsxregset): Likewise.
815 (ppc_supply_vrregset): Likewise.
816 (ppc_collect_gregset): Likewise.
817 (ppc_collect_fpregset): Likewise.
818 (ppc_collect_vsxregset): Likewise.
819 (ppc_collect_vrregset): Likewise.
820 (e500_move_ev_register): Likewise.
821 (do_regcache_raw_write): Likewise.
822 (rs6000_frame_cache): Likewise.
823 (rs6000_epilogue_frame_cache): Likewise.
824 (rs6000_gdbarch_init): Likewise.
825 * rx-tdep.c (rx_get_opcode_byte): Likewise.
826 (rx_analyze_frame_prologue): Likewise.
827 (rx_frame_type): Likewise.
828 (rx_frame_sniffer_common): Likewise.
829 * s390-linux-tdep.c (s390_check_for_saved): Likewise.
830 (s390_frame_unwind_cache): Likewise.
831 (s390_stub_frame_unwind_cache): Likewise.
832 (s390_sigtramp_frame_unwind_cache): Likewise.
833 * score-tdep.c (score_make_prologue_cache): Likewise.
834 * sentinel-frame.c (sentinel_frame_prev_register): Likewise.
835 (sentinel_frame_prev_arch): Likewise.
836 * ser-base.c (fd_event): Likewise.
837 (push_event): Likewise.
838 (ser_base_write): Likewise.
839 * ser-pipe.c (pipe_close): Likewise.
840 * serial.c (serial_write): Likewise.
841 * sh-tdep.c (sh_frame_cache): Likewise.
842 (sh_stub_this_id): Likewise.
843 * sh64-tdep.c (sh64_frame_cache): Likewise.
844 * solib-aix.c (get_solib_aix_inferior_data): Likewise.
845 (library_list_start_library): Likewise.
846 (library_list_start_list): Likewise.
847 (solib_aix_free_library_list): Likewise.
848 * solib-darwin.c (get_darwin_info): Likewise.
849 * solib-dsbt.c (get_dsbt_info): Likewise.
850 * solib-spu.c (append_ocl_sos): Likewise.
851 * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
852 (get_svr4_info): Likewise.
853 (library_list_start_library): Likewise.
854 (svr4_library_list_start_list): Likewise.
855 (hash_probe_and_action): Likewise.
856 (equal_probe_and_action): Likewise.
857 (svr4_update_solib_event_breakpoint): Likewise.
858 (set_solib_svr4_fetch_link_map_offsets): Likewise.
859 (svr4_fetch_link_map_offsets): Likewise.
860 (svr4_have_link_map_offsets): Likewise.
861 * solib-target.c (library_list_start_segment): Likewise.
862 (library_list_start_section): Likewise.
863 (library_list_start_library): Likewise.
864 (library_list_end_library): Likewise.
865 (library_list_start_list): Likewise.
866 (solib_target_free_library_list): Likewise.
867 * solib.c (solib_ops): Likewise.
868 (set_solib_ops): Likewise.
869 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_cache): Likewise.
870 * sparc-tdep.c (sparc_frame_cache): Likewise.
871 (sparc32_frame_cache): Likewise.
872 (sparc32_supply_gregset): Likewise.
873 (sparc32_collect_gregset): Likewise.
874 (sparc32_supply_fpregset): Likewise.
875 (sparc32_collect_fpregset): Likewise.
876 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_cache): Likewise.
877 * sparc64-tdep.c (sparc64_supply_gregset): Likewise.
878 (sparc64_collect_gregset): Likewise.
879 (sparc64_supply_fpregset): Likewise.
880 (sparc64_collect_fpregset): Likewise.
881 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_cache): Likewise.
882 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_cache): Likewise.
883 * sparc64obsd-tdep.c (sparc64obsd_frame_cache): Likewise.
884 (sparc64obsd_trapframe_cache): Likewise.
885 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_cache): Likewise.
886 * sparcobsd-tdep.c (sparc32obsd_sigtramp_frame_cache): Likewise.
887 * spu-multiarch.c (spu_gdbarch): Likewise.
888 * spu-tdep.c (spu_frame_unwind_cache): Likewise.
889 (spu2ppu_prev_arch): Likewise.
890 (spu2ppu_this_id): Likewise.
891 (spu2ppu_prev_register): Likewise.
892 (spu2ppu_dealloc_cache): Likewise.
893 (spu_dis_asm_print_address): Likewise.
894 (gdb_print_insn_spu): Likewise.
895 (spu_get_overlay_table): Likewise.
896 * stabsread.c (rs6000_builtin_type): Likewise.
897 * stack.c (do_print_variable_and_value): Likewise.
898 * stap-probe.c (get_stap_base_address_1): Likewise.
899 * symfile-debug.c (debug_qf_has_symbols): Likewise.
900 (debug_qf_find_last_source_symtab): Likewise.
901 (debug_qf_forget_cached_source_info): Likewise.
902 (debug_qf_map_symtabs_matching_filename): Likewise.
903 (debug_qf_lookup_symbol): Likewise.
904 (debug_qf_print_stats): Likewise.
905 (debug_qf_dump): Likewise.
906 (debug_qf_relocate): Likewise.
907 (debug_qf_expand_symtabs_for_function): Likewise.
908 (debug_qf_expand_all_symtabs): Likewise.
909 (debug_qf_expand_symtabs_with_fullname): Likewise.
910 (debug_qf_map_matching_symbols): Likewise.
911 (debug_qf_expand_symtabs_matching): Likewise.
912 (debug_qf_find_pc_sect_compunit_symtab): Likewise.
913 (debug_qf_map_symbol_filenames): Likewise.
914 (debug_sym_get_probes): Likewise.
915 (debug_sym_new_init): Likewise.
916 (debug_sym_init): Likewise.
917 (debug_sym_read): Likewise.
918 (debug_sym_read_psymbols): Likewise.
919 (debug_sym_finish): Likewise.
920 (debug_sym_offsets): Likewise.
921 (debug_sym_read_linetable): Likewise.
922 (debug_sym_relocate): Likewise.
923 (uninstall_symfile_debug_logging): Likewise.
924 * symfile-mem.c (symbol_file_add_from_memory_wrapper): Likewise.
925 * symfile.c (place_section): Likewise.
926 (add_section_size_callback): Likewise.
927 (load_progress): Likewise.
928 (load_section_callback): Likewise.
929 (clear_memory_write_data): Likewise.
930 (allocate_symtab): Likewise.
931 * symmisc.c (maintenance_expand_file_matcher): Likewise.
932 * symtab.c (lookup_symtab_callback): Likewise.
933 (hash_demangled_name_entry): Likewise.
934 (eq_demangled_name_entry): Likewise.
935 (get_symbol_cache): Likewise.
936 (symbol_cache_cleanup): Likewise.
937 (set_symbol_cache_size): Likewise.
938 (symbol_cache_flush): Likewise.
939 (maintenance_print_symbol_cache): Likewise.
940 (maintenance_print_symbol_cache_statistics): Likewise.
941 (delete_filename_seen_cache): Likewise.
942 (output_partial_symbol_filename): Likewise.
943 (search_symbols_file_matches): Likewise.
944 (search_symbols_name_matches): Likewise.
945 (do_free_completion_list): Likewise.
946 (maybe_add_partial_symtab_filename): Likewise.
947 (get_main_info): Likewise.
948 (main_info_cleanup): Likewise.
949 * target-dcache.c (target_dcache_cleanup): Likewise.
950 (target_dcache_init_p): Likewise.
951 (target_dcache_invalidate): Likewise.
952 (target_dcache_get): Likewise.
953 (target_dcache_get_or_init): Likewise.
954 * target-descriptions.c (target_find_description): Likewise.
955 (tdesc_find_type): Likewise.
956 (tdesc_data_cleanup): Likewise.
957 (tdesc_find_arch_register): Likewise.
958 (tdesc_register_name): Likewise.
959 (tdesc_register_type): Likewise.
960 (tdesc_register_reggroup_p): Likewise.
961 (set_tdesc_pseudo_register_name): Likewise.
962 (set_tdesc_pseudo_register_type): Likewise.
963 (set_tdesc_pseudo_register_reggroup_p): Likewise.
964 (tdesc_use_registers): Likewise.
965 (free_target_description): Likewise.
966 * target-memory.c (compare_block_starting_address): Likewise.
967 (cleanup_request_data): Likewise.
968 (cleanup_write_requests_vector): Likewise.
969 * target.c (open_target): Likewise.
970 (cleanup_restore_target_terminal): Likewise.
971 (free_memory_read_result_vector): Likewise.
972 * thread.c (disable_thread_stack_temporaries): Likewise.
973 (finish_thread_state_cleanup): Likewise.
974 (do_restore_current_thread_cleanup): Likewise.
975 (restore_current_thread_cleanup_dtor): Likewise.
976 (set_thread_refcount): Likewise.
977 (tp_array_compar): Likewise.
978 (do_captured_thread_select): Likewise.
979 * tic6x-tdep.c (tic6x_frame_unwind_cache): Likewise.
980 (tic6x_stub_this_id): Likewise.
981 * tilegx-tdep.c (tilegx_frame_cache): Likewise.
982 * top.c (do_restore_instream_cleanup): Likewise.
983 (gdb_readline_wrapper_cleanup): Likewise.
984 (kill_or_detach): Likewise.
985 (print_inferior_quit_action): Likewise.
986 * tracefile-tfile.c (match_blocktype): Likewise.
987 (build_traceframe_info): Likewise.
988 * tracefile.c (trace_file_writer_xfree): Likewise.
989 * tracepoint.c (memrange_cmp): Likewise.
990 (do_collect_symbol): Likewise.
991 (do_clear_collection_list): Likewise.
992 (do_restore_current_traceframe_cleanup): Likewise.
993 (restore_current_traceframe_cleanup_dtor): Likewise.
994 (free_current_marker): Likewise.
995 (traceframe_info_start_memory): Likewise.
996 (traceframe_info_start_tvar): Likewise.
997 (free_result): Likewise.
998 * tramp-frame.c (tramp_frame_cache): Likewise.
999 * tui/tui-file.c (tui_file_delete): Likewise.
1000 (tui_fileopen): Likewise.
1001 (tui_sfileopen): Likewise.
1002 (tui_file_isatty): Likewise.
1003 (tui_file_rewind): Likewise.
1004 (tui_file_put): Likewise.
1005 (tui_file_fputs): Likewise.
1006 (tui_file_get_strbuf): Likewise.
1007 (tui_file_adjust_strbuf): Likewise.
1008 (tui_file_flush): Likewise.
1009 * tui/tui-layout.c (make_command_window): Likewise.
1010 (make_data_window): Likewise.
1011 (show_source_disasm_command): Likewise.
1012 (show_data): Likewise.
1013 (make_source_or_disasm_window): Likewise.
1014 (show_source_or_disasm_and_command): Likewise.
1015 * tui/tui-out.c (tui_field_int): Likewise.
1016 (tui_field_string): Likewise.
1017 (tui_field_fmt): Likewise.
1018 (tui_text): Likewise.
1019 * typeprint.c (hash_typedef_field): Likewise.
1020 (eq_typedef_field): Likewise.
1021 (do_free_typedef_hash): Likewise.
1022 (copy_typedef_hash_element): Likewise.
1023 (do_free_global_table): Likewise.
1024 (find_global_typedef): Likewise.
1025 (find_typedef_in_hash): Likewise.
1026 * ui-file.c (ui_file_write_for_put): Likewise.
1027 (do_ui_file_xstrdup): Likewise.
1028 (mem_file_delete): Likewise.
1029 (mem_file_rewind): Likewise.
1030 (mem_file_put): Likewise.
1031 (mem_file_write): Likewise.
1032 (stdio_file_delete): Likewise.
1033 (stdio_file_flush): Likewise.
1034 (stdio_file_read): Likewise.
1035 (stdio_file_write): Likewise.
1036 (stdio_file_write_async_safe): Likewise.
1037 (stdio_file_fputs): Likewise.
1038 (stdio_file_isatty): Likewise.
1039 (stdio_file_fseek): Likewise.
1040 (tee_file_delete): Likewise.
1041 (tee_file_flush): Likewise.
1042 (tee_file_write): Likewise.
1043 (tee_file_fputs): Likewise.
1044 (tee_file_isatty): Likewise.
1045 * ui-out.c (do_cleanup_table_end): Likewise.
1046 (do_cleanup_end): Likewise.
1047 * user-regs.c (user_reg_add): Likewise.
1048 (user_reg_map_name_to_regnum): Likewise.
1049 (usernum_to_user_reg): Likewise.
1050 (maintenance_print_user_registers): Likewise.
1051 * utils.c (do_bfd_close_cleanup): Likewise.
1052 (do_fclose_cleanup): Likewise.
1053 (do_obstack_free): Likewise.
1054 (do_ui_file_delete): Likewise.
1055 (do_ui_out_redirect_pop): Likewise.
1056 (do_free_section_addr_info): Likewise.
1057 (restore_integer): Likewise.
1058 (do_unpush_target): Likewise.
1059 (do_htab_delete_cleanup): Likewise.
1060 (do_restore_ui_file): Likewise.
1061 (do_value_free): Likewise.
1062 (do_free_so): Likewise.
1063 (free_current_contents): Likewise.
1064 (do_regfree_cleanup): Likewise.
1065 (core_addr_hash): Likewise.
1066 (core_addr_eq): Likewise.
1067 (do_free_char_ptr_vec): Likewise.
1068 * v850-tdep.c (v850_frame_cache): Likewise.
1069 * varobj.c (do_free_variable_cleanup): Likewise.
1070 * vax-tdep.c (vax_supply_gregset): Likewise.
1071 (vax_frame_cache): Likewise.
1072 * vaxobsd-tdep.c (vaxobsd_sigtramp_frame_cache): Likewise.
1073 * xml-support.c (gdb_xml_body_text): Likewise.
1074 (gdb_xml_values_cleanup): Likewise.
1075 (gdb_xml_start_element): Likewise.
1076 (gdb_xml_start_element_wrapper): Likewise.
1077 (gdb_xml_end_element): Likewise.
1078 (gdb_xml_end_element_wrapper): Likewise.
1079 (gdb_xml_cleanup): Likewise.
1080 (gdb_xml_fetch_external_entity): Likewise.
1081 (gdb_xml_parse_attr_enum): Likewise.
1082 (xinclude_start_include): Likewise.
1083 (xinclude_end_include): Likewise.
1084 (xml_xinclude_default): Likewise.
1085 (xml_xinclude_start_doctype): Likewise.
1086 (xml_xinclude_end_doctype): Likewise.
1087 (xml_xinclude_cleanup): Likewise.
1088 (xml_fetch_content_from_file): Likewise.
1089 * xml-syscall.c (free_syscalls_info): Likewise.
1090 (syscall_start_syscall): Likewise.
1091 * xml-tdesc.c (tdesc_end_arch): Likewise.
1092 (tdesc_end_osabi): Likewise.
1093 (tdesc_end_compatible): Likewise.
1094 (tdesc_start_target): Likewise.
1095 (tdesc_start_feature): Likewise.
1096 (tdesc_start_reg): Likewise.
1097 (tdesc_start_union): Likewise.
1098 (tdesc_start_struct): Likewise.
1099 (tdesc_start_flags): Likewise.
1100 (tdesc_start_field): Likewise.
1101 (tdesc_start_vector): Likewise.
1102 (fetch_available_features_from_target): Likewise.
1103 * xstormy16-tdep.c (xstormy16_frame_cache): Likewise.
1104 * xtensa-tdep.c (xtensa_supply_gregset): Likewise.
1105 (xtensa_frame_cache): Likewise.
1106 (xtensa_frame_prev_register): Likewise.
1107 (xtensa_extract_return_value): Likewise.
1108
1109 2015-09-25 Simon Marchi <simon.marchi@ericsson.com>
1110
1111 * aarch64-tdep.c (aarch64_make_prologue_cache): Add cast(s).
1112 (aarch64_make_stub_cache): Likewise.
1113 (value_of_aarch64_user_reg): Likewise.
1114 * ada-lang.c (ada_inferior_data_cleanup): Likewise.
1115 (get_ada_inferior_data): Likewise.
1116 (get_ada_pspace_data): Likewise.
1117 (ada_pspace_data_cleanup): Likewise.
1118 (ada_complete_symbol_matcher): Likewise.
1119 (ada_exc_search_name_matches): Likewise.
1120 * ada-tasks.c (get_ada_tasks_pspace_data): Likewise.
1121 (get_ada_tasks_inferior_data): Likewise.
1122 * addrmap.c (addrmap_mutable_foreach_worker): Likewise.
1123 (splay_obstack_alloc): Likewise.
1124 (splay_obstack_free): Likewise.
1125 * alpha-linux-tdep.c (alpha_linux_supply_gregset): Likewise.
1126 (alpha_linux_collect_gregset): Likewise.
1127 (alpha_linux_supply_fpregset): Likewise.
1128 (alpha_linux_collect_fpregset): Likewise.
1129 * alpha-mdebug-tdep.c (alpha_mdebug_frame_unwind_cache): Likewise.
1130 * alpha-tdep.c (alpha_lds): Likewise.
1131 (alpha_sts): Likewise.
1132 (alpha_sigtramp_frame_unwind_cache): Likewise.
1133 (alpha_heuristic_frame_unwind_cache): Likewise.
1134 (alpha_supply_int_regs): Likewise.
1135 (alpha_fill_int_regs): Likewise.
1136 (alpha_supply_fp_regs): Likewise.
1137 (alpha_fill_fp_regs): Likewise.
1138 * alphanbsd-tdep.c (alphanbsd_supply_fpregset): Likewise.
1139 (alphanbsd_aout_supply_gregset): Likewise.
1140 (alphanbsd_supply_gregset): Likewise.
1141 * amd64-linux-tdep.c (amd64_linux_init_abi): Likewise.
1142 (amd64_x32_linux_init_abi): Likewise.
1143 * amd64-nat.c (amd64_supply_native_gregset): Likewise.
1144 (amd64_collect_native_gregset): Likewise.
1145 * amd64-tdep.c (amd64_frame_cache): Likewise.
1146 (amd64_sigtramp_frame_cache): Likewise.
1147 (amd64_epilogue_frame_cache): Likewise.
1148 (amd64_supply_fxsave): Likewise.
1149 (amd64_supply_xsave): Likewise.
1150 (amd64_collect_fxsave): Likewise.
1151 (amd64_collect_xsave): Likewise.
1152 * amd64-windows-tdep.c (amd64_windows_frame_cache): Likewise.
1153 * amd64obsd-tdep.c (amd64obsd_trapframe_cache): Likewise.
1154 * arm-linux-tdep.c (arm_linux_supply_gregset): Likewise.
1155 (arm_linux_collect_gregset): Likewise.
1156 (arm_linux_supply_nwfpe): Likewise.
1157 (arm_linux_collect_nwfpe): Likewise.
1158 (arm_linux_supply_vfp): Likewise.
1159 (arm_linux_collect_vfp): Likewise.
1160 * arm-tdep.c (arm_find_mapping_symbol): Likewise.
1161 (arm_prologue_unwind_stop_reason): Likewise.
1162 (arm_prologue_this_id): Likewise.
1163 (arm_prologue_prev_register): Likewise.
1164 (arm_exidx_data_free): Likewise.
1165 (arm_find_exidx_entry): Likewise.
1166 (arm_stub_this_id): Likewise.
1167 (arm_m_exception_this_id): Likewise.
1168 (arm_m_exception_prev_register): Likewise.
1169 (arm_normal_frame_base): Likewise.
1170 (gdb_print_insn_arm): Likewise.
1171 (arm_objfile_data_free): Likewise.
1172 (arm_record_special_symbol): Likewise.
1173 (value_of_arm_user_reg): Likewise.
1174 * armbsd-tdep.c (armbsd_supply_fpregset): Likewise.
1175 (armbsd_supply_gregset): Likewise.
1176 * auto-load.c (auto_load_pspace_data_cleanup): Likewise.
1177 (get_auto_load_pspace_data): Likewise.
1178 (hash_loaded_script_entry): Likewise.
1179 (eq_loaded_script_entry): Likewise.
1180 (clear_section_scripts): Likewise.
1181 (collect_matching_scripts): Likewise.
1182 * auxv.c (auxv_inferior_data_cleanup): Likewise.
1183 (get_auxv_inferior_data): Likewise.
1184 * avr-tdep.c (avr_frame_unwind_cache): Likewise.
1185 * ax-general.c (do_free_agent_expr_cleanup): Likewise.
1186 * bfd-target.c (target_bfd_xfer_partial): Likewise.
1187 (target_bfd_xclose): Likewise.
1188 (target_bfd_get_section_table): Likewise.
1189 * bfin-tdep.c (bfin_frame_cache): Likewise.
1190 * block.c (find_block_in_blockvector): Likewise.
1191 (call_site_for_pc): Likewise.
1192 (block_find_non_opaque_type_preferred): Likewise.
1193 * break-catch-sig.c (signal_catchpoint_insert_location): Likewise.
1194 (signal_catchpoint_remove_location): Likewise.
1195 (signal_catchpoint_breakpoint_hit): Likewise.
1196 (signal_catchpoint_print_one): Likewise.
1197 (signal_catchpoint_print_mention): Likewise.
1198 (signal_catchpoint_print_recreate): Likewise.
1199 * break-catch-syscall.c (get_catch_syscall_inferior_data): Likewise.
1200 * breakpoint.c (do_cleanup_counted_command_line): Likewise.
1201 (bp_location_compare_addrs): Likewise.
1202 (get_first_locp_gte_addr): Likewise.
1203 (check_tracepoint_command): Likewise.
1204 (do_map_commands_command): Likewise.
1205 (get_breakpoint_objfile_data): Likewise.
1206 (free_breakpoint_probes): Likewise.
1207 (do_captured_breakpoint_query): Likewise.
1208 (compare_breakpoints): Likewise.
1209 (bp_location_compare): Likewise.
1210 (bpstat_remove_breakpoint_callback): Likewise.
1211 (do_delete_breakpoint_cleanup): Likewise.
1212 * bsd-uthread.c (bsd_uthread_set_supply_uthread): Likewise.
1213 (bsd_uthread_set_collect_uthread): Likewise.
1214 (bsd_uthread_activate): Likewise.
1215 (bsd_uthread_fetch_registers): Likewise.
1216 (bsd_uthread_store_registers): Likewise.
1217 * btrace.c (check_xml_btrace_version): Likewise.
1218 (parse_xml_btrace_block): Likewise.
1219 (parse_xml_btrace_pt_config_cpu): Likewise.
1220 (parse_xml_btrace_pt_raw): Likewise.
1221 (parse_xml_btrace_pt): Likewise.
1222 (parse_xml_btrace_conf_bts): Likewise.
1223 (parse_xml_btrace_conf_pt): Likewise.
1224 (do_btrace_data_cleanup): Likewise.
1225 * c-typeprint.c (find_typedef_for_canonicalize): Likewise.
1226 * charset.c (cleanup_iconv): Likewise.
1227 (do_cleanup_iterator): Likewise.
1228 * cli-out.c (cli_uiout_dtor): Likewise.
1229 (cli_table_begin): Likewise.
1230 (cli_table_body): Likewise.
1231 (cli_table_end): Likewise.
1232 (cli_table_header): Likewise.
1233 (cli_begin): Likewise.
1234 (cli_end): Likewise.
1235 (cli_field_int): Likewise.
1236 (cli_field_skip): Likewise.
1237 (cli_field_string): Likewise.
1238 (cli_field_fmt): Likewise.
1239 (cli_spaces): Likewise.
1240 (cli_text): Likewise.
1241 (cli_message): Likewise.
1242 (cli_wrap_hint): Likewise.
1243 (cli_flush): Likewise.
1244 (cli_redirect): Likewise.
1245 (out_field_fmt): Likewise.
1246 (field_separator): Likewise.
1247 (cli_out_set_stream): Likewise.
1248 * cli/cli-cmds.c (compare_symtabs): Likewise.
1249 * cli/cli-dump.c (call_dump_func): Likewise.
1250 (restore_section_callback): Likewise.
1251 * cli/cli-script.c (clear_hook_in_cleanup): Likewise.
1252 (do_restore_user_call_depth): Likewise.
1253 (do_free_command_lines_cleanup): Likewise.
1254 * coff-pe-read.c (get_section_vmas): Likewise.
1255 (pe_as16): Likewise.
1256 (pe_as32): Likewise.
1257 * coffread.c (coff_symfile_read): Likewise.
1258 * common/agent.c (agent_look_up_symbols): Likewise.
1259 * common/filestuff.c (do_close_cleanup): Likewise.
1260 * common/format.c (free_format_pieces_cleanup): Likewise.
1261 * common/vec.c (vec_o_reserve): Likewise.
1262 * compile/compile-c-support.c (print_one_macro): Likewise.
1263 * compile/compile-c-symbols.c (hash_symbol_error): Likewise.
1264 (eq_symbol_error): Likewise.
1265 (del_symbol_error): Likewise.
1266 (error_symbol_once): Likewise.
1267 (gcc_convert_symbol): Likewise.
1268 (gcc_symbol_address): Likewise.
1269 (hash_symname): Likewise.
1270 (eq_symname): Likewise.
1271 * compile/compile-c-types.c (hash_type_map_instance): Likewise.
1272 (eq_type_map_instance): Likewise.
1273 (insert_type): Likewise.
1274 (convert_type): Likewise.
1275 * compile/compile-object-load.c (munmap_listp_free_cleanup): Likewise.
1276 (setup_sections): Likewise.
1277 (link_hash_table_free): Likewise.
1278 (copy_sections): Likewise.
1279 * compile/compile-object-run.c (do_module_cleanup): Likewise.
1280 * compile/compile.c (compile_print_value): Likewise.
1281 (do_rmdir): Likewise.
1282 (cleanup_compile_instance): Likewise.
1283 (cleanup_unlink_file): Likewise.
1284 * completer.c (free_completion_tracker): Likewise.
1285 * corelow.c (add_to_spuid_list): Likewise.
1286 * cp-namespace.c (reset_directive_searched): Likewise.
1287 * cp-support.c (reset_directive_searched): Likewise.
1288 * cris-tdep.c (cris_sigtramp_frame_unwind_cache): Likewise.
1289 (cris_frame_unwind_cache): Likewise.
1290 * d-lang.c (builtin_d_type): Likewise.
1291 * d-namespace.c (reset_directive_searched): Likewise.
1292 * dbxread.c (dbx_free_symfile_info): Likewise.
1293 (do_free_bincl_list_cleanup): Likewise.
1294 * disasm.c (hash_dis_line_entry): Likewise.
1295 (eq_dis_line_entry): Likewise.
1296 (dis_asm_print_address): Likewise.
1297 (fprintf_disasm): Likewise.
1298 (do_ui_file_delete): Likewise.
1299 * doublest.c (convert_floatformat_to_doublest): Likewise.
1300 * dummy-frame.c (pop_dummy_frame_bpt): Likewise.
1301 (dummy_frame_prev_register): Likewise.
1302 (dummy_frame_this_id): Likewise.
1303 * dwarf2-frame-tailcall.c (cache_hash): Likewise.
1304 (cache_eq): Likewise.
1305 (cache_find): Likewise.
1306 (tailcall_frame_this_id): Likewise.
1307 (dwarf2_tailcall_prev_register_first): Likewise.
1308 (tailcall_frame_prev_register): Likewise.
1309 (tailcall_frame_dealloc_cache): Likewise.
1310 (tailcall_frame_prev_arch): Likewise.
1311 * dwarf2-frame.c (dwarf2_frame_state_free): Likewise.
1312 (dwarf2_frame_set_init_reg): Likewise.
1313 (dwarf2_frame_init_reg): Likewise.
1314 (dwarf2_frame_set_signal_frame_p): Likewise.
1315 (dwarf2_frame_signal_frame_p): Likewise.
1316 (dwarf2_frame_set_adjust_regnum): Likewise.
1317 (dwarf2_frame_adjust_regnum): Likewise.
1318 (clear_pointer_cleanup): Likewise.
1319 (dwarf2_frame_cache): Likewise.
1320 (find_cie): Likewise.
1321 (dwarf2_frame_find_fde): Likewise.
1322 * dwarf2expr.c (dwarf_expr_address_type): Likewise.
1323 (free_dwarf_expr_context_cleanup): Likewise.
1324 * dwarf2loc.c (locexpr_find_frame_base_location): Likewise.
1325 (locexpr_get_frame_base): Likewise.
1326 (loclist_find_frame_base_location): Likewise.
1327 (loclist_get_frame_base): Likewise.
1328 (dwarf_expr_dwarf_call): Likewise.
1329 (dwarf_expr_get_base_type): Likewise.
1330 (dwarf_expr_push_dwarf_reg_entry_value): Likewise.
1331 (dwarf_expr_get_obj_addr): Likewise.
1332 (entry_data_value_coerce_ref): Likewise.
1333 (entry_data_value_copy_closure): Likewise.
1334 (entry_data_value_free_closure): Likewise.
1335 (get_frame_address_in_block_wrapper): Likewise.
1336 (dwarf2_evaluate_property): Likewise.
1337 (dwarf2_compile_property_to_c): Likewise.
1338 (needs_frame_read_addr_from_reg): Likewise.
1339 (needs_frame_get_reg_value): Likewise.
1340 (needs_frame_frame_base): Likewise.
1341 (needs_frame_frame_cfa): Likewise.
1342 (needs_frame_tls_address): Likewise.
1343 (needs_frame_dwarf_call): Likewise.
1344 (needs_dwarf_reg_entry_value): Likewise.
1345 (get_ax_pc): Likewise.
1346 (locexpr_read_variable): Likewise.
1347 (locexpr_read_variable_at_entry): Likewise.
1348 (locexpr_read_needs_frame): Likewise.
1349 (locexpr_describe_location): Likewise.
1350 (locexpr_tracepoint_var_ref): Likewise.
1351 (locexpr_generate_c_location): Likewise.
1352 (loclist_read_variable): Likewise.
1353 (loclist_read_variable_at_entry): Likewise.
1354 (loclist_describe_location): Likewise.
1355 (loclist_tracepoint_var_ref): Likewise.
1356 (loclist_generate_c_location): Likewise.
1357 * dwarf2read.c (line_header_hash_voidp): Likewise.
1358 (line_header_eq_voidp): Likewise.
1359 (dwarf2_has_info): Likewise.
1360 (dwarf2_get_section_info): Likewise.
1361 (locate_dwz_sections): Likewise.
1362 (hash_file_name_entry): Likewise.
1363 (eq_file_name_entry): Likewise.
1364 (delete_file_name_entry): Likewise.
1365 (dw2_setup): Likewise.
1366 (dw2_get_file_names_reader): Likewise.
1367 (dw2_find_pc_sect_compunit_symtab): Likewise.
1368 (hash_signatured_type): Likewise.
1369 (eq_signatured_type): Likewise.
1370 (add_signatured_type_cu_to_table): Likewise.
1371 (create_debug_types_hash_table): Likewise.
1372 (lookup_dwo_signatured_type): Likewise.
1373 (lookup_dwp_signatured_type): Likewise.
1374 (lookup_signatured_type): Likewise.
1375 (hash_type_unit_group): Likewise.
1376 (eq_type_unit_group): Likewise.
1377 (get_type_unit_group): Likewise.
1378 (process_psymtab_comp_unit_reader): Likewise.
1379 (sort_tu_by_abbrev_offset): Likewise.
1380 (process_skeletonless_type_unit): Likewise.
1381 (psymtabs_addrmap_cleanup): Likewise.
1382 (dwarf2_read_symtab): Likewise.
1383 (psymtab_to_symtab_1): Likewise.
1384 (die_hash): Likewise.
1385 (die_eq): Likewise.
1386 (load_full_comp_unit_reader): Likewise.
1387 (reset_die_in_process): Likewise.
1388 (free_cu_line_header): Likewise.
1389 (handle_DW_AT_stmt_list): Likewise.
1390 (hash_dwo_file): Likewise.
1391 (eq_dwo_file): Likewise.
1392 (hash_dwo_unit): Likewise.
1393 (eq_dwo_unit): Likewise.
1394 (create_dwo_cu_reader): Likewise.
1395 (create_dwo_unit_in_dwp_v1): Likewise.
1396 (create_dwo_unit_in_dwp_v2): Likewise.
1397 (lookup_dwo_unit_in_dwp): Likewise.
1398 (dwarf2_locate_dwo_sections): Likewise.
1399 (dwarf2_locate_common_dwp_sections): Likewise.
1400 (dwarf2_locate_v2_dwp_sections): Likewise.
1401 (hash_dwp_loaded_cutus): Likewise.
1402 (eq_dwp_loaded_cutus): Likewise.
1403 (lookup_dwo_cutu): Likewise.
1404 (abbrev_table_free_cleanup): Likewise.
1405 (dwarf2_free_abbrev_table): Likewise.
1406 (find_partial_die_in_comp_unit): Likewise.
1407 (free_line_header_voidp): Likewise.
1408 (follow_die_offset): Likewise.
1409 (follow_die_sig_1): Likewise.
1410 (free_heap_comp_unit): Likewise.
1411 (free_stack_comp_unit): Likewise.
1412 (dwarf2_free_objfile): Likewise.
1413 (per_cu_offset_and_type_hash): Likewise.
1414 (per_cu_offset_and_type_eq): Likewise.
1415 (get_die_type_at_offset): Likewise.
1416 (partial_die_hash): Likewise.
1417 (partial_die_eq): Likewise.
1418 (dwarf2_per_objfile_free): Likewise.
1419 (hash_strtab_entry): Likewise.
1420 (eq_strtab_entry): Likewise.
1421 (add_string): Likewise.
1422 (hash_symtab_entry): Likewise.
1423 (eq_symtab_entry): Likewise.
1424 (delete_symtab_entry): Likewise.
1425 (cleanup_mapped_symtab): Likewise.
1426 (add_indices_to_cpool): Likewise.
1427 (hash_psymtab_cu_index): Likewise.
1428 (eq_psymtab_cu_index): Likewise.
1429 (add_address_entry_worker): Likewise.
1430 (unlink_if_set): Likewise.
1431 (write_one_signatured_type): Likewise.
1432 (save_gdb_index_command): Likewise.
1433 * elfread.c (elf_symtab_read): Likewise.
1434 (elf_gnu_ifunc_cache_hash): Likewise.
1435 (elf_gnu_ifunc_cache_eq): Likewise.
1436 (elf_gnu_ifunc_record_cache): Likewise.
1437 (elf_gnu_ifunc_resolve_by_cache): Likewise.
1438 (elf_get_probes): Likewise.
1439 (probe_key_free): Likewise.
1440 * f-lang.c (builtin_f_type): Likewise.
1441 * frame-base.c (frame_base_append_sniffer): Likewise.
1442 (frame_base_set_default): Likewise.
1443 (frame_base_find_by_frame): Likewise.
1444 * frame-unwind.c (frame_unwind_prepend_unwinder): Likewise.
1445 (frame_unwind_append_unwinder): Likewise.
1446 (frame_unwind_find_by_frame): Likewise.
1447 * frame.c (frame_addr_hash): Likewise.
1448 (frame_addr_hash_eq): Likewise.
1449 (frame_stash_find): Likewise.
1450 (do_frame_register_read): Likewise.
1451 (unwind_to_current_frame): Likewise.
1452 (frame_cleanup_after_sniffer): Likewise.
1453 * frv-linux-tdep.c (frv_linux_sigtramp_frame_cache): Likewise.
1454 * frv-tdep.c (frv_frame_unwind_cache): Likewise.
1455 * ft32-tdep.c (ft32_frame_cache): Likewise.
1456 * gcore.c (do_bfd_delete_cleanup): Likewise.
1457 (gcore_create_callback): Likewise.
1458 * gdb_bfd.c (hash_bfd): Likewise.
1459 (eq_bfd): Likewise.
1460 (gdb_bfd_open): Likewise.
1461 (free_one_bfd_section): Likewise.
1462 (gdb_bfd_ref): Likewise.
1463 (gdb_bfd_unref): Likewise.
1464 (get_section_descriptor): Likewise.
1465 (gdb_bfd_map_section): Likewise.
1466 (gdb_bfd_crc): Likewise.
1467 (gdb_bfd_mark_parent): Likewise.
1468 (gdb_bfd_record_inclusion): Likewise.
1469 (gdb_bfd_requires_relocations): Likewise.
1470 (print_one_bfd): Likewise.
1471 * gdbtypes.c (type_pair_hash): Likewise.
1472 (type_pair_eq): Likewise.
1473 (builtin_type): Likewise.
1474 (objfile_type): Likewise.
1475 * gnu-v3-abi.c (vtable_ptrdiff_type): Likewise.
1476 (vtable_address_point_offset): Likewise.
1477 (gnuv3_get_vtable): Likewise.
1478 (hash_value_and_voffset): Likewise.
1479 (eq_value_and_voffset): Likewise.
1480 (compare_value_and_voffset): Likewise.
1481 (compute_vtable_size): Likewise.
1482 (gnuv3_get_typeid_type): Likewise.
1483 * go-lang.c (builtin_go_type): Likewise.
1484 * guile/scm-block.c (bkscm_hash_block_smob): Likewise.
1485 (bkscm_eq_block_smob): Likewise.
1486 (bkscm_objfile_block_map): Likewise.
1487 (bkscm_del_objfile_blocks): Likewise.
1488 * guile/scm-breakpoint.c (bpscm_build_bp_list): Likewise.
1489 * guile/scm-disasm.c (gdbscm_disasm_read_memory_worker): Likewise.
1490 (gdbscm_disasm_print_address): Likewise.
1491 * guile/scm-frame.c (frscm_hash_frame_smob): Likewise.
1492 (frscm_eq_frame_smob): Likewise.
1493 (frscm_inferior_frame_map): Likewise.
1494 (frscm_del_inferior_frames): Likewise.
1495 * guile/scm-gsmob.c (gdbscm_add_objfile_ref): Likewise.
1496 * guile/scm-objfile.c (ofscm_handle_objfile_deleted): Likewise.
1497 (ofscm_objfile_smob_from_objfile): Likewise.
1498 * guile/scm-ports.c (ioscm_write): Likewise.
1499 (ioscm_file_port_delete): Likewise.
1500 (ioscm_file_port_rewind): Likewise.
1501 (ioscm_file_port_put): Likewise.
1502 (ioscm_file_port_write): Likewise.
1503 * guile/scm-progspace.c (psscm_handle_pspace_deleted): Likewise.
1504 (psscm_pspace_smob_from_pspace): Likewise.
1505 * guile/scm-safe-call.c (scscm_recording_pre_unwind_handler): Likewise.
1506 (scscm_recording_unwind_handler): Likewise.
1507 (gdbscm_with_catch): Likewise.
1508 (scscm_call_0_body): Likewise.
1509 (scscm_call_1_body): Likewise.
1510 (scscm_call_2_body): Likewise.
1511 (scscm_call_3_body): Likewise.
1512 (scscm_call_4_body): Likewise.
1513 (scscm_apply_1_body): Likewise.
1514 (scscm_eval_scheme_string): Likewise.
1515 (gdbscm_safe_eval_string): Likewise.
1516 (scscm_source_scheme_script): Likewise.
1517 (gdbscm_safe_source_script): Likewise.
1518 * guile/scm-string.c (gdbscm_call_scm_to_stringn): Likewise.
1519 (gdbscm_call_scm_from_stringn): Likewise.
1520 * guile/scm-symbol.c (syscm_hash_symbol_smob): Likewise.
1521 (syscm_eq_symbol_smob): Likewise.
1522 (syscm_get_symbol_map): Likewise.
1523 (syscm_del_objfile_symbols): Likewise.
1524 * guile/scm-symtab.c (stscm_hash_symtab_smob): Likewise.
1525 (stscm_eq_symtab_smob): Likewise.
1526 (stscm_objfile_symtab_map): Likewise.
1527 (stscm_del_objfile_symtabs): Likewise.
1528 * guile/scm-type.c (tyscm_hash_type_smob): Likewise.
1529 (tyscm_eq_type_smob): Likewise.
1530 (tyscm_type_map): Likewise.
1531 (tyscm_copy_type_recursive): Likewise.
1532 (save_objfile_types): Likewise.
1533 * guile/scm-utils.c (extract_arg): Likewise.
1534 * h8300-tdep.c (h8300_frame_cache): Likewise.
1535 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_unwind_cache): Likewise.
1536 * hppa-tdep.c (compare_unwind_entries): Likewise.
1537 (find_unwind_entry): Likewise.
1538 (hppa_frame_cache): Likewise.
1539 (hppa_stub_frame_unwind_cache): Likewise.
1540 * hppanbsd-tdep.c (hppanbsd_supply_gregset): Likewise.
1541 * hppaobsd-tdep.c (hppaobsd_supply_gregset): Likewise.
1542 (hppaobsd_supply_fpregset): Likewise.
1543 * i386-cygwin-tdep.c (core_process_module_section): Likewise.
1544 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
1545 * i386-tdep.c (i386_frame_cache): Likewise.
1546 (i386_epilogue_frame_cache): Likewise.
1547 (i386_sigtramp_frame_cache): Likewise.
1548 (i386_supply_gregset): Likewise.
1549 (i386_collect_gregset): Likewise.
1550 (i386_gdbarch_init): Likewise.
1551 * i386obsd-tdep.c (i386obsd_aout_supply_regset): Likewise.
1552 (i386obsd_trapframe_cache): Likewise.
1553 * i387-tdep.c (i387_supply_fsave): Likewise.
1554 (i387_collect_fsave): Likewise.
1555 (i387_supply_fxsave): Likewise.
1556 (i387_collect_fxsave): Likewise.
1557 (i387_supply_xsave): Likewise.
1558 (i387_collect_xsave): Likewise.
1559 * ia64-tdep.c (ia64_frame_cache): Likewise.
1560 (ia64_sigtramp_frame_cache): Likewise.
1561 * infcmd.c (attach_command_continuation): Likewise.
1562 (attach_command_continuation_free_args): Likewise.
1563 * inferior.c (restore_inferior): Likewise.
1564 (delete_thread_of_inferior): Likewise.
1565 * inflow.c (inflow_inferior_data_cleanup): Likewise.
1566 (get_inflow_inferior_data): Likewise.
1567 (inflow_inferior_exit): Likewise.
1568 * infrun.c (displaced_step_clear_cleanup): Likewise.
1569 (restore_current_uiout_cleanup): Likewise.
1570 (release_stop_context_cleanup): Likewise.
1571 (do_restore_infcall_suspend_state_cleanup): Likewise.
1572 (do_restore_infcall_control_state_cleanup): Likewise.
1573 (restore_inferior_ptid): Likewise.
1574 * inline-frame.c (block_starting_point_at): Likewise.
1575 * iq2000-tdep.c (iq2000_frame_cache): Likewise.
1576 * jit.c (get_jit_objfile_data): Likewise.
1577 (get_jit_program_space_data): Likewise.
1578 (jit_object_close_impl): Likewise.
1579 (jit_find_objf_with_entry_addr): Likewise.
1580 (jit_breakpoint_deleted): Likewise.
1581 (jit_unwind_reg_set_impl): Likewise.
1582 (jit_unwind_reg_get_impl): Likewise.
1583 (jit_dealloc_cache): Likewise.
1584 (jit_frame_sniffer): Likewise.
1585 (jit_frame_prev_register): Likewise.
1586 (jit_prepend_unwinder): Likewise.
1587 (jit_inferior_exit_hook): Likewise.
1588 (free_objfile_data): Likewise.
1589 * jv-lang.c (jv_per_objfile_free): Likewise.
1590 (get_dynamics_objfile): Likewise.
1591 (get_java_class_symtab): Likewise.
1592 (builtin_java_type): Likewise.
1593 * language.c (language_string_char_type): Likewise.
1594 (language_bool_type): Likewise.
1595 (language_lookup_primitive_type): Likewise.
1596 (language_lookup_primitive_type_as_symbol): Likewise.
1597 * linespec.c (hash_address_entry): Likewise.
1598 (eq_address_entry): Likewise.
1599 (iterate_inline_only): Likewise.
1600 (iterate_name_matcher): Likewise.
1601 (decode_line_2_compare_items): Likewise.
1602 (collect_one_symbol): Likewise.
1603 (compare_symbols): Likewise.
1604 (compare_msymbols): Likewise.
1605 (add_symtabs_to_list): Likewise.
1606 (collect_symbols): Likewise.
1607 (compare_msyms): Likewise.
1608 (add_minsym): Likewise.
1609 (cleanup_linespec_result): Likewise.
1610 * linux-fork.c (inferior_call_waitpid_cleanup): Likewise.
1611 * linux-nat.c (delete_lwp_cleanup): Likewise.
1612 (count_events_callback): Likewise.
1613 (select_event_lwp_callback): Likewise.
1614 (resume_stopped_resumed_lwps): Likewise.
1615 * linux-tdep.c (get_linux_gdbarch_data): Likewise.
1616 (invalidate_linux_cache_inf): Likewise.
1617 (get_linux_inferior_data): Likewise.
1618 (linux_find_memory_regions_thunk): Likewise.
1619 (linux_make_mappings_callback): Likewise.
1620 (linux_corefile_thread_callback): Likewise.
1621 (find_mapping_size): Likewise.
1622 * linux-thread-db.c (find_new_threads_callback): Likewise.
1623 * lm32-tdep.c (lm32_frame_cache): Likewise.
1624 * m2-lang.c (builtin_m2_type): Likewise.
1625 * m32c-tdep.c (m32c_analyze_frame_prologue): Likewise.
1626 * m32r-linux-tdep.c (m32r_linux_sigtramp_frame_cache): Likewise.
1627 (m32r_linux_supply_gregset): Likewise.
1628 (m32r_linux_collect_gregset): Likewise.
1629 * m32r-tdep.c (m32r_frame_unwind_cache): Likewise.
1630 * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
1631 * m68k-tdep.c (m68k_frame_cache): Likewise.
1632 * m68kbsd-tdep.c (m68kbsd_supply_fpregset): Likewise.
1633 (m68kbsd_supply_gregset): Likewise.
1634 * m68klinux-tdep.c (m68k_linux_sigtramp_frame_cache): Likewise.
1635 * m88k-tdep.c (m88k_frame_cache): Likewise.
1636 (m88k_supply_gregset): Likewise.
1637
1638 2015-09-25 Simon Marchi <simon.marchi@ericsson.com>
1639
1640 * aarch64-linux-tdep.c (aarch64_stap_parse_special_token): Add cast
1641 to allocation result assignment.
1642 * ada-exp.y (write_object_renaming): Likewise.
1643 (write_ambiguous_var): Likewise.
1644 (ada_nget_field_index): Likewise.
1645 (write_var_or_type): Likewise.
1646 * ada-lang.c (ada_decode_symbol): Likewise.
1647 (ada_value_assign): Likewise.
1648 (value_pointer): Likewise.
1649 (cache_symbol): Likewise.
1650 (add_nonlocal_symbols): Likewise.
1651 (ada_name_for_lookup): Likewise.
1652 (symbol_completion_add): Likewise.
1653 (ada_to_fixed_type_1): Likewise.
1654 (ada_get_next_arg): Likewise.
1655 (defns_collected): Likewise.
1656 * ada-lex.l (processId): Likewise.
1657 (processString): Likewise.
1658 * ada-tasks.c (read_known_tasks_array): Likewise.
1659 (read_known_tasks_list): Likewise.
1660 * ada-typeprint.c (decoded_type_name): Likewise.
1661 * addrmap.c (addrmap_mutable_create_fixed): Likewise.
1662 * amd64-tdep.c (amd64_push_arguments): Likewise.
1663 (amd64_displaced_step_copy_insn): Likewise.
1664 (amd64_classify_insn_at): Likewise.
1665 (amd64_relocate_instruction): Likewise.
1666 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Likewise.
1667 * arch-utils.c (simple_displaced_step_copy_insn): Likewise.
1668 (initialize_current_architecture): Likewise.
1669 * arm-linux-tdep.c (arm_stap_parse_special_token): Likewise.
1670 * arm-symbian-tdep.c (arm_symbian_osabi_sniffer): Likewise.
1671 * arm-tdep.c (arm_exidx_new_objfile): Likewise.
1672 (arm_push_dummy_call): Likewise.
1673 (extend_buffer_earlier): Likewise.
1674 (arm_adjust_breakpoint_address): Likewise.
1675 (arm_skip_stub): Likewise.
1676 * auto-load.c (filename_is_in_pattern): Likewise.
1677 (maybe_add_script_file): Likewise.
1678 (maybe_add_script_text): Likewise.
1679 (auto_load_objfile_script_1): Likewise.
1680 * auxv.c (ld_so_xfer_auxv): Likewise.
1681 * ax-general.c (new_agent_expr): Likewise.
1682 (grow_expr): Likewise.
1683 (ax_reg_mask): Likewise.
1684 * bcache.c (bcache_full): Likewise.
1685 * breakpoint.c (program_breakpoint_here_p): Likewise.
1686 * btrace.c (parse_xml_raw): Likewise.
1687 * build-id.c (build_id_to_debug_bfd): Likewise.
1688 * buildsym.c (end_symtab_with_blockvector): Likewise.
1689 * c-exp.y (string_exp): Likewise.
1690 (qualified_name): Likewise.
1691 (write_destructor_name): Likewise.
1692 (operator_stoken): Likewise.
1693 (parse_number): Likewise.
1694 (scan_macro_expansion): Likewise.
1695 (yylex): Likewise.
1696 (c_print_token): Likewise.
1697 * c-lang.c (c_get_string): Likewise.
1698 (emit_numeric_character): Likewise.
1699 * charset.c (wchar_iterate): Likewise.
1700 * cli/cli-cmds.c (complete_command): Likewise.
1701 (make_command): Likewise.
1702 * cli/cli-dump.c (restore_section_callback): Likewise.
1703 (restore_binary_file): Likewise.
1704 * cli/cli-interp.c (cli_interpreter_exec): Likewise.
1705 * cli/cli-script.c (execute_control_command): Likewise.
1706 * cli/cli-setshow.c (do_set_command): Likewise.
1707 * coff-pe-read.c (add_pe_forwarded_sym): Likewise.
1708 (read_pe_exported_syms): Likewise.
1709 * coffread.c (coff_read_struct_type): Likewise.
1710 (coff_read_enum_type): Likewise.
1711 * common/btrace-common.c (btrace_data_append): Likewise.
1712 * common/buffer.c (buffer_grow): Likewise.
1713 * common/filestuff.c (gdb_fopen_cloexec): Likewise.
1714 * common/format.c (parse_format_string): Likewise.
1715 * common/gdb_vecs.c (delim_string_to_char_ptr_vec_append): Likewise.
1716 * common/xml-utils.c (xml_escape_text): Likewise.
1717 * compile/compile-object-load.c (copy_sections): Likewise.
1718 (compile_object_load): Likewise.
1719 * compile/compile-object-run.c (compile_object_run): Likewise.
1720 * completer.c (filename_completer): Likewise.
1721 * corefile.c (read_memory_typed_address): Likewise.
1722 (write_memory_unsigned_integer): Likewise.
1723 (write_memory_signed_integer): Likewise.
1724 (complete_set_gnutarget): Likewise.
1725 * corelow.c (get_core_register_section): Likewise.
1726 * cp-name-parser.y (d_grab): Likewise.
1727 (allocate_info): Likewise.
1728 (cp_new_demangle_parse_info): Likewise.
1729 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Likewise.
1730 (cp_lookup_symbol_in_namespace): Likewise.
1731 (lookup_namespace_scope): Likewise.
1732 (find_symbol_in_baseclass): Likewise.
1733 (cp_lookup_nested_symbol): Likewise.
1734 (cp_lookup_transparent_type_loop): Likewise.
1735 * cp-support.c (copy_string_to_obstack): Likewise.
1736 (make_symbol_overload_list): Likewise.
1737 (make_symbol_overload_list_namespace): Likewise.
1738 (make_symbol_overload_list_adl_namespace): Likewise.
1739 (first_component_command): Likewise.
1740 * cp-valprint.c (cp_print_value): Likewise.
1741 * ctf.c (ctf_xfer_partial): Likewise.
1742 * d-exp.y (StringExp): Likewise.
1743 * d-namespace.c (d_lookup_symbol_in_module): Likewise.
1744 (lookup_module_scope): Likewise.
1745 (find_symbol_in_baseclass): Likewise.
1746 (d_lookup_nested_symbol): Likewise.
1747 * dbxread.c (find_stab_function_addr): Likewise.
1748 (read_dbx_symtab): Likewise.
1749 (dbx_end_psymtab): Likewise.
1750 (cp_set_block_scope): Likewise.
1751 * dcache.c (dcache_alloc): Likewise.
1752 * demangle.c (_initialize_demangler): Likewise.
1753 * dicos-tdep.c (dicos_load_module_p): Likewise.
1754 * dictionary.c (dict_create_hashed_expandable): Likewise.
1755 (dict_create_linear_expandable): Likewise.
1756 (expand_hashtable): Likewise.
1757 (add_symbol_linear_expandable): Likewise.
1758 * dwarf2-frame.c (add_cie): Likewise.
1759 (add_fde): Likewise.
1760 (dwarf2_build_frame_info): Likewise.
1761 * dwarf2expr.c (dwarf_expr_grow_stack): Likewise.
1762 (dwarf_expr_fetch_address): Likewise.
1763 (add_piece): Likewise.
1764 (execute_stack_op): Likewise.
1765 * dwarf2loc.c (chain_candidate): Likewise.
1766 (dwarf_entry_parameter_to_value): Likewise.
1767 (read_pieced_value): Likewise.
1768 (write_pieced_value): Likewise.
1769 * dwarf2read.c (dwarf2_read_section): Likewise.
1770 (add_type_unit): Likewise.
1771 (read_comp_units_from_section): Likewise.
1772 (fixup_go_packaging): Likewise.
1773 (dwarf2_compute_name): Likewise.
1774 (dwarf2_physname): Likewise.
1775 (create_dwo_unit_in_dwp_v1): Likewise.
1776 (create_dwo_unit_in_dwp_v2): Likewise.
1777 (read_func_scope): Likewise.
1778 (read_call_site_scope): Likewise.
1779 (dwarf2_attach_fields_to_type): Likewise.
1780 (process_structure_scope): Likewise.
1781 (mark_common_block_symbol_computed): Likewise.
1782 (read_common_block): Likewise.
1783 (abbrev_table_read_table): Likewise.
1784 (guess_partial_die_structure_name): Likewise.
1785 (fixup_partial_die): Likewise.
1786 (add_file_name): Likewise.
1787 (dwarf2_const_value_data): Likewise.
1788 (dwarf2_const_value_attr): Likewise.
1789 (build_error_marker_type): Likewise.
1790 (guess_full_die_structure_name): Likewise.
1791 (anonymous_struct_prefix): Likewise.
1792 (typename_concat): Likewise.
1793 (dwarf2_canonicalize_name): Likewise.
1794 (dwarf2_name): Likewise.
1795 (write_constant_as_bytes): Likewise.
1796 (dwarf2_fetch_constant_bytes): Likewise.
1797 (copy_string): Likewise.
1798 (parse_macro_definition): Likewise.
1799 * elfread.c (elf_symfile_segments): Likewise.
1800 (elf_rel_plt_read): Likewise.
1801 (elf_gnu_ifunc_resolve_by_cache): Likewise.
1802 (elf_gnu_ifunc_resolve_by_got): Likewise.
1803 (elf_read_minimal_symbols): Likewise.
1804 (elf_gnu_ifunc_record_cache): Likewise.
1805 * event-top.c (top_level_prompt): Likewise.
1806 (command_line_handler): Likewise.
1807 * exec.c (resize_section_table): Likewise.
1808 * expprint.c (print_subexp_standard): Likewise.
1809 * fbsd-tdep.c (fbsd_collect_regset_section_cb): Likewise.
1810 * findcmd.c (parse_find_args): Likewise.
1811 * findvar.c (address_from_register): Likewise.
1812 * frame.c (get_prev_frame_always): Likewise.
1813 * gdb_bfd.c (gdb_bfd_ref): Likewise.
1814 (get_section_descriptor): Likewise.
1815 * gdb_obstack.c (obconcat): Likewise.
1816 (obstack_strdup): Likewise.
1817 * gdbtypes.c (lookup_function_type_with_arguments): Likewise.
1818 (create_set_type): Likewise.
1819 (lookup_unsigned_typename): Likewise.
1820 (lookup_signed_typename): Likewise.
1821 (resolve_dynamic_union): Likewise.
1822 (resolve_dynamic_struct): Likewise.
1823 (add_dyn_prop): Likewise.
1824 (copy_dynamic_prop_list): Likewise.
1825 (arch_flags_type): Likewise.
1826 (append_composite_type_field_raw): Likewise.
1827 * gdbtypes.h (INIT_FUNC_SPECIFIC): Likewise.
1828 * gnu-v3-abi.c (gnuv3_rtti_type): Likewise.
1829 * go-exp.y (string_exp): Likewise.
1830 * go-lang.c (go_demangle): Likewise.
1831 * guile/guile.c (compute_scheme_string): Likewise.
1832 * guile/scm-cmd.c (gdbscm_parse_command_name): Likewise.
1833 (gdbscm_canonicalize_command_name): Likewise.
1834 * guile/scm-ports.c (ioscm_init_stdio_buffers): Likewise.
1835 (ioscm_init_memory_port): Likewise.
1836 (ioscm_reinit_memory_port): Likewise.
1837 * guile/scm-utils.c (gdbscm_gc_xstrdup): Likewise.
1838 (gdbscm_gc_dup_argv): Likewise.
1839 * h8300-tdep.c (h8300_push_dummy_call): Likewise.
1840 * hppa-tdep.c (internalize_unwinds): Likewise.
1841 (read_unwind_info): Likewise.
1842 * i386-cygwin-tdep.c (core_process_module_section): Likewise.
1843 (windows_core_xfer_shared_libraries): Likewise.
1844 * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
1845 (i386_stap_parse_special_token_triplet): Likewise.
1846 (i386_stap_parse_special_token_three_arg_disp): Likewise.
1847 * i386obsd-tdep.c (i386obsd_sigtramp_p): Likewise.
1848 * inf-child.c (inf_child_fileio_readlink): Likewise.
1849 * inf-ptrace.c (inf_ptrace_fetch_register): Likewise.
1850 (inf_ptrace_store_register): Likewise.
1851 * infrun.c (follow_exec): Likewise.
1852 (displaced_step_prepare_throw): Likewise.
1853 (save_stop_context): Likewise.
1854 (save_infcall_suspend_state): Likewise.
1855 * jit.c (jit_read_descriptor): Likewise.
1856 (jit_read_code_entry): Likewise.
1857 (jit_symtab_line_mapping_add_impl): Likewise.
1858 (finalize_symtab): Likewise.
1859 (jit_unwind_reg_get_impl): Likewise.
1860 * jv-exp.y (QualifiedName): Likewise.
1861 * jv-lang.c (get_java_utf8_name): Likewise.
1862 (type_from_class): Likewise.
1863 (java_demangle_type_signature): Likewise.
1864 (java_class_name_from_physname): Likewise.
1865 * jv-typeprint.c (java_type_print_base): Likewise.
1866 * jv-valprint.c (java_value_print): Likewise.
1867 * language.c (add_language): Likewise.
1868 * linespec.c (add_sal_to_sals_basic): Likewise.
1869 (add_sal_to_sals): Likewise.
1870 (decode_objc): Likewise.
1871 (find_linespec_symbols): Likewise.
1872 * linux-fork.c (fork_save_infrun_state): Likewise.
1873 * linux-nat.c (linux_nat_detach): Likewise.
1874 (linux_nat_fileio_readlink): Likewise.
1875 * linux-record.c (record_linux_sockaddr): Likewise.
1876 (record_linux_msghdr): Likewise.
1877 (Do): Likewise.
1878 * linux-tdep.c (linux_core_info_proc_mappings): Likewise.
1879 (linux_collect_regset_section_cb): Likewise.
1880 (linux_get_siginfo_data): Likewise.
1881 * linux-thread-db.c (try_thread_db_load_from_pdir_1): Likewise.
1882 (try_thread_db_load_from_dir): Likewise.
1883 (thread_db_load_search): Likewise.
1884 (info_auto_load_libthread_db): Likewise.
1885 * m32c-tdep.c (m32c_m16c_address_to_pointer): Likewise.
1886 (m32c_m16c_pointer_to_address): Likewise.
1887 * m68hc11-tdep.c (m68hc11_pseudo_register_write): Likewise.
1888 * m68k-tdep.c (m68k_get_longjmp_target): Likewise.
1889 * machoread.c (macho_check_dsym): Likewise.
1890 * macroexp.c (resize_buffer): Likewise.
1891 (gather_arguments): Likewise.
1892 (maybe_expand): Likewise.
1893 * macrotab.c (new_macro_key): Likewise.
1894 (new_source_file): Likewise.
1895 (new_macro_definition): Likewise.
1896 * mdebugread.c (parse_symbol): Likewise.
1897 (parse_type): Likewise.
1898 (parse_partial_symbols): Likewise.
1899 (psymtab_to_symtab_1): Likewise.
1900 * mem-break.c (default_memory_insert_breakpoint): Likewise.
1901 * mi/mi-cmd-break.c (mi_argv_to_format): Likewise.
1902 * mi/mi-main.c (mi_cmd_data_read_memory): Likewise.
1903 (mi_cmd_data_read_memory_bytes): Likewise.
1904 (mi_cmd_data_write_memory_bytes): Likewise.
1905 (mi_cmd_trace_frame_collected): Likewise.
1906 * mi/mi-parse.c (mi_parse_argv): Likewise.
1907 (mi_parse): Likewise.
1908 * minidebug.c (lzma_open): Likewise.
1909 (lzma_pread): Likewise.
1910 * mips-tdep.c (mips_read_fp_register_single): Likewise.
1911 (mips_print_fp_register): Likewise.
1912 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Likewise.
1913 * mipsread.c (read_alphacoff_dynamic_symtab): Likewise.
1914 * mt-tdep.c (mt_register_name): Likewise.
1915 (mt_registers_info): Likewise.
1916 (mt_push_dummy_call): Likewise.
1917 * namespace.c (add_using_directive): Likewise.
1918 * nat/linux-btrace.c (perf_event_read): Likewise.
1919 (linux_enable_bts): Likewise.
1920 * nat/linux-osdata.c (linux_common_core_of_thread): Likewise.
1921 * nat/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Likewise.
1922 * nto-tdep.c (nto_find_and_open_solib): Likewise.
1923 (nto_parse_redirection): Likewise.
1924 * objc-lang.c (objc_demangle): Likewise.
1925 (find_methods): Likewise.
1926 * objfiles.c (get_objfile_bfd_data): Likewise.
1927 (set_objfile_main_name): Likewise.
1928 (allocate_objfile): Likewise.
1929 (objfile_relocate): Likewise.
1930 (update_section_map): Likewise.
1931 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Likewise.
1932 * p-exp.y (exp): Likewise.
1933 (yylex): Likewise.
1934 * p-valprint.c (pascal_object_print_value): Likewise.
1935 * parse.c (initialize_expout): Likewise.
1936 (mark_completion_tag): Likewise.
1937 (copy_name): Likewise.
1938 (parse_float): Likewise.
1939 (type_stack_reserve): Likewise.
1940 * ppc-linux-tdep.c (ppc_stap_parse_special_token): Likewise.
1941 (ppu2spu_prev_register): Likewise.
1942 * ppc-ravenscar-thread.c (supply_register_at_address): Likewise.
1943 * printcmd.c (printf_wide_c_string): Likewise.
1944 (printf_pointer): Likewise.
1945 * probe.c (parse_probes): Likewise.
1946 * python/py-cmd.c (gdbpy_parse_command_name): Likewise.
1947 (cmdpy_init): Likewise.
1948 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Likewise.
1949 * python/py-symtab.c (set_sal): Likewise.
1950 * python/py-unwind.c (pyuw_sniffer): Likewise.
1951 * python/python.c (python_interactive_command): Likewise.
1952 (compute_python_string): Likewise.
1953 * ravenscar-thread.c (get_running_thread_id): Likewise.
1954 * record-full.c (record_full_exec_insn): Likewise.
1955 (record_full_core_open_1): Likewise.
1956 * regcache.c (regcache_raw_read_signed): Likewise.
1957 (regcache_raw_read_unsigned): Likewise.
1958 (regcache_cooked_read_signed): Likewise.
1959 (regcache_cooked_read_unsigned): Likewise.
1960 * remote-fileio.c (remote_fileio_func_open): Likewise.
1961 (remote_fileio_func_rename): Likewise.
1962 (remote_fileio_func_unlink): Likewise.
1963 (remote_fileio_func_stat): Likewise.
1964 (remote_fileio_func_system): Likewise.
1965 * remote-mips.c (mips_xfer_memory): Likewise.
1966 (mips_load_srec): Likewise.
1967 (pmon_end_download): Likewise.
1968 * remote.c (new_remote_state): Likewise.
1969 (map_regcache_remote_table): Likewise.
1970 (remote_register_number_and_offset): Likewise.
1971 (init_remote_state): Likewise.
1972 (get_memory_packet_size): Likewise.
1973 (remote_pass_signals): Likewise.
1974 (remote_program_signals): Likewise.
1975 (remote_start_remote): Likewise.
1976 (remote_check_symbols): Likewise.
1977 (remote_query_supported): Likewise.
1978 (extended_remote_attach): Likewise.
1979 (process_g_packet): Likewise.
1980 (store_registers_using_G): Likewise.
1981 (putpkt_binary): Likewise.
1982 (read_frame): Likewise.
1983 (compare_sections_command): Likewise.
1984 (remote_hostio_pread): Likewise.
1985 (remote_hostio_readlink): Likewise.
1986 (remote_file_put): Likewise.
1987 (remote_file_get): Likewise.
1988 (remote_pid_to_exec_file): Likewise.
1989 (_initialize_remote): Likewise.
1990 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
1991 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
1992 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Likewise.
1993 (bfd_uses_spe_extensions): Likewise.
1994 * s390-linux-tdep.c (s390_displaced_step_copy_insn): Likewise.
1995 * score-tdep.c (score7_malloc_and_get_memblock): Likewise.
1996 * solib-dsbt.c (decode_loadmap): Likewise.
1997 (fetch_loadmap): Likewise.
1998 (scan_dyntag): Likewise.
1999 (enable_break): Likewise.
2000 (dsbt_relocate_main_executable): Likewise.
2001 * solib-frv.c (fetch_loadmap): Likewise.
2002 (enable_break2): Likewise.
2003 (frv_relocate_main_executable): Likewise.
2004 * solib-spu.c (spu_relocate_main_executable): Likewise.
2005 (spu_bfd_open): Likewise.
2006 * solib-svr4.c (lm_info_read): Likewise.
2007 (read_program_header): Likewise.
2008 (find_program_interpreter): Likewise.
2009 (scan_dyntag): Likewise.
2010 (elf_locate_base): Likewise.
2011 (open_symbol_file_object): Likewise.
2012 (read_program_headers_from_bfd): Likewise.
2013 (svr4_relocate_main_executable): Likewise.
2014 * solib-target.c (solib_target_relocate_section_addresses): Likewise.
2015 * solib.c (solib_find_1): Likewise.
2016 (exec_file_find): Likewise.
2017 (solib_find): Likewise.
2018 * source.c (openp): Likewise.
2019 (print_source_lines_base): Likewise.
2020 (forward_search_command): Likewise.
2021 * sparc-ravenscar-thread.c (supply_register_at_address): Likewise.
2022 * spu-tdep.c (spu2ppu_prev_register): Likewise.
2023 (spu_get_overlay_table): Likewise.
2024 * stabsread.c (patch_block_stabs): Likewise.
2025 (define_symbol): Likewise.
2026 (again:): Likewise.
2027 (read_member_functions): Likewise.
2028 (read_one_struct_field): Likewise.
2029 (read_enum_type): Likewise.
2030 (common_block_start): Likewise.
2031 * stack.c (read_frame_arg): Likewise.
2032 (backtrace_command): Likewise.
2033 * stap-probe.c (stap_parse_register_operand): Likewise.
2034 * symfile.c (syms_from_objfile_1): Likewise.
2035 (find_separate_debug_file): Likewise.
2036 (load_command): Likewise.
2037 (load_progress): Likewise.
2038 (load_section_callback): Likewise.
2039 (reread_symbols): Likewise.
2040 (add_filename_language): Likewise.
2041 (allocate_compunit_symtab): Likewise.
2042 (read_target_long_array): Likewise.
2043 (simple_read_overlay_table): Likewise.
2044 * symtab.c (symbol_set_names): Likewise.
2045 (resize_symbol_cache): Likewise.
2046 (rbreak_command): Likewise.
2047 (completion_list_add_name): Likewise.
2048 (completion_list_objc_symbol): Likewise.
2049 (add_filename_to_list): Likewise.
2050 * target-descriptions.c (maint_print_c_tdesc_cmd): Likewise.
2051 * target-memory.c (target_write_memory_blocks): Likewise.
2052 * target.c (target_read_string): Likewise.
2053 (read_whatever_is_readable): Likewise.
2054 (target_read_alloc_1): Likewise.
2055 (simple_search_memory): Likewise.
2056 (target_fileio_read_alloc_1): Likewise.
2057 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
2058 * top.c (command_line_input): Likewise.
2059 * tracefile-tfile.c (tfile_fetch_registers): Likewise.
2060 * tracefile.c (tracefile_fetch_registers): Likewise.
2061 * tracepoint.c (add_memrange): Likewise.
2062 (init_collection_list): Likewise.
2063 (add_aexpr): Likewise.
2064 (trace_dump_actions): Likewise.
2065 (parse_trace_status): Likewise.
2066 (parse_tracepoint_definition): Likewise.
2067 (parse_tsv_definition): Likewise.
2068 (parse_static_tracepoint_marker_definition): Likewise.
2069 * tui/tui-file.c (tui_sfileopen): Likewise.
2070 (tui_file_adjust_strbuf): Likewise.
2071 * tui/tui-io.c (tui_expand_tabs): Likewise.
2072 * tui/tui-source.c (tui_set_source_content): Likewise.
2073 * typeprint.c (find_global_typedef): Likewise.
2074 * ui-file.c (do_ui_file_xstrdup): Likewise.
2075 (ui_file_obsavestring): Likewise.
2076 (mem_file_write): Likewise.
2077 * utils.c (make_hex_string): Likewise.
2078 (get_regcomp_error): Likewise.
2079 (puts_filtered_tabular): Likewise.
2080 (gdb_realpath_keepfile): Likewise.
2081 (ldirname): Likewise.
2082 (gdb_bfd_errmsg): Likewise.
2083 (substitute_path_component): Likewise.
2084 * valops.c (search_struct_method): Likewise.
2085 (find_oload_champ_namespace_loop): Likewise.
2086 * valprint.c (print_decimal_chars): Likewise.
2087 (read_string): Likewise.
2088 (generic_emit_char): Likewise.
2089 * varobj.c (varobj_delete): Likewise.
2090 (varobj_value_get_print_value): Likewise.
2091 * vaxobsd-tdep.c (vaxobsd_sigtramp_sniffer): Likewise.
2092 * windows-tdep.c (display_one_tib): Likewise.
2093 * xcoffread.c (read_xcoff_symtab): Likewise.
2094 (process_xcoff_symbol): Likewise.
2095 (swap_sym): Likewise.
2096 (scan_xcoff_symtab): Likewise.
2097 (xcoff_initial_scan): Likewise.
2098 * xml-support.c (gdb_xml_end_element): Likewise.
2099 (xml_process_xincludes): Likewise.
2100 (xml_fetch_content_from_file): Likewise.
2101 * xml-syscall.c (xml_list_of_syscalls): Likewise.
2102 * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
2103
2104 2015-09-23 James Bowman <james.bowman@ftdichip.com>
2105
2106 * ft32-tdep.c (ft32_register_type): Return gdbarch_tdep (gdbarch)->pc_type
2107 instead of builtin_func_ptr.
2108 (ft32_pointer_to_address): New function.
2109 (ft32_address_class_type_flags): New function.
2110 (ft32_address_class_type_flags_to_name): New function.
2111 (ft32_address_class_name_to_type_flags): New function.
2112 (ft32_gdbarch_init): Set tdep->pc_type. Call
2113 set_gdbarch_pointer_to_address,
2114 set_gdbarch_address_class_type_flags
2115 set_gdbarch_address_class_name_to_type_flags,
2116 and set_gdbarch_address_class_type_flags_to_name.
2117 * ft32-tdep.h (struct gdbarch_tdep) <pc_type>: New field.
2118
2119 2015-09-23 Pierre-Marie de Rodat <derodat@adacore.com>
2120
2121 * ada-lang.c (ada_evaluate_subexp) <OP_FUNCALL>: When the input
2122 value is a reference, actually dereference it in order to get
2123 the underlying value.
2124
2125 2015-09-22 Simon Marchi <simon.marchi@ericsson.com>
2126
2127 * stap-probe.c (handle_stap_probe): Remove unnecessary cast.
2128
2129 2015-09-21 Simon Marchi <simon.marchi@ericsson.com>
2130
2131 * cli/cli-setshow.c (cmd_show_list): Constify a variable.
2132 * linespec.c (linespec_lexer_lex_string): Same.
2133
2134 2015-09-21 Pierre Langlois <pierre.langlois@arm.com>
2135
2136 * NEWS: Mention support for fast tracepoints on aarch64-linux.
2137
2138 2015-09-21 Pierre Langlois <pierre.langlois@arm.com>
2139
2140 * aarch64-tdep.c (aarch64_analyze_prologue): New is_adrp
2141 variable. Call aarch64_decode_adr instead of
2142 aarch64_decode_adrp.
2143 * arch/aarch64-insn.h (aarch64_decode_adrp): Delete.
2144 (aarch64_decode_adr): New function declaration.
2145 * arch/aarch64-insn.c (aarch64_decode_adrp): Delete.
2146 (aarch64_decode_adr): New function, factored out from
2147 aarch64_decode_adrp to decode both adr and adrp instructions.
2148
2149 2015-09-21 Pierre Langlois <pierre.langlois@arm.com>
2150
2151 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-insn.o.
2152 (HFILES_NO_SRCDIR): Add arch/aarch64-insn.h.
2153 (aarch64-insn.o): New rule.
2154 * configure.tgt (aarch64*-*-elf): Add aarch64-insn.o.
2155 (aarch64*-*-linux*): Likewise.
2156 * arch/aarch64-insn.c: New file.
2157 * arch/aarch64-insn.h: New file.
2158 * aarch64-tdep.c: Include arch/aarch64-insn.h.
2159 (aarch64_debug): Move to arch/aarch64-insn.c. Declare in
2160 arch/aarch64-insn.h.
2161 (decode_add_sub_imm): Rename to ...
2162 (aarch64_decode_add_sub_imm): ... this.
2163 (decode_adrp): Rename to ...
2164 (aarch64_decode_adrp): ... this. Move to arch/aarch64-insn.c.
2165 Declare in arch/aarch64-insn.h.
2166 (decode_b): Rename to ...
2167 (aarch64_decode_b): ... this. Move to arch/aarch64-insn.c.
2168 Declare in arch/aarch64-insn.h.
2169 (decode_bcond): Rename to ...
2170 (aarch64_decode_bcond): ... this. Move to arch/aarch64-insn.c.
2171 Declare in arch/aarch64-insn.h.
2172 (decode_br): Rename to ...
2173 (aarch64_decode_br): ... this.
2174 (decode_cb): Rename to ...
2175 (aarch64_decode_cb): ... this. Move to arch/aarch64-insn.c.
2176 Declare in arch/aarch64-insn.h.
2177 (decode_eret): Rename to ...
2178 (aarch64_decode_eret): ... this.
2179 (decode_movz): Rename to ...
2180 (aarch64_decode_movz): ... this.
2181 (decode_orr_shifted_register_x): Rename to ...
2182 (aarch64_decode_orr_shifted_register_x): ... this.
2183 (decode_ret): Rename to ...
2184 (aarch64_decode_ret): ... this.
2185 (decode_stp_offset): Rename to ...
2186 (aarch64_decode_stp_offset): ... this.
2187 (decode_stp_offset_wb): Rename to ...
2188 (aarch64_decode_stp_offset_wb): ... this.
2189 (decode_stur): Rename to ...
2190 (aarch64_decode_stur): ... this.
2191 (decode_tb): Rename to ...
2192 (aarch64_decode_tb): ... this. Move to arch/aarch64-insn.c.
2193 Declare in arch/aarch64-insn.h.
2194 (aarch64_analyze_prologue): Adjust calls to renamed functions.
2195
2196 2015-09-20 Doug Evans <xdje42@gmail.com>
2197
2198 * dwarf2read.c (add_partial_symbol): Remove outdated comments.
2199
2200 2015-09-20 Doug Evans <xdje42@gmail.com>
2201
2202 * dwarf2read.c (dwarf2_compute_name): Add FIXME. Don't use a local
2203 variable name that collides with a parameter.
2204
2205 2015-09-20 Joel Brobecker <brobecker@adacore.com>
2206
2207 * dwarf2loc.c (locexpr_get_frame_base): Renames
2208 block_op_get_frame_base.
2209 (dwarf2_block_frame_base_locexpr_funcs): Replace reference to
2210 block_op_get_frame_base by reference to locexpr_get_frame_base.
2211 (loclist_get_frame_base): New function, near identical copy of
2212 locexpr_get_frame_base.
2213 (dwarf2_block_frame_base_loclist_funcs): Replace reference to
2214 block_op_get_frame_base by reference to loclist_get_frame_base.
2215
2216 2015-09-19 Doug Evans <xdje42@gmail.com>
2217
2218 * ravenscar-thread.c (ravenscar_inferior_created): Replace
2219 current_inferior ()->gdbarch with its wrapper target_gdbarch.
2220
2221 2015-09-18 Doug Evans <xdje42@gmail.com>
2222
2223 * linux-thread-db.c (record_thread): Return the created thread.
2224 (thread_from_lwp): Likewise.
2225 (thread_db_get_thread_local_address): Update.
2226
2227 2015-09-18 Doug Evans <xdje42@gmail.com>
2228
2229 * symtab.h (general_symbol_info) <mangled_lang>: Delete struct,
2230 move only member demangled_name up. All uses updated.
2231
2232 2015-09-18 Doug Evans <xdje42@gmail.com>
2233
2234 * findvar.c (default_read_var_value) <LOC_UNRESOLVED>: Include the
2235 kind of minimal symbol in the error message.
2236 * objfiles.c (objfile_flavour_name): New function.
2237 * objfiles.h (objfile_flavour_name): Declare.
2238
2239 2015-09-18 Yao Qi <yao.qi@linaro.org>
2240
2241 * nat/aarch64-linux.c: Include elf/common.h,
2242 nat/gdb_ptrace.h, asm/ptrace.h and sys/uio.h.
2243 (aarch64_ps_get_thread_area): New function.
2244 * nat/aarch64-linux.h: Include gdb_proc_service.h.
2245 (aarch64_ps_get_thread_area): Declare.
2246 * aarch64-linux-nat.c (ps_get_thread_area): Call
2247 aarch64_ps_get_thread_area.
2248
2249 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2250
2251 * record-btrace.c (record_btrace_resume): Honour scheduler-locking.
2252
2253 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2254
2255 * NEWS: Announce new scheduler-locking mode.
2256 * infrun.c (schedlock_replay): New.
2257 (scheduler_enums): Add schedlock_replay.
2258 (scheduler_mode): Change default to schedlock_replay.
2259 (user_visible_resume_ptid): Handle schedlock_replay.
2260 (clear_proceed_status_thread): Stop replaying if resumed thread is
2261 not replaying.
2262 (schedlock_applies): Handle schedlock_replay.
2263 (_initialize_infrun): Document new scheduler-locking mode.
2264 * record-btrace.c (record_btrace_resume): Remove code to stop other
2265 threads when not replaying the resumed thread.
2266
2267 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2268
2269 * record-btrace.c ((record_btrace_will_replay): New.
2270 (init_record_btrace_ops): Initialize to_record_will_replay.
2271 * record-full.c ((record_full_will_replay): New.
2272 (init_record_full_ops): Initialize to_record_will_replay.
2273 * target-delegates.c: Regenerated.
2274 * target.c (target_record_will_replay): New.
2275 * target.h (struct target_ops) <to_record_will_replay>: New.
2276 (target_record_will_replay): New.
2277
2278 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2279
2280 * record-btrace.c (record_btrace_resume): Call
2281 target_record_stop_replaying.
2282 (record_btrace_stop_replaying_all): New.
2283 (init_record_btrace_ops): Initialize to_record_stop_replaying.
2284 * record-full.c (record_full_stop_replaying): New.
2285 (init_record_full_ops ): Initialize to_record_stop_replaying.
2286 * target-delegates.c: Regenerated.
2287 * target.c (target_record_stop_replaying): New.
2288 * target.h (struct target_ops) <to_record_stop_replaying>: New.
2289 (target_record_stop_replaying): New.
2290
2291 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2292
2293 * record-btrace.c (record_btrace_xfer_partial)
2294 (record_btrace_store_registers, record_btrace_prepare_to_store):
2295 Call record_btrace_is_replaying with inferior_ptid instead of
2296 minus_one_ptid.
2297 (record_btrace_store_registers): Change error message.
2298
2299 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2300
2301 * record-btrace.c (record_btrace_is_replaying): Add ptid argument.
2302 Update users to pass minus_one_ptid.
2303 * record-full.c (record_full_is_replaying): Add ptid argument (ignored).
2304 * record.c (cmd_record_delete): Pass inferior_ptid to
2305 target_record_is_replaying.
2306 * target-delegates.c: Regenerated.
2307 * target.c (target_record_is_replaying): Add ptid argument.
2308 * target.h (struct target_ops) <to_record_is_replaying>: Add ptid
2309 argument.
2310 (target_record_is_replaying): Add ptid argument.
2311
2312 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2313
2314 * record-btrace.c (record_btrace_open): Remove non_stop check.
2315 * NEWS: Announce that record btrace supports non-stop mode.
2316
2317 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2318
2319 * infrun.c (handle_inferior_event_1): Switch to the eventing thread
2320 in the TARKET_WAITKIND_NO_HISTORY case.
2321
2322 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2323
2324 * record-btrace.c (record_btrace_maybe_mark_async_event): New.
2325 (record_btrace_wait): Call record_btrace_maybe_mark_async_event.
2326
2327 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2328
2329 * record-btrace.c (get_thread_current_frame): New.
2330 (record_btrace_start_replaying): Call get_thread_current_frame.
2331
2332 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2333
2334 * record-btrace.c (record_btrace_resume_thread): A move request
2335 overwrites a previous move request.
2336 (record_btrace_find_resume_thread): Removed.
2337 (record_btrace_resume): Resume all requested threads.
2338
2339 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2340
2341 * record-btrace.c: Include vec.h.
2342 (record_btrace_find_thread_to_move): Removed.
2343 (btrace_step_no_resumed, btrace_step_again)
2344 (record_btrace_stop_replaying_at_end): New.
2345 (record_btrace_cancel_resume): Call record_btrace_stop_replaying_at_end.
2346 (record_btrace_single_step_forward): Remove calls to
2347 record_btrace_stop_replaying.
2348 (record_btrace_step_thread): Do only one step for BTHR_CONT and
2349 BTHR_RCONT. Keep threads at the end of their history moving.
2350 (record_btrace_wait): Call record_btrace_step_thread for all threads
2351 until one reports an event. Call record_btrace_stop_replaying_at_end
2352 for the eventing thread.
2353
2354 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2355
2356 * record-btrace.c (record_btrace_single_step_forward): Return
2357 NO_HISTORY if a step brings us to the end of the execution history.
2358
2359 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2360
2361 * record-btrace.c (record_btrace_step_thread): Move breakpoint check
2362 to ...
2363 (record_btrace_single_step_forward): ... here and
2364 (record_btrace_single_step_backward): ... here.
2365
2366 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2367
2368 * record-btrace.c (btrace_step_spurious)
2369 (record_btrace_single_step_forward)
2370 (record_btrace_single_step_backward): New.
2371 (record_btrace_step_thread): Call record_btrace_single_step_forward
2372 and record_btrace_single_step_backward.
2373
2374 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2375
2376 * record-btrace.c (record_btrace_replay_at_breakpoint): New.
2377 (record_btrace_step_thread): Call record_btrace_replay_at_breakpoint.
2378
2379 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2380
2381 * record-btrace.c (btrace_thread_flag_to_str)
2382 (record_btrace_cancel_resume): New.
2383 (record_btrace_step_thread): Call btrace_thread_flag_to_str.
2384 (record_btrace_resume): Print execution direction.
2385 (record_btrace_resume_thread): Call btrace_thread_flag_to_str.
2386 (record_btrace_wait): Call record_btrace_cancel_resume.
2387
2388 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2389
2390 * btrace.h (enum btrace_thread_flag) <BTHR_STOP>: New.
2391 * record-btrace (record_btrace_resume_thread): Clear BTHR_STOP.
2392 (record_btrace_find_thread_to_move): Also accept threads that have
2393 BTHR_STOP set.
2394 (btrace_step_stopped_on_request, record_btrace_stop): New.
2395 (record_btrace_step_thread): Support BTHR_STOP.
2396 (record_btrace_wait): Also clear BTHR_STOP when stopping other threads.
2397 (init_record_btrace_ops): Initialize to_stop.
2398
2399 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2400
2401 * record-btrace.c (record_btrace_wait): Replace non_stop check with
2402 target_is_non_stop_p ().
2403
2404 2015-09-15 Pierre-Marie de Rodat <derodat@adacore.com>
2405
2406 * ada-typeprint.c (print_array_type): Do not describe arrays as
2407 packed when they embed dynamic elements.
2408
2409 2015-09-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2410
2411 * symtab.h (address_class): Document that TLS variables
2412 are handled by LOC_UNRESOLVED.
2413 * findvar.c (default_read_var_value): Don't relocate TLS variables.
2414 * printcmd.c (address_info): Don't relocate TLS variables.
2415
2416 2015-09-15 Pierre Langlois <pierre.langlois@arm.com>
2417
2418 * aarch64-tdep.c (decode_add_sub_imm): Use debug_printf.
2419 (decode_adrp): Likewise.
2420 (decode_b): Likewise.
2421 (decode_bcond): Likewise.
2422 (decode_br): Likewise.
2423 (decode_cb): Likewise.
2424 (decode_eret): Likewise.
2425 (decode_movz): Likewise.
2426 (decode_orr_shifted_register_x): Likewise.
2427 (decode_ret): Likewise.
2428 (decode_stp_offset): Likewise.
2429 (decode_stp_offset_wb): Likewise.
2430 (decode_stur): Likewise.
2431 (decode_tb): Likewise.
2432 (aarch64_analyze_prologue): Likewise.
2433 (pass_in_x): Likewise.
2434 (pass_in_v): Likewise.
2435 (pass_on_stack): Likewise.
2436 (aarch64_push_dummy_call): Likewise.
2437 (aarch64_extract_return_value): Likewise.
2438 (aarch64_store_return_value): Likewise.
2439 (aarch64_return_value): Likewise.
2440 (aarch64_record_asimd_load_store): Likewise.
2441 (aarch64_record_load_store): Likewise.
2442 (aarch64_record_data_proc_simd_fp): Likewise.
2443
2444 2015-09-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2445
2446 * linespec.c (minsym_found): Call gdbarch_skip_entrypoint.
2447 * ppc64-tdep.c (ppc64_skip_trampoline_code): Rename to ...
2448 (ppc64_skip_trampoline_code_1): ... here.
2449 (ppc64_skip_trampoline_code): New wrapper function.
2450 * symtab.c (find_function_start_sal): Call gdbarch_skip_entrypoint.
2451
2452 2015-09-15 Yao Qi <yao.qi@linaro.org>
2453
2454 * aarch64-linux-nat.c (aarch64_linux_can_do_single_step): New
2455 function.
2456 (_initialize_aarch64_linux_nat): Install it to to_can_do_single_step.
2457 * arm-linux-tdep.c (arm_linux_software_single_step): Return 0
2458 if target_can_do_single_step returns 1.
2459 * remote.c (struct vCont_action_support) <s, S>: New fields.
2460 (PACKET_vContSupported): New enum.
2461 (remote_protocol_features): New element for vContSupported.
2462 (remote_query_supported): Append "vContSupported+".
2463 (remote_vcont_probe): Remove support_s and support_S, use
2464 rs->supports_vCont.s and rs->supports_vCont.S instead. Disable
2465 vCont packet if c and C actions are not supported.
2466 (remote_can_do_single_step): New function.
2467 (init_remote_ops): Install it to to_can_do_single_step.
2468 (_initialize_remote): Call add_packet_config_cmd.
2469 * target.h (struct target_ops) <to_can_do_single_step>: New field.
2470 (target_can_do_single_step): New macro.
2471 * target-delegates.c: Re-generated.
2472
2473 2015-09-15 Yao Qi <yao.qi@linaro.org>
2474
2475 * aarch64-linux-nat.c (aarch64_linux_siginfo_fixup): New function.
2476 (_initialize_aarch64_linux_nat): Call linux_nat_set_siginfo_fixup.
2477 * nat/aarch64-linux.c (aarch64_compat_siginfo_from_siginfo):
2478 New function.
2479 (aarch64_siginfo_from_compat_siginfo): New function.
2480 * nat/aarch64-linux.h: Include signal.h.
2481 (compat_int_t, compat_uptr_t, compat_time_t): Typedef.
2482 (compat_timer_t, compat_clock_t): Likewise.
2483 (struct compat_timeval): New.
2484 (union compat_sigval): New.
2485 (struct compat_siginfo): New.
2486 (cpt_si_pid, cpt_si_uid, cpt_si_timerid): New macros.
2487 (cpt_si_overrun, cpt_si_status, cpt_si_utime): Likewise.
2488 (cpt_si_stime, cpt_si_ptr, cpt_si_addr): Likewise.
2489 (cpt_si_band, cpt_si_fd): Likewise.
2490
2491 2015-09-14 Pedro Alves <palves@redhat.com>
2492
2493 * infrun.c (current_stop_id): New global.
2494 (get_stop_id, new_stop_id): New functions.
2495 (fetch_inferior_event): Handle normal_stop proceeding the target.
2496 (struct stop_context): New.
2497 (save_stop_context, release_stop_context_cleanup)
2498 (stop_context_changed): New functions.
2499 (normal_stop): Return true if the hook-stop changes the stop
2500 context.
2501 * infrun.h (get_stop_id): Declare.
2502 (normal_stop): Now returns int. Add documentation.
2503
2504 2015-09-14 Pierre-Marie de Rodat <derodat@adacore.com>
2505
2506 * ada-lang.c (ada_value_ptr_subscript): Update the heading
2507 comment. Handle packed arrays.
2508
2509 2015-09-14 Pedro Alves <palves@redhat.com>
2510
2511 * NEWS (Changes in GDB 7.10, New commands>: Remove duplicate
2512 mention of maint set/show target-non-stop.
2513
2514 2015-09-11 Don Breazeal <donb@codesourcery.com>
2515
2516 * NEWS: Announce new remote packets for the exec-events
2517 feature and the exec-events feature and associated commands.
2518
2519 2015-09-11 Don Breazeal <donb@codesourcery.com>
2520
2521 * remote.c (remote_exec_event_p): New function.
2522 (remote_insert_exec_catchpoint): New function.
2523 (remote_remove_exec_catchpoint): New function.
2524 (init_extended_remote_ops): Initialize extended_remote_ops
2525 members to_insert_exec_catchpoint and
2526 to_remove_exec_catchpoint.
2527
2528 2015-09-11 Don Breazeal <donb@codesourcery.com>
2529 Luis Machado <lgustavo@codesourcery.com>
2530
2531 * infrun.c (follow_exec): Use process-style ptid for
2532 exec message. Call add_inferior_with_spaces and
2533 target_follow_exec.
2534 * nat/linux-ptrace.c (linux_supports_traceexec): New function.
2535 * nat/linux-ptrace.h (linux_supports_traceexec): Declare.
2536 * remote.c (remote_pspace_data): New static variable.
2537 (remote_pspace_data_cleanup): New function.
2538 (get_remote_exec_file): New function.
2539 (set_remote_exec_file_1): New function.
2540 (set_remote_exec_file): New function.
2541 (show_remote_exec_file): New function.
2542 (remote_exec_file): Delete static variable.
2543 (anonymous enum) <PACKET_exec_event_feature>: New
2544 enumeration constant.
2545 (remote_protocol_features): Add entry for exec-events feature.
2546 (remote_query_supported): Add client side of qSupported query
2547 for exec-events feature.
2548 (remote_follow_exec): New function.
2549 (remote_parse_stop_reply): Handle 'exec' stop reason.
2550 (extended_remote_run, extended_remote_create_inferior): Call
2551 get_remote_exec_file and set_remote_exec_file_1.
2552 (init_extended_remote_ops) <to_follow_exec>: Initialize new
2553 member.
2554 (_initialize_remote): Call
2555 register_program_space_data_with_cleanup. Call
2556 add_packet_config_cmd for remote exec-events feature.
2557 Modify call to add_setshow_string_noescape_cmd for exec-file
2558 to use new functions set_remote_exec_file and
2559 show_remote_exec_file.
2560 * target-debug.h, target-delegates.c: Regenerated.
2561 * target.c (target_follow_exec): New function.
2562 * target.h (struct target_ops) <to_follow_exec>: New member.
2563 (target_follow_exec): Declare new function.
2564
2565 2015-09-11 Pierre Langlois <pierre.langlois@arm.com>
2566
2567 * aarch64-tdep.c (decode_cb): Move up comment describing the
2568 encoding.
2569 (decode_tb): Fix a typo in comment above the function. Move up
2570 comment describing the encoding.
2571
2572 2015-09-11 Pierre Langlois <pierre.langlois@arm.com>
2573
2574 * aarch64-tdep.c (decode_bcond): Fix incorrect mask.
2575
2576 2015-09-11 Mihail-Marian Nistor <mihail.nistor@freescale.com>
2577
2578 PR gdb/18947
2579 * aarch64-linux-tdep.c: (aarch64_linux_init_abi): Install
2580 glibc_skip_solib_resolver as gdbarch_skip_solib_resolver callback.
2581
2582 2015-09-10 Simon Marchi <simon.marchi@ericsson.com>
2583
2584 * ada-lang.c (scan_discrim_bound): Factor out arithmetic
2585 operations.
2586
2587 2015-09-10 Simon Marchi <simon.marchi@ericsson.com>
2588
2589 * ada-lang.c (ada_search_struct_field): Constify parameters
2590 and/or variables..
2591 (xget_renaming_scope): Likewise.
2592 (ada_is_redundant_range_encoding): Likewise.
2593 (scan_discrim_bound): Likewise.
2594 (to_fixed_range_type): Likewise.
2595
2596 2015-09-10 Yao Qi <yao.qi@linaro.org>
2597
2598 * breakpoint.c (download_tracepoint_locations): New local
2599 can_download_tracepoint. Check the result of
2600 target_can_download_tracepoint and save it in
2601 can_download_tracepoint if there are tracepoints to download.
2602 * linux-nat.h (enum tribool): Move it to ...
2603 * common/common-types.h: ... here.
2604
2605 2015-09-09 Pedro Alves <palves@redhat.com>
2606
2607 * inf-loop.c (inferior_event_handler): Delete INF_TIMER case.
2608 * target.h (enum inferior_event_type) <INF_TIMER>: Delete.
2609
2610 2015-09-09 Pedro Alves <palves@redhat.com>
2611
2612 * continuations.c (add_continuation, restore_thread_cleanup)
2613 (do_all_continuations_ptid, do_all_continuations_thread_callback)
2614 (do_all_continuations_thread, do_all_continuations)
2615 (discard_all_continuations_thread_callback)
2616 (discard_all_continuations_thread, discard_all_continuations)
2617 (add_intermediate_continuation)
2618 (do_all_intermediate_continuations_thread_callback)
2619 (do_all_intermediate_continuations_thread)
2620 (do_all_intermediate_continuations)
2621 (discard_all_intermediate_continuations_thread_callback)
2622 (discard_all_intermediate_continuations_thread)
2623 (discard_all_intermediate_continuations): Delete.
2624 * continuations.h (add_continuation, do_all_continuations)
2625 (do_all_continuations_thread, discard_all_continuations)
2626 (discard_all_continuations_thread, add_intermediate_continuation)
2627 (do_all_intermediate_continuations)
2628 (do_all_intermediate_continuations_thread)
2629 (discard_all_intermediate_continuations)
2630 (discard_all_intermediate_continuations_thread): Delete
2631 declarations.
2632 * event-top.c (stdin_event_handler): Delete references to
2633 continuations.
2634 * gdbthread.h (struct thread_info): Delete continuations and
2635 intermediate_continuations fields.
2636 * inf-loop.c (inferior_event_handler): Remove references to
2637 continuations.
2638 * infrun.c (infrun_thread_stop_requested_callback): Remove
2639 references to continuations.
2640 * target.h (enum inferior_event_type) <INF_EXEC_CONTINUE>: Delete.
2641 * thread.c: Don't include "continuations.h".
2642 (clear_thread_inferior_resources): Remove references to
2643 continuations.
2644
2645 2015-09-09 Pedro Alves <palves@redhat.com>
2646
2647 * infcall.c (struct dummy_frame_context_saver): Delete.
2648 (dummy_frame_context_saver_free, dummy_frame_context_saver_dtor)
2649 (dummy_frame_context_saver_drop)
2650 (dummy_frame_context_saver_cleanup)
2651 (dummy_frame_context_saver_get_regs)
2652 (dummy_frame_context_saver_setup): Delete.
2653 * infcall.h (dummy_frame_context_saver_drop)
2654 (dummy_frame_context_saver_cleanup)
2655 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver):
2656 Delete.
2657 (get_return_value): Remove 'ctx_saver' paremeter. Adjust.
2658 * inferior.h (get_return_value): Remove 'ctx_saver' paremeter.
2659 * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Adjust.
2660
2661 2015-09-09 Pedro Alves <palves@redhat.com>
2662
2663 * breakpoint.c: Include "thread-fsm.h".
2664 (struct until_break_command_continuation_args): Delete.
2665 (struct until_break_fsm): New.
2666 (until_break_fsm_ops): New global.
2667 (new_until_break_fsm, until_break_fsm_should_stop): New functions.
2668 (until_break_command_continuation): Delete.
2669 (until_break_fsm_clean_up): New function.
2670 (until_break_fsm_async_reply_reason): New function.
2671 (until_break_command): Adjust to create an until_break_fsm instead
2672 of a continuation.
2673 (momentary_bkpt_print_it): No longer print MI's async-stop-reason
2674 here.
2675 * infcmd.c (struct until_next_fsm): New.
2676 (until_next_fsm_ops): New global.
2677 (new_until_next_fsm, until_next_fsm_should_stop): New function.
2678 (until_next_continuation): Delete.
2679 (until_next_fsm_clean_up, until_next_fsm_async_reply_reason): New
2680 functions.
2681 (until_next_command): Adjust to create a new until_next_fsm
2682 instead of a continuation.
2683
2684 2015-09-09 Pedro Alves <palves@redhat.com>
2685
2686 * infcall.c: Include thread_fsm.h.
2687 (struct call_return_meta_info): New.
2688 (get_call_return_value): New function, factored out from
2689 call_function_by_hand_dummy.
2690 (struct call_thread_fsm): New.
2691 (call_thread_fsm_ops): New global.
2692 (new_call_thread_fsm, call_thread_fsm_should_stop)
2693 (call_thread_fsm_should_notify_stop): New functions.
2694 (run_inferior_call): Add 'sm' parameter. Associate the FSM with
2695 the thread.
2696 (call_function_by_hand_dummy): Create a new call_thread_fsm
2697 instance, associate it with the thread, and wait for the FSM to
2698 finish. If finished successfully, fetch the function's result
2699 value out of the FSM.
2700 * infrun.c (fetch_inferior_event): If the FSM says the stop
2701 shouldn't be notified, don't call normal_stop.
2702 (maybe_remove_breakpoints): New function, factored out from ...
2703 (normal_stop): ... here. Simplify.
2704 * infrun.h (maybe_remove_breakpoints): Declare.
2705 * thread-fsm.c (thread_fsm_should_notify_stop): New function.
2706 (thread-fsm.h) <struct thread_fsm_ops>: New field.
2707 (thread_fsm_should_notify_stop): Declare.
2708
2709 2015-09-09 Pedro Alves <palves@redhat.com>
2710
2711 * Makefile.in (COMMON_OBS): Add thread-fsm.o.
2712 * breakpoint.c (handle_jit_event): Print debug output.
2713 (bpstat_what): Split event callback handling to ...
2714 (bpstat_run_callbacks): ... this new function.
2715 (momentary_bkpt_print_it): No longer handle bp_finish here.
2716 * breakpoint.h (bpstat_run_callbacks): Declare.
2717 * gdbthread.h (struct thread_info) <step_multi>: Delete field.
2718 <thread_fsm>: New field.
2719 (thread_cancel_execution_command): Declare.
2720 * infcmd.c: Include thread-fsm.h.
2721 (struct step_command_fsm): New.
2722 (step_command_fsm_ops): New global.
2723 (new_step_command_fsm, step_command_fsm_prepare): New functions.
2724 (step_1): Adjust to use step_command_fsm_prepare and
2725 prepare_one_step.
2726 (struct step_1_continuation_args): Delete.
2727 (step_1_continuation): Delete.
2728 (step_command_fsm_should_stop): New function.
2729 (step_once): Delete.
2730 (step_command_fsm_clean_up, step_command_fsm_async_reply_reason)
2731 (prepare_one_step): New function, based on step_once.
2732 (until_next_command): Remove step_multi reference.
2733 (struct return_value_info): New.
2734 (print_return_value): Rename to ...
2735 (print_return_value_1): ... this. New struct return_value_info
2736 parameter. Adjust.
2737 (print_return_value): Reimplement as wrapper around
2738 print_return_value_1.
2739 (struct finish_command_fsm): New.
2740 (finish_command_continuation): Delete.
2741 (finish_command_fsm_ops): New global.
2742 (new_finish_command_fsm, finish_command_fsm_should_stop): New
2743 functions.
2744 (finish_command_fsm_clean_up, finish_command_fsm_return_value):
2745 New.
2746 (finish_command_continuation_free_arg): Delete.
2747 (finish_command_fsm_async_reply_reason): New.
2748 (finish_backward, finish_forward): Change symbol parameter to a
2749 finish_command_fsm. Adjust.
2750 (finish_command): Create a finish_command_fsm. Adjust.
2751 * infrun.c: Include "thread-fsm.h".
2752 (clear_proceed_status_thread): Delete the thread's FSM.
2753 (infrun_thread_stop_requested_callback): Cancel the thread's
2754 execution command.
2755 (clean_up_just_stopped_threads_fsms): New function.
2756 (fetch_inferior_event): Handle the event_thread's should_stop
2757 method saying the command isn't done yet.
2758 (process_event_stop_test): Run breakpoint callbacks here.
2759 (print_stop_event): Rename to ...
2760 (print_stop_location): ... this.
2761 (restore_current_uiout_cleanup): New function.
2762 (print_stop_event): Reimplement.
2763 (normal_stop): No longer notify the end_stepping_range observers
2764 here handle "step N" nor "finish" here. No longer call
2765 print_stop_event here.
2766 * infrun.h (struct return_value_info): Forward declare.
2767 (print_return_value): Declare.
2768 (print_stop_event): Change prototype.
2769 * thread-fsm.c: New file.
2770 * thread-fsm.h: New file.
2771 * thread.c: Include "thread-fsm.h".
2772 (thread_cancel_execution_command): New function.
2773 (clear_thread_inferior_resources): Call it.
2774 * cli/cli-interp.c (cli_on_normal_stop): New function.
2775 (cli_interpreter_init): Install cli_on_normal_stop as normal_stop
2776 observer.
2777 * mi/mi-interp.c: Include "thread-fsm.h".
2778 (restore_current_uiout_cleanup): Delete.
2779 (mi_on_normal_stop): If the thread has an FSM associated, and it
2780 finished, ask it for the async-reply-reason to print. Always call
2781 print_stop_event here, regardless of the top-level interpreter.
2782 Check bpstat_what to tell whether an asynchronous breakpoint hit
2783 triggered.
2784 * tui/tui-interp.c (tui_on_normal_stop): New function.
2785 (tui_init): Install tui_on_normal_stop as normal_stop observer.
2786
2787 2015-09-09 Pedro Alves <palves@redhat.com>
2788
2789 * breakpoint.c (bpstat_do_actions_1, until_break_command): Don't
2790 check whether the target can async.
2791 * inf-loop.c (inferior_event_handler): Only call target_async if
2792 the target can async.
2793 * infcall.c: Include top.h and interps.h.
2794 (run_inferior_call): For the interpreter to sync mode while
2795 running the infcall. Call wait_sync_command_done instead of
2796 wait_for_inferior plus normal_stop.
2797 * infcmd.c (prepare_execution_command): Don't check whether the
2798 target can async when running in the foreground.
2799 (step_1): Delete synchronous case handling.
2800 (step_once): Always install a continuation, even in sync mode.
2801 (until_next_command, finish_forward): Don't check whether the
2802 target can async.
2803 (attach_command_post_wait, notice_new_inferior): Always install a
2804 continuation, even in sync mode.
2805 * infrun.c (mark_infrun_async_event_handler): New function.
2806 (proceed): In sync mode, mark infrun's event source instead of
2807 waiting for events here.
2808 (fetch_inferior_event): If the target can't async, do a blocking
2809 wait.
2810 (prepare_to_wait): In sync mode, mark infrun's event source.
2811 (infrun_async_inferior_event_handler): No longer bail out if the
2812 target can't async.
2813 * infrun.h (mark_infrun_async_event_handler): New declaration.
2814 * linux-nat.c (linux_nat_wait_1): Remove calls to
2815 set_sigint_trap/clear_sigint_trap.
2816 (linux_nat_terminal_inferior): No longer check whether the target
2817 can async.
2818 * mi/mi-interp.c (mi_on_sync_execution_done): Update and simplify
2819 comment.
2820 (mi_execute_command_input_handler): No longer check whether the
2821 target is async. Update and simplify comment.
2822 * target.c (default_target_wait): New function.
2823 * target.h (struct target_ops) <to_wait>: Now defaults to
2824 default_target_wait.
2825 (default_target_wait): Declare.
2826 * top.c (wait_sync_command_done): New function, factored out from
2827 ...
2828 (maybe_wait_sync_command_done): ... this.
2829 * top.h (wait_sync_command_done): Declare.
2830 * target-delegates.c: Regenerate.
2831
2832 2015-09-09 Markus Metzger <markus.t.metzger@intel.com>
2833
2834 * nat/linux-btrace.h (struct btrace_target_info) <ptr_bits>: Remove.
2835 * nat/linux-btrace.c: Include filestuff.h and inttypes.h.
2836 Remove include of sys/utsname.h.
2837 (linux_determine_kernel_ptr_bits): Remove.
2838 (linux_determine_kernel_start): New.
2839 (perf_event_is_kernel_addr): Remove tinfo argument. Update users.
2840 Update check.
2841 (perf_event_skip_bts_record): Remove tinfo argument. Update users.
2842 (linux_enable_bts, linux_enable_pt): Remove tinfo->ptr_bits
2843 initialization.
2844 * x86-linux-nat.c (x86_linux_enable_btrace): Remove ptr_bits
2845 assignment.
2846
2847 2015-09-07 Pedro Alves <palves@redhat.com>
2848
2849 * guile/guile-internal.h (as_a_scm_t_subr): New.
2850 * guile/guile.c (misc_guile_functions): Use it.
2851 * guile/scm-arch.c (arch_functions): Use it.
2852 * guile/scm-block.c (block_functions, gdbscm_initialize_blocks):
2853 Use it.
2854 * guile/scm-breakpoint.c (breakpoint_functions): Use it.
2855 * guile/scm-cmd.c (command_functions): Use it.
2856 * guile/scm-disasm.c (disasm_functions): Use it.
2857 * guile/scm-exception.c (exception_functions)
2858 (private_exception_functions): Use it.
2859 * guile/scm-frame.c (frame_functions)
2860 * guile/scm-gsmob.c (gsmob_functions): Use it.
2861 * guile/scm-iterator.c (iterator_functions): Use it.
2862 * guile/scm-lazy-string.c (lazy_string_functions): Use it.
2863 * guile/scm-math.c (math_functions): Use it.
2864 * guile/scm-objfile.c (objfile_functions): Use it.
2865 * guile/scm-param.c (parameter_functions): Use it.
2866 * guile/scm-ports.c (port_functions, private_port_functions): Use
2867 it.
2868 * guile/scm-pretty-print.c (pretty_printer_functions): Use it.
2869 * guile/scm-progspace.c (pspace_functions): Use it.
2870 * guile/scm-string.c (string_functions): Use it.
2871 * guile/scm-symbol.c (symbol_functions): Use it.
2872 * guile/scm-symtab.c (symtab_functions): Use it.
2873 * guile/scm-type.c (type_functions, gdbscm_initialize_types): Use
2874 it.
2875 * guile/scm-value.c (value_functions): Use it.
2876
2877 2015-09-04 Andrew Burgess <andrew.burgess@embecosm.com>
2878
2879 * tui/tui-data.c (win_with_focus): Remove cast of NULL pointer.
2880 (tui_next_win): Likewise.
2881 (tui_prev_win): Likewise.
2882 (tui_partial_win_by_name): Likewise.
2883 (tui_init_generic_part): Likewise.
2884 (init_content_element): Likewise.
2885 (tui_del_window): Likewise.
2886 (tui_free_window): Likewise.
2887 (tui_del_data_windows): Likewise.
2888 (tui_free_data_content): Likewise.
2889 * tui/tui-layout.c (make_source_or_disasm_window): Likewise.
2890 * tui/tui-regs.c (tui_show_register_group): Likewise.
2891 * tui/tui-win.c (tui_resize_all): Likewise.
2892 (tui_set_focus): Likewise.
2893 (tui_set_win_height): Likewise.
2894 (make_invisible_and_set_new_height): Likewise.
2895 * tui/tui-windata.c (tui_delete_data_content_windows): Likewise.
2896 * tui/tui-wingeneral.c (make_visible): Likewise.
2897
2898 2015-09-04 Andrew Burgess <andrew.burgess@embecosm.com>
2899
2900 * cli/cli-decode.c (find_cmd): Remove cast of NULL pointer.
2901
2902 2015-09-04 Andrew Burgess <andrew.burgess@embecosm.com>
2903
2904 * c-valprint.c (print_unpacked_pointer): Remove cast of NULL
2905 pointer.
2906 * dbxread.c (dbx_end_psymtab): Likewise.
2907 * gnu-nat.c (gnu_write_inferior): Likewise.
2908 * mdebugread.c (cross_ref): Likewise.
2909 * p-valprint.c (pascal_val_print): Likewise.
2910 * xcoffread.c (xcoff_end_psymtab): Likewise.
2911
2912 2015-09-04 Yao Qi <yao.qi@linaro.org>
2913
2914 * NEWS: Mention the aarch64 multi-arch debugging support.
2915
2916 2015-09-03 Pierre-Marie de Rodat <derodat@adacore.com>
2917
2918 * ada-lang.c (ada_language_arch_info): Create a TYPE_CODE_CHAR
2919 type instead of a TYPE_CODE_INT one for the string_char_type
2920 and the ada_primitive_type_char types.
2921
2922 2015-09-03 Yao Qi <yao.qi@linaro.org>
2923
2924 * aarch64-linux-nat.c (aarch64_linux_region_ok_for_hw_watchpoint):
2925 Move code to aarch64_linux_region_ok_for_watchpoint. Call
2926 aarch64_linux_region_ok_for_watchpoint.
2927 * nat/aarch64-linux-hw-point.c (aarch64_linux_region_ok_for_watchpoint):
2928 New function.
2929 * nat/aarch64-linux-hw-point.h (aarch64_linux_region_ok_for_watchpoint):
2930 Declare it.
2931
2932 2015-09-02 Patrick Palka <patrick@parcs.ath.cx>
2933
2934 * gdb_obstack.h (obstack_strdup): Declare.
2935 * gdb_obstack.c (obstack_strdup): Define.
2936 * gdbarch.sh (gdbarch_obstack_strdup): Declare and define.
2937 * gdbarch.c: Regenerate.
2938 * gdbarch.h: Regenerate.
2939 * gdbtypes.c (arch_type): Use gdbarch_obstack_strdup.
2940
2941 2015-09-02 Patrick Palka <patrick@parcs.ath.cx>
2942
2943 * gdbtypes.c (copy_type_recursive): Update documentation.
2944
2945 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
2946
2947 * solib-svr4.c (solib_event_probe_action): Initialize 'probe_argc'
2948 as zero.
2949
2950 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
2951
2952 * solib-svr4.c (svr4_handle_solib_event): Initialize 'val' as NULL
2953
2954 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
2955
2956 * solib-svr4.c (solib_event_probe_action): Call
2957 get_probe_argument_count using TRY...CATCH.
2958 (svr4_handle_solib_event): Likewise, for evaluate_probe_argument.
2959
2960 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
2961
2962 * probe.h (struct probe_ops) <get_probe_argument_count,
2963 evaluate_probe_argument, enable_probe, disable_probe>: Mention in
2964 the comment that the function can throw an exception.
2965 (get_probe_argument_count): Likewise.
2966 (evaluate_probe_argument): Likewise.
2967 * stap-probe.c (stap_get_opcode): Call error instead of
2968 internal_error.
2969 (stap_get_expected_argument_type): Likewise. Add argument
2970 'probe'. Improve error message by mentioning the probe's name.
2971 (stap_parse_probe_arguments): Adjust call to
2972 stap_get_expected_argument_type.
2973 (stap_get_arg): Add comment. Assert that 'probe->args_parsed' is
2974 not zero. Call internal_error if GDB requests an argument but the
2975 probe has no arguments.
2976
2977 2015-09-01 Pierre-Marie de Rodat <derodat@adacore.com>
2978
2979 * ada-lang.c (ada_resolve_function): Do not ask the user what
2980 match to use when in completion mode.
2981
2982 2015-08-31 Andrew Burgess <andrew.burgess@embecosm.com>
2983
2984 * tui/tui-data.c (tui_win_name): Make local variable const, remove
2985 cast of NULL.
2986
2987 2015-08-31 Max Filippov <jcmvbkbc@gmail.com>
2988
2989 * xtensa-tdep.h (XTENSA_GDBARCH_TDEP_INSTANTIATE): Initialize
2990 call_abi using XSHAL_ABI macro.
2991
2992 2015-08-29 Doug Evans <xdje42@gmail.com>
2993
2994 * symtab.h (struct symbol): Tweak comment.
2995
2996 2015-08-29 Patrick Palka <patrick@parcs.ath.cx>
2997
2998 * gdbtypes.c (alloc_type_arch): Allocate the type on the given
2999 gdbarch obstack instead of on the heap. Update commentary
3000 accordingly.
3001
3002 2015-08-28 Joel Brobecker <brobecker@adacore.com>
3003
3004 GDB 7.10 released.
3005
3006 2015-08-28 Simon Marchi <simon.marchi@ericsson.com>
3007
3008 * NEWS: Update entry about non-8-bits addressable memory.
3009
3010 2015-08-28 Ulrich Weigand <uweigand@de.ibm.com>
3011
3012 Revert:
3013 2014-11-06 Doug Evans <xdje42@gmail.com>
3014 * solib.c (solib_global_lookup): Fetch arch from objfile,
3015 not target_gdbarch.
3016
3017 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
3018
3019 * ppc-linux-tdep.c (ppc_linux_spe_context_lookup): Do not
3020 attempt to relocate a TLS variable offset.
3021
3022 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
3023
3024 * spu-multiarch.c (parse_spufs_run): Bail out if inferior is not
3025 registered yet. Set inferior_ptid while calling target_read_memory.
3026
3027 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
3028
3029 * nat/linux-ptrace.h (GDB_ARCH_TRAP_BRKPT): Replace by ...
3030 (GDB_ARCH_IS_TRAP_BRKPT): ... this. Add __powerpc__ case.
3031 * linux-nat.c (check_stopped_by_breakpoint): Use
3032 GDB_ARCH_IS_TRAP_BRKPT instead of GDB_ARCH_TRAP_BRKPT.
3033
3034 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
3035
3036 * linux-thread-db.c (thread_db_get_thread_local_address): If the
3037 thread was not yet discovered, use thread_from_lwp instead of
3038 calling thread_db_find_new_threads_1.
3039
3040 2015-08-27 Simon Marchi <simon.marchi@ericsson.com>
3041
3042 * m88k-tdep.c (m88k_analyze_prologue): Fix inverted allocation
3043 statements.
3044
3045 2015-08-27 Simon Marchi <simon.marchi@ericsson.com>
3046
3047 * NEWS: Document support for non-8-bits addressable memory.
3048
3049 2015-08-27 Pedro Alves <palves@redhat.com>
3050
3051 * configure.ac: Remove AC_TYPE_SIGNAL call.
3052 * configure, config.in: Regenerate.
3053
3054 2015-08-27 Pedro Alves <palves@redhat.com>
3055
3056 * cp-support.c (gdb_demangle): Use sighandler_t. Remove cast.
3057 * extension-priv.h: Include signal.h.
3058 (struct signal_handler) <handler>: Change type to sighandler_t.
3059 * extension.c (install_gdb_sigint_handler): Use sighandler_t.
3060 * inflow.c (sigint_ours, sigquit_ours): Change type to
3061 sighandler_t.
3062 (child_terminal_inferior): Remove casts.
3063 (child_terminal_ours_1, new_tty): Use sighandler_t. Remove casts.
3064 (osig): Change type to sighandler_t.
3065 * nto-procfs.c (ofunc): Change type to sighandler_t.
3066 (procfs_wait): Remove casts.
3067 * remote-m32r-sdi.c (m32r_wait, m32r_load): Use sighandler_t.
3068 * remote-sim.c (gdbsim_wait): Use sighandler_t.
3069 * utils.c (wait_to_die_with_timeout): Use sighandler_t.
3070
3071 2015-08-27 Pedro Alves <palves@redhat.com>
3072
3073 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add signal-h.
3074 * gnulib/aclocal.m4: Renegerate.
3075 * gnulib/config.in: Renegerate.
3076 * gnulib/configure: Renegerate.
3077 * gnulib/import/Makefile.am: Update.
3078 * gnulib/import/Makefile.in: Regenerate.
3079 * gnulib/import/m4/gnulib-cache.m4: Update.
3080 * gnulib/import/m4/gnulib-comp.m4: Update.
3081 * gnulib/import/m4/signal_h.m4: New file.
3082 * gnulib/import/signal.in.h: New file.
3083
3084 2015-08-27 Pedro Alves <palves@redhat.com>
3085
3086 * remote.c (DEFAULT_MAX_MEMORY_PACKET_SIZE)
3087 (MIN_MEMORY_PACKET_SIZE): New.
3088 (MAX_REMOTE_PACKET_SIZE, MIN_REMOTE_PACKET_SIZE): Delete.
3089 (get_memory_packet_size): Adjust. No longer limit the max packet
3090 size.
3091 (set_memory_packet_size): Adjust, and remove dead code.
3092 (remote_check_symbols): Use xmalloc and a cleanup instead of
3093 alloca.
3094 (remote_packet_size): No longer cap the packet size.
3095 (putpkt_binary): Use xmalloc and a cleanup instead of alloca.
3096
3097 2015-08-26 Luis Machado <lgustavo@codesourcery.com>
3098
3099 * compile/compile.c (compile_to_object): Mention language in
3100 error message.
3101
3102 2015-08-26 Patrick Palka <patrick@parcs.ath.cx>
3103
3104 * target.c (target_pre_inferior): Unset attach_flag.
3105
3106 2015-08-26 Simon Marchi <simon.marchi@ericsson.com>
3107
3108 * gdbarch.sh (append_name): Fix type in XRESIZEVEC.
3109 * gdbarch.c: Re-generate.
3110
3111 2015-08-26 Simon Marchi <simon.marchi@ericsson.com>
3112
3113 * aarch64-linux-nat.c (aarch64_add_process): Replace xmalloc-family
3114 function with the XNEW-family equivalent.
3115 * aarch64-tdep.c (aarch64_gdbarch_init): Likewise.
3116 * ada-exp.y (write_ambiguous_var): Likewise.
3117 * ada-lang.c (resolve_subexp): Likewise.
3118 (user_select_syms): Likewise.
3119 (assign_aggregate): Likewise.
3120 (ada_evaluate_subexp): Likewise.
3121 (cache_symbol): Likewise.
3122 * addrmap.c (allocate_key): Likewise.
3123 (addrmap_create_mutable): Likewise.
3124 * aix-thread.c (sync_threadlists): Likewise.
3125 * alpha-tdep.c (alpha_push_dummy_call): Likewise.
3126 (alpha_gdbarch_init): Likewise.
3127 * amd64-windows-tdep.c (amd64_windows_push_arguments): Likewise.
3128 * arm-linux-nat.c (arm_linux_add_process): Likewise.
3129 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
3130 * arm-tdep.c (push_stack_item): Likewise.
3131 (arm_displaced_step_copy_insn): Likewise.
3132 (arm_gdbarch_init): Likewise.
3133 (_initialize_arm_tdep): Likewise.
3134 * avr-tdep.c (push_stack_item): Likewise.
3135 * ax-general.c (new_agent_expr): Likewise.
3136 * block.c (block_initialize_namespace): Likewise.
3137 * breakpoint.c (alloc_counted_command_line): Likewise.
3138 (update_dprintf_command_list): Likewise.
3139 (parse_breakpoint_sals): Likewise.
3140 (decode_static_tracepoint_spec): Likewise.
3141 (until_break_command): Likewise.
3142 (clear_command): Likewise.
3143 (update_global_location_list): Likewise.
3144 (get_breakpoint_objfile_data) Likewise.
3145 * btrace.c (ftrace_new_function): Likewise.
3146 (btrace_set_insn_history): Likewise.
3147 (btrace_set_call_history): Likewise.
3148 * buildsym.c (add_symbol_to_list): Likewise.
3149 (record_pending_block): Likewise.
3150 (start_subfile): Likewise.
3151 (start_buildsym_compunit): Likewise.
3152 (push_subfile): Likewise.
3153 (end_symtab_get_static_block): Likewise.
3154 (buildsym_init): Likewise.
3155 * cli/cli-cmds.c (source_command): Likewise.
3156 * cli/cli-decode.c (add_cmd): Likewise.
3157 * cli/cli-script.c (build_command_line): Likewise.
3158 (setup_user_args): Likewise.
3159 (realloc_body_list): Likewise.
3160 (process_next_line): Likewise.
3161 (copy_command_lines): Likewise.
3162 * cli/cli-setshow.c (do_set_command): Likewise.
3163 * coff-pe-read.c (read_pe_exported_syms): Likewise.
3164 * coffread.c (coff_locate_sections): Likewise.
3165 (coff_symtab_read): Likewise.
3166 (coff_read_struct_type): Likewise.
3167 * common/cleanups.c (make_my_cleanup2): Likewise.
3168 * common/common-exceptions.c (throw_it): Likewise.
3169 * common/filestuff.c (make_cleanup_close): Likewise.
3170 * common/format.c (parse_format_string): Likewise.
3171 * common/queue.h (DEFINE_QUEUE_P): Likewise.
3172 * compile/compile-object-load.c (munmap_list_add): Likewise.
3173 (compile_object_load): Likewise.
3174 * compile/compile-object-run.c (compile_object_run): Likewise.
3175 * compile/compile.c (append_args): Likewise.
3176 * corefile.c (specify_exec_file_hook): Likewise.
3177 * cp-support.c (make_symbol_overload_list): Likewise.
3178 * cris-tdep.c (push_stack_item): Likewise.
3179 (cris_gdbarch_init): Likewise.
3180 * ctf.c (ctf_trace_file_writer_new): Likewise.
3181 * dbxread.c (init_header_files): Likewise.
3182 (add_new_header_file): Likewise.
3183 (init_bincl_list): Likewise.
3184 (dbx_end_psymtab): Likewise.
3185 (start_psymtab): Likewise.
3186 (dbx_end_psymtab): Likewise.
3187 * dcache.c (dcache_init): Likewise.
3188 * dictionary.c (dict_create_hashed): Likewise.
3189 (dict_create_hashed_expandable): Likewise.
3190 (dict_create_linear): Likewise.
3191 (dict_create_linear_expandable): Likewise.
3192 * dtrace-probe.c (dtrace_process_dof_probe): Likewise.
3193 * dummy-frame.c (register_dummy_frame_dtor): Likewise.
3194 * dwarf2-frame-tailcall.c (cache_new_ref1): Likewise.
3195 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
3196 (decode_frame_entry_1): Likewise.
3197 * dwarf2expr.c (new_dwarf_expr_context): Likewise.
3198 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
3199 * dwarf2read.c (dwarf2_has_info): Likewise.
3200 (create_signatured_type_table_from_index): Likewise.
3201 (dwarf2_read_index): Likewise.
3202 (dw2_get_file_names_reader): Likewise.
3203 (create_all_type_units): Likewise.
3204 (read_cutu_die_from_dwo): Likewise.
3205 (init_tu_and_read_dwo_dies): Likewise.
3206 (init_cutu_and_read_dies): Likewise.
3207 (create_all_comp_units): Likewise.
3208 (queue_comp_unit): Likewise.
3209 (inherit_abstract_dies): Likewise.
3210 (read_call_site_scope): Likewise.
3211 (dwarf2_add_field): Likewise.
3212 (dwarf2_add_typedef): Likewise.
3213 (dwarf2_add_member_fn): Likewise.
3214 (attr_to_dynamic_prop): Likewise.
3215 (abbrev_table_alloc_abbrev): Likewise.
3216 (abbrev_table_read_table): Likewise.
3217 (add_include_dir): Likewise.
3218 (add_file_name): Likewise.
3219 (dwarf_decode_line_header): Likewise.
3220 (dwarf2_const_value_attr): Likewise.
3221 (dwarf_alloc_block): Likewise.
3222 (parse_macro_definition): Likewise.
3223 (set_die_type): Likewise.
3224 (write_psymtabs_to_index): Likewise.
3225 (create_cus_from_index): Likewise.
3226 (dwarf2_create_include_psymtab): Likewise.
3227 (process_psymtab_comp_unit_reader): Likewise.
3228 (build_type_psymtab_dependencies): Likewise.
3229 (read_comp_units_from_section): Likewise.
3230 (compute_compunit_symtab_includes): Likewise.
3231 (create_dwo_unit_in_dwp_v1): Likewise.
3232 (create_dwo_unit_in_dwp_v2): Likewise.
3233 (read_func_scope): Likewise.
3234 (process_structure_scope): Likewise.
3235 (mark_common_block_symbol_computed): Likewise.
3236 (load_partial_dies): Likewise.
3237 (dwarf2_symbol_mark_computed): Likewise.
3238 * elfread.c (elf_symfile_segments): Likewise.
3239 (elf_read_minimal_symbols): Likewise.
3240 * environ.c (make_environ): Likewise.
3241 * eval.c (evaluate_subexp_standard): Likewise.
3242 * event-loop.c (create_file_handler): Likewise.
3243 (create_async_signal_handler): Likewise.
3244 (create_async_event_handler): Likewise.
3245 (create_timer): Likewise.
3246 * exec.c (build_section_table): Likewise.
3247 * fbsd-nat.c (fbsd_remember_child): Likewise.
3248 * fork-child.c (fork_inferior): Likewise.
3249 * frv-tdep.c (new_variant): Likewise.
3250 * gdbarch.sh (gdbarch_alloc): Likewise.
3251 (append_name): Likewise.
3252 * gdbtypes.c (rank_function): Likewise.
3253 (copy_type_recursive): Likewise.
3254 (add_dyn_prop): Likewise.
3255 * gnu-nat.c (make_proc): Likewise.
3256 (make_inf): Likewise.
3257 (gnu_write_inferior): Likewise.
3258 * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
3259 (build_std_type_info_type): Likewise.
3260 * guile/scm-param.c (compute_enum_list): Likewise.
3261 * guile/scm-utils.c (gdbscm_parse_function_args): Likewise.
3262 * guile/scm-value.c (gdbscm_value_call): Likewise.
3263 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
3264 * hppa-tdep.c (hppa_init_objfile_priv_data): Likewise.
3265 (read_unwind_info): Likewise.
3266 * ia64-tdep.c (ia64_gdbarch_init): Likewise.
3267 * infcall.c (dummy_frame_context_saver_setup): Likewise.
3268 (call_function_by_hand_dummy): Likewise.
3269 * infcmd.c (step_once): Likewise.
3270 (finish_forward): Likewise.
3271 (attach_command): Likewise.
3272 (notice_new_inferior): Likewise.
3273 * inferior.c (add_inferior_silent): Likewise.
3274 * infrun.c (add_displaced_stepping_state): Likewise.
3275 (save_infcall_control_state): Likewise.
3276 (save_inferior_ptid): Likewise.
3277 (_initialize_infrun): Likewise.
3278 * jit.c (bfd_open_from_target_memory): Likewise.
3279 (jit_gdbarch_data_init): Likewise.
3280 * language.c (add_language): Likewise.
3281 * linespec.c (decode_line_2): Likewise.
3282 * linux-nat.c (add_to_pid_list): Likewise.
3283 (add_initial_lwp): Likewise.
3284 * linux-thread-db.c (add_thread_db_info): Likewise.
3285 (record_thread): Likewise.
3286 (info_auto_load_libthread_db): Likewise.
3287 * m32c-tdep.c (m32c_gdbarch_init): Likewise.
3288 * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
3289 * m68k-tdep.c (m68k_gdbarch_init): Likewise.
3290 * m88k-tdep.c (m88k_analyze_prologue): Likewise.
3291 * macrocmd.c (macro_define_command): Likewise.
3292 * macroexp.c (gather_arguments): Likewise.
3293 * macroscope.c (sal_macro_scope): Likewise.
3294 * macrotab.c (new_macro_table): Likewise.
3295 * mdebugread.c (push_parse_stack): Likewise.
3296 (parse_partial_symbols): Likewise.
3297 (parse_symbol): Likewise.
3298 (psymtab_to_symtab_1): Likewise.
3299 (new_block): Likewise.
3300 (new_psymtab): Likewise.
3301 (mdebug_build_psymtabs): Likewise.
3302 (add_pending): Likewise.
3303 (elfmdebug_build_psymtabs): Likewise.
3304 * mep-tdep.c (mep_gdbarch_init): Likewise.
3305 * mi/mi-main.c (mi_execute_command): Likewise.
3306 * mi/mi-parse.c (mi_parse_argv): Likewise.
3307 * minidebug.c (lzma_open): Likewise.
3308 * minsyms.c (terminate_minimal_symbol_table): Likewise.
3309 * mips-linux-nat.c (mips_linux_insert_watchpoint): Likewise.
3310 * mips-tdep.c (mips_gdbarch_init): Likewise.
3311 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
3312 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
3313 * mt-tdep.c (mt_registers_info): Likewise.
3314 * nat/aarch64-linux.c (aarch64_linux_new_thread): Likewise.
3315 * nat/linux-btrace.c (linux_enable_bts): Likewise.
3316 (linux_enable_pt): Likewise.
3317 * nat/linux-osdata.c (linux_xfer_osdata_processes): Likewise.
3318 (linux_xfer_osdata_processgroups): Likewise.
3319 * nios2-tdep.c (nios2_gdbarch_init): Likewise.
3320 * nto-procfs.c (procfs_meminfo): Likewise.
3321 * objc-lang.c (start_msglist): Likewise.
3322 (selectors_info): Likewise.
3323 (classes_info): Likewise.
3324 (find_methods): Likewise.
3325 * objfiles.c (allocate_objfile): Likewise.
3326 (update_section_map): Likewise.
3327 * osabi.c (gdbarch_register_osabi): Likewise.
3328 (gdbarch_register_osabi_sniffer): Likewise.
3329 * parse.c (start_arglist): Likewise.
3330 * ppc-linux-nat.c (hwdebug_find_thread_points_by_tid): Likewise.
3331 (hwdebug_insert_point): Likewise.
3332 * printcmd.c (display_command): Likewise.
3333 (ui_printf): Likewise.
3334 * procfs.c (create_procinfo): Likewise.
3335 (load_syscalls): Likewise.
3336 (proc_get_LDT_entry): Likewise.
3337 (proc_update_threads): Likewise.
3338 * prologue-value.c (make_pv_area): Likewise.
3339 (pv_area_store): Likewise.
3340 * psymtab.c (extend_psymbol_list): Likewise.
3341 (init_psymbol_list): Likewise.
3342 (allocate_psymtab): Likewise.
3343 * python/py-inferior.c (add_thread_object): Likewise.
3344 * python/py-param.c (compute_enum_values): Likewise.
3345 * python/py-value.c (valpy_call): Likewise.
3346 * python/py-varobj.c (py_varobj_iter_next): Likewise.
3347 * python/python.c (ensure_python_env): Likewise.
3348 * record-btrace.c (record_btrace_start_replaying): Likewise.
3349 * record-full.c (record_full_reg_alloc): Likewise.
3350 (record_full_mem_alloc): Likewise.
3351 (record_full_end_alloc): Likewise.
3352 (record_full_core_xfer_partial): Likewise.
3353 * regcache.c (get_thread_arch_aspace_regcache): Likewise.
3354 * remote-fileio.c (remote_fileio_init_fd_map): Likewise.
3355 * remote-notif.c (remote_notif_state_allocate): Likewise.
3356 * remote.c (demand_private_info): Likewise.
3357 (remote_notif_stop_alloc_reply): Likewise.
3358 (remote_enable_btrace): Likewise.
3359 * reverse.c (save_bookmark_command): Likewise.
3360 * rl78-tdep.c (rl78_gdbarch_init): Likewise.
3361 * rx-tdep.c (rx_gdbarch_init): Likewise.
3362 * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
3363 * ser-go32.c (dos_get_tty_state): Likewise.
3364 (dos_copy_tty_state): Likewise.
3365 * ser-mingw.c (ser_windows_open): Likewise.
3366 (ser_console_wait_handle): Likewise.
3367 (ser_console_get_tty_state): Likewise.
3368 (make_pipe_state): Likewise.
3369 (net_windows_open): Likewise.
3370 * ser-unix.c (hardwire_get_tty_state): Likewise.
3371 (hardwire_copy_tty_state): Likewise.
3372 * solib-aix.c (solib_aix_new_lm_info): Likewise.
3373 * solib-dsbt.c (dsbt_current_sos): Likewise.
3374 (dsbt_relocate_main_executable): Likewise.
3375 * solib-frv.c (frv_current_sos): Likewise.
3376 (frv_relocate_main_executable): Likewise.
3377 * solib-spu.c (spu_bfd_fopen): Likewise.
3378 * solib-svr4.c (lm_info_read): Likewise.
3379 (svr4_copy_library_list): Likewise.
3380 (svr4_default_sos): Likewise.
3381 * source.c (find_source_lines): Likewise.
3382 (line_info): Likewise.
3383 (add_substitute_path_rule): Likewise.
3384 * spu-linux-nat.c (spu_bfd_open): Likewise.
3385 * spu-tdep.c (info_spu_dma_cmdlist): Likewise.
3386 * stabsread.c (dbx_lookup_type): Likewise.
3387 (read_type): Likewise.
3388 (read_member_functions): Likewise.
3389 (read_struct_fields): Likewise.
3390 (read_baseclasses): Likewise.
3391 (read_args): Likewise.
3392 (_initialize_stabsread): Likewise.
3393 * stack.c (func_command): Likewise.
3394 * stap-probe.c (handle_stap_probe): Likewise.
3395 * symfile.c (addrs_section_sort): Likewise.
3396 (addr_info_make_relative): Likewise.
3397 (load_section_callback): Likewise.
3398 (add_symbol_file_command): Likewise.
3399 (init_filename_language_table): Likewise.
3400 * symtab.c (create_filename_seen_cache): Likewise.
3401 (sort_search_symbols_remove_dups): Likewise.
3402 (search_symbols): Likewise.
3403 * target.c (make_cleanup_restore_target_terminal): Likewise.
3404 * thread.c (new_thread): Likewise.
3405 (enable_thread_stack_temporaries): Likewise.
3406 (make_cleanup_restore_current_thread): Likewise.
3407 (thread_apply_all_command): Likewise.
3408 * tic6x-tdep.c (tic6x_gdbarch_init): Likewise.
3409 * top.c (gdb_readline_wrapper): Likewise.
3410 * tracefile-tfile.c (tfile_trace_file_writer_new): Likewise.
3411 * tracepoint.c (trace_find_line_command): Likewise.
3412 (all_tracepoint_actions_and_cleanup): Likewise.
3413 (make_cleanup_restore_current_traceframe): Likewise.
3414 (get_uploaded_tp): Likewise.
3415 (get_uploaded_tsv): Likewise.
3416 * tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
3417 (tui_alloc_win_info): Likewise.
3418 (tui_alloc_content): Likewise.
3419 (tui_add_content_elements): Likewise.
3420 * tui/tui-disasm.c (tui_find_disassembly_address): Likewise.
3421 (tui_set_disassem_content): Likewise.
3422 * ui-file.c (ui_file_new): Likewise.
3423 (stdio_file_new): Likewise.
3424 (tee_file_new): Likewise.
3425 * utils.c (make_cleanup_restore_integer): Likewise.
3426 (add_internal_problem_command): Likewise.
3427 * v850-tdep.c (v850_gdbarch_init): Likewise.
3428 * valops.c (find_oload_champ): Likewise.
3429 * value.c (allocate_value_lazy): Likewise.
3430 (record_latest_value): Likewise.
3431 (create_internalvar): Likewise.
3432 * varobj.c (install_variable): Likewise.
3433 (new_variable): Likewise.
3434 (new_root_variable): Likewise.
3435 (cppush): Likewise.
3436 (_initialize_varobj): Likewise.
3437 * windows-nat.c (windows_make_so): Likewise.
3438 * x86-nat.c (x86_add_process): Likewise.
3439 * xcoffread.c (arrange_linetable): Likewise.
3440 (allocate_include_entry): Likewise.
3441 (process_linenos): Likewise.
3442 (SYMBOL_DUP): Likewise.
3443 (xcoff_start_psymtab): Likewise.
3444 (xcoff_end_psymtab): Likewise.
3445 * xml-support.c (gdb_xml_parse_attr_ulongest): Likewise.
3446 * xtensa-tdep.c (xtensa_register_type): Likewise.
3447 * gdbarch.c: Regenerate.
3448 * gdbarch.h: Regenerate.
3449
3450 2015-08-25 Don Breazeal <donb@codesourcery.com>
3451
3452 * infrun.c (follow_exec): Re-order operations for
3453 handling follow-exec-mode "new".
3454 (handle_inferior_event_1): Assign ecs->event_thread
3455 to the current thread.
3456 * remote.c (get_remote_arch_state): Add an assertion.
3457
3458 2015-08-26 Pedro Alves <palves@redhat.com>
3459
3460 * MAINTAINERS: Add Markus Metzger as btrace maintainer.
3461
3462 2015-08-25 Pedro Alves <palves@redhat.com>
3463
3464 PR gdb/18804
3465 * defs.h (maybe_quit): Declare.
3466 (QUIT): Now calls maybe_quit.
3467 * event-loop.c (clear_async_signal_handler)
3468 (async_signal_handler_is_marked): New functions.
3469 * event-loop.h (async_signal_handler_is_marked)
3470 (clear_async_signal_handler): New declarations.
3471 * remote.c (remote_check_pending_interrupt): New function.
3472 (interrupt_query): Use make_cleanup_restore_target_terminal. No
3473 longer check whether the target is async. If waiting for a stop
3474 reply, and a Ctrl-C as been sent to the target, offer to
3475 disconnect, and throw TARGET_CLOSE_ERROR instead of a quit.
3476 Otherwise do not disconnect and throw a quit.
3477 (_initialize_remote): Install remote_check_pending_interrupt as
3478 to_check_pending_interrupt.
3479 * target.c (target_check_pending_interrupt): New function.
3480 * target.h (struct target_ops) <to_check_pending_interrupt>: New
3481 field.
3482 (target_check_pending_interrupt): New declaration.
3483 * utils.c (maybe_quit): New function.
3484 * target-delegates.c: Regenerate.
3485
3486 2015-08-25 Yao Qi <yao.qi@linaro.org>
3487
3488 * nat/aarch64-linux-hw-point.c (debug_reg_change_callback):
3489 Rename local variable pid to tid, and get lwpid of lwp. Update
3490 debug output.
3491
3492 2015-08-25 Pierre-Marie de Rodat <derodat@adacore.com>
3493
3494 * ada-lang.c (ada_read_var_value): Add a var_block argument
3495 and pass it to default_read_var_value.
3496 * block.c (block_static_link): New accessor.
3497 * block.h (block_static_link): Declare it.
3498 * buildsym.c (finish_block_internal): Add a static_link
3499 argument. If there is a static link, associate it to the new
3500 block.
3501 (finish_block): Add a static link argument and pass it to
3502 finish_block_internal.
3503 (end_symtab_get_static_block): Update calls to finish_block and
3504 to finish_block_internal.
3505 (end_symtab_with_blockvector): Update call to
3506 finish_block_internal.
3507 * buildsym.h: Forward-declare struct dynamic_prop.
3508 (struct context_stack): Add a static_link field.
3509 (finish_block): Add a static link argument.
3510 * c-exp.y: Remove an obsolete comment (evaluation of variables
3511 already start from the selected frame, and now they climb *up*
3512 the call stack) and propagate the block information to the
3513 produced expression.
3514 * d-exp.y: Likewise.
3515 * f-exp.y: Likewise.
3516 * go-exp.y: Likewise.
3517 * jv-exp.y: Likewise.
3518 * m2-exp.y: Likewise.
3519 * p-exp.y: Likewise.
3520 * coffread.c (coff_symtab_read): Update calls to finish_block.
3521 * dbxread.c (process_one_symbol): Likewise.
3522 * xcoffread.c (read_xcoff_symtab): Likewise.
3523 * compile/compile-c-symbols.c (convert_one_symbol): Promote the
3524 "sym" parameter to struct block_symbol, update its uses and pass
3525 its block to calls to read_var_value.
3526 (convert_symbol_sym): Update the calls to convert_one_symbol.
3527 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update
3528 call to read_var_value.
3529 * dwarf2loc.c (block_op_get_frame_base): New.
3530 (dwarf2_block_frame_base_locexpr_funcs): Implement the
3531 get_frame_base method.
3532 (dwarf2_block_frame_base_loclist_funcs): Likewise.
3533 (dwarf2locexpr_baton_eval): Add a frame argument and use it
3534 instead of the selected frame in order to evaluate the
3535 expression.
3536 (dwarf2_evaluate_property): Add a frame argument. Update call
3537 to dwarf2_locexpr_baton_eval to provide a frame in available and
3538 to handle the absence of address stack.
3539 * dwarf2loc.h (dwarf2_evaluate_property): Add a frame argument.
3540 * dwarf2read.c (attr_to_dynamic_prop): Add a forward
3541 declaration.
3542 (read_func_scope): Record any available static link description.
3543 Update call to finish_block.
3544 (read_lexical_block_scope): Update call to finish_block.
3545 * findvar.c (follow_static_link): New.
3546 (get_hosting_frame): New.
3547 (default_read_var_value): Add a var_block argument. Use
3548 get_hosting_frame to handle non-local references.
3549 (read_var_value): Add a var_block argument and pass it to the
3550 LA_READ_VAR_VALUE method.
3551 * gdbtypes.c (resolve_dynamic_range): Update calls to
3552 dwarf2_evaluate_property.
3553 (resolve_dynamic_type_internal): Likewise.
3554 * guile/scm-frame.c (gdbscm_frame_read_var): Update call to
3555 read_var_value, passing it the block coming from symbol lookup.
3556 * guile/scm-symbol.c (gdbscm_symbol_value): Update call to
3557 read_var_value (TODO).
3558 * infcmd.c (finish_command_continuation): Update call to
3559 read_var_value, passing it the block coming from symbol lookup.
3560 * infrun.c (insert_exception_resume_breakpoint): Likewise.
3561 * language.h (struct language_defn): Add a var_block argument to
3562 the LA_READ_VAR_VALUE method.
3563 * objfiles.c (struct static_link_htab_entry): New.
3564 (static_link_htab_entry_hash): New.
3565 (static_link_htab_entry_eq): New.
3566 (objfile_register_static_link): New.
3567 (objfile_lookup_static_link): New.
3568 (free_objfile): Free the STATIC_LINKS hashed map if needed.
3569 * objfiles.h: Include hashtab.h.
3570 (struct objfile): Add a static_links field.
3571 (objfile_register_static_link): New.
3572 (objfile_lookup_static_link): New.
3573 * printcmd.c (print_variable_and_value): Update call to
3574 read_var_value.
3575 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
3576 * python/py-frame.c (frapy_read_var): Update call to
3577 read_var_value, passing it the block coming from symbol lookup.
3578 * python/py-framefilter.c (extract_sym): Add a sym_block
3579 parameter and set the pointed value to NULL (TODO).
3580 (enumerate_args): Update call to extract_sym.
3581 (enumerate_locals): Update calls to extract_sym and to
3582 read_var_value.
3583 * python/py-symbol.c (sympy_value): Update call to
3584 read_var_value (TODO).
3585 * stack.c (read_frame_local): Update call to read_var_value.
3586 (read_frame_arg): Likewise.
3587 (return_command): Likewise.
3588 * symtab.h (struct symbol_block_ops): Add a get_frame_base
3589 method.
3590 (struct symbol): Add a block field.
3591 (SYMBOL_BLOCK): New accessor.
3592 * valops.c (value_of_variable): Remove frame/block handling and
3593 pass the block argument to read_var_value, which does this job
3594 now.
3595 (value_struct_elt_for_reference): Update calls to
3596 read_var_value.
3597 (value_of_this): Pass the block found to read_var_value.
3598 * value.h (read_var_value): Add a var_block argument.
3599 (default_read_var_value): Likewise.
3600
3601 2015-08-25 Yao Qi <yao.qi@linaro.org>
3602
3603 * aarch64-linux-nat.c (aarch64_linux_new_thread): Move it to ...
3604 * nat/aarch64-linux.c (aarch64_linux_new_thread): ... here.
3605 * nat/aarch64-linux.h (aarch64_linux_new_thread): Declare.
3606
3607 2015-08-25 Yao Qi <yao.qi@linaro.org>
3608
3609 * Makefile.in (aarch64-liunx.o): New rule.
3610 (HFILES_NO_SRCDIR): Add aarch64-linux.h.
3611 * config/aarch64/linux.mh (NAT_FILE): Add aarch64-linux.o.
3612 * aarch64-linux-nat.c: Include nat/aarch64-linux.h.
3613 * aarch64-linux-nat.c (aarch64_get_debug_reg_state): Make it
3614 extern.
3615 (aarch64_linux_prepare_to_resume): Move it nat/aarch64-linux.c.
3616 * nat/aarch64-linux-hw-point.h (aarch64_debug_reg_state): Declare
3617 * nat/aarch64-linux.c: New file.
3618 * nat/aarch64-linux.h: New file.
3619
3620 2015-08-25 Yao Qi <yao.qi@linaro.org>
3621
3622 * aarch64-linux-nat.c (aarch64_linux_prepare_to_resume): Use
3623 lwp_arch_private_info and ptid_of_lwp.
3624
3625 2015-08-25 Yao Qi <yao.qi@linaro.org>
3626
3627 * aarch64-linux-nat.c (struct arch64_dr_update_callback_param):
3628 Move it to nat/aarch64-linux-hw-point.c.
3629 (debug_reg_change_callback): Likewise.
3630 (aarch64_notify_debug_reg_change): :Likewise.
3631 * nat/aarch64-linux-hw-point.c: Include nat/linux-nat.h.
3632 (aarch64_dr_update_callback_param): New.
3633 (debug_reg_change_callback): New function.
3634 (aarch64_notify_debug_reg_change): Likewise.
3635 * nat/aarch64-linux-hw-point.h (aarch64_notify_debug_reg_change):
3636 Remove the declaration.
3637
3638 2015-08-25 Yao Qi <yao.qi@linaro.org>
3639
3640 * aarch64-linux-nat.c (aarch64_notify_debug_reg_change):
3641 Call current_lwp_ptid.
3642
3643 2015-08-25 Yao Qi <yao.qi@linaro.org>
3644
3645 * aarch64-linux-nat.c (debug_reg_change_callback): Use
3646 debug_printf.
3647
3648 2015-08-25 Yao Qi <yao.qi@linaro.org>
3649
3650 * aarch64-linux-nat.c (debug_reg_change_callback): Call
3651 ptid_get_pid rather than ptid_get_lwp.
3652
3653 2015-08-24 Pedro Alves <palves@redhat.com>
3654
3655 * NEWS (New commands): Mention set/show remote
3656 multiprocess-extensions-packet.
3657 * remote.c (remote_query_supported): Only tell the server to use
3658 the multiprocess extensions if the user hasn't force-disabled them
3659 with "set remote multiprocess-extensions-packet off".
3660
3661 2015-08-24 Pedro Alves <palves@redhat.com>
3662
3663 * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
3664 1029a8112290f6eee9d7878a391c49db42c999bd.
3665 * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4:
3666 Regenerate.
3667 * gnulib/import/Makefile.am: Update.
3668 * gnulib/import/Makefile.in: Update.
3669 * gnulib/import/alloca.in.h: Update.
3670 * gnulib/import/basename-lgpl.c: Update.
3671 * gnulib/import/canonicalize-lgpl.c: Update.
3672 * gnulib/import/config.charset: Update.
3673 * gnulib/import/dirent.in.h: Update.
3674 * gnulib/import/dirfd.c: Update.
3675 * gnulib/import/dirname-lgpl.c: Update.
3676 * gnulib/import/dirname.h: Update.
3677 * gnulib/import/dosname.h: Update.
3678 * gnulib/import/errno.in.h: Update.
3679 * gnulib/import/extra/snippet/arg-nonnull.h: Update.
3680 * gnulib/import/extra/snippet/c++defs.h: Update.
3681 * gnulib/import/extra/snippet/warn-on-use.h: Update.
3682 * gnulib/import/extra/update-copyright: Update.
3683 * gnulib/import/float+.h: Update.
3684 * gnulib/import/float.c: Update.
3685 * gnulib/import/float.in.h: Update.
3686 * gnulib/import/fnmatch.c: Update.
3687 * gnulib/import/fnmatch.in.h: Update.
3688 * gnulib/import/fnmatch_loop.c: Update.
3689 * gnulib/import/fpucw.h: Update.
3690 * gnulib/import/frexp.c: Update.
3691 * gnulib/import/frexpl.c: Update.
3692 * gnulib/import/gettimeofday.c: Update.
3693 * gnulib/import/inttypes.in.h: Update.
3694 * gnulib/import/isnan.c: Update.
3695 * gnulib/import/isnand-nolibm.h: Update.
3696 * gnulib/import/isnand.c: Update.
3697 * gnulib/import/isnanl-nolibm.h: Update.
3698 * gnulib/import/isnanl.c: Update.
3699 * gnulib/import/itold.c: Update.
3700 * gnulib/import/localcharset.c: Update.
3701 * gnulib/import/localcharset.h: Update.
3702 * gnulib/import/lstat.c: Update.
3703 * gnulib/import/m4/00gnulib.m4: Update.
3704 * gnulib/import/m4/absolute-header.m4: Update.
3705 * gnulib/import/m4/alloca.m4: Update.
3706 * gnulib/import/m4/canonicalize.m4: Update.
3707 * gnulib/import/m4/codeset.m4: Update.
3708 * gnulib/import/m4/configmake.m4: Update.
3709 * gnulib/import/m4/dirent_h.m4: Update.
3710 * gnulib/import/m4/dirfd.m4: Update.
3711 * gnulib/import/m4/dirname.m4: Update.
3712 * gnulib/import/m4/double-slash-root.m4: Update.
3713 * gnulib/import/m4/eealloc.m4: Update.
3714 * gnulib/import/m4/errno_h.m4: Update.
3715 * gnulib/import/m4/exponentd.m4: Update.
3716 * gnulib/import/m4/exponentl.m4: Update.
3717 * gnulib/import/m4/extensions.m4: Update.
3718 * gnulib/import/m4/extern-inline.m4: Update.
3719 * gnulib/import/m4/fcntl-o.m4: Update.
3720 * gnulib/import/m4/float_h.m4: Update.
3721 * gnulib/import/m4/fnmatch.m4: Update.
3722 * gnulib/import/m4/fpieee.m4: Update.
3723 * gnulib/import/m4/frexp.m4: Update.
3724 * gnulib/import/m4/frexpl.m4: Update.
3725 * gnulib/import/m4/gettimeofday.m4: Update.
3726 * gnulib/import/m4/glibc21.m4: Update.
3727 * gnulib/import/m4/gnulib-cache.m4: Update.
3728 * gnulib/import/m4/gnulib-common.m4: Update.
3729 * gnulib/import/m4/gnulib-comp.m4: Update.
3730 * gnulib/import/m4/gnulib-tool.m4: Update.
3731 * gnulib/import/m4/include_next.m4: Update.
3732 * gnulib/import/m4/inttypes-pri.m4: Update.
3733 * gnulib/import/m4/inttypes.m4: Update.
3734 * gnulib/import/m4/isnand.m4: Update.
3735 * gnulib/import/m4/isnanl.m4: Update.
3736 * gnulib/import/m4/largefile.m4: Update.
3737 * gnulib/import/m4/localcharset.m4: Update.
3738 * gnulib/import/m4/locale-fr.m4: Update.
3739 * gnulib/import/m4/locale-ja.m4: Update.
3740 * gnulib/import/m4/locale-zh.m4: Update.
3741 * gnulib/import/m4/longlong.m4: Update.
3742 * gnulib/import/m4/lstat.m4: Update.
3743 * gnulib/import/m4/malloc.m4: Update.
3744 * gnulib/import/m4/malloca.m4: Update.
3745 * gnulib/import/m4/math_h.m4: Update.
3746 * gnulib/import/m4/mbrtowc.m4: Update.
3747 * gnulib/import/m4/mbsinit.m4: Update.
3748 * gnulib/import/m4/mbsrtowcs.m4: Update.
3749 * gnulib/import/m4/mbstate_t.m4: Update.
3750 * gnulib/import/m4/memchr.m4: Update.
3751 * gnulib/import/m4/memmem.m4: Update.
3752 * gnulib/import/m4/mmap-anon.m4: Update.
3753 * gnulib/import/m4/multiarch.m4: Update.
3754 * gnulib/import/m4/nocrash.m4: Update.
3755 * gnulib/import/m4/off_t.m4: Update.
3756 * gnulib/import/m4/pathmax.m4: Update.
3757 * gnulib/import/m4/readlink.m4: Update.
3758 * gnulib/import/m4/rename.m4: Update.
3759 * gnulib/import/m4/rmdir.m4: Update.
3760 * gnulib/import/m4/ssize_t.m4: Update.
3761 * gnulib/import/m4/stat.m4: Update.
3762 * gnulib/import/m4/stdbool.m4: Update.
3763 * gnulib/import/m4/stddef_h.m4: Update.
3764 * gnulib/import/m4/stdint.m4: Update.
3765 * gnulib/import/m4/stdio_h.m4: Update.
3766 * gnulib/import/m4/stdlib_h.m4: Update.
3767 * gnulib/import/m4/string_h.m4: Update.
3768 * gnulib/import/m4/strstr.m4: Update.
3769 * gnulib/import/m4/strtok_r.m4: Update.
3770 * gnulib/import/m4/sys_socket_h.m4: Update.
3771 * gnulib/import/m4/sys_stat_h.m4: Update.
3772 * gnulib/import/m4/sys_time_h.m4: Update.
3773 * gnulib/import/m4/sys_types_h.m4: Update.
3774 * gnulib/import/m4/time_h.m4: Update.
3775 * gnulib/import/m4/unistd_h.m4: Update.
3776 * gnulib/import/m4/warn-on-use.m4: Update.
3777 * gnulib/import/m4/wchar_h.m4: Update.
3778 * gnulib/import/m4/wchar_t.m4: Update.
3779 * gnulib/import/m4/wctype_h.m4: Update.
3780 * gnulib/import/m4/wint_t.m4: Update.
3781 * gnulib/import/malloc.c: Update.
3782 * gnulib/import/malloca.c: Update.
3783 * gnulib/import/malloca.h: Update.
3784 * gnulib/import/math.in.h: Update.
3785 * gnulib/import/mbrtowc.c: Update.
3786 * gnulib/import/mbsinit.c: Update.
3787 * gnulib/import/mbsrtowcs-impl.h: Update.
3788 * gnulib/import/mbsrtowcs-state.c: Update.
3789 * gnulib/import/mbsrtowcs.c: Update.
3790 * gnulib/import/memchr.c: Update.
3791 * gnulib/import/memmem.c: Update.
3792 * gnulib/import/pathmax.h: Update.
3793 * gnulib/import/readlink.c: Update.
3794 * gnulib/import/ref-add.sin: Update.
3795 * gnulib/import/ref-del.sin: Update.
3796 * gnulib/import/rename.c: Update.
3797 * gnulib/import/rmdir.c: Update.
3798 * gnulib/import/same-inode.h: Update.
3799 * gnulib/import/stat.c: Update.
3800 * gnulib/import/stdbool.in.h: Update.
3801 * gnulib/import/stddef.in.h: Update.
3802 * gnulib/import/stdint.in.h: Update.
3803 * gnulib/import/stdio.c: Update.
3804 * gnulib/import/stdio.in.h: Update.
3805 * gnulib/import/stdlib.in.h: Update.
3806 * gnulib/import/str-two-way.h: Update.
3807 * gnulib/import/streq.h: Update.
3808 * gnulib/import/string.in.h: Update.
3809 * gnulib/import/stripslash.c: Update.
3810 * gnulib/import/strnlen1.c: Update.
3811 * gnulib/import/strnlen1.h: Update.
3812 * gnulib/import/strstr.c: Update.
3813 * gnulib/import/strtok_r.c: Update.
3814 * gnulib/import/sys_stat.in.h: Update.
3815 * gnulib/import/sys_time.in.h: Update.
3816 * gnulib/import/sys_types.in.h: Update.
3817 * gnulib/import/time.in.h: Update.
3818 * gnulib/import/unistd.in.h: Update.
3819 * gnulib/import/verify.h: Update.
3820 * gnulib/import/wchar.in.h: Update.
3821 * gnulib/import/wctype.in.h: Update.
3822 * gnulib/import/gettimeofday.c: New file.
3823 * gnulib/import/m4/absolute-header.m4: New file.
3824 * gnulib/import/m4/gettimeofday.m4: New file.
3825 * gnulib/import/m4/sys_socket_h.m4: New file.
3826 * gnulib/import/m4/sys_time_h.m4: New file.
3827 * gnulib/import/stdio.c: Delete file.
3828 * gnulib/import/sys_time.in.h: New file.
3829
3830 2015-08-24 Pedro Alves <palves@redhat.com>
3831
3832 * Makefile.in (HFILES_NO_SRCDIR): Add common/gdb_sys_time.h.
3833 * common/gdb_sys_time.h: New file.
3834 * event-loop.c: Include gdb_sys_time.h instead of sys/time.h.
3835 * gdb_select.h: Likewise.
3836 * gdb_usleep.c: Likewise.
3837 * maint.c: Likewise.
3838 * mi/mi-main.c: Likewise.
3839 * mi/mi-parse.h: Likewise.
3840 * remote-fileio.c: Likewise.
3841 * remote-m32r-sdi.c: Likewise.
3842 * remote.c: Likewise.
3843 * ser-base.c: Likewise.
3844 * ser-pipe.c: Likewise.
3845 * ser-tcp.c: Likewise.
3846 * ser-unix.c: Likewise.
3847 * symfile.c: Likewise.
3848 * symfile.c: Likewise. Rename OSIZE to SIZE throughout.
3849 * target-memory.c: Include gdb_sys_time.h instead of sys/time.h.
3850 * utils.c: Likewise.
3851
3852 2015-08-24 Pedro Alves <palves@redhat.com>
3853
3854 * NEWS: Mention removed support for the various ROM monitors.
3855 * Makefile.in (ALL_TARGET_OBS): Remove dbug-rom.o, dink32-rom.o,
3856 ppcbug-rom.o, m32r-rom.o, dsrec.o and monitor.o from gdb_target_obs.
3857 * configure.tgt (h8300-*-*): Remove monitor.o and m32r-rom.o from
3858 gdb_target_obs.
3859 (m68*-*-*): Remove monitor.o dbug-rom.o and dsrec.o from
3860 gdb_target_obs.
3861 (microblaze*-linux-*): Remove microblaze-rom.o, monitor.o and
3862 dsrec.o from gdb_target_obs.
3863 (microblaze*-*-*): Remove microblaze-rom.o, monitor.o and dsrec.o
3864 from gdb_target_obs.
3865 (powerpc-*-lynx*178): Remove monitor.o and dsrec.o from
3866 gdb_target_obs.
3867 (powerpc*-*-*): Remove monitor.o, dsrec.o, ppcbug-rom.o and
3868 dink32-rom.o from gdb_target_obs.
3869 (sh*-*-linux*): Remove monitor.o and dsrec.o from gdb_target_obs.
3870 (sh*): Remove monitor.o and dsrec.o from gdb_target_obs.
3871 * dbug-rom.c, dink32-rom.c, dsrec.c, m32r-rom.c, microblaze-rom.c,
3872 monitor.c, monitor.h, ppcbug-rom.c, srec.h: Delete files.
3873
3874 2015-08-21 Pedro Alves <palves@redhat.com>
3875
3876 * frame.c (null_frame_id): Explicitly zero-initialize.
3877
3878 2015-08-21 Tom Tromey <tromey@redhat.com>
3879
3880 * dwarf2read.c (struct dwarf2_section_info): Rename field
3881 'asection' to 'section'.
3882 (dwarf2_has_info, get_section_bfd_owner, get_section_bfd_section)
3883 (dwarf2_locate_sections, dwarf2_locate_sections)
3884 (locate_dwz_sections, locate_v1_virtual_dwo_sections)
3885 (dwarf2_locate_dwo_sections, dwarf2_locate_dwo_sections)
3886 (dwarf2_locate_v2_dwp_sections): Adjust.
3887
3888 2015-08-21 Patrick Palka <patrick@parcs.ath.cx>
3889
3890 * top.h (gdb_in_secondary_prompt_p): Declare.
3891 * top.c (gdb_secondary_prompt_depth): Define.
3892 (gdb_in_secondary_prompt_p): Define.
3893 (gdb_readline_wrapper_cleanup): Decrement
3894 gdb_secondary_prompt_depth.
3895 (gdb_readline_wrapper): Increment gdb_secondary_prompt_depth.
3896 * tui/tui-io.c (tui_getc): Don't clear the prompt line if we
3897 are in a secondary prompt.
3898
3899 2015-08-21 Patrick Palka <patrick@parcs.ath.cx>
3900
3901 * tui/tui-io.c (tui_getc): Use tui_putc instead of waddch to
3902 emit the newline.
3903
3904 2015-08-21 Gary Benson <gbenson@redhat.com>
3905
3906 * gdb_bfd.c (gdb_bfd_iovec_fileio_pread): Add QUIT call.
3907
3908 2015-08-21 Gary Benson <gbenson@redhat.com>
3909
3910 * target.h (struct target_ops) <to_fileio_open>: New argument
3911 warn_if_slow. Update comment. All implementations updated.
3912 (target_fileio_open_warn_if_slow): New declaration.
3913 * target.c (target_fileio_open): Renamed as...
3914 (target_fileio_open_1): ...this. New argument warn_if_slow.
3915 Pass warn_if_slow to implementation. Update debug printing.
3916 (target_fileio_open): New function.
3917 (target_fileio_open_warn_if_slow): Likewise.
3918 * gdb_bfd.c (gdb_bfd_iovec_fileio_open): Use new function
3919 target_fileio_open_warn_if_slow.
3920
3921 2015-08-21 Gary Benson <gbenson@redhat.com>
3922
3923 * nat/linux-namespaces.c (linux_mntns_access_fs):
3924 Do not overwrite old_chain.
3925
3926 2015-08-20 Max Filippov <jcmvbkbc@gmail.com>
3927
3928 * arch/xtensa.h: New file.
3929 * xtensa-linux-nat.c (gdb_proc_service.h): New #include.
3930 (ps_get_thread_area): New function.
3931 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Add call to
3932 set_gdbarch_fetch_tls_load_module_address to enable TLS support.
3933 * xtensa-tdep.c (osabi.h): New #include.
3934 (xtensa_gdbarch_init): Call gdbarch_init_osabi to register
3935 xtensa-specific hooks.
3936 * xtensa-tdep.h (struct xtensa_elf_gregset_t): Add threadptr
3937 member and move the structure to arch/xtensa.h.
3938
3939 2015-08-21 Pedro Alves <palves@redhat.com>
3940
3941 * remote.c (struct readahead_cache): New.
3942 (struct remote_state) <readahead_cache>: New field.
3943 (remote_open_1): Invalidate the cache.
3944 (readahead_cache_invalidate, readahead_cache_invalidate_fd): New
3945 functions.
3946 (remote_hostio_pwrite): Invalidate the readahead cache.
3947 (remote_hostio_pread): Rename to ...
3948 (remote_hostio_pread_vFile): ... this.
3949 (remote_hostio_pread_from_cache): New function.
3950 (remote_hostio_pread): Reimplement.
3951 (remote_hostio_close): Invalidate the readahead cache.
3952
3953 2015-08-21 Marcin Cieślak <saper@saper.info> (tiny patch)
3954
3955 PR build/18843
3956 * procfs.c: Include "filestuff.h".
3957
3958 2015-08-21 Patrick Palka <patrick@parcs.ath.cx>
3959
3960 * tui/tui-data.h (tui_command_info): Remove fields cur_line and
3961 curch.
3962 * tui/tui-data.c (tui_clear_win_detail) [CMD_WIN]: Don't set
3963 cur_line or curch, instead call wmove().
3964 (init_win_info) [CMD_WIN]: Likewise.
3965 * tui/tui-io.c (tui_puts): Likewise. Don't read cur_line,
3966 instead call getcury().
3967 (tui_redisplay_readline): Don't set cur_line or curch.
3968 (tui_mld_erase_entire_line): Don't read cur_line, instead call
3969 getcury().
3970 (tui_cont_sig): Remove call to wmove.
3971 (tui_getc): Don't read cur_line or curch, instead call getcury()
3972 or getyx(). Don't set curch.
3973 * tui/tui-win.c (make_visible_with_new_height) [CMD_WIN]: Don't
3974 set cur_line or curch. Always move cursor to (0,0).
3975
3976 2015-08-20 Pedro Alves <palves@redhat.com>
3977
3978 * infrun.c (print_target_wait_results): Make extern.
3979 * infrun.h (print_target_wait_results): Declare.
3980 * remote.c (set_stop_requested_callback): Delete.
3981 (process_initial_stop_replies): New function.
3982 (remote_start_remote): Use it.
3983 (stop_reply_queue_length): New function.
3984
3985 2015-08-20 Pedro Alves <palves@redhat.com>
3986
3987 * dwarf2read.c (process_full_comp_unit): To tell whether
3988 start_subfile managed to deduce a language, test for
3989 language_unknown instead of language_c.
3990
3991 2015-08-20 Pierre-Marie de Rodat <derodat@adacore.com>
3992
3993 * ada-lex.l: Reset the start condition to INITIAL in the rule that
3994 matches attributes.
3995
3996 2015-08-19 Kevin Buettner <kevinb@redhat.com>
3997
3998 * dwarf2read.c (dwarf2_string_attr): New function.
3999 (lookup_dwo_unit, process_psymtab_comp_unit_reader)
4000 (dwarf2_compute_name, dwarf2_physname, find_file_and_directory)
4001 (read_call_site_scope, namespace_name, guess_full_die_structure_name)
4002 (anonymous_struct_prefix, prepare_one_comp_unit): Use
4003 dwarf2_string_attr in place of dwarf2_attr and DW_STRING.
4004
4005 2015-08-18 Doug Evans <dje@google.com>
4006 Adrian Sendroiu <adrian.sendroiu@freescale.com>
4007
4008 PR mi/18833
4009 * cli/cli-logging.c (pop_output_files): Don't restore redirection
4010 if MI-like.
4011 * mi/mi-out.c: #include "vec.h".
4012 (ui_filep): New type.
4013 (DEV_VEC_P (ui_filep)): New type.
4014 (struct ui_out_data) <buffer, original_buffer>: Delete.
4015 (struct ui_out_data) <streams>: New member.
4016 (mi_ui_out_impl): Add data_destroy field.
4017 (mi_field_string, mi_field_fmt): Update.
4018 (mi_flush, mi_redirect, field_separator): Update.
4019 (mi_open, mi_close): Update.
4020 (mi_out_buffered, mi_out_rewind, mi_out_put): Update.
4021 (mi_out_data_ctor, mi_out_data_dtor): New functions.
4022 (mi_out_new): Call mi_out_data_ctor.
4023
4024 2015-08-18 Sandra Loosemore <sandra@codesourcery.com>
4025
4026 * remote.c (strprefix): New.
4027 (remote_parse_stop_reply): Use strprefix instead of strncmp
4028 to ensure exact match of keyword.
4029
4030 2015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
4031
4032 * gdb_bfd.c (debug_bfd_cache): New variable.
4033 (show_bfd_cache_debug): New function.
4034 (gdb_bfd_open): Add debug logging.
4035 (gdb_bfd_ref): Likewise.
4036 (gdb_bfd_unref): Likewise.
4037 (_initialize_gdb_bfd): Add new set/show command.
4038 * NEWS: Mention new command.
4039
4040 2015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
4041
4042 * gdb_bfd.c (bfd_sharing): New variable.
4043 (show_bfd_sharing): New function.
4044 (gdb_bfd_open): Check bfd_sharing variable.
4045 (_initialize_gdb_bfd): Add new set/show command.
4046 * NEWS: Mention new command.
4047
4048 2015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
4049
4050 * gdb_bfd.c (struct gdb_bfd_data): Add size, inode, and device id
4051 field.
4052 (struct gdb_bfd_cache_search): Likewise.
4053 (eq_bfd): Compare the size, inode, and device id fields.
4054 (gdb_bfd_open): Initialise the size, inode, and device id fields.
4055 (gdb_bfd_ref): Likewise.
4056 (gdb_bfd_unref): Likewise.
4057
4058 2015-08-18 Pedro Alves <palves@redhat.com>
4059
4060 * linux-nat.c (linux_nat_always_non_stop_p): If the linux_ops
4061 target implements to_always_non_stop_p, call it.
4062 * x86-linux-nat.c (x86_linux_always_non_stop_p): New function.
4063 (x86_linux_create_target): Install it as to_always_non_stop_p
4064 method.
4065
4066 2015-08-17 Doug Evans <dje@google.com>
4067
4068 * ui-out.c (default_ui_out_impl): Add comment.
4069
4070 2015-08-17 Iain Buclaw <ibuclaw@gdcproject.org>
4071
4072 * d-exp.y (type_aggregate_p): New function.
4073 (PrimaryExpression : TypeExp '.' IdentifierExp): Use it.
4074 (classify_inner_name): Likewise.
4075 * d-namespace.c (d_lookup_nested_symbol): Handle TYPE_CODE_ENUM.
4076
4077 2015-08-15 Doug Evans <xdje42@gmail.com>
4078
4079 * psymtab.c (add_psymbol_to_bcache): Remove "val" arg. All callers
4080 updated.
4081 (add_psymbol_to_list): Ditto.
4082
4083 2015-08-15 Doug Evans <xdje42@gmail.com>
4084
4085 * dbxread.c (dbx_end_psymtab): Renamed from end_psymtab. All callers
4086 updated. Call end_psymtab_common.
4087 * dwarf2read.c (process_psymtab_comp_unit_reader): Call
4088 end_psymtab_common.
4089 (build_type_psymtabs_reader): Ditto.
4090 * psympriv.h (sort_pst_symbols): Delete.
4091 (end_psymtab_common): Declare.
4092 * psymtab.c (sort_pst_symbols): Make static.
4093 (end_psymtab_common): New function.
4094 * xcoffread.c (xcoff_end_psymtab): Call end_psymtab_common.
4095
4096 2015-08-15 Doug Evans <xdje42@gmail.com>
4097
4098 * defs.h (LANGUAGE_BITS): Define.
4099 * psympriv.h (partial_symbol) <domain>: Use SYMBOL_DOMAIN_BITS.
4100 (partial_symbol) <aclass>: Use SYMBOL_ACLASS_BITS.
4101 * symtab.h (general_symbol_info> <language>: Usage LANGUAGE_BITS.
4102 (minimal_symbol_type): Add nr_minsym_types.
4103 (MINSYM_TYPE_BITS): Define.
4104 (minimal_symbol) <type>: Use MINSYM_TYPE_BITS.
4105 (domain_enum_tag): Add NR_DOMAINS.
4106 (SYMBOL_DOMAIN_BITS): Change from 4 to 3.
4107 (SYMBOL_ACLASS_BITS): Define from 6 to 5.
4108
4109 2015-08-15 Doug Evans <xdje42@gmail.com>
4110
4111 * objfiles.h: Whitespace cleanup.
4112 * psympriv.h: Whitespace cleanup.
4113 * psymtab.c: Whitespace/coding convention cleanup.
4114
4115 2015-08-15 Patrick Palka <patrick@parcs.ath.cx>
4116
4117 * inferior.c (detach_inferior_command): Don't call
4118 any_thread_of_process when pid is 0.
4119 (kill_inferior_command): Likewise.
4120
4121 2015-08-14 Doug Evans <xdje42@gmail.com>
4122
4123 PR gdb/11833
4124 * NEWS: Document new /s modifier for the disassemble command.
4125 * cli/cli-cmds.c (disassemble_command): Add support for /s.
4126 (_initialize_cli_cmds): Update online docs of disassemble command.
4127 * disasm.c: #include "source.h".
4128 (struct deprecated_dis_line_entry): Renamed from dis_line_entry.
4129 All uses updated.
4130 (dis_line_entry): New struct.
4131 (hash_dis_line_entry, eq_dis_line_entry): New functions.
4132 (allocate_dis_line_table): New functions.
4133 (maybe_add_dis_line_entry, line_has_code_p): New functions.
4134 (dump_insns): New arg end_pc. All callers updated.
4135 (do_mixed_source_and_assembly_deprecated): Renamed from
4136 do_mixed_source_and_assembly. All callers updated.
4137 (do_mixed_source_and_assembly): New function.
4138 (gdb_disassembly): Handle /s (DISASSEMBLY_SOURCE).
4139 * disasm.h (DISASSEMBLY_SOURCE_DEPRECATED): Renamed from
4140 DISASSEMBLY_SOURCE. All uses updated.
4141 (DISASSEMBLY_SOURCE): New macro.
4142 * mi/mi-cmd-disas.c (mi_cmd_disassemble): New modes 4,5.
4143
4144 2015-08-14 Keith Seitz <keiths@redhat.com>
4145
4146 * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Rename
4147 `typename' to `type_name' to avoid C++ reserved word.
4148
4149 2015-08-14 Keith Seitz <keiths@redhat.com>
4150
4151 * location.c (EL_TYPE, EL_LINESPEC, EL_PROBE, EL_ADDRESS)
4152 (EL_EXPLICIT, EL_STRING): Change macro parameter to "P" to
4153 silence ARI errors.
4154
4155 2015-08-14 Iain Buclaw <ibuclaw@gdcproject.org>
4156
4157 * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Use
4158 xstrprintf instead of malloc and sprintf.
4159 (PrimaryExpression : IdentifierExp): Avoid operator at end of line.
4160 (lex_one_token): Likewise.
4161
4162 2015-08-14 Matthew Fortune <matthew.fortune@imgtec.com>
4163
4164 * solib-svr4.c (read_program_header): Add base_addr argument to
4165 report the runtime address of the segment.
4166 (find_program_interpreter): Update read_program_header call to pass
4167 a NULL pointer for the new argument.
4168 (scan_dyntag): Add ptr_addr argument to report the runtime address
4169 of the tag payload.
4170 (scan_dyntag_auxv): Likewise and use thew new base_addr argument of
4171 read_program_header to get the base address of the dynamic segment.
4172 (elf_locate_base): Update uses of scan_dyntag, scan_dyntag_auxv and
4173 read_program_header.
4174 (elf_locate_base): Scan for and handle DT_MIPS_RLD_MAP_REL.
4175
4176 2015-08-14 Matthew Fortune <matthew.fortune@imgtec.com>
4177
4178 * MAINTAINERS (Write After Approval): Add Matthew Fortune.
4179
4180 2015-08-13 Iain Buclaw <ibuclaw@gdcproject.org>
4181
4182 * d-exp.y (%union): Add voidval.
4183 (%token): Add UNKNOWN_NAME as a token to represent an unclassified
4184 name in the lexing stage.
4185 (PostfixExpression): Move symbol completion handling in grammar here
4186 from PrimaryExpression.
4187 (PrimaryExpression): Move routines to handle resolving identifier
4188 tokens in the grammar here from push_expression_name.
4189 (IdentifierExp): Remove the handling of alternating '.' and identifier
4190 tokens.
4191 (TypeExp): Allow TypeExp to be wrapped in parenthesis in the grammar.
4192 (BasicType): Remove C-style typename rules.
4193 (d_type_from_name, d_module_from_name, push_variable)
4194 (push_fieldnames, push_type_name, push_module_name)
4195 (push_expression_name): Remove.
4196 (lex_one_token): Rename from yylex. Replace pstate with par_state.
4197 (token_and_value): New type.
4198 (token_fifo, popping, name_obstack): New globals.
4199 (classify_name): New function.
4200 (classify_inner_name): Likewise.
4201 (yylex): Likewise.
4202 (d_parse): Initialize token_fifo, popping and name_obstack.
4203
4204 2015-08-13 Iain Buclaw <ibuclaw@gdcproject.org>
4205
4206 * Makefile.in (SFILES): Add d-namespace.c.
4207 (COMMON_OBS): Add d-namespace.o.
4208 * d-lang.c (d_language_defn): Use d_lookup_symbol_nonlocal as the
4209 la_lookup_symbol_nonlocal callback function pointer.
4210 * d-lang.h (d_lookup_symbol_nonlocal): New declaration.
4211 (d_lookup_nested_symbol): New declaration.
4212 * d-namespace.c: New file.
4213
4214 2015-08-13 Pedro Alves <palves@redhat.com>
4215
4216 * python/py-unwind.c (pyuw_sniffer): Install the invalidate
4217 cleanup after the decref cleanup, not before.
4218
4219 2015-08-13 Pierre-Marie de Rodat <derodat@adacore.com>
4220
4221 * ada-lang.c: Include namespace.h
4222 (aux_add_nonlocal_symbols): Fix a function name in comment.
4223 (ada_add_block_renamings): New.
4224 (add_nonlocal_symbols): Add global renamings handling.
4225 (ada_lookup_symbol_list_worker): Move the symbol lookup part
4226 to...
4227 (ada_add_all_symbols): ... this new function.
4228 (ada_add_block_symbols): Try to match the input name against the
4229 "using directives list", perform a recursive symbol lookup on
4230 the matched declarations.
4231 * block.h (struct block): Move the_namespace to top-level as
4232 namespace_info. Remove the language_specific field.
4233 (BLOCK_NAMESPACE): Update access to the namespace_info field.
4234 * buildsym.h (using_directives): Rename into...
4235 (local_using_directives): ... this.
4236 (global_using_directives): New.
4237 (struct context_stack): Rename the using_directives field into
4238 local_using_directives.
4239 * buildsym.c (finish_block_internal): Deal with the proper
4240 using directives repository (local or global).
4241 (prepare_for_building): Reset local_using_directives. Assert
4242 that there is no pending global using directive.
4243 (reset_symtab_globals): Reset global_using_directives and
4244 local_using_directives.
4245 (end_symtab_get_static_block): Don't ignore symtabs that have
4246 only using directives.
4247 (push_context): Update references to local_using_directives.
4248 (buildsym_init): Do not reset using_directives.
4249 * cp-support.c: Include namespace.h.
4250 * cp-support.h (struct using_direct): Move to namespace.h.
4251 (cp_add_using_directives): Move to namespace.h.
4252 * cp-namespace.c: Include namespace.h
4253 (cp_add_using_directive): Move to namespace.c, rename it to
4254 add_using_directive, add a "using_directives" argument and use
4255 it as the pending using directives repository. All callers
4256 updated.
4257 * dwarf2read.c (using_directives): New.
4258 (read_import_statement): Call using_directives.
4259 (read_func_scope): Update references to local_using_directives.
4260 (read_lexical_block_scope): Likewise.
4261 (read_namespace): Update the heading comment, call
4262 using_directives.
4263 * namespace.h: New file.
4264 * namespace.c: New file.
4265 * Makefile.in (SFILES): Add namespace.c.
4266 (COMMON_OBS): Add namespace.o
4267
4268 2015-08-12 Joel Brobecker <brobecker@adacore.com>
4269
4270 * amd64-tdep.c (amd64_displaced_step_fixup): Fix the mask used to
4271 compute RETADDR.
4272
4273 2015-08-12 Keith Seitz <keiths@redhat.com>
4274
4275 * break-catch-throw.c (re_set_exception_catchpoint) Rename
4276 reserved C++ keyword "explicit" to "explicit_loc".
4277 * breakpoint.c (create_overlay_event_breakpoint)
4278 (create_longjmp_master_breakpoint)
4279 (create_std_terminate_master_breakpoint)
4280 (create_exception_master_breakpoint, update_static_tracepoint):
4281 Rename reserved C++ keyword "explicit" to "explicit_loc".
4282 * completer.c (collect_explicit_location_matches)
4283 (explicit_location_completer): Rename reserved C++ keyword
4284 "explicit" to "explicit_loc".
4285 * linespec.c (struct linespec) <explicit>: Rename to "explicit_loc".
4286 (canonicalize_linespec, create_sals_line_offset)
4287 (convert_linespec_to_sals, convert_explicit_location_to_sals)
4288 (event_location_to_sals, decode_objc): Rename reserved C++ keyword
4289 "explicit" to "explicit_loc".
4290 * location.c (struct event_location) <explicit>: Rename to
4291 "explicit_loc".
4292 (initialize_explicit_location, new_explicit_location)
4293 (explicit_location_to_string_internal, explicit_location_to_linespec):
4294 Rename reserved C++ keyword "explicit" to "explicit_loc".
4295 * location.h (explicit_location_to_string)
4296 (explicit_location_to_linespec, initialize_explicit_location)
4297 (new_explicit_location): Rename reserved C++ keyword "explicit"
4298 to "explicit_loc".
4299 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Rename reserved C++
4300 keyword "explicit" to "explicit_loc".
4301
4302 2015-08-12 Keith Seitz <keiths@redhat.com>
4303
4304 * python/python.c (gdbpy_decode_line): Initialize `location' to NULL
4305 and only call decode_line_1 when it is non-NULL.
4306
4307 2015-08-12 Luis Machado <lgustavo@codesourcery.com>
4308
4309 * breakpoint.c (bp_loc_is_permanent): Return 0 when breakpoint
4310 location address is not meaningful.
4311 (breakpoint_address_is_meaningful): Update comment.
4312
4313 2015-08-11 Keith Seitz <keiths@redhat.com>
4314
4315 * NEWS: Mention explicit locations.
4316 * breakpoint.c [LOCATION_HELP_STRING]: New macro.
4317 [BREAK_ARGS_HELP]: Use LOCATION_HELP_STRING.
4318 (_initialize_breakpoint): Update documentation for
4319 "clear", "break", "trace", "strace", "ftrace", and "dprintf".
4320
4321 2015-08-11 Keith Seitz <keiths@redhat.com>
4322
4323 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Add support for
4324 explicit locations, options "--source", "--function",
4325 "--label", and "--line".
4326
4327 2015-08-11 Keith Seitz <keiths@redhat.com>
4328
4329 * completer.c: Include location.h.
4330 (enum match_type): New enum.
4331 (location_completer): Rename to ...
4332 (linespec_completer): ... this.
4333 (collect_explicit_location_matches, backup_text_ptr)
4334 (explicit_location_completer): New functions.
4335 (location_completer): "New" function; handle linespec
4336 and explicit location completions.
4337 (complete_line_internal): Remove all location completer-specific
4338 handling.
4339 * linespec.c (linespec_lexer_lex_keyword, is_ada_operator)
4340 (find_toplevel_char): Export.
4341 (linespec_parse_line_offset): Export.
4342 Issue error if STRING is not numerical.
4343 (gdb_get_linespec_parser_quote_characters): New function.
4344 * linespec.h (linespec_parse_line_offset): Declare.
4345 (get_gdb_linespec_parser_quote_characters): Declare.
4346 (is_ada_operator): Declare.
4347 (find_toplevel_char): Declare.
4348 (linespec_lexer_lex_keyword): Declare.
4349 * location.c (explicit_to_event_location): New function.
4350 (explicit_location_lex_one): New function.
4351 (string_to_explicit_location): New function.
4352 (string_to_event_location): Handle explicit locations.
4353 * location.h (explicit_to_event_location): Declare.
4354 (string_to_explicit_location): Declare.
4355
4356 2015-08-11 Keith Seitz <keiths@redhat.com>
4357
4358 * break-catch-throw.c (re_set_exception_catchpoint): Convert
4359 linespec into explicit location.
4360 * breakpoint.c (create_overlay_breakpoint)
4361 (create_longjmp_master_breakpoint)
4362 (create_std_terminate_master_breakpoint)
4363 (create_exception_master_breakpoint): Convert linespec into explicit
4364 location.
4365 (update_static_tracepoint): Convert linespec into explicit location.
4366 * linespec.c (enum offset_relative_sign, struct line_offset): Move
4367 location.h.
4368 (struct linespec) <expression, expr_pc, source_filename>
4369 <function_name, label_name, line_offset>: Replace with ...
4370 <explicit>: ... this.
4371 <is_linespec>: New member.
4372 (PARSER_EXPLICIT): New accessor macro.
4373 (undefined_label_error): New function.
4374 (source_file_not_found_error): New function.
4375 (linespec_parse_basic): The parser result is now an explicit location.
4376 Use PARSER_EXPLICIT to access it.
4377 Use undefined_label_error.
4378 (canonicalize_linespec): Convert canonical linespec into explicit
4379 location.
4380 Move string representation of location to explicit_location_to_linespec
4381 and use it and explicit_location_to_string to save string
4382 representations of the canonical location.
4383 (create_sals_line_offset, convert_linespec_to_sals): `ls' contains an
4384 explicit location. Update all references.
4385 (convert_explicit_location_to_sals): New function.
4386 (parse_linespec): Use PARSER_EXPLICIT to access the parser
4387 result's explicit location.
4388 (linespec_state_constructor): Initialize is_linespec.
4389 Use PARSER_EXPLICIT.
4390 (linespec_parser_delete): Use PARSER_EXPLICIT to access the parser's
4391 result.
4392 (event_location_to_sals): For linespec locations, set is_linespec.
4393 Handle explicit locations.
4394 (decode_objc): 'ls' contains an explicit location now. Update all
4395 references.
4396 (symtabs_from_filename): Use source_file_not_found_error.
4397 * location.c (struct event_location.u) <explicit>: New member.
4398 (initialize_explicit_location): New function.
4399 (initialize_event_location): Initialize explicit locations.
4400 (new_explicit_location, get_explicit_location)
4401 (get_explicit_location_const): New functions.
4402 (explicit_to_string_internal): New function; most of contents moved
4403 from canonicalize_linespec.
4404 (explicit_location_to_string): New function.
4405 (explicit_location_to_linespec): New function.
4406 (copy_event_location, delete_event_location)
4407 (event_location_to_string_const, event_location_empty_p): Handle
4408 explicit locations.
4409 * location.h (enum offset_relative_sign, struct line_offset): Move
4410 here from linespec.h.
4411 (enum event_location_type): Add EXPLICIT_LOCATION.
4412 (struct explicit_location): New structure.
4413 (explicit_location_to_string): Declare.
4414 (explicit_location_to_linespec): Declare.
4415 (new_explicit_location, get_explicit_locationp
4416 (get_explicit_location_const, initialize_explicit_location): Declare.
4417
4418 2015-08-11 Keith Seitz <keiths@redhat.com>
4419
4420 * break-catch-throw.c (re_set_exception_catchpoint): Convert
4421 linespec for stap probe to probe location.
4422 * breakpoint.c (create_longjmp_master_breakpoint)
4423 (create_exception_master_breakpoint): Likewise.
4424 (break_command_1): Remove local variable `arg_cp'.
4425 Check location type to set appropriate breakpoint ops methods.
4426 (trace_command): Likewise.
4427 * linespec.c (event_location_to_sals): Assert on probe locations.
4428 * location.c (EL_PROBE): Add macro definition.
4429 (new_probe_location, get_probe_location): New functions.
4430 (copy_event_location, delete_event_location, event_location_to_string)
4431 (string_to_event_location, event_location_empty_p): Handle probe
4432 locations.
4433 * location.h (enum event_location_type): Add PROBE_LOCATION.
4434 (new_probe_location, get_probe_location): Declare.
4435 * probe.c (parse_probes): Assert that LOCATION is a probe location.
4436 Convert linespec into probe location.
4437
4438 2015-08-11 Keith Seitz <keiths@redhat.com>
4439
4440 * breakpoint.c (create_thread_event_breakpoint, init_breakpoint_sal):
4441 Convert linespec to address location.
4442 * linespec.c (canonicalize_linespec): Do not handle address
4443 locations here.
4444 (convert_address_location_to_sals): New function; contents moved
4445 from ...
4446 (convert_linespc_to_sals): ... here.
4447 (parse_linespec): Remove address locations from linespec grammar.
4448 Remove handling of address locations.
4449 (linespec_lex_to_end): Remove handling of address linespecs.
4450 (event_location_to_sals): Handle ADDRESS_LOCATION.
4451 (linespec_expression_to_pc): Export.
4452 * linespec.h (linespec_expression_to_pc): Add declaration.
4453 * location.c (struct event_location.u) <address>: New member.
4454 (new_address_location, get_address_location): New functions.
4455 (copy_event_location, delete_event_location, event_location_to_string)
4456 (string_to_event_location, event_location_empty_p): Handle address
4457 locations.
4458 * location.h (enum event_location_type): Add ADDRESS_LOCATION.
4459 (new_address_location, get_address_location): Declare.
4460 * python/py-finishbreakpoint.c (bpfinishpy_init): Convert linespec
4461 to address location.
4462 * spu-tdep.c (spu_catch_start): Likewise.
4463
4464 2015-08-11 Keith Seitz <keiths@redhat.com>
4465
4466 * ax-gdb.c: Include location.h.
4467 (agent_command_1) Use linespec location instead of address
4468 string.
4469 * break-catch-throw.c: Include location.h.
4470 (re_set_exception_catchpoint): Use linespec locations instead
4471 of address strings.
4472 * breakpoint.c: Include location.h.
4473 (create_overlay_event_breakpoint, create_longjmp_master_breakpoint)
4474 (create_std_terminate_master_breakpoint)
4475 (create_exception_master_breakpoint, update_breakpoints_after_exec):
4476 Use linespec location instead of address string.
4477 (print_breakpoint_location): Use locations and
4478 event_location_to_string.
4479 Print extra_string for pending locations for non-MI streams.
4480 (print_one_breakpoint_location): Use locations and
4481 event_location_to_string.
4482 (init_raw_breakpoint_without_location): Initialize b->location.
4483 (create_thread_event_breakpoint): Use linespec location instead of
4484 address string.
4485 (init_breakpoint_sal): Likewise.
4486 Only save extra_string if it is non-NULL and not the empty string.
4487 Use event_location_to_string instead of `addr_string'.
4488 Constify `p' and `endp'.
4489 Use skip_spaces_const/skip_space_const instead of non-const versions.
4490 Copy the location into the breakpoint.
4491 If LOCATION is NULL, save the breakpoint address as a linespec location
4492 instead of an address string.
4493 (create_breakpoint_sal): Change `addr_string' parameter to a struct
4494 event_location. All uses updated.
4495 (create_breakpoints_sal): Likewise for local variable `addr_string'.
4496 (parse_breakpoint_sals): Use locations instead of address strings.
4497 Remove check for empty linespec with conditional.
4498 Refactor.
4499 (decode_static_tracepoint_spec): Make argument const and update
4500 function.
4501 (create_breakpoint): Change `arg' to a struct event_location and
4502 rename.
4503 Remove `copy_arg' and `addr_start'.
4504 If EXTRA_STRING is empty, set it to NULL.
4505 Don't populate `canonical' for pending breakpoints.
4506 Pass `extra_string' to find_condition_and_thread.
4507 Clear `extra_string' if `rest' was NULL.
4508 Do not error with "garbage after location" if setting a dprintf
4509 breakpoint.
4510 Copy the location into the breakpoint instead of an address string.
4511 (break_command_1): Use string_to_event_location and pass this to
4512 create_breakpoint instead of an address string.
4513 Check against `arg_cp' for a probe linespec.
4514 (dprintf_command): Use string_to_event_location and pass this to
4515 create_breakpoint instead of an address string.
4516 Throw an exception if no format string was specified.
4517 (print_recreate_ranged_breakpoint): Use event_location_to_string
4518 instead of address strings.
4519 (break_range_command, until_break_command)
4520 (init_ada_exception_breakpoint): Use locations instead
4521 of address strings.
4522 (say_where): Print out extra_string for pending locations.
4523 (base_breakpoint_dtor): Delete `location' and `location_range_end' of
4524 the breakpoint.
4525 (base_breakpoint_create_sals_from_location): Use struct event_location
4526 instead of address string.
4527 Remove `addr_start' and `copy_arg' parameters.
4528 (base_breakpoint_decode_location): Use struct event_location instead of
4529 address string.
4530 (bkpt_re_set): Use locations instead of address strings.
4531 Use event_location_empty_p to check for unset location.
4532 (bkpt_print_recreate): Use event_location_to_string instead of
4533 an address string.
4534 Print out extra_string for pending locations.
4535 (bkpt_create_sals_from_location, bkpt_decode_location)
4536 (bkpt_probe_create_sals_from_location): Use struct event_location
4537 instead of address string.
4538 (bkpt_probe_decode_location): Use struct event_location instead of
4539 address string.
4540 (tracepoint_print_recreate): Use event_location_to_string to
4541 recreate the tracepoint.
4542 (tracepoint_create_sals_from_location, tracepoint_decode_location)
4543 (tracepoint_probe_create_sals_from_location)
4544 (tracepoint_probe_decode_location): Use struct event_location
4545 instead of address string.
4546 (dprintf_print_recreate): Use event_location_to_string to recreate
4547 the dprintf.
4548 (dprintf_re_set): Remove check for valid/missing format string.
4549 (strace_marker_create_sals_from_location)
4550 (strace_marker_create_breakpoints_sal, strace_marker_decode_location)
4551 (update_static_tracepoint): Use struct event_location instead of
4552 address string.
4553 (location_to_sals): Likewise.
4554 Pass `extra_string' to find_condition_and_thread.
4555 For newly resolved pending breakpoint locations, clear the location's
4556 string representation.
4557 Assert that the breakpoint's condition string is NULL when
4558 condition_not_parsed.
4559 (breakpoint_re_set_default, create_sals_from_location_default)
4560 (decode_location_default, trace_command, ftrace_command)
4561 (strace_command, create_tracepoint_from_upload): Use locations
4562 instead of address strings.
4563 * breakpoint.h (struct breakpoint_ops) <create_sals_from_location>:
4564 Use struct event_location instead of address string.
4565 Update all uses.
4566 <decode_location>: Likewise.
4567 (struct breakpoint) <addr_string>: Change to struct event_location
4568 and rename `location'.
4569 <addr_string_range_end>: Change to struct event_location and rename
4570 `location_range_end'.
4571 (create_breakpoint): Use struct event_location instead of address
4572 string.
4573 * cli/cli-cmds.c: Include location.h.
4574 (edit_command, list_command): Use locations instead of address strings.
4575 * elfread.c: Include location.h.
4576 (elf_gnu_ifunc_resolver_return_stop): Use event_location_to_string.
4577 * guile/scm-breakpoint.c: Include location.h.
4578 (bpscm_print_breakpoint_smob): Use event_location_to_string.
4579 (gdbscm_register_breakpoint): Use locations instead of address
4580 strings.
4581 * linespec.c: Include location.h.
4582 (struct ls_parser) <stream>: Change to const char *.
4583 (PARSER_STREAM): Update.
4584 (lionespec_lexer_lex_keyword): According to find_condition_and_thread,
4585 keywords must be followed by whitespace.
4586 (canonicalize_linespec): Save a linespec location into `canonical'.
4587 Save a canonical linespec into `canonical'.
4588 (parse_linespec): Change `argptr' to const char * and rename `arg'.
4589 All uses updated.
4590 Update function description.
4591 (linespec_parser_new): Initialize `parser'.
4592 Update initialization of parsing stream.
4593 (event_location_to_sals): New function.
4594 (decode_line_full): Change `argptr' to a struct event_location and
4595 rename it `location'.
4596 Use locations instead of address strings.
4597 Call event_location_to_sals instead of parse_linespec.
4598 (decode_line_1): Likewise.
4599 (decode_line_with_current_source, decode_line_with_last_displayed)
4600 Use locations instead of address strings.
4601 (decode_objc): Likewise.
4602 Change `argptr' to const char * and rename `arg'.
4603 (destroy_linespec_result): Delete the linespec result's location
4604 instead of freeing the address string.
4605 * linespec.h (struct linespec_result) <addr_string>: Change to
4606 struct event_location and rename to ...
4607 <location>: ... this.
4608 (decode_line_1, decode_line_full): Change `argptr' to struct
4609 event_location. All callers updated.
4610 * mi/mi-cmd-break.c: Include language.h, location.h, and linespec.h.
4611 (mi_cmd_break_insert_1): Use locations instead of address strings.
4612 Throw an error if there was "garbage" at the end of the specified
4613 linespec.
4614 * probe.c: Include location.h.
4615 (parse_probes): Change `argptr' to struct event_location.
4616 Use event locations instead of address strings.
4617 * probe.h (parse_probes): Change `argptr' to struct event_location.
4618 * python/py-breakpoint.c: Include location.h.
4619 (bppy_get_location): Constify local variable `str'.
4620 Use event_location_to_string.
4621 (bppy_init): Use locations instead of address strings.
4622 * python/py-finishbreakpoint.c: Include location.h.
4623 (bpfinishpy_init): Remove local variable `addr_str'.
4624 Use locations instead of address strings.
4625 * python/python.c: Include location.h.
4626 (gdbpy_decode_line): Use locations instead of address strings.
4627 * remote.c: Include location.h.
4628 (remote_download_tracepoint): Use locations instead of address
4629 strings.
4630 * spu-tdep.c: Include location.h.
4631 (spu_catch_start): Remove local variable `buf'.
4632 Use locations instead of address strings.
4633 * tracepoint.c: Include location.h.
4634 (scope_info): Use locations instead of address strings.
4635 (encode_source_string): Constify parameter `src'.
4636 * tracepoint.h (encode_source_string): Likewise.
4637
4638 2015-08-11 Keith Seitz <keiths@redhat.com>
4639
4640 * Makefile.in (SFILES): Add location.c.
4641 (HFILES_NO_SRCDIR): Add location.h.
4642 (COMMON_OBS): Add location.o.
4643 * linespec.c (linespec_lex_to_end): New function.
4644 * linespec.h (linespec_lex_to_end): Declare.
4645 * location.c: New file.
4646 * location.h: New file.
4647
4648 2015-08-11 Keith Seitz <keiths@redhat.com>
4649
4650 * breakpoint.h (struct breakpoint_ops) <create_sals_from_address>:
4651 Renamed to create_sals_from_location.
4652 <decode_linespec>: Renamed to decode_location.
4653 Update all callers.
4654 * breakpoint.c (create_sals_from_address_default): Renamed to ...
4655 (create_sals_from_location_default): ... this.
4656 (addr_string_to_sals): Renamed to ...
4657 (location_to_sals): ... this.
4658 (decode_linespec_default): Renamed to ...
4659 (decode_location_default): ... this.
4660 (base_breakpoint_create_sals_from_address): Renamed to ...
4661 (base_breakpoint_create_sals_from_location): ... this.
4662 (bkpt_create_sals_from_address): Renamed to ...
4663 (bkpt_create_sals_from_location): ... this.
4664 (bkpt_decode_linespec): Renamed to ...
4665 (bkpt_decode_location): ... this.
4666 (bkpt_probe_create_sals_from_address): Renamed to ...
4667 (bkpt_probe_create_sals_from_location): ... this.
4668 (tracepoint_create_sals_from_address): Renamed to ...
4669 (tracepoint_create_sals_from_location): ... this.
4670 (tracepoint_decode_linespec): Renamed to ...
4671 (tracepoint_decode_location): ... this.
4672 (tracepoint_probe_create_sals_from_address): Renamed to ...
4673 (tracepoint_probe_create_sals_from_location): ... this.
4674 (tracepoint_probe_decode_linespec): Renamed to ...
4675 (tracepoint_probe_decode_location): ... this.
4676 (strace_marker_create_sals_from_address): Renamed to ...
4677 (strace_marker_create_sals_from_location): ... this.
4678 (decode_linespec_default): Renamed to ...
4679 (decode_location_default): ... this.
4680
4681 2015-08-10 Doug Evans <dje@google.com>
4682 Keith Seitz <keiths@redhat.com>
4683
4684 PR gdb/17960
4685 * symtab.c (make_file_symbol_completion_list_1): Renamed from
4686 make_file_symbol_completion_list and made static.
4687 (make_file_symbol_completion_list): New function.
4688
4689 2015-08-10 Joel Brobecker <brobecker@adacore.com>
4690
4691 * infrun.c (follow_fork, displaced_step_prepare, resume): Remove
4692 trailing new-line at end of warning message.
4693 (proceed): Add i18n marker to error messages.
4694
4695 2015-08-07 Pedro Alves <palves@redhat.com>
4696
4697 * linux-nat.c (linux_nat_always_non_stop_p): Return 1.
4698
4699 2015-08-07 Pedro Alves <palves@redhat.com>
4700
4701 * s390-linux-tdep.c (is_non_branch_ril)
4702 (s390_displaced_step_copy_insn): New functions.
4703 (s390_displaced_step_fixup): Update comment.
4704 (s390_gdbarch_init): Install s390_displaced_step_copy_insn as
4705 gdbarch_displaced_step_copy_insn hook.
4706
4707 2015-08-07 Pedro Alves <palves@redhat.com>
4708
4709 * infrun.c (displaced_step_prepare_throw): Return -1 if
4710 gdbarch_displaced_step_copy_insn returns NULL. Update intro
4711 comment.
4712 * rs6000-tdep.c (LWARX_MASK, LWARX_INSTRUCTION, LDARX_INSTRUCTION)
4713 (STWCX_MASK, STWCX_INSTRUCTION, STDCX_INSTRUCTION): Move higher up
4714 in file.
4715 (ppc_displaced_step_copy_insn): New function.
4716 (ppc_displaced_step_fixup): Update comment.
4717 (rs6000_gdbarch_init): Install ppc_displaced_step_copy_insn as
4718 gdbarch_displaced_step_copy_insn hook.
4719 * gdbarch.sh (displaced_step_copy_insn): Document what happens on
4720 NULL return.
4721 * gdbarch.h: Regenerate.
4722
4723 2015-08-07 Pedro Alves <palves@redhat.com>
4724
4725 * inferior.h (struct inferior) <displaced_stepping_failed>: New
4726 field.
4727 * infrun.c (use_displaced_stepping_now_p): New parameter 'inf'.
4728 Return false if dispaced stepping failed before.
4729 (resume): Pass the current inferior to
4730 use_displaced_stepping_now_p. Wrap displaced_step_prepare in
4731 TRY/CATCH. If we get a MEMORY_ERROR, set the inferior's
4732 displaced_stepping_failed flag, and fall back to an in-line
4733 step-over.
4734
4735 2015-08-07 Pedro Alves <palves@redhat.com>
4736
4737 * darwin-nat.c (darwin_stop): Rename to ...
4738 (darwin_interrupt): ... this.
4739 (_initialize_darwin_inferior): Adjust.
4740 * gnu-nat.c (gnu_stop): Delete.
4741 (gnu_target): Don't install gnu_stop.
4742 * inf-ptrace.c (inf_ptrace_stop): Rename to ...
4743 (inf_ptrace_interrupt): ... this.
4744 (inf_ptrace_target): Adjust.
4745 * infcmd.c (interrupt_target_1): Use target_interrupt instead of
4746 target_stop.
4747 * linux-nat (linux_nat_stop): Rename to ...
4748 (linux_nat_interrupt): ... this.
4749 (linux_nat_stop): Reimplement.
4750 (linux_nat_add_target): Install linux_nat_interrupt.
4751 * nto-procfs.c (nto_interrupt_twice): Rename to ...
4752 (nto_handle_sigint_twice): ... this.
4753 (nto_interrupt): Rename to ...
4754 (nto_handle_sigint): ... this. Call target_interrupt instead of
4755 target_stop.
4756 (procfs_wait): Adjust.
4757 (procfs_stop): Rename to ...
4758 (procfs_interrupt): ... this.
4759 (init_procfs_targets): Adjust.
4760 * procfs.c (procfs_stop): Rename to ...
4761 (procfs_interrupt): ... this.
4762 (procfs_target): Adjust.
4763 * remote-m32r-sdi.c (m32r_stop): Rename to ...
4764 (m32r_interrupt): ... this.
4765 (init_m32r_ops): Adjust.
4766 * remote-sim.c (gdbsim_stop_inferior): Rename to ...
4767 (gdbsim_interrupt_inferior): ... this.
4768 (gdbsim_stop): Rename to ...
4769 (gdbsim_interrupt): ... this.
4770 (gdbsim_cntrl_c): Adjust.
4771 (init_gdbsim_ops): Adjust.
4772 * remote.c (sync_remote_interrupt): Adjust comments.
4773 (remote_stop_as): Rename to ...
4774 (remote_interrupt_as): ... this.
4775 (remote_stop): Adjust comment.
4776 (remote_interrupt): New function.
4777 (init_remote_ops): Install remote_interrupt.
4778 * target.c (target_interrupt): New function.
4779 * target.h (struct target_ops) <to_interrupt>: New field.
4780 (target_interrupt): New declaration.
4781 * windows-nat.c (windows_stop): Rename to ...
4782 (windows_interrupt): ... this.
4783 * target-delegates.c: Regenerate.
4784
4785 2015-08-07 Pedro Alves <palves@redhat.com>
4786
4787 * signal-while-stepping-over-bp-other-thread.exp: Expect "restart
4788 threads" as alternative to "switching back to stepped thread".
4789
4790 2015-08-07 Pedro Alves <palves@redhat.com>
4791
4792 * NEWS: Mention "maint set/show target-non-stop".
4793 * breakpoint.c (update_global_location_list): Check
4794 target_is_non_stop_p instead of non_stop.
4795 * infcmd.c (attach_command_post_wait, attach_command): Likewise.
4796 * infrun.c (show_can_use_displaced_stepping)
4797 (can_use_displaced_stepping_p, start_step_over_inferior):
4798 Likewise.
4799 (internal_resume_ptid): New function.
4800 (resume): Use it.
4801 (proceed): Check target_is_non_stop_p instead of non_stop. If in
4802 all-stop mode but the target is always in non-stop mode, start all
4803 the other threads that are implicitly resumed too.
4804 (for_each_just_stopped_thread, fetch_inferior_event)
4805 (adjust_pc_after_break, stop_all_threads): Check
4806 target_is_non_stop_p instead of non_stop.
4807 (handle_inferior_event): Likewise. Handle detach-fork in all-stop
4808 with the target always in non-stop mode.
4809 (handle_signal_stop) <random signal>: Check target_is_non_stop_p
4810 instead of non_stop.
4811 (switch_back_to_stepped_thread): Check target_is_non_stop_p
4812 instead of non_stop.
4813 (keep_going_stepped_thread): Use internal_resume_ptid.
4814 (stop_waiting): If in all-stop mode, and the target is in non-stop
4815 mode, stop all threads.
4816 (keep_going_pass): Likewise, when starting a new in-line step-over
4817 sequence.
4818 * linux-nat.c (get_pending_status, select_event_lwp)
4819 (linux_nat_filter_event, linux_nat_wait_1, linux_nat_wait): Check
4820 target_is_non_stop_p instead of non_stop.
4821 (linux_nat_always_non_stop_p): New function.
4822 (linux_nat_stop): Check target_is_non_stop_p instead of non_stop.
4823 (linux_nat_add_target): Install linux_nat_always_non_stop_p.
4824 * target-delegates.c: Regenerate.
4825 * target.c (target_is_non_stop_p): New function.
4826 (target_non_stop_enabled, target_non_stop_enabled_1): New globals.
4827 (maint_set_target_non_stop_command)
4828 (maint_show_target_non_stop_command): New functions.
4829 (_initilize_target): Install "maint set/show target-non-stop"
4830 commands.
4831 * target.h (struct target_ops) <to_always_non_stop_p>: New field.
4832 (target_non_stop_enabled): New declaration.
4833 (target_is_non_stop_p): New declaration.
4834
4835 2015-08-07 Pedro Alves <pedro@codesourcery.com>
4836
4837 * breakpoint.c (breakpoints_should_be_inserted_now): If any thread
4838 has a pending status, return true.
4839 * gdbthread.h: Include target/waitstatus.h.
4840 (struct thread_suspend_state) <stop_reason, waitstatus_pending_p,
4841 stop_pc>: New fields.
4842 (struct thread_info) <resumed>: New field.
4843 (set_resumed): Declare.
4844 * infrun.c: Include "event-loop.h".
4845 (infrun_async_inferior_event_token, infrun_is_async): New globals.
4846 (infrun_async): New function.
4847 (clear_step_over_info): Add debug output.
4848 (displaced_step_in_progress_any_inferior): New function.
4849 (displaced_step_fixup): New returns int.
4850 (start_step_over): Handle in-line step-overs too. Assert the
4851 thread is marked resumed.
4852 (resume_cleanups): Clear the thread's resumed flag.
4853 (resume): Set the thread's resumed flag. Return early if the
4854 thread has a pending status. Allow stepping a breakpoint with no
4855 signal.
4856 (proceed): Adjust to check 'resumed' instead of 'executing'.
4857 (clear_proceed_status_thread): If the thread has a pending status,
4858 and that status is a finished step, discard the pending status.
4859 (clear_proceed_status): Don't clear step_over_info here.
4860 (random_pending_event_thread, do_target_wait): New functions.
4861 (prepare_for_detach, wait_for_inferior, fetch_inferior_event): Use
4862 do_target_wait.
4863 (wait_one): New function.
4864 (THREAD_STOPPED_BY): New macro.
4865 (thread_stopped_by_watchpoint, thread_stopped_by_sw_breakpoint)
4866 (thread_stopped_by_hw_breakpoint): New functions.
4867 (switch_to_thread_cleanup, save_waitstatus, stop_all_threads): New
4868 functions.
4869 (handle_inferior_event): Also call set_resumed(false) on all
4870 threads implicitly stopped by the event.
4871 (restart_threads, resumed_thread_with_pending_status): New
4872 functions.
4873 (finish_step_over): If we were doing an in-line step-over before,
4874 and no longer are after trying to start a new step-over, restart
4875 all threads. If we have multiple threads with pending events,
4876 save the current event and go through the event loop again.
4877 (handle_signal_stop): Return early if finish_step_over returns
4878 false.
4879 <random signal>: If we get a signal while stepping over a
4880 breakpoint in-line in non-stop mode, restart all threads. Clear
4881 step_over_info before delivering the signal.
4882 (keep_going_stepped_thread): Use internal_error instead of
4883 gdb_assert. Mark the thread as resumed.
4884 (keep_going_pass_signal): Assert the thread isn't already resumed.
4885 If some other thread is doing an in-line step-over, defer the
4886 resume. If we just started a new in-line step-over, stop all
4887 threads. Don't clear step_over_info.
4888 (infrun_async_inferior_event_handler): New function.
4889 (_initialize_infrun): Create async event handler with
4890 infrun_async_inferior_event_handler as callback.
4891 (infrun_async): New declaration.
4892 * target.c (target_async): New function.
4893 * target.h (target_async): Declare macro and readd as function
4894 declaration.
4895 * target/waitstatus.h (enum target_stop_reason)
4896 <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
4897 * thread.c (new_thread): Clear the new waitstatus field.
4898 (set_resumed): New function.
4899
4900 2015-08-07 Pedro Alves <palves@redhat.com>
4901
4902 * infrun.c (keep_going_stepped_thread): New function, factored out
4903 from ...
4904 (switch_back_to_stepped_thread): ... here.
4905
4906 2015-08-07 Pedro Alves <palves@redhat.com>
4907
4908 * infrun.c (currently_stepping): Extend intro comment.
4909 * target.h (target_resume): Extend intro comment.
4910
4911 2015-08-07 Pedro Alves <palves@redhat.com>
4912
4913 * infrun.c (switch_back_to_stepped_thread): Use ecs->ptid instead
4914 of inferior_ptid. If the stepped thread vanished, return 0
4915 instead of resuming here. Use reset_ecs. Print the prev_pc and
4916 the current stop_pc in log message. Clear trap_expected if the
4917 thread advanced. Don't pass currently_stepping to
4918 do_target_resume.
4919
4920 2015-08-07 Pedro Alves <palves@redhat.com>
4921
4922 * gdbthread.h (struct thread_info) <prev_pc>: Extend comment.
4923 * infrun.c (struct execution_control_state): Move higher up in the
4924 file.
4925 (reset_ecs): New function.
4926 (start_step_over): Now returns int. Rewrite to use
4927 keep_going_pass_signal instead of manually starting a displaced step.
4928 (resume): Don't call set_running here. If displaced stepping
4929 can't start now, clear trap_expected.
4930 (find_thread_needs_step_over): Delete function.
4931 (proceed): Set up finish_thread_state_cleanup. Call set_running.
4932 If the current thread needs a step over, push it in the step-over
4933 chain. Don't set insert breakpoints nor call resume directly
4934 here. Instead rewrite to use start_step_over and
4935 keep_going_pass_signal.
4936 (finish_step_over): New function.
4937 (handle_signal_stop): Call finish_step_over instead of
4938 start_step_over.
4939 (switch_back_to_stepped_thread): If the event thread needs another
4940 step-over do that first. Use start_step_over.
4941 (keep_going_pass_signal): New function, factored out from ...
4942 (keep_going): ... here.
4943 (_initialize_infrun): Comment moved here.
4944 * thread.c (set_running_thread): New function.
4945 (set_running, finish_thread_state): Use set_running_thread.
4946
4947 2015-08-07 Pedro Alves <palves@redhat.com>
4948
4949 * gdbthread.h (struct thread_info) <step_over_prev,
4950 step_over_next>: New fields.
4951 (thread_step_over_chain_enqueue, thread_step_over_chain_remove)
4952 (thread_step_over_chain_next, thread_is_in_step_over_chain): New
4953 declarations.
4954 * infrun.c (struct displaced_step_request): Delete.
4955 (struct displaced_step_inferior_state) <step_request_queue>:
4956 Delete field.
4957 (displaced_step_prepare): Assert that trap_expected is set. Use
4958 thread_step_over_chain_enqueue. Split starting a new displaced
4959 step to ...
4960 (start_step_over): ... this new function.
4961 (resume): Assert the thread isn't waiting for a step over already.
4962 (proceed): Assert the thread isn't waiting for a step over
4963 already.
4964 (infrun_thread_stop_requested): Adjust to remove threads from the
4965 embedded step-over chain.
4966 (handle_inferior_event) <fork/vfork>: Call start_step_over after
4967 displaced_step_fixup.
4968 (handle_signal_stop): Call start_step_over after
4969 displaced_step_fixup.
4970 * infrun.h (step_over_queue_head): New declaration.
4971 * thread.c (step_over_chain_enqueue, step_over_chain_remove)
4972 (thread_step_over_chain_next, thread_is_in_step_over_chain)
4973 (thread_step_over_chain_enqueue)
4974 (thread_step_over_chain_remove): New functions.
4975 (delete_thread_1): Remove thread from the step-over chain.
4976
4977 2015-08-07 Pedro Alves <palves@redhat.com>
4978
4979 * infrun.c (thread_still_needs_step_over): Rename to ...
4980 (thread_still_needs_step_over_bp): ... this.
4981 (enum step_over_what): New.
4982 (thread_still_needs_step_over): Reimplement.
4983
4984 2015-08-07 Pedro Alves <palves@redhat.com>
4985
4986 * remote.c (remote_wait_as): If not waiting for a stop reply,
4987 return TARGET_WAITKIND_NO_RESUMED. If TARGET_WNOHANG is
4988 requested, don't block waiting forever.
4989
4990 2015-08-07 Pedro Alves <pedro@codesourcery.com>
4991
4992 * infrun.c (adjust_pc_after_break): Now takes thread_info and
4993 waitstatus pointers instead of an ecs. Adjust.
4994 (handle_inferior_event): Adjust caller.
4995
4996 2015-08-07 Pedro Alves <palves@redhat.com>
4997
4998 * infrun.c (handle_inferior_event): If we get
4999 TARGET_WAITKIND_SIGNALLED or TARGET_WAITKIND_EXITED in non-stop
5000 mode, mark all threads of the exiting process as not-executing.
5001 (normal_stop): If we get TARGET_WAITKIND_SIGNALLED or
5002 TARGET_WAITKIND_EXITED in non-stop mode, finish all threads of the
5003 exiting process, if inferior_ptid still points at a process.
5004 * thread.c (struct current_thread_cleanup) <next>: New field.
5005 (current_thread_cleanup_chain): New global.
5006 (restore_current_thread_ptid_changed): New function.
5007 (restore_current_thread_cleanup_dtor): Remove the cleanup from the
5008 current_thread_cleanup_chain list.
5009 (make_cleanup_restore_current_thread): Add the cleanup data to the
5010 current_thread_cleanup_chain list.
5011 (_initialize_thread): Install restore_current_thread_ptid_changed
5012 as thread_ptid_changed observer.
5013
5014 2015-08-07 Joel Brobecker <brobecker@adacore.com>
5015
5016 * dtrace-probe.c (dtrace_process_dof): Ignore the objfile's DOF
5017 data if a DTRACE_DOF_SECT_TYPE_PROVIDER section is found to be
5018 smaller than expected.
5019
5020 2015-08-07 Andrew Burgess <andrew.burgess@embecosm.com>
5021
5022 * stack.c (get_frame_language): Moved ...
5023 * frame.c (get_frame_language): ... to here.
5024 * language.h (get_frame_language): Declaration moved to frame.h.
5025 * frame.h: Add language.h include, for language enum.
5026 (get_frame_language): Declaration moved from language.h.
5027 * language.c: Add frame.h include.
5028 * top.c: Add frame.h include.
5029 * symtab.h (struct obj_section): Declare.
5030 (struct cmd_list_element): Declare.
5031
5032 2015-08-07 Andrew Burgess <andrew.burgess@embecosm.com>
5033
5034 * language.c (show_language_command): Find selected frame before
5035 asking for the language of that frame.
5036 (set_language_command): Likewise.
5037 * language.h (get_frame_language): Add frame parameter.
5038 * stack.c (get_frame_language): Add frame parameter, assert
5039 parameter is not NULL, update comment and reindent.
5040 * top.c (check_frame_language_change): Pass the selected frame
5041 into get_frame_language.
5042
5043 2015-08-07 Markus Metzger <markus.t.metzger@intel.com>
5044
5045 * btrace.c (btrace_compute_ftrace_bts): Clear insn flags.
5046 (pt_btrace_insn_flags): New.
5047 (ftrace_add_pt): Call pt_btrace_insn_flags.
5048 * btrace.h (btrace_insn_flag): New.
5049 (btrace_insn) <flags>: New.
5050 * record-btrace.c (btrace_insn_history): Print insn prefix.
5051 * NEWS: Announce it.
5052
5053 2015-08-07 Markus Metzger <markus.t.metzger@intel.com>
5054
5055 * configure.ac: Check for PERF_ATTR_SIZE_VER5 in linux/perf_event.h
5056 * configure: Regenerate.
5057
5058 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
5059
5060 * Makefile.in (LIBICONV): Define.
5061 (CLIBS): Add LIBICONV.
5062 * acinclude.m4: Use config/iconv.m4 instead of custom AM_ICONV.
5063 * configure: Regenerate.
5064
5065 2015-08-06 Simon Marchi <simon.marchi@ericsson.com>
5066 Pedro Alves <palves@redhat.com>
5067
5068 * arm-tdep.c (set_fp_model_sfunc): Add cast from integer to enum.
5069 (arm_set_abi): Likewise.
5070 * ax-general.c (ax_print): Likewise.
5071 * c-exp.y (exp : string_exp): Likewise.
5072 * compile/compile-loc2c.c (compute_stack_depth_worker): Likewise.
5073 (do_compile_dwarf_expr_to_c): Likewise.
5074 * cp-name-parser.y (demangler_special : DEMANGLER_SPECIAL start):
5075 Likewise.
5076 * dwarf2expr.c (execute_stack_op): Likewise.
5077 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
5078 (disassemble_dwarf_expression): Likewise.
5079 * dwarf2read.c (dwarf2_add_member_fn): Likewise.
5080 (read_array_order): Likewise.
5081 (abbrev_table_read_table): Likewise.
5082 (read_attribute_value): Likewise.
5083 (skip_unknown_opcode): Likewise.
5084 (dwarf_decode_macro_bytes): Likewise.
5085 (dwarf_decode_macros): Likewise.
5086 * eval.c (value_f90_subarray): Likewise.
5087 * guile/scm-param.c (gdbscm_make_parameter): Likewise.
5088 * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
5089 * infrun.c (handle_command): Likewise.
5090 * memory-map.c (memory_map_start_memory): Likewise.
5091 * osabi.c (set_osabi): Likewise.
5092 * parse.c (operator_length_standard): Likewise.
5093 * ppc-linux-tdep.c (ppc_canonicalize_syscall): Likewise, and use
5094 single return point.
5095 * python/py-frame.c (gdbpy_frame_stop_reason_string): Likewise.
5096 * python/py-symbol.c (gdbpy_lookup_symbol): Likewise.
5097 (gdbpy_lookup_global_symbol): Likewise.
5098 * record-full.c (record_full_restore): Likewise.
5099 * regcache.c (regcache_register_status): Likewise.
5100 (regcache_raw_read): Likewise.
5101 (regcache_cooked_read): Likewise.
5102 * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
5103 * symtab.c (initialize_ordinary_address_classes): Likewise.
5104 * target-debug.h (target_debug_print_signals): Likewise.
5105 * utils.c (do_restore_current_language): Likewise.
5106
5107 2015-08-06 Clem Dickey <clemd@acm.org>
5108
5109 PR python/17136
5110 * python/lib/gdb/command/type_printers.py (InfoTypePrinter): Fix typo.
5111
5112 2015-08-06 Simon Marchi <simon.marchi@ericsson.com>
5113
5114 * complaints.c (enum complaint_series): Add newlines and remove
5115 out of date comment.
5116 (struct complaints) <series>: Change type to enum
5117 complaint_series and remove out of date comment.
5118 (symfile_complaint_hook): Use equivalent enum value
5119 ISOLATED_MESSAGE instead of 0.
5120
5121 2015-08-06 Pedro Alves <palves@redhat.com>
5122
5123 * nat/linux-waitpid.c (my_waitpid): Only print *status if waitpid
5124 returned > 0.
5125
5126 2015-08-06 Pierre Langlois <pierre.langlois@arm.com>
5127
5128 * common/agent.c (symbol_list) <required>: Remove.
5129
5130 2015-08-06 Pedro Alves <palves@redhat.com>
5131
5132 * target/waitstatus.h (enum target_stop_reason)
5133 <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
5134
5135 2015-08-05 Pedro Alves <palves@redhat.com>
5136 Joel Brobecker <brobecker@adacore.com>
5137
5138 * breakpoint.c (bpstat_what) <bp_longjmp, bp_longjmp_call_dummy>
5139 <bp_exception, bp_longjmp_resume, bp_exception_resume>: Handle the
5140 case where BS->STOP is not set.
5141
5142 2015-08-05 Ulrich Weigand <uweigand@de.ibm.com>
5143
5144 * nat/gdb_thread_db.h: Add copyright header.
5145 Protect against multiple inclusion.
5146
5147 2015-08-05 Yao Qi <yao.qi@linaro.org>
5148
5149 * aarch64-linux-nat.c (get_thread_id): Remove.
5150 (debug_reg_change_callback): Call ptid_get_lwp instead of
5151 get_thread_id.
5152 (fetch_gregs_from_thread): Likewise.
5153 (store_gregs_to_thread): Likewise.
5154 (fetch_fpregs_from_thread): Likewise.
5155 (store_fpregs_to_thread): Likewise.
5156 (aarch64_linux_get_debug_reg_capacity): Likewise.
5157 * arm-linux-nat.c (get_thread_id): Remove.
5158 (GET_THREAD_ID): Update macro to use ptid_get_lwp.
5159 * xtensa-linux-nat.c (get_thread_id): Remove.
5160 (GET_THREAD_ID): Update macro to use ptid_get_lwp.
5161 * arm-linux-nat.c (get_thread_id): Remove.
5162 (GET_THREAD_ID): Remove.
5163 (fetch_fpregs): Call ptid_get_lwp instead of GET_THREAD_ID.
5164 (store_fpregs, fetch_regs, store_regs): Likewise.
5165 (fetch_wmmx_regs, store_wmmx_regs): Likewise.
5166 (fetch_vfp_regs, store_vfp_regs): Likewise.
5167 (arm_linux_read_description): Likewise.
5168 (arm_linux_get_hwbp_cap): Likewise.
5169 * xtensa-linux-nat.c (get_thread_id): Remove.
5170 (GET_THREAD_ID): Remove.
5171 (fetch_gregs, store_gregs): Call ptid_get_lwp instead of
5172 GET_THREAD_ID.
5173
5174 2015-08-04 Ciro Santilli <ciro.santilli@gmail.com> (obvious patch)
5175
5176 * python/py-linetable.c: Fix case of Linetable to LineTable
5177 in docstrings and code comments.
5178 * python/py-symtab.c: Same.
5179
5180 2015-08-04 Jan Kratochvil <jan.kratochvil@redhat.com>
5181
5182 * infcmd.c (signal_command): Call do_cleanups for args_chain.
5183
5184 2015-08-04 Jan Kratochvil <jan.kratochvil@redhat.com>
5185
5186 PR gdb/18767
5187 * infcmd.c (attach_command): Move ARGS_CHAIN cleanup after last ARGS
5188 use.
5189
5190 2015-08-04 Pedro Alves <palves@redhat.com>
5191
5192 * nat/gdb_thread_db.h (td_init_ftype, td_ta_new_ftype)
5193 (td_ta_map_lwp2thr_ftype, td_ta_thr_iter_ftype)
5194 (td_ta_event_addr_ftype, td_ta_set_event_ftype)
5195 (td_ta_clear_event_ftype, td_ta_event_getmsg_ftype)
5196 (td_thr_validate_ftype, td_thr_get_info_ftype)
5197 (td_thr_event_enable_ftype, td_thr_tls_get_addr_ftype)
5198 (td_thr_tlsbase_ftype, td_symbol_list_ftype, td_ta_delete_ftype):
5199 New typedefs.
5200 * linux-thread-db.c (struct thread_db_info): Use new typedefs.
5201 (try_thread_db_load_1): Define TDB_VERBOSE_DLSYM, TDB_DLSYM , CHK
5202 local macros and use them instead of verbose_dlsym and dlsym
5203 calls.
5204
5205 2015-08-03 Sandra Loosemore <sandra@codesourcery.com>
5206
5207 * nios2-tdep.h: Include opcode/nios2.h here.
5208 (NIOS2_CDX_OPCODE_SIZE): New.
5209 (struct gdbarch_tdep): Add OP parameter to syscall_next_pc.
5210 * nios2-tdep.c: Don't include opcode/nios2.h here.
5211 (nios2_fetch_insn): For R2, try reading 2-byte instruction if
5212 4-byte read fails.
5213 (nios2_match_add, nios2_match_sub): Add cases for R2 encodings.
5214 (nios2_match_addi, nios2_match_orhi): Likewise.
5215 (nios2_match_stw, nios2_match_ldw): Likewise.
5216 (nios2_match_rdctl): Likewise.
5217 (nios2_match_stwm, nios2_match_ldwm): New.
5218 (nios2_match_branch): Add cases for R2 encodings.
5219 (nios2_match_jmpi, nios2_match_calli): Likewise.
5220 (nios2_match_jmpr, nios2_match_callr): Likewise.
5221 (nios2_match_break, nios2_match_trap): Likewise.
5222 (nios2_in_epilogue_p): Add R2 support.
5223 (nios2_analyze_prologue): Update comments. Recognize R2 CDX
5224 prologues.
5225 (nios2_breakpoint_from_pc): Handle R2 instructions.
5226 (nios2_get_next_pc): Likewise. Adjust call to
5227 tdep->syscall_next_pc.
5228 * nios2-linux-tdep.c (nios2_r1_linux_rt_sigreturn_tramp_frame):
5229 Renamed from nios2_linux_rt_sigreturn_tramp_frame. Use
5230 instruction field macros instead of literal hex values.
5231 (nios2_r2_linux_rt_sigreturn_tramp_frame): New.
5232 (nios2_linux_syscall_next_pc): Adjust signature to pass OP.
5233 Use size field from OP instead of assuming all instructions
5234 are the same size.
5235 (nios2_linux_init_abi): Register appropriate unwinder for mach.
5236
5237 2015-08-03 Ulrich Weigand <uweigand@de.ibm.com>
5238
5239 * cp-namespace.c (cp_lookup_symbol_via_imports): Fix uninitialized
5240 variable warning with some compilers.
5241
5242 2015-08-03 Yao Qi <yao.qi@linaro.org>
5243
5244 * arm-linux-nat.c (arm_linux_get_hwbp_type): Capitalize "type"
5245 in comment. Replace "rw" with "type".
5246 (arm_linux_remove_watchpoint): Change type of "rw" to
5247 "enum target_hw_bp_type".
5248
5249 2015-08-02 Pierre-Marie de Rodat <derodat@adacore.com>
5250
5251 * alpha-mdebug-tdep.c (find_proc_desc): Update call to
5252 lookup_symbol.
5253 * ft32-tdep.c (ft32_skip_prologue): Likewise.
5254 * moxie-tdep.c (moxie_skip_prologue): Likewise.
5255 * mt-tdep.c (mt_skip_prologue): Likewise.
5256 * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
5257
5258 2015-08-01 Pierre-Marie de Rodat <derodat@adacore.com>
5259
5260 * ada-exp.y (write_object_renaming): Replace struct
5261 ada_symbol_info with struct block_symbol. Update field
5262 references accordingly.
5263 (block_lookup, select_possible_type_sym): Likewise.
5264 (find_primitive_type): Likewise. Also update call to
5265 ada_lookup_symbol to extract the symbol itself.
5266 (write_var_or_type, write_name_assoc): Likewise.
5267 * ada-lang.h (struct ada_symbol_info): Remove.
5268 (ada_lookup_symbol_list): Replace struct ada_symbol_info with
5269 struct block_symbol.
5270 (ada_lookup_encoded_symbol, user_select_syms): Likewise.
5271 (ada_lookup_symbol): Return struct block_symbol instead of a
5272 mere symbol.
5273 * ada-lang.c (defns_collected): Replace struct ada_symbol_info
5274 with struct block_symbol.
5275 (resolve_subexp, ada_resolve_function, sort_choices,
5276 user_select_syms, is_nonfunction, add_defn_to_vec,
5277 num_defns_collected, defns_collected,
5278 symbols_are_identical_enums, remove_extra_symbols,
5279 remove_irrelevant_renamings, add_lookup_symbol_list_worker,
5280 ada_lookup_symbol_list, ada_iterate_over_symbols,
5281 ada_lookup_encoded_symbol, get_var_value): Likewise.
5282 (ada_lookup_symbol): Return a block_symbol instead of a mere
5283 symbol. Replace struct ada_symbol_info with struct
5284 block_symbol.
5285 (ada_lookup_symbol_nonlocal): Likewise.
5286 (standard_lookup): Make block passing explicit through
5287 lookup_symbol_in_language.
5288 * ada-tasks.c (get_tcb_types_info): Update the calls to
5289 lookup_symbol_in_language to extract the mere symbol out of the
5290 returned value.
5291 (ada_tasks_inferior_data_sniffer): Likewise.
5292 * ax-gdb.c (gen_static_field): Likewise for the call to
5293 lookup_symbol.
5294 (gen_maybe_namespace_elt): Deal with struct block_symbol from
5295 lookup functions.
5296 (gen_expr): Likewise.
5297 * c-exp.y: Likewise. Remove uses of block_found.
5298 (lex_one_token, classify_inner_name, c_print_token): Likewise.
5299 (classify_name): Likewise. Rename the "sym" local variable to
5300 "bsym".
5301 * c-valprint.c (print_unpacked_pointer): Likewise.
5302 * compile/compile-c-symbols.c (convert_symbol_sym): Promote the
5303 "sym" parameter from struct symbol * to struct block_symbol.
5304 Use it to remove uses of block_found. Deal with struct
5305 block_symbol from lookup functions.
5306 (gcc_convert_symbol): Likewise. Update the call to
5307 convert_symbol_sym.
5308 * compile/compile-object-load.c (compile_object_load): Deal with
5309 struct block_symbol from lookup functions.
5310 * cp-namespace.c (cp_lookup_nested_symbol_1,
5311 cp_lookup_nested_symbol, cp_lookup_bare_symbol,
5312 cp_search_static_and_baseclasses,
5313 cp_lookup_symbol_in_namespace, cp_lookup_symbol_via_imports,
5314 cp_lookup_symbol_imports_or_template,
5315 cp_lookup_symbol_via_all_imports, cp_lookup_symbol_namespace,
5316 lookup_namespace_scope, cp_lookup_nonlocal,
5317 find_symbol_in_baseclass): Return struct block_symbol instead of
5318 mere symbols and deal with struct block_symbol from lookup
5319 functions.
5320 * cp-support.c (inspect_type, replace_typedefs,
5321 cp_lookup_rtti_type): Deal with struct block_symbol from
5322 lookup functions.
5323 * cp-support.h (cp_lookup_symbol_nonlocal,
5324 cp_lookup_symbol_from_namespace,
5325 cp_lookup_symbol_imports_or_template, cp_lookup_nested_symbol):
5326 Return struct block_symbol instead of mere symbols.
5327 * d-exp.y (d_type_from_name, d_module_from_name, push_variable,
5328 push_module_name):
5329 Deal with struct block_symbol from lookup functions. Remove
5330 uses of block_found.
5331 * eval.c (evaluate_subexp_standard): Update call to
5332 cp_lookup_symbol_namespace.
5333 * f-exp.y: Deal with struct block_symbol from lookup functions.
5334 Remove uses of block_found.
5335 (yylex): Likewise.
5336 * gdbtypes.c (lookup_typename, lookup_struct, lookup_union,
5337 lookup_enum, lookup_template_type, check_typedef): Deal with
5338 struct block_symbol from lookup functions.
5339 * guile/scm-frame.c (gdbscm_frame_read_var): Likewise.
5340 * guile/scm-symbol.c (gdbscm_lookup_symbol): Likewise.
5341 (gdbscm_lookup_global_symbol): Likewise.
5342 * gnu-v3-abi.c (gnuv3_get_typeid_type): Likewise.
5343 * go-exp.y: Likewise. Remove uses of block_found.
5344 (package_name_p, classify_packaged_name, classify_name):
5345 Likewise.
5346 * infrun.c (insert_exception_resume_breakpoint): Likewise.
5347 * jv-exp.y (push_variable): Likewise.
5348 * jv-lang.c (java_lookup_class, get_java_object_type): Likewise.
5349 * language.c (language_bool_type): Likewise.
5350 * language.h (struct language_defn): Update
5351 la_lookup_symbol_nonlocal to return a struct block_symbol rather
5352 than a mere symbol.
5353 * linespec.c (find_label_symbols): Deal with struct block_symbol
5354 from lookup functions.
5355 * m2-exp.y: Likewise. Remove uses of block_found.
5356 (yylex): Likewise.
5357 * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
5358 * objc-lang.c (lookup_struct_typedef, find_imps): Likewise.
5359 * p-exp.y: Likewise. Remove uses of block_found.
5360 (yylex): Likewise.
5361 * p-valprint.c (pascal_val_print): Likewise.
5362 * parse.c (write_dollar_variable): Likewise. Remove uses of
5363 block_found.
5364 * parser-defs.h (struct symtoken): Turn the SYM field into a
5365 struct block_symbol.
5366 * printcmd.c (address_info): Deal with struct block_symbol from
5367 lookup functions.
5368 * python/py-frame.c (frapy_read_var): Likewise.
5369 * python/py-symbol.c (gdbpy_lookup_symbol,
5370 gdbpy_lookup_global_symbol): Likewise.
5371 * skip.c (skip_function_command): Likewise.
5372 * solib-darwin.c (darwin_lookup_lib_symbol): Return a struct
5373 block_symbol instead of a mere symbol.
5374 * solib-spu.c (spu_lookup_lib_symbol): Likewise.
5375 * solib-svr4.c (elf_lookup_lib_symbol): Likewise.
5376 * solib.c (solib_global_lookup): Likewise.
5377 * solist.h (solib_global_lookup): Likewise.
5378 (struct target_so_ops): Update lookup_lib_global_symbol to
5379 return a struct block_symbol rather than a mere symbol.
5380 * source.c (select_source_symtab): Deal with struct block_symbol
5381 from lookup functions.
5382 * stack.c (print_frame_args, iterate_over_block_arg_vars):
5383 Likewise.
5384 * symfile.c (set_initial_language): Likewise.
5385 * symtab.c (SYMBOL_LOOKUP_FAILED): Turn into a struct
5386 block_symbol.
5387 (SYMBOL_LOOKUP_FAILED_P): New predicate as a macro.
5388 (struct symbol_cache_slot): Turn the FOUND field into a struct
5389 block_symbol.
5390 (block_found): Remove.
5391 (eq_symbol_entry): Update to deal with struct block_symbol in
5392 cache slots.
5393 (symbol_cache_lookup): Return a struct block_symbol rather than
5394 a mere symbol.
5395 (symbol_cache_mark_found): Add a BLOCK parameter to fill
5396 appropriately the cache slots. Update callers.
5397 (symbol_cache_dump): Update cache slots handling to the type
5398 change.
5399 (lookup_symbol_in_language, lookup_symbol, lookup_language_this,
5400 lookup_symbol_aux, lookup_local_symbol,
5401 lookup_symbol_in_objfile, lookup_global_symbol_from_objfile,
5402 lookup_symbol_in_objfile_symtabs,
5403 lookup_symbol_in_objfile_from_linkage_name,
5404 lookup_symbol_via_quick_fns, basic_lookup_symbol_nonlocal,
5405 lookup_symbol_in_static_block, lookup_static_symbol,
5406 lookup_global_symbol):
5407 Return a struct block_symbol rather than a mere symbol. Deal
5408 with struct block_symbol from other lookup functions. Remove
5409 uses of block_found.
5410 (lookup_symbol_in_block): Remove uses of block_found.
5411 (struct global_sym_lookup_data): Turn the RESULT field into a
5412 struct block_symbol.
5413 (lookup_symbol_global_iterator_cb): Update references to the
5414 RESULT field.
5415 (search_symbols): Deal with struct block_symbol from lookup
5416 functions.
5417 * symtab.h (struct block_symbol): New structure.
5418 (block_found): Remove.
5419 (lookup_symbol_in_language, lookup_symbol,
5420 basic_lookup_symbol_nonlocal, lookup_symbol_in_static_block,
5421 lookup_static_symbol, lookup_global_symbol, lookup_language_this,
5422 lookup_global_symbol_from_objfile): Return a struct block_symbol
5423 rather than just a mere symbol. Update comments to remove
5424 mentions of block_found.
5425 * valops.c (find_function_in_inferior,
5426 value_struct_elt_for_reference, value_maybe_namespace_elt,
5427 value_of_this): Deal with struct block_symbol from lookup
5428 functions.
5429 * value.c (value_static_field, value_fn_field): Likewise.
5430
5431 2015-07-31 Simon Marchi <simon.marchi@ericsson.com>
5432
5433 * remote-m32r-sdi.c (m32r_remove_watchpoint): Use enum type
5434 instead of integer.
5435
5436 2015-07-31 Simon Marchi <simon.marchi@ericsson.com>
5437 Pedro Alves <palves@redhat.com>
5438
5439 * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): Use enum
5440 type or value instead of integer.
5441 (aarch64_linux_insert_watchpoint): Likewise.
5442 (aarch64_linux_remove_watchpoint): Likewise.
5443 * ada-lang.c (ada_op_print_tab): Likewise.
5444 * amd64-linux-tdep.c (amd64_canonicalize_syscall): Likewise.
5445 (amd64_linux_syscall_record_common): Likewise.
5446 * arch-utils.c (target_byte_order_user): Likewise.
5447 (default_byte_order): Likewise.
5448 * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Likewise.
5449 (arm_linux_get_hwbp_type): Likewise.
5450 (arm_linux_hw_watchpoint_initialize): Likewise.
5451 (arm_linux_insert_watchpoint): Likewise.
5452 * arm-linux-tdep.c (arm_canonicalize_syscall): Likewise.
5453 (arm_linux_syscall_record): Likewise.
5454 * breakpoint.c (update_watchpoint): Likewise.
5455 (breakpoint_here_p): Likewise.
5456 (bpstat_print): Likewise.
5457 (enable_breakpoint_disp): Likewise.
5458 * c-lang.c (c_op_print_tab): Likewise.
5459 * cli/cli-decode.c (add_info_alias): Likewise.
5460 * d-lang.c (d_op_print_tab): Likewise.
5461 * eval.c (evaluate_subexp_standard): Likewise.
5462 * f-exp.y (dot_ops): Likewise.
5463 (f77_keywords): Likewise.
5464 * f-lang.c (f_op_print_tab): Likewise.
5465 * go-lang.c (go_op_print_tab): Likewise.
5466 * guile/scm-breakpoint.c (gdbscm_make_breakpoint): Likewise.
5467 * guile/scm-cmd.c (gdbscm_make_command): Likewise.
5468 * guile/scm-param.c (gdbscm_make_parameter): Likewise.
5469 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): Likewise.
5470 * guile/scm-string.c (struct scm_to_stringn_data): Likewise.
5471 (struct scm_from_stringn_data): Likewise.
5472 * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
5473 * ia64-linux-nat.c (ia64_linux_insert_watchpoint): Likewise.
5474 (ia64_linux_remove_watchpoint): Likewise.
5475 (ia64_linux_can_use_hw_breakpoint): Likewise.
5476 * infrun.c (print_stop_event): Likewise.
5477 * jv-lang.c (java_op_print_tab): Likewise.
5478 * linux-nat.c (linux_proc_xfer_partial): Likewise.
5479 * linux-nat.h (struct lwp_info): Likewise.
5480 * linux-thread-db.c (enable_thread_event): Likewise.
5481 * m2-lang.c (m2_op_print_tab): Likewise.
5482 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Likewise.
5483 (mi_cmd_stack_list_variables): Likewise.
5484 * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise.
5485 * mi/mi-out.c (mi_table_begin): Likewise.
5486 (mi_table_header): Likewise.
5487 * mips-linux-nat.c (mips_linux_can_use_hw_breakpoint): Likewise.
5488 (mips_linux_insert_watchpoint): Likewise.
5489 (mips_linux_remove_watchpoint): Likewise.
5490 * nat/mips-linux-watch.c (mips_linux_watch_type_to_irw): Likewise.
5491 * nat/mips-linux-watch.h (struct mips_watchpoint): Likewise.
5492 (mips_linux_watch_type_to_irw): Likewise.
5493 * nto-procfs.c (procfs_can_use_hw_breakpoint): Likewise.
5494 (procfs_insert_hw_watchpoint): Likewise.
5495 (procfs_remove_hw_watchpoint): Likewise.
5496 (procfs_hw_watchpoint): Likewise.
5497 (procfs_can_use_hw_breakpoint): Likewise.
5498 (procfs_remove_hw_watchpoint): Likewise.
5499 (procfs_insert_hw_watchpoint): Likewise.
5500 * p-lang.c (pascal_op_print_tab): Likewise.
5501 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): Likewise.
5502 * ppc-linux-tdep.c (ppu2spu_unwind_register): Likewise.
5503 * ppc-sysv-tdep.c (get_decimal_float_return_value): Likewise.
5504 * procfs.c (procfs_can_use_hw_breakpoint): Likewise.
5505 (procfs_insert_watchpoint): Likewise.
5506 (procfs_remove_watchpoint): Likewise.
5507 * psymtab.c (recursively_search_psymtabs): Likewise.
5508 * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint): Likewise.
5509 (m32r_insert_watchpoint): Likewise.
5510 * remote-mips.c (mips_can_use_watchpoint): Likewise.
5511 (mips_insert_watchpoint): Likewise.
5512 (mips_remove_watchpoint): Likewise.
5513 * remote.c (watchpoint_to_Z_packet): Likewise.
5514 (remote_insert_watchpoint): Likewise.
5515 (remote_remove_watchpoint): Likewise.
5516 (remote_check_watch_resources): Likewise.
5517 * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
5518 (s390_remove_watchpoint): Likewise.
5519 (s390_can_use_hw_breakpoint): Likewise.
5520 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
5521 * spu-linux-nat.c (spu_can_use_hw_breakpoint): Likewise.
5522 * target.h (struct target_ops): Likewise.
5523 * tilegx-tdep.c (tilegx_analyze_prologue): Likewise.
5524 * ui-out.c (struct ui_out_hdr): Likewise.
5525 (append_header_to_list): Likewise.
5526 (get_next_header): Likewise.
5527 (verify_field): Likewise.
5528 (ui_out_begin): Likewise.
5529 (ui_out_field_int): Likewise.
5530 (ui_out_field_fmt_int): Likewise.
5531 (ui_out_field_skip): Likewise.
5532 (ui_out_field_string): Likewise.
5533 (ui_out_field_fmt): Likewise.
5534 * varobj.c (new_variable): Likewise.
5535 * x86-nat.c (x86_insert_watchpoint): Likewise.
5536 (x86_remove_watchpoint): Likewise.
5537 (x86_can_use_hw_breakpoint): Likewise.
5538 * xtensa-tdep.h (struct gdbarch_tdep): Likewise.
5539 * inflow.c (enum gdb_has_a_terminal_flag_enum): Add name to
5540 previously anonymous enumeration type..
5541 * linux-record.h (enum gdb_syscall): Add gdb_sys_no_syscall
5542 value.
5543 * target-debug.h (target_debug_print_enum_target_hw_bp_type): New.
5544 (target_debug_print_enum_bptype): New.
5545 * target-delegates.c: Regenerate.
5546
5547 2015-07-30 Sandra Loosemore <sandra@codesourcery.com>
5548
5549 * nios2-tdep.c (nios2_analyze_prologue): Do what the comment
5550 already says and disallow non-stack memory writes in the prologue.
5551
5552 2015-07-30 Sandra Loosemore <sandra@codesourcery.com>
5553
5554 * nios2-tdep.c (nios2_analyze_prologue): Update comments to
5555 reflect how current GCC emits stack overflow checks. Match
5556 both trap and break instructions for backward compatbility.
5557 Disallow other trap and break instructions in the prologue.
5558
5559 2015-07-30 Pedro Alves <palves@redhat.com>
5560
5561 PR threads/18600
5562 * linux-nat.c (wait_lwp): Report to the core when thread group
5563 leader exits.
5564
5565 2015-07-30 Pedro Alves <palves@redhat.com>
5566 Simon Marchi <simon.marchi@ericsson.com>
5567
5568 PR threads/18600
5569 * linux-nat.c (linux_handle_extended_wait): On CLONE event, always
5570 mark the new thread as resumed. Remove STOPPING parameter.
5571 (wait_lwp): Adjust call to linux_handle_extended_wait.
5572 (linux_nat_filter_event): Adjust call to
5573 linux_handle_extended_wait.
5574 (resume_stopped_resumed_lwps): Add debug output.
5575
5576 2015-07-30 Pierre Langlois <pierre.langlois@arm.com>
5577
5578 * arch-utils.c (default_fast_tracepoint_valid_at): Remove unused
5579 isize argument.
5580 * arch-utils.h (default_fast_tracepoint_valid_at): Likewise.
5581 * breakpoint.c (check_fast_tracepoint_sals): Adjust call to
5582 gdbarch_fast_tracepoint_valid_at.
5583 * gdbarch.sh (fast_tracepoint_valid_at): Remove isize argument.
5584 * gdbarch.h: Regenerate.
5585 * gdbarch.c: Regenerate.
5586 * i386-tdep.c (i386_fast_tracepoint_valid_at): Remove isize
5587 argument. Do not set it.
5588 * remote.c (remote_download_tracepoint): Adjust call to
5589 gdbarch_fast_tracepoint_valid_at. Call gdb_insn_length to get
5590 the instruction length.
5591
5592 2015-07-30 Yao Qi <yao.qi@linaro.org>
5593
5594 * arm-tdep.h (enum gdb_regnum): Move it to ...
5595 * arch/arm.h: ... here. New file.
5596 * Makefile.in (HFILES_NO_SRCDIR): Add arch/arm.h.
5597
5598 2015-07-30 Pierre Langlois <pierre.langlois@arm.com>
5599
5600 * aarch64-tdep.c (decode_b): Rename link argument to is_bl.
5601 Change its type to int *.
5602 (decode_br): Rename link argument to is_blr. Change its type to
5603 int *.
5604 (decode_cb): Rename op argument to is_cbnz. Change its type to
5605 int *.
5606 (decode_tb): Rename op argument to is_tbnz. Change its type to
5607 int *. Set is_tbnz to either 1 or 0.
5608 (aarch64_analyze_prologue): Change type of is_link to int. Add
5609 new variables is_cbnz and is_tbnz. Adjust call to
5610 aarch64_decode_cb and aarch64_decode_tb.
5611
5612 2015-07-29 Simon Marchi <simon.marchi@ericsson.com>
5613
5614 * mips-linux-nat.c (write_watchpoint_regs): Add NULL as ptrace's 4th
5615 parameter.
5616 (mips_linux_new_thread): Likewise.
5617 * nat/mips-linux-watch.c (mips_linux_read_watch_registers): Likewise.
5618
5619 2015-07-29 Patrick Palka <patrick@parcs.ath.cx>
5620
5621 * top.c: Include "tui/tui.h".
5622 (undo_terminal_modifications_before_exit): New static function.
5623 (quit_force): Use it.
5624
5625 2015-07-29 Patrick Palka <patrick@parcs.ath.cx>
5626
5627 * target.c (terminal_state): Initialize to terminal_is_ours.
5628
5629 2015-07-29 Yao Qi <yao.qi@linaro.org>
5630
5631 PR record/18691
5632 * dcache.c (dcache_read_memory_partial): Call
5633 raw_memory_xfer_partial.
5634 * target.c (raw_memory_xfer_partial): Make it non-static.
5635 * target.h (raw_memory_xfer_partial): Declare.
5636
5637 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
5638
5639 * c-valprint.c (c_val_print_array): Consider addressable memory
5640 unit size.
5641 (c_val_print_ptr): Likewise.
5642 (c_val_print_int): Likewise.
5643 * findvar.c (read_frame_register_value): Likewise.
5644 * valarith.c (find_size_for_pointer_math): Likewise.
5645 (value_ptrdiff): Likewise.
5646 (value_subscripted_rvalue): Likewise.
5647 * valops.c (read_value_memory): Likewise (and rename variables).
5648 (value_assign): Likewise.
5649 (value_repeat): Likewise.
5650 (value_array): Likewise.
5651 (value_slice): Likewise.
5652 * valprint.c (generic_val_print_ptr): Likewise.
5653 (generic_val_print_enum): Likewise.
5654 (generic_val_print_bool): Likewise.
5655 (generic_val_print_int): Likewise.
5656 (generic_val_print_char): Likewise.
5657 (generic_val_print_float): Likewise.
5658 (generic_val_print_decfloat): Likewise.
5659 (generic_val_print_complex): Likewise.
5660 (val_print_scalar_formatted): Likewise.
5661 (val_print_array_elements): Likewise.
5662 * value.c (set_value_parent): Likewise.
5663 (value_contents_copy_raw): Likewise.
5664 (set_internalvar_component): Likewise.
5665 (value_primitive_field): Likewise.
5666 (value_fetch_lazy): Likewise.
5667 * value.h (read_value_memory): Update comment.
5668
5669 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
5670
5671 * value.c (get_value_arch): New function.
5672 * value.h (get_value_arch): New declaration.
5673
5674 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
5675
5676 * value.c (struct value): Update comments.
5677
5678 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
5679
5680 * gdbtypes.c (type_length_units): New function.
5681 * gdbtypes.h (type_length_units): New declaration.
5682 (struct type) <length>: Update comment.
5683
5684 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5685
5686 * valprint.c (generic_val_print): Factor out complex
5687 printing code to ...
5688 (generic_val_print_complex): ... this new function.
5689
5690 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5691
5692 * valprint.c (generic_val_print): Factor out decfloat
5693 printing code to ...
5694 (generic_val_print_decfloat): ... this new function.
5695
5696 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5697
5698 * valprint.c (generic_val_print): Factor out float
5699 printing code to ...
5700 (generic_val_print_float): ... this new function.
5701
5702 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5703
5704 * valprint.c (generic_val_print): Factor out char
5705 printing code to ...
5706 (generic_val_print_char): ... this new function.
5707
5708 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5709
5710 * valprint.c (generic_val_print): Factor out integer
5711 printing code to ...
5712 (generic_val_print_int): ... this new function.
5713
5714 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5715
5716 * valprint.c (generic_val_print): Factor out bool
5717 printing code to ...
5718 (generic_val_print_bool): ... this new function.
5719
5720 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5721
5722 * valprint.c (generic_val_print): Factor out function/method
5723 printing code to ...
5724 (generic_val_print_func): ... this new function.
5725
5726 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5727
5728 * valprint.c (generic_val_print): Factor out flags
5729 printing code to ...
5730 (generic_val_print_flags): ... this new function.
5731
5732 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5733
5734 * valprint.c (generic_val_print): Factor out enum
5735 printing code to ...
5736 (generic_val_print_enum): ... this new function.
5737
5738 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5739
5740 * valprint.c (generic_val_print): Factor out reference
5741 printing code to ...
5742 (generic_val_print_ref): ... this new function.
5743
5744 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5745
5746 * valprint.c (generic_val_print): Factor out memberptr
5747 printing code to ...
5748 (generic_val_print_memberptr): ... this new function.
5749
5750 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5751
5752 * valprint.c (generic_val_print): Factor out pointer
5753 printing code to ...
5754 (generic_val_print_ptr): ... this new function.
5755
5756 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5757
5758 * valprint.c (generic_val_print): Factor out array
5759 printing code to ...
5760 (generic_val_print_array): ... this new function.
5761
5762 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5763
5764 * valprint.c (generic_val_print): Factor out
5765 print_unpacked_pointer code to ...
5766 (print_unpacked_pointer): ... this new function.
5767
5768 2015-07-27 Patrick Palka <patrick@parcs.ath.cx>
5769
5770 * event-top.c (handle_sigterm): Don't inspect
5771 target_can_async_p. Always set the quit flag and always mark
5772 the async signal handler.
5773
5774 2015-07-27 Yao Qi <yao.qi@linaro.org>
5775
5776 * Makefile.in (REMOTE_EXAMPLES): Remove it.
5777
5778 2015-07-25 Kevin Buettner <kevinb@redhat.com>
5779
5780 * remote.c (read_ptid): Return null_ptid when no thread id
5781 is found.
5782 (remote_current_thread): Add log warning for malformed
5783 qC reply.
5784 (remote_start_remote): Add log warning when current thread
5785 not found.
5786
5787 2015-07-24 Pedro Alves <palves@redhat.com>
5788
5789 * s390-linux-nat.c (fetch_regs, store_regs, fetch_fpregs)
5790 (s390_stopped_by_watchpoint, s390_prepare_to_resume): Pass 0 as
5791 forth argument to ptrace PTRACE_PEEKUSR_AREA/PTRACE_POKEUSR_AREA.
5792
5793 2015-07-24 Pedro Alves <palves@redhat.com>
5794
5795 PR gdb/18717
5796 * linux-nat.c (linux_nat_filter_event): Don't assert that the lwp
5797 is resumed, and extend the debug log.
5798
5799 2015-07-24 Pedro Alves <palves@redhat.com>
5800
5801 * fork-child.c (fork_inferior): Print argv[0] instead of exec_file.
5802
5803 2015-07-24 Pedro Alves <palves@redhat.com>
5804
5805 * aarch64-linux-nat.c: Include nat/gdb_ptrace.h instead of
5806 sys/ptrace.h.
5807 * alpha-linux-nat.c: Likewise.
5808 * amd64-linux-nat.c: Likewise.
5809 * arm-linux-nat.c: Likewise.
5810 * hppa-linux-nat.c: Likewise.
5811 * i386-linux-nat.c: Likewise.
5812 * ia64-linux-nat.c: Likewise.
5813 * linux-fork.c: Likewise.
5814 * linux-nat.c: Likewise.
5815 * m32r-linux-nat.c: Likewise.
5816 * m68klinux-nat.c: Likewise.
5817 * mips-linux-nat.c: Likewise.
5818 * nat/linux-btrace.c: Likewise.
5819 * nat/linux-ptrace.c: Likewise.
5820 * nat/linux-ptrace.h
5821 * nat/mips-linux-watch.c: Likewise.
5822 * nat/x86-linux-dregs.c: Likewise.
5823 * ppc-linux-nat.c: Likewise.
5824 * s390-linux-nat.c: Likewise.
5825 * spu-linux-nat.c: Likewise.
5826 * tilegx-linux-nat.c: Likewise.
5827 * x86-linux-nat.c: Likewise.
5828 * xtensa-linux-nat.c: Likewise.
5829
5830 2015-07-24 Pedro Alves <palves@redhat.com>
5831
5832 * ptrace.m4 (ptrace tests): Test in C++ mode. Try with 'enum
5833 __ptrace_request as first parameter type instead of int.
5834 (PTRACE_TYPE_ARG1): Define.
5835 * nat/gdb_ptrace.h [!PTRACE_TYPE_ARG5] (ptrace): Define as wrapper
5836 that casts first argument to PTRACE_TYPE_ARG1.
5837 * config.in: Regenerate.
5838 * configure: Regenerate.
5839
5840 2015-07-24 Pedro Alves <palves@redhat.com>
5841
5842 * gdb_ptrace.h: Move ...
5843 * nat/gdb_ptrace.h: ... here.
5844 * inf-ptrace.c: Adjust.
5845
5846 2015-07-24 Pedro Alves <palves@redhat.com>
5847
5848 * acinclude.m4: Include ptrace.m4.
5849 * configure.ac: Call GDB_AC_PTRACE and move ptrace checks ...
5850 * ptrace.m4: ... to this new file.
5851
5852 2015-07-23 Doug Evans <dje@google.com>
5853
5854 * dwarf2read.c (dwarf2_per_cu_data): Add comment.
5855 (load_cu): Handle dummy CUs.
5856 (dw2_do_instantiate_symtab, process_queuef): Ditto.
5857 (dwarf2_fetch_die_loc_sect_off, dwarf2_fetch_constant_bytes): Ditto.
5858
5859 2015-07-23 Ciro Santilli <ciro.santilli@gmail.com> (tiny patch)
5860
5861 * py-linetable.c (ltpy_get_all_source_lines): Adjust function
5862 documentation to say that it returns a list rather than
5863 a FrozenSet.
5864 (linetable_object_methods): Update the docstring of the
5865 "source_line" entry.
5866
5867 2015-07-23 Pierre-Marie de Rodat <derodat@adacore.com>
5868
5869 * gdbtypes.c (resolve_dynamic_array): Pass the peeled element
5870 type to the recursive call instead of the original (maybe
5871 TYPE_CODE_TYPEDEF) type.
5872
5873 2015-07-23 Yao Qi <yao.qi@linaro.org>
5874
5875 * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): If
5876 TYPE is watchpoint, return zero if aarch64_num_wp_regs is zero.
5877 If TYPE is breakpoint, return zero if arch64_num_bp_regs is zero.
5878
5879 2015-07-21 Yao Qi <yao.qi@linaro.org>
5880
5881 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
5882 Move it to nat/aarch64-linux-hw-point.c.
5883 (aarch64_linux_child_post_startup_inferior): Update.
5884 * nat/aarch64-linux-hw-point.c (aarch64_linux_get_debug_reg_capacity):
5885 New function.
5886 * nat/aarch64-linux-hw-point.h (aarch64_linux_get_debug_reg_capacity):
5887 Declare it.
5888
5889 2015-07-21 Markus Metzger <markus.t.metzger@intel.com>
5890
5891 * common/btrace-common.c (btrace_data_append): Change case label.
5892
5893 2015-07-20 Yao Qi <yao.qi@linaro.org>
5894
5895 * nat/aarch64-linux-hw-point.c (aarch64_handle_unaligned_watchpoint):
5896 Re-indent the code.
5897 * nat/aarch64-linux-hw-point.h: Use ULONGEST rather than
5898 "unsigned long long".
5899
5900 2015-07-18 Kevin Buettner <kevinb@redhat.com>
5901
5902 * dwarf2read.c (dwarf2_locate_sections): Allow has_section_at_zero
5903 to be set for SEC_ALLOC sections too.
5904
5905 2015-07-17 Yao Qi <yao.qi@linaro.org>
5906
5907 * Makefile.in (HFILES_NO_SRCDIR): Add
5908 nat/aarch64-linux-hw-point.h.
5909 (aarch64-linux-hw-point.o): New rule.
5910 * nat/aarch64-linux-hw-point.h: New file.
5911 * nat/aarch64-linux-hw-point.c: New file.
5912 * aarch64-linux-nat.c: Include nat/aarch64-linux-hw-point.h.
5913 (AARCH64_HBP_MAX_NUM): Move to nat/aarch64-linux-hw-point.h.
5914 (AARCH64_HWP_MAX_NUM, AARCH64_HBP_ALIGNMENT): Likewise.
5915 (AARCH64_HWP_ALIGNMENT): Likewise.
5916 (AARCH64_HWP_MAX_LEN_PER_REG): Likewise.
5917 (AARCH64_DEBUG_NUM_SLOTS, AARCH64_DEBUG_ARCH): Likewise.
5918 (AARCH64_DEBUG_ARCH_V8, DR_MARK_ALL_CHANGED): Likewise.
5919 (DR_MARK_N_CHANGED, DR_CLEAR_CHANGED): Likewise.
5920 (DR_HAS_CHANGED, DR_N_HAS_CHANGE): Likewise.
5921 (aarch64_num_bp_regs, aarch64_num_wp_regs): Likewise.
5922 (struct aarch64_debug_reg_state): Likewise.
5923 (struct arch_lwp_info): Likewise.
5924 (aarch64_linux_set_debug_regs): Likewise.
5925 (aarch64_notify_debug_reg_change): Remove static.
5926 (aarch64_align_watchpoint): Likewise.
5927 (DR_CONTROL_ENABLED, DR_CONTROL_LENGTH): Likewise.
5928 (aarch64_watchpoint_length): Likewise.
5929 (aarch64_point_encode_ctrl_reg): Likewise
5930 (aarch64_point_is_aligned): Likewise.
5931 (aarch64_dr_state_insert_one_point): Likewise.
5932 (aarch64_dr_state_remove_one_point): Likewise.
5933 (aarch64_handle_breakpoint): Likewise.
5934 (aarch64_handle_aligned_watchpoint): Likewise.
5935 (aarch64_handle_unaligned_watchpoint): Likewise.
5936 (aarch64_handle_watchpoint): Likewise.
5937 * config/aarch64/linux.mh (NAT_FILE): Add
5938 aarch64-linux-hw-point.o.
5939
5940 2015-07-17 Yao Qi <yao.qi@linaro.org>
5941
5942 * aarch64-linux-nat.c (aarch64_handle_breakpoint): Add argument
5943 state and don't call aarch64_get_debug_reg_state. All callers
5944 update.
5945 (aarch64_linux_insert_hw_breakpoint): Call
5946 aarch64_get_debug_reg_state earlier.
5947 (aarch64_linux_remove_hw_breakpoint): Likewise.
5948 (aarch64_handle_aligned_watchpoint): Add argument state and
5949 don't call aarch64_get_debug_reg_state. All callers update.
5950 (aarch64_handle_unaligned_watchpoint): Likewise.
5951 (aarch64_handle_watchpoint): Add argument state.
5952 (aarch64_linux_insert_watchpoint): Call aarch64_get_debug_reg_state
5953 earlier.
5954 (aarch64_linux_remove_watchpoint): Likewise.
5955
5956 2015-07-17 Yao Qi <yao.qi@linaro.org>
5957
5958 * aarch64-linux-nat.c (aarch64_show_debug_reg_state): Use
5959 debug_printf.
5960 (aarch64_handle_unaligned_watchpoint): Likewise.
5961
5962 2015-07-17 Yao Qi <yao.qi@linaro.org>
5963
5964 * aarch64-linux-nat.c (aarch64_dr_state_insert_one_point): Change
5965 argument type's type to 'enum target_hw_bp_type'.
5966 (aarch64_dr_state_remove_one_point): Likewise.
5967 (aarch64_handle_breakpoint): Likewise.
5968 (aarch64_linux_insert_hw_breakpoint): Likewise.
5969 (aarch64_linux_remove_hw_breakpoint): Likewise.
5970 (aarch64_handle_aligned_watchpoint): Likewise.
5971
5972 2015-07-17 Yao Qi <yao.qi@linaro.org>
5973
5974 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Call
5975 ptid_get_pid instead of get_thread_id.
5976
5977 2015-07-17 Yao Qi <yao.qi@linaro.org>
5978
5979 * remote.c (get_current_thread): Initialise ptid to null_ptid.
5980 (add_current_inferior_and_thread): Don't initialise ptid.
5981
5982 2015-07-16 Pierre Langlois <pierre.langlois@arm.com>
5983
5984 * aarch64-tdep.c (aarch64_pseudo_read_value): Mark S register as
5985 unavailable if invalid.
5986
5987 2015-07-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5988
5989 Revert the previous 6 commits:
5990 Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
5991 Move gdb_regex* to common/
5992 Prepare linux_find_memory_regions_full & co. for move
5993 Move linux_find_memory_regions_full & co.
5994 gdbserver build-id attribute generator
5995 Validate symbol file using build-id
5996
5997 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
5998 Jan Kratochvil <jan.kratochvil@redhat.com>
5999
6000 Validate symbol file using build-id.
6001 * NEWS (Changes since GDB 7.10): Add 'set validate-build-id'
6002 and 'show validate-build-id'. Add build-id attribute.
6003 * solib-darwin.c (_initialize_darwin_solib): Assign validate value.
6004 * solib-dsbt.c (_initialize_dsbt_solib): Ditto.
6005 * solib-frv.c (_initialize_frv_solib): Ditto.
6006 * solib-spu.c (set_spu_solib_ops): Ditto.
6007 * solib-svr4.c: Include rsp-low.h.
6008 (NOTE_GNU_BUILD_ID_NAME): New define.
6009 (svr4_validate): New function.
6010 (svr4_copy_library_list): Duplicate field build_id.
6011 (library_list_start_library): Parse 'build-id' attribute.
6012 (svr4_library_attributes): Add 'build-id' attribute.
6013 (_initialize_svr4_solib): Assign validate value.
6014 * solib-target.c (solib.h): Include.
6015 (_initialize_solib_target): Assign validate value.
6016 * solib.c (validate_build_id, show_validate_build_id): New.
6017 (solib_map_sections): Use ops->validate.
6018 (clear_so): Free build_id.
6019 (default_solib_validate): New function.
6020 (_initialize_solib): Add "validate-build-id".
6021 * solib.h (default_solib_validate): New declaration.
6022 * solist.h (struct so_list): New fields 'build_idsz' and 'build_id'.
6023 (target_so_ops): New field 'validate'.
6024
6025 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
6026 Jan Kratochvil <jan.kratochvil@redhat.com>
6027
6028 gdbserver build-id attribute generator.
6029 * features/library-list-svr4.dtd (library-list-svr4): New
6030 'build-id' attribute.
6031
6032 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
6033 Jan Kratochvil <jan.kratochvil@redhat.com>
6034
6035 Move linux_find_memory_regions_full & co.
6036 * linux-tdep.c (nat/linux-maps.h): Include.
6037 (gdb_regex.h): Remove the include.
6038 (enum filterflags, struct smaps_vmflags, read_mapping, decode_vmflags)
6039 (mapping_is_anonymous_p, dump_mapping_p): Moved to nat/linux-maps.c.
6040 (linux_find_memory_region_ftype): Moved typedef to nat/linux-maps.h.
6041 (linux_find_memory_regions_full): Moved definition to nat/linux-maps.c.
6042 * nat/linux-maps.c: Include ctype.h, target/target-utils.h, gdb_regex.h
6043 and target/target.h.
6044 (struct smaps_vmflags, read_mapping, decode_vmflags)
6045 (mapping_is_anonymous_p, dump_mapping_p): Move from linux-tdep.c.
6046 (linux_find_memory_regions_full): Move from linux-tdep.c.
6047 * nat/linux-maps.h (read_mapping): New declaration.
6048 (linux_find_memory_region_ftype, enum filterflags): Moved from
6049 linux-tdep.c.
6050 (linux_find_memory_regions_full): New declaration.
6051 * target.c (target/target-utils.h): Include.
6052 (read_alloc_pread_ftype): Moved typedef to target/target-utils.h.
6053 (read_alloc, read_stralloc_func_ftype, read_stralloc): Moved
6054 definitions to target/target-utils.c.
6055 * target.h (target_fileio_read_stralloc): Move it to target/target.h.
6056 * target/target-utils.c (read_alloc, read_stralloc): Move definitions
6057 from target.c.
6058 * target/target-utils.h (read_alloc_pread_ftype): New typedef.
6059 (read_alloc): New declaration.
6060 (read_stralloc_func_ftype): New typedef.
6061 (read_stralloc): New declaration.
6062 * target/target.h (target_fileio_read_stralloc): Move it from target.h.
6063
6064 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
6065 Jan Kratochvil <jan.kratochvil@redhat.com>
6066
6067 Prepare linux_find_memory_regions_full & co. for move.
6068 * linux-tdep.c (linux_find_memory_region_ftype): Comment.
6069 (linux_find_memory_regions_full): Change signature and prepare
6070 for moving to linux-maps.
6071 (linux_find_memory_regions_data): Rename field 'obfd' to 'data'.
6072 (linux_find_memory_regions_thunk): New.
6073 (linux_find_memory_regions_thunk): Use 'data' field instead of 'obfd'.
6074 (linux_find_memory_regions_gdb): New.
6075 (linux_find_memory_regions): Rename argument 'obfd' to 'func_data'.
6076 (linux_make_mappings_corefile_notes): Use
6077 linux_find_memory_regions_gdb.
6078 * target.c (read_alloc_pread_ftype): New typedef.
6079 (target_fileio_read_alloc_1_pread): New function.
6080 (read_alloc): Refactor from target_fileio_read_alloc_1.
6081 (read_stralloc_func_ftype): New typedef.
6082 (target_fileio_read_alloc_1): New implementation. Use read_alloc.
6083 (read_stralloc): Refactored from target_fileio_read_stralloc.
6084 (target_fileio_read_stralloc): New implementation, use read_stralloc.
6085
6086 2015-07-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6087
6088 * Makefile.in (HFILES_NO_SRCDIR): Change gdb_regex.h to
6089 common/gdb_regex.h.
6090 (COMMON_OBS): Add gdb_regex.o.
6091 (gdb_regex.o): New.
6092 * common/common.m4 (GDB_AC_COMMON): Add gdb_use_included_regex,
6093 --without-included-regex and USE_INCLUDED_REGEX.
6094 * common/gdb_regex.c: New file from utils.c functions.
6095 * common/gdb_regex.h: Move it here from gdb_regex.h, update include
6096 file wrapping define name.
6097 * configure: Rebuilt.
6098 * configure.ac (gdb_use_included_regex, --without-included-regex)
6099 (USE_INCLUDED_REGEX): Move them to common/common.m4.
6100 * gdb_regex.h: Move it to common/gdb_regex.h.
6101 * utils.c: Remove include gdb_regex.h.
6102 (do_regfree_cleanup, make_regfree_cleanup, get_regcomp_error)
6103 (compile_rx_or_error): Move them to common/gdb_regex.c.
6104
6105 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
6106 Jan Kratochvil <jan.kratochvil@redhat.com>
6107
6108 Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
6109 * Makefile.in (HFILES_NO_SRCDIR); Add nat/linux-maps.h,
6110 common/target-utils.h.
6111 (COMMON_OBS): Add target-utils.o.
6112 (linux-maps.o, target-utils.o): New.
6113 * target/target-utils.c: New file.
6114 * target/target-utils.h: New file.
6115 * config/i386/linux.mh (NATDEPFILES): Add linux-maps.o.
6116 * config/i386/linux64.mh (NATDEPFILES): Ditto.
6117 * nat/linux-maps.c: New file.
6118 * nat/linux-maps.h: New file.
6119
6120 2015-07-15 Markus Metzger <markus.t.metzger@intel.com>
6121 Pedro Alves <palves@redhat.com>
6122
6123 * nat/linux-btrace.c (perf_event_read): Change the type of DATA_HEAD.
6124 (perf_event_read_all): Change the type of SIZE and DATA_HEAD.
6125 (perf_event_read_bts): Change the type of SIZE and READ.
6126 (linux_enable_bts): Change the type of SIZE, PAGES, DATA_SIZE,
6127 and DATA_OFFSET. Move DATA_SIZE declaration. Restrict the buffer size
6128 to UINT_MAX. Check for overflows when using DATA_HEAD from the perf
6129 mmap page.
6130 (linux_enable_pt): Change the type of PAGES and SIZE. Restrict the
6131 buffer size to UINT_MAX.
6132 (linux_read_bts): Change the type of BUFFER_SIZE, SIZE, DATA_HEAD, and
6133 DATA_TAIL.
6134 * nat/linux-btrace.h (struct perf_event_buffer)<size, data_head>
6135 <last_head>: Change type.
6136 * common/btrace-common.h (struct btrace_dat_pt) <size>: Change type.
6137 * common/btrace-common.c (btrace_data_append): Change the type of
6138 SIZE.
6139 * btrace.c (parse_xml_raw): Change the type of SIZE. Change oddness
6140 check.
6141
6142 2015-07-14 Simon Marchi <simon.marchi@ericsson.com>
6143
6144 * gdbtypes.h (CHECK_TYPEDEF): Remove.
6145 * aarch64-tdep.c (aarch64_return_in_memory): Replace CHECK_TYPEDEF
6146 with check_typedef.
6147 * ada-lang.c (decode_constrained_packed_array_type): Likewise.
6148 (ada_array_length): Likewise.
6149 (find_parallel_type_by_descriptive_type): Likewise.
6150 (ada_check_typedef): Likewise.
6151 * arm-tdep.c (arm_return_in_memory): Likewise.
6152 * ax-gdb.c (gen_trace_static_fields): Likewise.
6153 (gen_struct_ref_recursive): Likewise.
6154 * c-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
6155 (variable: block COLONCOLON name): Likewise.
6156 (qualified_name: TYPENAME COLONCOLON name): Likewise.
6157 * c-lang.c (classify_type): Likewise.
6158 * c-typeprint.c (c_print_type): Likewise.
6159 (c_print_typedef): Likewise.
6160 (c_type_print_base): Likewise.
6161 * c-valprint.c (c_val_print): Likewise.
6162 * compile/compile-c-types.c (convert_type): Likewise.
6163 * compile/compile-object-load.c (get_out_value_type): Likewise.
6164 * completer.c (add_struct_fields): Likewise.
6165 (expression_completer): Likewise.
6166 * cp-namespace.c (cp_find_type_baseclass_by_name): Likewise.
6167 (cp_lookup_nested_symbol_1): Likewise.
6168 (cp_lookup_nested_symbol): Likewise.
6169 * cp-valprint.c (cp_print_value_fields): Likewise.
6170 (cp_print_static_field): Likewise.
6171 * d-valprint.c (d_val_print): Likewise.
6172 * eval.c (evaluate_subexp_standard): Likewise.
6173 (evaluate_subexp_for_sizeof): Likewise.
6174 * f-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
6175 * f-typeprint.c (f_type_print_base): Likewise.
6176 * f-valprint.c (f_val_print): Likewise.
6177 * gdbtypes.c (get_discrete_bounds): Likewise.
6178 (create_array_type_with_stride): Likewise.
6179 (type_name_no_tag_or_error): Likewise.
6180 (lookup_struct_elt_type): Likewise.
6181 (get_unsigned_type_max): Likewise.
6182 (internal_type_vptr_fieldno): Likewise.
6183 (set_type_vptr_fieldno): Likewise.
6184 (internal_type_vptr_basetype): Likewise.
6185 (set_type_vptr_basetype): Likewise.
6186 (get_vptr_fieldno): Likewise.
6187 (is_integral_type): Likewise.
6188 (is_scalar_type): Likewise.
6189 (is_scalar_type_recursive): Likewise.
6190 (distance_to_ancestor): Likewise.
6191 (is_unique_ancestor_worker): Likewise.
6192 (check_types_equal): Likewise.
6193 * gnu-v2-abi.c (gnuv2_value_rtti_type): Likewise.
6194
6195 2015-07-14 Iain Buclaw <ibuclaw@gdcproject.org>
6196
6197 * dwarf2read.c (find_slot_in_mapped_hash): Extend language support to
6198 also test for language_d.
6199 (dwarf2_compute_name): Likewise.
6200 (read_func_scope): Likewise.
6201 (read_structure_type): Likewise.
6202 (new_symbol_full): Likewise.
6203 (determine_prefix): Likewise.
6204 (read_import_statement): Use dot as the separator for language_d.
6205 (typename_concat): Likewise, but don't prefix the D main function.
6206
6207 2015-07-14 Peter Bergner <bergner@vnet.ibm.com>
6208
6209 * nat/linux-namespaces.c (setns): Rename from this ...
6210 (do_setns): ... to this. Support calling setns if it exists.
6211 (mnsh_handle_setns): Call do_setns.
6212
6213 2015-07-13 Yao Qi <yao.qi@linaro.org>
6214
6215 * exec.c (exec_file_attach): Add period at the end of error
6216 message.
6217
6218 2015-07-13 Andrew Burgess <andrew.burgess@embecosm.com>
6219
6220 * tui/tui-win.c (window_name_completer): New function.
6221 (focus_completer): Call window_name_completer. All old content
6222 moved into window_name_completer.
6223 (winheight_completer): New function.
6224 (_initialize_tui_win): Rename variable. Add completer to
6225 winheight command. Update doc string on winheight.
6226
6227 2015-07-12 Sandra Loosemore <sandra@codesourcery.com>
6228
6229 * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Register
6230 all nios2 mach variants.
6231
6232 2015-07-10 Kevin Buettner <kevinb@redhat.com>
6233
6234 * rx-tdep.c (rx_get_opcode_byte): Use target_read_code instead
6235 of target_read_memory.
6236
6237 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
6238
6239 * tui/tui-win.c (tui_set_win_height): Use a cleanup to free the
6240 string copy.
6241 (parse_scrolling_args): Likewise.
6242
6243 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
6244
6245 * tui/tui-win.c (focus_completer): Don't duplicate the tui window
6246 names in this function.
6247
6248 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
6249
6250 * tui/tui-data.h (SRC_NAME): Convert to lower case.
6251 (CMD_NAME): Likewise.
6252 (DATA_NAME): Likewise.
6253 (DISASSEM_NAME): Likewise.
6254 * tui/tui-win.c (tui_set_focus): Window names are now lower case.
6255 (tui_set_win_height): Likewise.
6256 (parse_scrolling_args): Likewise.
6257
6258 2015-07-10 Markus Metzger <markus.t.metzger@intel.com>
6259
6260 * record-btrace.c (record_btrace_goto_begin)
6261 (record_btrace_goto_end, record_btrace_goto): Move call to
6262 print_stack_frame ...
6263 (record_btrace_set_replay): ... here. Set stop_pc.
6264 * record-full.c (record_full_goto_entry): Set stop_pc.
6265
6266 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6267
6268 * NEWS: Mention support for tracepoints on aarch64-linux.
6269
6270 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6271
6272 * linux-aarch64-low.c (aarch64_supports_tracepoints): New
6273 function. Return 1.
6274 (the_low_target): Install it.
6275
6276 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6277
6278 * gdb.trace/backtrace.exp: Set registers for aarch64 target.
6279 * gdb.trace/collection.exp: Likewise.
6280 * gdb.trace/mi-trace-frame-collected.exp: Likewise.
6281 * gdb.trace/mi-trace-unavailable.exp: Likewise.
6282 * gdb.trace/report.exp: Likewise.
6283 * gdb.trace/trace-break.exp: Likewise.
6284 * gdb.trace/unavailable.exp: Likewise.
6285 * gdb.trace/while-dyn.exp: Likewise.
6286
6287 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6288
6289 * aarch64-tdep.c: Add ax.h and ax-gdb.h includes.
6290 (aarch64_gen_return_address): New function.
6291 (aarch64_gdbarch_init): Hook it.
6292
6293 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6294
6295 * aarch64-tdep.c (aarch64_make_stub_cache): Set available_p and
6296 swallow NOT_AVAILABLE_ERROR.
6297 (aarch64_stub_this_id): Call frame_id_build_unavailable_stack if
6298 available_p is not set.
6299 (aarch64_stub_frame_unwind_stop_reason): New function.
6300 (aarch64_stub_unwind): Install it.
6301
6302 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6303
6304 * aarch64-tdep.c (aarch64_prologue_cache) <available_p>: New
6305 field.
6306 (aarch64_make_prologue_cache_1): New function, factored out from
6307 aarch64_make_prologue_cache. Do not allocate cache. Set
6308 available_p.
6309 (aarch64_make_prologue_cache): Reimplement wrapping
6310 aarch64_make_prologue_cache_1, and swallowing
6311 NOT_AVAILABLE_ERROR.
6312 (aarch64_prologue_frame_unwind_stop_reason): New function.
6313 Return UNWIND_UNAVAILABLE if available_p is not set.
6314 (aarch64_prologue_unwind): Install it.
6315 (aarch64_prologue_this_id): Move prev_pc and prev_sp limit
6316 checks into aarch64_prologue_frame_unwind_stop_reason. Call
6317 frame_id_build_unavailable_stack if available_p is not set.
6318
6319 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6320
6321 * aarch64-tdep.c (aarch64_prologue_cache) <func, prev_pc>: New
6322 fields.
6323 (aarch64_scan_prologue): Set prev_pc.
6324 (aarch64_make_prologue_cache): Set func.
6325 (aarch64_make_stub_cache): Set prev_pc.
6326 (aarch64_prologue_this_id): Remove local variables id, pc and
6327 func. Read prev_pc and func from cache.
6328 (aarch64_stub_this_id): Read prev_pc from cache.
6329
6330 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6331
6332 * aarch64-tdep.c (aarch64_make_stub_cache): Update comment. New
6333 argument this_cache. Remove unused local variables reg and
6334 unwound_fp. Return early if this_cache is already set. Set
6335 this_cache.
6336 (aarch64_stub_this_id): Update call to aarch64_make_stub_cache.
6337
6338 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6339
6340 * aarch64-tdep.c (aarch64_make_prologue_cache): Update comment.
6341 New argument this_cache. Return early if this_cache is already
6342 set. Set this_cache.
6343 (aarch64_prologue_this_id): Update call to
6344 aarch64_make_prologue_cache.
6345 (aarch64_prologue_prev_register): Likewise.
6346 (aarch64_normal_frame_base): Likewise.
6347
6348 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6349
6350 * c-valprint.c (c_val_print): Factor out memberptr printing code
6351 from c_val_print to ...
6352 (c_val_print_memberptr): ... this new function.
6353
6354 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6355
6356 * c-valprint.c (c_val_print): Factor out int printing code to ...
6357 (c_val_print_int): ... this new function.
6358
6359 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6360
6361 * c-valprint.c (c_val_print): Factor out struct and union
6362 printing code to ...
6363 (c_val_print_struct): ... this new function ...
6364 (c_val_print_union): ... and this new function.
6365
6366 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6367
6368 * c-valprint.c (c_val_print): Factor out pointer printing code
6369 to ...
6370 (c_val_print_ptr): ... this new function.
6371
6372 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6373
6374 * c-valprint.c (c_valprint): Factor our array printing code from
6375 c_val_print to ...
6376 (c_val_print_array): ... this new function.
6377
6378 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6379
6380 * c-valprint.c (c_val_print): Factor out pointer printing code
6381 to ...
6382 (print_unpacked_pointer): ... this new function.
6383
6384 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6385
6386 * c-valprint.c (c_val_print): Remove an assignment to i and move
6387 its declaration.
6388
6389 2015-07-09 Yao Qi <yao.qi@linaro.org>
6390
6391 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Add
6392 argument ptid. Update comments. Caller update.
6393
6394 2015-07-09 Markus Metzger <markus.t.metzger@intel.com>
6395
6396 * btrace.c (pt_print_packet): Print stop, vmcs, tma, mtc, cyc, and
6397 mnt packets.
6398
6399 2015-07-09 Markus Metzger <markus.t.metzger@intel.com>
6400
6401 * btrace.c (btrace_pt_readmem_callback): Change type of PC argument.
6402
6403 2015-07-08 Simon Marchi <simon.marchi@ericsson.com>
6404
6405 * progspace.c (delete_program_space): Add missing spaces.
6406
6407 2015-07-08 Simon Marchi <simon.marchi@ericsson.com>
6408
6409 * inferior.c (delete_inferior_1): Rename to ...
6410 (delete_inferior): ..., remove 'silent' parameter, delete
6411 program space when unused and remove call to prune_program_spaces.
6412 Remove the old, unused, delete_inferior.
6413 (delete_inferior_silent): Remove.
6414 (prune_inferiors): Change call from delete_inferior_1 to
6415 delete_inferior and remove 'silent' parameter. Remove call to
6416 prune_program_spaces.
6417 (remove_inferior_command): Idem.
6418 * inferior.h (delete_inferior_1): Rename to...
6419 (delete_inferior): ..., remove 'silent' parameter and remove the
6420 original delete_inferior.
6421 (delete_inferior_silent): Remove.
6422 * mi/mi-main.c (mi_cmd_remove_inferior): Change call from
6423 delete_inferior_1 to delete_inferior and remove 'silent'
6424 parameter.
6425 * progspace.c (prune_program_spaces): Remove.
6426 (pspace_empty_p): Rename to...
6427 (program_space_empty_p): ... and make non-static.
6428 (delete_program_space): New.
6429 * progspace.h (prune_program_spaces): Remove declaration.
6430 (program_space_empty_p): New declaration.
6431 (delete_program_space): New declaration.
6432 * monitor.c (monitor_close): Replace call to
6433 delete_thread_silent and delete_inferior_silent with
6434 discard_all_inferiors.
6435
6436 2015-07-08 Patrick Palka <patrick@parcs.ath.cx>
6437
6438 * defs.h (deprecated_register_changed_hook): Remove prototype.
6439 * interps.c (clear_iterpreter_hooks): Remove reference to
6440 deprecated_register_changed_hook.
6441 * top.c (deprecated_register_changed_hook): Remove prototype.
6442 * valops.c (value_assign): Remove reference to
6443 deprecated_register_changed_hook.
6444 * tui/tui-hooks.c (tui_register_changed): Add parameter "frame".
6445 Add comment documenting the function.
6446 (tui_register_changed_observer): Define.
6447 (tui_install_hooks): Remove reference to
6448 deprecated_register_changed_hook. Set
6449 tui_register_changed_observer.
6450 (tui_remove_hooks): Remove reference to
6451 deprecated_register_changed_hook. Unset
6452 tui_register_changed_observer.
6453
6454 2015-07-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6455
6456 PR compile/18484
6457 * compile/compile-c-types.c (insert_type): Change gdb_assert to error.
6458
6459 2015-07-08 Robert O'Callahan <robert@ocallahan.org>
6460
6461 PR exp/18617
6462 * ax-gdb.c (gen_conversion): Extend to 'to' bits, not 'from'.
6463
6464 2015-07-08 Markus Metzger <markus.t.metzger@intel.com>
6465
6466 * MAINTAINERS (Write After Approval): Add Markus T. Metzger.
6467
6468 2015-07-08 Markus Metzger <markus.t.metzger@intel.com>
6469
6470 * nat/linux-btrace.c (kernel_supports_bts, kernel_supports_pt):
6471 Use safe_strerror() instead of strerror().
6472
6473 2015-07-07 Yao Qi <yao.qi@linaro.org>
6474
6475 * features/arm-with-m-fpa-layout.xml: Set architecture to arm.
6476 * features/arm-with-m-fpa-layout.c: Regenerated.
6477 * features/arm-with-m-vfp-d16.xml: Likewise.
6478 * features/arm-with-m-vfp-d16.c: Regenerated.
6479 * features/arm-with-m.xml: Likewise.
6480 * features/arm-with-m.c: Regenerated.
6481 * features/arm-with-neon.xml: Likewise.
6482 * features/arm-with-neon.c: Regenerated.
6483 * features/arm-with-vfpv2.xml: Likewise.
6484 * features/arm-with-vfpv2.c: Regenerated.
6485 * features/arm-with-vfpv3.xml: Likewise.
6486 * features/arm-with-vfpv3.c: Regenerated.
6487
6488 2015-07-07 Yao Qi <yao.qi@linaro.org>
6489
6490 * aarch32-linux-nat.h (VFP_REGS_SIZE): New macro, moved from
6491 arm-linux-nat.c.
6492 * aarch64-linux-nat.c: Include aarch32-linux-nat.h and
6493 elf/external.h.
6494 (fetch_gregs_from_thread): Call aarch32_gp_regcache_supply
6495 if target is 32-bit.
6496 (store_gregs_to_thread): Call aarch32_gp_regcache_collect
6497 if target is 32-bit.
6498 (fetch_fpregs_from_thread): Call aarch32_vfp_regcache_supply
6499 if target is 32-bit.
6500 (store_fpregs_to_thread): Call aarch32_vfp_regcache_collect
6501 if target is 32-bit.
6502 (tdesc_arm_with_vfpv3, tdesc_arm_with_neon): Declare.
6503 (aarch64_linux_read_description): Return the right target
6504 description.
6505 * arm-linux-nat.c (VFP_REGS_SIZE): Moved to aarch32-linux-nat.h.
6506 * config/aarch64/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
6507 * configure.tgt (aarch64*-*-linux*): Add arm-tdep.o and
6508 arm-linux-tdep.o.
6509
6510 2015-07-07 Yao Qi <yao.qi@linaro.org>
6511
6512 * aarch32-linux-nat.c: New file.
6513 * aarch32-linux-nat.h: New file.
6514 * arm-linux-nat.c: Include aarch32-linux-nat.h.
6515 (fetch_regs): Move code to aarch32-linux-nat.c. Call
6516 aarch32_gp_regcache_supply.
6517 (store_regs): Move code to aarch32-linux-nat.c. Call
6518 aarch32_gp_regcache_collect.
6519 (fetch_vfp_regs): Move code to aarch32-linux-nat.c. Call
6520 aarch32_vfp_regcache_supply.
6521 (store_vfp_regs): Move code to aarch32-linux-nat.c. Call
6522 aarch32_vfp_regcache_collect.
6523 * config/arm/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
6524
6525 2015-07-07 Yao Qi <yao.qi@linaro.org>
6526
6527 * arm-linux-nat.c (store_fpregister): Remove.
6528 (store_register): Likewise.
6529 (fetch_fpregister): Likewise.
6530 (fetch_register): Likewise.
6531 (arm_linux_store_inferior_registers): Call store_regs and
6532 store_fpregs instead.
6533 (arm_linux_fetch_inferior_registers): Call fetch_fpregs and
6534 fetch_regs instead.
6535
6536 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6537
6538 * doc/gdb.texinfo (TUI): Restructure documentation on TUI layout
6539 and focus commands.
6540
6541 2015-07-06 Joel Brobecker <brobecker@adacore.com>
6542
6543 * NEWS: Create a new section for the next release branch.
6544 Rename the section of the current branch, now that it has
6545 been cut.
6546
6547 2015-07-06 Joel Brobecker <brobecker@adacore.com>
6548
6549 GDB 7.10 branch created (66c4b3e8a628a207bc6aafef6af0c4128195f56e):
6550 * version.in: Bump version to 7.10.50.DATE-cvs.
6551
6552 2015-07-06 Luis Machado <lgustavo@codesourcery.com>
6553
6554 * breakpoint.c (remove_breakpoint_1): Don't handle permanent
6555 breakpoints in a special way.
6556 (remove_breakpoint): Likewise.
6557 (mark_breakpoints_out): Likewise.
6558
6559 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6560
6561 * doc/gdb.texinfo (TUI): Add comma after @xref.
6562
6563 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6564
6565 * tui/tui-win.c (tui_set_focus): Use structure member 'generic'
6566 instead of casting the structure type.
6567
6568 2015-07-06 Simon Marchi <simon.marchi@ericsson.com>
6569
6570 * valops.c (search_struct_field): Remove OFFSET parameter.
6571 (value_cast_structs): Adjust calls to search_struct_field.
6572 (value_struct_elt): Same.
6573 (find_overload_match): Same.
6574
6575 2015-07-06 Simon Marchi <simon.marchi@ericsson.com>
6576
6577 * value.c (value_fetch_lazy): Update comment, change return
6578 value to void.
6579 * value.h (value_fetch_lazy): Change return value to void.
6580
6581 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6582
6583 * tui/tui-data.c (tui_partial_win_by_name): Window name is const.
6584 (tui_win_name): Make parameter and result const.
6585 * tui/tui-data.h (tui_win_name): Make parameter and result const.
6586
6587 2015-07-06 Patrick Palka <patrick@parcs.ath.cx>
6588
6589 * i386-tdep.c (i386_mpx_info_bounds): Don't call error, instead
6590 use printf_unfiltered.
6591 (set_mpx_cmd): Add missing trailing space to command string
6592 literal.
6593 (_initialize_i386_tdep): Give the "mpx" prefix command its
6594 correct name.
6595
6596 2015-07-02 Kevin Buettner <kevinb@redhat.com>
6597
6598 * rx-tdep.c (RX_USP_REGNUM, RX_BPC_REGNUM): New constants.
6599 (enum rx_frame_type): New.
6600 (struct rx_prologue): Add new field `frame_type'.
6601 (rx_analyze_prologue): Add `frame_type' parameter. Cache this
6602 parameter in the prologue struct. Add code for recording
6603 locations of PC and PSW for fast interrupt and exception frames.
6604 (rx_skip_prologue): Adjust call to rx_analyze_prologue.
6605 (rx_analyze_frame_prologue): Add `frame_type' parameter.
6606 (rx_frame_type): New function.
6607 (rx_frame_base): Fetch frame type and pass it to rx_analyze_prologue.
6608 (rx_frame_this_id): Rename parameter `this_prologue_cache' to
6609 `this_cache'.
6610 (rx_frame_prev_register): Rename parameter `this_prologue_cache' to
6611 `this_cache'. Add cases for RX_FRAME_TYPE_EXCEPTION and
6612 RX_FRAME_TYPE_FAST_INTERRUPT.
6613 (normal_frame_p, exception_frame_p, rx_frame_sniffer_common)
6614 (rx_frame_sniffer, rx_exception_sniffer): New functions.
6615 (rx_frame_unwind): Use rx_frame_sniffer instead of
6616 default_frame_sniffer.
6617 (rx_frame_unwind): New unwinder.
6618 (rx_gdbarch_init): Register new unwinder.
6619
6620 2015-07-02 Kevin Buettner <kevinb@redhat.com>
6621
6622 * rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
6623 (struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
6624 (rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
6625 and RX_FPSW_REGNUM.
6626 (rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
6627
6628 2015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6629
6630 Fix GCC false warning.
6631 * s390-linux-tdep.c (s390_handle_arg): Initialize VAL.
6632
6633 2015-07-02 Yao Qi <yao.qi@linaro.org>
6634
6635 * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix
6636 typo in the debugging message.
6637
6638 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6639
6640 * btrace.c: Include gdbcmd.h, cli/cli-utils.h, and ctype.h.
6641 (maint_btrace_cmdlist, maint_btrace_set_cmdlist)
6642 (maint_btrace_show_cmdlist, maint_btrace_pt_set_cmdlist)
6643 (maint_btrace_pt_show_cmdlist, maint_btrace_pt_skip_pad)
6644 (btrace_maint_clear): New.
6645 (btrace_fetch, btrace_clear): Call btrace_maint_clear.
6646 (pt_print_packet, btrace_maint_decode_pt)
6647 (btrace_maint_update_pt_packets, btrace_maint_update_packets)
6648 (btrace_maint_print_packets, get_uint, get_context_size, no_chunk)
6649 (maint_btrace_packet_history_cmd)
6650 (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
6651 (maint_btrace_cmd, maint_btrace_set_cmd, maint_btrace_show_cmd)
6652 (maint_btrace_pt_set_cmd, maint_btrace_pt_show_cmd)
6653 (maint_info_btrace_cmd, _initialize_btrace): New.
6654 * btrace.h (btrace_pt_packet, btrace_pt_packet_s)
6655 (btrace_maint_packet_history, btrace_maint_info): New.
6656 (btrace_thread_info) <maint>: New.
6657 * NEWS: Announce it.
6658
6659 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6660
6661 * btrace.c (btrace_fetch): Append the new trace data.
6662 (btrace_clear): Clear the stored trace data.
6663 * btrace.h (btrace_thread_info) <data>: New.
6664 * common/btrace-common.h (btrace_data_clear)
6665 (btrace_data_append): New.
6666 * common/btrace-common.c (btrace_data_clear)
6667 (btrace_data_append): New.
6668
6669 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6670
6671 * nat/linux-btrace.c (linux_enable_bts): Check for
6672 PERF_ATTR_SIZE_VER5.
6673 Check for data_offset and data_size fields. Use them.
6674
6675 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6676
6677 * NEWS: Announce new commands "record btrace pt" and "record pt".
6678 Announce new options "set|show record btrace pt buffer-size".
6679 * btrace.c: Include "rsp-low.h".
6680 Include "inttypes.h".
6681 (btrace_add_pc): Add forward declaration.
6682 (pt_reclassify_insn, ftrace_add_pt, btrace_pt_readmem_callback)
6683 (pt_translate_cpu_vendor, btrace_finalize_ftrace_pt)
6684 (btrace_compute_ftrace_pt): New.
6685 (btrace_compute_ftrace): Support BTRACE_FORMAT_PT.
6686 (check_xml_btrace_version): Update version check.
6687 (parse_xml_raw, parse_xml_btrace_pt_config_cpu)
6688 (parse_xml_btrace_pt_raw, parse_xml_btrace_pt)
6689 (btrace_pt_config_cpu_attributes, btrace_pt_config_children)
6690 (btrace_pt_children): New.
6691 (btrace_children): Add support for "pt".
6692 (parse_xml_btrace_conf_pt, btrace_conf_pt_attributes): New.
6693 (btrace_conf_children): Add support for "pt".
6694 * btrace.h: Include "intel-pt.h".
6695 (btrace_pt_error): New.
6696 * common/btrace-common.c (btrace_format_string, btrace_data_fini)
6697 (btrace_data_empty): Support BTRACE_FORMAT_PT.
6698 * common/btrace-common.h (btrace_format): Add BTRACE_FORMAT_PT.
6699 (struct btrace_config_pt): New.
6700 (struct btrace_config)<pt>: New.
6701 (struct btrace_data_pt_config, struct btrace_data_pt): New.
6702 (struct btrace_data)<pt>: New.
6703 * features/btrace-conf.dtd (btrace-conf)<pt>: New.
6704 (pt): New.
6705 * features/btrace.dtd (btrace)<pt>: New.
6706 (pt, pt-config, cpu): New.
6707 * nat/linux-btrace.c (perf_event_read, perf_event_read_all)
6708 (perf_event_pt_event_type, kernel_supports_pt)
6709 (linux_supports_pt): New.
6710 (linux_supports_btrace): Support BTRACE_FORMAT_PT.
6711 (linux_enable_bts): Free tinfo on error.
6712 (linux_enable_pt): New.
6713 (linux_enable_btrace): Support BTRACE_FORMAT_PT.
6714 (linux_disable_pt): New.
6715 (linux_disable_btrace): Support BTRACE_FORMAT_PT.
6716 (linux_fill_btrace_pt_config, linux_read_pt): New.
6717 (linux_read_btrace): Support BTRACE_FORMAT_PT.
6718 * nat/linux-btrace.h (struct btrace_tinfo_pt): New.
6719 (struct btrace_target_info)<pt>: New.
6720 * record-btrace.c (set_record_btrace_pt_cmdlist)
6721 (show_record_btrace_pt_cmdlist): New.
6722 (record_btrace_print_pt_conf): New.
6723 (record_btrace_print_conf): Support BTRACE_FORMAT_PT.
6724 (btrace_ui_out_decode_error): Support BTRACE_FORMAT_PT.
6725 (cmd_record_btrace_pt_start): New.
6726 (cmd_record_btrace_start): Support BTRACE_FORMAT_PT.
6727 (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): New.
6728 (_initialize_record_btrace): Add new commands.
6729 * remote.c (PACKET_Qbtrace_pt, PACKET_Qbtrace_conf_pt_size): New.
6730 (remote_protocol_features): Add "Qbtrace:pt".
6731 Add "Qbtrace-conf:pt:size".
6732 (remote_supports_btrace): Support BTRACE_FORMAT_PT.
6733 (btrace_sync_conf): Support PACKET_Qbtrace_conf_pt_size.
6734 (remote_enable_btrace): Support BTRACE_FORMAT_PT.
6735 (_initialize_remote): Add new commands.
6736
6737 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6738
6739 * configure.ac: check for libipt
6740 * configure: Regenerate.
6741 * config.in: Regenerate.
6742 * Makefile.in (LIBIPT): New.
6743 (CLIBS): Add $LIBIPT.
6744 * NEWS: document new configure options
6745
6746 2015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6747
6748 * compile/compile-object-load.c (compile_object_load): Replace debug
6749 message "lookup undefined ELF symbol" by 3 more specific messages.
6750
6751 2015-07-01 Kevin Buettner <kevinb@redhat.com>
6752
6753 * rl78-tdep.c (struct gdbarch_tdep): Add new field, rl78_psw_type.
6754 (rl78_register_type): Add case for RL78_PSW_REGNUM.
6755 (rl78_gdbarch_init): Initialize rl78_psw_type.
6756
6757 2015-07-01 Patrick Palka <patrick@parcs.ath.cx>
6758
6759 * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
6760 Update commentary. Always refresh the registers when frame
6761 information has changed.
6762 * tui/tui-stack.c (tui_show_frame_info): Update commentary.
6763 Change return type to int. Return 1 if frame information has
6764 changed, 0 otherwise.
6765 (tui_before_prompt): Update commentary.
6766 * tui/tui-stack.h (tui_show_frame_info): Change return type to
6767 int.
6768
6769 2015-06-30 Patrick Palka <patrick@parcs.ath.cx>
6770
6771 PR tui/13378
6772 * frame.c (select_frame): Remove reference to
6773 deprecated_selected_frame_level_changed_hook.
6774 * frame.h (deprecated_selected_frame_level_changed_hook): Remove
6775 declaration.
6776 * stack.c (deprecated_selected_frame_level_changed_hook):
6777 Likewise.
6778 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook):
6779 Rename to ...
6780 (tui_refresh_frame_and_register_information): ... this. Bail
6781 out if there is no stack. Don't update register information
6782 unless registers_too_p is true.
6783 (tui_print_frame_info_listing_hook): Rename to ...
6784 (tui_dummy_print_frame_info_listing_hook): ... this.
6785 (tui_before_prompt): New function.
6786 (tui_normal_stop): New function.
6787 (tui_before_prompt_observer): New observer.
6788 (tui_normal_stop_observer): New observer.
6789 (tui_install_hooks): Set
6790 deprecated_print_frame_info_listing_hook to
6791 tui_dummy_print_frame_info_listing_hook. Register
6792 tui_before_prompt_observer to call tui_before_prompt and
6793 tui_normal_stop_observer to call tui_normal_stop. Remove
6794 reference to deprecated_selected_frame_level_changed_hook.
6795 (tui_remove_hooks): Detach and unset tui_before_prompt_observer
6796 and tui_normal_stop_observer. Remove reference to
6797 deprecated_selected_frame_level_changed_hook.
6798
6799 2015-06-30 Patrick Palka <patrick@parcs.ath.cx>
6800
6801 PR tui/13378
6802 * tui/tui-stack.c (tui_set_locator_info): Change prototype to
6803 return an int instead of void. Return whether the locator
6804 window has changed.
6805 (tui_show_frame_info): If the locator info has not changed, then
6806 bail out early to avoid refreshing the windows.
6807
6808 2015-06-30 Patrick Palka <patrick@parcs.ath.cx>
6809
6810 * tui/tui-stack.c (tui_set_locator_info): Explicitly pass
6811 LOCATOR_WIN to tui_alloc_content.
6812
6813 2015-06-30 Yao Qi <yao.qi@linaro.org>
6814
6815 PR tdep/18605
6816 * arm-tdep.c (arm_get_next_pc_raw): Break for media
6817 instructions.
6818
6819 2015-06-29 Kevin Buettner <kevinb@redhat.com>
6820
6821 * rx-tdep.c (RX_PSW_REGNUM): New enum constant.
6822 (rx_dwarf_reg_to_regnum): New function.
6823 (rx_gdbarch_init): Register rx_dwarf_reg_to_regnum. Use dwarf2
6824 unwinding.
6825
6826 2015-06-29 Pedro Alves <palves@redhat.com>
6827
6828 PR threads/18127
6829 * infcall.c (run_inferior_call): On infcall success, if the thread
6830 was marked stopped before, reset it back to stopped.
6831 * infrun.c (resume): Don't suppress the set_running calls when
6832 doing an infcall.
6833 (normal_stop): Only discard the finish_thread_state cleanup if the
6834 infcall succeeded.
6835
6836 2015-06-29 Pierre Langlois <pierre.langlois@arm.com>
6837
6838 * MAINTAINERS (Write After Approval): Update my email address.
6839
6840 2015-06-26 Keith Seitz <keiths@redhat.com>
6841 Doug Evans <dje@google.com>
6842
6843 PR 16253
6844 * block.c (block_lookup_symbol): For non-function blocks,
6845 continue to search for a symbol with an exact domain match
6846 Otherwise, return any previously found "best domain" symbol.
6847 (block_lookup_symbol_primary): Likewise.
6848
6849 2015-06-26 Patrick Palka <patrick@parcs.ath.cx>
6850
6851 * NEWS: Mention the new option "history remove-duplicates".
6852 * top.c (history_remove_duplicates): New static variable.
6853 (show_history_remove_duplicates): New static function.
6854 (gdb_add_history): Conditionally remove duplicate history
6855 entries.
6856 (init_main): Add "history remove-duplicates" option.
6857
6858 2015-06-26 Patrick Palka <patrick@parcs.ath.cx>
6859
6860 * tui/tui-win.c (focus_completer): New static function.
6861 (_initialize_tui_win): Set the completion function of the
6862 "focus" command to focus_completer.
6863
6864 2015-06-26 Jan Kratochvil <jan.kratochvil@redhat.com>
6865
6866 * linespec.c (minsym_found): Reset sal.PC for COMPUNIT_LOCATIONS_VALID
6867 and language_asm..
6868 * symtab.c (find_function_start_sal): Likewise.
6869
6870 2015-06-25 Gary Benson <gbenson@redhat.com>
6871
6872 * solib.c (solib_find_1): Set local variable sysroot to NULL if
6873 it is the empty string after trailing slashes have been stripped.
6874
6875 2015-06-25 Gary Benson <gbenson@redhat.com>
6876
6877 * exec.c (exec_file_locate_attach): Remove gdb_sysroot NULL check.
6878 * infrun.c (follow_exec): Likewise.
6879 * remote.c (remote_filesystem_is_local): Likewise.
6880 * solib.c (solib_find_1): Likewise.
6881
6882 2015-06-24 Keith Seitz <keiths@redhat.com>
6883
6884 * build-id.c (build_id_to_debug_bfd): Add cleanup to free
6885 return value from lrealpath.
6886
6887 2015-06-24 Mike Frysinger <vapier@gentoo.org>
6888
6889 * remote-sim.c (gdbsim_open): Move sysroot update to the top.
6890
6891 2015-06-24 Mike Frysinger <vapier@gentoo.org>
6892
6893 * remote-sim.c: Include gdb_bfd.h.
6894 (gdbsim_open): Declare new local sysroot pointing to gdb_sysroot.
6895 Skip TARGET_SYSROOT_PREFIX in gdb_sysroot when it is active.
6896
6897 2015-06-24 Yao Qi <yao.qi@linaro.org>
6898
6899 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't call
6900 set_gdbarch_get_siginfo_type.
6901 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
6902 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
6903 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
6904 * m68klinux-tdep.c (m68k_linux_init_abi): Likewise.
6905 * ppc-linux-tdep.c (ppc_linux_init_abi): Likewise.
6906 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
6907 * tilegx-linux-tdep.c (tilegx_linux_init_abi): Likewise.
6908 * linux-tdep.c (linux_get_siginfo_type): Change it to static.
6909 (linux_init_abi): Call set_gdbarch_get_siginfo_type.
6910 * linux-tdep.h (linux_get_siginfo_type): Remove the declaration.
6911
6912 2015-06-24 Gary Benson <gbenson@redhat.com>
6913
6914 * common/buffer.c (stdint.h): Do not include.
6915 * common/print-utils.c (stdint.h): Likewise.
6916 * compile/compile-c-symbols.c (gdb_assert.h): Likewise.
6917 * compile/compile-c-types.c (gdb_assert.h): Likewise.
6918 * ft32-tdep.c (gdb_assert.h): Likewise.
6919 * guile/scm-utils.c (stdint.h): Likewise.
6920 * i386-linux-tdep.c (stdint.h): Likewise.
6921 * i386-tdep.c (stdint.h): Likewise.
6922 * nat/linux-btrace.c (stdint.h): Likewise.
6923 * nat/linux-btrace.h (stdint.h): Likewise.
6924 * nat/linux-ptrace.c (stdint.h): Likewise.
6925 * nat/mips-linux-watch.h (stdint.h): Likewise.
6926 * ppc-linux-nat.c (stdint.h): Likewise.
6927 * python/python-internal.h (stdint.h): Likewise.
6928 * stub-termcap.c (stdlib.h): Likewise.
6929 * target/target.h (stdint.h): Likewise.
6930 * xtensa-linux-nat.c (stdint.h): Likewise.
6931
6932 2015-06-23 Patrick Palka <patrick@parcs.ath.cx>
6933
6934 * top.c (init_history): Look at errno after calling strtol to
6935 properly map large GDBHISTSIZE values to infinity.
6936
6937 2015-06-23 Doug Evans <dje@google.com>
6938
6939 * inferior.h (struct inferior_suspend_state): Delete, unused.
6940 All references deleted.
6941
6942 2015-06-23 Mike Frysinger <vapier@gentoo.org>
6943
6944 * microblaze-tdep.c (microblaze_push_dummy_code): Delete.
6945 (microblaze_push_dummy_call): Likewise.
6946 (microblaze_gdbarch_init): Delete calls to set_gdbarch_push_dummy_code
6947 and set_gdbarch_push_dummy_call.
6948
6949 2015-06-23 Yao Qi <yao.qi@linaro.org>
6950
6951 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers):
6952 Check whether have_ptrace_getregset is TRIBOOL_TRUE explicitly.
6953 (amd64_linux_store_inferior_registers): Likewise.
6954 * arm-linux-nat.c (fetch_fpregister): Likewise.
6955 (fetch_fpregs, store_fpregister): Likewise.
6956 (store_fpregister, store_fpregs): Likewise.
6957 (fetch_register, fetch_regs): Likewise.
6958 (store_register, store_regs): Likewise.
6959 (fetch_vfp_regs, store_vfp_regs): Likewise.
6960 (arm_linux_read_description): Check have_ptrace_getregset is
6961 TRIBOOL_UNKNOWN. Set have_ptrace_getregset to TRIBOOL_TRUE
6962 or TRIBOOL_FALSE.
6963 * i386-linux-nat.c (fetch_xstateregs): Check
6964 have_ptrace_getregset is not TRIBOOL_TRUE.
6965 (store_xstateregs): Likewise.
6966 * linux-nat.c (have_ptrace_getregset): Change its type to
6967 enum tribool.
6968 * linux-nat.h (tribool): New enum.
6969 * x86-linux-nat.c (x86_linux_read_description): Use enum tribool.
6970 Check whether have_ptrace_getregset is TRIBOOL_TRUE.
6971
6972 2015-06-19 Doug Evans <dje@google.com>
6973
6974 * NEWS: Mention Sun's version of stabs is no longer supported.
6975 * elfread.c (free_elfinfo): Delete. All uses updated.
6976 (elfstab_offset_sections): Delete. All uses updated.
6977 * gdb-stabs.h (stab_section_info): Delete. All uses updated.
6978 * psympriv.h (partial_symtab) <section_offsets>: Delete.
6979 All uses updated.
6980 * psymtab.c (start_psymtab_common): Delete arg section_offsets.
6981 All callers updated.
6982
6983 2015-06-18 Simon Marchi <simon.marchi@ericsson.com>
6984
6985 * common/rsp-low.c (needs_escaping): New.
6986 (remote_escape_output): Add unit_size parameter. Refactor to
6987 support multi-byte addressable units. Rename parameters.
6988 * common/rsp-low.h (remote_escape_output): Add unit_size
6989 parameter and rename others. Update doc.
6990 * remote.c (align_for_efficient_write): New.
6991 (remote_write_bytes_aux): Add unit_size parameter and use it.
6992 Rename some variables. Update doc.
6993 (remote_xfer_partial): Get unit size and use it.
6994 (remote_read_bytes_1): Add unit_size parameter and use it.
6995 Rename some variables. Update doc.
6996 (remote_write_bytes): Same.
6997 (remote_xfer_live_readonly_partial): Same.
6998 (remote_read_bytes): Same.
6999 (remote_flash_write): Update call to remote_write_bytes_aux.
7000 (remote_write_qxfer): Update call to remote_escape_output.
7001 (remote_search_memory): Same.
7002 (remote_hostio_pwrite): Same.
7003
7004 2015-06-17 Luis Machado <lgustavo@codesourcery.com>
7005
7006 * breakpoint.c (add_location_to_breakpoint): Don't mark permanent
7007 locations as inserted.
7008 Update and expand comment about permanent locations.
7009 (bp_loc_is_permanent): Don't return 0 for bp_call_dummy.
7010 Move comment to add_location_to_breakpoint.
7011 (update_global_location_list): Don't error out if a permanent
7012 breakpoint is not marked inserted.
7013 Don't error out if a non-permanent breakpoint location is inserted on
7014 top of a permanent breakpoint.
7015
7016 2015-06-17 Luis Machado <lgustavo@codesourcery.com>
7017
7018 * breakpoint.c (make_breakpoint_permanent): Remove unused
7019 function.
7020 * breakpoint.h (make_breakpoint_permanent): Remove declaration.
7021
7022 2015-06-17 Patrick Palka <patrick@parcs.ath.cx>
7023
7024 PR gdb/16999
7025 * NEWS: Mention new GDBHISTSIZE behavior.
7026 * top.c (init_history): For null or out-of-range GDBHISTSIZE,
7027 set history size to unlimited. Ignore non-numeric GDBHISTSIZE.
7028
7029 2015-06-17 Patrick Palka <patrick@parcs.ath.cx>
7030
7031 * NEWS: Mention that GDBHISTSIZE is read instead of HISTSIZE.
7032 * top.c (init_history): Read from GDBHISTSIZE instead of
7033 HISTSIZE.
7034 (init_main): Refer to GDBHISTSIZE instead of HISTSIZE.
7035
7036 2015-06-17 Patrick Palka <patrick@parcs.ath.cx>
7037
7038 * top.c (gdb_safe_append_history): Do not call
7039 history_truncate_file if the history is not stifled.
7040
7041 2015-06-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
7042
7043 * syscalls/s390-linux.xml: Add syscalls 344 through 354.
7044 * syscalls/s390x-linux.xml: Likewise.
7045
7046 2015-06-16 Michael Eager <eager@eagercon.com>
7047
7048 * nat/linux-namespaces.c (MSG_CMSG_CLOEXEC): Define if not defined.
7049
7050 2015-06-16 Patrick Palka <patrick@parcs.ath.cx>
7051
7052 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Call
7053 target_terminal_ours_for_output() before calling
7054 tui_show_frame_info(), and restore the original terminal
7055 settings afterwards.
7056
7057 2015-06-16 Martin Simmons <martin@lispworks.com> (tiny patch)
7058
7059 * arm-linux-nat.c: Include nat/linux-ptrace.h.
7060
7061 2015-06-15 Simon Marchi <simon.marchi@ericsson.com>
7062
7063 * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Consider addressable
7064 memory unit size.
7065 (mi_cmd_data_write_memory_bytes): Same.
7066
7067 2015-06-15 Simon Marchi <simon.marchi@ericsson.com>
7068
7069 * corefile.c (write_memory): Update doc.
7070 * gdbcore.h (write_memory): Same.
7071
7072 2015-06-15 Jan Kratochvil <jan.kratochvil@redhat.com>
7073
7074 * linux-tdep.c (enum filterflags): Make it from anonymous enum.
7075 (dump_mapping_p): Use it for parameter filterflags.
7076 (linux_find_memory_regions_full): Use it for variable filterflags.
7077
7078 2015-06-15 Aleksandar Ristovski <aristovski@qnx.com
7079 Jan Kratochvil <jan.kratochvil@redhat.com>
7080
7081 Merge multiple hex conversions.
7082 * monitor.c: Include rsp-low.h.
7083 (fromhex): Remove definition.
7084
7085 2015-06-15 Aleksandar Ristovski <aristovski@qnx.com
7086 Jan Kratochvil <jan.kratochvil@redhat.com>
7087
7088 Move utility functions to common/.
7089 * cli/cli-utils.c (skip_spaces, skip_spaces_const, skip_to_space_const):
7090 Move defs to common/common-utils.c.
7091 * cli/cli-utils.h (skip_spaces, skip_spaces_const, skip_to_space)
7092 (skip_to_space_const): Move decls to common/common-utils.h.
7093 * common/common-defs.h: Move include of common-types.h before
7094 common-utils.h.
7095 * common/common-utils.c: Include host-defs.h and ctype.h.
7096 (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int, strtoulst): Move
7097 from utils.c.
7098 (skip_spaces, skip_spaces_const, skip_to_space_const): Move from
7099 cli/cli-utils.c.
7100 * common/common-utils.h (strtoulst): Move decl from utils.h.
7101 (skip_spaces, skip_spaces_const, skip_to_space, skip_to_space_const):
7102 Move from cli/cli-utils.h.
7103 * common/host-defs.h: Include limits.h.
7104 (TARGET_CHAR_BIT, HOST_CHAR_BIT): Moved from defs.h.
7105 (skip_spaces, skip_spaces_const): Move decls from cli/cli-utils.h.
7106 * defs.h (TARGET_CHAR_BIT, HOST_CHAR_BIT): Move to
7107 common/common-utils.h.
7108 * utils.c (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int)
7109 (strtoulst): Move to common/common-utils.c.
7110 * utils.h (strtoulst): Moved decl to common/common-utils.h.
7111
7112 2015-06-15 Yao Qi <yao.qi@linaro.org>
7113
7114 * data-directory/Makefile.in (SYSCALLS_FILES): Add aarch64-linux.xml.
7115
7116 2015-06-10 Jon Turney <jon.turney@dronecode.org.uk>
7117
7118 * build-id.c: Don't include elf-bfd.h.
7119 (build_id_bfd_get): Use bfd_build_id.
7120 (build_id_verify): Ditto.
7121 * build-id.h: Ditto.
7122 (find_separate_debug_file_by_buildid): Ditto.
7123 * python/py-objfile.c: Don't include elf-bfd.h.
7124 (objfpy_get_build_id) Use bfd_build_id.
7125 (objfpy_build_id_matches, objfpy_lookup_objfile_by_build_id): Ditto.
7126 * coffread.c: Include build-id.h.
7127 (coff_symfile_read): Try find_separate_debug_file_by_buildid.
7128
7129 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
7130
7131 * windows-nat.c (do_windows_fetch_inferior_registers)
7132 (handle_output_debug_string): Replace __COPY_CONTEXT_SIZE
7133 conditional with __CYGWIN__.
7134
7135 2015-06-13 Andrew Burgess <andrew.burgess@embecosm.com>
7136
7137 * completer.c: Add arch-utils.h include.
7138 (enum reg_completer_targets): New enum.
7139 (reg_or_group_completer_1): New function containing old
7140 reg_or_group_completer, add and use new parameter to control what
7141 is completed on. Use get_current_arch rather than architecture of
7142 currently selected frame.
7143 (reg_or_group_completer): Call new reg_or_group_completer_1.
7144 (reggroup_completer): Call new reg_or_group_completer_1.
7145 * completer.h (reggroup_completer): Add declaration.
7146 * tui/tui-regs.c: Add 'completer.h' include.
7147 (tui_reg_next_command): Renamed to...
7148 (tui_reg_next): ...this. Adjust parameters and return rather than
7149 display new group.
7150 (tui_reg_prev_command): Renamed to...
7151 (tui_reg_prev): ...this. Adjust parameters and return rather than
7152 display new group.
7153 (tui_reg_float_command): Delete.
7154 (tui_reg_general_command): Delete.
7155 (tui_reg_system_command): Delete.
7156 (tui_reg_command): Rewrite to perform switching of register group.
7157 Add header comment.
7158 (tuireglist): Remove.
7159 (tui_reggroup_completer): New function.
7160 (_initialize_tui_regs): Remove 'tui reg' sub-commands, update
7161 creation of 'tui reg' command.
7162 * NEWS: Add comment about 'tui reg' changes.
7163
7164 2015-06-12 Simon Marchi <simon.marchi@ericsson.com>
7165
7166 * target.c (target_read): Consider addressable unit size when
7167 reading from a memory object.
7168 (read_memory_robust): Same.
7169 (read_whatever_is_readable): Same.
7170 (target_write_with_progress): Consider addressable unit size
7171 when writing to a memory object.
7172 * target.h (target_read): Update documentation.
7173 (target_write): Add documentation.
7174
7175 2015-06-12 Simon Marchi <simon.marchi@ericsson.com>
7176
7177 * arch-utils.h (default_addressable_memory_unit_size): New.
7178 * arch-utils.c (default_addressable_memory_unit_size): New.
7179 * gdbarch.sh (addressable_memory_unit_size): New.
7180 * gdbarch.h: Re-generate.
7181 * gdbarch.c: Re-generate.
7182
7183 2015-06-12 Simon Marchi <simon.marchi@ericsson.com>
7184
7185 * target.c (target_read): Rename variables and use
7186 TARGET_XFER_E_IO.
7187 (target_read_with_progress): Same.
7188 (read_memory_robust): Constify parameters and rename
7189 variables.
7190 (read_whatever_is_readable): Constify parameters,
7191 rename variables, adjust formatting.
7192 * target.h (read_memory_robust): Constify parameters.
7193
7194 2015-06-12 Ulrich Weigand <uweigand@de.ibm.com>
7195
7196 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value_base): Handle short
7197 synthetic (non-AltiVec) vector types.
7198 (ppc64_sysv_abi_return_value): Likewise.
7199
7200 2015-06-12 Antoine Tremblay <antoine.tremblay@ericsson.com>
7201
7202 PR breakpoints/16465
7203 * breakpoint.c (create_breakpoint): Save extra_string for
7204 pending breakpoints.
7205
7206 2015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com>
7207
7208 * i386-tdep.c (i386_mpx_get_bt_entry): Add a cast for mpx_bd_mask
7209 and bt_mask to CORE_ADDR.
7210
7211 2015-06-11 Gary Benson <gbenson@redhat.com>
7212
7213 * nat/linux-namespaces.c (mnsh_send_message): Use pulongest.
7214 (mnsh_recv_message): Likewise.
7215
7216 2015-06-11 Walfred Tedeschi <walfred.tedeschi@intel.com>
7217
7218 * i386-tdep.c (i386_mpx_print_bounds): use of LONGEST instead of
7219 long long int and plongest instead of %ll.
7220
7221 2015-06-11 Gary Benson <gbenson@redhat.com>
7222
7223 * nat/linux-namespaces.c (gdb_wait.h): New include.
7224 (sys/wait.h): Do not include.
7225
7226 2015-06-10 Simon Marchi <simon.marchi@ericsson.com>
7227
7228 * dwarf2read.c (dwarf_record_line): Call dwarf_record_line if
7229 end_sequence is true.
7230
7231 2015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7232
7233 Code cleanup.
7234 * solib-target.c (library_list_start_list): Use explicit NULL
7235 comparison.
7236
7237 2015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7238
7239 * solib-target.c (library_list_start_list): Do not dereference
7240 variable version in its initialization. Make the VERSION check handle
7241 NULL.
7242 (library_list_attributes): Make "version" GDB_XML_AF_OPTIONAL.
7243
7244 2015-06-10 Gary Benson <gbenson@redhat.com>
7245
7246 * NEWS: Announce support for direct access of executable and
7247 shared library files when attaching to inferiors in containers
7248 on GNU/Linux systems.
7249
7250 2015-06-10 Gary Benson <gbenson@redhat.com>
7251
7252 * remote.c (struct remote_state) <fs_pid>: New field.
7253 (new_remote_state): Initialize the above.
7254 (PACKET_vFile_setfs): New enum value.
7255 (remote_hostio_set_filesystem): New function.
7256 (remote_hostio_open): Call the above.
7257 (remote_hostio_unlink): Likewise.
7258 (remote_hostio_readlink): Likewise.
7259 (_initialize_remote): Register new "set/show remote
7260 hostio-setfs-packet" command.
7261 * NEWS: Announce new vFile:setfs packet.
7262
7263 2015-06-10 Gary Benson <gbenson@redhat.com>
7264
7265 * linux-nat.c (nat/linux-namespaces.h): New include.
7266 (fileio.h): Likewise.
7267 (linux_nat_filesystem_is_local): New function.
7268 (linux_nat_fileio_pid_of): Likewise.
7269 (linux_nat_fileio_open): Likewise.
7270 (linux_nat_fileio_readlink): Likewise.
7271 (linux_nat_fileio_unlink): Likewise.
7272 (linux_nat_add_target): Initialize to_filesystem_is_local,
7273 to_fileio_open, to_fileio_readlink and to_fileio_unlink.
7274 (_initialize_linux_nat): New "set/show debug linux-namespaces"
7275 commands.
7276 * NEWS: Mention new "set/show debug linux-namespaces" commands.
7277
7278 2015-06-10 Gary Benson <gbenson@redhat.com>
7279
7280 * target.h (struct inferior): New forward declaration.
7281 (struct target_ops) <to_filesystem_is_local>: Update comment.
7282 (struct target_ops) <to_fileio_open>: New argument inf.
7283 Update comment. All implementations updated.
7284 (struct target_ops) <to_fileio_unlink>: Likewise.
7285 (struct target_ops) <to_fileio_readlink>: Likewise.
7286 (target_filesystem_is_local): Update comment.
7287 (target_fileio_open): New argument inf. Update comment.
7288 (target_fileio_unlink): Likewise.
7289 (target_fileio_readlink): Likewise.
7290 (target_fileio_read_alloc): Likewise.
7291 (target_fileio_read_stralloc): Likewise.
7292 * target.c (target_fileio_open): New argument inf.
7293 Pass inf to implementation. Update debug printing.
7294 (target_fileio_unlink): Likewise.
7295 (target_fileio_readlink): Likewise.
7296 (target_fileio_read_alloc_1): New argument inf. Pass inf
7297 to target_fileio_open.
7298 (target_fileio_read_alloc): New argument inf. Pass inf to
7299 target_fileio_read_alloc_1.
7300 (target_fileio_read_stralloc): Likewise.
7301 * gdb_bfd.c (inferior.h): New include.
7302 (gdb_bfd_iovec_fileio_open): Replace unused "open_closure"
7303 argument with new argument "inferior". Pass inferior to
7304 target_fileio_open.
7305 (gdb_bfd_open): Supply inferior argument to
7306 gdb_bfd_iovec_fileio_open.
7307 * linux-tdep.c (linux_info_proc): Supply inf argument to
7308 relevant target_fileio calls.
7309 (linux_find_memory_regions_full): Likewise.
7310 (linux_fill_prpsinfo): Likewise.
7311 * remote.c (remote_filesystem_is_local): Supply inf
7312 argument to remote_hostio_open.
7313 (remote_file_put): Likewise.
7314 (remote_file_get): Likewise.
7315 (remote_file_delete): Supply inf argument to
7316 remote_hostio_unlink.
7317
7318 2015-06-10 Gary Benson <gbenson@redhat.com>
7319
7320 * inf-child.c (inf_child_fileio_open): Replace comment.
7321 (inf_child_fileio_pwrite): Likewise.
7322 (inf_child_fileio_pread): Likewise.
7323 (inf_child_fileio_fstat): Insert blank line before comment.
7324 (inf_child_fileio_close): Replace comment.
7325 (inf_child_fileio_unlink): Likewise.
7326 (inf_child_fileio_readlink): Likewise.
7327 * remote.c (remote_hostio_open): Likewise.
7328 (remote_hostio_pread): Likewise.
7329 (remote_hostio_pwrite): Likewise.
7330 (remote_hostio_close): Likewise.
7331 (remote_hostio_unlink): Likewise.
7332 (remote_hostio_readlink): Likewise.
7333 (remote_hostio_fstat): Likewise.
7334 (remote_filesystem_is_local): Likewise.
7335 * target.c (target_fileio_open): Likewise.
7336 (target_fileio_pwrite): Likewise.
7337 (target_fileio_pread): Likewise.
7338 (target_fileio_fstat): Insert blank line before comment.
7339 (target_fileio_close): Replace comment.
7340 (target_fileio_unlink): Likewise.
7341 (target_fileio_readlink): Likewise.
7342 (target_fileio_read_alloc): Likewise.
7343 (target_fileio_read_stralloc): Likewise.
7344
7345 2015-06-10 Gary Benson <gbenson@redhat.com>
7346
7347 * linux-thread-db.c (nat/linux-namespaces.h): New include.
7348 (check_pid_namespace_match): Use linux_ns_same rather than
7349 linux_proc_pid_get_ns to spot PID namespace mismatches.
7350 * nat/linux-procfs.h (linux_proc_pid_get_ns): Remove.
7351 * nat/linux-procfs.c (linux_proc_pid_get_ns): Likewise.
7352
7353 2015-06-10 Gary Benson <gbenson@redhat.com>
7354
7355 * configure.ac (AC_CHECK_FUNCS): Add setns.
7356 * config.in: Regenerate.
7357 * configure: Likewise.
7358 * nat/linux-namespaces.h: New file.
7359 * nat/linux-namespaces.c: Likewise.
7360 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-namespaces.h.
7361 (linux-namespaces.o): New rule.
7362 * config/aarch64/linux.mh (NATDEPFILES): Add linux-namespaces.o.
7363 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
7364 * config/arm/linux.mh (NATDEPFILES): Likewise.
7365 * config/i386/linux.mh (NATDEPFILES): Likewise.
7366 * config/i386/linux64.mh (NATDEPFILES): Likewise.
7367 * config/ia64/linux.mh (NATDEPFILES): Likewise.
7368 * config/m32r/linux.mh (NATDEPFILES): Likewise.
7369 * config/m68k/linux.mh (NATDEPFILES): Likewise.
7370 * config/mips/linux.mh (NATDEPFILES): Likewise.
7371 * config/pa/linux.mh (NATDEPFILES): Likewise.
7372 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
7373 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
7374 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
7375 * config/s390/linux.mh (NATDEPFILES): Likewise.
7376 * config/sparc/linux.mh (NATDEPFILES): Likewise.
7377 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
7378 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
7379 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
7380
7381 2015-06-10 Gary Benson <gbenson@redhat.com>
7382
7383 * utils.h (make_cleanup_close): Moved to common/filestuff.h.
7384 * utils.c (do_close_cleanup): Moved to common/filestuff.c.
7385 (make_cleanup_close): Likewise.
7386 * common/filestuff.h (make_cleanup_close): Moved from utils.h.
7387 * common/filestuff.c (do_close_cleanup): Moved from utils.c.
7388 (make_cleanup_close): Likewise.
7389
7390 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
7391
7392 * windows-nat.c (thread_rec): Also ignore ERROR_INVALID_HANDLE
7393 from SuspendThread().
7394
7395 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
7396
7397 * windows-nat.c (handle_output_debug_string): Trim trailing '\n'
7398 from OutputDebugString.
7399
7400 2015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com>
7401 Mircea Gherzan <mircea.gherzan@intel.com>
7402
7403 * i386-tdep.c (MPX_BASE_MASK, MPX_BD_MASK, MPX_BT_MASK, MPX_BD_MASK_32,
7404 MPX_BT_MASK_32): New macros.
7405 (i386_mpx_set_bounds): New function that implements
7406 the command "set-mpx-bound".
7407 (i386_mpx_enabled): Helper function to test MPX availability.
7408 (i386_mpx_bd_base): Helper function to calculate the base directory
7409 address.
7410 (i386_mpx_get_bt_entry): Helper function to access a bound
7411 table entry.
7412 (i386_mpx_print_bounds): Effectively display bound information.
7413 (_initialize_i386_tdep): Add new commands to commands "set mpx" and
7414 "show mpx".
7415 (_initialize_i386_tdep):
7416 Add "bound" to the commands "show mpx" and "set mpx" commands.
7417 (mpx_set_cmdlist and mpx_show_cmdlist): List for the new prefixed "set mpx"
7418 and "show mpx" commands.
7419 * NEWS: List new commands for MPX support.
7420
7421 2015-06-09 Gary Benson <gbenson@redhat.com>
7422
7423 * common/fileio.h (fileio_to_host_mode): New declaration.
7424 * common/fileio.c (fileio_to_host_mode): New Function.
7425 * inf-child.c (inf_child_fileio_open): Process mode argument
7426 with fileio_to_host_mode.
7427
7428 2015-06-09 Gary Benson <gbenson@redhat.com>
7429
7430 * common/fileio.c (fileio_mode_pack): Fix preprocessor
7431 conditional.
7432
7433 2015-06-05 Gary Benson <gbenson@redhat.com>
7434
7435 * gdb_bfd.c (gdb_bfd_open): Move vgdb special case to...
7436 * remote.c (remote_filesystem_is_local): ...here.
7437
7438 2015-06-04 Yao Qi <yao.qi@linaro.org>
7439
7440 * gdbarch.c: Regenerate it.
7441
7442 2015-06-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7443
7444 * arch-utils.c (default_infcall_munmap): New.
7445 * arch-utils.h (default_infcall_munmap): New declaration.
7446 * compile/compile-object-load.c (struct munmap_list, munmap_list_add)
7447 (munmap_list_free, munmap_listp_free_cleanup): New.
7448 (struct setup_sections_data): Add field munmap_list_headp.
7449 (setup_sections): Call munmap_list_add.
7450 (compile_object_load): New variable munmap_list_head, initialize
7451 setup_sections_data.munmap_list_headp, return munmap_list_head.
7452 * compile/compile-object-load.h (struct munmap_list): New declaration.
7453 (struct compile_module): Add field munmap_list_head.
7454 (munmap_list_free): New declaration.
7455 * compile/compile-object-run.c (struct do_module_cleanup): Add field
7456 munmap_list_head.
7457 (do_module_cleanup): Call munmap_list_free.
7458 (compile_object_run): Pass munmap_list_head to do_module_cleanup.
7459 * gdbarch.c: Regenerate.
7460 * gdbarch.h: Regenerate.
7461 * gdbarch.sh (infcall_munmap): New.
7462 * linux-tdep.c (linux_infcall_munmap): New.
7463 (linux_init_abi): Install it.
7464
7465 2015-06-02 Simon Marchi <simon.marchi@ericsson.com>
7466
7467 PR gdb/15564
7468 * inferior.c (detach_inferior): Call exit_inferior_1 with silent = 0.
7469
7470 2015-06-02 Yao Qi <yao.qi@linaro.org>
7471
7472 * i386-linux-nat.c: Include linux-nat.h.
7473
7474 2015-06-01 Andreas Schwab <schwab@linux-m68k.org>
7475 Jan Kratochvil <jan.kratochvil@redhat.com>
7476
7477 PR symtab/18392
7478 * dwarf2-frame-tailcall.c (pretended_chain_levels): Correct
7479 assertion.
7480 * dwarf2loc.c (chain_candidate): Likewise.
7481
7482 2015-06-01 Yao Qi <yao.qi@linaro.org>
7483
7484 * arm-linux-nat.c (fetch_vfp_regs): Use PTRACE_GETREGSET.
7485 (store_vfp_regs): Use PTRACE_SETREGSET.
7486
7487 2015-06-01 Yao Qi <yao.qi@linaro.org>
7488
7489 * arm-linux-nat.c (fetch_fpregister): Use PTRACE_GETREGSET.
7490 (fetch_fpregs): Likewise.
7491 * arm-linux-nat.c (store_fpregister): Use PTRACE_SETREGSET.
7492 (store_fpregs): Likewise.
7493
7494 2015-06-01 Yao Qi <yao.qi@linaro.org>
7495
7496 * arm-linux-nat.c (fetch_register): Use PTRACE_GETREGSET.
7497 (fetch_regs): Likewise.
7498 (store_regs): Use PTRACE_SETREGSET.
7499 (store_register): Likewise.
7500
7501 2015-06-01 Yao Qi <yao.qi@linaro.org>
7502
7503 * arm-linux-nat.c (arm_linux_read_description): Check whether
7504 kernel supports PTRACE_GETREGSET.
7505
7506 2015-06-01 Yao Qi <yao.qi@linaro.org>
7507
7508 * x86-linux-nat.c (have_ptrace_getregset): Move it to ...
7509 * linux-nat.c: ... here.
7510 * x86-linux-nat.h (have_ptrace_getregset): Move the declaration
7511 to ...
7512 * linux-nat.h: ... here.
7513
7514 2015-06-01 Yao Qi <yao.qi@linaro.org>
7515
7516 * amd64-linux-nat.c: Include "nat/linux-ptrace.h".
7517 * i386-linux-nat.c: Likewise.
7518 * nat/linux-ptrace.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Define.
7519 * s390-linux-nat.c: Include "nat/linux-ptrace.h".
7520 (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
7521 * x86-linux-nat.c: Include "nat/linux-ptrace.h".
7522 * x86-linux-nat.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
7523
7524 2015-05-30 Eli Zaretskii <eliz@gnu.org>
7525
7526 * go32-nat.c (go32_xfer_memory): Fix the return value to be
7527 compatible to what read_child and write_child return. This
7528 unbreaks that DJGPP build of GDB which was broken since v7.7.
7529
7530 2015-05-29 Martin Galvan <martin.galvan@tallertechnologies.com>
7531
7532 * MAINTAINERS (Write After Approval): Add Martin Galvan.
7533
7534 2015-05-29 Roland McGrath <mcgrathr@google.com>
7535
7536 PR gdb/18464
7537 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Use warning
7538 rather than internal_error for an unrecognized value.
7539
7540 2015-05-29 Max Filippov <jcmvbkbc@gmail.com>
7541
7542 * xtensa-tdep.c (xtensa_pseudo_register_read)
7543 (xtensa_pseudo_register_write): Don't alias last pseudo register
7544 to a1.
7545
7546 2015-05-28 Don Breazeal <donb@codesourcery.com>
7547
7548 * infrun.c (follow_fork_inferior): Ensure the use of
7549 process-style ptids (pid,0,0) in verbose/debug "Detaching"
7550 messages.
7551
7552 2015-05-28 Doug Evans <dje@google.com>
7553
7554 * dwarf2read.c (record_line_ftype): Remove, duplicate.
7555
7556 2015-05-28 Yao Qi <yao.qi@linaro.org>
7557
7558 * arm-linux-nat.c (arm_linux_has_wmmx_registers): Remove.
7559 (arm_linux_fetch_inferior_registers): Use
7560 tdep->have_wmmx_registers instead of arm_linux_has_wmmx_registers.
7561 (arm_linux_store_inferior_registers): Likewise.
7562 (arm_linux_read_description): Don't set
7563 arm_linux_has_wmmx_registers.
7564 * arm-tdep.c (arm_gdbarch_init): Set
7565 tdep->have_wmmx_registers according target descriptions.
7566 * arm-tdep.h (struct gdbarch_tdep) <have_wmmx_registers>: New
7567 field.
7568
7569 2015-05-28 Yao Qi <yao.qi@linaro.org>
7570
7571 * arm-linux-nat.c (arm_linux_vfp_register_count): Remove.
7572 (fetch_vfp_regs): Use vfp_register_count from gdbarch_tdep
7573 instead of arm_linux_vfp_register_count.
7574 (store_vfp_regs): Likewise.
7575 (arm_linux_fetch_inferior_registers): Likewise.
7576 (arm_linux_store_inferior_registers): Likewise.
7577 (arm_linux_read_description): Don't set
7578 arm_linux_vfp_register_count.
7579 * arm-linux-tdep.c (arm_linux_iterate_over_regset_sections):
7580 Adjust.
7581 * arm-tdep.c (arm_gdbarch_init): Add assert on
7582 vfp_register_count.
7583 * arm-tdep.h (struct gdbarch_tdep) <have_vfp_registers>: Rename
7584 field to vfp_register_count. All users updated.
7585
7586 2015-05-28 Kyle Huey <me@kylehuey.com> (tiny patch)
7587
7588 * gdb/arm-tdep.c (arm_gdbarch_init): Perform arm_abi detection on
7589 ELFOSABI_GNU binaries.
7590
7591 2015-05-27 Doug Evans <dje@google.com>
7592
7593 * dwarf2read.c (lnp_state_machine): New typedef.
7594 (lnp_reader_state): New typedef.
7595 (dwarf_record_line_1): Renamed from dwarf_record_line.
7596 All callers updated.
7597 (dwarf_record_line): New function.
7598 (init_lnp_state_machine): New function.
7599 (check_line_address): Replace p_record_line parameter with state.
7600 All callers updated.
7601 (dwarf_decode_lines_1): Call dwarf_record_line, init_lnp_state_machine.
7602 Update to record state in lnp_state_machine.
7603
7604 2015-05-27 Doug Evans <dje@google.com>
7605
7606 * dwarf2read.c (record_line_ftype): New typedef.
7607 (check_line_address): New function.
7608 (dwarf_decode_lines_1): Call it.
7609
7610 2015-05-27 Doug Evans <dje@google.com>
7611
7612 * NEWS: Mention "set debug dwarf-line".
7613 * dwarf2read.c (dwarf_line_debug): New static global.
7614 (add_include_dir): Add debug dwarf-line support.
7615 (add_file_name, dwarf_record_line, dwarf_finish_line): Ditto.
7616 (_initialize_dwarf2_read): New parameter "debug dwarf-line".
7617
7618 2015-05-27 Doug Evans <dje@google.com>
7619
7620 * cp-namespace.c (cp_lookup_nested_symbol): New arg "domain".
7621 All callers updated.
7622 (cp_lookup_nested_symbol_1, find_symbol_in_baseclass): Ditto.
7623 * cp-support.h (cp_lookup_nested_symbol): Update.
7624
7625 2015-05-27 Doug Evans <dje@google.com>
7626
7627 PR symtab/18258
7628 * block.c (block_find_symbol): New function.
7629 (block_find_non_opaque_type): Ditto.
7630 (block_find_non_opaque_type_preferred): Ditto.
7631 * block.h (block_symbol_matcher_ftype): New typedef.
7632 (block_find_symbol): Declare.
7633 (block_find_non_opaque_type): Ditto.
7634 (block_find_non_opaque_type_preferred): Ditto.
7635 * dwarf2read.c (dw2_lookup_symbol): Call block_find_symbol.
7636 * psymtab.c (psym_lookup_symbol): Ditto.
7637 * symtab.c (basic_lookup_transparent_type_1): New function.
7638 (basic_lookup_transparent_type): Call it.
7639
7640 2015-05-27 Yao Qi <yao.qi@linaro.org>
7641
7642 * aarch64-tdep.c (aarch64_record_data_proc_simd_fp): Return
7643 AARCH64_RECORD_UNKNOWN for unknown instruction encoding.
7644
7645 2015-05-27 Yao Qi <yao.qi@linaro.org>
7646
7647 * aarch64-tdep.c (aarch64_record_branch_except_sys): Split lines
7648 before operator &&.
7649 (aarch64_record_load_store): Likewise.
7650
7651 2015-05-26 Doug Evans <dje@google.com>
7652
7653 PR c++/18141, c++/18417.
7654 * cp-support.c (cp_lookup_rtti_type): Handle the case of NAME being
7655 a typedef.
7656
7657 2015-05-26 Doug Evans <dje@google.com>
7658
7659 * NEWS: Add entries for command renamings.
7660 * dwarf2read.c (dwarf_read_debug): Renamed from dwarf2_read_debug.
7661 All uses updated.
7662 (dwarf_die_debug): Renamed from dwarf2_die_debug. All uses updated.
7663 (dwarf_max_cache_age): Renamed from dwarf2_max_cache_age.
7664 All uses updated.
7665 (show_dwarf_max_cache_age): Renamed from show_dwarf2_max_cache_age.
7666 All callers updated. Fix spelling of DWARF in help text.
7667 (set_dwarf_cmdlist): Renamed from set_dwarf2_cmdlist.
7668 All uses updated.
7669 (show_dwarf_cmdlist): Renamed from show_dwarf2_cmdlist.
7670 All uses updated.
7671 (set_dwarf_cmd): Renamed from set_dwarf2_cmd. All callers updated.
7672 (show_dwarf_cmd): Renamed from show_dwarf2_cmd. All callers updated.
7673 (dwarf_always_disassemble): Renamed from dwarf_always_disassemble.
7674 All uses updated.
7675 (show_dwarf_always_disassemble): Renamed from
7676 show_dwarf2_always_disassemble. All callers updated.
7677 (_initialize_dwarf2_read): Rename "set/show dwarf2" prefix to
7678 "set/show dwarf". Rename "set/show dwarf2 max-cache-age" to
7679 "set/show dwarf max-cache-age". Rename
7680 "set/show dwarf2 always-disassemble" to
7681 "set/show dwarf always-disassemble". Rename
7682 "set/show debug dwarf2-read" to "set/show debug dwarf-read". Rename
7683 "set/show debug dwarf2-die" to "set/show debug dwarf-die".
7684
7685 2015-05-26 Doug Evans <dje@google.com>
7686
7687 PR python/18438
7688 * python/py-lazy-string.c (stpy_convert_to_value): Use
7689 gdbpy_gdb_memory_error not PyExc_MemoryError.
7690 (gdbpy_create_lazy_string_object): Ditto.
7691
7692 2015-05-26 Andrew Burgess <andrew.burgess@embecosm.com>
7693
7694 * tui/tui-regs.c (tui_reg_next_command): Compare against NULL.
7695
7696 2015-05-26 Andrew Burgess <andrew.burgess@embecosm.com>
7697
7698 * tui/tui-regs.c (tui_reg_prev_command): New function.
7699 (_initialize_tui_regs): Add 'prev' command for 'tui reg'.
7700 * reggroups.c (reggroup_prev): New function.
7701 * reggroups.h (reggroup_prev): Add declaration. Update comment.
7702
7703 2015-05-26 Omair Javaid <omair.javaid@linaro.org>
7704 Yao Qi <yao.qi@linaro.org>
7705
7706 * aarch64-linux-tdep.c: Include linux-record.h and
7707 record-full.h.
7708 (struct linux_record_tdep aarch64_linux_record_tdep): Declare.
7709 (aarch64_syscall): New enum.
7710 (aarch64_canonicalize_syscall): New function.
7711 (aarch64_all_but_pc_registers_record): New function.
7712 (aarch64_linux_syscall_record): New function.
7713 (aarch64_linux_init_abi): Install AArch64 process record
7714 handler. Update to handle syscall recording.
7715 * aarch64-tdep.c: Include record.h and record-full.h.
7716 (submask, bit, bits, REG_ALLOC, MEM_ALLOC): New macros.
7717 (struct aarch64_mem_r): Define.
7718 (aarch64_record_result): New enum.
7719 (struct insn_decode_record): Define.
7720 (insn_decode_record): New typedef.
7721 (aarch64_record_data_proc_reg): New function.
7722 (aarch64_record_data_proc_imm): New function.
7723 (aarch64_record_branch_except_sys): New function.
7724 (aarch64_record_load_store): New function.
7725 (aarch64_record_data_proc_simd_fp): New function.
7726 (aarch64_record_asimd_load_store): New function.
7727 (aarch64_record_decode_insn_handler): New function.
7728 (deallocate_reg_mem): New function.
7729 (aarch64_process_record): New function.
7730 * aarch64-tdep.h (struct gdbarch_tdep) <aarch64_syscall_record>:
7731 New field.
7732 (aarch64_process_record): New extern declaration.
7733 * configure.tgt: Add linux-record.o to gdb_target_obs.
7734 * linux-record.h (struct linux_record_tdep) <arg7>: New field.
7735
7736 2015-05-26 Omair Javaid <omair.javaid@linaro.org>
7737
7738 * NEWS: Add a note on process record-replay support on aarch64*-linux*
7739 targets.
7740
7741 2015-05-26 Martin Galvan <martin.galvan@tallertechnologies.com>
7742
7743 * amd64-tdep.c: Replace in_function_epilogue_p with
7744 stack_frame_destroyed_p throughout.
7745 * arch-utils.c: Ditto.
7746 * arch-utils.h: Ditto.
7747 * arm-tdep.c: Ditto.
7748 * breakpoint.c: Ditto.
7749 * gdbarch.sh: Ditto.
7750 * hppa-tdep.c: Ditto.
7751 * i386-tdep.c: Ditto.
7752 * mips-tdep.c: Ditto.
7753 * nios2-tdep.c: Ditto.
7754 * rs6000-tdep.c: Ditto.
7755 * s390-linux-tdep.c: Ditto.
7756 * score-tdep.c: Ditto.
7757 * sh-tdep.c: Ditto.
7758 * sparc-tdep.c: Ditto.
7759 * sparc-tdep.h: Ditto.
7760 * sparc64-tdep.c: Ditto.
7761 * spu-tdep.c: Ditto.
7762 * tic6x-tdep.c: Ditto.
7763 * tilegx-tdep.c: Ditto.
7764 * xstormy16-tdep.c: Ditto.
7765 * gdbarch.c, gdbarch.h: Re-generated.
7766
7767 2015-05-22 Andrew Burgess <andrew.burgess@embecosm.com>
7768
7769 * NEWS: Mention 'tui enable' and 'tui disable'.
7770 * tui/tui.c (tui_enable_command): New function.
7771 (tui_disable_command): New function.
7772 (_initialize_tui): New function.
7773
7774 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7775
7776 * tui/tui-regs.c (tui_reg_next_command): Use NULL not 0.
7777
7778 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7779
7780 * tui/tui-layout.c (tui_set_layout_for_display_command): Ensure
7781 buf_ptr is freed.
7782
7783 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7784
7785 * tui/tui-layout.c (tui_layout_command): Move call to tui_enable
7786 into ...
7787 (tui_set_layout_for_display_command): ...here, before calling
7788 tui_set_layout. Only set the layout if gdb has not already
7789 entered the TUI_FAILURE state.
7790
7791 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7792
7793 * tui/tui-layout.c (layout_completer): New function.
7794 (_initialize_tui_layout): Set completer on layout command.
7795
7796 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7797
7798 * tui/tui-layout.c (tui_set_layout): Remove
7799 tui_register_display_type parameter. Remove all checking of this
7800 parameter, and reindent function. Update header comment.
7801 (tui_set_layout_for_display_command): Rename to...
7802 (tui_set_layout_by_name): ...this, and don't check for different
7803 register class types, don't pass a tui_register_display_type to
7804 tui_set_layout. Update header comment.
7805 (layout_names): Remove register set specific names.
7806 * tui/tui-layout.h (tui_set_layout): Remove
7807 tui_register_display_type parameter.
7808 * tui/tui.c (tui_rl_change_windows): Don't pass a
7809 tui_register_display_type to tui_set_layout.
7810 (tui_rl_delete_other_windows): Likewise.
7811 (tui_enable): Likewise.
7812 * tui/tui-data.h (TUI_FLOAT_REGS_NAME): Remove.
7813 (TUI_FLOAT_REGS_NAME_LOWER): Remove.
7814 (TUI_GENERAL_REGS_NAME): Remove.
7815 (TUI_GENERAL_REGS_NAME_LOWER): Remove.
7816 (TUI_SPECIAL_REGS_NAME): Remove.
7817 (TUI_SPECIAL_REGS_NAME_LOWER): Remove.
7818 (TUI_GENERAL_SPECIAL_REGS_NAME): Remove.
7819 (TUI_GENERAL_SPECIAL_REGS_NAME_LOWER): Remove.
7820 (enum tui_register_display_type): Remove.
7821 (struct tui_layout_def): Remove regs_display_type and
7822 float_regs_display_type fields.
7823 (struct tui_data_info): Remove regs_display_type field.
7824 (tui_layout_command): Use new name for
7825 tui_set_layout_for_display_command.
7826 * tui/tui-data.c (layout_def): Don't initialise removed fields.
7827 (tui_clear_win_detail): Don't initialise removed fields of
7828 win_info.
7829 * tui/tui-regs.c (tui_show_registers): Use new name for
7830 tui_set_layout_for_display_command.
7831 * tui/tui.h (tui_set_layout_for_display_command): Rename
7832 declaration to...
7833 (tui_set_layout_by_name): ...this.
7834 * printcmd.c (display_command): Remove tui related layout call,
7835 and reindent.
7836
7837 2015-05-20 Joel Brobecker <brobecker@adacore.com>
7838
7839 * infrun.c (handle_inferior_event_1): Renames handle_inferior_event.
7840 (handle_inferior_event): New function.
7841
7842 2015-05-20 Joel Brobecker <brobecker@adacore.com>
7843
7844 * ada-lang.c (to_fixed_array_type): Rename local variable
7845 typename into type_name.
7846
7847 2015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7848
7849 Fix ASAN crash for gdb.compile/compile.exp.
7850 * infcall.c (call_function_by_hand_dummy): Use xstrdup for NAME.
7851
7852 2015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7853
7854 * compile/compile-c-symbols.c (convert_symbol_sym, gcc_convert_symbol)
7855 (gcc_symbol_address): Change gdb_stdout to gdb_stdlog.
7856 * compile/compile-object-load.c (setup_sections, compile_object_load):
7857 Likewise.
7858 * compile/compile.c (compile_to_object): Likewise.
7859
7860 2015-05-16 Doug Evans <xdje42@gmail.com>
7861
7862 * NEWS: Mention support for unbuffered Guile memory ports.
7863 * scm-ports.c (ioscm_memory_port): Update comments on end, size.
7864 (ioscm_lseek_address): Improve overflow calculation.
7865 (gdbscm_memory_port_fill_input): Add assert.
7866 (gdbscm_memory_port_write): Handle unbuffered ports.
7867 Handle large writes identical to Guile's fport_write.
7868 (gdbscm_memory_port_seek): Fix seeking past end check.
7869 (gdbscm_memory_port_close): Handle closing unbuffered port.
7870 (ioscm_parse_mode_bits): Recognize "0" for unbuffered ports.
7871 (ioscm_init_memory_port): Handle unbuffered ports.
7872 (ioscm_reinit_memory_port): Ditto.
7873 (ioscm_init_memory_port): Update size calculation.
7874 (gdbscm_open_memory): Support zero sized ports.
7875
7876 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7877
7878 * compile/compile-object-load.c (get_out_value_type): Fix uninitialized
7879 variable compiler warnings.
7880
7881 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7882
7883 * compile/compile-object-load.c (get_out_value_type): Fix returned type.
7884
7885 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7886 Phil Muldoon <pmuldoon@redhat.com>
7887
7888 * NEWS (Changes since GDB 7.9): Add compile print.
7889 * compile/compile-c-support.c (add_code_header, add_code_footer)
7890 (c_compute_program): Add COMPILE_I_PRINT_ADDRESS_SCOPE and
7891 COMPILE_I_PRINT_VALUE_SCOPE.
7892 * compile/compile-internal.h (COMPILE_I_PRINT_OUT_ARG_TYPE)
7893 (COMPILE_I_PRINT_OUT_ARG, COMPILE_I_EXPR_VAL, COMPILE_I_EXPR_PTR_TYPE):
7894 New.
7895 * compile/compile-object-load.c: Include block.h.
7896 (get_out_value_type): New function.
7897 (compile_object_load): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
7898 COMPILE_I_PRINT_VALUE_SCOPE. Set compile_module's OUT_VALUE_ADDR and
7899 OUT_VALUE_TYPE.
7900 * compile/compile-object-load.h (struct compile_module): Add fields
7901 out_value_addr and out_value_type.
7902 * compile/compile-object-run.c: Include valprint.h and compile.h.
7903 (struct do_module_cleanup): Add fields out_value_addr and
7904 out_value_type.
7905 (do_module_cleanup): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
7906 COMPILE_I_PRINT_VALUE_SCOPE.
7907 (compile_object_run): Propagate out_value_addr and out_value_type.
7908 Pass OUT_VALUE_ADDR.
7909 * compile/compile.c: Include valprint.h.
7910 (compile_print_value, compile_print_command): New functions.
7911 (eval_compile_command): Handle failed COMPILE_I_PRINT_ADDRESS_SCOPE.
7912 (_initialize_compile): Update compile code help text. Install
7913 compile_print_command.
7914 * compile/compile.h (compile_print_value): New prototype.
7915 * defs.h (enum compile_i_scope_types): Add
7916 COMPILE_I_PRINT_ADDRESS_SCOPE and COMPILE_I_PRINT_VALUE_SCOPE.
7917
7918 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7919
7920 * compile/compile-object-load.c (get_regs_type): Add parameter func_sym.
7921 Rely on its parameter count.
7922 (compile_object_load): Replace lookup_minimal_symbol_text by
7923 lookup_global_symbol_from_objfile. Verify FUNC_SYM. Set it in the
7924 return value.
7925 * compile/compile-object-load.h (struct compile_module): Replace
7926 func_addr by func_sym.
7927 * compile/compile-object-run.c: Include block.h.
7928 (compile_object_run): Reset module variable after it is freed. Use
7929 FUNC_SYM instead of FUNC_ADDR. Rely on it.
7930
7931 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7932
7933 * compile/compile-c-support.c (print_one_macro): Use #ifndef.
7934 (generate_register_struct): Use __gdb_uintptr for TYPE_CODE_PTR.
7935 (c_compute_program): Call generate_register_struct after typedefs.
7936 * compile/compile-loc2c.c (push, pushf_register_address)
7937 (pushf_register): Cast to GCC_UINTPTR.
7938 (do_compile_dwarf_expr_to_c): Use unused attribute. Add space after
7939 type. Use GCC_UINTPTR instead of void *. Remove excessive cast.
7940 (compile_dwarf_expr_to_c): Use GCC_UINTPTR instead of void *.
7941 * compile/compile.c (_initialize_compile): Enable warnings for
7942 COMPILE_ARGS.
7943
7944 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7945
7946 * cli/cli-script.c (execute_control_command): Update
7947 eval_compile_command caller.
7948 * compile/compile-object-load.c (compile_object_load): Add parameters
7949 scope and scope_data. Set them.
7950 * compile/compile-object-load.h (struct compile_module): Add fields
7951 scope and scope_data.
7952 (compile_object_load): Add parameters scope and scope_data.
7953 * compile/compile-object-run.c (struct do_module_cleanup): Add fields
7954 scope and scope_data.
7955 (compile_object_run): Propagate the fields scope and scope_data.
7956 * compile/compile.c (compile_file_command, compile_code_command):
7957 Update eval_compile_command callers.
7958 (eval_compile_command): Add parameter scope_data. Pass it plus scope.
7959 * compile/compile.h (eval_compile_command): Add parameter scope_data.
7960 * defs.h (struct command_line): Add field scope_data.
7961
7962 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7963
7964 * printcmd.c (struct format_data): Move it to valprint.h.
7965 (print_command_parse_format, print_value): New functions from ...
7966 (print_command_1): ... here. Call them.
7967 * valprint.h (struct format_data): Move it here from printcmd.c.
7968 (print_command_parse_format, print_value): New declarations.
7969
7970 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7971
7972 * compile/compile-object-load.c (compile_object_load): Add
7973 COMPILE_DEBUG message.
7974
7975 2015-05-15 Jerome Guitton <guitton@adacore.com>
7976
7977 * ada-lang.c (ada_value_ptr_subscript): Use enum position of
7978 index to get element instead of enum value.
7979 (ada_value_slice_from_ptr, ada_value_slice): Use enum position
7980 of index to compute length, but enum values to compute bounds.
7981 (ada_array_length): Use enum position of index instead of enum value.
7982 (pos_atr): Move position computation to...
7983 (ada_evaluate_subexp): Use enum values to compute bounds.
7984 * gdbtypes.c (discrete_position): ...this new function.
7985 * gdbtypes.h (discrete_position): New function declaration.
7986 * valprint.c (val_print_array_elements): Call discrete_position
7987 to handle array indexed by non-contiguous enumeration types.
7988
7989 2015-05-15 Jerome Guitton <guitton@adacore.com>
7990
7991 * ada-lang.c (find_parallel_type_by_descriptive_type):
7992 Go through typedefs during lookup.
7993 (to_fixed_array_type): Add support for non-bit packed arrays
7994 as variable-length fields.
7995
7996 2015-05-15 Pedro Alves <palves@redhat.com>
7997 Simon Marchi <simon.marchi@ericsson.com>
7998
7999 * event-loop.c (gdb_notifier) <next_file_handler,
8000 next_poll_fds_index>: New fields.
8001 (get_next_file_handler_to_handle_and_advance): New function.
8002 (delete_file_handler): If deleting the next file handler to
8003 handle, advance to the next file handler.
8004 (gdb_wait_for_event): Bail early if no event fired. Poll file
8005 handlers in round-robin fashion.
8006
8007 2015-05-15 Pedro Alves <palves@redhat.com>
8008
8009 * linux-tdep.c (linux_find_memory_regions_full): Rename local
8010 'private' to 'priv'.
8011
8012 2015-05-15 Pedro Alves <palves@redhat.com>
8013
8014 * nat/linux-nat.h: Include "target/waitstatus.h".
8015
8016 2015-05-15 Yuanhui Zhang <asmwarrior@gmail.com>
8017
8018 * python/py-unwind.c (struct reg_info): Move out of ...
8019 (struct cached_frame_info): ... this scope.
8020 (pending_frame_object_type, unwind_info_object_type): Make extern.
8021
8022 2015-05-15 Joel Brobecker <brobecker@adacore.com>
8023
8024 * ada-lang.c (ada_value_primitive_packed_val): Make sure
8025 accumSize is never negative.
8026
8027 2015-05-14 Patrick Palka <patrick@parcs.ath.cx>
8028
8029 * tui/tui-command.c: Remove include of <ctype.h>.
8030 (tui_dispatch_ctrl_char): Remove workaround for xterm terminals.
8031
8032 2015-05-13 Martin Galvan <martin.galvan@tallertechnologies.com>
8033
8034 * dwarf2read.c (die_needs_namespace): Return 1 for
8035 DW_TAG_inlined_subroutine.
8036
8037 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8038
8039 * regcache.c (regcache_cpy_no_passthrough): New declaration.
8040 (regcache_cpy_no_passthrough): Make it static, add function comment.
8041 * regcache.h (regcache_dup, regcache_cpy): Reduce/update their comment.
8042 (regcache_cpy_no_passthrough): Remove declaration.
8043
8044 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8045
8046 * gdbthread.h (struct thread_control_state): Update comment for
8047 proceed_to_finish.
8048 * infcall.c (run_inferior_call): Update comment about
8049 proceed_to_finish.
8050 * infcmd.c (get_return_value): Update comment about stop_registers.
8051 (finish_forward): Update comment about proceed_to_finish.
8052 * infrun.c (stop_registers): Remove.
8053 (clear_proceed_status, normal_stop): Remove stop_registers handling.
8054 * infrun.h (stop_registers): Remove.
8055
8056 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8057
8058 * infcall.c (struct dummy_frame_context_saver)
8059 (dummy_frame_context_saver_data_free, dummy_frame_context_saver_dtor)
8060 (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
8061 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
8062 New.
8063 (call_function_by_hand_dummy): Move discard_cleanups of
8064 inf_status_cleanup before dummy_frame_push. Call
8065 dummy_frame_context_saver_setup and prepare context_saver_cleanup.
8066 Use dummy_frame_context_saver_get_regs instead of stop_registers.
8067 * infcall.h (struct dummy_frame_context_saver)
8068 (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
8069 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
8070 New declarations.
8071 * infcmd.c: Include infcall.h.
8072 (get_return_value): Add parameter ctx_saver, use it instead of
8073 stop_registers.
8074 (print_return_value): Add parameter ctx_saver, pass it.
8075 (struct finish_command_continuation_args): Add field ctx_saver.
8076 (finish_command_continuation): Update print_return_value caller.
8077 (finish_command_continuation_free_arg): Free also ctx_saver.
8078 (finish_forward): Call dummy_frame_context_saver_setup.
8079 * inferior.h (struct dummy_frame_context_saver): New declaration.
8080 (get_return_value): Add parameter ctx_saver.
8081 * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Update
8082 get_return_value caller.
8083
8084 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8085
8086 * dummy-frame.c (struct dummy_frame_dtor_list): New.
8087 (struct dummy_frame): Replace dtor and dtor_data by dtor_list.
8088 (remove_dummy_frame): Process dtor_list.
8089 (pop_dummy_frame): Process dtor_list.
8090 (register_dummy_frame_dtor): Maintain dtor_list.
8091 (find_dummy_frame_dtor): Handle dtor_list.
8092 * dummy-frame.h (register_dummy_frame_dtor, find_dummy_frame_dtor):
8093 Update comments.
8094
8095 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8096
8097 * compile/compile-object-run.c (do_module_cleanup): Add parameter
8098 registers_valid.
8099 (compile_object_run): Update do_module_cleanup caller.
8100 * dummy-frame.c: Include infcall.h.
8101 (struct dummy_frame): Update dtor comment.
8102 (remove_dummy_frame): Call dtor.
8103 (pop_dummy_frame): Update dtor caller.
8104 * dummy-frame.h (dummy_frame_dtor_ftype): Add parameter
8105 registers_valid.
8106
8107 2015-05-13 Joel Brobecker <brobecker@adacore.com>
8108
8109 GDB 7.9.1 released.
8110
8111 2015-05-13 Joel Brobecker <brobecker@adacore.com>
8112
8113 * NEWS: Create "Changes in GDB 7.9.1" section. Move news about
8114 Xmethods now being able to specify a result type to that new
8115 sectioin.
8116
8117 2015-05-13 Patrick Palka <patrick@parcs.ath.cx>
8118
8119 * tui/tui-win.c (tui_async_resize_screen): Clear win_resized
8120 first before resizing the window.
8121 * tui/tui.c (tui_enable): Likewise.
8122
8123 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8124
8125 * dummy-frame.c (struct dummy_frame): Use proper typedef for dtor.
8126 * dummy-frame.h (dummy_frame_dtor_ftype): Add its comment.
8127 * infcall.c (call_function_by_hand_dummy): Use proper typedef for
8128 dummy_dtor parameter.
8129 * infcall.h: Include dummy-frame.h.
8130 (call_function_by_hand_dummy_dtor_ftype): Remove.
8131 (call_function_by_hand_dummy): Use proper typedef for dummy_dtor
8132 parameter.
8133
8134 2015-05-13 Patrick Palka <patrick@parcs.ath.cx>
8135
8136 PR gdb/17820
8137 * top.c (history_size_setshow_var): Change type to signed.
8138 Initialize to -2. Update documentation.
8139 (set_readline_history_size): Define.
8140 (set_history_size_command): Use it. Remove logic for handling
8141 out-of-range sizes.
8142 (init_history): Use set_readline_history_size(). Test for a
8143 value of -2 instead of 0 when determining whether to set a
8144 default history size.
8145 (init_main): Decode the argument of the "size" command as a
8146 zuinteger_unlimited.
8147
8148 2015-05-12 Doug Evans <dje@google.com>
8149
8150 * dwarf2read.c (struct file_entry): Tweak comments.
8151 (get_debug_line_section): Tweak comments.
8152
8153 2015-05-12 Don Breazeal <donb@codesourcery.com>
8154
8155 * NEWS: Announce fork support in the RSP and support
8156 for fork debugging in extended mode.
8157
8158 2015-05-12 Don Breazeal <donb@codesourcery.com>
8159
8160 * remote.c (remote_insert_fork_catchpoint): New function.
8161 (remote_remove_fork_catchpoint): New function.
8162 (remote_insert_vfork_catchpoint): New function.
8163 (remote_remove_vfork_catchpoint): New function.
8164 (pending_fork_parent_callback): New function.
8165 (remove_new_fork_child): New function.
8166 (remote_update_thread_list): Call remote_notif_get_pending_events
8167 and remove_new_fork_child.
8168 (extended_remote_kill): Kill fork child when killing the
8169 parent before follow_fork completes.
8170 (init_extended_remote_ops): Initialize target vector with
8171 new fork catchpoint functions.
8172
8173 2015-05-12 Don Breazeal <donb@codesourcery.com>
8174
8175 * remote.c (remove_vfork_event_p): New function.
8176 (remote_follow_fork): Add vfork event type to event checking.
8177 (remote_parse_stop_reply): New stop reasons "vfork" and
8178 "vforkdone" for RSP 'T' Stop Reply Packet.
8179
8180 2015-05-12 Don Breazeal <donb@codesourcery.com>
8181
8182 * linux-nat.c (linux_nat_ptrace_options): New function.
8183 (linux_init_ptrace, wait_lwp, linux_nat_filter_event):
8184 Call linux_nat_ptrace_options and use different argument to
8185 linux_enable_event_reporting.
8186 (_initialize_linux_nat): Delete call to
8187 linux_ptrace_set_additional_flags.
8188 * nat/linux-ptrace.c (current_ptrace_options): Rename to
8189 supported_ptrace_options.
8190 (additional_flags): Delete variable.
8191 (linux_check_ptrace_features): Use supported_ptrace_options.
8192 (linux_test_for_tracesysgood, linux_test_for_tracefork):
8193 Likewise, and remove additional_flags check.
8194 (linux_enable_event_reporting): Change 'attached' argument to
8195 'options'. Use supported_ptrace_options.
8196 (ptrace_supports_feature): Change comment. Use
8197 supported_ptrace_options.
8198 (linux_ptrace_set_additional_flags): Delete function.
8199 * nat/linux-ptrace.h (linux_ptrace_set_additional_flags):
8200 Delete function prototype.
8201 * remote.c (remote_fork_event_p): New function.
8202 (remote_detach_pid): New function.
8203 (remote_detach_1): Call remote_detach_pid, don't mourn inferior
8204 if doing detach-on-fork.
8205 (remote_follow_fork): New function.
8206 (remote_parse_stop_reply): Handle new "T" stop reason "fork".
8207 (remote_pid_to_str): Print "process" strings for pid/0/0 ptids.
8208 (init_extended_remote_ops): Initialize to_follow_fork.
8209
8210 2015-05-12 Don Breazeal <donb@codesourcery.com>
8211
8212 * nat/linux-ptrace.c (linux_check_ptrace_features): Change
8213 from static to extern.
8214 * nat/linux-ptrace.h (linux_check_ptrace_features): Declare.
8215 * remote.c (anonymous enum): <PACKET_fork_event_feature,
8216 * PACKET_vfork_event_feature>: New enumeration constants.
8217 (remote_protocol_features): Add table entries for new packets.
8218 (remote_query_supported): Add new feature queries to qSupported
8219 packet.
8220
8221 2015-05-12 Gary Benson <gbenson@redhat.com>
8222
8223 * remote.c (remote_add_inferior): Call exec_file_locate_attach
8224 for fake PIDs as well as real ones.
8225 (remote_pid_to_exec_file): Send empty annex if PID is fake.
8226
8227 2015-05-09 Siva Chandra Reddy <sivachandra@google.com>
8228
8229 * NEWS (Python Scripting): Mention the new gdb.Value methods.
8230 * python/py-value.c (valpy_reference_value): New function.
8231 (valpy_const_value): Likewise.
8232 (value_object_methods): Add new methods.
8233 * value.c (make_cv_value): New function.
8234 * value.h (make_cv_value): Declare.
8235
8236 2015-05-08 Yao Qi <yao@codesourcery.com>
8237 Sandra Loosemore <sandra@codesourcery.com>
8238
8239 * dwarf2read.c (setup_type_unit_groups): Do NULL pointer check
8240 to 'lh->include_dirs' before accessing to it.
8241 (psymtab_include_file_name): Likewise.
8242 (dwarf_decode_lines_1): Likewise.
8243 (dwarf_decode_lines): Likewise.
8244 (file_file_name): Likewise.
8245
8246 2015-05-08 Sandra Loosemore <sandra@codesourcery.com>
8247
8248 * nios2-linux-tdep.c (NIOS2_SIGRETURN_TRAMP_ADDR): Define.
8249 (NIOS2_SIGRETURN_REGSAVE_OFFSET): Define.
8250 (nios2_linux_rt_sigreturn_init): Adjust base address of
8251 register save area.
8252
8253 2015-05-08 Sandra Loosemore <sandra@codesourcery.com>
8254
8255 * nios2-tdep.c (nios2_breakpoint_from_pc): Revert to using
8256 "trap 31" as the breakpoint instruction on all targets.
8257
8258 2015-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8259
8260 * infcmd.c (print_return_value): Remove unused declaration.
8261
8262 2015-05-08 Joel Brobecker <brobecker@adacore.com>
8263
8264 * dwarf2read.c (attr_to_dynamic_prop)
8265 <DW_AT_data_member_location>: Use read_type_die isntead of
8266 get_die_type.
8267
8268 2015-05-08 Joel Brobecker <brobecker@adacore.com>
8269
8270 * ada-lang.c (ada_convert_actual): Add handling of formals
8271 passed inside an aligner type.
8272
8273 2015-05-08 Joel Brobecker <brobecker@adacore.com>
8274
8275 * copyright.py (NOT_FSF_LIST): Remove sim/erc32 entries.
8276
8277 2015-05-08 Siva Chandra Reddy <sivachandra@google.com>
8278
8279 PR python/18291
8280 * python/lib/gdb/command/xmethods.py (print_xm_info): Fix typo.
8281 Print xmethod matcher status.
8282
8283 2015-05-08 Andreas Arnez <arnez@linux.vnet.ibm.com>
8284
8285 * s390-linux-nat.c (fill_gregset): Avoid relying on the PSWA
8286 register in the regcache when treating the PSWM register, and vice
8287 versa.
8288
8289 2015-05-07 Gary Benson <gbenson@redhat.com>
8290
8291 * linux-thread-db.c (struct thread_db_info)
8292 <td_ta_map_id2thr_p>: Remove field.
8293 (try_thread_db_load_1): Remove initialization for the above.
8294
8295 2015-05-07 Gary Benson <gbenson@redhat.com>
8296
8297 * linux-thread-db.c (struct thread_db_info)
8298 <td_thr_validate_p>: Remove field.
8299 (try_thread_db_load_1): Remove initialization for the above.
8300
8301 2015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
8302
8303 * compile/compile-object-load.c (compile_object_load): Support
8304 mst_text_gnu_ifunc.
8305
8306 2015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
8307
8308 * compile/compile.c (compile_to_object): Make the cmd_string parameter
8309 const. Use new variables for the const compatibility.
8310 (eval_compile_command): Make the cmd_string parameter const.
8311 * compile/compile.h (eval_compile_command): Make the cmd_string
8312 parameter const.
8313
8314 2015-05-06 Joel Brobecker <brobecker@adacore.com>
8315
8316 * defs.h (deprecated_init_ui_hook): Delete. Remove associated
8317 comment.
8318 * top.c (deprecated_init_ui_hook): Delete.
8319 (gdb_init): Remove handling of deprecated_init_ui_hook.
8320 * interps.c (clear_interpreter_hooks): Remove handling of
8321 deprecated_init_ui_hook.
8322 * main.c (captured_main): Update comment.
8323
8324 2015-05-06 Joel Brobecker <brobecker@adacore.com>
8325
8326 * solib.c (_initialize_solib): Add "info dll" alias creation.
8327 * windows-nat.c (set_windows_aliases): Delete.
8328 (_initialize_windows_nat): Remove deprecated_init_ui_hook
8329 assignment.
8330 * NEWS: Add news entry about "info dll" now being available
8331 on all platforms.
8332
8333 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8334
8335 * ada-lang.c (value_assign_to_component): Reformat and improve
8336 documentation. Remove all trailing spaces.
8337
8338 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8339
8340 * inline-frame.c (inline_frame_sniffer, skip_inline_frames):
8341 Stop counting inlined frames as soon as an out-of-line function
8342 is found.
8343
8344 2014-05-05 Pierre-Marie de Rodat <derodat@adacore.com>
8345
8346 * dwarf2read.c (inherit_abstract_dies): Skip
8347 DW_TAG_GNU_call_site dies while inheriting children of an
8348 abstract DIE into a scope.
8349 (read_lexical_block_scope): Inherit abstract DIE's for
8350 lexical scopes.
8351
8352 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8353
8354 * ada-valprint.c (val_print_packed_array_elements): Delete
8355 variable "len". Add a type-length check when comparing two
8356 consecutive elements of the array. Use the element's actual
8357 length in call to value_contents_eq.
8358 * ada-lang.c (ada_value_primitive_packed_val): Always return
8359 a value whose type has been resolved.
8360
8361 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8362
8363 * ada-lang.c (ada_value_primitive_packed_val): Recompute
8364 BIT_SIZE and LEN if the size of the resolved type is smaller
8365 than BIT_SIZE * HOST_CHAR_BIT.
8366
8367 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8368
8369 * ada-lang.c (ada_value_primitive_packed_val): Use a more
8370 correct address in call to value_at. Adjust call to
8371 value_address accordingly.
8372
8373 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8374
8375 * ada-valprint.c (ada_val_print_1): Resolve TYPE before trying
8376 to print it.
8377
8378 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8379
8380 * dwarf2loc.h (struct property_addr_info): Add "valaddr" field.
8381 * dwarf2loc.c (dwarf2_evaluate_property): Add handling of
8382 pinfo->valaddr.
8383 * gdbtypes.h (resolve_dynamic_type): Add "valaddr" parameter.
8384 * gdbtypes.c (resolve_dynamic_struct): Set pinfo.valaddr.
8385 (resolve_dynamic_type_internal): Set pinfo.valaddr.
8386 Add handling of addr_stack->valaddr.
8387 (resolve_dynamic_type): Add "valaddr" parameter.
8388 Set pinfo.valaddr field.
8389 * ada-lang.c (ada_discrete_type_high_bound): Update call to
8390 resolve_dynamic_type.
8391 (ada_discrete_type_low_bound): Likewise.
8392 * findvar.c (default_read_var_value): Likewise.
8393 * value.c (value_from_contents_and_address): Likewise.
8394
8395 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8396
8397 * gdbtypes.c (resolve_dynamic_array): Use
8398 create_array_type_with_stride instead of create_array_type.
8399
8400 2015-04-30 DJ Delorie <dj@redhat.com>
8401
8402 * rl78-tdep.c (rl78_analyze_prologue): Pass RL78_ISA_DEFAULT to
8403 rl78_decode_opcode
8404
8405 2015-04-29 Doug Evans <dje@google.com>
8406
8407 PR python/18285
8408 * NEWS: Document new gdb.XMethodWorker.get_result_type method.
8409 * eval.c (evaluate_subexp_standard) <OP_FUNCALL>: Handle
8410 EVAL_AVOID_SIDE_EFFECTS for xmethods.
8411 * extension-priv.h (struct extension_language_ops)
8412 <get_xmethod_result_type>: New member.
8413 * extension.c (get_xmethod_result_type): New function.
8414 * extension.h (get_xmethod_result_type): Declare.
8415 * python/py-xmethods.c (get_result_type_method_name): New static
8416 global.
8417 (py_get_result_type_method_name): Ditto.
8418 (gdbpy_get_xmethod_result_type): New function.
8419 (gdbpy_initialize_xmethods): Initialize py_get_result_type_method_name.
8420 * python/python-internal.h (gdbpy_get_xmethod_result_type): Declare.
8421 * python/python.c (python_extension_ops): Add
8422 gdbpy_get_xmethod_result_type.
8423 * python/lib/gdb/xmethod.py (XMethodWorker): Add get_result_type.
8424 * valarith.c (value_x_binop): Handle EVAL_AVOID_SIDE_EFFECTS for
8425 xmethods.
8426 (value_x_unop): Ditto.
8427 * value.c (result_type_of_xmethod): New function.
8428 * value.h (result_type_of_xmethod): Declare.
8429
8430 2015-04-29 Gary Benson <gbenson@redhat.com>
8431
8432 * solib.c (solib_find_1): Allow fd argument to be NULL.
8433 (exec_file_find): Update comment.
8434 (solib_find): Likewise.
8435 * exec.c (exec_file_locate_attach): Use NULL as fd
8436 argument to exec_file_find to avoid having to close
8437 the opened file.
8438 * infrun.c (follow_exec): Likewise.
8439
8440 2015-04-28 Doug Evans <dje@google.com>
8441
8442 PR python/18299
8443 * python/lib/gdb/printing.py (register_pretty_printer): Handle
8444 name or __name__ attributes. Handle gdb module as first argument.
8445
8446 2015-04-28 Doug Evans <dje@google.com>
8447
8448 PR python/18089
8449 * python/py-prettyprint.c (print_children): Verify result of children
8450 iterator. Provide better error message.
8451 * python/python-internal..h (gdbpy_print_python_errors_p): Declare.
8452 * python/python.c (gdbpy_print_python_errors_p): New function.
8453
8454 2015-04-28 Doug Evans <dje@google.com>
8455
8456 * gdbtypes.h (struct cplus_struct_type) <n_baseclasses>: Fix comment.
8457
8458 2015-04-28 Sasha Smundak <asmundak@google.com>
8459
8460 * NEWS: Mention gdb.Type.optimized_out method.
8461 * python/py-type.c (typy_optimized_out): New function.
8462
8463 2015-04-28 John Baldwin <jhb@FreeBSD.org>
8464
8465 * fbsd-nat.c: Include "gdb_wait.h" instead of <sys/wait.h>.
8466
8467 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8468
8469 * utils.c (init_page_info): Set rl_catch_sigwinch to zero.
8470 (initialize_utils): Move call of init_page_info() to ...
8471 * top.c (gdb_init): ... here.
8472
8473 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8474
8475 * tui/tui-win.c (tui_sigwinch_handler): Remove now-stale comment.
8476 (tui_sigwinch_handler): Still update our idea of
8477 the terminal's width and height even when TUI is not active.
8478
8479 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8480
8481 * utils.h (set_screen_width_and_height): Declare.
8482 * utils.c (set_screen_width_and_height): Define.
8483 * tui/tui-win.c (tui_update_gdb_sizes): Use it.
8484
8485 2015-04-28 Gary Benson <gbenson@redhat.com>
8486
8487 * infrun.c (solist.h): New include.
8488 (follow_exec): Use exec_file_find to prefix execd_pathname
8489 with gdb_sysroot.
8490
8491 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8492
8493 * tui/tui-source.c (tui_set_source_content): Avoid calling
8494 strcpy() when offset is 0.
8495
8496 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8497
8498 PR gdb/18155
8499 * tui/tui-data.c (tui_free_window): Don't free the locator
8500 window when passed an SRC_WIN or a DISASSEM_WIN.
8501
8502 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8503
8504 * tui/tui-data.h (struct tui_win_element): Forward-declare.
8505 (tui_win_content): Move declaration.
8506 (struct tui_gen_win_info): Give 'content' field the
8507 type tui_win_content.
8508 * tui/tui-data.c (init_content_element): Remove redundant and
8509 erroneous casts.
8510 (tui_add_content_elements): Remove erroneous cast.
8511 * tui/tui-disasm.c (tui_set_disassem_content): Remove redundant
8512 casts.
8513 (tui_get_begin_asm_address): Likewise.
8514 * tui/tui-regs.c (tui_show_registers): Likewise.
8515 (tui_show_register_group): Likewise.
8516 (tui_display_registers_from): Likewise.
8517 (tui_check_register_values): Likewise.
8518 * tui/tui-source.c (tui_set_source_content): Likewise.
8519 (tui_set_source_content_nil): Likewise.
8520 (tui_source_is_displayed): Likewise.
8521 * tui/tui-stack.c (tui_show_locator_content): Likewise.
8522 (tui_set_locator_fullname): Likewise.
8523 (tui_set_locator_info): Likewise.
8524 (tui_show_frame_info): Likewise.
8525 * tui/tui-winsource.c (tui_clear_source_content): Likewise.
8526 (tui_show_source_line): Likewise.
8527 (tui_horizontal_source_scroll): Likewise.
8528 (tui_update_breakpoint_info): Likewise.
8529 (tui_set_exec_info_content): Likewise.
8530 (tui_show_exec_info_content): Likewise.
8531 (tui_alloc_source_buffer): Likewise.
8532 (tui_line_is_displayed): Likewise.
8533 (tui_addr_is_displayed): Likewise.
8534
8535 2015-04-27 John Baldwin <jhb@FreeBSD.org>
8536
8537 * fbsd-nat.c: (fbsd_wait) [PL_FLAG_EXEC]: Report TARGET_WAITKIND_EXECD
8538 event if PL_FLAG_EXEC is set.
8539 [PL_FLAG_EXEC] (fbsd_insert_exec_catchpoint): New function.
8540 [PL_FLAG_EXEC] (fbsd_remove_exec_catchpoint): New function.
8541 (fbsd_nat_add_target) [PL_FLAG_EXEC]: Set
8542 "to_insert_exec_catchpoint" to "fbsd_insert_exec_catchpoint".
8543 Set "to_remove_exec_catchpoint" to "fbsd_remove_exec_catchpoint".
8544
8545 2015-04-27 John Baldwin <jhb@FreeBSD.org>
8546
8547 * fbsd-nat.c: [PT_LWPINFO] New variable super_wait.
8548 [TDP_RFPPWAIT] New variable fbsd_pending_children.
8549 [TDP_RFPPWAIT] (fbsd_remember_child): New function.
8550 [TDP_RFPPWAIT] (fbsd_is_child_pending): New function.
8551 [TDP_RFPPWAIT] (fbsd_fetch_kinfo_proc): New function.
8552 [PT_LWPINFO] (fbsd_wait): New function.
8553 [TDP_RFPPWAIT] (fbsd_follow_fork): New function.
8554 [TDP_RFPPWAIT] (fbsd_insert_fork_catchpoint): New function.
8555 [TDP_RFPPWAIT] (fbsd_remove_fork_catchpoint): New function.
8556 [TDP_RFPPWAIT] (fbsd_insert_vfork_catchpoint): New function.
8557 [TDP_RFPPWAIT] (fbsd_remove_vfork_catchpoint): New function.
8558 [TDP_RFPPWAIT] (fbsd_enable_follow_fork): New function.
8559 [TDP_RFPPWAIT] (fbsd_post_startup_inferior): New function.
8560 [TDP_RFPPWAIT] (fbsd_post_attach): New function.
8561 (fbsd_nat_add_target) [PT_LWPINFO] Set "to_wait" to
8562 "fbsd_wait".
8563 [TDP_RFPPWAIT] Set "to_follow_fork" to "fbsd_follow_fork".
8564 Set "to_insert_fork_catchpoint" to "fbsd_insert_fork_catchpoint".
8565 Set "to_remove_fork_catchpoint" to "fbsd_remove_fork_catchpoint".
8566 Set "to_insert_vfork_catchpoint" to "fbsd_insert_vfork_catchpoint".
8567 Set "to_remove_vfork_catchpoint" to "fbsd_remove_vfork_catchpoint".
8568 Set "to_post_startup_inferior" to "fbsd_post_startup_inferior".
8569 Set "to_post_attach" to "fbsd_post_attach".
8570
8571 2015-04-27 John Baldwin <jhb@FreeBSD.org>
8572
8573 * fbsd-nat.c (fbsd_pid_to_exec_file): Mark static.
8574 (fbsd_find_memory_regions): Mark static.
8575 (fbsd_nat_add_target): New function.
8576 * fbsd-nat.h: Export fbsd_nat_add_target and remove prototypes for
8577 fbsd_pid_to_exec_file and fbsd_find_memory_regions.
8578 * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Use fbsd_nat_add_target.
8579 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Likewise.
8580 * ppcfbsd-nat.c (_initialize_ppcfbsd_nat): Likewise.
8581 * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Likewise.
8582
8583 2015-04-27 Gary Benson <gbenson@redhat.com>
8584
8585 * objfiles.c (allocate_objfile): Do not attempt to expand name
8586 if name is a "target:" filename.
8587 * auto-load.c (load_auto_scripts_for_objfile): Do not attempt
8588 to load auto-load scripts for objfiles with "target:" filenames.
8589
8590 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8591
8592 * s390-linux-tdep.c: Include "elf/s390.h" and "elf-bfd.h".
8593 (enum s390_vector_abi_kind): New enum.
8594 (struct gdbarch_tdep)<vector_abi>: New field.
8595 (s390_effective_inner_type): Add parameter min_size. Stop
8596 unwrapping if the inner type is smaller than min_size.
8597 (s390_function_arg_float): Adjust call to
8598 s390_effective_inner_type.
8599 (s390_function_arg_vector): New function.
8600 (s390_function_arg_integer): Adjust comment.
8601 (struct s390_arg_state)<vr>: New field.
8602 (s390_handle_arg): Add parameter 'is_unnamed'. Pass vector
8603 arguments according to vector ABI when appropriate.
8604 (s390_push_dummy_call): Initialize the argument state's field
8605 'vr'. Adjust calls to s390_handle_arg.
8606 (s390_register_return_value): Handle vector return values.
8607 (s390_return_value): Apply the "register" return value convention
8608 to a vector when appropriate.
8609 (s390_gdbarch_init): Initialize tdep->vector_abi.
8610 * NEWS: Announce S390 vector ABI support.
8611
8612 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8613
8614 * s390-linux-tdep.c (s390_return_value_convention): Remove
8615 function. Inline its logic...
8616 (s390_return_value): ...here. Instead, move the handling of the
8617 "register" return value convention...
8618 (s390_register_return_value): ...here. New function.
8619
8620 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8621
8622 * s390-linux-tdep.c
8623 (is_float_singleton): Remove function. Move the "singleton" part
8624 of the logic...
8625 (s390_effective_inner_type): ...here. New function.
8626 (is_float_like): Remove function. Inline its logic...
8627 (s390_function_arg_float): ...here.
8628 (is_pointer_like, is_integer_like, is_struct_like): Remove
8629 functions. Inline their logic...
8630 (s390_function_arg_integer): ...here.
8631 (s390_function_arg_pass_by_reference): Remove function.
8632 (extend_simple_arg): Remove function.
8633 (alignment_of): Remove function.
8634 (struct s390_arg_state): New structure.
8635 (s390_handle_arg): New function.
8636 (s390_push_dummy_call): Move parameter placement logic to the new
8637 function s390_handle_arg. Call it for calculating the stack area
8638 sizes first, and again for actually writing the parameters.
8639
8640 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8641
8642 * s390-linux-tdep.c (is_power_of_two): Add comment. Return
8643 false if the argument is zero.
8644
8645 2015-04-27 Pierre-Marie de Rodat <derodat@adacore.com>
8646
8647 * ada-lang.c (template_to_static_fixed_type): Return input type
8648 when it is already fixed. Cache the input type itself when not
8649 creating a static fixed copy. Make it explicit that we never
8650 molestate the input type.
8651 * gdbtypes.c (resolve_dynamic_struct): Reset the
8652 TYPE_TARGET_TYPE field for resolved copies.
8653
8654 2015-04-27 Joel Brobecker <brobecker@adacore.com>
8655
8656 * ada-lang.c (ada_is_tagged_type): Add call to ada_check_typedef.
8657 (ada_lookup_struct_elt_type): Remove calls to ada_check_typedef.
8658 (template_to_static_fixed_type): Call ada_check_typedef only
8659 when necessary.
8660
8661 2015-04-24 Andrew Burgess <andrew.burgess@embecosm.com>
8662
8663 * cli/cli-dump.c (srec_dump_command): Add internationalization
8664 mark ups.
8665 (ihex_dump_command): Likewise.
8666 (tekhex_dump_command): Likewise.
8667 (binary_dump_command): Likewise.
8668 (binary_append_command): Likewise.
8669
8670 2015-04-24 Andrew Burgess <andrew.burgess@embecosm.com>
8671
8672 * cli/cli-dump.c (verilog_cmdlist): New variable.
8673 (dump_verilog_memory): New function.
8674 (dump_verilog_value): New function.
8675 (verilog_dump_command): New function.
8676 (_initialize_cli_dump): Add new commands to support verilog dump
8677 format.
8678 * NEWS: Add entry for "dump verilog".
8679
8680 2015-04-24 Pierre-Marie de Rodat <derodat@adacore.com>
8681
8682 * gdbtypes.c (print_gnat_stuff): Do not recurse on the
8683 descriptive type when there is none.
8684
8685 2015-04-23 Patrick Palka <patrick@parcs.ath.cx>
8686
8687 * tui/tui-win.c (tui_async_resize_screen): Call
8688 rl_resize_terminal().
8689
8690 2015-04-22 Jon Turney <jon.turney@dronecode.org.uk>
8691
8692 * windows-nat.c (handle_output_debug_string): Don't change
8693 current_event.dwThreadId.
8694 (get_windows_debug_event): Use thread_id, rather than relying on
8695 current_event.dwThreadId being changed.
8696
8697 2015-04-22 Jon Turney <jon.turney@dronecode.org.uk>
8698
8699 * windows-nat.c (windows_continue): Report an error if
8700 ContinueDebugEvent() fails.
8701
8702 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
8703
8704 * windows-nat.c (windows_resume): Fix misspelling in debug output.
8705
8706 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
8707
8708 * windows-nat.c (get_windows_debug_event): Replace retval with
8709 thread_id throughout. Update stale comment.
8710
8711 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
8712
8713 * windows-nat.c (get_windows_debug_event): Don't use ternary
8714 conditional operator.
8715
8716 2015-04-21 Pierre Muller <muller@sourceware.org>
8717
8718 PR pascal/17815
8719 p-exp.y (yylex): Reorganize code to return the matched pattern
8720 for a field of this.
8721
8722 2015-04-21 Gary Benson <gbenson@redhat.com>
8723
8724 * common/fileio.h (fileio_to_host_openflags): New declaration.
8725 * common/fileio.c (fcntl.h): New include.
8726 (fileio_to_host_openflags): New function, factored out from...
8727 * inf-child.c (inf_child_fileio_open_flags_to_host): ...here.
8728 Single use updated.
8729
8730 2015-04-21 Kevin Buettner <kevinb@redhat.com>
8731
8732 * rl78-tdep.c (RL78_SP_ADDR): Define.
8733 (opc_reg_to_gdb_regnum): New static function.
8734 (rl78_analyze_prologue): Recognize instructions forming slightly
8735 more interesting prologues.
8736
8737 2015-04-20 Pierre-Marie de Rodat <derodat@adacore.com>
8738
8739 Revert:
8740 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
8741 * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
8742 TYPE_CODE_REF types so that they are not considered as dynamic
8743 depending on the referenced type.
8744 (resolve_dynamic_type_internal): Likewise.
8745
8746 2015-04-20 Pierre-Marie de Rodat <derodat@adacore.com>
8747
8748 Revert:
8749 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
8750 * gdbtypes.c (is_dynamic_type_internal): Remove the unused
8751 "top_level" parameter.
8752 (resolve_dynamic_type_internal): Remove the unused "top_level"
8753 parameter. Update call to is_dynamic_type_internal.
8754 (is_dynamic_type): Update call to is_dynamic_type_internal.
8755 (resolve_dynamic_range): Update call to
8756 resolve_dynamic_type_internal.
8757 (resolve_dynamic_union): Likewise.
8758 (resolve_dynamic_struct): Likewise.
8759 (resolve_dynamic_type): Likewise.
8760
8761 2015-04-19 Gabriel Krisman Bertazi <gabriel@krisman.be>
8762
8763 * breakpoint.c (update_dprintf_command_list): Remove duplicated
8764 xmalloc.
8765
8766 2015-04-20 Thomas Schwinge <thomas@codesourcery.com>
8767
8768 * reply_mig_hack.awk: Robustify parsing.
8769
8770 * reply_mig_hack.awk: Don't bother to declare an intermediate
8771 function pointer variable.
8772
8773 2015-04-17 Doug Evans <dje@google.com>
8774
8775 * solib-svr4.c (svr4_exec_displacement): Rename outer "displacement"
8776 to "exec_displacement" to avoid confusion with inner use of the name.
8777
8778 2015-04-17 Pedro Alves <palves@redhat.com>
8779
8780 * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Return zero
8781 if HW point of TYPE isn't supported.
8782
8783 2015-04-17 Yao Qi <yao.qi@linaro.org>
8784 Pedro Alves <palves@redhat.com>
8785
8786 * target.h (target_can_use_hardware_watchpoint): Update comments.
8787 Remove trailing ";".
8788
8789 2015-04-17 Gary Benson <gbenson@redhat.com>
8790
8791 * remote.c (remote_add_inferior): New argument try_open_exec.
8792 If nonzero, attempt to open the inferior's executable file as
8793 the main executable if no main executable is open already.
8794 All callers updated.
8795 * NEWS: Mention that GDB now supports automatic location and
8796 retrieval of executable + files from remote targets.
8797
8798 2015-04-17 Gary Benson <gbenson@redhat.com>
8799
8800 * target.h (TARGET_OBJECT_EXEC_FILE): New enum value.
8801 * remote.c (PACKET_qXfer_exec_file): Likewise.
8802 (remote_protocol_features): Register the
8803 "qXfer:exec-file:read" feature.
8804 (remote_xfer_partial): Handle TARGET_OBJECT_EXEC_FILE.
8805 (remote_pid_to_exec_file): New function.
8806 (init_remote_ops): Initialize to_pid_to_exec_file.
8807 (_initialize_remote): Register new "set/show remote
8808 pid-to-exec-file-packet" command.
8809 * NEWS: Announce new qXfer:exec-file:read packet.
8810
8811 2015-04-17 Gary Benson <gbenson@redhat.com>
8812
8813 * nat/linux-procfs.h (linux_proc_pid_to_exec_file):
8814 New declaration.
8815 * nat/linux-procfs.c (linux_proc_pid_to_exec_file):
8816 New function, factored out from...
8817 * linux-nat.c (linux_child_pid_to_exec_file): ...here.
8818
8819 2015-04-17 Gary Benson <gbenson@redhat.com>
8820
8821 * exec.c (solist.h): New include.
8822 (exec_file_locate_attach): Prefix absolute executable
8823 paths with gdb_sysroot if set.
8824 * NEWS: Mention that executable paths may be prepended
8825 with sysroot.
8826
8827 2015-04-17 Gary Benson <gbenson@redhat.com>
8828
8829 * solist.h (exec_file_find): New declaration.
8830 * solib.c (solib_find_1): New function, factored out from...
8831 (solib_find): ...here.
8832 (exec_file_find): New function.
8833
8834 2015-04-17 Gary Benson <gbenson@redhat.com>
8835
8836 * gdbcore.h (exec_file_locate_attach): New declaration.
8837 * exec.c (exec_file_locate_attach): New function, factored
8838 out from...
8839 * infcmd.c (attach_command_post_wait): ...here.
8840
8841 2015-04-17 Mike Frysinger <vapier@gentoo.org>
8842
8843 * MAINTAINERS: Add myself for Blackfin/write-after-approval.
8844
8845 2015-04-16 Yao Qi <yao.qi@linaro.org>
8846
8847 * infrun.c (maybe_software_singlestep): Declare.
8848 (displaced_step_fixup): Call maybe_software_singlestep.
8849
8850 2015-04-15 Doug Evans <dje@google.com>
8851
8852 * psymtab.c (psym_expand_symtabs_matching): Add QUIT call.
8853
8854 2015-04-15 Doug Evans <dje@google.com>
8855
8856 * dwarf2read.c (dw2_expand_symtabs_matching): Add some QUIT calls.
8857
8858 2015-04-15 Simon Marchi <simon.marchi@ericsson.com>
8859
8860 * python/lib/gdb/command/unwinders.py: Add parentheses.
8861
8862 2015-04-15 Yao Qi <yao.qi@linaro.org>
8863
8864 * arm-linux-tdep.c (arm_linux_copy_svc): Update debug message.
8865
8866 2015-04-15 Yao Qi <yao.qi@linaro.org>
8867
8868 * arm-linux-tdep.c (arm_linux_copy_svc): Fix indentation.
8869
8870 2015-04-15 Yao Qi <yao.qi@linaro.org>
8871
8872 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
8873 dsc->insn_size instead of 4.
8874
8875 2015-04-14 Gary Benson <gbenson@redhat.com>
8876
8877 * jit.c (mem_bfd_iovec_stat): Zero supplied buffer.
8878 * minidebug.c (lzma_stat): Likewise.
8879 * solib-spu.c (spu_bfd_iovec_stat): Likewise.
8880 * spu-linux-nat.c (spu_bfd_iovec_stat): Likewise.
8881
8882 2015-04-13 Stan Shebs <stanshebs@google.com>
8883
8884 * MAINTAINERS: Update my email address.
8885
8886 2015-04-13 John Baldwin <jhb@FreeBSD.org>
8887
8888 * amd64-tdep.c (amd64_target_description): New function.
8889 * amd64-tdep.h: Export amd64_target_description and tdesc_amd64.
8890 * amd64bsd-nat.c [PT_GETXSTATE_INFO]: New variable amd64bsd_xsave_len.
8891 (amd64bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
8892 x86 extended save area.
8893 (amd64bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
8894 * amd64bsd-nat.h: Export amd64bsd_xsave_len.
8895 * amd64fbsd-nat.c (amd64fbsd_read_description): New function.
8896 (_initialize_amd64fbsd_nat): Set "to_read_description" to
8897 "amd64fbsd_read_description".
8898 * amd64fbsd-tdep.c (amd64fbsd_core_read_description): New function.
8899 (amd64fbsd_supply_xstateregset): New function.
8900 (amd64fbsd_collect_xstateregset): New function.
8901 Add "amd64fbsd_xstateregset".
8902 (amd64fbsd_iterate_over_regset_sections): New function.
8903 (amd64fbsd_init_abi): Set "xsave_xcr0_offset" to
8904 "I386_FBSD_XSAVE_XCR0_OFFSET".
8905 Add "iterate_over_regset_sections" gdbarch method.
8906 Add "core_read_description" gdbarch method.
8907 * i386-tdep.c (i386_target_description): New function.
8908 * i386-tdep.h: Export i386_target_description and tdesc_i386.
8909 * i386bsd-nat.c [PT_GETXSTATE_INFO]: New variable i386bsd_xsave_len.
8910 (i386bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
8911 x86 extended save area.
8912 (i386bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
8913 * i386bsd-nat.h: Export i386bsd_xsave_len.
8914 * i386fbsd-nat.c (i386fbsd_read_description): New function.
8915 (_initialize_i386fbsd_nat): Set "to_read_description" to
8916 "i386fbsd_read_description".
8917 * i386fbsd-tdep.c (i386fbsd_core_read_xcr0): New function.
8918 (i386fbsd_core_read_description): New function.
8919 (i386fbsd_supply_xstateregset): New function.
8920 (i386fbsd_collect_xstateregset): New function.
8921 Add "i386fbsd_xstateregset".
8922 (i386fbsd_iterate_over_regset_sections): New function.
8923 (i386fbsd4_init_abi): Set "xsave_xcr0_offset" to
8924 "I386_FBSD_XSAVE_XCR0_OFFSET".
8925 Add "iterate_over_regset_sections" gdbarch method.
8926 Add "core_read_description" gdbarch method.
8927 * i386fbsd-tdep.h: New file.
8928
8929 2015-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8930
8931 * NEWS (Changes since GDB 7.9): Add removed -xdb.
8932 * breakpoint.c (command_line_is_silent): Remove xdb_commands
8933 conditional.
8934 (_initialize_breakpoint): Remove xdb_commands for bc, ab, sb, db, ba
8935 and lb.
8936 * cli/cli-cmds.c (_initialize_cli_cmds): Remove xdb_commands for v and
8937 va.
8938 * cli/cli-decode.c (find_command_name_length): Remove xdb_commands
8939 conditional.
8940 * defs.h (xdb_commands): Remove declaration.
8941 * f-valprint.c (_initialize_f_valprint): Remove xdb_commands for lc.
8942 * guile/scm-cmd.c (command_classes): Remove xdb from comment.
8943 * infcmd.c (run_no_args_command, go_command): Remove.
8944 (_initialize_infcmd): Remove xdb_commands for S, go, g, R and lr.
8945 * infrun.c (xdb_handle_command): Remove.
8946 (_initialize_infrun): Remove xdb_commands for lz and z.
8947 * main.c (xdb_commands): Remove variable.
8948 (captured_main): Remove "xdb" from long_options.
8949 (print_gdb_help): Remove --xdb from help.
8950 * python/py-cmd.c (gdbpy_initialize_commands): Remove xdb from comment.
8951 * source.c (_initialize_source): Remove xdb_commands for D, ld, / and ?.
8952 * stack.c (backtrace_full_command, args_plus_locals_info)
8953 (current_frame_command): Remove.
8954 (_initialize_stack): Remove xdb_commands for t, T and l.
8955 * symtab.c (_initialize_symtab): Remove xdb_commands for lf and lg.
8956 * thread.c (_initialize_thread): Remove xdb_commands condition.
8957 * tui/tui-layout.c (tui_toggle_layout_command)
8958 (tui_toggle_split_layout_command, tui_handle_xdb_layout): Remove.
8959 (_initialize_tui_layout): Remove xdb_commands for td and ts.
8960 * tui/tui-regs.c (tui_scroll_regs_forward_command)
8961 (tui_scroll_regs_backward_command): Remove.
8962 (_initialize_tui_regs): Remove xdb_commands for fr, gr, sr, +r and -r.
8963 * tui/tui-win.c (tui_xdb_set_win_height_command): Remove.
8964 (_initialize_tui_win): Remove xdb_commands for U and w.
8965 * utils.c (pagination_on_command, pagination_off_command): Remove.
8966 (initialize_utils): Remove xdb_commands for am and sm.
8967
8968 2015-04-10 Pedro Alves <palves@redhat.com>
8969
8970 * infrun.c (displaced_step_fixup): Switch to the event ptid
8971 earlier. If the thread stopped for a watchpoint and the
8972 target/arch has non-continuable watchpoints, cancel the displaced
8973 step.
8974 (resume): Don't start a displaced step if in-line step-over info
8975 is valid.
8976
8977 2015-04-10 Pedro Alves <palves@redhat.com>
8978
8979 * infrun.c (displaced_step_in_progress): New function.
8980 (do_target_resume): Advise target to report all signals if
8981 displaced stepping.
8982
8983 2015-04-10 Pedro Alves <palves@redhat.com>
8984
8985 PR gdb/18216
8986 * infrun.c (process_event_stop_test): Don't assume a step-resume
8987 is set if tp->stepped_breakpoint is true.
8988
8989 2015-04-10 Yao Qi <yao.qi@linaro.org>
8990
8991 * arm-tdep.c (install_alu_reg): Update comment.
8992 (thumb_copy_alu_reg): Remove local variable rn. Update
8993 debugging message. Use r2 instead of r1 in the modified
8994 instruction.
8995
8996 2015-04-10 Pedro Alves <palves@redhat.com>
8997
8998 PR gdb/13858
8999 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Install
9000 linux_displaced_step_location as gdbarch_displaced_step_location
9001 hook.
9002 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
9003 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
9004 * linux-tdep.c (linux_displaced_step_location): New function,
9005 based on ppc_linux_displaced_step_location.
9006 * linux-tdep.h (linux_displaced_step_location): New declaration.
9007 * ppc-linux-tdep.c (ppc_linux_entry_point_addr): Delete.
9008 (ppc_linux_inferior_created, ppc_linux_displaced_step_location):
9009 Delete.
9010 (ppc_linux_init_abi): Install linux_displaced_step_location as
9011 gdbarch_displaced_step_location hook, even without Cell/B.E..
9012 (_initialize_ppc_linux_tdep): Don't install
9013 ppc_linux_inferior_created as inferior_created observer.
9014 * s390-linux-tdep.c (s390_gdbarch_init): Install
9015 linux_displaced_step_location as gdbarch_displaced_step_location
9016 hook.
9017
9018 2015-04-09 Gary Benson <gbenson@redhat.com>
9019
9020 * common/common-remote-fileio.h: Rename to...
9021 * common/fileio.h: ...this. Update all references.
9022 (remote_fileio_to_fio_error): Rename to...
9023 (host_to_fileio_error): ...this.
9024 (remote_fileio_to_be): Rename to...
9025 (host_to_bigendian): ...this. Update all callers.
9026 (remote_fileio_to_fio_uint): Rename to...
9027 (host_to_fileio_uint): ...this. Update all callers.
9028 (remote_fileio_to_fio_time): Rename to...
9029 (host_to_fileio_time): ...this. Update all callers.
9030 (remote_fileio_to_fio_stat): Rename to...
9031 (host_to_fileio_stat): ...this.
9032 Update all references.
9033 * common/common-remote-fileio.c: Rename to...
9034 * common/fileio.c: ...this. Update all references.
9035 (remote_fileio_to_fio_error): Rename to...
9036 (host_to_fileio_error): ...this. Update all callers.
9037 (remote_fileio_mode_to_target): Rename to...
9038 (fileio_mode_pack): ...this. Update all callers.
9039 (remote_fileio_to_fio_mode): Rename to...
9040 (host_to_fileio_mode): ...this. Update all callers.
9041 (remote_fileio_to_fio_ulong): Rename to...
9042 (host_to_fileio_ulong): ...this. Update all callers.
9043 (remote_fileio_to_fio_stat): Rename to...
9044 (host_to_fileio_stat): ...this. Update all callers.
9045
9046 2015-04-09 Andy Wingo <wingo@igalia.com>
9047
9048 * guile/scm-frame.c (gdbscm_frame_read_register): New function.
9049 (frame_functions): Bind gdbscm_frame_read_register to
9050 frame-read-register.
9051 * guile/lib/gdb.scm (frame-read-register): Export.
9052
9053 2015-04-09 Gary Benson <gbenson@redhat.com>
9054
9055 * common/common-remote-fileio.h (remote_fileio_to_fio_error):
9056 New declaration.
9057 * common/common-remote-fileio.c (remote_fileio_to_fio_error):
9058 New function, factored out the named functions below.
9059 * inf-child.c (gdb/fileio.h): Remove include.
9060 (common-remote-fileio.h): New include.
9061 (inf_child_errno_to_fileio_error): Remove function. Update
9062 all callers to use remote_fileio_to_fio_error.
9063 * remote-fileio.c (remote_fileio_errno_to_target): Likewise.
9064
9065 2015-04-09 Andy Wingo <wingo@igalia.com>
9066
9067 * MAINTAINERS (Write After Approval): Add Andy Wingo.
9068
9069 2015-04-09 H.J. Lu <hongjiu.lu@intel.com>
9070
9071 * acinclude.m4: (GDB_AC_CHECK_BFD): Set ZLIBDIR with $zlibdir.
9072 Replace $zlibdir with $ZLIBDIR in LDFLAGS.
9073 * configure: Regenerated.
9074
9075 2015-04-09 Pedro Alves <palves@redhat.com>
9076
9077 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strtok_r.
9078 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/strtok_r.m4.
9079 * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: Regenerate.
9080 * gnulib/import/Makefile.am: Update.
9081 * gnulib/import/Makefile.in: Update.
9082 * gnulib/import/m4/gnulib-cache.m4: Update.
9083 * gnulib/import/m4/gnulib-comp.m4: Update.
9084 * gnulib/import/m4/strtok_r.m4: New file.
9085 * gnulib/import/strtok_r.c: New file.
9086
9087 2015-04-09 Pedro Alves <palves@redhat.com>
9088
9089 * gnulib/update-gnulib.sh (aclocal version check): Filter out
9090 "called too early to check prototype".
9091
9092 2015-04-08 Sergio Durigan Junior <sergiodj@redhat.com>
9093
9094 PR python/16699
9095 * python/py-cmd.c (cmdpy_completer_helper): Adjust function to not
9096 use a caching mechanism. Adjust comments and code to reflect
9097 that. Replace 'sizeof' by 'strlen' when fetching 'wordobj'.
9098 (cmdpy_completer_handle_brkchars): Adjust call to
9099 cmdpy_completer_helper. Call Py_XDECREF for 'resultobj'.
9100 (cmdpy_completer): Likewise.
9101
9102 2015-04-08 Yao Qi <yao.qi@linaro.org>
9103
9104 * spu-tdep.c (spu_gdbarch_init): Don't call
9105 set_gdbarch_cannot_step_breakpoint.
9106
9107 2015-04-07 Sergio Durigan Junior <sergiodj@redhat.com>
9108
9109 * linux-tdep.c (decode_vmflags): Initialize 'saveptr'.
9110
9111 2015-04-07 Pedro Alves <palves@redhat.com>
9112
9113 * gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): Rename to ...
9114 (ALL_THREADS_SAFE): ... this, and don't skip exited threads.
9115 (delete_exited_threads): New declaration.
9116 * infrun.c (follow_exec): Use ALL_THREADS_SAFE.
9117 * linux-nat.c (linux_nat_update_thread_list): New function.
9118 (linux_nat_add_target): Install it.
9119 * remote.c (remote_update_thread_list): Use ALL_THREADS_SAFE.
9120 * thread.c (prune_threads): Use ALL_THREADS_SAFE.
9121 (delete_exited_threads): New function.
9122
9123 2015-04-07 Pedro Alves <pedro@codesourcery.com>
9124
9125 * infrun.c (resume) <displaced stepping debug output>: Get the
9126 leader thread's regcache, not resume_ptid's.
9127
9128 2015-04-06 Doug Evans <xdje42@gmail.com>
9129
9130 * symtab.c (hash_symbol_entry): Hash STRUCT_DOMAIN symbols as
9131 VAR_DOMAIN.
9132 (symbol_cache_lookup): Clarify use of bsc_ptr, slot_ptr parameters.
9133 Include symbol domain in debugging output.
9134
9135 2015-04-06 Pedro Alves <palves@redhat.com>
9136 Bernd Edlinger <bernd.edlinger@hotmail.de>
9137
9138 * configure.ac: Remove the mingw32-specific stub-termcap.o
9139 fallback, and instead fallback to the stub termcap on all hosts.
9140 * configure: Regenerate.
9141 * stub-termcap.c [!__MINGW32__] (PC, BC, UP): Define as weak
9142 symbols.
9143
9144 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
9145
9146 * gdbtypes.c (is_dynamic_type_internal): Remove the unused
9147 "top_level" parameter.
9148 (resolve_dynamic_type_internal): Remove the unused "top_level"
9149 parameter. Update call to is_dynamic_type_internal.
9150 (is_dynamic_type): Update call to is_dynamic_type_internal.
9151 (resolve_dynamic_range): Update call to
9152 resolve_dynamic_type_internal.
9153 (resolve_dynamic_union): Likewise.
9154 (resolve_dynamic_struct): Likewise.
9155 (resolve_dynamic_type): Likewise.
9156
9157 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
9158
9159 * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
9160 TYPE_CODE_REF types so that they are not considered as dynamic
9161 depending on the referenced type.
9162 (resolve_dynamic_type_internal): Likewise.
9163
9164 2015-04-02 H.J. Lu <hongjiu.lu@intel.com>
9165
9166 * Makefile.in (top_srcdir): New.
9167 * configure: Regenerated.
9168
9169 2015-04-02 Gary Benson <gbenson@redhat.com>
9170
9171 * NEWS: Announce the new default sysroot of "target:".
9172
9173 2015-04-02 Gary Benson <gbenson@redhat.com>
9174
9175 * main.c (captured_main): Set gdb_sysroot to "target:"
9176 if not otherwise set.
9177
9178 2015-04-02 Gary Benson <gbenson@redhat.com>
9179
9180 * exec.c (exec_file_attach): Support "target:" filenames.
9181
9182 2015-04-02 Gary Benson <gbenson@redhat.com>
9183
9184 * solib.c (solib_find): Strip "target:" prefix from sysroot
9185 if accessing local files.
9186
9187 2015-04-02 Gary Benson <gbenson@redhat.com>
9188
9189 * symfile.c (symfile_bfd_open): Reorder to remove duplicated
9190 checks and error messages.
9191
9192 2015-04-02 Gary Benson <gbenson@redhat.com>
9193
9194 * remote.h (REMOTE_SYSROOT_PREFIX): Remove definition.
9195 (remote_filename_p): Remove declaration.
9196 (remote_bfd_open): Likewise.
9197 * remote.c (remote_bfd_iovec_open): Remove function.
9198 (remote_bfd_iovec_close): Likewise.
9199 (remote_bfd_iovec_pread): Likewise.
9200 (remote_bfd_iovec_stat): Likewise.
9201 (remote_filename_p): Likewise.
9202 (remote_bfd_open): Likewise.
9203 * symfile.h (gdb_bfd_open_maybe_remote): Remove declaration.
9204 * symfile.c (separate_debug_file_exists): Use gdb_bfd_open.
9205 (gdb_bfd_open_maybe_remote): Remove function.
9206 (symfile_bfd_open): Replace remote filename check with
9207 target filename check.
9208 (reread_symbols): Use gdb_bfd_open.
9209 * build-id.c (gdbcore.h): New include.
9210 (build_id_to_debug_bfd): Use gdb_bfd_open.
9211 * infcmd.c (attach_command_post_wait): Remove remote filename
9212 check.
9213 * solib.c (solib_find): Replace remote-specific handling with
9214 target-specific handling. Update comments where necessary.
9215 (solib_bfd_open): Replace remote-specific handling with
9216 target-specific handling.
9217 (gdb_sysroot_changed): New function.
9218 (_initialize_solib): Call the above when gdb_sysroot changes.
9219 * windows-tdep.c (gdbcore.h): New include.
9220 (windows_xfer_shared_library): Use gdb_bfd_open.
9221
9222 2015-04-02 Gary Benson <gbenson@redhat.com>
9223
9224 * gdb/gdb_bfd.h (TARGET_SYSROOT_PREFIX): New definition.
9225 (is_target_filename): New declaration.
9226 (gdb_bfd_has_target_filename): Likewise.
9227 (gdb_bfd_open): Update documentation comment.
9228 * gdb_bfd.c (target.h): New include.
9229 (gdb/fileio.h): Likewise.
9230 (is_target_filename): New function.
9231 (gdb_bfd_has_target_filename): Likewise.
9232 (fileio_errno_to_host): Likewise.
9233 (gdb_bfd_iovec_fileio_open): Likewise.
9234 (gdb_bfd_iovec_fileio_pread): Likewise.
9235 (gdb_bfd_iovec_fileio_close): Likewise.
9236 (gdb_bfd_iovec_fileio_fstat): Likewise.
9237 (gdb_bfd_open): Use target fileio to access paths prefixed
9238 with "target:" where necessary.
9239
9240 2015-04-02 Gary Benson <gbenson@redhat.com>
9241
9242 * target.h (struct target_ops) <to_filesystem_is_local>:
9243 New field.
9244 (target_filesystem_is_local): New macro.
9245 * target-delegates.c: Regenerate.
9246 * remote.c (remote_filesystem_is_local): New function.
9247 (init_remote_ops): Initialize to_filesystem_is_local.
9248
9249 2015-04-02 Gary Benson <gbenson@redhat.com>
9250
9251 * target.h (struct target_ops) <to_fileio_fstat>: New field.
9252 (target_fileio_fstat): New declaration.
9253 * target.c (target_fileio_fstat): New function.
9254 * inf-child.c (inf_child_fileio_fstat): Likewise.
9255 (inf_child_target): Initialize to_fileio_fstat.
9256 * remote.c (init_remote_ops): Likewise.
9257
9258 2015-04-01 Sasha Smundak <asmundak@google.com>
9259
9260 * Makefile.in (SUBDIR_PYTHON_OBJS): Add py-unwind.o.
9261 (SUBDIR_PYTHON_SRCS): Add py-unwind.c.
9262 (py-unwind.o): New recipe.
9263 * NEWS: mention Python frame unwinding.
9264 * data-directory/Makefile.in (PYTHON_FILE_LIST): Add
9265 gdb/unwinder.py and gdb/command/unwinder.py
9266 * python/lib/gdb/__init__.py (packages): Add frame_unwinders
9267 list.
9268 (execute_unwinders): New function.
9269 * python/lib/gdb/command/unwinders.py: New file.
9270 * python/lib/gdb/unwinder.py: New file.
9271 * python/py-objfile.c (objfile_object): Add frame_unwinders field.
9272 (objfpy_dealloc): Decrement frame_unwinders reference count.
9273 (objfpy_initialize): Create frame_unwinders list.
9274 (objfpy_get_frame_unwinders): New function.
9275 (objfpy_set_frame_unwinders): Ditto.
9276 (objfile_getset): Add frame_unwinders attribute to Objfile.
9277 * python/py-progspace.c (pspace_object): Add frame_unwinders field.
9278 (pspy_dealloc): Decrement frame_unwinders reference count.
9279 (pspy_initialize): Create frame_unwinders list.
9280 (pspy_get_frame_unwinders): New function.
9281 (pspy_set_frame_unwinders): Ditto.
9282 (pspy_getset): Add frame_unwinders attribute to gdb.Progspace.
9283 * python/py-unwind.c: New file.
9284 * python/python-internal.h (pspy_get_name_unwinders): New prototype.
9285 (objpy_get_frame_unwinders): New prototype.
9286 (gdbpy_initialize_unwind): New prototype.
9287 * python/python.c (gdbpy_apply_type_printers): Call
9288 gdbpy_initialize_unwind.
9289
9290 2015-04-01 Pedro Alves <palves@redhat.com>
9291
9292 * infrun.c (resume): Check currently_stepping after clearing
9293 stepped_breakpoint, not before.
9294
9295 2015-04-01 Pedro Alves <palves@redhat.com>
9296
9297 * infrun.c (print_target_wait_results): Print all the ptid
9298 elements.
9299
9300 2015-04-01 Pedro Alves <palves@redhat.com>
9301
9302 * infrun.c (keep_going): Also discard cleanups if inserting
9303 breakpoints fails.
9304
9305 2015-04-01 Pedro Alves <palves@redhat.com>
9306
9307 * infrun.c (wait_for_inferior): Install the
9308 finish_thread_state_cleanup cleanup across the whole function, not
9309 just around handle_inferior_event.
9310
9311 2015-04-01 Pedro Alves <palves@redhat.com>
9312
9313 * infrun.c (resume) <step past permanent breakpoint>: Use
9314 do_target_resume.
9315
9316 2015-04-01 Pedro Alves <palves@redhat.com>
9317
9318 * linux-nat.c (linux_handle_extended_wait): Always call set_running.
9319
9320 2015-04-01 Pierre-Marie de Rodat <derodat@adacore.com>
9321
9322 * MAINTAINERS (Write After Approval): Add "Pierre-Marie de Rodat".
9323
9324 2015-04-01 Pedro Alves <palves@redhat.com>
9325
9326 * linux-thread-db.c (record_thread): Readd the thread to gdb's
9327 list if it was marked exited.
9328
9329 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
9330
9331 * configure: Regenerated.
9332
9333 2015-03-31 Sergio Durigan Junior <sergiodj@redhat.com>
9334 Jan Kratochvil <jan.kratochvil@redhat.com>
9335 Oleg Nesterov <oleg@redhat.com>
9336
9337 PR corefiles/16092
9338 * linux-tdep.c: Include 'gdbcmd.h' and 'gdb_regex.h'.
9339 New enum identifying the various options of the coredump_filter
9340 file.
9341 (struct smaps_vmflags): New struct.
9342 (use_coredump_filter): New variable.
9343 (decode_vmflags): New function.
9344 (mapping_is_anonymous_p): Likewise.
9345 (dump_mapping_p): Likewise.
9346 (linux_find_memory_regions_full): New variables
9347 'coredumpfilter_name', 'coredumpfilterdata', 'pid', 'filterflags'.
9348 Removed variable 'modified'. Read /proc/<PID>/smaps file; improve
9349 parsing of its information. Implement memory mapping filtering
9350 based on its contents.
9351 (show_use_coredump_filter): New function.
9352 (_initialize_linux_tdep): New command 'set use-coredump-filter'.
9353 * NEWS: Mention the possibility of using the
9354 '/proc/PID/coredump_filter' file when generating a corefile.
9355 Mention new command 'set use-coredump-filter'.
9356
9357 2015-03-31 Sergio Durigan Junior <sergiodj@redhat.com>
9358
9359 * solib-svr4.c (solib_svr4_r_ldsomap): Catch possible exception by
9360 read_memory_unsigned_integer.
9361
9362 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
9363
9364 * Makefile.in (ZLIB): New.
9365 (ZLIBINC): Likewise.
9366 (INTERNAL_CFLAGS_BASE): Add $(ZLIBINC).
9367 (CLIBS): Add $(ZLIB).
9368 * acinclude.m4: (GDB_AC_CHECK_BFD): Add $zlibdir to LDFLAGS.
9369 Add -lz to LIBS.
9370 * gdb_bfd.c: Don't check HAVE_ZLIB_H to include <zlib.h>.
9371 * top.c (print_gdb_configuration): Remove --with-zlib and
9372 --without-zlib.
9373 * config.in: Regenerated.
9374 * configure: Likewise.
9375
9376 2015-03-31 Antoine Tremblay <antoine.tremblay@ericsson.com>
9377
9378 * NEWS: Mention info os cpus support.
9379 * gdb/nat/linux-osdata.c (linux_xfer_osdata_cpus): New function.
9380 (struct osdata_type): Add cpus entry, reorder the entries in
9381 alphabetical order.
9382
9383 2015-03-31 Matthias Klose <doko@ubuntu.com>
9384
9385 * compile/compile.c (compile_to_object): Allow triplets with or
9386 without vendor set.
9387
9388 2015-03-30 Doug Evans <dje@google.com>
9389
9390 PR c++/18141
9391 * cp-namespace.c (cp_search_static_and_baseclasses): Always look for
9392 klass in VAR_DOMAIN.
9393
9394 2015-03-30 Gary Benson <gbenson@redhat.com>
9395
9396 * remote.c (remote_mourn_1): Remove function. Update all callers
9397 to use remote_mourn.
9398 (extended_remote_mourn_1): Remove function. Update all callers
9399 to use extended_remote_mourn.
9400 (extended_remote_attach_1): Remove function. Update all callers
9401 to use extended_remote_attach.
9402
9403 2015-03-28 James Bowman <james.bowman@ftdichip.com>
9404
9405 * Makefile.in (ALL_TARGET_OBS): Add ft32-tdep.o.
9406 (HFILES_NO_SRCDIR): Add ft32-tdep.h.
9407 (ALLDEPFILES): Add ft32-tdep.c.
9408 * configure.tgt: Add FT32 entry.
9409 * ft32-tdep.c: New file, FT32 target-dependent code.
9410 * ft32-tdep.h: New file, FT32 target-dependent code.
9411
9412 2015-03-27 Jan Kratochvil <jan.kratochvil@redhat.com>
9413
9414 Revert:
9415 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9416 Code cleanup.
9417 * printcmd.c (print_command_1): Move expr variable scope.
9418
9419 2015-03-27 Joel Brobecker <brobecker@adacore.com>
9420
9421 * dtrace-probe.c (dtrace_process_dof_probe): Initialize expr to NULL.
9422
9423 2015-03-27 Andrzej Kaczmarek <andrzej.kaczmarek@tieto.com>
9424
9425 * gdb_bfd.c (gdb_bfd_section_index): Fix off-by-one for special
9426 sections.
9427
9428 2015-03-26 Joel Brobecker <brobecker@adacore.com>
9429
9430 * dtrace-probe.c (dtrace_process_dof_probe): Contain any
9431 exception raised while parsing the probe arguments.
9432 Force parsing to be done using the C language parser.
9433 * expression.h (parse_expression_with_language): Declare.
9434 * parse.c (parse_expression_with_language): New function.
9435
9436 2015-03-26 Jon Turney <jon.turney@dronecode.org.uk>
9437
9438 * MAINTAINERS (Write After Approval): Add "Jon Turney".
9439
9440 2015-03-26 Andy Wingo <wingo@igalia.com>
9441
9442 PR symtab/18148
9443 * dwarf2read.c (struct partial_die_info): Add has_const_value
9444 member.
9445 (add_partial_symbol): Don't punt on symbols that have const_value
9446 attributes.
9447 (read_partial_die): Detect DW_AT_const_value.
9448
9449 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9450
9451 Code cleanup.
9452 * printcmd.c (print_command_1): Move expr variable scope.
9453
9454 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9455
9456 Code cleanup.
9457 * printcmd.c (validate_format): Make the parameter cmdname const.
9458
9459 2015-03-26 Don Breazeal <donb@codesourcery.com>
9460
9461 * remote.c (_initialize_remote): Update comment.
9462
9463 2015-03-26 Pedro Alves <palves@redhat.com>
9464 Jon TURNEY <jon.turney@dronecode.org.uk>
9465
9466 * coffread.c (coff_symfile_read): When constructing the name of an
9467 import stub symbol from import symbol for amd64, only skip the
9468 char after _imp_ if the target is underscored (like i386) and the
9469 char is indeed the target's leading char.
9470
9471 2015-03-25 Pedro Alves <palves@redhat.com>
9472
9473 * target.h <to_async>: Replace 'callback' and 'context' parameters
9474 with boolean 'enable' parameter.
9475 (target_async): Replace CALLBACK and CONTEXT parameters with
9476 boolean ENABLE parameter.
9477 * inf-loop.c (inferior_event_handler): Adjust.
9478 * linux-nat.c (linux_nat_attach, linux_nat_resume)
9479 (linux_nat_resume): Adjust.
9480 (async_client_callback, async_client_context): Delete.
9481 (handle_target_event): Call inferior_event_handler directly.
9482 (linux_nat_async): Replace 'callback' and 'context' parameters
9483 with boolean 'enable' parameter. Adjust. Remove references to
9484 async_client_callback and async_client_context.
9485 (linux_nat_close): Adjust.
9486 * record-btrace.c (record_btrace_async): Replace 'callback' and
9487 'context' parameters with boolean 'enable' parameter. Adjust.
9488 (record_btrace_resume): Adjust.
9489 * record-full.c (record_full_async): Replace 'callback' and
9490 'context' parameters with boolean 'enable' parameter. Adjust.
9491 (record_full_resume, record_full_core_resume): Adjust.
9492 * remote.c (struct remote_state) <async_client_callback,
9493 async_client_context>: Delete fields.
9494 (remote_start_remote, extended_remote_attach_1, remote_resume)
9495 (extended_remote_create_inferior): Adjust.
9496 (remote_async_serial_handler): Call inferior_event_handler
9497 directly.
9498 (remote_async): Replace 'callback' and 'context' parameters with
9499 boolean 'enable' parameter. Adjust.
9500 * top.c (gdb_readline_wrapper_cleanup, gdb_readline_wrapper):
9501 Adjust.
9502 * target-delegates.c: Regenerate.
9503
9504 2015-03-25 Gary Benson <gbenson@redhat.com>
9505 Pedro Alves <palves@redhat.com>
9506
9507 * target.c (fileio_ft_t): New typedef, define object vector.
9508 (fileio_fhandles): New static variable.
9509 (is_closed_fileio_fh): New macro.
9510 (lowest_closed_fd): New static variable.
9511 (acquire_fileio_fd): New function.
9512 (release_fileio_fd): Likewise.
9513 (fileio_fd_to_fh): New macro.
9514 (target_fileio_open): Wrap the file descriptor on success.
9515 (target_fileio_pwrite): Updated to use wrapped file descriptor.
9516 (target_fileio_pread): Likewise.
9517 (target_fileio_close): Likewise.
9518
9519 2015-03-24 Pedro Alves <palves@redhat.com>
9520
9521 * thread.c (thread_apply_all_command): Take exited threads into
9522 account.
9523
9524 2015-03-24 Pedro Alves <palves@redhat.com>
9525
9526 * infrun.c (resume, proceed): Mention
9527 switch_back_to_stepped_thread, not switch_back_to_stepping.
9528
9529 2015-03-24 Pedro Alves <palves@redhat.com>
9530
9531 * infrun.c (user_visible_resume_ptid): Rewrite going from
9532 most-locked to unlocked instead of the opposite. Move comment ...
9533 * infrun.h (user_visible_resume_ptid): ... here.
9534
9535 2015-03-24 Pedro Alves <palves@redhat.com>
9536
9537 * linux-nat.c (linux_nat_resume): Output debug logs before trying
9538 to resume the event lwp. Use the lwp's ptid instead of the passed
9539 in (maybe wildcard) ptid.
9540 (stop_wait_callback): Tweak debug log output.
9541 (check_stopped_by_breakpoint): Tweak debug log output. Also dump
9542 TRAP_TRACE.
9543 (linux_nat_filter_event): In debug output, distinguish a
9544 resume_stop SIGSTOP from a delayed SIGSTOP. Output debug logs
9545 before trying to resume the lwp.
9546
9547 2015-03-24 Joel Brobecker <brobecker@adacore.com>
9548
9549 * gdbtypes.h (struct dynamic_prop_list) <prop>: Remove
9550 pointer indirection.
9551 * gdbtypes.c (get_dyn_prop): Adjust, following change above.
9552 (add_dyn_prop, copy_dynamic_prop_list): Likewise.
9553
9554 2015-03-24 Joel Brobecker <brobecker@adacore.com>
9555
9556 * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_DATA_LOCATION>:
9557 Renames DYN_ATTR_DATA_LOCATION.
9558 (TYPE_DATA_LOCATION): Use DYN_PROP_DATA_LOCATION instead of
9559 DYN_ATTR_DATA_LOCATION.
9560 * dwarf2read.c (set_die_type): Use DYN_PROP_DATA_LOCATION
9561 instead of DYN_ATTR_DATA_LOCATION.
9562
9563 2015-03-24 Pedro Alves <palves@redhat.com>
9564
9565 * breakpoint.c (until_break_command): Adjust call to proceed.
9566 * gdbthread.h (struct thread_control_state) <stepping_command>:
9567 New field.
9568 * infcall.c (run_inferior_call): Adjust call to proceed.
9569 * infcmd.c (run_command_1, proceed_thread_callback, continue_1):
9570 Adjust calls to proceed.
9571 (set_step_frame): Set the current thread's step_start_function
9572 here.
9573 (step_once): Adjust calls to proceed.
9574 (jump_command, signal_command, until_next_command)
9575 (finish_backward, finish_forward, proceed_after_attach_callback)
9576 (attach_command_post_wait): Adjust calls to proceed.
9577 * infrun.c (proceed_after_vfork_done): Adjust call to proceed.
9578 (do_target_resume): New function, factored out from ...
9579 (resume): ... here. Remove 'step' parameter. Instead, check
9580 currently_stepping to determine whether the thread should be
9581 single-stepped.
9582 (proceed): Remove 'step' parameter and don't set the thread's
9583 step_start_function here. Adjust call to 'resume'.
9584 (handle_inferior_event): Adjust calls to 'resume'.
9585 (switch_back_to_stepped_thread): Use do_target_resume instead of
9586 'resume'.
9587 (keep_going): Adjust calls to 'resume'.
9588 * infrun.h (proceed): Remove 'step' parameter.
9589 (resume): Likewise.
9590 * windows-nat.c (do_initial_windows_stuff): Adjust call to
9591 'resume'.
9592 * mi/mi-main.c (proceed_thread): Adjust call to 'proceed'.
9593
9594 2015-03-24 Pedro Alves <palves@redhat.com>
9595
9596 * gdbthread.h (struct thread_control_state) <stepping_command>:
9597 New field.
9598 * infcmd.c (step_once): Pass step=1 to clear_proceed_status. Set
9599 the thread's stepping_command field.
9600 * infrun.c (resume): Check the thread's stepping_command flag to
9601 determine which threads should be resumed. Rename 'entry_step'
9602 local to user_step.
9603 (clear_proceed_status_thread): Clear 'stepping_command'.
9604 (schedlock_applies): Change parameter type to struct thread_info
9605 pointer. Adjust.
9606 (find_thread_needs_step_over): Remove 'step' parameter. Adjust.
9607 (switch_back_to_stepped_thread): Adjust calls to
9608 'schedlock_applies'.
9609 (_initialize_infrun): Adjust "set scheduler-locking step" help.
9610
9611 2015-03-24 Pedro Alves <palves@redhat.com>
9612
9613 * infrun.c (step_start_function): Delete and ...
9614 * gdbthread.h (struct thread_control_state) <step_start_function>:
9615 ... now a field here.
9616 * infrun.c (clear_proceed_status_thread): Clear the thread's
9617 step_start_function.
9618 (proceed, process_event_stop_test, print_stop_event): Adjust.
9619
9620 2015-03-24 Pedro Alves <palves@redhat.com>
9621
9622 * infrun.c (proceed): No longer handle negative step.
9623
9624 2015-03-24 Gary Benson <gbenson@redhat.com>
9625
9626 * nat/x86-linux.h (x86_linux_new_thread): New declaration.
9627 (x86_linux_prepare_to_resume): Likewise.
9628 * x86-linux-nat.c (x86_linux_new_thread):
9629 Moved to nat/x86-linux.c.
9630 (x86_linux_prepare_to_resume): Likewise.
9631 * nat/x86-linux.c (x86_linux_new_thread): New function.
9632 (x86_linux_prepare_to_resume): Likewise.
9633
9634 2015-03-24 Gary Benson <gbenson@redhat.com>
9635
9636 * nat/x86-linux-dregs.h: New file.
9637 * nat/x86-linux-dregs.c: Likewise.
9638 * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux-dregs.h.
9639 (x86-linux-dregs.o): New rule.
9640 * config/i386/linux.mh (NATDEPFILES): Add x86-linux-dregs.o.
9641 * config/i386/linux64.mh (NATDEPFILES): Likewise.
9642 * x86-linux-nat.c: Include nat/x86-linux-dregs.h.
9643 (u_debugreg_offset): Moved to nat/x86-linux-dregs.c.
9644 (x86_linux_dr_get): Likewise.
9645 (x86_linux_dr_set): Likewise.
9646 (x86_linux_dr_get_addr): Likewise.
9647 (x86_linux_dr_get_control): Likewise.
9648 (x86_linux_dr_get_status): Likewise.
9649 (update_debug_registers_callback): Likewise.
9650 (x86_linux_dr_set_control): Likewise.
9651 (x86_linux_dr_set_addr): Likewise.
9652 (x86_linux_update_debug_registers): Likewise.
9653
9654 2015-03-24 Gary Benson <gbenson@redhat.com>
9655
9656 * x86-linux-nat.c (x86_linux_update_debug_registers):
9657 New function, factored out from...
9658 (x86_linux_prepare_to_resume): ...this.
9659
9660 2015-03-24 Gary Benson <gbenson@redhat.com>
9661
9662 * x86-linux-nat.c (x86_linux_dr_get): Update comments.
9663 (x86_linux_dr_set): Likewise.
9664 (x86_linux_dr_get_addr): Likewise.
9665 (x86_linux_dr_get_control): Likewise.
9666 (x86_linux_dr_get_status): Likewise.
9667 (update_debug_registers_callback): Likewise.
9668 (x86_linux_dr_set_control): Likewise.
9669 (x86_linux_dr_set_addr): Likewise.
9670 (x86_linux_prepare_to_resume): Likewise.
9671 (x86_linux_new_thread): Likewise.
9672
9673 2015-03-24 Gary Benson <gbenson@redhat.com>
9674
9675 * x86-linux-nat.c (x86_linux_dr_set_addr): Update assertion.
9676 (x86_linux_new_thread): Rename argument.
9677
9678 2015-03-24 Gary Benson <gbenson@redhat.com>
9679
9680 * nat/x86-linux.h: New file.
9681 * nat/x86-linux.c: Likewise.
9682 * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux.h.
9683 (x86-linux.o): New rule.
9684 * config/i386/linux.mh (NATDEPFILES): Add x86-linux.o.
9685 * config/i386/linux64.mh (NATDEPFILES): Likewise.
9686 * nat/linux-nat.h (struct arch_lwp_info): New forward declaration.
9687 (lwp_set_arch_private_info): New declaration.
9688 (lwp_arch_private_info): Likewise.
9689 * linux-nat.c (lwp_set_arch_private_info): New function.
9690 (lwp_arch_private_info): Likewise.
9691 * x86-linux-nat.c: Include nat/x86-linux.h.
9692 (arch_lwp_info): Removed structure.
9693 (update_debug_registers_callback):
9694 Use lwp_set_debug_registers_changed.
9695 (x86_linux_prepare_to_resume): Use lwp_debug_registers_changed
9696 and lwp_set_debug_registers_changed.
9697 (x86_linux_new_thread): Use lwp_set_debug_registers_changed.
9698
9699 2015-03-24 Gary Benson <gbenson@redhat.com>
9700
9701 * nat/linux-nat.h (ptid_of_lwp): New declaration.
9702 (lwp_is_stopped): Likewise.
9703 (lwp_stop_reason): Likewise.
9704 * linux-nat.c (ptid_of_lwp): New function.
9705 (lwp_is_stopped): Likewise.
9706 (lwp_is_stopped_by_watchpoint): Likewise.
9707 * x86-linux-nat.c (update_debug_registers_callback):
9708 Use lwp_is_stopped.
9709 (x86_linux_prepare_to_resume): Use ptid_of_lwp and
9710 lwp_stop_reason.
9711
9712 2015-03-24 Gary Benson <gbenson@redhat.com>
9713
9714 * linux-nat.h (linux_stop_lwp): Move declaration to...
9715 * nat/linux-nat.h (linux_stop_lwp): New declaration.
9716
9717 2015-03-24 Gary Benson <gbenson@redhat.com>
9718
9719 * linux-nat.h: Include nat/linux-nat.h.
9720 (iterate_over_lwps): Move declaration to nat/linux-nat.h.
9721 * nat/linux-nat.h (struct lwp_info): New forward declaration.
9722 (iterate_over_lwps_ftype): New typedef.
9723 (iterate_over_lwps): New declaration.
9724 * linux-nat.h (iterate_over_lwps): Update comment. Use
9725 iterate_over_lwps_ftype. Update callback return value check.
9726
9727 2015-03-24 Gary Benson <gbenson@redhat.com>
9728
9729 * x86-nat.h (x86_debug_reg_state): Move declaration to...
9730 * nat/x86-dregs.h (x86_debug_reg_state): New declaration.
9731
9732 2015-03-24 Gary Benson <gbenson@redhat.com>
9733
9734 * nat/linux-nat.h (current_lwp_ptid): New declaration.
9735 * linux-nat.c (current_lwp_ptid): New function.
9736 * x86-linux-nat.c: Include nat/linux-nat.h.
9737 (x86_linux_dr_get_addr): Use current_lwp_ptid.
9738 (x86_linux_dr_get_control): Likewise.
9739 (x86_linux_dr_get_status): Likewise.
9740 (x86_linux_dr_set_control): Likewise.
9741 (x86_linux_dr_set_addr): Likewise.
9742
9743 2015-03-24 Antoine Tremblay <antoine.tremblay@ericsson.com>
9744
9745 PR breakpoints/16466
9746 * breakpoint.c (create_breakpoint): Set thread on breakpoint struct.
9747
9748 2015-03-23 Joel Brobecker <brobecker@adacore.com>
9749
9750 * ser-mingw.c (ser_windows_setparity): Fix indentation.
9751 * ser-unix.c (hardwire_setparity): Likewise.
9752
9753 2015-03-23 Yurij Grechishhev <yurij.grechishhev@gmail.com>
9754
9755 * NEWS: Mention set/show serial parity command.
9756 * monitor.c (monitor_open): Call serial_setparity.
9757 * remote.c (remote_open_1): Likewise.
9758 * ser-base.c (ser_base_serparity): New function.
9759 * ser-base.h (ser_base_setparity): Add declaration.
9760 * ser-go32.c (dos_ops): Set "setparity" field.
9761 * ser-mingw.c (ser_windows_raw): Do not set state.fParity and
9762 state.Parity.
9763 (ser_windows_setparity): New function.
9764 (hardwire_ops): Add ser_windows_setparity.
9765 (tty_ops): Add NULL for setparity field.
9766 (pipe_ops): Add ser_base_setparity.
9767 (tcp_ops): Likewise.
9768 * ser-pipe.c (pipe_ops): Likewise.
9769 * ser-tcp.c (tcp_ops): Likewise.
9770 * ser-unix.c (hardwire_setparity): Add declaration.
9771 (hardwire_raw): Don't reset PARENB flag.
9772 (hardwire_setparity): New function.
9773 (hardwire_ops): Add hardwire_setparity.
9774 * serial.c (serial_setparity): New function.
9775 (serial_parity): New global.
9776 (parity_none, parity_odd, parity_even, parity_enums, parity):
9777 New static globals.
9778 (set_parity): New function.
9779 (_initialize_serial): Add set/show serial parity commands.
9780 * serial.h (GDBPARITY_NONE): Define.
9781 (GDBPARITY_ODD): Define.
9782 (GDBPARITY_EVEN): Define.
9783 (serial_setparity) Add declaration.
9784 (struct serial_ops): Add setparity field.
9785 * target.h (serial_parity): Add declaration.
9786
9787 2015-03-23 Keith Seitz <keiths@redhat.com>
9788
9789 * linespec.c (linespec_lexer_lex_keyword): Update comment.
9790
9791 2015-03-23 Keith Seitz <keiths@redhat.com>
9792
9793 * breakpoint.c (parse_breakpoint_sals): Use
9794 linespec_lexer_lex_keyword to ascertain if the user specified
9795 a NULL location.
9796 * linespec.c [IF_KEYWORD_INDEX]: Define.
9797 (linespec_lexer_lex_keyword): Export.
9798 (struct ls_parser) <keyword_ok>: Remove.
9799 A keyword is only a keyword if not followed by another keyword.
9800 (linespec_lexer_lex_one): Remove keyword_ok handling.
9801 Add comment explaining why the parsing stream is not advanced
9802 when a keyword is seen.
9803 (parse_linespec): Remove parser->keyword_ok.
9804 * linespec.h (linespec_lexer_lex_keyword): Add declaration.
9805
9806 2015-03-23 Keith Seitz <keiths@redhat.com>
9807
9808 PR gdb/18021
9809 * dwarf2read.c (dwarf2_add_member_fn): Issue a complaint
9810 if we find a static method with DW_AT_vtable_elem_location.
9811
9812 2015-03-21 Eli Zaretskii <eliz@gnu.org>
9813
9814 * tui/tui-io.c (tui_expand_tabs): Reinitialize the column counter
9815 before the second loop, to avoid undefined behavior. Reported by
9816 Anton Blanchard <anton@samba.org>.
9817
9818 2015-03-20 Keven Boell <keven.boell@intel.com>
9819
9820 * gdbtypes.c (resolve_dynamic_type_internal): Adapt
9821 data_location usage to linked list.
9822 (resolve_dynamic_type_internal): Adapt data_location to
9823 linked list.
9824 (get_dyn_prop, add_dyn_prop, copy_dynamic_prop_list): New function.
9825 (copy_type_recursive, copy_type): Add copy of linked list.
9826 * gdbtypes.h (enum dynamic_prop_node_kind): New enum.
9827 (struct dynamic_prop_list): New struct.
9828 * dwarf2read.c (set_die_type): Set data_location data.
9829
9830 2015-03-20 Pedro Alves <palves@redhat.com>
9831
9832 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Move "p" to
9833 inner block and make it const.
9834 * machoread.c (get_archive_prefix_len): Make "lparen" const.
9835
9836 2015-03-20 Pedro Alves <palves@redhat.com>
9837
9838 * breakpoint.c (set_breakpoint_condition): Make argument "exp" const.
9839 * breakpoint.h (set_breakpoint_condition): Update declaration.
9840
9841 2015-03-20 Pedro Alves <palves@redhat.com>
9842
9843 * tui/tui-io.c (tui_expand_tabs): Make "s1" const.
9844
9845 2015-03-20 Pedro Alves <palves@redhat.com>
9846
9847 * xcoffread.c (scan_xcoff_symtab): Make "p" and "q" const.
9848
9849 2015-03-20 Pedro Alves <palves@redhat.com>
9850
9851 * remote-m32r-sdi.c (m32r_open): Make "port_str" const.
9852
9853 2015-03-20 Pedro Alves <palves@redhat.com>
9854
9855 * nto-tdep.c (nto_find_and_open_solib): Make "endian" const.
9856 (nto_init_solib_absolute_prefix): Likewise.
9857
9858 2015-03-20 Pedro Alves <palves@redhat.com>
9859
9860 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Make "p" const.
9861 * spu-tdep.c (spu_gdbarch_init): Make "name" const.
9862
9863 2015-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9864
9865 * config/djgpp/README: Remove gdb.hp.
9866
9867 2015-03-20 Yao Qi <yao.qi@linaro.org>
9868
9869 * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
9870 set_gdbarch_cannot_step_breakpoint.
9871
9872 2015-03-19 Pedro Alves <palves@redhat.com>
9873
9874 * linux-nat.c (linux_resume_one_lwp): Rename to ...
9875 (linux_resume_one_lwp_throw): ... this. Don't handle ESRCH here,
9876 instead call perror_with_name.
9877 (check_ptrace_stopped_lwp_gone): New function.
9878 (linux_resume_one_lwp): Reimplement as wrapper around
9879 linux_resume_one_lwp_throw that swallows errors if the LWP is
9880 gone.
9881 (resume_stopped_resumed_lwps): Try register reads in TRY/CATCH and
9882 swallows errors if the LWP is gone. Use
9883 linux_resume_one_lwp_throw instead of linux_resume_one_lwp.
9884
9885 2015-03-19 Pedro Alves <palves@redhat.com>
9886
9887 * linux-nat.c (status_callback): Return early if the LWP has no
9888 status pending.
9889
9890 2015-03-19 Pedro Alves <palves@redhat.com>
9891
9892 * linux-nat.c (select_event_lwp_callback): Update comment to no
9893 longer mention SIGTRAP.
9894
9895 2015-03-18 Tristan Gingold <gingold@adacore.com>
9896
9897 * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Move
9898 redirection code to ...
9899 (amd64_windows_frame_decode_insns): ... Here. Fix in prologue
9900 checks. Fix SAVE_NONVOL operations. Add debug code and comments.
9901
9902 2015-03-18 Gary Benson <gbenson@redhat.com>
9903
9904 (remote_protocol_features): Remove the "vFile:fstat" feature.
9905 (remote_hostio_fstat): Probe for "vFile:fstat" support.
9906
9907 2015-03-11 Yao Qi <yao.qi@linaro.org>
9908
9909 PR tdep/18107
9910 * aarch64-linux-tdep.c: Include xml-syscall.h
9911 (aarch64_linux_get_syscall_number): New function.
9912 (aarch64_linux_init_abi): Call
9913 set_gdbarch_get_syscall_number.
9914 * syscalls/aarch64-linux.xml: New file.
9915
9916 2015-03-17 Yurij Grechishhev <yurij.grechishhev@gmail.com>
9917
9918 * ser-base.h (ser_base_setstopbits): Change second argument name
9919 from "rate" to "num".
9920
9921 2015-03-17 Gary Benson <gbenson@redhat.com>
9922 Luke Allardyce <lukeallardyce@gmail.com>
9923
9924 PR gdb/18131
9925 * common/common-remote-fileio.h (sys/stat.h): New include.
9926 (stuct stat): Remove forward declaration.
9927
9928 2015-03-16 John Baldwin <jhb@FreeBSD.org>
9929
9930 * fbsd-tdep.c (fbsd_make_corefile_notes): Fetch all target registers
9931 before writing core register notes.
9932
9933 2015-03-16 Yuanhui Zhang <asmwarrior@gmail.com>
9934 Pedro Alves <palves@redhat.com>
9935
9936 * gdb_curses.h (tgetnum): Mark with EXTERN_C.
9937 * stub-termcap.c (tgetent, tgetnum, tgetflag, tgetstr, tputs)
9938 (tgoto): Wrap with extern "C".
9939
9940 2015-03-16 Pedro Alves <palves@redhat.com>
9941 Yuanhui Zhang <asmwarrior@gmail.com>
9942
9943 * stub-termcap.c (tputs): Change prototype.
9944
9945 2015-03-16 Yuanhui Zhang <asmwarrior@gmail.com>
9946 Pedro Alves <palves@redhat.com>
9947
9948 * windows-nat.c (struct thread_info_struct): Rename to ...
9949 (struct windows_thread_info_struct): ... this.
9950 (thread_info): Rename to ...
9951 (windows_thread_info): ... this.
9952 All users updated.
9953
9954 2015-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9955 Pedro Alves <palves@redhat.com>
9956
9957 * NEWS: New Removed targets and native configurations.
9958
9959 2015-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9960
9961 Remove HPUX.
9962 * Makefile.in (ALL_64_TARGET_OBS): Remove ia64-hpux-tdep.o.
9963 (ALL_TARGET_OBS): Remove hppa-hpux-tdep.o, solib-som.o and solib-pa64.o.
9964 (HFILES_NO_SRCDIR): Remove solib-som.h, inf-ttrace.h, solib-pa64.h and
9965 ia64-hpux-tdep.h, solib-ia64-hpux.h.
9966 (ALLDEPFILES): Remove hppa-hpux-tdep.c, hppa-hpux-nat.c,
9967 ia64-hpux-nat.c, ia64-hpux-tdep.c, somread.c and solib-som.c.
9968 * config/djgpp/fnchange.lst: Remove hppa-hpux-nat.c and
9969 hppa-hpux-tdep.c.
9970 * config/ia64/hpux.mh: Remove file.
9971 * config/pa/hpux.mh: Remove file.
9972 * configure: Rebuilt.
9973 * configure.ac (dlgetmodinfo, somread.o): Remove.
9974 * configure.host (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
9975 (ia64-*-hpux*): Remove its float format exception.
9976 * configure.tgt (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
9977 * hppa-hpux-nat.c: Remove file.
9978 * hppa-hpux-tdep.c: Remove file.
9979 * hppa-tdep.c (struct hppa_unwind_info, struct hppa_objfile_private):
9980 Move them here from hppa-tdep.h
9981 (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Make it static.
9982 (hppa_frame_prev_register_helper): Remove HPPA_FLAGS_REGNUM exception.
9983 * hppa-tdep.h (struct hppa_unwind_info, struct hppa_objfile_private):
9984 Move them to hppa-tdep.c.
9985 (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Remove
9986 declarations.
9987 * ia64-hpux-nat.c: Remove file.
9988 * ia64-hpux-tdep.c: Remove file.
9989 * ia64-hpux-tdep.h: Remove file.
9990 * inf-ttrace.c: Remove file.
9991 * inf-ttrace.h: Remove file.
9992 * solib-ia64-hpux.c: Remove file.
9993 * solib-ia64-hpux.h: Remove file.
9994 * solib-pa64.c: Remove file.
9995 * solib-pa64.h: Remove file.
9996 * solib-som.c: Remove file.
9997 * solib-som.h: Remove file.
9998 * somread.c: Remove file.
9999
10000 2015-03-13 John Baldwin <jhb@FreeBSD.org>
10001
10002 * configure.ac: AC_SEARCH_LIBS(kinfo_getvmmap, util).
10003 * config.in: Regenerate.
10004 * configure: Regenerate.
10005 * fbsd-nat.c [!HAVE_KINFO_GETVMMAP] (fbsd_read_mapping): Don't
10006 define.
10007 (fbsd_find_memory_regions): Use kinfo_getvmmap to
10008 enumerate memory regions if present.
10009
10010 2015-03-13 John Baldwin <jhb@FreeBSD.org>
10011
10012 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_p): Style fixes.
10013 * i386fbsd-tdep.c: Fix style in various gdb_static_assert
10014 expressions.
10015 (i386fbsd_sigtramp_p): Likewise.
10016
10017 2015-03-12 John Baldwin <jhb@FreeBSD.org>
10018
10019 * MAINTAINERS (Write After Approval): Add John Baldwin.
10020
10021 2015-03-12 Gary Benson <gbenson@redhat.com>
10022
10023 * solib.c (_initialize_solib): Make "set/show sysroot" use
10024 add_setshow_optional_filename_cmd so it can be restored to
10025 empty after being set.
10026
10027 2015-03-11 Sergio Durigan Junior <sergiodj@redhat.com>
10028
10029 * Makefile.in (SFILES): New source break-catch-syscall.c.
10030 (COMMON_OBS): New object break-catch-syscall.o.
10031 * break-catch-syscall.c: New file.
10032 * breakpoint.c: Remove inclusion of "xml-syscall.h".
10033 (syscall_catchpoint_p): Move declaration to break-catch-syscall.c
10034 (struct syscall_catchpoint): Likewise.
10035 (dtor_catch_syscall): Likewise.
10036 (catch_syscall_inferior_data): Likewise.
10037 (struct catch_syscall_inferior_data): Likewise.
10038 (get_catch_syscall_inferior_data): Likewise.
10039 (catch_syscall_inferior_data_cleanup): Likewise.
10040 (insert_catch_syscall): Likewise.
10041 (remove_catch_syscall): Likewise.
10042 (breakpoint_hit_catch_syscall): Likewise.
10043 (print_it_catch_syscall): Likewise.
10044 (print_one_catch_syscall): Likewise.
10045 (print_mention_catch_syscall): Likewise.
10046 (print_recreate_catch_syscall): Likewise.
10047 (catch_syscall_breakpoint_ops): Likewise.
10048 (syscall_catchpoint_p): Likewise.
10049 (create_syscall_event_catchpoint): Likewise.
10050 (catch_syscall_split_args): Likewise.
10051 (catch_syscall_command_1): Likewise.
10052 (is_syscall_catchpoint_enabled): Likewise.
10053 (catch_syscall_enabled): Likewise.
10054 (catching_syscall_number): Likewise.
10055 (catch_syscall_completer): Likewise.
10056 (clear_syscall_counts): Likewise.
10057 (initialize_breakpoint_ops): Move initialization of syscall
10058 catchpoints to break-catch-syscall.c.
10059 (_initialize_breakpoint): Move code related to syscall catchpoints
10060 to break-catch-syscall.c.
10061
10062 2015-03-11 Sergio Durigan Junior <sergiodj@redhat.com>
10063
10064 * breakpoint.c (breakpoint_find_if): New function.
10065 * breakpoint.h (breakpoint_find_if): New prototype.
10066
10067 2015-03-11 Gary Benson <gbenson@redhat.com>
10068
10069 * remote-fileio.h (remote_fileio_to_host_stat): New declaration.
10070 * remote-fileio.c (remote_fileio_to_host_uint): New function.
10071 (remote_fileio_to_host_ulong): Likewise.
10072 (remote_fileio_to_host_mode): Likewise.
10073 (remote_fileio_to_host_time): Likewise.
10074 (remote_fileio_to_host_stat): Likewise.
10075 * remote.c (PACKET_vFile_fstat): New enum value.
10076 (remote_protocol_features): Register the "vFile:fstat" feature.
10077 (remote_hostio_fstat): New function.
10078 (remote_bfd_iovec_stat): Use the above.
10079 (_initialize_remote): Register new "set/show remote
10080 hostio-fstat-packet" command.
10081 * symfile.c (separate_debug_file_exists): Update comment.
10082 * NEWS: Announce new vFile:fstat packet.
10083
10084 2015-03-11 Gary Benson <gbenson@redhat.com>
10085
10086 * common/common-remote-fileio.h: New file.
10087 * common/common-remote-fileio.c: Likewise.
10088 * Makefile.in (SFILES): Add common/common-remote-fileio.c.
10089 (HFILES_NO_SRCDIR): Add common/common-remote-fileio.h.
10090 (COMMON_OBS): Add common-remote-fileio.o.
10091 (common-remote-fileio.o): New rule.
10092 * remote-fileio.h (common-remote-fileio.h): New include.
10093 * remote-fileio.c (gdb/fileio.h): Do not include.
10094 (remote_fileio_to_be): Moved to common-remote-fileio.h.
10095 (remote_fileio_to_fio_uint): Likewise.
10096 (remote_fileio_to_fio_time): Likewise.
10097 (remote_fileio_mode_to_target): Moved to common-remote-fileio.c.
10098 (remote_fileio_to_fio_mode): Likewise.
10099 (remote_fileio_to_fio_ulong): Likewise.
10100 (remote_fileio_to_fio_stat): Likewise.
10101
10102 2015-03-11 Andy Wingo <wingo@igalia.com>
10103
10104 * guile/scm-value.c (gdbscm_value_dynamic_type): Fix typo in which
10105 we were checking the cached type, not the cached dynamic type.
10106
10107 2015-03-11 Andy Wingo <wingo@igalia.com>
10108
10109 * guile/scm-cmd.c (cmdscm_destroyer): Don't xfree the name and
10110 other strings, as these are on the GC'd heap, and will be
10111 collected along with the smob.
10112
10113 2015-03-11 Andy Wingo <wingo@igalia.com>
10114
10115 * guile/scm-objfile.c (gdbscm_objfile_progspace): New function.
10116 (objfile_functions): Bind gdbscm_objfile_progspace to
10117 objfile-progspace.
10118 * guile/lib/gdb.scm: Add objfile-progspace to exports.
10119
10120 2015-03-11 Andy Wingo <wingo@igalia.com>
10121
10122 * guile/guile.c (_initialize_guile): Disable automatic
10123 finalization, if Guile offers us that possibility.
10124 * guile/guile.c (call_initialize_gdb_module):
10125 * guile/scm-safe-call.c (gdbscm_with_catch): Arrange to run
10126 finalizers in appropriate places.
10127 * configure.ac (AC_TRY_LIBGUILE): Add a check for
10128 scm_set_automatic_finalization_enabled.
10129 * configure: Regenerated.
10130
10131 2015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com>
10132
10133 * s390-linux-tdep.c (s390_skip_prologue): Skip the prologue using
10134 SAL, if possible.
10135
10136 2015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com>
10137
10138 * s390-linux-nat.c (struct arch_lwp_info): New.
10139 (s390_fix_watch_points): Rename to...
10140 (s390_prepare_to_resume): ...this. Skip the PER info update
10141 unless the watch points have changed.
10142 (s390_refresh_per_info, s390_new_thread): New functions.
10143 (s390_insert_watchpoint): Call s390_refresh_per_info instead of
10144 s390_fix_watch_points.
10145 (s390_remove_watchpoint): Likewise.
10146 (_initialize_s390_nat): Reflect renaming of s390_fix_watch_points.
10147 Register s390_prepare_to_resume.
10148
10149 2015-03-09 Pedro Alves <palves@redhat.com>
10150
10151 Revert:
10152 2015-03-07 Pedro Alves <palves@redhat.com>
10153 * common/gdb_socket.h: New file.
10154 * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor
10155 sys/socket.h.
10156 (net_open): Use union gdb_sockaddr_u.
10157
10158 2015-03-07 Pedro Alves <palves@redhat.com>
10159
10160 * configure.ac (build_warnings): Move -Wmissing-prototypes
10161 -Wdeclaration-after-statement -Wmissing-parameter-type
10162 -Wold-style-declaration -Wold-style-definition to the C-specific
10163 set.
10164 * configure: Regenerate.
10165
10166 2015-03-07 Pedro Alves <palves@redhat.com>
10167
10168 * common/gdb_socket.h: New file.
10169 * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor
10170 sys/socket.h.
10171 (net_open): Use union gdb_sockaddr_u.
10172
10173 2015-03-07 Pedro Alves <palves@redhat.com>
10174
10175 * common/common-exceptions.c [!__cplusplus] (enum catcher_state)
10176 (exceptions_state_mc_action_iter)
10177 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
10178 Don't define.
10179 [__cplusplus] (try_scope_depth): New global.
10180 [__cplusplus] (exception_try_scope_entry)
10181 (exception_try_scope_exit, gdb_exception_sliced_copy)
10182 (exception_rethrow): New functions.
10183 (throw_exception): In C++ mode, throw
10184 gdb_exception_RETURN_MASK_QUIT for RETURN_QUIT and
10185 gdb_exception_RETURN_MASK_ERROR for RETURN_ERROR.
10186 (throw_it): In C++ mode, use try_scope_depth.
10187 * common/common-exceptions.h [!__cplusplus]
10188 (exceptions_state_mc_action_iter)
10189 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
10190 Don't declare.
10191 [__cplusplus] (exception_try_scope_entry)
10192 (exception_try_scope_exit, exception_rethrow): Declare.
10193 [__cplusplus] (struct exception_try_scope): New struct.
10194 [__cplusplus] (TRY, CATCH, END_CATCH): Reimplement on top of real
10195 C++ exceptions.
10196 (struct gdb_exception_RETURN_MASK_ALL)
10197 (struct gdb_exception_RETURN_MASK_ERROR)
10198 (struct gdb_exception_RETURN_MASK_QUIT): New types.
10199
10200 2015-03-07 Pedro Alves <palves@redhat.com>
10201
10202 * main.c (handle_command_errors): Remove volatile qualifier from
10203 parameter.
10204
10205 2015-03-07 Pedro Alves <palves@redhat.com>
10206
10207 * breakpoint.c (save_breakpoints): Adjust to avoid code between
10208 TRY and CATCH.
10209 * gdbtypes.c (safe_parse_type): Remove empty line.
10210 (types_deeply_equal):
10211 * guile/scm-frame.c (gdbscm_frame_name):
10212 * linux-thread-db.c (find_new_threads_once):
10213 * python/py-breakpoint.c (bppy_get_commands):
10214 * record-btrace.c (record_btrace_insert_breakpoint)
10215 (record_btrace_remove_breakpoint, record_btrace_start_replaying)
10216 (record_btrace_start_replaying): Adjust to avoid code between TRY
10217 and CATCH.
10218
10219 2015-03-07 Pedro Alves <palves@redhat.com>
10220
10221 * common/common-exceptions.c (struct catcher) <exception>: No
10222 longer a pointer to volatile exception. Now an exception value.
10223 <mask>: Delete field.
10224 (exceptions_state_mc_init): Remove all parameters. Adjust.
10225 (exceptions_state_mc): No longer pop the catcher here.
10226 (exceptions_state_mc_catch): New function.
10227 (throw_exception): Adjust.
10228 * common/common-exceptions.h (exceptions_state_mc_init): Remove
10229 all parameters.
10230 (exceptions_state_mc_catch): Declare.
10231 (TRY_CATCH): Rename to ...
10232 (TRY): ... this. Remove EXCEPTION and MASK parameters.
10233 (CATCH, END_CATCH): New.
10234 All callers adjusted.
10235
10236 2015-03-07 Tom Tromey <tromey@redhat.com>
10237
10238 * top.c (quit_force): Inline and delete DO_TRY, DO_PRINT_EX.
10239
10240 2015-03-07 Pedro Alves <palves@redhat.com>
10241
10242 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
10243 (amd64_epilogue_frame_cache): Normal exception handling code.
10244 * break-catch-throw.c (check_status_exception_catchpoint)
10245 (re_set_exception_catchpoint): Ditto.
10246 * cli/cli-interp.c (safe_execute_command):
10247 * cli/cli-script.c (script_from_file): Ditto.
10248 * compile/compile-c-symbols.c (generate_c_for_for_one_variable):
10249 Ditto.
10250 * compile/compile-object-run.c (compile_object_run): Ditto.
10251 * cp-abi.c (baseclass_offset): Ditto.
10252 * cp-valprint.c (cp_print_value): Ditto.
10253 * exceptions.c (catch_exceptions_with_msg):
10254 * frame-unwind.c (frame_unwind_try_unwinder): Ditto.
10255 * frame.c (get_frame_address_in_block_if_available): Ditto.
10256 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
10257 (i386_sigtramp_frame_cache): Ditto.
10258 * infcmd.c (post_create_inferior): Ditto.
10259 * linespec.c (parse_linespec, find_linespec_symbols):
10260 * p-valprint.c (pascal_object_print_value): Ditto.
10261 * parse.c (parse_expression_for_completion): Ditto.
10262 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
10263 * remote.c (remote_get_noisy_reply): Ditto.
10264 * s390-linux-tdep.c (s390_frame_unwind_cache): Ditto.
10265 * solib-svr4.c (solib_svr4_r_map): Ditto.
10266
10267 2015-03-06 Gary Benson <gbenson@redhat.com>
10268
10269 * common/common-utils.h (startswith): New inline function.
10270 All places where this logic was used updated to use the above.
10271
10272 2015-03-05 Pedro Alves <palves@redhat.com>
10273
10274 PR gdb/18002
10275 * mem-break.c (default_memory_insert_breakpoint): Set shadow_len
10276 after reading the breakpoint's shadow memory.
10277
10278 2015-03-05 Mark Kettenis <kettenis@gnu.org>
10279
10280 * hppabsd-nat.c: Remove file.
10281 * hppaobsd-nat.c: New file.
10282 * Makefile.in (ALLDEPFILES): Remove hppabsd-nat.c. Add
10283 hppaobsd-nat.c.
10284 * config/pa/obsd.mh (NATDEPFILES): Replace hppabsd-nat.o with
10285 hppaobsd-nat.o.
10286
10287 2015-03-04 Pedro Alves <palves@redhat.com>
10288
10289 * target.h (struct target_ops) <to_decr_pc_after_break>: Delete.
10290 (target_decr_pc_after_break): Delete declaration.
10291 * target.c (default_target_decr_pc_after_break)
10292 (target_decr_pc_after_break): Delete.
10293 * linux-nat.c (check_stopped_by_breakpoint, linux_nat_wait_1): Use
10294 gdbarch_decr_pc_after_break instead of target_decr_pc_after_break.
10295 * linux-thread-db.c (check_event): Likewise.
10296 * infrun.c (adjust_pc_after_break): Likewise.
10297 * darwin-nat.c (cancel_breakpoint): Likewise.
10298 * aix-thread.c (aix_thread_wait): Likewise.
10299 * target-delegates.c: Regenerate.
10300
10301 2015-03-04 Pedro Alves <palves@redhat.com>
10302
10303 * linux-nat.c (save_sigtrap): Check for breakpoints before
10304 checking watchpoints.
10305 (status_callback) [USE_SIGTRAP_SIGINFO]: Don't check whether a
10306 breakpoint is inserted if relying on SIGTRAP's siginfo.si_code.
10307 (check_stopped_by_breakpoint) [USE_SIGTRAP_SIGINFO]: Decide whether
10308 a breakpoint triggered based on the SIGTRAP's siginfo.si_code.
10309 (linux_nat_stopped_by_sw_breakpoint)
10310 (linux_nat_supports_stopped_by_sw_breakpoint)
10311 (linux_nat_stopped_by_hw_breakpoint)
10312 (linux_nat_supports_stopped_by_hw_breakpoint): New functions.
10313 (linux_nat_wait_1): Don't re-increment the PC if relying on
10314 SIGTRAP's siginfo->si_code.
10315 (linux_nat_add_target): Install new target methods.
10316 * linux-thread-db.c (check_event): Don't account for breakpoint PC
10317 offset if the target already adjusted the PC.
10318 * nat/linux-ptrace.h (USE_SIGTRAP_SIGINFO): New.
10319 (GDB_ARCH_TRAP_BRKPT): New.
10320 (TRAP_HWBKPT): Define if not already defined.
10321
10322 2015-03-04 Pedro Alves <palves@redhat.com>
10323
10324 * NEWS: Mention the new "swbreak" and "hwbreak" stop reasons.
10325 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p>:
10326 Delete field.
10327 <stop_reason>: New field.
10328 (PACKET_swbreak_feature, PACKET_hwbreak_feature): New enum values.
10329 (packet_set_cmd_state): New function.
10330 (remote_protocol_features): Register the "swbreak" and "hwbreak"
10331 features.
10332 (remote_query_supported): If not disabled with the corresponding
10333 "set remote foo-packet" command, report support for the swbreak
10334 and hwbreak features.
10335 (struct stop_reply) <remote_stopped_by_watchpoint_p>: Delete
10336 field.
10337 <stop_reason>: New field.
10338 (remote_parse_stop_reply): Handle "swbreak" and "hwbreak".
10339 (remote_wait_as): Adjust.
10340 (remote_stopped_by_sw_breakpoint)
10341 (remote_supports_stopped_by_sw_breakpoint)
10342 (remote_stopped_by_hw_breakpoint)
10343 (remote_supports_stopped_by_hw_breakpoint): New functions.
10344 (remote_stopped_by_watchpoint): New function.
10345 (init_remote_ops): Install them.
10346 (_initialize_remote): Register new "set/show remote
10347 swbreak-feature-packet" and "set/show remote
10348 swbreak-feature-packet" commands.
10349
10350 2015-03-04 Pedro Alves <palves@redhat.com>
10351
10352 * btrace.h: Include target/waitstatus.h.
10353 (struct btrace_thread_info) <stop_reason>: New field.
10354 * record-btrace.c (record_btrace_step_thread): Use
10355 record_check_stopped_by_breakpoint instead of breakpoint_here_p.
10356 (record_btrace_decr_pc_after_break): Delete.
10357 (record_btrace_stopped_by_sw_breakpoint)
10358 (record_btrace_supports_stopped_by_sw_breakpoint)
10359 (record_btrace_stopped_by_hw_breakpoint)
10360 (record_btrace_supports_stopped_by_hw_breakpoint): New functions.
10361 (init_record_btrace_ops): Install them.
10362 * record-full.c (record_full_hw_watchpoint): Delete and replace
10363 with ...
10364 (record_full_stop_reason): ... this throughout.
10365 (record_full_exec_insn): Adjust.
10366 (record_full_wait_1): Adjust. No longer re-increment the PC.
10367 (record_full_wait_1): Adjust. Use
10368 record_check_stopped_by_breakpoint instead of breakpoint_here_p.
10369 (record_full_stopped_by_watchpoint): Adjust.
10370 (record_full_stopped_by_sw_breakpoint)
10371 (record_full_supports_stopped_by_sw_breakpoint)
10372 (record_full_supports_stopped_by_sw_breakpoint)
10373 (record_full_stopped_by_hw_breakpoint)
10374 (record_full_supports_stopped_by_hw_breakpoint): New functions.
10375 (init_record_full_ops, init_record_full_core_ops): Install them.
10376 * record.c (record_check_stopped_by_breakpoint): New function.
10377 * record.h: Include target/waitstatus.h.
10378 (record_check_stopped_by_breakpoint): New declaration.
10379
10380 2015-03-04 Pedro Alves <palves@redhat.com>
10381
10382 enum lwp_stop_reason -> enum target_stop_reason
10383 * linux-nat.c (linux_resume_one_lwp, check_stopped_by_watchpoint)
10384 (linux_nat_stopped_by_watchpoint, status_callback)
10385 (linux_nat_wait_1): Adjust.
10386 * linux-nat.h (enum lwp_stop_reason): Delete.
10387 (struct lwp_info) <stop_reason>: Now an enum target_stop_reason.
10388 * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
10389 * target/waitstatus.h (enum target_stop_reason): New.
10390
10391 2015-03-04 Pedro Alves <palves@redhat.com>
10392
10393 * breakpoint.c (need_moribund_for_location_type): New function.
10394 (bpstat_stop_status): Don't skipping checking moribund locations
10395 of breakpoint types which the target tell caused a stop.
10396 (program_breakpoint_here_p): New function, factored out from ...
10397 (bp_loc_is_permanent): ... this.
10398 (update_global_location_list): Don't create a moribund location if
10399 the target supports reporting stops of the type of the removed
10400 breakpoint.
10401 * breakpoint.h (program_breakpoint_here_p): New declaration.
10402 * infrun.c (adjust_pc_after_break): Return early if the target has
10403 already adjusted the PC. Add comments.
10404 (handle_signal_stop): If nothing explains a signal, and the target
10405 tells us the stop was caused by a software breakpoint, check if
10406 there's a breakpoint instruction in the memory. If so, adjust the
10407 PC before presenting the stop to the user. Otherwise, ignore the
10408 trap. If nothing explains a signal, and the target tells us the
10409 stop was caused by a hardware breakpoint, ignore the trap.
10410 * target.h (struct target_ops) <to_stopped_by_sw_breakpoint,
10411 to_supports_stopped_by_sw_breakpoint, to_stopped_by_hw_breakpoint,
10412 to_supports_stopped_by_hw_breakpoint>: New fields.
10413 (target_stopped_by_sw_breakpoint)
10414 (target_supports_stopped_by_sw_breakpoint)
10415 (target_stopped_by_hw_breakpoint)
10416 (target_supports_stopped_by_hw_breakpoint): Define.
10417 * target-delegates.c: Regenerate.
10418
10419 2015-03-04 Pedro Alves <palves@redhat.com>
10420
10421 * infrun.c (follow_fork_inferior): Use the whole of the
10422 inferior_ptid and pending_follow.related_pid ptids instead of
10423 building ptids from the process components. Adjust verbose output
10424 to use target_pid_to_str.
10425 * linux-nat.c (linux_child_follow_fork): Use the whole of the
10426 inferior_ptid and pending_follow.related_pid ptids instead of
10427 building ptids from the process components.
10428
10429 2015-03-04 Mark Kettenis <kettenis@gnu.org>
10430
10431 * inf-ptrace.c [PT_GET_PROCESS_STATE]
10432 (inf_ptrace_insert_fork_catchpoint): New function.
10433 (inf_ptrace_remove_fork_catchpoint): New function.
10434 (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Install them.
10435
10436 2015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
10437
10438 * s390-linux-tdep.c (s390_register_name): Return empty string
10439 instead of NULL for registers that shouldn't be visible.
10440
10441 2015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
10442
10443 * s390-linux-tdep.c (s390_gdbarch_init): Use the correct syscall
10444 XML file for 64-bit targets.
10445
10446 2015-03-03 Simon Marchi <simon.marchi@ericsson.com>
10447
10448 * target.h (find_default_create_inferior): Remove declaration.
10449 (find_default_attach): Likewise.
10450
10451 2015-03-03 Pedro Alves <palves@redhat.com>
10452
10453 * inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace.
10454 Use ptid_get_pid to get the overall process id when resuming all
10455 threads.
10456
10457 2015-03-03 Pedro Alves <palves@redhat.com>
10458
10459 * i386-linux-nat.c (i386_linux_resume): Get the ptrace PID out of
10460 the lwp field of ptid. Pass the full ptid to get_thread_regcache.
10461 * inf-ptrace.c (get_ptrace_pid): New function.
10462 (inf_ptrace_resume): Use it.
10463 * linux-nat.c (linux_resume_one_lwp): Pass the LWP's ptid ummodified
10464 to the lower layer.
10465
10466 2015-03-03 Markus Metzger <markus.t.metzger@intel.com>
10467
10468 * nat/linux-btrace.c: Include sys/utsname.h.
10469 (linux_determine_kernel_ptr_bits): New.
10470 (linux_enable_bts): Call linux_determine_kernel_ptr_bits.
10471 * x86-linux-nat.c (x86_linux_enable_btrace): Do not overwrite non-zero
10472 ptr_bits.
10473
10474 2015-03-03 Markus Metzger <markus.t.metzger@intel.com>
10475
10476 * btrace.c (ftrace_update_function): Treat return as tailcall for
10477 "_dl_runtime_resolve".
10478
10479 2015-03-03 Markus Metzger <markus.t.metzger@intel.com>
10480
10481 * btrace.h (btrace_function) <lbegin, lend>: Remove.
10482 * btrace.c (ftrace_debug): Do not print the line range.
10483 (ftrace_skip_file, ftrace_update_lines): Remove.
10484 (ftrace_new_function): Remove lbegin and lend initialization.
10485 (btrace_compute_ftrace_bts): Remove call to ftrace_update_lines.
10486 * record-btrace.c (btrace_compute_src_line_range): New.
10487 (btrace_call_history_src_line): Call btrace_compute_src_line_range.
10488
10489 2015-03-02 Pedro Alves <palves@redhat.com>
10490
10491 * infrun.c (follow_exec): Delete all threads of the process except
10492 the event thread. Extended comments.
10493
10494 2015-03-02 Joel Brobecker <brobecker@adacore.com>
10495
10496 * contrib/ari/gdb_ari.sh: Reinstate checks for "true" and "false".
10497
10498 2015-03-02 Joel Brobecker <brobecker@adacore.com>
10499
10500 * utils.h: Remove <stdbool.h> #include.
10501 (producer_is_gcc): Change return type to "int".
10502 * utils.c (producer_is_gcc): Change return type to int.
10503 Return 1 instead of true, and 0 instead of false.
10504 Adjust function documentation accordingly.
10505
10506 2015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
10507
10508 * s390-linux-nat.c (have_regset_vxrs): New static variable.
10509 (s390_linux_fetch_inferior_registers): Handle vector registers, if
10510 present.
10511 (s390_linux_store_inferior_registers): Likewise.
10512 (s390_get_hwcap): Remove function. Embed its logic...
10513 (s390_read_description): ...here. Yield a target description with
10514 vector registers if applicable.
10515 * s390-linux-tdep.c: Include "features/s390-vx-linux64.c",
10516 "features/s390-tevx-linux64.c", "features/s390x-vx-linux64.c", and
10517 "features/s390x-tevx-linux64.c".
10518 (struct gdbarch_tdep) <v0_full_regnum>: New field.
10519 (s390_dwarf_regmap): Add vector registers. Remove bogus entries
10520 for "GNU/Linux-specific registers".
10521 (s390_dwarf_reg_r0l): New enum value.
10522 (s390_dwarf_reg_to_regnum): Support vector registers.
10523 (s390_adjust_frame_regnum): Adjust pseudo DWARF register numbers
10524 of GPR lower halves.
10525 (regnum_is_vxr_full): New function.
10526 (s390_register_name): New function.
10527 (s390_pseudo_register_name): Handle v0-v15, which are composed of
10528 f0-f15 and v0l-v15l.
10529 (s390_pseudo_register_type): Likewise.
10530 (s390_pseudo_register_read): Likewise.
10531 (s390_pseudo_register_write): Likewise.
10532 (s390_value_from_register): Account for the fact that values are
10533 placed left-justified in vector registers.
10534 (s390_pseudo_register_reggroup_p): Add pseudo registers v0-v15 to
10535 the vector reggroup and omit them from the general reggroup.
10536 (s390_regmap_vxrs_low, s390_regmap_vxrs_high): New register maps.
10537 (s390_vxrs_low_regset, s390_vxrs_high_regset): New regsets.
10538 (s390_iterate_over_regset_sections): Add iterations for the two
10539 new vector regsets.
10540 (s390_core_read_description): Yield a target description with
10541 vector registers if applicable.
10542 (s390_gdbarch_init): Handle target descriptions with vector
10543 registers. Add "register_name" gdbarch method.
10544 (_initialize_s390_tdep): Call new tdesc initialization functions.
10545 * s390-linux-tdep.h (HWCAP_S390_VX): New macro.
10546 (S390_V0_LOWER_REGNUM, S390_V1_LOWER_REGNUM, S390_V2_LOWER_REGNUM)
10547 (S390_V3_LOWER_REGNUM, S390_V4_LOWER_REGNUM, S390_V5_LOWER_REGNUM)
10548 (S390_V6_LOWER_REGNUM, S390_V7_LOWER_REGNUM, S390_V8_LOWER_REGNUM)
10549 (S390_V9_LOWER_REGNUM, S390_V10_LOWER_REGNUM)
10550 (S390_V11_LOWER_REGNUM, S390_V12_LOWER_REGNUM)
10551 (S390_V13_LOWER_REGNUM, S390_V14_LOWER_REGNUM)
10552 (S390_V15_LOWER_REGNUM, S390_V16_REGNUM, S390_V17_REGNUM)
10553 (S390_V18_REGNUM, S390_V19_REGNUM, S390_V20_REGNUM)
10554 (S390_V21_REGNUM, S390_V22_REGNUM, S390_V23_REGNUM)
10555 (S390_V24_REGNUM, S390_V25_REGNUM, S390_V26_REGNUM)
10556 (S390_V27_REGNUM, S390_V28_REGNUM, S390_V29_REGNUM)
10557 (S390_V30_REGNUM, S390_V31_REGNUM): New macros.
10558 (S390_NUM_REGS): Adjust value.
10559 (s390_vxrs_low_regset, s390_vxrs_high_regset): Declare.
10560 (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64)
10561 (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): Likewise.
10562 * NEWS: Announce S/390 vector register support.
10563
10564 2015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
10565
10566 * features/s390-tevx-linux64.xml: New file.
10567 * features/s390-vx-linux64.xml: New file.
10568 * features/s390-vx.xml: New file.
10569 * features/s390x-tevx-linux64.xml: New file.
10570 * features/s390x-vx-linux64.xml: New file.
10571 * features/Makefile (WHICH): Add s390-vx-linux64,
10572 s390x-vx-linux64, s390-tevx-linux64, and s390x-tevx-linux64.
10573 (s390-vx-linux64-expedite, s390-tevx-linux64-expedite)
10574 (s390x-vx-linux64-expedite, s390x-tevx-linux64-expedite): New
10575 macros.
10576 * features/s390-tevx-linux64.c: New generated file.
10577 * features/s390-vx-linux64.c: Likewise.
10578 * features/s390x-tevx-linux64.c: Likewise.
10579 * features/s390x-vx-linux64.c: Likewise.
10580 * regformats/s390-tevx-linux64.dat: Likewise.
10581 * regformats/s390-vx-linux64.dat: Likewise.
10582 * regformats/s390x-tevx-linux64.dat: Likewise.
10583 * regformats/s390x-vx-linux64.dat: Likewise.
10584
10585 2015-02-28 Doug Evans <xdje42@gmail.com>
10586
10587 * symtab.h (struct symtab) <next>: Fix comment.
10588
10589 2015-02-27 Simon Marchi <simon.marchi@ericsson.com>
10590
10591 * python/python.c (python_GdbModuleDef): Rename GdbMethods to
10592 python_GdbMethods.
10593
10594 2015-02-27 Pedro Alves <palves@redhat.com>
10595
10596 * dtrace-probe.c (dtrace_probe_ops): Make extern.
10597
10598 2015-02-27 Pedro Alves <palves@redhat.com>
10599
10600 * common/common-exceptions.h (exception_none): Declare.
10601 * common/common-exceptions.c (exception_none): Moved from
10602 exceptions.c.
10603 (exceptions_state_mc_init): Use exception_none.
10604 * exceptions.c (exception_none): Move to
10605 common/common-exceptions.c.
10606 * exceptions.h (exception_none): Move to
10607 common/common-exceptions.h.
10608
10609 2015-02-27 Pedro Alves <palves@redhat.com>
10610
10611 * main.c (catch_command_errors, catch_command_errors_const):
10612 Remove 'mask' argument. Adjust.
10613 (captured_main): Adjust callers.
10614
10615 2015-02-27 Pedro Alves <palves@redhat.com>
10616
10617 * python/python-internal.h: Include "extension-priv.h".
10618
10619 2015-02-27 Pedro Alves <palves@redhat.com>
10620
10621 * breakpoint.h (enum print_stop_action): Move further up in the
10622 file.
10623
10624 2015-02-27 Pedro Alves <palves@redhat.com>
10625
10626 * gdbarch.sh: Include regcache.h.
10627 * gdbarch.h: Regenerate.
10628
10629 2015-02-27 Pedro Alves <palves@redhat.com>
10630
10631 * arm-tdep.c (decode_insn) <arm_handle_insn, thumb_handle_insn>:
10632 Remove duplicate const.
10633 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Remove
10634 duplicate const.
10635
10636 2015-02-27 Pedro Alves <palves@redhat.com>
10637
10638 * cp-valprint.c (vtbl_ptr_name): Use EXPORTED_CONST.
10639 * guile/guile.c (extension_language_guile): Use EXPORTED_CONST.
10640 * features/feature_to_c.sh: Tag the generated xml_builtin array
10641 with extern const in C++ mode.
10642
10643 2015-02-27 Tom Tromey <tromey@redhat.com>
10644
10645 * minidebug.c (struct lzma_stream): Rename to ...
10646 (struct gdb_lzma_stream): ... this.
10647 (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust.
10648
10649 2015-02-27 Pedro Alves <palves@redhat.com>
10650
10651 * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New
10652 function.
10653 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
10654 (mi_cmd_stack_list_variables): Use it.
10655
10656 2015-02-27 Pedro Alves <palves@redhat.com>
10657
10658 * x86-linux-nat.c (u_debugreg_offset): New function.
10659 (x86_linux_dr_get, x86_linux_dr_set): Use it.
10660
10661 2015-02-27 Pedro Alves <palves@redhat.com>
10662
10663 * nat/x86-dregs.h (enum target_hw_bp_type): Remove forward
10664 declaration.
10665 Include break-common.h.
10666
10667 2015-02-27 Tom Tromey <tromey@redhat.com>
10668 Pedro Alves <palves@redhat.com>
10669
10670 * arm-tdep.c (set_fp_model_sfunc, arm_set_abi): Use 'int' for
10671 local used to iterate over enums.
10672 * completer.c (signal_completer): Likewise.
10673 * i386-tdep.c (i386_stap_parse_special_token): Likewise.
10674 * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
10675 * tui/tui-data.c (tui_next_win, tui_prev_win): Likewise.
10676 * tui/tui-layout.c (next_layout, prev_layout): Likewise.
10677 * tui/tui-win.c (tui_refresh_all_win, tui_rehighlight_all)
10678 (tui_resize_all, tui_set_focus_command, tui_all_windows_info): Likewise.
10679 * tui-wingeneral.c (tui_refresh_all): Likewise.
10680
10681 2015-02-27 Pedro Alves <palves@redhat.com>
10682
10683 * target.h: Include "infrun.h".
10684
10685 2015-02-27 Pedro Alves <palves@redhat.com>
10686
10687 * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP.
10688
10689 2015-02-27 Pedro Alves <palves@redhat.com>
10690
10691 * common/agent.h (IPA_SYM_EXPORTED_NAME): New.
10692 (IPA_SYM): Use it.
10693 * common/common-defs.h (EXTERN_C_PUSH, EXTERN_C_POP): New macros.
10694
10695 2015-02-27 Pedro Alves <palves@redhat.com>
10696
10697 * cli-out.c (_rl_erase_entire_line): Move declaration out of
10698 cli_mld_erase_entire_line, and make it extern "C".
10699 * common/common-defs.h (EXTERN_C): New.
10700 * completer.c (_rl_completion_prefix_display_length)
10701 (_rl_print_completions_horizontally, QSFUNC): Move declarations
10702 out of gdb_display_match_list_1.
10703 (_rl_qsort_string_compare): Move declaration out of
10704 gdb_display_match_list_1, and make it extern "C".
10705 * defs.h (re_comp): Use EXTERN_C.
10706 * maint.c (_mcleanup): Move declaration out of mcleanup_wrapper,
10707 and make it extern "C".
10708 (monstartup): Move declaration out of maintenance_set_profile_cmd,
10709 and make it extern "C".
10710 (main): Move declaration out of maintenance_set_profile_cmd.
10711 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string): Use
10712 EXTERN_C.
10713
10714 2015-02-27 Pedro Alves <palves@redhat.com>
10715
10716 * python/python.c (GdbMethods): Rename to ...
10717 (python_GdbMethods): ... this and make extern.
10718 (GdbModuleDef): Rename to ...
10719 (python_GdbModuleDef): ... this and make extern.
10720
10721 2015-02-27 Pedro Alves <palves@redhat.com>
10722
10723 * record-btrace.c (set_record_btrace_cmdlist)
10724 (show_record_btrace_cmdlist): Remove redefinitions.
10725
10726 2015-02-27 Tom Tromey <tromey@redhat.com>
10727 Pedro Alves <palves@redhat.com>
10728
10729 * dwarf2-frame.c (enum cfa_how_kind, struct
10730 dwarf2_frame_state_reg_info): Move out of struct
10731 dwarf2_frame_state.
10732 * dwarf2read.c (struct tu_stats): Move out of struct
10733 dwarf2_per_objfile.
10734 (struct file_entry): Move out of struct line_header.
10735 (struct nextfield, struct nextfnfield, struct fnfieldlist, struct
10736 typedef_field_list): Move out of struct field_info.
10737 * gdbtypes.h (enum dynamic_prop_kind, union dynamic_prop_data):
10738 Move out of struct dynamic_prop.
10739 (union type_owner, union field_location, struct field, struct
10740 range_bounds, union type_specific): Move out of struct main_type.
10741 (struct fn_fieldlist, struct fn_field, struct typedef_field)
10742 (VOFFSET_STATIC): Move out of struct cplus_struct_type.
10743 (struct call_site_target, union call_site_parameter_u, struct
10744 call_site_parameter): Move out of struct call_site.
10745 * m32c-tdep.c (enum m32c_prologue_kind): Move out of struct
10746 m32c_prologue.
10747 (enum srcdest_kind): Move out of struct srcdest.
10748 * main.c (enum cmdarg_kind): Move out of struct cmdarg.
10749 * prologue-value.h (enum prologue_value_kind): Move out of struct
10750 prologue_value.
10751 * s390-linux-tdep.c (enum s390_abi_kind): Move out of struct
10752 gdbarch_tdep.
10753 * stabsread.c (struct nextfield, struct next_fnfieldlist): Move
10754 out of struct field_info.
10755 * symfile.h (struct other_sections): Move out of struct
10756 section_addr_info.
10757 * symtab.c (struct symbol_cache_slot): Move out struct
10758 block_symbol_cache.
10759 * target-descriptions.c (enum tdesc_type_kind): Move out of
10760 typedef struct tdesc_type.
10761 * tui/tui-data.h (enum tui_line_or_address_kind): Move out of
10762 struct tui_line_or_address.
10763 * value.c (enum internalvar_kind, union internalvar_data): Move
10764 out of struct internalvar.
10765 * xtensa-tdep.h (struct ctype_cache): Move out of struct
10766 gdbarch_tdep.
10767
10768 2015-02-27 Tom Tromey <tromey@redhat.com>
10769 Pedro Alves <palves@redhat.com>
10770
10771 Rename symbols whose names are reserved C++ keywords throughout.
10772
10773 2015-02-27 Pedro Alves <palves@redhat.com>
10774
10775 * Makefile.in (COMPILER): New, get it from autoconf.
10776 (COMPILE.pre, CC_LD): Use COMPILER.
10777 (CXX): Get from autoconf instead.
10778 (CXX_FOR_TARGET): Default to g++ instead of gcc.
10779 * acinclude.m4: Include build-with-cxx.m4.
10780 * build-with-cxx.m4: New file.
10781 * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX.
10782 Disable -Werror by default if building in C++ mode.
10783 (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and
10784 -Wno-narrowing in C++ mode. Only enable -Wpointer-sign in C mode.
10785 Run supported-warning-flags tests with the C++ compiler.
10786 Save/restore CXXFLAGS too.
10787 * configure: Regenerate.
10788
10789 2015-02-27 Pedro Alves <palves@redhat.com>
10790
10791 * libiberty.m4: New file.
10792 * acinclude.m4: Include libiberty.m4.
10793 * configure.ac: Call libiberty_INIT.
10794 * config.in, configure: Regenerate.
10795
10796 2015-02-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
10797
10798 * s390-linux-tdep.c (s390_gcc_target_options): Not just handle
10799 31-bit targets, but 64-bit targets as well.
10800 (s390_gnu_triplet_regexp): New function.
10801 (s390_gdbarch_init): Set the gcc_target_options gdbarch method for
10802 64-bit targets as well. Set the gnu_triplet_regexp gdbarch
10803 method.
10804
10805 2015-02-27 Jon TURNEY <jon.turney@dronecode.org.uk> (tiny patch)
10806
10807 * windows-nat.c (CONTEXT_DEBUGGER): Remove.
10808 (CONTEXT_DEBUGGER_DR): Add CONTEXT_SEGMENTS. Incorporate flags
10809 from CONTEXT_DEBUGGER.
10810
10811 2015-02-26 Doug Evans <dje@google.com>
10812
10813 * gdbtypes.c (internal_type_vptr_fieldno): Add missing call to
10814 CHECK_TYPEDEF.
10815 (set_type_vptr_fieldno): Ditto.
10816 (internal_type_vptr_basetype, set_type_vptr_basetype): Ditto.
10817 * gnu-v3-abi.c (gnuv3_dynamic_class): Ditto.
10818
10819 2015-02-26 Pedro Alves <palves@redhat.com>
10820
10821 * auto-load.h (file_is_auto_load_safe): Add ATTRIBUTE_PRINTF.
10822 * complaints.c (vcomplaint): Pass argument FMT directly to
10823 printf-like functions instead of complaint->fmt.
10824 * ctf.c (ctf_save_write_metadata): Add ATTRIBUTE_PRINTF.
10825 * darwin-nat.c (inferior_debug): Add ATTRIBUTE_PRINTF.
10826 * compile/compile-loc2c.c (pushf, unary, binary): Add
10827 ATTRIBUTE_PRINTF.
10828 (do_compile_dwarf_expr_to_c): Pass string literal as format string
10829 to pushf.
10830 (BINARY): Pass string literal as format string to 'binary'.
10831 * compile/compile-object-load.c (link_callbacks_einfo): Add
10832 ATTRIBUTE_PRINTF.
10833 * guile/guile-internal.h (gdbscm_printf): Add ATTRIBUTE_PRINTF.
10834
10835 2015-02-26 Pedro Alves <palves@redhat.com>
10836
10837 * windows-termcap.c: Rename to ...
10838 * stub-termcap.c: ... this. Adjust header line.
10839 * Makefile.in (SFILES): Refer to stub-termcap.c instead of
10840 windows-termcap.c.
10841 * configure: Regenerate.
10842 * configure.ac: Refer to stub-termcap.o instead of
10843 windows-termcap.o.
10844 * gdb_curses.h: Mention stub-termcap.c instead of
10845 windows-termcap.c.
10846
10847 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
10848
10849 * compile/compile-c-symbols.c (convert_one_symbol, convert_symbol_bmsym)
10850 (gcc_symbol_address): Call gnu_ifunc_resolve_addr.
10851
10852 2015-02-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
10853
10854 * gdb/infcmd.c (print_return_value): use type_to_string to print type.
10855
10856 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
10857
10858 * elfread.c (elf_read_minimal_symbols): Use bfd_alloc for
10859 bfd_canonicalize_symtab.
10860
10861 2015-02-25 John Baldwin <jhb@FreeBSD.org>
10862
10863 * amd64fbsd-nat.c: Include sys/user.h.
10864 (_initialize_amd64fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
10865 instead of KERN_PS_STRINGS to locate the signal trampoline.
10866 * i386fbsd-nat.c: Include sys/user.h.
10867 (_initialize_i386fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
10868 instead of KERN_PS_STRINGS to locate the signal trampoline.
10869 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_code): New.
10870 (amd64fbsd_sigtramp_p): New.
10871 (amd64fbsd_sigtramp_start_addr, amd64fbsd_sigtramp_end_addr): No
10872 longer set default values.
10873 (amd64fbsd_init_abi): Set "sigtramp_p" to "amd64fbsd_sigtramp_p".
10874 * i386fbsd-tdep.c (i386fbsd_sigtramp_start)
10875 (i386fbsd_sigtramp_middle, i386fbsd_sigtramp_end)
10876 (i386fbsd_freebsd4_sigtramp_start)
10877 (i386fbsd_freebsd4_sigtramp_middle)
10878 (i386fbsd_freebsd4_sigtramp_end, i386fbsd_osigtramp_start)
10879 (i386fbsd_osigtramp_middle, i386fbsd_osigtramp_end): New.
10880 (i386fbsd_sigtramp_p): New.
10881 (i386fbsd_sigtramp_start_addr, i386fbsd_sigtramp_end_addr): No
10882 longer set default values.
10883 (i386fbsd_init_abi): Set "sigtramp_p" to "i386fbsd_sigtramp_p".
10884
10885 2015-02-25 John Baldwin <jhb@freebsd.org>
10886
10887 * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use
10888 get_frame_register instead of frame_unwind_register_unsigned.
10889
10890 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
10891
10892 PR build/18033
10893 * compile/compile-c-support.c (c_compute_program): Change // comment.
10894 * compile/compile-object-load.c (setup_sections): Change // comment.
10895
10896 2015-02-26 Joel Brobecker <brobecker@adacore.com>
10897
10898 PR build/18033:
10899 * iq2000-tdep.c (iq2000_frame_cache): Delete C++-style comment.
10900
10901 2015-02-23 Pedro Alves <palves@redhat.com>
10902
10903 * remote.c (skip_to_semicolon): New function.
10904 (remote_parse_stop_reply) <T stop reply>: Use it. Don't
10905 special case the stop reasons that look like hex numbers
10906 upfront. Instead handle real register numbers after matching
10907 all the known stop reasons.
10908
10909 2015-02-21 Doug Evans <dje@google.com>
10910
10911 PR c++/17976, symtab/17821
10912 * cp-namespace.c (cp_search_static_and_baseclasses): New parameter
10913 is_in_anonymous. All callers updated.
10914 (find_symbol_in_baseclass): Ditto.
10915 (cp_lookup_nested_symbol_1): Ditto. Don't search all static blocks
10916 for symbols in an anonymous namespace.
10917 * dwarf2read.c (namespace_name): Don't call dwarf2_name, fetch
10918 DW_AT_name directly.
10919 (dwarf2_name): Convert missing namespace name to
10920 CP_ANONYMOUS_NAMESPACE_STR.
10921
10922 2015-02-20 Pedro Alves <palves@redhat.com>
10923
10924 * linux-nat.c (linux_handle_extended_wait): Call
10925 thread_db_notice_clone whenever a new clone LWP is detected.
10926 (linux_stop_and_wait_all_lwps, linux_unstop_all_lwps): New
10927 functions.
10928 * linux-nat.h (thread_db_attach_lwp): Delete declaration.
10929 (thread_db_notice_clone, linux_stop_and_wait_all_lwps)
10930 (linux_unstop_all_lwps): Declare.
10931 * linux-thread-db.c (struct thread_get_info_inout): Delete.
10932 (thread_get_info_callback): Delete.
10933 (thread_from_lwp): Use td_thr_get_info and record_thread.
10934 (thread_db_attach_lwp): Delete.
10935 (thread_db_notice_clone): New function.
10936 (try_thread_db_load_1): If /proc is mounted and shows the
10937 process'es task list, walk over all LWPs and call thread_from_lwp
10938 instead of relying on td_ta_thr_iter.
10939 (attach_thread): Don't call check_thread_signals here. Split the
10940 tail part of the function (which adds the thread to the core GDB
10941 thread list) to ...
10942 (record_thread): ... this function. Call check_thread_signals
10943 here.
10944 (thread_db_wait): Don't call thread_db_find_new_threads_1. Always
10945 call thread_from_lwp.
10946 (thread_db_update_thread_list): Rename to ...
10947 (thread_db_update_thread_list_org): ... this.
10948 (thread_db_update_thread_list): New function.
10949 (thread_db_find_thread_from_tid): Delete.
10950 (thread_db_get_ada_task_ptid): Simplify.
10951 * nat/linux-procfs.c: Include <sys/stat.h>.
10952 (linux_proc_task_list_dir_exists): New function.
10953 * nat/linux-procfs.h (linux_proc_task_list_dir_exists): Declare.
10954
10955 2015-02-20 Pedro Alves <palves@redhat.com>
10956
10957 * linux-nat.c (lin_lwp_attach_lwp): No longer special case the
10958 main LWP. Handle the case of waitpid returning 0 if we're already
10959 attached to the LWP. Don't set the LWP's last_resume_kind to
10960 resume_stop if we already knew about the LWP.
10961 (linux_nat_filter_event): Add debug logs.
10962
10963 2015-02-20 Pedro Alves <palves@redhat.com>
10964
10965 * target.h (forward_target_decr_pc_after_break): Delete
10966 declaration.
10967
10968 2015-02-20 Pedro Alves <palves@redhat.com>
10969
10970 PR threads/18006
10971 * linux-thread-db.c (thread_get_info_callback): Return early if
10972 the thread's lwp id is -1.
10973
10974 2015-02-20 Joel Brobecker <brobecker@adacore.com>
10975
10976 GDB 7.9 released.
10977
10978 2015-02-19 Steve Ellcey <sellcey@imgtec.com>
10979
10980 * dtrace-probe.c (dtrace_process_dof_probe): Initialize arg.expr.
10981 (dtrace_get_probes) Change type of variable 'dof'.
10982
10983 2015-02-19 Antoine Tremblay <antoine.tremblay@ericsson.com>
10984
10985 PR breakpoints/16812
10986 * linux-nat.c (linux_nat_filter_event): Report SIGTRAP,SIGILL,SIGSEGV.
10987 * nat/linux-ptrace.c (linux_wstatus_maybe_breakpoint): Add.
10988 * nat/linux-ptrace.h: Add linux_wstatus_maybe_breakpoint.
10989
10990 2015-02-19 David Taylor <dtaylor@emc.com>
10991
10992 * common/ax.def (setv): Fix consumed entry in setv DEFOP.
10993
10994 2015-02-18 Patrick Palka <patrick@parcs.ath.cx>
10995
10996 * tui/tui-io.c (tui_handle_resize_during_io): Remove this
10997 function.
10998 (tui_putc): Don't call tui_handle_resize_during_io.
10999 (tui_getc): Likewise.
11000 (tui_mld_getc): Likewise.
11001 * tui/tui-win.c: Include event-loop.h and tui/tui-io.h.
11002 (tui_sigwinch_token): New static variable.
11003 (tui_initialize_win): Adjust documentation. Set
11004 tui_sigwinch_token.
11005 (tui_async_resize_screen): New asynchronous callback.
11006 (tui_sigwinch_handler): Adjust documentation. Asynchronously
11007 invoke tui_async_resize_screen.
11008
11009 2015-02-18 Jose E. Marchesi <jose.marchesi@oracle.com>
11010
11011 * configure: Regenerated.
11012 * configure.ac: Use GDB_AC_TRANSFORM.
11013 * Makefile.in (aclocal_m4_deps): Added transform.m4.
11014 * acinclude.m4: sinclude transform.m4.
11015 * transform.m4: New file.
11016 (GDB_AC_TRANSFORM): New macro.
11017
11018 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11019
11020 * NEWS: Announce the support for DTrace SDT probes.
11021
11022 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11023
11024 * amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h".
11025 (amd64_dtrace_parse_probe_argument): New function.
11026 (amd64_dtrace_probe_is_enabled): Likewise.
11027 (amd64_dtrace_enable_probe): Likewise.
11028 (amd64_dtrace_disable_probe): Likewise.
11029 (amd64_linux_init_abi): Register the
11030 `gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe',
11031 `gdbarch_dtrace_disable_probe' and
11032 `gdbarch_dtrace_probe_is_enabled' hooks.
11033 (amd64_dtrace_disabled_probe_sequence_1): New constant.
11034 (amd64_dtrace_disabled_probe_sequence_2): Likewise.
11035 (amd64_dtrace_enable_probe_sequence): Likewise.
11036 (amd64_dtrace_disable_probe_sequence): Likewise.
11037
11038 2015-01-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11039
11040 * breakpoint.c (BREAK_ARGS_HELP): Help string updated to mention
11041 the -probe-dtrace new vpossible value for PROBE_MODIFIER.
11042 * configure.ac (CONFIG_OBS): dtrace-probe.o added if BFD can
11043 handle ELF files.
11044 * Makefile.in (SFILES): dtrace-probe.c added.
11045 * configure: Regenerate.
11046 * dtrace-probe.c: New file.
11047 (SHT_SUNW_dof): New constant.
11048 (dtrace_probe_type): New enum.
11049 (dtrace_probe_arg): New struct.
11050 (dtrace_probe_arg_s): New typedef.
11051 (struct dtrace_probe_enabler): New struct.
11052 (dtrace_probe_enabler_s): New typedef.
11053 (dtrace_probe): New struct.
11054 (dtrace_probe_is_linespec): New function.
11055 (dtrace_dof_sect_type): New enum.
11056 (dtrace_dof_dofh_ident): Likewise.
11057 (dtrace_dof_encoding): Likewise.
11058 (DTRACE_DOF_ENCODE_LSB): Likewise.
11059 (DTRACE_DOF_ENCODE_MSB): Likewise.
11060 (dtrace_dof_hdr): New struct.
11061 (dtrace_dof_sect): Likewise.
11062 (dtrace_dof_provider): Likewise.
11063 (dtrace_dof_probe): Likewise.
11064 (DOF_UINT): New macro.
11065 (DTRACE_DOF_PTR): Likewise.
11066 (DTRACE_DOF_SECT): Likewise.
11067 (dtrace_process_dof_probe): New function.
11068 (dtrace_process_dof): Likewise.
11069 (dtrace_build_arg_exprs): Likewise.
11070 (dtrace_get_arg): Likewise.
11071 (dtrace_get_probes): Likewise.
11072 (dtrace_get_probe_argument_count): Likewise.
11073 (dtrace_can_evaluate_probe_arguments): Likewise.
11074 (dtrace_evaluate_probe_argument): Likewise.
11075 (dtrace_compile_to_ax): Likewise.
11076 (dtrace_probe_destroy): Likewise.
11077 (dtrace_gen_info_probes_table_header): Likewise.
11078 (dtrace_gen_info_probes_table_values): Likewise.
11079 (dtrace_probe_is_enabled): Likewise.
11080 (dtrace_probe_ops): New variable.
11081 (info_probes_dtrace_command): New function.
11082 (_initialize_dtrace_probe): Likewise.
11083 (dtrace_type_name): Likewise.
11084
11085 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11086
11087 * gdbarch.sh (dtrace_parse_probe_argument): New.
11088 (dtrace_probe_is_enabled): Likewise.
11089 (dtrace_enable_probe): Likewise.
11090 (dtrace_disable_probe): Likewise.
11091 * gdbarch.c: Regenerate.
11092 * gdbarch.h: Regenerate.
11093
11094 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11095
11096 * stap-probe.c (stap_probe_ops): Add NULLs in the static
11097 stap_probe_ops for `enable_probe' and `disable_probe'.
11098 * probe.c (enable_probes_command): New function.
11099 (disable_probes_command): Likewise.
11100 (_initialize_probe): Define the cli commands `enable probe' and
11101 `disable probe'.
11102 (parse_probe_linespec): New function.
11103 (info_probes_for_ops): Use parse_probe_linespec.
11104 * probe.h (probe_ops): New hooks `enable_probe' and
11105 `disable_probe'.
11106
11107 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11108
11109 * probe.c (compute_probe_arg): Moved from stap-probe.c
11110 (compile_probe_arg): Likewise.
11111 (probe_funcs): Likewise.
11112 * stap-probe.c (compute_probe_arg): Moved to probe.c.
11113 (compile_probe_arg): Likewise.
11114 (probe_funcs): Likewise.
11115
11116 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11117
11118 * probe.c (print_ui_out_not_applicables): New function.
11119 (exists_probe_with_pops): Likewise.
11120 (info_probes_for_ops): Do not include column headers for probe
11121 types for which no probe has been actually found on any object.
11122 Also invoke `print_ui_out_not_applicables' in order to match the
11123 column rows with the header when probes of several types are
11124 listed.
11125 Print the "Type" column.
11126 * probe.h (probe_ops): Added a new probe operation `type_name'.
11127 * stap-probe.c (stap_probe_ops): Add `stap_type_name'.
11128 (stap_type_name): New function.
11129
11130 2015-02-17 Patrick Palka <patrick@parcs.ath.cx>
11131
11132 * tui/tui-io.c (tui_getc): Don't call key_is_command_char.
11133 (key_is_command_char): Delete.
11134
11135 2015-02-17 Pedro Alves <palves@redhat.com>
11136
11137 * tui/tui.c (tui_enable): Resize windows before anything
11138 might show a window.
11139
11140 2015-02-17 Max Ostapenko <m.ostapenko@partner.samsung.com>
11141
11142 PR gdb/17984
11143 * aarch64-linux-nat.c: Don't include features/aarch64.c anymore.
11144 (aarch64_linux_read_description): Remove initialize_tdesc_aarch64
11145 call.
11146 * aarch64-tdep.h (tdesc_aarch64): Declare.
11147
11148 2015-02-12 Mark Wielaard <mjw@redhat.com>
11149
11150 * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false".
11151
11152 2015-02-13 Doug Evans <dje@google.com>
11153
11154 * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter
11155 anonymous_namespace to is_in_anonymous for consistency with the rest
11156 of the file.
11157 (cp_lookup_bare_symbol): Fix typo in comment.
11158 (cp_search_static_and_baseclasses): Ditto.
11159 (search_symbol_list): Use vertical space in comment better.
11160 (reset_directive_searched): Ditto. Fix typo.
11161 (cp_lookup_nested_symbol_1): Clarify contents of NESTED_NAME parameter.
11162
11163 2015-02-13 Yao Qi <yao.qi@arm.com>
11164
11165 * MAINTAINERS: Update my email address.
11166
11167 2015-02-12 Doug Evans <dje@google.com>
11168
11169 * symtab.c (completion_list_add_name): Fix memory leak.
11170
11171 2015-02-12 Doug Evans <dje@google.com>
11172
11173 * completer.c (complete_line): Remove incorrect comment.
11174
11175 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11176
11177 * python/py-framefilter.c (py_print_single_arg, enumerate_locals)
11178 (py_print_frame): Use RETURN_MASK_ERROR.
11179
11180 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11181
11182 * python/py-framefilter.c (py_print_frame): Mention RETURN_QUIT in
11183 function comment. Wrap all function that can throw in cleanups.
11184 (gdbpy_apply_frame_filter): Wrap all function that can throw in
11185 cleanups.
11186
11187 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11188
11189 * python/py-framefilter.c (py_print_frame): Substitute goto error.
11190 Remove the error label.
11191
11192 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11193
11194 * python/py-framefilter.c (py_print_frame): Put conditional code paths
11195 with goto first, indent the former else codepath left. Put variable
11196 'elided' to a new inner block.
11197
11198 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11199
11200 * python/py-framefilter.c (py_print_frame): Whitespacing fixes.
11201
11202 2015-02-11 Pedro Alves <palves@redhat.com>
11203
11204 * xcoffread.c (within_function): Delete.
11205
11206 2015-02-11 Tom Tromey <tromey@redhat.com>
11207 Pedro Alves <palves@redhat.com>
11208
11209 * breakpoint.c (base_breakpoint_ops): Delete.
11210 * dwarf2loc.c (dwarf_expr_ctx_funcs): Make extern.
11211 * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_lazy_psyms): Make extern.
11212 * guile/guile.c (guile_extension_script_ops, guile_extension_ops): Make extern.
11213 * ppcnbsd-tdep.c (ppcnbsd2_sigtramp): Make extern.
11214 * python/py-arch.c (arch_object_type): Make extern.
11215 * python/py-block.c (block_syms_iterator_object_type): Make extern.
11216 * python/py-bpevent.c (breakpoint_event_object_type): Make extern.
11217 * python/py-cmd.c (cmdpy_object_type): Make extern.
11218 * python/py-continueevent.c (continue_event_object_type)
11219 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove 'qual'
11220 parameter. Update all callers.
11221 * python/py-evtregistry.c (eventregistry_object_type): Make extern.
11222 * python/py-exitedevent.c (exited_event_object_type): Make extern.
11223 * python/py-finishbreakpoint.c (finish_breakpoint_object_type): Make extern.
11224 * python/py-function.c (fnpy_object_type): Make extern.
11225 * python/py-inferior.c (inferior_object_type, membuf_object_type): Make extern.
11226 * python/py-infevents.c (call_pre_event_object_type)
11227 (inferior_call_post_event_object_type).
11228 (memory_changed_event_object_type): Make extern.
11229 * python/py-infthread.c (thread_object_type): Make extern.
11230 * python/py-lazy-string.c (lazy_string_object_type): Make extern.
11231 * python/py-linetable.c (linetable_entry_object_type)
11232 (linetable_object_type, ltpy_iterator_object_type): Make extern.
11233 * python/py-newobjfileevent.c (new_objfile_event_object_type)
11234 (clear_objfiles_event_object_type): Make extern.
11235 * python/py-objfile.c (objfile_object_type): Make extern.
11236 * python/py-param.c (parmpy_object_type): Make extern.
11237 * python/py-progspace.c (pspace_object_type): Make extern.
11238 * python/py-signalevent.c (signal_event_object_type): Make extern.
11239 * python/py-symtab.c (symtab_object_type, sal_object_type): Make extern.
11240 * python/py-type.c (type_object_type, field_object_type)
11241 (type_iterator_object_type): Make extern.
11242 * python/python.c (python_extension_script_ops)
11243 (python_extension_ops): Make extern.
11244 * stap-probe.c (stap_probe_ops): Make extern.
11245
11246 2015-02-11 Pedro Alves <pedro@codesourcery.com>
11247
11248 * infrun.c (adjust_pc_after_break): Don't adjust the PC just
11249 because the event thread is not the current thread.
11250
11251 2015-02-11 Doug Evans <xdje42@gmail.com>
11252
11253 * gdbtypes.c (internal_type_self_type): If TYPE_SPECIFIC_FIELD hasn't
11254 been initialized yet, return NULL.
11255
11256 2015-02-11 Doug Evans <dje@google.com>
11257
11258 * symfile.h (new_symfile_objfile): Delete.
11259 * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile.
11260 All callers updated.
11261
11262 2015-02-11 Patrick Palka <patrick@parcs.ath.cx>
11263
11264 * tui/tui-io.c (tui_handle_resize_during_io): Call
11265 tui_update_gdb_sizes() after resizing the screen.
11266 * tui/tui.c (tui_enable): Resize the terminal before
11267 calling tui_update_gdb_sizes().
11268
11269 2015-02-11 Patrick Palka <patrick@parcs.ath.cx>
11270
11271 * tui/tui-io.c (tui_getc): Move cursor to the end of the command
11272 line before printing a newline.
11273
11274 2015-02-11 Mark Wielaard <mjw@redhat.com>
11275
11276 * utils.c (producer_is_gcc): Return true or false.
11277
11278 2015-02-10 Mark Wielaard <mjw@redhat.com>
11279
11280 * utils.h (producer_is_gcc): Change return type to bool. Add major
11281 argument.
11282 * utils.c (producer_is_gcc): Likewise.
11283 (producer_is_gcc_ge_4): Adjust producer_is_gcc call.
11284 * dwarf2read.c (check_producer): Likewise.
11285
11286 2015-02-10 Pedro Alves <palves@redhat.com>
11287
11288 * infrun.c (displaced_step_fixup): Switch to the event thread
11289 before calling gdbarch_displaced_step_fixup.
11290
11291 2015-02-10 Antoine Tremblay <antoine.tremblay@ericsson.com>
11292
11293 * MAINTAINERS (Write After Approval): Add Antoine Tremblay.
11294
11295 2015-02-10 Simon Marchi <simon.marchi@ericsson.com>
11296
11297 * ada-varobj.c (ada_name_of_child): Constify parent.
11298 (ada_path_expr_of_child): Same.
11299 (ada_value_of_child): Same.
11300 (ada_type_of_child): Same.
11301 * c-varobj.c (c_is_path_expr_parent): Same.
11302 (c_describe_child): Same.
11303 (c_name_of_child): Same.
11304 (c_value_of_child): Same.
11305 (c_type_of_child): Same.
11306 (cplus_number_of_children): Same.
11307 (cplus_describe_child): Constify var.
11308 (cplus_name_of_child): Constify parent.
11309 (cplus_value_of_child): Same.
11310 (cplus_type_of_child): Same.
11311 * jv-varobj.c (java_name_of_child): Same.
11312 (java_value_of_child): Same.
11313 (java_type_of_child): Same.
11314 * varobj.c (value_of_child): Same.
11315 (varobj_default_is_path_expr_parent): Constify var, parent and return
11316 value.
11317 (varobj_get_path_expr): Constify var, modify path_expr through
11318 mutable_var.
11319 (install_new_value): Constify parent.
11320 (value_of_child): Constify parent.
11321 * varobj.h (struct varobj): Constify parent.
11322 (struct lang_varobj_ops): Constify name_of_child, value_of_child and
11323 type_of_child.
11324 (varobj_get_path_expr): Constify var.
11325 (varobj_get_path_expr_parent): Constify var and return value.
11326
11327 2015-02-10 Luis Machado <lgustavo@codesourcery.com>
11328
11329 * arm-tdep.c (arm_prologue_unwind_stop_reason): New function.
11330 (arm_prologue_this_id): Move PC and SP limit checks to
11331 arm_prologue_unwind_stop_reason.
11332 (arm_prologue_unwind) <stop_reason> : Set to
11333 arm_prologue_unwind_stop_reason.
11334
11335 2015-02-09 Mark Wielaard <mjw@redhat.com>
11336
11337 * dwarf2read.c (set_cu_language): Recognize DW_LANG_Fortran03 and
11338 DW_LANG_Fortran08 as language_fortran.
11339
11340 2015-02-09 Sergio Durigan Junior <sergiodj@redhat.com>
11341
11342 PR remote/17946
11343 * gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison
11344 of pointer against char.
11345
11346 2015-02-09 Mark Wielaard <mjw@redhat.com>
11347
11348 * c-typeprint.c (cp_type_print_method_args): Handle '_Atomic'.
11349 (c_type_print_modifier): Likewise.
11350 * dwarf2read.c (read_tag_atomic_type): New function.
11351 (read_type_die_1): Handle DW_TAG_atomic_type.
11352 * gdbtypes.c (make_atomic_type): New function.
11353 (recursive_dump_type): Handle TYPE_ATOMIC.
11354 * gdbtypes.h (enum type_flag_values): Renumber.
11355 (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_ATOMIC.
11356 (TYPE_ATOMIC): New macro.
11357 (make_atomic_type): Declare.
11358
11359 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11360
11361 * btrace.c (ftrace_find_call): Skip gaps.
11362 (ftrace_new_function): Initialize level.
11363 (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return)
11364 (ftrace_new_switch): Update
11365 level computation.
11366 (ftrace_new_gap): New.
11367 (ftrace_update_function): Create new function after gap.
11368 (btrace_compute_ftrace_bts): Create gap on error.
11369 (btrace_stitch_bts): Update parameters. Clear trace if it
11370 becomes empty.
11371 (btrace_stitch_trace): Update parameters. Update callers.
11372 (btrace_clear): Reset the number of gaps.
11373 (btrace_insn_get): Return NULL if the iterator points to a gap.
11374 (btrace_insn_number): Return zero if the iterator points to a gap.
11375 (btrace_insn_end): Allow gaps at the end.
11376 (btrace_insn_next, btrace_insn_prev, btrace_insn_cmp): Handle gaps.
11377 (btrace_find_insn_by_number): Assert that the found iterator does
11378 not point to a gap.
11379 (btrace_call_next, btrace_call_prev): Assert that the last function
11380 is not a gap.
11381 * btrace.h (btrace_bts_error): New.
11382 (btrace_function): Update comment.
11383 (btrace_function) <insn, insn_offset, number>: Update comment.
11384 (btrace_function) <errcode>: New.
11385 (btrace_thread_info) <ngaps>: New.
11386 (btrace_thread_info) <replay>: Update comment.
11387 (btrace_insn_get): Update comment.
11388 * record-btrace.c (btrace_ui_out_decode_error): New.
11389 (record_btrace_info): Print number of gaps.
11390 (btrace_insn_history, btrace_call_history): Call
11391 btrace_ui_out_decode_error for gaps.
11392 (record_btrace_step_thread, record_btrace_start_replaying): Skip gaps.
11393
11394 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11395
11396 * common/btrace-common.h (btrace_cpu_vendor, btrace_cpu): New.
11397 * nat/linux-btrace.c: (btrace_this_cpu): New.
11398 (cpu_supports_bts): Call btrace_this_cpu.
11399 (intel_supports_bts): Add cpu parameter.
11400
11401 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11402
11403 * btrace.h (btrace_insn_class): New.
11404 (btrace_insn) <size, iclass>: New.
11405 * btrace.c (ftrace_find_call): Update parameters. Update users.
11406 Use instruction classification.
11407 (ftrace_new_return): Update parameters. Update users.
11408 (ftrace_update_function): Update parameters. Update users. Use
11409 instruction classification.
11410 (ftrace_update_insns): Update parameters. Update users.
11411 (ftrace_classify_insn): New.
11412 (btrace_compute_ftrace_bts): Fill in new btrace_insn fields. Add
11413 TRY_CATCH around call to gdb_insn_length.
11414
11415 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11416
11417 * btrace.c (btrace_compute_ftrace_bts, btrace_compute_ftrace):
11418 Update parameters. Update users.
11419
11420 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11421
11422 * btrace.c (parse_xml_btrace_conf_bts): Add size.
11423 (btrace_conf_bts_attributes): New.
11424 (btrace_conf_children): Add attributes.
11425 * common/btrace-common.h (btrace_config_bts): New.
11426 (btrace_config)<bts>: New.
11427 (btrace_config): Update comment.
11428 * nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts):
11429 Use config.
11430 * features/btrace-conf.dtd: Increment version. Add size
11431 attribute to bts element.
11432 * record-btrace.c (set_record_btrace_bts_cmdlist,
11433 show_record_btrace_bts_cmdlist): New.
11434 (record_btrace_adjust_size, record_btrace_print_bts_conf,
11435 record_btrace_print_conf, cmd_set_record_btrace_bts,
11436 cmd_show_record_btrace_bts): New.
11437 (record_btrace_info): Call record_btrace_print_conf.
11438 (_initialize_record_btrace): Add commands.
11439 * remote.c: Add PACKET_Qbtrace_conf_bts_size enum.
11440 (remote_protocol_features): Add Qbtrace-conf:bts:size packet.
11441 (btrace_sync_conf): Synchronize bts size.
11442 (_initialize_remote): Add Qbtrace-conf:bts:size packet.
11443 * NEWS: Announce new commands and new packets.
11444
11445 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11446
11447 * Makefile.in (XMLFILES): Add btrace-conf.dtd.
11448 * x86-linux-nat.c (x86_linux_enable_btrace): Update parameters.
11449 (x86_linux_btrace_conf): New.
11450 (x86_linux_create_target): Initialize to_btrace_conf.
11451 * nat/linux-btrace.c (linux_enable_btrace): Update parameters.
11452 Check format. Split into this and ...
11453 (linux_enable_bts): ... this.
11454 (linux_btrace_conf): New.
11455 (perf_event_skip_record): Renamed into ...
11456 (perf_event_skip_bts_record): ... this. Updated users.
11457 (linux_disable_btrace): Split into this and ...
11458 (linux_disable_bts): ... this.
11459 (linux_read_btrace): Check format.
11460 * nat/linux-btrace.h (linux_enable_btrace): Update parameters.
11461 (linux_btrace_conf): New.
11462 (btrace_target_info)<ptid>: Moved.
11463 (btrace_target_info)<conf>: New.
11464 (btrace_target_info): Split into this and ...
11465 (btrace_tinfo_bts): ... this. Updated users.
11466 * btrace.c (btrace_enable): Update parameters.
11467 (btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf)
11468 (btrace_conf_children, btrace_conf_attributes)
11469 (btrace_conf_elements): New.
11470 * btrace.h (btrace_enable): Update parameters.
11471 (btrace_conf, parse_xml_btrace_conf): New.
11472 * common/btrace-common.h (btrace_config): New.
11473 * feature/btrace-conf.dtd: New.
11474 * record-btrace.c (record_btrace_conf): New.
11475 (record_btrace_cmdlist): New.
11476 (record_btrace_enable_warn, record_btrace_open): Pass
11477 &record_btrace_conf.
11478 (record_btrace_info): Print recording format.
11479 (cmd_record_btrace_bts_start): New.
11480 (cmd_record_btrace_start): Call cmd_record_btrace_bts_start.
11481 (_initialize_record_btrace): Add "record btrace bts" subcommand.
11482 Add "record bts" alias command.
11483 * remote.c (remote_state)<btrace_config>: New.
11484 (remote_btrace_reset, PACKET_qXfer_btrace_conf): New.
11485 (remote_protocol_features): Add qXfer:btrace-conf:read.
11486 (remote_open_1): Call remote_btrace_reset.
11487 (remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF.
11488 (btrace_target_info)<conf>: New.
11489 (btrace_sync_conf, btrace_read_config): New.
11490 (remote_enable_btrace): Update parameters. Call btrace_sync_conf and
11491 btrace_read_conf.
11492 (remote_btrace_conf): New.
11493 (init_remote_ops): Initialize to_btrace_conf.
11494 (_initialize_remote): Add qXfer:btrace-conf packet.
11495 * target.c (target_enable_btrace): Update parameters.
11496 (target_btrace_conf): New.
11497 * target.h (target_enable_btrace): Update parameters.
11498 (target_btrace_conf): New.
11499 (target_object)<TARGET_OBJECT_BTRACE_CONF>: New.
11500 (target_ops)<to_enable_btrace>: Update parameters and comment.
11501 (target_ops)<to_btrace_conf>: New.
11502 * target-delegates: Regenerate.
11503 * target-debug.h (target_debug_print_const_struct_btrace_config_p)
11504 (target_debug_print_const_struct_btrace_target_info_p): New.
11505 * NEWS: Announce new command and new packet.
11506
11507 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11508
11509 * nat/linux-btrace.h (perf_event_buffer): New.
11510 (btrace_target_info) <buffer, size, data_head>: Replace with ...
11511 <bts>: ... this.
11512 * nat/linux-btrace.c (perf_event_header, perf_event_mmap_size)
11513 (perf_event_buffer_size, perf_event_buffer_begin)
11514 (perf_event_buffer_end, linux_btrace_has_changed): Removed.
11515 Updated users.
11516 (perf_event_new_data): New.
11517
11518 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11519
11520 * btrace.c (btrace_enable): Pass BTRACE_FORMAT_BTS.
11521 * record-btrace.c (record_btrace_open): Remove call to
11522 target_supports_btrace.
11523 * remote.c (remote_supports_btrace): Update parameters.
11524 * target.c (target_supports_btrace): Update parameters.
11525 * target.h (to_supports_btrace, target_supports_btrace): Update
11526 parameters.
11527 * target-delegates.c: Regenerate.
11528 * target-debug.h (target_debug_print_enum_btrace_format): New.
11529 * nat/linux-btrace.c
11530 (kernel_supports_btrace): Rename into ...
11531 (kernel_supports_bts): ... this. Update users. Update warning text.
11532 (intel_supports_btrace): Rename into ...
11533 (intel_supports_bts): ... this. Update users.
11534 (cpu_supports_btrace): Rename into ...
11535 (cpu_supports_bts): ... this. Update users.
11536 (linux_supports_btrace): Update parameters. Split into this and ...
11537 (linux_supports_bts): ... this.
11538 * nat/linux-btrace.h (linux_supports_btrace): Update parameters.
11539
11540 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11541
11542 * Makefile.in (SFILES): Add common/btrace-common.c.
11543 (COMMON_OBS): Add common/btrace-common.o.
11544 (btrace-common.o): Add build rules.
11545 * btrace.c (parse_xml_btrace): Update parameters.
11546 (parse_xml_btrace_block): Set format field.
11547 (btrace_add_pc, btrace_fetch): Use struct btrace_data.
11548 (do_btrace_data_cleanup, make_cleanup_btrace_data): New.
11549 (btrace_compute_ftrace): Split into this and...
11550 (btrace_compute_ftrace_bts): ...this.
11551 (btrace_stitch_trace): Split into this and...
11552 (btrace_stitch_bts): ...this.
11553 * btrace.h (parse_xml_btrace): Update parameters.
11554 (make_cleanup_btrace_data): New.
11555 * common/btrace-common.c: New.
11556 * common/btrace-common.h: Include common-defs.h.
11557 (btrace_block_s): Update comment.
11558 (btrace_format): New.
11559 (btrace_format_string): New.
11560 (btrace_data_bts): New.
11561 (btrace_data): New.
11562 (btrace_data_init, btrace_data_fini, btrace_data_empty): New.
11563 * remote.c (remote_read_btrace): Update parameters.
11564 * target.c (target_read_btrace): Update parameters.
11565 * target.h (target_read_btrace): Update parameters.
11566 (target_ops)<to_read_btrace>: Update parameters.
11567 * x86-linux-nat.c (x86_linux_read_btrace): Update parameters.
11568 * target-delegates.c: Regenerate.
11569 * target-debug (target_debug_print_struct_btrace_data_p): New.
11570 * nat/linux-btrace.c (linux_read_btrace): Split into this and...
11571 (linux_read_bts): ...this.
11572 * nat/linux-btrace.h (linux_read_btrace): Update parameters.
11573
11574 2015-02-06 Doug Evans <dje@google.com>
11575
11576 * remote-m32r-sdi.c: Include symfile.h.
11577
11578 2015-02-06 Doug Evans <dje@google.com>
11579
11580 * symtab.h (clear_symtab_users, deduce_language_from_filename): Move
11581 * symfile.h (clear_symtab_users, deduce_language_from_filename): ...
11582 to here.
11583
11584 2015-02-06 Pedro Alves <palves@redhat.com>
11585
11586 * linux-thread-db.c (find_new_threads_callback): Add debug output.
11587
11588 2015-02-06 Simon Marchi <simon.marchi@ericsson.com>
11589
11590 PR gdb/15678
11591 * breakpoint.c (map_breakpoint_numbers): Check for empty args string.
11592 (enable_count_command): Check args for NULL value.
11593
11594 2015-02-05 Doug Evans <xdje42@gmail.com>
11595
11596 * guile/scm-frame.c: Fix spelling errors in a comment.
11597
11598 2015-02-04 Jan Kratochvil <jan.kratochvil@redhat.com>
11599
11600 * python/python-internal.h (Py_hash_t): Define it for Python <3.2.
11601 * python/py-value.c (valpy_fetch_lazy): Use it. Remove cast to the
11602 return type.
11603
11604 2015-02-04 Pedro Alves <palves@redhat.com>
11605
11606 * linux-nat.c (handle_extended_wait): Don't resume LWPs here.
11607 (wait_lwp): Don't call wait_lwp if linux_handle_extended_wait
11608 returns true.
11609 (resume_stopped_resumed_lwps): Don't check whether the thread is
11610 marked as executing.
11611 (linux_nat_wait_1): Use resume_stopped_resumed_lwps.
11612
11613 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
11614
11615 * regset.h (struct regset): Add flags field.
11616 (REGSET_VARIABLE_SIZE): New value for a regset's flags field.
11617 * corelow.c (get_core_register_section): Add warning if the size
11618 exceeds the requested size and the regset does not have the
11619 REGSET_VARIABLE_SIZE flag set.
11620 * alphanbsd-tdep.c (alphanbsd_gregset): Add REGSET_VARIABLE_SIZE
11621 flag.
11622 * armbsd-tdep.c (armbsd_gregset): Likewise.
11623 * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise.
11624 * hppaobsd-tdep.c (hppaobsd_gregset): Likewise.
11625 * m68kbsd-tdep.c (m68kbsd_gregset): Likewise.
11626 * mipsnbsd-tdep.c (mipsnbsd_gregset): Likewise.
11627
11628 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
11629
11630 * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections):
11631 For ".reg-xstate", explicitly specify the requested section size
11632 via X86_XSTATE_SIZE instead of just 0 on input and
11633 X86_XSTATE_MAX_SIZE on output.
11634 * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections):
11635 Likewise.
11636
11637 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
11638
11639 PR corefiles/17808:
11640 * gdbarch.sh (iterate_over_regset_sections_cb): Document this
11641 function type, particularly its SIZE parameter.
11642 * gdbarch.h: Regenerate.
11643 * amd64-tdep.c (amd64_supply_fpregset): In gdb_assert, compare
11644 actual against required size using ">=" instead of "==".
11645 (amd64_collect_fpregset): Likewise.
11646 * i386-tdep.c (i386_supply_gregset): Likewise.
11647 (i386_collect_gregset): Likewise.
11648 (i386_supply_fpregset): Likewise.
11649 (i386_collect_fpregset): Likewise.
11650 * mips-linux-tdep.c (mips_supply_gregset_wrapper): Likewise.
11651 (mips_fill_gregset_wrapper): Likewise.
11652 (mips_supply_fpregset_wrapper): Likewise.
11653 (mips_fill_fpregset_wrapper): Likewise.
11654 (mips64_supply_gregset_wrapper): Likewise.
11655 (mips64_fill_gregset_wrapper): Likewise.
11656 (mips64_supply_fpregset_wrapper): Likewise.
11657 (mips64_fill_fpregset_wrapper): Likewise.
11658 * mn10300-linux-tdep.c (am33_supply_gregset_method): Likewise.
11659 (am33_supply_fpregset_method): Likewise.
11660 (am33_collect_gregset_method): Likewise.
11661 (am33_collect_fpregset_method): Likewise.
11662
11663 2015-02-04 Doug Evans <dje@google.com>
11664 Pedro Alves <palves@redhat.com>
11665 Eli Zaretskii <eliz@gnu.org>
11666
11667 PR tui/17810
11668 * tui/tui-command.c (tui_refresh_cmd_win): New function.
11669 * tui/tui-command.c (tui_refresh_cmd_win): Declare.
11670 * tui/tui-file.c: #include tui/tui-command.h.
11671 (tui_file_fputs): Refresh command window if stream is not gdb_stdout.
11672 (tui_file_flush): Refresh command window if stream is gdb_stdout.
11673 * tui/tui-io.c (tui_puts): Remove calls to wrefresh, fflush.
11674
11675 2015-02-04 Pedro Alves <palves@redhat.com>
11676
11677 Fix build breakage.
11678 * event-loop.c (gdb_do_one_event): Add default switch case.
11679
11680 2015-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11681
11682 Filter out inferior gcc option -fpreprocessed.
11683 * compile/compile.c (filter_args): New function.
11684 (get_args): Use it.
11685
11686 2015-02-03 Pedro Alves <palves@redhat.com>
11687
11688 * event-loop.c: Don't declare nor define a queue type for
11689 gdb_event_p.
11690 (event_queue): Delete.
11691 (create_event, create_file_event, gdb_event_xfree)
11692 (initialize_event_loop, process_event): Delete.
11693 (gdb_do_one_event): Return as soon as one event is handled.
11694 (handle_file_event): Change prototype. Used the passed in
11695 file_handler pointer and ready_mask instead of looping over all
11696 file handlers.
11697 (gdb_wait_for_event): Update the poll/select timeouts before
11698 blocking. Run event handlers directly instead of queueing events.
11699 Return as soon as one event is handled.
11700 (struct async_event_handler_data): Delete.
11701 (invoke_async_event_handler): Delete.
11702 (check_async_event_handlers): Change return type to int. Run
11703 event handlers directly instead of queueing events. Return as
11704 soon as one event is handled.
11705 (handle_timer_event): Delete.
11706 (update_wait_timeout): New function, factored out from
11707 poll_timers.
11708 (poll_timers): Reimplement.
11709 * event-loop.h (initialize_event_loop): Delete declaration.
11710 * top.c (gdb_init): Don't call initialize_event_loop.
11711
11712 2015-02-03 Pedro Alves <palves@redhat.com>
11713
11714 * event-loop.c (clear_async_event_handler): New function.
11715 * event-loop.h (clear_async_event_handler): New declaration.
11716 * record-btrace.c (record_btrace_async): New function.
11717 (init_record_btrace_ops): Install record_btrace_async.
11718 * record-full.c (record_full_async): New function.
11719 (record_full_resume): Don't mark the async event source here.
11720 (init_record_full_ops): Install record_full_async.
11721 (record_full_core_resume): Don't mark the async event source here.
11722 (init_record_full_core_ops): Install record_full_async.
11723 * remote.c (remote_async): Mark and clear the async stop reply
11724 queue event-loop token as appropriate.
11725
11726 2015-02-03 Pedro Alves <palves@redhat.com>
11727
11728 * linux-nat.c (linux_child_follow_fork, linux_nat_wait_1): Use
11729 target_is_async_p instead of target_can_async.
11730 (linux_nat_wait): Use target_is_async_p instead of
11731 target_can_async. Don't enable async here.
11732 * remote.c (interrupt_query, remote_wait, putpkt_binary): Use
11733 target_is_async_p instead of target_can_async.
11734
11735 2015-02-02 Simon Marchi <simon.marchi@ericsson.com>
11736
11737 * varobj.h (lang_varobj_ops): Mention which return values need
11738 to be freed.
11739
11740 2015-02-02 Joel Brobecker <brobecker@adacore.com>
11741
11742 * dwarf2loc.c (dwarf2_evaluate_property): Add i18n marker.
11743
11744 2015-02-02 Joel Brobecker <brobecker@adacore.com>
11745
11746 PR gdb/17856:
11747 * ada-lang.c (ada_lookup_symbol_list_worker): Do not re-cache
11748 results found in the cache.
11749
11750 2015-02-02 Joel Brobecker <brobecker@adacore.com>
11751
11752 PR gdb/17854:
11753 * ada-lang.c (ada_get_symbol_cache): Set pspace_data->sym_cache
11754 when allocating a new one.
11755
11756 2015-02-01 Tom Tromey <tom@tromey.com>
11757
11758 * MAINTAINERS: Remove myself.
11759
11760 2015-01-31 Doug Evans <xdje42@gmail.com>
11761
11762 * dwarf2read.c (process_structure_scope): Update setting of
11763 TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO.
11764 * gdbtypes.c (internal_type_vptr_fieldno): New function.
11765 (set_type_vptr_fieldno): New function.
11766 (internal_type_vptr_basetype): New function.
11767 (set_type_vptr_basetype): New function.
11768 (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO,
11769 TYPE_VPTR_BASETYPE.
11770 (allocate_cplus_struct_type): Initialize vptr_fieldno.
11771 (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ...
11772 (print_cplus_stuff): ... moved here.
11773 (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE.
11774 * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype
11775 moved to ...
11776 (struct cplus_struct_type): ... here. All uses updated.
11777 (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite.
11778 (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare.
11779 (internal_type_vptr_basetype, set_type_vptr_basetype): Declare.
11780 * stabsread.c (read_tilde_fields): Update setting of
11781 TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE.
11782
11783 2015-01-31 Doug Evans <xdje42@gmail.com>
11784
11785 * cp-valprint.c (cp_find_class_member): Rename parameter domain_p
11786 to self_p.
11787 (cp_print_class_member): Rename local domain to self_type.
11788 * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local
11789 domain_type to self_type.
11790 (set_die_type) <need_gnat_info>: Handle
11791 TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD.
11792 * gdb-gdb.py (StructMainTypePrettyPrinter): Handle
11793 TYPE_SPECIFIC_SELF_TYPE.
11794 * gdbtypes.c (internal_type_self_type): New function.
11795 (set_type_self_type): New function.
11796 (smash_to_memberptr_type): Rename parameter domain to self_type.
11797 Update setting of TYPE_SELF_TYPE.
11798 (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE.
11799 (smash_to_method_type): Rename parameter domain to self_type.
11800 Update setting of TYPE_SELF_TYPE.
11801 (check_stub_method): Call smash_to_method_type.
11802 (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE.
11803 (copy_type_recursive): Ditto.
11804 * gdbtypes.h (enum type_specific_kind): New value
11805 TYPE_SPECIFIC_SELF_TYPE.
11806 (struct main_type) <type_specific>: New member self_type.
11807 (struct cplus_struct_type) <fn_field.type>: Update comment.
11808 (TYPE_SELF_TYPE): Rewrite.
11809 (internal_type_self_type, set_type_self_type): Declare.
11810 * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to
11811 self_type.
11812 (gnuv3_method_ptr_to_value): Rename local domain_type to self_type.
11813 * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with
11814 TYPE_TARGET_TYPE.
11815 * stabsread.c (read_member_functions): Mark methods with
11816 TYPE_CODE_METHOD, not TYPE_CODE_FUNC. Update setting of
11817 TYPE_SELF_TYPE.
11818
11819 2015-01-31 Doug Evans <xdje42@gmail.com>
11820
11821 * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE.
11822 All uses updated.
11823
11824 2015-01-31 Doug Evans <xdje42@gmail.com>
11825
11826 * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs
11827 or unions. Return zero if union.
11828 (gnuv3_get_vtable): Call check_typedef. Assert only passed structs.
11829 (gnuv3_rtti_type): Pass already-check_typedef'd value to
11830 gnuv3_get_vtable.
11831 (compute_vtable_size): Assert only passed structs.
11832 (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs.
11833
11834 2015-01-31 Doug Evans <xdje42@gmail.com>
11835
11836 * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD
11837 kinds.
11838
11839 2015-01-31 Gary Benson <gbenson@redhat.com>
11840 Doug Evans <dje@google.com>
11841
11842 PR cli/9007
11843 PR cli/11920
11844 PR cli/15548
11845 * cli/cli-cmds.c (complete_command): Notify user if max-completions
11846 reached.
11847 * common/common-exceptions.h (enum errors)
11848 <MAX_COMPLETIONS_REACHED_ERROR>: New value.
11849 * completer.h (get_max_completions_reached_message): New declaration.
11850 (max_completions): Likewise.
11851 (completion_tracker_t): New typedef.
11852 (new_completion_tracker): New declaration.
11853 (make_cleanup_free_completion_tracker): Likewise.
11854 (maybe_add_completion_enum): New enum.
11855 (maybe_add_completion): New declaration.
11856 (throw_max_completions_reached_error): Likewise.
11857 * completer.c (max_completions): New global variable.
11858 (new_completion_tracker): New function.
11859 (free_completion_tracker): Likewise.
11860 (make_cleanup_free_completion_tracker): Likewise.
11861 (maybe_add_completions): Likewise.
11862 (throw_max_completions_reached_error): Likewise.
11863 (complete_line): Remove duplicates and limit result to max_completions
11864 entries.
11865 (get_max_completions_reached_message): New function.
11866 (gdb_display_match_list): Handle max_completions.
11867 (_initialize_completer): New declaration and function.
11868 * symtab.c: Include completer.h.
11869 (completion_tracker): New static variable.
11870 (completion_list_add_name): Call maybe_add_completion.
11871 (default_make_symbol_completion_list_break_on_1): Renamed from
11872 default_make_symbol_completion_list_break_on. Maintain
11873 completion_tracker across calls to completion_list_add_name.
11874 (default_make_symbol_completion_list_break_on): New function.
11875 * top.c (init_main): Set rl_completion_display_matches_hook.
11876 * tui/tui-io.c: Include completer.h.
11877 (tui_old_rl_display_matches_hook): New static global.
11878 (tui_rl_display_match_list): Notify user if max-completions reached.
11879 (tui_setup_io): Save/restore rl_completion_display_matches_hook.
11880 * NEWS (New Options): Mention set/show max-completions.
11881
11882 2015-01-31 Gary Benson <gbenson@redhat.com>
11883
11884 * symtab.c (struct add_name_data) <code>: New field.
11885 Updated comments.
11886 (add_symtab_completions): New function.
11887 (symtab_expansion_callback): Likewise.
11888 (default_make_symbol_completion_list_break_on): Set datum.code.
11889 Move minimal symbol scan before calling expand_symtabs_matching.
11890 Scan known primary symtabs for externs and statics before calling
11891 expand_symtabs_matching. Pass symtab_expansion_callback as
11892 expansion_notify argument to expand_symtabs_matching. Do not scan
11893 primary symtabs for externs and statics after calling
11894 expand_symtabs_matching.
11895
11896 2015-01-31 Gary Benson <gbenson@redhat.com>
11897
11898 * symfile.h (expand_symtabs_exp_notify_ftype): New typedef.
11899 (struct quick_symbol_functions) <expand_symtabs_matching>:
11900 New argument expansion_notify. All uses updated.
11901 (expand_symtabs_matching): New argument expansion_notify.
11902 All uses updated.
11903 * symfile-debug.c (debug_qf_expand_symtabs_matching):
11904 Also print expansion notify.
11905 * symtab.c (expand_symtabs_matching_via_partial): Call
11906 expansion_notify whenever a partial symbol table is expanded.
11907 * dwarf2read.c (dw2_expand_symtabs_matching): Call
11908 expansion_notify whenever a symbol table is instantiated.
11909
11910 2015-01-31 Doug Evans <xdje42@gmail.com>
11911
11912 * cli-out.c: #include completer.h, readline/readline.h.
11913 (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions.
11914 (cli_mld_flush, cld_mld_erase_entire_line): Ditto.
11915 (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto.
11916 * cli-out.h (cli_display_match_list): Declare.
11917 * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros.
11918 (ELLIPSIS_LEN): Ditto.
11919 (gdb_get_y_or_n, gdb_display_match_list_pager): New functions.
11920 (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto.
11921 (gdb_fnprint, gdb_print_filename): Ditto.
11922 (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto.
11923 (gdb_display_match_list): Ditto.
11924 * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs.
11925 (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto.
11926 (mld_beep_ftype, mld_read_key_ftype): Ditto.
11927 (match_list_displayer): New struct.
11928 (gdb_display_match_list): Declare.
11929 * top.c (init_main): Set rl_completion_display_matches_hook.
11930 * tui/tui-io.c: #include completer.h.
11931 (printable_part, PUTX, print_filename, get_y_or_n): Delete.
11932 (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions.
11933 (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto.
11934 (tui_mld_getc, tui_mld_read_key): Ditto.
11935 (tui_rl_display_match_list): Rewrite.
11936 (tui_handle_resize_during_io): New arg for_completion. All callers
11937 updated.
11938
11939 2015-01-31 Doug Evans <xdje42@gmail.com>
11940
11941 Add symbol lookup cache.
11942 * NEWS: Document new options and commands.
11943 * symtab.c (symbol_cache_key): New static global.
11944 (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros.
11945 (SYMBOL_LOOKUP_FAILED): New macro.
11946 (symbol_cache_slot_state): New enum.
11947 (block_symbol_cache): New struct.
11948 (symbol_cache): New struct.
11949 (new_symbol_cache_size, symbol_cache_size): New static globals.
11950 (hash_symbol_entry, eq_symbol_entry): New functions.
11951 (symbol_cache_byte_size, resize_symbol_cache): New functions.
11952 (make_symbol_cache, free_symbol_cache): New functions.
11953 (get_symbol_cache, symbol_cache_cleanup): New function.
11954 (set_symbol_cache_size, set_symbol_cache_size_handler): New functions.
11955 (symbol_cache_lookup, symbol_cache_clear_slot): New function.
11956 (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions.
11957 (symbol_cache_flush, symbol_cache_dump): New functions.
11958 (maintenance_print_symbol_cache): New function.
11959 (maintenance_flush_symbol_cache): New function.
11960 (symbol_cache_stats): New function.
11961 (maintenance_print_symbol_cache_statistics): New function.
11962 (symtab_new_objfile_observer): New function.
11963 (symtab_free_objfile_observer): New function.
11964 (lookup_static_symbol, lookup_global_symbol): Use symbol cache.
11965 (_initialize_symtab): Init symbol_cache_key. New parameter
11966 maint symbol-cache-size. New maint commands print symbol-cache,
11967 print symbol-cache-statistics, flush-symbol-cache.
11968 Install new_objfile, free_objfile observers.
11969
11970 2015-01-31 Joel Brobecker <brobecker@adacore.com>
11971
11972 PR symtab/17855
11973 * symfile.c (clear_symtab_users): Move call to breakpoint_re_set
11974 to end.
11975
11976 2015-01-31 Doug Evans <xdje42@gmail.com>
11977
11978 * NEWS: Mention inlined scripts in .debug_gdb_scripts section.
11979 * auto-load.c: #include ctype.h.
11980 (struct auto_load_pspace_info): Replace member loaded_scripts with
11981 new members loaded_script_files, loaded_script_texts.
11982 (auto_load_pspace_data_cleanup): Update.
11983 (init_loaded_scripts_info): Update.
11984 (get_auto_load_pspace_data_for_loading): Update.
11985 (maybe_add_script_file): Renamed from maybe_add_script. All callers
11986 updated.
11987 (maybe_add_script_text): New function.
11988 (clear_section_scripts): Update.
11989 (source_script_file, execute_script_contents): New functions.
11990 (source_section_scripts): Add support for
11991 SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT.
11992 (print_scripts): New function.
11993 (auto_load_info_scripts): Also print inlined scripts.
11994 (maybe_print_unsupported_script_warning): Renamed from
11995 unsupported_script_warning_print. All callers updated.
11996 (maybe_print_script_not_found_warning): Renamed from
11997 script_not_found_warning_print. All callers updated.
11998 * extension-priv.h (struct extension_language_script_ops): New member
11999 objfile_script_executor.
12000 * extension.c (ext_lang_objfile_script_executor): New function.
12001 * extension.h (objfile_script_executor_func): New typedef.
12002 (ext_lang_objfile_script_executor): Declare.
12003 * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare.
12004 * guile/guile.c (guile_extension_script_ops): Update.
12005 * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function.
12006 * python/python.c (python_extension_script_ops): Update.
12007 (gdbpy_execute_objfile_script): New function.
12008
12009 2015-01-31 Eli Zaretskii <eliz@gnu.org>
12010
12011 * tui/tui-io.c (tui_expand_tabs): New function.
12012 (tui_puts, tui_redisplay_readline): Expand TABs into the
12013 appropriate number of spaces.
12014 * tui/tui-regs.c: Include tui-io.h.
12015 (tui_register_format): Call tui_expand_tabs to expand TABs into
12016 the appropriate number of spaces.
12017 * tui/tui-io.h: Add prototype for tui_expand_tabs.
12018
12019 2015-01-30 Doug Evans <dje@google.com>
12020
12021 * NEWS: "info source" command now display producer string if present.
12022 * source.c (source_info): Print producer string if present.
12023
12024 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
12025
12026 * varobj.c (varobj_delete): Fix comment.
12027
12028 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
12029
12030 * varobj.c (create_child): Modify comment.
12031
12032 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
12033
12034 * ada-varobj.c (ada_number_of_children): Constify struct varobj *
12035 parameter.
12036 (ada_name_of_variable): Same.
12037 (ada_path_expr_of_child): Same.
12038 (ada_value_of_variable): Same.
12039 (ada_value_is_changeable_p): Same.
12040 (ada_value_has_mutated): Same.
12041 * c-varobj.c (varobj_is_anonymous_child): Same.
12042 (c_is_path_expr_parent): Same.
12043 (c_number_of_children): Same.
12044 (c_name_of_variable): Same.
12045 (c_path_expr_of_child): Same.
12046 (get_type): Same.
12047 (c_value_of_variable): Same.
12048 (cplus_number_of_children): Same.
12049 (cplus_name_of_variable): Same.
12050 (cplus_path_expr_of_child): Same.
12051 (cplus_value_of_variable): Same.
12052 * jv-varobj.c (java_number_of_children): Same.
12053 (java_name_of_variable): Same.
12054 (java_path_expr_of_child): Same.
12055 (java_value_of_variable): Same.
12056 * varobj.c (number_of_children): Same.
12057 (name_of_variable): Same.
12058 (is_root_p): Same.
12059 (varobj_ensure_python_env): Same.
12060 (varobj_get_objname): Same.
12061 (varobj_get_expression): Same.
12062 (varobj_get_display_format): Same.
12063 (varobj_get_display_hint): Same.
12064 (varobj_has_more): Same.
12065 (varobj_get_thread_id): Same.
12066 (varobj_get_frozen): Same.
12067 (dynamic_varobj_has_child_method): Same.
12068 (varobj_get_gdb_type): Same.
12069 (is_path_expr_parent): Same.
12070 (varobj_default_is_path_expr_parent): Same.
12071 (varobj_get_language): Same.
12072 (varobj_get_attributes): Same.
12073 (varobj_is_dynamic_p): Same.
12074 (varobj_get_child_range): Same.
12075 (varobj_value_has_mutated): Same.
12076 (varobj_get_value_type): Same.
12077 (number_of_children): Same.
12078 (name_of_variable): Same.
12079 (check_scope): Same.
12080 (varobj_editable_p): Same.
12081 (varobj_value_is_changeable_p): Same.
12082 (varobj_floating_p): Same.
12083 (varobj_default_value_is_changeable_p): Same.
12084
12085 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
12086
12087 * varobj.c (varobj_get_path_expr): Set var->path_expr.
12088 * c-varobj.c (c_path_expr_of_child): Set local var instead of
12089 child->path_expr.
12090 (cplus_path_expr_of_child): Same.
12091
12092 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
12093
12094 * mi-cmd-var.c (print_varobj): Free varobj_get_expression
12095 result.
12096 (mi_cmd_var_info_expression): Same.
12097 * varobj.c (varobj_get_expression): Mention in the comment that
12098 the result must by freed by the caller.
12099
12100 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
12101
12102 * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of
12103 varobj_get_type.
12104 (varobj_update_one): Same.
12105 * varobj.c (update_type_if_necessary): Free curr_type_str and
12106 new_type_str.
12107 (varobj_get_type): Specify in comment that the result needs to be
12108 freed by the caller.
12109
12110 2015-01-29 Doug Evans <dje@google.com>
12111
12112 PR symtab/17890
12113 * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4.
12114
12115 2015-01-25 Mark Wielaard <mjw@redhat.com>
12116
12117 * dwarf2read.c (checkproducer): Call producer_is_gcc.
12118 * utils.c (producer_is_gcc_ge_4): Likewise.
12119 (producer_is_gcc): New function.
12120 * utils.h (producer_is_gcc): New declaration.
12121
12122 2015-01-29 Joel Brobecker <brobecker@adacore.com>
12123
12124 * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum
12125 kind.
12126 * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr"
12127 parameter by "addr_stack" parameter.
12128 (resolve_dynamic_range): Replace "addr" parameter by
12129 "stack_addr" parameter. Update function documentation.
12130 Update code accordingly.
12131 (resolve_dynamic_array, resolve_dynamic_union)
12132 (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise.
12133 (resolve_dynamic_type): Update code, following the changes made
12134 to resolve_dynamic_type_internal's interface.
12135 * dwarf2loc.h (struct property_addr_info): New.
12136 (dwarf2_evaluate_property): Replace "address" parameter
12137 by "addr_stack" parameter. Adjust function documentation.
12138 (struct dwarf2_offset_baton): New.
12139 (struct dwarf2_property_baton): Update documentation of
12140 field "referenced_type" to be more general. New field
12141 "offset_info" in union data field.
12142 * dwarf2loc.c (dwarf2_evaluate_property): Replace "address"
12143 parameter by "addr_stack" parameter. Adjust code accordingly.
12144 Add support for PROP_ADDR_OFFSET properties.
12145 * dwarf2read.c (attr_to_dynamic_prop): Add support for
12146 DW_AT_data_member_location attributes as well. Use case
12147 statements instead of if/else condition.
12148
12149 2015-01-29 Joel Brobecker <brobecker@adacore.com>
12150
12151 * ada-varobj.c (ada_varobj_get_array_number_of_children):
12152 Return zero if PARENT_VALUE is NULL and parent_type's
12153 range type is dynamic.
12154
12155 2015-01-29 Joel Brobecker <brobecker@adacore.com>
12156
12157 * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return
12158 nonzero if the type's subtype is dynamic.
12159 (resolve_dynamic_range): Also resolve the range's subtype.
12160
12161 2015-01-29 Alexander Klimov <alserkli@inbox.ru> (tiny patch)
12162
12163 Pushed by Joel Brobecker <brobecker@adacore.com>.
12164 * symfile.c (unmap_overlay_command): Initialize sec to NULL.
12165
12166 2015-01-27 Doug Evans <dje@google.com>
12167
12168 * NEWS: Mention gdb.Objfile.username.
12169 * python/py-objfile.c (objfpy_get_username): New function.
12170 (objfile_getset): Add "username".
12171
12172 2015-01-24 Mark Wielaard <mjw@redhat.com>
12173
12174 * stack.c (return_command): Markup warning message with _.
12175
12176 2015-01-24 Doug Evans <xdje42@gmail.com>
12177
12178 * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
12179
12180 2015-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
12181
12182 Fix 100x slowdown regression on DWZ files.
12183 * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash.
12184 (struct line_header): Add offset and offset_in_dwz.
12185 (dwarf_decode_lines): Add parameter decode_mapping to the declaration.
12186 (free_line_header_voidp): New declaration.
12187 (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New
12188 functions.
12189 (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller.
12190 (handle_DW_AT_stmt_list): Use line_header_hash.
12191 (free_line_header_voidp): New function.
12192 (dwarf_decode_line_header): Initialize offset and offset_in_dwz.
12193 (dwarf_decode_lines): New parameter decode_mapping, use it.
12194 (dwarf2_free_objfile): Free line_header_hash.
12195
12196 2015-01-23 Simon Marchi <simon.marchi@ericsson.com>
12197
12198 PR gdb/17416
12199 * valops.c (value_rtti_indirect_type): Catch exception thrown by
12200 value_ind.
12201
12202 2015-01-15 Mark Wielaard <mjw@redhat.com>
12203
12204 * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from
12205 DW_AT_noreturn.
12206 * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make
12207 calling_convention an 8 bit bit field.
12208 (TYPE_NO_RETURN): New macro.
12209 * infcmd.c (finish_command): Query if function does not return
12210 normally.
12211 * stack.c (return_command): Likewise.
12212
12213 2015-01-23 Pedro Alves <palves@redhat.com>
12214
12215 * linux-nat.c (linux_is_async_p): New macro.
12216 (linux_nat_is_async_p):
12217 (linux_nat_terminal_inferior): Check whether the target can async
12218 instead of whether it is already async.
12219 (linux_nat_terminal_ours): Don't check whether the target is
12220 async.
12221 (linux_async_pipe): Use linux_is_async_p.
12222
12223 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
12224
12225 * NEWS (Changes since GDB 7.9): Add 'thread apply all' option
12226 '-ascending'.
12227 * thread.c (tp_array_compar_ascending, tp_array_compar): New.
12228 (thread_apply_all_command): Parse CMD for tp_array_compar_ascending.
12229 Sort tp_array using tp_array_compar.
12230 (_initialize_thread): Extend thread_apply_all_command help.
12231
12232 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
12233
12234 * corelow.c (core_open): Call also thread_command.
12235 * gdbthread.h (thread_command): New prototype moved from ...
12236 * thread.c (thread_command): ... here.
12237 (thread_command): Make it global.
12238
12239 2015-01-22 Pedro Alves <palves@redhat.com>
12240
12241 * configure.ac [*mingw32*]: Check $curses_found instead of
12242 $prefer_curses.
12243 * configure: Regenerate.
12244 * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and
12245 HAVE_NCURSES_NCURSES_H checks.
12246
12247 2015-01-22 Eli Zaretskii <eliz@gnu.org>
12248
12249 * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm'
12250 fails with the 1st arg NULL, try again with "unknown". Don't test
12251 the "cup" capability: it isn't supported by the Windows port of
12252 ncurses, but the Windows console driver is still capable of
12253 supporting TUI.
12254
12255 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
12256
12257 * compile/compile.c (_initialize_compile): Use -fPIE for compile_args.
12258
12259 2015-01-22 Eli Zaretskii <eliz@gnu.org>
12260
12261 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
12262 (ALLDEPFILES): Remove irix5-nat.c. These two are part of the
12263 reason that "make TAGS" is broken.
12264
12265 2015-01-22 Chen Gang <gang.chen.5i5j@gmail.com>
12266
12267 * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues
12268 and check additional store instructions.
12269
12270 2015-01-21 Wei-cheng Wang <cole945@gmail.com>
12271
12272 * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang".
12273
12274 2015-01-21 Wei-cheng Wang <cole945@gmail.com>
12275
12276 * ppc-linux-tdep.c (ppc_skip_trampoline_code,
12277 ppc_canonicalize_syscall, ppc_linux_syscall_record,
12278 ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments.
12279 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
12280 * rs6000-tdep.c (rs6000_epilogue_frame_cache,
12281 rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register,
12282 rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4,
12283 ppc_process_record_op19, ppc_process_record_op31,
12284 ppc_process_record_op59, ppc_process_record_op60,
12285 ppc_process_record_op63): Likewise.
12286
12287 2015-01-20 Joel Brobecker <brobecker@adacore.com>
12288
12289 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string)
12290 (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of
12291 strerror.
12292
12293 2015-01-20 Wei-cheng Wang <cole945@gmail.com>
12294
12295 * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19,
12296 ppc_process_record_op31, ppc_process_record_op59,
12297 ppc_process_record_op60, ppc_process_record_op63,
12298 ppc_process_record): Fix -Wformat warning.
12299 * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60):
12300 Remove unused variables.
12301
12302 2015-01-20 Chen Gang <gang.chen.5i5j@gmail.com>
12303
12304 * MAINTAINERS (Write After Approval): Add "Chen Gang".
12305
12306 2015-01-19 Eli Zaretskii <eliz@gnu.org>
12307
12308 * configure.ac [*mingw32*]: Only add windows-termcap.o to
12309 CONFIG_OBS if not building with a curses library.
12310 * configure: Regenerate.
12311
12312 * windows-termcap.c: Include defs.h. Make the whole body empty if
12313 either one of HAVE_CURSES_H or HAVE_NCURSES_H or
12314 HAVE_NCURSES_NCURSES_H is defined.
12315
12316 2015-01-19 Joel Brobecker <brobecker@adacore.com>
12317
12318 * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator
12319 from end of line to start of next line.
12320
12321 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
12322
12323 * ppc-linux-tdep.c (ppc_skip_trampoline_code):
12324 Scan PLT stub backward for reverse debugging.
12325 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
12326
12327 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
12328 Ulrich Weigand <uweigand@de.ibm.com>
12329
12330 * configure.tgt (powerpc*-*-linux): Add linux-record.o to
12331 gdb_target_obs.
12332 (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall
12333 record.
12334 (ppc_canonicalize_syscall, ppc_linux_syscall_record,
12335 ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions.
12336 (ppc_linux_init_abi): Set process_record, process_record_signal.
12337 * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and
12338 ppc_linux_record_tdep to gdbarch_tdep.
12339 (ppc_process_record): New declaration.
12340 * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4,
12341 ppc_process_record_op19, ppc_process_record_op31,
12342 ppc_process_record_op59, ppc_process_record_op60,
12343 ppc_process_record_op63, ppc_process_record): New functions.
12344
12345 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
12346
12347 * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to
12348 rs6000_in_function_epilogue_frame_p and add an argument
12349 for frame_info.
12350 (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id,
12351 rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer):
12352 New functions.
12353 (rs6000_epilogue_frame_unwind): New.
12354 (rs6000_gdbarch_init): Append epilogue unwinder.
12355
12356 2015-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
12357
12358 * nat/linux-personality.c: Replace "#ifndef
12359 HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if
12360 !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5
12361 systems.
12362
12363 2015-01-16 Eli Zaretskii <eliz@gnu.org>
12364
12365 * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New
12366 functions.
12367 (_initialize_tui_win) <border-kind, border-mode>:
12368 <active-border-mode>: Use tui_set_var_cmd as the "set" function.
12369 (tui_set_tab_width_command): Fix the commentary.
12370
12371 * tui/tui-win.h: Add prototype for tui_rehighlight_all.
12372
12373 * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command):
12374 Doc fix.
12375 (tui_set_tab_width_command): Delete and recreate the source and
12376 the disassembly windows, to show the effect of the changed tab
12377 size immediately.
12378
12379 * tui/tui-data.h (LINE_PREFIX): Make shorter
12380 (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for
12381 "Thread NNNNN.XXXX" thread ID notation on Windows.
12382
12383 2015-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
12384
12385 Fix gcc-5 compilation.
12386 * hppa-tdep.c (inst_saves_gr): Fix parentheses typo.
12387
12388 2015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
12389
12390 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h.
12391 (linux-personality.o): New rule.
12392 * common/common-defs.h: Include <stdint.h>.
12393 * config/aarch64/linux.mh (NATDEPFILES): Include
12394 linux-personality.o.
12395 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
12396 * config/arm/linux.mh (NATDEPFILES): Likewise.
12397 * config/i386/linux64.mh (NATDEPFILES): Likewise.
12398 * config/i386/linux.mh (NATDEPFILES): Likewise.
12399 * config/ia64/linux.mh (NATDEPFILES): Likewise.
12400 * config/m32r/linux.mh (NATDEPFILES): Likewise.
12401 * config/m68k/linux.mh (NATDEPFILES): Likewise.
12402 * config/mips/linux.mh (NATDEPFILES): Likewise.
12403 * config/pa/linux.mh (NATDEPFILES): Likewise.
12404 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
12405 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
12406 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
12407 * config/s390/linux.mh (NATDEPFILES): Likewise.
12408 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
12409 * config/sparc/linux.mh (NATDEPFILES): Likewise.
12410 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
12411 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
12412 * defs.h: Remove #include <stdint.h> (moved to
12413 common/common-defs.h).
12414 * linux-nat.c: Include nat/linux-personality.h. Remove #include
12415 <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to
12416 nat/linux-personality.c).
12417 (linux_nat_create_inferior): Remove code to disable address space
12418 randomization (moved to nat/linux-personality.c). Create cleanup
12419 to disable address space randomization.
12420 * nat/linux-personality.c: New file.
12421 * nat/linux-personality.h: Likewise.
12422
12423 2015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
12424
12425 * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and
12426 common/posix-strerror.c.
12427 (posix-strerror.o): New rule.
12428 (mingw-strerror.o): Likewise.
12429 * common/common-utils.h (safe_strerror): Move prototype to here,
12430 from utils.h.
12431 * common/common.host: New file.
12432 * common/mingw-strerror.c: Likewise.
12433 * common/posix-strerror.c: Likewise.
12434 * configure: Regenerated.
12435 * configure.ac: Source common/common.host. Add variable
12436 common_host_obs to gdb_host_obs.
12437 * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and
12438 gdb/common/posix-strerror.c when warning about the use of
12439 strerror.
12440 * mingw-hdep.c (safe_strerror): Remove definition; move it to
12441 common/mingw-strerror.c.
12442 * posix-hdep.c (safe_strerror): Remove definition; move it to
12443 common/posix-hdep.c.
12444 * utils.h (safe_strerror): Remove prototype; move to
12445 common/common-utils.h.
12446
12447 2015-01-15 Joel Brobecker <brobecker@adacore.com>
12448
12449 GDB 7.8.2 released.
12450
12451 2015-01-15 Joel Brobecker <brobecker@adacore.com>
12452
12453 * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel
12454 ___XA type if the array has already been fixed.
12455
12456 2015-01-14 Yao Qi <yao@codesourcery.com>
12457
12458 * Makefile.in (ppc-linux.o): New rule.
12459 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o.
12460 * configure.ac: AC_CHECK_FUNCS(getauxval).
12461 * config.in: Re-generated.
12462 * configure: Re-generated.
12463 * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p):
12464 Declare.
12465 * nat/ppc-linux.c: New file.
12466 * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]:
12467 Call ppc64_64bit_inferior_p.
12468
12469 2015-01-14 Yao Qi <yao@codesourcery.com>
12470
12471 * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to
12472 nat/ppc-linux.h.
12473 (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise.
12474 (PPC_FEATURE_HAS_DFP): Likewise.
12475 (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise.
12476 (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise.
12477 (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise.
12478 Include "nat/ppc-linux.h".
12479 * nat/ppc-linux.h: New file.
12480 * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h.
12481
12482 2015-01-14 Pedro Alves <palves@redhat.com>
12483
12484 PR gdb/17525
12485 * breakpoint.c: Include "interps.h".
12486 (bpstat_do_actions_1): Also check whether the interpreter is
12487 async.
12488
12489 2015-01-14 Pedro Alves <palves@redhat.com>
12490
12491 PR cli/17828
12492 * infrun.c (reinstall_readline_callback_handler_cleanup): Don't
12493 reinstall if the interpreter is sync.
12494
12495 2015-01-13 Doug Evans <dje@google.com>
12496
12497 * objfiles.c (objfile_filename): New function.
12498 * objfiles.h (objfile_filename): Declare it.
12499 (objfile_name): Add function comment.
12500 * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the
12501 bfd file name (which may be realpath'd), and the original name.
12502
12503 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12504
12505 * NEWS: Create a new section for the next release branch.
12506 Rename the section of the current branch, now that it has
12507 been cut.
12508
12509 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12510
12511 GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37):
12512 * version.in: Bump version to 7.9.50.DATE-cvs.
12513
12514 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12515
12516 * nat/linux-procfs.c (linux_proc_attach_tgid_threads):
12517 Remove trailing new-line in argument of call to warning.
12518
12519 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12520
12521 * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing
12522 new-line in argument of call to "warning".
12523
12524 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12525
12526 * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found
12527 in static block, then try searching for primitive types.
12528
12529 2015-01-12 Patrick Palka <patrick@parcs.ath.cx>
12530
12531 * top.h (gdb_add_history): Declare.
12532 * top.c (command_count): New variable.
12533 (gdb_add_history): New function.
12534 (gdb_safe_append_history): New static function.
12535 (quit_force): Call it.
12536 (command_line_input): Use gdb_add_history instead of
12537 add_history.
12538 * event-top.c (command_line_handler): Likewise.
12539
12540 2015-01-12 James Clarke <jrtc27@jrtc27.com> (tiny patch)
12541
12542 PR gdb/17046
12543 * darwin-nat.c: Replace <machine/setjmp.h> #include by
12544 <setjmp.h> #include.
12545
12546 2015-01-11 Doug Evans <xdje42@gmail.com>
12547
12548 * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.
12549
12550 2015-01-11 Doug Evans <xdje42@gmail.com>
12551
12552 PR gdb/15830
12553 * NEWS: The "maint demangle" command is renamed as "demangle".
12554 * demangle.c: #include cli/cli-utils.h, language.h.
12555 (demangle_command): New function.
12556 (_initialize_demangle): Add new command "demangle".
12557 * maint.c (maintenance_demangle): Stub out.
12558 (_initialize_maint_cmds): Update help text for "maint demangle",
12559 and mark as deprecated.
12560
12561 2015-01-11 Mark Kettenis <kettenis@gnu.org>
12562
12563 * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that
12564 inferior_thread is a function.
12565
12566 2015-01-09 Patrick Palka <patrick@parcs.ath.cx>
12567
12568 * Makefile.in (.y.c): Don't munge yacc's #line
12569 directives.
12570
12571 2015-01-09 Patrick Palka <patrick@parcs.ath.cx>
12572
12573 * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper
12574 to prompt for input.
12575 * tui/tui-hooks.c (tui_query_hook): Remove.
12576 (tui_install_hooks): Don't set deprecated_query_hook.
12577 * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in
12578 height calculation. Always update the command window's cur_line.
12579
12580 2015-01-09 Pedro Alves <palves@redhat.com>
12581
12582 * breakpoint.c (hardware_breakpoint_inserted_here_p): New
12583 function.
12584 * breakpoint.h (hardware_breakpoint_inserted_here_p): New
12585 declaration.
12586 * linux-nat.c (linux_nat_status_is_event): Move higher up in file.
12587 (linux_resume_one_lwp): Store the thread's PC. Adjust to clear
12588 stop_reason.
12589 (check_stopped_by_watchpoint): New function.
12590 (save_sigtrap): Reimplement.
12591 (linux_nat_stopped_by_watchpoint): Adjust.
12592 (linux_nat_lp_status_is_event): Delete.
12593 (stop_wait_callback): Only call save_sigtrap after storing the
12594 pending status.
12595 (status_callback): If the thread had been stopped for a breakpoint
12596 that has since been removed, discard the event and resume the LWP.
12597 (count_events_callback, select_event_lwp_callback): Use
12598 lwp_status_pending_p instead of linux_nat_lp_status_is_event.
12599 (cancel_breakpoint): Rename to ...
12600 (check_stopped_by_breakpoint): ... this. Record whether the LWP
12601 stopped for a software breakpoint or hardware breakpoint.
12602 (select_event_lwp): Only give preference to the stepping LWP in
12603 all-stop mode. Adjust comments.
12604 (stop_and_resume_callback): Remove references to new_pending_p.
12605 (linux_nat_filter_event): Likewise. Leave exit events of the
12606 leader thread pending here. Handle signal short circuiting here.
12607 Only call save_sigtrap after storing the pending waitstatus.
12608 (linux_nat_wait_1): Remove 'retry' label. Remove references to
12609 new_pending. Don't handle leaving events the caller is not
12610 interested in pending here, nor handle signal short-circuiting
12611 here. Also give equal priority to all LWPs that have had events
12612 in non-stop mode. If reporting a software breakpoint event,
12613 unadjust the LWP's PC.
12614 * linux-nat.h (enum lwp_stop_reason): New.
12615 (struct lwp_info) <stop_pc>: New field.
12616 (struct lwp_info) <stopped_by_watchpoint>: Delete field.
12617 (struct lwp_info) <stop_reason>: New field.
12618 * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
12619
12620 2015-01-09 Pedro Alves <palves@redhat.com>
12621
12622 * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>:
12623 Set the LWP's 'resumed' flag.
12624
12625 2015-01-09 Pedro Alves <palves@redhat.com>
12626
12627 * linux-nat.c (linux_resume_one_lwp): New function.
12628 (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp.
12629 (linux_nat_resume): Use lwp_status_pending_p and
12630 linux_resume_one_lwp.
12631 (linux_handle_syscall_trap): Use linux_resume_one_lwp.
12632 (linux_handle_extended_wait): Use linux_resume_one_lwp.
12633 (status_callback, running_callback): Use lwp_status_pending_p.
12634 (lwp_status_pending_p): New function.
12635 (stop_and_resume_callback): Use lwp_status_pending_p.
12636 (linux_nat_filter_event): Use linux_resume_one_lwp.
12637 (linux_nat_wait_1): Always use status_callback to look for an LWP
12638 with a pending status. Use linux_resume_one_lwp.
12639 (resume_stopped_resumed_lwps): Use lwp_status_pending_p and
12640 linux_resume_one_lwp.
12641
12642 2015-01-09 Pedro Alves <palves@redhat.com>
12643
12644 * breakpoint.c (bp_location_inserted_here_p): New function,
12645 factored out from ...
12646 (breakpoint_inserted_here_p): ... here. Use
12647 ALL_BP_LOCATIONS_AT_ADDR.
12648 (software_breakpoint_inserted_here_p): Use
12649 bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR.
12650
12651 2014-01-09 Pedro Alves <palves@redhat.com>
12652
12653 Skip enabling event reporting if the kernel supports
12654 PTRACE_EVENT_CLONE.
12655 * linux-thread-db.c: Include "nat/linux-ptrace.h".
12656 (thread_db_use_events): New function.
12657 (try_thread_db_load_1): Check thread_db_use_events before enabling
12658 event reporting.
12659 (update_thread_state): New function.
12660 (attach_thread): Use it. Check thread_db_use_events before
12661 enabling event reporting.
12662 (thread_db_detach): Check thread_db_use_events before disabling
12663 event reporting.
12664 (find_new_threads_callback): Check thread_db_use_events before
12665 enabling event reporting. Update the thread's state if not using
12666 libthread_db events.
12667
12668 2015-01-09 Pedro Alves <palves@redhat.com>
12669
12670 * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're
12671 about to wait for is > 0.
12672 * linux-thread-db.c (find_new_threads_callback): Ignore thread if
12673 the kernel thread ID is -1.
12674
12675 2015-01-09 Pedro Alves <palves@redhat.com>
12676
12677 * linux-nat.c (attach_proc_task_lwp_callback): New function.
12678 (linux_nat_attach): Use linux_proc_attach_tgid_threads.
12679 (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's
12680 ptrace option flags.
12681 * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New
12682 field.
12683 * nat/linux-procfs.c: Include <dirent.h>.
12684 (linux_proc_get_int): New parameter "warn". Handle it.
12685 (linux_proc_get_tgid): Adjust.
12686 (linux_proc_get_tracerpid): Rename to ...
12687 (linux_proc_get_tracerpid_nowarn): ... this.
12688 (linux_proc_pid_get_state): New function, factored out from
12689 (linux_proc_pid_has_state): ... this. Add new parameter "warn"
12690 and handle it.
12691 (linux_proc_pid_is_gone): New function.
12692 (linux_proc_pid_is_stopped): Adjust.
12693 (linux_proc_pid_is_zombie_maybe_warn)
12694 (linux_proc_pid_is_zombie_nowarn): New functions.
12695 (linux_proc_pid_is_zombie): Use
12696 linux_proc_pid_is_zombie_maybe_warn.
12697 (linux_proc_attach_tgid_threads): New function.
12698 * nat/linux-procfs.h (linux_proc_get_tgid): Update comment.
12699 (linux_proc_get_tracerpid): Rename to ...
12700 (linux_proc_get_tracerpid_nowarn): ... this, and update comment.
12701 (linux_proc_pid_is_gone): New declaration.
12702 (linux_proc_pid_is_zombie): Update comment.
12703 (linux_proc_pid_is_zombie_nowarn): New declaration.
12704 (linux_proc_attach_lwp_func): New typedef.
12705 (linux_proc_attach_tgid_threads): New declaration.
12706 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to
12707 use nowarn functions.
12708 (linux_ptrace_attach_fail_reason_string): Move here from
12709 gdbserver/linux-low.c and rename.
12710 (ptrace_supports_feature): If the current ptrace options are not
12711 known yet, check them now, instead of asserting.
12712 * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string):
12713 Declare.
12714
12715 2015-01-09 Pedro Alves <palves@redhat.com>
12716
12717 * linux-thread-db.c (thread_db_find_new_threads_silently)
12718 (try_thread_db_load_1, try_thread_db_load, thread_db_load_search)
12719 (find_new_threads_once): Print debug output on gdb_stdlog.
12720
12721 2015-01-09 Chen Gang <gang.chen.5i5j@gmail.com>
12722 Pedro Alves <palves@redhat.com>
12723
12724 * compile/compile.c: Include "gdb_wait.h".
12725 (do_rmdir): Check return value, and free 'zap'.
12726
12727 2015-01-08 Pedro Alves <palves@redhat.com>
12728 Yao Qi <yao@codesourcery.com>
12729
12730 * dwarf2loc.c (indirect_pieced_value): Don't call
12731 gdb_sign_extend. Call extract_signed_integer instead.
12732 * utils.c (gdb_sign_extend): Remove.
12733 * utils.h (gdb_sign_extend): Remove declaration.
12734
12735 2015-01-07 Pierre Muller <muller@sourceware.org>
12736
12737 PR symtab/17811
12738 * stabsread.c (define_symbol): Set language for C++ special symbols.
12739
12740 2015-01-07 Patrick Palka <patrick@parcs.ath.cx>
12741
12742 * inflow.c (initial_gdb_ttystate): Tweak comment.
12743
12744 2015-01-07 Joel Brobecker <brobecker@adacore.com>
12745
12746 * inflow.c (set_initial_gdb_ttystate): Add empty line after
12747 comment documenting function.
12748
12749 2015-01-07 Patrick Palka <patrick@parcs.ath.cx>
12750
12751 * terminal.h (set_initial_gdb_ttystate): Declare.
12752 * inflow.c (initial_gdb_ttystate): New static variable.
12753 (set_initial_gdb_ttystate): New setter.
12754 (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate
12755 instead of our current terminal state.
12756 * top.c (gdb_init): Call set_initial_gdb_ttystate.
12757
12758 2015-01-07 Joel Brobecker <brobecker@adacore.com>
12759
12760 * guile/scm-type.c (tyscm_array_1): Add comment.
12761 * python/py-type.c (typy_array_1): Add comment.
12762
12763 2015-01-06 Joel Brobecker <brobecker@adacore.com>
12764
12765 * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range
12766 error if N2 is equal to N1 - 1.
12767
12768 2015-01-06 Joel Brobecker <brobecker@adacore.com>
12769
12770 * python/py-type.c (typy_array_1): Do not raise negative-length
12771 exception if N2 is equal to N1 - 1.
12772
12773 2015-01-03 Doug Evans <xdje42@gmail.com>
12774
12775 * c-exp.y: Whitespace cleanup.
12776 (classify_inner_name): Remove extra ;.
12777
12778 2015-01-02 Maciej W. Rozycki <macro@codesourcery.com>
12779
12780 * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack
12781 offset signed.
12782
12783 2015-01-02 Doug Evans <dje@google.com>
12784
12785 * dwarf2read.c (setup_type_unit_groups): Remove outdated comment.
12786
12787 2015-01-02 Doug Evans <dje@google.com>
12788
12789 * symtab.h (struct symbol): Fix typo in comment.
12790
12791 2015-01-01 Joel Brobecker <brobecker@adacore.com>
12792
12793 Update year range in copyright notice of all files.
12794
12795 2015-01-01 Joel Brobecker <brobecker@adacore.com>
12796
12797 * top.c (print_gdb_version): Update copyright year to 2015.
12798
12799 2015-01-01 Joel Brobecker <brobecker@adacore.com>
12800
12801 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014.
12802
12803 For older changes see ChangeLog-2014.
12804 \f
12805 Local Variables:
12806 mode: change-log
12807 left-margin: 8
12808 fill-column: 74
12809 version-control: never
12810 coding: utf-8
12811 End: