Disable paging when run by Emacs 25.1 and later.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2015-10-29 Eli Zaretskii <eliz@gnu.org>
2
3 * utils.c (init_page_info): Disable paging if INSIDE_EMACS is set
4 in the environment.
5
6 2015-10-29 Pedro Alves <palves@redhat.com>
7
8 * gnu-v2-abi.c (gnuv2_is_destructor_name)
9 (gnuv2_is_constructor_name): Add casts.
10
11 2015-10-29 Pedro Alves <palves@redhat.com>
12
13 * common/common-exceptions.c (exception_none): Add cast.
14
15 2015-10-29 Pedro Alves <palves@redhat.com>
16
17 * compile/compile-c-types.c (struct type_map_instance)
18 <gcc_type>: Rename to gcc_type_handle.
19 (insert_type, convert_type): Adjust.
20
21 2015-10-29 Pedro Alves <palves@redhat.com>
22
23 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Don't
24 assume that "break" breaks out of a TRY/CATCH.
25 * python/py-framefilter.c (py_print_single_arg): Don't assume
26 "continue" breaks out of a TRY/CATCH.
27 * python/py-value.c (valpy_binop_throw): New function, factored
28 out from ...
29 (valpy_binop): ... this.
30 (valpy_richcompare_throw): New function, factored
31 out from ...
32 (valpy_richcompare): ... this.
33 * solib.c (solib_read_symbols): Don't assume "break" breaks out
34 of a TRY/CATCH.
35 * common/common-exceptions.h [USE_RAW_CXX_TRY]
36 <TRY/CATCH/END_CATCH>: Define as 1-1 wrappers around try/catch.
37
38 2015-10-28 Simon Dardis <Simon.Dardis@imgtec.com>
39
40 * mips-linux-tdep.c (mips_linux_in_dynsym_stub): Recognise 'or'
41 as move along with [d]addu.
42
43 2015-10-28 Yao Qi <yao.qi@linaro.org>
44
45 * aarch64-tdep.c (aarch64_software_single_step): Pass 1 to
46 aarch64_decode_insn.
47
48 2015-10-27 Pedro Alves <palves@redhat.com>
49
50 * common/print-utils.c (host_address_to_string): Rename to ...
51 (host_address_to_string_1): ... this.
52 * common/print-utils.h (host_address_to_string): Reimplement as
53 wrapper around host_address_to_string_1.
54 * utils.c (gdb_print_host_address): Rename to ...
55 (gdb_print_host_address_1): ... this.
56 * utils.h (gdb_print_host_address): Reimplement as wrapper macro
57 around host_address_to_string_1.
58
59 2015-10-27 Pedro Alves <palves@redhat.com>
60
61 * alpha-tdep.c (alpha_read_insn): Always pass TARGET_XFER_E_IO to
62 memory_error. Rename local 'status' to 'res'.
63 * c-lang.c (c_get_string): Always pass TARGET_XFER_E_IO to
64 memory_error.
65 * corefile.c (read_stack, read_code, write_memory): Always pass
66 TARGET_XFER_E_IO to memory_error.
67 * disasm.c (dis_asm_memory_error): Always pass TARGET_XFER_E_IO to
68 memory_error. Rename parameter 'status' to 'err'.
69 (dump_insns): Rename local 'status' to 'err'.
70 * mips-tdep.c (mips_fetch_instruction): Rename parameter 'statusp'
71 to 'errp'. Rename local 'status' to 'err'. Always pass
72 TARGET_XFER_E_IO to memory_error.
73 (mips_breakpoint_from_pc): Rename local 'status' to 'err'.
74 * target.c (target_read_memory, target_read_raw_memory)
75 (target_read_stack, target_read_code, target_write_memory)
76 (target_write_raw_memory): Return -1 on error instead of
77 TARGET_XFER_E_IO.
78 * valprint.c (val_print_string): Rename local 'errcode' to 'err'.
79 Always pass TARGET_XFER_E_IO to memory_error. Update comment.
80
81 2015-10-27 Simon Marchi <simon.marchi@polymtl.ca>
82
83 * guile/guile-internal.h (gdbscm_with_guile): Change return
84 types to const char *.
85 * guile/scm-safe-call.c (gdbscm_with_guile): Likewise.
86 (struct c_data) <func>: Likewise.
87 (struct c_data) <result>: Change type to const char *.
88 (scscm_eval_scheme_string): Change return type to
89 const char *.
90 (scscm_source_scheme_script): Likewise.
91 (gdbscm_safe_eval_string): Change type of result variable to
92 const char * and remove cast.
93 (gdbscm_safe_source_script): Likewise.
94 * guile/scm-disasm.c (gdbscm_disasm_read_memory_worker):
95 Change return type to const char *.
96 (gdbscm_disasm_read_memory): Change type of status to
97 const char *.
98
99 2015-10-27 Pedro Alves <palves@redhat.com>
100
101 * source.c (openp): New local 'last_errno'. Use it to
102 save/restore errno.
103
104 2015-10-27 Pedro Alves <palves@redhat.com>
105
106 * psymtab.c (dump_psymtab_addrmap_1): Add casts.
107
108 2015-10-27 Simon Marchi <simon.marchi@polymtl.ca>
109
110 * ctf.c (SET_ENUM_FIELD): New macro.
111 (ctf_read_status): Use it.
112 (ctf_read_tp): Use it.
113
114 2015-10-27 Simon Marchi <simon.marchi@polymtl.ca>
115
116 * guile/scm-breakpoint.c (gdbscm_set_breakpoint_stop_x): Add
117 scm_t_dynwind_flags casts.
118 * guile/scm-cmd.c (gdbscm_parse_command_name): Likewise.
119 * guile/scm-ports.c (gdbscm_open_memory): Likewise.
120 * guile/scm-value.c (gdbscm_value_to_string): Likewise.
121
122 2015-10-27 Simon Marchi <simon.marchi@polymtl.ca>
123
124 * ax.h (ax_raw_byte): New declaration.
125 * ax-general.c (ax_raw_byte): New function.
126 (ax_simple): Use ax_raw_byte.
127 * ax-gdb.c (gen_printf): Likewise.
128
129 2015-10-27 Simon Marchi <simon.marchi@polymtl.ca>
130
131 * ada-lang.h (GROW_VECT): Add cast.
132
133 2015-10-26 Doug Evans <xdje42@gmail.com>
134
135 * symtab.h (struct general_symbol_info> <ada_mangled>: Update comment.
136
137 2015-10-26 Simon Marchi <simon.marchi@polymtl.ca>
138
139 * target.c (memory_xfer_partial): Change type of buf to gdb_byte
140 pointer.
141 (simple_search_memory): Cast return of memmem.
142
143 2015-10-26 Simon Marchi <simon.marchi@polymtl.ca>
144
145 * stap-probe.c (handle_stap_probe): Add (const char *) casts.
146
147 2015-10-26 Simon Marchi <simon.marchi@polymtl.ca>
148
149 * ctf.c (ctf_xfer_partial): Return TARGET_XFER_E_IO instead of
150 -1 on error.
151
152 2015-10-26 Doug Evans <dje@google.com>
153
154 PR symtab/17391
155 * dwarf2-frame.c (dwarf2_restore_rule): Call dwarf_reg_to_regnum
156 instead of gdbarch_dwarf2_reg_to_regnum.
157 (dwarf2_frame_cache): Ditto.
158 (read_addr_from_reg): Call dwarf_reg_to_regnum_or_error instead of
159 gdbarch_dwarf2_reg_to_regnum.
160 (get_reg_value): Ditto.
161 (dwarf2_fetch_cfa_info): Ditto.
162 (dwarf2_frame_prev_register): Ditto.
163 * dwarf2loc.c: #include "complaints.h".
164 (dwarf_expr_read_addr_from_reg): Call dwarf_reg_to_regnum_or_error
165 instead of gdbarch_dwarf2_reg_to_regnum.
166 (dwarf_expr_get_reg_value): Ditto.
167 (read_pieced_value): Ditto.
168 (write_pieced_value): Ditto.
169 (dwarf2_evaluate_loc_desc_full): Ditto.
170 (dwarf_reg_to_regnum): New function.
171 (throw_bad_regnum_error): New function.
172 (dwarf_reg_to_regnum_or_error): Renamed from
173 dwarf2_reg_to_regnum_or_errorChange to take a ULONGEST regnum.
174 All callers updated. Call throw_bad_regnum_error.
175 (locexpr_regname): Improve text of bad register number.
176 * dwarf2loc.h (dwarf_reg_to_regnum): Declare.
177 (dwarf_reg_to_regnum_or_error): Update prototype.
178 * dwarf2expr.c: #include "dwarf2loc.h".
179 (dwarf_block_to_sp_offset): Call dwarf_reg_to_regnum instead of
180 gdbarch_dwarf2_reg_to_regnum.
181 * gdbarch.sh (dwarf2_reg_to_regnum): Add comment.
182 * gdbarch.h: Regenerate.
183 * amd64-tdep.c (amd64_dwarf_reg_to_regnum): Remove warning for bad
184 register.
185 * avr-tdep.c (avr_dwarf_reg_to_regnum): Ditto.
186 * cris-tdep.c (cris_dwarf2_reg_to_regnum): Ditto.
187 * bfin-tdep.c (bfin_reg_to_regnum): Fix error checking.
188 * hppa-linux-tdep.c (hppa_dwarf_reg_to_regnum): Improve error checking.
189 Remove warning for bad register.
190 * hppa-tdep.c (hppa64_dwarf_reg_to_regnum): Ditto.
191 * i386-tdep.c (i386_svr4_dwarf_reg_to_regnum): Renamed from
192 i386_svr4_reg_to_regnum. Return -1 for bad registers.
193 (i386_svr4_reg_to_regnum): New function.
194 (i386_gdbarch_init): Update call to set_gdbarch_dwarf2_reg_to_regnum.
195 * microblaze-tdep.c (microblaze_dwarf2_reg_to_regnum): Don't assert
196 on bad registers, return -1.
197 * msp430-tdep.c (msp430_dwarf2_reg_to_regnum): Improve error checking.
198 Remove warning for bad register.
199 * nios2-tdep.c: Add static assert for NIOS2_NUM_REGS.
200 (nios2_dwarf_reg_to_regnum): Fix off-by-one error.
201 Remove warning for bad register. Return -1 for bad register.
202 * rl78-tdep.c (rl78_dwarf_reg_to_regnum): Don't flag an internal error
203 for bad register, return -1.
204 * rx-tdep.c (rx_dwarf_reg_to_regnum): Ditto.
205 * m68k-tdep.c (m68k_dwarf_reg_to_regnum): Fix error result.
206 * mep-tdep.c (mep_debug_reg_to_regnum): Ditto.
207 * mips-tdep.c (mips_stab_reg_to_regnum): Ditto.
208 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Ditto.
209 * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Remove warning
210 for bad regs.
211 * xtensa-tdep.c (xtensa_reg_to_regnum): Remove internal error for
212 bad regs. Fix error result.
213 * stabsread.c (stab_reg_to_regnum): Watch for negative regno.
214 (reg_value_complaint): Update complaint text.
215 * mdebugread.c (reg_value_complaint): New function.
216 (mdebug_reg_to_regnum): Rewrite to watch for bad reg numbers.
217
218 2015-10-26 Doug Evans <dje@google.com>
219
220 PR python/18938
221 * cli/cli-cmds (source_script_fron_sctream): New arg file_to_open.
222 All callers updated.
223
224 2015-10-26 Doug Evans <dje@google.com>
225
226 * psymtab.c (struct dump_psymtab_addrmap_data): Define.
227 (dump_psymtab_addrmap_1, dump_psymtab_addrmap): New functions.
228 (maintenance_print_psymbols): Print address map.
229
230 2015-10-26 Doug Evans <dje@google.com>
231
232 * nat/linux-nat.h (__SIGRTMIN): Move here from gdbserver/linux-low.c.
233
234 2015-10-26 Doug Evans <dje@google.com>
235
236 * common/gdb_wait.h (W_STOPCODE): Define, moved here from
237 gdbserver/linux-low.c.
238 (WSETSTOP): Simplify.
239
240 2015-10-26 Doug Evans <dje@google.com>
241
242 * linux-thread-db.c (find_new_threads_callback): Ditto.
243 (thread_db_pid_to_str): Ditto.
244
245 2015-10-26 Simon Marchi <simon.marchi@polymtl.ca>
246
247 * guile/scm-ports.c (ioscm_make_gdb_stdio_port): Do not pass a
248 local char array to scm_mode_bits, use a cast instead.
249
250 2015-10-26 Simon Marchi <simon.marchi@ericsson.com>
251
252 * tui/tui-data.c (tui_alloc_content): Don't check xmalloc
253 result. Change type of element_block_ptr. Change allocation to
254 use XNEWVEC.
255
256 2015-10-26 Luis Machado <lgustavo@codesourcery.com>
257
258 * record-full.c (record_full_message_wrapper_safe): Pass empty string to
259 catch_errors call instead of NULL.
260
261 2015-10-26 Simon Marchi <simon.marchi@polymtl.ca>
262
263 * guile/scm-ports.c (ioscm_make_gdb_stdio_port): Pass non-const
264 char pointer to scm_mode_bits.
265
266 2015-10-26 Simon Marchi <simon.marchi@polymtl.ca>
267
268 * symtab.c (default_make_symbol_completion_list_break_on_1): Add
269 cast.
270
271 2015-10-26 Simon Marchi <simon.marchi@polymtl.ca>
272
273 * guile/scm-ports.c (gdbscm_memory_port_write): Declare new
274 "data" local variable and use it.
275
276 2015-10-26 Simon Marchi <simon.marchi@polymtl.ca>
277
278 * guile/scm-symbol.c (gdbscm_lookup_global_symbol): Add
279 domain_enum cast.
280 (gdbscm_lookup_symbol): Likewise.
281
282 2015-10-25 Iain Buclaw <ibuclaw@gdcproject.org>
283
284 * d-exp.y: Remove an obsolete comment and propagate the block
285 information to the produced expression.
286
287 2015-10-24 Simon Marchi <simon.marchi@polymtl.ca>
288
289 * tui/tui-data.c (tui_add_to_source_windows): Remove void *
290 cast.
291 (tui_add_content_elements): Likewise.
292
293 2015-10-24 Simon Marchi <simon.marchi@polymtl.ca>
294
295 * cli/cli-setshow.c (do_set_command): Constify p.
296
297 2015-10-24 Simon Marchi <simon.marchi@polymtl.ca>
298
299 * nat/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Replace
300 (void *) cast with (gdb_byte *).
301
302 2015-10-24 Simon Marchi <simon.marchi@polymtl.ca>
303
304 * proc-service.c (ps_pdread): Add cast.
305
306 2015-10-24 Simon Marchi <simon.marchi@polymtl.ca>
307
308 * sparc64-tdep.c (sparc64_store_arguments): Split assignment of
309 valbuf.
310
311 2015-10-24 Simon Marchi <simon.marchi@polymtl.ca>
312
313 * ia64-tdep.c (ia64_pseudo_register_write): Remove cast.
314 (ia64_push_dummy_call): Remove cast and change type of "to" to
315 array of gdb_byte.
316
317 2015-10-23 Simon Marchi <simon.marchi@polymtl.ca>
318
319 * linux-btrace.c (linux_enable_pt): Add cast to mmap return.
320
321 2015-10-23 Simon Marchi <simon.marchi@ericsson.com>
322
323 * observer.h (observer_${event}_notification_stub): Add cast.
324
325 2015-10-23 Yao Qi <yao.qi@linaro.org>
326
327 * aarch64-tdep.c (aarch64_displaced_step_copy_insn): Set
328 dsd.insn_count to zero.
329
330 2015-10-22 Pedro Alves <palves@redhat.com>
331
332 * infrun.c (stop_after_trap): Delete.
333 (clear_proceed_status, handle_signal_stop, struct
334 infcall_control_state, save_infcall_control_state)
335 (restore_infcall_control_state): Remove references to
336 stop_after_trap.
337
338 2015-10-22 Simon Marchi <simon.marchi@ericsson.com>
339
340 * python/python.c (_initialize_python): Add cast.
341
342 2015-10-22 Simon Marchi <simon.marchi@ericsson.com>
343
344 * nto-tdep.c (nto_inferior_data): Add cast.
345
346 2015-10-22 Pedro Alves <palves@redhat.com>
347
348 * windows-nat.c (do_initial_windows_stuff): Rewrite loop using
349 windows_wait and windows_resume directly instead of
350 wait_for_inferior and resume.
351
352 2015-10-22 Simon Marchi <simon.marchi@polymtl.ca>
353
354 * xtensa-tdep.h (XTREG): Add casts.
355 (XTREG_END): Likewise.
356
357 2015-10-22 Simon Marchi <simon.marchi@polymtl.ca>
358
359 * solib-spu.c (spu_bfd_iovec_pread): Add (gdb_byte *) cast.
360
361 2015-10-22 Simon Marchi <simon.marchi@polymtl.ca>
362
363 * rs6000-tdep.c (variants): Add (enum bfd_architecture) cast.
364
365 2015-10-22 Simon Marchi <simon.marchi@polymtl.ca>
366
367 * mips-linux-tdep.c (mips64_linux_get_longjmp_target): Change type of
368 buf to gdb_byte*.
369 (supply_32bit_reg): Add cast.
370 (mips64_fill_gregset): Likewise.
371
372 2015-10-21 Simon Marchi <simon.marchi@polymtl.ca>
373
374 PR python/18073
375 * python/py-type.c (typy_get_composite): Allow returning a
376 function type.
377
378 2015-10-21 Keven Boell <keven.boell@intel.com>
379
380 * dwarf2read.c (set_die_type): Add read of
381 DW_AT_allocated and DW_AT_associated.
382 * f-typeprint.c: New include of typeprint.h
383 (f_print_type): Add check for allocated/associated
384 status of type.
385 (f_type_print_varspec_suffix): Add check for
386 * gdbtypes.c (create_array_type_with_stride):
387 Add check for valid data location of type in
388 case allocated or associated attributes are set.
389 Length of an array should be only calculated if
390 allocated or associated is resolved as true.
391 (is_dynamic_type_internal): Add check for allocated/
392 associated.
393 (resolve_dynamic_array): Evaluate allocated/associated
394 properties.
395 * gdbtypes.h (enum dynamic_prop_node_kind): <DYN_PROP_ALLOCATED>
396 <DYN_PROP_ASSOCIATED>: New enums.
397 (TYPE_ALLOCATED_PROP, TYPE_ASSOCIATED_PROP): New macros.
398 (type_not_allocated): New function.
399 (type_not_associated): New function.
400 * valarith.c (value_subscripted_rvalue): Add check for
401 allocated/associated.
402 * valprint.c: New include of typeprint.h.
403 (valprint_check_validity): Add check for allocated/associated.
404 (value_check_printable): Add check for allocated/
405 associated.
406 * typeprint.h (val_print_not_allocated): New function.
407 (val_print_not_associated): New function.
408 * typeprint.c (val_print_not_allocated): New function.
409 (val_print_not_associated): New function.
410
411 2015-10-21 Antoine Tremblay <antoine.tremblay@ericsson.com>
412
413 * Makefile.in: Add arm.c/o.
414 * arch/arm.c: New file.
415 * arch/arm.h: (IS_THUMB_ADDR): Move macro from arm-tdep.c.
416 (MAKE_THUMB_ADDR): Likewise.
417 (UNMAKE_THUMB_ADDR): Likewise.
418 * arm-tdep.c (int thumb_insn_size): Move to arm.c.
419 (IS_THUMB_ADDR): Move to arm.h.
420 (MAKE_THUMB_ADDR): Likewise.
421 (UNMAKE_THUMB_ADDR): Likewise.
422 * configure.tgt: Add arm.o to all ARM configs.
423
424 2015-10-21 Yao Qi <yao.qi@linaro.org>
425
426 * lib/range-stepping-support.exp (exec_cmd_expect_vCont_count):
427 Remove argument exp_vCont_s.
428 * gdb.base/range-stepping.exp: Callers updated.
429 * gdb.trace/range-stepping.exp: Likewise.
430
431 2015-10-21 Aleksandar Ristovski <aristovski@qnx.com>
432
433 * gdb/nto-tdep.c (QNX_NOTE_NAME, QNX_INFO_SECT_NAME): New defines.
434 (nto_sniff_abi_note_section): New function.
435 (nto_elf_osabi_sniffer): Use new function to recognize nto specific
436 binary.
437
438 2015-10-21 Aleksandar Ristovski <aristovski@qnx.com>
439
440 * nto-procfs.c (procfs_wait): Set stopped_flags nad stopped_pc.
441 (procfs_stopped_by_watchpoint): Use flags stored in inferior data.
442 * nto-tdep.c (nto_new_inferior_data_reg): New definition.
443 (nto_new_inferior_data, nto_inferior_data_cleanup, nto_inferior_data):
444 New functions.
445 (_initialize_nto_tdep): New forward declaration, new function.
446 * nto-tdep.h (struct nto_inferior_data): New struct.
447 (nto_inferior_data): New function declaration.
448
449 2015-10-20 Jan Kratochvil <jan.kratochvil@redhat.com>
450
451 * findvar.c (address_from_register): Check REGNUM validity.
452
453 2015-10-20 Aleksandar Ristovski <aristovski@qnx.com>
454
455 * gdb/nto-procfs.c (procfs_pid_to_exec_file): New function.
456 (init_procfs_targets): Wire new function.
457
458 2015-10-20 Aleksandar Ristovski <aristovski@qnx.com>
459
460 * nto-procfs.c (sys/auxv.h): Include.
461 (procfs_xfer_partial): Implement TARGET_OBJECT_AUXV.
462 * nto-tdep.c (nto_read_auxv_from_initial_stack): New function.
463 * nto-tdep.h (nto_read_auxv_from_initial_stack): New declaration.
464
465 2015-10-20 Aleksandar Ristovski <aristovski@qnx.com>
466
467 * nto-procfs.c (nto_procfs_path): Rename to...
468 (nodestr): ... this, and change type.
469 (nto_node): Use new variable and logic accordingly.
470 (procfs_open_1): Use new variable name. Use local buffer to construct
471 procfrs path.
472 (procfs_pidlist): Use NODESTR to construct procfs path.
473 (procfs_files_info): Use NODESTR to output meaningful text.
474 (do_attach): Construct procfs using NODESTR.
475 (procfs_create_inferior): Compare pointer to NULL.
476
477 2015-10-19 Josh Stone <jistone@redhat.com>
478
479 * linux-nat.c (linux_handle_syscall_trap): Always update entry/
480 return state, even when not actively catching syscalls at all.
481 (linux_handle_extended_wait): Mark syscall_state like an entry.
482 (wait_lwp): Set syscall_state ignored for other traps.
483 (linux_nat_filter_event): Likewise.
484
485 2015-10-19 Luis Machado <lgustavo@codesourcery.com>
486
487 * remote.c (remote_wait_as): Set rs->waiting_for_stop_reply to 0
488 when handling 'E', 'T', 'S', 'X' and 'W' packets.
489 Do not set rs->waiting_for_stop_reply back to 1.
490
491 2015-10-16 Aleksandar Ristovski <aristovski@qnx.com>
492
493 * nto-procfs.c (common/filestuff.h): Include.
494 (procfs_can_use_hw_breakpoint): Fix enum name.
495 (procfs_open_1): Fix compiler warning.
496 (procfs_pidlist): Make static.
497 (procfs_meminfo): Make static, fix type name, add missing argument.
498 (procfs_store_registers): Make static.
499 (procfs_thread_info): Remove unused function.
500 (_initialize_procfs): Forward declare.
501
502 2015-10-16 Yao Qi <yao.qi@arm.com>
503
504 * MAINTAINERS: Update my email address.
505
506 2015-10-15 Yao Qi <yao.qi@linaro.org>
507
508 * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint):
509 Call gdbarch_breakpoint_from_pc to instruction length.
510 (aarch64_linux_remove_hw_breakpoint): Likewise.
511 * common/common-regcache.h (regcache_register_size): Declare.
512 * nat/aarch64-linux-hw-point.c: Include "common-regcache.h".
513 (aarch64_point_is_aligned): Set alignment to 2 for breakpoint if
514 the process is 32bit, otherwise set alignment to 4.
515 (aarch64_handle_breakpoint): Update comments.
516 * regcache.c (regcache_register_size): New function.
517
518 2015-10-15 Aleksandar Ristovski <aristovski@qnx.com>
519
520 * gdbarch.sh (core_regset_section): Remove.
521 * gdbarch.h: Regenerate.
522
523 2015-10-14 Yao Qi <yao.qi@linaro.org>
524
525 * arch/aarch64-insn.h (struct aarch64_memory_operand): Move enum
526 out of it.
527 (enum aarch64_memory_operand_type): New.
528
529 2015-10-13 David Edelsohn <dje.gcc@gmail.com>
530
531 * xcoffread.c (dwarf2_xcoff_names): Add .dwmac and .dwpbtyp.
532
533 2015-10-13 Pedro Alves <palves@redhat.com>
534
535 * ada-lang.c (ada_enum_name): Constify local.
536 * ada-typeprint.c (print_range_bound): Constify locals.
537 * c-varobj.c (c_describe_child): Likewise.
538 * cli/cli-setshow.c (do_set_command): Likewise.
539 * gdb_vecs.c (delim_string_to_char_ptr_vec_append): Likewise.
540 * dwarf2read.c (find_file_and_directory): Likewise.
541 (anonymous_struct_prefix, dwarf2_name): Likewise.
542 * gnu-v3-abi.c (gnuv3_rtti_type): Likewise.
543 * go-lang.c (unpack_mangled_go_symbol): Likewise.
544 * jv-typeprint.c (java_type_print_base): Likewise.
545 * ser-tcp.c (net_open): Likewise.
546 * symfile.c (deduce_language_from_filename): Likewise.
547 * symtab.c (gdb_mangle_name): Likewise.
548 * tui/tui-io.c (tui_redisplay_readline): Likewise.
549
550 2015-10-13 Pedro Alves <palves@redhat.com>
551
552 * infrun.c (restore_execution_direction): New function.
553 (fetch_inferior_event): Use it instead of
554 make_cleanup_restore_integer.
555 (execution_direction): Change type to enum
556 exec_direction_kind.
557 * infrun.h (execution_direction): Likewise.
558
559 2015-10-13 Pedro Alves <palves@redhat.com>
560
561 * ada-lang.c (ada_value_primitive_packed_val): Constify
562 locals. Use value_contents_writeable. Remove casts.
563
564 2015-10-13 Pedro Alves <palves@redhat.com>
565
566 * ada-lang.c (ada_value_primitive_packed_val): Add casts to malloc
567 and alloca calls.
568
569 2015-10-13 Simon Marchi <simon.marchi@polymtl.ca>
570
571 * lm32-tdep.c (lm32_push_dummy_call): Replace call to
572 write_memory with write_memory_unsigned_integer.
573
574 2015-10-13 Simon Marchi <simon.marchi@polymtl.ca>
575
576 * solib-dsbt.c (cmp_name): Constify arguments.
577 * solib-frv.c (cmp_name): Likewise.
578 * solib-svr4.c (svr4_create_solib_event_breakpoints): Likewise.
579 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Likewise.
580 (bfd_lookup_symbol_from_dyn_symtab): Likewise.
581 (gdb_bfd_lookup_symbol): Likewise.
582 * solib.h (gdb_bfd_lookup_symbol): Likewise.
583 (gdb_bfd_lookup_symbol_from_symtab): Likewise.
584
585 2015-10-12 Andrew Burgess <andrew.burgess@embecosm.com>
586
587 * stack.c (parse_frame_specification): Remove message parameter,
588 replace with fixed string in function body, update function
589 comment.
590 (frame_info): Remove message to parse_frame_specification.
591 (select_frame_command): Likewise.
592
593 2015-10-12 Andrew Burgess <andrew.burgess@embecosm.com>
594
595 * stack.c (parse_frame_specification): Delete.
596 (parse_frame_specification_1): Rename to
597 parse_frame_specification.
598 (frame_info): Use parse_frame_specification.
599 (select_frame_command): Likewise.
600 (return_command): Use select_frame and print_stack_frame rather
601 than frame_command and select_frame_command.
602 (func_command): Use get_current_frame rather than
603 parse_frame_specification.
604
605 2015-10-12 Andrew Burgess <andrew.burgess@embecosm.com>
606
607 * stack.c (func_command): Return early when there is no ARG
608 string.
609
610 2015-10-12 Andrew Burgess <andrew.burgess@embecosm.com>
611
612 * stack.c: Include safe-ctype.h not ctype.h.
613 (parse_frame_specification): Use ISSPACE not isspace.
614 (backtrace_command): Use TOLOWER not tolower.
615
616 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
617
618 * mep-tdep.c (current_me_module): Add cast.
619 (mep_gdbarch_init): Likewise.
620
621 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
622
623 * m32c-tdep.c (m32c_move_reg_t): Replace with...
624 (m32c_write_reg_t): ...this and...
625 (m32c_read_reg_t): ...this.
626 (struct m32c_reg): Update types of read and write.
627 (m32c_raw_read): Change declaration type to m32c_read_reg_t and
628 adjust definition.
629 (m32c_banked_read): Likewise.
630 (m32c_sb_read): Likewise.
631 (m32c_part_read): Likewise.
632 (m32c_cat_read): Likewise.
633 (m32c_r3r2r1r0_read): Likewise.
634 (m32c_raw_write): Change declaration type to m32c_write_reg_t
635 and adjust definition.
636 (m32c_banked_write): Likewise.
637 (m32c_sb_write): Likewise.
638 (m32c_part_write): Likewise.
639 (m32c_cat_write): Likewise.
640 (m32c_r3r2r1r0_write): Likewise.
641
642 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
643
644 * aarch64-linux-tdep.c (aarch64_linux_syscall_record): Add cast.
645
646 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
647
648 * aarch64-linux-tdep.c (aarch64_canonicalize_syscall): Return
649 gdb_sys_no_syscall instead of -1.
650
651 2015-10-12 Yao Qi <yao.qi@linaro.org>
652
653 * NEWS: Mention the change.
654
655 2015-10-12 Yao Qi <yao.qi@linaro.org>
656
657 * arch/aarch64-insn.c (emit_load_store): Rename to ...
658 (aarch64_emit_load_store): ... it. All callers updated.
659
660 2015-10-12 Yao Qi <yao.qi@linaro.org>
661
662 * arch/aarch64-insn.c (emit_insn): Rename to ...
663 (aarch64_emit_insn): ... it. All callers updated.
664
665 2015-10-12 Yao Qi <yao.qi@linaro.org>
666
667 * aarch64-linux-tdep.c: Include arch-utils.h.
668 (aarch64_linux_init_abi): Call set_gdbarch_max_insn_length,
669 set_gdbarch_displaced_step_copy_insn,
670 set_gdbarch_displaced_step_fixup,
671 set_gdbarch_displaced_step_free_closure,
672 set_gdbarch_displaced_step_location,
673 and set_gdbarch_displaced_step_hw_singlestep.
674 * aarch64-tdep.c (struct displaced_step_closure): New.
675 (struct aarch64_displaced_step_data): New.
676 (aarch64_displaced_step_b): New function.
677 (aarch64_displaced_step_b_cond): Likewise.
678 (aarch64_register): Likewise.
679 (aarch64_displaced_step_cb): Likewise.
680 (aarch64_displaced_step_tb): Likewise.
681 (aarch64_displaced_step_adr): Likewise.
682 (aarch64_displaced_step_ldr_literal): Likewise.
683 (aarch64_displaced_step_others): Likewise.
684 (aarch64_displaced_step_copy_insn): Likewise.
685 (aarch64_displaced_step_fixup): Likewise.
686 (aarch64_displaced_step_hw_singlestep): Likewise.
687 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): New macro.
688 (aarch64_displaced_step_copy_insn): Declare.
689 (aarch64_displaced_step_fixup): Declare.
690 (aarch64_displaced_step_hw_singlestep): Declare.
691 * arch/aarch64-insn.c (emit_insn): Moved from
692 gdbserver/linux-aarch64-low.c.
693 (emit_load_store): Likewise.
694 * arch/aarch64-insn.h (enum aarch64_opcodes): Moved from
695 gdbserver/linux-aarch64-low.c.
696 (struct aarch64_register): Likewise.
697 (struct aarch64_memory_operand): Likewise.
698 (ENCODE): Likewise.
699 (can_encode_int32): New macro.
700 (emit_b, emit_bcond, emit_cb, emit_ldr, emit_ldrsw): Likewise.
701 (emit_tb, emit_nop): Likewise.
702 (emit_insn): Declare.
703 (emit_load_store): Declare.
704
705 2015-10-12 Yao Qi <yao.qi@linaro.org>
706
707 * arch/aarch64-insn.c (aarch64_decode_ldr_literal): Moved from
708 gdbserver/linux-aarch64-low.c.
709 (aarch64_relocate_instruction): Likewise.
710 * arch/aarch64-insn.h (aarch64_decode_ldr_literal): Declare.
711 (struct aarch64_insn_data): Moved from
712 gdbserver/linux-aarch64-low.c.
713 (struct aarch64_insn_visitor): Likewise.
714 (aarch64_relocate_instruction): Declare.
715
716 2015-10-12 Pierre-Marie de Rodat <derodat@adacore.com>
717
718 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT>: If
719 EVAL_AVOID_SIDE_EFFECTS mode, forward the VALUE_LVAL attribute
720 to the returned value.
721
722 2015-10-09 Joel Brobecker <brobecker@adacore.com>
723
724 * ada-lang.c (ada_unpack_from_contents): Add guard that unpacked
725 is large enough for BIT_SIZE. Update function comment.
726
727 2015-10-09 Joel Brobecker <brobecker@adacore.com>
728
729 * ada-lang.c (ada_value_primitive_packed_val): Move
730 src_len variable to local block where used. Override
731 BIT_SIZE if bigger than size of resolved type.
732
733 2015-10-09 Joel Brobecker <brobecker@adacore.com>
734
735 * gdbtypes.h (is_scalar_type): Add extern declaration.
736 * gdbtypes.c (is_scalar_type): Make non-static.
737 * ada-lang.c (ada_value_primitive_packed_val): Use is_scalar_type
738 to compute IS_SCALAR instead of doing it ourselves.
739
740 2015-10-09 Joel Brobecker <brobecker@adacore.com>
741
742 * ada-lang.c (ada_value_primitive_packed_val): Rework handling
743 of case where TYPE is dynamic.
744
745 2015-10-09 Joel Brobecker <brobecker@adacore.com>
746
747 * ada-lang.c (ada_unpack_from_contents): New function,
748 extracted from ada_value_primitive_packed_val.
749 (ada_value_primitive_packed_val): Replace extracted out code
750 by call to ada_unpack_from_contents.
751
752 2015-10-09 Joel Brobecker <brobecker@adacore.com>
753
754 * ada-lang.c (ada_value_primitive_packed_val): Reorder local
755 variable declarations.
756
757 2015-10-09 Joel Brobecker <brobecker@adacore.com>
758
759 * ada-lang.c (ada_value_primitive_packed_val): Change the type
760 of local variables src and unpacked to "gdb_type *" instead of
761 "unsigned char *".
762
763 2015-10-09 Joel Brobecker <brobecker@adacore.com>
764
765 * ada-lang.c (ada_value_primitive_packed_val): Make the name
766 of various local variables more explicit and consistent.
767 No real code change otherwise.
768
769 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
770
771 * i386-tdep.h (struct gdbarch_tdep): Change type of
772 register_reggroup_p to gdbarch_register_reggroup_p_ftype.
773
774 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
775
776 * cris-tdep.c (struct instruction_environment): Change type of
777 byte_order to enum bfd_endian.
778
779 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
780
781 * arm-linux-tdep.c (arm_canonicalize_syscall): Add
782 enum gdb_syscall casts.
783
784 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
785
786 * aarch64-tdep.c (stack_item_t): Change type of data to gdb_byte*.
787 * arm-tdep.c (struct stack_item): Likewise.
788 (push_stack_item): Add gdb_byte* cast.
789 * avr-tdep.c (struct stack_item): Change type of data to gdb_byte*.
790 (push_stack_item): Add gdb_byte* cast.
791 * cli/cli-dump.c (dump_memory_to_file): Change type of buf to gdb_byte*
792 and add cast.
793 * cris-tdep.c (struct stack_item): Change type of data to gdb_byte*.
794 (push_stack_item): Add gdb_byte* cast.
795 * gcore.c (gcore_copy_callback): Change type of memhunk to gdb_byte* and
796 add cast.
797 * gdbtypes.h (print_scalar_formatted): Change type of first parameter to
798 gdb_byte*.
799 * h8300-tdep.c (h8300_extract_return_value): Change type of valbuf to
800 gdb_byte* and remove unnecessary cast.
801 (h8300h_extract_return_value): Likewise.
802 (h8300_store_return_value): Change type of valbuf to gdb_byte*.
803 (h8300h_store_return_value): Likewise.
804 * iq2000-tdep.c (iq2000_extract_return_value): Change type of valbuf to
805 gdb_byte* and remove unnecessary cast.
806 * jit.c (jit_reader_try_read_symtab): Change type of gdb_mem to gdb_byte*
807 and add cast.
808 * m32r-tdep.c (m32r_store_return_value): Change type of valbuf to
809 gdb_byte* and remove unnecessary cast.
810 (m32r_extract_return_value): Change type of dst to gdb_byte* and remove
811 valbuf.
812 * mep-tdep.c (mep_pseudo_cr32_read): Change type of buf to gdb_byte*.
813 (mep_pseudo_cr64_read): Likewise.
814 (mep_pseudo_csr_write): Likewise.
815 (mep_pseudo_cr32_write): Likewise.
816 (mep_pseudo_cr64_write): Likewise.
817 * mi/mi-main.c (mi_cmd_data_write_memory): Change type of buffer to
818 gdb_byte* and add cast.
819 * moxie-tdep.c (moxie_store_return_value): Change type of valbuf to
820 gdb_byte* and remove unnecessary cast.
821 (moxie_extract_return_value): Change type of dst to gdb_byte* and remove
822 valbuf.
823 * p-valprint.c (print_scalar_formatted): Change type of valaddr to
824 gdb_byte*.
825 * printcmd.c (void): Likewise.
826 * python/py-inferior.c (infpy_read_memory): Change type of buffer to
827 gdb_byte* and add cast.
828 (infpy_write_memory): Likewise.
829 (infpy_search_memory): Likewise.
830 * regcache.c (regcache_raw_write_signed): Change type of buf to gdb_byte*
831 and add cast.
832 (regcache_raw_write_unsigned): Likewise.
833 (regcache_cooked_write_signed): Likewise.
834 (regcache_cooked_write_unsigned): Likewise.
835 * sh64-tdep.c (h64_extract_return_value): Change type of valbuf to
836 gdb_byte*.
837
838 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
839
840 * fbsd-tdep.c (fbsd_collect_regset_section_cb): Add cast.
841 * linux-tdep.c (linux_collect_regset_section_cb_data): Likewise.
842
843 2015-10-09 Eli Zaretskii <eliz@gnu.org>
844
845 * stack.c (print_stack_frame):
846 * utils.c (printchar): Fix typos in commentary.
847
848 2015-10-08 Iain Buclaw <ibuclaw@gdcproject.org>
849
850 * d-exp.y: (UnaryExpression): Support `type.sizeof' expressions.
851 (PostfixExpression): Support `expr.sizeof' expressions.
852 (PrimaryExpression): Support `typeof(expr)' expressions.
853
854 2015-10-08 Maciej W. Rozycki <macro@imgtec.com>
855
856 * MAINTAINERS: Update my email address.
857
858 2015-10-08 Markus Metzger <markus.t.metzger@intel.com>
859
860 * record-btrace.c (record_btrace_resume): Fix void return.
861
862 2015-10-07 Yao Qi <yao.qi@linaro.org>
863
864 * aarch64-tdep.c: Include opcode/aarch64.h.
865 (submask): Move it above.
866 (bit): Likewise.
867 (bits): Likewise.
868 (aarch64_software_single_step): Call aarch64_decode_insn.
869 Decode instruction by aarch64_inst instead of using
870 aarch64_decode_bcond and decode_masked_match.
871
872 2015-10-06 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
873
874 * cli/cli-dump.c (restore_command): Parse load_offset (bias) as address
875 only when the file is binary.
876
877 2015-10-02 James Bowman <james.bowman@ftdichip.com>
878
879 * ft32-tdep.c (ft32_analyze_prologue): Add function prolog
880 subroutine handling.
881
882 2015-10-01 Simon Marchi <simon.marchi@ericsson.com>
883
884 * common/vec.h (VEC_OP (T,cleanup)): Add pointer cast.
885
886 2015-09-30 Doug Evans <dje@google.com>
887
888 * dwarf2read.c (setup_type_unit_groups): Add comment.
889
890 2015-09-30 Pedro Alves <palves@redhat.com>
891
892 * linux-nat.c (linux_nat_always_non_stop_p): Always return 1.
893 * x86-linux-nat.c (x86_linux_always_non_stop_p): Delete.
894 (x86_linux_create_target): Don't install
895 x86_linux_always_non_stop_p.
896
897 2015-09-30 Don Breazeal <donb@codesourcery.com>
898
899 * remote.c (remote_parse_stop_reply): Call strprefix instead
900 of strncmp.
901
902 2015-09-30 Simon Marchi <simon.marchi@ericsson.com>
903
904 * gdbarch.sh (struct gdbarch_info): Change tdep_info's type to void *.
905 * gdbarch.h: Regenerate.
906 * i386-tdep.c (i386_gdbarch_init): Remove cast to
907 struct gdbarch_tdep_info *.
908 * mips-tdep.c (mips_gdbarch_init): Likewise.
909 * ppc-linux-tdep (ppu2spu_sniffer): Likewise.
910 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
911 * spu-multiarch.c (spu_gdbarch): Likewise.
912
913 2015-09-30 Kevin Buettner <kevinb@redhat.com>
914
915 * infcmd.c (finish_command_fsm_should_stop): Don't attempt to
916 record a NULL value.
917
918 2015-09-29 Kevin Buettner <kevinb@redhat.com>
919
920 * msp430-tdep.c (msp430_push_dummy_call): Treat reference, struct,
921 and union arguments the same as pointer arguments when determining
922 size of argument.
923
924 2015-09-29 James Bowman <james.bowman@ftdichip.com>
925
926 * ft32-tdep.c: #include "opcode/ft32.h".
927 Delete local macros IS_PUSH, PUSH_REG, IS_LINK, LINK_SIZE.
928 (ft32_analyze_prologue): Use FT32_* macros.
929
930 2015-09-28 Simon Marchi <simon.marchi@ericsson.com>
931
932 * cli/cli-script.c (read_next_line): Fix stdout -> stdin in
933 comment.
934
935 2015-09-28 Doug Evans <dje@google.com>
936
937 * MAINTAINERS: Add Iain Buclaw as D language maintainer.
938
939 2015-09-28 Doug Evans <dje@google.com>
940
941 * common/filestuff.c (make_cleanup_close): Update comment.
942
943 2015-09-26 Simon Marchi <simon.marchi@polymtl.ca>
944
945 * btrace.c (parse_xml_btrace_block): Fix cast of
946 xml_find_attribute's return value.
947 * memory-map.c (memory_map_start_memory): Likewise.
948 * solib-svr4.c (library_list_start_library): Likewise.
949 * solib-target.c (library_list_start_segment): Likewise.
950 (library_list_start_section): Likewise.
951 * tracepoint.c (traceframe_info_start_memory): Likewise.
952
953 2015-09-26 Iain Buclaw <ibuclaw@gdcproject.org>
954
955 * d-namespace.c (d_lookup_symbol): New arg langdef.
956 All callers updated. Support looking up symbol as a primitive type.
957 (lookup_module_scope): New arg langdef. All callers updated.
958 Call d_lookup_symbol directly for simple bare symbols.
959
960 2015-09-25 Simon Marchi <simon.marchi@ericsson.com>
961
962 * macrocmd.c (print_macro_callback): Add cast(s).
963 * macrotab.c (macro_bcache_str): Likewise.
964 (new_macro_definition): Likewise.
965 * main.c (captured_main): Likewise.
966 * maint.c (print_bfd_section_info): Likewise.
967 * mdebugread.c (mdebug_build_psymtabs): Likewise.
968 (basic_type): Likewise.
969 * memattr.c (mem_region_cmp): Likewise.
970 * memory-map.c (memory_map_start_memory): Likewise.
971 (memory_map_end_memory): Likewise.
972 (memory_map_start_property): Likewise.
973 (memory_map_end_property): Likewise.
974 (clear_result): Likewise.
975 * memrange.c (compare_mem_ranges): Likewise.
976 * mep-tdep.c (mep_analyze_frame_prologue): Likewise.
977 * mi/mi-cmd-var.c (mi_cmd_var_update_iter): Likewise.
978 * mi/mi-console.c (mi_console_file_delete): Likewise.
979 (mi_console_file_fputs): Likewise.
980 (mi_console_raw_packet): Likewise.
981 (mi_console_file_flush): Likewise.
982 (mi_console_set_raw): Likewise.
983 * mi/mi-interp.c (mi_interpreter_resume): Likewise.
984 (mi_new_thread): Likewise.
985 (mi_thread_exit): Likewise.
986 (mi_record_changed): Likewise.
987 (mi_inferior_added): Likewise.
988 (mi_inferior_appeared): Likewise.
989 (mi_inferior_exit): Likewise.
990 (mi_inferior_removed): Likewise.
991 (mi_interp_data): Likewise.
992 (mi_on_normal_stop): Likewise.
993 (mi_traceframe_changed): Likewise.
994 (mi_tsv_created): Likewise.
995 (mi_tsv_deleted): Likewise.
996 (mi_tsv_modified): Likewise.
997 (mi_breakpoint_created): Likewise.
998 (mi_breakpoint_deleted): Likewise.
999 (mi_breakpoint_modified): Likewise.
1000 (mi_output_running_pid): Likewise.
1001 (mi_inferior_count): Likewise.
1002 (mi_solib_loaded): Likewise.
1003 (mi_solib_unloaded): Likewise.
1004 (mi_command_param_changed): Likewise.
1005 (mi_memory_changed): Likewise.
1006 (report_initial_inferior): Likewise.
1007 (mi_ui_out): Likewise.
1008 (mi_set_logging): Likewise.
1009 * mi/mi-main.c (collect_cores): Likewise.
1010 (print_one_inferior): Likewise.
1011 (free_vector_of_ints): Likewise.
1012 (free_splay_tree): Likewise.
1013 (mi_execute_command): Likewise.
1014 * mi/mi-out.c (mi_table_body): Likewise.
1015 (mi_table_end): Likewise.
1016 (mi_table_header): Likewise.
1017 (mi_begin): Likewise.
1018 (mi_end): Likewise.
1019 (mi_field_int): Likewise.
1020 (mi_field_string): Likewise.
1021 (mi_field_fmt): Likewise.
1022 (mi_flush): Likewise.
1023 (mi_redirect): Likewise.
1024 (field_separator): Likewise.
1025 (mi_open): Likewise.
1026 (mi_close): Likewise.
1027 (mi_out_buffered): Likewise.
1028 (mi_out_rewind): Likewise.
1029 (mi_out_put): Likewise.
1030 (mi_version): Likewise.
1031 (mi_out_data_dtor): Likewise.
1032 * mi/mi-parse.c (mi_parse_cleanup): Likewise.
1033 * microblaze-tdep.c (microblaze_frame_cache): Likewise.
1034 * minidebug.c (lzma_open): Likewise.
1035 (lzma_pread): Likewise.
1036 (lzma_close): Likewise.
1037 (lzma_stat): Likewise.
1038 * mips-linux-tdep.c (mips_linux_init_abi): Likewise.
1039 * mips-sde-tdep.c (mips_sde_frame_cache): Likewise.
1040 (mips_sde_elf_osabi_sniff_abi_tag_sections): Likewise.
1041 * mips-tdep.c (mips_insn16_frame_cache): Likewise.
1042 (mips_micro_frame_cache): Likewise.
1043 (mips_insn32_frame_cache): Likewise.
1044 (mips_stub_frame_cache): Likewise.
1045 (gdb_print_insn_mips): Likewise.
1046 (value_of_mips_user_reg): Likewise.
1047 (mips_gdbarch_init): Likewise.
1048 * mips64obsd-tdep.c (mips64obsd_supply_gregset): Likewise.
1049 * mipsnbsd-tdep.c (mipsnbsd_supply_fpregset): Likewise.
1050 (mipsnbsd_supply_gregset): Likewise.
1051 * mn10300-linux-tdep.c (am33_supply_fpregset_method): Likewise.
1052 (am33_collect_gregset_method): Likewise.
1053 (am33_collect_fpregset_method): Likewise.
1054 * mn10300-tdep.c (mn10300_analyze_frame_prologue): Likewise.
1055 * moxie-tdep.c (moxie_frame_cache): Likewise.
1056 * msp430-tdep.c (msp430_get_opcode_byte): Likewise.
1057 (msp430_analyze_frame_prologue): Likewise.
1058 * mt-tdep.c (mt_frame_unwind_cache): Likewise.
1059 * nios2-linux-tdep.c (nios2_supply_gregset): Likewise.
1060 (nios2_collect_gregset): Likewise.
1061 * nios2-tdep.c (nios2_frame_unwind_cache): Likewise.
1062 (nios2_stub_frame_cache): Likewise.
1063 * objc-lang.c (find_methods): Likewise.
1064 * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
1065 (get_objfile_pspace_data): Likewise.
1066 (get_objfile_bfd_data): Likewise.
1067 (objfile_bfd_data_free): Likewise.
1068 (add_to_objfile_sections): Likewise.
1069 (do_free_objfile_cleanup): Likewise.
1070 (resume_section_map_updates_cleanup): Likewise.
1071 * opencl-lang.c (builtin_opencl_type): Likewise.
1072 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Likewise.
1073 * osdata.c (osdata_start_osdata): Likewise.
1074 (osdata_start_item): Likewise.
1075 (osdata_start_column): Likewise.
1076 (osdata_end_column): Likewise.
1077 (clear_parsing_data): Likewise.
1078 (osdata_free_cleanup): Likewise.
1079 * parse.c (type_stack_cleanup): Likewise.
1080 (exp_uses_objfile_iter): Likewise.
1081 * ppc-linux-tdep.c (ppc_linux_supply_gregset): Likewise.
1082 (ppc_linux_collect_gregset): Likewise.
1083 (ppu2spu_prev_arch): Likewise.
1084 (ppu2spu_this_id): Likewise.
1085 (ppu2spu_prev_register): Likewise.
1086 (ppu2spu_unwind_register): Likewise.
1087 (ppu2spu_sniffer): Likewise.
1088 (ppu2spu_dealloc_cache): Likewise.
1089 (ppc_linux_init_abi): Likewise.
1090 * ppcfbsd-tdep.c (ppcfbsd_sigtramp_frame_cache): Likewise.
1091 * ppcobsd-tdep.c (ppcobsd_sigtramp_frame_cache): Likewise.
1092 * progspace.c (restore_program_space): Likewise.
1093 * psymtab.c (find_pc_sect_psymtab): Likewise.
1094 (compare_psymbols): Likewise.
1095 (psymbol_bcache_full): Likewise.
1096 (allocate_psymtab): Likewise.
1097 (discard_psymtabs_upto): Likewise.
1098 * python/py-block.c (set_block): Likewise.
1099 (del_objfile_blocks): Likewise.
1100 * python/py-breakpoint.c (build_bp_list): Likewise.
1101 * python/py-inferior.c (inferior_to_inferior_object): Likewise.
1102 (build_inferior_list): Likewise.
1103 (py_free_inferior): Likewise.
1104 * python/py-objfile.c (py_free_objfile): Likewise.
1105 (objfile_to_objfile_object): Likewise.
1106 * python/py-prettyprint.c (py_restore_tstate): Likewise.
1107 * python/py-progspace.c (py_free_pspace): Likewise.
1108 (pspace_to_pspace_object): Likewise.
1109 * python/py-symbol.c (set_symbol): Likewise.
1110 (del_objfile_symbols): Likewise.
1111 * python/py-symtab.c (set_sal): Likewise.
1112 (set_symtab): Likewise.
1113 (del_objfile_symtab): Likewise.
1114 (del_objfile_sal): Likewise.
1115 * python/py-type.c (save_objfile_types): Likewise.
1116 (set_type): Likewise.
1117 * python/py-unwind.c (pyuw_prev_register): Likewise.
1118 (pyuw_on_new_gdbarch): Likewise.
1119 * python/py-utils.c (py_decref): Likewise.
1120 (py_xdecref): Likewise.
1121 (gdb_py_generic_dict): Likewise.
1122 * python/py-xmethods.c (gdbpy_free_xmethod_worker_data): Likewise.
1123 (gdbpy_clone_xmethod_worker_data): Likewise.
1124 (gdbpy_get_xmethod_arg_types): Likewise.
1125 (gdbpy_get_xmethod_result_type): Likewise.
1126 (gdbpy_invoke_xmethod): Likewise.
1127 * python/python.c (gdbpy_apply_type_printers): Likewise.
1128 (gdbpy_free_type_printers): Likewise.
1129 * record-btrace.c (record_btrace_disable_callback): Likewise.
1130 (bfcache_hash): Likewise.
1131 (bfcache_eq): Likewise.
1132 (btrace_get_frame_function): Likewise.
1133 (record_btrace_frame_unwind_stop_reason): Likewise.
1134 (record_btrace_frame_this_id): Likewise.
1135 (record_btrace_frame_prev_register): Likewise.
1136 (record_btrace_frame_dealloc_cache): Likewise.
1137 * record-full.c (record_full_message_wrapper): Likewise.
1138 (record_full_save_cleanups): Likewise.
1139 * regcache.c (regcache_descr): Likewise.
1140 (do_regcache_xfree): Likewise.
1141 (do_regcache_invalidate): Likewise.
1142 (do_cooked_read): Likewise.
1143 (regcache_transfer_regset): Likewise.
1144 * reggroups.c (reggroup_add): Likewise.
1145 (reggroup_next): Likewise.
1146 (reggroup_prev): Likewise.
1147 * remote-fileio.c (do_remote_fileio_request): Likewise.
1148 * remote-notif.c (remote_async_get_pending_events_handler): Likewise.
1149 (do_notif_event_xfree): Likewise.
1150 * remote.c (get_remote_arch_state): Likewise.
1151 (remote_pspace_data_cleanup): Likewise.
1152 (get_remote_exec_file): Likewise.
1153 (set_pspace_remote_exec_file): Likewise.
1154 (compare_pnums): Likewise.
1155 (clear_threads_listing_context): Likewise.
1156 (remote_newthread_step): Likewise.
1157 (start_thread): Likewise.
1158 (end_thread): Likewise.
1159 (remove_child_of_pending_fork): Likewise.
1160 (remove_stop_reply_for_inferior): Likewise.
1161 (remove_stop_reply_of_remote_state): Likewise.
1162 (remote_notif_remove_once_on_match): Likewise.
1163 (stop_reply_match_ptid_and_ws): Likewise.
1164 (kill_child_of_pending_fork): Likewise.
1165 (register_remote_g_packet_guess): Likewise.
1166 (remote_read_description_p): Likewise.
1167 (remote_read_description): Likewise.
1168 (free_actions_list_cleanup_wrapper): Likewise.
1169 (remote_async_serial_handler): Likewise.
1170 * rl78-tdep.c (rl78_get_opcode_byte): Likewise.
1171 (rl78_analyze_frame_prologue): Likewise.
1172 * rs6000-tdep.c (ppc_supply_gregset): Likewise.
1173 (ppc_supply_fpregset): Likewise.
1174 (ppc_supply_vsxregset): Likewise.
1175 (ppc_supply_vrregset): Likewise.
1176 (ppc_collect_gregset): Likewise.
1177 (ppc_collect_fpregset): Likewise.
1178 (ppc_collect_vsxregset): Likewise.
1179 (ppc_collect_vrregset): Likewise.
1180 (e500_move_ev_register): Likewise.
1181 (do_regcache_raw_write): Likewise.
1182 (rs6000_frame_cache): Likewise.
1183 (rs6000_epilogue_frame_cache): Likewise.
1184 (rs6000_gdbarch_init): Likewise.
1185 * rx-tdep.c (rx_get_opcode_byte): Likewise.
1186 (rx_analyze_frame_prologue): Likewise.
1187 (rx_frame_type): Likewise.
1188 (rx_frame_sniffer_common): Likewise.
1189 * s390-linux-tdep.c (s390_check_for_saved): Likewise.
1190 (s390_frame_unwind_cache): Likewise.
1191 (s390_stub_frame_unwind_cache): Likewise.
1192 (s390_sigtramp_frame_unwind_cache): Likewise.
1193 * score-tdep.c (score_make_prologue_cache): Likewise.
1194 * sentinel-frame.c (sentinel_frame_prev_register): Likewise.
1195 (sentinel_frame_prev_arch): Likewise.
1196 * ser-base.c (fd_event): Likewise.
1197 (push_event): Likewise.
1198 (ser_base_write): Likewise.
1199 * ser-pipe.c (pipe_close): Likewise.
1200 * serial.c (serial_write): Likewise.
1201 * sh-tdep.c (sh_frame_cache): Likewise.
1202 (sh_stub_this_id): Likewise.
1203 * sh64-tdep.c (sh64_frame_cache): Likewise.
1204 * solib-aix.c (get_solib_aix_inferior_data): Likewise.
1205 (library_list_start_library): Likewise.
1206 (library_list_start_list): Likewise.
1207 (solib_aix_free_library_list): Likewise.
1208 * solib-darwin.c (get_darwin_info): Likewise.
1209 * solib-dsbt.c (get_dsbt_info): Likewise.
1210 * solib-spu.c (append_ocl_sos): Likewise.
1211 * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
1212 (get_svr4_info): Likewise.
1213 (library_list_start_library): Likewise.
1214 (svr4_library_list_start_list): Likewise.
1215 (hash_probe_and_action): Likewise.
1216 (equal_probe_and_action): Likewise.
1217 (svr4_update_solib_event_breakpoint): Likewise.
1218 (set_solib_svr4_fetch_link_map_offsets): Likewise.
1219 (svr4_fetch_link_map_offsets): Likewise.
1220 (svr4_have_link_map_offsets): Likewise.
1221 * solib-target.c (library_list_start_segment): Likewise.
1222 (library_list_start_section): Likewise.
1223 (library_list_start_library): Likewise.
1224 (library_list_end_library): Likewise.
1225 (library_list_start_list): Likewise.
1226 (solib_target_free_library_list): Likewise.
1227 * solib.c (solib_ops): Likewise.
1228 (set_solib_ops): Likewise.
1229 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_cache): Likewise.
1230 * sparc-tdep.c (sparc_frame_cache): Likewise.
1231 (sparc32_frame_cache): Likewise.
1232 (sparc32_supply_gregset): Likewise.
1233 (sparc32_collect_gregset): Likewise.
1234 (sparc32_supply_fpregset): Likewise.
1235 (sparc32_collect_fpregset): Likewise.
1236 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_cache): Likewise.
1237 * sparc64-tdep.c (sparc64_supply_gregset): Likewise.
1238 (sparc64_collect_gregset): Likewise.
1239 (sparc64_supply_fpregset): Likewise.
1240 (sparc64_collect_fpregset): Likewise.
1241 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_cache): Likewise.
1242 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_cache): Likewise.
1243 * sparc64obsd-tdep.c (sparc64obsd_frame_cache): Likewise.
1244 (sparc64obsd_trapframe_cache): Likewise.
1245 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_cache): Likewise.
1246 * sparcobsd-tdep.c (sparc32obsd_sigtramp_frame_cache): Likewise.
1247 * spu-multiarch.c (spu_gdbarch): Likewise.
1248 * spu-tdep.c (spu_frame_unwind_cache): Likewise.
1249 (spu2ppu_prev_arch): Likewise.
1250 (spu2ppu_this_id): Likewise.
1251 (spu2ppu_prev_register): Likewise.
1252 (spu2ppu_dealloc_cache): Likewise.
1253 (spu_dis_asm_print_address): Likewise.
1254 (gdb_print_insn_spu): Likewise.
1255 (spu_get_overlay_table): Likewise.
1256 * stabsread.c (rs6000_builtin_type): Likewise.
1257 * stack.c (do_print_variable_and_value): Likewise.
1258 * stap-probe.c (get_stap_base_address_1): Likewise.
1259 * symfile-debug.c (debug_qf_has_symbols): Likewise.
1260 (debug_qf_find_last_source_symtab): Likewise.
1261 (debug_qf_forget_cached_source_info): Likewise.
1262 (debug_qf_map_symtabs_matching_filename): Likewise.
1263 (debug_qf_lookup_symbol): Likewise.
1264 (debug_qf_print_stats): Likewise.
1265 (debug_qf_dump): Likewise.
1266 (debug_qf_relocate): Likewise.
1267 (debug_qf_expand_symtabs_for_function): Likewise.
1268 (debug_qf_expand_all_symtabs): Likewise.
1269 (debug_qf_expand_symtabs_with_fullname): Likewise.
1270 (debug_qf_map_matching_symbols): Likewise.
1271 (debug_qf_expand_symtabs_matching): Likewise.
1272 (debug_qf_find_pc_sect_compunit_symtab): Likewise.
1273 (debug_qf_map_symbol_filenames): Likewise.
1274 (debug_sym_get_probes): Likewise.
1275 (debug_sym_new_init): Likewise.
1276 (debug_sym_init): Likewise.
1277 (debug_sym_read): Likewise.
1278 (debug_sym_read_psymbols): Likewise.
1279 (debug_sym_finish): Likewise.
1280 (debug_sym_offsets): Likewise.
1281 (debug_sym_read_linetable): Likewise.
1282 (debug_sym_relocate): Likewise.
1283 (uninstall_symfile_debug_logging): Likewise.
1284 * symfile-mem.c (symbol_file_add_from_memory_wrapper): Likewise.
1285 * symfile.c (place_section): Likewise.
1286 (add_section_size_callback): Likewise.
1287 (load_progress): Likewise.
1288 (load_section_callback): Likewise.
1289 (clear_memory_write_data): Likewise.
1290 (allocate_symtab): Likewise.
1291 * symmisc.c (maintenance_expand_file_matcher): Likewise.
1292 * symtab.c (lookup_symtab_callback): Likewise.
1293 (hash_demangled_name_entry): Likewise.
1294 (eq_demangled_name_entry): Likewise.
1295 (get_symbol_cache): Likewise.
1296 (symbol_cache_cleanup): Likewise.
1297 (set_symbol_cache_size): Likewise.
1298 (symbol_cache_flush): Likewise.
1299 (maintenance_print_symbol_cache): Likewise.
1300 (maintenance_print_symbol_cache_statistics): Likewise.
1301 (delete_filename_seen_cache): Likewise.
1302 (output_partial_symbol_filename): Likewise.
1303 (search_symbols_file_matches): Likewise.
1304 (search_symbols_name_matches): Likewise.
1305 (do_free_completion_list): Likewise.
1306 (maybe_add_partial_symtab_filename): Likewise.
1307 (get_main_info): Likewise.
1308 (main_info_cleanup): Likewise.
1309 * target-dcache.c (target_dcache_cleanup): Likewise.
1310 (target_dcache_init_p): Likewise.
1311 (target_dcache_invalidate): Likewise.
1312 (target_dcache_get): Likewise.
1313 (target_dcache_get_or_init): Likewise.
1314 * target-descriptions.c (target_find_description): Likewise.
1315 (tdesc_find_type): Likewise.
1316 (tdesc_data_cleanup): Likewise.
1317 (tdesc_find_arch_register): Likewise.
1318 (tdesc_register_name): Likewise.
1319 (tdesc_register_type): Likewise.
1320 (tdesc_register_reggroup_p): Likewise.
1321 (set_tdesc_pseudo_register_name): Likewise.
1322 (set_tdesc_pseudo_register_type): Likewise.
1323 (set_tdesc_pseudo_register_reggroup_p): Likewise.
1324 (tdesc_use_registers): Likewise.
1325 (free_target_description): Likewise.
1326 * target-memory.c (compare_block_starting_address): Likewise.
1327 (cleanup_request_data): Likewise.
1328 (cleanup_write_requests_vector): Likewise.
1329 * target.c (open_target): Likewise.
1330 (cleanup_restore_target_terminal): Likewise.
1331 (free_memory_read_result_vector): Likewise.
1332 * thread.c (disable_thread_stack_temporaries): Likewise.
1333 (finish_thread_state_cleanup): Likewise.
1334 (do_restore_current_thread_cleanup): Likewise.
1335 (restore_current_thread_cleanup_dtor): Likewise.
1336 (set_thread_refcount): Likewise.
1337 (tp_array_compar): Likewise.
1338 (do_captured_thread_select): Likewise.
1339 * tic6x-tdep.c (tic6x_frame_unwind_cache): Likewise.
1340 (tic6x_stub_this_id): Likewise.
1341 * tilegx-tdep.c (tilegx_frame_cache): Likewise.
1342 * top.c (do_restore_instream_cleanup): Likewise.
1343 (gdb_readline_wrapper_cleanup): Likewise.
1344 (kill_or_detach): Likewise.
1345 (print_inferior_quit_action): Likewise.
1346 * tracefile-tfile.c (match_blocktype): Likewise.
1347 (build_traceframe_info): Likewise.
1348 * tracefile.c (trace_file_writer_xfree): Likewise.
1349 * tracepoint.c (memrange_cmp): Likewise.
1350 (do_collect_symbol): Likewise.
1351 (do_clear_collection_list): Likewise.
1352 (do_restore_current_traceframe_cleanup): Likewise.
1353 (restore_current_traceframe_cleanup_dtor): Likewise.
1354 (free_current_marker): Likewise.
1355 (traceframe_info_start_memory): Likewise.
1356 (traceframe_info_start_tvar): Likewise.
1357 (free_result): Likewise.
1358 * tramp-frame.c (tramp_frame_cache): Likewise.
1359 * tui/tui-file.c (tui_file_delete): Likewise.
1360 (tui_fileopen): Likewise.
1361 (tui_sfileopen): Likewise.
1362 (tui_file_isatty): Likewise.
1363 (tui_file_rewind): Likewise.
1364 (tui_file_put): Likewise.
1365 (tui_file_fputs): Likewise.
1366 (tui_file_get_strbuf): Likewise.
1367 (tui_file_adjust_strbuf): Likewise.
1368 (tui_file_flush): Likewise.
1369 * tui/tui-layout.c (make_command_window): Likewise.
1370 (make_data_window): Likewise.
1371 (show_source_disasm_command): Likewise.
1372 (show_data): Likewise.
1373 (make_source_or_disasm_window): Likewise.
1374 (show_source_or_disasm_and_command): Likewise.
1375 * tui/tui-out.c (tui_field_int): Likewise.
1376 (tui_field_string): Likewise.
1377 (tui_field_fmt): Likewise.
1378 (tui_text): Likewise.
1379 * typeprint.c (hash_typedef_field): Likewise.
1380 (eq_typedef_field): Likewise.
1381 (do_free_typedef_hash): Likewise.
1382 (copy_typedef_hash_element): Likewise.
1383 (do_free_global_table): Likewise.
1384 (find_global_typedef): Likewise.
1385 (find_typedef_in_hash): Likewise.
1386 * ui-file.c (ui_file_write_for_put): Likewise.
1387 (do_ui_file_xstrdup): Likewise.
1388 (mem_file_delete): Likewise.
1389 (mem_file_rewind): Likewise.
1390 (mem_file_put): Likewise.
1391 (mem_file_write): Likewise.
1392 (stdio_file_delete): Likewise.
1393 (stdio_file_flush): Likewise.
1394 (stdio_file_read): Likewise.
1395 (stdio_file_write): Likewise.
1396 (stdio_file_write_async_safe): Likewise.
1397 (stdio_file_fputs): Likewise.
1398 (stdio_file_isatty): Likewise.
1399 (stdio_file_fseek): Likewise.
1400 (tee_file_delete): Likewise.
1401 (tee_file_flush): Likewise.
1402 (tee_file_write): Likewise.
1403 (tee_file_fputs): Likewise.
1404 (tee_file_isatty): Likewise.
1405 * ui-out.c (do_cleanup_table_end): Likewise.
1406 (do_cleanup_end): Likewise.
1407 * user-regs.c (user_reg_add): Likewise.
1408 (user_reg_map_name_to_regnum): Likewise.
1409 (usernum_to_user_reg): Likewise.
1410 (maintenance_print_user_registers): Likewise.
1411 * utils.c (do_bfd_close_cleanup): Likewise.
1412 (do_fclose_cleanup): Likewise.
1413 (do_obstack_free): Likewise.
1414 (do_ui_file_delete): Likewise.
1415 (do_ui_out_redirect_pop): Likewise.
1416 (do_free_section_addr_info): Likewise.
1417 (restore_integer): Likewise.
1418 (do_unpush_target): Likewise.
1419 (do_htab_delete_cleanup): Likewise.
1420 (do_restore_ui_file): Likewise.
1421 (do_value_free): Likewise.
1422 (do_free_so): Likewise.
1423 (free_current_contents): Likewise.
1424 (do_regfree_cleanup): Likewise.
1425 (core_addr_hash): Likewise.
1426 (core_addr_eq): Likewise.
1427 (do_free_char_ptr_vec): Likewise.
1428 * v850-tdep.c (v850_frame_cache): Likewise.
1429 * varobj.c (do_free_variable_cleanup): Likewise.
1430 * vax-tdep.c (vax_supply_gregset): Likewise.
1431 (vax_frame_cache): Likewise.
1432 * vaxobsd-tdep.c (vaxobsd_sigtramp_frame_cache): Likewise.
1433 * xml-support.c (gdb_xml_body_text): Likewise.
1434 (gdb_xml_values_cleanup): Likewise.
1435 (gdb_xml_start_element): Likewise.
1436 (gdb_xml_start_element_wrapper): Likewise.
1437 (gdb_xml_end_element): Likewise.
1438 (gdb_xml_end_element_wrapper): Likewise.
1439 (gdb_xml_cleanup): Likewise.
1440 (gdb_xml_fetch_external_entity): Likewise.
1441 (gdb_xml_parse_attr_enum): Likewise.
1442 (xinclude_start_include): Likewise.
1443 (xinclude_end_include): Likewise.
1444 (xml_xinclude_default): Likewise.
1445 (xml_xinclude_start_doctype): Likewise.
1446 (xml_xinclude_end_doctype): Likewise.
1447 (xml_xinclude_cleanup): Likewise.
1448 (xml_fetch_content_from_file): Likewise.
1449 * xml-syscall.c (free_syscalls_info): Likewise.
1450 (syscall_start_syscall): Likewise.
1451 * xml-tdesc.c (tdesc_end_arch): Likewise.
1452 (tdesc_end_osabi): Likewise.
1453 (tdesc_end_compatible): Likewise.
1454 (tdesc_start_target): Likewise.
1455 (tdesc_start_feature): Likewise.
1456 (tdesc_start_reg): Likewise.
1457 (tdesc_start_union): Likewise.
1458 (tdesc_start_struct): Likewise.
1459 (tdesc_start_flags): Likewise.
1460 (tdesc_start_field): Likewise.
1461 (tdesc_start_vector): Likewise.
1462 (fetch_available_features_from_target): Likewise.
1463 * xstormy16-tdep.c (xstormy16_frame_cache): Likewise.
1464 * xtensa-tdep.c (xtensa_supply_gregset): Likewise.
1465 (xtensa_frame_cache): Likewise.
1466 (xtensa_frame_prev_register): Likewise.
1467 (xtensa_extract_return_value): Likewise.
1468
1469 2015-09-25 Simon Marchi <simon.marchi@ericsson.com>
1470
1471 * aarch64-tdep.c (aarch64_make_prologue_cache): Add cast(s).
1472 (aarch64_make_stub_cache): Likewise.
1473 (value_of_aarch64_user_reg): Likewise.
1474 * ada-lang.c (ada_inferior_data_cleanup): Likewise.
1475 (get_ada_inferior_data): Likewise.
1476 (get_ada_pspace_data): Likewise.
1477 (ada_pspace_data_cleanup): Likewise.
1478 (ada_complete_symbol_matcher): Likewise.
1479 (ada_exc_search_name_matches): Likewise.
1480 * ada-tasks.c (get_ada_tasks_pspace_data): Likewise.
1481 (get_ada_tasks_inferior_data): Likewise.
1482 * addrmap.c (addrmap_mutable_foreach_worker): Likewise.
1483 (splay_obstack_alloc): Likewise.
1484 (splay_obstack_free): Likewise.
1485 * alpha-linux-tdep.c (alpha_linux_supply_gregset): Likewise.
1486 (alpha_linux_collect_gregset): Likewise.
1487 (alpha_linux_supply_fpregset): Likewise.
1488 (alpha_linux_collect_fpregset): Likewise.
1489 * alpha-mdebug-tdep.c (alpha_mdebug_frame_unwind_cache): Likewise.
1490 * alpha-tdep.c (alpha_lds): Likewise.
1491 (alpha_sts): Likewise.
1492 (alpha_sigtramp_frame_unwind_cache): Likewise.
1493 (alpha_heuristic_frame_unwind_cache): Likewise.
1494 (alpha_supply_int_regs): Likewise.
1495 (alpha_fill_int_regs): Likewise.
1496 (alpha_supply_fp_regs): Likewise.
1497 (alpha_fill_fp_regs): Likewise.
1498 * alphanbsd-tdep.c (alphanbsd_supply_fpregset): Likewise.
1499 (alphanbsd_aout_supply_gregset): Likewise.
1500 (alphanbsd_supply_gregset): Likewise.
1501 * amd64-linux-tdep.c (amd64_linux_init_abi): Likewise.
1502 (amd64_x32_linux_init_abi): Likewise.
1503 * amd64-nat.c (amd64_supply_native_gregset): Likewise.
1504 (amd64_collect_native_gregset): Likewise.
1505 * amd64-tdep.c (amd64_frame_cache): Likewise.
1506 (amd64_sigtramp_frame_cache): Likewise.
1507 (amd64_epilogue_frame_cache): Likewise.
1508 (amd64_supply_fxsave): Likewise.
1509 (amd64_supply_xsave): Likewise.
1510 (amd64_collect_fxsave): Likewise.
1511 (amd64_collect_xsave): Likewise.
1512 * amd64-windows-tdep.c (amd64_windows_frame_cache): Likewise.
1513 * amd64obsd-tdep.c (amd64obsd_trapframe_cache): Likewise.
1514 * arm-linux-tdep.c (arm_linux_supply_gregset): Likewise.
1515 (arm_linux_collect_gregset): Likewise.
1516 (arm_linux_supply_nwfpe): Likewise.
1517 (arm_linux_collect_nwfpe): Likewise.
1518 (arm_linux_supply_vfp): Likewise.
1519 (arm_linux_collect_vfp): Likewise.
1520 * arm-tdep.c (arm_find_mapping_symbol): Likewise.
1521 (arm_prologue_unwind_stop_reason): Likewise.
1522 (arm_prologue_this_id): Likewise.
1523 (arm_prologue_prev_register): Likewise.
1524 (arm_exidx_data_free): Likewise.
1525 (arm_find_exidx_entry): Likewise.
1526 (arm_stub_this_id): Likewise.
1527 (arm_m_exception_this_id): Likewise.
1528 (arm_m_exception_prev_register): Likewise.
1529 (arm_normal_frame_base): Likewise.
1530 (gdb_print_insn_arm): Likewise.
1531 (arm_objfile_data_free): Likewise.
1532 (arm_record_special_symbol): Likewise.
1533 (value_of_arm_user_reg): Likewise.
1534 * armbsd-tdep.c (armbsd_supply_fpregset): Likewise.
1535 (armbsd_supply_gregset): Likewise.
1536 * auto-load.c (auto_load_pspace_data_cleanup): Likewise.
1537 (get_auto_load_pspace_data): Likewise.
1538 (hash_loaded_script_entry): Likewise.
1539 (eq_loaded_script_entry): Likewise.
1540 (clear_section_scripts): Likewise.
1541 (collect_matching_scripts): Likewise.
1542 * auxv.c (auxv_inferior_data_cleanup): Likewise.
1543 (get_auxv_inferior_data): Likewise.
1544 * avr-tdep.c (avr_frame_unwind_cache): Likewise.
1545 * ax-general.c (do_free_agent_expr_cleanup): Likewise.
1546 * bfd-target.c (target_bfd_xfer_partial): Likewise.
1547 (target_bfd_xclose): Likewise.
1548 (target_bfd_get_section_table): Likewise.
1549 * bfin-tdep.c (bfin_frame_cache): Likewise.
1550 * block.c (find_block_in_blockvector): Likewise.
1551 (call_site_for_pc): Likewise.
1552 (block_find_non_opaque_type_preferred): Likewise.
1553 * break-catch-sig.c (signal_catchpoint_insert_location): Likewise.
1554 (signal_catchpoint_remove_location): Likewise.
1555 (signal_catchpoint_breakpoint_hit): Likewise.
1556 (signal_catchpoint_print_one): Likewise.
1557 (signal_catchpoint_print_mention): Likewise.
1558 (signal_catchpoint_print_recreate): Likewise.
1559 * break-catch-syscall.c (get_catch_syscall_inferior_data): Likewise.
1560 * breakpoint.c (do_cleanup_counted_command_line): Likewise.
1561 (bp_location_compare_addrs): Likewise.
1562 (get_first_locp_gte_addr): Likewise.
1563 (check_tracepoint_command): Likewise.
1564 (do_map_commands_command): Likewise.
1565 (get_breakpoint_objfile_data): Likewise.
1566 (free_breakpoint_probes): Likewise.
1567 (do_captured_breakpoint_query): Likewise.
1568 (compare_breakpoints): Likewise.
1569 (bp_location_compare): Likewise.
1570 (bpstat_remove_breakpoint_callback): Likewise.
1571 (do_delete_breakpoint_cleanup): Likewise.
1572 * bsd-uthread.c (bsd_uthread_set_supply_uthread): Likewise.
1573 (bsd_uthread_set_collect_uthread): Likewise.
1574 (bsd_uthread_activate): Likewise.
1575 (bsd_uthread_fetch_registers): Likewise.
1576 (bsd_uthread_store_registers): Likewise.
1577 * btrace.c (check_xml_btrace_version): Likewise.
1578 (parse_xml_btrace_block): Likewise.
1579 (parse_xml_btrace_pt_config_cpu): Likewise.
1580 (parse_xml_btrace_pt_raw): Likewise.
1581 (parse_xml_btrace_pt): Likewise.
1582 (parse_xml_btrace_conf_bts): Likewise.
1583 (parse_xml_btrace_conf_pt): Likewise.
1584 (do_btrace_data_cleanup): Likewise.
1585 * c-typeprint.c (find_typedef_for_canonicalize): Likewise.
1586 * charset.c (cleanup_iconv): Likewise.
1587 (do_cleanup_iterator): Likewise.
1588 * cli-out.c (cli_uiout_dtor): Likewise.
1589 (cli_table_begin): Likewise.
1590 (cli_table_body): Likewise.
1591 (cli_table_end): Likewise.
1592 (cli_table_header): Likewise.
1593 (cli_begin): Likewise.
1594 (cli_end): Likewise.
1595 (cli_field_int): Likewise.
1596 (cli_field_skip): Likewise.
1597 (cli_field_string): Likewise.
1598 (cli_field_fmt): Likewise.
1599 (cli_spaces): Likewise.
1600 (cli_text): Likewise.
1601 (cli_message): Likewise.
1602 (cli_wrap_hint): Likewise.
1603 (cli_flush): Likewise.
1604 (cli_redirect): Likewise.
1605 (out_field_fmt): Likewise.
1606 (field_separator): Likewise.
1607 (cli_out_set_stream): Likewise.
1608 * cli/cli-cmds.c (compare_symtabs): Likewise.
1609 * cli/cli-dump.c (call_dump_func): Likewise.
1610 (restore_section_callback): Likewise.
1611 * cli/cli-script.c (clear_hook_in_cleanup): Likewise.
1612 (do_restore_user_call_depth): Likewise.
1613 (do_free_command_lines_cleanup): Likewise.
1614 * coff-pe-read.c (get_section_vmas): Likewise.
1615 (pe_as16): Likewise.
1616 (pe_as32): Likewise.
1617 * coffread.c (coff_symfile_read): Likewise.
1618 * common/agent.c (agent_look_up_symbols): Likewise.
1619 * common/filestuff.c (do_close_cleanup): Likewise.
1620 * common/format.c (free_format_pieces_cleanup): Likewise.
1621 * common/vec.c (vec_o_reserve): Likewise.
1622 * compile/compile-c-support.c (print_one_macro): Likewise.
1623 * compile/compile-c-symbols.c (hash_symbol_error): Likewise.
1624 (eq_symbol_error): Likewise.
1625 (del_symbol_error): Likewise.
1626 (error_symbol_once): Likewise.
1627 (gcc_convert_symbol): Likewise.
1628 (gcc_symbol_address): Likewise.
1629 (hash_symname): Likewise.
1630 (eq_symname): Likewise.
1631 * compile/compile-c-types.c (hash_type_map_instance): Likewise.
1632 (eq_type_map_instance): Likewise.
1633 (insert_type): Likewise.
1634 (convert_type): Likewise.
1635 * compile/compile-object-load.c (munmap_listp_free_cleanup): Likewise.
1636 (setup_sections): Likewise.
1637 (link_hash_table_free): Likewise.
1638 (copy_sections): Likewise.
1639 * compile/compile-object-run.c (do_module_cleanup): Likewise.
1640 * compile/compile.c (compile_print_value): Likewise.
1641 (do_rmdir): Likewise.
1642 (cleanup_compile_instance): Likewise.
1643 (cleanup_unlink_file): Likewise.
1644 * completer.c (free_completion_tracker): Likewise.
1645 * corelow.c (add_to_spuid_list): Likewise.
1646 * cp-namespace.c (reset_directive_searched): Likewise.
1647 * cp-support.c (reset_directive_searched): Likewise.
1648 * cris-tdep.c (cris_sigtramp_frame_unwind_cache): Likewise.
1649 (cris_frame_unwind_cache): Likewise.
1650 * d-lang.c (builtin_d_type): Likewise.
1651 * d-namespace.c (reset_directive_searched): Likewise.
1652 * dbxread.c (dbx_free_symfile_info): Likewise.
1653 (do_free_bincl_list_cleanup): Likewise.
1654 * disasm.c (hash_dis_line_entry): Likewise.
1655 (eq_dis_line_entry): Likewise.
1656 (dis_asm_print_address): Likewise.
1657 (fprintf_disasm): Likewise.
1658 (do_ui_file_delete): Likewise.
1659 * doublest.c (convert_floatformat_to_doublest): Likewise.
1660 * dummy-frame.c (pop_dummy_frame_bpt): Likewise.
1661 (dummy_frame_prev_register): Likewise.
1662 (dummy_frame_this_id): Likewise.
1663 * dwarf2-frame-tailcall.c (cache_hash): Likewise.
1664 (cache_eq): Likewise.
1665 (cache_find): Likewise.
1666 (tailcall_frame_this_id): Likewise.
1667 (dwarf2_tailcall_prev_register_first): Likewise.
1668 (tailcall_frame_prev_register): Likewise.
1669 (tailcall_frame_dealloc_cache): Likewise.
1670 (tailcall_frame_prev_arch): Likewise.
1671 * dwarf2-frame.c (dwarf2_frame_state_free): Likewise.
1672 (dwarf2_frame_set_init_reg): Likewise.
1673 (dwarf2_frame_init_reg): Likewise.
1674 (dwarf2_frame_set_signal_frame_p): Likewise.
1675 (dwarf2_frame_signal_frame_p): Likewise.
1676 (dwarf2_frame_set_adjust_regnum): Likewise.
1677 (dwarf2_frame_adjust_regnum): Likewise.
1678 (clear_pointer_cleanup): Likewise.
1679 (dwarf2_frame_cache): Likewise.
1680 (find_cie): Likewise.
1681 (dwarf2_frame_find_fde): Likewise.
1682 * dwarf2expr.c (dwarf_expr_address_type): Likewise.
1683 (free_dwarf_expr_context_cleanup): Likewise.
1684 * dwarf2loc.c (locexpr_find_frame_base_location): Likewise.
1685 (locexpr_get_frame_base): Likewise.
1686 (loclist_find_frame_base_location): Likewise.
1687 (loclist_get_frame_base): Likewise.
1688 (dwarf_expr_dwarf_call): Likewise.
1689 (dwarf_expr_get_base_type): Likewise.
1690 (dwarf_expr_push_dwarf_reg_entry_value): Likewise.
1691 (dwarf_expr_get_obj_addr): Likewise.
1692 (entry_data_value_coerce_ref): Likewise.
1693 (entry_data_value_copy_closure): Likewise.
1694 (entry_data_value_free_closure): Likewise.
1695 (get_frame_address_in_block_wrapper): Likewise.
1696 (dwarf2_evaluate_property): Likewise.
1697 (dwarf2_compile_property_to_c): Likewise.
1698 (needs_frame_read_addr_from_reg): Likewise.
1699 (needs_frame_get_reg_value): Likewise.
1700 (needs_frame_frame_base): Likewise.
1701 (needs_frame_frame_cfa): Likewise.
1702 (needs_frame_tls_address): Likewise.
1703 (needs_frame_dwarf_call): Likewise.
1704 (needs_dwarf_reg_entry_value): Likewise.
1705 (get_ax_pc): Likewise.
1706 (locexpr_read_variable): Likewise.
1707 (locexpr_read_variable_at_entry): Likewise.
1708 (locexpr_read_needs_frame): Likewise.
1709 (locexpr_describe_location): Likewise.
1710 (locexpr_tracepoint_var_ref): Likewise.
1711 (locexpr_generate_c_location): Likewise.
1712 (loclist_read_variable): Likewise.
1713 (loclist_read_variable_at_entry): Likewise.
1714 (loclist_describe_location): Likewise.
1715 (loclist_tracepoint_var_ref): Likewise.
1716 (loclist_generate_c_location): Likewise.
1717 * dwarf2read.c (line_header_hash_voidp): Likewise.
1718 (line_header_eq_voidp): Likewise.
1719 (dwarf2_has_info): Likewise.
1720 (dwarf2_get_section_info): Likewise.
1721 (locate_dwz_sections): Likewise.
1722 (hash_file_name_entry): Likewise.
1723 (eq_file_name_entry): Likewise.
1724 (delete_file_name_entry): Likewise.
1725 (dw2_setup): Likewise.
1726 (dw2_get_file_names_reader): Likewise.
1727 (dw2_find_pc_sect_compunit_symtab): Likewise.
1728 (hash_signatured_type): Likewise.
1729 (eq_signatured_type): Likewise.
1730 (add_signatured_type_cu_to_table): Likewise.
1731 (create_debug_types_hash_table): Likewise.
1732 (lookup_dwo_signatured_type): Likewise.
1733 (lookup_dwp_signatured_type): Likewise.
1734 (lookup_signatured_type): Likewise.
1735 (hash_type_unit_group): Likewise.
1736 (eq_type_unit_group): Likewise.
1737 (get_type_unit_group): Likewise.
1738 (process_psymtab_comp_unit_reader): Likewise.
1739 (sort_tu_by_abbrev_offset): Likewise.
1740 (process_skeletonless_type_unit): Likewise.
1741 (psymtabs_addrmap_cleanup): Likewise.
1742 (dwarf2_read_symtab): Likewise.
1743 (psymtab_to_symtab_1): Likewise.
1744 (die_hash): Likewise.
1745 (die_eq): Likewise.
1746 (load_full_comp_unit_reader): Likewise.
1747 (reset_die_in_process): Likewise.
1748 (free_cu_line_header): Likewise.
1749 (handle_DW_AT_stmt_list): Likewise.
1750 (hash_dwo_file): Likewise.
1751 (eq_dwo_file): Likewise.
1752 (hash_dwo_unit): Likewise.
1753 (eq_dwo_unit): Likewise.
1754 (create_dwo_cu_reader): Likewise.
1755 (create_dwo_unit_in_dwp_v1): Likewise.
1756 (create_dwo_unit_in_dwp_v2): Likewise.
1757 (lookup_dwo_unit_in_dwp): Likewise.
1758 (dwarf2_locate_dwo_sections): Likewise.
1759 (dwarf2_locate_common_dwp_sections): Likewise.
1760 (dwarf2_locate_v2_dwp_sections): Likewise.
1761 (hash_dwp_loaded_cutus): Likewise.
1762 (eq_dwp_loaded_cutus): Likewise.
1763 (lookup_dwo_cutu): Likewise.
1764 (abbrev_table_free_cleanup): Likewise.
1765 (dwarf2_free_abbrev_table): Likewise.
1766 (find_partial_die_in_comp_unit): Likewise.
1767 (free_line_header_voidp): Likewise.
1768 (follow_die_offset): Likewise.
1769 (follow_die_sig_1): Likewise.
1770 (free_heap_comp_unit): Likewise.
1771 (free_stack_comp_unit): Likewise.
1772 (dwarf2_free_objfile): Likewise.
1773 (per_cu_offset_and_type_hash): Likewise.
1774 (per_cu_offset_and_type_eq): Likewise.
1775 (get_die_type_at_offset): Likewise.
1776 (partial_die_hash): Likewise.
1777 (partial_die_eq): Likewise.
1778 (dwarf2_per_objfile_free): Likewise.
1779 (hash_strtab_entry): Likewise.
1780 (eq_strtab_entry): Likewise.
1781 (add_string): Likewise.
1782 (hash_symtab_entry): Likewise.
1783 (eq_symtab_entry): Likewise.
1784 (delete_symtab_entry): Likewise.
1785 (cleanup_mapped_symtab): Likewise.
1786 (add_indices_to_cpool): Likewise.
1787 (hash_psymtab_cu_index): Likewise.
1788 (eq_psymtab_cu_index): Likewise.
1789 (add_address_entry_worker): Likewise.
1790 (unlink_if_set): Likewise.
1791 (write_one_signatured_type): Likewise.
1792 (save_gdb_index_command): Likewise.
1793 * elfread.c (elf_symtab_read): Likewise.
1794 (elf_gnu_ifunc_cache_hash): Likewise.
1795 (elf_gnu_ifunc_cache_eq): Likewise.
1796 (elf_gnu_ifunc_record_cache): Likewise.
1797 (elf_gnu_ifunc_resolve_by_cache): Likewise.
1798 (elf_get_probes): Likewise.
1799 (probe_key_free): Likewise.
1800 * f-lang.c (builtin_f_type): Likewise.
1801 * frame-base.c (frame_base_append_sniffer): Likewise.
1802 (frame_base_set_default): Likewise.
1803 (frame_base_find_by_frame): Likewise.
1804 * frame-unwind.c (frame_unwind_prepend_unwinder): Likewise.
1805 (frame_unwind_append_unwinder): Likewise.
1806 (frame_unwind_find_by_frame): Likewise.
1807 * frame.c (frame_addr_hash): Likewise.
1808 (frame_addr_hash_eq): Likewise.
1809 (frame_stash_find): Likewise.
1810 (do_frame_register_read): Likewise.
1811 (unwind_to_current_frame): Likewise.
1812 (frame_cleanup_after_sniffer): Likewise.
1813 * frv-linux-tdep.c (frv_linux_sigtramp_frame_cache): Likewise.
1814 * frv-tdep.c (frv_frame_unwind_cache): Likewise.
1815 * ft32-tdep.c (ft32_frame_cache): Likewise.
1816 * gcore.c (do_bfd_delete_cleanup): Likewise.
1817 (gcore_create_callback): Likewise.
1818 * gdb_bfd.c (hash_bfd): Likewise.
1819 (eq_bfd): Likewise.
1820 (gdb_bfd_open): Likewise.
1821 (free_one_bfd_section): Likewise.
1822 (gdb_bfd_ref): Likewise.
1823 (gdb_bfd_unref): Likewise.
1824 (get_section_descriptor): Likewise.
1825 (gdb_bfd_map_section): Likewise.
1826 (gdb_bfd_crc): Likewise.
1827 (gdb_bfd_mark_parent): Likewise.
1828 (gdb_bfd_record_inclusion): Likewise.
1829 (gdb_bfd_requires_relocations): Likewise.
1830 (print_one_bfd): Likewise.
1831 * gdbtypes.c (type_pair_hash): Likewise.
1832 (type_pair_eq): Likewise.
1833 (builtin_type): Likewise.
1834 (objfile_type): Likewise.
1835 * gnu-v3-abi.c (vtable_ptrdiff_type): Likewise.
1836 (vtable_address_point_offset): Likewise.
1837 (gnuv3_get_vtable): Likewise.
1838 (hash_value_and_voffset): Likewise.
1839 (eq_value_and_voffset): Likewise.
1840 (compare_value_and_voffset): Likewise.
1841 (compute_vtable_size): Likewise.
1842 (gnuv3_get_typeid_type): Likewise.
1843 * go-lang.c (builtin_go_type): Likewise.
1844 * guile/scm-block.c (bkscm_hash_block_smob): Likewise.
1845 (bkscm_eq_block_smob): Likewise.
1846 (bkscm_objfile_block_map): Likewise.
1847 (bkscm_del_objfile_blocks): Likewise.
1848 * guile/scm-breakpoint.c (bpscm_build_bp_list): Likewise.
1849 * guile/scm-disasm.c (gdbscm_disasm_read_memory_worker): Likewise.
1850 (gdbscm_disasm_print_address): Likewise.
1851 * guile/scm-frame.c (frscm_hash_frame_smob): Likewise.
1852 (frscm_eq_frame_smob): Likewise.
1853 (frscm_inferior_frame_map): Likewise.
1854 (frscm_del_inferior_frames): Likewise.
1855 * guile/scm-gsmob.c (gdbscm_add_objfile_ref): Likewise.
1856 * guile/scm-objfile.c (ofscm_handle_objfile_deleted): Likewise.
1857 (ofscm_objfile_smob_from_objfile): Likewise.
1858 * guile/scm-ports.c (ioscm_write): Likewise.
1859 (ioscm_file_port_delete): Likewise.
1860 (ioscm_file_port_rewind): Likewise.
1861 (ioscm_file_port_put): Likewise.
1862 (ioscm_file_port_write): Likewise.
1863 * guile/scm-progspace.c (psscm_handle_pspace_deleted): Likewise.
1864 (psscm_pspace_smob_from_pspace): Likewise.
1865 * guile/scm-safe-call.c (scscm_recording_pre_unwind_handler): Likewise.
1866 (scscm_recording_unwind_handler): Likewise.
1867 (gdbscm_with_catch): Likewise.
1868 (scscm_call_0_body): Likewise.
1869 (scscm_call_1_body): Likewise.
1870 (scscm_call_2_body): Likewise.
1871 (scscm_call_3_body): Likewise.
1872 (scscm_call_4_body): Likewise.
1873 (scscm_apply_1_body): Likewise.
1874 (scscm_eval_scheme_string): Likewise.
1875 (gdbscm_safe_eval_string): Likewise.
1876 (scscm_source_scheme_script): Likewise.
1877 (gdbscm_safe_source_script): Likewise.
1878 * guile/scm-string.c (gdbscm_call_scm_to_stringn): Likewise.
1879 (gdbscm_call_scm_from_stringn): Likewise.
1880 * guile/scm-symbol.c (syscm_hash_symbol_smob): Likewise.
1881 (syscm_eq_symbol_smob): Likewise.
1882 (syscm_get_symbol_map): Likewise.
1883 (syscm_del_objfile_symbols): Likewise.
1884 * guile/scm-symtab.c (stscm_hash_symtab_smob): Likewise.
1885 (stscm_eq_symtab_smob): Likewise.
1886 (stscm_objfile_symtab_map): Likewise.
1887 (stscm_del_objfile_symtabs): Likewise.
1888 * guile/scm-type.c (tyscm_hash_type_smob): Likewise.
1889 (tyscm_eq_type_smob): Likewise.
1890 (tyscm_type_map): Likewise.
1891 (tyscm_copy_type_recursive): Likewise.
1892 (save_objfile_types): Likewise.
1893 * guile/scm-utils.c (extract_arg): Likewise.
1894 * h8300-tdep.c (h8300_frame_cache): Likewise.
1895 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_unwind_cache): Likewise.
1896 * hppa-tdep.c (compare_unwind_entries): Likewise.
1897 (find_unwind_entry): Likewise.
1898 (hppa_frame_cache): Likewise.
1899 (hppa_stub_frame_unwind_cache): Likewise.
1900 * hppanbsd-tdep.c (hppanbsd_supply_gregset): Likewise.
1901 * hppaobsd-tdep.c (hppaobsd_supply_gregset): Likewise.
1902 (hppaobsd_supply_fpregset): Likewise.
1903 * i386-cygwin-tdep.c (core_process_module_section): Likewise.
1904 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
1905 * i386-tdep.c (i386_frame_cache): Likewise.
1906 (i386_epilogue_frame_cache): Likewise.
1907 (i386_sigtramp_frame_cache): Likewise.
1908 (i386_supply_gregset): Likewise.
1909 (i386_collect_gregset): Likewise.
1910 (i386_gdbarch_init): Likewise.
1911 * i386obsd-tdep.c (i386obsd_aout_supply_regset): Likewise.
1912 (i386obsd_trapframe_cache): Likewise.
1913 * i387-tdep.c (i387_supply_fsave): Likewise.
1914 (i387_collect_fsave): Likewise.
1915 (i387_supply_fxsave): Likewise.
1916 (i387_collect_fxsave): Likewise.
1917 (i387_supply_xsave): Likewise.
1918 (i387_collect_xsave): Likewise.
1919 * ia64-tdep.c (ia64_frame_cache): Likewise.
1920 (ia64_sigtramp_frame_cache): Likewise.
1921 * infcmd.c (attach_command_continuation): Likewise.
1922 (attach_command_continuation_free_args): Likewise.
1923 * inferior.c (restore_inferior): Likewise.
1924 (delete_thread_of_inferior): Likewise.
1925 * inflow.c (inflow_inferior_data_cleanup): Likewise.
1926 (get_inflow_inferior_data): Likewise.
1927 (inflow_inferior_exit): Likewise.
1928 * infrun.c (displaced_step_clear_cleanup): Likewise.
1929 (restore_current_uiout_cleanup): Likewise.
1930 (release_stop_context_cleanup): Likewise.
1931 (do_restore_infcall_suspend_state_cleanup): Likewise.
1932 (do_restore_infcall_control_state_cleanup): Likewise.
1933 (restore_inferior_ptid): Likewise.
1934 * inline-frame.c (block_starting_point_at): Likewise.
1935 * iq2000-tdep.c (iq2000_frame_cache): Likewise.
1936 * jit.c (get_jit_objfile_data): Likewise.
1937 (get_jit_program_space_data): Likewise.
1938 (jit_object_close_impl): Likewise.
1939 (jit_find_objf_with_entry_addr): Likewise.
1940 (jit_breakpoint_deleted): Likewise.
1941 (jit_unwind_reg_set_impl): Likewise.
1942 (jit_unwind_reg_get_impl): Likewise.
1943 (jit_dealloc_cache): Likewise.
1944 (jit_frame_sniffer): Likewise.
1945 (jit_frame_prev_register): Likewise.
1946 (jit_prepend_unwinder): Likewise.
1947 (jit_inferior_exit_hook): Likewise.
1948 (free_objfile_data): Likewise.
1949 * jv-lang.c (jv_per_objfile_free): Likewise.
1950 (get_dynamics_objfile): Likewise.
1951 (get_java_class_symtab): Likewise.
1952 (builtin_java_type): Likewise.
1953 * language.c (language_string_char_type): Likewise.
1954 (language_bool_type): Likewise.
1955 (language_lookup_primitive_type): Likewise.
1956 (language_lookup_primitive_type_as_symbol): Likewise.
1957 * linespec.c (hash_address_entry): Likewise.
1958 (eq_address_entry): Likewise.
1959 (iterate_inline_only): Likewise.
1960 (iterate_name_matcher): Likewise.
1961 (decode_line_2_compare_items): Likewise.
1962 (collect_one_symbol): Likewise.
1963 (compare_symbols): Likewise.
1964 (compare_msymbols): Likewise.
1965 (add_symtabs_to_list): Likewise.
1966 (collect_symbols): Likewise.
1967 (compare_msyms): Likewise.
1968 (add_minsym): Likewise.
1969 (cleanup_linespec_result): Likewise.
1970 * linux-fork.c (inferior_call_waitpid_cleanup): Likewise.
1971 * linux-nat.c (delete_lwp_cleanup): Likewise.
1972 (count_events_callback): Likewise.
1973 (select_event_lwp_callback): Likewise.
1974 (resume_stopped_resumed_lwps): Likewise.
1975 * linux-tdep.c (get_linux_gdbarch_data): Likewise.
1976 (invalidate_linux_cache_inf): Likewise.
1977 (get_linux_inferior_data): Likewise.
1978 (linux_find_memory_regions_thunk): Likewise.
1979 (linux_make_mappings_callback): Likewise.
1980 (linux_corefile_thread_callback): Likewise.
1981 (find_mapping_size): Likewise.
1982 * linux-thread-db.c (find_new_threads_callback): Likewise.
1983 * lm32-tdep.c (lm32_frame_cache): Likewise.
1984 * m2-lang.c (builtin_m2_type): Likewise.
1985 * m32c-tdep.c (m32c_analyze_frame_prologue): Likewise.
1986 * m32r-linux-tdep.c (m32r_linux_sigtramp_frame_cache): Likewise.
1987 (m32r_linux_supply_gregset): Likewise.
1988 (m32r_linux_collect_gregset): Likewise.
1989 * m32r-tdep.c (m32r_frame_unwind_cache): Likewise.
1990 * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
1991 * m68k-tdep.c (m68k_frame_cache): Likewise.
1992 * m68kbsd-tdep.c (m68kbsd_supply_fpregset): Likewise.
1993 (m68kbsd_supply_gregset): Likewise.
1994 * m68klinux-tdep.c (m68k_linux_sigtramp_frame_cache): Likewise.
1995 * m88k-tdep.c (m88k_frame_cache): Likewise.
1996 (m88k_supply_gregset): Likewise.
1997
1998 2015-09-25 Simon Marchi <simon.marchi@ericsson.com>
1999
2000 * aarch64-linux-tdep.c (aarch64_stap_parse_special_token): Add cast
2001 to allocation result assignment.
2002 * ada-exp.y (write_object_renaming): Likewise.
2003 (write_ambiguous_var): Likewise.
2004 (ada_nget_field_index): Likewise.
2005 (write_var_or_type): Likewise.
2006 * ada-lang.c (ada_decode_symbol): Likewise.
2007 (ada_value_assign): Likewise.
2008 (value_pointer): Likewise.
2009 (cache_symbol): Likewise.
2010 (add_nonlocal_symbols): Likewise.
2011 (ada_name_for_lookup): Likewise.
2012 (symbol_completion_add): Likewise.
2013 (ada_to_fixed_type_1): Likewise.
2014 (ada_get_next_arg): Likewise.
2015 (defns_collected): Likewise.
2016 * ada-lex.l (processId): Likewise.
2017 (processString): Likewise.
2018 * ada-tasks.c (read_known_tasks_array): Likewise.
2019 (read_known_tasks_list): Likewise.
2020 * ada-typeprint.c (decoded_type_name): Likewise.
2021 * addrmap.c (addrmap_mutable_create_fixed): Likewise.
2022 * amd64-tdep.c (amd64_push_arguments): Likewise.
2023 (amd64_displaced_step_copy_insn): Likewise.
2024 (amd64_classify_insn_at): Likewise.
2025 (amd64_relocate_instruction): Likewise.
2026 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Likewise.
2027 * arch-utils.c (simple_displaced_step_copy_insn): Likewise.
2028 (initialize_current_architecture): Likewise.
2029 * arm-linux-tdep.c (arm_stap_parse_special_token): Likewise.
2030 * arm-symbian-tdep.c (arm_symbian_osabi_sniffer): Likewise.
2031 * arm-tdep.c (arm_exidx_new_objfile): Likewise.
2032 (arm_push_dummy_call): Likewise.
2033 (extend_buffer_earlier): Likewise.
2034 (arm_adjust_breakpoint_address): Likewise.
2035 (arm_skip_stub): Likewise.
2036 * auto-load.c (filename_is_in_pattern): Likewise.
2037 (maybe_add_script_file): Likewise.
2038 (maybe_add_script_text): Likewise.
2039 (auto_load_objfile_script_1): Likewise.
2040 * auxv.c (ld_so_xfer_auxv): Likewise.
2041 * ax-general.c (new_agent_expr): Likewise.
2042 (grow_expr): Likewise.
2043 (ax_reg_mask): Likewise.
2044 * bcache.c (bcache_full): Likewise.
2045 * breakpoint.c (program_breakpoint_here_p): Likewise.
2046 * btrace.c (parse_xml_raw): Likewise.
2047 * build-id.c (build_id_to_debug_bfd): Likewise.
2048 * buildsym.c (end_symtab_with_blockvector): Likewise.
2049 * c-exp.y (string_exp): Likewise.
2050 (qualified_name): Likewise.
2051 (write_destructor_name): Likewise.
2052 (operator_stoken): Likewise.
2053 (parse_number): Likewise.
2054 (scan_macro_expansion): Likewise.
2055 (yylex): Likewise.
2056 (c_print_token): Likewise.
2057 * c-lang.c (c_get_string): Likewise.
2058 (emit_numeric_character): Likewise.
2059 * charset.c (wchar_iterate): Likewise.
2060 * cli/cli-cmds.c (complete_command): Likewise.
2061 (make_command): Likewise.
2062 * cli/cli-dump.c (restore_section_callback): Likewise.
2063 (restore_binary_file): Likewise.
2064 * cli/cli-interp.c (cli_interpreter_exec): Likewise.
2065 * cli/cli-script.c (execute_control_command): Likewise.
2066 * cli/cli-setshow.c (do_set_command): Likewise.
2067 * coff-pe-read.c (add_pe_forwarded_sym): Likewise.
2068 (read_pe_exported_syms): Likewise.
2069 * coffread.c (coff_read_struct_type): Likewise.
2070 (coff_read_enum_type): Likewise.
2071 * common/btrace-common.c (btrace_data_append): Likewise.
2072 * common/buffer.c (buffer_grow): Likewise.
2073 * common/filestuff.c (gdb_fopen_cloexec): Likewise.
2074 * common/format.c (parse_format_string): Likewise.
2075 * common/gdb_vecs.c (delim_string_to_char_ptr_vec_append): Likewise.
2076 * common/xml-utils.c (xml_escape_text): Likewise.
2077 * compile/compile-object-load.c (copy_sections): Likewise.
2078 (compile_object_load): Likewise.
2079 * compile/compile-object-run.c (compile_object_run): Likewise.
2080 * completer.c (filename_completer): Likewise.
2081 * corefile.c (read_memory_typed_address): Likewise.
2082 (write_memory_unsigned_integer): Likewise.
2083 (write_memory_signed_integer): Likewise.
2084 (complete_set_gnutarget): Likewise.
2085 * corelow.c (get_core_register_section): Likewise.
2086 * cp-name-parser.y (d_grab): Likewise.
2087 (allocate_info): Likewise.
2088 (cp_new_demangle_parse_info): Likewise.
2089 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Likewise.
2090 (cp_lookup_symbol_in_namespace): Likewise.
2091 (lookup_namespace_scope): Likewise.
2092 (find_symbol_in_baseclass): Likewise.
2093 (cp_lookup_nested_symbol): Likewise.
2094 (cp_lookup_transparent_type_loop): Likewise.
2095 * cp-support.c (copy_string_to_obstack): Likewise.
2096 (make_symbol_overload_list): Likewise.
2097 (make_symbol_overload_list_namespace): Likewise.
2098 (make_symbol_overload_list_adl_namespace): Likewise.
2099 (first_component_command): Likewise.
2100 * cp-valprint.c (cp_print_value): Likewise.
2101 * ctf.c (ctf_xfer_partial): Likewise.
2102 * d-exp.y (StringExp): Likewise.
2103 * d-namespace.c (d_lookup_symbol_in_module): Likewise.
2104 (lookup_module_scope): Likewise.
2105 (find_symbol_in_baseclass): Likewise.
2106 (d_lookup_nested_symbol): Likewise.
2107 * dbxread.c (find_stab_function_addr): Likewise.
2108 (read_dbx_symtab): Likewise.
2109 (dbx_end_psymtab): Likewise.
2110 (cp_set_block_scope): Likewise.
2111 * dcache.c (dcache_alloc): Likewise.
2112 * demangle.c (_initialize_demangler): Likewise.
2113 * dicos-tdep.c (dicos_load_module_p): Likewise.
2114 * dictionary.c (dict_create_hashed_expandable): Likewise.
2115 (dict_create_linear_expandable): Likewise.
2116 (expand_hashtable): Likewise.
2117 (add_symbol_linear_expandable): Likewise.
2118 * dwarf2-frame.c (add_cie): Likewise.
2119 (add_fde): Likewise.
2120 (dwarf2_build_frame_info): Likewise.
2121 * dwarf2expr.c (dwarf_expr_grow_stack): Likewise.
2122 (dwarf_expr_fetch_address): Likewise.
2123 (add_piece): Likewise.
2124 (execute_stack_op): Likewise.
2125 * dwarf2loc.c (chain_candidate): Likewise.
2126 (dwarf_entry_parameter_to_value): Likewise.
2127 (read_pieced_value): Likewise.
2128 (write_pieced_value): Likewise.
2129 * dwarf2read.c (dwarf2_read_section): Likewise.
2130 (add_type_unit): Likewise.
2131 (read_comp_units_from_section): Likewise.
2132 (fixup_go_packaging): Likewise.
2133 (dwarf2_compute_name): Likewise.
2134 (dwarf2_physname): Likewise.
2135 (create_dwo_unit_in_dwp_v1): Likewise.
2136 (create_dwo_unit_in_dwp_v2): Likewise.
2137 (read_func_scope): Likewise.
2138 (read_call_site_scope): Likewise.
2139 (dwarf2_attach_fields_to_type): Likewise.
2140 (process_structure_scope): Likewise.
2141 (mark_common_block_symbol_computed): Likewise.
2142 (read_common_block): Likewise.
2143 (abbrev_table_read_table): Likewise.
2144 (guess_partial_die_structure_name): Likewise.
2145 (fixup_partial_die): Likewise.
2146 (add_file_name): Likewise.
2147 (dwarf2_const_value_data): Likewise.
2148 (dwarf2_const_value_attr): Likewise.
2149 (build_error_marker_type): Likewise.
2150 (guess_full_die_structure_name): Likewise.
2151 (anonymous_struct_prefix): Likewise.
2152 (typename_concat): Likewise.
2153 (dwarf2_canonicalize_name): Likewise.
2154 (dwarf2_name): Likewise.
2155 (write_constant_as_bytes): Likewise.
2156 (dwarf2_fetch_constant_bytes): Likewise.
2157 (copy_string): Likewise.
2158 (parse_macro_definition): Likewise.
2159 * elfread.c (elf_symfile_segments): Likewise.
2160 (elf_rel_plt_read): Likewise.
2161 (elf_gnu_ifunc_resolve_by_cache): Likewise.
2162 (elf_gnu_ifunc_resolve_by_got): Likewise.
2163 (elf_read_minimal_symbols): Likewise.
2164 (elf_gnu_ifunc_record_cache): Likewise.
2165 * event-top.c (top_level_prompt): Likewise.
2166 (command_line_handler): Likewise.
2167 * exec.c (resize_section_table): Likewise.
2168 * expprint.c (print_subexp_standard): Likewise.
2169 * fbsd-tdep.c (fbsd_collect_regset_section_cb): Likewise.
2170 * findcmd.c (parse_find_args): Likewise.
2171 * findvar.c (address_from_register): Likewise.
2172 * frame.c (get_prev_frame_always): Likewise.
2173 * gdb_bfd.c (gdb_bfd_ref): Likewise.
2174 (get_section_descriptor): Likewise.
2175 * gdb_obstack.c (obconcat): Likewise.
2176 (obstack_strdup): Likewise.
2177 * gdbtypes.c (lookup_function_type_with_arguments): Likewise.
2178 (create_set_type): Likewise.
2179 (lookup_unsigned_typename): Likewise.
2180 (lookup_signed_typename): Likewise.
2181 (resolve_dynamic_union): Likewise.
2182 (resolve_dynamic_struct): Likewise.
2183 (add_dyn_prop): Likewise.
2184 (copy_dynamic_prop_list): Likewise.
2185 (arch_flags_type): Likewise.
2186 (append_composite_type_field_raw): Likewise.
2187 * gdbtypes.h (INIT_FUNC_SPECIFIC): Likewise.
2188 * gnu-v3-abi.c (gnuv3_rtti_type): Likewise.
2189 * go-exp.y (string_exp): Likewise.
2190 * go-lang.c (go_demangle): Likewise.
2191 * guile/guile.c (compute_scheme_string): Likewise.
2192 * guile/scm-cmd.c (gdbscm_parse_command_name): Likewise.
2193 (gdbscm_canonicalize_command_name): Likewise.
2194 * guile/scm-ports.c (ioscm_init_stdio_buffers): Likewise.
2195 (ioscm_init_memory_port): Likewise.
2196 (ioscm_reinit_memory_port): Likewise.
2197 * guile/scm-utils.c (gdbscm_gc_xstrdup): Likewise.
2198 (gdbscm_gc_dup_argv): Likewise.
2199 * h8300-tdep.c (h8300_push_dummy_call): Likewise.
2200 * hppa-tdep.c (internalize_unwinds): Likewise.
2201 (read_unwind_info): Likewise.
2202 * i386-cygwin-tdep.c (core_process_module_section): Likewise.
2203 (windows_core_xfer_shared_libraries): Likewise.
2204 * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
2205 (i386_stap_parse_special_token_triplet): Likewise.
2206 (i386_stap_parse_special_token_three_arg_disp): Likewise.
2207 * i386obsd-tdep.c (i386obsd_sigtramp_p): Likewise.
2208 * inf-child.c (inf_child_fileio_readlink): Likewise.
2209 * inf-ptrace.c (inf_ptrace_fetch_register): Likewise.
2210 (inf_ptrace_store_register): Likewise.
2211 * infrun.c (follow_exec): Likewise.
2212 (displaced_step_prepare_throw): Likewise.
2213 (save_stop_context): Likewise.
2214 (save_infcall_suspend_state): Likewise.
2215 * jit.c (jit_read_descriptor): Likewise.
2216 (jit_read_code_entry): Likewise.
2217 (jit_symtab_line_mapping_add_impl): Likewise.
2218 (finalize_symtab): Likewise.
2219 (jit_unwind_reg_get_impl): Likewise.
2220 * jv-exp.y (QualifiedName): Likewise.
2221 * jv-lang.c (get_java_utf8_name): Likewise.
2222 (type_from_class): Likewise.
2223 (java_demangle_type_signature): Likewise.
2224 (java_class_name_from_physname): Likewise.
2225 * jv-typeprint.c (java_type_print_base): Likewise.
2226 * jv-valprint.c (java_value_print): Likewise.
2227 * language.c (add_language): Likewise.
2228 * linespec.c (add_sal_to_sals_basic): Likewise.
2229 (add_sal_to_sals): Likewise.
2230 (decode_objc): Likewise.
2231 (find_linespec_symbols): Likewise.
2232 * linux-fork.c (fork_save_infrun_state): Likewise.
2233 * linux-nat.c (linux_nat_detach): Likewise.
2234 (linux_nat_fileio_readlink): Likewise.
2235 * linux-record.c (record_linux_sockaddr): Likewise.
2236 (record_linux_msghdr): Likewise.
2237 (Do): Likewise.
2238 * linux-tdep.c (linux_core_info_proc_mappings): Likewise.
2239 (linux_collect_regset_section_cb): Likewise.
2240 (linux_get_siginfo_data): Likewise.
2241 * linux-thread-db.c (try_thread_db_load_from_pdir_1): Likewise.
2242 (try_thread_db_load_from_dir): Likewise.
2243 (thread_db_load_search): Likewise.
2244 (info_auto_load_libthread_db): Likewise.
2245 * m32c-tdep.c (m32c_m16c_address_to_pointer): Likewise.
2246 (m32c_m16c_pointer_to_address): Likewise.
2247 * m68hc11-tdep.c (m68hc11_pseudo_register_write): Likewise.
2248 * m68k-tdep.c (m68k_get_longjmp_target): Likewise.
2249 * machoread.c (macho_check_dsym): Likewise.
2250 * macroexp.c (resize_buffer): Likewise.
2251 (gather_arguments): Likewise.
2252 (maybe_expand): Likewise.
2253 * macrotab.c (new_macro_key): Likewise.
2254 (new_source_file): Likewise.
2255 (new_macro_definition): Likewise.
2256 * mdebugread.c (parse_symbol): Likewise.
2257 (parse_type): Likewise.
2258 (parse_partial_symbols): Likewise.
2259 (psymtab_to_symtab_1): Likewise.
2260 * mem-break.c (default_memory_insert_breakpoint): Likewise.
2261 * mi/mi-cmd-break.c (mi_argv_to_format): Likewise.
2262 * mi/mi-main.c (mi_cmd_data_read_memory): Likewise.
2263 (mi_cmd_data_read_memory_bytes): Likewise.
2264 (mi_cmd_data_write_memory_bytes): Likewise.
2265 (mi_cmd_trace_frame_collected): Likewise.
2266 * mi/mi-parse.c (mi_parse_argv): Likewise.
2267 (mi_parse): Likewise.
2268 * minidebug.c (lzma_open): Likewise.
2269 (lzma_pread): Likewise.
2270 * mips-tdep.c (mips_read_fp_register_single): Likewise.
2271 (mips_print_fp_register): Likewise.
2272 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Likewise.
2273 * mipsread.c (read_alphacoff_dynamic_symtab): Likewise.
2274 * mt-tdep.c (mt_register_name): Likewise.
2275 (mt_registers_info): Likewise.
2276 (mt_push_dummy_call): Likewise.
2277 * namespace.c (add_using_directive): Likewise.
2278 * nat/linux-btrace.c (perf_event_read): Likewise.
2279 (linux_enable_bts): Likewise.
2280 * nat/linux-osdata.c (linux_common_core_of_thread): Likewise.
2281 * nat/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Likewise.
2282 * nto-tdep.c (nto_find_and_open_solib): Likewise.
2283 (nto_parse_redirection): Likewise.
2284 * objc-lang.c (objc_demangle): Likewise.
2285 (find_methods): Likewise.
2286 * objfiles.c (get_objfile_bfd_data): Likewise.
2287 (set_objfile_main_name): Likewise.
2288 (allocate_objfile): Likewise.
2289 (objfile_relocate): Likewise.
2290 (update_section_map): Likewise.
2291 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Likewise.
2292 * p-exp.y (exp): Likewise.
2293 (yylex): Likewise.
2294 * p-valprint.c (pascal_object_print_value): Likewise.
2295 * parse.c (initialize_expout): Likewise.
2296 (mark_completion_tag): Likewise.
2297 (copy_name): Likewise.
2298 (parse_float): Likewise.
2299 (type_stack_reserve): Likewise.
2300 * ppc-linux-tdep.c (ppc_stap_parse_special_token): Likewise.
2301 (ppu2spu_prev_register): Likewise.
2302 * ppc-ravenscar-thread.c (supply_register_at_address): Likewise.
2303 * printcmd.c (printf_wide_c_string): Likewise.
2304 (printf_pointer): Likewise.
2305 * probe.c (parse_probes): Likewise.
2306 * python/py-cmd.c (gdbpy_parse_command_name): Likewise.
2307 (cmdpy_init): Likewise.
2308 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Likewise.
2309 * python/py-symtab.c (set_sal): Likewise.
2310 * python/py-unwind.c (pyuw_sniffer): Likewise.
2311 * python/python.c (python_interactive_command): Likewise.
2312 (compute_python_string): Likewise.
2313 * ravenscar-thread.c (get_running_thread_id): Likewise.
2314 * record-full.c (record_full_exec_insn): Likewise.
2315 (record_full_core_open_1): Likewise.
2316 * regcache.c (regcache_raw_read_signed): Likewise.
2317 (regcache_raw_read_unsigned): Likewise.
2318 (regcache_cooked_read_signed): Likewise.
2319 (regcache_cooked_read_unsigned): Likewise.
2320 * remote-fileio.c (remote_fileio_func_open): Likewise.
2321 (remote_fileio_func_rename): Likewise.
2322 (remote_fileio_func_unlink): Likewise.
2323 (remote_fileio_func_stat): Likewise.
2324 (remote_fileio_func_system): Likewise.
2325 * remote-mips.c (mips_xfer_memory): Likewise.
2326 (mips_load_srec): Likewise.
2327 (pmon_end_download): Likewise.
2328 * remote.c (new_remote_state): Likewise.
2329 (map_regcache_remote_table): Likewise.
2330 (remote_register_number_and_offset): Likewise.
2331 (init_remote_state): Likewise.
2332 (get_memory_packet_size): Likewise.
2333 (remote_pass_signals): Likewise.
2334 (remote_program_signals): Likewise.
2335 (remote_start_remote): Likewise.
2336 (remote_check_symbols): Likewise.
2337 (remote_query_supported): Likewise.
2338 (extended_remote_attach): Likewise.
2339 (process_g_packet): Likewise.
2340 (store_registers_using_G): Likewise.
2341 (putpkt_binary): Likewise.
2342 (read_frame): Likewise.
2343 (compare_sections_command): Likewise.
2344 (remote_hostio_pread): Likewise.
2345 (remote_hostio_readlink): Likewise.
2346 (remote_file_put): Likewise.
2347 (remote_file_get): Likewise.
2348 (remote_pid_to_exec_file): Likewise.
2349 (_initialize_remote): Likewise.
2350 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
2351 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
2352 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Likewise.
2353 (bfd_uses_spe_extensions): Likewise.
2354 * s390-linux-tdep.c (s390_displaced_step_copy_insn): Likewise.
2355 * score-tdep.c (score7_malloc_and_get_memblock): Likewise.
2356 * solib-dsbt.c (decode_loadmap): Likewise.
2357 (fetch_loadmap): Likewise.
2358 (scan_dyntag): Likewise.
2359 (enable_break): Likewise.
2360 (dsbt_relocate_main_executable): Likewise.
2361 * solib-frv.c (fetch_loadmap): Likewise.
2362 (enable_break2): Likewise.
2363 (frv_relocate_main_executable): Likewise.
2364 * solib-spu.c (spu_relocate_main_executable): Likewise.
2365 (spu_bfd_open): Likewise.
2366 * solib-svr4.c (lm_info_read): Likewise.
2367 (read_program_header): Likewise.
2368 (find_program_interpreter): Likewise.
2369 (scan_dyntag): Likewise.
2370 (elf_locate_base): Likewise.
2371 (open_symbol_file_object): Likewise.
2372 (read_program_headers_from_bfd): Likewise.
2373 (svr4_relocate_main_executable): Likewise.
2374 * solib-target.c (solib_target_relocate_section_addresses): Likewise.
2375 * solib.c (solib_find_1): Likewise.
2376 (exec_file_find): Likewise.
2377 (solib_find): Likewise.
2378 * source.c (openp): Likewise.
2379 (print_source_lines_base): Likewise.
2380 (forward_search_command): Likewise.
2381 * sparc-ravenscar-thread.c (supply_register_at_address): Likewise.
2382 * spu-tdep.c (spu2ppu_prev_register): Likewise.
2383 (spu_get_overlay_table): Likewise.
2384 * stabsread.c (patch_block_stabs): Likewise.
2385 (define_symbol): Likewise.
2386 (again:): Likewise.
2387 (read_member_functions): Likewise.
2388 (read_one_struct_field): Likewise.
2389 (read_enum_type): Likewise.
2390 (common_block_start): Likewise.
2391 * stack.c (read_frame_arg): Likewise.
2392 (backtrace_command): Likewise.
2393 * stap-probe.c (stap_parse_register_operand): Likewise.
2394 * symfile.c (syms_from_objfile_1): Likewise.
2395 (find_separate_debug_file): Likewise.
2396 (load_command): Likewise.
2397 (load_progress): Likewise.
2398 (load_section_callback): Likewise.
2399 (reread_symbols): Likewise.
2400 (add_filename_language): Likewise.
2401 (allocate_compunit_symtab): Likewise.
2402 (read_target_long_array): Likewise.
2403 (simple_read_overlay_table): Likewise.
2404 * symtab.c (symbol_set_names): Likewise.
2405 (resize_symbol_cache): Likewise.
2406 (rbreak_command): Likewise.
2407 (completion_list_add_name): Likewise.
2408 (completion_list_objc_symbol): Likewise.
2409 (add_filename_to_list): Likewise.
2410 * target-descriptions.c (maint_print_c_tdesc_cmd): Likewise.
2411 * target-memory.c (target_write_memory_blocks): Likewise.
2412 * target.c (target_read_string): Likewise.
2413 (read_whatever_is_readable): Likewise.
2414 (target_read_alloc_1): Likewise.
2415 (simple_search_memory): Likewise.
2416 (target_fileio_read_alloc_1): Likewise.
2417 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
2418 * top.c (command_line_input): Likewise.
2419 * tracefile-tfile.c (tfile_fetch_registers): Likewise.
2420 * tracefile.c (tracefile_fetch_registers): Likewise.
2421 * tracepoint.c (add_memrange): Likewise.
2422 (init_collection_list): Likewise.
2423 (add_aexpr): Likewise.
2424 (trace_dump_actions): Likewise.
2425 (parse_trace_status): Likewise.
2426 (parse_tracepoint_definition): Likewise.
2427 (parse_tsv_definition): Likewise.
2428 (parse_static_tracepoint_marker_definition): Likewise.
2429 * tui/tui-file.c (tui_sfileopen): Likewise.
2430 (tui_file_adjust_strbuf): Likewise.
2431 * tui/tui-io.c (tui_expand_tabs): Likewise.
2432 * tui/tui-source.c (tui_set_source_content): Likewise.
2433 * typeprint.c (find_global_typedef): Likewise.
2434 * ui-file.c (do_ui_file_xstrdup): Likewise.
2435 (ui_file_obsavestring): Likewise.
2436 (mem_file_write): Likewise.
2437 * utils.c (make_hex_string): Likewise.
2438 (get_regcomp_error): Likewise.
2439 (puts_filtered_tabular): Likewise.
2440 (gdb_realpath_keepfile): Likewise.
2441 (ldirname): Likewise.
2442 (gdb_bfd_errmsg): Likewise.
2443 (substitute_path_component): Likewise.
2444 * valops.c (search_struct_method): Likewise.
2445 (find_oload_champ_namespace_loop): Likewise.
2446 * valprint.c (print_decimal_chars): Likewise.
2447 (read_string): Likewise.
2448 (generic_emit_char): Likewise.
2449 * varobj.c (varobj_delete): Likewise.
2450 (varobj_value_get_print_value): Likewise.
2451 * vaxobsd-tdep.c (vaxobsd_sigtramp_sniffer): Likewise.
2452 * windows-tdep.c (display_one_tib): Likewise.
2453 * xcoffread.c (read_xcoff_symtab): Likewise.
2454 (process_xcoff_symbol): Likewise.
2455 (swap_sym): Likewise.
2456 (scan_xcoff_symtab): Likewise.
2457 (xcoff_initial_scan): Likewise.
2458 * xml-support.c (gdb_xml_end_element): Likewise.
2459 (xml_process_xincludes): Likewise.
2460 (xml_fetch_content_from_file): Likewise.
2461 * xml-syscall.c (xml_list_of_syscalls): Likewise.
2462 * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
2463
2464 2015-09-23 James Bowman <james.bowman@ftdichip.com>
2465
2466 * ft32-tdep.c (ft32_register_type): Return gdbarch_tdep (gdbarch)->pc_type
2467 instead of builtin_func_ptr.
2468 (ft32_pointer_to_address): New function.
2469 (ft32_address_class_type_flags): New function.
2470 (ft32_address_class_type_flags_to_name): New function.
2471 (ft32_address_class_name_to_type_flags): New function.
2472 (ft32_gdbarch_init): Set tdep->pc_type. Call
2473 set_gdbarch_pointer_to_address,
2474 set_gdbarch_address_class_type_flags
2475 set_gdbarch_address_class_name_to_type_flags,
2476 and set_gdbarch_address_class_type_flags_to_name.
2477 * ft32-tdep.h (struct gdbarch_tdep) <pc_type>: New field.
2478
2479 2015-09-23 Pierre-Marie de Rodat <derodat@adacore.com>
2480
2481 * ada-lang.c (ada_evaluate_subexp) <OP_FUNCALL>: When the input
2482 value is a reference, actually dereference it in order to get
2483 the underlying value.
2484
2485 2015-09-22 Simon Marchi <simon.marchi@ericsson.com>
2486
2487 * stap-probe.c (handle_stap_probe): Remove unnecessary cast.
2488
2489 2015-09-21 Simon Marchi <simon.marchi@ericsson.com>
2490
2491 * cli/cli-setshow.c (cmd_show_list): Constify a variable.
2492 * linespec.c (linespec_lexer_lex_string): Same.
2493
2494 2015-09-21 Pierre Langlois <pierre.langlois@arm.com>
2495
2496 * NEWS: Mention support for fast tracepoints on aarch64-linux.
2497
2498 2015-09-21 Pierre Langlois <pierre.langlois@arm.com>
2499
2500 * aarch64-tdep.c (aarch64_analyze_prologue): New is_adrp
2501 variable. Call aarch64_decode_adr instead of
2502 aarch64_decode_adrp.
2503 * arch/aarch64-insn.h (aarch64_decode_adrp): Delete.
2504 (aarch64_decode_adr): New function declaration.
2505 * arch/aarch64-insn.c (aarch64_decode_adrp): Delete.
2506 (aarch64_decode_adr): New function, factored out from
2507 aarch64_decode_adrp to decode both adr and adrp instructions.
2508
2509 2015-09-21 Pierre Langlois <pierre.langlois@arm.com>
2510
2511 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-insn.o.
2512 (HFILES_NO_SRCDIR): Add arch/aarch64-insn.h.
2513 (aarch64-insn.o): New rule.
2514 * configure.tgt (aarch64*-*-elf): Add aarch64-insn.o.
2515 (aarch64*-*-linux*): Likewise.
2516 * arch/aarch64-insn.c: New file.
2517 * arch/aarch64-insn.h: New file.
2518 * aarch64-tdep.c: Include arch/aarch64-insn.h.
2519 (aarch64_debug): Move to arch/aarch64-insn.c. Declare in
2520 arch/aarch64-insn.h.
2521 (decode_add_sub_imm): Rename to ...
2522 (aarch64_decode_add_sub_imm): ... this.
2523 (decode_adrp): Rename to ...
2524 (aarch64_decode_adrp): ... this. Move to arch/aarch64-insn.c.
2525 Declare in arch/aarch64-insn.h.
2526 (decode_b): Rename to ...
2527 (aarch64_decode_b): ... this. Move to arch/aarch64-insn.c.
2528 Declare in arch/aarch64-insn.h.
2529 (decode_bcond): Rename to ...
2530 (aarch64_decode_bcond): ... this. Move to arch/aarch64-insn.c.
2531 Declare in arch/aarch64-insn.h.
2532 (decode_br): Rename to ...
2533 (aarch64_decode_br): ... this.
2534 (decode_cb): Rename to ...
2535 (aarch64_decode_cb): ... this. Move to arch/aarch64-insn.c.
2536 Declare in arch/aarch64-insn.h.
2537 (decode_eret): Rename to ...
2538 (aarch64_decode_eret): ... this.
2539 (decode_movz): Rename to ...
2540 (aarch64_decode_movz): ... this.
2541 (decode_orr_shifted_register_x): Rename to ...
2542 (aarch64_decode_orr_shifted_register_x): ... this.
2543 (decode_ret): Rename to ...
2544 (aarch64_decode_ret): ... this.
2545 (decode_stp_offset): Rename to ...
2546 (aarch64_decode_stp_offset): ... this.
2547 (decode_stp_offset_wb): Rename to ...
2548 (aarch64_decode_stp_offset_wb): ... this.
2549 (decode_stur): Rename to ...
2550 (aarch64_decode_stur): ... this.
2551 (decode_tb): Rename to ...
2552 (aarch64_decode_tb): ... this. Move to arch/aarch64-insn.c.
2553 Declare in arch/aarch64-insn.h.
2554 (aarch64_analyze_prologue): Adjust calls to renamed functions.
2555
2556 2015-09-20 Doug Evans <xdje42@gmail.com>
2557
2558 * dwarf2read.c (add_partial_symbol): Remove outdated comments.
2559
2560 2015-09-20 Doug Evans <xdje42@gmail.com>
2561
2562 * dwarf2read.c (dwarf2_compute_name): Add FIXME. Don't use a local
2563 variable name that collides with a parameter.
2564
2565 2015-09-20 Joel Brobecker <brobecker@adacore.com>
2566
2567 * dwarf2loc.c (locexpr_get_frame_base): Renames
2568 block_op_get_frame_base.
2569 (dwarf2_block_frame_base_locexpr_funcs): Replace reference to
2570 block_op_get_frame_base by reference to locexpr_get_frame_base.
2571 (loclist_get_frame_base): New function, near identical copy of
2572 locexpr_get_frame_base.
2573 (dwarf2_block_frame_base_loclist_funcs): Replace reference to
2574 block_op_get_frame_base by reference to loclist_get_frame_base.
2575
2576 2015-09-19 Doug Evans <xdje42@gmail.com>
2577
2578 * ravenscar-thread.c (ravenscar_inferior_created): Replace
2579 current_inferior ()->gdbarch with its wrapper target_gdbarch.
2580
2581 2015-09-18 Doug Evans <xdje42@gmail.com>
2582
2583 * linux-thread-db.c (record_thread): Return the created thread.
2584 (thread_from_lwp): Likewise.
2585 (thread_db_get_thread_local_address): Update.
2586
2587 2015-09-18 Doug Evans <xdje42@gmail.com>
2588
2589 * symtab.h (general_symbol_info) <mangled_lang>: Delete struct,
2590 move only member demangled_name up. All uses updated.
2591
2592 2015-09-18 Doug Evans <xdje42@gmail.com>
2593
2594 * findvar.c (default_read_var_value) <LOC_UNRESOLVED>: Include the
2595 kind of minimal symbol in the error message.
2596 * objfiles.c (objfile_flavour_name): New function.
2597 * objfiles.h (objfile_flavour_name): Declare.
2598
2599 2015-09-18 Yao Qi <yao.qi@linaro.org>
2600
2601 * nat/aarch64-linux.c: Include elf/common.h,
2602 nat/gdb_ptrace.h, asm/ptrace.h and sys/uio.h.
2603 (aarch64_ps_get_thread_area): New function.
2604 * nat/aarch64-linux.h: Include gdb_proc_service.h.
2605 (aarch64_ps_get_thread_area): Declare.
2606 * aarch64-linux-nat.c (ps_get_thread_area): Call
2607 aarch64_ps_get_thread_area.
2608
2609 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2610
2611 * record-btrace.c (record_btrace_resume): Honour scheduler-locking.
2612
2613 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2614
2615 * NEWS: Announce new scheduler-locking mode.
2616 * infrun.c (schedlock_replay): New.
2617 (scheduler_enums): Add schedlock_replay.
2618 (scheduler_mode): Change default to schedlock_replay.
2619 (user_visible_resume_ptid): Handle schedlock_replay.
2620 (clear_proceed_status_thread): Stop replaying if resumed thread is
2621 not replaying.
2622 (schedlock_applies): Handle schedlock_replay.
2623 (_initialize_infrun): Document new scheduler-locking mode.
2624 * record-btrace.c (record_btrace_resume): Remove code to stop other
2625 threads when not replaying the resumed thread.
2626
2627 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2628
2629 * record-btrace.c ((record_btrace_will_replay): New.
2630 (init_record_btrace_ops): Initialize to_record_will_replay.
2631 * record-full.c ((record_full_will_replay): New.
2632 (init_record_full_ops): Initialize to_record_will_replay.
2633 * target-delegates.c: Regenerated.
2634 * target.c (target_record_will_replay): New.
2635 * target.h (struct target_ops) <to_record_will_replay>: New.
2636 (target_record_will_replay): New.
2637
2638 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2639
2640 * record-btrace.c (record_btrace_resume): Call
2641 target_record_stop_replaying.
2642 (record_btrace_stop_replaying_all): New.
2643 (init_record_btrace_ops): Initialize to_record_stop_replaying.
2644 * record-full.c (record_full_stop_replaying): New.
2645 (init_record_full_ops ): Initialize to_record_stop_replaying.
2646 * target-delegates.c: Regenerated.
2647 * target.c (target_record_stop_replaying): New.
2648 * target.h (struct target_ops) <to_record_stop_replaying>: New.
2649 (target_record_stop_replaying): New.
2650
2651 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2652
2653 * record-btrace.c (record_btrace_xfer_partial)
2654 (record_btrace_store_registers, record_btrace_prepare_to_store):
2655 Call record_btrace_is_replaying with inferior_ptid instead of
2656 minus_one_ptid.
2657 (record_btrace_store_registers): Change error message.
2658
2659 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2660
2661 * record-btrace.c (record_btrace_is_replaying): Add ptid argument.
2662 Update users to pass minus_one_ptid.
2663 * record-full.c (record_full_is_replaying): Add ptid argument (ignored).
2664 * record.c (cmd_record_delete): Pass inferior_ptid to
2665 target_record_is_replaying.
2666 * target-delegates.c: Regenerated.
2667 * target.c (target_record_is_replaying): Add ptid argument.
2668 * target.h (struct target_ops) <to_record_is_replaying>: Add ptid
2669 argument.
2670 (target_record_is_replaying): Add ptid argument.
2671
2672 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2673
2674 * record-btrace.c (record_btrace_open): Remove non_stop check.
2675 * NEWS: Announce that record btrace supports non-stop mode.
2676
2677 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2678
2679 * infrun.c (handle_inferior_event_1): Switch to the eventing thread
2680 in the TARKET_WAITKIND_NO_HISTORY case.
2681
2682 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2683
2684 * record-btrace.c (record_btrace_maybe_mark_async_event): New.
2685 (record_btrace_wait): Call record_btrace_maybe_mark_async_event.
2686
2687 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2688
2689 * record-btrace.c (get_thread_current_frame): New.
2690 (record_btrace_start_replaying): Call get_thread_current_frame.
2691
2692 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2693
2694 * record-btrace.c (record_btrace_resume_thread): A move request
2695 overwrites a previous move request.
2696 (record_btrace_find_resume_thread): Removed.
2697 (record_btrace_resume): Resume all requested threads.
2698
2699 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2700
2701 * record-btrace.c: Include vec.h.
2702 (record_btrace_find_thread_to_move): Removed.
2703 (btrace_step_no_resumed, btrace_step_again)
2704 (record_btrace_stop_replaying_at_end): New.
2705 (record_btrace_cancel_resume): Call record_btrace_stop_replaying_at_end.
2706 (record_btrace_single_step_forward): Remove calls to
2707 record_btrace_stop_replaying.
2708 (record_btrace_step_thread): Do only one step for BTHR_CONT and
2709 BTHR_RCONT. Keep threads at the end of their history moving.
2710 (record_btrace_wait): Call record_btrace_step_thread for all threads
2711 until one reports an event. Call record_btrace_stop_replaying_at_end
2712 for the eventing thread.
2713
2714 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2715
2716 * record-btrace.c (record_btrace_single_step_forward): Return
2717 NO_HISTORY if a step brings us to the end of the execution history.
2718
2719 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2720
2721 * record-btrace.c (record_btrace_step_thread): Move breakpoint check
2722 to ...
2723 (record_btrace_single_step_forward): ... here and
2724 (record_btrace_single_step_backward): ... here.
2725
2726 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2727
2728 * record-btrace.c (btrace_step_spurious)
2729 (record_btrace_single_step_forward)
2730 (record_btrace_single_step_backward): New.
2731 (record_btrace_step_thread): Call record_btrace_single_step_forward
2732 and record_btrace_single_step_backward.
2733
2734 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2735
2736 * record-btrace.c (record_btrace_replay_at_breakpoint): New.
2737 (record_btrace_step_thread): Call record_btrace_replay_at_breakpoint.
2738
2739 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2740
2741 * record-btrace.c (btrace_thread_flag_to_str)
2742 (record_btrace_cancel_resume): New.
2743 (record_btrace_step_thread): Call btrace_thread_flag_to_str.
2744 (record_btrace_resume): Print execution direction.
2745 (record_btrace_resume_thread): Call btrace_thread_flag_to_str.
2746 (record_btrace_wait): Call record_btrace_cancel_resume.
2747
2748 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2749
2750 * btrace.h (enum btrace_thread_flag) <BTHR_STOP>: New.
2751 * record-btrace (record_btrace_resume_thread): Clear BTHR_STOP.
2752 (record_btrace_find_thread_to_move): Also accept threads that have
2753 BTHR_STOP set.
2754 (btrace_step_stopped_on_request, record_btrace_stop): New.
2755 (record_btrace_step_thread): Support BTHR_STOP.
2756 (record_btrace_wait): Also clear BTHR_STOP when stopping other threads.
2757 (init_record_btrace_ops): Initialize to_stop.
2758
2759 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2760
2761 * record-btrace.c (record_btrace_wait): Replace non_stop check with
2762 target_is_non_stop_p ().
2763
2764 2015-09-15 Pierre-Marie de Rodat <derodat@adacore.com>
2765
2766 * ada-typeprint.c (print_array_type): Do not describe arrays as
2767 packed when they embed dynamic elements.
2768
2769 2015-09-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2770
2771 * symtab.h (address_class): Document that TLS variables
2772 are handled by LOC_UNRESOLVED.
2773 * findvar.c (default_read_var_value): Don't relocate TLS variables.
2774 * printcmd.c (address_info): Don't relocate TLS variables.
2775
2776 2015-09-15 Pierre Langlois <pierre.langlois@arm.com>
2777
2778 * aarch64-tdep.c (decode_add_sub_imm): Use debug_printf.
2779 (decode_adrp): Likewise.
2780 (decode_b): Likewise.
2781 (decode_bcond): Likewise.
2782 (decode_br): Likewise.
2783 (decode_cb): Likewise.
2784 (decode_eret): Likewise.
2785 (decode_movz): Likewise.
2786 (decode_orr_shifted_register_x): Likewise.
2787 (decode_ret): Likewise.
2788 (decode_stp_offset): Likewise.
2789 (decode_stp_offset_wb): Likewise.
2790 (decode_stur): Likewise.
2791 (decode_tb): Likewise.
2792 (aarch64_analyze_prologue): Likewise.
2793 (pass_in_x): Likewise.
2794 (pass_in_v): Likewise.
2795 (pass_on_stack): Likewise.
2796 (aarch64_push_dummy_call): Likewise.
2797 (aarch64_extract_return_value): Likewise.
2798 (aarch64_store_return_value): Likewise.
2799 (aarch64_return_value): Likewise.
2800 (aarch64_record_asimd_load_store): Likewise.
2801 (aarch64_record_load_store): Likewise.
2802 (aarch64_record_data_proc_simd_fp): Likewise.
2803
2804 2015-09-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2805
2806 * linespec.c (minsym_found): Call gdbarch_skip_entrypoint.
2807 * ppc64-tdep.c (ppc64_skip_trampoline_code): Rename to ...
2808 (ppc64_skip_trampoline_code_1): ... here.
2809 (ppc64_skip_trampoline_code): New wrapper function.
2810 * symtab.c (find_function_start_sal): Call gdbarch_skip_entrypoint.
2811
2812 2015-09-15 Yao Qi <yao.qi@linaro.org>
2813
2814 * aarch64-linux-nat.c (aarch64_linux_can_do_single_step): New
2815 function.
2816 (_initialize_aarch64_linux_nat): Install it to to_can_do_single_step.
2817 * arm-linux-tdep.c (arm_linux_software_single_step): Return 0
2818 if target_can_do_single_step returns 1.
2819 * remote.c (struct vCont_action_support) <s, S>: New fields.
2820 (PACKET_vContSupported): New enum.
2821 (remote_protocol_features): New element for vContSupported.
2822 (remote_query_supported): Append "vContSupported+".
2823 (remote_vcont_probe): Remove support_s and support_S, use
2824 rs->supports_vCont.s and rs->supports_vCont.S instead. Disable
2825 vCont packet if c and C actions are not supported.
2826 (remote_can_do_single_step): New function.
2827 (init_remote_ops): Install it to to_can_do_single_step.
2828 (_initialize_remote): Call add_packet_config_cmd.
2829 * target.h (struct target_ops) <to_can_do_single_step>: New field.
2830 (target_can_do_single_step): New macro.
2831 * target-delegates.c: Re-generated.
2832
2833 2015-09-15 Yao Qi <yao.qi@linaro.org>
2834
2835 * aarch64-linux-nat.c (aarch64_linux_siginfo_fixup): New function.
2836 (_initialize_aarch64_linux_nat): Call linux_nat_set_siginfo_fixup.
2837 * nat/aarch64-linux.c (aarch64_compat_siginfo_from_siginfo):
2838 New function.
2839 (aarch64_siginfo_from_compat_siginfo): New function.
2840 * nat/aarch64-linux.h: Include signal.h.
2841 (compat_int_t, compat_uptr_t, compat_time_t): Typedef.
2842 (compat_timer_t, compat_clock_t): Likewise.
2843 (struct compat_timeval): New.
2844 (union compat_sigval): New.
2845 (struct compat_siginfo): New.
2846 (cpt_si_pid, cpt_si_uid, cpt_si_timerid): New macros.
2847 (cpt_si_overrun, cpt_si_status, cpt_si_utime): Likewise.
2848 (cpt_si_stime, cpt_si_ptr, cpt_si_addr): Likewise.
2849 (cpt_si_band, cpt_si_fd): Likewise.
2850
2851 2015-09-14 Pedro Alves <palves@redhat.com>
2852
2853 * infrun.c (current_stop_id): New global.
2854 (get_stop_id, new_stop_id): New functions.
2855 (fetch_inferior_event): Handle normal_stop proceeding the target.
2856 (struct stop_context): New.
2857 (save_stop_context, release_stop_context_cleanup)
2858 (stop_context_changed): New functions.
2859 (normal_stop): Return true if the hook-stop changes the stop
2860 context.
2861 * infrun.h (get_stop_id): Declare.
2862 (normal_stop): Now returns int. Add documentation.
2863
2864 2015-09-14 Pierre-Marie de Rodat <derodat@adacore.com>
2865
2866 * ada-lang.c (ada_value_ptr_subscript): Update the heading
2867 comment. Handle packed arrays.
2868
2869 2015-09-14 Pedro Alves <palves@redhat.com>
2870
2871 * NEWS (Changes in GDB 7.10, New commands>: Remove duplicate
2872 mention of maint set/show target-non-stop.
2873
2874 2015-09-11 Don Breazeal <donb@codesourcery.com>
2875
2876 * NEWS: Announce new remote packets for the exec-events
2877 feature and the exec-events feature and associated commands.
2878
2879 2015-09-11 Don Breazeal <donb@codesourcery.com>
2880
2881 * remote.c (remote_exec_event_p): New function.
2882 (remote_insert_exec_catchpoint): New function.
2883 (remote_remove_exec_catchpoint): New function.
2884 (init_extended_remote_ops): Initialize extended_remote_ops
2885 members to_insert_exec_catchpoint and
2886 to_remove_exec_catchpoint.
2887
2888 2015-09-11 Don Breazeal <donb@codesourcery.com>
2889 Luis Machado <lgustavo@codesourcery.com>
2890
2891 * infrun.c (follow_exec): Use process-style ptid for
2892 exec message. Call add_inferior_with_spaces and
2893 target_follow_exec.
2894 * nat/linux-ptrace.c (linux_supports_traceexec): New function.
2895 * nat/linux-ptrace.h (linux_supports_traceexec): Declare.
2896 * remote.c (remote_pspace_data): New static variable.
2897 (remote_pspace_data_cleanup): New function.
2898 (get_remote_exec_file): New function.
2899 (set_remote_exec_file_1): New function.
2900 (set_remote_exec_file): New function.
2901 (show_remote_exec_file): New function.
2902 (remote_exec_file): Delete static variable.
2903 (anonymous enum) <PACKET_exec_event_feature>: New
2904 enumeration constant.
2905 (remote_protocol_features): Add entry for exec-events feature.
2906 (remote_query_supported): Add client side of qSupported query
2907 for exec-events feature.
2908 (remote_follow_exec): New function.
2909 (remote_parse_stop_reply): Handle 'exec' stop reason.
2910 (extended_remote_run, extended_remote_create_inferior): Call
2911 get_remote_exec_file and set_remote_exec_file_1.
2912 (init_extended_remote_ops) <to_follow_exec>: Initialize new
2913 member.
2914 (_initialize_remote): Call
2915 register_program_space_data_with_cleanup. Call
2916 add_packet_config_cmd for remote exec-events feature.
2917 Modify call to add_setshow_string_noescape_cmd for exec-file
2918 to use new functions set_remote_exec_file and
2919 show_remote_exec_file.
2920 * target-debug.h, target-delegates.c: Regenerated.
2921 * target.c (target_follow_exec): New function.
2922 * target.h (struct target_ops) <to_follow_exec>: New member.
2923 (target_follow_exec): Declare new function.
2924
2925 2015-09-11 Pierre Langlois <pierre.langlois@arm.com>
2926
2927 * aarch64-tdep.c (decode_cb): Move up comment describing the
2928 encoding.
2929 (decode_tb): Fix a typo in comment above the function. Move up
2930 comment describing the encoding.
2931
2932 2015-09-11 Pierre Langlois <pierre.langlois@arm.com>
2933
2934 * aarch64-tdep.c (decode_bcond): Fix incorrect mask.
2935
2936 2015-09-11 Mihail-Marian Nistor <mihail.nistor@freescale.com>
2937
2938 PR gdb/18947
2939 * aarch64-linux-tdep.c: (aarch64_linux_init_abi): Install
2940 glibc_skip_solib_resolver as gdbarch_skip_solib_resolver callback.
2941
2942 2015-09-10 Simon Marchi <simon.marchi@ericsson.com>
2943
2944 * ada-lang.c (scan_discrim_bound): Factor out arithmetic
2945 operations.
2946
2947 2015-09-10 Simon Marchi <simon.marchi@ericsson.com>
2948
2949 * ada-lang.c (ada_search_struct_field): Constify parameters
2950 and/or variables..
2951 (xget_renaming_scope): Likewise.
2952 (ada_is_redundant_range_encoding): Likewise.
2953 (scan_discrim_bound): Likewise.
2954 (to_fixed_range_type): Likewise.
2955
2956 2015-09-10 Yao Qi <yao.qi@linaro.org>
2957
2958 * breakpoint.c (download_tracepoint_locations): New local
2959 can_download_tracepoint. Check the result of
2960 target_can_download_tracepoint and save it in
2961 can_download_tracepoint if there are tracepoints to download.
2962 * linux-nat.h (enum tribool): Move it to ...
2963 * common/common-types.h: ... here.
2964
2965 2015-09-09 Pedro Alves <palves@redhat.com>
2966
2967 * inf-loop.c (inferior_event_handler): Delete INF_TIMER case.
2968 * target.h (enum inferior_event_type) <INF_TIMER>: Delete.
2969
2970 2015-09-09 Pedro Alves <palves@redhat.com>
2971
2972 * continuations.c (add_continuation, restore_thread_cleanup)
2973 (do_all_continuations_ptid, do_all_continuations_thread_callback)
2974 (do_all_continuations_thread, do_all_continuations)
2975 (discard_all_continuations_thread_callback)
2976 (discard_all_continuations_thread, discard_all_continuations)
2977 (add_intermediate_continuation)
2978 (do_all_intermediate_continuations_thread_callback)
2979 (do_all_intermediate_continuations_thread)
2980 (do_all_intermediate_continuations)
2981 (discard_all_intermediate_continuations_thread_callback)
2982 (discard_all_intermediate_continuations_thread)
2983 (discard_all_intermediate_continuations): Delete.
2984 * continuations.h (add_continuation, do_all_continuations)
2985 (do_all_continuations_thread, discard_all_continuations)
2986 (discard_all_continuations_thread, add_intermediate_continuation)
2987 (do_all_intermediate_continuations)
2988 (do_all_intermediate_continuations_thread)
2989 (discard_all_intermediate_continuations)
2990 (discard_all_intermediate_continuations_thread): Delete
2991 declarations.
2992 * event-top.c (stdin_event_handler): Delete references to
2993 continuations.
2994 * gdbthread.h (struct thread_info): Delete continuations and
2995 intermediate_continuations fields.
2996 * inf-loop.c (inferior_event_handler): Remove references to
2997 continuations.
2998 * infrun.c (infrun_thread_stop_requested_callback): Remove
2999 references to continuations.
3000 * target.h (enum inferior_event_type) <INF_EXEC_CONTINUE>: Delete.
3001 * thread.c: Don't include "continuations.h".
3002 (clear_thread_inferior_resources): Remove references to
3003 continuations.
3004
3005 2015-09-09 Pedro Alves <palves@redhat.com>
3006
3007 * infcall.c (struct dummy_frame_context_saver): Delete.
3008 (dummy_frame_context_saver_free, dummy_frame_context_saver_dtor)
3009 (dummy_frame_context_saver_drop)
3010 (dummy_frame_context_saver_cleanup)
3011 (dummy_frame_context_saver_get_regs)
3012 (dummy_frame_context_saver_setup): Delete.
3013 * infcall.h (dummy_frame_context_saver_drop)
3014 (dummy_frame_context_saver_cleanup)
3015 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver):
3016 Delete.
3017 (get_return_value): Remove 'ctx_saver' paremeter. Adjust.
3018 * inferior.h (get_return_value): Remove 'ctx_saver' paremeter.
3019 * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Adjust.
3020
3021 2015-09-09 Pedro Alves <palves@redhat.com>
3022
3023 * breakpoint.c: Include "thread-fsm.h".
3024 (struct until_break_command_continuation_args): Delete.
3025 (struct until_break_fsm): New.
3026 (until_break_fsm_ops): New global.
3027 (new_until_break_fsm, until_break_fsm_should_stop): New functions.
3028 (until_break_command_continuation): Delete.
3029 (until_break_fsm_clean_up): New function.
3030 (until_break_fsm_async_reply_reason): New function.
3031 (until_break_command): Adjust to create an until_break_fsm instead
3032 of a continuation.
3033 (momentary_bkpt_print_it): No longer print MI's async-stop-reason
3034 here.
3035 * infcmd.c (struct until_next_fsm): New.
3036 (until_next_fsm_ops): New global.
3037 (new_until_next_fsm, until_next_fsm_should_stop): New function.
3038 (until_next_continuation): Delete.
3039 (until_next_fsm_clean_up, until_next_fsm_async_reply_reason): New
3040 functions.
3041 (until_next_command): Adjust to create a new until_next_fsm
3042 instead of a continuation.
3043
3044 2015-09-09 Pedro Alves <palves@redhat.com>
3045
3046 * infcall.c: Include thread_fsm.h.
3047 (struct call_return_meta_info): New.
3048 (get_call_return_value): New function, factored out from
3049 call_function_by_hand_dummy.
3050 (struct call_thread_fsm): New.
3051 (call_thread_fsm_ops): New global.
3052 (new_call_thread_fsm, call_thread_fsm_should_stop)
3053 (call_thread_fsm_should_notify_stop): New functions.
3054 (run_inferior_call): Add 'sm' parameter. Associate the FSM with
3055 the thread.
3056 (call_function_by_hand_dummy): Create a new call_thread_fsm
3057 instance, associate it with the thread, and wait for the FSM to
3058 finish. If finished successfully, fetch the function's result
3059 value out of the FSM.
3060 * infrun.c (fetch_inferior_event): If the FSM says the stop
3061 shouldn't be notified, don't call normal_stop.
3062 (maybe_remove_breakpoints): New function, factored out from ...
3063 (normal_stop): ... here. Simplify.
3064 * infrun.h (maybe_remove_breakpoints): Declare.
3065 * thread-fsm.c (thread_fsm_should_notify_stop): New function.
3066 (thread-fsm.h) <struct thread_fsm_ops>: New field.
3067 (thread_fsm_should_notify_stop): Declare.
3068
3069 2015-09-09 Pedro Alves <palves@redhat.com>
3070
3071 * Makefile.in (COMMON_OBS): Add thread-fsm.o.
3072 * breakpoint.c (handle_jit_event): Print debug output.
3073 (bpstat_what): Split event callback handling to ...
3074 (bpstat_run_callbacks): ... this new function.
3075 (momentary_bkpt_print_it): No longer handle bp_finish here.
3076 * breakpoint.h (bpstat_run_callbacks): Declare.
3077 * gdbthread.h (struct thread_info) <step_multi>: Delete field.
3078 <thread_fsm>: New field.
3079 (thread_cancel_execution_command): Declare.
3080 * infcmd.c: Include thread-fsm.h.
3081 (struct step_command_fsm): New.
3082 (step_command_fsm_ops): New global.
3083 (new_step_command_fsm, step_command_fsm_prepare): New functions.
3084 (step_1): Adjust to use step_command_fsm_prepare and
3085 prepare_one_step.
3086 (struct step_1_continuation_args): Delete.
3087 (step_1_continuation): Delete.
3088 (step_command_fsm_should_stop): New function.
3089 (step_once): Delete.
3090 (step_command_fsm_clean_up, step_command_fsm_async_reply_reason)
3091 (prepare_one_step): New function, based on step_once.
3092 (until_next_command): Remove step_multi reference.
3093 (struct return_value_info): New.
3094 (print_return_value): Rename to ...
3095 (print_return_value_1): ... this. New struct return_value_info
3096 parameter. Adjust.
3097 (print_return_value): Reimplement as wrapper around
3098 print_return_value_1.
3099 (struct finish_command_fsm): New.
3100 (finish_command_continuation): Delete.
3101 (finish_command_fsm_ops): New global.
3102 (new_finish_command_fsm, finish_command_fsm_should_stop): New
3103 functions.
3104 (finish_command_fsm_clean_up, finish_command_fsm_return_value):
3105 New.
3106 (finish_command_continuation_free_arg): Delete.
3107 (finish_command_fsm_async_reply_reason): New.
3108 (finish_backward, finish_forward): Change symbol parameter to a
3109 finish_command_fsm. Adjust.
3110 (finish_command): Create a finish_command_fsm. Adjust.
3111 * infrun.c: Include "thread-fsm.h".
3112 (clear_proceed_status_thread): Delete the thread's FSM.
3113 (infrun_thread_stop_requested_callback): Cancel the thread's
3114 execution command.
3115 (clean_up_just_stopped_threads_fsms): New function.
3116 (fetch_inferior_event): Handle the event_thread's should_stop
3117 method saying the command isn't done yet.
3118 (process_event_stop_test): Run breakpoint callbacks here.
3119 (print_stop_event): Rename to ...
3120 (print_stop_location): ... this.
3121 (restore_current_uiout_cleanup): New function.
3122 (print_stop_event): Reimplement.
3123 (normal_stop): No longer notify the end_stepping_range observers
3124 here handle "step N" nor "finish" here. No longer call
3125 print_stop_event here.
3126 * infrun.h (struct return_value_info): Forward declare.
3127 (print_return_value): Declare.
3128 (print_stop_event): Change prototype.
3129 * thread-fsm.c: New file.
3130 * thread-fsm.h: New file.
3131 * thread.c: Include "thread-fsm.h".
3132 (thread_cancel_execution_command): New function.
3133 (clear_thread_inferior_resources): Call it.
3134 * cli/cli-interp.c (cli_on_normal_stop): New function.
3135 (cli_interpreter_init): Install cli_on_normal_stop as normal_stop
3136 observer.
3137 * mi/mi-interp.c: Include "thread-fsm.h".
3138 (restore_current_uiout_cleanup): Delete.
3139 (mi_on_normal_stop): If the thread has an FSM associated, and it
3140 finished, ask it for the async-reply-reason to print. Always call
3141 print_stop_event here, regardless of the top-level interpreter.
3142 Check bpstat_what to tell whether an asynchronous breakpoint hit
3143 triggered.
3144 * tui/tui-interp.c (tui_on_normal_stop): New function.
3145 (tui_init): Install tui_on_normal_stop as normal_stop observer.
3146
3147 2015-09-09 Pedro Alves <palves@redhat.com>
3148
3149 * breakpoint.c (bpstat_do_actions_1, until_break_command): Don't
3150 check whether the target can async.
3151 * inf-loop.c (inferior_event_handler): Only call target_async if
3152 the target can async.
3153 * infcall.c: Include top.h and interps.h.
3154 (run_inferior_call): For the interpreter to sync mode while
3155 running the infcall. Call wait_sync_command_done instead of
3156 wait_for_inferior plus normal_stop.
3157 * infcmd.c (prepare_execution_command): Don't check whether the
3158 target can async when running in the foreground.
3159 (step_1): Delete synchronous case handling.
3160 (step_once): Always install a continuation, even in sync mode.
3161 (until_next_command, finish_forward): Don't check whether the
3162 target can async.
3163 (attach_command_post_wait, notice_new_inferior): Always install a
3164 continuation, even in sync mode.
3165 * infrun.c (mark_infrun_async_event_handler): New function.
3166 (proceed): In sync mode, mark infrun's event source instead of
3167 waiting for events here.
3168 (fetch_inferior_event): If the target can't async, do a blocking
3169 wait.
3170 (prepare_to_wait): In sync mode, mark infrun's event source.
3171 (infrun_async_inferior_event_handler): No longer bail out if the
3172 target can't async.
3173 * infrun.h (mark_infrun_async_event_handler): New declaration.
3174 * linux-nat.c (linux_nat_wait_1): Remove calls to
3175 set_sigint_trap/clear_sigint_trap.
3176 (linux_nat_terminal_inferior): No longer check whether the target
3177 can async.
3178 * mi/mi-interp.c (mi_on_sync_execution_done): Update and simplify
3179 comment.
3180 (mi_execute_command_input_handler): No longer check whether the
3181 target is async. Update and simplify comment.
3182 * target.c (default_target_wait): New function.
3183 * target.h (struct target_ops) <to_wait>: Now defaults to
3184 default_target_wait.
3185 (default_target_wait): Declare.
3186 * top.c (wait_sync_command_done): New function, factored out from
3187 ...
3188 (maybe_wait_sync_command_done): ... this.
3189 * top.h (wait_sync_command_done): Declare.
3190 * target-delegates.c: Regenerate.
3191
3192 2015-09-09 Markus Metzger <markus.t.metzger@intel.com>
3193
3194 * nat/linux-btrace.h (struct btrace_target_info) <ptr_bits>: Remove.
3195 * nat/linux-btrace.c: Include filestuff.h and inttypes.h.
3196 Remove include of sys/utsname.h.
3197 (linux_determine_kernel_ptr_bits): Remove.
3198 (linux_determine_kernel_start): New.
3199 (perf_event_is_kernel_addr): Remove tinfo argument. Update users.
3200 Update check.
3201 (perf_event_skip_bts_record): Remove tinfo argument. Update users.
3202 (linux_enable_bts, linux_enable_pt): Remove tinfo->ptr_bits
3203 initialization.
3204 * x86-linux-nat.c (x86_linux_enable_btrace): Remove ptr_bits
3205 assignment.
3206
3207 2015-09-07 Pedro Alves <palves@redhat.com>
3208
3209 * guile/guile-internal.h (as_a_scm_t_subr): New.
3210 * guile/guile.c (misc_guile_functions): Use it.
3211 * guile/scm-arch.c (arch_functions): Use it.
3212 * guile/scm-block.c (block_functions, gdbscm_initialize_blocks):
3213 Use it.
3214 * guile/scm-breakpoint.c (breakpoint_functions): Use it.
3215 * guile/scm-cmd.c (command_functions): Use it.
3216 * guile/scm-disasm.c (disasm_functions): Use it.
3217 * guile/scm-exception.c (exception_functions)
3218 (private_exception_functions): Use it.
3219 * guile/scm-frame.c (frame_functions)
3220 * guile/scm-gsmob.c (gsmob_functions): Use it.
3221 * guile/scm-iterator.c (iterator_functions): Use it.
3222 * guile/scm-lazy-string.c (lazy_string_functions): Use it.
3223 * guile/scm-math.c (math_functions): Use it.
3224 * guile/scm-objfile.c (objfile_functions): Use it.
3225 * guile/scm-param.c (parameter_functions): Use it.
3226 * guile/scm-ports.c (port_functions, private_port_functions): Use
3227 it.
3228 * guile/scm-pretty-print.c (pretty_printer_functions): Use it.
3229 * guile/scm-progspace.c (pspace_functions): Use it.
3230 * guile/scm-string.c (string_functions): Use it.
3231 * guile/scm-symbol.c (symbol_functions): Use it.
3232 * guile/scm-symtab.c (symtab_functions): Use it.
3233 * guile/scm-type.c (type_functions, gdbscm_initialize_types): Use
3234 it.
3235 * guile/scm-value.c (value_functions): Use it.
3236
3237 2015-09-04 Andrew Burgess <andrew.burgess@embecosm.com>
3238
3239 * tui/tui-data.c (win_with_focus): Remove cast of NULL pointer.
3240 (tui_next_win): Likewise.
3241 (tui_prev_win): Likewise.
3242 (tui_partial_win_by_name): Likewise.
3243 (tui_init_generic_part): Likewise.
3244 (init_content_element): Likewise.
3245 (tui_del_window): Likewise.
3246 (tui_free_window): Likewise.
3247 (tui_del_data_windows): Likewise.
3248 (tui_free_data_content): Likewise.
3249 * tui/tui-layout.c (make_source_or_disasm_window): Likewise.
3250 * tui/tui-regs.c (tui_show_register_group): Likewise.
3251 * tui/tui-win.c (tui_resize_all): Likewise.
3252 (tui_set_focus): Likewise.
3253 (tui_set_win_height): Likewise.
3254 (make_invisible_and_set_new_height): Likewise.
3255 * tui/tui-windata.c (tui_delete_data_content_windows): Likewise.
3256 * tui/tui-wingeneral.c (make_visible): Likewise.
3257
3258 2015-09-04 Andrew Burgess <andrew.burgess@embecosm.com>
3259
3260 * cli/cli-decode.c (find_cmd): Remove cast of NULL pointer.
3261
3262 2015-09-04 Andrew Burgess <andrew.burgess@embecosm.com>
3263
3264 * c-valprint.c (print_unpacked_pointer): Remove cast of NULL
3265 pointer.
3266 * dbxread.c (dbx_end_psymtab): Likewise.
3267 * gnu-nat.c (gnu_write_inferior): Likewise.
3268 * mdebugread.c (cross_ref): Likewise.
3269 * p-valprint.c (pascal_val_print): Likewise.
3270 * xcoffread.c (xcoff_end_psymtab): Likewise.
3271
3272 2015-09-04 Yao Qi <yao.qi@linaro.org>
3273
3274 * NEWS: Mention the aarch64 multi-arch debugging support.
3275
3276 2015-09-03 Pierre-Marie de Rodat <derodat@adacore.com>
3277
3278 * ada-lang.c (ada_language_arch_info): Create a TYPE_CODE_CHAR
3279 type instead of a TYPE_CODE_INT one for the string_char_type
3280 and the ada_primitive_type_char types.
3281
3282 2015-09-03 Yao Qi <yao.qi@linaro.org>
3283
3284 * aarch64-linux-nat.c (aarch64_linux_region_ok_for_hw_watchpoint):
3285 Move code to aarch64_linux_region_ok_for_watchpoint. Call
3286 aarch64_linux_region_ok_for_watchpoint.
3287 * nat/aarch64-linux-hw-point.c (aarch64_linux_region_ok_for_watchpoint):
3288 New function.
3289 * nat/aarch64-linux-hw-point.h (aarch64_linux_region_ok_for_watchpoint):
3290 Declare it.
3291
3292 2015-09-02 Patrick Palka <patrick@parcs.ath.cx>
3293
3294 * gdb_obstack.h (obstack_strdup): Declare.
3295 * gdb_obstack.c (obstack_strdup): Define.
3296 * gdbarch.sh (gdbarch_obstack_strdup): Declare and define.
3297 * gdbarch.c: Regenerate.
3298 * gdbarch.h: Regenerate.
3299 * gdbtypes.c (arch_type): Use gdbarch_obstack_strdup.
3300
3301 2015-09-02 Patrick Palka <patrick@parcs.ath.cx>
3302
3303 * gdbtypes.c (copy_type_recursive): Update documentation.
3304
3305 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
3306
3307 * solib-svr4.c (solib_event_probe_action): Initialize 'probe_argc'
3308 as zero.
3309
3310 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
3311
3312 * solib-svr4.c (svr4_handle_solib_event): Initialize 'val' as NULL
3313
3314 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
3315
3316 * solib-svr4.c (solib_event_probe_action): Call
3317 get_probe_argument_count using TRY...CATCH.
3318 (svr4_handle_solib_event): Likewise, for evaluate_probe_argument.
3319
3320 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
3321
3322 * probe.h (struct probe_ops) <get_probe_argument_count,
3323 evaluate_probe_argument, enable_probe, disable_probe>: Mention in
3324 the comment that the function can throw an exception.
3325 (get_probe_argument_count): Likewise.
3326 (evaluate_probe_argument): Likewise.
3327 * stap-probe.c (stap_get_opcode): Call error instead of
3328 internal_error.
3329 (stap_get_expected_argument_type): Likewise. Add argument
3330 'probe'. Improve error message by mentioning the probe's name.
3331 (stap_parse_probe_arguments): Adjust call to
3332 stap_get_expected_argument_type.
3333 (stap_get_arg): Add comment. Assert that 'probe->args_parsed' is
3334 not zero. Call internal_error if GDB requests an argument but the
3335 probe has no arguments.
3336
3337 2015-09-01 Pierre-Marie de Rodat <derodat@adacore.com>
3338
3339 * ada-lang.c (ada_resolve_function): Do not ask the user what
3340 match to use when in completion mode.
3341
3342 2015-08-31 Andrew Burgess <andrew.burgess@embecosm.com>
3343
3344 * tui/tui-data.c (tui_win_name): Make local variable const, remove
3345 cast of NULL.
3346
3347 2015-08-31 Max Filippov <jcmvbkbc@gmail.com>
3348
3349 * xtensa-tdep.h (XTENSA_GDBARCH_TDEP_INSTANTIATE): Initialize
3350 call_abi using XSHAL_ABI macro.
3351
3352 2015-08-29 Doug Evans <xdje42@gmail.com>
3353
3354 * symtab.h (struct symbol): Tweak comment.
3355
3356 2015-08-29 Patrick Palka <patrick@parcs.ath.cx>
3357
3358 * gdbtypes.c (alloc_type_arch): Allocate the type on the given
3359 gdbarch obstack instead of on the heap. Update commentary
3360 accordingly.
3361
3362 2015-08-28 Joel Brobecker <brobecker@adacore.com>
3363
3364 GDB 7.10 released.
3365
3366 2015-08-28 Simon Marchi <simon.marchi@ericsson.com>
3367
3368 * NEWS: Update entry about non-8-bits addressable memory.
3369
3370 2015-08-28 Ulrich Weigand <uweigand@de.ibm.com>
3371
3372 Revert:
3373 2014-11-06 Doug Evans <xdje42@gmail.com>
3374 * solib.c (solib_global_lookup): Fetch arch from objfile,
3375 not target_gdbarch.
3376
3377 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
3378
3379 * ppc-linux-tdep.c (ppc_linux_spe_context_lookup): Do not
3380 attempt to relocate a TLS variable offset.
3381
3382 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
3383
3384 * spu-multiarch.c (parse_spufs_run): Bail out if inferior is not
3385 registered yet. Set inferior_ptid while calling target_read_memory.
3386
3387 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
3388
3389 * nat/linux-ptrace.h (GDB_ARCH_TRAP_BRKPT): Replace by ...
3390 (GDB_ARCH_IS_TRAP_BRKPT): ... this. Add __powerpc__ case.
3391 * linux-nat.c (check_stopped_by_breakpoint): Use
3392 GDB_ARCH_IS_TRAP_BRKPT instead of GDB_ARCH_TRAP_BRKPT.
3393
3394 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
3395
3396 * linux-thread-db.c (thread_db_get_thread_local_address): If the
3397 thread was not yet discovered, use thread_from_lwp instead of
3398 calling thread_db_find_new_threads_1.
3399
3400 2015-08-27 Simon Marchi <simon.marchi@ericsson.com>
3401
3402 * m88k-tdep.c (m88k_analyze_prologue): Fix inverted allocation
3403 statements.
3404
3405 2015-08-27 Simon Marchi <simon.marchi@ericsson.com>
3406
3407 * NEWS: Document support for non-8-bits addressable memory.
3408
3409 2015-08-27 Pedro Alves <palves@redhat.com>
3410
3411 * configure.ac: Remove AC_TYPE_SIGNAL call.
3412 * configure, config.in: Regenerate.
3413
3414 2015-08-27 Pedro Alves <palves@redhat.com>
3415
3416 * cp-support.c (gdb_demangle): Use sighandler_t. Remove cast.
3417 * extension-priv.h: Include signal.h.
3418 (struct signal_handler) <handler>: Change type to sighandler_t.
3419 * extension.c (install_gdb_sigint_handler): Use sighandler_t.
3420 * inflow.c (sigint_ours, sigquit_ours): Change type to
3421 sighandler_t.
3422 (child_terminal_inferior): Remove casts.
3423 (child_terminal_ours_1, new_tty): Use sighandler_t. Remove casts.
3424 (osig): Change type to sighandler_t.
3425 * nto-procfs.c (ofunc): Change type to sighandler_t.
3426 (procfs_wait): Remove casts.
3427 * remote-m32r-sdi.c (m32r_wait, m32r_load): Use sighandler_t.
3428 * remote-sim.c (gdbsim_wait): Use sighandler_t.
3429 * utils.c (wait_to_die_with_timeout): Use sighandler_t.
3430
3431 2015-08-27 Pedro Alves <palves@redhat.com>
3432
3433 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add signal-h.
3434 * gnulib/aclocal.m4: Renegerate.
3435 * gnulib/config.in: Renegerate.
3436 * gnulib/configure: Renegerate.
3437 * gnulib/import/Makefile.am: Update.
3438 * gnulib/import/Makefile.in: Regenerate.
3439 * gnulib/import/m4/gnulib-cache.m4: Update.
3440 * gnulib/import/m4/gnulib-comp.m4: Update.
3441 * gnulib/import/m4/signal_h.m4: New file.
3442 * gnulib/import/signal.in.h: New file.
3443
3444 2015-08-27 Pedro Alves <palves@redhat.com>
3445
3446 * remote.c (DEFAULT_MAX_MEMORY_PACKET_SIZE)
3447 (MIN_MEMORY_PACKET_SIZE): New.
3448 (MAX_REMOTE_PACKET_SIZE, MIN_REMOTE_PACKET_SIZE): Delete.
3449 (get_memory_packet_size): Adjust. No longer limit the max packet
3450 size.
3451 (set_memory_packet_size): Adjust, and remove dead code.
3452 (remote_check_symbols): Use xmalloc and a cleanup instead of
3453 alloca.
3454 (remote_packet_size): No longer cap the packet size.
3455 (putpkt_binary): Use xmalloc and a cleanup instead of alloca.
3456
3457 2015-08-26 Luis Machado <lgustavo@codesourcery.com>
3458
3459 * compile/compile.c (compile_to_object): Mention language in
3460 error message.
3461
3462 2015-08-26 Patrick Palka <patrick@parcs.ath.cx>
3463
3464 * target.c (target_pre_inferior): Unset attach_flag.
3465
3466 2015-08-26 Simon Marchi <simon.marchi@ericsson.com>
3467
3468 * gdbarch.sh (append_name): Fix type in XRESIZEVEC.
3469 * gdbarch.c: Re-generate.
3470
3471 2015-08-26 Simon Marchi <simon.marchi@ericsson.com>
3472
3473 * aarch64-linux-nat.c (aarch64_add_process): Replace xmalloc-family
3474 function with the XNEW-family equivalent.
3475 * aarch64-tdep.c (aarch64_gdbarch_init): Likewise.
3476 * ada-exp.y (write_ambiguous_var): Likewise.
3477 * ada-lang.c (resolve_subexp): Likewise.
3478 (user_select_syms): Likewise.
3479 (assign_aggregate): Likewise.
3480 (ada_evaluate_subexp): Likewise.
3481 (cache_symbol): Likewise.
3482 * addrmap.c (allocate_key): Likewise.
3483 (addrmap_create_mutable): Likewise.
3484 * aix-thread.c (sync_threadlists): Likewise.
3485 * alpha-tdep.c (alpha_push_dummy_call): Likewise.
3486 (alpha_gdbarch_init): Likewise.
3487 * amd64-windows-tdep.c (amd64_windows_push_arguments): Likewise.
3488 * arm-linux-nat.c (arm_linux_add_process): Likewise.
3489 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
3490 * arm-tdep.c (push_stack_item): Likewise.
3491 (arm_displaced_step_copy_insn): Likewise.
3492 (arm_gdbarch_init): Likewise.
3493 (_initialize_arm_tdep): Likewise.
3494 * avr-tdep.c (push_stack_item): Likewise.
3495 * ax-general.c (new_agent_expr): Likewise.
3496 * block.c (block_initialize_namespace): Likewise.
3497 * breakpoint.c (alloc_counted_command_line): Likewise.
3498 (update_dprintf_command_list): Likewise.
3499 (parse_breakpoint_sals): Likewise.
3500 (decode_static_tracepoint_spec): Likewise.
3501 (until_break_command): Likewise.
3502 (clear_command): Likewise.
3503 (update_global_location_list): Likewise.
3504 (get_breakpoint_objfile_data) Likewise.
3505 * btrace.c (ftrace_new_function): Likewise.
3506 (btrace_set_insn_history): Likewise.
3507 (btrace_set_call_history): Likewise.
3508 * buildsym.c (add_symbol_to_list): Likewise.
3509 (record_pending_block): Likewise.
3510 (start_subfile): Likewise.
3511 (start_buildsym_compunit): Likewise.
3512 (push_subfile): Likewise.
3513 (end_symtab_get_static_block): Likewise.
3514 (buildsym_init): Likewise.
3515 * cli/cli-cmds.c (source_command): Likewise.
3516 * cli/cli-decode.c (add_cmd): Likewise.
3517 * cli/cli-script.c (build_command_line): Likewise.
3518 (setup_user_args): Likewise.
3519 (realloc_body_list): Likewise.
3520 (process_next_line): Likewise.
3521 (copy_command_lines): Likewise.
3522 * cli/cli-setshow.c (do_set_command): Likewise.
3523 * coff-pe-read.c (read_pe_exported_syms): Likewise.
3524 * coffread.c (coff_locate_sections): Likewise.
3525 (coff_symtab_read): Likewise.
3526 (coff_read_struct_type): Likewise.
3527 * common/cleanups.c (make_my_cleanup2): Likewise.
3528 * common/common-exceptions.c (throw_it): Likewise.
3529 * common/filestuff.c (make_cleanup_close): Likewise.
3530 * common/format.c (parse_format_string): Likewise.
3531 * common/queue.h (DEFINE_QUEUE_P): Likewise.
3532 * compile/compile-object-load.c (munmap_list_add): Likewise.
3533 (compile_object_load): Likewise.
3534 * compile/compile-object-run.c (compile_object_run): Likewise.
3535 * compile/compile.c (append_args): Likewise.
3536 * corefile.c (specify_exec_file_hook): Likewise.
3537 * cp-support.c (make_symbol_overload_list): Likewise.
3538 * cris-tdep.c (push_stack_item): Likewise.
3539 (cris_gdbarch_init): Likewise.
3540 * ctf.c (ctf_trace_file_writer_new): Likewise.
3541 * dbxread.c (init_header_files): Likewise.
3542 (add_new_header_file): Likewise.
3543 (init_bincl_list): Likewise.
3544 (dbx_end_psymtab): Likewise.
3545 (start_psymtab): Likewise.
3546 (dbx_end_psymtab): Likewise.
3547 * dcache.c (dcache_init): Likewise.
3548 * dictionary.c (dict_create_hashed): Likewise.
3549 (dict_create_hashed_expandable): Likewise.
3550 (dict_create_linear): Likewise.
3551 (dict_create_linear_expandable): Likewise.
3552 * dtrace-probe.c (dtrace_process_dof_probe): Likewise.
3553 * dummy-frame.c (register_dummy_frame_dtor): Likewise.
3554 * dwarf2-frame-tailcall.c (cache_new_ref1): Likewise.
3555 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
3556 (decode_frame_entry_1): Likewise.
3557 * dwarf2expr.c (new_dwarf_expr_context): Likewise.
3558 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
3559 * dwarf2read.c (dwarf2_has_info): Likewise.
3560 (create_signatured_type_table_from_index): Likewise.
3561 (dwarf2_read_index): Likewise.
3562 (dw2_get_file_names_reader): Likewise.
3563 (create_all_type_units): Likewise.
3564 (read_cutu_die_from_dwo): Likewise.
3565 (init_tu_and_read_dwo_dies): Likewise.
3566 (init_cutu_and_read_dies): Likewise.
3567 (create_all_comp_units): Likewise.
3568 (queue_comp_unit): Likewise.
3569 (inherit_abstract_dies): Likewise.
3570 (read_call_site_scope): Likewise.
3571 (dwarf2_add_field): Likewise.
3572 (dwarf2_add_typedef): Likewise.
3573 (dwarf2_add_member_fn): Likewise.
3574 (attr_to_dynamic_prop): Likewise.
3575 (abbrev_table_alloc_abbrev): Likewise.
3576 (abbrev_table_read_table): Likewise.
3577 (add_include_dir): Likewise.
3578 (add_file_name): Likewise.
3579 (dwarf_decode_line_header): Likewise.
3580 (dwarf2_const_value_attr): Likewise.
3581 (dwarf_alloc_block): Likewise.
3582 (parse_macro_definition): Likewise.
3583 (set_die_type): Likewise.
3584 (write_psymtabs_to_index): Likewise.
3585 (create_cus_from_index): Likewise.
3586 (dwarf2_create_include_psymtab): Likewise.
3587 (process_psymtab_comp_unit_reader): Likewise.
3588 (build_type_psymtab_dependencies): Likewise.
3589 (read_comp_units_from_section): Likewise.
3590 (compute_compunit_symtab_includes): Likewise.
3591 (create_dwo_unit_in_dwp_v1): Likewise.
3592 (create_dwo_unit_in_dwp_v2): Likewise.
3593 (read_func_scope): Likewise.
3594 (process_structure_scope): Likewise.
3595 (mark_common_block_symbol_computed): Likewise.
3596 (load_partial_dies): Likewise.
3597 (dwarf2_symbol_mark_computed): Likewise.
3598 * elfread.c (elf_symfile_segments): Likewise.
3599 (elf_read_minimal_symbols): Likewise.
3600 * environ.c (make_environ): Likewise.
3601 * eval.c (evaluate_subexp_standard): Likewise.
3602 * event-loop.c (create_file_handler): Likewise.
3603 (create_async_signal_handler): Likewise.
3604 (create_async_event_handler): Likewise.
3605 (create_timer): Likewise.
3606 * exec.c (build_section_table): Likewise.
3607 * fbsd-nat.c (fbsd_remember_child): Likewise.
3608 * fork-child.c (fork_inferior): Likewise.
3609 * frv-tdep.c (new_variant): Likewise.
3610 * gdbarch.sh (gdbarch_alloc): Likewise.
3611 (append_name): Likewise.
3612 * gdbtypes.c (rank_function): Likewise.
3613 (copy_type_recursive): Likewise.
3614 (add_dyn_prop): Likewise.
3615 * gnu-nat.c (make_proc): Likewise.
3616 (make_inf): Likewise.
3617 (gnu_write_inferior): Likewise.
3618 * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
3619 (build_std_type_info_type): Likewise.
3620 * guile/scm-param.c (compute_enum_list): Likewise.
3621 * guile/scm-utils.c (gdbscm_parse_function_args): Likewise.
3622 * guile/scm-value.c (gdbscm_value_call): Likewise.
3623 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
3624 * hppa-tdep.c (hppa_init_objfile_priv_data): Likewise.
3625 (read_unwind_info): Likewise.
3626 * ia64-tdep.c (ia64_gdbarch_init): Likewise.
3627 * infcall.c (dummy_frame_context_saver_setup): Likewise.
3628 (call_function_by_hand_dummy): Likewise.
3629 * infcmd.c (step_once): Likewise.
3630 (finish_forward): Likewise.
3631 (attach_command): Likewise.
3632 (notice_new_inferior): Likewise.
3633 * inferior.c (add_inferior_silent): Likewise.
3634 * infrun.c (add_displaced_stepping_state): Likewise.
3635 (save_infcall_control_state): Likewise.
3636 (save_inferior_ptid): Likewise.
3637 (_initialize_infrun): Likewise.
3638 * jit.c (bfd_open_from_target_memory): Likewise.
3639 (jit_gdbarch_data_init): Likewise.
3640 * language.c (add_language): Likewise.
3641 * linespec.c (decode_line_2): Likewise.
3642 * linux-nat.c (add_to_pid_list): Likewise.
3643 (add_initial_lwp): Likewise.
3644 * linux-thread-db.c (add_thread_db_info): Likewise.
3645 (record_thread): Likewise.
3646 (info_auto_load_libthread_db): Likewise.
3647 * m32c-tdep.c (m32c_gdbarch_init): Likewise.
3648 * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
3649 * m68k-tdep.c (m68k_gdbarch_init): Likewise.
3650 * m88k-tdep.c (m88k_analyze_prologue): Likewise.
3651 * macrocmd.c (macro_define_command): Likewise.
3652 * macroexp.c (gather_arguments): Likewise.
3653 * macroscope.c (sal_macro_scope): Likewise.
3654 * macrotab.c (new_macro_table): Likewise.
3655 * mdebugread.c (push_parse_stack): Likewise.
3656 (parse_partial_symbols): Likewise.
3657 (parse_symbol): Likewise.
3658 (psymtab_to_symtab_1): Likewise.
3659 (new_block): Likewise.
3660 (new_psymtab): Likewise.
3661 (mdebug_build_psymtabs): Likewise.
3662 (add_pending): Likewise.
3663 (elfmdebug_build_psymtabs): Likewise.
3664 * mep-tdep.c (mep_gdbarch_init): Likewise.
3665 * mi/mi-main.c (mi_execute_command): Likewise.
3666 * mi/mi-parse.c (mi_parse_argv): Likewise.
3667 * minidebug.c (lzma_open): Likewise.
3668 * minsyms.c (terminate_minimal_symbol_table): Likewise.
3669 * mips-linux-nat.c (mips_linux_insert_watchpoint): Likewise.
3670 * mips-tdep.c (mips_gdbarch_init): Likewise.
3671 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
3672 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
3673 * mt-tdep.c (mt_registers_info): Likewise.
3674 * nat/aarch64-linux.c (aarch64_linux_new_thread): Likewise.
3675 * nat/linux-btrace.c (linux_enable_bts): Likewise.
3676 (linux_enable_pt): Likewise.
3677 * nat/linux-osdata.c (linux_xfer_osdata_processes): Likewise.
3678 (linux_xfer_osdata_processgroups): Likewise.
3679 * nios2-tdep.c (nios2_gdbarch_init): Likewise.
3680 * nto-procfs.c (procfs_meminfo): Likewise.
3681 * objc-lang.c (start_msglist): Likewise.
3682 (selectors_info): Likewise.
3683 (classes_info): Likewise.
3684 (find_methods): Likewise.
3685 * objfiles.c (allocate_objfile): Likewise.
3686 (update_section_map): Likewise.
3687 * osabi.c (gdbarch_register_osabi): Likewise.
3688 (gdbarch_register_osabi_sniffer): Likewise.
3689 * parse.c (start_arglist): Likewise.
3690 * ppc-linux-nat.c (hwdebug_find_thread_points_by_tid): Likewise.
3691 (hwdebug_insert_point): Likewise.
3692 * printcmd.c (display_command): Likewise.
3693 (ui_printf): Likewise.
3694 * procfs.c (create_procinfo): Likewise.
3695 (load_syscalls): Likewise.
3696 (proc_get_LDT_entry): Likewise.
3697 (proc_update_threads): Likewise.
3698 * prologue-value.c (make_pv_area): Likewise.
3699 (pv_area_store): Likewise.
3700 * psymtab.c (extend_psymbol_list): Likewise.
3701 (init_psymbol_list): Likewise.
3702 (allocate_psymtab): Likewise.
3703 * python/py-inferior.c (add_thread_object): Likewise.
3704 * python/py-param.c (compute_enum_values): Likewise.
3705 * python/py-value.c (valpy_call): Likewise.
3706 * python/py-varobj.c (py_varobj_iter_next): Likewise.
3707 * python/python.c (ensure_python_env): Likewise.
3708 * record-btrace.c (record_btrace_start_replaying): Likewise.
3709 * record-full.c (record_full_reg_alloc): Likewise.
3710 (record_full_mem_alloc): Likewise.
3711 (record_full_end_alloc): Likewise.
3712 (record_full_core_xfer_partial): Likewise.
3713 * regcache.c (get_thread_arch_aspace_regcache): Likewise.
3714 * remote-fileio.c (remote_fileio_init_fd_map): Likewise.
3715 * remote-notif.c (remote_notif_state_allocate): Likewise.
3716 * remote.c (demand_private_info): Likewise.
3717 (remote_notif_stop_alloc_reply): Likewise.
3718 (remote_enable_btrace): Likewise.
3719 * reverse.c (save_bookmark_command): Likewise.
3720 * rl78-tdep.c (rl78_gdbarch_init): Likewise.
3721 * rx-tdep.c (rx_gdbarch_init): Likewise.
3722 * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
3723 * ser-go32.c (dos_get_tty_state): Likewise.
3724 (dos_copy_tty_state): Likewise.
3725 * ser-mingw.c (ser_windows_open): Likewise.
3726 (ser_console_wait_handle): Likewise.
3727 (ser_console_get_tty_state): Likewise.
3728 (make_pipe_state): Likewise.
3729 (net_windows_open): Likewise.
3730 * ser-unix.c (hardwire_get_tty_state): Likewise.
3731 (hardwire_copy_tty_state): Likewise.
3732 * solib-aix.c (solib_aix_new_lm_info): Likewise.
3733 * solib-dsbt.c (dsbt_current_sos): Likewise.
3734 (dsbt_relocate_main_executable): Likewise.
3735 * solib-frv.c (frv_current_sos): Likewise.
3736 (frv_relocate_main_executable): Likewise.
3737 * solib-spu.c (spu_bfd_fopen): Likewise.
3738 * solib-svr4.c (lm_info_read): Likewise.
3739 (svr4_copy_library_list): Likewise.
3740 (svr4_default_sos): Likewise.
3741 * source.c (find_source_lines): Likewise.
3742 (line_info): Likewise.
3743 (add_substitute_path_rule): Likewise.
3744 * spu-linux-nat.c (spu_bfd_open): Likewise.
3745 * spu-tdep.c (info_spu_dma_cmdlist): Likewise.
3746 * stabsread.c (dbx_lookup_type): Likewise.
3747 (read_type): Likewise.
3748 (read_member_functions): Likewise.
3749 (read_struct_fields): Likewise.
3750 (read_baseclasses): Likewise.
3751 (read_args): Likewise.
3752 (_initialize_stabsread): Likewise.
3753 * stack.c (func_command): Likewise.
3754 * stap-probe.c (handle_stap_probe): Likewise.
3755 * symfile.c (addrs_section_sort): Likewise.
3756 (addr_info_make_relative): Likewise.
3757 (load_section_callback): Likewise.
3758 (add_symbol_file_command): Likewise.
3759 (init_filename_language_table): Likewise.
3760 * symtab.c (create_filename_seen_cache): Likewise.
3761 (sort_search_symbols_remove_dups): Likewise.
3762 (search_symbols): Likewise.
3763 * target.c (make_cleanup_restore_target_terminal): Likewise.
3764 * thread.c (new_thread): Likewise.
3765 (enable_thread_stack_temporaries): Likewise.
3766 (make_cleanup_restore_current_thread): Likewise.
3767 (thread_apply_all_command): Likewise.
3768 * tic6x-tdep.c (tic6x_gdbarch_init): Likewise.
3769 * top.c (gdb_readline_wrapper): Likewise.
3770 * tracefile-tfile.c (tfile_trace_file_writer_new): Likewise.
3771 * tracepoint.c (trace_find_line_command): Likewise.
3772 (all_tracepoint_actions_and_cleanup): Likewise.
3773 (make_cleanup_restore_current_traceframe): Likewise.
3774 (get_uploaded_tp): Likewise.
3775 (get_uploaded_tsv): Likewise.
3776 * tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
3777 (tui_alloc_win_info): Likewise.
3778 (tui_alloc_content): Likewise.
3779 (tui_add_content_elements): Likewise.
3780 * tui/tui-disasm.c (tui_find_disassembly_address): Likewise.
3781 (tui_set_disassem_content): Likewise.
3782 * ui-file.c (ui_file_new): Likewise.
3783 (stdio_file_new): Likewise.
3784 (tee_file_new): Likewise.
3785 * utils.c (make_cleanup_restore_integer): Likewise.
3786 (add_internal_problem_command): Likewise.
3787 * v850-tdep.c (v850_gdbarch_init): Likewise.
3788 * valops.c (find_oload_champ): Likewise.
3789 * value.c (allocate_value_lazy): Likewise.
3790 (record_latest_value): Likewise.
3791 (create_internalvar): Likewise.
3792 * varobj.c (install_variable): Likewise.
3793 (new_variable): Likewise.
3794 (new_root_variable): Likewise.
3795 (cppush): Likewise.
3796 (_initialize_varobj): Likewise.
3797 * windows-nat.c (windows_make_so): Likewise.
3798 * x86-nat.c (x86_add_process): Likewise.
3799 * xcoffread.c (arrange_linetable): Likewise.
3800 (allocate_include_entry): Likewise.
3801 (process_linenos): Likewise.
3802 (SYMBOL_DUP): Likewise.
3803 (xcoff_start_psymtab): Likewise.
3804 (xcoff_end_psymtab): Likewise.
3805 * xml-support.c (gdb_xml_parse_attr_ulongest): Likewise.
3806 * xtensa-tdep.c (xtensa_register_type): Likewise.
3807 * gdbarch.c: Regenerate.
3808 * gdbarch.h: Regenerate.
3809
3810 2015-08-25 Don Breazeal <donb@codesourcery.com>
3811
3812 * infrun.c (follow_exec): Re-order operations for
3813 handling follow-exec-mode "new".
3814 (handle_inferior_event_1): Assign ecs->event_thread
3815 to the current thread.
3816 * remote.c (get_remote_arch_state): Add an assertion.
3817
3818 2015-08-26 Pedro Alves <palves@redhat.com>
3819
3820 * MAINTAINERS: Add Markus Metzger as btrace maintainer.
3821
3822 2015-08-25 Pedro Alves <palves@redhat.com>
3823
3824 PR gdb/18804
3825 * defs.h (maybe_quit): Declare.
3826 (QUIT): Now calls maybe_quit.
3827 * event-loop.c (clear_async_signal_handler)
3828 (async_signal_handler_is_marked): New functions.
3829 * event-loop.h (async_signal_handler_is_marked)
3830 (clear_async_signal_handler): New declarations.
3831 * remote.c (remote_check_pending_interrupt): New function.
3832 (interrupt_query): Use make_cleanup_restore_target_terminal. No
3833 longer check whether the target is async. If waiting for a stop
3834 reply, and a Ctrl-C as been sent to the target, offer to
3835 disconnect, and throw TARGET_CLOSE_ERROR instead of a quit.
3836 Otherwise do not disconnect and throw a quit.
3837 (_initialize_remote): Install remote_check_pending_interrupt as
3838 to_check_pending_interrupt.
3839 * target.c (target_check_pending_interrupt): New function.
3840 * target.h (struct target_ops) <to_check_pending_interrupt>: New
3841 field.
3842 (target_check_pending_interrupt): New declaration.
3843 * utils.c (maybe_quit): New function.
3844 * target-delegates.c: Regenerate.
3845
3846 2015-08-25 Yao Qi <yao.qi@linaro.org>
3847
3848 * nat/aarch64-linux-hw-point.c (debug_reg_change_callback):
3849 Rename local variable pid to tid, and get lwpid of lwp. Update
3850 debug output.
3851
3852 2015-08-25 Pierre-Marie de Rodat <derodat@adacore.com>
3853
3854 * ada-lang.c (ada_read_var_value): Add a var_block argument
3855 and pass it to default_read_var_value.
3856 * block.c (block_static_link): New accessor.
3857 * block.h (block_static_link): Declare it.
3858 * buildsym.c (finish_block_internal): Add a static_link
3859 argument. If there is a static link, associate it to the new
3860 block.
3861 (finish_block): Add a static link argument and pass it to
3862 finish_block_internal.
3863 (end_symtab_get_static_block): Update calls to finish_block and
3864 to finish_block_internal.
3865 (end_symtab_with_blockvector): Update call to
3866 finish_block_internal.
3867 * buildsym.h: Forward-declare struct dynamic_prop.
3868 (struct context_stack): Add a static_link field.
3869 (finish_block): Add a static link argument.
3870 * c-exp.y: Remove an obsolete comment (evaluation of variables
3871 already start from the selected frame, and now they climb *up*
3872 the call stack) and propagate the block information to the
3873 produced expression.
3874 * d-exp.y: Likewise.
3875 * f-exp.y: Likewise.
3876 * go-exp.y: Likewise.
3877 * jv-exp.y: Likewise.
3878 * m2-exp.y: Likewise.
3879 * p-exp.y: Likewise.
3880 * coffread.c (coff_symtab_read): Update calls to finish_block.
3881 * dbxread.c (process_one_symbol): Likewise.
3882 * xcoffread.c (read_xcoff_symtab): Likewise.
3883 * compile/compile-c-symbols.c (convert_one_symbol): Promote the
3884 "sym" parameter to struct block_symbol, update its uses and pass
3885 its block to calls to read_var_value.
3886 (convert_symbol_sym): Update the calls to convert_one_symbol.
3887 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update
3888 call to read_var_value.
3889 * dwarf2loc.c (block_op_get_frame_base): New.
3890 (dwarf2_block_frame_base_locexpr_funcs): Implement the
3891 get_frame_base method.
3892 (dwarf2_block_frame_base_loclist_funcs): Likewise.
3893 (dwarf2locexpr_baton_eval): Add a frame argument and use it
3894 instead of the selected frame in order to evaluate the
3895 expression.
3896 (dwarf2_evaluate_property): Add a frame argument. Update call
3897 to dwarf2_locexpr_baton_eval to provide a frame in available and
3898 to handle the absence of address stack.
3899 * dwarf2loc.h (dwarf2_evaluate_property): Add a frame argument.
3900 * dwarf2read.c (attr_to_dynamic_prop): Add a forward
3901 declaration.
3902 (read_func_scope): Record any available static link description.
3903 Update call to finish_block.
3904 (read_lexical_block_scope): Update call to finish_block.
3905 * findvar.c (follow_static_link): New.
3906 (get_hosting_frame): New.
3907 (default_read_var_value): Add a var_block argument. Use
3908 get_hosting_frame to handle non-local references.
3909 (read_var_value): Add a var_block argument and pass it to the
3910 LA_READ_VAR_VALUE method.
3911 * gdbtypes.c (resolve_dynamic_range): Update calls to
3912 dwarf2_evaluate_property.
3913 (resolve_dynamic_type_internal): Likewise.
3914 * guile/scm-frame.c (gdbscm_frame_read_var): Update call to
3915 read_var_value, passing it the block coming from symbol lookup.
3916 * guile/scm-symbol.c (gdbscm_symbol_value): Update call to
3917 read_var_value (TODO).
3918 * infcmd.c (finish_command_continuation): Update call to
3919 read_var_value, passing it the block coming from symbol lookup.
3920 * infrun.c (insert_exception_resume_breakpoint): Likewise.
3921 * language.h (struct language_defn): Add a var_block argument to
3922 the LA_READ_VAR_VALUE method.
3923 * objfiles.c (struct static_link_htab_entry): New.
3924 (static_link_htab_entry_hash): New.
3925 (static_link_htab_entry_eq): New.
3926 (objfile_register_static_link): New.
3927 (objfile_lookup_static_link): New.
3928 (free_objfile): Free the STATIC_LINKS hashed map if needed.
3929 * objfiles.h: Include hashtab.h.
3930 (struct objfile): Add a static_links field.
3931 (objfile_register_static_link): New.
3932 (objfile_lookup_static_link): New.
3933 * printcmd.c (print_variable_and_value): Update call to
3934 read_var_value.
3935 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
3936 * python/py-frame.c (frapy_read_var): Update call to
3937 read_var_value, passing it the block coming from symbol lookup.
3938 * python/py-framefilter.c (extract_sym): Add a sym_block
3939 parameter and set the pointed value to NULL (TODO).
3940 (enumerate_args): Update call to extract_sym.
3941 (enumerate_locals): Update calls to extract_sym and to
3942 read_var_value.
3943 * python/py-symbol.c (sympy_value): Update call to
3944 read_var_value (TODO).
3945 * stack.c (read_frame_local): Update call to read_var_value.
3946 (read_frame_arg): Likewise.
3947 (return_command): Likewise.
3948 * symtab.h (struct symbol_block_ops): Add a get_frame_base
3949 method.
3950 (struct symbol): Add a block field.
3951 (SYMBOL_BLOCK): New accessor.
3952 * valops.c (value_of_variable): Remove frame/block handling and
3953 pass the block argument to read_var_value, which does this job
3954 now.
3955 (value_struct_elt_for_reference): Update calls to
3956 read_var_value.
3957 (value_of_this): Pass the block found to read_var_value.
3958 * value.h (read_var_value): Add a var_block argument.
3959 (default_read_var_value): Likewise.
3960
3961 2015-08-25 Yao Qi <yao.qi@linaro.org>
3962
3963 * aarch64-linux-nat.c (aarch64_linux_new_thread): Move it to ...
3964 * nat/aarch64-linux.c (aarch64_linux_new_thread): ... here.
3965 * nat/aarch64-linux.h (aarch64_linux_new_thread): Declare.
3966
3967 2015-08-25 Yao Qi <yao.qi@linaro.org>
3968
3969 * Makefile.in (aarch64-liunx.o): New rule.
3970 (HFILES_NO_SRCDIR): Add aarch64-linux.h.
3971 * config/aarch64/linux.mh (NAT_FILE): Add aarch64-linux.o.
3972 * aarch64-linux-nat.c: Include nat/aarch64-linux.h.
3973 * aarch64-linux-nat.c (aarch64_get_debug_reg_state): Make it
3974 extern.
3975 (aarch64_linux_prepare_to_resume): Move it nat/aarch64-linux.c.
3976 * nat/aarch64-linux-hw-point.h (aarch64_debug_reg_state): Declare
3977 * nat/aarch64-linux.c: New file.
3978 * nat/aarch64-linux.h: New file.
3979
3980 2015-08-25 Yao Qi <yao.qi@linaro.org>
3981
3982 * aarch64-linux-nat.c (aarch64_linux_prepare_to_resume): Use
3983 lwp_arch_private_info and ptid_of_lwp.
3984
3985 2015-08-25 Yao Qi <yao.qi@linaro.org>
3986
3987 * aarch64-linux-nat.c (struct arch64_dr_update_callback_param):
3988 Move it to nat/aarch64-linux-hw-point.c.
3989 (debug_reg_change_callback): Likewise.
3990 (aarch64_notify_debug_reg_change): :Likewise.
3991 * nat/aarch64-linux-hw-point.c: Include nat/linux-nat.h.
3992 (aarch64_dr_update_callback_param): New.
3993 (debug_reg_change_callback): New function.
3994 (aarch64_notify_debug_reg_change): Likewise.
3995 * nat/aarch64-linux-hw-point.h (aarch64_notify_debug_reg_change):
3996 Remove the declaration.
3997
3998 2015-08-25 Yao Qi <yao.qi@linaro.org>
3999
4000 * aarch64-linux-nat.c (aarch64_notify_debug_reg_change):
4001 Call current_lwp_ptid.
4002
4003 2015-08-25 Yao Qi <yao.qi@linaro.org>
4004
4005 * aarch64-linux-nat.c (debug_reg_change_callback): Use
4006 debug_printf.
4007
4008 2015-08-25 Yao Qi <yao.qi@linaro.org>
4009
4010 * aarch64-linux-nat.c (debug_reg_change_callback): Call
4011 ptid_get_pid rather than ptid_get_lwp.
4012
4013 2015-08-24 Pedro Alves <palves@redhat.com>
4014
4015 * NEWS (New commands): Mention set/show remote
4016 multiprocess-extensions-packet.
4017 * remote.c (remote_query_supported): Only tell the server to use
4018 the multiprocess extensions if the user hasn't force-disabled them
4019 with "set remote multiprocess-extensions-packet off".
4020
4021 2015-08-24 Pedro Alves <palves@redhat.com>
4022
4023 * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
4024 1029a8112290f6eee9d7878a391c49db42c999bd.
4025 * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4:
4026 Regenerate.
4027 * gnulib/import/Makefile.am: Update.
4028 * gnulib/import/Makefile.in: Update.
4029 * gnulib/import/alloca.in.h: Update.
4030 * gnulib/import/basename-lgpl.c: Update.
4031 * gnulib/import/canonicalize-lgpl.c: Update.
4032 * gnulib/import/config.charset: Update.
4033 * gnulib/import/dirent.in.h: Update.
4034 * gnulib/import/dirfd.c: Update.
4035 * gnulib/import/dirname-lgpl.c: Update.
4036 * gnulib/import/dirname.h: Update.
4037 * gnulib/import/dosname.h: Update.
4038 * gnulib/import/errno.in.h: Update.
4039 * gnulib/import/extra/snippet/arg-nonnull.h: Update.
4040 * gnulib/import/extra/snippet/c++defs.h: Update.
4041 * gnulib/import/extra/snippet/warn-on-use.h: Update.
4042 * gnulib/import/extra/update-copyright: Update.
4043 * gnulib/import/float+.h: Update.
4044 * gnulib/import/float.c: Update.
4045 * gnulib/import/float.in.h: Update.
4046 * gnulib/import/fnmatch.c: Update.
4047 * gnulib/import/fnmatch.in.h: Update.
4048 * gnulib/import/fnmatch_loop.c: Update.
4049 * gnulib/import/fpucw.h: Update.
4050 * gnulib/import/frexp.c: Update.
4051 * gnulib/import/frexpl.c: Update.
4052 * gnulib/import/gettimeofday.c: Update.
4053 * gnulib/import/inttypes.in.h: Update.
4054 * gnulib/import/isnan.c: Update.
4055 * gnulib/import/isnand-nolibm.h: Update.
4056 * gnulib/import/isnand.c: Update.
4057 * gnulib/import/isnanl-nolibm.h: Update.
4058 * gnulib/import/isnanl.c: Update.
4059 * gnulib/import/itold.c: Update.
4060 * gnulib/import/localcharset.c: Update.
4061 * gnulib/import/localcharset.h: Update.
4062 * gnulib/import/lstat.c: Update.
4063 * gnulib/import/m4/00gnulib.m4: Update.
4064 * gnulib/import/m4/absolute-header.m4: Update.
4065 * gnulib/import/m4/alloca.m4: Update.
4066 * gnulib/import/m4/canonicalize.m4: Update.
4067 * gnulib/import/m4/codeset.m4: Update.
4068 * gnulib/import/m4/configmake.m4: Update.
4069 * gnulib/import/m4/dirent_h.m4: Update.
4070 * gnulib/import/m4/dirfd.m4: Update.
4071 * gnulib/import/m4/dirname.m4: Update.
4072 * gnulib/import/m4/double-slash-root.m4: Update.
4073 * gnulib/import/m4/eealloc.m4: Update.
4074 * gnulib/import/m4/errno_h.m4: Update.
4075 * gnulib/import/m4/exponentd.m4: Update.
4076 * gnulib/import/m4/exponentl.m4: Update.
4077 * gnulib/import/m4/extensions.m4: Update.
4078 * gnulib/import/m4/extern-inline.m4: Update.
4079 * gnulib/import/m4/fcntl-o.m4: Update.
4080 * gnulib/import/m4/float_h.m4: Update.
4081 * gnulib/import/m4/fnmatch.m4: Update.
4082 * gnulib/import/m4/fpieee.m4: Update.
4083 * gnulib/import/m4/frexp.m4: Update.
4084 * gnulib/import/m4/frexpl.m4: Update.
4085 * gnulib/import/m4/gettimeofday.m4: Update.
4086 * gnulib/import/m4/glibc21.m4: Update.
4087 * gnulib/import/m4/gnulib-cache.m4: Update.
4088 * gnulib/import/m4/gnulib-common.m4: Update.
4089 * gnulib/import/m4/gnulib-comp.m4: Update.
4090 * gnulib/import/m4/gnulib-tool.m4: Update.
4091 * gnulib/import/m4/include_next.m4: Update.
4092 * gnulib/import/m4/inttypes-pri.m4: Update.
4093 * gnulib/import/m4/inttypes.m4: Update.
4094 * gnulib/import/m4/isnand.m4: Update.
4095 * gnulib/import/m4/isnanl.m4: Update.
4096 * gnulib/import/m4/largefile.m4: Update.
4097 * gnulib/import/m4/localcharset.m4: Update.
4098 * gnulib/import/m4/locale-fr.m4: Update.
4099 * gnulib/import/m4/locale-ja.m4: Update.
4100 * gnulib/import/m4/locale-zh.m4: Update.
4101 * gnulib/import/m4/longlong.m4: Update.
4102 * gnulib/import/m4/lstat.m4: Update.
4103 * gnulib/import/m4/malloc.m4: Update.
4104 * gnulib/import/m4/malloca.m4: Update.
4105 * gnulib/import/m4/math_h.m4: Update.
4106 * gnulib/import/m4/mbrtowc.m4: Update.
4107 * gnulib/import/m4/mbsinit.m4: Update.
4108 * gnulib/import/m4/mbsrtowcs.m4: Update.
4109 * gnulib/import/m4/mbstate_t.m4: Update.
4110 * gnulib/import/m4/memchr.m4: Update.
4111 * gnulib/import/m4/memmem.m4: Update.
4112 * gnulib/import/m4/mmap-anon.m4: Update.
4113 * gnulib/import/m4/multiarch.m4: Update.
4114 * gnulib/import/m4/nocrash.m4: Update.
4115 * gnulib/import/m4/off_t.m4: Update.
4116 * gnulib/import/m4/pathmax.m4: Update.
4117 * gnulib/import/m4/readlink.m4: Update.
4118 * gnulib/import/m4/rename.m4: Update.
4119 * gnulib/import/m4/rmdir.m4: Update.
4120 * gnulib/import/m4/ssize_t.m4: Update.
4121 * gnulib/import/m4/stat.m4: Update.
4122 * gnulib/import/m4/stdbool.m4: Update.
4123 * gnulib/import/m4/stddef_h.m4: Update.
4124 * gnulib/import/m4/stdint.m4: Update.
4125 * gnulib/import/m4/stdio_h.m4: Update.
4126 * gnulib/import/m4/stdlib_h.m4: Update.
4127 * gnulib/import/m4/string_h.m4: Update.
4128 * gnulib/import/m4/strstr.m4: Update.
4129 * gnulib/import/m4/strtok_r.m4: Update.
4130 * gnulib/import/m4/sys_socket_h.m4: Update.
4131 * gnulib/import/m4/sys_stat_h.m4: Update.
4132 * gnulib/import/m4/sys_time_h.m4: Update.
4133 * gnulib/import/m4/sys_types_h.m4: Update.
4134 * gnulib/import/m4/time_h.m4: Update.
4135 * gnulib/import/m4/unistd_h.m4: Update.
4136 * gnulib/import/m4/warn-on-use.m4: Update.
4137 * gnulib/import/m4/wchar_h.m4: Update.
4138 * gnulib/import/m4/wchar_t.m4: Update.
4139 * gnulib/import/m4/wctype_h.m4: Update.
4140 * gnulib/import/m4/wint_t.m4: Update.
4141 * gnulib/import/malloc.c: Update.
4142 * gnulib/import/malloca.c: Update.
4143 * gnulib/import/malloca.h: Update.
4144 * gnulib/import/math.in.h: Update.
4145 * gnulib/import/mbrtowc.c: Update.
4146 * gnulib/import/mbsinit.c: Update.
4147 * gnulib/import/mbsrtowcs-impl.h: Update.
4148 * gnulib/import/mbsrtowcs-state.c: Update.
4149 * gnulib/import/mbsrtowcs.c: Update.
4150 * gnulib/import/memchr.c: Update.
4151 * gnulib/import/memmem.c: Update.
4152 * gnulib/import/pathmax.h: Update.
4153 * gnulib/import/readlink.c: Update.
4154 * gnulib/import/ref-add.sin: Update.
4155 * gnulib/import/ref-del.sin: Update.
4156 * gnulib/import/rename.c: Update.
4157 * gnulib/import/rmdir.c: Update.
4158 * gnulib/import/same-inode.h: Update.
4159 * gnulib/import/stat.c: Update.
4160 * gnulib/import/stdbool.in.h: Update.
4161 * gnulib/import/stddef.in.h: Update.
4162 * gnulib/import/stdint.in.h: Update.
4163 * gnulib/import/stdio.c: Update.
4164 * gnulib/import/stdio.in.h: Update.
4165 * gnulib/import/stdlib.in.h: Update.
4166 * gnulib/import/str-two-way.h: Update.
4167 * gnulib/import/streq.h: Update.
4168 * gnulib/import/string.in.h: Update.
4169 * gnulib/import/stripslash.c: Update.
4170 * gnulib/import/strnlen1.c: Update.
4171 * gnulib/import/strnlen1.h: Update.
4172 * gnulib/import/strstr.c: Update.
4173 * gnulib/import/strtok_r.c: Update.
4174 * gnulib/import/sys_stat.in.h: Update.
4175 * gnulib/import/sys_time.in.h: Update.
4176 * gnulib/import/sys_types.in.h: Update.
4177 * gnulib/import/time.in.h: Update.
4178 * gnulib/import/unistd.in.h: Update.
4179 * gnulib/import/verify.h: Update.
4180 * gnulib/import/wchar.in.h: Update.
4181 * gnulib/import/wctype.in.h: Update.
4182 * gnulib/import/gettimeofday.c: New file.
4183 * gnulib/import/m4/absolute-header.m4: New file.
4184 * gnulib/import/m4/gettimeofday.m4: New file.
4185 * gnulib/import/m4/sys_socket_h.m4: New file.
4186 * gnulib/import/m4/sys_time_h.m4: New file.
4187 * gnulib/import/stdio.c: Delete file.
4188 * gnulib/import/sys_time.in.h: New file.
4189
4190 2015-08-24 Pedro Alves <palves@redhat.com>
4191
4192 * Makefile.in (HFILES_NO_SRCDIR): Add common/gdb_sys_time.h.
4193 * common/gdb_sys_time.h: New file.
4194 * event-loop.c: Include gdb_sys_time.h instead of sys/time.h.
4195 * gdb_select.h: Likewise.
4196 * gdb_usleep.c: Likewise.
4197 * maint.c: Likewise.
4198 * mi/mi-main.c: Likewise.
4199 * mi/mi-parse.h: Likewise.
4200 * remote-fileio.c: Likewise.
4201 * remote-m32r-sdi.c: Likewise.
4202 * remote.c: Likewise.
4203 * ser-base.c: Likewise.
4204 * ser-pipe.c: Likewise.
4205 * ser-tcp.c: Likewise.
4206 * ser-unix.c: Likewise.
4207 * symfile.c: Likewise.
4208 * symfile.c: Likewise. Rename OSIZE to SIZE throughout.
4209 * target-memory.c: Include gdb_sys_time.h instead of sys/time.h.
4210 * utils.c: Likewise.
4211
4212 2015-08-24 Pedro Alves <palves@redhat.com>
4213
4214 * NEWS: Mention removed support for the various ROM monitors.
4215 * Makefile.in (ALL_TARGET_OBS): Remove dbug-rom.o, dink32-rom.o,
4216 ppcbug-rom.o, m32r-rom.o, dsrec.o and monitor.o from gdb_target_obs.
4217 * configure.tgt (h8300-*-*): Remove monitor.o and m32r-rom.o from
4218 gdb_target_obs.
4219 (m68*-*-*): Remove monitor.o dbug-rom.o and dsrec.o from
4220 gdb_target_obs.
4221 (microblaze*-linux-*): Remove microblaze-rom.o, monitor.o and
4222 dsrec.o from gdb_target_obs.
4223 (microblaze*-*-*): Remove microblaze-rom.o, monitor.o and dsrec.o
4224 from gdb_target_obs.
4225 (powerpc-*-lynx*178): Remove monitor.o and dsrec.o from
4226 gdb_target_obs.
4227 (powerpc*-*-*): Remove monitor.o, dsrec.o, ppcbug-rom.o and
4228 dink32-rom.o from gdb_target_obs.
4229 (sh*-*-linux*): Remove monitor.o and dsrec.o from gdb_target_obs.
4230 (sh*): Remove monitor.o and dsrec.o from gdb_target_obs.
4231 * dbug-rom.c, dink32-rom.c, dsrec.c, m32r-rom.c, microblaze-rom.c,
4232 monitor.c, monitor.h, ppcbug-rom.c, srec.h: Delete files.
4233
4234 2015-08-21 Pedro Alves <palves@redhat.com>
4235
4236 * frame.c (null_frame_id): Explicitly zero-initialize.
4237
4238 2015-08-21 Tom Tromey <tromey@redhat.com>
4239
4240 * dwarf2read.c (struct dwarf2_section_info): Rename field
4241 'asection' to 'section'.
4242 (dwarf2_has_info, get_section_bfd_owner, get_section_bfd_section)
4243 (dwarf2_locate_sections, dwarf2_locate_sections)
4244 (locate_dwz_sections, locate_v1_virtual_dwo_sections)
4245 (dwarf2_locate_dwo_sections, dwarf2_locate_dwo_sections)
4246 (dwarf2_locate_v2_dwp_sections): Adjust.
4247
4248 2015-08-21 Patrick Palka <patrick@parcs.ath.cx>
4249
4250 * top.h (gdb_in_secondary_prompt_p): Declare.
4251 * top.c (gdb_secondary_prompt_depth): Define.
4252 (gdb_in_secondary_prompt_p): Define.
4253 (gdb_readline_wrapper_cleanup): Decrement
4254 gdb_secondary_prompt_depth.
4255 (gdb_readline_wrapper): Increment gdb_secondary_prompt_depth.
4256 * tui/tui-io.c (tui_getc): Don't clear the prompt line if we
4257 are in a secondary prompt.
4258
4259 2015-08-21 Patrick Palka <patrick@parcs.ath.cx>
4260
4261 * tui/tui-io.c (tui_getc): Use tui_putc instead of waddch to
4262 emit the newline.
4263
4264 2015-08-21 Gary Benson <gbenson@redhat.com>
4265
4266 * gdb_bfd.c (gdb_bfd_iovec_fileio_pread): Add QUIT call.
4267
4268 2015-08-21 Gary Benson <gbenson@redhat.com>
4269
4270 * target.h (struct target_ops) <to_fileio_open>: New argument
4271 warn_if_slow. Update comment. All implementations updated.
4272 (target_fileio_open_warn_if_slow): New declaration.
4273 * target.c (target_fileio_open): Renamed as...
4274 (target_fileio_open_1): ...this. New argument warn_if_slow.
4275 Pass warn_if_slow to implementation. Update debug printing.
4276 (target_fileio_open): New function.
4277 (target_fileio_open_warn_if_slow): Likewise.
4278 * gdb_bfd.c (gdb_bfd_iovec_fileio_open): Use new function
4279 target_fileio_open_warn_if_slow.
4280
4281 2015-08-21 Gary Benson <gbenson@redhat.com>
4282
4283 * nat/linux-namespaces.c (linux_mntns_access_fs):
4284 Do not overwrite old_chain.
4285
4286 2015-08-20 Max Filippov <jcmvbkbc@gmail.com>
4287
4288 * arch/xtensa.h: New file.
4289 * xtensa-linux-nat.c (gdb_proc_service.h): New #include.
4290 (ps_get_thread_area): New function.
4291 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Add call to
4292 set_gdbarch_fetch_tls_load_module_address to enable TLS support.
4293 * xtensa-tdep.c (osabi.h): New #include.
4294 (xtensa_gdbarch_init): Call gdbarch_init_osabi to register
4295 xtensa-specific hooks.
4296 * xtensa-tdep.h (struct xtensa_elf_gregset_t): Add threadptr
4297 member and move the structure to arch/xtensa.h.
4298
4299 2015-08-21 Pedro Alves <palves@redhat.com>
4300
4301 * remote.c (struct readahead_cache): New.
4302 (struct remote_state) <readahead_cache>: New field.
4303 (remote_open_1): Invalidate the cache.
4304 (readahead_cache_invalidate, readahead_cache_invalidate_fd): New
4305 functions.
4306 (remote_hostio_pwrite): Invalidate the readahead cache.
4307 (remote_hostio_pread): Rename to ...
4308 (remote_hostio_pread_vFile): ... this.
4309 (remote_hostio_pread_from_cache): New function.
4310 (remote_hostio_pread): Reimplement.
4311 (remote_hostio_close): Invalidate the readahead cache.
4312
4313 2015-08-21 Marcin Cieślak <saper@saper.info> (tiny patch)
4314
4315 PR build/18843
4316 * procfs.c: Include "filestuff.h".
4317
4318 2015-08-21 Patrick Palka <patrick@parcs.ath.cx>
4319
4320 * tui/tui-data.h (tui_command_info): Remove fields cur_line and
4321 curch.
4322 * tui/tui-data.c (tui_clear_win_detail) [CMD_WIN]: Don't set
4323 cur_line or curch, instead call wmove().
4324 (init_win_info) [CMD_WIN]: Likewise.
4325 * tui/tui-io.c (tui_puts): Likewise. Don't read cur_line,
4326 instead call getcury().
4327 (tui_redisplay_readline): Don't set cur_line or curch.
4328 (tui_mld_erase_entire_line): Don't read cur_line, instead call
4329 getcury().
4330 (tui_cont_sig): Remove call to wmove.
4331 (tui_getc): Don't read cur_line or curch, instead call getcury()
4332 or getyx(). Don't set curch.
4333 * tui/tui-win.c (make_visible_with_new_height) [CMD_WIN]: Don't
4334 set cur_line or curch. Always move cursor to (0,0).
4335
4336 2015-08-20 Pedro Alves <palves@redhat.com>
4337
4338 * infrun.c (print_target_wait_results): Make extern.
4339 * infrun.h (print_target_wait_results): Declare.
4340 * remote.c (set_stop_requested_callback): Delete.
4341 (process_initial_stop_replies): New function.
4342 (remote_start_remote): Use it.
4343 (stop_reply_queue_length): New function.
4344
4345 2015-08-20 Pedro Alves <palves@redhat.com>
4346
4347 * dwarf2read.c (process_full_comp_unit): To tell whether
4348 start_subfile managed to deduce a language, test for
4349 language_unknown instead of language_c.
4350
4351 2015-08-20 Pierre-Marie de Rodat <derodat@adacore.com>
4352
4353 * ada-lex.l: Reset the start condition to INITIAL in the rule that
4354 matches attributes.
4355
4356 2015-08-19 Kevin Buettner <kevinb@redhat.com>
4357
4358 * dwarf2read.c (dwarf2_string_attr): New function.
4359 (lookup_dwo_unit, process_psymtab_comp_unit_reader)
4360 (dwarf2_compute_name, dwarf2_physname, find_file_and_directory)
4361 (read_call_site_scope, namespace_name, guess_full_die_structure_name)
4362 (anonymous_struct_prefix, prepare_one_comp_unit): Use
4363 dwarf2_string_attr in place of dwarf2_attr and DW_STRING.
4364
4365 2015-08-18 Doug Evans <dje@google.com>
4366 Adrian Sendroiu <adrian.sendroiu@freescale.com>
4367
4368 PR mi/18833
4369 * cli/cli-logging.c (pop_output_files): Don't restore redirection
4370 if MI-like.
4371 * mi/mi-out.c: #include "vec.h".
4372 (ui_filep): New type.
4373 (DEV_VEC_P (ui_filep)): New type.
4374 (struct ui_out_data) <buffer, original_buffer>: Delete.
4375 (struct ui_out_data) <streams>: New member.
4376 (mi_ui_out_impl): Add data_destroy field.
4377 (mi_field_string, mi_field_fmt): Update.
4378 (mi_flush, mi_redirect, field_separator): Update.
4379 (mi_open, mi_close): Update.
4380 (mi_out_buffered, mi_out_rewind, mi_out_put): Update.
4381 (mi_out_data_ctor, mi_out_data_dtor): New functions.
4382 (mi_out_new): Call mi_out_data_ctor.
4383
4384 2015-08-18 Sandra Loosemore <sandra@codesourcery.com>
4385
4386 * remote.c (strprefix): New.
4387 (remote_parse_stop_reply): Use strprefix instead of strncmp
4388 to ensure exact match of keyword.
4389
4390 2015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
4391
4392 * gdb_bfd.c (debug_bfd_cache): New variable.
4393 (show_bfd_cache_debug): New function.
4394 (gdb_bfd_open): Add debug logging.
4395 (gdb_bfd_ref): Likewise.
4396 (gdb_bfd_unref): Likewise.
4397 (_initialize_gdb_bfd): Add new set/show command.
4398 * NEWS: Mention new command.
4399
4400 2015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
4401
4402 * gdb_bfd.c (bfd_sharing): New variable.
4403 (show_bfd_sharing): New function.
4404 (gdb_bfd_open): Check bfd_sharing variable.
4405 (_initialize_gdb_bfd): Add new set/show command.
4406 * NEWS: Mention new command.
4407
4408 2015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
4409
4410 * gdb_bfd.c (struct gdb_bfd_data): Add size, inode, and device id
4411 field.
4412 (struct gdb_bfd_cache_search): Likewise.
4413 (eq_bfd): Compare the size, inode, and device id fields.
4414 (gdb_bfd_open): Initialise the size, inode, and device id fields.
4415 (gdb_bfd_ref): Likewise.
4416 (gdb_bfd_unref): Likewise.
4417
4418 2015-08-18 Pedro Alves <palves@redhat.com>
4419
4420 * linux-nat.c (linux_nat_always_non_stop_p): If the linux_ops
4421 target implements to_always_non_stop_p, call it.
4422 * x86-linux-nat.c (x86_linux_always_non_stop_p): New function.
4423 (x86_linux_create_target): Install it as to_always_non_stop_p
4424 method.
4425
4426 2015-08-17 Doug Evans <dje@google.com>
4427
4428 * ui-out.c (default_ui_out_impl): Add comment.
4429
4430 2015-08-17 Iain Buclaw <ibuclaw@gdcproject.org>
4431
4432 * d-exp.y (type_aggregate_p): New function.
4433 (PrimaryExpression : TypeExp '.' IdentifierExp): Use it.
4434 (classify_inner_name): Likewise.
4435 * d-namespace.c (d_lookup_nested_symbol): Handle TYPE_CODE_ENUM.
4436
4437 2015-08-15 Doug Evans <xdje42@gmail.com>
4438
4439 * psymtab.c (add_psymbol_to_bcache): Remove "val" arg. All callers
4440 updated.
4441 (add_psymbol_to_list): Ditto.
4442
4443 2015-08-15 Doug Evans <xdje42@gmail.com>
4444
4445 * dbxread.c (dbx_end_psymtab): Renamed from end_psymtab. All callers
4446 updated. Call end_psymtab_common.
4447 * dwarf2read.c (process_psymtab_comp_unit_reader): Call
4448 end_psymtab_common.
4449 (build_type_psymtabs_reader): Ditto.
4450 * psympriv.h (sort_pst_symbols): Delete.
4451 (end_psymtab_common): Declare.
4452 * psymtab.c (sort_pst_symbols): Make static.
4453 (end_psymtab_common): New function.
4454 * xcoffread.c (xcoff_end_psymtab): Call end_psymtab_common.
4455
4456 2015-08-15 Doug Evans <xdje42@gmail.com>
4457
4458 * defs.h (LANGUAGE_BITS): Define.
4459 * psympriv.h (partial_symbol) <domain>: Use SYMBOL_DOMAIN_BITS.
4460 (partial_symbol) <aclass>: Use SYMBOL_ACLASS_BITS.
4461 * symtab.h (general_symbol_info> <language>: Usage LANGUAGE_BITS.
4462 (minimal_symbol_type): Add nr_minsym_types.
4463 (MINSYM_TYPE_BITS): Define.
4464 (minimal_symbol) <type>: Use MINSYM_TYPE_BITS.
4465 (domain_enum_tag): Add NR_DOMAINS.
4466 (SYMBOL_DOMAIN_BITS): Change from 4 to 3.
4467 (SYMBOL_ACLASS_BITS): Define from 6 to 5.
4468
4469 2015-08-15 Doug Evans <xdje42@gmail.com>
4470
4471 * objfiles.h: Whitespace cleanup.
4472 * psympriv.h: Whitespace cleanup.
4473 * psymtab.c: Whitespace/coding convention cleanup.
4474
4475 2015-08-15 Patrick Palka <patrick@parcs.ath.cx>
4476
4477 * inferior.c (detach_inferior_command): Don't call
4478 any_thread_of_process when pid is 0.
4479 (kill_inferior_command): Likewise.
4480
4481 2015-08-14 Doug Evans <xdje42@gmail.com>
4482
4483 PR gdb/11833
4484 * NEWS: Document new /s modifier for the disassemble command.
4485 * cli/cli-cmds.c (disassemble_command): Add support for /s.
4486 (_initialize_cli_cmds): Update online docs of disassemble command.
4487 * disasm.c: #include "source.h".
4488 (struct deprecated_dis_line_entry): Renamed from dis_line_entry.
4489 All uses updated.
4490 (dis_line_entry): New struct.
4491 (hash_dis_line_entry, eq_dis_line_entry): New functions.
4492 (allocate_dis_line_table): New functions.
4493 (maybe_add_dis_line_entry, line_has_code_p): New functions.
4494 (dump_insns): New arg end_pc. All callers updated.
4495 (do_mixed_source_and_assembly_deprecated): Renamed from
4496 do_mixed_source_and_assembly. All callers updated.
4497 (do_mixed_source_and_assembly): New function.
4498 (gdb_disassembly): Handle /s (DISASSEMBLY_SOURCE).
4499 * disasm.h (DISASSEMBLY_SOURCE_DEPRECATED): Renamed from
4500 DISASSEMBLY_SOURCE. All uses updated.
4501 (DISASSEMBLY_SOURCE): New macro.
4502 * mi/mi-cmd-disas.c (mi_cmd_disassemble): New modes 4,5.
4503
4504 2015-08-14 Keith Seitz <keiths@redhat.com>
4505
4506 * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Rename
4507 `typename' to `type_name' to avoid C++ reserved word.
4508
4509 2015-08-14 Keith Seitz <keiths@redhat.com>
4510
4511 * location.c (EL_TYPE, EL_LINESPEC, EL_PROBE, EL_ADDRESS)
4512 (EL_EXPLICIT, EL_STRING): Change macro parameter to "P" to
4513 silence ARI errors.
4514
4515 2015-08-14 Iain Buclaw <ibuclaw@gdcproject.org>
4516
4517 * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Use
4518 xstrprintf instead of malloc and sprintf.
4519 (PrimaryExpression : IdentifierExp): Avoid operator at end of line.
4520 (lex_one_token): Likewise.
4521
4522 2015-08-14 Matthew Fortune <matthew.fortune@imgtec.com>
4523
4524 * solib-svr4.c (read_program_header): Add base_addr argument to
4525 report the runtime address of the segment.
4526 (find_program_interpreter): Update read_program_header call to pass
4527 a NULL pointer for the new argument.
4528 (scan_dyntag): Add ptr_addr argument to report the runtime address
4529 of the tag payload.
4530 (scan_dyntag_auxv): Likewise and use thew new base_addr argument of
4531 read_program_header to get the base address of the dynamic segment.
4532 (elf_locate_base): Update uses of scan_dyntag, scan_dyntag_auxv and
4533 read_program_header.
4534 (elf_locate_base): Scan for and handle DT_MIPS_RLD_MAP_REL.
4535
4536 2015-08-14 Matthew Fortune <matthew.fortune@imgtec.com>
4537
4538 * MAINTAINERS (Write After Approval): Add Matthew Fortune.
4539
4540 2015-08-13 Iain Buclaw <ibuclaw@gdcproject.org>
4541
4542 * d-exp.y (%union): Add voidval.
4543 (%token): Add UNKNOWN_NAME as a token to represent an unclassified
4544 name in the lexing stage.
4545 (PostfixExpression): Move symbol completion handling in grammar here
4546 from PrimaryExpression.
4547 (PrimaryExpression): Move routines to handle resolving identifier
4548 tokens in the grammar here from push_expression_name.
4549 (IdentifierExp): Remove the handling of alternating '.' and identifier
4550 tokens.
4551 (TypeExp): Allow TypeExp to be wrapped in parenthesis in the grammar.
4552 (BasicType): Remove C-style typename rules.
4553 (d_type_from_name, d_module_from_name, push_variable)
4554 (push_fieldnames, push_type_name, push_module_name)
4555 (push_expression_name): Remove.
4556 (lex_one_token): Rename from yylex. Replace pstate with par_state.
4557 (token_and_value): New type.
4558 (token_fifo, popping, name_obstack): New globals.
4559 (classify_name): New function.
4560 (classify_inner_name): Likewise.
4561 (yylex): Likewise.
4562 (d_parse): Initialize token_fifo, popping and name_obstack.
4563
4564 2015-08-13 Iain Buclaw <ibuclaw@gdcproject.org>
4565
4566 * Makefile.in (SFILES): Add d-namespace.c.
4567 (COMMON_OBS): Add d-namespace.o.
4568 * d-lang.c (d_language_defn): Use d_lookup_symbol_nonlocal as the
4569 la_lookup_symbol_nonlocal callback function pointer.
4570 * d-lang.h (d_lookup_symbol_nonlocal): New declaration.
4571 (d_lookup_nested_symbol): New declaration.
4572 * d-namespace.c: New file.
4573
4574 2015-08-13 Pedro Alves <palves@redhat.com>
4575
4576 * python/py-unwind.c (pyuw_sniffer): Install the invalidate
4577 cleanup after the decref cleanup, not before.
4578
4579 2015-08-13 Pierre-Marie de Rodat <derodat@adacore.com>
4580
4581 * ada-lang.c: Include namespace.h
4582 (aux_add_nonlocal_symbols): Fix a function name in comment.
4583 (ada_add_block_renamings): New.
4584 (add_nonlocal_symbols): Add global renamings handling.
4585 (ada_lookup_symbol_list_worker): Move the symbol lookup part
4586 to...
4587 (ada_add_all_symbols): ... this new function.
4588 (ada_add_block_symbols): Try to match the input name against the
4589 "using directives list", perform a recursive symbol lookup on
4590 the matched declarations.
4591 * block.h (struct block): Move the_namespace to top-level as
4592 namespace_info. Remove the language_specific field.
4593 (BLOCK_NAMESPACE): Update access to the namespace_info field.
4594 * buildsym.h (using_directives): Rename into...
4595 (local_using_directives): ... this.
4596 (global_using_directives): New.
4597 (struct context_stack): Rename the using_directives field into
4598 local_using_directives.
4599 * buildsym.c (finish_block_internal): Deal with the proper
4600 using directives repository (local or global).
4601 (prepare_for_building): Reset local_using_directives. Assert
4602 that there is no pending global using directive.
4603 (reset_symtab_globals): Reset global_using_directives and
4604 local_using_directives.
4605 (end_symtab_get_static_block): Don't ignore symtabs that have
4606 only using directives.
4607 (push_context): Update references to local_using_directives.
4608 (buildsym_init): Do not reset using_directives.
4609 * cp-support.c: Include namespace.h.
4610 * cp-support.h (struct using_direct): Move to namespace.h.
4611 (cp_add_using_directives): Move to namespace.h.
4612 * cp-namespace.c: Include namespace.h
4613 (cp_add_using_directive): Move to namespace.c, rename it to
4614 add_using_directive, add a "using_directives" argument and use
4615 it as the pending using directives repository. All callers
4616 updated.
4617 * dwarf2read.c (using_directives): New.
4618 (read_import_statement): Call using_directives.
4619 (read_func_scope): Update references to local_using_directives.
4620 (read_lexical_block_scope): Likewise.
4621 (read_namespace): Update the heading comment, call
4622 using_directives.
4623 * namespace.h: New file.
4624 * namespace.c: New file.
4625 * Makefile.in (SFILES): Add namespace.c.
4626 (COMMON_OBS): Add namespace.o
4627
4628 2015-08-12 Joel Brobecker <brobecker@adacore.com>
4629
4630 * amd64-tdep.c (amd64_displaced_step_fixup): Fix the mask used to
4631 compute RETADDR.
4632
4633 2015-08-12 Keith Seitz <keiths@redhat.com>
4634
4635 * break-catch-throw.c (re_set_exception_catchpoint) Rename
4636 reserved C++ keyword "explicit" to "explicit_loc".
4637 * breakpoint.c (create_overlay_event_breakpoint)
4638 (create_longjmp_master_breakpoint)
4639 (create_std_terminate_master_breakpoint)
4640 (create_exception_master_breakpoint, update_static_tracepoint):
4641 Rename reserved C++ keyword "explicit" to "explicit_loc".
4642 * completer.c (collect_explicit_location_matches)
4643 (explicit_location_completer): Rename reserved C++ keyword
4644 "explicit" to "explicit_loc".
4645 * linespec.c (struct linespec) <explicit>: Rename to "explicit_loc".
4646 (canonicalize_linespec, create_sals_line_offset)
4647 (convert_linespec_to_sals, convert_explicit_location_to_sals)
4648 (event_location_to_sals, decode_objc): Rename reserved C++ keyword
4649 "explicit" to "explicit_loc".
4650 * location.c (struct event_location) <explicit>: Rename to
4651 "explicit_loc".
4652 (initialize_explicit_location, new_explicit_location)
4653 (explicit_location_to_string_internal, explicit_location_to_linespec):
4654 Rename reserved C++ keyword "explicit" to "explicit_loc".
4655 * location.h (explicit_location_to_string)
4656 (explicit_location_to_linespec, initialize_explicit_location)
4657 (new_explicit_location): Rename reserved C++ keyword "explicit"
4658 to "explicit_loc".
4659 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Rename reserved C++
4660 keyword "explicit" to "explicit_loc".
4661
4662 2015-08-12 Keith Seitz <keiths@redhat.com>
4663
4664 * python/python.c (gdbpy_decode_line): Initialize `location' to NULL
4665 and only call decode_line_1 when it is non-NULL.
4666
4667 2015-08-12 Luis Machado <lgustavo@codesourcery.com>
4668
4669 * breakpoint.c (bp_loc_is_permanent): Return 0 when breakpoint
4670 location address is not meaningful.
4671 (breakpoint_address_is_meaningful): Update comment.
4672
4673 2015-08-11 Keith Seitz <keiths@redhat.com>
4674
4675 * NEWS: Mention explicit locations.
4676 * breakpoint.c [LOCATION_HELP_STRING]: New macro.
4677 [BREAK_ARGS_HELP]: Use LOCATION_HELP_STRING.
4678 (_initialize_breakpoint): Update documentation for
4679 "clear", "break", "trace", "strace", "ftrace", and "dprintf".
4680
4681 2015-08-11 Keith Seitz <keiths@redhat.com>
4682
4683 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Add support for
4684 explicit locations, options "--source", "--function",
4685 "--label", and "--line".
4686
4687 2015-08-11 Keith Seitz <keiths@redhat.com>
4688
4689 * completer.c: Include location.h.
4690 (enum match_type): New enum.
4691 (location_completer): Rename to ...
4692 (linespec_completer): ... this.
4693 (collect_explicit_location_matches, backup_text_ptr)
4694 (explicit_location_completer): New functions.
4695 (location_completer): "New" function; handle linespec
4696 and explicit location completions.
4697 (complete_line_internal): Remove all location completer-specific
4698 handling.
4699 * linespec.c (linespec_lexer_lex_keyword, is_ada_operator)
4700 (find_toplevel_char): Export.
4701 (linespec_parse_line_offset): Export.
4702 Issue error if STRING is not numerical.
4703 (gdb_get_linespec_parser_quote_characters): New function.
4704 * linespec.h (linespec_parse_line_offset): Declare.
4705 (get_gdb_linespec_parser_quote_characters): Declare.
4706 (is_ada_operator): Declare.
4707 (find_toplevel_char): Declare.
4708 (linespec_lexer_lex_keyword): Declare.
4709 * location.c (explicit_to_event_location): New function.
4710 (explicit_location_lex_one): New function.
4711 (string_to_explicit_location): New function.
4712 (string_to_event_location): Handle explicit locations.
4713 * location.h (explicit_to_event_location): Declare.
4714 (string_to_explicit_location): Declare.
4715
4716 2015-08-11 Keith Seitz <keiths@redhat.com>
4717
4718 * break-catch-throw.c (re_set_exception_catchpoint): Convert
4719 linespec into explicit location.
4720 * breakpoint.c (create_overlay_breakpoint)
4721 (create_longjmp_master_breakpoint)
4722 (create_std_terminate_master_breakpoint)
4723 (create_exception_master_breakpoint): Convert linespec into explicit
4724 location.
4725 (update_static_tracepoint): Convert linespec into explicit location.
4726 * linespec.c (enum offset_relative_sign, struct line_offset): Move
4727 location.h.
4728 (struct linespec) <expression, expr_pc, source_filename>
4729 <function_name, label_name, line_offset>: Replace with ...
4730 <explicit>: ... this.
4731 <is_linespec>: New member.
4732 (PARSER_EXPLICIT): New accessor macro.
4733 (undefined_label_error): New function.
4734 (source_file_not_found_error): New function.
4735 (linespec_parse_basic): The parser result is now an explicit location.
4736 Use PARSER_EXPLICIT to access it.
4737 Use undefined_label_error.
4738 (canonicalize_linespec): Convert canonical linespec into explicit
4739 location.
4740 Move string representation of location to explicit_location_to_linespec
4741 and use it and explicit_location_to_string to save string
4742 representations of the canonical location.
4743 (create_sals_line_offset, convert_linespec_to_sals): `ls' contains an
4744 explicit location. Update all references.
4745 (convert_explicit_location_to_sals): New function.
4746 (parse_linespec): Use PARSER_EXPLICIT to access the parser
4747 result's explicit location.
4748 (linespec_state_constructor): Initialize is_linespec.
4749 Use PARSER_EXPLICIT.
4750 (linespec_parser_delete): Use PARSER_EXPLICIT to access the parser's
4751 result.
4752 (event_location_to_sals): For linespec locations, set is_linespec.
4753 Handle explicit locations.
4754 (decode_objc): 'ls' contains an explicit location now. Update all
4755 references.
4756 (symtabs_from_filename): Use source_file_not_found_error.
4757 * location.c (struct event_location.u) <explicit>: New member.
4758 (initialize_explicit_location): New function.
4759 (initialize_event_location): Initialize explicit locations.
4760 (new_explicit_location, get_explicit_location)
4761 (get_explicit_location_const): New functions.
4762 (explicit_to_string_internal): New function; most of contents moved
4763 from canonicalize_linespec.
4764 (explicit_location_to_string): New function.
4765 (explicit_location_to_linespec): New function.
4766 (copy_event_location, delete_event_location)
4767 (event_location_to_string_const, event_location_empty_p): Handle
4768 explicit locations.
4769 * location.h (enum offset_relative_sign, struct line_offset): Move
4770 here from linespec.h.
4771 (enum event_location_type): Add EXPLICIT_LOCATION.
4772 (struct explicit_location): New structure.
4773 (explicit_location_to_string): Declare.
4774 (explicit_location_to_linespec): Declare.
4775 (new_explicit_location, get_explicit_locationp
4776 (get_explicit_location_const, initialize_explicit_location): Declare.
4777
4778 2015-08-11 Keith Seitz <keiths@redhat.com>
4779
4780 * break-catch-throw.c (re_set_exception_catchpoint): Convert
4781 linespec for stap probe to probe location.
4782 * breakpoint.c (create_longjmp_master_breakpoint)
4783 (create_exception_master_breakpoint): Likewise.
4784 (break_command_1): Remove local variable `arg_cp'.
4785 Check location type to set appropriate breakpoint ops methods.
4786 (trace_command): Likewise.
4787 * linespec.c (event_location_to_sals): Assert on probe locations.
4788 * location.c (EL_PROBE): Add macro definition.
4789 (new_probe_location, get_probe_location): New functions.
4790 (copy_event_location, delete_event_location, event_location_to_string)
4791 (string_to_event_location, event_location_empty_p): Handle probe
4792 locations.
4793 * location.h (enum event_location_type): Add PROBE_LOCATION.
4794 (new_probe_location, get_probe_location): Declare.
4795 * probe.c (parse_probes): Assert that LOCATION is a probe location.
4796 Convert linespec into probe location.
4797
4798 2015-08-11 Keith Seitz <keiths@redhat.com>
4799
4800 * breakpoint.c (create_thread_event_breakpoint, init_breakpoint_sal):
4801 Convert linespec to address location.
4802 * linespec.c (canonicalize_linespec): Do not handle address
4803 locations here.
4804 (convert_address_location_to_sals): New function; contents moved
4805 from ...
4806 (convert_linespc_to_sals): ... here.
4807 (parse_linespec): Remove address locations from linespec grammar.
4808 Remove handling of address locations.
4809 (linespec_lex_to_end): Remove handling of address linespecs.
4810 (event_location_to_sals): Handle ADDRESS_LOCATION.
4811 (linespec_expression_to_pc): Export.
4812 * linespec.h (linespec_expression_to_pc): Add declaration.
4813 * location.c (struct event_location.u) <address>: New member.
4814 (new_address_location, get_address_location): New functions.
4815 (copy_event_location, delete_event_location, event_location_to_string)
4816 (string_to_event_location, event_location_empty_p): Handle address
4817 locations.
4818 * location.h (enum event_location_type): Add ADDRESS_LOCATION.
4819 (new_address_location, get_address_location): Declare.
4820 * python/py-finishbreakpoint.c (bpfinishpy_init): Convert linespec
4821 to address location.
4822 * spu-tdep.c (spu_catch_start): Likewise.
4823
4824 2015-08-11 Keith Seitz <keiths@redhat.com>
4825
4826 * ax-gdb.c: Include location.h.
4827 (agent_command_1) Use linespec location instead of address
4828 string.
4829 * break-catch-throw.c: Include location.h.
4830 (re_set_exception_catchpoint): Use linespec locations instead
4831 of address strings.
4832 * breakpoint.c: Include location.h.
4833 (create_overlay_event_breakpoint, create_longjmp_master_breakpoint)
4834 (create_std_terminate_master_breakpoint)
4835 (create_exception_master_breakpoint, update_breakpoints_after_exec):
4836 Use linespec location instead of address string.
4837 (print_breakpoint_location): Use locations and
4838 event_location_to_string.
4839 Print extra_string for pending locations for non-MI streams.
4840 (print_one_breakpoint_location): Use locations and
4841 event_location_to_string.
4842 (init_raw_breakpoint_without_location): Initialize b->location.
4843 (create_thread_event_breakpoint): Use linespec location instead of
4844 address string.
4845 (init_breakpoint_sal): Likewise.
4846 Only save extra_string if it is non-NULL and not the empty string.
4847 Use event_location_to_string instead of `addr_string'.
4848 Constify `p' and `endp'.
4849 Use skip_spaces_const/skip_space_const instead of non-const versions.
4850 Copy the location into the breakpoint.
4851 If LOCATION is NULL, save the breakpoint address as a linespec location
4852 instead of an address string.
4853 (create_breakpoint_sal): Change `addr_string' parameter to a struct
4854 event_location. All uses updated.
4855 (create_breakpoints_sal): Likewise for local variable `addr_string'.
4856 (parse_breakpoint_sals): Use locations instead of address strings.
4857 Remove check for empty linespec with conditional.
4858 Refactor.
4859 (decode_static_tracepoint_spec): Make argument const and update
4860 function.
4861 (create_breakpoint): Change `arg' to a struct event_location and
4862 rename.
4863 Remove `copy_arg' and `addr_start'.
4864 If EXTRA_STRING is empty, set it to NULL.
4865 Don't populate `canonical' for pending breakpoints.
4866 Pass `extra_string' to find_condition_and_thread.
4867 Clear `extra_string' if `rest' was NULL.
4868 Do not error with "garbage after location" if setting a dprintf
4869 breakpoint.
4870 Copy the location into the breakpoint instead of an address string.
4871 (break_command_1): Use string_to_event_location and pass this to
4872 create_breakpoint instead of an address string.
4873 Check against `arg_cp' for a probe linespec.
4874 (dprintf_command): Use string_to_event_location and pass this to
4875 create_breakpoint instead of an address string.
4876 Throw an exception if no format string was specified.
4877 (print_recreate_ranged_breakpoint): Use event_location_to_string
4878 instead of address strings.
4879 (break_range_command, until_break_command)
4880 (init_ada_exception_breakpoint): Use locations instead
4881 of address strings.
4882 (say_where): Print out extra_string for pending locations.
4883 (base_breakpoint_dtor): Delete `location' and `location_range_end' of
4884 the breakpoint.
4885 (base_breakpoint_create_sals_from_location): Use struct event_location
4886 instead of address string.
4887 Remove `addr_start' and `copy_arg' parameters.
4888 (base_breakpoint_decode_location): Use struct event_location instead of
4889 address string.
4890 (bkpt_re_set): Use locations instead of address strings.
4891 Use event_location_empty_p to check for unset location.
4892 (bkpt_print_recreate): Use event_location_to_string instead of
4893 an address string.
4894 Print out extra_string for pending locations.
4895 (bkpt_create_sals_from_location, bkpt_decode_location)
4896 (bkpt_probe_create_sals_from_location): Use struct event_location
4897 instead of address string.
4898 (bkpt_probe_decode_location): Use struct event_location instead of
4899 address string.
4900 (tracepoint_print_recreate): Use event_location_to_string to
4901 recreate the tracepoint.
4902 (tracepoint_create_sals_from_location, tracepoint_decode_location)
4903 (tracepoint_probe_create_sals_from_location)
4904 (tracepoint_probe_decode_location): Use struct event_location
4905 instead of address string.
4906 (dprintf_print_recreate): Use event_location_to_string to recreate
4907 the dprintf.
4908 (dprintf_re_set): Remove check for valid/missing format string.
4909 (strace_marker_create_sals_from_location)
4910 (strace_marker_create_breakpoints_sal, strace_marker_decode_location)
4911 (update_static_tracepoint): Use struct event_location instead of
4912 address string.
4913 (location_to_sals): Likewise.
4914 Pass `extra_string' to find_condition_and_thread.
4915 For newly resolved pending breakpoint locations, clear the location's
4916 string representation.
4917 Assert that the breakpoint's condition string is NULL when
4918 condition_not_parsed.
4919 (breakpoint_re_set_default, create_sals_from_location_default)
4920 (decode_location_default, trace_command, ftrace_command)
4921 (strace_command, create_tracepoint_from_upload): Use locations
4922 instead of address strings.
4923 * breakpoint.h (struct breakpoint_ops) <create_sals_from_location>:
4924 Use struct event_location instead of address string.
4925 Update all uses.
4926 <decode_location>: Likewise.
4927 (struct breakpoint) <addr_string>: Change to struct event_location
4928 and rename `location'.
4929 <addr_string_range_end>: Change to struct event_location and rename
4930 `location_range_end'.
4931 (create_breakpoint): Use struct event_location instead of address
4932 string.
4933 * cli/cli-cmds.c: Include location.h.
4934 (edit_command, list_command): Use locations instead of address strings.
4935 * elfread.c: Include location.h.
4936 (elf_gnu_ifunc_resolver_return_stop): Use event_location_to_string.
4937 * guile/scm-breakpoint.c: Include location.h.
4938 (bpscm_print_breakpoint_smob): Use event_location_to_string.
4939 (gdbscm_register_breakpoint): Use locations instead of address
4940 strings.
4941 * linespec.c: Include location.h.
4942 (struct ls_parser) <stream>: Change to const char *.
4943 (PARSER_STREAM): Update.
4944 (lionespec_lexer_lex_keyword): According to find_condition_and_thread,
4945 keywords must be followed by whitespace.
4946 (canonicalize_linespec): Save a linespec location into `canonical'.
4947 Save a canonical linespec into `canonical'.
4948 (parse_linespec): Change `argptr' to const char * and rename `arg'.
4949 All uses updated.
4950 Update function description.
4951 (linespec_parser_new): Initialize `parser'.
4952 Update initialization of parsing stream.
4953 (event_location_to_sals): New function.
4954 (decode_line_full): Change `argptr' to a struct event_location and
4955 rename it `location'.
4956 Use locations instead of address strings.
4957 Call event_location_to_sals instead of parse_linespec.
4958 (decode_line_1): Likewise.
4959 (decode_line_with_current_source, decode_line_with_last_displayed)
4960 Use locations instead of address strings.
4961 (decode_objc): Likewise.
4962 Change `argptr' to const char * and rename `arg'.
4963 (destroy_linespec_result): Delete the linespec result's location
4964 instead of freeing the address string.
4965 * linespec.h (struct linespec_result) <addr_string>: Change to
4966 struct event_location and rename to ...
4967 <location>: ... this.
4968 (decode_line_1, decode_line_full): Change `argptr' to struct
4969 event_location. All callers updated.
4970 * mi/mi-cmd-break.c: Include language.h, location.h, and linespec.h.
4971 (mi_cmd_break_insert_1): Use locations instead of address strings.
4972 Throw an error if there was "garbage" at the end of the specified
4973 linespec.
4974 * probe.c: Include location.h.
4975 (parse_probes): Change `argptr' to struct event_location.
4976 Use event locations instead of address strings.
4977 * probe.h (parse_probes): Change `argptr' to struct event_location.
4978 * python/py-breakpoint.c: Include location.h.
4979 (bppy_get_location): Constify local variable `str'.
4980 Use event_location_to_string.
4981 (bppy_init): Use locations instead of address strings.
4982 * python/py-finishbreakpoint.c: Include location.h.
4983 (bpfinishpy_init): Remove local variable `addr_str'.
4984 Use locations instead of address strings.
4985 * python/python.c: Include location.h.
4986 (gdbpy_decode_line): Use locations instead of address strings.
4987 * remote.c: Include location.h.
4988 (remote_download_tracepoint): Use locations instead of address
4989 strings.
4990 * spu-tdep.c: Include location.h.
4991 (spu_catch_start): Remove local variable `buf'.
4992 Use locations instead of address strings.
4993 * tracepoint.c: Include location.h.
4994 (scope_info): Use locations instead of address strings.
4995 (encode_source_string): Constify parameter `src'.
4996 * tracepoint.h (encode_source_string): Likewise.
4997
4998 2015-08-11 Keith Seitz <keiths@redhat.com>
4999
5000 * Makefile.in (SFILES): Add location.c.
5001 (HFILES_NO_SRCDIR): Add location.h.
5002 (COMMON_OBS): Add location.o.
5003 * linespec.c (linespec_lex_to_end): New function.
5004 * linespec.h (linespec_lex_to_end): Declare.
5005 * location.c: New file.
5006 * location.h: New file.
5007
5008 2015-08-11 Keith Seitz <keiths@redhat.com>
5009
5010 * breakpoint.h (struct breakpoint_ops) <create_sals_from_address>:
5011 Renamed to create_sals_from_location.
5012 <decode_linespec>: Renamed to decode_location.
5013 Update all callers.
5014 * breakpoint.c (create_sals_from_address_default): Renamed to ...
5015 (create_sals_from_location_default): ... this.
5016 (addr_string_to_sals): Renamed to ...
5017 (location_to_sals): ... this.
5018 (decode_linespec_default): Renamed to ...
5019 (decode_location_default): ... this.
5020 (base_breakpoint_create_sals_from_address): Renamed to ...
5021 (base_breakpoint_create_sals_from_location): ... this.
5022 (bkpt_create_sals_from_address): Renamed to ...
5023 (bkpt_create_sals_from_location): ... this.
5024 (bkpt_decode_linespec): Renamed to ...
5025 (bkpt_decode_location): ... this.
5026 (bkpt_probe_create_sals_from_address): Renamed to ...
5027 (bkpt_probe_create_sals_from_location): ... this.
5028 (tracepoint_create_sals_from_address): Renamed to ...
5029 (tracepoint_create_sals_from_location): ... this.
5030 (tracepoint_decode_linespec): Renamed to ...
5031 (tracepoint_decode_location): ... this.
5032 (tracepoint_probe_create_sals_from_address): Renamed to ...
5033 (tracepoint_probe_create_sals_from_location): ... this.
5034 (tracepoint_probe_decode_linespec): Renamed to ...
5035 (tracepoint_probe_decode_location): ... this.
5036 (strace_marker_create_sals_from_address): Renamed to ...
5037 (strace_marker_create_sals_from_location): ... this.
5038 (decode_linespec_default): Renamed to ...
5039 (decode_location_default): ... this.
5040
5041 2015-08-10 Doug Evans <dje@google.com>
5042 Keith Seitz <keiths@redhat.com>
5043
5044 PR gdb/17960
5045 * symtab.c (make_file_symbol_completion_list_1): Renamed from
5046 make_file_symbol_completion_list and made static.
5047 (make_file_symbol_completion_list): New function.
5048
5049 2015-08-10 Joel Brobecker <brobecker@adacore.com>
5050
5051 * infrun.c (follow_fork, displaced_step_prepare, resume): Remove
5052 trailing new-line at end of warning message.
5053 (proceed): Add i18n marker to error messages.
5054
5055 2015-08-07 Pedro Alves <palves@redhat.com>
5056
5057 * linux-nat.c (linux_nat_always_non_stop_p): Return 1.
5058
5059 2015-08-07 Pedro Alves <palves@redhat.com>
5060
5061 * s390-linux-tdep.c (is_non_branch_ril)
5062 (s390_displaced_step_copy_insn): New functions.
5063 (s390_displaced_step_fixup): Update comment.
5064 (s390_gdbarch_init): Install s390_displaced_step_copy_insn as
5065 gdbarch_displaced_step_copy_insn hook.
5066
5067 2015-08-07 Pedro Alves <palves@redhat.com>
5068
5069 * infrun.c (displaced_step_prepare_throw): Return -1 if
5070 gdbarch_displaced_step_copy_insn returns NULL. Update intro
5071 comment.
5072 * rs6000-tdep.c (LWARX_MASK, LWARX_INSTRUCTION, LDARX_INSTRUCTION)
5073 (STWCX_MASK, STWCX_INSTRUCTION, STDCX_INSTRUCTION): Move higher up
5074 in file.
5075 (ppc_displaced_step_copy_insn): New function.
5076 (ppc_displaced_step_fixup): Update comment.
5077 (rs6000_gdbarch_init): Install ppc_displaced_step_copy_insn as
5078 gdbarch_displaced_step_copy_insn hook.
5079 * gdbarch.sh (displaced_step_copy_insn): Document what happens on
5080 NULL return.
5081 * gdbarch.h: Regenerate.
5082
5083 2015-08-07 Pedro Alves <palves@redhat.com>
5084
5085 * inferior.h (struct inferior) <displaced_stepping_failed>: New
5086 field.
5087 * infrun.c (use_displaced_stepping_now_p): New parameter 'inf'.
5088 Return false if dispaced stepping failed before.
5089 (resume): Pass the current inferior to
5090 use_displaced_stepping_now_p. Wrap displaced_step_prepare in
5091 TRY/CATCH. If we get a MEMORY_ERROR, set the inferior's
5092 displaced_stepping_failed flag, and fall back to an in-line
5093 step-over.
5094
5095 2015-08-07 Pedro Alves <palves@redhat.com>
5096
5097 * darwin-nat.c (darwin_stop): Rename to ...
5098 (darwin_interrupt): ... this.
5099 (_initialize_darwin_inferior): Adjust.
5100 * gnu-nat.c (gnu_stop): Delete.
5101 (gnu_target): Don't install gnu_stop.
5102 * inf-ptrace.c (inf_ptrace_stop): Rename to ...
5103 (inf_ptrace_interrupt): ... this.
5104 (inf_ptrace_target): Adjust.
5105 * infcmd.c (interrupt_target_1): Use target_interrupt instead of
5106 target_stop.
5107 * linux-nat (linux_nat_stop): Rename to ...
5108 (linux_nat_interrupt): ... this.
5109 (linux_nat_stop): Reimplement.
5110 (linux_nat_add_target): Install linux_nat_interrupt.
5111 * nto-procfs.c (nto_interrupt_twice): Rename to ...
5112 (nto_handle_sigint_twice): ... this.
5113 (nto_interrupt): Rename to ...
5114 (nto_handle_sigint): ... this. Call target_interrupt instead of
5115 target_stop.
5116 (procfs_wait): Adjust.
5117 (procfs_stop): Rename to ...
5118 (procfs_interrupt): ... this.
5119 (init_procfs_targets): Adjust.
5120 * procfs.c (procfs_stop): Rename to ...
5121 (procfs_interrupt): ... this.
5122 (procfs_target): Adjust.
5123 * remote-m32r-sdi.c (m32r_stop): Rename to ...
5124 (m32r_interrupt): ... this.
5125 (init_m32r_ops): Adjust.
5126 * remote-sim.c (gdbsim_stop_inferior): Rename to ...
5127 (gdbsim_interrupt_inferior): ... this.
5128 (gdbsim_stop): Rename to ...
5129 (gdbsim_interrupt): ... this.
5130 (gdbsim_cntrl_c): Adjust.
5131 (init_gdbsim_ops): Adjust.
5132 * remote.c (sync_remote_interrupt): Adjust comments.
5133 (remote_stop_as): Rename to ...
5134 (remote_interrupt_as): ... this.
5135 (remote_stop): Adjust comment.
5136 (remote_interrupt): New function.
5137 (init_remote_ops): Install remote_interrupt.
5138 * target.c (target_interrupt): New function.
5139 * target.h (struct target_ops) <to_interrupt>: New field.
5140 (target_interrupt): New declaration.
5141 * windows-nat.c (windows_stop): Rename to ...
5142 (windows_interrupt): ... this.
5143 * target-delegates.c: Regenerate.
5144
5145 2015-08-07 Pedro Alves <palves@redhat.com>
5146
5147 * signal-while-stepping-over-bp-other-thread.exp: Expect "restart
5148 threads" as alternative to "switching back to stepped thread".
5149
5150 2015-08-07 Pedro Alves <palves@redhat.com>
5151
5152 * NEWS: Mention "maint set/show target-non-stop".
5153 * breakpoint.c (update_global_location_list): Check
5154 target_is_non_stop_p instead of non_stop.
5155 * infcmd.c (attach_command_post_wait, attach_command): Likewise.
5156 * infrun.c (show_can_use_displaced_stepping)
5157 (can_use_displaced_stepping_p, start_step_over_inferior):
5158 Likewise.
5159 (internal_resume_ptid): New function.
5160 (resume): Use it.
5161 (proceed): Check target_is_non_stop_p instead of non_stop. If in
5162 all-stop mode but the target is always in non-stop mode, start all
5163 the other threads that are implicitly resumed too.
5164 (for_each_just_stopped_thread, fetch_inferior_event)
5165 (adjust_pc_after_break, stop_all_threads): Check
5166 target_is_non_stop_p instead of non_stop.
5167 (handle_inferior_event): Likewise. Handle detach-fork in all-stop
5168 with the target always in non-stop mode.
5169 (handle_signal_stop) <random signal>: Check target_is_non_stop_p
5170 instead of non_stop.
5171 (switch_back_to_stepped_thread): Check target_is_non_stop_p
5172 instead of non_stop.
5173 (keep_going_stepped_thread): Use internal_resume_ptid.
5174 (stop_waiting): If in all-stop mode, and the target is in non-stop
5175 mode, stop all threads.
5176 (keep_going_pass): Likewise, when starting a new in-line step-over
5177 sequence.
5178 * linux-nat.c (get_pending_status, select_event_lwp)
5179 (linux_nat_filter_event, linux_nat_wait_1, linux_nat_wait): Check
5180 target_is_non_stop_p instead of non_stop.
5181 (linux_nat_always_non_stop_p): New function.
5182 (linux_nat_stop): Check target_is_non_stop_p instead of non_stop.
5183 (linux_nat_add_target): Install linux_nat_always_non_stop_p.
5184 * target-delegates.c: Regenerate.
5185 * target.c (target_is_non_stop_p): New function.
5186 (target_non_stop_enabled, target_non_stop_enabled_1): New globals.
5187 (maint_set_target_non_stop_command)
5188 (maint_show_target_non_stop_command): New functions.
5189 (_initilize_target): Install "maint set/show target-non-stop"
5190 commands.
5191 * target.h (struct target_ops) <to_always_non_stop_p>: New field.
5192 (target_non_stop_enabled): New declaration.
5193 (target_is_non_stop_p): New declaration.
5194
5195 2015-08-07 Pedro Alves <pedro@codesourcery.com>
5196
5197 * breakpoint.c (breakpoints_should_be_inserted_now): If any thread
5198 has a pending status, return true.
5199 * gdbthread.h: Include target/waitstatus.h.
5200 (struct thread_suspend_state) <stop_reason, waitstatus_pending_p,
5201 stop_pc>: New fields.
5202 (struct thread_info) <resumed>: New field.
5203 (set_resumed): Declare.
5204 * infrun.c: Include "event-loop.h".
5205 (infrun_async_inferior_event_token, infrun_is_async): New globals.
5206 (infrun_async): New function.
5207 (clear_step_over_info): Add debug output.
5208 (displaced_step_in_progress_any_inferior): New function.
5209 (displaced_step_fixup): New returns int.
5210 (start_step_over): Handle in-line step-overs too. Assert the
5211 thread is marked resumed.
5212 (resume_cleanups): Clear the thread's resumed flag.
5213 (resume): Set the thread's resumed flag. Return early if the
5214 thread has a pending status. Allow stepping a breakpoint with no
5215 signal.
5216 (proceed): Adjust to check 'resumed' instead of 'executing'.
5217 (clear_proceed_status_thread): If the thread has a pending status,
5218 and that status is a finished step, discard the pending status.
5219 (clear_proceed_status): Don't clear step_over_info here.
5220 (random_pending_event_thread, do_target_wait): New functions.
5221 (prepare_for_detach, wait_for_inferior, fetch_inferior_event): Use
5222 do_target_wait.
5223 (wait_one): New function.
5224 (THREAD_STOPPED_BY): New macro.
5225 (thread_stopped_by_watchpoint, thread_stopped_by_sw_breakpoint)
5226 (thread_stopped_by_hw_breakpoint): New functions.
5227 (switch_to_thread_cleanup, save_waitstatus, stop_all_threads): New
5228 functions.
5229 (handle_inferior_event): Also call set_resumed(false) on all
5230 threads implicitly stopped by the event.
5231 (restart_threads, resumed_thread_with_pending_status): New
5232 functions.
5233 (finish_step_over): If we were doing an in-line step-over before,
5234 and no longer are after trying to start a new step-over, restart
5235 all threads. If we have multiple threads with pending events,
5236 save the current event and go through the event loop again.
5237 (handle_signal_stop): Return early if finish_step_over returns
5238 false.
5239 <random signal>: If we get a signal while stepping over a
5240 breakpoint in-line in non-stop mode, restart all threads. Clear
5241 step_over_info before delivering the signal.
5242 (keep_going_stepped_thread): Use internal_error instead of
5243 gdb_assert. Mark the thread as resumed.
5244 (keep_going_pass_signal): Assert the thread isn't already resumed.
5245 If some other thread is doing an in-line step-over, defer the
5246 resume. If we just started a new in-line step-over, stop all
5247 threads. Don't clear step_over_info.
5248 (infrun_async_inferior_event_handler): New function.
5249 (_initialize_infrun): Create async event handler with
5250 infrun_async_inferior_event_handler as callback.
5251 (infrun_async): New declaration.
5252 * target.c (target_async): New function.
5253 * target.h (target_async): Declare macro and readd as function
5254 declaration.
5255 * target/waitstatus.h (enum target_stop_reason)
5256 <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
5257 * thread.c (new_thread): Clear the new waitstatus field.
5258 (set_resumed): New function.
5259
5260 2015-08-07 Pedro Alves <palves@redhat.com>
5261
5262 * infrun.c (keep_going_stepped_thread): New function, factored out
5263 from ...
5264 (switch_back_to_stepped_thread): ... here.
5265
5266 2015-08-07 Pedro Alves <palves@redhat.com>
5267
5268 * infrun.c (currently_stepping): Extend intro comment.
5269 * target.h (target_resume): Extend intro comment.
5270
5271 2015-08-07 Pedro Alves <palves@redhat.com>
5272
5273 * infrun.c (switch_back_to_stepped_thread): Use ecs->ptid instead
5274 of inferior_ptid. If the stepped thread vanished, return 0
5275 instead of resuming here. Use reset_ecs. Print the prev_pc and
5276 the current stop_pc in log message. Clear trap_expected if the
5277 thread advanced. Don't pass currently_stepping to
5278 do_target_resume.
5279
5280 2015-08-07 Pedro Alves <palves@redhat.com>
5281
5282 * gdbthread.h (struct thread_info) <prev_pc>: Extend comment.
5283 * infrun.c (struct execution_control_state): Move higher up in the
5284 file.
5285 (reset_ecs): New function.
5286 (start_step_over): Now returns int. Rewrite to use
5287 keep_going_pass_signal instead of manually starting a displaced step.
5288 (resume): Don't call set_running here. If displaced stepping
5289 can't start now, clear trap_expected.
5290 (find_thread_needs_step_over): Delete function.
5291 (proceed): Set up finish_thread_state_cleanup. Call set_running.
5292 If the current thread needs a step over, push it in the step-over
5293 chain. Don't set insert breakpoints nor call resume directly
5294 here. Instead rewrite to use start_step_over and
5295 keep_going_pass_signal.
5296 (finish_step_over): New function.
5297 (handle_signal_stop): Call finish_step_over instead of
5298 start_step_over.
5299 (switch_back_to_stepped_thread): If the event thread needs another
5300 step-over do that first. Use start_step_over.
5301 (keep_going_pass_signal): New function, factored out from ...
5302 (keep_going): ... here.
5303 (_initialize_infrun): Comment moved here.
5304 * thread.c (set_running_thread): New function.
5305 (set_running, finish_thread_state): Use set_running_thread.
5306
5307 2015-08-07 Pedro Alves <palves@redhat.com>
5308
5309 * gdbthread.h (struct thread_info) <step_over_prev,
5310 step_over_next>: New fields.
5311 (thread_step_over_chain_enqueue, thread_step_over_chain_remove)
5312 (thread_step_over_chain_next, thread_is_in_step_over_chain): New
5313 declarations.
5314 * infrun.c (struct displaced_step_request): Delete.
5315 (struct displaced_step_inferior_state) <step_request_queue>:
5316 Delete field.
5317 (displaced_step_prepare): Assert that trap_expected is set. Use
5318 thread_step_over_chain_enqueue. Split starting a new displaced
5319 step to ...
5320 (start_step_over): ... this new function.
5321 (resume): Assert the thread isn't waiting for a step over already.
5322 (proceed): Assert the thread isn't waiting for a step over
5323 already.
5324 (infrun_thread_stop_requested): Adjust to remove threads from the
5325 embedded step-over chain.
5326 (handle_inferior_event) <fork/vfork>: Call start_step_over after
5327 displaced_step_fixup.
5328 (handle_signal_stop): Call start_step_over after
5329 displaced_step_fixup.
5330 * infrun.h (step_over_queue_head): New declaration.
5331 * thread.c (step_over_chain_enqueue, step_over_chain_remove)
5332 (thread_step_over_chain_next, thread_is_in_step_over_chain)
5333 (thread_step_over_chain_enqueue)
5334 (thread_step_over_chain_remove): New functions.
5335 (delete_thread_1): Remove thread from the step-over chain.
5336
5337 2015-08-07 Pedro Alves <palves@redhat.com>
5338
5339 * infrun.c (thread_still_needs_step_over): Rename to ...
5340 (thread_still_needs_step_over_bp): ... this.
5341 (enum step_over_what): New.
5342 (thread_still_needs_step_over): Reimplement.
5343
5344 2015-08-07 Pedro Alves <palves@redhat.com>
5345
5346 * remote.c (remote_wait_as): If not waiting for a stop reply,
5347 return TARGET_WAITKIND_NO_RESUMED. If TARGET_WNOHANG is
5348 requested, don't block waiting forever.
5349
5350 2015-08-07 Pedro Alves <pedro@codesourcery.com>
5351
5352 * infrun.c (adjust_pc_after_break): Now takes thread_info and
5353 waitstatus pointers instead of an ecs. Adjust.
5354 (handle_inferior_event): Adjust caller.
5355
5356 2015-08-07 Pedro Alves <palves@redhat.com>
5357
5358 * infrun.c (handle_inferior_event): If we get
5359 TARGET_WAITKIND_SIGNALLED or TARGET_WAITKIND_EXITED in non-stop
5360 mode, mark all threads of the exiting process as not-executing.
5361 (normal_stop): If we get TARGET_WAITKIND_SIGNALLED or
5362 TARGET_WAITKIND_EXITED in non-stop mode, finish all threads of the
5363 exiting process, if inferior_ptid still points at a process.
5364 * thread.c (struct current_thread_cleanup) <next>: New field.
5365 (current_thread_cleanup_chain): New global.
5366 (restore_current_thread_ptid_changed): New function.
5367 (restore_current_thread_cleanup_dtor): Remove the cleanup from the
5368 current_thread_cleanup_chain list.
5369 (make_cleanup_restore_current_thread): Add the cleanup data to the
5370 current_thread_cleanup_chain list.
5371 (_initialize_thread): Install restore_current_thread_ptid_changed
5372 as thread_ptid_changed observer.
5373
5374 2015-08-07 Joel Brobecker <brobecker@adacore.com>
5375
5376 * dtrace-probe.c (dtrace_process_dof): Ignore the objfile's DOF
5377 data if a DTRACE_DOF_SECT_TYPE_PROVIDER section is found to be
5378 smaller than expected.
5379
5380 2015-08-07 Andrew Burgess <andrew.burgess@embecosm.com>
5381
5382 * stack.c (get_frame_language): Moved ...
5383 * frame.c (get_frame_language): ... to here.
5384 * language.h (get_frame_language): Declaration moved to frame.h.
5385 * frame.h: Add language.h include, for language enum.
5386 (get_frame_language): Declaration moved from language.h.
5387 * language.c: Add frame.h include.
5388 * top.c: Add frame.h include.
5389 * symtab.h (struct obj_section): Declare.
5390 (struct cmd_list_element): Declare.
5391
5392 2015-08-07 Andrew Burgess <andrew.burgess@embecosm.com>
5393
5394 * language.c (show_language_command): Find selected frame before
5395 asking for the language of that frame.
5396 (set_language_command): Likewise.
5397 * language.h (get_frame_language): Add frame parameter.
5398 * stack.c (get_frame_language): Add frame parameter, assert
5399 parameter is not NULL, update comment and reindent.
5400 * top.c (check_frame_language_change): Pass the selected frame
5401 into get_frame_language.
5402
5403 2015-08-07 Markus Metzger <markus.t.metzger@intel.com>
5404
5405 * btrace.c (btrace_compute_ftrace_bts): Clear insn flags.
5406 (pt_btrace_insn_flags): New.
5407 (ftrace_add_pt): Call pt_btrace_insn_flags.
5408 * btrace.h (btrace_insn_flag): New.
5409 (btrace_insn) <flags>: New.
5410 * record-btrace.c (btrace_insn_history): Print insn prefix.
5411 * NEWS: Announce it.
5412
5413 2015-08-07 Markus Metzger <markus.t.metzger@intel.com>
5414
5415 * configure.ac: Check for PERF_ATTR_SIZE_VER5 in linux/perf_event.h
5416 * configure: Regenerate.
5417
5418 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
5419
5420 * Makefile.in (LIBICONV): Define.
5421 (CLIBS): Add LIBICONV.
5422 * acinclude.m4: Use config/iconv.m4 instead of custom AM_ICONV.
5423 * configure: Regenerate.
5424
5425 2015-08-06 Simon Marchi <simon.marchi@ericsson.com>
5426 Pedro Alves <palves@redhat.com>
5427
5428 * arm-tdep.c (set_fp_model_sfunc): Add cast from integer to enum.
5429 (arm_set_abi): Likewise.
5430 * ax-general.c (ax_print): Likewise.
5431 * c-exp.y (exp : string_exp): Likewise.
5432 * compile/compile-loc2c.c (compute_stack_depth_worker): Likewise.
5433 (do_compile_dwarf_expr_to_c): Likewise.
5434 * cp-name-parser.y (demangler_special : DEMANGLER_SPECIAL start):
5435 Likewise.
5436 * dwarf2expr.c (execute_stack_op): Likewise.
5437 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
5438 (disassemble_dwarf_expression): Likewise.
5439 * dwarf2read.c (dwarf2_add_member_fn): Likewise.
5440 (read_array_order): Likewise.
5441 (abbrev_table_read_table): Likewise.
5442 (read_attribute_value): Likewise.
5443 (skip_unknown_opcode): Likewise.
5444 (dwarf_decode_macro_bytes): Likewise.
5445 (dwarf_decode_macros): Likewise.
5446 * eval.c (value_f90_subarray): Likewise.
5447 * guile/scm-param.c (gdbscm_make_parameter): Likewise.
5448 * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
5449 * infrun.c (handle_command): Likewise.
5450 * memory-map.c (memory_map_start_memory): Likewise.
5451 * osabi.c (set_osabi): Likewise.
5452 * parse.c (operator_length_standard): Likewise.
5453 * ppc-linux-tdep.c (ppc_canonicalize_syscall): Likewise, and use
5454 single return point.
5455 * python/py-frame.c (gdbpy_frame_stop_reason_string): Likewise.
5456 * python/py-symbol.c (gdbpy_lookup_symbol): Likewise.
5457 (gdbpy_lookup_global_symbol): Likewise.
5458 * record-full.c (record_full_restore): Likewise.
5459 * regcache.c (regcache_register_status): Likewise.
5460 (regcache_raw_read): Likewise.
5461 (regcache_cooked_read): Likewise.
5462 * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
5463 * symtab.c (initialize_ordinary_address_classes): Likewise.
5464 * target-debug.h (target_debug_print_signals): Likewise.
5465 * utils.c (do_restore_current_language): Likewise.
5466
5467 2015-08-06 Clem Dickey <clemd@acm.org>
5468
5469 PR python/17136
5470 * python/lib/gdb/command/type_printers.py (InfoTypePrinter): Fix typo.
5471
5472 2015-08-06 Simon Marchi <simon.marchi@ericsson.com>
5473
5474 * complaints.c (enum complaint_series): Add newlines and remove
5475 out of date comment.
5476 (struct complaints) <series>: Change type to enum
5477 complaint_series and remove out of date comment.
5478 (symfile_complaint_hook): Use equivalent enum value
5479 ISOLATED_MESSAGE instead of 0.
5480
5481 2015-08-06 Pedro Alves <palves@redhat.com>
5482
5483 * nat/linux-waitpid.c (my_waitpid): Only print *status if waitpid
5484 returned > 0.
5485
5486 2015-08-06 Pierre Langlois <pierre.langlois@arm.com>
5487
5488 * common/agent.c (symbol_list) <required>: Remove.
5489
5490 2015-08-06 Pedro Alves <palves@redhat.com>
5491
5492 * target/waitstatus.h (enum target_stop_reason)
5493 <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
5494
5495 2015-08-05 Pedro Alves <palves@redhat.com>
5496 Joel Brobecker <brobecker@adacore.com>
5497
5498 * breakpoint.c (bpstat_what) <bp_longjmp, bp_longjmp_call_dummy>
5499 <bp_exception, bp_longjmp_resume, bp_exception_resume>: Handle the
5500 case where BS->STOP is not set.
5501
5502 2015-08-05 Ulrich Weigand <uweigand@de.ibm.com>
5503
5504 * nat/gdb_thread_db.h: Add copyright header.
5505 Protect against multiple inclusion.
5506
5507 2015-08-05 Yao Qi <yao.qi@linaro.org>
5508
5509 * aarch64-linux-nat.c (get_thread_id): Remove.
5510 (debug_reg_change_callback): Call ptid_get_lwp instead of
5511 get_thread_id.
5512 (fetch_gregs_from_thread): Likewise.
5513 (store_gregs_to_thread): Likewise.
5514 (fetch_fpregs_from_thread): Likewise.
5515 (store_fpregs_to_thread): Likewise.
5516 (aarch64_linux_get_debug_reg_capacity): Likewise.
5517 * arm-linux-nat.c (get_thread_id): Remove.
5518 (GET_THREAD_ID): Update macro to use ptid_get_lwp.
5519 * xtensa-linux-nat.c (get_thread_id): Remove.
5520 (GET_THREAD_ID): Update macro to use ptid_get_lwp.
5521 * arm-linux-nat.c (get_thread_id): Remove.
5522 (GET_THREAD_ID): Remove.
5523 (fetch_fpregs): Call ptid_get_lwp instead of GET_THREAD_ID.
5524 (store_fpregs, fetch_regs, store_regs): Likewise.
5525 (fetch_wmmx_regs, store_wmmx_regs): Likewise.
5526 (fetch_vfp_regs, store_vfp_regs): Likewise.
5527 (arm_linux_read_description): Likewise.
5528 (arm_linux_get_hwbp_cap): Likewise.
5529 * xtensa-linux-nat.c (get_thread_id): Remove.
5530 (GET_THREAD_ID): Remove.
5531 (fetch_gregs, store_gregs): Call ptid_get_lwp instead of
5532 GET_THREAD_ID.
5533
5534 2015-08-04 Ciro Santilli <ciro.santilli@gmail.com> (obvious patch)
5535
5536 * python/py-linetable.c: Fix case of Linetable to LineTable
5537 in docstrings and code comments.
5538 * python/py-symtab.c: Same.
5539
5540 2015-08-04 Jan Kratochvil <jan.kratochvil@redhat.com>
5541
5542 * infcmd.c (signal_command): Call do_cleanups for args_chain.
5543
5544 2015-08-04 Jan Kratochvil <jan.kratochvil@redhat.com>
5545
5546 PR gdb/18767
5547 * infcmd.c (attach_command): Move ARGS_CHAIN cleanup after last ARGS
5548 use.
5549
5550 2015-08-04 Pedro Alves <palves@redhat.com>
5551
5552 * nat/gdb_thread_db.h (td_init_ftype, td_ta_new_ftype)
5553 (td_ta_map_lwp2thr_ftype, td_ta_thr_iter_ftype)
5554 (td_ta_event_addr_ftype, td_ta_set_event_ftype)
5555 (td_ta_clear_event_ftype, td_ta_event_getmsg_ftype)
5556 (td_thr_validate_ftype, td_thr_get_info_ftype)
5557 (td_thr_event_enable_ftype, td_thr_tls_get_addr_ftype)
5558 (td_thr_tlsbase_ftype, td_symbol_list_ftype, td_ta_delete_ftype):
5559 New typedefs.
5560 * linux-thread-db.c (struct thread_db_info): Use new typedefs.
5561 (try_thread_db_load_1): Define TDB_VERBOSE_DLSYM, TDB_DLSYM , CHK
5562 local macros and use them instead of verbose_dlsym and dlsym
5563 calls.
5564
5565 2015-08-03 Sandra Loosemore <sandra@codesourcery.com>
5566
5567 * nios2-tdep.h: Include opcode/nios2.h here.
5568 (NIOS2_CDX_OPCODE_SIZE): New.
5569 (struct gdbarch_tdep): Add OP parameter to syscall_next_pc.
5570 * nios2-tdep.c: Don't include opcode/nios2.h here.
5571 (nios2_fetch_insn): For R2, try reading 2-byte instruction if
5572 4-byte read fails.
5573 (nios2_match_add, nios2_match_sub): Add cases for R2 encodings.
5574 (nios2_match_addi, nios2_match_orhi): Likewise.
5575 (nios2_match_stw, nios2_match_ldw): Likewise.
5576 (nios2_match_rdctl): Likewise.
5577 (nios2_match_stwm, nios2_match_ldwm): New.
5578 (nios2_match_branch): Add cases for R2 encodings.
5579 (nios2_match_jmpi, nios2_match_calli): Likewise.
5580 (nios2_match_jmpr, nios2_match_callr): Likewise.
5581 (nios2_match_break, nios2_match_trap): Likewise.
5582 (nios2_in_epilogue_p): Add R2 support.
5583 (nios2_analyze_prologue): Update comments. Recognize R2 CDX
5584 prologues.
5585 (nios2_breakpoint_from_pc): Handle R2 instructions.
5586 (nios2_get_next_pc): Likewise. Adjust call to
5587 tdep->syscall_next_pc.
5588 * nios2-linux-tdep.c (nios2_r1_linux_rt_sigreturn_tramp_frame):
5589 Renamed from nios2_linux_rt_sigreturn_tramp_frame. Use
5590 instruction field macros instead of literal hex values.
5591 (nios2_r2_linux_rt_sigreturn_tramp_frame): New.
5592 (nios2_linux_syscall_next_pc): Adjust signature to pass OP.
5593 Use size field from OP instead of assuming all instructions
5594 are the same size.
5595 (nios2_linux_init_abi): Register appropriate unwinder for mach.
5596
5597 2015-08-03 Ulrich Weigand <uweigand@de.ibm.com>
5598
5599 * cp-namespace.c (cp_lookup_symbol_via_imports): Fix uninitialized
5600 variable warning with some compilers.
5601
5602 2015-08-03 Yao Qi <yao.qi@linaro.org>
5603
5604 * arm-linux-nat.c (arm_linux_get_hwbp_type): Capitalize "type"
5605 in comment. Replace "rw" with "type".
5606 (arm_linux_remove_watchpoint): Change type of "rw" to
5607 "enum target_hw_bp_type".
5608
5609 2015-08-02 Pierre-Marie de Rodat <derodat@adacore.com>
5610
5611 * alpha-mdebug-tdep.c (find_proc_desc): Update call to
5612 lookup_symbol.
5613 * ft32-tdep.c (ft32_skip_prologue): Likewise.
5614 * moxie-tdep.c (moxie_skip_prologue): Likewise.
5615 * mt-tdep.c (mt_skip_prologue): Likewise.
5616 * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
5617
5618 2015-08-01 Pierre-Marie de Rodat <derodat@adacore.com>
5619
5620 * ada-exp.y (write_object_renaming): Replace struct
5621 ada_symbol_info with struct block_symbol. Update field
5622 references accordingly.
5623 (block_lookup, select_possible_type_sym): Likewise.
5624 (find_primitive_type): Likewise. Also update call to
5625 ada_lookup_symbol to extract the symbol itself.
5626 (write_var_or_type, write_name_assoc): Likewise.
5627 * ada-lang.h (struct ada_symbol_info): Remove.
5628 (ada_lookup_symbol_list): Replace struct ada_symbol_info with
5629 struct block_symbol.
5630 (ada_lookup_encoded_symbol, user_select_syms): Likewise.
5631 (ada_lookup_symbol): Return struct block_symbol instead of a
5632 mere symbol.
5633 * ada-lang.c (defns_collected): Replace struct ada_symbol_info
5634 with struct block_symbol.
5635 (resolve_subexp, ada_resolve_function, sort_choices,
5636 user_select_syms, is_nonfunction, add_defn_to_vec,
5637 num_defns_collected, defns_collected,
5638 symbols_are_identical_enums, remove_extra_symbols,
5639 remove_irrelevant_renamings, add_lookup_symbol_list_worker,
5640 ada_lookup_symbol_list, ada_iterate_over_symbols,
5641 ada_lookup_encoded_symbol, get_var_value): Likewise.
5642 (ada_lookup_symbol): Return a block_symbol instead of a mere
5643 symbol. Replace struct ada_symbol_info with struct
5644 block_symbol.
5645 (ada_lookup_symbol_nonlocal): Likewise.
5646 (standard_lookup): Make block passing explicit through
5647 lookup_symbol_in_language.
5648 * ada-tasks.c (get_tcb_types_info): Update the calls to
5649 lookup_symbol_in_language to extract the mere symbol out of the
5650 returned value.
5651 (ada_tasks_inferior_data_sniffer): Likewise.
5652 * ax-gdb.c (gen_static_field): Likewise for the call to
5653 lookup_symbol.
5654 (gen_maybe_namespace_elt): Deal with struct block_symbol from
5655 lookup functions.
5656 (gen_expr): Likewise.
5657 * c-exp.y: Likewise. Remove uses of block_found.
5658 (lex_one_token, classify_inner_name, c_print_token): Likewise.
5659 (classify_name): Likewise. Rename the "sym" local variable to
5660 "bsym".
5661 * c-valprint.c (print_unpacked_pointer): Likewise.
5662 * compile/compile-c-symbols.c (convert_symbol_sym): Promote the
5663 "sym" parameter from struct symbol * to struct block_symbol.
5664 Use it to remove uses of block_found. Deal with struct
5665 block_symbol from lookup functions.
5666 (gcc_convert_symbol): Likewise. Update the call to
5667 convert_symbol_sym.
5668 * compile/compile-object-load.c (compile_object_load): Deal with
5669 struct block_symbol from lookup functions.
5670 * cp-namespace.c (cp_lookup_nested_symbol_1,
5671 cp_lookup_nested_symbol, cp_lookup_bare_symbol,
5672 cp_search_static_and_baseclasses,
5673 cp_lookup_symbol_in_namespace, cp_lookup_symbol_via_imports,
5674 cp_lookup_symbol_imports_or_template,
5675 cp_lookup_symbol_via_all_imports, cp_lookup_symbol_namespace,
5676 lookup_namespace_scope, cp_lookup_nonlocal,
5677 find_symbol_in_baseclass): Return struct block_symbol instead of
5678 mere symbols and deal with struct block_symbol from lookup
5679 functions.
5680 * cp-support.c (inspect_type, replace_typedefs,
5681 cp_lookup_rtti_type): Deal with struct block_symbol from
5682 lookup functions.
5683 * cp-support.h (cp_lookup_symbol_nonlocal,
5684 cp_lookup_symbol_from_namespace,
5685 cp_lookup_symbol_imports_or_template, cp_lookup_nested_symbol):
5686 Return struct block_symbol instead of mere symbols.
5687 * d-exp.y (d_type_from_name, d_module_from_name, push_variable,
5688 push_module_name):
5689 Deal with struct block_symbol from lookup functions. Remove
5690 uses of block_found.
5691 * eval.c (evaluate_subexp_standard): Update call to
5692 cp_lookup_symbol_namespace.
5693 * f-exp.y: Deal with struct block_symbol from lookup functions.
5694 Remove uses of block_found.
5695 (yylex): Likewise.
5696 * gdbtypes.c (lookup_typename, lookup_struct, lookup_union,
5697 lookup_enum, lookup_template_type, check_typedef): Deal with
5698 struct block_symbol from lookup functions.
5699 * guile/scm-frame.c (gdbscm_frame_read_var): Likewise.
5700 * guile/scm-symbol.c (gdbscm_lookup_symbol): Likewise.
5701 (gdbscm_lookup_global_symbol): Likewise.
5702 * gnu-v3-abi.c (gnuv3_get_typeid_type): Likewise.
5703 * go-exp.y: Likewise. Remove uses of block_found.
5704 (package_name_p, classify_packaged_name, classify_name):
5705 Likewise.
5706 * infrun.c (insert_exception_resume_breakpoint): Likewise.
5707 * jv-exp.y (push_variable): Likewise.
5708 * jv-lang.c (java_lookup_class, get_java_object_type): Likewise.
5709 * language.c (language_bool_type): Likewise.
5710 * language.h (struct language_defn): Update
5711 la_lookup_symbol_nonlocal to return a struct block_symbol rather
5712 than a mere symbol.
5713 * linespec.c (find_label_symbols): Deal with struct block_symbol
5714 from lookup functions.
5715 * m2-exp.y: Likewise. Remove uses of block_found.
5716 (yylex): Likewise.
5717 * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
5718 * objc-lang.c (lookup_struct_typedef, find_imps): Likewise.
5719 * p-exp.y: Likewise. Remove uses of block_found.
5720 (yylex): Likewise.
5721 * p-valprint.c (pascal_val_print): Likewise.
5722 * parse.c (write_dollar_variable): Likewise. Remove uses of
5723 block_found.
5724 * parser-defs.h (struct symtoken): Turn the SYM field into a
5725 struct block_symbol.
5726 * printcmd.c (address_info): Deal with struct block_symbol from
5727 lookup functions.
5728 * python/py-frame.c (frapy_read_var): Likewise.
5729 * python/py-symbol.c (gdbpy_lookup_symbol,
5730 gdbpy_lookup_global_symbol): Likewise.
5731 * skip.c (skip_function_command): Likewise.
5732 * solib-darwin.c (darwin_lookup_lib_symbol): Return a struct
5733 block_symbol instead of a mere symbol.
5734 * solib-spu.c (spu_lookup_lib_symbol): Likewise.
5735 * solib-svr4.c (elf_lookup_lib_symbol): Likewise.
5736 * solib.c (solib_global_lookup): Likewise.
5737 * solist.h (solib_global_lookup): Likewise.
5738 (struct target_so_ops): Update lookup_lib_global_symbol to
5739 return a struct block_symbol rather than a mere symbol.
5740 * source.c (select_source_symtab): Deal with struct block_symbol
5741 from lookup functions.
5742 * stack.c (print_frame_args, iterate_over_block_arg_vars):
5743 Likewise.
5744 * symfile.c (set_initial_language): Likewise.
5745 * symtab.c (SYMBOL_LOOKUP_FAILED): Turn into a struct
5746 block_symbol.
5747 (SYMBOL_LOOKUP_FAILED_P): New predicate as a macro.
5748 (struct symbol_cache_slot): Turn the FOUND field into a struct
5749 block_symbol.
5750 (block_found): Remove.
5751 (eq_symbol_entry): Update to deal with struct block_symbol in
5752 cache slots.
5753 (symbol_cache_lookup): Return a struct block_symbol rather than
5754 a mere symbol.
5755 (symbol_cache_mark_found): Add a BLOCK parameter to fill
5756 appropriately the cache slots. Update callers.
5757 (symbol_cache_dump): Update cache slots handling to the type
5758 change.
5759 (lookup_symbol_in_language, lookup_symbol, lookup_language_this,
5760 lookup_symbol_aux, lookup_local_symbol,
5761 lookup_symbol_in_objfile, lookup_global_symbol_from_objfile,
5762 lookup_symbol_in_objfile_symtabs,
5763 lookup_symbol_in_objfile_from_linkage_name,
5764 lookup_symbol_via_quick_fns, basic_lookup_symbol_nonlocal,
5765 lookup_symbol_in_static_block, lookup_static_symbol,
5766 lookup_global_symbol):
5767 Return a struct block_symbol rather than a mere symbol. Deal
5768 with struct block_symbol from other lookup functions. Remove
5769 uses of block_found.
5770 (lookup_symbol_in_block): Remove uses of block_found.
5771 (struct global_sym_lookup_data): Turn the RESULT field into a
5772 struct block_symbol.
5773 (lookup_symbol_global_iterator_cb): Update references to the
5774 RESULT field.
5775 (search_symbols): Deal with struct block_symbol from lookup
5776 functions.
5777 * symtab.h (struct block_symbol): New structure.
5778 (block_found): Remove.
5779 (lookup_symbol_in_language, lookup_symbol,
5780 basic_lookup_symbol_nonlocal, lookup_symbol_in_static_block,
5781 lookup_static_symbol, lookup_global_symbol, lookup_language_this,
5782 lookup_global_symbol_from_objfile): Return a struct block_symbol
5783 rather than just a mere symbol. Update comments to remove
5784 mentions of block_found.
5785 * valops.c (find_function_in_inferior,
5786 value_struct_elt_for_reference, value_maybe_namespace_elt,
5787 value_of_this): Deal with struct block_symbol from lookup
5788 functions.
5789 * value.c (value_static_field, value_fn_field): Likewise.
5790
5791 2015-07-31 Simon Marchi <simon.marchi@ericsson.com>
5792
5793 * remote-m32r-sdi.c (m32r_remove_watchpoint): Use enum type
5794 instead of integer.
5795
5796 2015-07-31 Simon Marchi <simon.marchi@ericsson.com>
5797 Pedro Alves <palves@redhat.com>
5798
5799 * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): Use enum
5800 type or value instead of integer.
5801 (aarch64_linux_insert_watchpoint): Likewise.
5802 (aarch64_linux_remove_watchpoint): Likewise.
5803 * ada-lang.c (ada_op_print_tab): Likewise.
5804 * amd64-linux-tdep.c (amd64_canonicalize_syscall): Likewise.
5805 (amd64_linux_syscall_record_common): Likewise.
5806 * arch-utils.c (target_byte_order_user): Likewise.
5807 (default_byte_order): Likewise.
5808 * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Likewise.
5809 (arm_linux_get_hwbp_type): Likewise.
5810 (arm_linux_hw_watchpoint_initialize): Likewise.
5811 (arm_linux_insert_watchpoint): Likewise.
5812 * arm-linux-tdep.c (arm_canonicalize_syscall): Likewise.
5813 (arm_linux_syscall_record): Likewise.
5814 * breakpoint.c (update_watchpoint): Likewise.
5815 (breakpoint_here_p): Likewise.
5816 (bpstat_print): Likewise.
5817 (enable_breakpoint_disp): Likewise.
5818 * c-lang.c (c_op_print_tab): Likewise.
5819 * cli/cli-decode.c (add_info_alias): Likewise.
5820 * d-lang.c (d_op_print_tab): Likewise.
5821 * eval.c (evaluate_subexp_standard): Likewise.
5822 * f-exp.y (dot_ops): Likewise.
5823 (f77_keywords): Likewise.
5824 * f-lang.c (f_op_print_tab): Likewise.
5825 * go-lang.c (go_op_print_tab): Likewise.
5826 * guile/scm-breakpoint.c (gdbscm_make_breakpoint): Likewise.
5827 * guile/scm-cmd.c (gdbscm_make_command): Likewise.
5828 * guile/scm-param.c (gdbscm_make_parameter): Likewise.
5829 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): Likewise.
5830 * guile/scm-string.c (struct scm_to_stringn_data): Likewise.
5831 (struct scm_from_stringn_data): Likewise.
5832 * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
5833 * ia64-linux-nat.c (ia64_linux_insert_watchpoint): Likewise.
5834 (ia64_linux_remove_watchpoint): Likewise.
5835 (ia64_linux_can_use_hw_breakpoint): Likewise.
5836 * infrun.c (print_stop_event): Likewise.
5837 * jv-lang.c (java_op_print_tab): Likewise.
5838 * linux-nat.c (linux_proc_xfer_partial): Likewise.
5839 * linux-nat.h (struct lwp_info): Likewise.
5840 * linux-thread-db.c (enable_thread_event): Likewise.
5841 * m2-lang.c (m2_op_print_tab): Likewise.
5842 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Likewise.
5843 (mi_cmd_stack_list_variables): Likewise.
5844 * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise.
5845 * mi/mi-out.c (mi_table_begin): Likewise.
5846 (mi_table_header): Likewise.
5847 * mips-linux-nat.c (mips_linux_can_use_hw_breakpoint): Likewise.
5848 (mips_linux_insert_watchpoint): Likewise.
5849 (mips_linux_remove_watchpoint): Likewise.
5850 * nat/mips-linux-watch.c (mips_linux_watch_type_to_irw): Likewise.
5851 * nat/mips-linux-watch.h (struct mips_watchpoint): Likewise.
5852 (mips_linux_watch_type_to_irw): Likewise.
5853 * nto-procfs.c (procfs_can_use_hw_breakpoint): Likewise.
5854 (procfs_insert_hw_watchpoint): Likewise.
5855 (procfs_remove_hw_watchpoint): Likewise.
5856 (procfs_hw_watchpoint): Likewise.
5857 (procfs_can_use_hw_breakpoint): Likewise.
5858 (procfs_remove_hw_watchpoint): Likewise.
5859 (procfs_insert_hw_watchpoint): Likewise.
5860 * p-lang.c (pascal_op_print_tab): Likewise.
5861 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): Likewise.
5862 * ppc-linux-tdep.c (ppu2spu_unwind_register): Likewise.
5863 * ppc-sysv-tdep.c (get_decimal_float_return_value): Likewise.
5864 * procfs.c (procfs_can_use_hw_breakpoint): Likewise.
5865 (procfs_insert_watchpoint): Likewise.
5866 (procfs_remove_watchpoint): Likewise.
5867 * psymtab.c (recursively_search_psymtabs): Likewise.
5868 * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint): Likewise.
5869 (m32r_insert_watchpoint): Likewise.
5870 * remote-mips.c (mips_can_use_watchpoint): Likewise.
5871 (mips_insert_watchpoint): Likewise.
5872 (mips_remove_watchpoint): Likewise.
5873 * remote.c (watchpoint_to_Z_packet): Likewise.
5874 (remote_insert_watchpoint): Likewise.
5875 (remote_remove_watchpoint): Likewise.
5876 (remote_check_watch_resources): Likewise.
5877 * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
5878 (s390_remove_watchpoint): Likewise.
5879 (s390_can_use_hw_breakpoint): Likewise.
5880 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
5881 * spu-linux-nat.c (spu_can_use_hw_breakpoint): Likewise.
5882 * target.h (struct target_ops): Likewise.
5883 * tilegx-tdep.c (tilegx_analyze_prologue): Likewise.
5884 * ui-out.c (struct ui_out_hdr): Likewise.
5885 (append_header_to_list): Likewise.
5886 (get_next_header): Likewise.
5887 (verify_field): Likewise.
5888 (ui_out_begin): Likewise.
5889 (ui_out_field_int): Likewise.
5890 (ui_out_field_fmt_int): Likewise.
5891 (ui_out_field_skip): Likewise.
5892 (ui_out_field_string): Likewise.
5893 (ui_out_field_fmt): Likewise.
5894 * varobj.c (new_variable): Likewise.
5895 * x86-nat.c (x86_insert_watchpoint): Likewise.
5896 (x86_remove_watchpoint): Likewise.
5897 (x86_can_use_hw_breakpoint): Likewise.
5898 * xtensa-tdep.h (struct gdbarch_tdep): Likewise.
5899 * inflow.c (enum gdb_has_a_terminal_flag_enum): Add name to
5900 previously anonymous enumeration type..
5901 * linux-record.h (enum gdb_syscall): Add gdb_sys_no_syscall
5902 value.
5903 * target-debug.h (target_debug_print_enum_target_hw_bp_type): New.
5904 (target_debug_print_enum_bptype): New.
5905 * target-delegates.c: Regenerate.
5906
5907 2015-07-30 Sandra Loosemore <sandra@codesourcery.com>
5908
5909 * nios2-tdep.c (nios2_analyze_prologue): Do what the comment
5910 already says and disallow non-stack memory writes in the prologue.
5911
5912 2015-07-30 Sandra Loosemore <sandra@codesourcery.com>
5913
5914 * nios2-tdep.c (nios2_analyze_prologue): Update comments to
5915 reflect how current GCC emits stack overflow checks. Match
5916 both trap and break instructions for backward compatbility.
5917 Disallow other trap and break instructions in the prologue.
5918
5919 2015-07-30 Pedro Alves <palves@redhat.com>
5920
5921 PR threads/18600
5922 * linux-nat.c (wait_lwp): Report to the core when thread group
5923 leader exits.
5924
5925 2015-07-30 Pedro Alves <palves@redhat.com>
5926 Simon Marchi <simon.marchi@ericsson.com>
5927
5928 PR threads/18600
5929 * linux-nat.c (linux_handle_extended_wait): On CLONE event, always
5930 mark the new thread as resumed. Remove STOPPING parameter.
5931 (wait_lwp): Adjust call to linux_handle_extended_wait.
5932 (linux_nat_filter_event): Adjust call to
5933 linux_handle_extended_wait.
5934 (resume_stopped_resumed_lwps): Add debug output.
5935
5936 2015-07-30 Pierre Langlois <pierre.langlois@arm.com>
5937
5938 * arch-utils.c (default_fast_tracepoint_valid_at): Remove unused
5939 isize argument.
5940 * arch-utils.h (default_fast_tracepoint_valid_at): Likewise.
5941 * breakpoint.c (check_fast_tracepoint_sals): Adjust call to
5942 gdbarch_fast_tracepoint_valid_at.
5943 * gdbarch.sh (fast_tracepoint_valid_at): Remove isize argument.
5944 * gdbarch.h: Regenerate.
5945 * gdbarch.c: Regenerate.
5946 * i386-tdep.c (i386_fast_tracepoint_valid_at): Remove isize
5947 argument. Do not set it.
5948 * remote.c (remote_download_tracepoint): Adjust call to
5949 gdbarch_fast_tracepoint_valid_at. Call gdb_insn_length to get
5950 the instruction length.
5951
5952 2015-07-30 Yao Qi <yao.qi@linaro.org>
5953
5954 * arm-tdep.h (enum gdb_regnum): Move it to ...
5955 * arch/arm.h: ... here. New file.
5956 * Makefile.in (HFILES_NO_SRCDIR): Add arch/arm.h.
5957
5958 2015-07-30 Pierre Langlois <pierre.langlois@arm.com>
5959
5960 * aarch64-tdep.c (decode_b): Rename link argument to is_bl.
5961 Change its type to int *.
5962 (decode_br): Rename link argument to is_blr. Change its type to
5963 int *.
5964 (decode_cb): Rename op argument to is_cbnz. Change its type to
5965 int *.
5966 (decode_tb): Rename op argument to is_tbnz. Change its type to
5967 int *. Set is_tbnz to either 1 or 0.
5968 (aarch64_analyze_prologue): Change type of is_link to int. Add
5969 new variables is_cbnz and is_tbnz. Adjust call to
5970 aarch64_decode_cb and aarch64_decode_tb.
5971
5972 2015-07-29 Simon Marchi <simon.marchi@ericsson.com>
5973
5974 * mips-linux-nat.c (write_watchpoint_regs): Add NULL as ptrace's 4th
5975 parameter.
5976 (mips_linux_new_thread): Likewise.
5977 * nat/mips-linux-watch.c (mips_linux_read_watch_registers): Likewise.
5978
5979 2015-07-29 Patrick Palka <patrick@parcs.ath.cx>
5980
5981 * top.c: Include "tui/tui.h".
5982 (undo_terminal_modifications_before_exit): New static function.
5983 (quit_force): Use it.
5984
5985 2015-07-29 Patrick Palka <patrick@parcs.ath.cx>
5986
5987 * target.c (terminal_state): Initialize to terminal_is_ours.
5988
5989 2015-07-29 Yao Qi <yao.qi@linaro.org>
5990
5991 PR record/18691
5992 * dcache.c (dcache_read_memory_partial): Call
5993 raw_memory_xfer_partial.
5994 * target.c (raw_memory_xfer_partial): Make it non-static.
5995 * target.h (raw_memory_xfer_partial): Declare.
5996
5997 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
5998
5999 * c-valprint.c (c_val_print_array): Consider addressable memory
6000 unit size.
6001 (c_val_print_ptr): Likewise.
6002 (c_val_print_int): Likewise.
6003 * findvar.c (read_frame_register_value): Likewise.
6004 * valarith.c (find_size_for_pointer_math): Likewise.
6005 (value_ptrdiff): Likewise.
6006 (value_subscripted_rvalue): Likewise.
6007 * valops.c (read_value_memory): Likewise (and rename variables).
6008 (value_assign): Likewise.
6009 (value_repeat): Likewise.
6010 (value_array): Likewise.
6011 (value_slice): Likewise.
6012 * valprint.c (generic_val_print_ptr): Likewise.
6013 (generic_val_print_enum): Likewise.
6014 (generic_val_print_bool): Likewise.
6015 (generic_val_print_int): Likewise.
6016 (generic_val_print_char): Likewise.
6017 (generic_val_print_float): Likewise.
6018 (generic_val_print_decfloat): Likewise.
6019 (generic_val_print_complex): Likewise.
6020 (val_print_scalar_formatted): Likewise.
6021 (val_print_array_elements): Likewise.
6022 * value.c (set_value_parent): Likewise.
6023 (value_contents_copy_raw): Likewise.
6024 (set_internalvar_component): Likewise.
6025 (value_primitive_field): Likewise.
6026 (value_fetch_lazy): Likewise.
6027 * value.h (read_value_memory): Update comment.
6028
6029 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
6030
6031 * value.c (get_value_arch): New function.
6032 * value.h (get_value_arch): New declaration.
6033
6034 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
6035
6036 * value.c (struct value): Update comments.
6037
6038 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
6039
6040 * gdbtypes.c (type_length_units): New function.
6041 * gdbtypes.h (type_length_units): New declaration.
6042 (struct type) <length>: Update comment.
6043
6044 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
6045
6046 * valprint.c (generic_val_print): Factor out complex
6047 printing code to ...
6048 (generic_val_print_complex): ... this new function.
6049
6050 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
6051
6052 * valprint.c (generic_val_print): Factor out decfloat
6053 printing code to ...
6054 (generic_val_print_decfloat): ... this new function.
6055
6056 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
6057
6058 * valprint.c (generic_val_print): Factor out float
6059 printing code to ...
6060 (generic_val_print_float): ... this new function.
6061
6062 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
6063
6064 * valprint.c (generic_val_print): Factor out char
6065 printing code to ...
6066 (generic_val_print_char): ... this new function.
6067
6068 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
6069
6070 * valprint.c (generic_val_print): Factor out integer
6071 printing code to ...
6072 (generic_val_print_int): ... this new function.
6073
6074 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
6075
6076 * valprint.c (generic_val_print): Factor out bool
6077 printing code to ...
6078 (generic_val_print_bool): ... this new function.
6079
6080 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
6081
6082 * valprint.c (generic_val_print): Factor out function/method
6083 printing code to ...
6084 (generic_val_print_func): ... this new function.
6085
6086 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
6087
6088 * valprint.c (generic_val_print): Factor out flags
6089 printing code to ...
6090 (generic_val_print_flags): ... this new function.
6091
6092 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
6093
6094 * valprint.c (generic_val_print): Factor out enum
6095 printing code to ...
6096 (generic_val_print_enum): ... this new function.
6097
6098 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
6099
6100 * valprint.c (generic_val_print): Factor out reference
6101 printing code to ...
6102 (generic_val_print_ref): ... this new function.
6103
6104 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
6105
6106 * valprint.c (generic_val_print): Factor out memberptr
6107 printing code to ...
6108 (generic_val_print_memberptr): ... this new function.
6109
6110 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
6111
6112 * valprint.c (generic_val_print): Factor out pointer
6113 printing code to ...
6114 (generic_val_print_ptr): ... this new function.
6115
6116 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
6117
6118 * valprint.c (generic_val_print): Factor out array
6119 printing code to ...
6120 (generic_val_print_array): ... this new function.
6121
6122 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
6123
6124 * valprint.c (generic_val_print): Factor out
6125 print_unpacked_pointer code to ...
6126 (print_unpacked_pointer): ... this new function.
6127
6128 2015-07-27 Patrick Palka <patrick@parcs.ath.cx>
6129
6130 * event-top.c (handle_sigterm): Don't inspect
6131 target_can_async_p. Always set the quit flag and always mark
6132 the async signal handler.
6133
6134 2015-07-27 Yao Qi <yao.qi@linaro.org>
6135
6136 * Makefile.in (REMOTE_EXAMPLES): Remove it.
6137
6138 2015-07-25 Kevin Buettner <kevinb@redhat.com>
6139
6140 * remote.c (read_ptid): Return null_ptid when no thread id
6141 is found.
6142 (remote_current_thread): Add log warning for malformed
6143 qC reply.
6144 (remote_start_remote): Add log warning when current thread
6145 not found.
6146
6147 2015-07-24 Pedro Alves <palves@redhat.com>
6148
6149 * s390-linux-nat.c (fetch_regs, store_regs, fetch_fpregs)
6150 (s390_stopped_by_watchpoint, s390_prepare_to_resume): Pass 0 as
6151 forth argument to ptrace PTRACE_PEEKUSR_AREA/PTRACE_POKEUSR_AREA.
6152
6153 2015-07-24 Pedro Alves <palves@redhat.com>
6154
6155 PR gdb/18717
6156 * linux-nat.c (linux_nat_filter_event): Don't assert that the lwp
6157 is resumed, and extend the debug log.
6158
6159 2015-07-24 Pedro Alves <palves@redhat.com>
6160
6161 * fork-child.c (fork_inferior): Print argv[0] instead of exec_file.
6162
6163 2015-07-24 Pedro Alves <palves@redhat.com>
6164
6165 * aarch64-linux-nat.c: Include nat/gdb_ptrace.h instead of
6166 sys/ptrace.h.
6167 * alpha-linux-nat.c: Likewise.
6168 * amd64-linux-nat.c: Likewise.
6169 * arm-linux-nat.c: Likewise.
6170 * hppa-linux-nat.c: Likewise.
6171 * i386-linux-nat.c: Likewise.
6172 * ia64-linux-nat.c: Likewise.
6173 * linux-fork.c: Likewise.
6174 * linux-nat.c: Likewise.
6175 * m32r-linux-nat.c: Likewise.
6176 * m68klinux-nat.c: Likewise.
6177 * mips-linux-nat.c: Likewise.
6178 * nat/linux-btrace.c: Likewise.
6179 * nat/linux-ptrace.c: Likewise.
6180 * nat/linux-ptrace.h
6181 * nat/mips-linux-watch.c: Likewise.
6182 * nat/x86-linux-dregs.c: Likewise.
6183 * ppc-linux-nat.c: Likewise.
6184 * s390-linux-nat.c: Likewise.
6185 * spu-linux-nat.c: Likewise.
6186 * tilegx-linux-nat.c: Likewise.
6187 * x86-linux-nat.c: Likewise.
6188 * xtensa-linux-nat.c: Likewise.
6189
6190 2015-07-24 Pedro Alves <palves@redhat.com>
6191
6192 * ptrace.m4 (ptrace tests): Test in C++ mode. Try with 'enum
6193 __ptrace_request as first parameter type instead of int.
6194 (PTRACE_TYPE_ARG1): Define.
6195 * nat/gdb_ptrace.h [!PTRACE_TYPE_ARG5] (ptrace): Define as wrapper
6196 that casts first argument to PTRACE_TYPE_ARG1.
6197 * config.in: Regenerate.
6198 * configure: Regenerate.
6199
6200 2015-07-24 Pedro Alves <palves@redhat.com>
6201
6202 * gdb_ptrace.h: Move ...
6203 * nat/gdb_ptrace.h: ... here.
6204 * inf-ptrace.c: Adjust.
6205
6206 2015-07-24 Pedro Alves <palves@redhat.com>
6207
6208 * acinclude.m4: Include ptrace.m4.
6209 * configure.ac: Call GDB_AC_PTRACE and move ptrace checks ...
6210 * ptrace.m4: ... to this new file.
6211
6212 2015-07-23 Doug Evans <dje@google.com>
6213
6214 * dwarf2read.c (dwarf2_per_cu_data): Add comment.
6215 (load_cu): Handle dummy CUs.
6216 (dw2_do_instantiate_symtab, process_queuef): Ditto.
6217 (dwarf2_fetch_die_loc_sect_off, dwarf2_fetch_constant_bytes): Ditto.
6218
6219 2015-07-23 Ciro Santilli <ciro.santilli@gmail.com> (tiny patch)
6220
6221 * py-linetable.c (ltpy_get_all_source_lines): Adjust function
6222 documentation to say that it returns a list rather than
6223 a FrozenSet.
6224 (linetable_object_methods): Update the docstring of the
6225 "source_line" entry.
6226
6227 2015-07-23 Pierre-Marie de Rodat <derodat@adacore.com>
6228
6229 * gdbtypes.c (resolve_dynamic_array): Pass the peeled element
6230 type to the recursive call instead of the original (maybe
6231 TYPE_CODE_TYPEDEF) type.
6232
6233 2015-07-23 Yao Qi <yao.qi@linaro.org>
6234
6235 * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): If
6236 TYPE is watchpoint, return zero if aarch64_num_wp_regs is zero.
6237 If TYPE is breakpoint, return zero if arch64_num_bp_regs is zero.
6238
6239 2015-07-21 Yao Qi <yao.qi@linaro.org>
6240
6241 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
6242 Move it to nat/aarch64-linux-hw-point.c.
6243 (aarch64_linux_child_post_startup_inferior): Update.
6244 * nat/aarch64-linux-hw-point.c (aarch64_linux_get_debug_reg_capacity):
6245 New function.
6246 * nat/aarch64-linux-hw-point.h (aarch64_linux_get_debug_reg_capacity):
6247 Declare it.
6248
6249 2015-07-21 Markus Metzger <markus.t.metzger@intel.com>
6250
6251 * common/btrace-common.c (btrace_data_append): Change case label.
6252
6253 2015-07-20 Yao Qi <yao.qi@linaro.org>
6254
6255 * nat/aarch64-linux-hw-point.c (aarch64_handle_unaligned_watchpoint):
6256 Re-indent the code.
6257 * nat/aarch64-linux-hw-point.h: Use ULONGEST rather than
6258 "unsigned long long".
6259
6260 2015-07-18 Kevin Buettner <kevinb@redhat.com>
6261
6262 * dwarf2read.c (dwarf2_locate_sections): Allow has_section_at_zero
6263 to be set for SEC_ALLOC sections too.
6264
6265 2015-07-17 Yao Qi <yao.qi@linaro.org>
6266
6267 * Makefile.in (HFILES_NO_SRCDIR): Add
6268 nat/aarch64-linux-hw-point.h.
6269 (aarch64-linux-hw-point.o): New rule.
6270 * nat/aarch64-linux-hw-point.h: New file.
6271 * nat/aarch64-linux-hw-point.c: New file.
6272 * aarch64-linux-nat.c: Include nat/aarch64-linux-hw-point.h.
6273 (AARCH64_HBP_MAX_NUM): Move to nat/aarch64-linux-hw-point.h.
6274 (AARCH64_HWP_MAX_NUM, AARCH64_HBP_ALIGNMENT): Likewise.
6275 (AARCH64_HWP_ALIGNMENT): Likewise.
6276 (AARCH64_HWP_MAX_LEN_PER_REG): Likewise.
6277 (AARCH64_DEBUG_NUM_SLOTS, AARCH64_DEBUG_ARCH): Likewise.
6278 (AARCH64_DEBUG_ARCH_V8, DR_MARK_ALL_CHANGED): Likewise.
6279 (DR_MARK_N_CHANGED, DR_CLEAR_CHANGED): Likewise.
6280 (DR_HAS_CHANGED, DR_N_HAS_CHANGE): Likewise.
6281 (aarch64_num_bp_regs, aarch64_num_wp_regs): Likewise.
6282 (struct aarch64_debug_reg_state): Likewise.
6283 (struct arch_lwp_info): Likewise.
6284 (aarch64_linux_set_debug_regs): Likewise.
6285 (aarch64_notify_debug_reg_change): Remove static.
6286 (aarch64_align_watchpoint): Likewise.
6287 (DR_CONTROL_ENABLED, DR_CONTROL_LENGTH): Likewise.
6288 (aarch64_watchpoint_length): Likewise.
6289 (aarch64_point_encode_ctrl_reg): Likewise
6290 (aarch64_point_is_aligned): Likewise.
6291 (aarch64_dr_state_insert_one_point): Likewise.
6292 (aarch64_dr_state_remove_one_point): Likewise.
6293 (aarch64_handle_breakpoint): Likewise.
6294 (aarch64_handle_aligned_watchpoint): Likewise.
6295 (aarch64_handle_unaligned_watchpoint): Likewise.
6296 (aarch64_handle_watchpoint): Likewise.
6297 * config/aarch64/linux.mh (NAT_FILE): Add
6298 aarch64-linux-hw-point.o.
6299
6300 2015-07-17 Yao Qi <yao.qi@linaro.org>
6301
6302 * aarch64-linux-nat.c (aarch64_handle_breakpoint): Add argument
6303 state and don't call aarch64_get_debug_reg_state. All callers
6304 update.
6305 (aarch64_linux_insert_hw_breakpoint): Call
6306 aarch64_get_debug_reg_state earlier.
6307 (aarch64_linux_remove_hw_breakpoint): Likewise.
6308 (aarch64_handle_aligned_watchpoint): Add argument state and
6309 don't call aarch64_get_debug_reg_state. All callers update.
6310 (aarch64_handle_unaligned_watchpoint): Likewise.
6311 (aarch64_handle_watchpoint): Add argument state.
6312 (aarch64_linux_insert_watchpoint): Call aarch64_get_debug_reg_state
6313 earlier.
6314 (aarch64_linux_remove_watchpoint): Likewise.
6315
6316 2015-07-17 Yao Qi <yao.qi@linaro.org>
6317
6318 * aarch64-linux-nat.c (aarch64_show_debug_reg_state): Use
6319 debug_printf.
6320 (aarch64_handle_unaligned_watchpoint): Likewise.
6321
6322 2015-07-17 Yao Qi <yao.qi@linaro.org>
6323
6324 * aarch64-linux-nat.c (aarch64_dr_state_insert_one_point): Change
6325 argument type's type to 'enum target_hw_bp_type'.
6326 (aarch64_dr_state_remove_one_point): Likewise.
6327 (aarch64_handle_breakpoint): Likewise.
6328 (aarch64_linux_insert_hw_breakpoint): Likewise.
6329 (aarch64_linux_remove_hw_breakpoint): Likewise.
6330 (aarch64_handle_aligned_watchpoint): Likewise.
6331
6332 2015-07-17 Yao Qi <yao.qi@linaro.org>
6333
6334 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Call
6335 ptid_get_pid instead of get_thread_id.
6336
6337 2015-07-17 Yao Qi <yao.qi@linaro.org>
6338
6339 * remote.c (get_current_thread): Initialise ptid to null_ptid.
6340 (add_current_inferior_and_thread): Don't initialise ptid.
6341
6342 2015-07-16 Pierre Langlois <pierre.langlois@arm.com>
6343
6344 * aarch64-tdep.c (aarch64_pseudo_read_value): Mark S register as
6345 unavailable if invalid.
6346
6347 2015-07-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6348
6349 Revert the previous 6 commits:
6350 Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
6351 Move gdb_regex* to common/
6352 Prepare linux_find_memory_regions_full & co. for move
6353 Move linux_find_memory_regions_full & co.
6354 gdbserver build-id attribute generator
6355 Validate symbol file using build-id
6356
6357 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
6358 Jan Kratochvil <jan.kratochvil@redhat.com>
6359
6360 Validate symbol file using build-id.
6361 * NEWS (Changes since GDB 7.10): Add 'set validate-build-id'
6362 and 'show validate-build-id'. Add build-id attribute.
6363 * solib-darwin.c (_initialize_darwin_solib): Assign validate value.
6364 * solib-dsbt.c (_initialize_dsbt_solib): Ditto.
6365 * solib-frv.c (_initialize_frv_solib): Ditto.
6366 * solib-spu.c (set_spu_solib_ops): Ditto.
6367 * solib-svr4.c: Include rsp-low.h.
6368 (NOTE_GNU_BUILD_ID_NAME): New define.
6369 (svr4_validate): New function.
6370 (svr4_copy_library_list): Duplicate field build_id.
6371 (library_list_start_library): Parse 'build-id' attribute.
6372 (svr4_library_attributes): Add 'build-id' attribute.
6373 (_initialize_svr4_solib): Assign validate value.
6374 * solib-target.c (solib.h): Include.
6375 (_initialize_solib_target): Assign validate value.
6376 * solib.c (validate_build_id, show_validate_build_id): New.
6377 (solib_map_sections): Use ops->validate.
6378 (clear_so): Free build_id.
6379 (default_solib_validate): New function.
6380 (_initialize_solib): Add "validate-build-id".
6381 * solib.h (default_solib_validate): New declaration.
6382 * solist.h (struct so_list): New fields 'build_idsz' and 'build_id'.
6383 (target_so_ops): New field 'validate'.
6384
6385 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
6386 Jan Kratochvil <jan.kratochvil@redhat.com>
6387
6388 gdbserver build-id attribute generator.
6389 * features/library-list-svr4.dtd (library-list-svr4): New
6390 'build-id' attribute.
6391
6392 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
6393 Jan Kratochvil <jan.kratochvil@redhat.com>
6394
6395 Move linux_find_memory_regions_full & co.
6396 * linux-tdep.c (nat/linux-maps.h): Include.
6397 (gdb_regex.h): Remove the include.
6398 (enum filterflags, struct smaps_vmflags, read_mapping, decode_vmflags)
6399 (mapping_is_anonymous_p, dump_mapping_p): Moved to nat/linux-maps.c.
6400 (linux_find_memory_region_ftype): Moved typedef to nat/linux-maps.h.
6401 (linux_find_memory_regions_full): Moved definition to nat/linux-maps.c.
6402 * nat/linux-maps.c: Include ctype.h, target/target-utils.h, gdb_regex.h
6403 and target/target.h.
6404 (struct smaps_vmflags, read_mapping, decode_vmflags)
6405 (mapping_is_anonymous_p, dump_mapping_p): Move from linux-tdep.c.
6406 (linux_find_memory_regions_full): Move from linux-tdep.c.
6407 * nat/linux-maps.h (read_mapping): New declaration.
6408 (linux_find_memory_region_ftype, enum filterflags): Moved from
6409 linux-tdep.c.
6410 (linux_find_memory_regions_full): New declaration.
6411 * target.c (target/target-utils.h): Include.
6412 (read_alloc_pread_ftype): Moved typedef to target/target-utils.h.
6413 (read_alloc, read_stralloc_func_ftype, read_stralloc): Moved
6414 definitions to target/target-utils.c.
6415 * target.h (target_fileio_read_stralloc): Move it to target/target.h.
6416 * target/target-utils.c (read_alloc, read_stralloc): Move definitions
6417 from target.c.
6418 * target/target-utils.h (read_alloc_pread_ftype): New typedef.
6419 (read_alloc): New declaration.
6420 (read_stralloc_func_ftype): New typedef.
6421 (read_stralloc): New declaration.
6422 * target/target.h (target_fileio_read_stralloc): Move it from target.h.
6423
6424 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
6425 Jan Kratochvil <jan.kratochvil@redhat.com>
6426
6427 Prepare linux_find_memory_regions_full & co. for move.
6428 * linux-tdep.c (linux_find_memory_region_ftype): Comment.
6429 (linux_find_memory_regions_full): Change signature and prepare
6430 for moving to linux-maps.
6431 (linux_find_memory_regions_data): Rename field 'obfd' to 'data'.
6432 (linux_find_memory_regions_thunk): New.
6433 (linux_find_memory_regions_thunk): Use 'data' field instead of 'obfd'.
6434 (linux_find_memory_regions_gdb): New.
6435 (linux_find_memory_regions): Rename argument 'obfd' to 'func_data'.
6436 (linux_make_mappings_corefile_notes): Use
6437 linux_find_memory_regions_gdb.
6438 * target.c (read_alloc_pread_ftype): New typedef.
6439 (target_fileio_read_alloc_1_pread): New function.
6440 (read_alloc): Refactor from target_fileio_read_alloc_1.
6441 (read_stralloc_func_ftype): New typedef.
6442 (target_fileio_read_alloc_1): New implementation. Use read_alloc.
6443 (read_stralloc): Refactored from target_fileio_read_stralloc.
6444 (target_fileio_read_stralloc): New implementation, use read_stralloc.
6445
6446 2015-07-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6447
6448 * Makefile.in (HFILES_NO_SRCDIR): Change gdb_regex.h to
6449 common/gdb_regex.h.
6450 (COMMON_OBS): Add gdb_regex.o.
6451 (gdb_regex.o): New.
6452 * common/common.m4 (GDB_AC_COMMON): Add gdb_use_included_regex,
6453 --without-included-regex and USE_INCLUDED_REGEX.
6454 * common/gdb_regex.c: New file from utils.c functions.
6455 * common/gdb_regex.h: Move it here from gdb_regex.h, update include
6456 file wrapping define name.
6457 * configure: Rebuilt.
6458 * configure.ac (gdb_use_included_regex, --without-included-regex)
6459 (USE_INCLUDED_REGEX): Move them to common/common.m4.
6460 * gdb_regex.h: Move it to common/gdb_regex.h.
6461 * utils.c: Remove include gdb_regex.h.
6462 (do_regfree_cleanup, make_regfree_cleanup, get_regcomp_error)
6463 (compile_rx_or_error): Move them to common/gdb_regex.c.
6464
6465 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
6466 Jan Kratochvil <jan.kratochvil@redhat.com>
6467
6468 Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
6469 * Makefile.in (HFILES_NO_SRCDIR); Add nat/linux-maps.h,
6470 common/target-utils.h.
6471 (COMMON_OBS): Add target-utils.o.
6472 (linux-maps.o, target-utils.o): New.
6473 * target/target-utils.c: New file.
6474 * target/target-utils.h: New file.
6475 * config/i386/linux.mh (NATDEPFILES): Add linux-maps.o.
6476 * config/i386/linux64.mh (NATDEPFILES): Ditto.
6477 * nat/linux-maps.c: New file.
6478 * nat/linux-maps.h: New file.
6479
6480 2015-07-15 Markus Metzger <markus.t.metzger@intel.com>
6481 Pedro Alves <palves@redhat.com>
6482
6483 * nat/linux-btrace.c (perf_event_read): Change the type of DATA_HEAD.
6484 (perf_event_read_all): Change the type of SIZE and DATA_HEAD.
6485 (perf_event_read_bts): Change the type of SIZE and READ.
6486 (linux_enable_bts): Change the type of SIZE, PAGES, DATA_SIZE,
6487 and DATA_OFFSET. Move DATA_SIZE declaration. Restrict the buffer size
6488 to UINT_MAX. Check for overflows when using DATA_HEAD from the perf
6489 mmap page.
6490 (linux_enable_pt): Change the type of PAGES and SIZE. Restrict the
6491 buffer size to UINT_MAX.
6492 (linux_read_bts): Change the type of BUFFER_SIZE, SIZE, DATA_HEAD, and
6493 DATA_TAIL.
6494 * nat/linux-btrace.h (struct perf_event_buffer)<size, data_head>
6495 <last_head>: Change type.
6496 * common/btrace-common.h (struct btrace_dat_pt) <size>: Change type.
6497 * common/btrace-common.c (btrace_data_append): Change the type of
6498 SIZE.
6499 * btrace.c (parse_xml_raw): Change the type of SIZE. Change oddness
6500 check.
6501
6502 2015-07-14 Simon Marchi <simon.marchi@ericsson.com>
6503
6504 * gdbtypes.h (CHECK_TYPEDEF): Remove.
6505 * aarch64-tdep.c (aarch64_return_in_memory): Replace CHECK_TYPEDEF
6506 with check_typedef.
6507 * ada-lang.c (decode_constrained_packed_array_type): Likewise.
6508 (ada_array_length): Likewise.
6509 (find_parallel_type_by_descriptive_type): Likewise.
6510 (ada_check_typedef): Likewise.
6511 * arm-tdep.c (arm_return_in_memory): Likewise.
6512 * ax-gdb.c (gen_trace_static_fields): Likewise.
6513 (gen_struct_ref_recursive): Likewise.
6514 * c-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
6515 (variable: block COLONCOLON name): Likewise.
6516 (qualified_name: TYPENAME COLONCOLON name): Likewise.
6517 * c-lang.c (classify_type): Likewise.
6518 * c-typeprint.c (c_print_type): Likewise.
6519 (c_print_typedef): Likewise.
6520 (c_type_print_base): Likewise.
6521 * c-valprint.c (c_val_print): Likewise.
6522 * compile/compile-c-types.c (convert_type): Likewise.
6523 * compile/compile-object-load.c (get_out_value_type): Likewise.
6524 * completer.c (add_struct_fields): Likewise.
6525 (expression_completer): Likewise.
6526 * cp-namespace.c (cp_find_type_baseclass_by_name): Likewise.
6527 (cp_lookup_nested_symbol_1): Likewise.
6528 (cp_lookup_nested_symbol): Likewise.
6529 * cp-valprint.c (cp_print_value_fields): Likewise.
6530 (cp_print_static_field): Likewise.
6531 * d-valprint.c (d_val_print): Likewise.
6532 * eval.c (evaluate_subexp_standard): Likewise.
6533 (evaluate_subexp_for_sizeof): Likewise.
6534 * f-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
6535 * f-typeprint.c (f_type_print_base): Likewise.
6536 * f-valprint.c (f_val_print): Likewise.
6537 * gdbtypes.c (get_discrete_bounds): Likewise.
6538 (create_array_type_with_stride): Likewise.
6539 (type_name_no_tag_or_error): Likewise.
6540 (lookup_struct_elt_type): Likewise.
6541 (get_unsigned_type_max): Likewise.
6542 (internal_type_vptr_fieldno): Likewise.
6543 (set_type_vptr_fieldno): Likewise.
6544 (internal_type_vptr_basetype): Likewise.
6545 (set_type_vptr_basetype): Likewise.
6546 (get_vptr_fieldno): Likewise.
6547 (is_integral_type): Likewise.
6548 (is_scalar_type): Likewise.
6549 (is_scalar_type_recursive): Likewise.
6550 (distance_to_ancestor): Likewise.
6551 (is_unique_ancestor_worker): Likewise.
6552 (check_types_equal): Likewise.
6553 * gnu-v2-abi.c (gnuv2_value_rtti_type): Likewise.
6554
6555 2015-07-14 Iain Buclaw <ibuclaw@gdcproject.org>
6556
6557 * dwarf2read.c (find_slot_in_mapped_hash): Extend language support to
6558 also test for language_d.
6559 (dwarf2_compute_name): Likewise.
6560 (read_func_scope): Likewise.
6561 (read_structure_type): Likewise.
6562 (new_symbol_full): Likewise.
6563 (determine_prefix): Likewise.
6564 (read_import_statement): Use dot as the separator for language_d.
6565 (typename_concat): Likewise, but don't prefix the D main function.
6566
6567 2015-07-14 Peter Bergner <bergner@vnet.ibm.com>
6568
6569 * nat/linux-namespaces.c (setns): Rename from this ...
6570 (do_setns): ... to this. Support calling setns if it exists.
6571 (mnsh_handle_setns): Call do_setns.
6572
6573 2015-07-13 Yao Qi <yao.qi@linaro.org>
6574
6575 * exec.c (exec_file_attach): Add period at the end of error
6576 message.
6577
6578 2015-07-13 Andrew Burgess <andrew.burgess@embecosm.com>
6579
6580 * tui/tui-win.c (window_name_completer): New function.
6581 (focus_completer): Call window_name_completer. All old content
6582 moved into window_name_completer.
6583 (winheight_completer): New function.
6584 (_initialize_tui_win): Rename variable. Add completer to
6585 winheight command. Update doc string on winheight.
6586
6587 2015-07-12 Sandra Loosemore <sandra@codesourcery.com>
6588
6589 * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Register
6590 all nios2 mach variants.
6591
6592 2015-07-10 Kevin Buettner <kevinb@redhat.com>
6593
6594 * rx-tdep.c (rx_get_opcode_byte): Use target_read_code instead
6595 of target_read_memory.
6596
6597 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
6598
6599 * tui/tui-win.c (tui_set_win_height): Use a cleanup to free the
6600 string copy.
6601 (parse_scrolling_args): Likewise.
6602
6603 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
6604
6605 * tui/tui-win.c (focus_completer): Don't duplicate the tui window
6606 names in this function.
6607
6608 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
6609
6610 * tui/tui-data.h (SRC_NAME): Convert to lower case.
6611 (CMD_NAME): Likewise.
6612 (DATA_NAME): Likewise.
6613 (DISASSEM_NAME): Likewise.
6614 * tui/tui-win.c (tui_set_focus): Window names are now lower case.
6615 (tui_set_win_height): Likewise.
6616 (parse_scrolling_args): Likewise.
6617
6618 2015-07-10 Markus Metzger <markus.t.metzger@intel.com>
6619
6620 * record-btrace.c (record_btrace_goto_begin)
6621 (record_btrace_goto_end, record_btrace_goto): Move call to
6622 print_stack_frame ...
6623 (record_btrace_set_replay): ... here. Set stop_pc.
6624 * record-full.c (record_full_goto_entry): Set stop_pc.
6625
6626 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6627
6628 * NEWS: Mention support for tracepoints on aarch64-linux.
6629
6630 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6631
6632 * linux-aarch64-low.c (aarch64_supports_tracepoints): New
6633 function. Return 1.
6634 (the_low_target): Install it.
6635
6636 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6637
6638 * gdb.trace/backtrace.exp: Set registers for aarch64 target.
6639 * gdb.trace/collection.exp: Likewise.
6640 * gdb.trace/mi-trace-frame-collected.exp: Likewise.
6641 * gdb.trace/mi-trace-unavailable.exp: Likewise.
6642 * gdb.trace/report.exp: Likewise.
6643 * gdb.trace/trace-break.exp: Likewise.
6644 * gdb.trace/unavailable.exp: Likewise.
6645 * gdb.trace/while-dyn.exp: Likewise.
6646
6647 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6648
6649 * aarch64-tdep.c: Add ax.h and ax-gdb.h includes.
6650 (aarch64_gen_return_address): New function.
6651 (aarch64_gdbarch_init): Hook it.
6652
6653 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6654
6655 * aarch64-tdep.c (aarch64_make_stub_cache): Set available_p and
6656 swallow NOT_AVAILABLE_ERROR.
6657 (aarch64_stub_this_id): Call frame_id_build_unavailable_stack if
6658 available_p is not set.
6659 (aarch64_stub_frame_unwind_stop_reason): New function.
6660 (aarch64_stub_unwind): Install it.
6661
6662 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6663
6664 * aarch64-tdep.c (aarch64_prologue_cache) <available_p>: New
6665 field.
6666 (aarch64_make_prologue_cache_1): New function, factored out from
6667 aarch64_make_prologue_cache. Do not allocate cache. Set
6668 available_p.
6669 (aarch64_make_prologue_cache): Reimplement wrapping
6670 aarch64_make_prologue_cache_1, and swallowing
6671 NOT_AVAILABLE_ERROR.
6672 (aarch64_prologue_frame_unwind_stop_reason): New function.
6673 Return UNWIND_UNAVAILABLE if available_p is not set.
6674 (aarch64_prologue_unwind): Install it.
6675 (aarch64_prologue_this_id): Move prev_pc and prev_sp limit
6676 checks into aarch64_prologue_frame_unwind_stop_reason. Call
6677 frame_id_build_unavailable_stack if available_p is not set.
6678
6679 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6680
6681 * aarch64-tdep.c (aarch64_prologue_cache) <func, prev_pc>: New
6682 fields.
6683 (aarch64_scan_prologue): Set prev_pc.
6684 (aarch64_make_prologue_cache): Set func.
6685 (aarch64_make_stub_cache): Set prev_pc.
6686 (aarch64_prologue_this_id): Remove local variables id, pc and
6687 func. Read prev_pc and func from cache.
6688 (aarch64_stub_this_id): Read prev_pc from cache.
6689
6690 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6691
6692 * aarch64-tdep.c (aarch64_make_stub_cache): Update comment. New
6693 argument this_cache. Remove unused local variables reg and
6694 unwound_fp. Return early if this_cache is already set. Set
6695 this_cache.
6696 (aarch64_stub_this_id): Update call to aarch64_make_stub_cache.
6697
6698 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6699
6700 * aarch64-tdep.c (aarch64_make_prologue_cache): Update comment.
6701 New argument this_cache. Return early if this_cache is already
6702 set. Set this_cache.
6703 (aarch64_prologue_this_id): Update call to
6704 aarch64_make_prologue_cache.
6705 (aarch64_prologue_prev_register): Likewise.
6706 (aarch64_normal_frame_base): Likewise.
6707
6708 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6709
6710 * c-valprint.c (c_val_print): Factor out memberptr printing code
6711 from c_val_print to ...
6712 (c_val_print_memberptr): ... this new function.
6713
6714 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6715
6716 * c-valprint.c (c_val_print): Factor out int printing code to ...
6717 (c_val_print_int): ... this new function.
6718
6719 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6720
6721 * c-valprint.c (c_val_print): Factor out struct and union
6722 printing code to ...
6723 (c_val_print_struct): ... this new function ...
6724 (c_val_print_union): ... and this new function.
6725
6726 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6727
6728 * c-valprint.c (c_val_print): Factor out pointer printing code
6729 to ...
6730 (c_val_print_ptr): ... this new function.
6731
6732 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6733
6734 * c-valprint.c (c_valprint): Factor our array printing code from
6735 c_val_print to ...
6736 (c_val_print_array): ... this new function.
6737
6738 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6739
6740 * c-valprint.c (c_val_print): Factor out pointer printing code
6741 to ...
6742 (print_unpacked_pointer): ... this new function.
6743
6744 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6745
6746 * c-valprint.c (c_val_print): Remove an assignment to i and move
6747 its declaration.
6748
6749 2015-07-09 Yao Qi <yao.qi@linaro.org>
6750
6751 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Add
6752 argument ptid. Update comments. Caller update.
6753
6754 2015-07-09 Markus Metzger <markus.t.metzger@intel.com>
6755
6756 * btrace.c (pt_print_packet): Print stop, vmcs, tma, mtc, cyc, and
6757 mnt packets.
6758
6759 2015-07-09 Markus Metzger <markus.t.metzger@intel.com>
6760
6761 * btrace.c (btrace_pt_readmem_callback): Change type of PC argument.
6762
6763 2015-07-08 Simon Marchi <simon.marchi@ericsson.com>
6764
6765 * progspace.c (delete_program_space): Add missing spaces.
6766
6767 2015-07-08 Simon Marchi <simon.marchi@ericsson.com>
6768
6769 * inferior.c (delete_inferior_1): Rename to ...
6770 (delete_inferior): ..., remove 'silent' parameter, delete
6771 program space when unused and remove call to prune_program_spaces.
6772 Remove the old, unused, delete_inferior.
6773 (delete_inferior_silent): Remove.
6774 (prune_inferiors): Change call from delete_inferior_1 to
6775 delete_inferior and remove 'silent' parameter. Remove call to
6776 prune_program_spaces.
6777 (remove_inferior_command): Idem.
6778 * inferior.h (delete_inferior_1): Rename to...
6779 (delete_inferior): ..., remove 'silent' parameter and remove the
6780 original delete_inferior.
6781 (delete_inferior_silent): Remove.
6782 * mi/mi-main.c (mi_cmd_remove_inferior): Change call from
6783 delete_inferior_1 to delete_inferior and remove 'silent'
6784 parameter.
6785 * progspace.c (prune_program_spaces): Remove.
6786 (pspace_empty_p): Rename to...
6787 (program_space_empty_p): ... and make non-static.
6788 (delete_program_space): New.
6789 * progspace.h (prune_program_spaces): Remove declaration.
6790 (program_space_empty_p): New declaration.
6791 (delete_program_space): New declaration.
6792 * monitor.c (monitor_close): Replace call to
6793 delete_thread_silent and delete_inferior_silent with
6794 discard_all_inferiors.
6795
6796 2015-07-08 Patrick Palka <patrick@parcs.ath.cx>
6797
6798 * defs.h (deprecated_register_changed_hook): Remove prototype.
6799 * interps.c (clear_iterpreter_hooks): Remove reference to
6800 deprecated_register_changed_hook.
6801 * top.c (deprecated_register_changed_hook): Remove prototype.
6802 * valops.c (value_assign): Remove reference to
6803 deprecated_register_changed_hook.
6804 * tui/tui-hooks.c (tui_register_changed): Add parameter "frame".
6805 Add comment documenting the function.
6806 (tui_register_changed_observer): Define.
6807 (tui_install_hooks): Remove reference to
6808 deprecated_register_changed_hook. Set
6809 tui_register_changed_observer.
6810 (tui_remove_hooks): Remove reference to
6811 deprecated_register_changed_hook. Unset
6812 tui_register_changed_observer.
6813
6814 2015-07-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6815
6816 PR compile/18484
6817 * compile/compile-c-types.c (insert_type): Change gdb_assert to error.
6818
6819 2015-07-08 Robert O'Callahan <robert@ocallahan.org>
6820
6821 PR exp/18617
6822 * ax-gdb.c (gen_conversion): Extend to 'to' bits, not 'from'.
6823
6824 2015-07-08 Markus Metzger <markus.t.metzger@intel.com>
6825
6826 * MAINTAINERS (Write After Approval): Add Markus T. Metzger.
6827
6828 2015-07-08 Markus Metzger <markus.t.metzger@intel.com>
6829
6830 * nat/linux-btrace.c (kernel_supports_bts, kernel_supports_pt):
6831 Use safe_strerror() instead of strerror().
6832
6833 2015-07-07 Yao Qi <yao.qi@linaro.org>
6834
6835 * features/arm-with-m-fpa-layout.xml: Set architecture to arm.
6836 * features/arm-with-m-fpa-layout.c: Regenerated.
6837 * features/arm-with-m-vfp-d16.xml: Likewise.
6838 * features/arm-with-m-vfp-d16.c: Regenerated.
6839 * features/arm-with-m.xml: Likewise.
6840 * features/arm-with-m.c: Regenerated.
6841 * features/arm-with-neon.xml: Likewise.
6842 * features/arm-with-neon.c: Regenerated.
6843 * features/arm-with-vfpv2.xml: Likewise.
6844 * features/arm-with-vfpv2.c: Regenerated.
6845 * features/arm-with-vfpv3.xml: Likewise.
6846 * features/arm-with-vfpv3.c: Regenerated.
6847
6848 2015-07-07 Yao Qi <yao.qi@linaro.org>
6849
6850 * aarch32-linux-nat.h (VFP_REGS_SIZE): New macro, moved from
6851 arm-linux-nat.c.
6852 * aarch64-linux-nat.c: Include aarch32-linux-nat.h and
6853 elf/external.h.
6854 (fetch_gregs_from_thread): Call aarch32_gp_regcache_supply
6855 if target is 32-bit.
6856 (store_gregs_to_thread): Call aarch32_gp_regcache_collect
6857 if target is 32-bit.
6858 (fetch_fpregs_from_thread): Call aarch32_vfp_regcache_supply
6859 if target is 32-bit.
6860 (store_fpregs_to_thread): Call aarch32_vfp_regcache_collect
6861 if target is 32-bit.
6862 (tdesc_arm_with_vfpv3, tdesc_arm_with_neon): Declare.
6863 (aarch64_linux_read_description): Return the right target
6864 description.
6865 * arm-linux-nat.c (VFP_REGS_SIZE): Moved to aarch32-linux-nat.h.
6866 * config/aarch64/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
6867 * configure.tgt (aarch64*-*-linux*): Add arm-tdep.o and
6868 arm-linux-tdep.o.
6869
6870 2015-07-07 Yao Qi <yao.qi@linaro.org>
6871
6872 * aarch32-linux-nat.c: New file.
6873 * aarch32-linux-nat.h: New file.
6874 * arm-linux-nat.c: Include aarch32-linux-nat.h.
6875 (fetch_regs): Move code to aarch32-linux-nat.c. Call
6876 aarch32_gp_regcache_supply.
6877 (store_regs): Move code to aarch32-linux-nat.c. Call
6878 aarch32_gp_regcache_collect.
6879 (fetch_vfp_regs): Move code to aarch32-linux-nat.c. Call
6880 aarch32_vfp_regcache_supply.
6881 (store_vfp_regs): Move code to aarch32-linux-nat.c. Call
6882 aarch32_vfp_regcache_collect.
6883 * config/arm/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
6884
6885 2015-07-07 Yao Qi <yao.qi@linaro.org>
6886
6887 * arm-linux-nat.c (store_fpregister): Remove.
6888 (store_register): Likewise.
6889 (fetch_fpregister): Likewise.
6890 (fetch_register): Likewise.
6891 (arm_linux_store_inferior_registers): Call store_regs and
6892 store_fpregs instead.
6893 (arm_linux_fetch_inferior_registers): Call fetch_fpregs and
6894 fetch_regs instead.
6895
6896 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6897
6898 * doc/gdb.texinfo (TUI): Restructure documentation on TUI layout
6899 and focus commands.
6900
6901 2015-07-06 Joel Brobecker <brobecker@adacore.com>
6902
6903 * NEWS: Create a new section for the next release branch.
6904 Rename the section of the current branch, now that it has
6905 been cut.
6906
6907 2015-07-06 Joel Brobecker <brobecker@adacore.com>
6908
6909 GDB 7.10 branch created (66c4b3e8a628a207bc6aafef6af0c4128195f56e):
6910 * version.in: Bump version to 7.10.50.DATE-cvs.
6911
6912 2015-07-06 Luis Machado <lgustavo@codesourcery.com>
6913
6914 * breakpoint.c (remove_breakpoint_1): Don't handle permanent
6915 breakpoints in a special way.
6916 (remove_breakpoint): Likewise.
6917 (mark_breakpoints_out): Likewise.
6918
6919 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6920
6921 * doc/gdb.texinfo (TUI): Add comma after @xref.
6922
6923 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6924
6925 * tui/tui-win.c (tui_set_focus): Use structure member 'generic'
6926 instead of casting the structure type.
6927
6928 2015-07-06 Simon Marchi <simon.marchi@ericsson.com>
6929
6930 * valops.c (search_struct_field): Remove OFFSET parameter.
6931 (value_cast_structs): Adjust calls to search_struct_field.
6932 (value_struct_elt): Same.
6933 (find_overload_match): Same.
6934
6935 2015-07-06 Simon Marchi <simon.marchi@ericsson.com>
6936
6937 * value.c (value_fetch_lazy): Update comment, change return
6938 value to void.
6939 * value.h (value_fetch_lazy): Change return value to void.
6940
6941 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6942
6943 * tui/tui-data.c (tui_partial_win_by_name): Window name is const.
6944 (tui_win_name): Make parameter and result const.
6945 * tui/tui-data.h (tui_win_name): Make parameter and result const.
6946
6947 2015-07-06 Patrick Palka <patrick@parcs.ath.cx>
6948
6949 * i386-tdep.c (i386_mpx_info_bounds): Don't call error, instead
6950 use printf_unfiltered.
6951 (set_mpx_cmd): Add missing trailing space to command string
6952 literal.
6953 (_initialize_i386_tdep): Give the "mpx" prefix command its
6954 correct name.
6955
6956 2015-07-02 Kevin Buettner <kevinb@redhat.com>
6957
6958 * rx-tdep.c (RX_USP_REGNUM, RX_BPC_REGNUM): New constants.
6959 (enum rx_frame_type): New.
6960 (struct rx_prologue): Add new field `frame_type'.
6961 (rx_analyze_prologue): Add `frame_type' parameter. Cache this
6962 parameter in the prologue struct. Add code for recording
6963 locations of PC and PSW for fast interrupt and exception frames.
6964 (rx_skip_prologue): Adjust call to rx_analyze_prologue.
6965 (rx_analyze_frame_prologue): Add `frame_type' parameter.
6966 (rx_frame_type): New function.
6967 (rx_frame_base): Fetch frame type and pass it to rx_analyze_prologue.
6968 (rx_frame_this_id): Rename parameter `this_prologue_cache' to
6969 `this_cache'.
6970 (rx_frame_prev_register): Rename parameter `this_prologue_cache' to
6971 `this_cache'. Add cases for RX_FRAME_TYPE_EXCEPTION and
6972 RX_FRAME_TYPE_FAST_INTERRUPT.
6973 (normal_frame_p, exception_frame_p, rx_frame_sniffer_common)
6974 (rx_frame_sniffer, rx_exception_sniffer): New functions.
6975 (rx_frame_unwind): Use rx_frame_sniffer instead of
6976 default_frame_sniffer.
6977 (rx_frame_unwind): New unwinder.
6978 (rx_gdbarch_init): Register new unwinder.
6979
6980 2015-07-02 Kevin Buettner <kevinb@redhat.com>
6981
6982 * rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
6983 (struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
6984 (rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
6985 and RX_FPSW_REGNUM.
6986 (rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
6987
6988 2015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6989
6990 Fix GCC false warning.
6991 * s390-linux-tdep.c (s390_handle_arg): Initialize VAL.
6992
6993 2015-07-02 Yao Qi <yao.qi@linaro.org>
6994
6995 * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix
6996 typo in the debugging message.
6997
6998 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6999
7000 * btrace.c: Include gdbcmd.h, cli/cli-utils.h, and ctype.h.
7001 (maint_btrace_cmdlist, maint_btrace_set_cmdlist)
7002 (maint_btrace_show_cmdlist, maint_btrace_pt_set_cmdlist)
7003 (maint_btrace_pt_show_cmdlist, maint_btrace_pt_skip_pad)
7004 (btrace_maint_clear): New.
7005 (btrace_fetch, btrace_clear): Call btrace_maint_clear.
7006 (pt_print_packet, btrace_maint_decode_pt)
7007 (btrace_maint_update_pt_packets, btrace_maint_update_packets)
7008 (btrace_maint_print_packets, get_uint, get_context_size, no_chunk)
7009 (maint_btrace_packet_history_cmd)
7010 (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
7011 (maint_btrace_cmd, maint_btrace_set_cmd, maint_btrace_show_cmd)
7012 (maint_btrace_pt_set_cmd, maint_btrace_pt_show_cmd)
7013 (maint_info_btrace_cmd, _initialize_btrace): New.
7014 * btrace.h (btrace_pt_packet, btrace_pt_packet_s)
7015 (btrace_maint_packet_history, btrace_maint_info): New.
7016 (btrace_thread_info) <maint>: New.
7017 * NEWS: Announce it.
7018
7019 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
7020
7021 * btrace.c (btrace_fetch): Append the new trace data.
7022 (btrace_clear): Clear the stored trace data.
7023 * btrace.h (btrace_thread_info) <data>: New.
7024 * common/btrace-common.h (btrace_data_clear)
7025 (btrace_data_append): New.
7026 * common/btrace-common.c (btrace_data_clear)
7027 (btrace_data_append): New.
7028
7029 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
7030
7031 * nat/linux-btrace.c (linux_enable_bts): Check for
7032 PERF_ATTR_SIZE_VER5.
7033 Check for data_offset and data_size fields. Use them.
7034
7035 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
7036
7037 * NEWS: Announce new commands "record btrace pt" and "record pt".
7038 Announce new options "set|show record btrace pt buffer-size".
7039 * btrace.c: Include "rsp-low.h".
7040 Include "inttypes.h".
7041 (btrace_add_pc): Add forward declaration.
7042 (pt_reclassify_insn, ftrace_add_pt, btrace_pt_readmem_callback)
7043 (pt_translate_cpu_vendor, btrace_finalize_ftrace_pt)
7044 (btrace_compute_ftrace_pt): New.
7045 (btrace_compute_ftrace): Support BTRACE_FORMAT_PT.
7046 (check_xml_btrace_version): Update version check.
7047 (parse_xml_raw, parse_xml_btrace_pt_config_cpu)
7048 (parse_xml_btrace_pt_raw, parse_xml_btrace_pt)
7049 (btrace_pt_config_cpu_attributes, btrace_pt_config_children)
7050 (btrace_pt_children): New.
7051 (btrace_children): Add support for "pt".
7052 (parse_xml_btrace_conf_pt, btrace_conf_pt_attributes): New.
7053 (btrace_conf_children): Add support for "pt".
7054 * btrace.h: Include "intel-pt.h".
7055 (btrace_pt_error): New.
7056 * common/btrace-common.c (btrace_format_string, btrace_data_fini)
7057 (btrace_data_empty): Support BTRACE_FORMAT_PT.
7058 * common/btrace-common.h (btrace_format): Add BTRACE_FORMAT_PT.
7059 (struct btrace_config_pt): New.
7060 (struct btrace_config)<pt>: New.
7061 (struct btrace_data_pt_config, struct btrace_data_pt): New.
7062 (struct btrace_data)<pt>: New.
7063 * features/btrace-conf.dtd (btrace-conf)<pt>: New.
7064 (pt): New.
7065 * features/btrace.dtd (btrace)<pt>: New.
7066 (pt, pt-config, cpu): New.
7067 * nat/linux-btrace.c (perf_event_read, perf_event_read_all)
7068 (perf_event_pt_event_type, kernel_supports_pt)
7069 (linux_supports_pt): New.
7070 (linux_supports_btrace): Support BTRACE_FORMAT_PT.
7071 (linux_enable_bts): Free tinfo on error.
7072 (linux_enable_pt): New.
7073 (linux_enable_btrace): Support BTRACE_FORMAT_PT.
7074 (linux_disable_pt): New.
7075 (linux_disable_btrace): Support BTRACE_FORMAT_PT.
7076 (linux_fill_btrace_pt_config, linux_read_pt): New.
7077 (linux_read_btrace): Support BTRACE_FORMAT_PT.
7078 * nat/linux-btrace.h (struct btrace_tinfo_pt): New.
7079 (struct btrace_target_info)<pt>: New.
7080 * record-btrace.c (set_record_btrace_pt_cmdlist)
7081 (show_record_btrace_pt_cmdlist): New.
7082 (record_btrace_print_pt_conf): New.
7083 (record_btrace_print_conf): Support BTRACE_FORMAT_PT.
7084 (btrace_ui_out_decode_error): Support BTRACE_FORMAT_PT.
7085 (cmd_record_btrace_pt_start): New.
7086 (cmd_record_btrace_start): Support BTRACE_FORMAT_PT.
7087 (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): New.
7088 (_initialize_record_btrace): Add new commands.
7089 * remote.c (PACKET_Qbtrace_pt, PACKET_Qbtrace_conf_pt_size): New.
7090 (remote_protocol_features): Add "Qbtrace:pt".
7091 Add "Qbtrace-conf:pt:size".
7092 (remote_supports_btrace): Support BTRACE_FORMAT_PT.
7093 (btrace_sync_conf): Support PACKET_Qbtrace_conf_pt_size.
7094 (remote_enable_btrace): Support BTRACE_FORMAT_PT.
7095 (_initialize_remote): Add new commands.
7096
7097 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
7098
7099 * configure.ac: check for libipt
7100 * configure: Regenerate.
7101 * config.in: Regenerate.
7102 * Makefile.in (LIBIPT): New.
7103 (CLIBS): Add $LIBIPT.
7104 * NEWS: document new configure options
7105
7106 2015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7107
7108 * compile/compile-object-load.c (compile_object_load): Replace debug
7109 message "lookup undefined ELF symbol" by 3 more specific messages.
7110
7111 2015-07-01 Kevin Buettner <kevinb@redhat.com>
7112
7113 * rl78-tdep.c (struct gdbarch_tdep): Add new field, rl78_psw_type.
7114 (rl78_register_type): Add case for RL78_PSW_REGNUM.
7115 (rl78_gdbarch_init): Initialize rl78_psw_type.
7116
7117 2015-07-01 Patrick Palka <patrick@parcs.ath.cx>
7118
7119 * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
7120 Update commentary. Always refresh the registers when frame
7121 information has changed.
7122 * tui/tui-stack.c (tui_show_frame_info): Update commentary.
7123 Change return type to int. Return 1 if frame information has
7124 changed, 0 otherwise.
7125 (tui_before_prompt): Update commentary.
7126 * tui/tui-stack.h (tui_show_frame_info): Change return type to
7127 int.
7128
7129 2015-06-30 Patrick Palka <patrick@parcs.ath.cx>
7130
7131 PR tui/13378
7132 * frame.c (select_frame): Remove reference to
7133 deprecated_selected_frame_level_changed_hook.
7134 * frame.h (deprecated_selected_frame_level_changed_hook): Remove
7135 declaration.
7136 * stack.c (deprecated_selected_frame_level_changed_hook):
7137 Likewise.
7138 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook):
7139 Rename to ...
7140 (tui_refresh_frame_and_register_information): ... this. Bail
7141 out if there is no stack. Don't update register information
7142 unless registers_too_p is true.
7143 (tui_print_frame_info_listing_hook): Rename to ...
7144 (tui_dummy_print_frame_info_listing_hook): ... this.
7145 (tui_before_prompt): New function.
7146 (tui_normal_stop): New function.
7147 (tui_before_prompt_observer): New observer.
7148 (tui_normal_stop_observer): New observer.
7149 (tui_install_hooks): Set
7150 deprecated_print_frame_info_listing_hook to
7151 tui_dummy_print_frame_info_listing_hook. Register
7152 tui_before_prompt_observer to call tui_before_prompt and
7153 tui_normal_stop_observer to call tui_normal_stop. Remove
7154 reference to deprecated_selected_frame_level_changed_hook.
7155 (tui_remove_hooks): Detach and unset tui_before_prompt_observer
7156 and tui_normal_stop_observer. Remove reference to
7157 deprecated_selected_frame_level_changed_hook.
7158
7159 2015-06-30 Patrick Palka <patrick@parcs.ath.cx>
7160
7161 PR tui/13378
7162 * tui/tui-stack.c (tui_set_locator_info): Change prototype to
7163 return an int instead of void. Return whether the locator
7164 window has changed.
7165 (tui_show_frame_info): If the locator info has not changed, then
7166 bail out early to avoid refreshing the windows.
7167
7168 2015-06-30 Patrick Palka <patrick@parcs.ath.cx>
7169
7170 * tui/tui-stack.c (tui_set_locator_info): Explicitly pass
7171 LOCATOR_WIN to tui_alloc_content.
7172
7173 2015-06-30 Yao Qi <yao.qi@linaro.org>
7174
7175 PR tdep/18605
7176 * arm-tdep.c (arm_get_next_pc_raw): Break for media
7177 instructions.
7178
7179 2015-06-29 Kevin Buettner <kevinb@redhat.com>
7180
7181 * rx-tdep.c (RX_PSW_REGNUM): New enum constant.
7182 (rx_dwarf_reg_to_regnum): New function.
7183 (rx_gdbarch_init): Register rx_dwarf_reg_to_regnum. Use dwarf2
7184 unwinding.
7185
7186 2015-06-29 Pedro Alves <palves@redhat.com>
7187
7188 PR threads/18127
7189 * infcall.c (run_inferior_call): On infcall success, if the thread
7190 was marked stopped before, reset it back to stopped.
7191 * infrun.c (resume): Don't suppress the set_running calls when
7192 doing an infcall.
7193 (normal_stop): Only discard the finish_thread_state cleanup if the
7194 infcall succeeded.
7195
7196 2015-06-29 Pierre Langlois <pierre.langlois@arm.com>
7197
7198 * MAINTAINERS (Write After Approval): Update my email address.
7199
7200 2015-06-26 Keith Seitz <keiths@redhat.com>
7201 Doug Evans <dje@google.com>
7202
7203 PR 16253
7204 * block.c (block_lookup_symbol): For non-function blocks,
7205 continue to search for a symbol with an exact domain match
7206 Otherwise, return any previously found "best domain" symbol.
7207 (block_lookup_symbol_primary): Likewise.
7208
7209 2015-06-26 Patrick Palka <patrick@parcs.ath.cx>
7210
7211 * NEWS: Mention the new option "history remove-duplicates".
7212 * top.c (history_remove_duplicates): New static variable.
7213 (show_history_remove_duplicates): New static function.
7214 (gdb_add_history): Conditionally remove duplicate history
7215 entries.
7216 (init_main): Add "history remove-duplicates" option.
7217
7218 2015-06-26 Patrick Palka <patrick@parcs.ath.cx>
7219
7220 * tui/tui-win.c (focus_completer): New static function.
7221 (_initialize_tui_win): Set the completion function of the
7222 "focus" command to focus_completer.
7223
7224 2015-06-26 Jan Kratochvil <jan.kratochvil@redhat.com>
7225
7226 * linespec.c (minsym_found): Reset sal.PC for COMPUNIT_LOCATIONS_VALID
7227 and language_asm..
7228 * symtab.c (find_function_start_sal): Likewise.
7229
7230 2015-06-25 Gary Benson <gbenson@redhat.com>
7231
7232 * solib.c (solib_find_1): Set local variable sysroot to NULL if
7233 it is the empty string after trailing slashes have been stripped.
7234
7235 2015-06-25 Gary Benson <gbenson@redhat.com>
7236
7237 * exec.c (exec_file_locate_attach): Remove gdb_sysroot NULL check.
7238 * infrun.c (follow_exec): Likewise.
7239 * remote.c (remote_filesystem_is_local): Likewise.
7240 * solib.c (solib_find_1): Likewise.
7241
7242 2015-06-24 Keith Seitz <keiths@redhat.com>
7243
7244 * build-id.c (build_id_to_debug_bfd): Add cleanup to free
7245 return value from lrealpath.
7246
7247 2015-06-24 Mike Frysinger <vapier@gentoo.org>
7248
7249 * remote-sim.c (gdbsim_open): Move sysroot update to the top.
7250
7251 2015-06-24 Mike Frysinger <vapier@gentoo.org>
7252
7253 * remote-sim.c: Include gdb_bfd.h.
7254 (gdbsim_open): Declare new local sysroot pointing to gdb_sysroot.
7255 Skip TARGET_SYSROOT_PREFIX in gdb_sysroot when it is active.
7256
7257 2015-06-24 Yao Qi <yao.qi@linaro.org>
7258
7259 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't call
7260 set_gdbarch_get_siginfo_type.
7261 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
7262 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
7263 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
7264 * m68klinux-tdep.c (m68k_linux_init_abi): Likewise.
7265 * ppc-linux-tdep.c (ppc_linux_init_abi): Likewise.
7266 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
7267 * tilegx-linux-tdep.c (tilegx_linux_init_abi): Likewise.
7268 * linux-tdep.c (linux_get_siginfo_type): Change it to static.
7269 (linux_init_abi): Call set_gdbarch_get_siginfo_type.
7270 * linux-tdep.h (linux_get_siginfo_type): Remove the declaration.
7271
7272 2015-06-24 Gary Benson <gbenson@redhat.com>
7273
7274 * common/buffer.c (stdint.h): Do not include.
7275 * common/print-utils.c (stdint.h): Likewise.
7276 * compile/compile-c-symbols.c (gdb_assert.h): Likewise.
7277 * compile/compile-c-types.c (gdb_assert.h): Likewise.
7278 * ft32-tdep.c (gdb_assert.h): Likewise.
7279 * guile/scm-utils.c (stdint.h): Likewise.
7280 * i386-linux-tdep.c (stdint.h): Likewise.
7281 * i386-tdep.c (stdint.h): Likewise.
7282 * nat/linux-btrace.c (stdint.h): Likewise.
7283 * nat/linux-btrace.h (stdint.h): Likewise.
7284 * nat/linux-ptrace.c (stdint.h): Likewise.
7285 * nat/mips-linux-watch.h (stdint.h): Likewise.
7286 * ppc-linux-nat.c (stdint.h): Likewise.
7287 * python/python-internal.h (stdint.h): Likewise.
7288 * stub-termcap.c (stdlib.h): Likewise.
7289 * target/target.h (stdint.h): Likewise.
7290 * xtensa-linux-nat.c (stdint.h): Likewise.
7291
7292 2015-06-23 Patrick Palka <patrick@parcs.ath.cx>
7293
7294 * top.c (init_history): Look at errno after calling strtol to
7295 properly map large GDBHISTSIZE values to infinity.
7296
7297 2015-06-23 Doug Evans <dje@google.com>
7298
7299 * inferior.h (struct inferior_suspend_state): Delete, unused.
7300 All references deleted.
7301
7302 2015-06-23 Mike Frysinger <vapier@gentoo.org>
7303
7304 * microblaze-tdep.c (microblaze_push_dummy_code): Delete.
7305 (microblaze_push_dummy_call): Likewise.
7306 (microblaze_gdbarch_init): Delete calls to set_gdbarch_push_dummy_code
7307 and set_gdbarch_push_dummy_call.
7308
7309 2015-06-23 Yao Qi <yao.qi@linaro.org>
7310
7311 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers):
7312 Check whether have_ptrace_getregset is TRIBOOL_TRUE explicitly.
7313 (amd64_linux_store_inferior_registers): Likewise.
7314 * arm-linux-nat.c (fetch_fpregister): Likewise.
7315 (fetch_fpregs, store_fpregister): Likewise.
7316 (store_fpregister, store_fpregs): Likewise.
7317 (fetch_register, fetch_regs): Likewise.
7318 (store_register, store_regs): Likewise.
7319 (fetch_vfp_regs, store_vfp_regs): Likewise.
7320 (arm_linux_read_description): Check have_ptrace_getregset is
7321 TRIBOOL_UNKNOWN. Set have_ptrace_getregset to TRIBOOL_TRUE
7322 or TRIBOOL_FALSE.
7323 * i386-linux-nat.c (fetch_xstateregs): Check
7324 have_ptrace_getregset is not TRIBOOL_TRUE.
7325 (store_xstateregs): Likewise.
7326 * linux-nat.c (have_ptrace_getregset): Change its type to
7327 enum tribool.
7328 * linux-nat.h (tribool): New enum.
7329 * x86-linux-nat.c (x86_linux_read_description): Use enum tribool.
7330 Check whether have_ptrace_getregset is TRIBOOL_TRUE.
7331
7332 2015-06-19 Doug Evans <dje@google.com>
7333
7334 * NEWS: Mention Sun's version of stabs is no longer supported.
7335 * elfread.c (free_elfinfo): Delete. All uses updated.
7336 (elfstab_offset_sections): Delete. All uses updated.
7337 * gdb-stabs.h (stab_section_info): Delete. All uses updated.
7338 * psympriv.h (partial_symtab) <section_offsets>: Delete.
7339 All uses updated.
7340 * psymtab.c (start_psymtab_common): Delete arg section_offsets.
7341 All callers updated.
7342
7343 2015-06-18 Simon Marchi <simon.marchi@ericsson.com>
7344
7345 * common/rsp-low.c (needs_escaping): New.
7346 (remote_escape_output): Add unit_size parameter. Refactor to
7347 support multi-byte addressable units. Rename parameters.
7348 * common/rsp-low.h (remote_escape_output): Add unit_size
7349 parameter and rename others. Update doc.
7350 * remote.c (align_for_efficient_write): New.
7351 (remote_write_bytes_aux): Add unit_size parameter and use it.
7352 Rename some variables. Update doc.
7353 (remote_xfer_partial): Get unit size and use it.
7354 (remote_read_bytes_1): Add unit_size parameter and use it.
7355 Rename some variables. Update doc.
7356 (remote_write_bytes): Same.
7357 (remote_xfer_live_readonly_partial): Same.
7358 (remote_read_bytes): Same.
7359 (remote_flash_write): Update call to remote_write_bytes_aux.
7360 (remote_write_qxfer): Update call to remote_escape_output.
7361 (remote_search_memory): Same.
7362 (remote_hostio_pwrite): Same.
7363
7364 2015-06-17 Luis Machado <lgustavo@codesourcery.com>
7365
7366 * breakpoint.c (add_location_to_breakpoint): Don't mark permanent
7367 locations as inserted.
7368 Update and expand comment about permanent locations.
7369 (bp_loc_is_permanent): Don't return 0 for bp_call_dummy.
7370 Move comment to add_location_to_breakpoint.
7371 (update_global_location_list): Don't error out if a permanent
7372 breakpoint is not marked inserted.
7373 Don't error out if a non-permanent breakpoint location is inserted on
7374 top of a permanent breakpoint.
7375
7376 2015-06-17 Luis Machado <lgustavo@codesourcery.com>
7377
7378 * breakpoint.c (make_breakpoint_permanent): Remove unused
7379 function.
7380 * breakpoint.h (make_breakpoint_permanent): Remove declaration.
7381
7382 2015-06-17 Patrick Palka <patrick@parcs.ath.cx>
7383
7384 PR gdb/16999
7385 * NEWS: Mention new GDBHISTSIZE behavior.
7386 * top.c (init_history): For null or out-of-range GDBHISTSIZE,
7387 set history size to unlimited. Ignore non-numeric GDBHISTSIZE.
7388
7389 2015-06-17 Patrick Palka <patrick@parcs.ath.cx>
7390
7391 * NEWS: Mention that GDBHISTSIZE is read instead of HISTSIZE.
7392 * top.c (init_history): Read from GDBHISTSIZE instead of
7393 HISTSIZE.
7394 (init_main): Refer to GDBHISTSIZE instead of HISTSIZE.
7395
7396 2015-06-17 Patrick Palka <patrick@parcs.ath.cx>
7397
7398 * top.c (gdb_safe_append_history): Do not call
7399 history_truncate_file if the history is not stifled.
7400
7401 2015-06-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
7402
7403 * syscalls/s390-linux.xml: Add syscalls 344 through 354.
7404 * syscalls/s390x-linux.xml: Likewise.
7405
7406 2015-06-16 Michael Eager <eager@eagercon.com>
7407
7408 * nat/linux-namespaces.c (MSG_CMSG_CLOEXEC): Define if not defined.
7409
7410 2015-06-16 Patrick Palka <patrick@parcs.ath.cx>
7411
7412 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Call
7413 target_terminal_ours_for_output() before calling
7414 tui_show_frame_info(), and restore the original terminal
7415 settings afterwards.
7416
7417 2015-06-16 Martin Simmons <martin@lispworks.com> (tiny patch)
7418
7419 * arm-linux-nat.c: Include nat/linux-ptrace.h.
7420
7421 2015-06-15 Simon Marchi <simon.marchi@ericsson.com>
7422
7423 * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Consider addressable
7424 memory unit size.
7425 (mi_cmd_data_write_memory_bytes): Same.
7426
7427 2015-06-15 Simon Marchi <simon.marchi@ericsson.com>
7428
7429 * corefile.c (write_memory): Update doc.
7430 * gdbcore.h (write_memory): Same.
7431
7432 2015-06-15 Jan Kratochvil <jan.kratochvil@redhat.com>
7433
7434 * linux-tdep.c (enum filterflags): Make it from anonymous enum.
7435 (dump_mapping_p): Use it for parameter filterflags.
7436 (linux_find_memory_regions_full): Use it for variable filterflags.
7437
7438 2015-06-15 Aleksandar Ristovski <aristovski@qnx.com
7439 Jan Kratochvil <jan.kratochvil@redhat.com>
7440
7441 Merge multiple hex conversions.
7442 * monitor.c: Include rsp-low.h.
7443 (fromhex): Remove definition.
7444
7445 2015-06-15 Aleksandar Ristovski <aristovski@qnx.com
7446 Jan Kratochvil <jan.kratochvil@redhat.com>
7447
7448 Move utility functions to common/.
7449 * cli/cli-utils.c (skip_spaces, skip_spaces_const, skip_to_space_const):
7450 Move defs to common/common-utils.c.
7451 * cli/cli-utils.h (skip_spaces, skip_spaces_const, skip_to_space)
7452 (skip_to_space_const): Move decls to common/common-utils.h.
7453 * common/common-defs.h: Move include of common-types.h before
7454 common-utils.h.
7455 * common/common-utils.c: Include host-defs.h and ctype.h.
7456 (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int, strtoulst): Move
7457 from utils.c.
7458 (skip_spaces, skip_spaces_const, skip_to_space_const): Move from
7459 cli/cli-utils.c.
7460 * common/common-utils.h (strtoulst): Move decl from utils.h.
7461 (skip_spaces, skip_spaces_const, skip_to_space, skip_to_space_const):
7462 Move from cli/cli-utils.h.
7463 * common/host-defs.h: Include limits.h.
7464 (TARGET_CHAR_BIT, HOST_CHAR_BIT): Moved from defs.h.
7465 (skip_spaces, skip_spaces_const): Move decls from cli/cli-utils.h.
7466 * defs.h (TARGET_CHAR_BIT, HOST_CHAR_BIT): Move to
7467 common/common-utils.h.
7468 * utils.c (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int)
7469 (strtoulst): Move to common/common-utils.c.
7470 * utils.h (strtoulst): Moved decl to common/common-utils.h.
7471
7472 2015-06-15 Yao Qi <yao.qi@linaro.org>
7473
7474 * data-directory/Makefile.in (SYSCALLS_FILES): Add aarch64-linux.xml.
7475
7476 2015-06-10 Jon Turney <jon.turney@dronecode.org.uk>
7477
7478 * build-id.c: Don't include elf-bfd.h.
7479 (build_id_bfd_get): Use bfd_build_id.
7480 (build_id_verify): Ditto.
7481 * build-id.h: Ditto.
7482 (find_separate_debug_file_by_buildid): Ditto.
7483 * python/py-objfile.c: Don't include elf-bfd.h.
7484 (objfpy_get_build_id) Use bfd_build_id.
7485 (objfpy_build_id_matches, objfpy_lookup_objfile_by_build_id): Ditto.
7486 * coffread.c: Include build-id.h.
7487 (coff_symfile_read): Try find_separate_debug_file_by_buildid.
7488
7489 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
7490
7491 * windows-nat.c (do_windows_fetch_inferior_registers)
7492 (handle_output_debug_string): Replace __COPY_CONTEXT_SIZE
7493 conditional with __CYGWIN__.
7494
7495 2015-06-13 Andrew Burgess <andrew.burgess@embecosm.com>
7496
7497 * completer.c: Add arch-utils.h include.
7498 (enum reg_completer_targets): New enum.
7499 (reg_or_group_completer_1): New function containing old
7500 reg_or_group_completer, add and use new parameter to control what
7501 is completed on. Use get_current_arch rather than architecture of
7502 currently selected frame.
7503 (reg_or_group_completer): Call new reg_or_group_completer_1.
7504 (reggroup_completer): Call new reg_or_group_completer_1.
7505 * completer.h (reggroup_completer): Add declaration.
7506 * tui/tui-regs.c: Add 'completer.h' include.
7507 (tui_reg_next_command): Renamed to...
7508 (tui_reg_next): ...this. Adjust parameters and return rather than
7509 display new group.
7510 (tui_reg_prev_command): Renamed to...
7511 (tui_reg_prev): ...this. Adjust parameters and return rather than
7512 display new group.
7513 (tui_reg_float_command): Delete.
7514 (tui_reg_general_command): Delete.
7515 (tui_reg_system_command): Delete.
7516 (tui_reg_command): Rewrite to perform switching of register group.
7517 Add header comment.
7518 (tuireglist): Remove.
7519 (tui_reggroup_completer): New function.
7520 (_initialize_tui_regs): Remove 'tui reg' sub-commands, update
7521 creation of 'tui reg' command.
7522 * NEWS: Add comment about 'tui reg' changes.
7523
7524 2015-06-12 Simon Marchi <simon.marchi@ericsson.com>
7525
7526 * target.c (target_read): Consider addressable unit size when
7527 reading from a memory object.
7528 (read_memory_robust): Same.
7529 (read_whatever_is_readable): Same.
7530 (target_write_with_progress): Consider addressable unit size
7531 when writing to a memory object.
7532 * target.h (target_read): Update documentation.
7533 (target_write): Add documentation.
7534
7535 2015-06-12 Simon Marchi <simon.marchi@ericsson.com>
7536
7537 * arch-utils.h (default_addressable_memory_unit_size): New.
7538 * arch-utils.c (default_addressable_memory_unit_size): New.
7539 * gdbarch.sh (addressable_memory_unit_size): New.
7540 * gdbarch.h: Re-generate.
7541 * gdbarch.c: Re-generate.
7542
7543 2015-06-12 Simon Marchi <simon.marchi@ericsson.com>
7544
7545 * target.c (target_read): Rename variables and use
7546 TARGET_XFER_E_IO.
7547 (target_read_with_progress): Same.
7548 (read_memory_robust): Constify parameters and rename
7549 variables.
7550 (read_whatever_is_readable): Constify parameters,
7551 rename variables, adjust formatting.
7552 * target.h (read_memory_robust): Constify parameters.
7553
7554 2015-06-12 Ulrich Weigand <uweigand@de.ibm.com>
7555
7556 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value_base): Handle short
7557 synthetic (non-AltiVec) vector types.
7558 (ppc64_sysv_abi_return_value): Likewise.
7559
7560 2015-06-12 Antoine Tremblay <antoine.tremblay@ericsson.com>
7561
7562 PR breakpoints/16465
7563 * breakpoint.c (create_breakpoint): Save extra_string for
7564 pending breakpoints.
7565
7566 2015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com>
7567
7568 * i386-tdep.c (i386_mpx_get_bt_entry): Add a cast for mpx_bd_mask
7569 and bt_mask to CORE_ADDR.
7570
7571 2015-06-11 Gary Benson <gbenson@redhat.com>
7572
7573 * nat/linux-namespaces.c (mnsh_send_message): Use pulongest.
7574 (mnsh_recv_message): Likewise.
7575
7576 2015-06-11 Walfred Tedeschi <walfred.tedeschi@intel.com>
7577
7578 * i386-tdep.c (i386_mpx_print_bounds): use of LONGEST instead of
7579 long long int and plongest instead of %ll.
7580
7581 2015-06-11 Gary Benson <gbenson@redhat.com>
7582
7583 * nat/linux-namespaces.c (gdb_wait.h): New include.
7584 (sys/wait.h): Do not include.
7585
7586 2015-06-10 Simon Marchi <simon.marchi@ericsson.com>
7587
7588 * dwarf2read.c (dwarf_record_line): Call dwarf_record_line if
7589 end_sequence is true.
7590
7591 2015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7592
7593 Code cleanup.
7594 * solib-target.c (library_list_start_list): Use explicit NULL
7595 comparison.
7596
7597 2015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7598
7599 * solib-target.c (library_list_start_list): Do not dereference
7600 variable version in its initialization. Make the VERSION check handle
7601 NULL.
7602 (library_list_attributes): Make "version" GDB_XML_AF_OPTIONAL.
7603
7604 2015-06-10 Gary Benson <gbenson@redhat.com>
7605
7606 * NEWS: Announce support for direct access of executable and
7607 shared library files when attaching to inferiors in containers
7608 on GNU/Linux systems.
7609
7610 2015-06-10 Gary Benson <gbenson@redhat.com>
7611
7612 * remote.c (struct remote_state) <fs_pid>: New field.
7613 (new_remote_state): Initialize the above.
7614 (PACKET_vFile_setfs): New enum value.
7615 (remote_hostio_set_filesystem): New function.
7616 (remote_hostio_open): Call the above.
7617 (remote_hostio_unlink): Likewise.
7618 (remote_hostio_readlink): Likewise.
7619 (_initialize_remote): Register new "set/show remote
7620 hostio-setfs-packet" command.
7621 * NEWS: Announce new vFile:setfs packet.
7622
7623 2015-06-10 Gary Benson <gbenson@redhat.com>
7624
7625 * linux-nat.c (nat/linux-namespaces.h): New include.
7626 (fileio.h): Likewise.
7627 (linux_nat_filesystem_is_local): New function.
7628 (linux_nat_fileio_pid_of): Likewise.
7629 (linux_nat_fileio_open): Likewise.
7630 (linux_nat_fileio_readlink): Likewise.
7631 (linux_nat_fileio_unlink): Likewise.
7632 (linux_nat_add_target): Initialize to_filesystem_is_local,
7633 to_fileio_open, to_fileio_readlink and to_fileio_unlink.
7634 (_initialize_linux_nat): New "set/show debug linux-namespaces"
7635 commands.
7636 * NEWS: Mention new "set/show debug linux-namespaces" commands.
7637
7638 2015-06-10 Gary Benson <gbenson@redhat.com>
7639
7640 * target.h (struct inferior): New forward declaration.
7641 (struct target_ops) <to_filesystem_is_local>: Update comment.
7642 (struct target_ops) <to_fileio_open>: New argument inf.
7643 Update comment. All implementations updated.
7644 (struct target_ops) <to_fileio_unlink>: Likewise.
7645 (struct target_ops) <to_fileio_readlink>: Likewise.
7646 (target_filesystem_is_local): Update comment.
7647 (target_fileio_open): New argument inf. Update comment.
7648 (target_fileio_unlink): Likewise.
7649 (target_fileio_readlink): Likewise.
7650 (target_fileio_read_alloc): Likewise.
7651 (target_fileio_read_stralloc): Likewise.
7652 * target.c (target_fileio_open): New argument inf.
7653 Pass inf to implementation. Update debug printing.
7654 (target_fileio_unlink): Likewise.
7655 (target_fileio_readlink): Likewise.
7656 (target_fileio_read_alloc_1): New argument inf. Pass inf
7657 to target_fileio_open.
7658 (target_fileio_read_alloc): New argument inf. Pass inf to
7659 target_fileio_read_alloc_1.
7660 (target_fileio_read_stralloc): Likewise.
7661 * gdb_bfd.c (inferior.h): New include.
7662 (gdb_bfd_iovec_fileio_open): Replace unused "open_closure"
7663 argument with new argument "inferior". Pass inferior to
7664 target_fileio_open.
7665 (gdb_bfd_open): Supply inferior argument to
7666 gdb_bfd_iovec_fileio_open.
7667 * linux-tdep.c (linux_info_proc): Supply inf argument to
7668 relevant target_fileio calls.
7669 (linux_find_memory_regions_full): Likewise.
7670 (linux_fill_prpsinfo): Likewise.
7671 * remote.c (remote_filesystem_is_local): Supply inf
7672 argument to remote_hostio_open.
7673 (remote_file_put): Likewise.
7674 (remote_file_get): Likewise.
7675 (remote_file_delete): Supply inf argument to
7676 remote_hostio_unlink.
7677
7678 2015-06-10 Gary Benson <gbenson@redhat.com>
7679
7680 * inf-child.c (inf_child_fileio_open): Replace comment.
7681 (inf_child_fileio_pwrite): Likewise.
7682 (inf_child_fileio_pread): Likewise.
7683 (inf_child_fileio_fstat): Insert blank line before comment.
7684 (inf_child_fileio_close): Replace comment.
7685 (inf_child_fileio_unlink): Likewise.
7686 (inf_child_fileio_readlink): Likewise.
7687 * remote.c (remote_hostio_open): Likewise.
7688 (remote_hostio_pread): Likewise.
7689 (remote_hostio_pwrite): Likewise.
7690 (remote_hostio_close): Likewise.
7691 (remote_hostio_unlink): Likewise.
7692 (remote_hostio_readlink): Likewise.
7693 (remote_hostio_fstat): Likewise.
7694 (remote_filesystem_is_local): Likewise.
7695 * target.c (target_fileio_open): Likewise.
7696 (target_fileio_pwrite): Likewise.
7697 (target_fileio_pread): Likewise.
7698 (target_fileio_fstat): Insert blank line before comment.
7699 (target_fileio_close): Replace comment.
7700 (target_fileio_unlink): Likewise.
7701 (target_fileio_readlink): Likewise.
7702 (target_fileio_read_alloc): Likewise.
7703 (target_fileio_read_stralloc): Likewise.
7704
7705 2015-06-10 Gary Benson <gbenson@redhat.com>
7706
7707 * linux-thread-db.c (nat/linux-namespaces.h): New include.
7708 (check_pid_namespace_match): Use linux_ns_same rather than
7709 linux_proc_pid_get_ns to spot PID namespace mismatches.
7710 * nat/linux-procfs.h (linux_proc_pid_get_ns): Remove.
7711 * nat/linux-procfs.c (linux_proc_pid_get_ns): Likewise.
7712
7713 2015-06-10 Gary Benson <gbenson@redhat.com>
7714
7715 * configure.ac (AC_CHECK_FUNCS): Add setns.
7716 * config.in: Regenerate.
7717 * configure: Likewise.
7718 * nat/linux-namespaces.h: New file.
7719 * nat/linux-namespaces.c: Likewise.
7720 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-namespaces.h.
7721 (linux-namespaces.o): New rule.
7722 * config/aarch64/linux.mh (NATDEPFILES): Add linux-namespaces.o.
7723 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
7724 * config/arm/linux.mh (NATDEPFILES): Likewise.
7725 * config/i386/linux.mh (NATDEPFILES): Likewise.
7726 * config/i386/linux64.mh (NATDEPFILES): Likewise.
7727 * config/ia64/linux.mh (NATDEPFILES): Likewise.
7728 * config/m32r/linux.mh (NATDEPFILES): Likewise.
7729 * config/m68k/linux.mh (NATDEPFILES): Likewise.
7730 * config/mips/linux.mh (NATDEPFILES): Likewise.
7731 * config/pa/linux.mh (NATDEPFILES): Likewise.
7732 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
7733 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
7734 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
7735 * config/s390/linux.mh (NATDEPFILES): Likewise.
7736 * config/sparc/linux.mh (NATDEPFILES): Likewise.
7737 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
7738 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
7739 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
7740
7741 2015-06-10 Gary Benson <gbenson@redhat.com>
7742
7743 * utils.h (make_cleanup_close): Moved to common/filestuff.h.
7744 * utils.c (do_close_cleanup): Moved to common/filestuff.c.
7745 (make_cleanup_close): Likewise.
7746 * common/filestuff.h (make_cleanup_close): Moved from utils.h.
7747 * common/filestuff.c (do_close_cleanup): Moved from utils.c.
7748 (make_cleanup_close): Likewise.
7749
7750 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
7751
7752 * windows-nat.c (thread_rec): Also ignore ERROR_INVALID_HANDLE
7753 from SuspendThread().
7754
7755 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
7756
7757 * windows-nat.c (handle_output_debug_string): Trim trailing '\n'
7758 from OutputDebugString.
7759
7760 2015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com>
7761 Mircea Gherzan <mircea.gherzan@intel.com>
7762
7763 * i386-tdep.c (MPX_BASE_MASK, MPX_BD_MASK, MPX_BT_MASK, MPX_BD_MASK_32,
7764 MPX_BT_MASK_32): New macros.
7765 (i386_mpx_set_bounds): New function that implements
7766 the command "set-mpx-bound".
7767 (i386_mpx_enabled): Helper function to test MPX availability.
7768 (i386_mpx_bd_base): Helper function to calculate the base directory
7769 address.
7770 (i386_mpx_get_bt_entry): Helper function to access a bound
7771 table entry.
7772 (i386_mpx_print_bounds): Effectively display bound information.
7773 (_initialize_i386_tdep): Add new commands to commands "set mpx" and
7774 "show mpx".
7775 (_initialize_i386_tdep):
7776 Add "bound" to the commands "show mpx" and "set mpx" commands.
7777 (mpx_set_cmdlist and mpx_show_cmdlist): List for the new prefixed "set mpx"
7778 and "show mpx" commands.
7779 * NEWS: List new commands for MPX support.
7780
7781 2015-06-09 Gary Benson <gbenson@redhat.com>
7782
7783 * common/fileio.h (fileio_to_host_mode): New declaration.
7784 * common/fileio.c (fileio_to_host_mode): New Function.
7785 * inf-child.c (inf_child_fileio_open): Process mode argument
7786 with fileio_to_host_mode.
7787
7788 2015-06-09 Gary Benson <gbenson@redhat.com>
7789
7790 * common/fileio.c (fileio_mode_pack): Fix preprocessor
7791 conditional.
7792
7793 2015-06-05 Gary Benson <gbenson@redhat.com>
7794
7795 * gdb_bfd.c (gdb_bfd_open): Move vgdb special case to...
7796 * remote.c (remote_filesystem_is_local): ...here.
7797
7798 2015-06-04 Yao Qi <yao.qi@linaro.org>
7799
7800 * gdbarch.c: Regenerate it.
7801
7802 2015-06-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7803
7804 * arch-utils.c (default_infcall_munmap): New.
7805 * arch-utils.h (default_infcall_munmap): New declaration.
7806 * compile/compile-object-load.c (struct munmap_list, munmap_list_add)
7807 (munmap_list_free, munmap_listp_free_cleanup): New.
7808 (struct setup_sections_data): Add field munmap_list_headp.
7809 (setup_sections): Call munmap_list_add.
7810 (compile_object_load): New variable munmap_list_head, initialize
7811 setup_sections_data.munmap_list_headp, return munmap_list_head.
7812 * compile/compile-object-load.h (struct munmap_list): New declaration.
7813 (struct compile_module): Add field munmap_list_head.
7814 (munmap_list_free): New declaration.
7815 * compile/compile-object-run.c (struct do_module_cleanup): Add field
7816 munmap_list_head.
7817 (do_module_cleanup): Call munmap_list_free.
7818 (compile_object_run): Pass munmap_list_head to do_module_cleanup.
7819 * gdbarch.c: Regenerate.
7820 * gdbarch.h: Regenerate.
7821 * gdbarch.sh (infcall_munmap): New.
7822 * linux-tdep.c (linux_infcall_munmap): New.
7823 (linux_init_abi): Install it.
7824
7825 2015-06-02 Simon Marchi <simon.marchi@ericsson.com>
7826
7827 PR gdb/15564
7828 * inferior.c (detach_inferior): Call exit_inferior_1 with silent = 0.
7829
7830 2015-06-02 Yao Qi <yao.qi@linaro.org>
7831
7832 * i386-linux-nat.c: Include linux-nat.h.
7833
7834 2015-06-01 Andreas Schwab <schwab@linux-m68k.org>
7835 Jan Kratochvil <jan.kratochvil@redhat.com>
7836
7837 PR symtab/18392
7838 * dwarf2-frame-tailcall.c (pretended_chain_levels): Correct
7839 assertion.
7840 * dwarf2loc.c (chain_candidate): Likewise.
7841
7842 2015-06-01 Yao Qi <yao.qi@linaro.org>
7843
7844 * arm-linux-nat.c (fetch_vfp_regs): Use PTRACE_GETREGSET.
7845 (store_vfp_regs): Use PTRACE_SETREGSET.
7846
7847 2015-06-01 Yao Qi <yao.qi@linaro.org>
7848
7849 * arm-linux-nat.c (fetch_fpregister): Use PTRACE_GETREGSET.
7850 (fetch_fpregs): Likewise.
7851 * arm-linux-nat.c (store_fpregister): Use PTRACE_SETREGSET.
7852 (store_fpregs): Likewise.
7853
7854 2015-06-01 Yao Qi <yao.qi@linaro.org>
7855
7856 * arm-linux-nat.c (fetch_register): Use PTRACE_GETREGSET.
7857 (fetch_regs): Likewise.
7858 (store_regs): Use PTRACE_SETREGSET.
7859 (store_register): Likewise.
7860
7861 2015-06-01 Yao Qi <yao.qi@linaro.org>
7862
7863 * arm-linux-nat.c (arm_linux_read_description): Check whether
7864 kernel supports PTRACE_GETREGSET.
7865
7866 2015-06-01 Yao Qi <yao.qi@linaro.org>
7867
7868 * x86-linux-nat.c (have_ptrace_getregset): Move it to ...
7869 * linux-nat.c: ... here.
7870 * x86-linux-nat.h (have_ptrace_getregset): Move the declaration
7871 to ...
7872 * linux-nat.h: ... here.
7873
7874 2015-06-01 Yao Qi <yao.qi@linaro.org>
7875
7876 * amd64-linux-nat.c: Include "nat/linux-ptrace.h".
7877 * i386-linux-nat.c: Likewise.
7878 * nat/linux-ptrace.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Define.
7879 * s390-linux-nat.c: Include "nat/linux-ptrace.h".
7880 (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
7881 * x86-linux-nat.c: Include "nat/linux-ptrace.h".
7882 * x86-linux-nat.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
7883
7884 2015-05-30 Eli Zaretskii <eliz@gnu.org>
7885
7886 * go32-nat.c (go32_xfer_memory): Fix the return value to be
7887 compatible to what read_child and write_child return. This
7888 unbreaks that DJGPP build of GDB which was broken since v7.7.
7889
7890 2015-05-29 Martin Galvan <martin.galvan@tallertechnologies.com>
7891
7892 * MAINTAINERS (Write After Approval): Add Martin Galvan.
7893
7894 2015-05-29 Roland McGrath <mcgrathr@google.com>
7895
7896 PR gdb/18464
7897 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Use warning
7898 rather than internal_error for an unrecognized value.
7899
7900 2015-05-29 Max Filippov <jcmvbkbc@gmail.com>
7901
7902 * xtensa-tdep.c (xtensa_pseudo_register_read)
7903 (xtensa_pseudo_register_write): Don't alias last pseudo register
7904 to a1.
7905
7906 2015-05-28 Don Breazeal <donb@codesourcery.com>
7907
7908 * infrun.c (follow_fork_inferior): Ensure the use of
7909 process-style ptids (pid,0,0) in verbose/debug "Detaching"
7910 messages.
7911
7912 2015-05-28 Doug Evans <dje@google.com>
7913
7914 * dwarf2read.c (record_line_ftype): Remove, duplicate.
7915
7916 2015-05-28 Yao Qi <yao.qi@linaro.org>
7917
7918 * arm-linux-nat.c (arm_linux_has_wmmx_registers): Remove.
7919 (arm_linux_fetch_inferior_registers): Use
7920 tdep->have_wmmx_registers instead of arm_linux_has_wmmx_registers.
7921 (arm_linux_store_inferior_registers): Likewise.
7922 (arm_linux_read_description): Don't set
7923 arm_linux_has_wmmx_registers.
7924 * arm-tdep.c (arm_gdbarch_init): Set
7925 tdep->have_wmmx_registers according target descriptions.
7926 * arm-tdep.h (struct gdbarch_tdep) <have_wmmx_registers>: New
7927 field.
7928
7929 2015-05-28 Yao Qi <yao.qi@linaro.org>
7930
7931 * arm-linux-nat.c (arm_linux_vfp_register_count): Remove.
7932 (fetch_vfp_regs): Use vfp_register_count from gdbarch_tdep
7933 instead of arm_linux_vfp_register_count.
7934 (store_vfp_regs): Likewise.
7935 (arm_linux_fetch_inferior_registers): Likewise.
7936 (arm_linux_store_inferior_registers): Likewise.
7937 (arm_linux_read_description): Don't set
7938 arm_linux_vfp_register_count.
7939 * arm-linux-tdep.c (arm_linux_iterate_over_regset_sections):
7940 Adjust.
7941 * arm-tdep.c (arm_gdbarch_init): Add assert on
7942 vfp_register_count.
7943 * arm-tdep.h (struct gdbarch_tdep) <have_vfp_registers>: Rename
7944 field to vfp_register_count. All users updated.
7945
7946 2015-05-28 Kyle Huey <me@kylehuey.com> (tiny patch)
7947
7948 * gdb/arm-tdep.c (arm_gdbarch_init): Perform arm_abi detection on
7949 ELFOSABI_GNU binaries.
7950
7951 2015-05-27 Doug Evans <dje@google.com>
7952
7953 * dwarf2read.c (lnp_state_machine): New typedef.
7954 (lnp_reader_state): New typedef.
7955 (dwarf_record_line_1): Renamed from dwarf_record_line.
7956 All callers updated.
7957 (dwarf_record_line): New function.
7958 (init_lnp_state_machine): New function.
7959 (check_line_address): Replace p_record_line parameter with state.
7960 All callers updated.
7961 (dwarf_decode_lines_1): Call dwarf_record_line, init_lnp_state_machine.
7962 Update to record state in lnp_state_machine.
7963
7964 2015-05-27 Doug Evans <dje@google.com>
7965
7966 * dwarf2read.c (record_line_ftype): New typedef.
7967 (check_line_address): New function.
7968 (dwarf_decode_lines_1): Call it.
7969
7970 2015-05-27 Doug Evans <dje@google.com>
7971
7972 * NEWS: Mention "set debug dwarf-line".
7973 * dwarf2read.c (dwarf_line_debug): New static global.
7974 (add_include_dir): Add debug dwarf-line support.
7975 (add_file_name, dwarf_record_line, dwarf_finish_line): Ditto.
7976 (_initialize_dwarf2_read): New parameter "debug dwarf-line".
7977
7978 2015-05-27 Doug Evans <dje@google.com>
7979
7980 * cp-namespace.c (cp_lookup_nested_symbol): New arg "domain".
7981 All callers updated.
7982 (cp_lookup_nested_symbol_1, find_symbol_in_baseclass): Ditto.
7983 * cp-support.h (cp_lookup_nested_symbol): Update.
7984
7985 2015-05-27 Doug Evans <dje@google.com>
7986
7987 PR symtab/18258
7988 * block.c (block_find_symbol): New function.
7989 (block_find_non_opaque_type): Ditto.
7990 (block_find_non_opaque_type_preferred): Ditto.
7991 * block.h (block_symbol_matcher_ftype): New typedef.
7992 (block_find_symbol): Declare.
7993 (block_find_non_opaque_type): Ditto.
7994 (block_find_non_opaque_type_preferred): Ditto.
7995 * dwarf2read.c (dw2_lookup_symbol): Call block_find_symbol.
7996 * psymtab.c (psym_lookup_symbol): Ditto.
7997 * symtab.c (basic_lookup_transparent_type_1): New function.
7998 (basic_lookup_transparent_type): Call it.
7999
8000 2015-05-27 Yao Qi <yao.qi@linaro.org>
8001
8002 * aarch64-tdep.c (aarch64_record_data_proc_simd_fp): Return
8003 AARCH64_RECORD_UNKNOWN for unknown instruction encoding.
8004
8005 2015-05-27 Yao Qi <yao.qi@linaro.org>
8006
8007 * aarch64-tdep.c (aarch64_record_branch_except_sys): Split lines
8008 before operator &&.
8009 (aarch64_record_load_store): Likewise.
8010
8011 2015-05-26 Doug Evans <dje@google.com>
8012
8013 PR c++/18141, c++/18417.
8014 * cp-support.c (cp_lookup_rtti_type): Handle the case of NAME being
8015 a typedef.
8016
8017 2015-05-26 Doug Evans <dje@google.com>
8018
8019 * NEWS: Add entries for command renamings.
8020 * dwarf2read.c (dwarf_read_debug): Renamed from dwarf2_read_debug.
8021 All uses updated.
8022 (dwarf_die_debug): Renamed from dwarf2_die_debug. All uses updated.
8023 (dwarf_max_cache_age): Renamed from dwarf2_max_cache_age.
8024 All uses updated.
8025 (show_dwarf_max_cache_age): Renamed from show_dwarf2_max_cache_age.
8026 All callers updated. Fix spelling of DWARF in help text.
8027 (set_dwarf_cmdlist): Renamed from set_dwarf2_cmdlist.
8028 All uses updated.
8029 (show_dwarf_cmdlist): Renamed from show_dwarf2_cmdlist.
8030 All uses updated.
8031 (set_dwarf_cmd): Renamed from set_dwarf2_cmd. All callers updated.
8032 (show_dwarf_cmd): Renamed from show_dwarf2_cmd. All callers updated.
8033 (dwarf_always_disassemble): Renamed from dwarf_always_disassemble.
8034 All uses updated.
8035 (show_dwarf_always_disassemble): Renamed from
8036 show_dwarf2_always_disassemble. All callers updated.
8037 (_initialize_dwarf2_read): Rename "set/show dwarf2" prefix to
8038 "set/show dwarf". Rename "set/show dwarf2 max-cache-age" to
8039 "set/show dwarf max-cache-age". Rename
8040 "set/show dwarf2 always-disassemble" to
8041 "set/show dwarf always-disassemble". Rename
8042 "set/show debug dwarf2-read" to "set/show debug dwarf-read". Rename
8043 "set/show debug dwarf2-die" to "set/show debug dwarf-die".
8044
8045 2015-05-26 Doug Evans <dje@google.com>
8046
8047 PR python/18438
8048 * python/py-lazy-string.c (stpy_convert_to_value): Use
8049 gdbpy_gdb_memory_error not PyExc_MemoryError.
8050 (gdbpy_create_lazy_string_object): Ditto.
8051
8052 2015-05-26 Andrew Burgess <andrew.burgess@embecosm.com>
8053
8054 * tui/tui-regs.c (tui_reg_next_command): Compare against NULL.
8055
8056 2015-05-26 Andrew Burgess <andrew.burgess@embecosm.com>
8057
8058 * tui/tui-regs.c (tui_reg_prev_command): New function.
8059 (_initialize_tui_regs): Add 'prev' command for 'tui reg'.
8060 * reggroups.c (reggroup_prev): New function.
8061 * reggroups.h (reggroup_prev): Add declaration. Update comment.
8062
8063 2015-05-26 Omair Javaid <omair.javaid@linaro.org>
8064 Yao Qi <yao.qi@linaro.org>
8065
8066 * aarch64-linux-tdep.c: Include linux-record.h and
8067 record-full.h.
8068 (struct linux_record_tdep aarch64_linux_record_tdep): Declare.
8069 (aarch64_syscall): New enum.
8070 (aarch64_canonicalize_syscall): New function.
8071 (aarch64_all_but_pc_registers_record): New function.
8072 (aarch64_linux_syscall_record): New function.
8073 (aarch64_linux_init_abi): Install AArch64 process record
8074 handler. Update to handle syscall recording.
8075 * aarch64-tdep.c: Include record.h and record-full.h.
8076 (submask, bit, bits, REG_ALLOC, MEM_ALLOC): New macros.
8077 (struct aarch64_mem_r): Define.
8078 (aarch64_record_result): New enum.
8079 (struct insn_decode_record): Define.
8080 (insn_decode_record): New typedef.
8081 (aarch64_record_data_proc_reg): New function.
8082 (aarch64_record_data_proc_imm): New function.
8083 (aarch64_record_branch_except_sys): New function.
8084 (aarch64_record_load_store): New function.
8085 (aarch64_record_data_proc_simd_fp): New function.
8086 (aarch64_record_asimd_load_store): New function.
8087 (aarch64_record_decode_insn_handler): New function.
8088 (deallocate_reg_mem): New function.
8089 (aarch64_process_record): New function.
8090 * aarch64-tdep.h (struct gdbarch_tdep) <aarch64_syscall_record>:
8091 New field.
8092 (aarch64_process_record): New extern declaration.
8093 * configure.tgt: Add linux-record.o to gdb_target_obs.
8094 * linux-record.h (struct linux_record_tdep) <arg7>: New field.
8095
8096 2015-05-26 Omair Javaid <omair.javaid@linaro.org>
8097
8098 * NEWS: Add a note on process record-replay support on aarch64*-linux*
8099 targets.
8100
8101 2015-05-26 Martin Galvan <martin.galvan@tallertechnologies.com>
8102
8103 * amd64-tdep.c: Replace in_function_epilogue_p with
8104 stack_frame_destroyed_p throughout.
8105 * arch-utils.c: Ditto.
8106 * arch-utils.h: Ditto.
8107 * arm-tdep.c: Ditto.
8108 * breakpoint.c: Ditto.
8109 * gdbarch.sh: Ditto.
8110 * hppa-tdep.c: Ditto.
8111 * i386-tdep.c: Ditto.
8112 * mips-tdep.c: Ditto.
8113 * nios2-tdep.c: Ditto.
8114 * rs6000-tdep.c: Ditto.
8115 * s390-linux-tdep.c: Ditto.
8116 * score-tdep.c: Ditto.
8117 * sh-tdep.c: Ditto.
8118 * sparc-tdep.c: Ditto.
8119 * sparc-tdep.h: Ditto.
8120 * sparc64-tdep.c: Ditto.
8121 * spu-tdep.c: Ditto.
8122 * tic6x-tdep.c: Ditto.
8123 * tilegx-tdep.c: Ditto.
8124 * xstormy16-tdep.c: Ditto.
8125 * gdbarch.c, gdbarch.h: Re-generated.
8126
8127 2015-05-22 Andrew Burgess <andrew.burgess@embecosm.com>
8128
8129 * NEWS: Mention 'tui enable' and 'tui disable'.
8130 * tui/tui.c (tui_enable_command): New function.
8131 (tui_disable_command): New function.
8132 (_initialize_tui): New function.
8133
8134 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
8135
8136 * tui/tui-regs.c (tui_reg_next_command): Use NULL not 0.
8137
8138 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
8139
8140 * tui/tui-layout.c (tui_set_layout_for_display_command): Ensure
8141 buf_ptr is freed.
8142
8143 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
8144
8145 * tui/tui-layout.c (tui_layout_command): Move call to tui_enable
8146 into ...
8147 (tui_set_layout_for_display_command): ...here, before calling
8148 tui_set_layout. Only set the layout if gdb has not already
8149 entered the TUI_FAILURE state.
8150
8151 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
8152
8153 * tui/tui-layout.c (layout_completer): New function.
8154 (_initialize_tui_layout): Set completer on layout command.
8155
8156 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
8157
8158 * tui/tui-layout.c (tui_set_layout): Remove
8159 tui_register_display_type parameter. Remove all checking of this
8160 parameter, and reindent function. Update header comment.
8161 (tui_set_layout_for_display_command): Rename to...
8162 (tui_set_layout_by_name): ...this, and don't check for different
8163 register class types, don't pass a tui_register_display_type to
8164 tui_set_layout. Update header comment.
8165 (layout_names): Remove register set specific names.
8166 * tui/tui-layout.h (tui_set_layout): Remove
8167 tui_register_display_type parameter.
8168 * tui/tui.c (tui_rl_change_windows): Don't pass a
8169 tui_register_display_type to tui_set_layout.
8170 (tui_rl_delete_other_windows): Likewise.
8171 (tui_enable): Likewise.
8172 * tui/tui-data.h (TUI_FLOAT_REGS_NAME): Remove.
8173 (TUI_FLOAT_REGS_NAME_LOWER): Remove.
8174 (TUI_GENERAL_REGS_NAME): Remove.
8175 (TUI_GENERAL_REGS_NAME_LOWER): Remove.
8176 (TUI_SPECIAL_REGS_NAME): Remove.
8177 (TUI_SPECIAL_REGS_NAME_LOWER): Remove.
8178 (TUI_GENERAL_SPECIAL_REGS_NAME): Remove.
8179 (TUI_GENERAL_SPECIAL_REGS_NAME_LOWER): Remove.
8180 (enum tui_register_display_type): Remove.
8181 (struct tui_layout_def): Remove regs_display_type and
8182 float_regs_display_type fields.
8183 (struct tui_data_info): Remove regs_display_type field.
8184 (tui_layout_command): Use new name for
8185 tui_set_layout_for_display_command.
8186 * tui/tui-data.c (layout_def): Don't initialise removed fields.
8187 (tui_clear_win_detail): Don't initialise removed fields of
8188 win_info.
8189 * tui/tui-regs.c (tui_show_registers): Use new name for
8190 tui_set_layout_for_display_command.
8191 * tui/tui.h (tui_set_layout_for_display_command): Rename
8192 declaration to...
8193 (tui_set_layout_by_name): ...this.
8194 * printcmd.c (display_command): Remove tui related layout call,
8195 and reindent.
8196
8197 2015-05-20 Joel Brobecker <brobecker@adacore.com>
8198
8199 * infrun.c (handle_inferior_event_1): Renames handle_inferior_event.
8200 (handle_inferior_event): New function.
8201
8202 2015-05-20 Joel Brobecker <brobecker@adacore.com>
8203
8204 * ada-lang.c (to_fixed_array_type): Rename local variable
8205 typename into type_name.
8206
8207 2015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
8208
8209 Fix ASAN crash for gdb.compile/compile.exp.
8210 * infcall.c (call_function_by_hand_dummy): Use xstrdup for NAME.
8211
8212 2015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
8213
8214 * compile/compile-c-symbols.c (convert_symbol_sym, gcc_convert_symbol)
8215 (gcc_symbol_address): Change gdb_stdout to gdb_stdlog.
8216 * compile/compile-object-load.c (setup_sections, compile_object_load):
8217 Likewise.
8218 * compile/compile.c (compile_to_object): Likewise.
8219
8220 2015-05-16 Doug Evans <xdje42@gmail.com>
8221
8222 * NEWS: Mention support for unbuffered Guile memory ports.
8223 * scm-ports.c (ioscm_memory_port): Update comments on end, size.
8224 (ioscm_lseek_address): Improve overflow calculation.
8225 (gdbscm_memory_port_fill_input): Add assert.
8226 (gdbscm_memory_port_write): Handle unbuffered ports.
8227 Handle large writes identical to Guile's fport_write.
8228 (gdbscm_memory_port_seek): Fix seeking past end check.
8229 (gdbscm_memory_port_close): Handle closing unbuffered port.
8230 (ioscm_parse_mode_bits): Recognize "0" for unbuffered ports.
8231 (ioscm_init_memory_port): Handle unbuffered ports.
8232 (ioscm_reinit_memory_port): Ditto.
8233 (ioscm_init_memory_port): Update size calculation.
8234 (gdbscm_open_memory): Support zero sized ports.
8235
8236 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
8237
8238 * compile/compile-object-load.c (get_out_value_type): Fix uninitialized
8239 variable compiler warnings.
8240
8241 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
8242
8243 * compile/compile-object-load.c (get_out_value_type): Fix returned type.
8244
8245 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
8246 Phil Muldoon <pmuldoon@redhat.com>
8247
8248 * NEWS (Changes since GDB 7.9): Add compile print.
8249 * compile/compile-c-support.c (add_code_header, add_code_footer)
8250 (c_compute_program): Add COMPILE_I_PRINT_ADDRESS_SCOPE and
8251 COMPILE_I_PRINT_VALUE_SCOPE.
8252 * compile/compile-internal.h (COMPILE_I_PRINT_OUT_ARG_TYPE)
8253 (COMPILE_I_PRINT_OUT_ARG, COMPILE_I_EXPR_VAL, COMPILE_I_EXPR_PTR_TYPE):
8254 New.
8255 * compile/compile-object-load.c: Include block.h.
8256 (get_out_value_type): New function.
8257 (compile_object_load): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
8258 COMPILE_I_PRINT_VALUE_SCOPE. Set compile_module's OUT_VALUE_ADDR and
8259 OUT_VALUE_TYPE.
8260 * compile/compile-object-load.h (struct compile_module): Add fields
8261 out_value_addr and out_value_type.
8262 * compile/compile-object-run.c: Include valprint.h and compile.h.
8263 (struct do_module_cleanup): Add fields out_value_addr and
8264 out_value_type.
8265 (do_module_cleanup): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
8266 COMPILE_I_PRINT_VALUE_SCOPE.
8267 (compile_object_run): Propagate out_value_addr and out_value_type.
8268 Pass OUT_VALUE_ADDR.
8269 * compile/compile.c: Include valprint.h.
8270 (compile_print_value, compile_print_command): New functions.
8271 (eval_compile_command): Handle failed COMPILE_I_PRINT_ADDRESS_SCOPE.
8272 (_initialize_compile): Update compile code help text. Install
8273 compile_print_command.
8274 * compile/compile.h (compile_print_value): New prototype.
8275 * defs.h (enum compile_i_scope_types): Add
8276 COMPILE_I_PRINT_ADDRESS_SCOPE and COMPILE_I_PRINT_VALUE_SCOPE.
8277
8278 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
8279
8280 * compile/compile-object-load.c (get_regs_type): Add parameter func_sym.
8281 Rely on its parameter count.
8282 (compile_object_load): Replace lookup_minimal_symbol_text by
8283 lookup_global_symbol_from_objfile. Verify FUNC_SYM. Set it in the
8284 return value.
8285 * compile/compile-object-load.h (struct compile_module): Replace
8286 func_addr by func_sym.
8287 * compile/compile-object-run.c: Include block.h.
8288 (compile_object_run): Reset module variable after it is freed. Use
8289 FUNC_SYM instead of FUNC_ADDR. Rely on it.
8290
8291 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
8292
8293 * compile/compile-c-support.c (print_one_macro): Use #ifndef.
8294 (generate_register_struct): Use __gdb_uintptr for TYPE_CODE_PTR.
8295 (c_compute_program): Call generate_register_struct after typedefs.
8296 * compile/compile-loc2c.c (push, pushf_register_address)
8297 (pushf_register): Cast to GCC_UINTPTR.
8298 (do_compile_dwarf_expr_to_c): Use unused attribute. Add space after
8299 type. Use GCC_UINTPTR instead of void *. Remove excessive cast.
8300 (compile_dwarf_expr_to_c): Use GCC_UINTPTR instead of void *.
8301 * compile/compile.c (_initialize_compile): Enable warnings for
8302 COMPILE_ARGS.
8303
8304 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
8305
8306 * cli/cli-script.c (execute_control_command): Update
8307 eval_compile_command caller.
8308 * compile/compile-object-load.c (compile_object_load): Add parameters
8309 scope and scope_data. Set them.
8310 * compile/compile-object-load.h (struct compile_module): Add fields
8311 scope and scope_data.
8312 (compile_object_load): Add parameters scope and scope_data.
8313 * compile/compile-object-run.c (struct do_module_cleanup): Add fields
8314 scope and scope_data.
8315 (compile_object_run): Propagate the fields scope and scope_data.
8316 * compile/compile.c (compile_file_command, compile_code_command):
8317 Update eval_compile_command callers.
8318 (eval_compile_command): Add parameter scope_data. Pass it plus scope.
8319 * compile/compile.h (eval_compile_command): Add parameter scope_data.
8320 * defs.h (struct command_line): Add field scope_data.
8321
8322 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
8323
8324 * printcmd.c (struct format_data): Move it to valprint.h.
8325 (print_command_parse_format, print_value): New functions from ...
8326 (print_command_1): ... here. Call them.
8327 * valprint.h (struct format_data): Move it here from printcmd.c.
8328 (print_command_parse_format, print_value): New declarations.
8329
8330 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
8331
8332 * compile/compile-object-load.c (compile_object_load): Add
8333 COMPILE_DEBUG message.
8334
8335 2015-05-15 Jerome Guitton <guitton@adacore.com>
8336
8337 * ada-lang.c (ada_value_ptr_subscript): Use enum position of
8338 index to get element instead of enum value.
8339 (ada_value_slice_from_ptr, ada_value_slice): Use enum position
8340 of index to compute length, but enum values to compute bounds.
8341 (ada_array_length): Use enum position of index instead of enum value.
8342 (pos_atr): Move position computation to...
8343 (ada_evaluate_subexp): Use enum values to compute bounds.
8344 * gdbtypes.c (discrete_position): ...this new function.
8345 * gdbtypes.h (discrete_position): New function declaration.
8346 * valprint.c (val_print_array_elements): Call discrete_position
8347 to handle array indexed by non-contiguous enumeration types.
8348
8349 2015-05-15 Jerome Guitton <guitton@adacore.com>
8350
8351 * ada-lang.c (find_parallel_type_by_descriptive_type):
8352 Go through typedefs during lookup.
8353 (to_fixed_array_type): Add support for non-bit packed arrays
8354 as variable-length fields.
8355
8356 2015-05-15 Pedro Alves <palves@redhat.com>
8357 Simon Marchi <simon.marchi@ericsson.com>
8358
8359 * event-loop.c (gdb_notifier) <next_file_handler,
8360 next_poll_fds_index>: New fields.
8361 (get_next_file_handler_to_handle_and_advance): New function.
8362 (delete_file_handler): If deleting the next file handler to
8363 handle, advance to the next file handler.
8364 (gdb_wait_for_event): Bail early if no event fired. Poll file
8365 handlers in round-robin fashion.
8366
8367 2015-05-15 Pedro Alves <palves@redhat.com>
8368
8369 * linux-tdep.c (linux_find_memory_regions_full): Rename local
8370 'private' to 'priv'.
8371
8372 2015-05-15 Pedro Alves <palves@redhat.com>
8373
8374 * nat/linux-nat.h: Include "target/waitstatus.h".
8375
8376 2015-05-15 Yuanhui Zhang <asmwarrior@gmail.com>
8377
8378 * python/py-unwind.c (struct reg_info): Move out of ...
8379 (struct cached_frame_info): ... this scope.
8380 (pending_frame_object_type, unwind_info_object_type): Make extern.
8381
8382 2015-05-15 Joel Brobecker <brobecker@adacore.com>
8383
8384 * ada-lang.c (ada_value_primitive_packed_val): Make sure
8385 accumSize is never negative.
8386
8387 2015-05-14 Patrick Palka <patrick@parcs.ath.cx>
8388
8389 * tui/tui-command.c: Remove include of <ctype.h>.
8390 (tui_dispatch_ctrl_char): Remove workaround for xterm terminals.
8391
8392 2015-05-13 Martin Galvan <martin.galvan@tallertechnologies.com>
8393
8394 * dwarf2read.c (die_needs_namespace): Return 1 for
8395 DW_TAG_inlined_subroutine.
8396
8397 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8398
8399 * regcache.c (regcache_cpy_no_passthrough): New declaration.
8400 (regcache_cpy_no_passthrough): Make it static, add function comment.
8401 * regcache.h (regcache_dup, regcache_cpy): Reduce/update their comment.
8402 (regcache_cpy_no_passthrough): Remove declaration.
8403
8404 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8405
8406 * gdbthread.h (struct thread_control_state): Update comment for
8407 proceed_to_finish.
8408 * infcall.c (run_inferior_call): Update comment about
8409 proceed_to_finish.
8410 * infcmd.c (get_return_value): Update comment about stop_registers.
8411 (finish_forward): Update comment about proceed_to_finish.
8412 * infrun.c (stop_registers): Remove.
8413 (clear_proceed_status, normal_stop): Remove stop_registers handling.
8414 * infrun.h (stop_registers): Remove.
8415
8416 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8417
8418 * infcall.c (struct dummy_frame_context_saver)
8419 (dummy_frame_context_saver_data_free, dummy_frame_context_saver_dtor)
8420 (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
8421 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
8422 New.
8423 (call_function_by_hand_dummy): Move discard_cleanups of
8424 inf_status_cleanup before dummy_frame_push. Call
8425 dummy_frame_context_saver_setup and prepare context_saver_cleanup.
8426 Use dummy_frame_context_saver_get_regs instead of stop_registers.
8427 * infcall.h (struct dummy_frame_context_saver)
8428 (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
8429 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
8430 New declarations.
8431 * infcmd.c: Include infcall.h.
8432 (get_return_value): Add parameter ctx_saver, use it instead of
8433 stop_registers.
8434 (print_return_value): Add parameter ctx_saver, pass it.
8435 (struct finish_command_continuation_args): Add field ctx_saver.
8436 (finish_command_continuation): Update print_return_value caller.
8437 (finish_command_continuation_free_arg): Free also ctx_saver.
8438 (finish_forward): Call dummy_frame_context_saver_setup.
8439 * inferior.h (struct dummy_frame_context_saver): New declaration.
8440 (get_return_value): Add parameter ctx_saver.
8441 * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Update
8442 get_return_value caller.
8443
8444 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8445
8446 * dummy-frame.c (struct dummy_frame_dtor_list): New.
8447 (struct dummy_frame): Replace dtor and dtor_data by dtor_list.
8448 (remove_dummy_frame): Process dtor_list.
8449 (pop_dummy_frame): Process dtor_list.
8450 (register_dummy_frame_dtor): Maintain dtor_list.
8451 (find_dummy_frame_dtor): Handle dtor_list.
8452 * dummy-frame.h (register_dummy_frame_dtor, find_dummy_frame_dtor):
8453 Update comments.
8454
8455 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8456
8457 * compile/compile-object-run.c (do_module_cleanup): Add parameter
8458 registers_valid.
8459 (compile_object_run): Update do_module_cleanup caller.
8460 * dummy-frame.c: Include infcall.h.
8461 (struct dummy_frame): Update dtor comment.
8462 (remove_dummy_frame): Call dtor.
8463 (pop_dummy_frame): Update dtor caller.
8464 * dummy-frame.h (dummy_frame_dtor_ftype): Add parameter
8465 registers_valid.
8466
8467 2015-05-13 Joel Brobecker <brobecker@adacore.com>
8468
8469 GDB 7.9.1 released.
8470
8471 2015-05-13 Joel Brobecker <brobecker@adacore.com>
8472
8473 * NEWS: Create "Changes in GDB 7.9.1" section. Move news about
8474 Xmethods now being able to specify a result type to that new
8475 sectioin.
8476
8477 2015-05-13 Patrick Palka <patrick@parcs.ath.cx>
8478
8479 * tui/tui-win.c (tui_async_resize_screen): Clear win_resized
8480 first before resizing the window.
8481 * tui/tui.c (tui_enable): Likewise.
8482
8483 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8484
8485 * dummy-frame.c (struct dummy_frame): Use proper typedef for dtor.
8486 * dummy-frame.h (dummy_frame_dtor_ftype): Add its comment.
8487 * infcall.c (call_function_by_hand_dummy): Use proper typedef for
8488 dummy_dtor parameter.
8489 * infcall.h: Include dummy-frame.h.
8490 (call_function_by_hand_dummy_dtor_ftype): Remove.
8491 (call_function_by_hand_dummy): Use proper typedef for dummy_dtor
8492 parameter.
8493
8494 2015-05-13 Patrick Palka <patrick@parcs.ath.cx>
8495
8496 PR gdb/17820
8497 * top.c (history_size_setshow_var): Change type to signed.
8498 Initialize to -2. Update documentation.
8499 (set_readline_history_size): Define.
8500 (set_history_size_command): Use it. Remove logic for handling
8501 out-of-range sizes.
8502 (init_history): Use set_readline_history_size(). Test for a
8503 value of -2 instead of 0 when determining whether to set a
8504 default history size.
8505 (init_main): Decode the argument of the "size" command as a
8506 zuinteger_unlimited.
8507
8508 2015-05-12 Doug Evans <dje@google.com>
8509
8510 * dwarf2read.c (struct file_entry): Tweak comments.
8511 (get_debug_line_section): Tweak comments.
8512
8513 2015-05-12 Don Breazeal <donb@codesourcery.com>
8514
8515 * NEWS: Announce fork support in the RSP and support
8516 for fork debugging in extended mode.
8517
8518 2015-05-12 Don Breazeal <donb@codesourcery.com>
8519
8520 * remote.c (remote_insert_fork_catchpoint): New function.
8521 (remote_remove_fork_catchpoint): New function.
8522 (remote_insert_vfork_catchpoint): New function.
8523 (remote_remove_vfork_catchpoint): New function.
8524 (pending_fork_parent_callback): New function.
8525 (remove_new_fork_child): New function.
8526 (remote_update_thread_list): Call remote_notif_get_pending_events
8527 and remove_new_fork_child.
8528 (extended_remote_kill): Kill fork child when killing the
8529 parent before follow_fork completes.
8530 (init_extended_remote_ops): Initialize target vector with
8531 new fork catchpoint functions.
8532
8533 2015-05-12 Don Breazeal <donb@codesourcery.com>
8534
8535 * remote.c (remove_vfork_event_p): New function.
8536 (remote_follow_fork): Add vfork event type to event checking.
8537 (remote_parse_stop_reply): New stop reasons "vfork" and
8538 "vforkdone" for RSP 'T' Stop Reply Packet.
8539
8540 2015-05-12 Don Breazeal <donb@codesourcery.com>
8541
8542 * linux-nat.c (linux_nat_ptrace_options): New function.
8543 (linux_init_ptrace, wait_lwp, linux_nat_filter_event):
8544 Call linux_nat_ptrace_options and use different argument to
8545 linux_enable_event_reporting.
8546 (_initialize_linux_nat): Delete call to
8547 linux_ptrace_set_additional_flags.
8548 * nat/linux-ptrace.c (current_ptrace_options): Rename to
8549 supported_ptrace_options.
8550 (additional_flags): Delete variable.
8551 (linux_check_ptrace_features): Use supported_ptrace_options.
8552 (linux_test_for_tracesysgood, linux_test_for_tracefork):
8553 Likewise, and remove additional_flags check.
8554 (linux_enable_event_reporting): Change 'attached' argument to
8555 'options'. Use supported_ptrace_options.
8556 (ptrace_supports_feature): Change comment. Use
8557 supported_ptrace_options.
8558 (linux_ptrace_set_additional_flags): Delete function.
8559 * nat/linux-ptrace.h (linux_ptrace_set_additional_flags):
8560 Delete function prototype.
8561 * remote.c (remote_fork_event_p): New function.
8562 (remote_detach_pid): New function.
8563 (remote_detach_1): Call remote_detach_pid, don't mourn inferior
8564 if doing detach-on-fork.
8565 (remote_follow_fork): New function.
8566 (remote_parse_stop_reply): Handle new "T" stop reason "fork".
8567 (remote_pid_to_str): Print "process" strings for pid/0/0 ptids.
8568 (init_extended_remote_ops): Initialize to_follow_fork.
8569
8570 2015-05-12 Don Breazeal <donb@codesourcery.com>
8571
8572 * nat/linux-ptrace.c (linux_check_ptrace_features): Change
8573 from static to extern.
8574 * nat/linux-ptrace.h (linux_check_ptrace_features): Declare.
8575 * remote.c (anonymous enum): <PACKET_fork_event_feature,
8576 * PACKET_vfork_event_feature>: New enumeration constants.
8577 (remote_protocol_features): Add table entries for new packets.
8578 (remote_query_supported): Add new feature queries to qSupported
8579 packet.
8580
8581 2015-05-12 Gary Benson <gbenson@redhat.com>
8582
8583 * remote.c (remote_add_inferior): Call exec_file_locate_attach
8584 for fake PIDs as well as real ones.
8585 (remote_pid_to_exec_file): Send empty annex if PID is fake.
8586
8587 2015-05-09 Siva Chandra Reddy <sivachandra@google.com>
8588
8589 * NEWS (Python Scripting): Mention the new gdb.Value methods.
8590 * python/py-value.c (valpy_reference_value): New function.
8591 (valpy_const_value): Likewise.
8592 (value_object_methods): Add new methods.
8593 * value.c (make_cv_value): New function.
8594 * value.h (make_cv_value): Declare.
8595
8596 2015-05-08 Yao Qi <yao@codesourcery.com>
8597 Sandra Loosemore <sandra@codesourcery.com>
8598
8599 * dwarf2read.c (setup_type_unit_groups): Do NULL pointer check
8600 to 'lh->include_dirs' before accessing to it.
8601 (psymtab_include_file_name): Likewise.
8602 (dwarf_decode_lines_1): Likewise.
8603 (dwarf_decode_lines): Likewise.
8604 (file_file_name): Likewise.
8605
8606 2015-05-08 Sandra Loosemore <sandra@codesourcery.com>
8607
8608 * nios2-linux-tdep.c (NIOS2_SIGRETURN_TRAMP_ADDR): Define.
8609 (NIOS2_SIGRETURN_REGSAVE_OFFSET): Define.
8610 (nios2_linux_rt_sigreturn_init): Adjust base address of
8611 register save area.
8612
8613 2015-05-08 Sandra Loosemore <sandra@codesourcery.com>
8614
8615 * nios2-tdep.c (nios2_breakpoint_from_pc): Revert to using
8616 "trap 31" as the breakpoint instruction on all targets.
8617
8618 2015-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8619
8620 * infcmd.c (print_return_value): Remove unused declaration.
8621
8622 2015-05-08 Joel Brobecker <brobecker@adacore.com>
8623
8624 * dwarf2read.c (attr_to_dynamic_prop)
8625 <DW_AT_data_member_location>: Use read_type_die isntead of
8626 get_die_type.
8627
8628 2015-05-08 Joel Brobecker <brobecker@adacore.com>
8629
8630 * ada-lang.c (ada_convert_actual): Add handling of formals
8631 passed inside an aligner type.
8632
8633 2015-05-08 Joel Brobecker <brobecker@adacore.com>
8634
8635 * copyright.py (NOT_FSF_LIST): Remove sim/erc32 entries.
8636
8637 2015-05-08 Siva Chandra Reddy <sivachandra@google.com>
8638
8639 PR python/18291
8640 * python/lib/gdb/command/xmethods.py (print_xm_info): Fix typo.
8641 Print xmethod matcher status.
8642
8643 2015-05-08 Andreas Arnez <arnez@linux.vnet.ibm.com>
8644
8645 * s390-linux-nat.c (fill_gregset): Avoid relying on the PSWA
8646 register in the regcache when treating the PSWM register, and vice
8647 versa.
8648
8649 2015-05-07 Gary Benson <gbenson@redhat.com>
8650
8651 * linux-thread-db.c (struct thread_db_info)
8652 <td_ta_map_id2thr_p>: Remove field.
8653 (try_thread_db_load_1): Remove initialization for the above.
8654
8655 2015-05-07 Gary Benson <gbenson@redhat.com>
8656
8657 * linux-thread-db.c (struct thread_db_info)
8658 <td_thr_validate_p>: Remove field.
8659 (try_thread_db_load_1): Remove initialization for the above.
8660
8661 2015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
8662
8663 * compile/compile-object-load.c (compile_object_load): Support
8664 mst_text_gnu_ifunc.
8665
8666 2015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
8667
8668 * compile/compile.c (compile_to_object): Make the cmd_string parameter
8669 const. Use new variables for the const compatibility.
8670 (eval_compile_command): Make the cmd_string parameter const.
8671 * compile/compile.h (eval_compile_command): Make the cmd_string
8672 parameter const.
8673
8674 2015-05-06 Joel Brobecker <brobecker@adacore.com>
8675
8676 * defs.h (deprecated_init_ui_hook): Delete. Remove associated
8677 comment.
8678 * top.c (deprecated_init_ui_hook): Delete.
8679 (gdb_init): Remove handling of deprecated_init_ui_hook.
8680 * interps.c (clear_interpreter_hooks): Remove handling of
8681 deprecated_init_ui_hook.
8682 * main.c (captured_main): Update comment.
8683
8684 2015-05-06 Joel Brobecker <brobecker@adacore.com>
8685
8686 * solib.c (_initialize_solib): Add "info dll" alias creation.
8687 * windows-nat.c (set_windows_aliases): Delete.
8688 (_initialize_windows_nat): Remove deprecated_init_ui_hook
8689 assignment.
8690 * NEWS: Add news entry about "info dll" now being available
8691 on all platforms.
8692
8693 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8694
8695 * ada-lang.c (value_assign_to_component): Reformat and improve
8696 documentation. Remove all trailing spaces.
8697
8698 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8699
8700 * inline-frame.c (inline_frame_sniffer, skip_inline_frames):
8701 Stop counting inlined frames as soon as an out-of-line function
8702 is found.
8703
8704 2014-05-05 Pierre-Marie de Rodat <derodat@adacore.com>
8705
8706 * dwarf2read.c (inherit_abstract_dies): Skip
8707 DW_TAG_GNU_call_site dies while inheriting children of an
8708 abstract DIE into a scope.
8709 (read_lexical_block_scope): Inherit abstract DIE's for
8710 lexical scopes.
8711
8712 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8713
8714 * ada-valprint.c (val_print_packed_array_elements): Delete
8715 variable "len". Add a type-length check when comparing two
8716 consecutive elements of the array. Use the element's actual
8717 length in call to value_contents_eq.
8718 * ada-lang.c (ada_value_primitive_packed_val): Always return
8719 a value whose type has been resolved.
8720
8721 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8722
8723 * ada-lang.c (ada_value_primitive_packed_val): Recompute
8724 BIT_SIZE and LEN if the size of the resolved type is smaller
8725 than BIT_SIZE * HOST_CHAR_BIT.
8726
8727 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8728
8729 * ada-lang.c (ada_value_primitive_packed_val): Use a more
8730 correct address in call to value_at. Adjust call to
8731 value_address accordingly.
8732
8733 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8734
8735 * ada-valprint.c (ada_val_print_1): Resolve TYPE before trying
8736 to print it.
8737
8738 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8739
8740 * dwarf2loc.h (struct property_addr_info): Add "valaddr" field.
8741 * dwarf2loc.c (dwarf2_evaluate_property): Add handling of
8742 pinfo->valaddr.
8743 * gdbtypes.h (resolve_dynamic_type): Add "valaddr" parameter.
8744 * gdbtypes.c (resolve_dynamic_struct): Set pinfo.valaddr.
8745 (resolve_dynamic_type_internal): Set pinfo.valaddr.
8746 Add handling of addr_stack->valaddr.
8747 (resolve_dynamic_type): Add "valaddr" parameter.
8748 Set pinfo.valaddr field.
8749 * ada-lang.c (ada_discrete_type_high_bound): Update call to
8750 resolve_dynamic_type.
8751 (ada_discrete_type_low_bound): Likewise.
8752 * findvar.c (default_read_var_value): Likewise.
8753 * value.c (value_from_contents_and_address): Likewise.
8754
8755 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8756
8757 * gdbtypes.c (resolve_dynamic_array): Use
8758 create_array_type_with_stride instead of create_array_type.
8759
8760 2015-04-30 DJ Delorie <dj@redhat.com>
8761
8762 * rl78-tdep.c (rl78_analyze_prologue): Pass RL78_ISA_DEFAULT to
8763 rl78_decode_opcode
8764
8765 2015-04-29 Doug Evans <dje@google.com>
8766
8767 PR python/18285
8768 * NEWS: Document new gdb.XMethodWorker.get_result_type method.
8769 * eval.c (evaluate_subexp_standard) <OP_FUNCALL>: Handle
8770 EVAL_AVOID_SIDE_EFFECTS for xmethods.
8771 * extension-priv.h (struct extension_language_ops)
8772 <get_xmethod_result_type>: New member.
8773 * extension.c (get_xmethod_result_type): New function.
8774 * extension.h (get_xmethod_result_type): Declare.
8775 * python/py-xmethods.c (get_result_type_method_name): New static
8776 global.
8777 (py_get_result_type_method_name): Ditto.
8778 (gdbpy_get_xmethod_result_type): New function.
8779 (gdbpy_initialize_xmethods): Initialize py_get_result_type_method_name.
8780 * python/python-internal.h (gdbpy_get_xmethod_result_type): Declare.
8781 * python/python.c (python_extension_ops): Add
8782 gdbpy_get_xmethod_result_type.
8783 * python/lib/gdb/xmethod.py (XMethodWorker): Add get_result_type.
8784 * valarith.c (value_x_binop): Handle EVAL_AVOID_SIDE_EFFECTS for
8785 xmethods.
8786 (value_x_unop): Ditto.
8787 * value.c (result_type_of_xmethod): New function.
8788 * value.h (result_type_of_xmethod): Declare.
8789
8790 2015-04-29 Gary Benson <gbenson@redhat.com>
8791
8792 * solib.c (solib_find_1): Allow fd argument to be NULL.
8793 (exec_file_find): Update comment.
8794 (solib_find): Likewise.
8795 * exec.c (exec_file_locate_attach): Use NULL as fd
8796 argument to exec_file_find to avoid having to close
8797 the opened file.
8798 * infrun.c (follow_exec): Likewise.
8799
8800 2015-04-28 Doug Evans <dje@google.com>
8801
8802 PR python/18299
8803 * python/lib/gdb/printing.py (register_pretty_printer): Handle
8804 name or __name__ attributes. Handle gdb module as first argument.
8805
8806 2015-04-28 Doug Evans <dje@google.com>
8807
8808 PR python/18089
8809 * python/py-prettyprint.c (print_children): Verify result of children
8810 iterator. Provide better error message.
8811 * python/python-internal..h (gdbpy_print_python_errors_p): Declare.
8812 * python/python.c (gdbpy_print_python_errors_p): New function.
8813
8814 2015-04-28 Doug Evans <dje@google.com>
8815
8816 * gdbtypes.h (struct cplus_struct_type) <n_baseclasses>: Fix comment.
8817
8818 2015-04-28 Sasha Smundak <asmundak@google.com>
8819
8820 * NEWS: Mention gdb.Type.optimized_out method.
8821 * python/py-type.c (typy_optimized_out): New function.
8822
8823 2015-04-28 John Baldwin <jhb@FreeBSD.org>
8824
8825 * fbsd-nat.c: Include "gdb_wait.h" instead of <sys/wait.h>.
8826
8827 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8828
8829 * utils.c (init_page_info): Set rl_catch_sigwinch to zero.
8830 (initialize_utils): Move call of init_page_info() to ...
8831 * top.c (gdb_init): ... here.
8832
8833 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8834
8835 * tui/tui-win.c (tui_sigwinch_handler): Remove now-stale comment.
8836 (tui_sigwinch_handler): Still update our idea of
8837 the terminal's width and height even when TUI is not active.
8838
8839 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8840
8841 * utils.h (set_screen_width_and_height): Declare.
8842 * utils.c (set_screen_width_and_height): Define.
8843 * tui/tui-win.c (tui_update_gdb_sizes): Use it.
8844
8845 2015-04-28 Gary Benson <gbenson@redhat.com>
8846
8847 * infrun.c (solist.h): New include.
8848 (follow_exec): Use exec_file_find to prefix execd_pathname
8849 with gdb_sysroot.
8850
8851 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8852
8853 * tui/tui-source.c (tui_set_source_content): Avoid calling
8854 strcpy() when offset is 0.
8855
8856 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8857
8858 PR gdb/18155
8859 * tui/tui-data.c (tui_free_window): Don't free the locator
8860 window when passed an SRC_WIN or a DISASSEM_WIN.
8861
8862 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8863
8864 * tui/tui-data.h (struct tui_win_element): Forward-declare.
8865 (tui_win_content): Move declaration.
8866 (struct tui_gen_win_info): Give 'content' field the
8867 type tui_win_content.
8868 * tui/tui-data.c (init_content_element): Remove redundant and
8869 erroneous casts.
8870 (tui_add_content_elements): Remove erroneous cast.
8871 * tui/tui-disasm.c (tui_set_disassem_content): Remove redundant
8872 casts.
8873 (tui_get_begin_asm_address): Likewise.
8874 * tui/tui-regs.c (tui_show_registers): Likewise.
8875 (tui_show_register_group): Likewise.
8876 (tui_display_registers_from): Likewise.
8877 (tui_check_register_values): Likewise.
8878 * tui/tui-source.c (tui_set_source_content): Likewise.
8879 (tui_set_source_content_nil): Likewise.
8880 (tui_source_is_displayed): Likewise.
8881 * tui/tui-stack.c (tui_show_locator_content): Likewise.
8882 (tui_set_locator_fullname): Likewise.
8883 (tui_set_locator_info): Likewise.
8884 (tui_show_frame_info): Likewise.
8885 * tui/tui-winsource.c (tui_clear_source_content): Likewise.
8886 (tui_show_source_line): Likewise.
8887 (tui_horizontal_source_scroll): Likewise.
8888 (tui_update_breakpoint_info): Likewise.
8889 (tui_set_exec_info_content): Likewise.
8890 (tui_show_exec_info_content): Likewise.
8891 (tui_alloc_source_buffer): Likewise.
8892 (tui_line_is_displayed): Likewise.
8893 (tui_addr_is_displayed): Likewise.
8894
8895 2015-04-27 John Baldwin <jhb@FreeBSD.org>
8896
8897 * fbsd-nat.c: (fbsd_wait) [PL_FLAG_EXEC]: Report TARGET_WAITKIND_EXECD
8898 event if PL_FLAG_EXEC is set.
8899 [PL_FLAG_EXEC] (fbsd_insert_exec_catchpoint): New function.
8900 [PL_FLAG_EXEC] (fbsd_remove_exec_catchpoint): New function.
8901 (fbsd_nat_add_target) [PL_FLAG_EXEC]: Set
8902 "to_insert_exec_catchpoint" to "fbsd_insert_exec_catchpoint".
8903 Set "to_remove_exec_catchpoint" to "fbsd_remove_exec_catchpoint".
8904
8905 2015-04-27 John Baldwin <jhb@FreeBSD.org>
8906
8907 * fbsd-nat.c: [PT_LWPINFO] New variable super_wait.
8908 [TDP_RFPPWAIT] New variable fbsd_pending_children.
8909 [TDP_RFPPWAIT] (fbsd_remember_child): New function.
8910 [TDP_RFPPWAIT] (fbsd_is_child_pending): New function.
8911 [TDP_RFPPWAIT] (fbsd_fetch_kinfo_proc): New function.
8912 [PT_LWPINFO] (fbsd_wait): New function.
8913 [TDP_RFPPWAIT] (fbsd_follow_fork): New function.
8914 [TDP_RFPPWAIT] (fbsd_insert_fork_catchpoint): New function.
8915 [TDP_RFPPWAIT] (fbsd_remove_fork_catchpoint): New function.
8916 [TDP_RFPPWAIT] (fbsd_insert_vfork_catchpoint): New function.
8917 [TDP_RFPPWAIT] (fbsd_remove_vfork_catchpoint): New function.
8918 [TDP_RFPPWAIT] (fbsd_enable_follow_fork): New function.
8919 [TDP_RFPPWAIT] (fbsd_post_startup_inferior): New function.
8920 [TDP_RFPPWAIT] (fbsd_post_attach): New function.
8921 (fbsd_nat_add_target) [PT_LWPINFO] Set "to_wait" to
8922 "fbsd_wait".
8923 [TDP_RFPPWAIT] Set "to_follow_fork" to "fbsd_follow_fork".
8924 Set "to_insert_fork_catchpoint" to "fbsd_insert_fork_catchpoint".
8925 Set "to_remove_fork_catchpoint" to "fbsd_remove_fork_catchpoint".
8926 Set "to_insert_vfork_catchpoint" to "fbsd_insert_vfork_catchpoint".
8927 Set "to_remove_vfork_catchpoint" to "fbsd_remove_vfork_catchpoint".
8928 Set "to_post_startup_inferior" to "fbsd_post_startup_inferior".
8929 Set "to_post_attach" to "fbsd_post_attach".
8930
8931 2015-04-27 John Baldwin <jhb@FreeBSD.org>
8932
8933 * fbsd-nat.c (fbsd_pid_to_exec_file): Mark static.
8934 (fbsd_find_memory_regions): Mark static.
8935 (fbsd_nat_add_target): New function.
8936 * fbsd-nat.h: Export fbsd_nat_add_target and remove prototypes for
8937 fbsd_pid_to_exec_file and fbsd_find_memory_regions.
8938 * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Use fbsd_nat_add_target.
8939 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Likewise.
8940 * ppcfbsd-nat.c (_initialize_ppcfbsd_nat): Likewise.
8941 * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Likewise.
8942
8943 2015-04-27 Gary Benson <gbenson@redhat.com>
8944
8945 * objfiles.c (allocate_objfile): Do not attempt to expand name
8946 if name is a "target:" filename.
8947 * auto-load.c (load_auto_scripts_for_objfile): Do not attempt
8948 to load auto-load scripts for objfiles with "target:" filenames.
8949
8950 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8951
8952 * s390-linux-tdep.c: Include "elf/s390.h" and "elf-bfd.h".
8953 (enum s390_vector_abi_kind): New enum.
8954 (struct gdbarch_tdep)<vector_abi>: New field.
8955 (s390_effective_inner_type): Add parameter min_size. Stop
8956 unwrapping if the inner type is smaller than min_size.
8957 (s390_function_arg_float): Adjust call to
8958 s390_effective_inner_type.
8959 (s390_function_arg_vector): New function.
8960 (s390_function_arg_integer): Adjust comment.
8961 (struct s390_arg_state)<vr>: New field.
8962 (s390_handle_arg): Add parameter 'is_unnamed'. Pass vector
8963 arguments according to vector ABI when appropriate.
8964 (s390_push_dummy_call): Initialize the argument state's field
8965 'vr'. Adjust calls to s390_handle_arg.
8966 (s390_register_return_value): Handle vector return values.
8967 (s390_return_value): Apply the "register" return value convention
8968 to a vector when appropriate.
8969 (s390_gdbarch_init): Initialize tdep->vector_abi.
8970 * NEWS: Announce S390 vector ABI support.
8971
8972 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8973
8974 * s390-linux-tdep.c (s390_return_value_convention): Remove
8975 function. Inline its logic...
8976 (s390_return_value): ...here. Instead, move the handling of the
8977 "register" return value convention...
8978 (s390_register_return_value): ...here. New function.
8979
8980 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8981
8982 * s390-linux-tdep.c
8983 (is_float_singleton): Remove function. Move the "singleton" part
8984 of the logic...
8985 (s390_effective_inner_type): ...here. New function.
8986 (is_float_like): Remove function. Inline its logic...
8987 (s390_function_arg_float): ...here.
8988 (is_pointer_like, is_integer_like, is_struct_like): Remove
8989 functions. Inline their logic...
8990 (s390_function_arg_integer): ...here.
8991 (s390_function_arg_pass_by_reference): Remove function.
8992 (extend_simple_arg): Remove function.
8993 (alignment_of): Remove function.
8994 (struct s390_arg_state): New structure.
8995 (s390_handle_arg): New function.
8996 (s390_push_dummy_call): Move parameter placement logic to the new
8997 function s390_handle_arg. Call it for calculating the stack area
8998 sizes first, and again for actually writing the parameters.
8999
9000 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
9001
9002 * s390-linux-tdep.c (is_power_of_two): Add comment. Return
9003 false if the argument is zero.
9004
9005 2015-04-27 Pierre-Marie de Rodat <derodat@adacore.com>
9006
9007 * ada-lang.c (template_to_static_fixed_type): Return input type
9008 when it is already fixed. Cache the input type itself when not
9009 creating a static fixed copy. Make it explicit that we never
9010 molestate the input type.
9011 * gdbtypes.c (resolve_dynamic_struct): Reset the
9012 TYPE_TARGET_TYPE field for resolved copies.
9013
9014 2015-04-27 Joel Brobecker <brobecker@adacore.com>
9015
9016 * ada-lang.c (ada_is_tagged_type): Add call to ada_check_typedef.
9017 (ada_lookup_struct_elt_type): Remove calls to ada_check_typedef.
9018 (template_to_static_fixed_type): Call ada_check_typedef only
9019 when necessary.
9020
9021 2015-04-24 Andrew Burgess <andrew.burgess@embecosm.com>
9022
9023 * cli/cli-dump.c (srec_dump_command): Add internationalization
9024 mark ups.
9025 (ihex_dump_command): Likewise.
9026 (tekhex_dump_command): Likewise.
9027 (binary_dump_command): Likewise.
9028 (binary_append_command): Likewise.
9029
9030 2015-04-24 Andrew Burgess <andrew.burgess@embecosm.com>
9031
9032 * cli/cli-dump.c (verilog_cmdlist): New variable.
9033 (dump_verilog_memory): New function.
9034 (dump_verilog_value): New function.
9035 (verilog_dump_command): New function.
9036 (_initialize_cli_dump): Add new commands to support verilog dump
9037 format.
9038 * NEWS: Add entry for "dump verilog".
9039
9040 2015-04-24 Pierre-Marie de Rodat <derodat@adacore.com>
9041
9042 * gdbtypes.c (print_gnat_stuff): Do not recurse on the
9043 descriptive type when there is none.
9044
9045 2015-04-23 Patrick Palka <patrick@parcs.ath.cx>
9046
9047 * tui/tui-win.c (tui_async_resize_screen): Call
9048 rl_resize_terminal().
9049
9050 2015-04-22 Jon Turney <jon.turney@dronecode.org.uk>
9051
9052 * windows-nat.c (handle_output_debug_string): Don't change
9053 current_event.dwThreadId.
9054 (get_windows_debug_event): Use thread_id, rather than relying on
9055 current_event.dwThreadId being changed.
9056
9057 2015-04-22 Jon Turney <jon.turney@dronecode.org.uk>
9058
9059 * windows-nat.c (windows_continue): Report an error if
9060 ContinueDebugEvent() fails.
9061
9062 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
9063
9064 * windows-nat.c (windows_resume): Fix misspelling in debug output.
9065
9066 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
9067
9068 * windows-nat.c (get_windows_debug_event): Replace retval with
9069 thread_id throughout. Update stale comment.
9070
9071 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
9072
9073 * windows-nat.c (get_windows_debug_event): Don't use ternary
9074 conditional operator.
9075
9076 2015-04-21 Pierre Muller <muller@sourceware.org>
9077
9078 PR pascal/17815
9079 p-exp.y (yylex): Reorganize code to return the matched pattern
9080 for a field of this.
9081
9082 2015-04-21 Gary Benson <gbenson@redhat.com>
9083
9084 * common/fileio.h (fileio_to_host_openflags): New declaration.
9085 * common/fileio.c (fcntl.h): New include.
9086 (fileio_to_host_openflags): New function, factored out from...
9087 * inf-child.c (inf_child_fileio_open_flags_to_host): ...here.
9088 Single use updated.
9089
9090 2015-04-21 Kevin Buettner <kevinb@redhat.com>
9091
9092 * rl78-tdep.c (RL78_SP_ADDR): Define.
9093 (opc_reg_to_gdb_regnum): New static function.
9094 (rl78_analyze_prologue): Recognize instructions forming slightly
9095 more interesting prologues.
9096
9097 2015-04-20 Pierre-Marie de Rodat <derodat@adacore.com>
9098
9099 Revert:
9100 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
9101 * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
9102 TYPE_CODE_REF types so that they are not considered as dynamic
9103 depending on the referenced type.
9104 (resolve_dynamic_type_internal): Likewise.
9105
9106 2015-04-20 Pierre-Marie de Rodat <derodat@adacore.com>
9107
9108 Revert:
9109 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
9110 * gdbtypes.c (is_dynamic_type_internal): Remove the unused
9111 "top_level" parameter.
9112 (resolve_dynamic_type_internal): Remove the unused "top_level"
9113 parameter. Update call to is_dynamic_type_internal.
9114 (is_dynamic_type): Update call to is_dynamic_type_internal.
9115 (resolve_dynamic_range): Update call to
9116 resolve_dynamic_type_internal.
9117 (resolve_dynamic_union): Likewise.
9118 (resolve_dynamic_struct): Likewise.
9119 (resolve_dynamic_type): Likewise.
9120
9121 2015-04-19 Gabriel Krisman Bertazi <gabriel@krisman.be>
9122
9123 * breakpoint.c (update_dprintf_command_list): Remove duplicated
9124 xmalloc.
9125
9126 2015-04-20 Thomas Schwinge <thomas@codesourcery.com>
9127
9128 * reply_mig_hack.awk: Robustify parsing.
9129
9130 * reply_mig_hack.awk: Don't bother to declare an intermediate
9131 function pointer variable.
9132
9133 2015-04-17 Doug Evans <dje@google.com>
9134
9135 * solib-svr4.c (svr4_exec_displacement): Rename outer "displacement"
9136 to "exec_displacement" to avoid confusion with inner use of the name.
9137
9138 2015-04-17 Pedro Alves <palves@redhat.com>
9139
9140 * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Return zero
9141 if HW point of TYPE isn't supported.
9142
9143 2015-04-17 Yao Qi <yao.qi@linaro.org>
9144 Pedro Alves <palves@redhat.com>
9145
9146 * target.h (target_can_use_hardware_watchpoint): Update comments.
9147 Remove trailing ";".
9148
9149 2015-04-17 Gary Benson <gbenson@redhat.com>
9150
9151 * remote.c (remote_add_inferior): New argument try_open_exec.
9152 If nonzero, attempt to open the inferior's executable file as
9153 the main executable if no main executable is open already.
9154 All callers updated.
9155 * NEWS: Mention that GDB now supports automatic location and
9156 retrieval of executable + files from remote targets.
9157
9158 2015-04-17 Gary Benson <gbenson@redhat.com>
9159
9160 * target.h (TARGET_OBJECT_EXEC_FILE): New enum value.
9161 * remote.c (PACKET_qXfer_exec_file): Likewise.
9162 (remote_protocol_features): Register the
9163 "qXfer:exec-file:read" feature.
9164 (remote_xfer_partial): Handle TARGET_OBJECT_EXEC_FILE.
9165 (remote_pid_to_exec_file): New function.
9166 (init_remote_ops): Initialize to_pid_to_exec_file.
9167 (_initialize_remote): Register new "set/show remote
9168 pid-to-exec-file-packet" command.
9169 * NEWS: Announce new qXfer:exec-file:read packet.
9170
9171 2015-04-17 Gary Benson <gbenson@redhat.com>
9172
9173 * nat/linux-procfs.h (linux_proc_pid_to_exec_file):
9174 New declaration.
9175 * nat/linux-procfs.c (linux_proc_pid_to_exec_file):
9176 New function, factored out from...
9177 * linux-nat.c (linux_child_pid_to_exec_file): ...here.
9178
9179 2015-04-17 Gary Benson <gbenson@redhat.com>
9180
9181 * exec.c (solist.h): New include.
9182 (exec_file_locate_attach): Prefix absolute executable
9183 paths with gdb_sysroot if set.
9184 * NEWS: Mention that executable paths may be prepended
9185 with sysroot.
9186
9187 2015-04-17 Gary Benson <gbenson@redhat.com>
9188
9189 * solist.h (exec_file_find): New declaration.
9190 * solib.c (solib_find_1): New function, factored out from...
9191 (solib_find): ...here.
9192 (exec_file_find): New function.
9193
9194 2015-04-17 Gary Benson <gbenson@redhat.com>
9195
9196 * gdbcore.h (exec_file_locate_attach): New declaration.
9197 * exec.c (exec_file_locate_attach): New function, factored
9198 out from...
9199 * infcmd.c (attach_command_post_wait): ...here.
9200
9201 2015-04-17 Mike Frysinger <vapier@gentoo.org>
9202
9203 * MAINTAINERS: Add myself for Blackfin/write-after-approval.
9204
9205 2015-04-16 Yao Qi <yao.qi@linaro.org>
9206
9207 * infrun.c (maybe_software_singlestep): Declare.
9208 (displaced_step_fixup): Call maybe_software_singlestep.
9209
9210 2015-04-15 Doug Evans <dje@google.com>
9211
9212 * psymtab.c (psym_expand_symtabs_matching): Add QUIT call.
9213
9214 2015-04-15 Doug Evans <dje@google.com>
9215
9216 * dwarf2read.c (dw2_expand_symtabs_matching): Add some QUIT calls.
9217
9218 2015-04-15 Simon Marchi <simon.marchi@ericsson.com>
9219
9220 * python/lib/gdb/command/unwinders.py: Add parentheses.
9221
9222 2015-04-15 Yao Qi <yao.qi@linaro.org>
9223
9224 * arm-linux-tdep.c (arm_linux_copy_svc): Update debug message.
9225
9226 2015-04-15 Yao Qi <yao.qi@linaro.org>
9227
9228 * arm-linux-tdep.c (arm_linux_copy_svc): Fix indentation.
9229
9230 2015-04-15 Yao Qi <yao.qi@linaro.org>
9231
9232 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
9233 dsc->insn_size instead of 4.
9234
9235 2015-04-14 Gary Benson <gbenson@redhat.com>
9236
9237 * jit.c (mem_bfd_iovec_stat): Zero supplied buffer.
9238 * minidebug.c (lzma_stat): Likewise.
9239 * solib-spu.c (spu_bfd_iovec_stat): Likewise.
9240 * spu-linux-nat.c (spu_bfd_iovec_stat): Likewise.
9241
9242 2015-04-13 Stan Shebs <stanshebs@google.com>
9243
9244 * MAINTAINERS: Update my email address.
9245
9246 2015-04-13 John Baldwin <jhb@FreeBSD.org>
9247
9248 * amd64-tdep.c (amd64_target_description): New function.
9249 * amd64-tdep.h: Export amd64_target_description and tdesc_amd64.
9250 * amd64bsd-nat.c [PT_GETXSTATE_INFO]: New variable amd64bsd_xsave_len.
9251 (amd64bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
9252 x86 extended save area.
9253 (amd64bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
9254 * amd64bsd-nat.h: Export amd64bsd_xsave_len.
9255 * amd64fbsd-nat.c (amd64fbsd_read_description): New function.
9256 (_initialize_amd64fbsd_nat): Set "to_read_description" to
9257 "amd64fbsd_read_description".
9258 * amd64fbsd-tdep.c (amd64fbsd_core_read_description): New function.
9259 (amd64fbsd_supply_xstateregset): New function.
9260 (amd64fbsd_collect_xstateregset): New function.
9261 Add "amd64fbsd_xstateregset".
9262 (amd64fbsd_iterate_over_regset_sections): New function.
9263 (amd64fbsd_init_abi): Set "xsave_xcr0_offset" to
9264 "I386_FBSD_XSAVE_XCR0_OFFSET".
9265 Add "iterate_over_regset_sections" gdbarch method.
9266 Add "core_read_description" gdbarch method.
9267 * i386-tdep.c (i386_target_description): New function.
9268 * i386-tdep.h: Export i386_target_description and tdesc_i386.
9269 * i386bsd-nat.c [PT_GETXSTATE_INFO]: New variable i386bsd_xsave_len.
9270 (i386bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
9271 x86 extended save area.
9272 (i386bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
9273 * i386bsd-nat.h: Export i386bsd_xsave_len.
9274 * i386fbsd-nat.c (i386fbsd_read_description): New function.
9275 (_initialize_i386fbsd_nat): Set "to_read_description" to
9276 "i386fbsd_read_description".
9277 * i386fbsd-tdep.c (i386fbsd_core_read_xcr0): New function.
9278 (i386fbsd_core_read_description): New function.
9279 (i386fbsd_supply_xstateregset): New function.
9280 (i386fbsd_collect_xstateregset): New function.
9281 Add "i386fbsd_xstateregset".
9282 (i386fbsd_iterate_over_regset_sections): New function.
9283 (i386fbsd4_init_abi): Set "xsave_xcr0_offset" to
9284 "I386_FBSD_XSAVE_XCR0_OFFSET".
9285 Add "iterate_over_regset_sections" gdbarch method.
9286 Add "core_read_description" gdbarch method.
9287 * i386fbsd-tdep.h: New file.
9288
9289 2015-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9290
9291 * NEWS (Changes since GDB 7.9): Add removed -xdb.
9292 * breakpoint.c (command_line_is_silent): Remove xdb_commands
9293 conditional.
9294 (_initialize_breakpoint): Remove xdb_commands for bc, ab, sb, db, ba
9295 and lb.
9296 * cli/cli-cmds.c (_initialize_cli_cmds): Remove xdb_commands for v and
9297 va.
9298 * cli/cli-decode.c (find_command_name_length): Remove xdb_commands
9299 conditional.
9300 * defs.h (xdb_commands): Remove declaration.
9301 * f-valprint.c (_initialize_f_valprint): Remove xdb_commands for lc.
9302 * guile/scm-cmd.c (command_classes): Remove xdb from comment.
9303 * infcmd.c (run_no_args_command, go_command): Remove.
9304 (_initialize_infcmd): Remove xdb_commands for S, go, g, R and lr.
9305 * infrun.c (xdb_handle_command): Remove.
9306 (_initialize_infrun): Remove xdb_commands for lz and z.
9307 * main.c (xdb_commands): Remove variable.
9308 (captured_main): Remove "xdb" from long_options.
9309 (print_gdb_help): Remove --xdb from help.
9310 * python/py-cmd.c (gdbpy_initialize_commands): Remove xdb from comment.
9311 * source.c (_initialize_source): Remove xdb_commands for D, ld, / and ?.
9312 * stack.c (backtrace_full_command, args_plus_locals_info)
9313 (current_frame_command): Remove.
9314 (_initialize_stack): Remove xdb_commands for t, T and l.
9315 * symtab.c (_initialize_symtab): Remove xdb_commands for lf and lg.
9316 * thread.c (_initialize_thread): Remove xdb_commands condition.
9317 * tui/tui-layout.c (tui_toggle_layout_command)
9318 (tui_toggle_split_layout_command, tui_handle_xdb_layout): Remove.
9319 (_initialize_tui_layout): Remove xdb_commands for td and ts.
9320 * tui/tui-regs.c (tui_scroll_regs_forward_command)
9321 (tui_scroll_regs_backward_command): Remove.
9322 (_initialize_tui_regs): Remove xdb_commands for fr, gr, sr, +r and -r.
9323 * tui/tui-win.c (tui_xdb_set_win_height_command): Remove.
9324 (_initialize_tui_win): Remove xdb_commands for U and w.
9325 * utils.c (pagination_on_command, pagination_off_command): Remove.
9326 (initialize_utils): Remove xdb_commands for am and sm.
9327
9328 2015-04-10 Pedro Alves <palves@redhat.com>
9329
9330 * infrun.c (displaced_step_fixup): Switch to the event ptid
9331 earlier. If the thread stopped for a watchpoint and the
9332 target/arch has non-continuable watchpoints, cancel the displaced
9333 step.
9334 (resume): Don't start a displaced step if in-line step-over info
9335 is valid.
9336
9337 2015-04-10 Pedro Alves <palves@redhat.com>
9338
9339 * infrun.c (displaced_step_in_progress): New function.
9340 (do_target_resume): Advise target to report all signals if
9341 displaced stepping.
9342
9343 2015-04-10 Pedro Alves <palves@redhat.com>
9344
9345 PR gdb/18216
9346 * infrun.c (process_event_stop_test): Don't assume a step-resume
9347 is set if tp->stepped_breakpoint is true.
9348
9349 2015-04-10 Yao Qi <yao.qi@linaro.org>
9350
9351 * arm-tdep.c (install_alu_reg): Update comment.
9352 (thumb_copy_alu_reg): Remove local variable rn. Update
9353 debugging message. Use r2 instead of r1 in the modified
9354 instruction.
9355
9356 2015-04-10 Pedro Alves <palves@redhat.com>
9357
9358 PR gdb/13858
9359 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Install
9360 linux_displaced_step_location as gdbarch_displaced_step_location
9361 hook.
9362 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
9363 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
9364 * linux-tdep.c (linux_displaced_step_location): New function,
9365 based on ppc_linux_displaced_step_location.
9366 * linux-tdep.h (linux_displaced_step_location): New declaration.
9367 * ppc-linux-tdep.c (ppc_linux_entry_point_addr): Delete.
9368 (ppc_linux_inferior_created, ppc_linux_displaced_step_location):
9369 Delete.
9370 (ppc_linux_init_abi): Install linux_displaced_step_location as
9371 gdbarch_displaced_step_location hook, even without Cell/B.E..
9372 (_initialize_ppc_linux_tdep): Don't install
9373 ppc_linux_inferior_created as inferior_created observer.
9374 * s390-linux-tdep.c (s390_gdbarch_init): Install
9375 linux_displaced_step_location as gdbarch_displaced_step_location
9376 hook.
9377
9378 2015-04-09 Gary Benson <gbenson@redhat.com>
9379
9380 * common/common-remote-fileio.h: Rename to...
9381 * common/fileio.h: ...this. Update all references.
9382 (remote_fileio_to_fio_error): Rename to...
9383 (host_to_fileio_error): ...this.
9384 (remote_fileio_to_be): Rename to...
9385 (host_to_bigendian): ...this. Update all callers.
9386 (remote_fileio_to_fio_uint): Rename to...
9387 (host_to_fileio_uint): ...this. Update all callers.
9388 (remote_fileio_to_fio_time): Rename to...
9389 (host_to_fileio_time): ...this. Update all callers.
9390 (remote_fileio_to_fio_stat): Rename to...
9391 (host_to_fileio_stat): ...this.
9392 Update all references.
9393 * common/common-remote-fileio.c: Rename to...
9394 * common/fileio.c: ...this. Update all references.
9395 (remote_fileio_to_fio_error): Rename to...
9396 (host_to_fileio_error): ...this. Update all callers.
9397 (remote_fileio_mode_to_target): Rename to...
9398 (fileio_mode_pack): ...this. Update all callers.
9399 (remote_fileio_to_fio_mode): Rename to...
9400 (host_to_fileio_mode): ...this. Update all callers.
9401 (remote_fileio_to_fio_ulong): Rename to...
9402 (host_to_fileio_ulong): ...this. Update all callers.
9403 (remote_fileio_to_fio_stat): Rename to...
9404 (host_to_fileio_stat): ...this. Update all callers.
9405
9406 2015-04-09 Andy Wingo <wingo@igalia.com>
9407
9408 * guile/scm-frame.c (gdbscm_frame_read_register): New function.
9409 (frame_functions): Bind gdbscm_frame_read_register to
9410 frame-read-register.
9411 * guile/lib/gdb.scm (frame-read-register): Export.
9412
9413 2015-04-09 Gary Benson <gbenson@redhat.com>
9414
9415 * common/common-remote-fileio.h (remote_fileio_to_fio_error):
9416 New declaration.
9417 * common/common-remote-fileio.c (remote_fileio_to_fio_error):
9418 New function, factored out the named functions below.
9419 * inf-child.c (gdb/fileio.h): Remove include.
9420 (common-remote-fileio.h): New include.
9421 (inf_child_errno_to_fileio_error): Remove function. Update
9422 all callers to use remote_fileio_to_fio_error.
9423 * remote-fileio.c (remote_fileio_errno_to_target): Likewise.
9424
9425 2015-04-09 Andy Wingo <wingo@igalia.com>
9426
9427 * MAINTAINERS (Write After Approval): Add Andy Wingo.
9428
9429 2015-04-09 H.J. Lu <hongjiu.lu@intel.com>
9430
9431 * acinclude.m4: (GDB_AC_CHECK_BFD): Set ZLIBDIR with $zlibdir.
9432 Replace $zlibdir with $ZLIBDIR in LDFLAGS.
9433 * configure: Regenerated.
9434
9435 2015-04-09 Pedro Alves <palves@redhat.com>
9436
9437 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strtok_r.
9438 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/strtok_r.m4.
9439 * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: Regenerate.
9440 * gnulib/import/Makefile.am: Update.
9441 * gnulib/import/Makefile.in: Update.
9442 * gnulib/import/m4/gnulib-cache.m4: Update.
9443 * gnulib/import/m4/gnulib-comp.m4: Update.
9444 * gnulib/import/m4/strtok_r.m4: New file.
9445 * gnulib/import/strtok_r.c: New file.
9446
9447 2015-04-09 Pedro Alves <palves@redhat.com>
9448
9449 * gnulib/update-gnulib.sh (aclocal version check): Filter out
9450 "called too early to check prototype".
9451
9452 2015-04-08 Sergio Durigan Junior <sergiodj@redhat.com>
9453
9454 PR python/16699
9455 * python/py-cmd.c (cmdpy_completer_helper): Adjust function to not
9456 use a caching mechanism. Adjust comments and code to reflect
9457 that. Replace 'sizeof' by 'strlen' when fetching 'wordobj'.
9458 (cmdpy_completer_handle_brkchars): Adjust call to
9459 cmdpy_completer_helper. Call Py_XDECREF for 'resultobj'.
9460 (cmdpy_completer): Likewise.
9461
9462 2015-04-08 Yao Qi <yao.qi@linaro.org>
9463
9464 * spu-tdep.c (spu_gdbarch_init): Don't call
9465 set_gdbarch_cannot_step_breakpoint.
9466
9467 2015-04-07 Sergio Durigan Junior <sergiodj@redhat.com>
9468
9469 * linux-tdep.c (decode_vmflags): Initialize 'saveptr'.
9470
9471 2015-04-07 Pedro Alves <palves@redhat.com>
9472
9473 * gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): Rename to ...
9474 (ALL_THREADS_SAFE): ... this, and don't skip exited threads.
9475 (delete_exited_threads): New declaration.
9476 * infrun.c (follow_exec): Use ALL_THREADS_SAFE.
9477 * linux-nat.c (linux_nat_update_thread_list): New function.
9478 (linux_nat_add_target): Install it.
9479 * remote.c (remote_update_thread_list): Use ALL_THREADS_SAFE.
9480 * thread.c (prune_threads): Use ALL_THREADS_SAFE.
9481 (delete_exited_threads): New function.
9482
9483 2015-04-07 Pedro Alves <pedro@codesourcery.com>
9484
9485 * infrun.c (resume) <displaced stepping debug output>: Get the
9486 leader thread's regcache, not resume_ptid's.
9487
9488 2015-04-06 Doug Evans <xdje42@gmail.com>
9489
9490 * symtab.c (hash_symbol_entry): Hash STRUCT_DOMAIN symbols as
9491 VAR_DOMAIN.
9492 (symbol_cache_lookup): Clarify use of bsc_ptr, slot_ptr parameters.
9493 Include symbol domain in debugging output.
9494
9495 2015-04-06 Pedro Alves <palves@redhat.com>
9496 Bernd Edlinger <bernd.edlinger@hotmail.de>
9497
9498 * configure.ac: Remove the mingw32-specific stub-termcap.o
9499 fallback, and instead fallback to the stub termcap on all hosts.
9500 * configure: Regenerate.
9501 * stub-termcap.c [!__MINGW32__] (PC, BC, UP): Define as weak
9502 symbols.
9503
9504 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
9505
9506 * gdbtypes.c (is_dynamic_type_internal): Remove the unused
9507 "top_level" parameter.
9508 (resolve_dynamic_type_internal): Remove the unused "top_level"
9509 parameter. Update call to is_dynamic_type_internal.
9510 (is_dynamic_type): Update call to is_dynamic_type_internal.
9511 (resolve_dynamic_range): Update call to
9512 resolve_dynamic_type_internal.
9513 (resolve_dynamic_union): Likewise.
9514 (resolve_dynamic_struct): Likewise.
9515 (resolve_dynamic_type): Likewise.
9516
9517 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
9518
9519 * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
9520 TYPE_CODE_REF types so that they are not considered as dynamic
9521 depending on the referenced type.
9522 (resolve_dynamic_type_internal): Likewise.
9523
9524 2015-04-02 H.J. Lu <hongjiu.lu@intel.com>
9525
9526 * Makefile.in (top_srcdir): New.
9527 * configure: Regenerated.
9528
9529 2015-04-02 Gary Benson <gbenson@redhat.com>
9530
9531 * NEWS: Announce the new default sysroot of "target:".
9532
9533 2015-04-02 Gary Benson <gbenson@redhat.com>
9534
9535 * main.c (captured_main): Set gdb_sysroot to "target:"
9536 if not otherwise set.
9537
9538 2015-04-02 Gary Benson <gbenson@redhat.com>
9539
9540 * exec.c (exec_file_attach): Support "target:" filenames.
9541
9542 2015-04-02 Gary Benson <gbenson@redhat.com>
9543
9544 * solib.c (solib_find): Strip "target:" prefix from sysroot
9545 if accessing local files.
9546
9547 2015-04-02 Gary Benson <gbenson@redhat.com>
9548
9549 * symfile.c (symfile_bfd_open): Reorder to remove duplicated
9550 checks and error messages.
9551
9552 2015-04-02 Gary Benson <gbenson@redhat.com>
9553
9554 * remote.h (REMOTE_SYSROOT_PREFIX): Remove definition.
9555 (remote_filename_p): Remove declaration.
9556 (remote_bfd_open): Likewise.
9557 * remote.c (remote_bfd_iovec_open): Remove function.
9558 (remote_bfd_iovec_close): Likewise.
9559 (remote_bfd_iovec_pread): Likewise.
9560 (remote_bfd_iovec_stat): Likewise.
9561 (remote_filename_p): Likewise.
9562 (remote_bfd_open): Likewise.
9563 * symfile.h (gdb_bfd_open_maybe_remote): Remove declaration.
9564 * symfile.c (separate_debug_file_exists): Use gdb_bfd_open.
9565 (gdb_bfd_open_maybe_remote): Remove function.
9566 (symfile_bfd_open): Replace remote filename check with
9567 target filename check.
9568 (reread_symbols): Use gdb_bfd_open.
9569 * build-id.c (gdbcore.h): New include.
9570 (build_id_to_debug_bfd): Use gdb_bfd_open.
9571 * infcmd.c (attach_command_post_wait): Remove remote filename
9572 check.
9573 * solib.c (solib_find): Replace remote-specific handling with
9574 target-specific handling. Update comments where necessary.
9575 (solib_bfd_open): Replace remote-specific handling with
9576 target-specific handling.
9577 (gdb_sysroot_changed): New function.
9578 (_initialize_solib): Call the above when gdb_sysroot changes.
9579 * windows-tdep.c (gdbcore.h): New include.
9580 (windows_xfer_shared_library): Use gdb_bfd_open.
9581
9582 2015-04-02 Gary Benson <gbenson@redhat.com>
9583
9584 * gdb/gdb_bfd.h (TARGET_SYSROOT_PREFIX): New definition.
9585 (is_target_filename): New declaration.
9586 (gdb_bfd_has_target_filename): Likewise.
9587 (gdb_bfd_open): Update documentation comment.
9588 * gdb_bfd.c (target.h): New include.
9589 (gdb/fileio.h): Likewise.
9590 (is_target_filename): New function.
9591 (gdb_bfd_has_target_filename): Likewise.
9592 (fileio_errno_to_host): Likewise.
9593 (gdb_bfd_iovec_fileio_open): Likewise.
9594 (gdb_bfd_iovec_fileio_pread): Likewise.
9595 (gdb_bfd_iovec_fileio_close): Likewise.
9596 (gdb_bfd_iovec_fileio_fstat): Likewise.
9597 (gdb_bfd_open): Use target fileio to access paths prefixed
9598 with "target:" where necessary.
9599
9600 2015-04-02 Gary Benson <gbenson@redhat.com>
9601
9602 * target.h (struct target_ops) <to_filesystem_is_local>:
9603 New field.
9604 (target_filesystem_is_local): New macro.
9605 * target-delegates.c: Regenerate.
9606 * remote.c (remote_filesystem_is_local): New function.
9607 (init_remote_ops): Initialize to_filesystem_is_local.
9608
9609 2015-04-02 Gary Benson <gbenson@redhat.com>
9610
9611 * target.h (struct target_ops) <to_fileio_fstat>: New field.
9612 (target_fileio_fstat): New declaration.
9613 * target.c (target_fileio_fstat): New function.
9614 * inf-child.c (inf_child_fileio_fstat): Likewise.
9615 (inf_child_target): Initialize to_fileio_fstat.
9616 * remote.c (init_remote_ops): Likewise.
9617
9618 2015-04-01 Sasha Smundak <asmundak@google.com>
9619
9620 * Makefile.in (SUBDIR_PYTHON_OBJS): Add py-unwind.o.
9621 (SUBDIR_PYTHON_SRCS): Add py-unwind.c.
9622 (py-unwind.o): New recipe.
9623 * NEWS: mention Python frame unwinding.
9624 * data-directory/Makefile.in (PYTHON_FILE_LIST): Add
9625 gdb/unwinder.py and gdb/command/unwinder.py
9626 * python/lib/gdb/__init__.py (packages): Add frame_unwinders
9627 list.
9628 (execute_unwinders): New function.
9629 * python/lib/gdb/command/unwinders.py: New file.
9630 * python/lib/gdb/unwinder.py: New file.
9631 * python/py-objfile.c (objfile_object): Add frame_unwinders field.
9632 (objfpy_dealloc): Decrement frame_unwinders reference count.
9633 (objfpy_initialize): Create frame_unwinders list.
9634 (objfpy_get_frame_unwinders): New function.
9635 (objfpy_set_frame_unwinders): Ditto.
9636 (objfile_getset): Add frame_unwinders attribute to Objfile.
9637 * python/py-progspace.c (pspace_object): Add frame_unwinders field.
9638 (pspy_dealloc): Decrement frame_unwinders reference count.
9639 (pspy_initialize): Create frame_unwinders list.
9640 (pspy_get_frame_unwinders): New function.
9641 (pspy_set_frame_unwinders): Ditto.
9642 (pspy_getset): Add frame_unwinders attribute to gdb.Progspace.
9643 * python/py-unwind.c: New file.
9644 * python/python-internal.h (pspy_get_name_unwinders): New prototype.
9645 (objpy_get_frame_unwinders): New prototype.
9646 (gdbpy_initialize_unwind): New prototype.
9647 * python/python.c (gdbpy_apply_type_printers): Call
9648 gdbpy_initialize_unwind.
9649
9650 2015-04-01 Pedro Alves <palves@redhat.com>
9651
9652 * infrun.c (resume): Check currently_stepping after clearing
9653 stepped_breakpoint, not before.
9654
9655 2015-04-01 Pedro Alves <palves@redhat.com>
9656
9657 * infrun.c (print_target_wait_results): Print all the ptid
9658 elements.
9659
9660 2015-04-01 Pedro Alves <palves@redhat.com>
9661
9662 * infrun.c (keep_going): Also discard cleanups if inserting
9663 breakpoints fails.
9664
9665 2015-04-01 Pedro Alves <palves@redhat.com>
9666
9667 * infrun.c (wait_for_inferior): Install the
9668 finish_thread_state_cleanup cleanup across the whole function, not
9669 just around handle_inferior_event.
9670
9671 2015-04-01 Pedro Alves <palves@redhat.com>
9672
9673 * infrun.c (resume) <step past permanent breakpoint>: Use
9674 do_target_resume.
9675
9676 2015-04-01 Pedro Alves <palves@redhat.com>
9677
9678 * linux-nat.c (linux_handle_extended_wait): Always call set_running.
9679
9680 2015-04-01 Pierre-Marie de Rodat <derodat@adacore.com>
9681
9682 * MAINTAINERS (Write After Approval): Add "Pierre-Marie de Rodat".
9683
9684 2015-04-01 Pedro Alves <palves@redhat.com>
9685
9686 * linux-thread-db.c (record_thread): Readd the thread to gdb's
9687 list if it was marked exited.
9688
9689 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
9690
9691 * configure: Regenerated.
9692
9693 2015-03-31 Sergio Durigan Junior <sergiodj@redhat.com>
9694 Jan Kratochvil <jan.kratochvil@redhat.com>
9695 Oleg Nesterov <oleg@redhat.com>
9696
9697 PR corefiles/16092
9698 * linux-tdep.c: Include 'gdbcmd.h' and 'gdb_regex.h'.
9699 New enum identifying the various options of the coredump_filter
9700 file.
9701 (struct smaps_vmflags): New struct.
9702 (use_coredump_filter): New variable.
9703 (decode_vmflags): New function.
9704 (mapping_is_anonymous_p): Likewise.
9705 (dump_mapping_p): Likewise.
9706 (linux_find_memory_regions_full): New variables
9707 'coredumpfilter_name', 'coredumpfilterdata', 'pid', 'filterflags'.
9708 Removed variable 'modified'. Read /proc/<PID>/smaps file; improve
9709 parsing of its information. Implement memory mapping filtering
9710 based on its contents.
9711 (show_use_coredump_filter): New function.
9712 (_initialize_linux_tdep): New command 'set use-coredump-filter'.
9713 * NEWS: Mention the possibility of using the
9714 '/proc/PID/coredump_filter' file when generating a corefile.
9715 Mention new command 'set use-coredump-filter'.
9716
9717 2015-03-31 Sergio Durigan Junior <sergiodj@redhat.com>
9718
9719 * solib-svr4.c (solib_svr4_r_ldsomap): Catch possible exception by
9720 read_memory_unsigned_integer.
9721
9722 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
9723
9724 * Makefile.in (ZLIB): New.
9725 (ZLIBINC): Likewise.
9726 (INTERNAL_CFLAGS_BASE): Add $(ZLIBINC).
9727 (CLIBS): Add $(ZLIB).
9728 * acinclude.m4: (GDB_AC_CHECK_BFD): Add $zlibdir to LDFLAGS.
9729 Add -lz to LIBS.
9730 * gdb_bfd.c: Don't check HAVE_ZLIB_H to include <zlib.h>.
9731 * top.c (print_gdb_configuration): Remove --with-zlib and
9732 --without-zlib.
9733 * config.in: Regenerated.
9734 * configure: Likewise.
9735
9736 2015-03-31 Antoine Tremblay <antoine.tremblay@ericsson.com>
9737
9738 * NEWS: Mention info os cpus support.
9739 * gdb/nat/linux-osdata.c (linux_xfer_osdata_cpus): New function.
9740 (struct osdata_type): Add cpus entry, reorder the entries in
9741 alphabetical order.
9742
9743 2015-03-31 Matthias Klose <doko@ubuntu.com>
9744
9745 * compile/compile.c (compile_to_object): Allow triplets with or
9746 without vendor set.
9747
9748 2015-03-30 Doug Evans <dje@google.com>
9749
9750 PR c++/18141
9751 * cp-namespace.c (cp_search_static_and_baseclasses): Always look for
9752 klass in VAR_DOMAIN.
9753
9754 2015-03-30 Gary Benson <gbenson@redhat.com>
9755
9756 * remote.c (remote_mourn_1): Remove function. Update all callers
9757 to use remote_mourn.
9758 (extended_remote_mourn_1): Remove function. Update all callers
9759 to use extended_remote_mourn.
9760 (extended_remote_attach_1): Remove function. Update all callers
9761 to use extended_remote_attach.
9762
9763 2015-03-28 James Bowman <james.bowman@ftdichip.com>
9764
9765 * Makefile.in (ALL_TARGET_OBS): Add ft32-tdep.o.
9766 (HFILES_NO_SRCDIR): Add ft32-tdep.h.
9767 (ALLDEPFILES): Add ft32-tdep.c.
9768 * configure.tgt: Add FT32 entry.
9769 * ft32-tdep.c: New file, FT32 target-dependent code.
9770 * ft32-tdep.h: New file, FT32 target-dependent code.
9771
9772 2015-03-27 Jan Kratochvil <jan.kratochvil@redhat.com>
9773
9774 Revert:
9775 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9776 Code cleanup.
9777 * printcmd.c (print_command_1): Move expr variable scope.
9778
9779 2015-03-27 Joel Brobecker <brobecker@adacore.com>
9780
9781 * dtrace-probe.c (dtrace_process_dof_probe): Initialize expr to NULL.
9782
9783 2015-03-27 Andrzej Kaczmarek <andrzej.kaczmarek@tieto.com>
9784
9785 * gdb_bfd.c (gdb_bfd_section_index): Fix off-by-one for special
9786 sections.
9787
9788 2015-03-26 Joel Brobecker <brobecker@adacore.com>
9789
9790 * dtrace-probe.c (dtrace_process_dof_probe): Contain any
9791 exception raised while parsing the probe arguments.
9792 Force parsing to be done using the C language parser.
9793 * expression.h (parse_expression_with_language): Declare.
9794 * parse.c (parse_expression_with_language): New function.
9795
9796 2015-03-26 Jon Turney <jon.turney@dronecode.org.uk>
9797
9798 * MAINTAINERS (Write After Approval): Add "Jon Turney".
9799
9800 2015-03-26 Andy Wingo <wingo@igalia.com>
9801
9802 PR symtab/18148
9803 * dwarf2read.c (struct partial_die_info): Add has_const_value
9804 member.
9805 (add_partial_symbol): Don't punt on symbols that have const_value
9806 attributes.
9807 (read_partial_die): Detect DW_AT_const_value.
9808
9809 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9810
9811 Code cleanup.
9812 * printcmd.c (print_command_1): Move expr variable scope.
9813
9814 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9815
9816 Code cleanup.
9817 * printcmd.c (validate_format): Make the parameter cmdname const.
9818
9819 2015-03-26 Don Breazeal <donb@codesourcery.com>
9820
9821 * remote.c (_initialize_remote): Update comment.
9822
9823 2015-03-26 Pedro Alves <palves@redhat.com>
9824 Jon TURNEY <jon.turney@dronecode.org.uk>
9825
9826 * coffread.c (coff_symfile_read): When constructing the name of an
9827 import stub symbol from import symbol for amd64, only skip the
9828 char after _imp_ if the target is underscored (like i386) and the
9829 char is indeed the target's leading char.
9830
9831 2015-03-25 Pedro Alves <palves@redhat.com>
9832
9833 * target.h <to_async>: Replace 'callback' and 'context' parameters
9834 with boolean 'enable' parameter.
9835 (target_async): Replace CALLBACK and CONTEXT parameters with
9836 boolean ENABLE parameter.
9837 * inf-loop.c (inferior_event_handler): Adjust.
9838 * linux-nat.c (linux_nat_attach, linux_nat_resume)
9839 (linux_nat_resume): Adjust.
9840 (async_client_callback, async_client_context): Delete.
9841 (handle_target_event): Call inferior_event_handler directly.
9842 (linux_nat_async): Replace 'callback' and 'context' parameters
9843 with boolean 'enable' parameter. Adjust. Remove references to
9844 async_client_callback and async_client_context.
9845 (linux_nat_close): Adjust.
9846 * record-btrace.c (record_btrace_async): Replace 'callback' and
9847 'context' parameters with boolean 'enable' parameter. Adjust.
9848 (record_btrace_resume): Adjust.
9849 * record-full.c (record_full_async): Replace 'callback' and
9850 'context' parameters with boolean 'enable' parameter. Adjust.
9851 (record_full_resume, record_full_core_resume): Adjust.
9852 * remote.c (struct remote_state) <async_client_callback,
9853 async_client_context>: Delete fields.
9854 (remote_start_remote, extended_remote_attach_1, remote_resume)
9855 (extended_remote_create_inferior): Adjust.
9856 (remote_async_serial_handler): Call inferior_event_handler
9857 directly.
9858 (remote_async): Replace 'callback' and 'context' parameters with
9859 boolean 'enable' parameter. Adjust.
9860 * top.c (gdb_readline_wrapper_cleanup, gdb_readline_wrapper):
9861 Adjust.
9862 * target-delegates.c: Regenerate.
9863
9864 2015-03-25 Gary Benson <gbenson@redhat.com>
9865 Pedro Alves <palves@redhat.com>
9866
9867 * target.c (fileio_ft_t): New typedef, define object vector.
9868 (fileio_fhandles): New static variable.
9869 (is_closed_fileio_fh): New macro.
9870 (lowest_closed_fd): New static variable.
9871 (acquire_fileio_fd): New function.
9872 (release_fileio_fd): Likewise.
9873 (fileio_fd_to_fh): New macro.
9874 (target_fileio_open): Wrap the file descriptor on success.
9875 (target_fileio_pwrite): Updated to use wrapped file descriptor.
9876 (target_fileio_pread): Likewise.
9877 (target_fileio_close): Likewise.
9878
9879 2015-03-24 Pedro Alves <palves@redhat.com>
9880
9881 * thread.c (thread_apply_all_command): Take exited threads into
9882 account.
9883
9884 2015-03-24 Pedro Alves <palves@redhat.com>
9885
9886 * infrun.c (resume, proceed): Mention
9887 switch_back_to_stepped_thread, not switch_back_to_stepping.
9888
9889 2015-03-24 Pedro Alves <palves@redhat.com>
9890
9891 * infrun.c (user_visible_resume_ptid): Rewrite going from
9892 most-locked to unlocked instead of the opposite. Move comment ...
9893 * infrun.h (user_visible_resume_ptid): ... here.
9894
9895 2015-03-24 Pedro Alves <palves@redhat.com>
9896
9897 * linux-nat.c (linux_nat_resume): Output debug logs before trying
9898 to resume the event lwp. Use the lwp's ptid instead of the passed
9899 in (maybe wildcard) ptid.
9900 (stop_wait_callback): Tweak debug log output.
9901 (check_stopped_by_breakpoint): Tweak debug log output. Also dump
9902 TRAP_TRACE.
9903 (linux_nat_filter_event): In debug output, distinguish a
9904 resume_stop SIGSTOP from a delayed SIGSTOP. Output debug logs
9905 before trying to resume the lwp.
9906
9907 2015-03-24 Joel Brobecker <brobecker@adacore.com>
9908
9909 * gdbtypes.h (struct dynamic_prop_list) <prop>: Remove
9910 pointer indirection.
9911 * gdbtypes.c (get_dyn_prop): Adjust, following change above.
9912 (add_dyn_prop, copy_dynamic_prop_list): Likewise.
9913
9914 2015-03-24 Joel Brobecker <brobecker@adacore.com>
9915
9916 * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_DATA_LOCATION>:
9917 Renames DYN_ATTR_DATA_LOCATION.
9918 (TYPE_DATA_LOCATION): Use DYN_PROP_DATA_LOCATION instead of
9919 DYN_ATTR_DATA_LOCATION.
9920 * dwarf2read.c (set_die_type): Use DYN_PROP_DATA_LOCATION
9921 instead of DYN_ATTR_DATA_LOCATION.
9922
9923 2015-03-24 Pedro Alves <palves@redhat.com>
9924
9925 * breakpoint.c (until_break_command): Adjust call to proceed.
9926 * gdbthread.h (struct thread_control_state) <stepping_command>:
9927 New field.
9928 * infcall.c (run_inferior_call): Adjust call to proceed.
9929 * infcmd.c (run_command_1, proceed_thread_callback, continue_1):
9930 Adjust calls to proceed.
9931 (set_step_frame): Set the current thread's step_start_function
9932 here.
9933 (step_once): Adjust calls to proceed.
9934 (jump_command, signal_command, until_next_command)
9935 (finish_backward, finish_forward, proceed_after_attach_callback)
9936 (attach_command_post_wait): Adjust calls to proceed.
9937 * infrun.c (proceed_after_vfork_done): Adjust call to proceed.
9938 (do_target_resume): New function, factored out from ...
9939 (resume): ... here. Remove 'step' parameter. Instead, check
9940 currently_stepping to determine whether the thread should be
9941 single-stepped.
9942 (proceed): Remove 'step' parameter and don't set the thread's
9943 step_start_function here. Adjust call to 'resume'.
9944 (handle_inferior_event): Adjust calls to 'resume'.
9945 (switch_back_to_stepped_thread): Use do_target_resume instead of
9946 'resume'.
9947 (keep_going): Adjust calls to 'resume'.
9948 * infrun.h (proceed): Remove 'step' parameter.
9949 (resume): Likewise.
9950 * windows-nat.c (do_initial_windows_stuff): Adjust call to
9951 'resume'.
9952 * mi/mi-main.c (proceed_thread): Adjust call to 'proceed'.
9953
9954 2015-03-24 Pedro Alves <palves@redhat.com>
9955
9956 * gdbthread.h (struct thread_control_state) <stepping_command>:
9957 New field.
9958 * infcmd.c (step_once): Pass step=1 to clear_proceed_status. Set
9959 the thread's stepping_command field.
9960 * infrun.c (resume): Check the thread's stepping_command flag to
9961 determine which threads should be resumed. Rename 'entry_step'
9962 local to user_step.
9963 (clear_proceed_status_thread): Clear 'stepping_command'.
9964 (schedlock_applies): Change parameter type to struct thread_info
9965 pointer. Adjust.
9966 (find_thread_needs_step_over): Remove 'step' parameter. Adjust.
9967 (switch_back_to_stepped_thread): Adjust calls to
9968 'schedlock_applies'.
9969 (_initialize_infrun): Adjust "set scheduler-locking step" help.
9970
9971 2015-03-24 Pedro Alves <palves@redhat.com>
9972
9973 * infrun.c (step_start_function): Delete and ...
9974 * gdbthread.h (struct thread_control_state) <step_start_function>:
9975 ... now a field here.
9976 * infrun.c (clear_proceed_status_thread): Clear the thread's
9977 step_start_function.
9978 (proceed, process_event_stop_test, print_stop_event): Adjust.
9979
9980 2015-03-24 Pedro Alves <palves@redhat.com>
9981
9982 * infrun.c (proceed): No longer handle negative step.
9983
9984 2015-03-24 Gary Benson <gbenson@redhat.com>
9985
9986 * nat/x86-linux.h (x86_linux_new_thread): New declaration.
9987 (x86_linux_prepare_to_resume): Likewise.
9988 * x86-linux-nat.c (x86_linux_new_thread):
9989 Moved to nat/x86-linux.c.
9990 (x86_linux_prepare_to_resume): Likewise.
9991 * nat/x86-linux.c (x86_linux_new_thread): New function.
9992 (x86_linux_prepare_to_resume): Likewise.
9993
9994 2015-03-24 Gary Benson <gbenson@redhat.com>
9995
9996 * nat/x86-linux-dregs.h: New file.
9997 * nat/x86-linux-dregs.c: Likewise.
9998 * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux-dregs.h.
9999 (x86-linux-dregs.o): New rule.
10000 * config/i386/linux.mh (NATDEPFILES): Add x86-linux-dregs.o.
10001 * config/i386/linux64.mh (NATDEPFILES): Likewise.
10002 * x86-linux-nat.c: Include nat/x86-linux-dregs.h.
10003 (u_debugreg_offset): Moved to nat/x86-linux-dregs.c.
10004 (x86_linux_dr_get): Likewise.
10005 (x86_linux_dr_set): Likewise.
10006 (x86_linux_dr_get_addr): Likewise.
10007 (x86_linux_dr_get_control): Likewise.
10008 (x86_linux_dr_get_status): Likewise.
10009 (update_debug_registers_callback): Likewise.
10010 (x86_linux_dr_set_control): Likewise.
10011 (x86_linux_dr_set_addr): Likewise.
10012 (x86_linux_update_debug_registers): Likewise.
10013
10014 2015-03-24 Gary Benson <gbenson@redhat.com>
10015
10016 * x86-linux-nat.c (x86_linux_update_debug_registers):
10017 New function, factored out from...
10018 (x86_linux_prepare_to_resume): ...this.
10019
10020 2015-03-24 Gary Benson <gbenson@redhat.com>
10021
10022 * x86-linux-nat.c (x86_linux_dr_get): Update comments.
10023 (x86_linux_dr_set): Likewise.
10024 (x86_linux_dr_get_addr): Likewise.
10025 (x86_linux_dr_get_control): Likewise.
10026 (x86_linux_dr_get_status): Likewise.
10027 (update_debug_registers_callback): Likewise.
10028 (x86_linux_dr_set_control): Likewise.
10029 (x86_linux_dr_set_addr): Likewise.
10030 (x86_linux_prepare_to_resume): Likewise.
10031 (x86_linux_new_thread): Likewise.
10032
10033 2015-03-24 Gary Benson <gbenson@redhat.com>
10034
10035 * x86-linux-nat.c (x86_linux_dr_set_addr): Update assertion.
10036 (x86_linux_new_thread): Rename argument.
10037
10038 2015-03-24 Gary Benson <gbenson@redhat.com>
10039
10040 * nat/x86-linux.h: New file.
10041 * nat/x86-linux.c: Likewise.
10042 * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux.h.
10043 (x86-linux.o): New rule.
10044 * config/i386/linux.mh (NATDEPFILES): Add x86-linux.o.
10045 * config/i386/linux64.mh (NATDEPFILES): Likewise.
10046 * nat/linux-nat.h (struct arch_lwp_info): New forward declaration.
10047 (lwp_set_arch_private_info): New declaration.
10048 (lwp_arch_private_info): Likewise.
10049 * linux-nat.c (lwp_set_arch_private_info): New function.
10050 (lwp_arch_private_info): Likewise.
10051 * x86-linux-nat.c: Include nat/x86-linux.h.
10052 (arch_lwp_info): Removed structure.
10053 (update_debug_registers_callback):
10054 Use lwp_set_debug_registers_changed.
10055 (x86_linux_prepare_to_resume): Use lwp_debug_registers_changed
10056 and lwp_set_debug_registers_changed.
10057 (x86_linux_new_thread): Use lwp_set_debug_registers_changed.
10058
10059 2015-03-24 Gary Benson <gbenson@redhat.com>
10060
10061 * nat/linux-nat.h (ptid_of_lwp): New declaration.
10062 (lwp_is_stopped): Likewise.
10063 (lwp_stop_reason): Likewise.
10064 * linux-nat.c (ptid_of_lwp): New function.
10065 (lwp_is_stopped): Likewise.
10066 (lwp_is_stopped_by_watchpoint): Likewise.
10067 * x86-linux-nat.c (update_debug_registers_callback):
10068 Use lwp_is_stopped.
10069 (x86_linux_prepare_to_resume): Use ptid_of_lwp and
10070 lwp_stop_reason.
10071
10072 2015-03-24 Gary Benson <gbenson@redhat.com>
10073
10074 * linux-nat.h (linux_stop_lwp): Move declaration to...
10075 * nat/linux-nat.h (linux_stop_lwp): New declaration.
10076
10077 2015-03-24 Gary Benson <gbenson@redhat.com>
10078
10079 * linux-nat.h: Include nat/linux-nat.h.
10080 (iterate_over_lwps): Move declaration to nat/linux-nat.h.
10081 * nat/linux-nat.h (struct lwp_info): New forward declaration.
10082 (iterate_over_lwps_ftype): New typedef.
10083 (iterate_over_lwps): New declaration.
10084 * linux-nat.h (iterate_over_lwps): Update comment. Use
10085 iterate_over_lwps_ftype. Update callback return value check.
10086
10087 2015-03-24 Gary Benson <gbenson@redhat.com>
10088
10089 * x86-nat.h (x86_debug_reg_state): Move declaration to...
10090 * nat/x86-dregs.h (x86_debug_reg_state): New declaration.
10091
10092 2015-03-24 Gary Benson <gbenson@redhat.com>
10093
10094 * nat/linux-nat.h (current_lwp_ptid): New declaration.
10095 * linux-nat.c (current_lwp_ptid): New function.
10096 * x86-linux-nat.c: Include nat/linux-nat.h.
10097 (x86_linux_dr_get_addr): Use current_lwp_ptid.
10098 (x86_linux_dr_get_control): Likewise.
10099 (x86_linux_dr_get_status): Likewise.
10100 (x86_linux_dr_set_control): Likewise.
10101 (x86_linux_dr_set_addr): Likewise.
10102
10103 2015-03-24 Antoine Tremblay <antoine.tremblay@ericsson.com>
10104
10105 PR breakpoints/16466
10106 * breakpoint.c (create_breakpoint): Set thread on breakpoint struct.
10107
10108 2015-03-23 Joel Brobecker <brobecker@adacore.com>
10109
10110 * ser-mingw.c (ser_windows_setparity): Fix indentation.
10111 * ser-unix.c (hardwire_setparity): Likewise.
10112
10113 2015-03-23 Yurij Grechishhev <yurij.grechishhev@gmail.com>
10114
10115 * NEWS: Mention set/show serial parity command.
10116 * monitor.c (monitor_open): Call serial_setparity.
10117 * remote.c (remote_open_1): Likewise.
10118 * ser-base.c (ser_base_serparity): New function.
10119 * ser-base.h (ser_base_setparity): Add declaration.
10120 * ser-go32.c (dos_ops): Set "setparity" field.
10121 * ser-mingw.c (ser_windows_raw): Do not set state.fParity and
10122 state.Parity.
10123 (ser_windows_setparity): New function.
10124 (hardwire_ops): Add ser_windows_setparity.
10125 (tty_ops): Add NULL for setparity field.
10126 (pipe_ops): Add ser_base_setparity.
10127 (tcp_ops): Likewise.
10128 * ser-pipe.c (pipe_ops): Likewise.
10129 * ser-tcp.c (tcp_ops): Likewise.
10130 * ser-unix.c (hardwire_setparity): Add declaration.
10131 (hardwire_raw): Don't reset PARENB flag.
10132 (hardwire_setparity): New function.
10133 (hardwire_ops): Add hardwire_setparity.
10134 * serial.c (serial_setparity): New function.
10135 (serial_parity): New global.
10136 (parity_none, parity_odd, parity_even, parity_enums, parity):
10137 New static globals.
10138 (set_parity): New function.
10139 (_initialize_serial): Add set/show serial parity commands.
10140 * serial.h (GDBPARITY_NONE): Define.
10141 (GDBPARITY_ODD): Define.
10142 (GDBPARITY_EVEN): Define.
10143 (serial_setparity) Add declaration.
10144 (struct serial_ops): Add setparity field.
10145 * target.h (serial_parity): Add declaration.
10146
10147 2015-03-23 Keith Seitz <keiths@redhat.com>
10148
10149 * linespec.c (linespec_lexer_lex_keyword): Update comment.
10150
10151 2015-03-23 Keith Seitz <keiths@redhat.com>
10152
10153 * breakpoint.c (parse_breakpoint_sals): Use
10154 linespec_lexer_lex_keyword to ascertain if the user specified
10155 a NULL location.
10156 * linespec.c [IF_KEYWORD_INDEX]: Define.
10157 (linespec_lexer_lex_keyword): Export.
10158 (struct ls_parser) <keyword_ok>: Remove.
10159 A keyword is only a keyword if not followed by another keyword.
10160 (linespec_lexer_lex_one): Remove keyword_ok handling.
10161 Add comment explaining why the parsing stream is not advanced
10162 when a keyword is seen.
10163 (parse_linespec): Remove parser->keyword_ok.
10164 * linespec.h (linespec_lexer_lex_keyword): Add declaration.
10165
10166 2015-03-23 Keith Seitz <keiths@redhat.com>
10167
10168 PR gdb/18021
10169 * dwarf2read.c (dwarf2_add_member_fn): Issue a complaint
10170 if we find a static method with DW_AT_vtable_elem_location.
10171
10172 2015-03-21 Eli Zaretskii <eliz@gnu.org>
10173
10174 * tui/tui-io.c (tui_expand_tabs): Reinitialize the column counter
10175 before the second loop, to avoid undefined behavior. Reported by
10176 Anton Blanchard <anton@samba.org>.
10177
10178 2015-03-20 Keven Boell <keven.boell@intel.com>
10179
10180 * gdbtypes.c (resolve_dynamic_type_internal): Adapt
10181 data_location usage to linked list.
10182 (resolve_dynamic_type_internal): Adapt data_location to
10183 linked list.
10184 (get_dyn_prop, add_dyn_prop, copy_dynamic_prop_list): New function.
10185 (copy_type_recursive, copy_type): Add copy of linked list.
10186 * gdbtypes.h (enum dynamic_prop_node_kind): New enum.
10187 (struct dynamic_prop_list): New struct.
10188 * dwarf2read.c (set_die_type): Set data_location data.
10189
10190 2015-03-20 Pedro Alves <palves@redhat.com>
10191
10192 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Move "p" to
10193 inner block and make it const.
10194 * machoread.c (get_archive_prefix_len): Make "lparen" const.
10195
10196 2015-03-20 Pedro Alves <palves@redhat.com>
10197
10198 * breakpoint.c (set_breakpoint_condition): Make argument "exp" const.
10199 * breakpoint.h (set_breakpoint_condition): Update declaration.
10200
10201 2015-03-20 Pedro Alves <palves@redhat.com>
10202
10203 * tui/tui-io.c (tui_expand_tabs): Make "s1" const.
10204
10205 2015-03-20 Pedro Alves <palves@redhat.com>
10206
10207 * xcoffread.c (scan_xcoff_symtab): Make "p" and "q" const.
10208
10209 2015-03-20 Pedro Alves <palves@redhat.com>
10210
10211 * remote-m32r-sdi.c (m32r_open): Make "port_str" const.
10212
10213 2015-03-20 Pedro Alves <palves@redhat.com>
10214
10215 * nto-tdep.c (nto_find_and_open_solib): Make "endian" const.
10216 (nto_init_solib_absolute_prefix): Likewise.
10217
10218 2015-03-20 Pedro Alves <palves@redhat.com>
10219
10220 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Make "p" const.
10221 * spu-tdep.c (spu_gdbarch_init): Make "name" const.
10222
10223 2015-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
10224
10225 * config/djgpp/README: Remove gdb.hp.
10226
10227 2015-03-20 Yao Qi <yao.qi@linaro.org>
10228
10229 * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
10230 set_gdbarch_cannot_step_breakpoint.
10231
10232 2015-03-19 Pedro Alves <palves@redhat.com>
10233
10234 * linux-nat.c (linux_resume_one_lwp): Rename to ...
10235 (linux_resume_one_lwp_throw): ... this. Don't handle ESRCH here,
10236 instead call perror_with_name.
10237 (check_ptrace_stopped_lwp_gone): New function.
10238 (linux_resume_one_lwp): Reimplement as wrapper around
10239 linux_resume_one_lwp_throw that swallows errors if the LWP is
10240 gone.
10241 (resume_stopped_resumed_lwps): Try register reads in TRY/CATCH and
10242 swallows errors if the LWP is gone. Use
10243 linux_resume_one_lwp_throw instead of linux_resume_one_lwp.
10244
10245 2015-03-19 Pedro Alves <palves@redhat.com>
10246
10247 * linux-nat.c (status_callback): Return early if the LWP has no
10248 status pending.
10249
10250 2015-03-19 Pedro Alves <palves@redhat.com>
10251
10252 * linux-nat.c (select_event_lwp_callback): Update comment to no
10253 longer mention SIGTRAP.
10254
10255 2015-03-18 Tristan Gingold <gingold@adacore.com>
10256
10257 * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Move
10258 redirection code to ...
10259 (amd64_windows_frame_decode_insns): ... Here. Fix in prologue
10260 checks. Fix SAVE_NONVOL operations. Add debug code and comments.
10261
10262 2015-03-18 Gary Benson <gbenson@redhat.com>
10263
10264 (remote_protocol_features): Remove the "vFile:fstat" feature.
10265 (remote_hostio_fstat): Probe for "vFile:fstat" support.
10266
10267 2015-03-11 Yao Qi <yao.qi@linaro.org>
10268
10269 PR tdep/18107
10270 * aarch64-linux-tdep.c: Include xml-syscall.h
10271 (aarch64_linux_get_syscall_number): New function.
10272 (aarch64_linux_init_abi): Call
10273 set_gdbarch_get_syscall_number.
10274 * syscalls/aarch64-linux.xml: New file.
10275
10276 2015-03-17 Yurij Grechishhev <yurij.grechishhev@gmail.com>
10277
10278 * ser-base.h (ser_base_setstopbits): Change second argument name
10279 from "rate" to "num".
10280
10281 2015-03-17 Gary Benson <gbenson@redhat.com>
10282 Luke Allardyce <lukeallardyce@gmail.com>
10283
10284 PR gdb/18131
10285 * common/common-remote-fileio.h (sys/stat.h): New include.
10286 (stuct stat): Remove forward declaration.
10287
10288 2015-03-16 John Baldwin <jhb@FreeBSD.org>
10289
10290 * fbsd-tdep.c (fbsd_make_corefile_notes): Fetch all target registers
10291 before writing core register notes.
10292
10293 2015-03-16 Yuanhui Zhang <asmwarrior@gmail.com>
10294 Pedro Alves <palves@redhat.com>
10295
10296 * gdb_curses.h (tgetnum): Mark with EXTERN_C.
10297 * stub-termcap.c (tgetent, tgetnum, tgetflag, tgetstr, tputs)
10298 (tgoto): Wrap with extern "C".
10299
10300 2015-03-16 Pedro Alves <palves@redhat.com>
10301 Yuanhui Zhang <asmwarrior@gmail.com>
10302
10303 * stub-termcap.c (tputs): Change prototype.
10304
10305 2015-03-16 Yuanhui Zhang <asmwarrior@gmail.com>
10306 Pedro Alves <palves@redhat.com>
10307
10308 * windows-nat.c (struct thread_info_struct): Rename to ...
10309 (struct windows_thread_info_struct): ... this.
10310 (thread_info): Rename to ...
10311 (windows_thread_info): ... this.
10312 All users updated.
10313
10314 2015-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10315 Pedro Alves <palves@redhat.com>
10316
10317 * NEWS: New Removed targets and native configurations.
10318
10319 2015-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
10320
10321 Remove HPUX.
10322 * Makefile.in (ALL_64_TARGET_OBS): Remove ia64-hpux-tdep.o.
10323 (ALL_TARGET_OBS): Remove hppa-hpux-tdep.o, solib-som.o and solib-pa64.o.
10324 (HFILES_NO_SRCDIR): Remove solib-som.h, inf-ttrace.h, solib-pa64.h and
10325 ia64-hpux-tdep.h, solib-ia64-hpux.h.
10326 (ALLDEPFILES): Remove hppa-hpux-tdep.c, hppa-hpux-nat.c,
10327 ia64-hpux-nat.c, ia64-hpux-tdep.c, somread.c and solib-som.c.
10328 * config/djgpp/fnchange.lst: Remove hppa-hpux-nat.c and
10329 hppa-hpux-tdep.c.
10330 * config/ia64/hpux.mh: Remove file.
10331 * config/pa/hpux.mh: Remove file.
10332 * configure: Rebuilt.
10333 * configure.ac (dlgetmodinfo, somread.o): Remove.
10334 * configure.host (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
10335 (ia64-*-hpux*): Remove its float format exception.
10336 * configure.tgt (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
10337 * hppa-hpux-nat.c: Remove file.
10338 * hppa-hpux-tdep.c: Remove file.
10339 * hppa-tdep.c (struct hppa_unwind_info, struct hppa_objfile_private):
10340 Move them here from hppa-tdep.h
10341 (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Make it static.
10342 (hppa_frame_prev_register_helper): Remove HPPA_FLAGS_REGNUM exception.
10343 * hppa-tdep.h (struct hppa_unwind_info, struct hppa_objfile_private):
10344 Move them to hppa-tdep.c.
10345 (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Remove
10346 declarations.
10347 * ia64-hpux-nat.c: Remove file.
10348 * ia64-hpux-tdep.c: Remove file.
10349 * ia64-hpux-tdep.h: Remove file.
10350 * inf-ttrace.c: Remove file.
10351 * inf-ttrace.h: Remove file.
10352 * solib-ia64-hpux.c: Remove file.
10353 * solib-ia64-hpux.h: Remove file.
10354 * solib-pa64.c: Remove file.
10355 * solib-pa64.h: Remove file.
10356 * solib-som.c: Remove file.
10357 * solib-som.h: Remove file.
10358 * somread.c: Remove file.
10359
10360 2015-03-13 John Baldwin <jhb@FreeBSD.org>
10361
10362 * configure.ac: AC_SEARCH_LIBS(kinfo_getvmmap, util).
10363 * config.in: Regenerate.
10364 * configure: Regenerate.
10365 * fbsd-nat.c [!HAVE_KINFO_GETVMMAP] (fbsd_read_mapping): Don't
10366 define.
10367 (fbsd_find_memory_regions): Use kinfo_getvmmap to
10368 enumerate memory regions if present.
10369
10370 2015-03-13 John Baldwin <jhb@FreeBSD.org>
10371
10372 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_p): Style fixes.
10373 * i386fbsd-tdep.c: Fix style in various gdb_static_assert
10374 expressions.
10375 (i386fbsd_sigtramp_p): Likewise.
10376
10377 2015-03-12 John Baldwin <jhb@FreeBSD.org>
10378
10379 * MAINTAINERS (Write After Approval): Add John Baldwin.
10380
10381 2015-03-12 Gary Benson <gbenson@redhat.com>
10382
10383 * solib.c (_initialize_solib): Make "set/show sysroot" use
10384 add_setshow_optional_filename_cmd so it can be restored to
10385 empty after being set.
10386
10387 2015-03-11 Sergio Durigan Junior <sergiodj@redhat.com>
10388
10389 * Makefile.in (SFILES): New source break-catch-syscall.c.
10390 (COMMON_OBS): New object break-catch-syscall.o.
10391 * break-catch-syscall.c: New file.
10392 * breakpoint.c: Remove inclusion of "xml-syscall.h".
10393 (syscall_catchpoint_p): Move declaration to break-catch-syscall.c
10394 (struct syscall_catchpoint): Likewise.
10395 (dtor_catch_syscall): Likewise.
10396 (catch_syscall_inferior_data): Likewise.
10397 (struct catch_syscall_inferior_data): Likewise.
10398 (get_catch_syscall_inferior_data): Likewise.
10399 (catch_syscall_inferior_data_cleanup): Likewise.
10400 (insert_catch_syscall): Likewise.
10401 (remove_catch_syscall): Likewise.
10402 (breakpoint_hit_catch_syscall): Likewise.
10403 (print_it_catch_syscall): Likewise.
10404 (print_one_catch_syscall): Likewise.
10405 (print_mention_catch_syscall): Likewise.
10406 (print_recreate_catch_syscall): Likewise.
10407 (catch_syscall_breakpoint_ops): Likewise.
10408 (syscall_catchpoint_p): Likewise.
10409 (create_syscall_event_catchpoint): Likewise.
10410 (catch_syscall_split_args): Likewise.
10411 (catch_syscall_command_1): Likewise.
10412 (is_syscall_catchpoint_enabled): Likewise.
10413 (catch_syscall_enabled): Likewise.
10414 (catching_syscall_number): Likewise.
10415 (catch_syscall_completer): Likewise.
10416 (clear_syscall_counts): Likewise.
10417 (initialize_breakpoint_ops): Move initialization of syscall
10418 catchpoints to break-catch-syscall.c.
10419 (_initialize_breakpoint): Move code related to syscall catchpoints
10420 to break-catch-syscall.c.
10421
10422 2015-03-11 Sergio Durigan Junior <sergiodj@redhat.com>
10423
10424 * breakpoint.c (breakpoint_find_if): New function.
10425 * breakpoint.h (breakpoint_find_if): New prototype.
10426
10427 2015-03-11 Gary Benson <gbenson@redhat.com>
10428
10429 * remote-fileio.h (remote_fileio_to_host_stat): New declaration.
10430 * remote-fileio.c (remote_fileio_to_host_uint): New function.
10431 (remote_fileio_to_host_ulong): Likewise.
10432 (remote_fileio_to_host_mode): Likewise.
10433 (remote_fileio_to_host_time): Likewise.
10434 (remote_fileio_to_host_stat): Likewise.
10435 * remote.c (PACKET_vFile_fstat): New enum value.
10436 (remote_protocol_features): Register the "vFile:fstat" feature.
10437 (remote_hostio_fstat): New function.
10438 (remote_bfd_iovec_stat): Use the above.
10439 (_initialize_remote): Register new "set/show remote
10440 hostio-fstat-packet" command.
10441 * symfile.c (separate_debug_file_exists): Update comment.
10442 * NEWS: Announce new vFile:fstat packet.
10443
10444 2015-03-11 Gary Benson <gbenson@redhat.com>
10445
10446 * common/common-remote-fileio.h: New file.
10447 * common/common-remote-fileio.c: Likewise.
10448 * Makefile.in (SFILES): Add common/common-remote-fileio.c.
10449 (HFILES_NO_SRCDIR): Add common/common-remote-fileio.h.
10450 (COMMON_OBS): Add common-remote-fileio.o.
10451 (common-remote-fileio.o): New rule.
10452 * remote-fileio.h (common-remote-fileio.h): New include.
10453 * remote-fileio.c (gdb/fileio.h): Do not include.
10454 (remote_fileio_to_be): Moved to common-remote-fileio.h.
10455 (remote_fileio_to_fio_uint): Likewise.
10456 (remote_fileio_to_fio_time): Likewise.
10457 (remote_fileio_mode_to_target): Moved to common-remote-fileio.c.
10458 (remote_fileio_to_fio_mode): Likewise.
10459 (remote_fileio_to_fio_ulong): Likewise.
10460 (remote_fileio_to_fio_stat): Likewise.
10461
10462 2015-03-11 Andy Wingo <wingo@igalia.com>
10463
10464 * guile/scm-value.c (gdbscm_value_dynamic_type): Fix typo in which
10465 we were checking the cached type, not the cached dynamic type.
10466
10467 2015-03-11 Andy Wingo <wingo@igalia.com>
10468
10469 * guile/scm-cmd.c (cmdscm_destroyer): Don't xfree the name and
10470 other strings, as these are on the GC'd heap, and will be
10471 collected along with the smob.
10472
10473 2015-03-11 Andy Wingo <wingo@igalia.com>
10474
10475 * guile/scm-objfile.c (gdbscm_objfile_progspace): New function.
10476 (objfile_functions): Bind gdbscm_objfile_progspace to
10477 objfile-progspace.
10478 * guile/lib/gdb.scm: Add objfile-progspace to exports.
10479
10480 2015-03-11 Andy Wingo <wingo@igalia.com>
10481
10482 * guile/guile.c (_initialize_guile): Disable automatic
10483 finalization, if Guile offers us that possibility.
10484 * guile/guile.c (call_initialize_gdb_module):
10485 * guile/scm-safe-call.c (gdbscm_with_catch): Arrange to run
10486 finalizers in appropriate places.
10487 * configure.ac (AC_TRY_LIBGUILE): Add a check for
10488 scm_set_automatic_finalization_enabled.
10489 * configure: Regenerated.
10490
10491 2015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com>
10492
10493 * s390-linux-tdep.c (s390_skip_prologue): Skip the prologue using
10494 SAL, if possible.
10495
10496 2015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com>
10497
10498 * s390-linux-nat.c (struct arch_lwp_info): New.
10499 (s390_fix_watch_points): Rename to...
10500 (s390_prepare_to_resume): ...this. Skip the PER info update
10501 unless the watch points have changed.
10502 (s390_refresh_per_info, s390_new_thread): New functions.
10503 (s390_insert_watchpoint): Call s390_refresh_per_info instead of
10504 s390_fix_watch_points.
10505 (s390_remove_watchpoint): Likewise.
10506 (_initialize_s390_nat): Reflect renaming of s390_fix_watch_points.
10507 Register s390_prepare_to_resume.
10508
10509 2015-03-09 Pedro Alves <palves@redhat.com>
10510
10511 Revert:
10512 2015-03-07 Pedro Alves <palves@redhat.com>
10513 * common/gdb_socket.h: New file.
10514 * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor
10515 sys/socket.h.
10516 (net_open): Use union gdb_sockaddr_u.
10517
10518 2015-03-07 Pedro Alves <palves@redhat.com>
10519
10520 * configure.ac (build_warnings): Move -Wmissing-prototypes
10521 -Wdeclaration-after-statement -Wmissing-parameter-type
10522 -Wold-style-declaration -Wold-style-definition to the C-specific
10523 set.
10524 * configure: Regenerate.
10525
10526 2015-03-07 Pedro Alves <palves@redhat.com>
10527
10528 * common/gdb_socket.h: New file.
10529 * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor
10530 sys/socket.h.
10531 (net_open): Use union gdb_sockaddr_u.
10532
10533 2015-03-07 Pedro Alves <palves@redhat.com>
10534
10535 * common/common-exceptions.c [!__cplusplus] (enum catcher_state)
10536 (exceptions_state_mc_action_iter)
10537 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
10538 Don't define.
10539 [__cplusplus] (try_scope_depth): New global.
10540 [__cplusplus] (exception_try_scope_entry)
10541 (exception_try_scope_exit, gdb_exception_sliced_copy)
10542 (exception_rethrow): New functions.
10543 (throw_exception): In C++ mode, throw
10544 gdb_exception_RETURN_MASK_QUIT for RETURN_QUIT and
10545 gdb_exception_RETURN_MASK_ERROR for RETURN_ERROR.
10546 (throw_it): In C++ mode, use try_scope_depth.
10547 * common/common-exceptions.h [!__cplusplus]
10548 (exceptions_state_mc_action_iter)
10549 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
10550 Don't declare.
10551 [__cplusplus] (exception_try_scope_entry)
10552 (exception_try_scope_exit, exception_rethrow): Declare.
10553 [__cplusplus] (struct exception_try_scope): New struct.
10554 [__cplusplus] (TRY, CATCH, END_CATCH): Reimplement on top of real
10555 C++ exceptions.
10556 (struct gdb_exception_RETURN_MASK_ALL)
10557 (struct gdb_exception_RETURN_MASK_ERROR)
10558 (struct gdb_exception_RETURN_MASK_QUIT): New types.
10559
10560 2015-03-07 Pedro Alves <palves@redhat.com>
10561
10562 * main.c (handle_command_errors): Remove volatile qualifier from
10563 parameter.
10564
10565 2015-03-07 Pedro Alves <palves@redhat.com>
10566
10567 * breakpoint.c (save_breakpoints): Adjust to avoid code between
10568 TRY and CATCH.
10569 * gdbtypes.c (safe_parse_type): Remove empty line.
10570 (types_deeply_equal):
10571 * guile/scm-frame.c (gdbscm_frame_name):
10572 * linux-thread-db.c (find_new_threads_once):
10573 * python/py-breakpoint.c (bppy_get_commands):
10574 * record-btrace.c (record_btrace_insert_breakpoint)
10575 (record_btrace_remove_breakpoint, record_btrace_start_replaying)
10576 (record_btrace_start_replaying): Adjust to avoid code between TRY
10577 and CATCH.
10578
10579 2015-03-07 Pedro Alves <palves@redhat.com>
10580
10581 * common/common-exceptions.c (struct catcher) <exception>: No
10582 longer a pointer to volatile exception. Now an exception value.
10583 <mask>: Delete field.
10584 (exceptions_state_mc_init): Remove all parameters. Adjust.
10585 (exceptions_state_mc): No longer pop the catcher here.
10586 (exceptions_state_mc_catch): New function.
10587 (throw_exception): Adjust.
10588 * common/common-exceptions.h (exceptions_state_mc_init): Remove
10589 all parameters.
10590 (exceptions_state_mc_catch): Declare.
10591 (TRY_CATCH): Rename to ...
10592 (TRY): ... this. Remove EXCEPTION and MASK parameters.
10593 (CATCH, END_CATCH): New.
10594 All callers adjusted.
10595
10596 2015-03-07 Tom Tromey <tromey@redhat.com>
10597
10598 * top.c (quit_force): Inline and delete DO_TRY, DO_PRINT_EX.
10599
10600 2015-03-07 Pedro Alves <palves@redhat.com>
10601
10602 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
10603 (amd64_epilogue_frame_cache): Normal exception handling code.
10604 * break-catch-throw.c (check_status_exception_catchpoint)
10605 (re_set_exception_catchpoint): Ditto.
10606 * cli/cli-interp.c (safe_execute_command):
10607 * cli/cli-script.c (script_from_file): Ditto.
10608 * compile/compile-c-symbols.c (generate_c_for_for_one_variable):
10609 Ditto.
10610 * compile/compile-object-run.c (compile_object_run): Ditto.
10611 * cp-abi.c (baseclass_offset): Ditto.
10612 * cp-valprint.c (cp_print_value): Ditto.
10613 * exceptions.c (catch_exceptions_with_msg):
10614 * frame-unwind.c (frame_unwind_try_unwinder): Ditto.
10615 * frame.c (get_frame_address_in_block_if_available): Ditto.
10616 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
10617 (i386_sigtramp_frame_cache): Ditto.
10618 * infcmd.c (post_create_inferior): Ditto.
10619 * linespec.c (parse_linespec, find_linespec_symbols):
10620 * p-valprint.c (pascal_object_print_value): Ditto.
10621 * parse.c (parse_expression_for_completion): Ditto.
10622 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
10623 * remote.c (remote_get_noisy_reply): Ditto.
10624 * s390-linux-tdep.c (s390_frame_unwind_cache): Ditto.
10625 * solib-svr4.c (solib_svr4_r_map): Ditto.
10626
10627 2015-03-06 Gary Benson <gbenson@redhat.com>
10628
10629 * common/common-utils.h (startswith): New inline function.
10630 All places where this logic was used updated to use the above.
10631
10632 2015-03-05 Pedro Alves <palves@redhat.com>
10633
10634 PR gdb/18002
10635 * mem-break.c (default_memory_insert_breakpoint): Set shadow_len
10636 after reading the breakpoint's shadow memory.
10637
10638 2015-03-05 Mark Kettenis <kettenis@gnu.org>
10639
10640 * hppabsd-nat.c: Remove file.
10641 * hppaobsd-nat.c: New file.
10642 * Makefile.in (ALLDEPFILES): Remove hppabsd-nat.c. Add
10643 hppaobsd-nat.c.
10644 * config/pa/obsd.mh (NATDEPFILES): Replace hppabsd-nat.o with
10645 hppaobsd-nat.o.
10646
10647 2015-03-04 Pedro Alves <palves@redhat.com>
10648
10649 * target.h (struct target_ops) <to_decr_pc_after_break>: Delete.
10650 (target_decr_pc_after_break): Delete declaration.
10651 * target.c (default_target_decr_pc_after_break)
10652 (target_decr_pc_after_break): Delete.
10653 * linux-nat.c (check_stopped_by_breakpoint, linux_nat_wait_1): Use
10654 gdbarch_decr_pc_after_break instead of target_decr_pc_after_break.
10655 * linux-thread-db.c (check_event): Likewise.
10656 * infrun.c (adjust_pc_after_break): Likewise.
10657 * darwin-nat.c (cancel_breakpoint): Likewise.
10658 * aix-thread.c (aix_thread_wait): Likewise.
10659 * target-delegates.c: Regenerate.
10660
10661 2015-03-04 Pedro Alves <palves@redhat.com>
10662
10663 * linux-nat.c (save_sigtrap): Check for breakpoints before
10664 checking watchpoints.
10665 (status_callback) [USE_SIGTRAP_SIGINFO]: Don't check whether a
10666 breakpoint is inserted if relying on SIGTRAP's siginfo.si_code.
10667 (check_stopped_by_breakpoint) [USE_SIGTRAP_SIGINFO]: Decide whether
10668 a breakpoint triggered based on the SIGTRAP's siginfo.si_code.
10669 (linux_nat_stopped_by_sw_breakpoint)
10670 (linux_nat_supports_stopped_by_sw_breakpoint)
10671 (linux_nat_stopped_by_hw_breakpoint)
10672 (linux_nat_supports_stopped_by_hw_breakpoint): New functions.
10673 (linux_nat_wait_1): Don't re-increment the PC if relying on
10674 SIGTRAP's siginfo->si_code.
10675 (linux_nat_add_target): Install new target methods.
10676 * linux-thread-db.c (check_event): Don't account for breakpoint PC
10677 offset if the target already adjusted the PC.
10678 * nat/linux-ptrace.h (USE_SIGTRAP_SIGINFO): New.
10679 (GDB_ARCH_TRAP_BRKPT): New.
10680 (TRAP_HWBKPT): Define if not already defined.
10681
10682 2015-03-04 Pedro Alves <palves@redhat.com>
10683
10684 * NEWS: Mention the new "swbreak" and "hwbreak" stop reasons.
10685 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p>:
10686 Delete field.
10687 <stop_reason>: New field.
10688 (PACKET_swbreak_feature, PACKET_hwbreak_feature): New enum values.
10689 (packet_set_cmd_state): New function.
10690 (remote_protocol_features): Register the "swbreak" and "hwbreak"
10691 features.
10692 (remote_query_supported): If not disabled with the corresponding
10693 "set remote foo-packet" command, report support for the swbreak
10694 and hwbreak features.
10695 (struct stop_reply) <remote_stopped_by_watchpoint_p>: Delete
10696 field.
10697 <stop_reason>: New field.
10698 (remote_parse_stop_reply): Handle "swbreak" and "hwbreak".
10699 (remote_wait_as): Adjust.
10700 (remote_stopped_by_sw_breakpoint)
10701 (remote_supports_stopped_by_sw_breakpoint)
10702 (remote_stopped_by_hw_breakpoint)
10703 (remote_supports_stopped_by_hw_breakpoint): New functions.
10704 (remote_stopped_by_watchpoint): New function.
10705 (init_remote_ops): Install them.
10706 (_initialize_remote): Register new "set/show remote
10707 swbreak-feature-packet" and "set/show remote
10708 swbreak-feature-packet" commands.
10709
10710 2015-03-04 Pedro Alves <palves@redhat.com>
10711
10712 * btrace.h: Include target/waitstatus.h.
10713 (struct btrace_thread_info) <stop_reason>: New field.
10714 * record-btrace.c (record_btrace_step_thread): Use
10715 record_check_stopped_by_breakpoint instead of breakpoint_here_p.
10716 (record_btrace_decr_pc_after_break): Delete.
10717 (record_btrace_stopped_by_sw_breakpoint)
10718 (record_btrace_supports_stopped_by_sw_breakpoint)
10719 (record_btrace_stopped_by_hw_breakpoint)
10720 (record_btrace_supports_stopped_by_hw_breakpoint): New functions.
10721 (init_record_btrace_ops): Install them.
10722 * record-full.c (record_full_hw_watchpoint): Delete and replace
10723 with ...
10724 (record_full_stop_reason): ... this throughout.
10725 (record_full_exec_insn): Adjust.
10726 (record_full_wait_1): Adjust. No longer re-increment the PC.
10727 (record_full_wait_1): Adjust. Use
10728 record_check_stopped_by_breakpoint instead of breakpoint_here_p.
10729 (record_full_stopped_by_watchpoint): Adjust.
10730 (record_full_stopped_by_sw_breakpoint)
10731 (record_full_supports_stopped_by_sw_breakpoint)
10732 (record_full_supports_stopped_by_sw_breakpoint)
10733 (record_full_stopped_by_hw_breakpoint)
10734 (record_full_supports_stopped_by_hw_breakpoint): New functions.
10735 (init_record_full_ops, init_record_full_core_ops): Install them.
10736 * record.c (record_check_stopped_by_breakpoint): New function.
10737 * record.h: Include target/waitstatus.h.
10738 (record_check_stopped_by_breakpoint): New declaration.
10739
10740 2015-03-04 Pedro Alves <palves@redhat.com>
10741
10742 enum lwp_stop_reason -> enum target_stop_reason
10743 * linux-nat.c (linux_resume_one_lwp, check_stopped_by_watchpoint)
10744 (linux_nat_stopped_by_watchpoint, status_callback)
10745 (linux_nat_wait_1): Adjust.
10746 * linux-nat.h (enum lwp_stop_reason): Delete.
10747 (struct lwp_info) <stop_reason>: Now an enum target_stop_reason.
10748 * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
10749 * target/waitstatus.h (enum target_stop_reason): New.
10750
10751 2015-03-04 Pedro Alves <palves@redhat.com>
10752
10753 * breakpoint.c (need_moribund_for_location_type): New function.
10754 (bpstat_stop_status): Don't skipping checking moribund locations
10755 of breakpoint types which the target tell caused a stop.
10756 (program_breakpoint_here_p): New function, factored out from ...
10757 (bp_loc_is_permanent): ... this.
10758 (update_global_location_list): Don't create a moribund location if
10759 the target supports reporting stops of the type of the removed
10760 breakpoint.
10761 * breakpoint.h (program_breakpoint_here_p): New declaration.
10762 * infrun.c (adjust_pc_after_break): Return early if the target has
10763 already adjusted the PC. Add comments.
10764 (handle_signal_stop): If nothing explains a signal, and the target
10765 tells us the stop was caused by a software breakpoint, check if
10766 there's a breakpoint instruction in the memory. If so, adjust the
10767 PC before presenting the stop to the user. Otherwise, ignore the
10768 trap. If nothing explains a signal, and the target tells us the
10769 stop was caused by a hardware breakpoint, ignore the trap.
10770 * target.h (struct target_ops) <to_stopped_by_sw_breakpoint,
10771 to_supports_stopped_by_sw_breakpoint, to_stopped_by_hw_breakpoint,
10772 to_supports_stopped_by_hw_breakpoint>: New fields.
10773 (target_stopped_by_sw_breakpoint)
10774 (target_supports_stopped_by_sw_breakpoint)
10775 (target_stopped_by_hw_breakpoint)
10776 (target_supports_stopped_by_hw_breakpoint): Define.
10777 * target-delegates.c: Regenerate.
10778
10779 2015-03-04 Pedro Alves <palves@redhat.com>
10780
10781 * infrun.c (follow_fork_inferior): Use the whole of the
10782 inferior_ptid and pending_follow.related_pid ptids instead of
10783 building ptids from the process components. Adjust verbose output
10784 to use target_pid_to_str.
10785 * linux-nat.c (linux_child_follow_fork): Use the whole of the
10786 inferior_ptid and pending_follow.related_pid ptids instead of
10787 building ptids from the process components.
10788
10789 2015-03-04 Mark Kettenis <kettenis@gnu.org>
10790
10791 * inf-ptrace.c [PT_GET_PROCESS_STATE]
10792 (inf_ptrace_insert_fork_catchpoint): New function.
10793 (inf_ptrace_remove_fork_catchpoint): New function.
10794 (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Install them.
10795
10796 2015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
10797
10798 * s390-linux-tdep.c (s390_register_name): Return empty string
10799 instead of NULL for registers that shouldn't be visible.
10800
10801 2015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
10802
10803 * s390-linux-tdep.c (s390_gdbarch_init): Use the correct syscall
10804 XML file for 64-bit targets.
10805
10806 2015-03-03 Simon Marchi <simon.marchi@ericsson.com>
10807
10808 * target.h (find_default_create_inferior): Remove declaration.
10809 (find_default_attach): Likewise.
10810
10811 2015-03-03 Pedro Alves <palves@redhat.com>
10812
10813 * inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace.
10814 Use ptid_get_pid to get the overall process id when resuming all
10815 threads.
10816
10817 2015-03-03 Pedro Alves <palves@redhat.com>
10818
10819 * i386-linux-nat.c (i386_linux_resume): Get the ptrace PID out of
10820 the lwp field of ptid. Pass the full ptid to get_thread_regcache.
10821 * inf-ptrace.c (get_ptrace_pid): New function.
10822 (inf_ptrace_resume): Use it.
10823 * linux-nat.c (linux_resume_one_lwp): Pass the LWP's ptid ummodified
10824 to the lower layer.
10825
10826 2015-03-03 Markus Metzger <markus.t.metzger@intel.com>
10827
10828 * nat/linux-btrace.c: Include sys/utsname.h.
10829 (linux_determine_kernel_ptr_bits): New.
10830 (linux_enable_bts): Call linux_determine_kernel_ptr_bits.
10831 * x86-linux-nat.c (x86_linux_enable_btrace): Do not overwrite non-zero
10832 ptr_bits.
10833
10834 2015-03-03 Markus Metzger <markus.t.metzger@intel.com>
10835
10836 * btrace.c (ftrace_update_function): Treat return as tailcall for
10837 "_dl_runtime_resolve".
10838
10839 2015-03-03 Markus Metzger <markus.t.metzger@intel.com>
10840
10841 * btrace.h (btrace_function) <lbegin, lend>: Remove.
10842 * btrace.c (ftrace_debug): Do not print the line range.
10843 (ftrace_skip_file, ftrace_update_lines): Remove.
10844 (ftrace_new_function): Remove lbegin and lend initialization.
10845 (btrace_compute_ftrace_bts): Remove call to ftrace_update_lines.
10846 * record-btrace.c (btrace_compute_src_line_range): New.
10847 (btrace_call_history_src_line): Call btrace_compute_src_line_range.
10848
10849 2015-03-02 Pedro Alves <palves@redhat.com>
10850
10851 * infrun.c (follow_exec): Delete all threads of the process except
10852 the event thread. Extended comments.
10853
10854 2015-03-02 Joel Brobecker <brobecker@adacore.com>
10855
10856 * contrib/ari/gdb_ari.sh: Reinstate checks for "true" and "false".
10857
10858 2015-03-02 Joel Brobecker <brobecker@adacore.com>
10859
10860 * utils.h: Remove <stdbool.h> #include.
10861 (producer_is_gcc): Change return type to "int".
10862 * utils.c (producer_is_gcc): Change return type to int.
10863 Return 1 instead of true, and 0 instead of false.
10864 Adjust function documentation accordingly.
10865
10866 2015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
10867
10868 * s390-linux-nat.c (have_regset_vxrs): New static variable.
10869 (s390_linux_fetch_inferior_registers): Handle vector registers, if
10870 present.
10871 (s390_linux_store_inferior_registers): Likewise.
10872 (s390_get_hwcap): Remove function. Embed its logic...
10873 (s390_read_description): ...here. Yield a target description with
10874 vector registers if applicable.
10875 * s390-linux-tdep.c: Include "features/s390-vx-linux64.c",
10876 "features/s390-tevx-linux64.c", "features/s390x-vx-linux64.c", and
10877 "features/s390x-tevx-linux64.c".
10878 (struct gdbarch_tdep) <v0_full_regnum>: New field.
10879 (s390_dwarf_regmap): Add vector registers. Remove bogus entries
10880 for "GNU/Linux-specific registers".
10881 (s390_dwarf_reg_r0l): New enum value.
10882 (s390_dwarf_reg_to_regnum): Support vector registers.
10883 (s390_adjust_frame_regnum): Adjust pseudo DWARF register numbers
10884 of GPR lower halves.
10885 (regnum_is_vxr_full): New function.
10886 (s390_register_name): New function.
10887 (s390_pseudo_register_name): Handle v0-v15, which are composed of
10888 f0-f15 and v0l-v15l.
10889 (s390_pseudo_register_type): Likewise.
10890 (s390_pseudo_register_read): Likewise.
10891 (s390_pseudo_register_write): Likewise.
10892 (s390_value_from_register): Account for the fact that values are
10893 placed left-justified in vector registers.
10894 (s390_pseudo_register_reggroup_p): Add pseudo registers v0-v15 to
10895 the vector reggroup and omit them from the general reggroup.
10896 (s390_regmap_vxrs_low, s390_regmap_vxrs_high): New register maps.
10897 (s390_vxrs_low_regset, s390_vxrs_high_regset): New regsets.
10898 (s390_iterate_over_regset_sections): Add iterations for the two
10899 new vector regsets.
10900 (s390_core_read_description): Yield a target description with
10901 vector registers if applicable.
10902 (s390_gdbarch_init): Handle target descriptions with vector
10903 registers. Add "register_name" gdbarch method.
10904 (_initialize_s390_tdep): Call new tdesc initialization functions.
10905 * s390-linux-tdep.h (HWCAP_S390_VX): New macro.
10906 (S390_V0_LOWER_REGNUM, S390_V1_LOWER_REGNUM, S390_V2_LOWER_REGNUM)
10907 (S390_V3_LOWER_REGNUM, S390_V4_LOWER_REGNUM, S390_V5_LOWER_REGNUM)
10908 (S390_V6_LOWER_REGNUM, S390_V7_LOWER_REGNUM, S390_V8_LOWER_REGNUM)
10909 (S390_V9_LOWER_REGNUM, S390_V10_LOWER_REGNUM)
10910 (S390_V11_LOWER_REGNUM, S390_V12_LOWER_REGNUM)
10911 (S390_V13_LOWER_REGNUM, S390_V14_LOWER_REGNUM)
10912 (S390_V15_LOWER_REGNUM, S390_V16_REGNUM, S390_V17_REGNUM)
10913 (S390_V18_REGNUM, S390_V19_REGNUM, S390_V20_REGNUM)
10914 (S390_V21_REGNUM, S390_V22_REGNUM, S390_V23_REGNUM)
10915 (S390_V24_REGNUM, S390_V25_REGNUM, S390_V26_REGNUM)
10916 (S390_V27_REGNUM, S390_V28_REGNUM, S390_V29_REGNUM)
10917 (S390_V30_REGNUM, S390_V31_REGNUM): New macros.
10918 (S390_NUM_REGS): Adjust value.
10919 (s390_vxrs_low_regset, s390_vxrs_high_regset): Declare.
10920 (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64)
10921 (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): Likewise.
10922 * NEWS: Announce S/390 vector register support.
10923
10924 2015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
10925
10926 * features/s390-tevx-linux64.xml: New file.
10927 * features/s390-vx-linux64.xml: New file.
10928 * features/s390-vx.xml: New file.
10929 * features/s390x-tevx-linux64.xml: New file.
10930 * features/s390x-vx-linux64.xml: New file.
10931 * features/Makefile (WHICH): Add s390-vx-linux64,
10932 s390x-vx-linux64, s390-tevx-linux64, and s390x-tevx-linux64.
10933 (s390-vx-linux64-expedite, s390-tevx-linux64-expedite)
10934 (s390x-vx-linux64-expedite, s390x-tevx-linux64-expedite): New
10935 macros.
10936 * features/s390-tevx-linux64.c: New generated file.
10937 * features/s390-vx-linux64.c: Likewise.
10938 * features/s390x-tevx-linux64.c: Likewise.
10939 * features/s390x-vx-linux64.c: Likewise.
10940 * regformats/s390-tevx-linux64.dat: Likewise.
10941 * regformats/s390-vx-linux64.dat: Likewise.
10942 * regformats/s390x-tevx-linux64.dat: Likewise.
10943 * regformats/s390x-vx-linux64.dat: Likewise.
10944
10945 2015-02-28 Doug Evans <xdje42@gmail.com>
10946
10947 * symtab.h (struct symtab) <next>: Fix comment.
10948
10949 2015-02-27 Simon Marchi <simon.marchi@ericsson.com>
10950
10951 * python/python.c (python_GdbModuleDef): Rename GdbMethods to
10952 python_GdbMethods.
10953
10954 2015-02-27 Pedro Alves <palves@redhat.com>
10955
10956 * dtrace-probe.c (dtrace_probe_ops): Make extern.
10957
10958 2015-02-27 Pedro Alves <palves@redhat.com>
10959
10960 * common/common-exceptions.h (exception_none): Declare.
10961 * common/common-exceptions.c (exception_none): Moved from
10962 exceptions.c.
10963 (exceptions_state_mc_init): Use exception_none.
10964 * exceptions.c (exception_none): Move to
10965 common/common-exceptions.c.
10966 * exceptions.h (exception_none): Move to
10967 common/common-exceptions.h.
10968
10969 2015-02-27 Pedro Alves <palves@redhat.com>
10970
10971 * main.c (catch_command_errors, catch_command_errors_const):
10972 Remove 'mask' argument. Adjust.
10973 (captured_main): Adjust callers.
10974
10975 2015-02-27 Pedro Alves <palves@redhat.com>
10976
10977 * python/python-internal.h: Include "extension-priv.h".
10978
10979 2015-02-27 Pedro Alves <palves@redhat.com>
10980
10981 * breakpoint.h (enum print_stop_action): Move further up in the
10982 file.
10983
10984 2015-02-27 Pedro Alves <palves@redhat.com>
10985
10986 * gdbarch.sh: Include regcache.h.
10987 * gdbarch.h: Regenerate.
10988
10989 2015-02-27 Pedro Alves <palves@redhat.com>
10990
10991 * arm-tdep.c (decode_insn) <arm_handle_insn, thumb_handle_insn>:
10992 Remove duplicate const.
10993 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Remove
10994 duplicate const.
10995
10996 2015-02-27 Pedro Alves <palves@redhat.com>
10997
10998 * cp-valprint.c (vtbl_ptr_name): Use EXPORTED_CONST.
10999 * guile/guile.c (extension_language_guile): Use EXPORTED_CONST.
11000 * features/feature_to_c.sh: Tag the generated xml_builtin array
11001 with extern const in C++ mode.
11002
11003 2015-02-27 Tom Tromey <tromey@redhat.com>
11004
11005 * minidebug.c (struct lzma_stream): Rename to ...
11006 (struct gdb_lzma_stream): ... this.
11007 (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust.
11008
11009 2015-02-27 Pedro Alves <palves@redhat.com>
11010
11011 * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New
11012 function.
11013 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
11014 (mi_cmd_stack_list_variables): Use it.
11015
11016 2015-02-27 Pedro Alves <palves@redhat.com>
11017
11018 * x86-linux-nat.c (u_debugreg_offset): New function.
11019 (x86_linux_dr_get, x86_linux_dr_set): Use it.
11020
11021 2015-02-27 Pedro Alves <palves@redhat.com>
11022
11023 * nat/x86-dregs.h (enum target_hw_bp_type): Remove forward
11024 declaration.
11025 Include break-common.h.
11026
11027 2015-02-27 Tom Tromey <tromey@redhat.com>
11028 Pedro Alves <palves@redhat.com>
11029
11030 * arm-tdep.c (set_fp_model_sfunc, arm_set_abi): Use 'int' for
11031 local used to iterate over enums.
11032 * completer.c (signal_completer): Likewise.
11033 * i386-tdep.c (i386_stap_parse_special_token): Likewise.
11034 * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
11035 * tui/tui-data.c (tui_next_win, tui_prev_win): Likewise.
11036 * tui/tui-layout.c (next_layout, prev_layout): Likewise.
11037 * tui/tui-win.c (tui_refresh_all_win, tui_rehighlight_all)
11038 (tui_resize_all, tui_set_focus_command, tui_all_windows_info): Likewise.
11039 * tui-wingeneral.c (tui_refresh_all): Likewise.
11040
11041 2015-02-27 Pedro Alves <palves@redhat.com>
11042
11043 * target.h: Include "infrun.h".
11044
11045 2015-02-27 Pedro Alves <palves@redhat.com>
11046
11047 * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP.
11048
11049 2015-02-27 Pedro Alves <palves@redhat.com>
11050
11051 * common/agent.h (IPA_SYM_EXPORTED_NAME): New.
11052 (IPA_SYM): Use it.
11053 * common/common-defs.h (EXTERN_C_PUSH, EXTERN_C_POP): New macros.
11054
11055 2015-02-27 Pedro Alves <palves@redhat.com>
11056
11057 * cli-out.c (_rl_erase_entire_line): Move declaration out of
11058 cli_mld_erase_entire_line, and make it extern "C".
11059 * common/common-defs.h (EXTERN_C): New.
11060 * completer.c (_rl_completion_prefix_display_length)
11061 (_rl_print_completions_horizontally, QSFUNC): Move declarations
11062 out of gdb_display_match_list_1.
11063 (_rl_qsort_string_compare): Move declaration out of
11064 gdb_display_match_list_1, and make it extern "C".
11065 * defs.h (re_comp): Use EXTERN_C.
11066 * maint.c (_mcleanup): Move declaration out of mcleanup_wrapper,
11067 and make it extern "C".
11068 (monstartup): Move declaration out of maintenance_set_profile_cmd,
11069 and make it extern "C".
11070 (main): Move declaration out of maintenance_set_profile_cmd.
11071 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string): Use
11072 EXTERN_C.
11073
11074 2015-02-27 Pedro Alves <palves@redhat.com>
11075
11076 * python/python.c (GdbMethods): Rename to ...
11077 (python_GdbMethods): ... this and make extern.
11078 (GdbModuleDef): Rename to ...
11079 (python_GdbModuleDef): ... this and make extern.
11080
11081 2015-02-27 Pedro Alves <palves@redhat.com>
11082
11083 * record-btrace.c (set_record_btrace_cmdlist)
11084 (show_record_btrace_cmdlist): Remove redefinitions.
11085
11086 2015-02-27 Tom Tromey <tromey@redhat.com>
11087 Pedro Alves <palves@redhat.com>
11088
11089 * dwarf2-frame.c (enum cfa_how_kind, struct
11090 dwarf2_frame_state_reg_info): Move out of struct
11091 dwarf2_frame_state.
11092 * dwarf2read.c (struct tu_stats): Move out of struct
11093 dwarf2_per_objfile.
11094 (struct file_entry): Move out of struct line_header.
11095 (struct nextfield, struct nextfnfield, struct fnfieldlist, struct
11096 typedef_field_list): Move out of struct field_info.
11097 * gdbtypes.h (enum dynamic_prop_kind, union dynamic_prop_data):
11098 Move out of struct dynamic_prop.
11099 (union type_owner, union field_location, struct field, struct
11100 range_bounds, union type_specific): Move out of struct main_type.
11101 (struct fn_fieldlist, struct fn_field, struct typedef_field)
11102 (VOFFSET_STATIC): Move out of struct cplus_struct_type.
11103 (struct call_site_target, union call_site_parameter_u, struct
11104 call_site_parameter): Move out of struct call_site.
11105 * m32c-tdep.c (enum m32c_prologue_kind): Move out of struct
11106 m32c_prologue.
11107 (enum srcdest_kind): Move out of struct srcdest.
11108 * main.c (enum cmdarg_kind): Move out of struct cmdarg.
11109 * prologue-value.h (enum prologue_value_kind): Move out of struct
11110 prologue_value.
11111 * s390-linux-tdep.c (enum s390_abi_kind): Move out of struct
11112 gdbarch_tdep.
11113 * stabsread.c (struct nextfield, struct next_fnfieldlist): Move
11114 out of struct field_info.
11115 * symfile.h (struct other_sections): Move out of struct
11116 section_addr_info.
11117 * symtab.c (struct symbol_cache_slot): Move out struct
11118 block_symbol_cache.
11119 * target-descriptions.c (enum tdesc_type_kind): Move out of
11120 typedef struct tdesc_type.
11121 * tui/tui-data.h (enum tui_line_or_address_kind): Move out of
11122 struct tui_line_or_address.
11123 * value.c (enum internalvar_kind, union internalvar_data): Move
11124 out of struct internalvar.
11125 * xtensa-tdep.h (struct ctype_cache): Move out of struct
11126 gdbarch_tdep.
11127
11128 2015-02-27 Tom Tromey <tromey@redhat.com>
11129 Pedro Alves <palves@redhat.com>
11130
11131 Rename symbols whose names are reserved C++ keywords throughout.
11132
11133 2015-02-27 Pedro Alves <palves@redhat.com>
11134
11135 * Makefile.in (COMPILER): New, get it from autoconf.
11136 (COMPILE.pre, CC_LD): Use COMPILER.
11137 (CXX): Get from autoconf instead.
11138 (CXX_FOR_TARGET): Default to g++ instead of gcc.
11139 * acinclude.m4: Include build-with-cxx.m4.
11140 * build-with-cxx.m4: New file.
11141 * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX.
11142 Disable -Werror by default if building in C++ mode.
11143 (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and
11144 -Wno-narrowing in C++ mode. Only enable -Wpointer-sign in C mode.
11145 Run supported-warning-flags tests with the C++ compiler.
11146 Save/restore CXXFLAGS too.
11147 * configure: Regenerate.
11148
11149 2015-02-27 Pedro Alves <palves@redhat.com>
11150
11151 * libiberty.m4: New file.
11152 * acinclude.m4: Include libiberty.m4.
11153 * configure.ac: Call libiberty_INIT.
11154 * config.in, configure: Regenerate.
11155
11156 2015-02-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
11157
11158 * s390-linux-tdep.c (s390_gcc_target_options): Not just handle
11159 31-bit targets, but 64-bit targets as well.
11160 (s390_gnu_triplet_regexp): New function.
11161 (s390_gdbarch_init): Set the gcc_target_options gdbarch method for
11162 64-bit targets as well. Set the gnu_triplet_regexp gdbarch
11163 method.
11164
11165 2015-02-27 Jon TURNEY <jon.turney@dronecode.org.uk> (tiny patch)
11166
11167 * windows-nat.c (CONTEXT_DEBUGGER): Remove.
11168 (CONTEXT_DEBUGGER_DR): Add CONTEXT_SEGMENTS. Incorporate flags
11169 from CONTEXT_DEBUGGER.
11170
11171 2015-02-26 Doug Evans <dje@google.com>
11172
11173 * gdbtypes.c (internal_type_vptr_fieldno): Add missing call to
11174 CHECK_TYPEDEF.
11175 (set_type_vptr_fieldno): Ditto.
11176 (internal_type_vptr_basetype, set_type_vptr_basetype): Ditto.
11177 * gnu-v3-abi.c (gnuv3_dynamic_class): Ditto.
11178
11179 2015-02-26 Pedro Alves <palves@redhat.com>
11180
11181 * auto-load.h (file_is_auto_load_safe): Add ATTRIBUTE_PRINTF.
11182 * complaints.c (vcomplaint): Pass argument FMT directly to
11183 printf-like functions instead of complaint->fmt.
11184 * ctf.c (ctf_save_write_metadata): Add ATTRIBUTE_PRINTF.
11185 * darwin-nat.c (inferior_debug): Add ATTRIBUTE_PRINTF.
11186 * compile/compile-loc2c.c (pushf, unary, binary): Add
11187 ATTRIBUTE_PRINTF.
11188 (do_compile_dwarf_expr_to_c): Pass string literal as format string
11189 to pushf.
11190 (BINARY): Pass string literal as format string to 'binary'.
11191 * compile/compile-object-load.c (link_callbacks_einfo): Add
11192 ATTRIBUTE_PRINTF.
11193 * guile/guile-internal.h (gdbscm_printf): Add ATTRIBUTE_PRINTF.
11194
11195 2015-02-26 Pedro Alves <palves@redhat.com>
11196
11197 * windows-termcap.c: Rename to ...
11198 * stub-termcap.c: ... this. Adjust header line.
11199 * Makefile.in (SFILES): Refer to stub-termcap.c instead of
11200 windows-termcap.c.
11201 * configure: Regenerate.
11202 * configure.ac: Refer to stub-termcap.o instead of
11203 windows-termcap.o.
11204 * gdb_curses.h: Mention stub-termcap.c instead of
11205 windows-termcap.c.
11206
11207 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
11208
11209 * compile/compile-c-symbols.c (convert_one_symbol, convert_symbol_bmsym)
11210 (gcc_symbol_address): Call gnu_ifunc_resolve_addr.
11211
11212 2015-02-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
11213
11214 * gdb/infcmd.c (print_return_value): use type_to_string to print type.
11215
11216 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
11217
11218 * elfread.c (elf_read_minimal_symbols): Use bfd_alloc for
11219 bfd_canonicalize_symtab.
11220
11221 2015-02-25 John Baldwin <jhb@FreeBSD.org>
11222
11223 * amd64fbsd-nat.c: Include sys/user.h.
11224 (_initialize_amd64fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
11225 instead of KERN_PS_STRINGS to locate the signal trampoline.
11226 * i386fbsd-nat.c: Include sys/user.h.
11227 (_initialize_i386fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
11228 instead of KERN_PS_STRINGS to locate the signal trampoline.
11229 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_code): New.
11230 (amd64fbsd_sigtramp_p): New.
11231 (amd64fbsd_sigtramp_start_addr, amd64fbsd_sigtramp_end_addr): No
11232 longer set default values.
11233 (amd64fbsd_init_abi): Set "sigtramp_p" to "amd64fbsd_sigtramp_p".
11234 * i386fbsd-tdep.c (i386fbsd_sigtramp_start)
11235 (i386fbsd_sigtramp_middle, i386fbsd_sigtramp_end)
11236 (i386fbsd_freebsd4_sigtramp_start)
11237 (i386fbsd_freebsd4_sigtramp_middle)
11238 (i386fbsd_freebsd4_sigtramp_end, i386fbsd_osigtramp_start)
11239 (i386fbsd_osigtramp_middle, i386fbsd_osigtramp_end): New.
11240 (i386fbsd_sigtramp_p): New.
11241 (i386fbsd_sigtramp_start_addr, i386fbsd_sigtramp_end_addr): No
11242 longer set default values.
11243 (i386fbsd_init_abi): Set "sigtramp_p" to "i386fbsd_sigtramp_p".
11244
11245 2015-02-25 John Baldwin <jhb@freebsd.org>
11246
11247 * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use
11248 get_frame_register instead of frame_unwind_register_unsigned.
11249
11250 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
11251
11252 PR build/18033
11253 * compile/compile-c-support.c (c_compute_program): Change // comment.
11254 * compile/compile-object-load.c (setup_sections): Change // comment.
11255
11256 2015-02-26 Joel Brobecker <brobecker@adacore.com>
11257
11258 PR build/18033:
11259 * iq2000-tdep.c (iq2000_frame_cache): Delete C++-style comment.
11260
11261 2015-02-23 Pedro Alves <palves@redhat.com>
11262
11263 * remote.c (skip_to_semicolon): New function.
11264 (remote_parse_stop_reply) <T stop reply>: Use it. Don't
11265 special case the stop reasons that look like hex numbers
11266 upfront. Instead handle real register numbers after matching
11267 all the known stop reasons.
11268
11269 2015-02-21 Doug Evans <dje@google.com>
11270
11271 PR c++/17976, symtab/17821
11272 * cp-namespace.c (cp_search_static_and_baseclasses): New parameter
11273 is_in_anonymous. All callers updated.
11274 (find_symbol_in_baseclass): Ditto.
11275 (cp_lookup_nested_symbol_1): Ditto. Don't search all static blocks
11276 for symbols in an anonymous namespace.
11277 * dwarf2read.c (namespace_name): Don't call dwarf2_name, fetch
11278 DW_AT_name directly.
11279 (dwarf2_name): Convert missing namespace name to
11280 CP_ANONYMOUS_NAMESPACE_STR.
11281
11282 2015-02-20 Pedro Alves <palves@redhat.com>
11283
11284 * linux-nat.c (linux_handle_extended_wait): Call
11285 thread_db_notice_clone whenever a new clone LWP is detected.
11286 (linux_stop_and_wait_all_lwps, linux_unstop_all_lwps): New
11287 functions.
11288 * linux-nat.h (thread_db_attach_lwp): Delete declaration.
11289 (thread_db_notice_clone, linux_stop_and_wait_all_lwps)
11290 (linux_unstop_all_lwps): Declare.
11291 * linux-thread-db.c (struct thread_get_info_inout): Delete.
11292 (thread_get_info_callback): Delete.
11293 (thread_from_lwp): Use td_thr_get_info and record_thread.
11294 (thread_db_attach_lwp): Delete.
11295 (thread_db_notice_clone): New function.
11296 (try_thread_db_load_1): If /proc is mounted and shows the
11297 process'es task list, walk over all LWPs and call thread_from_lwp
11298 instead of relying on td_ta_thr_iter.
11299 (attach_thread): Don't call check_thread_signals here. Split the
11300 tail part of the function (which adds the thread to the core GDB
11301 thread list) to ...
11302 (record_thread): ... this function. Call check_thread_signals
11303 here.
11304 (thread_db_wait): Don't call thread_db_find_new_threads_1. Always
11305 call thread_from_lwp.
11306 (thread_db_update_thread_list): Rename to ...
11307 (thread_db_update_thread_list_org): ... this.
11308 (thread_db_update_thread_list): New function.
11309 (thread_db_find_thread_from_tid): Delete.
11310 (thread_db_get_ada_task_ptid): Simplify.
11311 * nat/linux-procfs.c: Include <sys/stat.h>.
11312 (linux_proc_task_list_dir_exists): New function.
11313 * nat/linux-procfs.h (linux_proc_task_list_dir_exists): Declare.
11314
11315 2015-02-20 Pedro Alves <palves@redhat.com>
11316
11317 * linux-nat.c (lin_lwp_attach_lwp): No longer special case the
11318 main LWP. Handle the case of waitpid returning 0 if we're already
11319 attached to the LWP. Don't set the LWP's last_resume_kind to
11320 resume_stop if we already knew about the LWP.
11321 (linux_nat_filter_event): Add debug logs.
11322
11323 2015-02-20 Pedro Alves <palves@redhat.com>
11324
11325 * target.h (forward_target_decr_pc_after_break): Delete
11326 declaration.
11327
11328 2015-02-20 Pedro Alves <palves@redhat.com>
11329
11330 PR threads/18006
11331 * linux-thread-db.c (thread_get_info_callback): Return early if
11332 the thread's lwp id is -1.
11333
11334 2015-02-20 Joel Brobecker <brobecker@adacore.com>
11335
11336 GDB 7.9 released.
11337
11338 2015-02-19 Steve Ellcey <sellcey@imgtec.com>
11339
11340 * dtrace-probe.c (dtrace_process_dof_probe): Initialize arg.expr.
11341 (dtrace_get_probes) Change type of variable 'dof'.
11342
11343 2015-02-19 Antoine Tremblay <antoine.tremblay@ericsson.com>
11344
11345 PR breakpoints/16812
11346 * linux-nat.c (linux_nat_filter_event): Report SIGTRAP,SIGILL,SIGSEGV.
11347 * nat/linux-ptrace.c (linux_wstatus_maybe_breakpoint): Add.
11348 * nat/linux-ptrace.h: Add linux_wstatus_maybe_breakpoint.
11349
11350 2015-02-19 David Taylor <dtaylor@emc.com>
11351
11352 * common/ax.def (setv): Fix consumed entry in setv DEFOP.
11353
11354 2015-02-18 Patrick Palka <patrick@parcs.ath.cx>
11355
11356 * tui/tui-io.c (tui_handle_resize_during_io): Remove this
11357 function.
11358 (tui_putc): Don't call tui_handle_resize_during_io.
11359 (tui_getc): Likewise.
11360 (tui_mld_getc): Likewise.
11361 * tui/tui-win.c: Include event-loop.h and tui/tui-io.h.
11362 (tui_sigwinch_token): New static variable.
11363 (tui_initialize_win): Adjust documentation. Set
11364 tui_sigwinch_token.
11365 (tui_async_resize_screen): New asynchronous callback.
11366 (tui_sigwinch_handler): Adjust documentation. Asynchronously
11367 invoke tui_async_resize_screen.
11368
11369 2015-02-18 Jose E. Marchesi <jose.marchesi@oracle.com>
11370
11371 * configure: Regenerated.
11372 * configure.ac: Use GDB_AC_TRANSFORM.
11373 * Makefile.in (aclocal_m4_deps): Added transform.m4.
11374 * acinclude.m4: sinclude transform.m4.
11375 * transform.m4: New file.
11376 (GDB_AC_TRANSFORM): New macro.
11377
11378 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11379
11380 * NEWS: Announce the support for DTrace SDT probes.
11381
11382 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11383
11384 * amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h".
11385 (amd64_dtrace_parse_probe_argument): New function.
11386 (amd64_dtrace_probe_is_enabled): Likewise.
11387 (amd64_dtrace_enable_probe): Likewise.
11388 (amd64_dtrace_disable_probe): Likewise.
11389 (amd64_linux_init_abi): Register the
11390 `gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe',
11391 `gdbarch_dtrace_disable_probe' and
11392 `gdbarch_dtrace_probe_is_enabled' hooks.
11393 (amd64_dtrace_disabled_probe_sequence_1): New constant.
11394 (amd64_dtrace_disabled_probe_sequence_2): Likewise.
11395 (amd64_dtrace_enable_probe_sequence): Likewise.
11396 (amd64_dtrace_disable_probe_sequence): Likewise.
11397
11398 2015-01-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11399
11400 * breakpoint.c (BREAK_ARGS_HELP): Help string updated to mention
11401 the -probe-dtrace new vpossible value for PROBE_MODIFIER.
11402 * configure.ac (CONFIG_OBS): dtrace-probe.o added if BFD can
11403 handle ELF files.
11404 * Makefile.in (SFILES): dtrace-probe.c added.
11405 * configure: Regenerate.
11406 * dtrace-probe.c: New file.
11407 (SHT_SUNW_dof): New constant.
11408 (dtrace_probe_type): New enum.
11409 (dtrace_probe_arg): New struct.
11410 (dtrace_probe_arg_s): New typedef.
11411 (struct dtrace_probe_enabler): New struct.
11412 (dtrace_probe_enabler_s): New typedef.
11413 (dtrace_probe): New struct.
11414 (dtrace_probe_is_linespec): New function.
11415 (dtrace_dof_sect_type): New enum.
11416 (dtrace_dof_dofh_ident): Likewise.
11417 (dtrace_dof_encoding): Likewise.
11418 (DTRACE_DOF_ENCODE_LSB): Likewise.
11419 (DTRACE_DOF_ENCODE_MSB): Likewise.
11420 (dtrace_dof_hdr): New struct.
11421 (dtrace_dof_sect): Likewise.
11422 (dtrace_dof_provider): Likewise.
11423 (dtrace_dof_probe): Likewise.
11424 (DOF_UINT): New macro.
11425 (DTRACE_DOF_PTR): Likewise.
11426 (DTRACE_DOF_SECT): Likewise.
11427 (dtrace_process_dof_probe): New function.
11428 (dtrace_process_dof): Likewise.
11429 (dtrace_build_arg_exprs): Likewise.
11430 (dtrace_get_arg): Likewise.
11431 (dtrace_get_probes): Likewise.
11432 (dtrace_get_probe_argument_count): Likewise.
11433 (dtrace_can_evaluate_probe_arguments): Likewise.
11434 (dtrace_evaluate_probe_argument): Likewise.
11435 (dtrace_compile_to_ax): Likewise.
11436 (dtrace_probe_destroy): Likewise.
11437 (dtrace_gen_info_probes_table_header): Likewise.
11438 (dtrace_gen_info_probes_table_values): Likewise.
11439 (dtrace_probe_is_enabled): Likewise.
11440 (dtrace_probe_ops): New variable.
11441 (info_probes_dtrace_command): New function.
11442 (_initialize_dtrace_probe): Likewise.
11443 (dtrace_type_name): Likewise.
11444
11445 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11446
11447 * gdbarch.sh (dtrace_parse_probe_argument): New.
11448 (dtrace_probe_is_enabled): Likewise.
11449 (dtrace_enable_probe): Likewise.
11450 (dtrace_disable_probe): Likewise.
11451 * gdbarch.c: Regenerate.
11452 * gdbarch.h: Regenerate.
11453
11454 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11455
11456 * stap-probe.c (stap_probe_ops): Add NULLs in the static
11457 stap_probe_ops for `enable_probe' and `disable_probe'.
11458 * probe.c (enable_probes_command): New function.
11459 (disable_probes_command): Likewise.
11460 (_initialize_probe): Define the cli commands `enable probe' and
11461 `disable probe'.
11462 (parse_probe_linespec): New function.
11463 (info_probes_for_ops): Use parse_probe_linespec.
11464 * probe.h (probe_ops): New hooks `enable_probe' and
11465 `disable_probe'.
11466
11467 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11468
11469 * probe.c (compute_probe_arg): Moved from stap-probe.c
11470 (compile_probe_arg): Likewise.
11471 (probe_funcs): Likewise.
11472 * stap-probe.c (compute_probe_arg): Moved to probe.c.
11473 (compile_probe_arg): Likewise.
11474 (probe_funcs): Likewise.
11475
11476 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11477
11478 * probe.c (print_ui_out_not_applicables): New function.
11479 (exists_probe_with_pops): Likewise.
11480 (info_probes_for_ops): Do not include column headers for probe
11481 types for which no probe has been actually found on any object.
11482 Also invoke `print_ui_out_not_applicables' in order to match the
11483 column rows with the header when probes of several types are
11484 listed.
11485 Print the "Type" column.
11486 * probe.h (probe_ops): Added a new probe operation `type_name'.
11487 * stap-probe.c (stap_probe_ops): Add `stap_type_name'.
11488 (stap_type_name): New function.
11489
11490 2015-02-17 Patrick Palka <patrick@parcs.ath.cx>
11491
11492 * tui/tui-io.c (tui_getc): Don't call key_is_command_char.
11493 (key_is_command_char): Delete.
11494
11495 2015-02-17 Pedro Alves <palves@redhat.com>
11496
11497 * tui/tui.c (tui_enable): Resize windows before anything
11498 might show a window.
11499
11500 2015-02-17 Max Ostapenko <m.ostapenko@partner.samsung.com>
11501
11502 PR gdb/17984
11503 * aarch64-linux-nat.c: Don't include features/aarch64.c anymore.
11504 (aarch64_linux_read_description): Remove initialize_tdesc_aarch64
11505 call.
11506 * aarch64-tdep.h (tdesc_aarch64): Declare.
11507
11508 2015-02-12 Mark Wielaard <mjw@redhat.com>
11509
11510 * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false".
11511
11512 2015-02-13 Doug Evans <dje@google.com>
11513
11514 * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter
11515 anonymous_namespace to is_in_anonymous for consistency with the rest
11516 of the file.
11517 (cp_lookup_bare_symbol): Fix typo in comment.
11518 (cp_search_static_and_baseclasses): Ditto.
11519 (search_symbol_list): Use vertical space in comment better.
11520 (reset_directive_searched): Ditto. Fix typo.
11521 (cp_lookup_nested_symbol_1): Clarify contents of NESTED_NAME parameter.
11522
11523 2015-02-13 Yao Qi <yao.qi@arm.com>
11524
11525 * MAINTAINERS: Update my email address.
11526
11527 2015-02-12 Doug Evans <dje@google.com>
11528
11529 * symtab.c (completion_list_add_name): Fix memory leak.
11530
11531 2015-02-12 Doug Evans <dje@google.com>
11532
11533 * completer.c (complete_line): Remove incorrect comment.
11534
11535 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11536
11537 * python/py-framefilter.c (py_print_single_arg, enumerate_locals)
11538 (py_print_frame): Use RETURN_MASK_ERROR.
11539
11540 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11541
11542 * python/py-framefilter.c (py_print_frame): Mention RETURN_QUIT in
11543 function comment. Wrap all function that can throw in cleanups.
11544 (gdbpy_apply_frame_filter): Wrap all function that can throw in
11545 cleanups.
11546
11547 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11548
11549 * python/py-framefilter.c (py_print_frame): Substitute goto error.
11550 Remove the error label.
11551
11552 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11553
11554 * python/py-framefilter.c (py_print_frame): Put conditional code paths
11555 with goto first, indent the former else codepath left. Put variable
11556 'elided' to a new inner block.
11557
11558 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11559
11560 * python/py-framefilter.c (py_print_frame): Whitespacing fixes.
11561
11562 2015-02-11 Pedro Alves <palves@redhat.com>
11563
11564 * xcoffread.c (within_function): Delete.
11565
11566 2015-02-11 Tom Tromey <tromey@redhat.com>
11567 Pedro Alves <palves@redhat.com>
11568
11569 * breakpoint.c (base_breakpoint_ops): Delete.
11570 * dwarf2loc.c (dwarf_expr_ctx_funcs): Make extern.
11571 * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_lazy_psyms): Make extern.
11572 * guile/guile.c (guile_extension_script_ops, guile_extension_ops): Make extern.
11573 * ppcnbsd-tdep.c (ppcnbsd2_sigtramp): Make extern.
11574 * python/py-arch.c (arch_object_type): Make extern.
11575 * python/py-block.c (block_syms_iterator_object_type): Make extern.
11576 * python/py-bpevent.c (breakpoint_event_object_type): Make extern.
11577 * python/py-cmd.c (cmdpy_object_type): Make extern.
11578 * python/py-continueevent.c (continue_event_object_type)
11579 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove 'qual'
11580 parameter. Update all callers.
11581 * python/py-evtregistry.c (eventregistry_object_type): Make extern.
11582 * python/py-exitedevent.c (exited_event_object_type): Make extern.
11583 * python/py-finishbreakpoint.c (finish_breakpoint_object_type): Make extern.
11584 * python/py-function.c (fnpy_object_type): Make extern.
11585 * python/py-inferior.c (inferior_object_type, membuf_object_type): Make extern.
11586 * python/py-infevents.c (call_pre_event_object_type)
11587 (inferior_call_post_event_object_type).
11588 (memory_changed_event_object_type): Make extern.
11589 * python/py-infthread.c (thread_object_type): Make extern.
11590 * python/py-lazy-string.c (lazy_string_object_type): Make extern.
11591 * python/py-linetable.c (linetable_entry_object_type)
11592 (linetable_object_type, ltpy_iterator_object_type): Make extern.
11593 * python/py-newobjfileevent.c (new_objfile_event_object_type)
11594 (clear_objfiles_event_object_type): Make extern.
11595 * python/py-objfile.c (objfile_object_type): Make extern.
11596 * python/py-param.c (parmpy_object_type): Make extern.
11597 * python/py-progspace.c (pspace_object_type): Make extern.
11598 * python/py-signalevent.c (signal_event_object_type): Make extern.
11599 * python/py-symtab.c (symtab_object_type, sal_object_type): Make extern.
11600 * python/py-type.c (type_object_type, field_object_type)
11601 (type_iterator_object_type): Make extern.
11602 * python/python.c (python_extension_script_ops)
11603 (python_extension_ops): Make extern.
11604 * stap-probe.c (stap_probe_ops): Make extern.
11605
11606 2015-02-11 Pedro Alves <pedro@codesourcery.com>
11607
11608 * infrun.c (adjust_pc_after_break): Don't adjust the PC just
11609 because the event thread is not the current thread.
11610
11611 2015-02-11 Doug Evans <xdje42@gmail.com>
11612
11613 * gdbtypes.c (internal_type_self_type): If TYPE_SPECIFIC_FIELD hasn't
11614 been initialized yet, return NULL.
11615
11616 2015-02-11 Doug Evans <dje@google.com>
11617
11618 * symfile.h (new_symfile_objfile): Delete.
11619 * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile.
11620 All callers updated.
11621
11622 2015-02-11 Patrick Palka <patrick@parcs.ath.cx>
11623
11624 * tui/tui-io.c (tui_handle_resize_during_io): Call
11625 tui_update_gdb_sizes() after resizing the screen.
11626 * tui/tui.c (tui_enable): Resize the terminal before
11627 calling tui_update_gdb_sizes().
11628
11629 2015-02-11 Patrick Palka <patrick@parcs.ath.cx>
11630
11631 * tui/tui-io.c (tui_getc): Move cursor to the end of the command
11632 line before printing a newline.
11633
11634 2015-02-11 Mark Wielaard <mjw@redhat.com>
11635
11636 * utils.c (producer_is_gcc): Return true or false.
11637
11638 2015-02-10 Mark Wielaard <mjw@redhat.com>
11639
11640 * utils.h (producer_is_gcc): Change return type to bool. Add major
11641 argument.
11642 * utils.c (producer_is_gcc): Likewise.
11643 (producer_is_gcc_ge_4): Adjust producer_is_gcc call.
11644 * dwarf2read.c (check_producer): Likewise.
11645
11646 2015-02-10 Pedro Alves <palves@redhat.com>
11647
11648 * infrun.c (displaced_step_fixup): Switch to the event thread
11649 before calling gdbarch_displaced_step_fixup.
11650
11651 2015-02-10 Antoine Tremblay <antoine.tremblay@ericsson.com>
11652
11653 * MAINTAINERS (Write After Approval): Add Antoine Tremblay.
11654
11655 2015-02-10 Simon Marchi <simon.marchi@ericsson.com>
11656
11657 * ada-varobj.c (ada_name_of_child): Constify parent.
11658 (ada_path_expr_of_child): Same.
11659 (ada_value_of_child): Same.
11660 (ada_type_of_child): Same.
11661 * c-varobj.c (c_is_path_expr_parent): Same.
11662 (c_describe_child): Same.
11663 (c_name_of_child): Same.
11664 (c_value_of_child): Same.
11665 (c_type_of_child): Same.
11666 (cplus_number_of_children): Same.
11667 (cplus_describe_child): Constify var.
11668 (cplus_name_of_child): Constify parent.
11669 (cplus_value_of_child): Same.
11670 (cplus_type_of_child): Same.
11671 * jv-varobj.c (java_name_of_child): Same.
11672 (java_value_of_child): Same.
11673 (java_type_of_child): Same.
11674 * varobj.c (value_of_child): Same.
11675 (varobj_default_is_path_expr_parent): Constify var, parent and return
11676 value.
11677 (varobj_get_path_expr): Constify var, modify path_expr through
11678 mutable_var.
11679 (install_new_value): Constify parent.
11680 (value_of_child): Constify parent.
11681 * varobj.h (struct varobj): Constify parent.
11682 (struct lang_varobj_ops): Constify name_of_child, value_of_child and
11683 type_of_child.
11684 (varobj_get_path_expr): Constify var.
11685 (varobj_get_path_expr_parent): Constify var and return value.
11686
11687 2015-02-10 Luis Machado <lgustavo@codesourcery.com>
11688
11689 * arm-tdep.c (arm_prologue_unwind_stop_reason): New function.
11690 (arm_prologue_this_id): Move PC and SP limit checks to
11691 arm_prologue_unwind_stop_reason.
11692 (arm_prologue_unwind) <stop_reason> : Set to
11693 arm_prologue_unwind_stop_reason.
11694
11695 2015-02-09 Mark Wielaard <mjw@redhat.com>
11696
11697 * dwarf2read.c (set_cu_language): Recognize DW_LANG_Fortran03 and
11698 DW_LANG_Fortran08 as language_fortran.
11699
11700 2015-02-09 Sergio Durigan Junior <sergiodj@redhat.com>
11701
11702 PR remote/17946
11703 * gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison
11704 of pointer against char.
11705
11706 2015-02-09 Mark Wielaard <mjw@redhat.com>
11707
11708 * c-typeprint.c (cp_type_print_method_args): Handle '_Atomic'.
11709 (c_type_print_modifier): Likewise.
11710 * dwarf2read.c (read_tag_atomic_type): New function.
11711 (read_type_die_1): Handle DW_TAG_atomic_type.
11712 * gdbtypes.c (make_atomic_type): New function.
11713 (recursive_dump_type): Handle TYPE_ATOMIC.
11714 * gdbtypes.h (enum type_flag_values): Renumber.
11715 (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_ATOMIC.
11716 (TYPE_ATOMIC): New macro.
11717 (make_atomic_type): Declare.
11718
11719 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11720
11721 * btrace.c (ftrace_find_call): Skip gaps.
11722 (ftrace_new_function): Initialize level.
11723 (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return)
11724 (ftrace_new_switch): Update
11725 level computation.
11726 (ftrace_new_gap): New.
11727 (ftrace_update_function): Create new function after gap.
11728 (btrace_compute_ftrace_bts): Create gap on error.
11729 (btrace_stitch_bts): Update parameters. Clear trace if it
11730 becomes empty.
11731 (btrace_stitch_trace): Update parameters. Update callers.
11732 (btrace_clear): Reset the number of gaps.
11733 (btrace_insn_get): Return NULL if the iterator points to a gap.
11734 (btrace_insn_number): Return zero if the iterator points to a gap.
11735 (btrace_insn_end): Allow gaps at the end.
11736 (btrace_insn_next, btrace_insn_prev, btrace_insn_cmp): Handle gaps.
11737 (btrace_find_insn_by_number): Assert that the found iterator does
11738 not point to a gap.
11739 (btrace_call_next, btrace_call_prev): Assert that the last function
11740 is not a gap.
11741 * btrace.h (btrace_bts_error): New.
11742 (btrace_function): Update comment.
11743 (btrace_function) <insn, insn_offset, number>: Update comment.
11744 (btrace_function) <errcode>: New.
11745 (btrace_thread_info) <ngaps>: New.
11746 (btrace_thread_info) <replay>: Update comment.
11747 (btrace_insn_get): Update comment.
11748 * record-btrace.c (btrace_ui_out_decode_error): New.
11749 (record_btrace_info): Print number of gaps.
11750 (btrace_insn_history, btrace_call_history): Call
11751 btrace_ui_out_decode_error for gaps.
11752 (record_btrace_step_thread, record_btrace_start_replaying): Skip gaps.
11753
11754 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11755
11756 * common/btrace-common.h (btrace_cpu_vendor, btrace_cpu): New.
11757 * nat/linux-btrace.c: (btrace_this_cpu): New.
11758 (cpu_supports_bts): Call btrace_this_cpu.
11759 (intel_supports_bts): Add cpu parameter.
11760
11761 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11762
11763 * btrace.h (btrace_insn_class): New.
11764 (btrace_insn) <size, iclass>: New.
11765 * btrace.c (ftrace_find_call): Update parameters. Update users.
11766 Use instruction classification.
11767 (ftrace_new_return): Update parameters. Update users.
11768 (ftrace_update_function): Update parameters. Update users. Use
11769 instruction classification.
11770 (ftrace_update_insns): Update parameters. Update users.
11771 (ftrace_classify_insn): New.
11772 (btrace_compute_ftrace_bts): Fill in new btrace_insn fields. Add
11773 TRY_CATCH around call to gdb_insn_length.
11774
11775 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11776
11777 * btrace.c (btrace_compute_ftrace_bts, btrace_compute_ftrace):
11778 Update parameters. Update users.
11779
11780 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11781
11782 * btrace.c (parse_xml_btrace_conf_bts): Add size.
11783 (btrace_conf_bts_attributes): New.
11784 (btrace_conf_children): Add attributes.
11785 * common/btrace-common.h (btrace_config_bts): New.
11786 (btrace_config)<bts>: New.
11787 (btrace_config): Update comment.
11788 * nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts):
11789 Use config.
11790 * features/btrace-conf.dtd: Increment version. Add size
11791 attribute to bts element.
11792 * record-btrace.c (set_record_btrace_bts_cmdlist,
11793 show_record_btrace_bts_cmdlist): New.
11794 (record_btrace_adjust_size, record_btrace_print_bts_conf,
11795 record_btrace_print_conf, cmd_set_record_btrace_bts,
11796 cmd_show_record_btrace_bts): New.
11797 (record_btrace_info): Call record_btrace_print_conf.
11798 (_initialize_record_btrace): Add commands.
11799 * remote.c: Add PACKET_Qbtrace_conf_bts_size enum.
11800 (remote_protocol_features): Add Qbtrace-conf:bts:size packet.
11801 (btrace_sync_conf): Synchronize bts size.
11802 (_initialize_remote): Add Qbtrace-conf:bts:size packet.
11803 * NEWS: Announce new commands and new packets.
11804
11805 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11806
11807 * Makefile.in (XMLFILES): Add btrace-conf.dtd.
11808 * x86-linux-nat.c (x86_linux_enable_btrace): Update parameters.
11809 (x86_linux_btrace_conf): New.
11810 (x86_linux_create_target): Initialize to_btrace_conf.
11811 * nat/linux-btrace.c (linux_enable_btrace): Update parameters.
11812 Check format. Split into this and ...
11813 (linux_enable_bts): ... this.
11814 (linux_btrace_conf): New.
11815 (perf_event_skip_record): Renamed into ...
11816 (perf_event_skip_bts_record): ... this. Updated users.
11817 (linux_disable_btrace): Split into this and ...
11818 (linux_disable_bts): ... this.
11819 (linux_read_btrace): Check format.
11820 * nat/linux-btrace.h (linux_enable_btrace): Update parameters.
11821 (linux_btrace_conf): New.
11822 (btrace_target_info)<ptid>: Moved.
11823 (btrace_target_info)<conf>: New.
11824 (btrace_target_info): Split into this and ...
11825 (btrace_tinfo_bts): ... this. Updated users.
11826 * btrace.c (btrace_enable): Update parameters.
11827 (btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf)
11828 (btrace_conf_children, btrace_conf_attributes)
11829 (btrace_conf_elements): New.
11830 * btrace.h (btrace_enable): Update parameters.
11831 (btrace_conf, parse_xml_btrace_conf): New.
11832 * common/btrace-common.h (btrace_config): New.
11833 * feature/btrace-conf.dtd: New.
11834 * record-btrace.c (record_btrace_conf): New.
11835 (record_btrace_cmdlist): New.
11836 (record_btrace_enable_warn, record_btrace_open): Pass
11837 &record_btrace_conf.
11838 (record_btrace_info): Print recording format.
11839 (cmd_record_btrace_bts_start): New.
11840 (cmd_record_btrace_start): Call cmd_record_btrace_bts_start.
11841 (_initialize_record_btrace): Add "record btrace bts" subcommand.
11842 Add "record bts" alias command.
11843 * remote.c (remote_state)<btrace_config>: New.
11844 (remote_btrace_reset, PACKET_qXfer_btrace_conf): New.
11845 (remote_protocol_features): Add qXfer:btrace-conf:read.
11846 (remote_open_1): Call remote_btrace_reset.
11847 (remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF.
11848 (btrace_target_info)<conf>: New.
11849 (btrace_sync_conf, btrace_read_config): New.
11850 (remote_enable_btrace): Update parameters. Call btrace_sync_conf and
11851 btrace_read_conf.
11852 (remote_btrace_conf): New.
11853 (init_remote_ops): Initialize to_btrace_conf.
11854 (_initialize_remote): Add qXfer:btrace-conf packet.
11855 * target.c (target_enable_btrace): Update parameters.
11856 (target_btrace_conf): New.
11857 * target.h (target_enable_btrace): Update parameters.
11858 (target_btrace_conf): New.
11859 (target_object)<TARGET_OBJECT_BTRACE_CONF>: New.
11860 (target_ops)<to_enable_btrace>: Update parameters and comment.
11861 (target_ops)<to_btrace_conf>: New.
11862 * target-delegates: Regenerate.
11863 * target-debug.h (target_debug_print_const_struct_btrace_config_p)
11864 (target_debug_print_const_struct_btrace_target_info_p): New.
11865 * NEWS: Announce new command and new packet.
11866
11867 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11868
11869 * nat/linux-btrace.h (perf_event_buffer): New.
11870 (btrace_target_info) <buffer, size, data_head>: Replace with ...
11871 <bts>: ... this.
11872 * nat/linux-btrace.c (perf_event_header, perf_event_mmap_size)
11873 (perf_event_buffer_size, perf_event_buffer_begin)
11874 (perf_event_buffer_end, linux_btrace_has_changed): Removed.
11875 Updated users.
11876 (perf_event_new_data): New.
11877
11878 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11879
11880 * btrace.c (btrace_enable): Pass BTRACE_FORMAT_BTS.
11881 * record-btrace.c (record_btrace_open): Remove call to
11882 target_supports_btrace.
11883 * remote.c (remote_supports_btrace): Update parameters.
11884 * target.c (target_supports_btrace): Update parameters.
11885 * target.h (to_supports_btrace, target_supports_btrace): Update
11886 parameters.
11887 * target-delegates.c: Regenerate.
11888 * target-debug.h (target_debug_print_enum_btrace_format): New.
11889 * nat/linux-btrace.c
11890 (kernel_supports_btrace): Rename into ...
11891 (kernel_supports_bts): ... this. Update users. Update warning text.
11892 (intel_supports_btrace): Rename into ...
11893 (intel_supports_bts): ... this. Update users.
11894 (cpu_supports_btrace): Rename into ...
11895 (cpu_supports_bts): ... this. Update users.
11896 (linux_supports_btrace): Update parameters. Split into this and ...
11897 (linux_supports_bts): ... this.
11898 * nat/linux-btrace.h (linux_supports_btrace): Update parameters.
11899
11900 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11901
11902 * Makefile.in (SFILES): Add common/btrace-common.c.
11903 (COMMON_OBS): Add common/btrace-common.o.
11904 (btrace-common.o): Add build rules.
11905 * btrace.c (parse_xml_btrace): Update parameters.
11906 (parse_xml_btrace_block): Set format field.
11907 (btrace_add_pc, btrace_fetch): Use struct btrace_data.
11908 (do_btrace_data_cleanup, make_cleanup_btrace_data): New.
11909 (btrace_compute_ftrace): Split into this and...
11910 (btrace_compute_ftrace_bts): ...this.
11911 (btrace_stitch_trace): Split into this and...
11912 (btrace_stitch_bts): ...this.
11913 * btrace.h (parse_xml_btrace): Update parameters.
11914 (make_cleanup_btrace_data): New.
11915 * common/btrace-common.c: New.
11916 * common/btrace-common.h: Include common-defs.h.
11917 (btrace_block_s): Update comment.
11918 (btrace_format): New.
11919 (btrace_format_string): New.
11920 (btrace_data_bts): New.
11921 (btrace_data): New.
11922 (btrace_data_init, btrace_data_fini, btrace_data_empty): New.
11923 * remote.c (remote_read_btrace): Update parameters.
11924 * target.c (target_read_btrace): Update parameters.
11925 * target.h (target_read_btrace): Update parameters.
11926 (target_ops)<to_read_btrace>: Update parameters.
11927 * x86-linux-nat.c (x86_linux_read_btrace): Update parameters.
11928 * target-delegates.c: Regenerate.
11929 * target-debug (target_debug_print_struct_btrace_data_p): New.
11930 * nat/linux-btrace.c (linux_read_btrace): Split into this and...
11931 (linux_read_bts): ...this.
11932 * nat/linux-btrace.h (linux_read_btrace): Update parameters.
11933
11934 2015-02-06 Doug Evans <dje@google.com>
11935
11936 * remote-m32r-sdi.c: Include symfile.h.
11937
11938 2015-02-06 Doug Evans <dje@google.com>
11939
11940 * symtab.h (clear_symtab_users, deduce_language_from_filename): Move
11941 * symfile.h (clear_symtab_users, deduce_language_from_filename): ...
11942 to here.
11943
11944 2015-02-06 Pedro Alves <palves@redhat.com>
11945
11946 * linux-thread-db.c (find_new_threads_callback): Add debug output.
11947
11948 2015-02-06 Simon Marchi <simon.marchi@ericsson.com>
11949
11950 PR gdb/15678
11951 * breakpoint.c (map_breakpoint_numbers): Check for empty args string.
11952 (enable_count_command): Check args for NULL value.
11953
11954 2015-02-05 Doug Evans <xdje42@gmail.com>
11955
11956 * guile/scm-frame.c: Fix spelling errors in a comment.
11957
11958 2015-02-04 Jan Kratochvil <jan.kratochvil@redhat.com>
11959
11960 * python/python-internal.h (Py_hash_t): Define it for Python <3.2.
11961 * python/py-value.c (valpy_fetch_lazy): Use it. Remove cast to the
11962 return type.
11963
11964 2015-02-04 Pedro Alves <palves@redhat.com>
11965
11966 * linux-nat.c (handle_extended_wait): Don't resume LWPs here.
11967 (wait_lwp): Don't call wait_lwp if linux_handle_extended_wait
11968 returns true.
11969 (resume_stopped_resumed_lwps): Don't check whether the thread is
11970 marked as executing.
11971 (linux_nat_wait_1): Use resume_stopped_resumed_lwps.
11972
11973 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
11974
11975 * regset.h (struct regset): Add flags field.
11976 (REGSET_VARIABLE_SIZE): New value for a regset's flags field.
11977 * corelow.c (get_core_register_section): Add warning if the size
11978 exceeds the requested size and the regset does not have the
11979 REGSET_VARIABLE_SIZE flag set.
11980 * alphanbsd-tdep.c (alphanbsd_gregset): Add REGSET_VARIABLE_SIZE
11981 flag.
11982 * armbsd-tdep.c (armbsd_gregset): Likewise.
11983 * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise.
11984 * hppaobsd-tdep.c (hppaobsd_gregset): Likewise.
11985 * m68kbsd-tdep.c (m68kbsd_gregset): Likewise.
11986 * mipsnbsd-tdep.c (mipsnbsd_gregset): Likewise.
11987
11988 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
11989
11990 * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections):
11991 For ".reg-xstate", explicitly specify the requested section size
11992 via X86_XSTATE_SIZE instead of just 0 on input and
11993 X86_XSTATE_MAX_SIZE on output.
11994 * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections):
11995 Likewise.
11996
11997 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
11998
11999 PR corefiles/17808:
12000 * gdbarch.sh (iterate_over_regset_sections_cb): Document this
12001 function type, particularly its SIZE parameter.
12002 * gdbarch.h: Regenerate.
12003 * amd64-tdep.c (amd64_supply_fpregset): In gdb_assert, compare
12004 actual against required size using ">=" instead of "==".
12005 (amd64_collect_fpregset): Likewise.
12006 * i386-tdep.c (i386_supply_gregset): Likewise.
12007 (i386_collect_gregset): Likewise.
12008 (i386_supply_fpregset): Likewise.
12009 (i386_collect_fpregset): Likewise.
12010 * mips-linux-tdep.c (mips_supply_gregset_wrapper): Likewise.
12011 (mips_fill_gregset_wrapper): Likewise.
12012 (mips_supply_fpregset_wrapper): Likewise.
12013 (mips_fill_fpregset_wrapper): Likewise.
12014 (mips64_supply_gregset_wrapper): Likewise.
12015 (mips64_fill_gregset_wrapper): Likewise.
12016 (mips64_supply_fpregset_wrapper): Likewise.
12017 (mips64_fill_fpregset_wrapper): Likewise.
12018 * mn10300-linux-tdep.c (am33_supply_gregset_method): Likewise.
12019 (am33_supply_fpregset_method): Likewise.
12020 (am33_collect_gregset_method): Likewise.
12021 (am33_collect_fpregset_method): Likewise.
12022
12023 2015-02-04 Doug Evans <dje@google.com>
12024 Pedro Alves <palves@redhat.com>
12025 Eli Zaretskii <eliz@gnu.org>
12026
12027 PR tui/17810
12028 * tui/tui-command.c (tui_refresh_cmd_win): New function.
12029 * tui/tui-command.c (tui_refresh_cmd_win): Declare.
12030 * tui/tui-file.c: #include tui/tui-command.h.
12031 (tui_file_fputs): Refresh command window if stream is not gdb_stdout.
12032 (tui_file_flush): Refresh command window if stream is gdb_stdout.
12033 * tui/tui-io.c (tui_puts): Remove calls to wrefresh, fflush.
12034
12035 2015-02-04 Pedro Alves <palves@redhat.com>
12036
12037 Fix build breakage.
12038 * event-loop.c (gdb_do_one_event): Add default switch case.
12039
12040 2015-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
12041
12042 Filter out inferior gcc option -fpreprocessed.
12043 * compile/compile.c (filter_args): New function.
12044 (get_args): Use it.
12045
12046 2015-02-03 Pedro Alves <palves@redhat.com>
12047
12048 * event-loop.c: Don't declare nor define a queue type for
12049 gdb_event_p.
12050 (event_queue): Delete.
12051 (create_event, create_file_event, gdb_event_xfree)
12052 (initialize_event_loop, process_event): Delete.
12053 (gdb_do_one_event): Return as soon as one event is handled.
12054 (handle_file_event): Change prototype. Used the passed in
12055 file_handler pointer and ready_mask instead of looping over all
12056 file handlers.
12057 (gdb_wait_for_event): Update the poll/select timeouts before
12058 blocking. Run event handlers directly instead of queueing events.
12059 Return as soon as one event is handled.
12060 (struct async_event_handler_data): Delete.
12061 (invoke_async_event_handler): Delete.
12062 (check_async_event_handlers): Change return type to int. Run
12063 event handlers directly instead of queueing events. Return as
12064 soon as one event is handled.
12065 (handle_timer_event): Delete.
12066 (update_wait_timeout): New function, factored out from
12067 poll_timers.
12068 (poll_timers): Reimplement.
12069 * event-loop.h (initialize_event_loop): Delete declaration.
12070 * top.c (gdb_init): Don't call initialize_event_loop.
12071
12072 2015-02-03 Pedro Alves <palves@redhat.com>
12073
12074 * event-loop.c (clear_async_event_handler): New function.
12075 * event-loop.h (clear_async_event_handler): New declaration.
12076 * record-btrace.c (record_btrace_async): New function.
12077 (init_record_btrace_ops): Install record_btrace_async.
12078 * record-full.c (record_full_async): New function.
12079 (record_full_resume): Don't mark the async event source here.
12080 (init_record_full_ops): Install record_full_async.
12081 (record_full_core_resume): Don't mark the async event source here.
12082 (init_record_full_core_ops): Install record_full_async.
12083 * remote.c (remote_async): Mark and clear the async stop reply
12084 queue event-loop token as appropriate.
12085
12086 2015-02-03 Pedro Alves <palves@redhat.com>
12087
12088 * linux-nat.c (linux_child_follow_fork, linux_nat_wait_1): Use
12089 target_is_async_p instead of target_can_async.
12090 (linux_nat_wait): Use target_is_async_p instead of
12091 target_can_async. Don't enable async here.
12092 * remote.c (interrupt_query, remote_wait, putpkt_binary): Use
12093 target_is_async_p instead of target_can_async.
12094
12095 2015-02-02 Simon Marchi <simon.marchi@ericsson.com>
12096
12097 * varobj.h (lang_varobj_ops): Mention which return values need
12098 to be freed.
12099
12100 2015-02-02 Joel Brobecker <brobecker@adacore.com>
12101
12102 * dwarf2loc.c (dwarf2_evaluate_property): Add i18n marker.
12103
12104 2015-02-02 Joel Brobecker <brobecker@adacore.com>
12105
12106 PR gdb/17856:
12107 * ada-lang.c (ada_lookup_symbol_list_worker): Do not re-cache
12108 results found in the cache.
12109
12110 2015-02-02 Joel Brobecker <brobecker@adacore.com>
12111
12112 PR gdb/17854:
12113 * ada-lang.c (ada_get_symbol_cache): Set pspace_data->sym_cache
12114 when allocating a new one.
12115
12116 2015-02-01 Tom Tromey <tom@tromey.com>
12117
12118 * MAINTAINERS: Remove myself.
12119
12120 2015-01-31 Doug Evans <xdje42@gmail.com>
12121
12122 * dwarf2read.c (process_structure_scope): Update setting of
12123 TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO.
12124 * gdbtypes.c (internal_type_vptr_fieldno): New function.
12125 (set_type_vptr_fieldno): New function.
12126 (internal_type_vptr_basetype): New function.
12127 (set_type_vptr_basetype): New function.
12128 (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO,
12129 TYPE_VPTR_BASETYPE.
12130 (allocate_cplus_struct_type): Initialize vptr_fieldno.
12131 (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ...
12132 (print_cplus_stuff): ... moved here.
12133 (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE.
12134 * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype
12135 moved to ...
12136 (struct cplus_struct_type): ... here. All uses updated.
12137 (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite.
12138 (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare.
12139 (internal_type_vptr_basetype, set_type_vptr_basetype): Declare.
12140 * stabsread.c (read_tilde_fields): Update setting of
12141 TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE.
12142
12143 2015-01-31 Doug Evans <xdje42@gmail.com>
12144
12145 * cp-valprint.c (cp_find_class_member): Rename parameter domain_p
12146 to self_p.
12147 (cp_print_class_member): Rename local domain to self_type.
12148 * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local
12149 domain_type to self_type.
12150 (set_die_type) <need_gnat_info>: Handle
12151 TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD.
12152 * gdb-gdb.py (StructMainTypePrettyPrinter): Handle
12153 TYPE_SPECIFIC_SELF_TYPE.
12154 * gdbtypes.c (internal_type_self_type): New function.
12155 (set_type_self_type): New function.
12156 (smash_to_memberptr_type): Rename parameter domain to self_type.
12157 Update setting of TYPE_SELF_TYPE.
12158 (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE.
12159 (smash_to_method_type): Rename parameter domain to self_type.
12160 Update setting of TYPE_SELF_TYPE.
12161 (check_stub_method): Call smash_to_method_type.
12162 (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE.
12163 (copy_type_recursive): Ditto.
12164 * gdbtypes.h (enum type_specific_kind): New value
12165 TYPE_SPECIFIC_SELF_TYPE.
12166 (struct main_type) <type_specific>: New member self_type.
12167 (struct cplus_struct_type) <fn_field.type>: Update comment.
12168 (TYPE_SELF_TYPE): Rewrite.
12169 (internal_type_self_type, set_type_self_type): Declare.
12170 * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to
12171 self_type.
12172 (gnuv3_method_ptr_to_value): Rename local domain_type to self_type.
12173 * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with
12174 TYPE_TARGET_TYPE.
12175 * stabsread.c (read_member_functions): Mark methods with
12176 TYPE_CODE_METHOD, not TYPE_CODE_FUNC. Update setting of
12177 TYPE_SELF_TYPE.
12178
12179 2015-01-31 Doug Evans <xdje42@gmail.com>
12180
12181 * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE.
12182 All uses updated.
12183
12184 2015-01-31 Doug Evans <xdje42@gmail.com>
12185
12186 * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs
12187 or unions. Return zero if union.
12188 (gnuv3_get_vtable): Call check_typedef. Assert only passed structs.
12189 (gnuv3_rtti_type): Pass already-check_typedef'd value to
12190 gnuv3_get_vtable.
12191 (compute_vtable_size): Assert only passed structs.
12192 (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs.
12193
12194 2015-01-31 Doug Evans <xdje42@gmail.com>
12195
12196 * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD
12197 kinds.
12198
12199 2015-01-31 Gary Benson <gbenson@redhat.com>
12200 Doug Evans <dje@google.com>
12201
12202 PR cli/9007
12203 PR cli/11920
12204 PR cli/15548
12205 * cli/cli-cmds.c (complete_command): Notify user if max-completions
12206 reached.
12207 * common/common-exceptions.h (enum errors)
12208 <MAX_COMPLETIONS_REACHED_ERROR>: New value.
12209 * completer.h (get_max_completions_reached_message): New declaration.
12210 (max_completions): Likewise.
12211 (completion_tracker_t): New typedef.
12212 (new_completion_tracker): New declaration.
12213 (make_cleanup_free_completion_tracker): Likewise.
12214 (maybe_add_completion_enum): New enum.
12215 (maybe_add_completion): New declaration.
12216 (throw_max_completions_reached_error): Likewise.
12217 * completer.c (max_completions): New global variable.
12218 (new_completion_tracker): New function.
12219 (free_completion_tracker): Likewise.
12220 (make_cleanup_free_completion_tracker): Likewise.
12221 (maybe_add_completions): Likewise.
12222 (throw_max_completions_reached_error): Likewise.
12223 (complete_line): Remove duplicates and limit result to max_completions
12224 entries.
12225 (get_max_completions_reached_message): New function.
12226 (gdb_display_match_list): Handle max_completions.
12227 (_initialize_completer): New declaration and function.
12228 * symtab.c: Include completer.h.
12229 (completion_tracker): New static variable.
12230 (completion_list_add_name): Call maybe_add_completion.
12231 (default_make_symbol_completion_list_break_on_1): Renamed from
12232 default_make_symbol_completion_list_break_on. Maintain
12233 completion_tracker across calls to completion_list_add_name.
12234 (default_make_symbol_completion_list_break_on): New function.
12235 * top.c (init_main): Set rl_completion_display_matches_hook.
12236 * tui/tui-io.c: Include completer.h.
12237 (tui_old_rl_display_matches_hook): New static global.
12238 (tui_rl_display_match_list): Notify user if max-completions reached.
12239 (tui_setup_io): Save/restore rl_completion_display_matches_hook.
12240 * NEWS (New Options): Mention set/show max-completions.
12241
12242 2015-01-31 Gary Benson <gbenson@redhat.com>
12243
12244 * symtab.c (struct add_name_data) <code>: New field.
12245 Updated comments.
12246 (add_symtab_completions): New function.
12247 (symtab_expansion_callback): Likewise.
12248 (default_make_symbol_completion_list_break_on): Set datum.code.
12249 Move minimal symbol scan before calling expand_symtabs_matching.
12250 Scan known primary symtabs for externs and statics before calling
12251 expand_symtabs_matching. Pass symtab_expansion_callback as
12252 expansion_notify argument to expand_symtabs_matching. Do not scan
12253 primary symtabs for externs and statics after calling
12254 expand_symtabs_matching.
12255
12256 2015-01-31 Gary Benson <gbenson@redhat.com>
12257
12258 * symfile.h (expand_symtabs_exp_notify_ftype): New typedef.
12259 (struct quick_symbol_functions) <expand_symtabs_matching>:
12260 New argument expansion_notify. All uses updated.
12261 (expand_symtabs_matching): New argument expansion_notify.
12262 All uses updated.
12263 * symfile-debug.c (debug_qf_expand_symtabs_matching):
12264 Also print expansion notify.
12265 * symtab.c (expand_symtabs_matching_via_partial): Call
12266 expansion_notify whenever a partial symbol table is expanded.
12267 * dwarf2read.c (dw2_expand_symtabs_matching): Call
12268 expansion_notify whenever a symbol table is instantiated.
12269
12270 2015-01-31 Doug Evans <xdje42@gmail.com>
12271
12272 * cli-out.c: #include completer.h, readline/readline.h.
12273 (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions.
12274 (cli_mld_flush, cld_mld_erase_entire_line): Ditto.
12275 (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto.
12276 * cli-out.h (cli_display_match_list): Declare.
12277 * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros.
12278 (ELLIPSIS_LEN): Ditto.
12279 (gdb_get_y_or_n, gdb_display_match_list_pager): New functions.
12280 (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto.
12281 (gdb_fnprint, gdb_print_filename): Ditto.
12282 (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto.
12283 (gdb_display_match_list): Ditto.
12284 * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs.
12285 (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto.
12286 (mld_beep_ftype, mld_read_key_ftype): Ditto.
12287 (match_list_displayer): New struct.
12288 (gdb_display_match_list): Declare.
12289 * top.c (init_main): Set rl_completion_display_matches_hook.
12290 * tui/tui-io.c: #include completer.h.
12291 (printable_part, PUTX, print_filename, get_y_or_n): Delete.
12292 (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions.
12293 (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto.
12294 (tui_mld_getc, tui_mld_read_key): Ditto.
12295 (tui_rl_display_match_list): Rewrite.
12296 (tui_handle_resize_during_io): New arg for_completion. All callers
12297 updated.
12298
12299 2015-01-31 Doug Evans <xdje42@gmail.com>
12300
12301 Add symbol lookup cache.
12302 * NEWS: Document new options and commands.
12303 * symtab.c (symbol_cache_key): New static global.
12304 (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros.
12305 (SYMBOL_LOOKUP_FAILED): New macro.
12306 (symbol_cache_slot_state): New enum.
12307 (block_symbol_cache): New struct.
12308 (symbol_cache): New struct.
12309 (new_symbol_cache_size, symbol_cache_size): New static globals.
12310 (hash_symbol_entry, eq_symbol_entry): New functions.
12311 (symbol_cache_byte_size, resize_symbol_cache): New functions.
12312 (make_symbol_cache, free_symbol_cache): New functions.
12313 (get_symbol_cache, symbol_cache_cleanup): New function.
12314 (set_symbol_cache_size, set_symbol_cache_size_handler): New functions.
12315 (symbol_cache_lookup, symbol_cache_clear_slot): New function.
12316 (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions.
12317 (symbol_cache_flush, symbol_cache_dump): New functions.
12318 (maintenance_print_symbol_cache): New function.
12319 (maintenance_flush_symbol_cache): New function.
12320 (symbol_cache_stats): New function.
12321 (maintenance_print_symbol_cache_statistics): New function.
12322 (symtab_new_objfile_observer): New function.
12323 (symtab_free_objfile_observer): New function.
12324 (lookup_static_symbol, lookup_global_symbol): Use symbol cache.
12325 (_initialize_symtab): Init symbol_cache_key. New parameter
12326 maint symbol-cache-size. New maint commands print symbol-cache,
12327 print symbol-cache-statistics, flush-symbol-cache.
12328 Install new_objfile, free_objfile observers.
12329
12330 2015-01-31 Joel Brobecker <brobecker@adacore.com>
12331
12332 PR symtab/17855
12333 * symfile.c (clear_symtab_users): Move call to breakpoint_re_set
12334 to end.
12335
12336 2015-01-31 Doug Evans <xdje42@gmail.com>
12337
12338 * NEWS: Mention inlined scripts in .debug_gdb_scripts section.
12339 * auto-load.c: #include ctype.h.
12340 (struct auto_load_pspace_info): Replace member loaded_scripts with
12341 new members loaded_script_files, loaded_script_texts.
12342 (auto_load_pspace_data_cleanup): Update.
12343 (init_loaded_scripts_info): Update.
12344 (get_auto_load_pspace_data_for_loading): Update.
12345 (maybe_add_script_file): Renamed from maybe_add_script. All callers
12346 updated.
12347 (maybe_add_script_text): New function.
12348 (clear_section_scripts): Update.
12349 (source_script_file, execute_script_contents): New functions.
12350 (source_section_scripts): Add support for
12351 SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT.
12352 (print_scripts): New function.
12353 (auto_load_info_scripts): Also print inlined scripts.
12354 (maybe_print_unsupported_script_warning): Renamed from
12355 unsupported_script_warning_print. All callers updated.
12356 (maybe_print_script_not_found_warning): Renamed from
12357 script_not_found_warning_print. All callers updated.
12358 * extension-priv.h (struct extension_language_script_ops): New member
12359 objfile_script_executor.
12360 * extension.c (ext_lang_objfile_script_executor): New function.
12361 * extension.h (objfile_script_executor_func): New typedef.
12362 (ext_lang_objfile_script_executor): Declare.
12363 * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare.
12364 * guile/guile.c (guile_extension_script_ops): Update.
12365 * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function.
12366 * python/python.c (python_extension_script_ops): Update.
12367 (gdbpy_execute_objfile_script): New function.
12368
12369 2015-01-31 Eli Zaretskii <eliz@gnu.org>
12370
12371 * tui/tui-io.c (tui_expand_tabs): New function.
12372 (tui_puts, tui_redisplay_readline): Expand TABs into the
12373 appropriate number of spaces.
12374 * tui/tui-regs.c: Include tui-io.h.
12375 (tui_register_format): Call tui_expand_tabs to expand TABs into
12376 the appropriate number of spaces.
12377 * tui/tui-io.h: Add prototype for tui_expand_tabs.
12378
12379 2015-01-30 Doug Evans <dje@google.com>
12380
12381 * NEWS: "info source" command now display producer string if present.
12382 * source.c (source_info): Print producer string if present.
12383
12384 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
12385
12386 * varobj.c (varobj_delete): Fix comment.
12387
12388 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
12389
12390 * varobj.c (create_child): Modify comment.
12391
12392 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
12393
12394 * ada-varobj.c (ada_number_of_children): Constify struct varobj *
12395 parameter.
12396 (ada_name_of_variable): Same.
12397 (ada_path_expr_of_child): Same.
12398 (ada_value_of_variable): Same.
12399 (ada_value_is_changeable_p): Same.
12400 (ada_value_has_mutated): Same.
12401 * c-varobj.c (varobj_is_anonymous_child): Same.
12402 (c_is_path_expr_parent): Same.
12403 (c_number_of_children): Same.
12404 (c_name_of_variable): Same.
12405 (c_path_expr_of_child): Same.
12406 (get_type): Same.
12407 (c_value_of_variable): Same.
12408 (cplus_number_of_children): Same.
12409 (cplus_name_of_variable): Same.
12410 (cplus_path_expr_of_child): Same.
12411 (cplus_value_of_variable): Same.
12412 * jv-varobj.c (java_number_of_children): Same.
12413 (java_name_of_variable): Same.
12414 (java_path_expr_of_child): Same.
12415 (java_value_of_variable): Same.
12416 * varobj.c (number_of_children): Same.
12417 (name_of_variable): Same.
12418 (is_root_p): Same.
12419 (varobj_ensure_python_env): Same.
12420 (varobj_get_objname): Same.
12421 (varobj_get_expression): Same.
12422 (varobj_get_display_format): Same.
12423 (varobj_get_display_hint): Same.
12424 (varobj_has_more): Same.
12425 (varobj_get_thread_id): Same.
12426 (varobj_get_frozen): Same.
12427 (dynamic_varobj_has_child_method): Same.
12428 (varobj_get_gdb_type): Same.
12429 (is_path_expr_parent): Same.
12430 (varobj_default_is_path_expr_parent): Same.
12431 (varobj_get_language): Same.
12432 (varobj_get_attributes): Same.
12433 (varobj_is_dynamic_p): Same.
12434 (varobj_get_child_range): Same.
12435 (varobj_value_has_mutated): Same.
12436 (varobj_get_value_type): Same.
12437 (number_of_children): Same.
12438 (name_of_variable): Same.
12439 (check_scope): Same.
12440 (varobj_editable_p): Same.
12441 (varobj_value_is_changeable_p): Same.
12442 (varobj_floating_p): Same.
12443 (varobj_default_value_is_changeable_p): Same.
12444
12445 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
12446
12447 * varobj.c (varobj_get_path_expr): Set var->path_expr.
12448 * c-varobj.c (c_path_expr_of_child): Set local var instead of
12449 child->path_expr.
12450 (cplus_path_expr_of_child): Same.
12451
12452 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
12453
12454 * mi-cmd-var.c (print_varobj): Free varobj_get_expression
12455 result.
12456 (mi_cmd_var_info_expression): Same.
12457 * varobj.c (varobj_get_expression): Mention in the comment that
12458 the result must by freed by the caller.
12459
12460 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
12461
12462 * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of
12463 varobj_get_type.
12464 (varobj_update_one): Same.
12465 * varobj.c (update_type_if_necessary): Free curr_type_str and
12466 new_type_str.
12467 (varobj_get_type): Specify in comment that the result needs to be
12468 freed by the caller.
12469
12470 2015-01-29 Doug Evans <dje@google.com>
12471
12472 PR symtab/17890
12473 * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4.
12474
12475 2015-01-25 Mark Wielaard <mjw@redhat.com>
12476
12477 * dwarf2read.c (checkproducer): Call producer_is_gcc.
12478 * utils.c (producer_is_gcc_ge_4): Likewise.
12479 (producer_is_gcc): New function.
12480 * utils.h (producer_is_gcc): New declaration.
12481
12482 2015-01-29 Joel Brobecker <brobecker@adacore.com>
12483
12484 * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum
12485 kind.
12486 * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr"
12487 parameter by "addr_stack" parameter.
12488 (resolve_dynamic_range): Replace "addr" parameter by
12489 "stack_addr" parameter. Update function documentation.
12490 Update code accordingly.
12491 (resolve_dynamic_array, resolve_dynamic_union)
12492 (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise.
12493 (resolve_dynamic_type): Update code, following the changes made
12494 to resolve_dynamic_type_internal's interface.
12495 * dwarf2loc.h (struct property_addr_info): New.
12496 (dwarf2_evaluate_property): Replace "address" parameter
12497 by "addr_stack" parameter. Adjust function documentation.
12498 (struct dwarf2_offset_baton): New.
12499 (struct dwarf2_property_baton): Update documentation of
12500 field "referenced_type" to be more general. New field
12501 "offset_info" in union data field.
12502 * dwarf2loc.c (dwarf2_evaluate_property): Replace "address"
12503 parameter by "addr_stack" parameter. Adjust code accordingly.
12504 Add support for PROP_ADDR_OFFSET properties.
12505 * dwarf2read.c (attr_to_dynamic_prop): Add support for
12506 DW_AT_data_member_location attributes as well. Use case
12507 statements instead of if/else condition.
12508
12509 2015-01-29 Joel Brobecker <brobecker@adacore.com>
12510
12511 * ada-varobj.c (ada_varobj_get_array_number_of_children):
12512 Return zero if PARENT_VALUE is NULL and parent_type's
12513 range type is dynamic.
12514
12515 2015-01-29 Joel Brobecker <brobecker@adacore.com>
12516
12517 * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return
12518 nonzero if the type's subtype is dynamic.
12519 (resolve_dynamic_range): Also resolve the range's subtype.
12520
12521 2015-01-29 Alexander Klimov <alserkli@inbox.ru> (tiny patch)
12522
12523 Pushed by Joel Brobecker <brobecker@adacore.com>.
12524 * symfile.c (unmap_overlay_command): Initialize sec to NULL.
12525
12526 2015-01-27 Doug Evans <dje@google.com>
12527
12528 * NEWS: Mention gdb.Objfile.username.
12529 * python/py-objfile.c (objfpy_get_username): New function.
12530 (objfile_getset): Add "username".
12531
12532 2015-01-24 Mark Wielaard <mjw@redhat.com>
12533
12534 * stack.c (return_command): Markup warning message with _.
12535
12536 2015-01-24 Doug Evans <xdje42@gmail.com>
12537
12538 * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
12539
12540 2015-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
12541
12542 Fix 100x slowdown regression on DWZ files.
12543 * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash.
12544 (struct line_header): Add offset and offset_in_dwz.
12545 (dwarf_decode_lines): Add parameter decode_mapping to the declaration.
12546 (free_line_header_voidp): New declaration.
12547 (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New
12548 functions.
12549 (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller.
12550 (handle_DW_AT_stmt_list): Use line_header_hash.
12551 (free_line_header_voidp): New function.
12552 (dwarf_decode_line_header): Initialize offset and offset_in_dwz.
12553 (dwarf_decode_lines): New parameter decode_mapping, use it.
12554 (dwarf2_free_objfile): Free line_header_hash.
12555
12556 2015-01-23 Simon Marchi <simon.marchi@ericsson.com>
12557
12558 PR gdb/17416
12559 * valops.c (value_rtti_indirect_type): Catch exception thrown by
12560 value_ind.
12561
12562 2015-01-15 Mark Wielaard <mjw@redhat.com>
12563
12564 * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from
12565 DW_AT_noreturn.
12566 * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make
12567 calling_convention an 8 bit bit field.
12568 (TYPE_NO_RETURN): New macro.
12569 * infcmd.c (finish_command): Query if function does not return
12570 normally.
12571 * stack.c (return_command): Likewise.
12572
12573 2015-01-23 Pedro Alves <palves@redhat.com>
12574
12575 * linux-nat.c (linux_is_async_p): New macro.
12576 (linux_nat_is_async_p):
12577 (linux_nat_terminal_inferior): Check whether the target can async
12578 instead of whether it is already async.
12579 (linux_nat_terminal_ours): Don't check whether the target is
12580 async.
12581 (linux_async_pipe): Use linux_is_async_p.
12582
12583 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
12584
12585 * NEWS (Changes since GDB 7.9): Add 'thread apply all' option
12586 '-ascending'.
12587 * thread.c (tp_array_compar_ascending, tp_array_compar): New.
12588 (thread_apply_all_command): Parse CMD for tp_array_compar_ascending.
12589 Sort tp_array using tp_array_compar.
12590 (_initialize_thread): Extend thread_apply_all_command help.
12591
12592 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
12593
12594 * corelow.c (core_open): Call also thread_command.
12595 * gdbthread.h (thread_command): New prototype moved from ...
12596 * thread.c (thread_command): ... here.
12597 (thread_command): Make it global.
12598
12599 2015-01-22 Pedro Alves <palves@redhat.com>
12600
12601 * configure.ac [*mingw32*]: Check $curses_found instead of
12602 $prefer_curses.
12603 * configure: Regenerate.
12604 * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and
12605 HAVE_NCURSES_NCURSES_H checks.
12606
12607 2015-01-22 Eli Zaretskii <eliz@gnu.org>
12608
12609 * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm'
12610 fails with the 1st arg NULL, try again with "unknown". Don't test
12611 the "cup" capability: it isn't supported by the Windows port of
12612 ncurses, but the Windows console driver is still capable of
12613 supporting TUI.
12614
12615 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
12616
12617 * compile/compile.c (_initialize_compile): Use -fPIE for compile_args.
12618
12619 2015-01-22 Eli Zaretskii <eliz@gnu.org>
12620
12621 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
12622 (ALLDEPFILES): Remove irix5-nat.c. These two are part of the
12623 reason that "make TAGS" is broken.
12624
12625 2015-01-22 Chen Gang <gang.chen.5i5j@gmail.com>
12626
12627 * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues
12628 and check additional store instructions.
12629
12630 2015-01-21 Wei-cheng Wang <cole945@gmail.com>
12631
12632 * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang".
12633
12634 2015-01-21 Wei-cheng Wang <cole945@gmail.com>
12635
12636 * ppc-linux-tdep.c (ppc_skip_trampoline_code,
12637 ppc_canonicalize_syscall, ppc_linux_syscall_record,
12638 ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments.
12639 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
12640 * rs6000-tdep.c (rs6000_epilogue_frame_cache,
12641 rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register,
12642 rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4,
12643 ppc_process_record_op19, ppc_process_record_op31,
12644 ppc_process_record_op59, ppc_process_record_op60,
12645 ppc_process_record_op63): Likewise.
12646
12647 2015-01-20 Joel Brobecker <brobecker@adacore.com>
12648
12649 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string)
12650 (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of
12651 strerror.
12652
12653 2015-01-20 Wei-cheng Wang <cole945@gmail.com>
12654
12655 * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19,
12656 ppc_process_record_op31, ppc_process_record_op59,
12657 ppc_process_record_op60, ppc_process_record_op63,
12658 ppc_process_record): Fix -Wformat warning.
12659 * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60):
12660 Remove unused variables.
12661
12662 2015-01-20 Chen Gang <gang.chen.5i5j@gmail.com>
12663
12664 * MAINTAINERS (Write After Approval): Add "Chen Gang".
12665
12666 2015-01-19 Eli Zaretskii <eliz@gnu.org>
12667
12668 * configure.ac [*mingw32*]: Only add windows-termcap.o to
12669 CONFIG_OBS if not building with a curses library.
12670 * configure: Regenerate.
12671
12672 * windows-termcap.c: Include defs.h. Make the whole body empty if
12673 either one of HAVE_CURSES_H or HAVE_NCURSES_H or
12674 HAVE_NCURSES_NCURSES_H is defined.
12675
12676 2015-01-19 Joel Brobecker <brobecker@adacore.com>
12677
12678 * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator
12679 from end of line to start of next line.
12680
12681 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
12682
12683 * ppc-linux-tdep.c (ppc_skip_trampoline_code):
12684 Scan PLT stub backward for reverse debugging.
12685 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
12686
12687 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
12688 Ulrich Weigand <uweigand@de.ibm.com>
12689
12690 * configure.tgt (powerpc*-*-linux): Add linux-record.o to
12691 gdb_target_obs.
12692 (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall
12693 record.
12694 (ppc_canonicalize_syscall, ppc_linux_syscall_record,
12695 ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions.
12696 (ppc_linux_init_abi): Set process_record, process_record_signal.
12697 * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and
12698 ppc_linux_record_tdep to gdbarch_tdep.
12699 (ppc_process_record): New declaration.
12700 * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4,
12701 ppc_process_record_op19, ppc_process_record_op31,
12702 ppc_process_record_op59, ppc_process_record_op60,
12703 ppc_process_record_op63, ppc_process_record): New functions.
12704
12705 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
12706
12707 * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to
12708 rs6000_in_function_epilogue_frame_p and add an argument
12709 for frame_info.
12710 (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id,
12711 rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer):
12712 New functions.
12713 (rs6000_epilogue_frame_unwind): New.
12714 (rs6000_gdbarch_init): Append epilogue unwinder.
12715
12716 2015-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
12717
12718 * nat/linux-personality.c: Replace "#ifndef
12719 HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if
12720 !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5
12721 systems.
12722
12723 2015-01-16 Eli Zaretskii <eliz@gnu.org>
12724
12725 * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New
12726 functions.
12727 (_initialize_tui_win) <border-kind, border-mode>:
12728 <active-border-mode>: Use tui_set_var_cmd as the "set" function.
12729 (tui_set_tab_width_command): Fix the commentary.
12730
12731 * tui/tui-win.h: Add prototype for tui_rehighlight_all.
12732
12733 * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command):
12734 Doc fix.
12735 (tui_set_tab_width_command): Delete and recreate the source and
12736 the disassembly windows, to show the effect of the changed tab
12737 size immediately.
12738
12739 * tui/tui-data.h (LINE_PREFIX): Make shorter
12740 (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for
12741 "Thread NNNNN.XXXX" thread ID notation on Windows.
12742
12743 2015-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
12744
12745 Fix gcc-5 compilation.
12746 * hppa-tdep.c (inst_saves_gr): Fix parentheses typo.
12747
12748 2015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
12749
12750 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h.
12751 (linux-personality.o): New rule.
12752 * common/common-defs.h: Include <stdint.h>.
12753 * config/aarch64/linux.mh (NATDEPFILES): Include
12754 linux-personality.o.
12755 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
12756 * config/arm/linux.mh (NATDEPFILES): Likewise.
12757 * config/i386/linux64.mh (NATDEPFILES): Likewise.
12758 * config/i386/linux.mh (NATDEPFILES): Likewise.
12759 * config/ia64/linux.mh (NATDEPFILES): Likewise.
12760 * config/m32r/linux.mh (NATDEPFILES): Likewise.
12761 * config/m68k/linux.mh (NATDEPFILES): Likewise.
12762 * config/mips/linux.mh (NATDEPFILES): Likewise.
12763 * config/pa/linux.mh (NATDEPFILES): Likewise.
12764 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
12765 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
12766 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
12767 * config/s390/linux.mh (NATDEPFILES): Likewise.
12768 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
12769 * config/sparc/linux.mh (NATDEPFILES): Likewise.
12770 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
12771 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
12772 * defs.h: Remove #include <stdint.h> (moved to
12773 common/common-defs.h).
12774 * linux-nat.c: Include nat/linux-personality.h. Remove #include
12775 <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to
12776 nat/linux-personality.c).
12777 (linux_nat_create_inferior): Remove code to disable address space
12778 randomization (moved to nat/linux-personality.c). Create cleanup
12779 to disable address space randomization.
12780 * nat/linux-personality.c: New file.
12781 * nat/linux-personality.h: Likewise.
12782
12783 2015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
12784
12785 * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and
12786 common/posix-strerror.c.
12787 (posix-strerror.o): New rule.
12788 (mingw-strerror.o): Likewise.
12789 * common/common-utils.h (safe_strerror): Move prototype to here,
12790 from utils.h.
12791 * common/common.host: New file.
12792 * common/mingw-strerror.c: Likewise.
12793 * common/posix-strerror.c: Likewise.
12794 * configure: Regenerated.
12795 * configure.ac: Source common/common.host. Add variable
12796 common_host_obs to gdb_host_obs.
12797 * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and
12798 gdb/common/posix-strerror.c when warning about the use of
12799 strerror.
12800 * mingw-hdep.c (safe_strerror): Remove definition; move it to
12801 common/mingw-strerror.c.
12802 * posix-hdep.c (safe_strerror): Remove definition; move it to
12803 common/posix-hdep.c.
12804 * utils.h (safe_strerror): Remove prototype; move to
12805 common/common-utils.h.
12806
12807 2015-01-15 Joel Brobecker <brobecker@adacore.com>
12808
12809 GDB 7.8.2 released.
12810
12811 2015-01-15 Joel Brobecker <brobecker@adacore.com>
12812
12813 * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel
12814 ___XA type if the array has already been fixed.
12815
12816 2015-01-14 Yao Qi <yao@codesourcery.com>
12817
12818 * Makefile.in (ppc-linux.o): New rule.
12819 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o.
12820 * configure.ac: AC_CHECK_FUNCS(getauxval).
12821 * config.in: Re-generated.
12822 * configure: Re-generated.
12823 * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p):
12824 Declare.
12825 * nat/ppc-linux.c: New file.
12826 * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]:
12827 Call ppc64_64bit_inferior_p.
12828
12829 2015-01-14 Yao Qi <yao@codesourcery.com>
12830
12831 * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to
12832 nat/ppc-linux.h.
12833 (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise.
12834 (PPC_FEATURE_HAS_DFP): Likewise.
12835 (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise.
12836 (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise.
12837 (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise.
12838 Include "nat/ppc-linux.h".
12839 * nat/ppc-linux.h: New file.
12840 * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h.
12841
12842 2015-01-14 Pedro Alves <palves@redhat.com>
12843
12844 PR gdb/17525
12845 * breakpoint.c: Include "interps.h".
12846 (bpstat_do_actions_1): Also check whether the interpreter is
12847 async.
12848
12849 2015-01-14 Pedro Alves <palves@redhat.com>
12850
12851 PR cli/17828
12852 * infrun.c (reinstall_readline_callback_handler_cleanup): Don't
12853 reinstall if the interpreter is sync.
12854
12855 2015-01-13 Doug Evans <dje@google.com>
12856
12857 * objfiles.c (objfile_filename): New function.
12858 * objfiles.h (objfile_filename): Declare it.
12859 (objfile_name): Add function comment.
12860 * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the
12861 bfd file name (which may be realpath'd), and the original name.
12862
12863 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12864
12865 * NEWS: Create a new section for the next release branch.
12866 Rename the section of the current branch, now that it has
12867 been cut.
12868
12869 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12870
12871 GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37):
12872 * version.in: Bump version to 7.9.50.DATE-cvs.
12873
12874 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12875
12876 * nat/linux-procfs.c (linux_proc_attach_tgid_threads):
12877 Remove trailing new-line in argument of call to warning.
12878
12879 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12880
12881 * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing
12882 new-line in argument of call to "warning".
12883
12884 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12885
12886 * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found
12887 in static block, then try searching for primitive types.
12888
12889 2015-01-12 Patrick Palka <patrick@parcs.ath.cx>
12890
12891 * top.h (gdb_add_history): Declare.
12892 * top.c (command_count): New variable.
12893 (gdb_add_history): New function.
12894 (gdb_safe_append_history): New static function.
12895 (quit_force): Call it.
12896 (command_line_input): Use gdb_add_history instead of
12897 add_history.
12898 * event-top.c (command_line_handler): Likewise.
12899
12900 2015-01-12 James Clarke <jrtc27@jrtc27.com> (tiny patch)
12901
12902 PR gdb/17046
12903 * darwin-nat.c: Replace <machine/setjmp.h> #include by
12904 <setjmp.h> #include.
12905
12906 2015-01-11 Doug Evans <xdje42@gmail.com>
12907
12908 * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.
12909
12910 2015-01-11 Doug Evans <xdje42@gmail.com>
12911
12912 PR gdb/15830
12913 * NEWS: The "maint demangle" command is renamed as "demangle".
12914 * demangle.c: #include cli/cli-utils.h, language.h.
12915 (demangle_command): New function.
12916 (_initialize_demangle): Add new command "demangle".
12917 * maint.c (maintenance_demangle): Stub out.
12918 (_initialize_maint_cmds): Update help text for "maint demangle",
12919 and mark as deprecated.
12920
12921 2015-01-11 Mark Kettenis <kettenis@gnu.org>
12922
12923 * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that
12924 inferior_thread is a function.
12925
12926 2015-01-09 Patrick Palka <patrick@parcs.ath.cx>
12927
12928 * Makefile.in (.y.c): Don't munge yacc's #line
12929 directives.
12930
12931 2015-01-09 Patrick Palka <patrick@parcs.ath.cx>
12932
12933 * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper
12934 to prompt for input.
12935 * tui/tui-hooks.c (tui_query_hook): Remove.
12936 (tui_install_hooks): Don't set deprecated_query_hook.
12937 * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in
12938 height calculation. Always update the command window's cur_line.
12939
12940 2015-01-09 Pedro Alves <palves@redhat.com>
12941
12942 * breakpoint.c (hardware_breakpoint_inserted_here_p): New
12943 function.
12944 * breakpoint.h (hardware_breakpoint_inserted_here_p): New
12945 declaration.
12946 * linux-nat.c (linux_nat_status_is_event): Move higher up in file.
12947 (linux_resume_one_lwp): Store the thread's PC. Adjust to clear
12948 stop_reason.
12949 (check_stopped_by_watchpoint): New function.
12950 (save_sigtrap): Reimplement.
12951 (linux_nat_stopped_by_watchpoint): Adjust.
12952 (linux_nat_lp_status_is_event): Delete.
12953 (stop_wait_callback): Only call save_sigtrap after storing the
12954 pending status.
12955 (status_callback): If the thread had been stopped for a breakpoint
12956 that has since been removed, discard the event and resume the LWP.
12957 (count_events_callback, select_event_lwp_callback): Use
12958 lwp_status_pending_p instead of linux_nat_lp_status_is_event.
12959 (cancel_breakpoint): Rename to ...
12960 (check_stopped_by_breakpoint): ... this. Record whether the LWP
12961 stopped for a software breakpoint or hardware breakpoint.
12962 (select_event_lwp): Only give preference to the stepping LWP in
12963 all-stop mode. Adjust comments.
12964 (stop_and_resume_callback): Remove references to new_pending_p.
12965 (linux_nat_filter_event): Likewise. Leave exit events of the
12966 leader thread pending here. Handle signal short circuiting here.
12967 Only call save_sigtrap after storing the pending waitstatus.
12968 (linux_nat_wait_1): Remove 'retry' label. Remove references to
12969 new_pending. Don't handle leaving events the caller is not
12970 interested in pending here, nor handle signal short-circuiting
12971 here. Also give equal priority to all LWPs that have had events
12972 in non-stop mode. If reporting a software breakpoint event,
12973 unadjust the LWP's PC.
12974 * linux-nat.h (enum lwp_stop_reason): New.
12975 (struct lwp_info) <stop_pc>: New field.
12976 (struct lwp_info) <stopped_by_watchpoint>: Delete field.
12977 (struct lwp_info) <stop_reason>: New field.
12978 * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
12979
12980 2015-01-09 Pedro Alves <palves@redhat.com>
12981
12982 * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>:
12983 Set the LWP's 'resumed' flag.
12984
12985 2015-01-09 Pedro Alves <palves@redhat.com>
12986
12987 * linux-nat.c (linux_resume_one_lwp): New function.
12988 (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp.
12989 (linux_nat_resume): Use lwp_status_pending_p and
12990 linux_resume_one_lwp.
12991 (linux_handle_syscall_trap): Use linux_resume_one_lwp.
12992 (linux_handle_extended_wait): Use linux_resume_one_lwp.
12993 (status_callback, running_callback): Use lwp_status_pending_p.
12994 (lwp_status_pending_p): New function.
12995 (stop_and_resume_callback): Use lwp_status_pending_p.
12996 (linux_nat_filter_event): Use linux_resume_one_lwp.
12997 (linux_nat_wait_1): Always use status_callback to look for an LWP
12998 with a pending status. Use linux_resume_one_lwp.
12999 (resume_stopped_resumed_lwps): Use lwp_status_pending_p and
13000 linux_resume_one_lwp.
13001
13002 2015-01-09 Pedro Alves <palves@redhat.com>
13003
13004 * breakpoint.c (bp_location_inserted_here_p): New function,
13005 factored out from ...
13006 (breakpoint_inserted_here_p): ... here. Use
13007 ALL_BP_LOCATIONS_AT_ADDR.
13008 (software_breakpoint_inserted_here_p): Use
13009 bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR.
13010
13011 2014-01-09 Pedro Alves <palves@redhat.com>
13012
13013 Skip enabling event reporting if the kernel supports
13014 PTRACE_EVENT_CLONE.
13015 * linux-thread-db.c: Include "nat/linux-ptrace.h".
13016 (thread_db_use_events): New function.
13017 (try_thread_db_load_1): Check thread_db_use_events before enabling
13018 event reporting.
13019 (update_thread_state): New function.
13020 (attach_thread): Use it. Check thread_db_use_events before
13021 enabling event reporting.
13022 (thread_db_detach): Check thread_db_use_events before disabling
13023 event reporting.
13024 (find_new_threads_callback): Check thread_db_use_events before
13025 enabling event reporting. Update the thread's state if not using
13026 libthread_db events.
13027
13028 2015-01-09 Pedro Alves <palves@redhat.com>
13029
13030 * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're
13031 about to wait for is > 0.
13032 * linux-thread-db.c (find_new_threads_callback): Ignore thread if
13033 the kernel thread ID is -1.
13034
13035 2015-01-09 Pedro Alves <palves@redhat.com>
13036
13037 * linux-nat.c (attach_proc_task_lwp_callback): New function.
13038 (linux_nat_attach): Use linux_proc_attach_tgid_threads.
13039 (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's
13040 ptrace option flags.
13041 * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New
13042 field.
13043 * nat/linux-procfs.c: Include <dirent.h>.
13044 (linux_proc_get_int): New parameter "warn". Handle it.
13045 (linux_proc_get_tgid): Adjust.
13046 (linux_proc_get_tracerpid): Rename to ...
13047 (linux_proc_get_tracerpid_nowarn): ... this.
13048 (linux_proc_pid_get_state): New function, factored out from
13049 (linux_proc_pid_has_state): ... this. Add new parameter "warn"
13050 and handle it.
13051 (linux_proc_pid_is_gone): New function.
13052 (linux_proc_pid_is_stopped): Adjust.
13053 (linux_proc_pid_is_zombie_maybe_warn)
13054 (linux_proc_pid_is_zombie_nowarn): New functions.
13055 (linux_proc_pid_is_zombie): Use
13056 linux_proc_pid_is_zombie_maybe_warn.
13057 (linux_proc_attach_tgid_threads): New function.
13058 * nat/linux-procfs.h (linux_proc_get_tgid): Update comment.
13059 (linux_proc_get_tracerpid): Rename to ...
13060 (linux_proc_get_tracerpid_nowarn): ... this, and update comment.
13061 (linux_proc_pid_is_gone): New declaration.
13062 (linux_proc_pid_is_zombie): Update comment.
13063 (linux_proc_pid_is_zombie_nowarn): New declaration.
13064 (linux_proc_attach_lwp_func): New typedef.
13065 (linux_proc_attach_tgid_threads): New declaration.
13066 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to
13067 use nowarn functions.
13068 (linux_ptrace_attach_fail_reason_string): Move here from
13069 gdbserver/linux-low.c and rename.
13070 (ptrace_supports_feature): If the current ptrace options are not
13071 known yet, check them now, instead of asserting.
13072 * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string):
13073 Declare.
13074
13075 2015-01-09 Pedro Alves <palves@redhat.com>
13076
13077 * linux-thread-db.c (thread_db_find_new_threads_silently)
13078 (try_thread_db_load_1, try_thread_db_load, thread_db_load_search)
13079 (find_new_threads_once): Print debug output on gdb_stdlog.
13080
13081 2015-01-09 Chen Gang <gang.chen.5i5j@gmail.com>
13082 Pedro Alves <palves@redhat.com>
13083
13084 * compile/compile.c: Include "gdb_wait.h".
13085 (do_rmdir): Check return value, and free 'zap'.
13086
13087 2015-01-08 Pedro Alves <palves@redhat.com>
13088 Yao Qi <yao@codesourcery.com>
13089
13090 * dwarf2loc.c (indirect_pieced_value): Don't call
13091 gdb_sign_extend. Call extract_signed_integer instead.
13092 * utils.c (gdb_sign_extend): Remove.
13093 * utils.h (gdb_sign_extend): Remove declaration.
13094
13095 2015-01-07 Pierre Muller <muller@sourceware.org>
13096
13097 PR symtab/17811
13098 * stabsread.c (define_symbol): Set language for C++ special symbols.
13099
13100 2015-01-07 Patrick Palka <patrick@parcs.ath.cx>
13101
13102 * inflow.c (initial_gdb_ttystate): Tweak comment.
13103
13104 2015-01-07 Joel Brobecker <brobecker@adacore.com>
13105
13106 * inflow.c (set_initial_gdb_ttystate): Add empty line after
13107 comment documenting function.
13108
13109 2015-01-07 Patrick Palka <patrick@parcs.ath.cx>
13110
13111 * terminal.h (set_initial_gdb_ttystate): Declare.
13112 * inflow.c (initial_gdb_ttystate): New static variable.
13113 (set_initial_gdb_ttystate): New setter.
13114 (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate
13115 instead of our current terminal state.
13116 * top.c (gdb_init): Call set_initial_gdb_ttystate.
13117
13118 2015-01-07 Joel Brobecker <brobecker@adacore.com>
13119
13120 * guile/scm-type.c (tyscm_array_1): Add comment.
13121 * python/py-type.c (typy_array_1): Add comment.
13122
13123 2015-01-06 Joel Brobecker <brobecker@adacore.com>
13124
13125 * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range
13126 error if N2 is equal to N1 - 1.
13127
13128 2015-01-06 Joel Brobecker <brobecker@adacore.com>
13129
13130 * python/py-type.c (typy_array_1): Do not raise negative-length
13131 exception if N2 is equal to N1 - 1.
13132
13133 2015-01-03 Doug Evans <xdje42@gmail.com>
13134
13135 * c-exp.y: Whitespace cleanup.
13136 (classify_inner_name): Remove extra ;.
13137
13138 2015-01-02 Maciej W. Rozycki <macro@codesourcery.com>
13139
13140 * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack
13141 offset signed.
13142
13143 2015-01-02 Doug Evans <dje@google.com>
13144
13145 * dwarf2read.c (setup_type_unit_groups): Remove outdated comment.
13146
13147 2015-01-02 Doug Evans <dje@google.com>
13148
13149 * symtab.h (struct symbol): Fix typo in comment.
13150
13151 2015-01-01 Joel Brobecker <brobecker@adacore.com>
13152
13153 Update year range in copyright notice of all files.
13154
13155 2015-01-01 Joel Brobecker <brobecker@adacore.com>
13156
13157 * top.c (print_gdb_version): Update copyright year to 2015.
13158
13159 2015-01-01 Joel Brobecker <brobecker@adacore.com>
13160
13161 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014.
13162
13163 For older changes see ChangeLog-2014.
13164 \f
13165 Local Variables:
13166 mode: change-log
13167 left-margin: 8
13168 fill-column: 74
13169 version-control: never
13170 coding: utf-8
13171 End:
This page took 0.418909 seconds and 4 git commands to generate.