Remove use of stdbool.h in GDB sources.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
cc7039d3
JB
12015-03-02 Joel Brobecker <brobecker@adacore.com>
2
3 * utils.h: Remove <stdbool.h> #include.
4 (producer_is_gcc): Change return type to "int".
5 * utils.c (producer_is_gcc): Change return type to int.
6 Return 1 instead of true, and 0 instead of false.
7 Adjust function documentation accordingly.
8
550bdf96
AA
92015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
10
11 * s390-linux-nat.c (have_regset_vxrs): New static variable.
12 (s390_linux_fetch_inferior_registers): Handle vector registers, if
13 present.
14 (s390_linux_store_inferior_registers): Likewise.
15 (s390_get_hwcap): Remove function. Embed its logic...
16 (s390_read_description): ...here. Yield a target description with
17 vector registers if applicable.
18 * s390-linux-tdep.c: Include "features/s390-vx-linux64.c",
19 "features/s390-tevx-linux64.c", "features/s390x-vx-linux64.c", and
20 "features/s390x-tevx-linux64.c".
21 (struct gdbarch_tdep) <v0_full_regnum>: New field.
22 (s390_dwarf_regmap): Add vector registers. Remove bogus entries
23 for "GNU/Linux-specific registers".
24 (s390_dwarf_reg_r0l): New enum value.
25 (s390_dwarf_reg_to_regnum): Support vector registers.
26 (s390_adjust_frame_regnum): Adjust pseudo DWARF register numbers
27 of GPR lower halves.
28 (regnum_is_vxr_full): New function.
29 (s390_register_name): New function.
30 (s390_pseudo_register_name): Handle v0-v15, which are composed of
31 f0-f15 and v0l-v15l.
32 (s390_pseudo_register_type): Likewise.
33 (s390_pseudo_register_read): Likewise.
34 (s390_pseudo_register_write): Likewise.
35 (s390_value_from_register): Account for the fact that values are
36 placed left-justified in vector registers.
37 (s390_pseudo_register_reggroup_p): Add pseudo registers v0-v15 to
38 the vector reggroup and omit them from the general reggroup.
39 (s390_regmap_vxrs_low, s390_regmap_vxrs_high): New register maps.
40 (s390_vxrs_low_regset, s390_vxrs_high_regset): New regsets.
41 (s390_iterate_over_regset_sections): Add iterations for the two
42 new vector regsets.
43 (s390_core_read_description): Yield a target description with
44 vector registers if applicable.
45 (s390_gdbarch_init): Handle target descriptions with vector
46 registers. Add "register_name" gdbarch method.
47 (_initialize_s390_tdep): Call new tdesc initialization functions.
48 * s390-linux-tdep.h (HWCAP_S390_VX): New macro.
49 (S390_V0_LOWER_REGNUM, S390_V1_LOWER_REGNUM, S390_V2_LOWER_REGNUM)
50 (S390_V3_LOWER_REGNUM, S390_V4_LOWER_REGNUM, S390_V5_LOWER_REGNUM)
51 (S390_V6_LOWER_REGNUM, S390_V7_LOWER_REGNUM, S390_V8_LOWER_REGNUM)
52 (S390_V9_LOWER_REGNUM, S390_V10_LOWER_REGNUM)
53 (S390_V11_LOWER_REGNUM, S390_V12_LOWER_REGNUM)
54 (S390_V13_LOWER_REGNUM, S390_V14_LOWER_REGNUM)
55 (S390_V15_LOWER_REGNUM, S390_V16_REGNUM, S390_V17_REGNUM)
56 (S390_V18_REGNUM, S390_V19_REGNUM, S390_V20_REGNUM)
57 (S390_V21_REGNUM, S390_V22_REGNUM, S390_V23_REGNUM)
58 (S390_V24_REGNUM, S390_V25_REGNUM, S390_V26_REGNUM)
59 (S390_V27_REGNUM, S390_V28_REGNUM, S390_V29_REGNUM)
60 (S390_V30_REGNUM, S390_V31_REGNUM): New macros.
61 (S390_NUM_REGS): Adjust value.
62 (s390_vxrs_low_regset, s390_vxrs_high_regset): Declare.
63 (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64)
64 (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): Likewise.
65 * NEWS: Announce S/390 vector register support.
66
446899e4
AA
672015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
68
69 * features/s390-tevx-linux64.xml: New file.
70 * features/s390-vx-linux64.xml: New file.
71 * features/s390-vx.xml: New file.
72 * features/s390x-tevx-linux64.xml: New file.
73 * features/s390x-vx-linux64.xml: New file.
74 * features/Makefile (WHICH): Add s390-vx-linux64,
75 s390x-vx-linux64, s390-tevx-linux64, and s390x-tevx-linux64.
76 (s390-vx-linux64-expedite, s390-tevx-linux64-expedite)
77 (s390x-vx-linux64-expedite, s390x-tevx-linux64-expedite): New
78 macros.
79 * features/s390-tevx-linux64.c: New generated file.
80 * features/s390-vx-linux64.c: Likewise.
81 * features/s390x-tevx-linux64.c: Likewise.
82 * features/s390x-vx-linux64.c: Likewise.
83 * regformats/s390-tevx-linux64.dat: Likewise.
84 * regformats/s390-vx-linux64.dat: Likewise.
85 * regformats/s390x-tevx-linux64.dat: Likewise.
86 * regformats/s390x-vx-linux64.dat: Likewise.
87
b7236fbe
DE
882015-02-28 Doug Evans <xdje42@gmail.com>
89
90 * symtab.h (struct symtab) <next>: Fix comment.
91
02e62830
SM
922015-02-27 Simon Marchi <simon.marchi@ericsson.com>
93
94 * python/python.c (python_GdbModuleDef): Rename GdbMethods to
95 python_GdbMethods.
96
bf36a1e7
PA
972015-02-27 Pedro Alves <palves@redhat.com>
98
99 * dtrace-probe.c (dtrace_probe_ops): Make extern.
100
ad6aff7d
PA
1012015-02-27 Pedro Alves <palves@redhat.com>
102
103 * common/common-exceptions.h (exception_none): Declare.
104 * common/common-exceptions.c (exception_none): Moved from
105 exceptions.c.
106 (exceptions_state_mc_init): Use exception_none.
107 * exceptions.c (exception_none): Move to
108 common/common-exceptions.c.
109 * exceptions.h (exception_none): Move to
110 common/common-exceptions.h.
111
97c18565
PA
1122015-02-27 Pedro Alves <palves@redhat.com>
113
114 * main.c (catch_command_errors, catch_command_errors_const):
115 Remove 'mask' argument. Adjust.
116 (captured_main): Adjust callers.
117
e992c591
PA
1182015-02-27 Pedro Alves <palves@redhat.com>
119
120 * python/python-internal.h: Include "extension-priv.h".
121
64166036
PA
1222015-02-27 Pedro Alves <palves@redhat.com>
123
124 * breakpoint.h (enum print_stop_action): Move further up in the
125 file.
126
8a526fa6
PA
1272015-02-27 Pedro Alves <palves@redhat.com>
128
129 * gdbarch.sh: Include regcache.h.
130 * gdbarch.h: Regenerate.
131
0fa9c223
PA
1322015-02-27 Pedro Alves <palves@redhat.com>
133
134 * arm-tdep.c (decode_insn) <arm_handle_insn, thumb_handle_insn>:
135 Remove duplicate const.
136 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Remove
137 duplicate const.
138
7cf99fb1
PA
1392015-02-27 Pedro Alves <palves@redhat.com>
140
141 * cp-valprint.c (vtbl_ptr_name): Use EXPORTED_CONST.
142 * guile/guile.c (extension_language_guile): Use EXPORTED_CONST.
143 * features/feature_to_c.sh: Tag the generated xml_builtin array
144 with extern const in C++ mode.
145
1424c16e
TT
1462015-02-27 Tom Tromey <tromey@redhat.com>
147
148 * minidebug.c (struct lzma_stream): Rename to ...
149 (struct gdb_lzma_stream): ... this.
150 (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust.
151
10367c7c
PA
1522015-02-27 Pedro Alves <palves@redhat.com>
153
154 * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New
155 function.
156 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
157 (mi_cmd_stack_list_variables): Use it.
158
4180215b
PA
1592015-02-27 Pedro Alves <palves@redhat.com>
160
161 * x86-linux-nat.c (u_debugreg_offset): New function.
162 (x86_linux_dr_get, x86_linux_dr_set): Use it.
163
2f56f7c3
PA
1642015-02-27 Pedro Alves <palves@redhat.com>
165
166 * nat/x86-dregs.h (enum target_hw_bp_type): Remove forward
167 declaration.
168 Include break-common.h.
169
570dc176
TT
1702015-02-27 Tom Tromey <tromey@redhat.com>
171 Pedro Alves <palves@redhat.com>
172
173 * arm-tdep.c (set_fp_model_sfunc, arm_set_abi): Use 'int' for
174 local used to iterate over enums.
175 * completer.c (signal_completer): Likewise.
176 * i386-tdep.c (i386_stap_parse_special_token): Likewise.
177 * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
178 * tui/tui-data.c (tui_next_win, tui_prev_win): Likewise.
179 * tui/tui-layout.c (next_layout, prev_layout): Likewise.
180 * tui/tui-win.c (tui_refresh_all_win, tui_rehighlight_all)
181 (tui_resize_all, tui_set_focus_command, tui_all_windows_info): Likewise.
182 * tui-wingeneral.c (tui_refresh_all): Likewise.
183
68c14faa
PA
1842015-02-27 Pedro Alves <palves@redhat.com>
185
186 * target.h: Include "infrun.h".
187
749bab01
PA
1882015-02-27 Pedro Alves <palves@redhat.com>
189
190 * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP.
191
3c14e5a3
PA
1922015-02-27 Pedro Alves <palves@redhat.com>
193
194 * common/agent.h (IPA_SYM_EXPORTED_NAME): New.
195 (IPA_SYM): Use it.
196 * common/common-defs.h (EXTERN_C_PUSH, EXTERN_C_POP): New macros.
197
56000a98
PA
1982015-02-27 Pedro Alves <palves@redhat.com>
199
200 * cli-out.c (_rl_erase_entire_line): Move declaration out of
201 cli_mld_erase_entire_line, and make it extern "C".
202 * common/common-defs.h (EXTERN_C): New.
203 * completer.c (_rl_completion_prefix_display_length)
204 (_rl_print_completions_horizontally, QSFUNC): Move declarations
205 out of gdb_display_match_list_1.
206 (_rl_qsort_string_compare): Move declaration out of
207 gdb_display_match_list_1, and make it extern "C".
208 * defs.h (re_comp): Use EXTERN_C.
209 * maint.c (_mcleanup): Move declaration out of mcleanup_wrapper,
210 and make it extern "C".
211 (monstartup): Move declaration out of maintenance_set_profile_cmd,
212 and make it extern "C".
213 (main): Move declaration out of maintenance_set_profile_cmd.
214 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string): Use
215 EXTERN_C.
216
bcabf420
PA
2172015-02-27 Pedro Alves <palves@redhat.com>
218
219 * python/python.c (GdbMethods): Rename to ...
220 (python_GdbMethods): ... this and make extern.
221 (GdbModuleDef): Rename to ...
222 (python_GdbModuleDef): ... this and make extern.
223
928dbe07
PA
2242015-02-27 Pedro Alves <palves@redhat.com>
225
226 * record-btrace.c (set_record_btrace_cmdlist)
227 (show_record_btrace_cmdlist): Remove redefinitions.
228
52059ffd
TT
2292015-02-27 Tom Tromey <tromey@redhat.com>
230 Pedro Alves <palves@redhat.com>
231
232 * dwarf2-frame.c (enum cfa_how_kind, struct
233 dwarf2_frame_state_reg_info): Move out of struct
234 dwarf2_frame_state.
235 * dwarf2read.c (struct tu_stats): Move out of struct
236 dwarf2_per_objfile.
237 (struct file_entry): Move out of struct line_header.
238 (struct nextfield, struct nextfnfield, struct fnfieldlist, struct
239 typedef_field_list): Move out of struct field_info.
240 * gdbtypes.h (enum dynamic_prop_kind, union dynamic_prop_data):
241 Move out of struct dynamic_prop.
242 (union type_owner, union field_location, struct field, struct
243 range_bounds, union type_specific): Move out of struct main_type.
244 (struct fn_fieldlist, struct fn_field, struct typedef_field)
245 (VOFFSET_STATIC): Move out of struct cplus_struct_type.
246 (struct call_site_target, union call_site_parameter_u, struct
247 call_site_parameter): Move out of struct call_site.
248 * m32c-tdep.c (enum m32c_prologue_kind): Move out of struct
249 m32c_prologue.
250 (enum srcdest_kind): Move out of struct srcdest.
251 * main.c (enum cmdarg_kind): Move out of struct cmdarg.
252 * prologue-value.h (enum prologue_value_kind): Move out of struct
253 prologue_value.
254 * s390-linux-tdep.c (enum s390_abi_kind): Move out of struct
255 gdbarch_tdep.
256 * stabsread.c (struct nextfield, struct next_fnfieldlist): Move
257 out of struct field_info.
258 * symfile.h (struct other_sections): Move out of struct
259 section_addr_info.
260 * symtab.c (struct symbol_cache_slot): Move out struct
261 block_symbol_cache.
262 * target-descriptions.c (enum tdesc_type_kind): Move out of
263 typedef struct tdesc_type.
264 * tui/tui-data.h (enum tui_line_or_address_kind): Move out of
265 struct tui_line_or_address.
266 * value.c (enum internalvar_kind, union internalvar_data): Move
267 out of struct internalvar.
268 * xtensa-tdep.h (struct ctype_cache): Move out of struct
269 gdbarch_tdep.
270
fe978cb0
PA
2712015-02-27 Tom Tromey <tromey@redhat.com>
272 Pedro Alves <palves@redhat.com>
273
274 Rename symbols whose names are reserved C++ keywords throughout.
275
3bc3d82a
PA
2762015-02-27 Pedro Alves <palves@redhat.com>
277
278 * Makefile.in (COMPILER): New, get it from autoconf.
279 (COMPILE.pre, CC_LD): Use COMPILER.
280 (CXX): Get from autoconf instead.
281 (CXX_FOR_TARGET): Default to g++ instead of gcc.
282 * acinclude.m4: Include build-with-cxx.m4.
283 * build-with-cxx.m4: New file.
284 * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX.
285 Disable -Werror by default if building in C++ mode.
286 (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and
287 -Wno-narrowing in C++ mode. Only enable -Wpointer-sign in C mode.
288 Run supported-warning-flags tests with the C++ compiler.
289 Save/restore CXXFLAGS too.
290 * configure: Regenerate.
291
07697489
PA
2922015-02-27 Pedro Alves <palves@redhat.com>
293
294 * libiberty.m4: New file.
295 * acinclude.m4: Include libiberty.m4.
296 * configure.ac: Call libiberty_INIT.
297 * config.in, configure: Regenerate.
298
60abeae4
AA
2992015-02-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
300
301 * s390-linux-tdep.c (s390_gcc_target_options): Not just handle
302 31-bit targets, but 64-bit targets as well.
303 (s390_gnu_triplet_regexp): New function.
304 (s390_gdbarch_init): Set the gcc_target_options gdbarch method for
305 64-bit targets as well. Set the gnu_triplet_regexp gdbarch
306 method.
307
f44466fb 3082015-02-27 Jon TURNEY <jon.turney@dronecode.org.uk> (tiny patch)
f0666312
JT
309
310 * windows-nat.c (CONTEXT_DEBUGGER): Remove.
311 (CONTEXT_DEBUGGER_DR): Add CONTEXT_SEGMENTS. Incorporate flags
312 from CONTEXT_DEBUGGER.
313
0def5aaa
DE
3142015-02-26 Doug Evans <dje@google.com>
315
316 * gdbtypes.c (internal_type_vptr_fieldno): Add missing call to
317 CHECK_TYPEDEF.
318 (set_type_vptr_fieldno): Ditto.
319 (internal_type_vptr_basetype, set_type_vptr_basetype): Ditto.
320 * gnu-v3-abi.c (gnuv3_dynamic_class): Ditto.
321
77b64a49
PA
3222015-02-26 Pedro Alves <palves@redhat.com>
323
324 * auto-load.h (file_is_auto_load_safe): Add ATTRIBUTE_PRINTF.
325 * complaints.c (vcomplaint): Pass argument FMT directly to
326 printf-like functions instead of complaint->fmt.
327 * ctf.c (ctf_save_write_metadata): Add ATTRIBUTE_PRINTF.
328 * darwin-nat.c (inferior_debug): Add ATTRIBUTE_PRINTF.
329 * compile/compile-loc2c.c (pushf, unary, binary): Add
330 ATTRIBUTE_PRINTF.
331 (do_compile_dwarf_expr_to_c): Pass string literal as format string
332 to pushf.
333 (BINARY): Pass string literal as format string to 'binary'.
334 * compile/compile-object-load.c (link_callbacks_einfo): Add
335 ATTRIBUTE_PRINTF.
336 * guile/guile-internal.h (gdbscm_printf): Add ATTRIBUTE_PRINTF.
337
532f44ed
PA
3382015-02-26 Pedro Alves <palves@redhat.com>
339
340 * windows-termcap.c: Rename to ...
341 * stub-termcap.c: ... this. Adjust header line.
342 * Makefile.in (SFILES): Refer to stub-termcap.c instead of
343 windows-termcap.c.
344 * configure: Regenerate.
345 * configure.ac: Refer to stub-termcap.o instead of
346 windows-termcap.o.
347 * gdb_curses.h: Mention stub-termcap.c instead of
348 windows-termcap.c.
349
081a1c2c
JK
3502015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
351
352 * compile/compile-c-symbols.c (convert_one_symbol, convert_symbol_bmsym)
353 (gcc_symbol_address): Call gnu_ifunc_resolve_addr.
354
2f41223f
AT
3552015-02-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
356
357 * gdb/infcmd.c (print_return_value): use type_to_string to print type.
358
80c57053
JK
3592015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
360
361 * elfread.c (elf_read_minimal_symbols): Use bfd_alloc for
362 bfd_canonicalize_symtab.
363
cf424aef
JB
3642015-02-25 John Baldwin <jhb@FreeBSD.org>
365
366 * amd64fbsd-nat.c: Include sys/user.h.
367 (_initialize_amd64fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
368 instead of KERN_PS_STRINGS to locate the signal trampoline.
369 * i386fbsd-nat.c: Include sys/user.h.
370 (_initialize_i386fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
371 instead of KERN_PS_STRINGS to locate the signal trampoline.
372 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_code): New.
373 (amd64fbsd_sigtramp_p): New.
374 (amd64fbsd_sigtramp_start_addr, amd64fbsd_sigtramp_end_addr): No
375 longer set default values.
376 (amd64fbsd_init_abi): Set "sigtramp_p" to "amd64fbsd_sigtramp_p".
377 * i386fbsd-tdep.c (i386fbsd_sigtramp_start)
378 (i386fbsd_sigtramp_middle, i386fbsd_sigtramp_end)
379 (i386fbsd_freebsd4_sigtramp_start)
380 (i386fbsd_freebsd4_sigtramp_middle)
381 (i386fbsd_freebsd4_sigtramp_end, i386fbsd_osigtramp_start)
382 (i386fbsd_osigtramp_middle, i386fbsd_osigtramp_end): New.
383 (i386fbsd_sigtramp_p): New.
384 (i386fbsd_sigtramp_start_addr, i386fbsd_sigtramp_end_addr): No
385 longer set default values.
386 (i386fbsd_init_abi): Set "sigtramp_p" to "i386fbsd_sigtramp_p".
387
c5cb74ee
JB
3882015-02-25 John Baldwin <jhb@freebsd.org>
389
390 * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use
391 get_frame_register instead of frame_unwind_register_unsigned.
392
17487d85
JK
3932015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
394
395 PR build/18033
396 * compile/compile-c-support.c (c_compute_program): Change // comment.
397 * compile/compile-object-load.c (setup_sections): Change // comment.
398
9357a9e6
JB
3992015-02-26 Joel Brobecker <brobecker@adacore.com>
400
401 PR build/18033:
402 * iq2000-tdep.c (iq2000_frame_cache): Delete C++-style comment.
403
1f10ba14
PA
4042015-02-23 Pedro Alves <palves@redhat.com>
405
406 * remote.c (skip_to_semicolon): New function.
407 (remote_parse_stop_reply) <T stop reply>: Use it. Don't
408 special case the stop reasons that look like hex numbers
409 upfront. Instead handle real register numbers after matching
410 all the known stop reasons.
411
96553a0c
DE
4122015-02-21 Doug Evans <dje@google.com>
413
414 PR c++/17976, symtab/17821
415 * cp-namespace.c (cp_search_static_and_baseclasses): New parameter
416 is_in_anonymous. All callers updated.
417 (find_symbol_in_baseclass): Ditto.
418 (cp_lookup_nested_symbol_1): Ditto. Don't search all static blocks
419 for symbols in an anonymous namespace.
420 * dwarf2read.c (namespace_name): Don't call dwarf2_name, fetch
421 DW_AT_name directly.
422 (dwarf2_name): Convert missing namespace name to
423 CP_ANONYMOUS_NAMESPACE_STR.
424
2db9a427
PA
4252015-02-20 Pedro Alves <palves@redhat.com>
426
427 * linux-nat.c (linux_handle_extended_wait): Call
428 thread_db_notice_clone whenever a new clone LWP is detected.
429 (linux_stop_and_wait_all_lwps, linux_unstop_all_lwps): New
430 functions.
431 * linux-nat.h (thread_db_attach_lwp): Delete declaration.
432 (thread_db_notice_clone, linux_stop_and_wait_all_lwps)
433 (linux_unstop_all_lwps): Declare.
434 * linux-thread-db.c (struct thread_get_info_inout): Delete.
435 (thread_get_info_callback): Delete.
436 (thread_from_lwp): Use td_thr_get_info and record_thread.
437 (thread_db_attach_lwp): Delete.
438 (thread_db_notice_clone): New function.
439 (try_thread_db_load_1): If /proc is mounted and shows the
440 process'es task list, walk over all LWPs and call thread_from_lwp
441 instead of relying on td_ta_thr_iter.
442 (attach_thread): Don't call check_thread_signals here. Split the
443 tail part of the function (which adds the thread to the core GDB
444 thread list) to ...
445 (record_thread): ... this function. Call check_thread_signals
446 here.
447 (thread_db_wait): Don't call thread_db_find_new_threads_1. Always
448 call thread_from_lwp.
449 (thread_db_update_thread_list): Rename to ...
450 (thread_db_update_thread_list_org): ... this.
451 (thread_db_update_thread_list): New function.
452 (thread_db_find_thread_from_tid): Delete.
453 (thread_db_get_ada_task_ptid): Simplify.
454 * nat/linux-procfs.c: Include <sys/stat.h>.
455 (linux_proc_task_list_dir_exists): New function.
456 * nat/linux-procfs.h (linux_proc_task_list_dir_exists): Declare.
457
3b27ef47
PA
4582015-02-20 Pedro Alves <palves@redhat.com>
459
460 * linux-nat.c (lin_lwp_attach_lwp): No longer special case the
461 main LWP. Handle the case of waitpid returning 0 if we're already
462 attached to the LWP. Don't set the LWP's last_resume_kind to
463 resume_stop if we already knew about the LWP.
464 (linux_nat_filter_event): Add debug logs.
465
1cc28231
PA
4662015-02-20 Pedro Alves <palves@redhat.com>
467
468 * target.h (forward_target_decr_pc_after_break): Delete
469 declaration.
470
5c5019c2
PA
4712015-02-20 Pedro Alves <palves@redhat.com>
472
473 PR threads/18006
474 * linux-thread-db.c (thread_get_info_callback): Return early if
475 the thread's lwp id is -1.
476
f3978e91
JB
4772015-02-20 Joel Brobecker <brobecker@adacore.com>
478
479 GDB 7.9 released.
480
ffdf88ec
SE
4812015-02-19 Steve Ellcey <sellcey@imgtec.com>
482
483 * dtrace-probe.c (dtrace_process_dof_probe): Initialize arg.expr.
484 (dtrace_get_probes) Change type of variable 'dof'.
485
c9587f88
AT
4862015-02-19 Antoine Tremblay <antoine.tremblay@ericsson.com>
487
488 PR breakpoints/16812
489 * linux-nat.c (linux_nat_filter_event): Report SIGTRAP,SIGILL,SIGSEGV.
490 * nat/linux-ptrace.c (linux_wstatus_maybe_breakpoint): Add.
491 * nat/linux-ptrace.h: Add linux_wstatus_maybe_breakpoint.
492
53cf2ee0
DT
4932015-02-19 David Taylor <dtaylor@emc.com>
494
495 * common/ax.def (setv): Fix consumed entry in setv DEFOP.
496
acfe0940
PP
4972015-02-18 Patrick Palka <patrick@parcs.ath.cx>
498
499 * tui/tui-io.c (tui_handle_resize_during_io): Remove this
500 function.
501 (tui_putc): Don't call tui_handle_resize_during_io.
502 (tui_getc): Likewise.
503 (tui_mld_getc): Likewise.
504 * tui/tui-win.c: Include event-loop.h and tui/tui-io.h.
505 (tui_sigwinch_token): New static variable.
506 (tui_initialize_win): Adjust documentation. Set
507 tui_sigwinch_token.
508 (tui_async_resize_screen): New asynchronous callback.
509 (tui_sigwinch_handler): Adjust documentation. Asynchronously
510 invoke tui_async_resize_screen.
511
f6a88844
JM
5122015-02-18 Jose E. Marchesi <jose.marchesi@oracle.com>
513
514 * configure: Regenerated.
515 * configure.ac: Use GDB_AC_TRANSFORM.
516 * Makefile.in (aclocal_m4_deps): Added transform.m4.
517 * acinclude.m4: sinclude transform.m4.
518 * transform.m4: New file.
519 (GDB_AC_TRANSFORM): New macro.
520
b05e3b0d
JM
5212015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
522
523 * NEWS: Announce the support for DTrace SDT probes.
524
c3e3045e
JM
5252015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
526
527 * amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h".
528 (amd64_dtrace_parse_probe_argument): New function.
529 (amd64_dtrace_probe_is_enabled): Likewise.
530 (amd64_dtrace_enable_probe): Likewise.
531 (amd64_dtrace_disable_probe): Likewise.
532 (amd64_linux_init_abi): Register the
533 `gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe',
534 `gdbarch_dtrace_disable_probe' and
535 `gdbarch_dtrace_probe_is_enabled' hooks.
536 (amd64_dtrace_disabled_probe_sequence_1): New constant.
537 (amd64_dtrace_disabled_probe_sequence_2): Likewise.
538 (amd64_dtrace_enable_probe_sequence): Likewise.
539 (amd64_dtrace_disable_probe_sequence): Likewise.
540
d4777acb
JM
5412015-01-17 Jose E. Marchesi <jose.marchesi@oracle.com>
542
543 * breakpoint.c (BREAK_ARGS_HELP): Help string updated to mention
544 the -probe-dtrace new vpossible value for PROBE_MODIFIER.
545 * configure.ac (CONFIG_OBS): dtrace-probe.o added if BFD can
546 handle ELF files.
547 * Makefile.in (SFILES): dtrace-probe.c added.
548 * configure: Regenerate.
549 * dtrace-probe.c: New file.
550 (SHT_SUNW_dof): New constant.
551 (dtrace_probe_type): New enum.
552 (dtrace_probe_arg): New struct.
553 (dtrace_probe_arg_s): New typedef.
554 (struct dtrace_probe_enabler): New struct.
555 (dtrace_probe_enabler_s): New typedef.
556 (dtrace_probe): New struct.
557 (dtrace_probe_is_linespec): New function.
558 (dtrace_dof_sect_type): New enum.
559 (dtrace_dof_dofh_ident): Likewise.
560 (dtrace_dof_encoding): Likewise.
561 (DTRACE_DOF_ENCODE_LSB): Likewise.
562 (DTRACE_DOF_ENCODE_MSB): Likewise.
563 (dtrace_dof_hdr): New struct.
564 (dtrace_dof_sect): Likewise.
565 (dtrace_dof_provider): Likewise.
566 (dtrace_dof_probe): Likewise.
567 (DOF_UINT): New macro.
568 (DTRACE_DOF_PTR): Likewise.
569 (DTRACE_DOF_SECT): Likewise.
570 (dtrace_process_dof_probe): New function.
571 (dtrace_process_dof): Likewise.
572 (dtrace_build_arg_exprs): Likewise.
573 (dtrace_get_arg): Likewise.
574 (dtrace_get_probes): Likewise.
575 (dtrace_get_probe_argument_count): Likewise.
576 (dtrace_can_evaluate_probe_arguments): Likewise.
577 (dtrace_evaluate_probe_argument): Likewise.
578 (dtrace_compile_to_ax): Likewise.
579 (dtrace_probe_destroy): Likewise.
580 (dtrace_gen_info_probes_table_header): Likewise.
581 (dtrace_gen_info_probes_table_values): Likewise.
582 (dtrace_probe_is_enabled): Likewise.
583 (dtrace_probe_ops): New variable.
584 (info_probes_dtrace_command): New function.
585 (_initialize_dtrace_probe): Likewise.
586 (dtrace_type_name): Likewise.
587
8b367e17
JM
5882015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
589
590 * gdbarch.sh (dtrace_parse_probe_argument): New.
591 (dtrace_probe_is_enabled): Likewise.
592 (dtrace_enable_probe): Likewise.
593 (dtrace_disable_probe): Likewise.
594 * gdbarch.c: Regenerate.
595 * gdbarch.h: Regenerate.
596
9aca2ff8
JM
5972015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
598
599 * stap-probe.c (stap_probe_ops): Add NULLs in the static
600 stap_probe_ops for `enable_probe' and `disable_probe'.
601 * probe.c (enable_probes_command): New function.
602 (disable_probes_command): Likewise.
603 (_initialize_probe): Define the cli commands `enable probe' and
604 `disable probe'.
605 (parse_probe_linespec): New function.
606 (info_probes_for_ops): Use parse_probe_linespec.
607 * probe.h (probe_ops): New hooks `enable_probe' and
608 `disable_probe'.
609
03e98035
JM
6102015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
611
612 * probe.c (compute_probe_arg): Moved from stap-probe.c
613 (compile_probe_arg): Likewise.
614 (probe_funcs): Likewise.
615 * stap-probe.c (compute_probe_arg): Moved to probe.c.
616 (compile_probe_arg): Likewise.
617 (probe_funcs): Likewise.
618
6f9b8491
JM
6192015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
620
621 * probe.c (print_ui_out_not_applicables): New function.
622 (exists_probe_with_pops): Likewise.
623 (info_probes_for_ops): Do not include column headers for probe
624 types for which no probe has been actually found on any object.
625 Also invoke `print_ui_out_not_applicables' in order to match the
626 column rows with the header when probes of several types are
627 listed.
628 Print the "Type" column.
629 * probe.h (probe_ops): Added a new probe operation `type_name'.
630 * stap-probe.c (stap_probe_ops): Add `stap_type_name'.
631 (stap_type_name): New function.
632
69efdff1
PP
6332015-02-17 Patrick Palka <patrick@parcs.ath.cx>
634
635 * tui/tui-io.c (tui_getc): Don't call key_is_command_char.
636 (key_is_command_char): Delete.
637
f8e5e23e
PA
6382015-02-17 Pedro Alves <palves@redhat.com>
639
640 * tui/tui.c (tui_enable): Resize windows before anything
641 might show a window.
642
9f2e0721
MO
6432015-02-17 Max Ostapenko <m.ostapenko@partner.samsung.com>
644
645 PR gdb/17984
646 * aarch64-linux-nat.c: Don't include features/aarch64.c anymore.
647 (aarch64_linux_read_description): Remove initialize_tdesc_aarch64
648 call.
649 * aarch64-tdep.h (tdesc_aarch64): Declare.
650
171e6b1c
MW
6512015-02-12 Mark Wielaard <mjw@redhat.com>
652
653 * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false".
654
d5ff0482
DE
6552015-02-13 Doug Evans <dje@google.com>
656
657 * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter
658 anonymous_namespace to is_in_anonymous for consistency with the rest
659 of the file.
660 (cp_lookup_bare_symbol): Fix typo in comment.
661 (cp_search_static_and_baseclasses): Ditto.
662 (search_symbol_list): Use vertical space in comment better.
663 (reset_directive_searched): Ditto. Fix typo.
664 (cp_lookup_nested_symbol_1): Clarify contents of NESTED_NAME parameter.
665
9f04ac5f
YQ
6662015-02-13 Yao Qi <yao.qi@arm.com>
667
668 * MAINTAINERS: Update my email address.
669
013d0319
DE
6702015-02-12 Doug Evans <dje@google.com>
671
b615dd20 672 * symtab.c (completion_list_add_name): Fix memory leak.
013d0319 673
9a7e538e
DE
6742015-02-12 Doug Evans <dje@google.com>
675
676 * completer.c (complete_line): Remove incorrect comment.
677
e1fcd575
JK
6782015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
679
680 * python/py-framefilter.c (py_print_single_arg, enumerate_locals)
681 (py_print_frame): Use RETURN_MASK_ERROR.
682
b99bf4e3
JK
6832015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
684
685 * python/py-framefilter.c (py_print_frame): Mention RETURN_QUIT in
686 function comment. Wrap all function that can throw in cleanups.
687 (gdbpy_apply_frame_filter): Wrap all function that can throw in
688 cleanups.
689
800eb1ce
JK
6902015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
691
692 * python/py-framefilter.c (py_print_frame): Substitute goto error.
693 Remove the error label.
694
34019068
JK
6952015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
696
697 * python/py-framefilter.c (py_print_frame): Put conditional code paths
698 with goto first, indent the former else codepath left. Put variable
699 'elided' to a new inner block.
700
8d4a54e2
JK
7012015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
702
703 * python/py-framefilter.c (py_print_frame): Whitespacing fixes.
704
18ad82c1
PA
7052015-02-11 Pedro Alves <palves@redhat.com>
706
707 * xcoffread.c (within_function): Delete.
708
e36122e9
TT
7092015-02-11 Tom Tromey <tromey@redhat.com>
710 Pedro Alves <palves@redhat.com>
711
712 * breakpoint.c (base_breakpoint_ops): Delete.
713 * dwarf2loc.c (dwarf_expr_ctx_funcs): Make extern.
714 * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_lazy_psyms): Make extern.
715 * guile/guile.c (guile_extension_script_ops, guile_extension_ops): Make extern.
716 * ppcnbsd-tdep.c (ppcnbsd2_sigtramp): Make extern.
717 * python/py-arch.c (arch_object_type): Make extern.
718 * python/py-block.c (block_syms_iterator_object_type): Make extern.
719 * python/py-bpevent.c (breakpoint_event_object_type): Make extern.
720 * python/py-cmd.c (cmdpy_object_type): Make extern.
721 * python/py-continueevent.c (continue_event_object_type)
722 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove 'qual'
723 parameter. Update all callers.
724 * python/py-evtregistry.c (eventregistry_object_type): Make extern.
725 * python/py-exitedevent.c (exited_event_object_type): Make extern.
726 * python/py-finishbreakpoint.c (finish_breakpoint_object_type): Make extern.
727 * python/py-function.c (fnpy_object_type): Make extern.
728 * python/py-inferior.c (inferior_object_type, membuf_object_type): Make extern.
729 * python/py-infevents.c (call_pre_event_object_type)
730 (inferior_call_post_event_object_type).
731 (memory_changed_event_object_type): Make extern.
732 * python/py-infthread.c (thread_object_type): Make extern.
733 * python/py-lazy-string.c (lazy_string_object_type): Make extern.
734 * python/py-linetable.c (linetable_entry_object_type)
735 (linetable_object_type, ltpy_iterator_object_type): Make extern.
736 * python/py-newobjfileevent.c (new_objfile_event_object_type)
737 (clear_objfiles_event_object_type): Make extern.
738 * python/py-objfile.c (objfile_object_type): Make extern.
739 * python/py-param.c (parmpy_object_type): Make extern.
740 * python/py-progspace.c (pspace_object_type): Make extern.
741 * python/py-signalevent.c (signal_event_object_type): Make extern.
742 * python/py-symtab.c (symtab_object_type, sal_object_type): Make extern.
743 * python/py-type.c (type_object_type, field_object_type)
744 (type_iterator_object_type): Make extern.
745 * python/python.c (python_extension_script_ops)
746 (python_extension_ops): Make extern.
747 * stap-probe.c (stap_probe_ops): Make extern.
748
0703599a
PA
7492015-02-11 Pedro Alves <pedro@codesourcery.com>
750
751 * infrun.c (adjust_pc_after_break): Don't adjust the PC just
752 because the event thread is not the current thread.
753
eaaf76ab
DE
7542015-02-11 Doug Evans <xdje42@gmail.com>
755
756 * gdbtypes.c (internal_type_self_type): If TYPE_SPECIFIC_FIELD hasn't
757 been initialized yet, return NULL.
758
e7d52ed3
DE
7592015-02-11 Doug Evans <dje@google.com>
760
761 * symfile.h (new_symfile_objfile): Delete.
762 * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile.
763 All callers updated.
764
fc6b1256
PP
7652015-02-11 Patrick Palka <patrick@parcs.ath.cx>
766
767 * tui/tui-io.c (tui_handle_resize_during_io): Call
768 tui_update_gdb_sizes() after resizing the screen.
769 * tui/tui.c (tui_enable): Resize the terminal before
770 calling tui_update_gdb_sizes().
771
d9080678
PP
7722015-02-11 Patrick Palka <patrick@parcs.ath.cx>
773
774 * tui/tui-io.c (tui_getc): Move cursor to the end of the command
775 line before printing a newline.
776
9f615e3a
MW
7772015-02-11 Mark Wielaard <mjw@redhat.com>
778
779 * utils.c (producer_is_gcc): Return true or false.
780
d9080678 7812015-02-10 Mark Wielaard <mjw@redhat.com>
b1ffba5a
MW
782
783 * utils.h (producer_is_gcc): Change return type to bool. Add major
784 argument.
785 * utils.c (producer_is_gcc): Likewise.
786 (producer_is_gcc_ge_4): Adjust producer_is_gcc call.
787 * dwarf2read.c (check_producer): Likewise.
788
b052c4fb
PA
7892015-02-10 Pedro Alves <palves@redhat.com>
790
791 * infrun.c (displaced_step_fixup): Switch to the event thread
792 before calling gdbarch_displaced_step_fixup.
793
3ac240d4
AT
7942015-02-10 Antoine Tremblay <antoine.tremblay@ericsson.com>
795
796 * MAINTAINERS (Write After Approval): Add Antoine Tremblay.
797
c1cc6152
SM
7982015-02-10 Simon Marchi <simon.marchi@ericsson.com>
799
800 * ada-varobj.c (ada_name_of_child): Constify parent.
801 (ada_path_expr_of_child): Same.
802 (ada_value_of_child): Same.
803 (ada_type_of_child): Same.
804 * c-varobj.c (c_is_path_expr_parent): Same.
805 (c_describe_child): Same.
806 (c_name_of_child): Same.
807 (c_value_of_child): Same.
808 (c_type_of_child): Same.
809 (cplus_number_of_children): Same.
810 (cplus_describe_child): Constify var.
811 (cplus_name_of_child): Constify parent.
812 (cplus_value_of_child): Same.
813 (cplus_type_of_child): Same.
814 * jv-varobj.c (java_name_of_child): Same.
815 (java_value_of_child): Same.
816 (java_type_of_child): Same.
817 * varobj.c (value_of_child): Same.
818 (varobj_default_is_path_expr_parent): Constify var, parent and return
819 value.
820 (varobj_get_path_expr): Constify var, modify path_expr through
821 mutable_var.
822 (install_new_value): Constify parent.
823 (value_of_child): Constify parent.
824 * varobj.h (struct varobj): Constify parent.
825 (struct lang_varobj_ops): Constify name_of_child, value_of_child and
826 type_of_child.
827 (varobj_get_path_expr): Constify var.
828 (varobj_get_path_expr_parent): Constify var and return value.
829
c1ee9414
LM
8302015-02-10 Luis Machado <lgustavo@codesourcery.com>
831
832 * arm-tdep.c (arm_prologue_unwind_stop_reason): New function.
833 (arm_prologue_this_id): Move PC and SP limit checks to
834 arm_prologue_unwind_stop_reason.
835 (arm_prologue_unwind) <stop_reason> : Set to
836 arm_prologue_unwind_stop_reason.
837
f7de9aab
MW
8382015-02-09 Mark Wielaard <mjw@redhat.com>
839
840 * dwarf2read.c (set_cu_language): Recognize DW_LANG_Fortran03 and
841 DW_LANG_Fortran08 as language_fortran.
842
0b24eb2d
SDJ
8432015-02-09 Sergio Durigan Junior <sergiodj@redhat.com>
844
845 PR remote/17946
846 * gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison
847 of pointer against char.
848
a2c2acaf
MW
8492015-02-09 Mark Wielaard <mjw@redhat.com>
850
851 * c-typeprint.c (cp_type_print_method_args): Handle '_Atomic'.
852 (c_type_print_modifier): Likewise.
853 * dwarf2read.c (read_tag_atomic_type): New function.
854 (read_type_die_1): Handle DW_TAG_atomic_type.
855 * gdbtypes.c (make_atomic_type): New function.
856 (recursive_dump_type): Handle TYPE_ATOMIC.
857 * gdbtypes.h (enum type_flag_values): Renumber.
858 (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_ATOMIC.
859 (TYPE_ATOMIC): New macro.
860 (make_atomic_type): Declare.
861
31fd9caa
MM
8622015-02-09 Markus Metzger <markus.t.metzger@intel.com>
863
864 * btrace.c (ftrace_find_call): Skip gaps.
865 (ftrace_new_function): Initialize level.
866 (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return)
867 (ftrace_new_switch): Update
868 level computation.
869 (ftrace_new_gap): New.
870 (ftrace_update_function): Create new function after gap.
871 (btrace_compute_ftrace_bts): Create gap on error.
872 (btrace_stitch_bts): Update parameters. Clear trace if it
873 becomes empty.
874 (btrace_stitch_trace): Update parameters. Update callers.
875 (btrace_clear): Reset the number of gaps.
876 (btrace_insn_get): Return NULL if the iterator points to a gap.
877 (btrace_insn_number): Return zero if the iterator points to a gap.
878 (btrace_insn_end): Allow gaps at the end.
879 (btrace_insn_next, btrace_insn_prev, btrace_insn_cmp): Handle gaps.
880 (btrace_find_insn_by_number): Assert that the found iterator does
881 not point to a gap.
882 (btrace_call_next, btrace_call_prev): Assert that the last function
883 is not a gap.
884 * btrace.h (btrace_bts_error): New.
885 (btrace_function): Update comment.
886 (btrace_function) <insn, insn_offset, number>: Update comment.
887 (btrace_function) <errcode>: New.
888 (btrace_thread_info) <ngaps>: New.
889 (btrace_thread_info) <replay>: Update comment.
890 (btrace_insn_get): Update comment.
891 * record-btrace.c (btrace_ui_out_decode_error): New.
892 (record_btrace_info): Print number of gaps.
893 (btrace_insn_history, btrace_call_history): Call
894 btrace_ui_out_decode_error for gaps.
895 (record_btrace_step_thread, record_btrace_start_replaying): Skip gaps.
896
afb778a2
MM
8972015-02-09 Markus Metzger <markus.t.metzger@intel.com>
898
899 * common/btrace-common.h (btrace_cpu_vendor, btrace_cpu): New.
900 * nat/linux-btrace.c: (btrace_this_cpu): New.
901 (cpu_supports_bts): Call btrace_this_cpu.
902 (intel_supports_bts): Add cpu parameter.
903
7d5c24b3
MM
9042015-02-09 Markus Metzger <markus.t.metzger@intel.com>
905
906 * btrace.h (btrace_insn_class): New.
907 (btrace_insn) <size, iclass>: New.
908 * btrace.c (ftrace_find_call): Update parameters. Update users.
909 Use instruction classification.
910 (ftrace_new_return): Update parameters. Update users.
911 (ftrace_update_function): Update parameters. Update users. Use
912 instruction classification.
913 (ftrace_update_insns): Update parameters. Update users.
914 (ftrace_classify_insn): New.
915 (btrace_compute_ftrace_bts): Fill in new btrace_insn fields. Add
916 TRY_CATCH around call to gdb_insn_length.
917
76235df1
MM
9182015-02-09 Markus Metzger <markus.t.metzger@intel.com>
919
920 * btrace.c (btrace_compute_ftrace_bts, btrace_compute_ftrace):
921 Update parameters. Update users.
922
d33501a5
MM
9232015-02-09 Markus Metzger <markus.t.metzger@intel.com>
924
925 * btrace.c (parse_xml_btrace_conf_bts): Add size.
926 (btrace_conf_bts_attributes): New.
927 (btrace_conf_children): Add attributes.
928 * common/btrace-common.h (btrace_config_bts): New.
929 (btrace_config)<bts>: New.
930 (btrace_config): Update comment.
931 * nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts):
932 Use config.
933 * features/btrace-conf.dtd: Increment version. Add size
934 attribute to bts element.
935 * record-btrace.c (set_record_btrace_bts_cmdlist,
936 show_record_btrace_bts_cmdlist): New.
937 (record_btrace_adjust_size, record_btrace_print_bts_conf,
938 record_btrace_print_conf, cmd_set_record_btrace_bts,
939 cmd_show_record_btrace_bts): New.
940 (record_btrace_info): Call record_btrace_print_conf.
941 (_initialize_record_btrace): Add commands.
942 * remote.c: Add PACKET_Qbtrace_conf_bts_size enum.
943 (remote_protocol_features): Add Qbtrace-conf:bts:size packet.
944 (btrace_sync_conf): Synchronize bts size.
945 (_initialize_remote): Add Qbtrace-conf:bts:size packet.
946 * NEWS: Announce new commands and new packets.
947
f4abbc16
MM
9482015-02-09 Markus Metzger <markus.t.metzger@intel.com>
949
950 * Makefile.in (XMLFILES): Add btrace-conf.dtd.
951 * x86-linux-nat.c (x86_linux_enable_btrace): Update parameters.
952 (x86_linux_btrace_conf): New.
953 (x86_linux_create_target): Initialize to_btrace_conf.
954 * nat/linux-btrace.c (linux_enable_btrace): Update parameters.
955 Check format. Split into this and ...
956 (linux_enable_bts): ... this.
957 (linux_btrace_conf): New.
958 (perf_event_skip_record): Renamed into ...
959 (perf_event_skip_bts_record): ... this. Updated users.
960 (linux_disable_btrace): Split into this and ...
961 (linux_disable_bts): ... this.
962 (linux_read_btrace): Check format.
963 * nat/linux-btrace.h (linux_enable_btrace): Update parameters.
964 (linux_btrace_conf): New.
965 (btrace_target_info)<ptid>: Moved.
966 (btrace_target_info)<conf>: New.
967 (btrace_target_info): Split into this and ...
968 (btrace_tinfo_bts): ... this. Updated users.
969 * btrace.c (btrace_enable): Update parameters.
970 (btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf)
971 (btrace_conf_children, btrace_conf_attributes)
972 (btrace_conf_elements): New.
973 * btrace.h (btrace_enable): Update parameters.
974 (btrace_conf, parse_xml_btrace_conf): New.
975 * common/btrace-common.h (btrace_config): New.
976 * feature/btrace-conf.dtd: New.
977 * record-btrace.c (record_btrace_conf): New.
978 (record_btrace_cmdlist): New.
979 (record_btrace_enable_warn, record_btrace_open): Pass
980 &record_btrace_conf.
981 (record_btrace_info): Print recording format.
982 (cmd_record_btrace_bts_start): New.
983 (cmd_record_btrace_start): Call cmd_record_btrace_bts_start.
984 (_initialize_record_btrace): Add "record btrace bts" subcommand.
985 Add "record bts" alias command.
986 * remote.c (remote_state)<btrace_config>: New.
987 (remote_btrace_reset, PACKET_qXfer_btrace_conf): New.
988 (remote_protocol_features): Add qXfer:btrace-conf:read.
989 (remote_open_1): Call remote_btrace_reset.
990 (remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF.
991 (btrace_target_info)<conf>: New.
992 (btrace_sync_conf, btrace_read_config): New.
993 (remote_enable_btrace): Update parameters. Call btrace_sync_conf and
994 btrace_read_conf.
995 (remote_btrace_conf): New.
996 (init_remote_ops): Initialize to_btrace_conf.
997 (_initialize_remote): Add qXfer:btrace-conf packet.
998 * target.c (target_enable_btrace): Update parameters.
999 (target_btrace_conf): New.
1000 * target.h (target_enable_btrace): Update parameters.
1001 (target_btrace_conf): New.
1002 (target_object)<TARGET_OBJECT_BTRACE_CONF>: New.
1003 (target_ops)<to_enable_btrace>: Update parameters and comment.
1004 (target_ops)<to_btrace_conf>: New.
1005 * target-delegates: Regenerate.
1006 * target-debug.h (target_debug_print_const_struct_btrace_config_p)
1007 (target_debug_print_const_struct_btrace_target_info_p): New.
1008 * NEWS: Announce new command and new packet.
1009
aadf7753
MM
10102015-02-09 Markus Metzger <markus.t.metzger@intel.com>
1011
1012 * nat/linux-btrace.h (perf_event_buffer): New.
1013 (btrace_target_info) <buffer, size, data_head>: Replace with ...
1014 <bts>: ... this.
1015 * nat/linux-btrace.c (perf_event_header, perf_event_mmap_size)
1016 (perf_event_buffer_size, perf_event_buffer_begin)
1017 (perf_event_buffer_end, linux_btrace_has_changed): Removed.
1018 Updated users.
1019 (perf_event_new_data): New.
1020
043c3577
MM
10212015-02-09 Markus Metzger <markus.t.metzger@intel.com>
1022
1023 * btrace.c (btrace_enable): Pass BTRACE_FORMAT_BTS.
1024 * record-btrace.c (record_btrace_open): Remove call to
1025 target_supports_btrace.
1026 * remote.c (remote_supports_btrace): Update parameters.
1027 * target.c (target_supports_btrace): Update parameters.
1028 * target.h (to_supports_btrace, target_supports_btrace): Update
1029 parameters.
1030 * target-delegates.c: Regenerate.
1031 * target-debug.h (target_debug_print_enum_btrace_format): New.
1032 * nat/linux-btrace.c
1033 (kernel_supports_btrace): Rename into ...
1034 (kernel_supports_bts): ... this. Update users. Update warning text.
1035 (intel_supports_btrace): Rename into ...
1036 (intel_supports_bts): ... this. Update users.
1037 (cpu_supports_btrace): Rename into ...
1038 (cpu_supports_bts): ... this. Update users.
1039 (linux_supports_btrace): Update parameters. Split into this and ...
1040 (linux_supports_bts): ... this.
1041 * nat/linux-btrace.h (linux_supports_btrace): Update parameters.
1042
734b0e4b
MM
10432015-02-09 Markus Metzger <markus.t.metzger@intel.com>
1044
1045 * Makefile.in (SFILES): Add common/btrace-common.c.
1046 (COMMON_OBS): Add common/btrace-common.o.
1047 (btrace-common.o): Add build rules.
1048 * btrace.c (parse_xml_btrace): Update parameters.
1049 (parse_xml_btrace_block): Set format field.
1050 (btrace_add_pc, btrace_fetch): Use struct btrace_data.
1051 (do_btrace_data_cleanup, make_cleanup_btrace_data): New.
1052 (btrace_compute_ftrace): Split into this and...
1053 (btrace_compute_ftrace_bts): ...this.
1054 (btrace_stitch_trace): Split into this and...
1055 (btrace_stitch_bts): ...this.
1056 * btrace.h (parse_xml_btrace): Update parameters.
1057 (make_cleanup_btrace_data): New.
1058 * common/btrace-common.c: New.
1059 * common/btrace-common.h: Include common-defs.h.
1060 (btrace_block_s): Update comment.
1061 (btrace_format): New.
1062 (btrace_format_string): New.
1063 (btrace_data_bts): New.
1064 (btrace_data): New.
1065 (btrace_data_init, btrace_data_fini, btrace_data_empty): New.
1066 * remote.c (remote_read_btrace): Update parameters.
1067 * target.c (target_read_btrace): Update parameters.
1068 * target.h (target_read_btrace): Update parameters.
1069 (target_ops)<to_read_btrace>: Update parameters.
1070 * x86-linux-nat.c (x86_linux_read_btrace): Update parameters.
1071 * target-delegates.c: Regenerate.
1072 * target-debug (target_debug_print_struct_btrace_data_p): New.
1073 * nat/linux-btrace.c (linux_read_btrace): Split into this and...
1074 (linux_read_bts): ...this.
1075 * nat/linux-btrace.h (linux_read_btrace): Update parameters.
1076
bd2e0e9e
DE
10772015-02-06 Doug Evans <dje@google.com>
1078
1079 * remote-m32r-sdi.c: Include symfile.h.
1080
f176c4b5
DE
10812015-02-06 Doug Evans <dje@google.com>
1082
1083 * symtab.h (clear_symtab_users, deduce_language_from_filename): Move
1084 * symfile.h (clear_symtab_users, deduce_language_from_filename): ...
1085 to here.
1086
d6c146e9
PA
10872015-02-06 Pedro Alves <palves@redhat.com>
1088
1089 * linux-thread-db.c (find_new_threads_callback): Add debug output.
1090
b9d61307
SM
10912015-02-06 Simon Marchi <simon.marchi@ericsson.com>
1092
1093 PR gdb/15678
1094 * breakpoint.c (map_breakpoint_numbers): Check for empty args string.
1095 (enable_count_command): Check args for NULL value.
1096
e9fbd043
DE
10972015-02-05 Doug Evans <xdje42@gmail.com>
1098
1099 * guile/scm-frame.c: Fix spelling errors in a comment.
1100
881d5d5d
JK
11012015-02-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1102
1103 * python/python-internal.h (Py_hash_t): Define it for Python <3.2.
1104 * python/py-value.c (valpy_fetch_lazy): Use it. Remove cast to the
1105 return type.
1106
20ba1ce6
PA
11072015-02-04 Pedro Alves <palves@redhat.com>
1108
1109 * linux-nat.c (handle_extended_wait): Don't resume LWPs here.
1110 (wait_lwp): Don't call wait_lwp if linux_handle_extended_wait
1111 returns true.
1112 (resume_stopped_resumed_lwps): Don't check whether the thread is
1113 marked as executing.
1114 (linux_nat_wait_1): Use resume_stopped_resumed_lwps.
1115
f962539a
AA
11162015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
1117
1118 * regset.h (struct regset): Add flags field.
1119 (REGSET_VARIABLE_SIZE): New value for a regset's flags field.
1120 * corelow.c (get_core_register_section): Add warning if the size
1121 exceeds the requested size and the regset does not have the
1122 REGSET_VARIABLE_SIZE flag set.
1123 * alphanbsd-tdep.c (alphanbsd_gregset): Add REGSET_VARIABLE_SIZE
1124 flag.
1125 * armbsd-tdep.c (armbsd_gregset): Likewise.
1126 * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise.
1127 * hppaobsd-tdep.c (hppaobsd_gregset): Likewise.
1128 * m68kbsd-tdep.c (m68kbsd_gregset): Likewise.
1129 * mipsnbsd-tdep.c (mipsnbsd_gregset): Likewise.
1130
dde9acd6
AA
11312015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
1132
1133 * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections):
1134 For ".reg-xstate", explicitly specify the requested section size
1135 via X86_XSTATE_SIZE instead of just 0 on input and
1136 X86_XSTATE_MAX_SIZE on output.
1137 * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections):
1138 Likewise.
1139
1528345d
AA
11402015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
1141
1142 PR corefiles/17808:
1143 * gdbarch.sh (iterate_over_regset_sections_cb): Document this
1144 function type, particularly its SIZE parameter.
1145 * gdbarch.h: Regenerate.
1146 * amd64-tdep.c (amd64_supply_fpregset): In gdb_assert, compare
1147 actual against required size using ">=" instead of "==".
1148 (amd64_collect_fpregset): Likewise.
1149 * i386-tdep.c (i386_supply_gregset): Likewise.
1150 (i386_collect_gregset): Likewise.
1151 (i386_supply_fpregset): Likewise.
1152 (i386_collect_fpregset): Likewise.
1153 * mips-linux-tdep.c (mips_supply_gregset_wrapper): Likewise.
1154 (mips_fill_gregset_wrapper): Likewise.
1155 (mips_supply_fpregset_wrapper): Likewise.
1156 (mips_fill_fpregset_wrapper): Likewise.
1157 (mips64_supply_gregset_wrapper): Likewise.
1158 (mips64_fill_gregset_wrapper): Likewise.
1159 (mips64_supply_fpregset_wrapper): Likewise.
1160 (mips64_fill_fpregset_wrapper): Likewise.
1161 * mn10300-linux-tdep.c (am33_supply_gregset_method): Likewise.
1162 (am33_supply_fpregset_method): Likewise.
1163 (am33_collect_gregset_method): Likewise.
1164 (am33_collect_fpregset_method): Likewise.
1165
518be979
DE
11662015-02-04 Doug Evans <dje@google.com>
1167 Pedro Alves <palves@redhat.com>
1168 Eli Zaretskii <eliz@gnu.org>
1169
1170 PR tui/17810
1171 * tui/tui-command.c (tui_refresh_cmd_win): New function.
1172 * tui/tui-command.c (tui_refresh_cmd_win): Declare.
1173 * tui/tui-file.c: #include tui/tui-command.h.
1174 (tui_file_fputs): Refresh command window if stream is not gdb_stdout.
1175 (tui_file_flush): Refresh command window if stream is gdb_stdout.
1176 * tui/tui-io.c (tui_puts): Remove calls to wrefresh, fflush.
1177
80bd5fab
PA
11782015-02-04 Pedro Alves <palves@redhat.com>
1179
1180 Fix build breakage.
1181 * event-loop.c (gdb_do_one_event): Add default switch case.
1182
a7606d80
JK
11832015-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1184
1185 Filter out inferior gcc option -fpreprocessed.
1186 * compile/compile.c (filter_args): New function.
1187 (get_args): Use it.
1188
70b66289
PA
11892015-02-03 Pedro Alves <palves@redhat.com>
1190
1191 * event-loop.c: Don't declare nor define a queue type for
1192 gdb_event_p.
1193 (event_queue): Delete.
1194 (create_event, create_file_event, gdb_event_xfree)
1195 (initialize_event_loop, process_event): Delete.
1196 (gdb_do_one_event): Return as soon as one event is handled.
1197 (handle_file_event): Change prototype. Used the passed in
1198 file_handler pointer and ready_mask instead of looping over all
1199 file handlers.
1200 (gdb_wait_for_event): Update the poll/select timeouts before
1201 blocking. Run event handlers directly instead of queueing events.
1202 Return as soon as one event is handled.
1203 (struct async_event_handler_data): Delete.
1204 (invoke_async_event_handler): Delete.
1205 (check_async_event_handlers): Change return type to int. Run
1206 event handlers directly instead of queueing events. Return as
1207 soon as one event is handled.
1208 (handle_timer_event): Delete.
1209 (update_wait_timeout): New function, factored out from
1210 poll_timers.
1211 (poll_timers): Reimplement.
1212 * event-loop.h (initialize_event_loop): Delete declaration.
1213 * top.c (gdb_init): Don't call initialize_event_loop.
1214
b7d2e916
PA
12152015-02-03 Pedro Alves <palves@redhat.com>
1216
1217 * event-loop.c (clear_async_event_handler): New function.
1218 * event-loop.h (clear_async_event_handler): New declaration.
1219 * record-btrace.c (record_btrace_async): New function.
1220 (init_record_btrace_ops): Install record_btrace_async.
1221 * record-full.c (record_full_async): New function.
1222 (record_full_resume): Don't mark the async event source here.
1223 (init_record_full_ops): Install record_full_async.
1224 (record_full_core_resume): Don't mark the async event source here.
1225 (init_record_full_core_ops): Install record_full_async.
1226 * remote.c (remote_async): Mark and clear the async stop reply
1227 queue event-loop token as appropriate.
1228
d9d41e78
PA
12292015-02-03 Pedro Alves <palves@redhat.com>
1230
1231 * linux-nat.c (linux_child_follow_fork, linux_nat_wait_1): Use
1232 target_is_async_p instead of target_can_async.
1233 (linux_nat_wait): Use target_is_async_p instead of
1234 target_can_async. Don't enable async here.
1235 * remote.c (interrupt_query, remote_wait, putpkt_binary): Use
1236 target_is_async_p instead of target_can_async.
1237
aa3de267
SM
12382015-02-02 Simon Marchi <simon.marchi@ericsson.com>
1239
1240 * varobj.h (lang_varobj_ops): Mention which return values need
1241 to be freed.
1242
2c811c0f
JB
12432015-02-02 Joel Brobecker <brobecker@adacore.com>
1244
1245 * dwarf2loc.c (dwarf2_evaluate_property): Add i18n marker.
1246
b1eedac9
JB
12472015-02-02 Joel Brobecker <brobecker@adacore.com>
1248
1249 PR gdb/17856:
1250 * ada-lang.c (ada_lookup_symbol_list_worker): Do not re-cache
1251 results found in the cache.
1252
66c168ae
JB
12532015-02-02 Joel Brobecker <brobecker@adacore.com>
1254
1255 PR gdb/17854:
1256 * ada-lang.c (ada_get_symbol_cache): Set pspace_data->sym_cache
1257 when allocating a new one.
1258
4bdc02b2
TT
12592015-02-01 Tom Tromey <tom@tromey.com>
1260
1261 * MAINTAINERS: Remove myself.
1262
ae6ae975
DE
12632015-01-31 Doug Evans <xdje42@gmail.com>
1264
1265 * dwarf2read.c (process_structure_scope): Update setting of
1266 TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO.
1267 * gdbtypes.c (internal_type_vptr_fieldno): New function.
1268 (set_type_vptr_fieldno): New function.
1269 (internal_type_vptr_basetype): New function.
1270 (set_type_vptr_basetype): New function.
1271 (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO,
1272 TYPE_VPTR_BASETYPE.
1273 (allocate_cplus_struct_type): Initialize vptr_fieldno.
1274 (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ...
1275 (print_cplus_stuff): ... moved here.
1276 (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE.
1277 * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype
1278 moved to ...
1279 (struct cplus_struct_type): ... here. All uses updated.
1280 (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite.
1281 (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare.
1282 (internal_type_vptr_basetype, set_type_vptr_basetype): Declare.
1283 * stabsread.c (read_tilde_fields): Update setting of
1284 TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE.
1285
09e2d7c7
DE
12862015-01-31 Doug Evans <xdje42@gmail.com>
1287
1288 * cp-valprint.c (cp_find_class_member): Rename parameter domain_p
1289 to self_p.
1290 (cp_print_class_member): Rename local domain to self_type.
1291 * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local
1292 domain_type to self_type.
1293 (set_die_type) <need_gnat_info>: Handle
1294 TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD.
1295 * gdb-gdb.py (StructMainTypePrettyPrinter): Handle
1296 TYPE_SPECIFIC_SELF_TYPE.
1297 * gdbtypes.c (internal_type_self_type): New function.
1298 (set_type_self_type): New function.
1299 (smash_to_memberptr_type): Rename parameter domain to self_type.
1300 Update setting of TYPE_SELF_TYPE.
1301 (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE.
1302 (smash_to_method_type): Rename parameter domain to self_type.
1303 Update setting of TYPE_SELF_TYPE.
1304 (check_stub_method): Call smash_to_method_type.
1305 (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE.
1306 (copy_type_recursive): Ditto.
1307 * gdbtypes.h (enum type_specific_kind): New value
1308 TYPE_SPECIFIC_SELF_TYPE.
1309 (struct main_type) <type_specific>: New member self_type.
1310 (struct cplus_struct_type) <fn_field.type>: Update comment.
1311 (TYPE_SELF_TYPE): Rewrite.
1312 (internal_type_self_type, set_type_self_type): Declare.
1313 * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to
1314 self_type.
1315 (gnuv3_method_ptr_to_value): Rename local domain_type to self_type.
1316 * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with
1317 TYPE_TARGET_TYPE.
1318 * stabsread.c (read_member_functions): Mark methods with
1319 TYPE_CODE_METHOD, not TYPE_CODE_FUNC. Update setting of
1320 TYPE_SELF_TYPE.
1321
4bfb94b8
DE
13222015-01-31 Doug Evans <xdje42@gmail.com>
1323
1324 * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE.
1325 All uses updated.
1326
5f4ce105
DE
13272015-01-31 Doug Evans <xdje42@gmail.com>
1328
1329 * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs
1330 or unions. Return zero if union.
1331 (gnuv3_get_vtable): Call check_typedef. Assert only passed structs.
1332 (gnuv3_rtti_type): Pass already-check_typedef'd value to
1333 gnuv3_get_vtable.
1334 (compute_vtable_size): Assert only passed structs.
1335 (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs.
1336
f6b3afbf
DE
13372015-01-31 Doug Evans <xdje42@gmail.com>
1338
1339 * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD
1340 kinds.
1341
cfb069a8
GB
13422015-01-31 Gary Benson <gbenson@redhat.com>
1343 Doug Evans <dje@google.com>
1344
1345 PR cli/9007
1346 PR cli/11920
1347 PR cli/15548
1348 * cli/cli-cmds.c (complete_command): Notify user if max-completions
1349 reached.
1350 * common/common-exceptions.h (enum errors)
1351 <MAX_COMPLETIONS_REACHED_ERROR>: New value.
1352 * completer.h (get_max_completions_reached_message): New declaration.
1353 (max_completions): Likewise.
1354 (completion_tracker_t): New typedef.
1355 (new_completion_tracker): New declaration.
1356 (make_cleanup_free_completion_tracker): Likewise.
1357 (maybe_add_completion_enum): New enum.
1358 (maybe_add_completion): New declaration.
1359 (throw_max_completions_reached_error): Likewise.
1360 * completer.c (max_completions): New global variable.
1361 (new_completion_tracker): New function.
1362 (free_completion_tracker): Likewise.
1363 (make_cleanup_free_completion_tracker): Likewise.
1364 (maybe_add_completions): Likewise.
1365 (throw_max_completions_reached_error): Likewise.
1366 (complete_line): Remove duplicates and limit result to max_completions
1367 entries.
1368 (get_max_completions_reached_message): New function.
1369 (gdb_display_match_list): Handle max_completions.
1370 (_initialize_completer): New declaration and function.
1371 * symtab.c: Include completer.h.
1372 (completion_tracker): New static variable.
1373 (completion_list_add_name): Call maybe_add_completion.
1374 (default_make_symbol_completion_list_break_on_1): Renamed from
1375 default_make_symbol_completion_list_break_on. Maintain
1376 completion_tracker across calls to completion_list_add_name.
1377 (default_make_symbol_completion_list_break_on): New function.
1378 * top.c (init_main): Set rl_completion_display_matches_hook.
1379 * tui/tui-io.c: Include completer.h.
1380 (tui_old_rl_display_matches_hook): New static global.
1381 (tui_rl_display_match_list): Notify user if max-completions reached.
1382 (tui_setup_io): Save/restore rl_completion_display_matches_hook.
1383 * NEWS (New Options): Mention set/show max-completions.
1384
e11c72c7
GB
13852015-01-31 Gary Benson <gbenson@redhat.com>
1386
1387 * symtab.c (struct add_name_data) <code>: New field.
1388 Updated comments.
1389 (add_symtab_completions): New function.
1390 (symtab_expansion_callback): Likewise.
1391 (default_make_symbol_completion_list_break_on): Set datum.code.
1392 Move minimal symbol scan before calling expand_symtabs_matching.
1393 Scan known primary symtabs for externs and statics before calling
1394 expand_symtabs_matching. Pass symtab_expansion_callback as
1395 expansion_notify argument to expand_symtabs_matching. Do not scan
1396 primary symtabs for externs and statics after calling
1397 expand_symtabs_matching.
1398
276d885b
GB
13992015-01-31 Gary Benson <gbenson@redhat.com>
1400
1401 * symfile.h (expand_symtabs_exp_notify_ftype): New typedef.
1402 (struct quick_symbol_functions) <expand_symtabs_matching>:
1403 New argument expansion_notify. All uses updated.
1404 (expand_symtabs_matching): New argument expansion_notify.
1405 All uses updated.
1406 * symfile-debug.c (debug_qf_expand_symtabs_matching):
1407 Also print expansion notify.
1408 * symtab.c (expand_symtabs_matching_via_partial): Call
1409 expansion_notify whenever a partial symbol table is expanded.
1410 * dwarf2read.c (dw2_expand_symtabs_matching): Call
1411 expansion_notify whenever a symbol table is instantiated.
1412
82083d6d
DE
14132015-01-31 Doug Evans <xdje42@gmail.com>
1414
1415 * cli-out.c: #include completer.h, readline/readline.h.
1416 (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions.
1417 (cli_mld_flush, cld_mld_erase_entire_line): Ditto.
1418 (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto.
1419 * cli-out.h (cli_display_match_list): Declare.
1420 * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros.
1421 (ELLIPSIS_LEN): Ditto.
1422 (gdb_get_y_or_n, gdb_display_match_list_pager): New functions.
1423 (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto.
1424 (gdb_fnprint, gdb_print_filename): Ditto.
1425 (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto.
1426 (gdb_display_match_list): Ditto.
1427 * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs.
1428 (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto.
1429 (mld_beep_ftype, mld_read_key_ftype): Ditto.
1430 (match_list_displayer): New struct.
1431 (gdb_display_match_list): Declare.
1432 * top.c (init_main): Set rl_completion_display_matches_hook.
1433 * tui/tui-io.c: #include completer.h.
1434 (printable_part, PUTX, print_filename, get_y_or_n): Delete.
1435 (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions.
1436 (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto.
1437 (tui_mld_getc, tui_mld_read_key): Ditto.
1438 (tui_rl_display_match_list): Rewrite.
1439 (tui_handle_resize_during_io): New arg for_completion. All callers
1440 updated.
1441
f57d2163
DE
14422015-01-31 Doug Evans <xdje42@gmail.com>
1443
1444 Add symbol lookup cache.
1445 * NEWS: Document new options and commands.
1446 * symtab.c (symbol_cache_key): New static global.
1447 (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros.
1448 (SYMBOL_LOOKUP_FAILED): New macro.
1449 (symbol_cache_slot_state): New enum.
1450 (block_symbol_cache): New struct.
1451 (symbol_cache): New struct.
1452 (new_symbol_cache_size, symbol_cache_size): New static globals.
1453 (hash_symbol_entry, eq_symbol_entry): New functions.
1454 (symbol_cache_byte_size, resize_symbol_cache): New functions.
1455 (make_symbol_cache, free_symbol_cache): New functions.
1456 (get_symbol_cache, symbol_cache_cleanup): New function.
1457 (set_symbol_cache_size, set_symbol_cache_size_handler): New functions.
1458 (symbol_cache_lookup, symbol_cache_clear_slot): New function.
1459 (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions.
1460 (symbol_cache_flush, symbol_cache_dump): New functions.
1461 (maintenance_print_symbol_cache): New function.
1462 (maintenance_flush_symbol_cache): New function.
1463 (symbol_cache_stats): New function.
1464 (maintenance_print_symbol_cache_statistics): New function.
1465 (symtab_new_objfile_observer): New function.
1466 (symtab_free_objfile_observer): New function.
1467 (lookup_static_symbol, lookup_global_symbol): Use symbol cache.
1468 (_initialize_symtab): Init symbol_cache_key. New parameter
1469 maint symbol-cache-size. New maint commands print symbol-cache,
1470 print symbol-cache-statistics, flush-symbol-cache.
1471 Install new_objfile, free_objfile observers.
1472
e700d1b2
JB
14732015-01-31 Joel Brobecker <brobecker@adacore.com>
1474
1475 PR symtab/17855
1476 * symfile.c (clear_symtab_users): Move call to breakpoint_re_set
1477 to end.
1478
9f050062
DE
14792015-01-31 Doug Evans <xdje42@gmail.com>
1480
1481 * NEWS: Mention inlined scripts in .debug_gdb_scripts section.
1482 * auto-load.c: #include ctype.h.
1483 (struct auto_load_pspace_info): Replace member loaded_scripts with
1484 new members loaded_script_files, loaded_script_texts.
1485 (auto_load_pspace_data_cleanup): Update.
1486 (init_loaded_scripts_info): Update.
1487 (get_auto_load_pspace_data_for_loading): Update.
1488 (maybe_add_script_file): Renamed from maybe_add_script. All callers
1489 updated.
1490 (maybe_add_script_text): New function.
1491 (clear_section_scripts): Update.
1492 (source_script_file, execute_script_contents): New functions.
1493 (source_section_scripts): Add support for
1494 SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT.
1495 (print_scripts): New function.
1496 (auto_load_info_scripts): Also print inlined scripts.
1497 (maybe_print_unsupported_script_warning): Renamed from
1498 unsupported_script_warning_print. All callers updated.
1499 (maybe_print_script_not_found_warning): Renamed from
1500 script_not_found_warning_print. All callers updated.
1501 * extension-priv.h (struct extension_language_script_ops): New member
1502 objfile_script_executor.
1503 * extension.c (ext_lang_objfile_script_executor): New function.
1504 * extension.h (objfile_script_executor_func): New typedef.
1505 (ext_lang_objfile_script_executor): Declare.
1506 * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare.
1507 * guile/guile.c (guile_extension_script_ops): Update.
1508 * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function.
1509 * python/python.c (python_extension_script_ops): Update.
1510 (gdbpy_execute_objfile_script): New function.
1511
312809f8
EZ
15122015-01-31 Eli Zaretskii <eliz@gnu.org>
1513
1514 * tui/tui-io.c (tui_expand_tabs): New function.
1515 (tui_puts, tui_redisplay_readline): Expand TABs into the
1516 appropriate number of spaces.
1517 * tui/tui-regs.c: Include tui-io.h.
1518 (tui_register_format): Call tui_expand_tabs to expand TABs into
1519 the appropriate number of spaces.
1520 * tui/tui-io.h: Add prototype for tui_expand_tabs.
1521
b6577aab
DE
15222015-01-30 Doug Evans <dje@google.com>
1523
1524 * NEWS: "info source" command now display producer string if present.
1525 * source.c (source_info): Print producer string if present.
1526
6da58d3e
SM
15272015-01-30 Simon Marchi <simon.marchi@ericsson.com>
1528
1529 * varobj.c (varobj_delete): Fix comment.
1530
837ce252
SM
15312015-01-30 Simon Marchi <simon.marchi@ericsson.com>
1532
1533 * varobj.c (create_child): Modify comment.
1534
b09e2c59
SM
15352015-01-30 Simon Marchi <simon.marchi@ericsson.com>
1536
1537 * ada-varobj.c (ada_number_of_children): Constify struct varobj *
1538 parameter.
1539 (ada_name_of_variable): Same.
1540 (ada_path_expr_of_child): Same.
1541 (ada_value_of_variable): Same.
1542 (ada_value_is_changeable_p): Same.
1543 (ada_value_has_mutated): Same.
1544 * c-varobj.c (varobj_is_anonymous_child): Same.
1545 (c_is_path_expr_parent): Same.
1546 (c_number_of_children): Same.
1547 (c_name_of_variable): Same.
1548 (c_path_expr_of_child): Same.
1549 (get_type): Same.
1550 (c_value_of_variable): Same.
1551 (cplus_number_of_children): Same.
1552 (cplus_name_of_variable): Same.
1553 (cplus_path_expr_of_child): Same.
1554 (cplus_value_of_variable): Same.
1555 * jv-varobj.c (java_number_of_children): Same.
1556 (java_name_of_variable): Same.
1557 (java_path_expr_of_child): Same.
1558 (java_value_of_variable): Same.
1559 * varobj.c (number_of_children): Same.
1560 (name_of_variable): Same.
1561 (is_root_p): Same.
1562 (varobj_ensure_python_env): Same.
1563 (varobj_get_objname): Same.
1564 (varobj_get_expression): Same.
1565 (varobj_get_display_format): Same.
1566 (varobj_get_display_hint): Same.
1567 (varobj_has_more): Same.
1568 (varobj_get_thread_id): Same.
1569 (varobj_get_frozen): Same.
1570 (dynamic_varobj_has_child_method): Same.
1571 (varobj_get_gdb_type): Same.
1572 (is_path_expr_parent): Same.
1573 (varobj_default_is_path_expr_parent): Same.
1574 (varobj_get_language): Same.
1575 (varobj_get_attributes): Same.
1576 (varobj_is_dynamic_p): Same.
1577 (varobj_get_child_range): Same.
1578 (varobj_value_has_mutated): Same.
1579 (varobj_get_value_type): Same.
1580 (number_of_children): Same.
1581 (name_of_variable): Same.
1582 (check_scope): Same.
1583 (varobj_editable_p): Same.
1584 (varobj_value_is_changeable_p): Same.
1585 (varobj_floating_p): Same.
1586 (varobj_default_value_is_changeable_p): Same.
1587
2568868e
SM
15882015-01-30 Simon Marchi <simon.marchi@ericsson.com>
1589
1590 * varobj.c (varobj_get_path_expr): Set var->path_expr.
1591 * c-varobj.c (c_path_expr_of_child): Set local var instead of
1592 child->path_expr.
1593 (cplus_path_expr_of_child): Same.
1594
ca83fa81
SM
15952015-01-30 Simon Marchi <simon.marchi@ericsson.com>
1596
1597 * mi-cmd-var.c (print_varobj): Free varobj_get_expression
1598 result.
1599 (mi_cmd_var_info_expression): Same.
1600 * varobj.c (varobj_get_expression): Mention in the comment that
1601 the result must by freed by the caller.
1602
afa269ae
SM
16032015-01-30 Simon Marchi <simon.marchi@ericsson.com>
1604
1605 * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of
1606 varobj_get_type.
1607 (varobj_update_one): Same.
1608 * varobj.c (update_type_if_necessary): Free curr_type_str and
1609 new_type_str.
1610 (varobj_get_type): Specify in comment that the result needs to be
1611 freed by the caller.
1612
cd366ee8
DE
16132015-01-29 Doug Evans <dje@google.com>
1614
1615 PR symtab/17890
1616 * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4.
1617
38360086
MW
16182015-01-25 Mark Wielaard <mjw@redhat.com>
1619
1620 * dwarf2read.c (checkproducer): Call producer_is_gcc.
1621 * utils.c (producer_is_gcc_ge_4): Likewise.
1622 (producer_is_gcc): New function.
1623 * utils.h (producer_is_gcc): New declaration.
1624
df25ebbd
JB
16252015-01-29 Joel Brobecker <brobecker@adacore.com>
1626
1627 * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum
1628 kind.
1629 * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr"
1630 parameter by "addr_stack" parameter.
1631 (resolve_dynamic_range): Replace "addr" parameter by
1632 "stack_addr" parameter. Update function documentation.
1633 Update code accordingly.
1634 (resolve_dynamic_array, resolve_dynamic_union)
1635 (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise.
1636 (resolve_dynamic_type): Update code, following the changes made
1637 to resolve_dynamic_type_internal's interface.
1638 * dwarf2loc.h (struct property_addr_info): New.
1639 (dwarf2_evaluate_property): Replace "address" parameter
1640 by "addr_stack" parameter. Adjust function documentation.
1641 (struct dwarf2_offset_baton): New.
1642 (struct dwarf2_property_baton): Update documentation of
1643 field "referenced_type" to be more general. New field
1644 "offset_info" in union data field.
1645 * dwarf2loc.c (dwarf2_evaluate_property): Replace "address"
1646 parameter by "addr_stack" parameter. Adjust code accordingly.
1647 Add support for PROP_ADDR_OFFSET properties.
1648 * dwarf2read.c (attr_to_dynamic_prop): Add support for
1649 DW_AT_data_member_location attributes as well. Use case
1650 statements instead of if/else condition.
1651
4a0ca9ec
JB
16522015-01-29 Joel Brobecker <brobecker@adacore.com>
1653
1654 * ada-varobj.c (ada_varobj_get_array_number_of_children):
1655 Return zero if PARENT_VALUE is NULL and parent_type's
1656 range type is dynamic.
1657
ddb87a81
JB
16582015-01-29 Joel Brobecker <brobecker@adacore.com>
1659
1660 * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return
1661 nonzero if the type's subtype is dynamic.
1662 (resolve_dynamic_range): Also resolve the range's subtype.
1663
3d7ad9b4 16642015-01-29 Alexander Klimov <alserkli@inbox.ru> (tiny patch)
7a270e0c 1665
3d7ad9b4 1666 Pushed by Joel Brobecker <brobecker@adacore.com>.
7a270e0c
AK
1667 * symfile.c (unmap_overlay_command): Initialize sec to NULL.
1668
3a8b707a
DE
16692015-01-27 Doug Evans <dje@google.com>
1670
1671 * NEWS: Mention gdb.Objfile.username.
1672 * python/py-objfile.c (objfpy_get_username): New function.
1673 (objfile_getset): Add "username".
1674
d35b90fb
MW
16752015-01-24 Mark Wielaard <mjw@redhat.com>
1676
1677 * stack.c (return_command): Markup warning message with _.
1678
734ae125
DE
16792015-01-24 Doug Evans <xdje42@gmail.com>
1680
1681 * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
1682
527f3840
JK
16832015-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1684
1685 Fix 100x slowdown regression on DWZ files.
1686 * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash.
1687 (struct line_header): Add offset and offset_in_dwz.
1688 (dwarf_decode_lines): Add parameter decode_mapping to the declaration.
1689 (free_line_header_voidp): New declaration.
1690 (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New
1691 functions.
1692 (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller.
1693 (handle_DW_AT_stmt_list): Use line_header_hash.
1694 (free_line_header_voidp): New function.
1695 (dwarf_decode_line_header): Initialize offset and offset_in_dwz.
1696 (dwarf_decode_lines): New parameter decode_mapping, use it.
1697 (dwarf2_free_objfile): Free line_header_hash.
1698
f7e5394d
SM
16992015-01-23 Simon Marchi <simon.marchi@ericsson.com>
1700
1701 PR gdb/17416
1702 * valops.c (value_rtti_indirect_type): Catch exception thrown by
1703 value_ind.
1704
743649fd
MW
17052015-01-15 Mark Wielaard <mjw@redhat.com>
1706
1707 * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from
1708 DW_AT_noreturn.
1709 * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make
1710 calling_convention an 8 bit bit field.
1711 (TYPE_NO_RETURN): New macro.
1712 * infcmd.c (finish_command): Query if function does not return
1713 normally.
1714 * stack.c (return_command): Likewise.
1715
198297aa
PA
17162015-01-23 Pedro Alves <palves@redhat.com>
1717
1718 * linux-nat.c (linux_is_async_p): New macro.
1719 (linux_nat_is_async_p):
1720 (linux_nat_terminal_inferior): Check whether the target can async
1721 instead of whether it is already async.
1722 (linux_nat_terminal_ours): Don't check whether the target is
1723 async.
1724 (linux_async_pipe): Use linux_is_async_p.
1725
253828f1
JK
17262015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1727
1728 * NEWS (Changes since GDB 7.9): Add 'thread apply all' option
1729 '-ascending'.
1730 * thread.c (tp_array_compar_ascending, tp_array_compar): New.
1731 (thread_apply_all_command): Parse CMD for tp_array_compar_ascending.
1732 Sort tp_array using tp_array_compar.
1733 (_initialize_thread): Extend thread_apply_all_command help.
1734
f0e8c4c5
JK
17352015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1736
1737 * corelow.c (core_open): Call also thread_command.
1738 * gdbthread.h (thread_command): New prototype moved from ...
1739 * thread.c (thread_command): ... here.
1740 (thread_command): Make it global.
1741
03b79603
PA
17422015-01-22 Pedro Alves <palves@redhat.com>
1743
1744 * configure.ac [*mingw32*]: Check $curses_found instead of
1745 $prefer_curses.
1746 * configure: Regenerate.
1747 * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and
1748 HAVE_NCURSES_NCURSES_H checks.
1749
6b8a872f
EZ
17502015-01-22 Eli Zaretskii <eliz@gnu.org>
1751
bbbbffbb 1752 * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm'
6b8a872f
EZ
1753 fails with the 1st arg NULL, try again with "unknown". Don't test
1754 the "cup" capability: it isn't supported by the Windows port of
1755 ncurses, but the Windows console driver is still capable of
1756 supporting TUI.
1757
4b62a76e
JK
17582015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1759
1760 * compile/compile.c (_initialize_compile): Use -fPIE for compile_args.
1761
82a864f9
EZ
17622015-01-22 Eli Zaretskii <eliz@gnu.org>
1763
1764 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
1765 (ALLDEPFILES): Remove irix5-nat.c. These two are part of the
1766 reason that "make TAGS" is broken.
1767
b35018fd
CG
17682015-01-22 Chen Gang <gang.chen.5i5j@gmail.com>
1769
1770 * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues
1771 and check additional store instructions.
1772
ffbc4646
WW
17732015-01-21 Wei-cheng Wang <cole945@gmail.com>
1774
1775 * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang".
1776
ddeca1df
WW
17772015-01-21 Wei-cheng Wang <cole945@gmail.com>
1778
1779 * ppc-linux-tdep.c (ppc_skip_trampoline_code,
1780 ppc_canonicalize_syscall, ppc_linux_syscall_record,
1781 ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments.
1782 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
1783 * rs6000-tdep.c (rs6000_epilogue_frame_cache,
1784 rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register,
1785 rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4,
1786 ppc_process_record_op19, ppc_process_record_op31,
1787 ppc_process_record_op59, ppc_process_record_op60,
1788 ppc_process_record_op63): Likewise.
1789
049bb5de
JB
17902015-01-20 Joel Brobecker <brobecker@adacore.com>
1791
1792 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string)
1793 (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of
1794 strerror.
1795
42b87c63 17962015-01-20 Wei-cheng Wang <cole945@gmail.com>
810c1026
WW
1797
1798 * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19,
1799 ppc_process_record_op31, ppc_process_record_op59,
1800 ppc_process_record_op60, ppc_process_record_op63,
1801 ppc_process_record): Fix -Wformat warning.
1802 * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60):
1803 Remove unused variables.
1804
569340fc
CG
18052015-01-20 Chen Gang <gang.chen.5i5j@gmail.com>
1806
1807 * MAINTAINERS (Write After Approval): Add "Chen Gang".
1808
63413d85
EZ
18092015-01-19 Eli Zaretskii <eliz@gnu.org>
1810
1811 * configure.ac [*mingw32*]: Only add windows-termcap.o to
1812 CONFIG_OBS if not building with a curses library.
1813 * configure: Regenerate.
1814
1815 * windows-termcap.c: Include defs.h. Make the whole body empty if
1816 either one of HAVE_CURSES_H or HAVE_NCURSES_H or
1817 HAVE_NCURSES_NCURSES_H is defined.
1818
16d8013c
JB
18192015-01-19 Joel Brobecker <brobecker@adacore.com>
1820
1821 * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator
1822 from end of line to start of next line.
1823
cf90fd9a
WW
18242015-01-17 Wei-cheng Wang <cole945@gmail.com>
1825
1826 * ppc-linux-tdep.c (ppc_skip_trampoline_code):
1827 Scan PLT stub backward for reverse debugging.
1828 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
1829
b4cdae6f
WW
18302015-01-17 Wei-cheng Wang <cole945@gmail.com>
1831 Ulrich Weigand <uweigand@de.ibm.com>
1832
1833 * configure.tgt (powerpc*-*-linux): Add linux-record.o to
1834 gdb_target_obs.
1835 (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall
1836 record.
1837 (ppc_canonicalize_syscall, ppc_linux_syscall_record,
1838 ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions.
1839 (ppc_linux_init_abi): Set process_record, process_record_signal.
1840 * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and
1841 ppc_linux_record_tdep to gdbarch_tdep.
1842 (ppc_process_record): New declaration.
1843 * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4,
1844 ppc_process_record_op19, ppc_process_record_op31,
1845 ppc_process_record_op59, ppc_process_record_op60,
1846 ppc_process_record_op63, ppc_process_record): New functions.
1847
2608dbf8
WW
18482015-01-17 Wei-cheng Wang <cole945@gmail.com>
1849
1850 * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to
1851 rs6000_in_function_epilogue_frame_p and add an argument
1852 for frame_info.
1853 (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id,
1854 rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer):
1855 New functions.
1856 (rs6000_epilogue_frame_unwind): New.
1857 (rs6000_gdbarch_init): Append epilogue unwinder.
1858
4c347be6
SDJ
18592015-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
1860
1861 * nat/linux-personality.c: Replace "#ifndef
1862 HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if
1863 !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5
1864 systems.
1865
9f2850ba
EZ
18662015-01-16 Eli Zaretskii <eliz@gnu.org>
1867
6cdb25f4
EZ
1868 * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New
1869 functions.
1870 (_initialize_tui_win) <border-kind, border-mode>:
1871 <active-border-mode>: Use tui_set_var_cmd as the "set" function.
c54da50d
EZ
1872 (tui_set_tab_width_command): Fix the commentary.
1873
6cdb25f4
EZ
1874 * tui/tui-win.h: Add prototype for tui_rehighlight_all.
1875
bf555842
EZ
1876 * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command):
1877 Doc fix.
cb86fcc1
EZ
1878 (tui_set_tab_width_command): Delete and recreate the source and
1879 the disassembly windows, to show the effect of the changed tab
1880 size immediately.
bf555842 1881
9f2850ba
EZ
1882 * tui/tui-data.h (LINE_PREFIX): Make shorter
1883 (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for
1884 "Thread NNNNN.XXXX" thread ID notation on Windows.
1885
95761b2d
JK
18862015-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1887
1888 Fix gcc-5 compilation.
1889 * hppa-tdep.c (inst_saves_gr): Fix parentheses typo.
1890
8cc73a39
SDJ
18912015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
1892
1893 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h.
1894 (linux-personality.o): New rule.
1895 * common/common-defs.h: Include <stdint.h>.
1896 * config/aarch64/linux.mh (NATDEPFILES): Include
1897 linux-personality.o.
1898 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
1899 * config/arm/linux.mh (NATDEPFILES): Likewise.
1900 * config/i386/linux64.mh (NATDEPFILES): Likewise.
1901 * config/i386/linux.mh (NATDEPFILES): Likewise.
1902 * config/ia64/linux.mh (NATDEPFILES): Likewise.
1903 * config/m32r/linux.mh (NATDEPFILES): Likewise.
1904 * config/m68k/linux.mh (NATDEPFILES): Likewise.
1905 * config/mips/linux.mh (NATDEPFILES): Likewise.
1906 * config/pa/linux.mh (NATDEPFILES): Likewise.
1907 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
1908 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
1909 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
1910 * config/s390/linux.mh (NATDEPFILES): Likewise.
1911 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
1912 * config/sparc/linux.mh (NATDEPFILES): Likewise.
1913 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
1914 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
1915 * defs.h: Remove #include <stdint.h> (moved to
1916 common/common-defs.h).
1917 * linux-nat.c: Include nat/linux-personality.h. Remove #include
1918 <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to
1919 nat/linux-personality.c).
1920 (linux_nat_create_inferior): Remove code to disable address space
1921 randomization (moved to nat/linux-personality.c). Create cleanup
1922 to disable address space randomization.
1923 * nat/linux-personality.c: New file.
1924 * nat/linux-personality.h: Likewise.
1925
fb23d554
SDJ
19262015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
1927
1928 * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and
1929 common/posix-strerror.c.
1930 (posix-strerror.o): New rule.
1931 (mingw-strerror.o): Likewise.
1932 * common/common-utils.h (safe_strerror): Move prototype to here,
1933 from utils.h.
1934 * common/common.host: New file.
1935 * common/mingw-strerror.c: Likewise.
1936 * common/posix-strerror.c: Likewise.
1937 * configure: Regenerated.
1938 * configure.ac: Source common/common.host. Add variable
1939 common_host_obs to gdb_host_obs.
1940 * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and
1941 gdb/common/posix-strerror.c when warning about the use of
1942 strerror.
1943 * mingw-hdep.c (safe_strerror): Remove definition; move it to
1944 common/mingw-strerror.c.
1945 * posix-hdep.c (safe_strerror): Remove definition; move it to
1946 common/posix-hdep.c.
1947 * utils.h (safe_strerror): Remove prototype; move to
1948 common/common-utils.h.
1949
3af8af43
JB
19502015-01-15 Joel Brobecker <brobecker@adacore.com>
1951
1952 GDB 7.8.2 released.
1953
bafffb51
JB
19542015-01-15 Joel Brobecker <brobecker@adacore.com>
1955
1956 * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel
1957 ___XA type if the array has already been fixed.
1958
cdf43629
YQ
19592015-01-14 Yao Qi <yao@codesourcery.com>
1960
1961 * Makefile.in (ppc-linux.o): New rule.
1962 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o.
1963 * configure.ac: AC_CHECK_FUNCS(getauxval).
1964 * config.in: Re-generated.
1965 * configure: Re-generated.
1966 * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p):
1967 Declare.
1968 * nat/ppc-linux.c: New file.
1969 * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]:
1970 Call ppc64_64bit_inferior_p.
1971
514c5338
YQ
19722015-01-14 Yao Qi <yao@codesourcery.com>
1973
1974 * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to
1975 nat/ppc-linux.h.
1976 (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise.
1977 (PPC_FEATURE_HAS_DFP): Likewise.
1978 (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise.
1979 (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise.
1980 (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise.
1981 Include "nat/ppc-linux.h".
1982 * nat/ppc-linux.h: New file.
1983 * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h.
1984
5589af0e
PA
19852015-01-14 Pedro Alves <palves@redhat.com>
1986
1987 PR gdb/17525
1988 * breakpoint.c: Include "interps.h".
1989 (bpstat_do_actions_1): Also check whether the interpreter is
1990 async.
1991
6c400b59
PA
19922015-01-14 Pedro Alves <palves@redhat.com>
1993
1994 PR cli/17828
1995 * infrun.c (reinstall_readline_callback_handler_cleanup): Don't
1996 reinstall if the interpreter is sync.
1997
e02c96a7
DE
19982015-01-13 Doug Evans <dje@google.com>
1999
2000 * objfiles.c (objfile_filename): New function.
2001 * objfiles.h (objfile_filename): Declare it.
2002 (objfile_name): Add function comment.
2003 * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the
2004 bfd file name (which may be realpath'd), and the original name.
2005
3b2f13ff
JB
20062015-01-13 Joel Brobecker <brobecker@adacore.com>
2007
2008 * NEWS: Create a new section for the next release branch.
2009 Rename the section of the current branch, now that it has
2010 been cut.
2011
b4cfe7f8
JB
20122015-01-13 Joel Brobecker <brobecker@adacore.com>
2013
2014 GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37):
2015 * version.in: Bump version to 7.9.50.DATE-cvs.
2016
92fc2e69
JB
20172015-01-13 Joel Brobecker <brobecker@adacore.com>
2018
2019 * nat/linux-procfs.c (linux_proc_attach_tgid_threads):
2020 Remove trailing new-line in argument of call to warning.
2021
f71f0b0d
JB
20222015-01-13 Joel Brobecker <brobecker@adacore.com>
2023
2024 * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing
2025 new-line in argument of call to "warning".
2026
04dccad0
JB
20272015-01-13 Joel Brobecker <brobecker@adacore.com>
2028
2029 * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found
2030 in static block, then try searching for primitive types.
2031
08b13bdd
PP
20322015-01-12 Patrick Palka <patrick@parcs.ath.cx>
2033
2034 * top.h (gdb_add_history): Declare.
2035 * top.c (command_count): New variable.
2036 (gdb_add_history): New function.
2037 (gdb_safe_append_history): New static function.
2038 (quit_force): Call it.
2039 (command_line_input): Use gdb_add_history instead of
2040 add_history.
2041 * event-top.c (command_line_handler): Likewise.
2042
4ac15b59
JC
20432015-01-12 James Clarke <jrtc27@jrtc27.com> (tiny patch)
2044
2045 PR gdb/17046
2046 * darwin-nat.c: Replace <machine/setjmp.h> #include by
2047 <setjmp.h> #include.
2048
005e54bb
DE
20492015-01-11 Doug Evans <xdje42@gmail.com>
2050
2051 * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.
2052
439250fb
DE
20532015-01-11 Doug Evans <xdje42@gmail.com>
2054
2055 PR gdb/15830
2056 * NEWS: The "maint demangle" command is renamed as "demangle".
2057 * demangle.c: #include cli/cli-utils.h, language.h.
2058 (demangle_command): New function.
2059 (_initialize_demangle): Add new command "demangle".
2060 * maint.c (maintenance_demangle): Stub out.
2061 (_initialize_maint_cmds): Update help text for "maint demangle",
2062 and mark as deprecated.
2063
ebf3aa72
MK
20642015-01-11 Mark Kettenis <kettenis@gnu.org>
2065
2066 * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that
2067 inferior_thread is a function.
2068
6bf045cd
PP
20692015-01-09 Patrick Palka <patrick@parcs.ath.cx>
2070
2071 * Makefile.in (.y.c): Don't munge yacc's #line
2072 directives.
2073
588dcc3e
PP
20742015-01-09 Patrick Palka <patrick@parcs.ath.cx>
2075
2076 * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper
2077 to prompt for input.
2078 * tui/tui-hooks.c (tui_query_hook): Remove.
2079 (tui_install_hooks): Don't set deprecated_query_hook.
2080 * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in
2081 height calculation. Always update the command window's cur_line.
2082
9c02b525
PA
20832015-01-09 Pedro Alves <palves@redhat.com>
2084
2085 * breakpoint.c (hardware_breakpoint_inserted_here_p): New
2086 function.
2087 * breakpoint.h (hardware_breakpoint_inserted_here_p): New
2088 declaration.
2089 * linux-nat.c (linux_nat_status_is_event): Move higher up in file.
2090 (linux_resume_one_lwp): Store the thread's PC. Adjust to clear
2091 stop_reason.
2092 (check_stopped_by_watchpoint): New function.
2093 (save_sigtrap): Reimplement.
2094 (linux_nat_stopped_by_watchpoint): Adjust.
2095 (linux_nat_lp_status_is_event): Delete.
2096 (stop_wait_callback): Only call save_sigtrap after storing the
2097 pending status.
2098 (status_callback): If the thread had been stopped for a breakpoint
2099 that has since been removed, discard the event and resume the LWP.
2100 (count_events_callback, select_event_lwp_callback): Use
2101 lwp_status_pending_p instead of linux_nat_lp_status_is_event.
2102 (cancel_breakpoint): Rename to ...
2103 (check_stopped_by_breakpoint): ... this. Record whether the LWP
2104 stopped for a software breakpoint or hardware breakpoint.
2105 (select_event_lwp): Only give preference to the stepping LWP in
2106 all-stop mode. Adjust comments.
2107 (stop_and_resume_callback): Remove references to new_pending_p.
2108 (linux_nat_filter_event): Likewise. Leave exit events of the
2109 leader thread pending here. Handle signal short circuiting here.
2110 Only call save_sigtrap after storing the pending waitstatus.
2111 (linux_nat_wait_1): Remove 'retry' label. Remove references to
2112 new_pending. Don't handle leaving events the caller is not
2113 interested in pending here, nor handle signal short-circuiting
2114 here. Also give equal priority to all LWPs that have had events
2115 in non-stop mode. If reporting a software breakpoint event,
2116 unadjust the LWP's PC.
2117 * linux-nat.h (enum lwp_stop_reason): New.
2118 (struct lwp_info) <stop_pc>: New field.
2119 (struct lwp_info) <stopped_by_watchpoint>: Delete field.
2120 (struct lwp_info) <stop_reason>: New field.
2121 * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
2122
8af756ef
PA
21232015-01-09 Pedro Alves <palves@redhat.com>
2124
2125 * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>:
2126 Set the LWP's 'resumed' flag.
2127
8a99810d
PA
21282015-01-09 Pedro Alves <palves@redhat.com>
2129
2130 * linux-nat.c (linux_resume_one_lwp): New function.
2131 (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp.
2132 (linux_nat_resume): Use lwp_status_pending_p and
2133 linux_resume_one_lwp.
2134 (linux_handle_syscall_trap): Use linux_resume_one_lwp.
2135 (linux_handle_extended_wait): Use linux_resume_one_lwp.
2136 (status_callback, running_callback): Use lwp_status_pending_p.
2137 (lwp_status_pending_p): New function.
2138 (stop_and_resume_callback): Use lwp_status_pending_p.
2139 (linux_nat_filter_event): Use linux_resume_one_lwp.
2140 (linux_nat_wait_1): Always use status_callback to look for an LWP
2141 with a pending status. Use linux_resume_one_lwp.
2142 (resume_stopped_resumed_lwps): Use lwp_status_pending_p and
2143 linux_resume_one_lwp.
2144
f7ce857f
PA
21452015-01-09 Pedro Alves <palves@redhat.com>
2146
2147 * breakpoint.c (bp_location_inserted_here_p): New function,
2148 factored out from ...
2149 (breakpoint_inserted_here_p): ... here. Use
2150 ALL_BP_LOCATIONS_AT_ADDR.
2151 (software_breakpoint_inserted_here_p): Use
2152 bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR.
2153
c1a747c1
PA
21542014-01-09 Pedro Alves <palves@redhat.com>
2155
2156 Skip enabling event reporting if the kernel supports
2157 PTRACE_EVENT_CLONE.
2158 * linux-thread-db.c: Include "nat/linux-ptrace.h".
2159 (thread_db_use_events): New function.
2160 (try_thread_db_load_1): Check thread_db_use_events before enabling
2161 event reporting.
2162 (update_thread_state): New function.
2163 (attach_thread): Use it. Check thread_db_use_events before
2164 enabling event reporting.
2165 (thread_db_detach): Check thread_db_use_events before disabling
2166 event reporting.
2167 (find_new_threads_callback): Check thread_db_use_events before
2168 enabling event reporting. Update the thread's state if not using
2169 libthread_db events.
2170
a33e3959
PA
21712015-01-09 Pedro Alves <palves@redhat.com>
2172
2173 * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're
2174 about to wait for is > 0.
2175 * linux-thread-db.c (find_new_threads_callback): Ignore thread if
2176 the kernel thread ID is -1.
2177
8784d563
PA
21782015-01-09 Pedro Alves <palves@redhat.com>
2179
2180 * linux-nat.c (attach_proc_task_lwp_callback): New function.
2181 (linux_nat_attach): Use linux_proc_attach_tgid_threads.
2182 (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's
2183 ptrace option flags.
2184 * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New
2185 field.
2186 * nat/linux-procfs.c: Include <dirent.h>.
2187 (linux_proc_get_int): New parameter "warn". Handle it.
2188 (linux_proc_get_tgid): Adjust.
2189 (linux_proc_get_tracerpid): Rename to ...
2190 (linux_proc_get_tracerpid_nowarn): ... this.
2191 (linux_proc_pid_get_state): New function, factored out from
2192 (linux_proc_pid_has_state): ... this. Add new parameter "warn"
2193 and handle it.
2194 (linux_proc_pid_is_gone): New function.
2195 (linux_proc_pid_is_stopped): Adjust.
2196 (linux_proc_pid_is_zombie_maybe_warn)
2197 (linux_proc_pid_is_zombie_nowarn): New functions.
2198 (linux_proc_pid_is_zombie): Use
2199 linux_proc_pid_is_zombie_maybe_warn.
2200 (linux_proc_attach_tgid_threads): New function.
2201 * nat/linux-procfs.h (linux_proc_get_tgid): Update comment.
2202 (linux_proc_get_tracerpid): Rename to ...
2203 (linux_proc_get_tracerpid_nowarn): ... this, and update comment.
2204 (linux_proc_pid_is_gone): New declaration.
2205 (linux_proc_pid_is_zombie): Update comment.
2206 (linux_proc_pid_is_zombie_nowarn): New declaration.
2207 (linux_proc_attach_lwp_func): New typedef.
2208 (linux_proc_attach_tgid_threads): New declaration.
2209 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to
2210 use nowarn functions.
2211 (linux_ptrace_attach_fail_reason_string): Move here from
2212 gdbserver/linux-low.c and rename.
2213 (ptrace_supports_feature): If the current ptrace options are not
2214 known yet, check them now, instead of asserting.
2215 * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string):
2216 Declare.
2217
883ed13e
PA
22182015-01-09 Pedro Alves <palves@redhat.com>
2219
2220 * linux-thread-db.c (thread_db_find_new_threads_silently)
2221 (try_thread_db_load_1, try_thread_db_load, thread_db_load_search)
2222 (find_new_threads_once): Print debug output on gdb_stdlog.
2223
1710aab8
CG
22242015-01-09 Chen Gang <gang.chen.5i5j@gmail.com>
2225 Pedro Alves <palves@redhat.com>
2226
2227 * compile/compile.c: Include "gdb_wait.h".
2228 (do_rmdir): Check return value, and free 'zap'.
2229
b597c318
YQ
22302015-01-08 Pedro Alves <palves@redhat.com>
2231 Yao Qi <yao@codesourcery.com>
2232
2233 * dwarf2loc.c (indirect_pieced_value): Don't call
2234 gdb_sign_extend. Call extract_signed_integer instead.
2235 * utils.c (gdb_sign_extend): Remove.
2236 * utils.h (gdb_sign_extend): Remove declaration.
2237
025ac414
PM
22382015-01-07 Pierre Muller <muller@sourceware.org>
2239
2240 PR symtab/17811
2241 * stabsread.c (define_symbol): Set language for C++ special symbols.
2242
fa5af12a
PP
22432015-01-07 Patrick Palka <patrick@parcs.ath.cx>
2244
2245 * inflow.c (initial_gdb_ttystate): Tweak comment.
2246
ea42d6f8
JB
22472015-01-07 Joel Brobecker <brobecker@adacore.com>
2248
2249 * inflow.c (set_initial_gdb_ttystate): Add empty line after
2250 comment documenting function.
2251
6a06d660
PP
22522015-01-07 Patrick Palka <patrick@parcs.ath.cx>
2253
2254 * terminal.h (set_initial_gdb_ttystate): Declare.
2255 * inflow.c (initial_gdb_ttystate): New static variable.
2256 (set_initial_gdb_ttystate): New setter.
2257 (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate
2258 instead of our current terminal state.
2259 * top.c (gdb_init): Call set_initial_gdb_ttystate.
2260
e810d75b
JB
22612015-01-07 Joel Brobecker <brobecker@adacore.com>
2262
2263 * guile/scm-type.c (tyscm_array_1): Add comment.
2264 * python/py-type.c (typy_array_1): Add comment.
2265
fce10a84
JB
22662015-01-06 Joel Brobecker <brobecker@adacore.com>
2267
2268 * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range
2269 error if N2 is equal to N1 - 1.
2270
8503d6e1
JB
22712015-01-06 Joel Brobecker <brobecker@adacore.com>
2272
2273 * python/py-type.c (typy_array_1): Do not raise negative-length
2274 exception if N2 is equal to N1 - 1.
2275
4d29c0a8
DE
22762015-01-03 Doug Evans <xdje42@gmail.com>
2277
2278 * c-exp.y: Whitespace cleanup.
2279 (classify_inner_name): Remove extra ;.
2280
eaa6a9a4
MR
22812015-01-02 Maciej W. Rozycki <macro@codesourcery.com>
2282
2283 * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack
2284 offset signed.
2285
02fe9972
DE
22862015-01-02 Doug Evans <dje@google.com>
2287
2288 * dwarf2read.c (setup_type_unit_groups): Remove outdated comment.
2289
e2ada9cb
DE
22902015-01-02 Doug Evans <dje@google.com>
2291
2292 * symtab.h (struct symbol): Fix typo in comment.
2293
32d0add0
JB
22942015-01-01 Joel Brobecker <brobecker@adacore.com>
2295
2296 Update year range in copyright notice of all files.
2297
76f2b779
JB
22982015-01-01 Joel Brobecker <brobecker@adacore.com>
2299
2300 * top.c (print_gdb_version): Update copyright year to 2015.
2301
077309e2 23022015-01-01 Joel Brobecker <brobecker@adacore.com>
6bf6fd09 2303
077309e2 2304 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014.
6bf6fd09 2305
077309e2 2306For older changes see ChangeLog-2014.
c906108c
SS
2307\f
2308Local Variables:
2309mode: change-log
2310left-margin: 8
2311fill-column: 74
2312version-control: never
57da7796 2313coding: utf-8
c906108c 2314End:
This page took 1.819455 seconds and 4 git commands to generate.