Fix startup on MS-Windows when 'gdb.ini' is found in $HOME
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
1270fac6
EZ
12016-05-02 Eli Zaretskii <eliz@gnu.org>
2
3 * windows-nat.c (_initialize_check_for_gdb_ini): Fix off-by-one
4 error in allocation of space for "$HOME/.gdbinit" string. This
5 caused GDB to abort on startup whenever a '~/gdb.ini' file was
6 actually found, because xsnprintf would hit an assertion
7 violation.
8
0400cf2f
SM
92016-04-28 Simon Marchi <simon.marchi@ericsson.com>
10
11 * cli/cli-decode.c (help_cmd_list): Do not list commands that
12 are deprecated.
13
57809e5e
JK
142016-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
15
16 * remote.c (remote_start_remote): Detect PACKET_vFile_setfs.support.
17
476350ba
MG
182016-04-27 Martin Galvan <martin.galvan@tallertechnologies.com>
19
20 * c-valprint.c (c_value_print): Always convert val back to reference
21 type if we converted it to a pointer type.
22
2d681be4
AA
232016-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
24
25 * configure.ac: Enhance configure check for babeltrace to reject
26 non-C++-enabled versions.
27 * configure: Regenerate.
28
3e2e34f8
KB
292016-04-26 Sanimir Agovic <sanimir.agovic@intel.com>
30 Keven Boell <keven.boell@intel.com>
31 Bernhard Heckel <bernhard.heckel@intel.com>
32
33 * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
34 function.
35 (F77_DIM_SIZE, F77_DIM_OFFSET): Remove macro.
36 (f77_print_array_1): Use value_subscript to subscript a
37 value array.
38 (f77_print_array): Remove call to f77_create_arrayprint_offset_tbl.
39 (f_val_print): Use value_field to construct a field value.
40
8f07e298
BH
412016-04-26 Bernhard Heckel <bernhard.heckel@intel.com>
42
43 * valarith.c (value_address): Resolve dynamic types.
44
9920b434
BH
452016-04-26 Bernhard Heckel <bernhard.heckel@intel.com>
46 Keven Boell <kevel.boell@intel.com>
47
48 * NEWS: Add new supported features for fortran.
49 * gdbtypes.c (remove_dyn_prop): New.
50 (resolve_dynamic_struct): Keep type length for fortran structs.
51 * gdbtypes.h: Forward declaration of new function.
52 * value.c (value_address): Return dynamic resolved location of a value.
53 (set_value_component_location): Adjust the value address
54 for single value prints.
55 (value_primitive_field): Support value types with a dynamic location.
56 (set_internalvar): Remove dynamic location property of
57 internal variables.
58
20249ae4
YQ
592016-04-25 Pedro Alves <palves@redhat.com>
60 Yao Qi <yao.qi@linaro.org>
61
62 * mem-break.c (set_raw_breakpoint_at): Create a raw breakpoint
63 object. Insert it if it is not inserted yet. Increase the
64 refcount and link it into the proc's raw breakpoint list.
65
21edc42f
YQ
662016-04-25 Yao Qi <yao.qi@linaro.org>
67
68 * breakpoint.c (should_be_inserted): Return 0 if the location's
69 owner is not single step breakpoint or single step breakpoint's
70 thread isn't the thread which is stepping past a breakpoint.
71 * gdbarch.sh (software_single_step): Update comments.
72 * gdbarch.h: Regenerated.
73 * infrun.c (struct step_over_info) <thread>: New field.
74 (set_step_over_info): New argument 'thread'. Callers updated.
75 (clear_step_over_info): Set field thread to -1.
76 (thread_is_stepping_over_breakpoint): New function.
77 * infrun.h (thread_is_stepping_over_breakpoint): Declaration.
78
0154d990
EBM
792016-04-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
80
81 * ppc-linux-nat.c (ppc_linux_read_description): Use PPC_FEATURE_HAS_VSX
82 and PPC_FEATURE_HAS_ALTIVEC to check if such features are available.
83
6d7e9d3b
YQ
842016-04-22 Yao Qi <yao.qi@linaro.org>
85
86 * valops.c (read_value_memory): New local variable 'stack'.
87 Set it to either TARGET_OBJECT_STACK_MEMORY or
88 TARGET_OBJECT_MEMORY.
89
b3f11165
PA
902016-04-22 Pedro Alves <palves@redhat.com>
91
92 * ada-exp.y: Remove all yy symbol remappings.
93 (GDB_YY_REMAP_PREFIX): Define.
94 Include "yy-remap.h".
95 * ada-lang.c (ada_language_defn): Adjust.
96 * ada-lang.h (ada_error): Rename to ...
97 (ada_yyerror): ... this.
98 * c-exp.y: Remove all yy symbol remappings.
99 (GDB_YY_REMAP_PREFIX): Define.
100 Include "yy-remap.h".
101 * c-lang.c (c_language_defn, cplus_language_defn)
102 (asm_language_defn, minimal_language_defn): Adjust.
103 * c-lang.h (c_error): Rename to ...
104 (c_yyerror): ... this.
105 * d-exp.y: Remove all yy symbol remappings.
106 (GDB_YY_REMAP_PREFIX): Define.
107 Include "yy-remap.h".
108 * d-lang.c (d_language_defn): Adjust.
109 * d-lang.h (d_error): Rename to ...
110 (d_yyerror): ... this.
111 * f-exp.y: Remove all yy symbol remappings.
112 (GDB_YY_REMAP_PREFIX): Define.
113 Include "yy-remap.h".
114 * f-lang.c (f_language_defn): Adjust.
115 * f-lang.h (f_error): Rename to ...
116 (f_yyerror): ... this.
117 * go-exp.y: Remove all yy symbol remappings.
118 (GDB_YY_REMAP_PREFIX): Define.
119 Include "yy-remap.h".
120 * go-lang.c (go_language_defn): Adjust.
121 * go-lang.h (go_error): Rename to ...
122 (go_yyerror): ... this.
123 * jv-exp.y: Remove all yy symbol remappings.
124 (GDB_YY_REMAP_PREFIX): Define.
125 Include "yy-remap.h".
126 * jv-lang.c (java_language_defn): Adjust.
127 * jv-lang.h (java_error): Rename to ...
128 (java_yyerror): ... this.
129 * m2-exp.y: Remove all yy symbol remappings.
130 (GDB_YY_REMAP_PREFIX): Define.
131 Include "yy-remap.h".
132 * m2-lang.c (m2_language_defn): Adjust.
133 * m2-lang.h (m2_error): Rename to ...
134 (m2_yyerror): ... this.
135 * objc-exp.y: Remove all yy symbol remappings.
136 (GDB_YY_REMAP_PREFIX): Define.
137 Include "yy-remap.h".
138 * objc-lang.c (objc_language_defn): Adjust.
139 * opencl-lang.c (opencl_language_defn): Adjust.
140 * p-exp.y: Remove all yy symbol remappings.
141 (GDB_YY_REMAP_PREFIX): Define.
142 Include "yy-remap.h".
143 * p-lang.c (pascal_language_defn): Adjust.
144 * p-lang.h (pascal_error): Rename to ...
145 (pascal_yyerror): ... this.
146 * yy-remap.h: New file.
147
6290672f
PA
1482016-04-22 Pedro Alves <palves@redhat.com>
149
150 * common/common-exceptions.h (GDB_XCPT_TRY): Remove mention of
151 the foreign frames issue.
152 [__cplusplus] (GDB_XCPT): Define as GDB_XCPT_TRY.
153
89525768
PA
1542016-04-22 Pedro Alves <palves@redhat.com>
155
156 * common/common-exceptions.c (enum catcher_state, struct catcher)
157 (current_catcher): Define in C++ mode too.
158 (exceptions_state_mc_catch): Call throw_exception_sjlj instead of
159 throw_exception.
160 (throw_exception_sjlj, throw_exception_cxx): New functions,
161 factored out from throw_exception.
162 (throw_exception): Reimplement.
163 * common/common-exceptions.h (exceptions_state_mc_init)
164 (exceptions_state_mc_action_iter)
165 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
166 Declare in C++ mode too.
167 (TRY): Rename to ...
168 (TRY_SJLJ): ... this.
169 (CATCH): Rename to ...
170 (CATCH_SJLJ): ... this.
171 (END_CATCH): Rename to ...
172 (END_CATCH_SJLJ): ... this.
173 [GDB_XCPT == GDB_XCPT_SJMP] (TRY, CATCH, END_CATCH): Map to SJLJ
174 equivalents.
175 (throw_exception): Update comments.
176 (throw_exception_sjlj): Declare.
177 * event-top.c (gdb_rl_callback_read_char_wrapper): Extend intro
178 comment. Wrap body in TRY_SJLJ/CATCH_SJLJ and rethrow any
179 intercepted exception.
180 (gdb_rl_callback_handler): New function.
181 (gdb_rl_callback_handler_install): Always install
182 gdb_rl_callback_handler as readline callback.
183
3c610247
PA
1842016-04-22 Pedro Alves <palves@redhat.com>
185
186 * event-top.c (rl_callback_read_char_wrapper): Rename to ...
187 (gdb_rl_callback_read_char_wrapper): ... this.
188 (change_line_handler, gdb_setup_readline): Adjust.
189
3539aa13
YQ
1902016-04-22 Yao Qi <yao.qi@linaro.org>
191
192 * aarch32-linux-nat.c (aarch32_gp_regcache_supply): Clear CPSR
193 bits 20 to 23.
194
0f60e29b
JB
1952016-04-22 Joel Brobecker <brobecker@adacore.com>
196
197 * MAINTAINER: Remove myself as AIX Maintainer.
198
3877922e
MR
1992016-04-22 Maciej W. Rozycki <macro@imgtec.com>
200
201 * mips-tdep.c (mips_gdbarch_init): For GDB_OSABI_LINUX set
202 `num_regs' to 90 rather than 79. Where a target description is
203 present adjust the setting appropriately.
204
88c3cd8d
PA
2052016-04-21 Pedro Alves <palves@redhat.com>
206
207 * common/common-exceptions.h (GDB_XCPT_TRY): Add comment.
208 (GDB_XCPT): Always define as GDB_XCPT_SJMP.
209
71829b1a
PA
2102016-04-21 Pedro Alves <palves@redhat.com>
211
212 * aix-thread.c (pdc_read_data, pdc_write_data): Add cast.
213 (aix_thread_resume): Use PTRACE_TYPE_ARG5.
214 * rs6000-nat.c (rs6000_ptrace64): Use PTRACE_TYPE_ARG5.
215 (rs6000_ptrace_ldinfo): Change type of 'ldi' local to void
216 pointer, and cast return to gdb_byte pointer.
217
3451269c
PA
2182016-04-21 Pedro Alves <palves@redhat.com>
219
220 * s390-linux-nat.c (fetch_regset, store_regset, check_regset): Use
221 void * instead of gdb_byte *.
222
b36cec19
PA
2232016-04-21 Pedro Alves <palves@redhat.com>
224
225 * dwarf2read.c (try_open_dwop_file, open_dwo_file)
226 (file_file_name, file_full_name): Add char * cast to sentinel in
227 concat/reconcat calls.
228 * event-top.c (top_level_prompt): Likewise.
229 * guile/guile.c (initialize_scheme_side): Likewise.
230 * linux-tdep.c (linux_fill_prpsinfo): Likewise.
231 * macrotab.c (macro_source_fullname): Likewise.
232 * main.c (get_init_files, captured_main): Likewise.
233 * psymtab.c (psymtab_to_fullname): Likewise.
234 * python/python.c (_initialize_python)
235 (gdbpy_finish_initialization): Likewise.
236 * source.c (symtab_to_fullname): Likewise.
237
a2358508
PA
2382016-04-20 Pedro Alves <palves@redhat.com>
239
240 * build-with-cxx.m4 (GDB_AC_BUILD_WITH_CXX): Default to yes.
241 * configure: Renegerate.
242
5ae00552
PA
2432016-04-20 Pedro Alves <palves@redhat.com>
244
245 * darwin-nat.c (darwin_decode_message): Use gdb_signal_from_host.
246
d9436c7c
PA
2472016-04-20 Pedro Alves <palves@redhat.com>
248
249 * aarch64-tdep.c (aarch64_record_load_store): Change type of
250 'reg_rm_val' local to ULONGEST.
251
597e448c
PA
2522016-04-20 Pedro Alves <palves@redhat.com>
253
254 * darwin-nat.c (darwin_resume_thread): Add uintptr_t cast.
255
6c739336
DE
2562016-04-20 Doug Evans <xdje42@gmail.com>
257
258 * symmisc.c (dump_symtab_1): Print owning compunit for identical
259 blockvectors.
260
8cef59a2
YQ
2612016-04-20 Yao Qi <yao.qi@linaro.org>
262
263 * aarch32-linux-nat.c: Include "arch/arm-linux.h".
264
6885166d
YQ
2652016-04-20 Yao Qi <yao.qi@linaro.org>
266
267 * arm-linux-tdep.h (ARM_CPSR_GREGNUM): Move it to ...
268 * arch/arm-linux.h: ... here.
269
21002a63
JB
2702016-04-19 John Baldwin <jhb@FreeBSD.org>
271
272 * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Change xstateregs
273 to void *.
274 (amd64bsd_store_inferior_registers): Likewise.
275 * fbsd-nat.c (resume_one_thread_cb): Explicitly cast data to ptid_t *.
276 (resume_all_threads_cb): Likewise.
277 * i386bsd-nat.c (i386bsd_supply_gregset): Cast gregs to char *.
278 (i386bsd_collect_gregset): Likewise.
279 (i386bsd_fetch_inferior_registers): Change xstateregs to void *.
280 (i386bsd_store_inferior_registers): Likewise.
281
f39c07ac
JB
2822016-04-19 John Baldwin <jhb@FreeBSD.org>
283
284 * main.c (setup_alternate_signal_stack): Cast to char *.
285
d04c1a59
DE
2862016-04-19 Doug Evans <xdje42@gmail.com>
287
288 * symmisc.c (dump_symtab_1, dump_symtab): Delete arg objfile.
289 All callers updated.
290
a55411b9
DE
2912016-04-19 Doug Evans <xdje42@gmail.com>
292
ee2915c9 293 PR gdb/17911
a55411b9
DE
294 * source.c (is_regular_file): New arg errno_ptr.
295 All callers updated.
296
73e6209f
AA
2972016-04-19 Andreas Arnez <arnez@linux.vnet.ibm.com>
298
299 * linux-record.c (record_linux_system_call): Merge handling for
300 readlink/recv/read and pipe/pipe2.
301
f42bf748
WT
3022016-04-14 Walfred Tedeschi <walfred.tedeschi@intel.com>
303
304 * features/i386/amd64-mpx-linux.xml: Remove AVX feature.
305 * features/i386/amd64-mpx.xml: Remove AVX feature.
306 * features/i386/i386-mpx-linux.xml: Remove AVX feature.
307 * features/i386/i386-mpx.xml: Remove AVX feature.
308 * features/i386/amd64-mpx-linux.c: Regenerate.
309 * features/i386/amd64-mpx.c: Regenerate.
310 * features/i386/i386-mpx-linux.c: Regenerate.
311 * features/i386/i386-mpx.c: Regenerate.
312 * regformats/i386/amd64-mpx-linux.dat: Regenerate.
313 * regformats/i386/amd64-mpx.dat: Regenerate.
314 * regformats/i386/i386-mpx-linux.dat: Regenerate.
315 * regformats/i386/i386-mpx.dat: Regenerate.
316
2b863f51
WT
3172016-04-16 Walfred Tedeschi <walfred.tedeschi@intel.com>
318
319 * amd64-linux-tdep.c (features/i386/amd64-avx-mpx-linux.c):
320 New include.
321 (amd64_linux_core_read_description): Add case for
322 X86_XSTATE_AVX_MPX_MASK.
323 (_initialize_amd64_linux_tdep): Call initialize_tdesc_amd64_avx_mpx_linux.
324 * amd64-linux-tdep.h (tdesc_amd64_avx_mpx_linux): New definition.
325 * amd64-tdep.c (features/i386/amd64-avx-mpx.c): New include.
326 (amd64_target_description): Add case for X86_XSTATE_AVX_MPX_MASK.
327 (_initialize_amd64_tdep): Call initialize_tdesc_amd64_avx_mpx.
328 * common/x86-xstate.h (X86_XSTATE_MPX_MASK): Remove AVX bits.
329 (X86_XSTATE_AVX_MPX_MASK): New case.
330 * features/Makefile (i386/i386-avx-mpx, i386/i386-avx-mpx-linux)
331 (i386/amd64-avx-mpx, i386/amd64-avx-mpx-linux): New rules.
332 (i386/i386-avx-mpx-expedite, i386/i386-avx-mpx-linux-expedite)
333 (i386/amd64-avx-mpx-expedite, i386/amd64-avx-mpx-linux-expedite):
334 New expedites.
335 * i386-linux-tdep.c (features/i386/i386-avx-mpx-linux.c): New
336 include.
337 (i386_linux_core_read_description): Add case
338 X86_XSTATE_AVX_MPX_MASK.
339 (_initialize_i386_linux_tdep): Call
340 initialize_tdesc_i386_avx_mpx_linux.
341 * i386-linux-tdep.h (tdesc_i386_avx_mpx_linux): New include.
342 * i386-tdep.c (features/i386/i386-avx-mpx.c): New include.
343 (i386_target_description): Add case for X86_XSTATE_AVX_MPX_MASK.
344 * x86-linux-nat.c (x86_linux_read_description): Add case for
345 X86_XSTATE_AVX_MPX_MASK.
346 * features/i386/amd64-avx-mpx-linux.xml: New file.
347 * features/i386/i386-avx-mpx-linux.xml: New file.
348 * features/i386/i386-avx-mpx.xml: New file.
349 * features/i386/amd64-avx-mpx.xml: New file.
350 * features/i386/amd64-avx-mpx-linux.c: Generated.
351 * features/i386/amd64-avx-mpx.c: Generated.
352 * features/i386/i386-avx-mpx-linux.c: Generated.
353 * features/i386/i386-avx-mpx.c: Generated.
354 * regformats/i386/amd64-avx-mpx-linux.dat: Generated.
355 * regformats/i386/amd64-avx-mpx.dat: Generated.
356 * regformats/i386/i386-avx-mpx-linux.dat: Generated.
357 * regformats/i386/i386-avx-mpx.dat: Generated.
358
9b30624b
PA
3592016-04-18 Pedro Alves <palves@redhat.com>
360
361 * ptrace.m4 (GDB_AC_PTRACE): Don't run tests in C++ mode.
362 * configure: Regenerate.
363
a22df60a
MG
3642016-04-18 Martin Galvan <martin.galvan@tallertechnologies.com>
365
366 * valops.c (value_addr): For C++ references, set the copied value's
367 enclosing_type as well.
368
5947319e
YQ
3692016-04-18 Yao Qi <yao.qi@linaro.org>
370
371 Revert:
372 2016-04-15 Yao Qi <yao.qi@linaro.org>
373
374 * arm-tdep.c (thumb_stack_frame_destroyed_p): Return zero if
375 PC is far from the end of function.
376
58484447
PA
3772016-04-16 Pedro Alves <palves@redhat.com>
378
379 * ada-exp.y (yydefred): Define as ada_yydefred.
380
2b2798cc
PA
3812016-04-15 Pedro Alves <palves@redhat.com>
382
383 * ada-lang.c (ada_lookup_struct_elt_type): Constify 'type_str' and
384 'name_str' locals.
385
d7abe101
PA
3862016-04-15 Pedro Alves <palves@redhat.com>
387
388 * btrace.c (pt_btrace_insn_flags): Change return type to
389 btrace_insn_flags. Use btrace_insn_flags for local.
390
77770d83
PA
3912016-04-15 Pedro Alves <palves@redhat.com>
392
393 * nat/linux-ptrace.h [__mips__] (GDB_ARCH_IS_TRAP_BRKPT): Also
394 accept TRAP_BRKPT.
395 [__mips__] (GDB_ARCH_IS_TRAP_HWBKPT): Also accept TRAP_HWBKPT.
396
415fa612
YQ
3972016-04-15 Yao Qi <yao.qi@linaro.org>
398
399 * arm-tdep.c (thumb_stack_frame_destroyed_p): Return zero if
400 PC is far from the end of function.
401
7f31862a
PA
4022016-04-14 Pedro Alves <palves@redhat.com>
403
404 * cli/cli-cmds.c (alias_usage_error): New function.
405 (alias_command): Use it.
406 * ctf.c (ctf_save_metadata_header): Inline metadata_fmt local in
407 ctf_save_write_metadata call.
408
aebf07fc
PA
4092016-04-14 Pedro Alves <palves@redhat.com>
410
411 * ada-typeprint.c (print_fixed_point_type): Don't pass float as
412 argument to function expecting LONGEST.
413 * value.c (unpack_long): Add casts to LONGEST.
414
57d1de9c
LM
4152016-04-13 Luis Machado <lgustavo@codesourcery.com>
416
417 * exec.c (exec_file_locate_attach): Guard a couple functions
418 that can throw errors.
419 (exception_print_same): New helper function.
420
3a00c802
PA
4212016-04-13 Pedro Alves <palves@redhat.com>
422
423 PR remote/19840
424 * remote.c (struct remote_state) <last_resume_exec_dir>: New
425 field.
426 (new_remote_state): Default last_resume_exec_dir to EXEC_FORWARD.
427 (remote_open_1): Reset last_resume_exec_dir to EXEC_FORWARD.
428 (remote_resume): Store the last execution direction.
429 (remote_execution_direction): New function.
430 (init_remote_ops): Install it as to_execution_direction target_ops
431 method.
432
0f41b320
PA
4332016-04-12 Pedro Alves <palves@redhat.com>
434
435 * common/common-exceptions.h (GDB_XCPT_TRY): Update comment.
436 [__cplusplus] (GDB_XCPT): Define as GDB_XCPT_TRY.
437
173981bc
PA
4382016-04-12 Pedro Alves <palves@redhat.com>
439
440 * common/common-exceptions.c (struct catcher) <buf>: Now a
441 'jmp_buf' instead of SIGJMP_BUF.
442 (exceptions_state_mc_init): Change return type to 'jmp_buf'.
443 (throw_exception): Use longjmp instead of SIGLONGJMP.
444 * common/common-exceptions.h: Include <setjmp.h> instead of
445 "gdb_setjmp.h".
446 (exceptions_state_mc_init): Change return type to 'jmp_buf'.
447 [GDB_XCPT == GDB_XCPT_SJMP] (TRY): Use setjmp instead of
448 SIGSETJMP.
449 * cp-support.c: Include "gdb_setjmp.h".
450
2afc13ff
PA
4512016-04-12 Pedro Alves <palves@redhat.com>
452
453 * common/common-exceptions.c (exception_rethrow): Remove
454 prepare_to_throw_exception call.
455 * common/common-exceptions.h (prepare_to_throw_exception): Delete
456 declaration.
457 * exceptions.c (prepare_to_throw_exception): Delete.
458
cfd0fbdd
PA
4592016-04-12 Pedro Alves <palves@redhat.com>
460
461 * target.c (target_check_pending_interrupt): Delete.
462 * target.h (struct target_ops) <to_check_pending_interrupt>:
463 Remove method.
464 (target_check_pending_interrupt): Remove declaration.
465 * target-delegates.c: Regenerate.
466
585a46a2
PA
4672016-04-12 Pedro Alves <palves@redhat.com>
468
469 * defs.h: Update comments on SIGINT handling.
470 (immediate_quit): Delete declaration.
471 * event-loop.c (call_async_signal_handler): Delete.
472 * event-loop.h (call_async_signal_handler): Delete declaration.
473 (mark_async_signal_handler): Update comments.
474 (gdb_call_async_signal_handler): Delete declaration.
475 * event-top.c (handle_sigint): Call mark_async_signal_handler
476 instead of gdb_call_async_signal_handler.
477 * exceptions.c (prepare_to_throw_exception): Remove reference to
478 immediate_quit.
479 (exception_fprintf): Remove comments about immediate_quit.
480 * mingw-hdep.c (sigint_event, sigint_handler): Delete.
481 (gdb_select): Don't wait on sigint_event.
482 (gdb_call_async_signal_handler): Delete.
483 (_initialize_mingw_hdep): Delete.
484 * posix-hdep.c (gdb_call_async_signal_handler): Delete.
485 * utils.c (immediate_quit): Delete.
486
048094ac
PA
4872016-04-12 Pedro Alves <palves@redhat.com>
488
489 * defs.h (quit_handler_ftype, quit_handler)
490 (make_cleanup_override_quit_handler, default_quit_handler): New.
491 (QUIT): Adjust comments.
492 * event-top.c (default_quit_handler): New function.
493 (quit_handler): New global.
494 (struct quit_handler_cleanup_data): New.
495 (restore_quit_handler, restore_quit_handler_dtor)
496 (make_cleanup_override_quit_handler): New.
497 (async_request_quit): Call QUIT.
498 * remote.c (struct remote_state) <got_ctrlc_during_io>: New field.
499 (async_sigint_remote_twice_token, async_sigint_remote_token):
500 Delete.
501 (remote_close): Update comments.
502 (remote_start_remote): Don't set immediate_quit. Set starting_up
503 earlier.
504 (remote_serial_quit_handler, remote_unpush_and_throw): New
505 functions.
506 (remote_open_1): Clear got_ctrlc_during_io. Set
507 remote_async_terminal_ours_p unconditionally.
508 (async_initialize_sigint_signal_handler)
509 (async_handle_remote_sigint, async_handle_remote_sigint_twice)
510 (remote_check_pending_interrupt, async_remote_interrupt)
511 (async_remote_interrupt_twice)
512 (async_cleanup_sigint_signal_handler, ofunc)
513 (sync_remote_interrupt, sync_remote_interrupt_twice): Delete.
514 (remote_terminal_inferior, remote_terminal_ours): Remove async
515 checks.
516 (remote_wait_as): Don't install a SIGINT handler in sync mode.
517 (readchar, remote_serial_write): Override the quit handler with
518 remote_serial_quit_handler.
519 (getpkt_or_notif_sane_1): Don't call QUIT.
520 (initialize_remote_ops): Don't install
521 remote_check_pending_interrupt.
522 (_initialize_remote): Don't create async_sigint_remote_token and
523 async_sigint_remote_twice_token.
524 * ser-base.c (ser_base_wait_for): Call QUIT and use
525 interruptible_select.
526 (ser_base_write): Call QUIT.
527 * ser-go32.c (dos_readchar, dos_write): Call QUIT.
528 * ser-unix.c (wait_for): Don't use VTIME. Always take the
529 gdb_select path, but call QUIT and interruptible_select.
530 * utils.c (maybe_quit): Call the current quit handler. Don't call
531 target_check_pending_interrupt.
532 (defaulted_query, prompt_for_continue): Override the quit handler
533 with the default quit handler.
534
a12ac513
PA
5352016-04-12 Pedro Alves <palves@redhat.com>
536
537 * tui/tui-hooks.c (tui_target_has_run): Delete.
538 (tui_about_to_proceed): Delete.
539 (tui_about_to_proceed_observer): Delete.
540 (tui_install_hooks, tui_remove_hooks): Don't install/remove an
541 about_to_proceed observer.
542
5fe96654
PA
5432016-04-12 Pedro Alves <palves@redhat.com>
544
545 * mi/mi-interp.c (mi_new_thread): Put
546 target_terminal_ours_for_output in effect while outputting.
547 (mi_thread_exit): Use target_terminal_ours_for_output instead of
548 target_terminal_ours.
549 (mi_record_changed, mi_inferior_added, mi_inferior_appeared)
550 (mi_inferior_exit, mi_inferior_removed, mi_traceframe_changed)
551 (mi_tsv_created, mi_tsv_deleted, mi_tsv_modified)
552 (mi_breakpoint_created, mi_breakpoint_deleted)
553 (mi_breakpoint_modified, mi_solib_loaded, mi_solib_unloaded)
554 (mi_command_param_changed, mi_memory_changed)
555 (report_initial_inferior): Use target_terminal_ours_for_output
556 instead of target_terminal_ours. Restore terminal settings.
557 * mi/mi-main.c (mi_execute_command): Use
558 target_terminal_ours_for_output instead of target_terminal_ours.
559 Restore terminal settings.
560
651ce16a
PA
5612016-04-12 Pedro Alves <palves@redhat.com>
562
563 PR gdb/19828
564 * gnu-nat.c (inf_validate_task_sc): Don't call
565 target_terminal_ours / target_terminal_inferior around query.
566 * i386-tdep.c (i386_record_lea_modrm, i386_process_record): Don't
567 call target_terminal_ours / target_terminal_inferior around
568 yquery.
569 * linux-record.c (record_linux_system_call): Don't call
570 target_terminal_ours / target_terminal_inferior around yquery.
571 * nto-procfs.c (interrupt_query): Don't call target_terminal_ours
572 / target_terminal_inferior around query.
573 * record-full.c (record_full_check_insn_num): Remove
574 'set_terminal' parameter. Don't call target_terminal_ours /
575 target_terminal_inferior around query.
576 (record_full_message, record_full_registers_change)
577 (record_full_xfer_partial): Adjust.
578 * remote.c (interrupt_query): Don't call target_terminal_ours /
579 target_terminal_inferior around query.
580 * utils.c (defaulted_query): Install cleanup to restore target
581 terminal. Put target_terminal_ours_for_output in effect while
582 defaulted producing, and target_terminal_ours in in effect while
583 handling input.
584 (prompt_for_continue): Install cleanup to restore target terminal.
585 Put target_terminal_ours in in effect while handling input.
586
80dbc9fd
PA
5872016-04-12 Pedro Alves <palves@redhat.com>
588
589 * utils.c (defaulted_query, prompt_for_continue): Free temporary
590 strings with cleanups, instead of xfree.
591
c5ac1540
PA
5922016-04-12 Pedro Alves <palves@redhat.com>
593
594 * utils.c (vwarning, internal_vproblem): Use
595 make_cleanup_restore_target_terminal and
596 target_terminal_ours_for_output.
597
f8e3ef9d
PA
5982016-04-12 Pedro Alves <palves@redhat.com>
599
600 * infcmd.c (post_create_inferior, prepare_one_step): Use
601 target_terminal_ours_for_output instead of target_terminal_ours.
602
481ac8c9
PA
6032016-04-12 Pedro Alves <palves@redhat.com>
604
605 * exceptions.c (print_flush): Use target_terminal_ours_for_output
606 instead of target_terminal_ours, and restore target terminal with
607 a cleanup.
608
c509f1e1
PA
6092016-04-12 Pedro Alves <palves@redhat.com>
610
611 * cp-support.c (gdb_demangle): Use target_terminal_ours_for_output
612 instead of target_terminal_ours, and restore target terminal with
613 a cleanup.
614
99bbb428
PA
6152016-04-12 Pedro Alves <palves@redhat.com>
616
617 * ada-lang.c (type_as_string, type_as_string_and_cleanup): New
618 functions.
619 (ada_lookup_struct_elt_type): Use type_as_string_and_cleanup.
620
75ee5925
PA
6212016-04-12 Pedro Alves <palves@redhat.com>
622
623 * ser-base.c (fd_event): Retry read_prim on EINTR.
624 (do_ser_base_readchar): Retry read_prim on EINTR.
625 (ser_base_write): Retry write_prim on EINTR.
626 * ser-unix.c (ser_unix_read_prim): Don't retry on EINTR here.
627 (ser_unix_write_prim): Remove comment.
628
93692b58
PA
6292016-04-12 Pedro Alves <palves@redhat.com>
630
631 * remote.c (remote_pass_ctrlc): New function.
632 (init_remote_ops): Install it.
633 * target.c (target_terminal_inferior): Pass pending Ctrl-C to the
634 target.
635 (target_pass_ctrlc, default_target_pass_ctrlc): New functions.
636 * target.h (struct target_ops) <to_pass_ctrlc>: New method.
637 (target_pass_ctrlc, default_target_pass_ctrlc): New declarations.
638 * target-delegates.c: Regenerate.
639
e42de8c7
PA
6402016-04-12 Pedro Alves <palves@redhat.com>
641
642 * infcmd.c (interrupt_target_1): Call target_stop is in non-stop
643 mode.
644 * linux-nat.c (linux_nat_interrupt): Delete.
645 (linux_nat_add_target): Don't install linux_nat_interrupt.
646 * remote.c (remote_interrupt_ns): Change return type to void.
647 Throw error if interrupting the target is not supported.
648 (remote_interrupt): Don't call the remote_stop_ns/remote_stop_as.
649
a149683b
PA
6502016-04-12 Pedro Alves <palves@redhat.com>
651
652 * defs.h (clear_quit_flag): Remove declaration.
653 * extension-priv.h (struct extension_language_ops)
654 <clear_quit_flag>: Remove field and update comments.
655 * extension.c (clear_quit_flag): Delete.
656 * guile/guile.c (guile_extension_ops): Adjust.
657 * python/python.c (python_extension_ops): Adjust.
658 (gdbpy_clear_quit_flag): Delete.
659
da1e5f54
PA
6602016-04-12 Pedro Alves <palves@redhat.com>
661
662 * main.c (captured_main): Don't clear the quit flag.
663
0af679c6
PA
6642016-04-12 Pedro Alves <palves@redhat.com>
665
666 * exceptions.c (prepare_to_throw_exception): Don't clear the quit
667 flag.
668
4a81fd47
PA
6692016-04-12 Pedro Alves <palves@redhat.com>
670
671 * event-top.c (command_handler): Don't call clear_quit_flag.
672
abf009ef
PA
6732016-04-12 Pedro Alves <palves@redhat.com>
674
675 * remote-sim.c (gdb_os_poll_quit): Don't call clear_quit_flag.
676 * remote.c (remote_wait_as): Don't call clear_quit_flag.
677
6eddd09a
PA
6782016-04-12 Pedro Alves <palves@redhat.com>
679
680 * python/python.c: Include "ser-event.h".
681 (gdbpy_event_fds): Delete.
682 (gdbpy_serial_event): New.
683 (gdbpy_run_events): Change prototype. Use serial_event_clear
684 instead of serial_readchar.
685 (gdbpy_post_event): Use serial_event_set instead of serial_write.
686 (gdbpy_initialize_events): Use make_serial_event instead of
687 serial_pipe.
688
f0881b37
PA
6892016-04-12 Pedro Alves <palves@redhat.com>
690
691 * defs.h: Extend QUIT-related comments to mention
692 interruptible_select.
693 (quit_serial_event_set, quit_serial_event_clear): Declare.
694 * event-top.c: Include "ser-event.h" and "gdb_select.h".
695 (quit_serial_event): New global.
696 (async_init_signals): Make quit_serial_event.
697 (quit_serial_event_set, quit_serial_event_clear)
698 (quit_serial_event_fd, interruptible_select): New functions.
699 * extension.c (set_quit_flag): Set the quit serial event.
700 (check_quit_flag): Clear the quit serial event.
701 * gdb_select.h (interruptible_select): New declaration.
702 * guile/scm-ports.c (ioscm_input_waiting): Use
703 interruptible_select instead of gdb_select.
704 * top.c (gdb_readline_no_editing): Likewise.
705 * ui-file.c (stdio_file_read): Likewise.
706
5cc3ce8b
PA
7072016-04-12 Pedro Alves <palves@redhat.com>
708
709 * event-loop.c: Include "ser-event.h".
710 (async_signal_handlers_serial_event): New global.
711 (async_signals_handler, initialize_async_signal_handlers): New
712 functions.
713 (mark_async_signal_handler): Set
714 async_signal_handlers_serial_event.
715 (invoke_async_signal_handlers): Clear
716 async_signal_handlers_serial_event.
717 * event-top.c (async_init_signals): Call
718 initialize_async_signal_handlers.
719
00340e1b
PA
7202016-04-12 Pedro Alves <palves@redhat.com>
721
722 * Makefile.in (SFILES): Add ser-event.c.
723 (HFILES_NO_SRCDIR): Add ser-event.h.
724 (COMMON_OBS): Add ser-event.o.
725 * ser-event.c, ser-event.h: New files.
726 * serial.c (new_serial): New function, factored out from
727 (serial_fdopen_ops): ... this.
728 (serial_open_ops_1): New function, factored out from
729 (serial_open): ... this.
730 (serial_open_ops): New function.
731 * serial.h (struct serial): Forware declare.
732 (serial_open_ops): New declaration.
733
5f5219fc
PA
7342016-04-12 Pedro Alves <palves@redhat.com>
735
736 * serial.c (serial_open, serial_fdopen_ops, do_serial_close):
737 Remove references to name.
738 * serial.h (struct serial) <name>: Delete.
739
acd5494d
PA
7402016-04-12 Pedro Alves <palves@redhat.com>
741
742 * remote-fileio.c (sigint_fileio_token, remote_fio_no_longjmp):
743 Delete.
744 (async_remote_fileio_interrupt): Delete.
745 (remote_fileio_ctrl_c_signal_handler): Don't call the async signal
746 handler. Instead just always set the ctrl_c flag.
747 (remote_fileio_reply): Clear remote_fio_ctrl_c_flag before
748 re-enabling the SIGINT handler.
749 (remote_fileio_func_open, remote_fileio_func_close)
750 (remote_fileio_func_read, remote_fileio_func_write)
751 (remote_fileio_func_lseek, remote_fileio_func_rename)
752 (remote_fileio_func_unlink, remote_fileio_func_stat)
753 (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
754 (remote_fileio_func_isatty, remote_fileio_func_system)
755 (remote_fileio_request): Remove references to
756 remote_fio_no_longjmp.
757 (initialize_remote_fileio): Don't create an async signal handler.
758
d2acc30b
PA
7592016-04-12 Pedro Alves <palves@redhat.com>
760
761 * event-top.c (stdin_event_handler): Call QUIT;
762 (prompt_for_continue): Don't run with immediate_quit set.
763
ab33ab13
PA
7642016-04-12 Pedro Alves <palves@redhat.com>
765
766 * tui/tui-io.c (tui_redisplay_readline): Check
767 gdb_in_secondary_prompt_p instead of immediate_quit.
768 * tui/tui.c: Include top.h.
769 (tui_rl_startup_hook): Check gdb_in_secondary_prompt_p instead of
770 immediate_quit.
771
faa4ebe1
PA
7722016-04-12 Pedro Alves <palves@redhat.com>
773
774 * top.c (read_command_file): Inline command_loop here.
775 (command_loop): Delete.
776
3212b858
PA
7772016-04-12 Pedro Alves <palves@redhat.com>
778
779 * top.c: Include "gdb_select.h".
780 (gdb_readline_no_editing): Wait for input with gdb_select instead
781 of blocking in fgetc.
782 (command_line_input): Don't set immediate_quit.
783
4bf7b526
MG
7842016-04-08 Martin Galvan <martin.galvan@tallertechnologies.com>
785
786 * value.c (value_next): Make pass-by-reference parameters const-correct.
787 (value_parent): Likewise.
788 (value_enclosing_type): Likewise.
789 (value_lazy): Likewise.
790 (value_stack): Likewise.
791 (value_embedded_offset): Likewise.
792 (value_pointed_to_offset): Likewise.
793 (value_raw_address): Likewise.
794 (deprecated_value_modifiable): Likewise.
795 (value_free_to_mark): Likewise.
796 (value_release_to_mark): Likewise.
797 (internalvar_name): Likewise.
798 (readjust_indirect_value_type): Likewise.
799 (value_initialized): Likewise.
800 * value.h (value_next): Likewise.
801 (value_parent): Likewise.
802 (value_enclosing_type): Likewise.
803 (value_lazy): Likewise.
804 (value_stack): Likewise.
805 (value_embedded_offset): Likewise.
806 (value_pointed_to_offset): Likewise.
807 (value_raw_address): Likewise.
808 (deprecated_value_modifiable): Likewise.
809 (value_free_to_mark): Likewise.
810 (value_release_to_mark): Likewise.
811 (internalvar_name): Likewise.
812 (readjust_indirect_value_type): Likewise.
813 (value_initialized): Likewise.
814
e390720b
YQ
8152016-04-07 Yao Qi <yao.qi@linaro.org>
816
817 * record-full.c (record_full_insert_breakpoint): Return
818 early if entry on the address is found in
819 record_full_breakpoints.
820
1ccd06e4
YQ
8212016-04-07 Yao Qi <yao.qi@linaro.org>
822
823 * record-full.c (record_full_insert_breakpoint): Set
824 bp_tgt->reqstd_address and bp_tgt->placed_size.
825
ecf2e90c
DB
8262016-04-06 Don Breazeal <donb@codesourcery.com>
827
828 * value.c (value_actual_type): Don't try to get rtti type
829 of the value if it has been optimized out.
830 (value_optimized_out): If a memory access error occurs,
831 just check vaue->optimized_out.
832
14731617
JK
8332016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
834
835 Revert the previous commit adding unknown_v_replies_ok.
836
319cb5d0
JK
8372016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
838
839 * remote.c (struct remote_state): New field unknown_v_replies_ok.
840 (packet_config_support): Read it.
841 (remote_start_remote): Set it.
842
052d2eb2
JK
8432016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
844
845 * remote.c: Revert check-in by a mistake in the previous commit.
846
fef3cb9f
JK
8472016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
848 Pedro Alves <palves@redhat.com>
849
850 * exec.c (exec_file_locate_attach): Print warning for unsupported
851 target_pid_to_exec_file.
852 * symfile-mem.c (add_vsyscall_page): Remove the "file" command
853 message part.
854
2aa08bd1
SM
8552016-04-04 Simon Marchi <simon.marchi@ericsson.com>
856
857 * cli/cli-decode.c (help_cmd_list): Fix function doc and remove
858 trailing spaces.
859
cc63428a
AV
8602016-04-01 Artemiy Volkov <artemiyv@acm.org>
861
862 PR gdb/19820
863 * eval.c (evaluate_subexp_standard): Allow TYPE_CODE_ENUM to be
864 the type of BINOP_REPEAT's second operand.
865
9bb84c9f
YY
8662016-03-31 Yichao Yu <yyc1992@gmail.com>
867
868 PR gdb/19858
869 * jit.c (jit_breakpoint_re_set_internal): Return 0 if we already
870 got the breakpoint at the right address.
871 (jit_inferior_created): New function.
872 (_initialize_jit): Install jit_inferior_created as
873 inferior_created observer.
874
22084c42
MK
8752016-03-31 Marcin Kościelnicki <koriakin@0x04.net>
876
877 * NEWS: Mention support for tracepoints on powerpc*-linux.
878
e7ea3ec7
CU
8792016-03-31 Catalin Udma <catalin.udma@freescale.com>
880
881 PR python/19743
882 * python/python.c (execute_gdb_command): Use console uiout
883 when executing gdb command.
884 * utils.c (restore_ui_out_closure): New structure.
885 (do_restore_ui_out): New function.
886 (make_cleanup_restore_ui_out): Likewise.
887 * utils.h (make_cleanup_restore_ui_out): Declare.
888
f7c38292
PA
8892016-03-31 Pedro Alves <palves@redhat.com>
890
891 * NEWS: Mention that support for "target m32rsdi", "target mips",
892 "target pmon", "target ddb", "target rockhopper", and "target lsi"
893 was removed.
894 * Makefile.in (ALL_TARGET_OBS): Remove remote-m32r-sdi.o and
895 remote-mips.o.
896 (ALLDEPFILES): Remove remote-m32r-sdi.c and remote-mips.c.
897 * configure.tgt: Remove all references to remote-m32r-sdi.o and
898 remote-mips.o.
899 * mips-tdep.c (deprecated_mips_set_processor_regs_hack): Delete
900 function.
901 * mips-tdep.h (deprecated_mips_set_processor_regs_hack): Delete
902 declaration.
903 * remote-m32r-sdi.c, remote-mips.c: Delete files.
904 * symfile.c (generic_load, generic_load): Remove comments.
905
fb3f3d25
YQ
9062016-03-30 Yao Qi <yao.qi@linaro.org>
907
908 * arm-tdep.c (arm_epilogue_frame_this_id): Check 'func' against
909 0 rather than NULL.
910
779aa56f
YQ
9112016-03-30 Yao Qi <yao.qi@linaro.org>
912
913 * arm-tdep.c: (arm_make_epilogue_frame_cache): New function.
914 (arm_epilogue_frame_this_id): New function.
915 (arm_epilogue_frame_prev_register): New function.
916 (arm_epilogue_frame_sniffer): New function.
917 (arm_epilogue_frame_unwind): New.
918 (arm_gdbarch_init): Append unwinder arm_epilogue_frame_unwind.
919
c58b006a
YQ
9202016-03-30 Yao Qi <yao.qi@linaro.org>
921
922 * arm-tdep.c (arm_stack_frame_destroyed_p): Rename it ...
923 (arm_stack_frame_destroyed_p_1): ... here. Don't call
924 arm_pc_is_thumb.
925 (arm_stack_frame_destroyed_p): Call
926 thumb_stack_frame_destroyed_p and
927 arm_stack_frame_destroyed_p_1.
928
4ae6cc19
DE
9292016-03-30 Doug Evans <dje@google.com>
930
931 * python/py-utils.c (host_string_to_python_string): New function.
932 * python/python-internal.h (host_string_to_python_string): Declare it.
933 * python/py-*.c (*): Update all calls to
934 PyString_Decode (str, strlen (str), host_charset (), NULL);
935 to use host_string_to_python_string instead.
936
28170b88
MK
9372016-03-30 Marcin Kościelnicki <koriakin@0x04.net>
938
939 * remote.c (remote_check_symbols): Allocate own buffer for reply.
940
a08b52b5
MF
9412016-03-29 Max Filippov <jcmvbkbc@gmail.com>
942
943 * xtensa-tdep.c (xtensa_frame_cache): Change op1 type to LONGEST.
944 Use safe_read_memory_integer instead of read_memory_integer.
945
c37c0ba6
MK
9462016-03-29 Marcin Kościelnicki <koriakin@0x04.net>
947
948 * NEWS: Mention support for tracepoints on s390*-linux.
949
444bca65
DB
9502016-03-29 Don Breazeal <donb@codesourcery.com>
951
952 * gdb/value.c (value_actual_type): Fix formatting issue.
953
cc651c1c
YQ
9542016-03-23 Yao Qi <yao.qi@linaro.org>
955
956 * gdbarch.sh (software_single_step): Remove comments.
957 * gdbarch.h: Regenerated.
958
c55978a6
YQ
9592016-03-21 Yao Qi <yao.qi@linaro.org>
960
961 * arm-tdep.c (arm_record_media): New.
962 (arm_record_ld_st_reg_offset): Call arm_record_media.
963
479fe002
YQ
9642016-03-21 Yao Qi <yao.qi@linaro.org>
965
966 * arm-linux-tdep.c (arm_canonicalize_syscall): Canonicalize
967 more syscalls.
968
9c3f2234
YQ
9692016-03-18 Yao Qi <yao.qi@linaro.org>
970
971 * sparc-tdep.c (sparc_software_single_step): Make it static.
972 * sparc-tdep.h (sparc_software_single_step): Remove declaration.
973
941319d1
YQ
9742016-03-18 Yao Qi <yao.qi@linaro.org>
975
976 * spu-tdep.c (spu_software_single_step): Throw error when
977 target_read_memory fails.
978
708bf0a1
JK
9792016-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
980
981 * linux-thread-db.c (check_pid_namespace_match): Extend the message.
982
0d5b594f
PA
9832016-03-17 Pedro Alves <palves@redhat.com>
984 Don Breazeal <donb@codesourcery.com>
985
986 PR remote/19496
987 * infcmd.c (notice_new_inferior): Use the 'leave_running' argument
988 instead of checking the 'non_stop' global.
989 * remote.c (remote_add_thread): New parameter 'executing'. Use it
990 to set the new thread's executing state.
991 (remote_notice_new_inferior): Rename parameter 'running' to
992 'executing'. Always set the thread state to THREAD_RUNNING in
993 non-stop mode, and to THREAD_STOPPED in all-stop mode. Pass
994 EXECUTING to remote_add_thread and notice_new_inferior.
995 (remote_update_thread_list): Update to pass executing state, not
996 running state.
997
bba960fc
AA
9982016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
999
1000 * syscalls/s390-linux.xml: Add NUMA syscalls and new syscalls up
1001 to 374.
1002 * syscalls/s390x-linux.xml: Likewise.
1003
5fd0888a
AA
10042016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
1005
1006 * linux-record.c (record_mem_at_reg): New helper function.
1007 (record_linux_system_call): Exploit new helper function where
1008 applicable.
1009
0fc8f115
AA
10102016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
1011
1012 * linux-record.c: Fix whitespace issues; tabify, remove trailing
1013 spaces.
1014
afdab916
AA
10152016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
1016
1017 * linux-record.c (record_linux_system_call): Add missing return
1018 statements to handling of pipe and pipe2 syscalls.
1019
bfeeb14b
DE
10202016-03-16 Doug Evans <dje@google.com>
1021
1022 * xml-tdesc.c (tdesc_start_enum): Fix c++ build.
1023
6b94a855
YQ
10242016-03-16 Yao Qi <yao.qi@linaro.org>
1025
1026 * arm-linux-tdep.c (arm_linux_init_abi): Fix
1027 arm_linux_record_tdep.arg1, arm_linux_record_tdep.arg2 and
1028 arm_linux_record_tdep.arg3. Set arm_linux_record_tdep.arg4,
1029 arm_linux_record_tdep.arg5, arm_linux_record_tdep.arg6, and
1030 arm_linux_record_tdep.arg7.
1031
1cafadb4
DB
10322016-03-15 Keith Seitz <keiths@redhat.com>
1033
1034 PR breakpoints/18303
1035 * cp-namespace.c (cp_lookup_bare_symbol): Change assertion to
1036 look for "::" instead of simply ":".
1037 (cp_search_static_and_baseclasses): Return null_block_symbol for
1038 malformed input.
1039 Remove assertions.
1040 * cp-support.c (cp_find_first_component_aux): Do not return
1041 a prefix length for ':' unless the next character is also ':'.
1042
89c200ed
DE
10432016-03-15 Doug Evans <dje@google.com>
1044
1045 * features/aarch64-core.xml (cpsr_flags): New flags type.
1046 (cpsr): Use it.
1047 * features/aarch64.c: Regenerate.
1048
49b7ae7b
DE
10492016-03-15 Doug Evans <dje@google.com>
1050
1051 * features/i386/32bit-core.xml (i386_eflags): Remove "end" spec.
1052 * features/i386/32bit-sse.xml (i386_eflags): Ditto.
1053 * features/i386/64bit-core.xml (i386_eflags): Ditto.
1054 * features/i386/64bit-sse.xml (i386_eflags): Ditto.
1055 * features/i386/x32-core.xml (i386_eflags): Ditto.
1056
81516450 10572016-03-15 Doug Evans <dje@google.com>
79427bd2 1058 Wei-cheng Wang <cole945@gmail.com>
81516450
DE
1059
1060 Extend flags to support multibit and enum bitfields.
79427bd2 1061 * NEWS: Document new features.
81516450
DE
1062 * c-typeprint.c (c_type_print_varspec_prefix): Handle TYPE_CODE_FLAGS.
1063 (c_type_print_varspec_suffix, c_type_print_base): Ditto.
1064 * gdbtypes.c (arch_flags_type): Don't assume all fields are one bit.
1065 (append_flags_type_field): New function.
1066 (append_flags_type_flag): Call it.
1067 * gdbtypes.h (append_flags_type_field): Declare.
1068 * target-descriptions.c (struct tdesc_type_flag): Delete.
1069 (enum tdesc_type_kind) <TDESC_TYPE_BOOL>: New enum value.
1070 (enum tdesc_type_kind) <TDESC_TYPE_ENUM>: Ditto.
1071 (struct tdesc_type) <u.f>: Delete.
1072 (tdesc_predefined_types): Add "bool".
1073 (tdesc_predefined_type): New function.
1074 (tdesc_gdb_type): Handle TDESC_TYPE_BOOL, TDESC_TYPE_ENUM.
1075 Update TDESC_TYPE_FLAGS support.
1076 (tdesc_free_type): Handle TDESC_TYPE_ENUM. Update TDESC_TYPE_FLAGS.
1077 (tdesc_create_flags): Update.
1078 (tdesc_create_enum): New function.
1079 (tdesc_add_field): Initialize start,end to -1.
1080 (tdesc_add_typed_bitfield): New function.
1081 (tdesc_add_bitfield): Call it.
1082 (tdesc_add_flag): Allow TDESC_TYPE_STRUCT. Update.
1083 (tdesc_add_enum_value): New function.
1084 (maint_print_c_tdesc_cmd): Fold TDESC_TYPE_FLAGS support into
1085 TDESC_TYPE_STRUCT. Handle TDESC_TYPE_ENUM.
1086 * target-descriptions.h (tdesc_create_enum): Declare.
1087 (tdesc_add_typed_bitfield, tdesc_add_enum_value): Declare.
1088 * valprint.c (generic_val_print_enum_1): New function.
1089 (generic_val_print_enum): Call it.
1090 (val_print_type_code_flags): Make static. Handle multibit bitfields
1091 and enum bitfields.
1092 * valprint.h (val_print_type_code_flags): Delete.
1093 * xml-tdesc.c (struct tdesc_parsing_data) <current_type_is_flags>:
1094 Delete. All uses removed.
1095 (tdesc_start_enum): New function.
1096 (tdesc_start_field): Handle multibit and enum bitfields.
1097 (tdesc_start_enum_value): New function.
1098 (enum_value_attributes, enum_children, enum_attributes): New static
1099 globals.
1100 (feature_children): Add "enum".
1101 * features/gdb-target.dtd (enum, evalue): New elements.
1102
54157a25
DE
11032016-03-15 Doug Evans <dje@google.com>
1104
1105 * target-descriptions.c (struct tdesc_type) <u.u.size>: Change type
1106 from LONGEST to int.
1107 (struct tdesc_type) <u.f.size>: Ditto.
1108 (tdesc_set_struct_size): Change type of "size" arg from LONGEST
1109 to int. Add assertion size > 0.
1110 (tdesc_create_flags): Ditto.
1111 * target-descriptions.h (tdesc_set_struct_size): Update.
1112 (tdesc_create_flags): Update.
1113 * xml-tdesc.c (MAX_FIELD_SIZE, MAX_FIELD_BITSIZE): New macros.
1114 (MAX_VECTOR_SIZE): New macro.
1115 (tdesc_start_struct): Catch conversion errors from LONGEST to int.
1116 (tdesc_start_flags, tdesc_start_field, tdesc_start_vector): Ditto.
1117
73b4f516
DE
11182016-03-15 Doug Evans <dje@google.com>
1119
1120 * target-descriptions.c (maint_print_c_tdesc_cmd): Use "type" for
1121 TYPE_CODE_FLAGS instead of "field_type", for consistency.
1122 * features/i386/amd64-avx-linux.c: Regenerate.
1123 * features/i386/amd64-avx.c: Regenerate.
1124 * features/i386/amd64-avx512-linux.c: Regenerate.
1125 * features/i386/amd64-avx512.c: Regenerate.
1126 * features/i386/amd64-linux.c: Regenerate.
1127 * features/i386/amd64-mpx-linux.c: Regenerate.
1128 * features/i386/amd64-mpx.c: Regenerate.
1129 * features/i386/amd64.c: Regenerate.
1130 * features/i386/i386-avx-linux.c: Regenerate.
1131 * features/i386/i386-avx.c: Regenerate.
1132 * features/i386/i386-avx512-linux.c: Regenerate.
1133 * features/i386/i386-avx512.c: Regenerate.
1134 * features/i386/i386-linux.c: Regenerate.
1135 * features/i386/i386-mmx-linux.c: Regenerate.
1136 * features/i386/i386-mmx.c: Regenerate.
1137 * features/i386/i386-mpx-linux.c: Regenerate.
1138 * features/i386/i386-mpx.c: Regenerate.
1139 * features/i386/i386.c: Regenerate.
1140 * features/i386/x32-avx-linux.c: Regenerate.
1141 * features/i386/x32-avx.c: Regenerate.
1142 * features/i386/x32-avx512-linux.c: Regenerate.
1143 * features/i386/x32-avx512.c: Regenerate.
1144 * features/i386/x32-linux.c: Regenerate.
1145 * features/i386/x32.c: Regenerate.
1146
1eb2dbb8
PA
11472016-03-15 Pedro Alves <palves@redhat.com>
1148
1149 PR gdb/19676
1150 * linux-thread-db.c (try_thread_db_load_1): Leave
1151 info->td_ta_thr_iter_p NULL iff debugging a live process and we
1152 have /proc access.
1153 (find_new_threads_once): Assert that we have a non-NULL
1154 info->td_ta_thr_iter_p instead of checking whether the target has
1155 execution.
1156
16b41842
PA
11572016-03-15 Pedro Alves <palves@redhat.com>
1158
1159 PR gdb/19676
1160 * infrun.c (displaced_step_prepare): Also disable displaced
1161 stepping on NOT_SUPPORTED_ERROR.
1162 * linux-tdep.c (linux_displaced_step_location): If reading auxv
1163 fails, throw NOT_SUPPORTED_ERROR instead of generic error.
1164
70104a90
MK
11652016-03-13 Marcin Kościelnicki <koriakin@0x04.net>
1166
1167 * s390-linux-tdep.c (s390_gen_return_address): New function.
1168 (s390_gdbarch_init): Fill gen_return_address hook.
1169
f2403c39
AB
11702016-03-11 Andrew Burgess <andrew.burgess@embecosm.com>
1171
1172 * symmisc.c (maintenance_info_line_tables): New function.
1173 (maintenance_print_one_line_table): New function.
1174 (_initialize_symmisc): Register 'maint info line-table' command.
1175 * NEWS: Mention new command.
1176
c4b3e547
MK
11772016-03-11 Marcin Kościelnicki <koriakin@0x04.net>
1178
1179 * s390-linux-tdep.c (s390_ax_pseudo_register_collect): New function.
1180 (s390_ax_pseudo_register_push_stack): New function.
1181 (s390_gdbarch_init): Fill ax_pseudo_register_collect and
1182 ax_pseudo_register_push_stack hooks.
1183
f2f3ccb9
SM
11842016-03-10 Simon Marchi <simon.marchi@polymtl.ca>
1185
1186 * data-directory/Makefile.in (PYTHON_FILE_LIST): Install
1187 gdb/function/as_string.py.
1188 * python/lib/gdb/function/as_string.py: New file.
1189 * NEWS: Mention the new $_as_string function.
1190
2343b78a
JM
11912016-03-09 Jose E. Marchesi <jose.marchesi@oracle.com>
1192
1193 * target.h: Fix doc string of target_can_use_hardware_watchpoint.
1194
b69d38af
PA
11952016-03-09 Pedro Alves <palves@redhat.com>
1196
1197 * event-top.c (more_to_come): Delete.
1198 (struct readline_input_state): Delete.
1199 (readline_input_state): Delete.
1200 (get_command_line_buffer): New function.
1201 (command_handler): Update comments. Don't handle NULL commands
1202 here. Do not execute commented lines.
1203 (command_line_append_input_line): New function.
1204 (handle_line_of_input): New function, partly based on
1205 command_line_handler and command_line_input.
1206 (command_line_handler): Rewrite.
1207 * event-top.h (command_handler): New declaration.
1208 (command_loop): Defer command execution to command_handler.
1209 (command_line_input): Update comments. Simplify, using struct
1210 buffer and handle_line_of_input.
1211 * top.h (struct buffer): New forward declaration.
1212 (handle_line_of_input): New declaration.
1213
2669cade
PA
12142016-03-09 Pedro Alves <palves@redhat.com>
1215
1216 * event-top.c (command_line_handler): Use xfree + xstrdup instead
1217 of xrealloc + strcpy.
1218 * main.c (captured_main): Use xstrdup instead of xmalloc plus
1219 manual clear.
1220 * top.c (saved_command_line): Rewrite comment.
1221 (saved_command_line_size): Delete.
1222 (command_line_input): Use xfree + xstrdup instead of xrealloc +
1223 strcpy.
1224 * top.h (saved_command_line_size): Delete declaration.
1225
187212b3
PA
12262016-03-09 Pedro Alves <palves@redhat.com>
1227
1228 * event-top.c: Include buffer.h.
1229 (gdb_readline_no_editing_callback): Use struct buffer instead
1230 of xrealloc.
1231
7a3bde34
PA
12322016-03-09 Pedro Alves <palves@redhat.com>
1233
1234 * common/buffer.h (buffer_grow_char): New function.
1235 * top.c: Include buffer.h.
1236 (gdb_readline_no_editing): Rename 'prompt_arg' parameter to
1237 'prompt'. Use struct buffer instead of xrealloc.
1238
c5c136ea
PA
12392016-03-09 Pedro Alves <palves@redhat.com>
1240
1241 * defs.h (gdb_readline): Delete declaration.
1242 * top.c (gdb_readline): Rename to ...
1243 (gdb_readline_no_editing): ... this, and make static.
1244
720d2e96
PA
12452016-03-09 Pedro Alves <palves@redhat.com>
1246
1247 * utils.c (prompt_for_continue): Update comments.
1248
608ff013
PA
12492016-03-09 Pedro Alves <palves@redhat.com>
1250
1251 * event-top.c (async_annotation_suffix): Delete.
1252 (top_level_prompt, command_line_handler): Don't use
1253 'async_annotation_suffix' and simplify.
1254 * event-top.h (async_annotation_suffix): Delete declaration.
1255 (init_main): Remove reference to 'async_annotation_suffix'.
1256
c70061cf
PA
12572016-03-09 Pedro Alves <palves@redhat.com>
1258
1259 * event-top.c (gdb_readline2): Rename to ...
1260 (gdb_readline_no_editing_callback): ... this.
1261 (change_line_handler, stdin_event_handler)
1262 (gdb_setup_readline): Adjust.
1263 * event-top.h (gdb_readline2): Rename to ...
1264 (gdb_readline_no_editing_callback): ... this, and move closer to
1265 other readline-related declarations.
1266 * mi/mi-interp.c (mi_interpreter_resume): Adjust.
1267
8a243832
PA
12682016-03-09 Pedro Alves <palves@redhat.com>
1269
1270 * top.c (window_hook): Delete.
1271 (command_loop): Remove references to window_hook.
1272
cc2c4da8
MK
12732016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
1274
1275 * corefile.c (safe_read_memory_unsigned_integer): New function.
1276 * gdbcore.h (safe_read_memory_unsigned_integer): New prototype.
1277 * rs6000-tdep.c (rs6000_frame_cache): Read backchain as unsigned.
1278
a67914de
MK
12792016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
1280
1281 * rs6000-tdep.c: Add "ax.h" and "ax-gdb.h" includes.
1282 (rs6000_gen_return_address): New function.
1283 (rs6000_gdbarch_init): Wire in the above.
1284
2a2fa07b
MK
12852016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
1286
1287 * rs6000-tdep.c (rs6000_ax_pseudo_register_collect): New function.
1288 (rs6000_gdbarch_init): Wire in the above.
1289
bc0e3f49
AA
12902016-03-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
1291
1292 * s390-linux-tdep.c (s390_analyze_prologue): Ignore BRC and BRCL
1293 instructions that do nothing or are conditional traps.
1294
6d53bec8
AA
12952016-03-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
1296
1297 * s390-linux-tdep.c (s390_prologue_frame_unwind_cache): Store
1298 frame func's PC in info->func before any other failure can occur.
1299 (s390_frame_this_id): Use frame_id_build_unavailable_stack if
1300 info->func has been filled out.
1301
f7990f16
PA
13022016-03-09 Pedro Alves <palves@redhat.com>
1303
1304 * osabi.c (gdb_osabi_names): Avoid spaces in osabi names.
1305
087ccc6a
PA
13062016-03-09 Pedro Alves <palves@redhat.com>
1307
1308 * frv-tdep.c (frv_gdbarch_init): Handle bfd_mach_fr300.
1309
114d7832
PA
13102016-03-09 Pedro Alves <palves@redhat.com>
1311
1312 * cris-tdep.c (cris_gdbarch_init): Return 0 if the info's byte
1313 order is BFD_ENDIAN_BIG or if the cris version is unsupported.
1314
d7a87b5e
PA
13152016-03-09 Pedro Alves <palves@redhat.com>
1316
1317 * doublest.c: Extend comments.
1318 (floatformat_to_doublest, floatformat_from_doublest): Copy the
1319 floatformat's total size, not the host type's size.
1320
b79497cb
PA
13212016-03-09 Pedro Alves <palves@redhat.com>
1322
1323 * doublest.c (floatformat_totalsize_bytes): New function.
1324 (floatformat_from_type): Assert that the type's length is at least
1325 as long as the floatformat's totalsize.
1326 * doublest.h (floatformat_totalsize_bytes): New declaration.
1327 * gdbtypes.c (arch_float_type): Assert that the type's length is
1328 at least as long as the floatformat's totalsize.
1329
aacca8a7
PA
13302016-03-09 Pedro Alves <palves@redhat.com>
1331
1332 * hppa-linux-tdep.c (hppa_linux_init_abi): Set the long double
1333 format to floatformats_ieee_double.
1334
e6c2f47b
PA
13352016-03-07 Pedro Alves <palves@redhat.com>
1336
1337 * mips-tdep.c (mips_gdbarch_init): Check whether info.abfd is NULL
1338 before calling bfd_get_flavour.
1339
cb86f388
DC
13402016-03-05 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
1341
1342 * avr-tdep.c (AVR_LAST_ARG_REGNUM): Define.
1343 (avr_push_dummy_call): Correct last needed argument register.
1344 Write MSB of argument into register and subsequent bytes into
1345 other registers in decreasing order.
1346
f1771dce
YQ
13472016-03-04 Yao Qi <yao.qi@linaro.org>
1348
1349 * arm-tdep.c (arm_record_vdata_transfer_insn): Simplify the
1350 condition check. Record the right D register number.
1351
ca92db2d
YQ
13522016-03-04 Yao Qi <yao.qi@linaro.org>
1353
1354 * arm-tdep.c (arm_record_extension_space): Remove code
1355 printing "Process record does not support".
1356 (arm_record_data_proc_misc_ld_str): Likewise.
1357 (decode_insn): Call arm_record_extension_space if condition
1358 is 0xf. Call arm_record_unsupported_insn if ret isn't
1359 ARM_RECORD_SUCCESS. Use 'ret' instead of 'insn_id' to hold
1360 the value of thumb2_record_decode_insn_handler.
1361
73519cce
SM
13622016-03-04 Simon Marchi <simon.marchi@ericsson.com>
1363
1364 * features/feature_to_c.sh: Print the help when passing no
1365 argument.
1366
650beae3
BH
13672016-03-02 Bernhard Heckel <bernhard.heckel@intel.com>
1368
1369 * MAINTAINERS (Write After Approval): Add Bernhard Heckel.
1370
28586665
BH
13712016-03-02 Bernhard Heckel <bernhard.heckel@intel.com>
1372
1373 * dwarf2read.c (new_symbol_full): Fix detection of gfortran compilers.
1374
f2489477
AA
13752016-03-01 Andreas Arnez <arnez@linux.vnet.ibm.com>
1376
1377 * s390-linux-tdep.c (s390_backchain_frame_unwind_cache): Avoid
1378 exception when attempting to access the inferior's backchain.
1379
d5219069
YQ
13802016-02-29 Yao Qi <yao.qi@linaro.org>
1381
1382 * aarch64-linux-tdep.c (aarch64_canonicalize_syscall): Support
1383 eventfd2, eventfd2, dup3, inotify_init1, fallocate and pipe2.
1384 Return gdb_sys_epoll_create1 instead of gdb_sys_epoll_create
1385 for aarch64_sys_epoll_create1.
1386
253b4d3a
YQ
13872016-02-29 Yao Qi <yao.qi@linaro.org>
1388
1389 * linux-record.h (enum gdb_syscall) <gdb_sys_fallocate>: New.
1390 <gdb_sys_eventfd2, gdb_sys_epoll_create1, gdb_sys_dup3>: New.
1391 <gdb_sys_pipe2, gdb_sys_inotify_init1>: New.
1392 * linux-record.c (record_linux_system_call): Handle them.
1393
38899f16
IB
13942016-02-28 Iain Buclaw <ibuclaw@gdcproject.org>
1395
1396 * d-namespace.c (d_lookup_symbol_imports): Avoid recursive lookups from
1397 cyclic imports.
1398
1ed0c2a4
KS
13992016-02-26 Keith Seitz <keiths@redhat.com>
1400
1401 * rs6000-tdep.c (rs6000_frame_cache): Explicitly cast return result
1402 to avoid invalid conversion from void *.
1403
9fde51ed
YQ
14042016-02-26 Yao Qi <yao.qi@linaro.org>
1405
1406 * arm-tdep.c (arm_record_exreg_ld_st_insn): Set 'single_reg'
1407 per bit 8. Check bit 20 instead of bit 4 for VMOV
1408 instruction. Record D registers for instructions changing
1409 S registers. Change of the order of length and address
1410 in record_buf_mem array.
1411
1f33efec
YQ
14122016-02-26 Yao Qi <yao.qi@linaro.org>
1413
1414 * arm-tdep.c (thumb_record_ld_st_reg_offset): Fix the register
1415 number of Rd.
1416
1547ef64
DE
14172016-02-25 Doug Evans <dje@google.com>
1418
1419 * remote-m32r-sdi.c (recv_char_data): Initialize val to avoid
1420 compiler warning.
1421 (recv_long_data): Ditto.
1422
166616ce
SM
14232016-02-25 Simon Marchi <simon.marchi@ericsson.com>
1424
1425 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault):
1426 Initialize variables.
1427
1eb7c2d8
AT
14282016-02-25 Antoine Tremblay <antoine.tremblay@ericsson.com>
1429
1430 * ax-general.c (ax_reg): Call gdbarch_remote_register_number.
1431 (ax_reg_mask): Likewise.
1432
e7ad2f14
PA
14332016-02-24 Pedro Alves <palves@redhat.com>
1434
1435 * linux-nat.c (save_sigtrap) Delete.
1436 (stop_wait_callback): Call save_stop_reason instead of
1437 save_sigtrap.
1438 (check_stopped_by_breakpoint): Rename to ...
1439 (save_stop_reason): ... this. Bits of save_sigtrap folded here.
1440 Use GDB_ARCH_IS_TRAP_HWBKPT and handle ambiguous
1441 GDB_ARCH_IS_TRAP_BRKPT / GDB_ARCH_IS_TRAP_HWBKPT. Factor out
1442 common code between the USE_SIGTRAP_SIGINFO and
1443 !USE_SIGTRAP_SIGINFO blocks.
1444 (linux_nat_filter_event): Call save_stop_reason instead of
1445 save_sigtrap.
1446 * nat/linux-ptrace.h: Check for both SI_KERNEL and TRAP_BRKPT
1447 si_code for MIPS.
1448 * nat/linux-ptrace.h: Fix "TRAP_HWBPT" typo in x86 table. Add
1449 comments on MIPS behavior.
1450 (GDB_ARCH_IS_TRAP_HWBKPT): Define for all archs.
1451
338435ef
MK
14522016-02-24 Marcin Kościelnicki <koriakin@0x04.net>
1453
1454 * rs6000-tdep.c (rs6000_frame_cache): Initialize frame and pc to 0
1455 to avoid spurious warnings.
1456
bf74e428
GB
14572016-02-24 Gary Benson <gbenson@redhat.com>
1458
1459 * exec.c (exec_file_locate_attach): Do not attempt to
1460 locate main executable locally if not found in sysroot.
1461
62fb310b
JB
14622016-02-24 Joel Brobecker <brobecker@adacore.com>
1463
1464 GDB 7.11 released.
1465
50ae56ec
WW
14662016-02-24 Wei-cheng Wang <cole945@gmail.com>
1467
1468 * rs6000-tdep.c (rs6000_frame_cache, rs6000_frame_this_id): Handle
1469 unavailable PC/SP to build unavailable frame.
1470
cce0e923
DE
14712016-02-23 Doug Evans <dje@google.com>
1472
1473 Extend "skip" command to support -file, -gfile, -function, -rfunction.
1474 * NEWS: Document new features.
1475 * skip.c: #include "fnmatch.h", "gdb_regex.h".
1476 (skiplist_entry) <file>: Renamed from filename.
1477 <function>: Renamed from function_name.
1478 <file_is_glob, function_is_regexp>: New members.
1479 <compiled_function_regexp, compiled_function_regexp_is_valid>:
1480 New members.
1481 (make_skip_entry): New function.
1482 (free_skiplist_entry, free_skiplist_entry_cleanup): New functions.
1483 (make_free_skiplist_entry_cleanup): New function.
1484 (skip_file_command): Update.
1485 (skip_function, skip_function_command): Update.
1486 (compile_skip_regexp): New functions.
1487 (skip_command): Add support for new options.
1488 (skip_info): Update.
1489 (skip_file_p, skip_gfile_p): New functions.
1490 (skip_function_p, skip_rfunction_p): New functions.
1491 (function_name_is_marked_for_skip): Update and simplify.
1492 (_initialize_step_skip): Update.
1493 * symtab.c: #include "fnmatch.h".
1494 (compare_glob_filenames_for_search): New function.
1495 * symtab.h (compare_glob_filenames_for_search): Declare.
1496 * utils.c (count_path_elements): New function.
1497 (strip_leading_path_elements): New function.
1498 * utils.h (count_path_elements): Declare.
1499 (strip_leading_path_elements): Declare.
1500
12545665
SM
15012016-02-23 Simon Marchi <simon.marchi@ericsson.com>
1502
1503 * arm-tdep.c (arm_decode_svc_copro): Remove "to" parameter.
1504 (thumb_process_displaced_insn): Likewise.
1505 (arm_process_displaced_insn): Adjust calls.
1506
c955ae73
YQ
15072016-02-23 Yao Qi <yao.qi@linaro.org>
1508
1509 * aarch64-linux-tdep.c (enum aarch64_syscall) <aarch64_sys_mknod>:
1510 Remove.
1511 <aarch64_sys_mkdir, aarch64_sys_unlink, aarch64_sys_symlink>: Remove.
1512 <aarch64_sys_link, aarch64_sys_rename, aarch64_sys_faccess>: Remove.
1513 <aarch64_sys_mknodat, aarch64_sys_mkdirat>: New.
1514 <aarch64_sys_unlinkat, aarch64_sys_symlinkat>: New.
1515 <aarch64_sys_linkat, aarch64_sys_renameat>: New.
1516 <aarch64_sys_faccessat>: New.
1517 <aarch64_sys_open, aarch64_sys_readlink, aarch64_sys_fstatat>: Remove.
1518 <aarch64_sys_openat, aarch64_sys_readlinkat>: New.
1519 <aarch64_sys_newfstatat>: New.
1520 (UNSUPPORTED_SYSCALL_MAP): New macro.
1521 (aarch64_canonicalize_syscall): Add missing syscalls.
1522
ac46107c
JK
15232016-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1524
1525 * gdb-gdb.py (class TypeFlagsPrinter): Use parentheses for print.
1526
01e57735
YQ
15272016-02-22 Yao Qi <yao.qi@linaro.org>
1528
1529 * arm-tdep.c: Fix code format issues.
1530
30a6a7f0
IB
15312016-02-21 Iain Buclaw <ibuclaw@gdcproject.org>
1532
1533 * d-namespace.c (d_lookup_symbol_imports): Remove argument
1534 'search_parents'. All callers updated.
1535
f79a3bae
MK
15362016-02-18 Marcin Kościelnicki <koriakin@0x04.net>
1537
1538 * s390-linux-tdep.c (s390_guess_tracepoint_registers): New function.
1539 (s390_gdbarch_init): Fill guess_tracepoint_registers hook.
1540
012b3a21
WT
15412016-02-18 Walfred Tedeschi <walfred.tedeschi@intel.com>
1542
1543 * NEWS: Add entry for bound violation.
1544 * amd64-linux-tdep.c (amd64_linux_init_abi_common):
1545 Add handler for segmentation fault.
1546 * gdbarch.sh (handle_segmentation_fault): New.
1547 * gdbarch.c: Regenerate.
1548 * gdbarch.h: Regenerate.
1549 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): New.
1550 (SIG_CODE_BONDARY_FAULT): New define.
1551 (i386_linux_init_abi): Use i386_mpx_bound_violation_handler.
1552 * i386-linux-tdep.h (i386_linux_handle_segmentation_fault) New.
1553 * i386-tdep.c (i386_mpx_enabled): Add as external.
1554 * i386-tdep.c (i386_mpx_enabled): Add as external.
1555 * infrun.c (handle_segmentation_fault): New function.
1556 (print_signal_received_reason): Use handle_segmentation_fault.
1557
5f034a78
MK
15582016-02-18 Marcin Kościelnicki <koriakin@0x04.net>
1559
1560 * arch-utils.c (default_guess_tracepoint_registers): New function.
1561 * arch-utils.h (default_guess_tracepoint_registers): New prototype.
1562 * gdbarch.c: Regenerate.
1563 * gdbarch.h: Regenerate.
1564 * gdbarch.sh: Add guess_tracepoint_registers hook.
1565 * tracefile.c (tracefile_fetch_registers): Use the new gdbarch hook.
1566
88178e82
GB
15672016-02-17 Gary Benson <gbenson@redhat.com>
1568
1569 * exec.c (exec_file_locate_attach): Add missing cleanup.
1570
4041ed77
DB
15712016-02-16 Don Breazeal <donb@codesourcery.com>
1572
1573 PR remote/19496
1574 * remote.c (remove_new_fork_children): Check for pending
1575 fork status in thread_info.suspend.
1576
b442c911
YQ
15772016-02-16 Yao Qi <yao.qi@linaro.org>
1578
1579 * arm-linux-tdep.c (arm_linux_software_single_step): Assign
1580 'old_chain' later.
1581
553cb527
YQ
15822016-02-16 Yao Qi <yao.qi@linaro.org>
1583
1584 * arch/arm-get-next-pcs.h (struct arm_get_next_pcs_ops)
1585 <syscall_next_pc>: Remove argument PC. Callers updated.
1586 * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc):
1587 Remove argument PC. Get pc from regcache_read_pc.
1588 * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Remove
1589 argument PC.
1590
0a0da556
YQ
15912016-02-15 Yao Qi <yao.qi@linaro.org>
1592
1593 * aarch64-tdep.c (aarch64_analyze_prologue): Remove "0x".
1594
01113bc1
YQ
15952016-02-12 Yao Qi <yao.qi@linaro.org>
1596
1597 * arch/arm-linux.c (arm_linux_get_next_pcs_fixup): Calculate
1598 nextpc according to instruction.
1599
ed443b61
YQ
16002016-02-12 Yao Qi <yao.qi@linaro.org>
1601
1602 * arch/arm-get-next-pcs.c (arm_get_next_pcs): Call
1603 self->ops->fixup if it isn't NULL.
1604 * arch/arm-get-next-pcs.h: Include gdb_vecs.h.
1605 (struct arm_get_next_pcs_ops) <fixup>: New field.
1606 * arch/arm-linux.c: Include common-regcache.h and
1607 arch/arm-get-next-pcs.h.
1608 (arm_linux_get_next_pcs_fixup): New function.
1609 * arch/arm-linux.h (arm_linux_get_next_pcs_fixup): Declare.
1610 * arm-linux-tdep.c (arm_linux_get_next_pcs_ops): Initialize
1611 it with arm_linux_get_next_pcs_fixup.
1612 (arm_linux_software_single_step): Move code to
1613 arm_linux_get_next_pcs_fixup.
1614 * arm-tdep.c (arm_get_next_pcs_ops): Initialize it.
1615
d21b5f15
MK
16162016-02-12 Marcin Kościelnicki <koriakin@0x04.net>
1617
1618 * xml-tdesc.c (target_fetch_description_xml) [!HAVE_LIBEXPAT]: Warn
1619 and return NULL.
1620
33b4777c
MM
16212016-02-12 Markus Metzger <markus.t.metzger@intel.com>
1622
1623 * frame.h (skip_tailcall_frames): Update comment.
1624 * frame.c (skip_artificial_frames, skip_tailcall_frames): Return NULL
1625 if only artificial frames are found. Update comment.
1626 (frame_unwind_caller_id): Handle NULL return.
1627 (frame_unwind_caller_pc, frame_unwind_caller_arch): Assert that
1628 skip_artificial_frames does not return NULL.
1629 (frame_pop): Add an error if only tailcall frames are found.
1630 * infcmd.c (finish_command): Move skip_tailcall_frames call into
1631 forward-execution case. Add an error if only tailcall frames are
1632 found.
1633
a038fa3e
MM
16342016-02-12 Markus Metzger <markus.t.metzger@intel.com>
1635
1636 * stack.c (frame_info): Check frame_unwind_caller_id.
1637
2f3ef606
MM
16382016-02-12 Markus Metzger <markus.t.metzger@intel.com>
1639
1640 * frame.h (skip_tailcall_frames): New.
1641 * frame.c (skip_tailcall_frames): New.
1642 (frame_pop): Call skip_tailcall_frames.
1643 * infcmd.c (finish_command): Call skip_tailcall_frames.
1644
e352bf0a
PA
16452016-02-11 Pedro Alves <palves@redhat.com>
1646
1647 * Makefile.in (check-parallel): New rule.
1648
bec2ab5a
SM
16492016-02-11 Simon Marchi <simon.marchi@ericsson.com>
1650
1651 * arm-tdep.c (arm_skip_prologue): Remove unused variables.
1652 (arm_analyze_prologue): Likewise.
1653 (arm_scan_prologue): Likewise.
1654 (arm_m_exception_prev_register): Likewise.
1655 (arm_copy_block_xfer): Likewise.
1656 (thumb2_copy_block_xfer): Likewise.
1657 (arm_decode_miscellaneous): Likewise.
1658 (arm_decode_ld_st_word_ubyte): Likewise.
1659 (arm_decode_svc_copro): Likewise.
1660 (thumb2_decode_svc_copro): Likewise.
1661 (thumb_copy_16bit_ldr_literal): Likewise.
1662 (thumb_copy_pop_pc_16bit): Likewise.
1663 (decode_thumb_32bit_ld_mem_hints): Likewise.
1664 (arm_show_force_mode): Likewise.
1665 (_initialize_arm_tdep): Likewise.
1666 (arm_record_strx): Likewise.
1667 (arm_record_extension_space): Likewise.
1668 (arm_record_data_proc_misc_ld_str): Likewise.
1669 (arm_record_exreg_ld_st_insn): Likewise.
1670 (arm_record_vfp_data_proc_insn): Likewise.
1671 (arm_record_coproc_data_proc): Likewise.
1672 (thumb_record_misc): Likewise.
1673 (thumb_record_ldm_stm_swi): Likewise.
1674 (thumb2_record_ld_st_dual_ex_tbb): Likewise.
1675 (thumb2_record_ld_mem_hints): Likewise.
1676 (thumb2_record_lmul_lmla_div): Likewise.
1677 (thumb2_record_asimd_struct_ld_st): Likewise.
1678 (arm_process_record): Likewise.
1679
2ba163c8
SM
16802016-02-11 Simon Marchi <simon.marchi@ericsson.com>
1681
1682 * arm-tdep.c (arm_displaced_step_copy_insn): Remove.
1683 (ARM displaced stepping support): Remove reference to
1684 arm_displaced_step_copy_insn in comment.
1685 * arm-tdep.h (arm_displaced_step_copy_insn): Remove.
1686 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Remove
1687 reference to arm_displaced_step_copy_insn in comment.
1688
615234c1
SM
16892016-02-11 Simon Marchi <simon.marchi@ericsson.com>
1690
1691 * arm-tdep.c (thumb_copy_unmodified_16bit): Change type of insn.
1692 (thumb_copy_b): Likewise.
1693 (arm_decode_b_bl_ldmstm): Likewise.
1694 (thumb_copy_16bit_ldr_literal): Likewise.
1695 (thumb_copy_pop_pc_16bit): Likewise.
1696
82e9becd
AT
16972016-02-11 Antoine Tremblay <antoine.tremblay@ericsson.com>
1698
1699 * tracepoint.c (encode_actions_1): Use target_gdbarch () rather
1700 than loc->gdbarch.
1701
5ac87a99
MK
17022016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1703
1704 * tracefile-tfile.c (trace_tdesc): New static variable.
1705 (tfile_open): Clear trace_tdesc, call target_find_description.
1706 (tfile_interp_line): Recognize tdesc lines.
1707 (tfile_close): Clear trace_tdesc.
1708 (tfile_xfer_partial_features): New function.
1709 (tfile_xfer_partial): Call tfile_xfer_partial_features.
1710 (tfile_append_tdesc_line): New function.
1711
18d3cec5
MK
17122016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1713
1714 * ctf.c (ctf_write_tdesc): New function.
1715 (ctf_write_ops): Wire in ctf_write_tdesc.
1716 * tracefile-tfile.c (tfile_write_tdesc): New function.
1717 (tfile_write_ops): Wire in tfile_write_tdesc.
1718 * tracefile.c (trace_save): Call write_tdesc method.
1719 * tracefile.h (struct trace_file_write_ops): Add write_tdesc method.
1720 * xml-tdesc.c (target_fetch_description_xml): New function.
1721 * xml-tdesc.h: Add target_fetch_description_xml prototype.
1722
550dc4e2
SM
17232016-02-10 Simon Marchi <simon.marchi@ericsson.com>
1724
1725 * arm-tdep.c (arm_copy_extra_ld_st): Fix "unpriveleged" typo.
1726 (arm_decode_dp_misc): Likewise.
1727
62e5fd57
MK
17282016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1729
1730 * amd64-tdep.c (amd64_ax_pseudo_register_collect): New function.
1731 (amd64_init_abi): Fill ax_pseudo_register_collect hook.
1732 * gdb/i386-tdep.c (i386_pseudo_register_read_into_value): Remove
1733 misleading comment.
1734 (i386_pseudo_register_write): Ditto.
1735 (i386_ax_pseudo_register_collect): New function.
1736 (i386_gdbarch_init): Fill ax_pseudo_register_collect hook.
1737 * i386-tdep.h: Add i386_ax_pseudo_register_collect prototype.
1738
e909d859
MK
17392016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1740
1741 * tracefile-tfile.c (tfile_fetch_registers): Use g packet order
1742 instead of gdb order.
1743
473b99e5
MK
17442016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1745
1746 * tracefile-tfile.c (tfile_fetch_registers): Fix off-by-one in bounds
1747 check.
1748
1233c0ba
JB
17492016-02-10 Joel Brobecker <brobecker@adacore.com>
1750
1751 * NEWS: Create a new section for the next release branch.
1752 Rename the section of the current branch, now that it has
1753 been cut.
1754
d1dc0942
JB
17552016-02-10 Joel Brobecker <brobecker@adacore.com>
1756
1757 GDB 7.11 branch created (9ef9e6a6a0dd8f948708cb67c9afcfd0be40cb0a):
1758 * version.in: Bump version to 7.11.50.DATE-git.
1759
9ef9e6a6
KS
17602016-02-09 Keith Seitz <keiths@redhat.com>
1761
1762 PR breakpoints/19546
1763 * breakpoint.c (breakpoint_event_location_empty_p): New function.
1764 (update_breakpoints_after_exec, bkpt_re_set): Use this new function
1765 instead of event_location_empty_p.
1766
39a67dc4
KS
17672016-02-09 Keith Seitz <keiths@redhat.com>
1768
1769 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Use
1770 string_to_event_location_basic instead of string_to_event_location.
1771
a96e36da
KS
17722016-02-09 Keith Seitz <keiths@redhat.com>
1773
1774 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Skip
1775 leading whitespace and use string_to_event_location_basic instead
1776 of new_linespec_location.
1777
9f61929f
KS
17782016-02-09 Keith Seitz <keiths@redhat.com>
1779
1780 PR python/19506
1781 * python/py-breakpoint.c (bppy_init): Use
1782 string_to_event_location_basic instead of new_linespec_location.
1783
eeb1af43
KS
17842016-02-09 Keith Seitz <keiths@redhat.com>
1785
1786 * location.c (string_to_explicit_location): Note that "-p" is
1787 reserved for probe locations and return NULL for any input
1788 that starts with that.
1789 (string_to_event_location): Move "legacy" linespec code to ...
1790 (string_to_event_location_basic): ... here.
1791 * location.h (string_to_event_location): Update comment.
1792 (string_to_event_location_basic): New function.
1793
1e94266c
SM
17942016-02-09 Simon Marchi <simon.marchi@ericsson.com>
1795
1796 * configure.ac: Use AC_CONFIG_FILES instead of passing arguments
1797 to AC_OUTPUT. Remove "exit 0" at the end.
1798 * configure: Regenerate.
1799
2a7f3dff
PA
18002016-02-09 Pedro Alves <palves@redhat.com>
1801
1802 PR breakpoints/19548
1803 * breakpoint.c (create_overlay_event_breakpoint): Don't update
1804 global location list here.
1805 (create_longjmp_master_breakpoint)
1806 (create_std_terminate_master_breakpoint)
1807 (create_exception_master_breakpoint, create_jit_event_breakpoint)
1808 (update_breakpoint_locations):
1809 (breakpoint_re_set): Update global location list after all
1810 breakpoints are re-set.
1811
54887903
SM
18122016-02-08 Simon Marchi <simon.marchi@ericsson.com>
1813
1814 * remote.c (remote_register_number_and_offset): Remove unused
1815 variable(s).
1816 (remote_thread_always_alive): Likewise.
1817 (remote_update_thread_list): Likewise.
1818 (process_initial_stop_replies): Likewise.
1819 (remote_start_remote): Likewise.
1820 (remote_check_symbols): Likewise.
1821 (discard_pending_stop_replies): Likewise.
1822 (process_stop_reply): Likewise.
1823 (putpkt_binary): Likewise.
1824 (getpkt): Likewise.
1825 (remote_add_target_side_condition): Likewise.
1826 (remote_insert_breakpoint): Likewise.
1827 (remote_supports_stopped_by_sw_breakpoint): Likewise.
1828 (remote_supports_stopped_by_hw_breakpoint): Likewise.
1829 (remote_xfer_partial): Likewise.
1830 (remote_read_btrace): Likewise.
1831 (remote_async_serial_handler): Likewise.
1832 (remote_thread_events): Likewise.
1833 (_initialize_remote): Likewise.
1834
30914ca8
SM
18352016-02-07 Simon Marchi <simon.marchi@polymtl.ca>
1836
1837 * varobj.h (varobj_delete): Remove dellist parameter, update and
1838 move documentation here.
1839 * varobj.c (struct cpstack, cppush, cppop): Remove.
1840 (delete_variable): Remove resultp (first) parameter.
1841 (delete_variable_1): Likewise.
1842 (varobj_delete): Remove dellist parameter and unused code.
1843 (update_dynamic_varobj_children): Adjust varobj_delete call.
1844 (update_type_if_necessary): Likewise.
1845 (varobj_set_visualizer): Likewise.
1846 (varobj_update): Likewise.
1847 (value_of_root): Likewise.
1848 (varobj_invalidate_iter): Likewise.
1849 * mi/mi-cmd-var.c (mi_cmd_var_delete): Likewise.
1850
e42e5352
YQ
18512016-02-04 Yao Qi <yao.qi@linaro.org>
1852
1853 * remote.c (remote_wait_as): Set rs->waiting_for_stop_reply to
1854 0 before handling 'F' and set it back afterwards.
1855
6456a18b
SM
18562016-02-02 Simon Marchi <simon.marchi@ericsson.com>
1857
1858 * ui-out.c (MAX_UI_OUT_LEVELS): Remove.
1859
3f2f6cb5
WT
18602016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1861
1862 * amd64-linux-siginfo.c (nat_siginfo_t, nat_sigval_t, nat_timeval):
1863 New types.
1864 (compat_siginfo): New bound fields added.
1865 (compat_x32_siginfo): New field added.
1866 (cpt_si_addr_lsb): New define.
1867 (compat_siginfo_from_siginfo): Use nat_siginfo.
1868 (siginfo_from_compat_siginfo): Use nat_siginfo.
1869 (compat_x32_siginfo_from_siginfo): Likewise.
1870 (siginfo_from_compat_x32_siginfo): Likewise.
1871
96b5c49f
WT
18722016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1873
1874 * linux-tdep.c (linux_get_siginfo_type): Add the _addr_bnd
1875 structure to the siginfo if extra_fields contains
1876 LINUX_SIGINFO_FIELD_ADDR_BND.
1877
190b495d
WT
18782016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1879
1880 * linux-tdep.h (linux_get_siginfo_type_with_fields): Make extern.
1881 * linux-tdep.c (linux_get_siginfo_type_with_fields): Make extern.
1882 * i386-linux-tdep.h (x86_linux_get_siginfo_type): New
1883 function.
1884 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Add
1885 x86_linux_get_siginfo_type for the amd64 abi.
1886 * i386-linux-tdep.c (x86_linux_get_siginfo_type): New
1887 function.
1888 (i386_linux_init_abi): Add new function at the i386 ABI
1889 initialization.
1890
43564574
WT
18912016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1892
1893 * linux-tdep.h (linux_siginfo_extra_field_values): New enum values.
1894 (linux_siginfo_extra_fields): New enum type.
1895 * linux-tdep.c (linux_get_siginfo_type_with_fields): New function.
1896 (linux_get_siginfo_type): Use new function.
1897
93813b37
WT
18982016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1899
1900 * nat/amd64-linux-siginfo.c: New file.
1901 * nat/amd64-linux-siginfo.h: New file.
1902 * Makefile.in (HFILES_NO_SRCDIR): Add nat/amd64-linux-siginfo.h.
1903 (amd64-linux-siginfo.o): New rule.
1904 * config/i386/linux64.mh (NATDEPFILES): Add amd64-linux-siginfo.o.
1905 * amd64-linux-nat.c (nat/amd64-linux-siginfo.h): New include.
1906 (compat_siginfo_from_siginfo, siginfo_from_compat_siginfo)
1907 (compat_x32_siginfo_from_siginfo, siginfo_from_compat_x32_siginfo)
1908 (compat_timeval, compat_sigval, compat_x32_clock, cpt_si_pid)
1909 (cpt_si_uid, cpt_si_timerid, cpt_si_overrun, cpt_si_status)
1910 (cpt_si_utime, cpt_si_stime, cpt_si_ptr, cpt_si_addr, cpt_si_band)
1911 (cpt_si_fd, si_timerid, si_overrun): Move to nat/amd64-linux-siginfo.c.
1912
5fdf6324
AB
19132016-02-01 Andrew Burgess <andrew.burgess@embecosm.com>
1914
1915 * value.c (max_value_size): New variable.
1916 (MIN_VALUE_FOR_MAX_VALUE_SIZE): New define.
1917 (set_max_value_size): New function.
1918 (show_max_value_size): New function.
1919 (check_type_length_before_alloc): New function.
1920 (allocate_value_contents): Call check_type_length_before_alloc.
1921 (set_value_enclosing_type): Likewise.
1922 (_initialize_values): Add set/show handler for max-value-size.
1923 * NEWS: Mention new set/show command.
1924
5fa13070
SM
19252016-01-31 Simon Marchi <simon.marchi@polymtl.ca>
1926
1927 * varobj.h (struct varobj): Fix typos in comments.
1928 (struct lang_varobj_ops): Likewise.
1929 * varobj.c (VAROBJ_TABLE_SIZE): Likewise.
1930 (varobj_create): Move misplaced comment.
1931
a2e3e93f
SM
19322016-01-29 Simon Marchi <simon.marchi@ericsson.com>
1933
1934 * aarch64-tdep.c (aarch64_record_asimd_load_store): Add braces
1935 to for include additional lines.
1936 * xcoffread.c (scan_xcoff_symtab): Remove unnecessary braces.
1937
56e374a6
SM
19382016-01-28 Simon Marchi <simon.marchi@ericsson.com>
1939
1940 * gnulib/import/Makefile.am: Regenerate.
1941 * gnulib/import/Makefile.in: Regenerate.
1942 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
1943 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add rawmemchr.
1944
8424cc97
SM
19452016-01-28 Simon Marchi <simon.marchi@ericsson.com>
1946
1947 * remote.c (skip_to_semicolon): Remove.
1948 (remote_parse_stop_reply): Use strchrnul instead of
1949 skip_to_semicolon.
1950 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
1951 strchrnul.
1952 * gnulib/aclocal.m4: Regenerate.
1953 * gnulib/config.in: Regenerate.
1954 * gnulib/configure: Regenerate.
1955 * gnulib/import/Makefile.am: Regenerate.
1956 * gnulib/import/Makefile.in: Regenerate.
1957 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
1958 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
1959 * gnulib/import/m4/rawmemchr.m4: New file.
1960 * gnulib/import/m4/strchrnul.m4: New file.
1961 * gnulib/import/rawmemchr.c: New file.
1962 * gnulib/import/rawmemchr.valgrind: New file.
1963 * gnulib/import/strchrnul.c: New file.
1964 * gnulib/import/strchrnul.valgrind: New file.
1965
4a6a1ed4
YQ
19662016-01-28 Yao Qi <yao.qi@linaro.org>
1967
1968 * breakpoint.c (build_target_command_list): Don't call continue
1969 if aexpr is NULL.
1970 (build_target_condition_list): Likewise.
1971
94715c17
KB
19722016-01-27 Kevin Buettner <kevinb@redhat.com>
1973
1974 * rx-tdep.c (rx_push_dummy_call): Treat scalars larger than 8
1975 bytes as aggregates.
1976
c07af0ab
JB
19772016-01-27 Joel Brobecker <brobecker@adacore.com>
1978
1979 * MAINTAINERS (Responsible Maintainers): Add Keith Seitz as
1980 Linespec Maintainers.
1981
41548caa
SM
19822016-01-26 Simon Marchi <simon.marchi@ericsson.com>
1983
1984 * common/common-utils.c (skip_spaces): Fix comment.
1985 (skip_to_space_const): Likewise.
1986
4d18591b
YQ
19872016-01-25 Yao Qi <yao.qi@linaro.org>
1988
1989 * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
1990 Remove argument pc. Get pc by regcache_read_pc. Callers updated.
1991 (arm_deal_with_atomic_sequence_raw): Likewise.
1992 (thumb_get_next_pcs_raw): Likewise.
1993 (arm_get_next_pcs_raw): Likewise.
1994 (arm_get_next_pcs): Remove argument pc. Callers updated.
1995 * arch/arm-get-next-pcs.h (arm_get_next_pcs): Update declaration.
1996
a579cd9a
MW
19972016-01-25 Mark Wielaard <mjw@redhat.com>
1998
1999 * ada-lang.c (ada_evaluate_subexp): Add proper else block.
2000 * c-typeprint.c (c_type_print_base): Fix misleading indentation of
2001 if statement.
2002 * inflow.c (child_terminal_ours_1): Fix misleading indentation of
2003 statement block by introducing an else.
2004 * linux-record.c (record_linux_sockaddr): Fix misleading indentation
2005 of return statements.
2006 (record_linux_msghdr): Likewise.
2007
a2077e25
PA
20082016-01-25 Pedro Alves <palves@redhat.com>
2009
2010 PR threads/19461
2011 * infrun.c (handle_inferior_event_1) <fork/vfork>: Update
2012 parent/child running states.
2013
1d2736d4
PA
20142016-01-25 Pedro Alves <palves@redhat.com>
2015
2016 PR gdb/19494
2017 * linux-nat.c (kill_one_lwp): New, factored out from ...
2018 (kill_callback): ... this.
2019 (kill_wait_callback): New, factored out from ...
2020 (kill_wait_one_lwp): ... this.
2021 (kill_unfollowed_fork_children): New function.
2022 (linux_nat_kill): Use it.
2023
b2bae2f7
JB
20242016-01-22 John Baldwin <jhb@FreeBSD.org>
2025
2026 * fbsd-nat.c (fbsd_pid_to_str): Adjust string format.
2027
d86feca3
YQ
20282016-01-22 Yao Qi <yao.qi@linaro.org>
2029
2030 * arm-linux-nat.c (fetch_fpregs): Call perror_with_name
2031 instead of warning.
2032 (store_fpregs, fetch_regs, store_regs): Likewise.
2033 (fetch_wmmx_regs, store_wmmx_regs): Likewise.
2034 (fetch_vfp_regs, store_vfp_regs): Likewise.
2035
b35a8b2f
DE
20362016-01-21 Doug Evans <dje@google.com>
2037
2038 * breakpoint.c (init_breakpoint_sal): Add comment.
2039
f906b857
MK
20402016-01-21 Marcin Kościelnicki <koriakin@0x04.net>
2041
2042 * ax-gdb.c (gen_traced_pop): Use gen_fetch for string collection.
2043
4a099de2
AB
20442016-01-21 Andrew Burgess <andrew.burgess@embecosm.com>
2045
2046 * disasm.c (maybe_add_dis_line_entry): Rename to...
2047 (add_dis_line_entry): ...this, and update header comment.
2048 (do_mixed_source_and_assembly): Now use add_dis_line_entry.
2049
a994041d
PA
20502016-01-21 Pedro Alves <palves@redhat.com>
2051
2052 * Makefile.in (COMPILER_CFLAGS): New.
2053 (CXXFLAGS): Get it from configure.
2054 (INTERNAL_CFLAGS_BASE, INTERNAL_LDFLAGS): Use COMPILER_CFLAGS
2055 instead of CFLAGS.
2056 * build-with-cxx.m4 (GDB_AC_BUILD_WITH_CXX): Set and AC_SUBST
2057 COMPILER_CFLAGS.
2058 * configure: Regenerate.
2059
305e13e6
JB
20602016-01-21 Joel Brobecker <brobecker@adacore.com>
2061
2062 * location.h (new_address_location): Add new parameters
2063 "addr_string" and "addr_string_len".
2064 (get_address_string_location): Add declaration.
2065 * location.c (new_address_location): Add new parameters
2066 "addr_string" and "addr_string_len". If not NULL, store
2067 a copy of the addr_string in the new location as well.
2068 (get_address_string_location): New function.
2069 (string_to_event_location): Update call to new_address_location.
2070 * linespec.c (event_location_to_sals) <ADDRESS_LOCATION>:
2071 Save the event location in the parser's state before
2072 passing it to convert_address_location_to_sals.
2073 * breakpoint.c (create_thread_event_breakpoint): Update call
2074 to new_address_location.
2075 (init_breakpoint_sal): Get the event location's string, if any,
2076 and use it to update call to new_address_location.
2077 * python/py-finishbreakpoint.c (bpfinishpy_init):
2078 Update call to new_address_location.
2079 * spu-tdep.c (spu_catch_start): Likewise.
2080
2081 * config/djgpp/fnchange.lst: Add entries for
2082 gdb/testsuite/gdb.base/break-fun-addr1.c and
2083 gdb/testsuite/gdb.base/break-fun-addr2.c.
2084
f7a6a40d
YQ
20852016-01-21 Yao Qi <yao.qi@linaro.org>
2086
2087 * arm-linux-tdep.c (arm_linux_sigreturn_next_pc): Add parameter
2088 is_thumb and set it according to CPSR saved on the stack.
2089 (arm_linux_get_next_pcs_syscall_next_pc): Pass is_thumb to
2090 arm_linux_sigreturn_next_pc.
2091
5f5dfff6
SM
20922016-01-20 Simon Marchi <simon.marchi@polymtl.ca>
2093
2094 * python/lib/gdb/printing.py (FlagEnumerationPrinter.__call__):
2095 Fix enumerators sort key function.
2096
be56871e
JB
20972016-01-20 Joel Brobecker <brobecker@adacore.com>
2098
b12e5614 2099 * printcmd.c (print_scalar_formatted): Move binary operator from
be56871e
JB
2100 end of line to beginning of next line. Adjust formatting
2101 accordingly.
2102
f2feec98
JB
21032016-01-19 John Baldwin <jhb@FreeBSD.org>
2104
2105 * fbsd-nat.c (fbsd_pid_to_exec_file): Use new "buflen" instead of
2106 "len" with sysctl.
2107
20a0aab3
JB
21082016-01-19 John Baldwin <jhb@FreeBSD.org>
2109
2110 * fbsd-tdep.c (find_stop_signal): Remove.
2111 (struct fbsd_collect_regset_section_cb) <lwp>: New field.
2112 <stop_signal>: New field.
2113 <abort_iteration>: New field.
2114 (fbsd_collect_regset_section_cb): Use new fields.
2115 (fbsd_collect_thread_registers): New function.
2116 (struct fbsd_corefile_thread_data): New structure.
2117 (fbsd_corefile_thread): New function.
2118 (fbsd_make_corefile_notes): Use new function to dump notes for each
2119 non-exited thread in a process.
2120
6e9567fe
JB
21212016-01-19 John Baldwin <jhb@FreeBSD.org>
2122
2123 * configure.ac: Check for support for LWP names on FreeBSD.
2124 * fbsd-nat.c [PT_LWPINFO] New variable debug_fbsd_lwp.
2125 [TDP_RFPPWAIT || HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME]
2126 (fbsd_fetch_kinfo_proc): Move function earlier.
2127 [PT_LWPINFO] (fbsd_thread_alive): New function.
2128 [PT_LWPINFO] (fbsd_pid_to_str): New function.
2129 [HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME] (fbsd_thread_name): New function.
2130 [PT_LWP_EVENTS] (fbsd_enable_lwp_events): New function.
2131 [PT_LWPINFO] (fbsd_add_threads): New function.
2132 [PT_LWPINFO] (fbsd_update_thread_list): New function.
2133 [PT_LWPINFO] New variable super_resume.
2134 [PT_LWPINFO] (resume_one_thread_cb): New function.
2135 [PT_LWPINFO] (resume_all_threads_cb): New function.
2136 [PT_LWPINFO] (fbsd_resume): New function.
2137 (fbsd_remember_child): Save full ptid instead of plain pid.
2138 (fbsd_is_child_pending): Return ptid of saved child process.
2139 (fbsd_wait): Include lwp in returned ptid and switch to LWP ptid on
2140 first stop.
2141 [PT_LWP_EVENTS] Handle LWP events.
2142 [TDP_RFPPWAIT] Include LWP in child ptid.
2143 (fbsd_post_startup_inferior) [PT_LWP_EVENTS]: Enable LWP events.
2144 (fbsd_post_attach) [PT_LWP_EVENTS]: Enable LWP events.
2145 Add threads for existing processes.
2146 (fbsd_nat_add_target) [PT_LWPINFO]: Set "to_thread_alive" to
2147 "fbsd_thread_alive".
2148 Set "to_pid_to_str" to "fbsd_pid_to_str".
2149 [HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME]: Set "to_thread_name" to
2150 "fbsd_thread_name".
2151 [PT_LWPINFO]: Set "to_update_thread_list" to "fbsd_update_thread_list".
2152 Set "to_has_thread_control" to "tc_schedlock".
2153 Set "to_resume" to "fbsd_resume".
2154 (_initialize_fbsd_nat): New function.
2155 * configure: Regenerate.
2156 * config.in: Regenerate.
2157
94309df7
JB
21582016-01-19 John Baldwin <jhb@FreeBSD.org>
2159
2160 * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
2161 get_ptrace_pid.
2162 (amd64bsd_store_inferior_registers): Use get_ptrace_pid.
2163 (amd64bsd_dr_get): Use get_ptrace_pid.
2164 (amd64bsd_dr_set): Use get_ptrace_pid.
2165 * i386bsd-nat.c (i386bsd_fetch_inferior_registers): Use get_ptrace_pid.
2166 (i386bsd_store_inferior_registers): Use get_ptrace_pid.
2167 (i386bsd_dr_get): Use get_ptrace_pid.
2168 (i386bsd_dr_set): Use get_ptrace_pid.
2169 * inf-ptrace.c (get_ptrace_pid): Export.
2170 * inf-ptrace.h (get_ptrace_pid): Declare.
2171 * ppcfbsd-nat.c (ppcfbsd_fetch_inferior_registers): Use lwp id.
2172 (ppcfbsd_store_inferior_registers): Use lwp id.
2173
79117428
JB
21742016-01-19 John Baldwin <jhb@FreeBSD.org>
2175
2176 * fbsd_tdep.c (fbsd_core_pid_to_str): New function.
2177 (fbsd_core_thread_name): New function.
2178 (fbsd_init_abi): Add "core_pid_to_str" gdbarch method.
2179 Add "core_thread_name" gdbarch method.
2180
4dfc5dbc
JB
21812016-01-19 John Baldwin <jhb@FreeBSD.org>
2182
2183 * corelow.c (core_thread_name): New function.
2184 (init_core_ops): Use "core_thread_name" for the "to_thread_name"
2185 target op.
2186 * gdbarch.sh (core_thread_name): New gdbarch callback.
2187 * gdbarch.h: Re-generate.
2188 * gdbarch.c: Re-generate.
2189
10e3ed90
SM
21902016-01-19 Simon Marchi <simon.marchi@polymtl.ca>
2191
2192 * python/lib/gdb/printing.py (_EnumInstance.to_string): Explicitly
2193 convert gdb.Value to integer type using int().
2194
a6e69c1f
JB
21952016-01-19 John Baldwin <jhb@FreeBSD.org>
2196
2197 * configure.ac: Include <sys/types.h when checking for "r_fs" in
2198 "struct reg".
2199 * configure: Regenerate.
2200
37e42b4f
PA
22012016-01-19 Pedro Alves <palves@redhat.com>
2202
2203 * ax-gdb.c (agent_command_1): Adjust call to decode_line_full.
2204 * break-catch-throw.c (re_set_exception_catchpoint): Pass the
2205 current program space down to linespec decoding and breakpoint
2206 location updating.
2207 * breakpoint.c (parse_breakpoint_sals): Adjust calls to
2208 decode_line_full.
2209 (until_break_command): Adjust calls to decode_line_1.
2210 (base_breakpoint_decode_location, bkpt_decode_location): Add
2211 'search_pspace' parameter. Pass it along.
2212 (bkpt_probe_create_sals_from_location): Adjust calls to
2213 parse_probes.
2214 (tracepoint_decode_location, tracepoint_probe_decode_location)
2215 (strace_marker_decode_location): Add 'search_pspace' parameter.
2216 Pass it along.
2217 (all_locations_are_pending): Rewrite to take a breakpoint and
2218 program space as arguments instead.
2219 (hoist_existing_locations): New function.
2220 (update_breakpoint_locations): Add 'filter_pspace' parameter. Use
2221 hoist_existing_locations instead of always removing all locations,
2222 and adjust to all_locations_are_pending change.
2223 (location_to_sals): Add 'search_pspace' parameter. Pass it along.
2224 Don't disable the breakpoint if there are other locations in
2225 another program space.
2226 (breakpoint_re_set_default): Adjust to pass down the current
2227 program space as filter program space.
2228 (decode_location_default): Add 'search_pspace' parameter and pass
2229 it along.
2230 (prepare_re_set_context): Don't switch program space here.
2231 (breakpoint_re_set): Use save_current_space_and_thread instead of
2232 save_current_program_space.
2233 * breakpoint.h (struct breakpoint_ops) <decode_location>: Add
2234 'search_pspace' parameter.
2235 (update_breakpoint_locations): Add 'filter_pspace' parameter.
2236 * cli/cli-cmds.c (edit_command, list_command): Adjust calls to
2237 decode_line_1.
2238 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the current
2239 program space as filter program space.
2240 * linespec.c (struct linespec_state) <search_pspace>: New field.
2241 (create_sals_line_offset, convert_explicit_location_to_sals)
2242 (parse_linespec): Pass the search program space down.
2243 (linespec_state_constructor): Add 'search_pspace' parameter.
2244 Store it.
2245 (linespec_parser_new): Add 'search_pspace' parameter and pass it
2246 along.
2247 (linespec_lex_to_end): Adjust.
2248 (decode_line_full, decode_line_1): Add 'search_pspace' parameter
2249 and pass it along.
2250 (decode_line_with_last_displayed): Adjust.
2251 (collect_symtabs_from_filename, symtabs_from_filename): New
2252 'search_pspace' parameter. Use it.
2253 (find_function_symbols): Pass the search program space down.
2254 * linespec.h (decode_line_1, decode_line_full): Add
2255 'search_pspace' parameter.
2256 * probe.c (parse_probes_in_pspace): New function, factored out
2257 from ...
2258 (parse_probes): ... this. Add 'search_pspace' parameter and use
2259 it.
2260 * probe.h (parse_probes): Add pspace' parameter.
2261 * python/python.c (gdbpy_decode_line): Adjust.
2262 * tracepoint.c (scope_info): Adjust.
2263
100b4f2e
MR
22642016-01-18 Maciej W. Rozycki <macro@imgtec.com>
2265
2266 * mips-tdep.c (mips_insn_size): Remove 48-bit microMIPS
2267 instruction support.
2268 (micromips_next_pc): Likewise.
2269 (micromips_scan_prologue): Likewise.
2270 (micromips_deal_with_atomic_sequence): Likewise.
2271 (micromips_stack_frame_destroyed_p): Likewise.
2272 (mips_breakpoint_from_pc): Likewise.
2273
3f7f3650
MR
22742016-01-18 Maciej W. Rozycki <macro@imgtec.com>
2275
2276 * mips-tdep.c (micromips_insn_at_pc_has_delay_slot): Pass
2277 unshifted 16-bit microMIPS instruction word to `mips_insn_size'.
2278
f303dbd6
PA
22792016-01-18 Pedro Alves <palves@redhat.com>
2280
2281 * NEWS: Mention that GDB now displays the ID and name of the
2282 thread that hit a breakpoint or received a signal.
2283 * break-catch-sig.c (signal_catchpoint_print_it): Use
2284 maybe_print_thread_hit_breakpoint.
2285 * break-catch-syscall.c (print_it_catch_syscall): Likewise.
2286 * break-catch-throw.c (print_it_exception_catchpoint): Likewise.
2287 * breakpoint.c (maybe_print_thread_hit_breakpoint): New function.
2288 (print_it_catch_fork, print_it_catch_vfork, print_it_catch_solib)
2289 (print_it_catch_exec, print_it_ranged_breakpoint)
2290 (print_it_watchpoint, print_it_masked_watchpoint, bkpt_print_it):
2291 Use maybe_print_thread_hit_breakpoint.
2292 * breakpoint.h (maybe_print_thread_hit_breakpoint): Declare.
2293 * gdbthread.h (show_thread_that_caused_stop): Declare.
2294 * infrun.c (print_signal_received_reason): Print which thread
2295 received signal.
2296 * thread.c (show_thread_that_caused_stop): New function.
2297
eb0edac8
GB
22982016-01-18 Gary Benson <gbenson@redhat.com>
2299
2300 * nat/linux-namespaces.c (do_fork): New function.
2301 (linux_mntns_get_helper): Use the above.
2302
dc365182
JH
23032016-01-17 Jonas Hahnfeld <Hahnfeld@itc.rwth-aachen.de> (tiny change)
2304
2305 Pushed by Joel Brobecker <brobecker@adacore.com>.
2306 PR gdb/19208
2307 * dwarf2read.c (read_partial_die): Do not call set_objfile_main_name
2308 if the function has no name.
2309
f74f61cb
SL
23102016-01-15 Sandra Loosemore <sandra@codesourcery.com>
2311
2312 * charset.c [PHONY_ICONV] (GDB_DEFAULT_HOST_CHARSET):
2313 Conditionalize for Windows host.
2314 (GDB_DEFAULT_TARGET_CHARSET): Match GDB_DEFAULT_HOST_CHARSET.
2315 (GDB_DEFAULT_TARGET_WIDE_CHARSET): Use UTF-32.
2316 (phony_iconv_open): Handle both UTF-32 endiannesses.
2317 (phony_iconv): Likewise. Check for output overflow and clean up
2318 out-of-input cases. Correct adjustment to input buffer pointer.
2319 (set_be_le_names) [PHONY_ICONV]: Use hard-wired names to match
2320 phony_iconv_open.
2321
71ef29a8
PA
23222016-01-15 Pedro Alves <palves@redhat.com>
2323
2324 * NEWS: Mention star wildcard ranges.
2325 * cli/cli-utils.c (get_number_or_range): Check state->in_range first.
2326 (number_range_setup_range): New function.
2327 * cli/cli-utils.h (number_range_setup_range): New declaration.
2328 * thread.c (thread_apply_command): Support star TID ranges.
2329 * tid-parse.c (tid_range_parser_finished)
2330 (tid_range_parser_string, tid_range_parser_skip)
2331 (get_tid_or_range, get_tid_or_range): Handle
2332 TID_RANGE_STATE_STAR_RANGE.
2333 (tid_range_parser_star_range): New function.
2334 * tid-parse.h (enum tid_range_state) <TID_RANGE_STATE_STAR_RANGE>:
2335 New value.
2336 (tid_range_parser_star_range): New declaration.
2337
3f5b7598
PA
23382016-01-15 Pedro Alves <palves@redhat.com>
2339
2340 * thread.c (thread_apply_command): Use the tid range parser to
2341 advance past the thread ID list.
2342 * tid-parse.c (get_positive_number_trailer): New function.
2343 (parse_thread_id): Use it.
2344 (get_tid_or_range): Use it. Return 0 instead of throwing invalid
2345 thread ID error.
2346 (get_tid_or_range): Detect negative values. Return 0 instead of
2347 throwing invalid thread ID error.
2348
e7cf25a8
YQ
23492016-01-14 Yao Qi <yao.qi@linaro.org>
2350
2351 * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc):
2352 Declare.
2353 (arm_linux_get_next_pcs_ops): Install
2354 arm_linux_get_next_pcs_syscall_next_pc.
2355 (arm_linux_syscall_next_pc): Change to ...
2356 (arm_linux_get_next_pcs_syscall_next_pc): ... it.
2357 (arm_linux_init_abi): Don't set tdep->syscall_next_pc.
2358 * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Declare.
2359 (arm_get_next_pcs_syscall_next_pc): Make it static. Don't
2360 call tdep->syscall_next_pc.
2361 * arm-tdep.h (struct gdbarch_tdep) <syscall_next_pc>: Remove.
2362 (arm_get_next_pcs_syscall_next_pc): Remove.
2363
c0518081
YQ
23642016-01-14 Yao Qi <yao.qi@linaro.org>
2365
2366 * remote.c (remote_set_syscall_catchpoint): Cast to char *.
2367 * thread.c (do_captured_thread_select): Cast to const char *.
2368
1b451dda
YQ
23692016-01-14 Yao Qi <yao.qi@linaro.org>
2370
2371 * arch/arm-get-next-pcs.c (arm_get_next_pcs_ctor): Change
2372 argument arm_thumb2_breakpoint to has_thumb2_breakpoint.
2373 (thumb_get_next_pcs_raw): Check has_thumb2_breakpoint
2374 instead.
2375 * arch/arm-get-next-pcs.h (struct arm_get_next_pcs)
2376 <arm_thumb2_breakpoint>: Remove.
2377 <has_thumb2_breakpoint>: New field.
2378 (arm_get_next_pcs_ctor): Update declaration.
2379 * arm-linux-tdep.c (arm_linux_software_single_step): Pass
2380 1 to arm_get_next_pcs_ctor.
2381 * arm-tdep.c (arm_software_single_step): Pass 0 to
2382 arm_get_next_pcs_ctor.
2383
bc06e0b1
UW
23842016-01-13 Ulrich Weigand <uweigand@de.ibm.com>
2385
2386 * MAINTAINERS: Add Andreas Arnez as s390 target maintainer.
2387
4e7b8bea
YQ
23882016-01-13 Yao Qi <yao.qi@linaro.org>
2389
2390 * arch/arm-get-next-pcs.c (arm_get_next_pcs_raw): Use
2391 byte_order_for_code to read instruction.
2392
663f6d42
PA
23932016-01-13 Pedro Alves <palves@redhat.com>
2394
2395 * NEWS: Mention $_gthread.
2396 * gdbthread.h (struct thread_info) <global_num>: Mention
2397 $_gthread.
2398 * thread.c (thread_num_make_value_helper): New function.
2399 (thread_id_make_value): Delete.
2400 (thread_id_per_inf_num_make_value, global_thread_id_make_value):
2401 New.
2402 (thread_funcs): Adjust.
2403 (gthread_funcs): New.
2404 (_initialize_thread): Register $_gthread variable.
2405
c84f6bbf
PA
24062016-01-13 Pedro Alves <palves@redhat.com>
2407
2408 * NEWS: Mention "info threads -gid".
2409 * gdbthread.h (struct thread_info) <global_num>: Mention "info
2410 threads -gid".
2411 * thread.c (info_threads_command): Handle "-gid".
2412 (_initialize_thread): Adjust "info threads" help string to mention
2413 -gid.
2414
22a02324
PA
24152016-01-13 Pedro Alves <palves@redhat.com>
2416
2417 * NEWS: Mention InferiorThread.global_num.
2418 * python/py-infthread.c (thpy_get_global_num): New function.
2419 (thread_object_getset): Register "global_num".
2420
5d5658a1
PA
24212016-01-13 Pedro Alves <palves@redhat.com>
2422
2423 * NEWS: Mention that thread IDs are now per inferior and global
2424 thread IDs.
2425 * Makefile.in (SFILES): Add tid-parse.c.
2426 (COMMON_OBS): Add tid-parse.o.
2427 (HFILES_NO_SRCDIR): Add tid-parse.h.
2428 * ada-tasks.c: Adjust to use ptid_to_global_thread_id.
2429 * breakpoint.c (insert_breakpoint_locations)
2430 (remove_threaded_breakpoints, bpstat_check_breakpoint_conditions)
2431 (print_one_breakpoint_location, set_longjmp_breakpoint)
2432 (check_longjmp_breakpoint_for_call_dummy)
2433 (set_momentary_breakpoint): Adjust to use global IDs.
2434 (find_condition_and_thread, watch_command_1): Use parse_thread_id.
2435 (until_break_command, longjmp_bkpt_dtor)
2436 (breakpoint_re_set_thread, insert_single_step_breakpoint): Adjust
2437 to use global IDs.
2438 * dummy-frame.c (pop_dummy_frame_bpt): Adjust to use
2439 ptid_to_global_thread_id.
2440 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
2441 * gdbthread.h (struct thread_info): Rename field 'num' to
2442 'global_num. Add new fields 'per_inf_num' and 'inf'.
2443 (thread_id_to_pid): Rename thread_id_to_pid to
2444 global_thread_id_to_ptid.
2445 (pid_to_thread_id): Rename to ...
2446 (ptid_to_global_thread_id): ... this.
2447 (valid_thread_id): Rename to ...
2448 (valid_global_thread_id): ... this.
2449 (find_thread_id): Rename to ...
2450 (find_thread_global_id): ... this.
2451 (ALL_THREADS, ALL_THREADS_BY_INFERIOR): Declare.
2452 (print_thread_info): Add comment.
2453 * tid-parse.h: New file.
2454 * tid-parse.c: New file.
2455 * infcmd.c (step_command_fsm_prepare)
2456 (step_command_fsm_should_stop): Adjust to use the global thread
2457 ID.
2458 (until_next_command, until_next_command)
2459 (finish_command_fsm_should_stop): Adjust to use the global thread
2460 ID.
2461 (attach_post_wait): Adjust to check the inferior number too.
2462 * inferior.h (struct inferior) <highest_thread_num>: New field.
2463 * infrun.c (handle_signal_stop)
2464 (insert_exception_resume_breakpoint)
2465 (insert_exception_resume_from_probe): Adjust to use the global
2466 thread ID.
2467 * record-btrace.c (record_btrace_open): Use global thread IDs.
2468 * remote.c (process_initial_stop_replies): Also consider the
2469 inferior number.
2470 * target.c (target_pre_inferior): Clear the inferior's highest
2471 thread num.
2472 * thread.c (clear_thread_inferior_resources): Adjust to use the
2473 global thread ID.
2474 (new_thread): New inferior parameter. Adjust to use it. Set both
2475 the thread's global ID and the thread's per-inferior ID.
2476 (add_thread_silent): Adjust.
2477 (find_thread_global_id): New.
2478 (find_thread_id): Make static. Adjust to rename.
2479 (valid_thread_id): Rename to ...
2480 (valid_global_thread_id): ... this.
2481 (pid_to_thread_id): Rename to ...
2482 (ptid_to_global_thread_id): ... this.
2483 (thread_id_to_pid): Rename to ...
2484 (global_thread_id_to_ptid): ... this. Adjust.
2485 (first_thread_of_process): Adjust.
2486 (do_captured_list_thread_ids): Adjust to use global thread IDs.
2487 (should_print_thread): New function.
2488 (print_thread_info): Rename to ...
2489 (print_thread_info_1): ... this, and add new show_global_ids
2490 parameter. Handle it. Iterate over inferiors.
2491 (print_thread_info): Reimplement as wrapper around
2492 print_thread_info_1.
2493 (show_inferior_qualified_tids): New function.
2494 (print_thread_id): Use it.
2495 (tp_array_compar): Compare inferior numbers too.
2496 (thread_apply_command): Use tid_range_parser.
2497 (do_captured_thread_select): Use parse_thread_id.
2498 (thread_id_make_value): Adjust.
2499 (_initialize_thread): Adjust "info threads" help string.
2500 * varobj.c (struct varobj_root): Update comment.
2501 (varobj_create): Adjust to use global thread IDs.
2502 (value_of_root_1): Adjust to use global_thread_id_to_ptid.
2503 * windows-tdep.c (display_tib): No longer accept an argument.
2504 * cli/cli-utils.c (get_number_trailer): Make extern.
2505 * cli/cli-utils.h (get_number_trailer): Declare.
2506 (get_number_const): Adjust documentation.
2507 * mi/mi-cmd-var.c (mi_cmd_var_update_iter): Adjust to use global
2508 thread IDs.
2509 * mi/mi-interp.c (mi_new_thread, mi_thread_exit)
2510 (mi_on_normal_stop, mi_output_running_pid, mi_on_resume):
2511 * mi/mi-main.c (mi_execute_command, mi_cmd_execute): Likewise.
2512 * guile/scm-breakpoint.c (gdbscm_set_breakpoint_thread_x):
2513 Likewise.
2514 * python/py-breakpoint.c (bppy_set_thread): Likewise.
2515 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
2516 * python/py-infthread.c (thpy_get_num): Add comment and return the
2517 per-inferior thread ID.
2518 (thread_object_getset): Update comment of "num".
2519
43792cf0
PA
25202016-01-13 Pedro Alves <palves@redhat.com>
2521
2522 * breakpoint.c (remove_threaded_breakpoints)
2523 (print_one_breakpoint_location): Use print_thread_id.
2524 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
2525 (btrace_fetch, btrace_clear): Use print_thread_id.
2526 * common/print-utils.c (CELLSIZE): Delete.
2527 (get_cell): Rename to ...
2528 (get_print_cell): ... this and made extern. Adjust call callers.
2529 Adjust to use PRINT_CELL_SIZE.
2530 * common/print-utils.h (get_print_cell): Declare.
2531 (PRINT_CELL_SIZE): New.
2532 * gdbthread.h (print_thread_id): Declare.
2533 * infcmd.c (signal_command): Use print_thread_id.
2534 * inferior.c (print_inferior): Use print_thread_id.
2535 * infrun.c (handle_signal_stop)
2536 (insert_exception_resume_breakpoint)
2537 (insert_exception_resume_from_probe)
2538 (print_signal_received_reason): Use print_thread_id.
2539 * record-btrace.c (record_btrace_info)
2540 (record_btrace_resume_thread, record_btrace_cancel_resume)
2541 (record_btrace_step_thread, record_btrace_wait): Use
2542 print_thread_id.
2543 * thread.c (thread_apply_all_command): Use print_thread_id.
2544 (print_thread_id): New function.
2545 (thread_apply_command): Use print_thread_id.
2546 (thread_command, thread_find_command, do_captured_thread_select):
2547 Use print_thread_id.
2548
84654457
PA
25492016-01-13 Pedro Alves <palves@redhat.com>
2550
2551 * NEWS: Mention InferiorThread.inferior.
2552 * python/py-infthread.c (thpy_get_inferior): New.
2553 (thread_object_getset): Register "inferior".
2554
e3940304
PA
25552016-01-13 Pedro Alves <palves@redhat.com>
2556
2557 * NEWS: Mention $_inferior.
2558 * inferior.c (inferior_id_make_value): New.
2559 (inferior_funcs): New.
2560 (_initialize_inferior): Create $_inferior variable.
2561
a911d87a
PA
25622016-01-13 Pedro Alves <palves@redhat.com>
2563
2564 PR breakpoints/19388
2565 * frame.c (get_current_frame): Use validate_registers_access.
2566 * gdbthread.h (validate_registers_access): Declare.
2567 * infrun.c (validate_siginfo_access): Delete.
2568 (siginfo_value_read, siginfo_value_write): Use
2569 validate_registers_access.
2570 * thread.c (validate_registers_access): New function.
2571
82075af2
JS
25722016-01-12 Josh Stone <jistone@redhat.com>
2573 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2574
2575 * NEWS (Changes since GDB 7.10): Mention QCatchSyscalls and the
2576 syscall_entry and syscall_return stop reasons. Mention GDB
2577 support for remote catch syscall.
2578 * remote.c (PACKET_QCatchSyscalls): New enum.
2579 (remote_set_syscall_catchpoint): New function.
2580 (remote_protocol_features): New element for QCatchSyscalls.
2581 (remote_parse_stop_reply): Parse syscall_entry/return stops.
2582 (init_remote_ops): Install remote_set_syscall_catchpoint.
2583 (_initialize_remote): Config QCatchSyscalls.
2584 * linux-nat.h (struct lwp_info) <syscall_state>: Comment typo.
2585
d18547d8
YQ
25862016-01-12 Yao Qi <yao.qi@linaro.org>
2587
2588 * nat/linux-ptrace.c (linux_child_function): Cast child_stack
2589 to gdb_byte * and pass to linux_fork_to_function.
2590
ba4dd7c4
YQ
25912016-01-12 Yao Qi <yao.qi@linaro.org>
2592
2593 * nat/linux-ptrace.c (linux_fork_to_function): Change type
2594 of argument 'function'.
2595 (linux_grandchild_function): Change return type to 'int'.
2596 Change child_stack's type to 'void *'.
2597 (linux_child_function): Likewise.
2598
bc504a31
PA
25992016-01-12 Pedro Alves <palves@redhat.com>
2600
2601 Remove use of the registered trademark symbol throughout.
2602
5eddd578
TS
26032016-01-12 Thomas Schwinge <thomas@codesourcery.com>
2604
2605 * reply_mig_hack.awk: Rewrite one regular expression.
2606
b835bb52
MF
26072016-01-11 Mike Frysinger <vapier@gentoo.org>
2608
2609 * acinclude.m4: Include new warning.m4 file.
2610 * configure: Regenerated.
2611 * configure.ac: Move all warning logic ...
2612 * warning.m4: ... here.
2613
2f99e8fc
YQ
26142016-01-08 Yao Qi <yao.qi@linaro.org>
2615
2616 * extension.c: Include target.h.
2617 (set_active_ext_lang): Only call install_gdb_sigint_handler,
2618 check_quit_flag, and set_quit_flag if target_terminal_is_ours
2619 returns false.
2620 (restore_active_ext_lang): Likewise.
2621 * target.c (target_terminal_is_ours): New function.
2622 * target.h (target_terminal_is_ours): Declare.
2623
5dd05630
MR
26242016-01-07 Maciej W. Rozycki <macro@imgtec.com>
2625
2626 * mips-tdep.c (mips_breakpoint_from_pc): Rename local `status'
2627 to `err' in the little-endian leg.
2628
f5aa3069
YQ
26292016-01-06 Yao Qi <yao.qi@linaro.org>
2630
2631 * arch/arm-get-next-pcs.c (arm_get_next_pcs): Move it to some
2632 lines below.
2633 (thumb_get_next_pcs_raw): Make it static.
2634 (arm_get_next_pcs_raw): Likewise.
2635 * arch/arm-get-next-pcs.h (thumb_get_next_pcs_raw): Remove the
2636 declaration.
2637 (arm_get_next_pcs_raw): Likewise.
2638
bf69ad5a
MF
26392016-01-05 Mike Frysinger <vapier@gentoo.org>
2640
2641 * version.in: Change cvs to git.
2642
66750332
MF
26432016-01-05 Mike Frysinger <vapier@gentoo.org>
2644
2645 * configure.tgt (score-*-*): Delete gdb_sim assignment.
2646
976102cd
PA
26472016-01-05 Pedro Alves <palves@redhat.com>
2648
2649 PR sim/13418
2650 * configure.ac: Define WITH_PPC_SIM when linking in the sim and
2651 the target is powerpc*.
fa89c126
PA
2652 * rs6000-tdep.c (init_sim_regno_table): Check WITH_PPC_SIM instead
2653 of WITH_SIM.
976102cd
PA
2654 * configure: Regenerate.
2655 * config.in: Regenerate.
2656
43368e1d
MM
26572016-01-04 Markus Metzger <markus.t.metzger@intel.com>
2658
2659 * btrace.c (btrace_pt_readmem_callback): Do not return in TRY/CATCH.
2660
32273fe6
MF
26612016-01-02 Mike Frysinger <vapier@gentoo.org>
2662
2663 * configure.tgt (powerpc*-*-*): Delete test call and
2664 always assign gdb_sim.
2665
618f726f
JB
26662016-01-01 Joel Brobecker <brobecker@adacore.com>
2667
2668 Update year range in copyright notice of all files.
2669
edd88788
JB
26702016-01-01 Joel Brobecker <brobecker@adacore.com>
2671
2672 * top.c (print_gdb_version): Change copyright year in version
2673 message.
2674
0f7b3ef4 26752016-01-01 Joel Brobecker <brobecker@adacore.com>
aec47d1d 2676
0f7b3ef4 2677 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2015.
aec47d1d 2678
0f7b3ef4 2679For older changes see ChangeLog-2015.
c906108c
SS
2680\f
2681Local Variables:
2682mode: change-log
2683left-margin: 8
2684fill-column: 74
2685version-control: never
57da7796 2686coding: utf-8
c906108c 2687End:
This page took 1.992993 seconds and 4 git commands to generate.