Disable displaced stepping if trying it fails
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
3fc8eb30
PA
12015-08-07 Pedro Alves <palves@redhat.com>
2
3 * inferior.h (struct inferior) <displaced_stepping_failed>: New
4 field.
5 * infrun.c (use_displaced_stepping_now_p): New parameter 'inf'.
6 Return false if dispaced stepping failed before.
7 (resume): Pass the current inferior to
8 use_displaced_stepping_now_p. Wrap displaced_step_prepare in
9 TRY/CATCH. If we get a MEMORY_ERROR, set the inferior's
10 displaced_stepping_failed flag, and fall back to an in-line
11 step-over.
12
bfedc46a
PA
132015-08-07 Pedro Alves <palves@redhat.com>
14
15 * darwin-nat.c (darwin_stop): Rename to ...
16 (darwin_interrupt): ... this.
17 (_initialize_darwin_inferior): Adjust.
18 * gnu-nat.c (gnu_stop): Delete.
19 (gnu_target): Don't install gnu_stop.
20 * inf-ptrace.c (inf_ptrace_stop): Rename to ...
21 (inf_ptrace_interrupt): ... this.
22 (inf_ptrace_target): Adjust.
23 * infcmd.c (interrupt_target_1): Use target_interrupt instead of
24 target_stop.
25 * linux-nat (linux_nat_stop): Rename to ...
26 (linux_nat_interrupt): ... this.
27 (linux_nat_stop): Reimplement.
28 (linux_nat_add_target): Install linux_nat_interrupt.
29 * nto-procfs.c (nto_interrupt_twice): Rename to ...
30 (nto_handle_sigint_twice): ... this.
31 (nto_interrupt): Rename to ...
32 (nto_handle_sigint): ... this. Call target_interrupt instead of
33 target_stop.
34 (procfs_wait): Adjust.
35 (procfs_stop): Rename to ...
36 (procfs_interrupt): ... this.
37 (init_procfs_targets): Adjust.
38 * procfs.c (procfs_stop): Rename to ...
39 (procfs_interrupt): ... this.
40 (procfs_target): Adjust.
41 * remote-m32r-sdi.c (m32r_stop): Rename to ...
42 (m32r_interrupt): ... this.
43 (init_m32r_ops): Adjust.
44 * remote-sim.c (gdbsim_stop_inferior): Rename to ...
45 (gdbsim_interrupt_inferior): ... this.
46 (gdbsim_stop): Rename to ...
47 (gdbsim_interrupt): ... this.
48 (gdbsim_cntrl_c): Adjust.
49 (init_gdbsim_ops): Adjust.
50 * remote.c (sync_remote_interrupt): Adjust comments.
51 (remote_stop_as): Rename to ...
52 (remote_interrupt_as): ... this.
53 (remote_stop): Adjust comment.
54 (remote_interrupt): New function.
55 (init_remote_ops): Install remote_interrupt.
56 * target.c (target_interrupt): New function.
57 * target.h (struct target_ops) <to_interrupt>: New field.
58 (target_interrupt): New declaration.
59 * windows-nat.c (windows_stop): Rename to ...
60 (windows_interrupt): ... this.
61 * target-delegates.c: Regenerate.
62
d55007b5
PA
632015-08-07 Pedro Alves <palves@redhat.com>
64
65 * signal-while-stepping-over-bp-other-thread.exp: Expect "restart
66 threads" as alternative to "switching back to stepped thread".
67
fbea99ea
PA
682015-08-07 Pedro Alves <palves@redhat.com>
69
70 * NEWS: Mention "maint set/show target-non-stop".
71 * breakpoint.c (update_global_location_list): Check
72 target_is_non_stop_p instead of non_stop.
73 * infcmd.c (attach_command_post_wait, attach_command): Likewise.
74 * infrun.c (show_can_use_displaced_stepping)
75 (can_use_displaced_stepping_p, start_step_over_inferior):
76 Likewise.
77 (internal_resume_ptid): New function.
78 (resume): Use it.
79 (proceed): Check target_is_non_stop_p instead of non_stop. If in
80 all-stop mode but the target is always in non-stop mode, start all
81 the other threads that are implicitly resumed too.
82 (for_each_just_stopped_thread, fetch_inferior_event)
83 (adjust_pc_after_break, stop_all_threads): Check
84 target_is_non_stop_p instead of non_stop.
85 (handle_inferior_event): Likewise. Handle detach-fork in all-stop
86 with the target always in non-stop mode.
87 (handle_signal_stop) <random signal>: Check target_is_non_stop_p
88 instead of non_stop.
89 (switch_back_to_stepped_thread): Check target_is_non_stop_p
90 instead of non_stop.
91 (keep_going_stepped_thread): Use internal_resume_ptid.
92 (stop_waiting): If in all-stop mode, and the target is in non-stop
93 mode, stop all threads.
94 (keep_going_pass): Likewise, when starting a new in-line step-over
95 sequence.
96 * linux-nat.c (get_pending_status, select_event_lwp)
97 (linux_nat_filter_event, linux_nat_wait_1, linux_nat_wait): Check
98 target_is_non_stop_p instead of non_stop.
99 (linux_nat_always_non_stop_p): New function.
100 (linux_nat_stop): Check target_is_non_stop_p instead of non_stop.
101 (linux_nat_add_target): Install linux_nat_always_non_stop_p.
102 * target-delegates.c: Regenerate.
103 * target.c (target_is_non_stop_p): New function.
104 (target_non_stop_enabled, target_non_stop_enabled_1): New globals.
105 (maint_set_target_non_stop_command)
106 (maint_show_target_non_stop_command): New functions.
107 (_initilize_target): Install "maint set/show target-non-stop"
108 commands.
109 * target.h (struct target_ops) <to_always_non_stop_p>: New field.
110 (target_non_stop_enabled): New declaration.
111 (target_is_non_stop_p): New declaration.
112
372316f1
PA
1132015-08-07 Pedro Alves <pedro@codesourcery.com>
114
115 * breakpoint.c (breakpoints_should_be_inserted_now): If any thread
116 has a pending status, return true.
117 * gdbthread.h: Include target/waitstatus.h.
118 (struct thread_suspend_state) <stop_reason, waitstatus_pending_p,
119 stop_pc>: New fields.
120 (struct thread_info) <resumed>: New field.
121 (set_resumed): Declare.
122 * infrun.c: Include "event-loop.h".
123 (infrun_async_inferior_event_token, infrun_is_async): New globals.
124 (infrun_async): New function.
125 (clear_step_over_info): Add debug output.
126 (displaced_step_in_progress_any_inferior): New function.
127 (displaced_step_fixup): New returns int.
128 (start_step_over): Handle in-line step-overs too. Assert the
129 thread is marked resumed.
130 (resume_cleanups): Clear the thread's resumed flag.
131 (resume): Set the thread's resumed flag. Return early if the
132 thread has a pending status. Allow stepping a breakpoint with no
133 signal.
134 (proceed): Adjust to check 'resumed' instead of 'executing'.
135 (clear_proceed_status_thread): If the thread has a pending status,
136 and that status is a finished step, discard the pending status.
137 (clear_proceed_status): Don't clear step_over_info here.
138 (random_pending_event_thread, do_target_wait): New functions.
139 (prepare_for_detach, wait_for_inferior, fetch_inferior_event): Use
140 do_target_wait.
141 (wait_one): New function.
142 (THREAD_STOPPED_BY): New macro.
143 (thread_stopped_by_watchpoint, thread_stopped_by_sw_breakpoint)
144 (thread_stopped_by_hw_breakpoint): New functions.
145 (switch_to_thread_cleanup, save_waitstatus, stop_all_threads): New
146 functions.
147 (handle_inferior_event): Also call set_resumed(false) on all
148 threads implicitly stopped by the event.
149 (restart_threads, resumed_thread_with_pending_status): New
150 functions.
151 (finish_step_over): If we were doing an in-line step-over before,
152 and no longer are after trying to start a new step-over, restart
153 all threads. If we have multiple threads with pending events,
154 save the current event and go through the event loop again.
155 (handle_signal_stop): Return early if finish_step_over returns
156 false.
157 <random signal>: If we get a signal while stepping over a
158 breakpoint in-line in non-stop mode, restart all threads. Clear
159 step_over_info before delivering the signal.
160 (keep_going_stepped_thread): Use internal_error instead of
161 gdb_assert. Mark the thread as resumed.
162 (keep_going_pass_signal): Assert the thread isn't already resumed.
163 If some other thread is doing an in-line step-over, defer the
164 resume. If we just started a new in-line step-over, stop all
165 threads. Don't clear step_over_info.
166 (infrun_async_inferior_event_handler): New function.
167 (_initialize_infrun): Create async event handler with
168 infrun_async_inferior_event_handler as callback.
169 (infrun_async): New declaration.
170 * target.c (target_async): New function.
171 * target.h (target_async): Declare macro and readd as function
172 declaration.
173 * target/waitstatus.h (enum target_stop_reason)
174 <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
175 * thread.c (new_thread): Clear the new waitstatus field.
176 (set_resumed): New function.
177
2ac7589c
PA
1782015-08-07 Pedro Alves <palves@redhat.com>
179
180 * infrun.c (keep_going_stepped_thread): New function, factored out
181 from ...
182 (switch_back_to_stepped_thread): ... here.
183
8b061563
PA
1842015-08-07 Pedro Alves <palves@redhat.com>
185
186 * infrun.c (currently_stepping): Extend intro comment.
187 * target.h (target_resume): Extend intro comment.
188
1afd5965
PA
1892015-08-07 Pedro Alves <palves@redhat.com>
190
191 * infrun.c (switch_back_to_stepped_thread): Use ecs->ptid instead
192 of inferior_ptid. If the stepped thread vanished, return 0
193 instead of resuming here. Use reset_ecs. Print the prev_pc and
194 the current stop_pc in log message. Clear trap_expected if the
195 thread advanced. Don't pass currently_stepping to
196 do_target_resume.
197
4d9d9d04
PA
1982015-08-07 Pedro Alves <palves@redhat.com>
199
200 * gdbthread.h (struct thread_info) <prev_pc>: Extend comment.
201 * infrun.c (struct execution_control_state): Move higher up in the
202 file.
203 (reset_ecs): New function.
204 (start_step_over): Now returns int. Rewrite to use
205 keep_going_pass_signal instead of manually starting a displaced step.
206 (resume): Don't call set_running here. If displaced stepping
207 can't start now, clear trap_expected.
208 (find_thread_needs_step_over): Delete function.
209 (proceed): Set up finish_thread_state_cleanup. Call set_running.
210 If the current thread needs a step over, push it in the step-over
211 chain. Don't set insert breakpoints nor call resume directly
212 here. Instead rewrite to use start_step_over and
213 keep_going_pass_signal.
214 (finish_step_over): New function.
215 (handle_signal_stop): Call finish_step_over instead of
216 start_step_over.
217 (switch_back_to_stepped_thread): If the event thread needs another
218 step-over do that first. Use start_step_over.
219 (keep_going_pass_signal): New function, factored out from ...
220 (keep_going): ... here.
221 (_initialize_infrun): Comment moved here.
222 * thread.c (set_running_thread): New function.
223 (set_running, finish_thread_state): Use set_running_thread.
224
c2829269
PA
2252015-08-07 Pedro Alves <palves@redhat.com>
226
227 * gdbthread.h (struct thread_info) <step_over_prev,
228 step_over_next>: New fields.
229 (thread_step_over_chain_enqueue, thread_step_over_chain_remove)
230 (thread_step_over_chain_next, thread_is_in_step_over_chain): New
231 declarations.
232 * infrun.c (struct displaced_step_request): Delete.
233 (struct displaced_step_inferior_state) <step_request_queue>:
234 Delete field.
235 (displaced_step_prepare): Assert that trap_expected is set. Use
236 thread_step_over_chain_enqueue. Split starting a new displaced
237 step to ...
238 (start_step_over): ... this new function.
239 (resume): Assert the thread isn't waiting for a step over already.
240 (proceed): Assert the thread isn't waiting for a step over
241 already.
242 (infrun_thread_stop_requested): Adjust to remove threads from the
243 embedded step-over chain.
244 (handle_inferior_event) <fork/vfork>: Call start_step_over after
245 displaced_step_fixup.
246 (handle_signal_stop): Call start_step_over after
247 displaced_step_fixup.
248 * infrun.h (step_over_queue_head): New declaration.
249 * thread.c (step_over_chain_enqueue, step_over_chain_remove)
250 (thread_step_over_chain_next, thread_is_in_step_over_chain)
251 (thread_step_over_chain_enqueue)
252 (thread_step_over_chain_remove): New functions.
253 (delete_thread_1): Remove thread from the step-over chain.
254
6c4cfb24
PA
2552015-08-07 Pedro Alves <palves@redhat.com>
256
257 * infrun.c (thread_still_needs_step_over): Rename to ...
258 (thread_still_needs_step_over_bp): ... this.
259 (enum step_over_what): New.
260 (thread_still_needs_step_over): Reimplement.
261
567420d1
PA
2622015-08-07 Pedro Alves <palves@redhat.com>
263
264 * remote.c (remote_wait_as): If not waiting for a stop reply,
265 return TARGET_WAITKIND_NO_RESUMED. If TARGET_WNOHANG is
266 requested, don't block waiting forever.
267
d8dd4d5f
PA
2682015-08-07 Pedro Alves <pedro@codesourcery.com>
269
270 * infrun.c (adjust_pc_after_break): Now takes thread_info and
271 waitstatus pointers instead of an ecs. Adjust.
272 (handle_inferior_event): Adjust caller.
273
e1316e60
PA
2742015-08-07 Pedro Alves <palves@redhat.com>
275
276 * infrun.c (handle_inferior_event): If we get
277 TARGET_WAITKIND_SIGNALLED or TARGET_WAITKIND_EXITED in non-stop
278 mode, mark all threads of the exiting process as not-executing.
279 (normal_stop): If we get TARGET_WAITKIND_SIGNALLED or
280 TARGET_WAITKIND_EXITED in non-stop mode, finish all threads of the
281 exiting process, if inferior_ptid still points at a process.
282 * thread.c (struct current_thread_cleanup) <next>: New field.
283 (current_thread_cleanup_chain): New global.
284 (restore_current_thread_ptid_changed): New function.
285 (restore_current_thread_cleanup_dtor): Remove the cleanup from the
286 current_thread_cleanup_chain list.
287 (make_cleanup_restore_current_thread): Add the cleanup data to the
288 current_thread_cleanup_chain list.
289 (_initialize_thread): Install restore_current_thread_ptid_changed
290 as thread_ptid_changed observer.
291
47e9c225
JB
2922015-08-07 Joel Brobecker <brobecker@adacore.com>
293
294 * dtrace-probe.c (dtrace_process_dof): Ignore the objfile's DOF
295 data if a DTRACE_DOF_SECT_TYPE_PROVIDER section is found to be
296 smaller than expected.
297
06096720
AB
2982015-08-07 Andrew Burgess <andrew.burgess@embecosm.com>
299
300 * stack.c (get_frame_language): Moved ...
301 * frame.c (get_frame_language): ... to here.
302 * language.h (get_frame_language): Declaration moved to frame.h.
303 * frame.h: Add language.h include, for language enum.
304 (get_frame_language): Declaration moved from language.h.
305 * language.c: Add frame.h include.
306 * top.c: Add frame.h include.
307 * symtab.h (struct obj_section): Declare.
308 (struct cmd_list_element): Declare.
309
7ff38b1c
AB
3102015-08-07 Andrew Burgess <andrew.burgess@embecosm.com>
311
312 * language.c (show_language_command): Find selected frame before
313 asking for the language of that frame.
314 (set_language_command): Likewise.
315 * language.h (get_frame_language): Add frame parameter.
316 * stack.c (get_frame_language): Add frame parameter, assert
317 parameter is not NULL, update comment and reindent.
318 * top.c (check_frame_language_change): Pass the selected frame
319 into get_frame_language.
320
da8c46d2
MM
3212015-08-07 Markus Metzger <markus.t.metzger@intel.com>
322
323 * btrace.c (btrace_compute_ftrace_bts): Clear insn flags.
324 (pt_btrace_insn_flags): New.
325 (ftrace_add_pt): Call pt_btrace_insn_flags.
326 * btrace.h (btrace_insn_flag): New.
327 (btrace_insn) <flags>: New.
328 * record-btrace.c (btrace_insn_history): Print insn prefix.
329 * NEWS: Announce it.
330
5599c404
MM
3312015-08-07 Markus Metzger <markus.t.metzger@intel.com>
332
333 * configure.ac: Check for PERF_ATTR_SIZE_VER5 in linux/perf_event.h
334 * configure: Regenerate.
335
016a3251
DD
3362015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
337
338 * Makefile.in (LIBICONV): Define.
339 (CLIBS): Add LIBICONV.
340 * acinclude.m4: Use config/iconv.m4 instead of custom AM_ICONV.
341 * configure: Regenerate.
342
aead7601
SM
3432015-08-06 Simon Marchi <simon.marchi@ericsson.com>
344 Pedro Alves <palves@redhat.com>
345
346 * arm-tdep.c (set_fp_model_sfunc): Add cast from integer to enum.
347 (arm_set_abi): Likewise.
348 * ax-general.c (ax_print): Likewise.
349 * c-exp.y (exp : string_exp): Likewise.
350 * compile/compile-loc2c.c (compute_stack_depth_worker): Likewise.
351 (do_compile_dwarf_expr_to_c): Likewise.
352 * cp-name-parser.y (demangler_special : DEMANGLER_SPECIAL start):
353 Likewise.
354 * dwarf2expr.c (execute_stack_op): Likewise.
355 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
356 (disassemble_dwarf_expression): Likewise.
357 * dwarf2read.c (dwarf2_add_member_fn): Likewise.
358 (read_array_order): Likewise.
359 (abbrev_table_read_table): Likewise.
360 (read_attribute_value): Likewise.
361 (skip_unknown_opcode): Likewise.
362 (dwarf_decode_macro_bytes): Likewise.
363 (dwarf_decode_macros): Likewise.
364 * eval.c (value_f90_subarray): Likewise.
365 * guile/scm-param.c (gdbscm_make_parameter): Likewise.
366 * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
367 * infrun.c (handle_command): Likewise.
368 * memory-map.c (memory_map_start_memory): Likewise.
369 * osabi.c (set_osabi): Likewise.
370 * parse.c (operator_length_standard): Likewise.
371 * ppc-linux-tdep.c (ppc_canonicalize_syscall): Likewise, and use
372 single return point.
373 * python/py-frame.c (gdbpy_frame_stop_reason_string): Likewise.
374 * python/py-symbol.c (gdbpy_lookup_symbol): Likewise.
375 (gdbpy_lookup_global_symbol): Likewise.
376 * record-full.c (record_full_restore): Likewise.
377 * regcache.c (regcache_register_status): Likewise.
378 (regcache_raw_read): Likewise.
379 (regcache_cooked_read): Likewise.
380 * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
381 * symtab.c (initialize_ordinary_address_classes): Likewise.
382 * target-debug.h (target_debug_print_signals): Likewise.
383 * utils.c (do_restore_current_language): Likewise.
384
ca0a5f0b
CD
3852015-08-06 Clem Dickey <clemd@acm.org>
386
387 PR python/17136
388 * python/lib/gdb/command/type_printers.py (InfoTypePrinter): Fix typo.
389
05d999b0
SM
3902015-08-06 Simon Marchi <simon.marchi@ericsson.com>
391
392 * complaints.c (enum complaint_series): Add newlines and remove
393 out of date comment.
394 (struct complaints) <series>: Change type to enum
395 complaint_series and remove out of date comment.
396 (symfile_complaint_hook): Use equivalent enum value
397 ISOLATED_MESSAGE instead of 0.
398
bf47e248
PA
3992015-08-06 Pedro Alves <palves@redhat.com>
400
401 * nat/linux-waitpid.c (my_waitpid): Only print *status if waitpid
402 returned > 0.
403
b6b9ffcc
PL
4042015-08-06 Pierre Langlois <pierre.langlois@arm.com>
405
406 * common/agent.c (symbol_list) <required>: Remove.
407
863d01bd
PA
4082015-08-06 Pedro Alves <palves@redhat.com>
409
410 * target/waitstatus.h (enum target_stop_reason)
411 <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
412
0a39bb32
PA
4132015-08-05 Pedro Alves <palves@redhat.com>
414 Joel Brobecker <brobecker@adacore.com>
415
9d996aba 416 * breakpoint.c (bpstat_what) <bp_longjmp, bp_longjmp_call_dummy>
0a39bb32
PA
417 <bp_exception, bp_longjmp_resume, bp_exception_resume>: Handle the
418 case where BS->STOP is not set.
419
260439cb
UW
4202015-08-05 Ulrich Weigand <uweigand@de.ibm.com>
421
422 * nat/gdb_thread_db.h: Add copyright header.
423 Protect against multiple inclusion.
424
d89fa914
YQ
4252015-08-05 Yao Qi <yao.qi@linaro.org>
426
427 * aarch64-linux-nat.c (get_thread_id): Remove.
428 (debug_reg_change_callback): Call ptid_get_lwp instead of
429 get_thread_id.
430 (fetch_gregs_from_thread): Likewise.
431 (store_gregs_to_thread): Likewise.
432 (fetch_fpregs_from_thread): Likewise.
433 (store_fpregs_to_thread): Likewise.
434 (aarch64_linux_get_debug_reg_capacity): Likewise.
435 * arm-linux-nat.c (get_thread_id): Remove.
436 (GET_THREAD_ID): Update macro to use ptid_get_lwp.
437 * xtensa-linux-nat.c (get_thread_id): Remove.
438 (GET_THREAD_ID): Update macro to use ptid_get_lwp.
439 * arm-linux-nat.c (get_thread_id): Remove.
440 (GET_THREAD_ID): Remove.
441 (fetch_fpregs): Call ptid_get_lwp instead of GET_THREAD_ID.
442 (store_fpregs, fetch_regs, store_regs): Likewise.
443 (fetch_wmmx_regs, store_wmmx_regs): Likewise.
444 (fetch_vfp_regs, store_vfp_regs): Likewise.
445 (arm_linux_read_description): Likewise.
446 (arm_linux_get_hwbp_cap): Likewise.
447 * xtensa-linux-nat.c (get_thread_id): Remove.
448 (GET_THREAD_ID): Remove.
449 (fetch_gregs, store_gregs): Call ptid_get_lwp instead of
450 GET_THREAD_ID.
451
4efd80aa
CS
4522015-08-04 Ciro Santilli <ciro.santilli@gmail.com> (obvious patch)
453
454 * python/py-linetable.c: Fix case of Linetable to LineTable
455 in docstrings and code comments.
456 * python/py-symtab.c: Same.
457
c6343a91
JK
4582015-08-04 Jan Kratochvil <jan.kratochvil@redhat.com>
459
460 * infcmd.c (signal_command): Call do_cleanups for args_chain.
461
978b9495
JK
4622015-08-04 Jan Kratochvil <jan.kratochvil@redhat.com>
463
464 PR gdb/18767
465 * infcmd.c (attach_command): Move ARGS_CHAIN cleanup after last ARGS
466 use.
467
96e9210f
PA
4682015-08-04 Pedro Alves <palves@redhat.com>
469
470 * nat/gdb_thread_db.h (td_init_ftype, td_ta_new_ftype)
471 (td_ta_map_lwp2thr_ftype, td_ta_thr_iter_ftype)
472 (td_ta_event_addr_ftype, td_ta_set_event_ftype)
473 (td_ta_clear_event_ftype, td_ta_event_getmsg_ftype)
474 (td_thr_validate_ftype, td_thr_get_info_ftype)
475 (td_thr_event_enable_ftype, td_thr_tls_get_addr_ftype)
476 (td_thr_tlsbase_ftype, td_symbol_list_ftype, td_ta_delete_ftype):
477 New typedefs.
478 * linux-thread-db.c (struct thread_db_info): Use new typedefs.
479 (try_thread_db_load_1): Define TDB_VERBOSE_DLSYM, TDB_DLSYM , CHK
480 local macros and use them instead of verbose_dlsym and dlsym
481 calls.
482
af60a1ef
SL
4832015-08-03 Sandra Loosemore <sandra@codesourcery.com>
484
485 * nios2-tdep.h: Include opcode/nios2.h here.
486 (NIOS2_CDX_OPCODE_SIZE): New.
487 (struct gdbarch_tdep): Add OP parameter to syscall_next_pc.
488 * nios2-tdep.c: Don't include opcode/nios2.h here.
489 (nios2_fetch_insn): For R2, try reading 2-byte instruction if
490 4-byte read fails.
491 (nios2_match_add, nios2_match_sub): Add cases for R2 encodings.
492 (nios2_match_addi, nios2_match_orhi): Likewise.
493 (nios2_match_stw, nios2_match_ldw): Likewise.
494 (nios2_match_rdctl): Likewise.
495 (nios2_match_stwm, nios2_match_ldwm): New.
496 (nios2_match_branch): Add cases for R2 encodings.
497 (nios2_match_jmpi, nios2_match_calli): Likewise.
498 (nios2_match_jmpr, nios2_match_callr): Likewise.
499 (nios2_match_break, nios2_match_trap): Likewise.
500 (nios2_in_epilogue_p): Add R2 support.
501 (nios2_analyze_prologue): Update comments. Recognize R2 CDX
502 prologues.
503 (nios2_breakpoint_from_pc): Handle R2 instructions.
504 (nios2_get_next_pc): Likewise. Adjust call to
505 tdep->syscall_next_pc.
506 * nios2-linux-tdep.c (nios2_r1_linux_rt_sigreturn_tramp_frame):
507 Renamed from nios2_linux_rt_sigreturn_tramp_frame. Use
508 instruction field macros instead of literal hex values.
509 (nios2_r2_linux_rt_sigreturn_tramp_frame): New.
510 (nios2_linux_syscall_next_pc): Adjust signature to pass OP.
511 Use size field from OP instead of assuming all instructions
512 are the same size.
513 (nios2_linux_init_abi): Register appropriate unwinder for mach.
514
1da03605
UW
5152015-08-03 Ulrich Weigand <uweigand@de.ibm.com>
516
517 * cp-namespace.c (cp_lookup_symbol_via_imports): Fix uninitialized
518 variable warning with some compilers.
519
8156fe7f
YQ
5202015-08-03 Yao Qi <yao.qi@linaro.org>
521
522 * arm-linux-nat.c (arm_linux_get_hwbp_type): Capitalize "type"
523 in comment. Replace "rw" with "type".
524 (arm_linux_remove_watchpoint): Change type of "rw" to
525 "enum target_hw_bp_type".
526
835a09d9
PMR
5272015-08-02 Pierre-Marie de Rodat <derodat@adacore.com>
528
529 * alpha-mdebug-tdep.c (find_proc_desc): Update call to
530 lookup_symbol.
531 * ft32-tdep.c (ft32_skip_prologue): Likewise.
532 * moxie-tdep.c (moxie_skip_prologue): Likewise.
533 * mt-tdep.c (mt_skip_prologue): Likewise.
534 * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
535
d12307c1
PMR
5362015-08-01 Pierre-Marie de Rodat <derodat@adacore.com>
537
538 * ada-exp.y (write_object_renaming): Replace struct
539 ada_symbol_info with struct block_symbol. Update field
540 references accordingly.
541 (block_lookup, select_possible_type_sym): Likewise.
542 (find_primitive_type): Likewise. Also update call to
543 ada_lookup_symbol to extract the symbol itself.
544 (write_var_or_type, write_name_assoc): Likewise.
545 * ada-lang.h (struct ada_symbol_info): Remove.
546 (ada_lookup_symbol_list): Replace struct ada_symbol_info with
547 struct block_symbol.
548 (ada_lookup_encoded_symbol, user_select_syms): Likewise.
549 (ada_lookup_symbol): Return struct block_symbol instead of a
550 mere symbol.
551 * ada-lang.c (defns_collected): Replace struct ada_symbol_info
552 with struct block_symbol.
553 (resolve_subexp, ada_resolve_function, sort_choices,
554 user_select_syms, is_nonfunction, add_defn_to_vec,
555 num_defns_collected, defns_collected,
556 symbols_are_identical_enums, remove_extra_symbols,
557 remove_irrelevant_renamings, add_lookup_symbol_list_worker,
558 ada_lookup_symbol_list, ada_iterate_over_symbols,
559 ada_lookup_encoded_symbol, get_var_value): Likewise.
560 (ada_lookup_symbol): Return a block_symbol instead of a mere
561 symbol. Replace struct ada_symbol_info with struct
562 block_symbol.
563 (ada_lookup_symbol_nonlocal): Likewise.
564 (standard_lookup): Make block passing explicit through
565 lookup_symbol_in_language.
566 * ada-tasks.c (get_tcb_types_info): Update the calls to
567 lookup_symbol_in_language to extract the mere symbol out of the
568 returned value.
569 (ada_tasks_inferior_data_sniffer): Likewise.
570 * ax-gdb.c (gen_static_field): Likewise for the call to
571 lookup_symbol.
a5fdf78a 572 (gen_maybe_namespace_elt): Deal with struct block_symbol from
d12307c1
PMR
573 lookup functions.
574 (gen_expr): Likewise.
575 * c-exp.y: Likewise. Remove uses of block_found.
576 (lex_one_token, classify_inner_name, c_print_token): Likewise.
577 (classify_name): Likewise. Rename the "sym" local variable to
578 "bsym".
579 * c-valprint.c (print_unpacked_pointer): Likewise.
580 * compile/compile-c-symbols.c (convert_symbol_sym): Promote the
581 "sym" parameter from struct symbol * to struct block_symbol.
582 Use it to remove uses of block_found. Deal with struct
a5fdf78a 583 block_symbol from lookup functions.
d12307c1
PMR
584 (gcc_convert_symbol): Likewise. Update the call to
585 convert_symbol_sym.
586 * compile/compile-object-load.c (compile_object_load): Deal with
a5fdf78a 587 struct block_symbol from lookup functions.
d12307c1
PMR
588 * cp-namespace.c (cp_lookup_nested_symbol_1,
589 cp_lookup_nested_symbol, cp_lookup_bare_symbol,
590 cp_search_static_and_baseclasses,
591 cp_lookup_symbol_in_namespace, cp_lookup_symbol_via_imports,
592 cp_lookup_symbol_imports_or_template,
593 cp_lookup_symbol_via_all_imports, cp_lookup_symbol_namespace,
594 lookup_namespace_scope, cp_lookup_nonlocal,
a5fdf78a
PMR
595 find_symbol_in_baseclass): Return struct block_symbol instead of
596 mere symbols and deal with struct block_symbol from lookup
d12307c1
PMR
597 functions.
598 * cp-support.c (inspect_type, replace_typedefs,
a5fdf78a 599 cp_lookup_rtti_type): Deal with struct block_symbol from
d12307c1
PMR
600 lookup functions.
601 * cp-support.h (cp_lookup_symbol_nonlocal,
602 cp_lookup_symbol_from_namespace,
603 cp_lookup_symbol_imports_or_template, cp_lookup_nested_symbol):
a5fdf78a 604 Return struct block_symbol instead of mere symbols.
d12307c1
PMR
605 * d-exp.y (d_type_from_name, d_module_from_name, push_variable,
606 push_module_name):
a5fdf78a 607 Deal with struct block_symbol from lookup functions. Remove
d12307c1
PMR
608 uses of block_found.
609 * eval.c (evaluate_subexp_standard): Update call to
610 cp_lookup_symbol_namespace.
a5fdf78a
PMR
611 * f-exp.y: Deal with struct block_symbol from lookup functions.
612 Remove uses of block_found.
d12307c1
PMR
613 (yylex): Likewise.
614 * gdbtypes.c (lookup_typename, lookup_struct, lookup_union,
615 lookup_enum, lookup_template_type, check_typedef): Deal with
a5fdf78a 616 struct block_symbol from lookup functions.
d12307c1
PMR
617 * guile/scm-frame.c (gdbscm_frame_read_var): Likewise.
618 * guile/scm-symbol.c (gdbscm_lookup_symbol): Likewise.
619 (gdbscm_lookup_global_symbol): Likewise.
620 * gnu-v3-abi.c (gnuv3_get_typeid_type): Likewise.
621 * go-exp.y: Likewise. Remove uses of block_found.
622 (package_name_p, classify_packaged_name, classify_name):
623 Likewise.
624 * infrun.c (insert_exception_resume_breakpoint): Likewise.
625 * jv-exp.y (push_variable): Likewise.
626 * jv-lang.c (java_lookup_class, get_java_object_type): Likewise.
627 * language.c (language_bool_type): Likewise.
628 * language.h (struct language_defn): Update
a5fdf78a
PMR
629 la_lookup_symbol_nonlocal to return a struct block_symbol rather
630 than a mere symbol.
631 * linespec.c (find_label_symbols): Deal with struct block_symbol
632 from lookup functions.
d12307c1
PMR
633 * m2-exp.y: Likewise. Remove uses of block_found.
634 (yylex): Likewise.
635 * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
636 * objc-lang.c (lookup_struct_typedef, find_imps): Likewise.
637 * p-exp.y: Likewise. Remove uses of block_found.
638 (yylex): Likewise.
639 * p-valprint.c (pascal_val_print): Likewise.
640 * parse.c (write_dollar_variable): Likewise. Remove uses of
641 block_found.
642 * parser-defs.h (struct symtoken): Turn the SYM field into a
a5fdf78a
PMR
643 struct block_symbol.
644 * printcmd.c (address_info): Deal with struct block_symbol from
645 lookup functions.
d12307c1
PMR
646 * python/py-frame.c (frapy_read_var): Likewise.
647 * python/py-symbol.c (gdbpy_lookup_symbol,
648 gdbpy_lookup_global_symbol): Likewise.
649 * skip.c (skip_function_command): Likewise.
650 * solib-darwin.c (darwin_lookup_lib_symbol): Return a struct
a5fdf78a 651 block_symbol instead of a mere symbol.
d12307c1
PMR
652 * solib-spu.c (spu_lookup_lib_symbol): Likewise.
653 * solib-svr4.c (elf_lookup_lib_symbol): Likewise.
654 * solib.c (solib_global_lookup): Likewise.
655 * solist.h (solib_global_lookup): Likewise.
656 (struct target_so_ops): Update lookup_lib_global_symbol to
a5fdf78a
PMR
657 return a struct block_symbol rather than a mere symbol.
658 * source.c (select_source_symtab): Deal with struct block_symbol
659 from lookup functions.
d12307c1
PMR
660 * stack.c (print_frame_args, iterate_over_block_arg_vars):
661 Likewise.
662 * symfile.c (set_initial_language): Likewise.
663 * symtab.c (SYMBOL_LOOKUP_FAILED): Turn into a struct
a5fdf78a 664 block_symbol.
d12307c1
PMR
665 (SYMBOL_LOOKUP_FAILED_P): New predicate as a macro.
666 (struct symbol_cache_slot): Turn the FOUND field into a struct
a5fdf78a 667 block_symbol.
d12307c1 668 (block_found): Remove.
a5fdf78a 669 (eq_symbol_entry): Update to deal with struct block_symbol in
d12307c1 670 cache slots.
a5fdf78a
PMR
671 (symbol_cache_lookup): Return a struct block_symbol rather than
672 a mere symbol.
d12307c1
PMR
673 (symbol_cache_mark_found): Add a BLOCK parameter to fill
674 appropriately the cache slots. Update callers.
675 (symbol_cache_dump): Update cache slots handling to the type
676 change.
677 (lookup_symbol_in_language, lookup_symbol, lookup_language_this,
678 lookup_symbol_aux, lookup_local_symbol,
679 lookup_symbol_in_objfile, lookup_global_symbol_from_objfile,
680 lookup_symbol_in_objfile_symtabs,
681 lookup_symbol_in_objfile_from_linkage_name,
682 lookup_symbol_via_quick_fns, basic_lookup_symbol_nonlocal,
683 lookup_symbol_in_static_block, lookup_static_symbol,
684 lookup_global_symbol):
a5fdf78a
PMR
685 Return a struct block_symbol rather than a mere symbol. Deal
686 with struct block_symbol from other lookup functions. Remove
d12307c1
PMR
687 uses of block_found.
688 (lookup_symbol_in_block): Remove uses of block_found.
689 (struct global_sym_lookup_data): Turn the RESULT field into a
a5fdf78a 690 struct block_symbol.
d12307c1
PMR
691 (lookup_symbol_global_iterator_cb): Update references to the
692 RESULT field.
a5fdf78a 693 (search_symbols): Deal with struct block_symbol from lookup
d12307c1 694 functions.
a5fdf78a 695 * symtab.h (struct block_symbol): New structure.
d12307c1
PMR
696 (block_found): Remove.
697 (lookup_symbol_in_language, lookup_symbol,
698 basic_lookup_symbol_nonlocal, lookup_symbol_in_static_block,
a5fdf78a
PMR
699 lookup_static_symbol, lookup_global_symbol, lookup_language_this,
700 lookup_global_symbol_from_objfile): Return a struct block_symbol
701 rather than just a mere symbol. Update comments to remove
702 mentions of block_found.
d12307c1
PMR
703 * valops.c (find_function_in_inferior,
704 value_struct_elt_for_reference, value_maybe_namespace_elt,
a5fdf78a 705 value_of_this): Deal with struct block_symbol from lookup
d12307c1
PMR
706 functions.
707 * value.c (value_static_field, value_fn_field): Likewise.
708
b1c59ddc
SM
7092015-07-31 Simon Marchi <simon.marchi@ericsson.com>
710
711 * remote-m32r-sdi.c (m32r_remove_watchpoint): Use enum type
712 instead of integer.
713
f486487f 7142015-07-31 Simon Marchi <simon.marchi@ericsson.com>
84da3f0c 715 Pedro Alves <palves@redhat.com>
f486487f
SM
716
717 * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): Use enum
718 type or value instead of integer.
719 (aarch64_linux_insert_watchpoint): Likewise.
720 (aarch64_linux_remove_watchpoint): Likewise.
721 * ada-lang.c (ada_op_print_tab): Likewise.
722 * amd64-linux-tdep.c (amd64_canonicalize_syscall): Likewise.
723 (amd64_linux_syscall_record_common): Likewise.
724 * arch-utils.c (target_byte_order_user): Likewise.
725 (default_byte_order): Likewise.
726 * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Likewise.
727 (arm_linux_get_hwbp_type): Likewise.
728 (arm_linux_hw_watchpoint_initialize): Likewise.
729 (arm_linux_insert_watchpoint): Likewise.
730 * arm-linux-tdep.c (arm_canonicalize_syscall): Likewise.
731 (arm_linux_syscall_record): Likewise.
732 * breakpoint.c (update_watchpoint): Likewise.
733 (breakpoint_here_p): Likewise.
734 (bpstat_print): Likewise.
735 (enable_breakpoint_disp): Likewise.
736 * c-lang.c (c_op_print_tab): Likewise.
737 * cli/cli-decode.c (add_info_alias): Likewise.
738 * d-lang.c (d_op_print_tab): Likewise.
739 * eval.c (evaluate_subexp_standard): Likewise.
740 * f-exp.y (dot_ops): Likewise.
741 (f77_keywords): Likewise.
742 * f-lang.c (f_op_print_tab): Likewise.
743 * go-lang.c (go_op_print_tab): Likewise.
744 * guile/scm-breakpoint.c (gdbscm_make_breakpoint): Likewise.
745 * guile/scm-cmd.c (gdbscm_make_command): Likewise.
746 * guile/scm-param.c (gdbscm_make_parameter): Likewise.
747 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): Likewise.
748 * guile/scm-string.c (struct scm_to_stringn_data): Likewise.
749 (struct scm_from_stringn_data): Likewise.
750 * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
751 * ia64-linux-nat.c (ia64_linux_insert_watchpoint): Likewise.
752 (ia64_linux_remove_watchpoint): Likewise.
753 (ia64_linux_can_use_hw_breakpoint): Likewise.
754 * infrun.c (print_stop_event): Likewise.
755 * jv-lang.c (java_op_print_tab): Likewise.
756 * linux-nat.c (linux_proc_xfer_partial): Likewise.
757 * linux-nat.h (struct lwp_info): Likewise.
758 * linux-thread-db.c (enable_thread_event): Likewise.
759 * m2-lang.c (m2_op_print_tab): Likewise.
760 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Likewise.
761 (mi_cmd_stack_list_variables): Likewise.
762 * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise.
763 * mi/mi-out.c (mi_table_begin): Likewise.
764 (mi_table_header): Likewise.
765 * mips-linux-nat.c (mips_linux_can_use_hw_breakpoint): Likewise.
766 (mips_linux_insert_watchpoint): Likewise.
767 (mips_linux_remove_watchpoint): Likewise.
768 * nat/mips-linux-watch.c (mips_linux_watch_type_to_irw): Likewise.
769 * nat/mips-linux-watch.h (struct mips_watchpoint): Likewise.
770 (mips_linux_watch_type_to_irw): Likewise.
771 * nto-procfs.c (procfs_can_use_hw_breakpoint): Likewise.
772 (procfs_insert_hw_watchpoint): Likewise.
773 (procfs_remove_hw_watchpoint): Likewise.
774 (procfs_hw_watchpoint): Likewise.
775 (procfs_can_use_hw_breakpoint): Likewise.
776 (procfs_remove_hw_watchpoint): Likewise.
777 (procfs_insert_hw_watchpoint): Likewise.
778 * p-lang.c (pascal_op_print_tab): Likewise.
779 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): Likewise.
780 * ppc-linux-tdep.c (ppu2spu_unwind_register): Likewise.
781 * ppc-sysv-tdep.c (get_decimal_float_return_value): Likewise.
782 * procfs.c (procfs_can_use_hw_breakpoint): Likewise.
783 (procfs_insert_watchpoint): Likewise.
784 (procfs_remove_watchpoint): Likewise.
785 * psymtab.c (recursively_search_psymtabs): Likewise.
786 * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint): Likewise.
787 (m32r_insert_watchpoint): Likewise.
788 * remote-mips.c (mips_can_use_watchpoint): Likewise.
789 (mips_insert_watchpoint): Likewise.
790 (mips_remove_watchpoint): Likewise.
791 * remote.c (watchpoint_to_Z_packet): Likewise.
792 (remote_insert_watchpoint): Likewise.
793 (remote_remove_watchpoint): Likewise.
794 (remote_check_watch_resources): Likewise.
795 * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
796 (s390_remove_watchpoint): Likewise.
797 (s390_can_use_hw_breakpoint): Likewise.
798 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
799 * spu-linux-nat.c (spu_can_use_hw_breakpoint): Likewise.
800 * target.h (struct target_ops): Likewise.
801 * tilegx-tdep.c (tilegx_analyze_prologue): Likewise.
802 * ui-out.c (struct ui_out_hdr): Likewise.
803 (append_header_to_list): Likewise.
804 (get_next_header): Likewise.
805 (verify_field): Likewise.
806 (ui_out_begin): Likewise.
807 (ui_out_field_int): Likewise.
808 (ui_out_field_fmt_int): Likewise.
809 (ui_out_field_skip): Likewise.
810 (ui_out_field_string): Likewise.
811 (ui_out_field_fmt): Likewise.
812 * varobj.c (new_variable): Likewise.
813 * x86-nat.c (x86_insert_watchpoint): Likewise.
814 (x86_remove_watchpoint): Likewise.
815 (x86_can_use_hw_breakpoint): Likewise.
816 * xtensa-tdep.h (struct gdbarch_tdep): Likewise.
817 * inflow.c (enum gdb_has_a_terminal_flag_enum): Add name to
818 previously anonymous enumeration type..
819 * linux-record.h (enum gdb_syscall): Add gdb_sys_no_syscall
820 value.
821 * target-debug.h (target_debug_print_enum_target_hw_bp_type): New.
822 (target_debug_print_enum_bptype): New.
823 * target-delegates.c: Regenerate.
824
e1b5381f
SL
8252015-07-30 Sandra Loosemore <sandra@codesourcery.com>
826
827 * nios2-tdep.c (nios2_analyze_prologue): Do what the comment
828 already says and disallow non-stack memory writes in the prologue.
829
9aaf8e3a
SL
8302015-07-30 Sandra Loosemore <sandra@codesourcery.com>
831
832 * nios2-tdep.c (nios2_analyze_prologue): Update comments to
833 reflect how current GCC emits stack overflow checks. Match
834 both trap and break instructions for backward compatbility.
835 Disallow other trap and break instructions in the prologue.
836
69dde7dc
PA
8372015-07-30 Pedro Alves <palves@redhat.com>
838
839 PR threads/18600
840 * linux-nat.c (wait_lwp): Report to the core when thread group
841 leader exits.
842
4dd63d48
PA
8432015-07-30 Pedro Alves <palves@redhat.com>
844 Simon Marchi <simon.marchi@ericsson.com>
845
846 PR threads/18600
847 * linux-nat.c (linux_handle_extended_wait): On CLONE event, always
848 mark the new thread as resumed. Remove STOPPING parameter.
849 (wait_lwp): Adjust call to linux_handle_extended_wait.
850 (linux_nat_filter_event): Adjust call to
851 linux_handle_extended_wait.
852 (resume_stopped_resumed_lwps): Add debug output.
853
6b940e6a
PL
8542015-07-30 Pierre Langlois <pierre.langlois@arm.com>
855
856 * arch-utils.c (default_fast_tracepoint_valid_at): Remove unused
857 isize argument.
858 * arch-utils.h (default_fast_tracepoint_valid_at): Likewise.
859 * breakpoint.c (check_fast_tracepoint_sals): Adjust call to
860 gdbarch_fast_tracepoint_valid_at.
861 * gdbarch.sh (fast_tracepoint_valid_at): Remove isize argument.
862 * gdbarch.h: Regenerate.
863 * gdbarch.c: Regenerate.
864 * i386-tdep.c (i386_fast_tracepoint_valid_at): Remove isize
865 argument. Do not set it.
866 * remote.c (remote_download_tracepoint): Adjust call to
867 gdbarch_fast_tracepoint_valid_at. Call gdb_insn_length to get
868 the instruction length.
869
ec741292
YQ
8702015-07-30 Yao Qi <yao.qi@linaro.org>
871
872 * arm-tdep.h (enum gdb_regnum): Move it to ...
873 * arch/arm.h: ... here. New file.
874 * Makefile.in (HFILES_NO_SRCDIR): Add arch/arm.h.
875
0ea6402e
PL
8762015-07-30 Pierre Langlois <pierre.langlois@arm.com>
877
878 * aarch64-tdep.c (decode_b): Rename link argument to is_bl.
879 Change its type to int *.
880 (decode_br): Rename link argument to is_blr. Change its type to
881 int *.
882 (decode_cb): Rename op argument to is_cbnz. Change its type to
883 int *.
884 (decode_tb): Rename op argument to is_tbnz. Change its type to
885 int *. Set is_tbnz to either 1 or 0.
886 (aarch64_analyze_prologue): Change type of is_link to int. Add
887 new variables is_cbnz and is_tbnz. Adjust call to
888 aarch64_decode_cb and aarch64_decode_tb.
889
aa58a496
SM
8902015-07-29 Simon Marchi <simon.marchi@ericsson.com>
891
892 * mips-linux-nat.c (write_watchpoint_regs): Add NULL as ptrace's 4th
893 parameter.
894 (mips_linux_new_thread): Likewise.
895 * nat/mips-linux-watch.c (mips_linux_read_watch_registers): Likewise.
896
18206ca3
PP
8972015-07-29 Patrick Palka <patrick@parcs.ath.cx>
898
899 * top.c: Include "tui/tui.h".
900 (undo_terminal_modifications_before_exit): New static function.
901 (quit_force): Use it.
902
7afa63c6
PP
9032015-07-29 Patrick Palka <patrick@parcs.ath.cx>
904
905 * target.c (terminal_state): Initialize to terminal_is_ours.
906
cc9f16aa
YQ
9072015-07-29 Yao Qi <yao.qi@linaro.org>
908
909 PR record/18691
910 * dcache.c (dcache_read_memory_partial): Call
911 raw_memory_xfer_partial.
912 * target.c (raw_memory_xfer_partial): Make it non-static.
913 * target.h (raw_memory_xfer_partial): Declare.
914
3ae385af
SM
9152015-07-28 Simon Marchi <simon.marchi@ericsson.com>
916
917 * c-valprint.c (c_val_print_array): Consider addressable memory
918 unit size.
919 (c_val_print_ptr): Likewise.
920 (c_val_print_int): Likewise.
921 * findvar.c (read_frame_register_value): Likewise.
922 * valarith.c (find_size_for_pointer_math): Likewise.
923 (value_ptrdiff): Likewise.
924 (value_subscripted_rvalue): Likewise.
925 * valops.c (read_value_memory): Likewise (and rename variables).
926 (value_assign): Likewise.
927 (value_repeat): Likewise.
928 (value_array): Likewise.
929 (value_slice): Likewise.
930 * valprint.c (generic_val_print_ptr): Likewise.
931 (generic_val_print_enum): Likewise.
932 (generic_val_print_bool): Likewise.
933 (generic_val_print_int): Likewise.
934 (generic_val_print_char): Likewise.
935 (generic_val_print_float): Likewise.
936 (generic_val_print_decfloat): Likewise.
937 (generic_val_print_complex): Likewise.
938 (val_print_scalar_formatted): Likewise.
939 (val_print_array_elements): Likewise.
940 * value.c (set_value_parent): Likewise.
941 (value_contents_copy_raw): Likewise.
942 (set_internalvar_component): Likewise.
943 (value_primitive_field): Likewise.
944 (value_fetch_lazy): Likewise.
945 * value.h (read_value_memory): Update comment.
946
e512cdbd
SM
9472015-07-28 Simon Marchi <simon.marchi@ericsson.com>
948
949 * value.c (get_value_arch): New function.
950 * value.h (get_value_arch): New declaration.
951
3723fda8
SM
9522015-07-28 Simon Marchi <simon.marchi@ericsson.com>
953
954 * value.c (struct value): Update comments.
955
2e056931
SM
9562015-07-28 Simon Marchi <simon.marchi@ericsson.com>
957
958 * gdbtypes.c (type_length_units): New function.
959 * gdbtypes.h (type_length_units): New declaration.
960 (struct type) <length>: Update comment.
961
0c87c0bf
SM
9622015-07-27 Simon Marchi <simon.marchi@ericsson.com>
963
964 * valprint.c (generic_val_print): Factor out complex
965 printing code to ...
966 (generic_val_print_complex): ... this new function.
967
9550ae5e
SM
9682015-07-27 Simon Marchi <simon.marchi@ericsson.com>
969
970 * valprint.c (generic_val_print): Factor out decfloat
971 printing code to ...
972 (generic_val_print_decfloat): ... this new function.
973
7784724b
SM
9742015-07-27 Simon Marchi <simon.marchi@ericsson.com>
975
976 * valprint.c (generic_val_print): Factor out float
977 printing code to ...
978 (generic_val_print_float): ... this new function.
979
385f5aff
SM
9802015-07-27 Simon Marchi <simon.marchi@ericsson.com>
981
982 * valprint.c (generic_val_print): Factor out char
983 printing code to ...
984 (generic_val_print_char): ... this new function.
985
b21b6342
SM
9862015-07-27 Simon Marchi <simon.marchi@ericsson.com>
987
988 * valprint.c (generic_val_print): Factor out integer
989 printing code to ...
990 (generic_val_print_int): ... this new function.
991
e5bead4b
SM
9922015-07-27 Simon Marchi <simon.marchi@ericsson.com>
993
994 * valprint.c (generic_val_print): Factor out bool
995 printing code to ...
996 (generic_val_print_bool): ... this new function.
997
4a8c372f
SM
9982015-07-27 Simon Marchi <simon.marchi@ericsson.com>
999
1000 * valprint.c (generic_val_print): Factor out function/method
1001 printing code to ...
1002 (generic_val_print_func): ... this new function.
1003
d93880bd
SM
10042015-07-27 Simon Marchi <simon.marchi@ericsson.com>
1005
1006 * valprint.c (generic_val_print): Factor out flags
1007 printing code to ...
1008 (generic_val_print_flags): ... this new function.
1009
ef0bc0dd
SM
10102015-07-27 Simon Marchi <simon.marchi@ericsson.com>
1011
1012 * valprint.c (generic_val_print): Factor out enum
1013 printing code to ...
1014 (generic_val_print_enum): ... this new function.
1015
fe43fede
SM
10162015-07-27 Simon Marchi <simon.marchi@ericsson.com>
1017
1018 * valprint.c (generic_val_print): Factor out reference
1019 printing code to ...
1020 (generic_val_print_ref): ... this new function.
1021
45000ea2
SM
10222015-07-27 Simon Marchi <simon.marchi@ericsson.com>
1023
1024 * valprint.c (generic_val_print): Factor out memberptr
1025 printing code to ...
1026 (generic_val_print_memberptr): ... this new function.
1027
81eb921a
SM
10282015-07-27 Simon Marchi <simon.marchi@ericsson.com>
1029
1030 * valprint.c (generic_val_print): Factor out pointer
1031 printing code to ...
1032 (generic_val_print_ptr): ... this new function.
1033
557dbe8a
SM
10342015-07-27 Simon Marchi <simon.marchi@ericsson.com>
1035
1036 * valprint.c (generic_val_print): Factor out array
1037 printing code to ...
1038 (generic_val_print_array): ... this new function.
1039
9f436164
SM
10402015-07-27 Simon Marchi <simon.marchi@ericsson.com>
1041
1042 * valprint.c (generic_val_print): Factor out
1043 print_unpacked_pointer code to ...
1044 (print_unpacked_pointer): ... this new function.
1045
077836f7
PP
10462015-07-27 Patrick Palka <patrick@parcs.ath.cx>
1047
1048 * event-top.c (handle_sigterm): Don't inspect
1049 target_can_async_p. Always set the quit flag and always mark
1050 the async signal handler.
1051
3a60804f
YQ
10522015-07-27 Yao Qi <yao.qi@linaro.org>
1053
1054 * Makefile.in (REMOTE_EXAMPLES): Remove it.
1055
c9f35b34
KB
10562015-07-25 Kevin Buettner <kevinb@redhat.com>
1057
1058 * remote.c (read_ptid): Return null_ptid when no thread id
1059 is found.
1060 (remote_current_thread): Add log warning for malformed
1061 qC reply.
1062 (remote_start_remote): Add log warning when current thread
1063 not found.
1064
2b4cab86
PA
10652015-07-24 Pedro Alves <palves@redhat.com>
1066
1067 * s390-linux-nat.c (fetch_regs, store_regs, fetch_fpregs)
1068 (s390_stopped_by_watchpoint, s390_prepare_to_resume): Pass 0 as
1069 forth argument to ptrace PTRACE_PEEKUSR_AREA/PTRACE_POKEUSR_AREA.
1070
77598427
PA
10712015-07-24 Pedro Alves <palves@redhat.com>
1072
1073 PR gdb/18717
1074 * linux-nat.c (linux_nat_filter_event): Don't assert that the lwp
1075 is resumed, and extend the debug log.
1076
fe23c31f
PA
10772015-07-24 Pedro Alves <palves@redhat.com>
1078
1079 * fork-child.c (fork_inferior): Print argv[0] instead of exec_file.
1080
5826e159
PA
10812015-07-24 Pedro Alves <palves@redhat.com>
1082
1083 * aarch64-linux-nat.c: Include nat/gdb_ptrace.h instead of
1084 sys/ptrace.h.
1085 * alpha-linux-nat.c: Likewise.
1086 * amd64-linux-nat.c: Likewise.
1087 * arm-linux-nat.c: Likewise.
1088 * hppa-linux-nat.c: Likewise.
1089 * i386-linux-nat.c: Likewise.
1090 * ia64-linux-nat.c: Likewise.
1091 * linux-fork.c: Likewise.
1092 * linux-nat.c: Likewise.
1093 * m32r-linux-nat.c: Likewise.
1094 * m68klinux-nat.c: Likewise.
1095 * mips-linux-nat.c: Likewise.
1096 * nat/linux-btrace.c: Likewise.
1097 * nat/linux-ptrace.c: Likewise.
1098 * nat/linux-ptrace.h
1099 * nat/mips-linux-watch.c: Likewise.
1100 * nat/x86-linux-dregs.c: Likewise.
1101 * ppc-linux-nat.c: Likewise.
1102 * s390-linux-nat.c: Likewise.
1103 * spu-linux-nat.c: Likewise.
1104 * tilegx-linux-nat.c: Likewise.
1105 * x86-linux-nat.c: Likewise.
1106 * xtensa-linux-nat.c: Likewise.
1107
54019719
PA
11082015-07-24 Pedro Alves <palves@redhat.com>
1109
1110 * ptrace.m4 (ptrace tests): Test in C++ mode. Try with 'enum
1111 __ptrace_request as first parameter type instead of int.
1112 (PTRACE_TYPE_ARG1): Define.
1113 * nat/gdb_ptrace.h [!PTRACE_TYPE_ARG5] (ptrace): Define as wrapper
1114 that casts first argument to PTRACE_TYPE_ARG1.
1115 * config.in: Regenerate.
1116 * configure: Regenerate.
1117
e3790375
PA
11182015-07-24 Pedro Alves <palves@redhat.com>
1119
1120 * gdb_ptrace.h: Move ...
1121 * nat/gdb_ptrace.h: ... here.
1122 * inf-ptrace.c: Adjust.
1123
eb7aa561
PA
11242015-07-24 Pedro Alves <palves@redhat.com>
1125
1126 * acinclude.m4: Include ptrace.m4.
1127 * configure.ac: Call GDB_AC_PTRACE and move ptrace checks ...
1128 * ptrace.m4: ... to this new file.
1129
cc12ce38
DE
11302015-07-23 Doug Evans <dje@google.com>
1131
1132 * dwarf2read.c (dwarf2_per_cu_data): Add comment.
1133 (load_cu): Handle dummy CUs.
1134 (dw2_do_instantiate_symtab, process_queuef): Ditto.
1135 (dwarf2_fetch_die_loc_sect_off, dwarf2_fetch_constant_bytes): Ditto.
1136
7b849db4
CS
11372015-07-23 Ciro Santilli <ciro.santilli@gmail.com> (tiny patch)
1138
1139 * py-linetable.c (ltpy_get_all_source_lines): Adjust function
1140 documentation to say that it returns a list rather than
1141 a FrozenSet.
1142 (linetable_object_methods): Update the docstring of the
1143 "source_line" entry.
1144
d0d84780
PMR
11452015-07-23 Pierre-Marie de Rodat <derodat@adacore.com>
1146
1147 * gdbtypes.c (resolve_dynamic_array): Pass the peeled element
1148 type to the recursive call instead of the original (maybe
1149 TYPE_CODE_TYPEDEF) type.
1150
c2fbdc59
YQ
11512015-07-23 Yao Qi <yao.qi@linaro.org>
1152
1153 * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): If
1154 TYPE is watchpoint, return zero if aarch64_num_wp_regs is zero.
1155 If TYPE is breakpoint, return zero if arch64_num_bp_regs is zero.
1156
af1b22f3
YQ
11572015-07-21 Yao Qi <yao.qi@linaro.org>
1158
1159 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
1160 Move it to nat/aarch64-linux-hw-point.c.
1161 (aarch64_linux_child_post_startup_inferior): Update.
1162 * nat/aarch64-linux-hw-point.c (aarch64_linux_get_debug_reg_capacity):
1163 New function.
1164 * nat/aarch64-linux-hw-point.h (aarch64_linux_get_debug_reg_capacity):
1165 Declare it.
1166
40e050d2
MM
11672015-07-21 Markus Metzger <markus.t.metzger@intel.com>
1168
1169 * common/btrace-common.c (btrace_data_append): Change case label.
1170
3675a06a
YQ
11712015-07-20 Yao Qi <yao.qi@linaro.org>
1172
1173 * nat/aarch64-linux-hw-point.c (aarch64_handle_unaligned_watchpoint):
1174 Re-indent the code.
1175 * nat/aarch64-linux-hw-point.h: Use ULONGEST rather than
1176 "unsigned long long".
1177
b4e1fd61
KB
11782015-07-18 Kevin Buettner <kevinb@redhat.com>
1179
1180 * dwarf2read.c (dwarf2_locate_sections): Allow has_section_at_zero
1181 to be set for SEC_ALLOC sections too.
1182
554717a3
YQ
11832015-07-17 Yao Qi <yao.qi@linaro.org>
1184
1185 * Makefile.in (HFILES_NO_SRCDIR): Add
1186 nat/aarch64-linux-hw-point.h.
1187 (aarch64-linux-hw-point.o): New rule.
1188 * nat/aarch64-linux-hw-point.h: New file.
1189 * nat/aarch64-linux-hw-point.c: New file.
1190 * aarch64-linux-nat.c: Include nat/aarch64-linux-hw-point.h.
1191 (AARCH64_HBP_MAX_NUM): Move to nat/aarch64-linux-hw-point.h.
1192 (AARCH64_HWP_MAX_NUM, AARCH64_HBP_ALIGNMENT): Likewise.
1193 (AARCH64_HWP_ALIGNMENT): Likewise.
1194 (AARCH64_HWP_MAX_LEN_PER_REG): Likewise.
1195 (AARCH64_DEBUG_NUM_SLOTS, AARCH64_DEBUG_ARCH): Likewise.
1196 (AARCH64_DEBUG_ARCH_V8, DR_MARK_ALL_CHANGED): Likewise.
1197 (DR_MARK_N_CHANGED, DR_CLEAR_CHANGED): Likewise.
1198 (DR_HAS_CHANGED, DR_N_HAS_CHANGE): Likewise.
1199 (aarch64_num_bp_regs, aarch64_num_wp_regs): Likewise.
1200 (struct aarch64_debug_reg_state): Likewise.
1201 (struct arch_lwp_info): Likewise.
1202 (aarch64_linux_set_debug_regs): Likewise.
1203 (aarch64_notify_debug_reg_change): Remove static.
1204 (aarch64_align_watchpoint): Likewise.
1205 (DR_CONTROL_ENABLED, DR_CONTROL_LENGTH): Likewise.
1206 (aarch64_watchpoint_length): Likewise.
1207 (aarch64_point_encode_ctrl_reg): Likewise
1208 (aarch64_point_is_aligned): Likewise.
1209 (aarch64_dr_state_insert_one_point): Likewise.
1210 (aarch64_dr_state_remove_one_point): Likewise.
1211 (aarch64_handle_breakpoint): Likewise.
1212 (aarch64_handle_aligned_watchpoint): Likewise.
1213 (aarch64_handle_unaligned_watchpoint): Likewise.
1214 (aarch64_handle_watchpoint): Likewise.
1215 * config/aarch64/linux.mh (NAT_FILE): Add
1216 aarch64-linux-hw-point.o.
1217
c67ca4de
YQ
12182015-07-17 Yao Qi <yao.qi@linaro.org>
1219
1220 * aarch64-linux-nat.c (aarch64_handle_breakpoint): Add argument
1221 state and don't call aarch64_get_debug_reg_state. All callers
1222 update.
1223 (aarch64_linux_insert_hw_breakpoint): Call
1224 aarch64_get_debug_reg_state earlier.
1225 (aarch64_linux_remove_hw_breakpoint): Likewise.
1226 (aarch64_handle_aligned_watchpoint): Add argument state and
1227 don't call aarch64_get_debug_reg_state. All callers update.
1228 (aarch64_handle_unaligned_watchpoint): Likewise.
1229 (aarch64_handle_watchpoint): Add argument state.
1230 (aarch64_linux_insert_watchpoint): Call aarch64_get_debug_reg_state
1231 earlier.
1232 (aarch64_linux_remove_watchpoint): Likewise.
1233
25abf979
YQ
12342015-07-17 Yao Qi <yao.qi@linaro.org>
1235
1236 * aarch64-linux-nat.c (aarch64_show_debug_reg_state): Use
1237 debug_printf.
1238 (aarch64_handle_unaligned_watchpoint): Likewise.
1239
2ecd81c2
YQ
12402015-07-17 Yao Qi <yao.qi@linaro.org>
1241
1242 * aarch64-linux-nat.c (aarch64_dr_state_insert_one_point): Change
1243 argument type's type to 'enum target_hw_bp_type'.
1244 (aarch64_dr_state_remove_one_point): Likewise.
1245 (aarch64_handle_breakpoint): Likewise.
1246 (aarch64_linux_insert_hw_breakpoint): Likewise.
1247 (aarch64_linux_remove_hw_breakpoint): Likewise.
1248 (aarch64_handle_aligned_watchpoint): Likewise.
1249
e53b6938
YQ
12502015-07-17 Yao Qi <yao.qi@linaro.org>
1251
1252 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Call
1253 ptid_get_pid instead of get_thread_id.
1254
6a49a997
YQ
12552015-07-17 Yao Qi <yao.qi@linaro.org>
1256
1257 * remote.c (get_current_thread): Initialise ptid to null_ptid.
1258 (add_current_inferior_and_thread): Don't initialise ptid.
1259
4bcddace
PL
12602015-07-16 Pierre Langlois <pierre.langlois@arm.com>
1261
1262 * aarch64-tdep.c (aarch64_pseudo_read_value): Mark S register as
1263 unavailable if invalid.
1264
db1ff28b
JK
12652015-07-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1266
1267 Revert the previous 6 commits:
1268 Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
1269 Move gdb_regex* to common/
1270 Prepare linux_find_memory_regions_full & co. for move
1271 Move linux_find_memory_regions_full & co.
1272 gdbserver build-id attribute generator
1273 Validate symbol file using build-id
1274
ca5268b6
JK
12752015-07-15 Aleksandar Ristovski <aristovski@qnx.com
1276 Jan Kratochvil <jan.kratochvil@redhat.com>
1277
1278 Validate symbol file using build-id.
1279 * NEWS (Changes since GDB 7.10): Add 'set validate-build-id'
1280 and 'show validate-build-id'. Add build-id attribute.
1281 * solib-darwin.c (_initialize_darwin_solib): Assign validate value.
1282 * solib-dsbt.c (_initialize_dsbt_solib): Ditto.
1283 * solib-frv.c (_initialize_frv_solib): Ditto.
1284 * solib-spu.c (set_spu_solib_ops): Ditto.
1285 * solib-svr4.c: Include rsp-low.h.
1286 (NOTE_GNU_BUILD_ID_NAME): New define.
1287 (svr4_validate): New function.
1288 (svr4_copy_library_list): Duplicate field build_id.
1289 (library_list_start_library): Parse 'build-id' attribute.
1290 (svr4_library_attributes): Add 'build-id' attribute.
1291 (_initialize_svr4_solib): Assign validate value.
1292 * solib-target.c (solib.h): Include.
1293 (_initialize_solib_target): Assign validate value.
1294 * solib.c (validate_build_id, show_validate_build_id): New.
1295 (solib_map_sections): Use ops->validate.
1296 (clear_so): Free build_id.
1297 (default_solib_validate): New function.
1298 (_initialize_solib): Add "validate-build-id".
1299 * solib.h (default_solib_validate): New declaration.
1300 * solist.h (struct so_list): New fields 'build_idsz' and 'build_id'.
1301 (target_so_ops): New field 'validate'.
1302
700ca40f
JK
13032015-07-15 Aleksandar Ristovski <aristovski@qnx.com
1304 Jan Kratochvil <jan.kratochvil@redhat.com>
1305
1306 gdbserver build-id attribute generator.
1307 * features/library-list-svr4.dtd (library-list-svr4): New
1308 'build-id' attribute.
1309
9904185c
JK
13102015-07-15 Aleksandar Ristovski <aristovski@qnx.com
1311 Jan Kratochvil <jan.kratochvil@redhat.com>
1312
1313 Move linux_find_memory_regions_full & co.
1314 * linux-tdep.c (nat/linux-maps.h): Include.
1315 (gdb_regex.h): Remove the include.
1316 (enum filterflags, struct smaps_vmflags, read_mapping, decode_vmflags)
1317 (mapping_is_anonymous_p, dump_mapping_p): Moved to nat/linux-maps.c.
1318 (linux_find_memory_region_ftype): Moved typedef to nat/linux-maps.h.
1319 (linux_find_memory_regions_full): Moved definition to nat/linux-maps.c.
1320 * nat/linux-maps.c: Include ctype.h, target/target-utils.h, gdb_regex.h
1321 and target/target.h.
1322 (struct smaps_vmflags, read_mapping, decode_vmflags)
1323 (mapping_is_anonymous_p, dump_mapping_p): Move from linux-tdep.c.
1324 (linux_find_memory_regions_full): Move from linux-tdep.c.
1325 * nat/linux-maps.h (read_mapping): New declaration.
1326 (linux_find_memory_region_ftype, enum filterflags): Moved from
1327 linux-tdep.c.
1328 (linux_find_memory_regions_full): New declaration.
1329 * target.c (target/target-utils.h): Include.
1330 (read_alloc_pread_ftype): Moved typedef to target/target-utils.h.
1331 (read_alloc, read_stralloc_func_ftype, read_stralloc): Moved
1332 definitions to target/target-utils.c.
1333 * target.h (target_fileio_read_stralloc): Move it to target/target.h.
1334 * target/target-utils.c (read_alloc, read_stralloc): Move definitions
1335 from target.c.
1336 * target/target-utils.h (read_alloc_pread_ftype): New typedef.
1337 (read_alloc): New declaration.
1338 (read_stralloc_func_ftype): New typedef.
1339 (read_stralloc): New declaration.
1340 * target/target.h (target_fileio_read_stralloc): Move it from target.h.
1341
f7af1fcd
JK
13422015-07-15 Aleksandar Ristovski <aristovski@qnx.com
1343 Jan Kratochvil <jan.kratochvil@redhat.com>
1344
1345 Prepare linux_find_memory_regions_full & co. for move.
1346 * linux-tdep.c (linux_find_memory_region_ftype): Comment.
1347 (linux_find_memory_regions_full): Change signature and prepare
1348 for moving to linux-maps.
1349 (linux_find_memory_regions_data): Rename field 'obfd' to 'data'.
1350 (linux_find_memory_regions_thunk): New.
1351 (linux_find_memory_regions_thunk): Use 'data' field instead of 'obfd'.
1352 (linux_find_memory_regions_gdb): New.
1353 (linux_find_memory_regions): Rename argument 'obfd' to 'func_data'.
1354 (linux_make_mappings_corefile_notes): Use
1355 linux_find_memory_regions_gdb.
1356 * target.c (read_alloc_pread_ftype): New typedef.
1357 (target_fileio_read_alloc_1_pread): New function.
1358 (read_alloc): Refactor from target_fileio_read_alloc_1.
1359 (read_stralloc_func_ftype): New typedef.
1360 (target_fileio_read_alloc_1): New implementation. Use read_alloc.
1361 (read_stralloc): Refactored from target_fileio_read_stralloc.
1362 (target_fileio_read_stralloc): New implementation, use read_stralloc.
1363
6e5b4429
JK
13642015-07-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1365
1366 * Makefile.in (HFILES_NO_SRCDIR): Change gdb_regex.h to
1367 common/gdb_regex.h.
1368 (COMMON_OBS): Add gdb_regex.o.
1369 (gdb_regex.o): New.
1370 * common/common.m4 (GDB_AC_COMMON): Add gdb_use_included_regex,
1371 --without-included-regex and USE_INCLUDED_REGEX.
1372 * common/gdb_regex.c: New file from utils.c functions.
1373 * common/gdb_regex.h: Move it here from gdb_regex.h, update include
1374 file wrapping define name.
1375 * configure: Rebuilt.
1376 * configure.ac (gdb_use_included_regex, --without-included-regex)
1377 (USE_INCLUDED_REGEX): Move them to common/common.m4.
1378 * gdb_regex.h: Move it to common/gdb_regex.h.
1379 * utils.c: Remove include gdb_regex.h.
1380 (do_regfree_cleanup, make_regfree_cleanup, get_regcomp_error)
1381 (compile_rx_or_error): Move them to common/gdb_regex.c.
1382
ddc98fbf
JK
13832015-07-15 Aleksandar Ristovski <aristovski@qnx.com
1384 Jan Kratochvil <jan.kratochvil@redhat.com>
1385
1386 Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
1387 * Makefile.in (HFILES_NO_SRCDIR); Add nat/linux-maps.h,
1388 common/target-utils.h.
1389 (COMMON_OBS): Add target-utils.o.
1390 (linux-maps.o, target-utils.o): New.
1391 * target/target-utils.c: New file.
1392 * target/target-utils.h: New file.
1393 * config/i386/linux.mh (NATDEPFILES): Add linux-maps.o.
1394 * config/i386/linux64.mh (NATDEPFILES): Ditto.
1395 * nat/linux-maps.c: New file.
1396 * nat/linux-maps.h: New file.
1397
e7b01ce0
MM
13982015-07-15 Markus Metzger <markus.t.metzger@intel.com>
1399 Pedro Alves <palves@redhat.com>
1400
1401 * nat/linux-btrace.c (perf_event_read): Change the type of DATA_HEAD.
1402 (perf_event_read_all): Change the type of SIZE and DATA_HEAD.
1403 (perf_event_read_bts): Change the type of SIZE and READ.
1404 (linux_enable_bts): Change the type of SIZE, PAGES, DATA_SIZE,
1405 and DATA_OFFSET. Move DATA_SIZE declaration. Restrict the buffer size
1406 to UINT_MAX. Check for overflows when using DATA_HEAD from the perf
1407 mmap page.
1408 (linux_enable_pt): Change the type of PAGES and SIZE. Restrict the
1409 buffer size to UINT_MAX.
1410 (linux_read_bts): Change the type of BUFFER_SIZE, SIZE, DATA_HEAD, and
1411 DATA_TAIL.
1412 * nat/linux-btrace.h (struct perf_event_buffer)<size, data_head>
1413 <last_head>: Change type.
1414 * common/btrace-common.h (struct btrace_dat_pt) <size>: Change type.
1415 * common/btrace-common.c (btrace_data_append): Change the type of
1416 SIZE.
1417 * btrace.c (parse_xml_raw): Change the type of SIZE. Change oddness
1418 check.
1419
f168693b
SM
14202015-07-14 Simon Marchi <simon.marchi@ericsson.com>
1421
1422 * gdbtypes.h (CHECK_TYPEDEF): Remove.
1423 * aarch64-tdep.c (aarch64_return_in_memory): Replace CHECK_TYPEDEF
1424 with check_typedef.
1425 * ada-lang.c (decode_constrained_packed_array_type): Likewise.
1426 (ada_array_length): Likewise.
1427 (find_parallel_type_by_descriptive_type): Likewise.
1428 (ada_check_typedef): Likewise.
1429 * arm-tdep.c (arm_return_in_memory): Likewise.
1430 * ax-gdb.c (gen_trace_static_fields): Likewise.
1431 (gen_struct_ref_recursive): Likewise.
1432 * c-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
1433 (variable: block COLONCOLON name): Likewise.
1434 (qualified_name: TYPENAME COLONCOLON name): Likewise.
1435 * c-lang.c (classify_type): Likewise.
1436 * c-typeprint.c (c_print_type): Likewise.
1437 (c_print_typedef): Likewise.
1438 (c_type_print_base): Likewise.
1439 * c-valprint.c (c_val_print): Likewise.
1440 * compile/compile-c-types.c (convert_type): Likewise.
1441 * compile/compile-object-load.c (get_out_value_type): Likewise.
1442 * completer.c (add_struct_fields): Likewise.
1443 (expression_completer): Likewise.
1444 * cp-namespace.c (cp_find_type_baseclass_by_name): Likewise.
1445 (cp_lookup_nested_symbol_1): Likewise.
1446 (cp_lookup_nested_symbol): Likewise.
1447 * cp-valprint.c (cp_print_value_fields): Likewise.
1448 (cp_print_static_field): Likewise.
1449 * d-valprint.c (d_val_print): Likewise.
1450 * eval.c (evaluate_subexp_standard): Likewise.
1451 (evaluate_subexp_for_sizeof): Likewise.
1452 * f-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
1453 * f-typeprint.c (f_type_print_base): Likewise.
1454 * f-valprint.c (f_val_print): Likewise.
1455 * gdbtypes.c (get_discrete_bounds): Likewise.
1456 (create_array_type_with_stride): Likewise.
1457 (type_name_no_tag_or_error): Likewise.
1458 (lookup_struct_elt_type): Likewise.
1459 (get_unsigned_type_max): Likewise.
1460 (internal_type_vptr_fieldno): Likewise.
1461 (set_type_vptr_fieldno): Likewise.
1462 (internal_type_vptr_basetype): Likewise.
1463 (set_type_vptr_basetype): Likewise.
1464 (get_vptr_fieldno): Likewise.
1465 (is_integral_type): Likewise.
1466 (is_scalar_type): Likewise.
1467 (is_scalar_type_recursive): Likewise.
1468 (distance_to_ancestor): Likewise.
1469 (is_unique_ancestor_worker): Likewise.
1470 (check_types_equal): Likewise.
1471 * gnu-v2-abi.c (gnuv2_value_rtti_type): Likewise.
1472
45280282
IB
14732015-07-14 Iain Buclaw <ibuclaw@gdcproject.org>
1474
1475 * dwarf2read.c (find_slot_in_mapped_hash): Extend language support to
1476 also test for language_d.
1477 (dwarf2_compute_name): Likewise.
1478 (read_func_scope): Likewise.
1479 (read_structure_type): Likewise.
1480 (new_symbol_full): Likewise.
1481 (determine_prefix): Likewise.
1482 (read_import_statement): Use dot as the separator for language_d.
1483 (typename_concat): Likewise, but don't prefix the D main function.
1484
99fe86f7
PB
14852015-07-14 Peter Bergner <bergner@vnet.ibm.com>
1486
1487 * nat/linux-namespaces.c (setns): Rename from this ...
1488 (do_setns): ... to this. Support calling setns if it exists.
1489 (mnsh_handle_setns): Call do_setns.
1490
d5131498
YQ
14912015-07-13 Yao Qi <yao.qi@linaro.org>
1492
1493 * exec.c (exec_file_attach): Add period at the end of error
1494 message.
1495
97605e61
AB
14962015-07-13 Andrew Burgess <andrew.burgess@embecosm.com>
1497
1498 * tui/tui-win.c (window_name_completer): New function.
1499 (focus_completer): Call window_name_completer. All old content
1500 moved into window_name_completer.
1501 (winheight_completer): New function.
1502 (_initialize_tui_win): Rename variable. Add completer to
1503 winheight command. Update doc string on winheight.
1504
8d6dbeb4
SL
15052015-07-12 Sandra Loosemore <sandra@codesourcery.com>
1506
1507 * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Register
1508 all nios2 mach variants.
1509
a0e28e54
KB
15102015-07-10 Kevin Buettner <kevinb@redhat.com>
1511
1512 * rx-tdep.c (rx_get_opcode_byte): Use target_read_code instead
1513 of target_read_memory.
1514
c101f28f
AB
15152015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
1516
1517 * tui/tui-win.c (tui_set_win_height): Use a cleanup to free the
1518 string copy.
1519 (parse_scrolling_args): Likewise.
1520
150375dc
AB
15212015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
1522
1523 * tui/tui-win.c (focus_completer): Don't duplicate the tui window
1524 names in this function.
1525
6dce28e4
AB
15262015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
1527
1528 * tui/tui-data.h (SRC_NAME): Convert to lower case.
1529 (CMD_NAME): Likewise.
1530 (DATA_NAME): Likewise.
1531 (DISASSEM_NAME): Likewise.
1532 * tui/tui-win.c (tui_set_focus): Window names are now lower case.
1533 (tui_set_win_height): Likewise.
1534 (parse_scrolling_args): Likewise.
1535
485668e5
MM
15362015-07-10 Markus Metzger <markus.t.metzger@intel.com>
1537
1538 * record-btrace.c (record_btrace_goto_begin)
1539 (record_btrace_goto_end, record_btrace_goto): Move call to
1540 print_stack_frame ...
1541 (record_btrace_set_replay): ... here. Set stop_pc.
1542 * record-full.c (record_full_goto_entry): Set stop_pc.
1543
58d2eda5
PL
15442015-07-09 Pierre Langlois <pierre.langlois@arm.com>
1545
1546 * NEWS: Mention support for tracepoints on aarch64-linux.
1547
7671bf47
PL
15482015-07-09 Pierre Langlois <pierre.langlois@arm.com>
1549
1550 * linux-aarch64-low.c (aarch64_supports_tracepoints): New
1551 function. Return 1.
1552 (the_low_target): Install it.
1553
7890fb45
PL
15542015-07-09 Pierre Langlois <pierre.langlois@arm.com>
1555
1556 * gdb.trace/backtrace.exp: Set registers for aarch64 target.
1557 * gdb.trace/collection.exp: Likewise.
1558 * gdb.trace/mi-trace-frame-collected.exp: Likewise.
1559 * gdb.trace/mi-trace-unavailable.exp: Likewise.
1560 * gdb.trace/report.exp: Likewise.
1561 * gdb.trace/trace-break.exp: Likewise.
1562 * gdb.trace/unavailable.exp: Likewise.
1563 * gdb.trace/while-dyn.exp: Likewise.
1564
ea873d8e
PL
15652015-07-09 Pierre Langlois <pierre.langlois@arm.com>
1566
1567 * aarch64-tdep.c: Add ax.h and ax-gdb.h includes.
1568 (aarch64_gen_return_address): New function.
1569 (aarch64_gdbarch_init): Hook it.
1570
02a2a705
PL
15712015-07-09 Pierre Langlois <pierre.langlois@arm.com>
1572
1573 * aarch64-tdep.c (aarch64_make_stub_cache): Set available_p and
1574 swallow NOT_AVAILABLE_ERROR.
1575 (aarch64_stub_this_id): Call frame_id_build_unavailable_stack if
1576 available_p is not set.
1577 (aarch64_stub_frame_unwind_stop_reason): New function.
1578 (aarch64_stub_unwind): Install it.
1579
7dfa3edc
PL
15802015-07-09 Pierre Langlois <pierre.langlois@arm.com>
1581
1582 * aarch64-tdep.c (aarch64_prologue_cache) <available_p>: New
1583 field.
1584 (aarch64_make_prologue_cache_1): New function, factored out from
1585 aarch64_make_prologue_cache. Do not allocate cache. Set
1586 available_p.
1587 (aarch64_make_prologue_cache): Reimplement wrapping
1588 aarch64_make_prologue_cache_1, and swallowing
1589 NOT_AVAILABLE_ERROR.
1590 (aarch64_prologue_frame_unwind_stop_reason): New function.
1591 Return UNWIND_UNAVAILABLE if available_p is not set.
1592 (aarch64_prologue_unwind): Install it.
1593 (aarch64_prologue_this_id): Move prev_pc and prev_sp limit
1594 checks into aarch64_prologue_frame_unwind_stop_reason. Call
1595 frame_id_build_unavailable_stack if available_p is not set.
1596
db634143
PL
15972015-07-09 Pierre Langlois <pierre.langlois@arm.com>
1598
1599 * aarch64-tdep.c (aarch64_prologue_cache) <func, prev_pc>: New
1600 fields.
1601 (aarch64_scan_prologue): Set prev_pc.
1602 (aarch64_make_prologue_cache): Set func.
1603 (aarch64_make_stub_cache): Set prev_pc.
1604 (aarch64_prologue_this_id): Remove local variables id, pc and
1605 func. Read prev_pc and func from cache.
1606 (aarch64_stub_this_id): Read prev_pc from cache.
1607
8b61f75d
PL
16082015-07-09 Pierre Langlois <pierre.langlois@arm.com>
1609
1610 * aarch64-tdep.c (aarch64_make_stub_cache): Update comment. New
1611 argument this_cache. Remove unused local variables reg and
1612 unwound_fp. Return early if this_cache is already set. Set
1613 this_cache.
1614 (aarch64_stub_this_id): Update call to aarch64_make_stub_cache.
1615
7c8edfae
PL
16162015-07-09 Pierre Langlois <pierre.langlois@arm.com>
1617
1618 * aarch64-tdep.c (aarch64_make_prologue_cache): Update comment.
1619 New argument this_cache. Return early if this_cache is already
1620 set. Set this_cache.
1621 (aarch64_prologue_this_id): Update call to
1622 aarch64_make_prologue_cache.
1623 (aarch64_prologue_prev_register): Likewise.
1624 (aarch64_normal_frame_base): Likewise.
1625
938c69a1
SM
16262015-07-09 Simon Marchi <simon.marchi@ericsson.com>
1627
1628 * c-valprint.c (c_val_print): Factor out memberptr printing code
1629 from c_val_print to ...
1630 (c_val_print_memberptr): ... this new function.
1631
49f7fe28
SM
16322015-07-09 Simon Marchi <simon.marchi@ericsson.com>
1633
1634 * c-valprint.c (c_val_print): Factor out int printing code to ...
1635 (c_val_print_int): ... this new function.
1636
9e4f353c
SM
16372015-07-09 Simon Marchi <simon.marchi@ericsson.com>
1638
1639 * c-valprint.c (c_val_print): Factor out struct and union
1640 printing code to ...
1641 (c_val_print_struct): ... this new function ...
1642 (c_val_print_union): ... and this new function.
1643
1c67f032
SM
16442015-07-09 Simon Marchi <simon.marchi@ericsson.com>
1645
1646 * c-valprint.c (c_val_print): Factor out pointer printing code
1647 to ...
1648 (c_val_print_ptr): ... this new function.
1649
0b6ef777
SM
16502015-07-09 Simon Marchi <simon.marchi@ericsson.com>
1651
1652 * c-valprint.c (c_valprint): Factor our array printing code from
1653 c_val_print to ...
1654 (c_val_print_array): ... this new function.
1655
1033c33c
SM
16562015-07-09 Simon Marchi <simon.marchi@ericsson.com>
1657
1658 * c-valprint.c (c_val_print): Factor out pointer printing code
1659 to ...
1660 (print_unpacked_pointer): ... this new function.
1661
f6b93c34
SM
16622015-07-09 Simon Marchi <simon.marchi@ericsson.com>
1663
1664 * c-valprint.c (c_val_print): Remove an assignment to i and move
1665 its declaration.
1666
0f4576e3
YQ
16672015-07-09 Yao Qi <yao.qi@linaro.org>
1668
1669 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Add
1670 argument ptid. Update comments. Caller update.
1671
37fdfe4c
MM
16722015-07-09 Markus Metzger <markus.t.metzger@intel.com>
1673
1674 * btrace.c (pt_print_packet): Print stop, vmcs, tma, mtc, cyc, and
1675 mnt packets.
1676
80a2b330
MM
16772015-07-09 Markus Metzger <markus.t.metzger@intel.com>
1678
1679 * btrace.c (btrace_pt_readmem_callback): Change type of PC argument.
1680
4ab31498
SM
16812015-07-08 Simon Marchi <simon.marchi@ericsson.com>
1682
1683 * progspace.c (delete_program_space): Add missing spaces.
1684
7a41607e
SM
16852015-07-08 Simon Marchi <simon.marchi@ericsson.com>
1686
1687 * inferior.c (delete_inferior_1): Rename to ...
1688 (delete_inferior): ..., remove 'silent' parameter, delete
1689 program space when unused and remove call to prune_program_spaces.
1690 Remove the old, unused, delete_inferior.
1691 (delete_inferior_silent): Remove.
1692 (prune_inferiors): Change call from delete_inferior_1 to
1693 delete_inferior and remove 'silent' parameter. Remove call to
1694 prune_program_spaces.
1695 (remove_inferior_command): Idem.
1696 * inferior.h (delete_inferior_1): Rename to...
1697 (delete_inferior): ..., remove 'silent' parameter and remove the
1698 original delete_inferior.
1699 (delete_inferior_silent): Remove.
1700 * mi/mi-main.c (mi_cmd_remove_inferior): Change call from
1701 delete_inferior_1 to delete_inferior and remove 'silent'
1702 parameter.
1703 * progspace.c (prune_program_spaces): Remove.
1704 (pspace_empty_p): Rename to...
1705 (program_space_empty_p): ... and make non-static.
1706 (delete_program_space): New.
1707 * progspace.h (prune_program_spaces): Remove declaration.
1708 (program_space_empty_p): New declaration.
1709 (delete_program_space): New declaration.
1710 * monitor.c (monitor_close): Replace call to
1711 delete_thread_silent and delete_inferior_silent with
1712 discard_all_inferiors.
1713
a9bd710f
PP
17142015-07-08 Patrick Palka <patrick@parcs.ath.cx>
1715
1716 * defs.h (deprecated_register_changed_hook): Remove prototype.
1717 * interps.c (clear_iterpreter_hooks): Remove reference to
1718 deprecated_register_changed_hook.
1719 * top.c (deprecated_register_changed_hook): Remove prototype.
1720 * valops.c (value_assign): Remove reference to
1721 deprecated_register_changed_hook.
1722 * tui/tui-hooks.c (tui_register_changed): Add parameter "frame".
1723 Add comment documenting the function.
1724 (tui_register_changed_observer): Define.
1725 (tui_install_hooks): Remove reference to
1726 deprecated_register_changed_hook. Set
1727 tui_register_changed_observer.
1728 (tui_remove_hooks): Remove reference to
1729 deprecated_register_changed_hook. Unset
1730 tui_register_changed_observer.
1731
08464196
JK
17322015-07-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1733
1734 PR compile/18484
1735 * compile/compile-c-types.c (insert_type): Change gdb_assert to error.
1736
bcf5c1d9
RC
17372015-07-08 Robert O'Callahan <robert@ocallahan.org>
1738
1739 PR exp/18617
1740 * ax-gdb.c (gen_conversion): Extend to 'to' bits, not 'from'.
1741
e8643a45
MM
17422015-07-08 Markus Metzger <markus.t.metzger@intel.com>
1743
1744 * MAINTAINERS (Write After Approval): Add Markus T. Metzger.
1745
76fb6829
MM
17462015-07-08 Markus Metzger <markus.t.metzger@intel.com>
1747
1748 * nat/linux-btrace.c (kernel_supports_bts, kernel_supports_pt):
1749 Use safe_strerror() instead of strerror().
1750
82c40d4b
YQ
17512015-07-07 Yao Qi <yao.qi@linaro.org>
1752
1753 * features/arm-with-m-fpa-layout.xml: Set architecture to arm.
1754 * features/arm-with-m-fpa-layout.c: Regenerated.
1755 * features/arm-with-m-vfp-d16.xml: Likewise.
1756 * features/arm-with-m-vfp-d16.c: Regenerated.
1757 * features/arm-with-m.xml: Likewise.
1758 * features/arm-with-m.c: Regenerated.
1759 * features/arm-with-neon.xml: Likewise.
1760 * features/arm-with-neon.c: Regenerated.
1761 * features/arm-with-vfpv2.xml: Likewise.
1762 * features/arm-with-vfpv2.c: Regenerated.
1763 * features/arm-with-vfpv3.xml: Likewise.
1764 * features/arm-with-vfpv3.c: Regenerated.
1765
607685ec
YQ
17662015-07-07 Yao Qi <yao.qi@linaro.org>
1767
1768 * aarch32-linux-nat.h (VFP_REGS_SIZE): New macro, moved from
1769 arm-linux-nat.c.
1770 * aarch64-linux-nat.c: Include aarch32-linux-nat.h and
1771 elf/external.h.
1772 (fetch_gregs_from_thread): Call aarch32_gp_regcache_supply
1773 if target is 32-bit.
1774 (store_gregs_to_thread): Call aarch32_gp_regcache_collect
1775 if target is 32-bit.
1776 (fetch_fpregs_from_thread): Call aarch32_vfp_regcache_supply
1777 if target is 32-bit.
1778 (store_fpregs_to_thread): Call aarch32_vfp_regcache_collect
1779 if target is 32-bit.
1780 (tdesc_arm_with_vfpv3, tdesc_arm_with_neon): Declare.
1781 (aarch64_linux_read_description): Return the right target
1782 description.
1783 * arm-linux-nat.c (VFP_REGS_SIZE): Moved to aarch32-linux-nat.h.
1784 * config/aarch64/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
1785 * configure.tgt (aarch64*-*-linux*): Add arm-tdep.o and
1786 arm-linux-tdep.o.
1787
f1b67888
YQ
17882015-07-07 Yao Qi <yao.qi@linaro.org>
1789
1790 * aarch32-linux-nat.c: New file.
1791 * aarch32-linux-nat.h: New file.
1792 * arm-linux-nat.c: Include aarch32-linux-nat.h.
1793 (fetch_regs): Move code to aarch32-linux-nat.c. Call
1794 aarch32_gp_regcache_supply.
1795 (store_regs): Move code to aarch32-linux-nat.c. Call
1796 aarch32_gp_regcache_collect.
1797 (fetch_vfp_regs): Move code to aarch32-linux-nat.c. Call
1798 aarch32_vfp_regcache_supply.
1799 (store_vfp_regs): Move code to aarch32-linux-nat.c. Call
1800 aarch32_vfp_regcache_collect.
1801 * config/arm/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
1802
179bfe82
YQ
18032015-07-07 Yao Qi <yao.qi@linaro.org>
1804
1805 * arm-linux-nat.c (store_fpregister): Remove.
1806 (store_register): Likewise.
1807 (fetch_fpregister): Likewise.
1808 (fetch_register): Likewise.
1809 (arm_linux_store_inferior_registers): Call store_regs and
1810 store_fpregs instead.
1811 (arm_linux_fetch_inferior_registers): Call fetch_fpregs and
1812 fetch_regs instead.
1813
6008fc5f
AB
18142015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
1815
1816 * doc/gdb.texinfo (TUI): Restructure documentation on TUI layout
1817 and focus commands.
1818
7c79d316
JB
18192015-07-06 Joel Brobecker <brobecker@adacore.com>
1820
1821 * NEWS: Create a new section for the next release branch.
1822 Rename the section of the current branch, now that it has
1823 been cut.
1824
f2232bea
JB
18252015-07-06 Joel Brobecker <brobecker@adacore.com>
1826
1827 GDB 7.10 branch created (66c4b3e8a628a207bc6aafef6af0c4128195f56e):
1828 * version.in: Bump version to 7.10.50.DATE-cvs.
1829
66c4b3e8
LM
18302015-07-06 Luis Machado <lgustavo@codesourcery.com>
1831
1832 * breakpoint.c (remove_breakpoint_1): Don't handle permanent
1833 breakpoints in a special way.
1834 (remove_breakpoint): Likewise.
1835 (mark_breakpoints_out): Likewise.
1836
bcd8537c
AB
18372015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
1838
1839 * doc/gdb.texinfo (TUI): Add comma after @xref.
1840
10e9aaa3
AB
18412015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
1842
1843 * tui/tui-win.c (tui_set_focus): Use structure member 'generic'
1844 instead of casting the structure type.
1845
8a13d42d
SM
18462015-07-06 Simon Marchi <simon.marchi@ericsson.com>
1847
1848 * valops.c (search_struct_field): Remove OFFSET parameter.
1849 (value_cast_structs): Adjust calls to search_struct_field.
1850 (value_struct_elt): Same.
1851 (find_overload_match): Same.
1852
a844296a
SM
18532015-07-06 Simon Marchi <simon.marchi@ericsson.com>
1854
1855 * value.c (value_fetch_lazy): Update comment, change return
1856 value to void.
1857 * value.h (value_fetch_lazy): Change return value to void.
1858
f41cbf58
AB
18592015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
1860
1861 * tui/tui-data.c (tui_partial_win_by_name): Window name is const.
1862 (tui_win_name): Make parameter and result const.
1863 * tui/tui-data.h (tui_win_name): Make parameter and result const.
1864
118ca224
PP
18652015-07-06 Patrick Palka <patrick@parcs.ath.cx>
1866
1867 * i386-tdep.c (i386_mpx_info_bounds): Don't call error, instead
1868 use printf_unfiltered.
1869 (set_mpx_cmd): Add missing trailing space to command string
1870 literal.
1871 (_initialize_i386_tdep): Give the "mpx" prefix command its
1872 correct name.
1873
1b485e67
KB
18742015-07-02 Kevin Buettner <kevinb@redhat.com>
1875
1876 * rx-tdep.c (RX_USP_REGNUM, RX_BPC_REGNUM): New constants.
1877 (enum rx_frame_type): New.
1878 (struct rx_prologue): Add new field `frame_type'.
1879 (rx_analyze_prologue): Add `frame_type' parameter. Cache this
1880 parameter in the prologue struct. Add code for recording
1881 locations of PC and PSW for fast interrupt and exception frames.
1882 (rx_skip_prologue): Adjust call to rx_analyze_prologue.
1883 (rx_analyze_frame_prologue): Add `frame_type' parameter.
1884 (rx_frame_type): New function.
1885 (rx_frame_base): Fetch frame type and pass it to rx_analyze_prologue.
1886 (rx_frame_this_id): Rename parameter `this_prologue_cache' to
1887 `this_cache'.
1888 (rx_frame_prev_register): Rename parameter `this_prologue_cache' to
72f4393d 1889 `this_cache'. Add cases for RX_FRAME_TYPE_EXCEPTION and
1b485e67
KB
1890 RX_FRAME_TYPE_FAST_INTERRUPT.
1891 (normal_frame_p, exception_frame_p, rx_frame_sniffer_common)
1892 (rx_frame_sniffer, rx_exception_sniffer): New functions.
1893 (rx_frame_unwind): Use rx_frame_sniffer instead of
1894 default_frame_sniffer.
1895 (rx_frame_unwind): New unwinder.
1896 (rx_gdbarch_init): Register new unwinder.
1897
0561fea4
KB
18982015-07-02 Kevin Buettner <kevinb@redhat.com>
1899
1900 * rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
1901 (struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
1902 (rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
1903 and RX_FPSW_REGNUM.
1904 (rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
1905
decf8d9a
JK
19062015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1907
1908 Fix GCC false warning.
1909 * s390-linux-tdep.c (s390_handle_arg): Initialize VAL.
1910
2fd0f80d
YQ
19112015-07-02 Yao Qi <yao.qi@linaro.org>
1912
1913 * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix
1914 typo in the debugging message.
1915
b0627500
MM
19162015-07-02 Markus Metzger <markus.t.metzger@intel.com>
1917
1918 * btrace.c: Include gdbcmd.h, cli/cli-utils.h, and ctype.h.
1919 (maint_btrace_cmdlist, maint_btrace_set_cmdlist)
1920 (maint_btrace_show_cmdlist, maint_btrace_pt_set_cmdlist)
1921 (maint_btrace_pt_show_cmdlist, maint_btrace_pt_skip_pad)
1922 (btrace_maint_clear): New.
1923 (btrace_fetch, btrace_clear): Call btrace_maint_clear.
1924 (pt_print_packet, btrace_maint_decode_pt)
1925 (btrace_maint_update_pt_packets, btrace_maint_update_packets)
1926 (btrace_maint_print_packets, get_uint, get_context_size, no_chunk)
1927 (maint_btrace_packet_history_cmd)
1928 (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
1929 (maint_btrace_cmd, maint_btrace_set_cmd, maint_btrace_show_cmd)
1930 (maint_btrace_pt_set_cmd, maint_btrace_pt_show_cmd)
1931 (maint_info_btrace_cmd, _initialize_btrace): New.
1932 * btrace.h (btrace_pt_packet, btrace_pt_packet_s)
1933 (btrace_maint_packet_history, btrace_maint_info): New.
1934 (btrace_thread_info) <maint>: New.
1935 * NEWS: Announce it.
1936
9be54cae
MM
19372015-07-02 Markus Metzger <markus.t.metzger@intel.com>
1938
1939 * btrace.c (btrace_fetch): Append the new trace data.
1940 (btrace_clear): Clear the stored trace data.
1941 * btrace.h (btrace_thread_info) <data>: New.
1942 * common/btrace-common.h (btrace_data_clear)
1943 (btrace_data_append): New.
1944 * common/btrace-common.c (btrace_data_clear)
1945 (btrace_data_append): New.
1946
010a18a1
MM
19472015-07-02 Markus Metzger <markus.t.metzger@intel.com>
1948
1949 * nat/linux-btrace.c (linux_enable_bts): Check for
1950 PERF_ATTR_SIZE_VER5.
1951 Check for data_offset and data_size fields. Use them.
1952
b20a6524
MM
19532015-07-02 Markus Metzger <markus.t.metzger@intel.com>
1954
1955 * NEWS: Announce new commands "record btrace pt" and "record pt".
1956 Announce new options "set|show record btrace pt buffer-size".
1957 * btrace.c: Include "rsp-low.h".
1958 Include "inttypes.h".
1959 (btrace_add_pc): Add forward declaration.
1960 (pt_reclassify_insn, ftrace_add_pt, btrace_pt_readmem_callback)
1961 (pt_translate_cpu_vendor, btrace_finalize_ftrace_pt)
1962 (btrace_compute_ftrace_pt): New.
1963 (btrace_compute_ftrace): Support BTRACE_FORMAT_PT.
1964 (check_xml_btrace_version): Update version check.
1965 (parse_xml_raw, parse_xml_btrace_pt_config_cpu)
1966 (parse_xml_btrace_pt_raw, parse_xml_btrace_pt)
1967 (btrace_pt_config_cpu_attributes, btrace_pt_config_children)
1968 (btrace_pt_children): New.
1969 (btrace_children): Add support for "pt".
1970 (parse_xml_btrace_conf_pt, btrace_conf_pt_attributes): New.
1971 (btrace_conf_children): Add support for "pt".
1972 * btrace.h: Include "intel-pt.h".
1973 (btrace_pt_error): New.
1974 * common/btrace-common.c (btrace_format_string, btrace_data_fini)
1975 (btrace_data_empty): Support BTRACE_FORMAT_PT.
1976 * common/btrace-common.h (btrace_format): Add BTRACE_FORMAT_PT.
1977 (struct btrace_config_pt): New.
1978 (struct btrace_config)<pt>: New.
1979 (struct btrace_data_pt_config, struct btrace_data_pt): New.
1980 (struct btrace_data)<pt>: New.
1981 * features/btrace-conf.dtd (btrace-conf)<pt>: New.
1982 (pt): New.
1983 * features/btrace.dtd (btrace)<pt>: New.
1984 (pt, pt-config, cpu): New.
1985 * nat/linux-btrace.c (perf_event_read, perf_event_read_all)
1986 (perf_event_pt_event_type, kernel_supports_pt)
1987 (linux_supports_pt): New.
1988 (linux_supports_btrace): Support BTRACE_FORMAT_PT.
1989 (linux_enable_bts): Free tinfo on error.
1990 (linux_enable_pt): New.
1991 (linux_enable_btrace): Support BTRACE_FORMAT_PT.
1992 (linux_disable_pt): New.
1993 (linux_disable_btrace): Support BTRACE_FORMAT_PT.
1994 (linux_fill_btrace_pt_config, linux_read_pt): New.
1995 (linux_read_btrace): Support BTRACE_FORMAT_PT.
1996 * nat/linux-btrace.h (struct btrace_tinfo_pt): New.
1997 (struct btrace_target_info)<pt>: New.
1998 * record-btrace.c (set_record_btrace_pt_cmdlist)
1999 (show_record_btrace_pt_cmdlist): New.
2000 (record_btrace_print_pt_conf): New.
2001 (record_btrace_print_conf): Support BTRACE_FORMAT_PT.
2002 (btrace_ui_out_decode_error): Support BTRACE_FORMAT_PT.
2003 (cmd_record_btrace_pt_start): New.
2004 (cmd_record_btrace_start): Support BTRACE_FORMAT_PT.
2005 (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): New.
2006 (_initialize_record_btrace): Add new commands.
2007 * remote.c (PACKET_Qbtrace_pt, PACKET_Qbtrace_conf_pt_size): New.
2008 (remote_protocol_features): Add "Qbtrace:pt".
2009 Add "Qbtrace-conf:pt:size".
2010 (remote_supports_btrace): Support BTRACE_FORMAT_PT.
2011 (btrace_sync_conf): Support PACKET_Qbtrace_conf_pt_size.
2012 (remote_enable_btrace): Support BTRACE_FORMAT_PT.
2013 (_initialize_remote): Add new commands.
2014
58bfce93
MM
20152015-07-02 Markus Metzger <markus.t.metzger@intel.com>
2016
2017 * configure.ac: check for libipt
2018 * configure: Regenerate.
2019 * config.in: Regenerate.
2020 * Makefile.in (LIBIPT): New.
2021 (CLIBS): Add $LIBIPT.
2022 * NEWS: document new configure options
2023
b0fd6b30
JK
20242015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2025
2026 * compile/compile-object-load.c (compile_object_load): Replace debug
2027 message "lookup undefined ELF symbol" by 3 more specific messages.
2028
e6280369
KB
20292015-07-01 Kevin Buettner <kevinb@redhat.com>
2030
2031 * rl78-tdep.c (struct gdbarch_tdep): Add new field, rl78_psw_type.
2032 (rl78_register_type): Add case for RL78_PSW_REGNUM.
2033 (rl78_gdbarch_init): Initialize rl78_psw_type.
2034
bbcbf914
PP
20352015-07-01 Patrick Palka <patrick@parcs.ath.cx>
2036
2037 * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
2038 Update commentary. Always refresh the registers when frame
2039 information has changed.
2040 * tui/tui-stack.c (tui_show_frame_info): Update commentary.
2041 Change return type to int. Return 1 if frame information has
2042 changed, 0 otherwise.
2043 (tui_before_prompt): Update commentary.
2044 * tui/tui-stack.h (tui_show_frame_info): Change return type to
2045 int.
2046
0986c744
PP
20472015-06-30 Patrick Palka <patrick@parcs.ath.cx>
2048
2049 PR tui/13378
2050 * frame.c (select_frame): Remove reference to
2051 deprecated_selected_frame_level_changed_hook.
2052 * frame.h (deprecated_selected_frame_level_changed_hook): Remove
2053 declaration.
2054 * stack.c (deprecated_selected_frame_level_changed_hook):
2055 Likewise.
2056 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook):
2057 Rename to ...
2058 (tui_refresh_frame_and_register_information): ... this. Bail
2059 out if there is no stack. Don't update register information
2060 unless registers_too_p is true.
2061 (tui_print_frame_info_listing_hook): Rename to ...
2062 (tui_dummy_print_frame_info_listing_hook): ... this.
2063 (tui_before_prompt): New function.
2064 (tui_normal_stop): New function.
2065 (tui_before_prompt_observer): New observer.
2066 (tui_normal_stop_observer): New observer.
2067 (tui_install_hooks): Set
2068 deprecated_print_frame_info_listing_hook to
2069 tui_dummy_print_frame_info_listing_hook. Register
2070 tui_before_prompt_observer to call tui_before_prompt and
2071 tui_normal_stop_observer to call tui_normal_stop. Remove
2072 reference to deprecated_selected_frame_level_changed_hook.
2073 (tui_remove_hooks): Detach and unset tui_before_prompt_observer
2074 and tui_normal_stop_observer. Remove reference to
2075 deprecated_selected_frame_level_changed_hook.
2076
b5fca6d7
PP
20772015-06-30 Patrick Palka <patrick@parcs.ath.cx>
2078
2079 PR tui/13378
2080 * tui/tui-stack.c (tui_set_locator_info): Change prototype to
2081 return an int instead of void. Return whether the locator
2082 window has changed.
2083 (tui_show_frame_info): If the locator info has not changed, then
2084 bail out early to avoid refreshing the windows.
2085
c45613e3
PP
20862015-06-30 Patrick Palka <patrick@parcs.ath.cx>
2087
2088 * tui/tui-stack.c (tui_set_locator_info): Explicitly pass
2089 LOCATOR_WIN to tui_alloc_content.
2090
7b9be803
YQ
20912015-06-30 Yao Qi <yao.qi@linaro.org>
2092
2093 PR tdep/18605
2094 * arm-tdep.c (arm_get_next_pc_raw): Break for media
2095 instructions.
2096
fd6e021d
KB
20972015-06-29 Kevin Buettner <kevinb@redhat.com>
2098
78ab7e9d
KB
2099 * rx-tdep.c (RX_PSW_REGNUM): New enum constant.
2100 (rx_dwarf_reg_to_regnum): New function.
2101 (rx_gdbarch_init): Register rx_dwarf_reg_to_regnum. Use dwarf2
2102 unwinding.
fd6e021d 2103
28bf096c
PA
21042015-06-29 Pedro Alves <palves@redhat.com>
2105
2106 PR threads/18127
2107 * infcall.c (run_inferior_call): On infcall success, if the thread
2108 was marked stopped before, reset it back to stopped.
2109 * infrun.c (resume): Don't suppress the set_running calls when
2110 doing an infcall.
2111 (normal_stop): Only discard the finish_thread_state cleanup if the
2112 infcall succeeded.
2113
2880b51c 21142015-06-29 Pierre Langlois <pierre.langlois@arm.com>
1451ea7d
PL
2115
2116 * MAINTAINERS (Write After Approval): Update my email address.
2117
ee93cd5e
KS
21182015-06-26 Keith Seitz <keiths@redhat.com>
2119 Doug Evans <dje@google.com>
2120
2121 PR 16253
2122 * block.c (block_lookup_symbol): For non-function blocks,
2123 continue to search for a symbol with an exact domain match
2124 Otherwise, return any previously found "best domain" symbol.
2125 (block_lookup_symbol_primary): Likewise.
2126
fc637f04
PP
21272015-06-26 Patrick Palka <patrick@parcs.ath.cx>
2128
2129 * NEWS: Mention the new option "history remove-duplicates".
2130 * top.c (history_remove_duplicates): New static variable.
2131 (show_history_remove_duplicates): New static function.
2132 (gdb_add_history): Conditionally remove duplicate history
2133 entries.
2134 (init_main): Add "history remove-duplicates" option.
2135
2e52ae68
PP
21362015-06-26 Patrick Palka <patrick@parcs.ath.cx>
2137
2138 * tui/tui-win.c (focus_completer): New static function.
2139 (_initialize_tui_win): Set the completion function of the
2140 "focus" command to focus_completer.
2141
6e22494e
JK
21422015-06-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2143
2144 * linespec.c (minsym_found): Reset sal.PC for COMPUNIT_LOCATIONS_VALID
2145 and language_asm..
2146 * symtab.c (find_function_start_sal): Likewise.
2147
f8773be1
GB
21482015-06-25 Gary Benson <gbenson@redhat.com>
2149
2150 * solib.c (solib_find_1): Set local variable sysroot to NULL if
2151 it is the empty string after trailing slashes have been stripped.
2152
a3be80c3
GB
21532015-06-25 Gary Benson <gbenson@redhat.com>
2154
2155 * exec.c (exec_file_locate_attach): Remove gdb_sysroot NULL check.
2156 * infrun.c (follow_exec): Likewise.
2157 * remote.c (remote_filesystem_is_local): Likewise.
2158 * solib.c (solib_find_1): Likewise.
2159
32fad71f
KS
21602015-06-24 Keith Seitz <keiths@redhat.com>
2161
2162 * build-id.c (build_id_to_debug_bfd): Add cleanup to free
2163 return value from lrealpath.
2164
87d1b309
MF
21652015-06-24 Mike Frysinger <vapier@gentoo.org>
2166
2167 * remote-sim.c (gdbsim_open): Move sysroot update to the top.
2168
23bf70af
MF
21692015-06-24 Mike Frysinger <vapier@gentoo.org>
2170
2171 * remote-sim.c: Include gdb_bfd.h.
2172 (gdbsim_open): Declare new local sysroot pointing to gdb_sysroot.
2173 Skip TARGET_SYSROOT_PREFIX in gdb_sysroot when it is active.
2174
5cd867b4
YQ
21752015-06-24 Yao Qi <yao.qi@linaro.org>
2176
2177 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't call
2178 set_gdbarch_get_siginfo_type.
2179 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
2180 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
2181 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
2182 * m68klinux-tdep.c (m68k_linux_init_abi): Likewise.
2183 * ppc-linux-tdep.c (ppc_linux_init_abi): Likewise.
2184 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
2185 * tilegx-linux-tdep.c (tilegx_linux_init_abi): Likewise.
2186 * linux-tdep.c (linux_get_siginfo_type): Change it to static.
2187 (linux_init_abi): Call set_gdbarch_get_siginfo_type.
2188 * linux-tdep.h (linux_get_siginfo_type): Remove the declaration.
2189
dc06243f
GB
21902015-06-24 Gary Benson <gbenson@redhat.com>
2191
2192 * common/buffer.c (stdint.h): Do not include.
2193 * common/print-utils.c (stdint.h): Likewise.
2194 * compile/compile-c-symbols.c (gdb_assert.h): Likewise.
2195 * compile/compile-c-types.c (gdb_assert.h): Likewise.
2196 * ft32-tdep.c (gdb_assert.h): Likewise.
2197 * guile/scm-utils.c (stdint.h): Likewise.
2198 * i386-linux-tdep.c (stdint.h): Likewise.
2199 * i386-tdep.c (stdint.h): Likewise.
2200 * nat/linux-btrace.c (stdint.h): Likewise.
2201 * nat/linux-btrace.h (stdint.h): Likewise.
2202 * nat/linux-ptrace.c (stdint.h): Likewise.
2203 * nat/mips-linux-watch.h (stdint.h): Likewise.
2204 * ppc-linux-nat.c (stdint.h): Likewise.
2205 * python/python-internal.h (stdint.h): Likewise.
2206 * stub-termcap.c (stdlib.h): Likewise.
2207 * target/target.h (stdint.h): Likewise.
2208 * xtensa-linux-nat.c (stdint.h): Likewise.
2209
0fc26caf
PP
22102015-06-23 Patrick Palka <patrick@parcs.ath.cx>
2211
2212 * top.c (init_history): Look at errno after calling strtol to
2213 properly map large GDBHISTSIZE values to infinity.
2214
a38fe4fe
DE
22152015-06-23 Doug Evans <dje@google.com>
2216
2217 * inferior.h (struct inferior_suspend_state): Delete, unused.
2218 All references deleted.
2219
7564fe45
MF
22202015-06-23 Mike Frysinger <vapier@gentoo.org>
2221
2222 * microblaze-tdep.c (microblaze_push_dummy_code): Delete.
2223 (microblaze_push_dummy_call): Likewise.
2224 (microblaze_gdbarch_init): Delete calls to set_gdbarch_push_dummy_code
2225 and set_gdbarch_push_dummy_call.
2226
0bdb2f78
YQ
22272015-06-23 Yao Qi <yao.qi@linaro.org>
2228
2229 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers):
2230 Check whether have_ptrace_getregset is TRIBOOL_TRUE explicitly.
2231 (amd64_linux_store_inferior_registers): Likewise.
2232 * arm-linux-nat.c (fetch_fpregister): Likewise.
2233 (fetch_fpregs, store_fpregister): Likewise.
2234 (store_fpregister, store_fpregs): Likewise.
2235 (fetch_register, fetch_regs): Likewise.
2236 (store_register, store_regs): Likewise.
2237 (fetch_vfp_regs, store_vfp_regs): Likewise.
2238 (arm_linux_read_description): Check have_ptrace_getregset is
2239 TRIBOOL_UNKNOWN. Set have_ptrace_getregset to TRIBOOL_TRUE
2240 or TRIBOOL_FALSE.
2241 * i386-linux-nat.c (fetch_xstateregs): Check
2242 have_ptrace_getregset is not TRIBOOL_TRUE.
2243 (store_xstateregs): Likewise.
2244 * linux-nat.c (have_ptrace_getregset): Change its type to
2245 enum tribool.
2246 * linux-nat.h (tribool): New enum.
2247 * x86-linux-nat.c (x86_linux_read_description): Use enum tribool.
2248 Check whether have_ptrace_getregset is TRIBOOL_TRUE.
2249
18a94d75
DE
22502015-06-19 Doug Evans <dje@google.com>
2251
2252 * NEWS: Mention Sun's version of stabs is no longer supported.
2253 * elfread.c (free_elfinfo): Delete. All uses updated.
2254 (elfstab_offset_sections): Delete. All uses updated.
2255 * gdb-stabs.h (stab_section_info): Delete. All uses updated.
2256 * psympriv.h (partial_symtab) <section_offsets>: Delete.
2257 All uses updated.
2258 * psymtab.c (start_psymtab_common): Delete arg section_offsets.
2259 All callers updated.
2260
124e13d9
SM
22612015-06-18 Simon Marchi <simon.marchi@ericsson.com>
2262
2263 * common/rsp-low.c (needs_escaping): New.
2264 (remote_escape_output): Add unit_size parameter. Refactor to
2265 support multi-byte addressable units. Rename parameters.
2266 * common/rsp-low.h (remote_escape_output): Add unit_size
2267 parameter and rename others. Update doc.
2268 * remote.c (align_for_efficient_write): New.
2269 (remote_write_bytes_aux): Add unit_size parameter and use it.
2270 Rename some variables. Update doc.
2271 (remote_xfer_partial): Get unit size and use it.
2272 (remote_read_bytes_1): Add unit_size parameter and use it.
2273 Rename some variables. Update doc.
2274 (remote_write_bytes): Same.
2275 (remote_xfer_live_readonly_partial): Same.
2276 (remote_read_bytes): Same.
2277 (remote_flash_write): Update call to remote_write_bytes_aux.
2278 (remote_write_qxfer): Update call to remote_escape_output.
2279 (remote_search_memory): Same.
2280 (remote_hostio_pwrite): Same.
2281
6ae88661
LM
22822015-06-17 Luis Machado <lgustavo@codesourcery.com>
2283
2284 * breakpoint.c (add_location_to_breakpoint): Don't mark permanent
2285 locations as inserted.
2286 Update and expand comment about permanent locations.
2287 (bp_loc_is_permanent): Don't return 0 for bp_call_dummy.
2288 Move comment to add_location_to_breakpoint.
2289 (update_global_location_list): Don't error out if a permanent
2290 breakpoint is not marked inserted.
2291 Don't error out if a non-permanent breakpoint location is inserted on
2292 top of a permanent breakpoint.
2293
da4616f6
LM
22942015-06-17 Luis Machado <lgustavo@codesourcery.com>
2295
2296 * breakpoint.c (make_breakpoint_permanent): Remove unused
2297 function.
2298 * breakpoint.h (make_breakpoint_permanent): Remove declaration.
2299
bc460514
PP
23002015-06-17 Patrick Palka <patrick@parcs.ath.cx>
2301
2302 PR gdb/16999
2303 * NEWS: Mention new GDBHISTSIZE behavior.
2304 * top.c (init_history): For null or out-of-range GDBHISTSIZE,
2305 set history size to unlimited. Ignore non-numeric GDBHISTSIZE.
2306
b58c513b
PP
23072015-06-17 Patrick Palka <patrick@parcs.ath.cx>
2308
2309 * NEWS: Mention that GDBHISTSIZE is read instead of HISTSIZE.
2310 * top.c (init_history): Read from GDBHISTSIZE instead of
2311 HISTSIZE.
2312 (init_main): Refer to GDBHISTSIZE instead of HISTSIZE.
2313
2093d2d3
PP
23142015-06-17 Patrick Palka <patrick@parcs.ath.cx>
2315
2316 * top.c (gdb_safe_append_history): Do not call
2317 history_truncate_file if the history is not stifled.
2318
fc248485
AA
23192015-06-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
2320
2321 * syscalls/s390-linux.xml: Add syscalls 344 through 354.
2322 * syscalls/s390x-linux.xml: Likewise.
2323
4da680ad
ME
23242015-06-16 Michael Eager <eager@eagercon.com>
2325
2326 * nat/linux-namespaces.c (MSG_CMSG_CLOEXEC): Define if not defined.
2327
0a75489f
PP
23282015-06-16 Patrick Palka <patrick@parcs.ath.cx>
2329
2330 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Call
2331 target_terminal_ours_for_output() before calling
2332 tui_show_frame_info(), and restore the original terminal
2333 settings afterwards.
2334
95855ca8
MS
23352015-06-16 Martin Simmons <martin@lispworks.com> (tiny patch)
2336
2337 * arm-linux-nat.c: Include nat/linux-ptrace.h.
2338
cfc32360
SM
23392015-06-15 Simon Marchi <simon.marchi@ericsson.com>
2340
2341 * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Consider addressable
2342 memory unit size.
2343 (mi_cmd_data_write_memory_bytes): Same.
2344
cb6f16cf
SM
23452015-06-15 Simon Marchi <simon.marchi@ericsson.com>
2346
2347 * corefile.c (write_memory): Update doc.
2348 * gdbcore.h (write_memory): Same.
2349
31b7833d
JK
23502015-06-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2351
2352 * linux-tdep.c (enum filterflags): Make it from anonymous enum.
2353 (dump_mapping_p): Use it for parameter filterflags.
2354 (linux_find_memory_regions_full): Use it for variable filterflags.
2355
909c2cda
JK
23562015-06-15 Aleksandar Ristovski <aristovski@qnx.com
2357 Jan Kratochvil <jan.kratochvil@redhat.com>
2358
2359 Merge multiple hex conversions.
2360 * monitor.c: Include rsp-low.h.
2361 (fromhex): Remove definition.
2362
03aef70f
JK
23632015-06-15 Aleksandar Ristovski <aristovski@qnx.com
2364 Jan Kratochvil <jan.kratochvil@redhat.com>
2365
2366 Move utility functions to common/.
2367 * cli/cli-utils.c (skip_spaces, skip_spaces_const, skip_to_space_const):
2368 Move defs to common/common-utils.c.
2369 * cli/cli-utils.h (skip_spaces, skip_spaces_const, skip_to_space)
2370 (skip_to_space_const): Move decls to common/common-utils.h.
2371 * common/common-defs.h: Move include of common-types.h before
2372 common-utils.h.
2373 * common/common-utils.c: Include host-defs.h and ctype.h.
2374 (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int, strtoulst): Move
2375 from utils.c.
2376 (skip_spaces, skip_spaces_const, skip_to_space_const): Move from
2377 cli/cli-utils.c.
2378 * common/common-utils.h (strtoulst): Move decl from utils.h.
2379 (skip_spaces, skip_spaces_const, skip_to_space, skip_to_space_const):
2380 Move from cli/cli-utils.h.
2381 * common/host-defs.h: Include limits.h.
2382 (TARGET_CHAR_BIT, HOST_CHAR_BIT): Moved from defs.h.
2383 (skip_spaces, skip_spaces_const): Move decls from cli/cli-utils.h.
2384 * defs.h (TARGET_CHAR_BIT, HOST_CHAR_BIT): Move to
2385 common/common-utils.h.
2386 * utils.c (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int)
2387 (strtoulst): Move to common/common-utils.c.
2388 * utils.h (strtoulst): Moved decl to common/common-utils.h.
2389
d1168cc1
YQ
23902015-06-15 Yao Qi <yao.qi@linaro.org>
2391
2392 * data-directory/Makefile.in (SYSCALLS_FILES): Add aarch64-linux.xml.
2393
c74f7d1c
JT
23942015-06-10 Jon Turney <jon.turney@dronecode.org.uk>
2395
2396 * build-id.c: Don't include elf-bfd.h.
2397 (build_id_bfd_get): Use bfd_build_id.
2398 (build_id_verify): Ditto.
2399 * build-id.h: Ditto.
2400 (find_separate_debug_file_by_buildid): Ditto.
2401 * python/py-objfile.c: Don't include elf-bfd.h.
2402 (objfpy_get_build_id) Use bfd_build_id.
2403 (objfpy_build_id_matches, objfpy_lookup_objfile_by_build_id): Ditto.
2404 * coffread.c: Include build-id.h.
2405 (coff_symfile_read): Try find_separate_debug_file_by_buildid.
2406
f20c58f5
JT
24072015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
2408
2409 * windows-nat.c (do_windows_fetch_inferior_registers)
2410 (handle_output_debug_string): Replace __COPY_CONTEXT_SIZE
2411 conditional with __CYGWIN__.
2412
51f0e40d
AB
24132015-06-13 Andrew Burgess <andrew.burgess@embecosm.com>
2414
2415 * completer.c: Add arch-utils.h include.
2416 (enum reg_completer_targets): New enum.
2417 (reg_or_group_completer_1): New function containing old
2418 reg_or_group_completer, add and use new parameter to control what
2419 is completed on. Use get_current_arch rather than architecture of
2420 currently selected frame.
2421 (reg_or_group_completer): Call new reg_or_group_completer_1.
2422 (reggroup_completer): Call new reg_or_group_completer_1.
2423 * completer.h (reggroup_completer): Add declaration.
2424 * tui/tui-regs.c: Add 'completer.h' include.
2425 (tui_reg_next_command): Renamed to...
2426 (tui_reg_next): ...this. Adjust parameters and return rather than
2427 display new group.
2428 (tui_reg_prev_command): Renamed to...
2429 (tui_reg_prev): ...this. Adjust parameters and return rather than
2430 display new group.
2431 (tui_reg_float_command): Delete.
2432 (tui_reg_general_command): Delete.
2433 (tui_reg_system_command): Delete.
2434 (tui_reg_command): Rewrite to perform switching of register group.
2435 Add header comment.
2436 (tuireglist): Remove.
2437 (tui_reggroup_completer): New function.
2438 (_initialize_tui_regs): Remove 'tui reg' sub-commands, update
2439 creation of 'tui reg' command.
2440 * NEWS: Add comment about 'tui reg' changes.
2441
d309493c
SM
24422015-06-12 Simon Marchi <simon.marchi@ericsson.com>
2443
2444 * target.c (target_read): Consider addressable unit size when
2445 reading from a memory object.
2446 (read_memory_robust): Same.
2447 (read_whatever_is_readable): Same.
2448 (target_write_with_progress): Consider addressable unit size
2449 when writing to a memory object.
2450 * target.h (target_read): Update documentation.
2451 (target_write): Add documentation.
2452
3374165f
SM
24532015-06-12 Simon Marchi <simon.marchi@ericsson.com>
2454
2455 * arch-utils.h (default_addressable_memory_unit_size): New.
2456 * arch-utils.c (default_addressable_memory_unit_size): New.
2457 * gdbarch.sh (addressable_memory_unit_size): New.
2458 * gdbarch.h: Re-generate.
2459 * gdbarch.c: Re-generate.
2460
279a6fed
SM
24612015-06-12 Simon Marchi <simon.marchi@ericsson.com>
2462
2463 * target.c (target_read): Rename variables and use
2464 TARGET_XFER_E_IO.
2465 (target_read_with_progress): Same.
2466 (read_memory_robust): Constify parameters and rename
2467 variables.
2468 (read_whatever_is_readable): Constify parameters,
2469 rename variables, adjust formatting.
2470 * target.h (read_memory_robust): Constify parameters.
2471
1e5338b6 24722015-06-12 Ulrich Weigand <uweigand@de.ibm.com>
a1da2672
UW
2473
2474 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value_base): Handle short
2475 synthetic (non-AltiVec) vector types.
2476 (ppc64_sysv_abi_return_value): Likewise.
2477
98aa42ee
AT
24782015-06-12 Antoine Tremblay <antoine.tremblay@ericsson.com>
2479
2480 PR breakpoints/16465
2481 * breakpoint.c (create_breakpoint): Save extra_string for
2482 pending breakpoints.
2483
966f0aef
WT
24842015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com>
2485
2486 * i386-tdep.c (i386_mpx_get_bt_entry): Add a cast for mpx_bd_mask
2487 and bt_mask to CORE_ADDR.
2488
6449ed0d
GB
24892015-06-11 Gary Benson <gbenson@redhat.com>
2490
2491 * nat/linux-namespaces.c (mnsh_send_message): Use pulongest.
2492 (mnsh_recv_message): Likewise.
2493
34f8ac9f
WT
24942015-06-11 Walfred Tedeschi <walfred.tedeschi@intel.com>
2495
2496 * i386-tdep.c (i386_mpx_print_bounds): use of LONGEST instead of
2497 long long int and plongest instead of %ll.
2498
198c808c
GB
24992015-06-11 Gary Benson <gbenson@redhat.com>
2500
2501 * nat/linux-namespaces.c (gdb_wait.h): New include.
2502 (sys/wait.h): Do not include.
2503
e815d2d2
SM
25042015-06-10 Simon Marchi <simon.marchi@ericsson.com>
2505
2506 * dwarf2read.c (dwarf_record_line): Call dwarf_record_line if
2507 end_sequence is true.
2508
8847cac2
JK
25092015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
2510
2511 Code cleanup.
2512 * solib-target.c (library_list_start_list): Use explicit NULL
2513 comparison.
2514
24c05f46
JK
25152015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
2516
2517 * solib-target.c (library_list_start_list): Do not dereference
2518 variable version in its initialization. Make the VERSION check handle
2519 NULL.
2520 (library_list_attributes): Make "version" GDB_XML_AF_OPTIONAL.
2521
51aad7cc
GB
25222015-06-10 Gary Benson <gbenson@redhat.com>
2523
2524 * NEWS: Announce support for direct access of executable and
2525 shared library files when attaching to inferiors in containers
2526 on GNU/Linux systems.
2527
15a201c8
GB
25282015-06-10 Gary Benson <gbenson@redhat.com>
2529
2530 * remote.c (struct remote_state) <fs_pid>: New field.
2531 (new_remote_state): Initialize the above.
2532 (PACKET_vFile_setfs): New enum value.
2533 (remote_hostio_set_filesystem): New function.
2534 (remote_hostio_open): Call the above.
2535 (remote_hostio_unlink): Likewise.
2536 (remote_hostio_readlink): Likewise.
2537 (_initialize_remote): Register new "set/show remote
2538 hostio-setfs-packet" command.
2539 * NEWS: Announce new vFile:setfs packet.
2540
7a6a1731
GB
25412015-06-10 Gary Benson <gbenson@redhat.com>
2542
2543 * linux-nat.c (nat/linux-namespaces.h): New include.
2544 (fileio.h): Likewise.
2545 (linux_nat_filesystem_is_local): New function.
2546 (linux_nat_fileio_pid_of): Likewise.
2547 (linux_nat_fileio_open): Likewise.
2548 (linux_nat_fileio_readlink): Likewise.
2549 (linux_nat_fileio_unlink): Likewise.
2550 (linux_nat_add_target): Initialize to_filesystem_is_local,
2551 to_fileio_open, to_fileio_readlink and to_fileio_unlink.
2552 (_initialize_linux_nat): New "set/show debug linux-namespaces"
2553 commands.
2554 * NEWS: Mention new "set/show debug linux-namespaces" commands.
2555
07c138c8
GB
25562015-06-10 Gary Benson <gbenson@redhat.com>
2557
2558 * target.h (struct inferior): New forward declaration.
2559 (struct target_ops) <to_filesystem_is_local>: Update comment.
2560 (struct target_ops) <to_fileio_open>: New argument inf.
2561 Update comment. All implementations updated.
2562 (struct target_ops) <to_fileio_unlink>: Likewise.
2563 (struct target_ops) <to_fileio_readlink>: Likewise.
2564 (target_filesystem_is_local): Update comment.
2565 (target_fileio_open): New argument inf. Update comment.
2566 (target_fileio_unlink): Likewise.
2567 (target_fileio_readlink): Likewise.
2568 (target_fileio_read_alloc): Likewise.
2569 (target_fileio_read_stralloc): Likewise.
2570 * target.c (target_fileio_open): New argument inf.
2571 Pass inf to implementation. Update debug printing.
2572 (target_fileio_unlink): Likewise.
2573 (target_fileio_readlink): Likewise.
2574 (target_fileio_read_alloc_1): New argument inf. Pass inf
2575 to target_fileio_open.
2576 (target_fileio_read_alloc): New argument inf. Pass inf to
2577 target_fileio_read_alloc_1.
2578 (target_fileio_read_stralloc): Likewise.
2579 * gdb_bfd.c (inferior.h): New include.
2580 (gdb_bfd_iovec_fileio_open): Replace unused "open_closure"
2581 argument with new argument "inferior". Pass inferior to
2582 target_fileio_open.
2583 (gdb_bfd_open): Supply inferior argument to
2584 gdb_bfd_iovec_fileio_open.
2585 * linux-tdep.c (linux_info_proc): Supply inf argument to
2586 relevant target_fileio calls.
2587 (linux_find_memory_regions_full): Likewise.
2588 (linux_fill_prpsinfo): Likewise.
2589 * remote.c (remote_filesystem_is_local): Supply inf
2590 argument to remote_hostio_open.
2591 (remote_file_put): Likewise.
2592 (remote_file_get): Likewise.
2593 (remote_file_delete): Supply inf argument to
2594 remote_hostio_unlink.
2595
12e2a5fd
GB
25962015-06-10 Gary Benson <gbenson@redhat.com>
2597
2598 * inf-child.c (inf_child_fileio_open): Replace comment.
2599 (inf_child_fileio_pwrite): Likewise.
2600 (inf_child_fileio_pread): Likewise.
2601 (inf_child_fileio_fstat): Insert blank line before comment.
2602 (inf_child_fileio_close): Replace comment.
2603 (inf_child_fileio_unlink): Likewise.
2604 (inf_child_fileio_readlink): Likewise.
2605 * remote.c (remote_hostio_open): Likewise.
2606 (remote_hostio_pread): Likewise.
2607 (remote_hostio_pwrite): Likewise.
2608 (remote_hostio_close): Likewise.
2609 (remote_hostio_unlink): Likewise.
2610 (remote_hostio_readlink): Likewise.
2611 (remote_hostio_fstat): Likewise.
2612 (remote_filesystem_is_local): Likewise.
2613 * target.c (target_fileio_open): Likewise.
2614 (target_fileio_pwrite): Likewise.
2615 (target_fileio_pread): Likewise.
2616 (target_fileio_fstat): Insert blank line before comment.
2617 (target_fileio_close): Replace comment.
2618 (target_fileio_unlink): Likewise.
2619 (target_fileio_readlink): Likewise.
2620 (target_fileio_read_alloc): Likewise.
2621 (target_fileio_read_stralloc): Likewise.
2622
9bc3a976
GB
26232015-06-10 Gary Benson <gbenson@redhat.com>
2624
2625 * linux-thread-db.c (nat/linux-namespaces.h): New include.
2626 (check_pid_namespace_match): Use linux_ns_same rather than
2627 linux_proc_pid_get_ns to spot PID namespace mismatches.
2628 * nat/linux-procfs.h (linux_proc_pid_get_ns): Remove.
2629 * nat/linux-procfs.c (linux_proc_pid_get_ns): Likewise.
2630
4b8b5e72
GB
26312015-06-10 Gary Benson <gbenson@redhat.com>
2632
2633 * configure.ac (AC_CHECK_FUNCS): Add setns.
2634 * config.in: Regenerate.
2635 * configure: Likewise.
2636 * nat/linux-namespaces.h: New file.
2637 * nat/linux-namespaces.c: Likewise.
2638 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-namespaces.h.
2639 (linux-namespaces.o): New rule.
2640 * config/aarch64/linux.mh (NATDEPFILES): Add linux-namespaces.o.
2641 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
2642 * config/arm/linux.mh (NATDEPFILES): Likewise.
2643 * config/i386/linux.mh (NATDEPFILES): Likewise.
2644 * config/i386/linux64.mh (NATDEPFILES): Likewise.
2645 * config/ia64/linux.mh (NATDEPFILES): Likewise.
2646 * config/m32r/linux.mh (NATDEPFILES): Likewise.
2647 * config/m68k/linux.mh (NATDEPFILES): Likewise.
2648 * config/mips/linux.mh (NATDEPFILES): Likewise.
2649 * config/pa/linux.mh (NATDEPFILES): Likewise.
2650 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
2651 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
2652 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
2653 * config/s390/linux.mh (NATDEPFILES): Likewise.
2654 * config/sparc/linux.mh (NATDEPFILES): Likewise.
2655 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
2656 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
2657 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
2658
ca095836
GB
26592015-06-10 Gary Benson <gbenson@redhat.com>
2660
2661 * utils.h (make_cleanup_close): Moved to common/filestuff.h.
2662 * utils.c (do_close_cleanup): Moved to common/filestuff.c.
2663 (make_cleanup_close): Likewise.
2664 * common/filestuff.h (make_cleanup_close): Moved from utils.h.
2665 * common/filestuff.c (do_close_cleanup): Moved from utils.c.
2666 (make_cleanup_close): Likewise.
2667
5d9c55d3
JT
26682015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
2669
2670 * windows-nat.c (thread_rec): Also ignore ERROR_INVALID_HANDLE
2671 from SuspendThread().
2672
040ea00b
JT
26732015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
2674
2675 * windows-nat.c (handle_output_debug_string): Trim trailing '\n'
2676 from OutputDebugString.
2677
7d73c23c
WT
26782015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com>
2679 Mircea Gherzan <mircea.gherzan@intel.com>
2680
2681 * i386-tdep.c (MPX_BASE_MASK, MPX_BD_MASK, MPX_BT_MASK, MPX_BD_MASK_32,
2682 MPX_BT_MASK_32): New macros.
2683 (i386_mpx_set_bounds): New function that implements
2684 the command "set-mpx-bound".
2685 (i386_mpx_enabled): Helper function to test MPX availability.
2686 (i386_mpx_bd_base): Helper function to calculate the base directory
2687 address.
2688 (i386_mpx_get_bt_entry): Helper function to access a bound
2689 table entry.
2690 (i386_mpx_print_bounds): Effectively display bound information.
2691 (_initialize_i386_tdep): Add new commands to commands "set mpx" and
2692 "show mpx".
2693 (_initialize_i386_tdep):
2694 Add "bound" to the commands "show mpx" and "set mpx" commands.
2695 (mpx_set_cmdlist and mpx_show_cmdlist): List for the new prefixed "set mpx"
2696 and "show mpx" commands.
2697 * NEWS: List new commands for MPX support.
2698
3ac2e371
GB
26992015-06-09 Gary Benson <gbenson@redhat.com>
2700
2701 * common/fileio.h (fileio_to_host_mode): New declaration.
2702 * common/fileio.c (fileio_to_host_mode): New Function.
2703 * inf-child.c (inf_child_fileio_open): Process mode argument
2704 with fileio_to_host_mode.
2705
ecef18c5
GB
27062015-06-09 Gary Benson <gbenson@redhat.com>
2707
2708 * common/fileio.c (fileio_mode_pack): Fix preprocessor
2709 conditional.
2710
e3dd7556
GB
27112015-06-05 Gary Benson <gbenson@redhat.com>
2712
2713 * gdb_bfd.c (gdb_bfd_open): Move vgdb special case to...
2714 * remote.c (remote_filesystem_is_local): ...here.
2715
5b74bf7d
YQ
27162015-06-04 Yao Qi <yao.qi@linaro.org>
2717
2718 * gdbarch.c: Regenerate it.
2719
7f361056
JK
27202015-06-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2721
2722 * arch-utils.c (default_infcall_munmap): New.
2723 * arch-utils.h (default_infcall_munmap): New declaration.
2724 * compile/compile-object-load.c (struct munmap_list, munmap_list_add)
2725 (munmap_list_free, munmap_listp_free_cleanup): New.
2726 (struct setup_sections_data): Add field munmap_list_headp.
2727 (setup_sections): Call munmap_list_add.
2728 (compile_object_load): New variable munmap_list_head, initialize
2729 setup_sections_data.munmap_list_headp, return munmap_list_head.
2730 * compile/compile-object-load.h (struct munmap_list): New declaration.
2731 (struct compile_module): Add field munmap_list_head.
2732 (munmap_list_free): New declaration.
2733 * compile/compile-object-run.c (struct do_module_cleanup): Add field
2734 munmap_list_head.
2735 (do_module_cleanup): Call munmap_list_free.
2736 (compile_object_run): Pass munmap_list_head to do_module_cleanup.
2737 * gdbarch.c: Regenerate.
2738 * gdbarch.h: Regenerate.
2739 * gdbarch.sh (infcall_munmap): New.
2740 * linux-tdep.c (linux_infcall_munmap): New.
2741 (linux_init_abi): Install it.
2742
3b462ec2
SM
27432015-06-02 Simon Marchi <simon.marchi@ericsson.com>
2744
2745 PR gdb/15564
2746 * inferior.c (detach_inferior): Call exit_inferior_1 with silent = 0.
2747
8d683210
YQ
27482015-06-02 Yao Qi <yao.qi@linaro.org>
2749
2750 * i386-linux-nat.c: Include linux-nat.h.
2751
e0619de6
JK
27522015-06-01 Andreas Schwab <schwab@linux-m68k.org>
2753 Jan Kratochvil <jan.kratochvil@redhat.com>
2754
2755 PR symtab/18392
2756 * dwarf2-frame-tailcall.c (pretended_chain_levels): Correct
2757 assertion.
2758 * dwarf2loc.c (chain_candidate): Likewise.
2759
bd16da51
YQ
27602015-06-01 Yao Qi <yao.qi@linaro.org>
2761
2762 * arm-linux-nat.c (fetch_vfp_regs): Use PTRACE_GETREGSET.
2763 (store_vfp_regs): Use PTRACE_SETREGSET.
2764
df9d7ec9
YQ
27652015-06-01 Yao Qi <yao.qi@linaro.org>
2766
2767 * arm-linux-nat.c (fetch_fpregister): Use PTRACE_GETREGSET.
2768 (fetch_fpregs): Likewise.
2769 * arm-linux-nat.c (store_fpregister): Use PTRACE_SETREGSET.
2770 (store_fpregs): Likewise.
2771
10766686
YQ
27722015-06-01 Yao Qi <yao.qi@linaro.org>
2773
2774 * arm-linux-nat.c (fetch_register): Use PTRACE_GETREGSET.
2775 (fetch_regs): Likewise.
2776 (store_regs): Use PTRACE_SETREGSET.
2777 (store_register): Likewise.
2778
7efe48d1
YQ
27792015-06-01 Yao Qi <yao.qi@linaro.org>
2780
2781 * arm-linux-nat.c (arm_linux_read_description): Check whether
2782 kernel supports PTRACE_GETREGSET.
2783
433bbbf8
YQ
27842015-06-01 Yao Qi <yao.qi@linaro.org>
2785
2786 * x86-linux-nat.c (have_ptrace_getregset): Move it to ...
2787 * linux-nat.c: ... here.
2788 * x86-linux-nat.h (have_ptrace_getregset): Move the declaration
2789 to ...
2790 * linux-nat.h: ... here.
2791
ca9b78ce
YQ
27922015-06-01 Yao Qi <yao.qi@linaro.org>
2793
2794 * amd64-linux-nat.c: Include "nat/linux-ptrace.h".
2795 * i386-linux-nat.c: Likewise.
2796 * nat/linux-ptrace.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Define.
2797 * s390-linux-nat.c: Include "nat/linux-ptrace.h".
2798 (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
2799 * x86-linux-nat.c: Include "nat/linux-ptrace.h".
2800 * x86-linux-nat.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
2801
99cee7b7
EZ
28022015-05-30 Eli Zaretskii <eliz@gnu.org>
2803
2804 * go32-nat.c (go32_xfer_memory): Fix the return value to be
2805 compatible to what read_child and write_child return. This
2806 unbreaks that DJGPP build of GDB which was broken since v7.7.
2807
2147f5bd
MG
28082015-05-29 Martin Galvan <martin.galvan@tallertechnologies.com>
2809
2810 * MAINTAINERS (Write After Approval): Add Martin Galvan.
2811
c8f6c93c
RM
28122015-05-29 Roland McGrath <mcgrathr@google.com>
2813
2814 PR gdb/18464
2815 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Use warning
2816 rather than internal_error for an unrecognized value.
2817
8c6a948d
MF
28182015-05-29 Max Filippov <jcmvbkbc@gmail.com>
2819
2820 * xtensa-tdep.c (xtensa_pseudo_register_read)
2821 (xtensa_pseudo_register_write): Don't alias last pseudo register
2822 to a1.
2823
8dd06f7a
DB
28242015-05-28 Don Breazeal <donb@codesourcery.com>
2825
2826 * infrun.c (follow_fork_inferior): Ensure the use of
2827 process-style ptids (pid,0,0) in verbose/debug "Detaching"
2828 messages.
2829
a051152b
DE
28302015-05-28 Doug Evans <dje@google.com>
2831
2832 * dwarf2read.c (record_line_ftype): Remove, duplicate.
2833
a56cc1ce
YQ
28342015-05-28 Yao Qi <yao.qi@linaro.org>
2835
2836 * arm-linux-nat.c (arm_linux_has_wmmx_registers): Remove.
2837 (arm_linux_fetch_inferior_registers): Use
2838 tdep->have_wmmx_registers instead of arm_linux_has_wmmx_registers.
2839 (arm_linux_store_inferior_registers): Likewise.
2840 (arm_linux_read_description): Don't set
2841 arm_linux_has_wmmx_registers.
2842 * arm-tdep.c (arm_gdbarch_init): Set
2843 tdep->have_wmmx_registers according target descriptions.
2844 * arm-tdep.h (struct gdbarch_tdep) <have_wmmx_registers>: New
2845 field.
2846
330c6ca9
YQ
28472015-05-28 Yao Qi <yao.qi@linaro.org>
2848
2849 * arm-linux-nat.c (arm_linux_vfp_register_count): Remove.
2850 (fetch_vfp_regs): Use vfp_register_count from gdbarch_tdep
2851 instead of arm_linux_vfp_register_count.
2852 (store_vfp_regs): Likewise.
2853 (arm_linux_fetch_inferior_registers): Likewise.
2854 (arm_linux_store_inferior_registers): Likewise.
2855 (arm_linux_read_description): Don't set
2856 arm_linux_vfp_register_count.
2857 * arm-linux-tdep.c (arm_linux_iterate_over_regset_sections):
2858 Adjust.
2859 * arm-tdep.c (arm_gdbarch_init): Add assert on
2860 vfp_register_count.
2861 * arm-tdep.h (struct gdbarch_tdep) <have_vfp_registers>: Rename
2862 field to vfp_register_count. All users updated.
2863
d403db27
KH
28642015-05-28 Kyle Huey <me@kylehuey.com> (tiny patch)
2865
2866 * gdb/arm-tdep.c (arm_gdbarch_init): Perform arm_abi detection on
2867 ELFOSABI_GNU binaries.
2868
d9b3de22
DE
28692015-05-27 Doug Evans <dje@google.com>
2870
2871 * dwarf2read.c (lnp_state_machine): New typedef.
2872 (lnp_reader_state): New typedef.
2873 (dwarf_record_line_1): Renamed from dwarf_record_line.
2874 All callers updated.
2875 (dwarf_record_line): New function.
2876 (init_lnp_state_machine): New function.
2877 (check_line_address): Replace p_record_line parameter with state.
2878 All callers updated.
2879 (dwarf_decode_lines_1): Call dwarf_record_line, init_lnp_state_machine.
2880 Update to record state in lnp_state_machine.
2881
924c2928
DE
28822015-05-27 Doug Evans <dje@google.com>
2883
2884 * dwarf2read.c (record_line_ftype): New typedef.
2885 (check_line_address): New function.
2886 (dwarf_decode_lines_1): Call it.
2887
27e0867f
DE
28882015-05-27 Doug Evans <dje@google.com>
2889
2890 * NEWS: Mention "set debug dwarf-line".
2891 * dwarf2read.c (dwarf_line_debug): New static global.
2892 (add_include_dir): Add debug dwarf-line support.
2893 (add_file_name, dwarf_record_line, dwarf_finish_line): Ditto.
2894 (_initialize_dwarf2_read): New parameter "debug dwarf-line".
2895
4dcabcc2
DE
28962015-05-27 Doug Evans <dje@google.com>
2897
2898 * cp-namespace.c (cp_lookup_nested_symbol): New arg "domain".
2899 All callers updated.
2900 (cp_lookup_nested_symbol_1, find_symbol_in_baseclass): Ditto.
2901 * cp-support.h (cp_lookup_nested_symbol): Update.
2902
b2e2f908
DE
29032015-05-27 Doug Evans <dje@google.com>
2904
2905 PR symtab/18258
2906 * block.c (block_find_symbol): New function.
2907 (block_find_non_opaque_type): Ditto.
2908 (block_find_non_opaque_type_preferred): Ditto.
2909 * block.h (block_symbol_matcher_ftype): New typedef.
2910 (block_find_symbol): Declare.
2911 (block_find_non_opaque_type): Ditto.
2912 (block_find_non_opaque_type_preferred): Ditto.
2913 * dwarf2read.c (dw2_lookup_symbol): Call block_find_symbol.
2914 * psymtab.c (psym_lookup_symbol): Ditto.
2915 * symtab.c (basic_lookup_transparent_type_1): New function.
2916 (basic_lookup_transparent_type): Call it.
2917
f62fce35
YQ
29182015-05-27 Yao Qi <yao.qi@linaro.org>
2919
2920 * aarch64-tdep.c (aarch64_record_data_proc_simd_fp): Return
2921 AARCH64_RECORD_UNKNOWN for unknown instruction encoding.
2922
5d98d3cd
YQ
29232015-05-27 Yao Qi <yao.qi@linaro.org>
2924
2925 * aarch64-tdep.c (aarch64_record_branch_except_sys): Split lines
2926 before operator &&.
2927 (aarch64_record_load_store): Likewise.
2928
82c7be31
DE
29292015-05-26 Doug Evans <dje@google.com>
2930
2931 PR c++/18141, c++/18417.
2932 * cp-support.c (cp_lookup_rtti_type): Handle the case of NAME being
2933 a typedef.
2934
b4f54984
DE
29352015-05-26 Doug Evans <dje@google.com>
2936
2937 * NEWS: Add entries for command renamings.
2938 * dwarf2read.c (dwarf_read_debug): Renamed from dwarf2_read_debug.
2939 All uses updated.
2940 (dwarf_die_debug): Renamed from dwarf2_die_debug. All uses updated.
2941 (dwarf_max_cache_age): Renamed from dwarf2_max_cache_age.
2942 All uses updated.
2943 (show_dwarf_max_cache_age): Renamed from show_dwarf2_max_cache_age.
2944 All callers updated. Fix spelling of DWARF in help text.
2945 (set_dwarf_cmdlist): Renamed from set_dwarf2_cmdlist.
2946 All uses updated.
2947 (show_dwarf_cmdlist): Renamed from show_dwarf2_cmdlist.
2948 All uses updated.
2949 (set_dwarf_cmd): Renamed from set_dwarf2_cmd. All callers updated.
2950 (show_dwarf_cmd): Renamed from show_dwarf2_cmd. All callers updated.
2951 (dwarf_always_disassemble): Renamed from dwarf_always_disassemble.
2952 All uses updated.
2953 (show_dwarf_always_disassemble): Renamed from
2954 show_dwarf2_always_disassemble. All callers updated.
2955 (_initialize_dwarf2_read): Rename "set/show dwarf2" prefix to
2956 "set/show dwarf". Rename "set/show dwarf2 max-cache-age" to
2957 "set/show dwarf max-cache-age". Rename
2958 "set/show dwarf2 always-disassemble" to
2959 "set/show dwarf always-disassemble". Rename
2960 "set/show debug dwarf2-read" to "set/show debug dwarf-read". Rename
2961 "set/show debug dwarf2-die" to "set/show debug dwarf-die".
2962
4ea6efe9
DE
29632015-05-26 Doug Evans <dje@google.com>
2964
2965 PR python/18438
2966 * python/py-lazy-string.c (stpy_convert_to_value): Use
2967 gdbpy_gdb_memory_error not PyExc_MemoryError.
2968 (gdbpy_create_lazy_string_object): Ditto.
2969
b93fd21d
AB
29702015-05-26 Andrew Burgess <andrew.burgess@embecosm.com>
2971
2972 * tui/tui-regs.c (tui_reg_next_command): Compare against NULL.
2973
55b40027
AB
29742015-05-26 Andrew Burgess <andrew.burgess@embecosm.com>
2975
2976 * tui/tui-regs.c (tui_reg_prev_command): New function.
2977 (_initialize_tui_regs): Add 'prev' command for 'tui reg'.
2978 * reggroups.c (reggroup_prev): New function.
2979 * reggroups.h (reggroup_prev): Add declaration. Update comment.
2980
99afc88b
OJ
29812015-05-26 Omair Javaid <omair.javaid@linaro.org>
2982 Yao Qi <yao.qi@linaro.org>
2983
2984 * aarch64-linux-tdep.c: Include linux-record.h and
2985 record-full.h.
2986 (struct linux_record_tdep aarch64_linux_record_tdep): Declare.
2987 (aarch64_syscall): New enum.
2988 (aarch64_canonicalize_syscall): New function.
2989 (aarch64_all_but_pc_registers_record): New function.
2990 (aarch64_linux_syscall_record): New function.
2991 (aarch64_linux_init_abi): Install AArch64 process record
2992 handler. Update to handle syscall recording.
2993 * aarch64-tdep.c: Include record.h and record-full.h.
2994 (submask, bit, bits, REG_ALLOC, MEM_ALLOC): New macros.
2995 (struct aarch64_mem_r): Define.
2996 (aarch64_record_result): New enum.
2997 (struct insn_decode_record): Define.
2998 (insn_decode_record): New typedef.
2999 (aarch64_record_data_proc_reg): New function.
3000 (aarch64_record_data_proc_imm): New function.
3001 (aarch64_record_branch_except_sys): New function.
3002 (aarch64_record_load_store): New function.
3003 (aarch64_record_data_proc_simd_fp): New function.
3004 (aarch64_record_asimd_load_store): New function.
3005 (aarch64_record_decode_insn_handler): New function.
3006 (deallocate_reg_mem): New function.
3007 (aarch64_process_record): New function.
3008 * aarch64-tdep.h (struct gdbarch_tdep) <aarch64_syscall_record>:
3009 New field.
3010 (aarch64_process_record): New extern declaration.
3011 * configure.tgt: Add linux-record.o to gdb_target_obs.
3012 * linux-record.h (struct linux_record_tdep) <arg7>: New field.
3013
c16a3f52
OJ
30142015-05-26 Omair Javaid <omair.javaid@linaro.org>
3015
3016 * NEWS: Add a note on process record-replay support on aarch64*-linux*
3017 targets.
3018
c9cf6e20
MG
30192015-05-26 Martin Galvan <martin.galvan@tallertechnologies.com>
3020
3021 * amd64-tdep.c: Replace in_function_epilogue_p with
3022 stack_frame_destroyed_p throughout.
3023 * arch-utils.c: Ditto.
3024 * arch-utils.h: Ditto.
3025 * arm-tdep.c: Ditto.
3026 * breakpoint.c: Ditto.
3027 * gdbarch.sh: Ditto.
3028 * hppa-tdep.c: Ditto.
3029 * i386-tdep.c: Ditto.
3030 * mips-tdep.c: Ditto.
3031 * nios2-tdep.c: Ditto.
3032 * rs6000-tdep.c: Ditto.
3033 * s390-linux-tdep.c: Ditto.
3034 * score-tdep.c: Ditto.
3035 * sh-tdep.c: Ditto.
3036 * sparc-tdep.c: Ditto.
3037 * sparc-tdep.h: Ditto.
3038 * sparc64-tdep.c: Ditto.
3039 * spu-tdep.c: Ditto.
3040 * tic6x-tdep.c: Ditto.
3041 * tilegx-tdep.c: Ditto.
3042 * xstormy16-tdep.c: Ditto.
3043 * gdbarch.c, gdbarch.h: Re-generated.
3044
a4ea0946
AB
30452015-05-22 Andrew Burgess <andrew.burgess@embecosm.com>
3046
3047 * NEWS: Mention 'tui enable' and 'tui disable'.
3048 * tui/tui.c (tui_enable_command): New function.
3049 (tui_disable_command): New function.
3050 (_initialize_tui): New function.
3051
b75c69bb
AB
30522015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
3053
3054 * tui/tui-regs.c (tui_reg_next_command): Use NULL not 0.
3055
c1b009ee
AB
30562015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
3057
3058 * tui/tui-layout.c (tui_set_layout_for_display_command): Ensure
3059 buf_ptr is freed.
3060
880d1e40
AB
30612015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
3062
3063 * tui/tui-layout.c (tui_layout_command): Move call to tui_enable
3064 into ...
3065 (tui_set_layout_for_display_command): ...here, before calling
3066 tui_set_layout. Only set the layout if gdb has not already
3067 entered the TUI_FAILURE state.
3068
a0145030
AB
30692015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
3070
3071 * tui/tui-layout.c (layout_completer): New function.
3072 (_initialize_tui_layout): Set completer on layout command.
3073
7bd0be3a
AB
30742015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
3075
3076 * tui/tui-layout.c (tui_set_layout): Remove
3077 tui_register_display_type parameter. Remove all checking of this
3078 parameter, and reindent function. Update header comment.
3079 (tui_set_layout_for_display_command): Rename to...
3080 (tui_set_layout_by_name): ...this, and don't check for different
3081 register class types, don't pass a tui_register_display_type to
3082 tui_set_layout. Update header comment.
3083 (layout_names): Remove register set specific names.
3084 * tui/tui-layout.h (tui_set_layout): Remove
3085 tui_register_display_type parameter.
3086 * tui/tui.c (tui_rl_change_windows): Don't pass a
3087 tui_register_display_type to tui_set_layout.
3088 (tui_rl_delete_other_windows): Likewise.
3089 (tui_enable): Likewise.
3090 * tui/tui-data.h (TUI_FLOAT_REGS_NAME): Remove.
3091 (TUI_FLOAT_REGS_NAME_LOWER): Remove.
3092 (TUI_GENERAL_REGS_NAME): Remove.
3093 (TUI_GENERAL_REGS_NAME_LOWER): Remove.
3094 (TUI_SPECIAL_REGS_NAME): Remove.
3095 (TUI_SPECIAL_REGS_NAME_LOWER): Remove.
3096 (TUI_GENERAL_SPECIAL_REGS_NAME): Remove.
3097 (TUI_GENERAL_SPECIAL_REGS_NAME_LOWER): Remove.
3098 (enum tui_register_display_type): Remove.
3099 (struct tui_layout_def): Remove regs_display_type and
3100 float_regs_display_type fields.
3101 (struct tui_data_info): Remove regs_display_type field.
3102 (tui_layout_command): Use new name for
3103 tui_set_layout_for_display_command.
3104 * tui/tui-data.c (layout_def): Don't initialise removed fields.
3105 (tui_clear_win_detail): Don't initialise removed fields of
3106 win_info.
3107 * tui/tui-regs.c (tui_show_registers): Use new name for
3108 tui_set_layout_for_display_command.
3109 * tui/tui.h (tui_set_layout_for_display_command): Rename
3110 declaration to...
3111 (tui_set_layout_by_name): ...this.
3112 * printcmd.c (display_command): Remove tui related layout call,
3113 and reindent.
3114
0b6e5e10
JB
31152015-05-20 Joel Brobecker <brobecker@adacore.com>
3116
3117 * infrun.c (handle_inferior_event_1): Renames handle_inferior_event.
3118 (handle_inferior_event): New function.
3119
1da0522e
JB
31202015-05-20 Joel Brobecker <brobecker@adacore.com>
3121
3122 * ada-lang.c (to_fixed_array_type): Rename local variable
3123 typename into type_name.
3124
5fe75eec
JK
31252015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
3126
3127 Fix ASAN crash for gdb.compile/compile.exp.
3128 * infcall.c (call_function_by_hand_dummy): Use xstrdup for NAME.
3129
a4063588
JK
31302015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
3131
3132 * compile/compile-c-symbols.c (convert_symbol_sym, gcc_convert_symbol)
3133 (gcc_symbol_address): Change gdb_stdout to gdb_stdlog.
3134 * compile/compile-object-load.c (setup_sections, compile_object_load):
3135 Likewise.
3136 * compile/compile.c (compile_to_object): Likewise.
3137
37442ce1
DE
31382015-05-16 Doug Evans <xdje42@gmail.com>
3139
3140 * NEWS: Mention support for unbuffered Guile memory ports.
3141 * scm-ports.c (ioscm_memory_port): Update comments on end, size.
3142 (ioscm_lseek_address): Improve overflow calculation.
3143 (gdbscm_memory_port_fill_input): Add assert.
3144 (gdbscm_memory_port_write): Handle unbuffered ports.
3145 Handle large writes identical to Guile's fport_write.
3146 (gdbscm_memory_port_seek): Fix seeking past end check.
3147 (gdbscm_memory_port_close): Handle closing unbuffered port.
3148 (ioscm_parse_mode_bits): Recognize "0" for unbuffered ports.
3149 (ioscm_init_memory_port): Handle unbuffered ports.
3150 (ioscm_reinit_memory_port): Ditto.
3151 (ioscm_init_memory_port): Update size calculation.
3152 (gdbscm_open_memory): Support zero sized ports.
3153
d976bace
JK
31542015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
3155
3156 * compile/compile-object-load.c (get_out_value_type): Fix uninitialized
3157 variable compiler warnings.
3158
4d18dfad
JK
31592015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
3160
3161 * compile/compile-object-load.c (get_out_value_type): Fix returned type.
3162
36de76f9
JK
31632015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
3164 Phil Muldoon <pmuldoon@redhat.com>
3165
3166 * NEWS (Changes since GDB 7.9): Add compile print.
3167 * compile/compile-c-support.c (add_code_header, add_code_footer)
3168 (c_compute_program): Add COMPILE_I_PRINT_ADDRESS_SCOPE and
3169 COMPILE_I_PRINT_VALUE_SCOPE.
3170 * compile/compile-internal.h (COMPILE_I_PRINT_OUT_ARG_TYPE)
3171 (COMPILE_I_PRINT_OUT_ARG, COMPILE_I_EXPR_VAL, COMPILE_I_EXPR_PTR_TYPE):
3172 New.
3173 * compile/compile-object-load.c: Include block.h.
3174 (get_out_value_type): New function.
3175 (compile_object_load): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
3176 COMPILE_I_PRINT_VALUE_SCOPE. Set compile_module's OUT_VALUE_ADDR and
3177 OUT_VALUE_TYPE.
3178 * compile/compile-object-load.h (struct compile_module): Add fields
3179 out_value_addr and out_value_type.
3180 * compile/compile-object-run.c: Include valprint.h and compile.h.
3181 (struct do_module_cleanup): Add fields out_value_addr and
3182 out_value_type.
3183 (do_module_cleanup): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
3184 COMPILE_I_PRINT_VALUE_SCOPE.
3185 (compile_object_run): Propagate out_value_addr and out_value_type.
3186 Pass OUT_VALUE_ADDR.
3187 * compile/compile.c: Include valprint.h.
3188 (compile_print_value, compile_print_command): New functions.
3189 (eval_compile_command): Handle failed COMPILE_I_PRINT_ADDRESS_SCOPE.
3190 (_initialize_compile): Update compile code help text. Install
3191 compile_print_command.
3192 * compile/compile.h (compile_print_value): New prototype.
3193 * defs.h (enum compile_i_scope_types): Add
3194 COMPILE_I_PRINT_ADDRESS_SCOPE and COMPILE_I_PRINT_VALUE_SCOPE.
3195
83d3415e
JK
31962015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
3197
3198 * compile/compile-object-load.c (get_regs_type): Add parameter func_sym.
3199 Rely on its parameter count.
3200 (compile_object_load): Replace lookup_minimal_symbol_text by
3201 lookup_global_symbol_from_objfile. Verify FUNC_SYM. Set it in the
3202 return value.
3203 * compile/compile-object-load.h (struct compile_module): Replace
3204 func_addr by func_sym.
3205 * compile/compile-object-run.c: Include block.h.
3206 (compile_object_run): Reset module variable after it is freed. Use
3207 FUNC_SYM instead of FUNC_ADDR. Rely on it.
3208
3a9558c4
JK
32092015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
3210
3211 * compile/compile-c-support.c (print_one_macro): Use #ifndef.
3212 (generate_register_struct): Use __gdb_uintptr for TYPE_CODE_PTR.
3213 (c_compute_program): Call generate_register_struct after typedefs.
3214 * compile/compile-loc2c.c (push, pushf_register_address)
3215 (pushf_register): Cast to GCC_UINTPTR.
3216 (do_compile_dwarf_expr_to_c): Use unused attribute. Add space after
3217 type. Use GCC_UINTPTR instead of void *. Remove excessive cast.
3218 (compile_dwarf_expr_to_c): Use GCC_UINTPTR instead of void *.
3219 * compile/compile.c (_initialize_compile): Enable warnings for
3220 COMPILE_ARGS.
3221
5c65b58a
JK
32222015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
3223
3224 * cli/cli-script.c (execute_control_command): Update
3225 eval_compile_command caller.
3226 * compile/compile-object-load.c (compile_object_load): Add parameters
3227 scope and scope_data. Set them.
3228 * compile/compile-object-load.h (struct compile_module): Add fields
3229 scope and scope_data.
3230 (compile_object_load): Add parameters scope and scope_data.
3231 * compile/compile-object-run.c (struct do_module_cleanup): Add fields
3232 scope and scope_data.
3233 (compile_object_run): Propagate the fields scope and scope_data.
3234 * compile/compile.c (compile_file_command, compile_code_command):
3235 Update eval_compile_command callers.
3236 (eval_compile_command): Add parameter scope_data. Pass it plus scope.
3237 * compile/compile.h (eval_compile_command): Add parameter scope_data.
3238 * defs.h (struct command_line): Add field scope_data.
3239
1c88ceb1
JK
32402015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
3241
3242 * printcmd.c (struct format_data): Move it to valprint.h.
3243 (print_command_parse_format, print_value): New functions from ...
3244 (print_command_1): ... here. Call them.
3245 * valprint.h (struct format_data): Move it here from printcmd.c.
3246 (print_command_parse_format, print_value): New declarations.
3247
0b738f27
JK
32482015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
3249
3250 * compile/compile-object-load.c (compile_object_load): Add
3251 COMPILE_DEBUG message.
3252
aa715135
JG
32532015-05-15 Jerome Guitton <guitton@adacore.com>
3254
3255 * ada-lang.c (ada_value_ptr_subscript): Use enum position of
3256 index to get element instead of enum value.
3257 (ada_value_slice_from_ptr, ada_value_slice): Use enum position
3258 of index to compute length, but enum values to compute bounds.
3259 (ada_array_length): Use enum position of index instead of enum value.
3260 (pos_atr): Move position computation to...
3261 (ada_evaluate_subexp): Use enum values to compute bounds.
3262 * gdbtypes.c (discrete_position): ...this new function.
3263 * gdbtypes.h (discrete_position): New function declaration.
3264 * valprint.c (val_print_array_elements): Call discrete_position
3265 to handle array indexed by non-contiguous enumeration types.
3266
931e5bc3
JG
32672015-05-15 Jerome Guitton <guitton@adacore.com>
3268
3269 * ada-lang.c (find_parallel_type_by_descriptive_type):
3270 Go through typedefs during lookup.
3271 (to_fixed_array_type): Add support for non-bit packed arrays
3272 as variable-length fields.
3273
4e63d0ac
PA
32742015-05-15 Pedro Alves <palves@redhat.com>
3275 Simon Marchi <simon.marchi@ericsson.com>
3276
3277 * event-loop.c (gdb_notifier) <next_file_handler,
3278 next_poll_fds_index>: New fields.
3279 (get_next_file_handler_to_handle_and_advance): New function.
3280 (delete_file_handler): If deleting the next file handler to
3281 handle, advance to the next file handler.
3282 (gdb_wait_for_event): Bail early if no event fired. Poll file
3283 handlers in round-robin fashion.
3284
52e48b36
PA
32852015-05-15 Pedro Alves <palves@redhat.com>
3286
3287 * linux-tdep.c (linux_find_memory_regions_full): Rename local
3288 'private' to 'priv'.
3289
2465e12e
PA
32902015-05-15 Pedro Alves <palves@redhat.com>
3291
3292 * nat/linux-nat.h: Include "target/waitstatus.h".
3293
13fa0398
YZ
32942015-05-15 Yuanhui Zhang <asmwarrior@gmail.com>
3295
3296 * python/py-unwind.c (struct reg_info): Move out of ...
3297 (struct cached_frame_info): ... this scope.
3298 (pending_frame_object_type, unwind_info_object_type): Make extern.
3299
9cd4d857
JB
33002015-05-15 Joel Brobecker <brobecker@adacore.com>
3301
3302 * ada-lang.c (ada_value_primitive_packed_val): Make sure
3303 accumSize is never negative.
3304
e3555239
PP
33052015-05-14 Patrick Palka <patrick@parcs.ath.cx>
3306
3307 * tui/tui-command.c: Remove include of <ctype.h>.
3308 (tui_dispatch_ctrl_char): Remove workaround for xterm terminals.
3309
08a76f8a
MG
33102015-05-13 Martin Galvan <martin.galvan@tallertechnologies.com>
3311
3312 * dwarf2read.c (die_needs_namespace): Return 1 for
3313 DW_TAG_inlined_subroutine.
3314
bd49952b
JK
33152015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3316
3317 * regcache.c (regcache_cpy_no_passthrough): New declaration.
3318 (regcache_cpy_no_passthrough): Make it static, add function comment.
3319 * regcache.h (regcache_dup, regcache_cpy): Reduce/update their comment.
3320 (regcache_cpy_no_passthrough): Remove declaration.
3321
46c03469
JK
33222015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3323
3324 * gdbthread.h (struct thread_control_state): Update comment for
3325 proceed_to_finish.
3326 * infcall.c (run_inferior_call): Update comment about
3327 proceed_to_finish.
3328 * infcmd.c (get_return_value): Update comment about stop_registers.
3329 (finish_forward): Update comment about proceed_to_finish.
3330 * infrun.c (stop_registers): Remove.
3331 (clear_proceed_status, normal_stop): Remove stop_registers handling.
3332 * infrun.h (stop_registers): Remove.
3333
8a6c4031
JK
33342015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3335
3336 * infcall.c (struct dummy_frame_context_saver)
3337 (dummy_frame_context_saver_data_free, dummy_frame_context_saver_dtor)
3338 (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
3339 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
3340 New.
3341 (call_function_by_hand_dummy): Move discard_cleanups of
3342 inf_status_cleanup before dummy_frame_push. Call
3343 dummy_frame_context_saver_setup and prepare context_saver_cleanup.
3344 Use dummy_frame_context_saver_get_regs instead of stop_registers.
3345 * infcall.h (struct dummy_frame_context_saver)
3346 (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
3347 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
3348 New declarations.
3349 * infcmd.c: Include infcall.h.
3350 (get_return_value): Add parameter ctx_saver, use it instead of
3351 stop_registers.
3352 (print_return_value): Add parameter ctx_saver, pass it.
3353 (struct finish_command_continuation_args): Add field ctx_saver.
3354 (finish_command_continuation): Update print_return_value caller.
3355 (finish_command_continuation_free_arg): Free also ctx_saver.
3356 (finish_forward): Call dummy_frame_context_saver_setup.
3357 * inferior.h (struct dummy_frame_context_saver): New declaration.
3358 (get_return_value): Add parameter ctx_saver.
3359 * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Update
3360 get_return_value caller.
3361
10989690
JK
33622015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3363
3364 * dummy-frame.c (struct dummy_frame_dtor_list): New.
3365 (struct dummy_frame): Replace dtor and dtor_data by dtor_list.
3366 (remove_dummy_frame): Process dtor_list.
3367 (pop_dummy_frame): Process dtor_list.
3368 (register_dummy_frame_dtor): Maintain dtor_list.
3369 (find_dummy_frame_dtor): Handle dtor_list.
3370 * dummy-frame.h (register_dummy_frame_dtor, find_dummy_frame_dtor):
3371 Update comments.
3372
5e970501
JK
33732015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3374
3375 * compile/compile-object-run.c (do_module_cleanup): Add parameter
3376 registers_valid.
3377 (compile_object_run): Update do_module_cleanup caller.
3378 * dummy-frame.c: Include infcall.h.
3379 (struct dummy_frame): Update dtor comment.
3380 (remove_dummy_frame): Call dtor.
3381 (pop_dummy_frame): Update dtor caller.
3382 * dummy-frame.h (dummy_frame_dtor_ftype): Add parameter
3383 registers_valid.
3384
1c4eb778
JB
33852015-05-13 Joel Brobecker <brobecker@adacore.com>
3386
3387 GDB 7.9.1 released.
3388
f5f85ab9
JB
33892015-05-13 Joel Brobecker <brobecker@adacore.com>
3390
3391 * NEWS: Create "Changes in GDB 7.9.1" section. Move news about
3392 Xmethods now being able to specify a result type to that new
3393 sectioin.
3394
242cd84c
PP
33952015-05-13 Patrick Palka <patrick@parcs.ath.cx>
3396
3397 * tui/tui-win.c (tui_async_resize_screen): Clear win_resized
3398 first before resizing the window.
e3555239 3399 * tui/tui.c (tui_enable): Likewise.
242cd84c
PP
3400
34012015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
558e5469
JK
3402
3403 * dummy-frame.c (struct dummy_frame): Use proper typedef for dtor.
3404 * dummy-frame.h (dummy_frame_dtor_ftype): Add its comment.
3405 * infcall.c (call_function_by_hand_dummy): Use proper typedef for
3406 dummy_dtor parameter.
3407 * infcall.h: Include dummy-frame.h.
3408 (call_function_by_hand_dummy_dtor_ftype): Remove.
3409 (call_function_by_hand_dummy): Use proper typedef for dummy_dtor
3410 parameter.
3411
ebfd00d2
PP
34122015-05-13 Patrick Palka <patrick@parcs.ath.cx>
3413
3414 PR gdb/17820
3415 * top.c (history_size_setshow_var): Change type to signed.
3416 Initialize to -2. Update documentation.
3417 (set_readline_history_size): Define.
3418 (set_history_size_command): Use it. Remove logic for handling
3419 out-of-range sizes.
3420 (init_history): Use set_readline_history_size(). Test for a
3421 value of -2 instead of 0 when determining whether to set a
3422 default history size.
3423 (init_main): Decode the argument of the "size" command as a
3424 zuinteger_unlimited.
3425
83769d0b
DE
34262015-05-12 Doug Evans <dje@google.com>
3427
3428 * dwarf2read.c (struct file_entry): Tweak comments.
3429 (get_debug_line_section): Tweak comments.
3430
0d71eef5
DB
34312015-05-12 Don Breazeal <donb@codesourcery.com>
3432
3433 * NEWS: Announce fork support in the RSP and support
3434 for fork debugging in extended mode.
3435
cbb8991c
DB
34362015-05-12 Don Breazeal <donb@codesourcery.com>
3437
3438 * remote.c (remote_insert_fork_catchpoint): New function.
3439 (remote_remove_fork_catchpoint): New function.
3440 (remote_insert_vfork_catchpoint): New function.
3441 (remote_remove_vfork_catchpoint): New function.
3442 (pending_fork_parent_callback): New function.
3443 (remove_new_fork_child): New function.
3444 (remote_update_thread_list): Call remote_notif_get_pending_events
3445 and remove_new_fork_child.
3446 (extended_remote_kill): Kill fork child when killing the
3447 parent before follow_fork completes.
3448 (init_extended_remote_ops): Initialize target vector with
3449 new fork catchpoint functions.
3450
c269dbdb
DB
34512015-05-12 Don Breazeal <donb@codesourcery.com>
3452
3453 * remote.c (remove_vfork_event_p): New function.
3454 (remote_follow_fork): Add vfork event type to event checking.
3455 (remote_parse_stop_reply): New stop reasons "vfork" and
3456 "vforkdone" for RSP 'T' Stop Reply Packet.
3457
de0d863e
DB
34582015-05-12 Don Breazeal <donb@codesourcery.com>
3459
3460 * linux-nat.c (linux_nat_ptrace_options): New function.
3461 (linux_init_ptrace, wait_lwp, linux_nat_filter_event):
3462 Call linux_nat_ptrace_options and use different argument to
3463 linux_enable_event_reporting.
3464 (_initialize_linux_nat): Delete call to
3465 linux_ptrace_set_additional_flags.
c8f6c93c 3466 * nat/linux-ptrace.c (current_ptrace_options): Rename to
de0d863e
DB
3467 supported_ptrace_options.
3468 (additional_flags): Delete variable.
3469 (linux_check_ptrace_features): Use supported_ptrace_options.
3470 (linux_test_for_tracesysgood, linux_test_for_tracefork):
3471 Likewise, and remove additional_flags check.
3472 (linux_enable_event_reporting): Change 'attached' argument to
3473 'options'. Use supported_ptrace_options.
c8f6c93c 3474 (ptrace_supports_feature): Change comment. Use
de0d863e
DB
3475 supported_ptrace_options.
3476 (linux_ptrace_set_additional_flags): Delete function.
3477 * nat/linux-ptrace.h (linux_ptrace_set_additional_flags):
3478 Delete function prototype.
3479 * remote.c (remote_fork_event_p): New function.
3480 (remote_detach_pid): New function.
3481 (remote_detach_1): Call remote_detach_pid, don't mourn inferior
3482 if doing detach-on-fork.
3483 (remote_follow_fork): New function.
3484 (remote_parse_stop_reply): Handle new "T" stop reason "fork".
3485 (remote_pid_to_str): Print "process" strings for pid/0/0 ptids.
3486 (init_extended_remote_ops): Initialize to_follow_fork.
3487
89245bc0
DB
34882015-05-12 Don Breazeal <donb@codesourcery.com>
3489
3490 * nat/linux-ptrace.c (linux_check_ptrace_features): Change
3491 from static to extern.
3492 * nat/linux-ptrace.h (linux_check_ptrace_features): Declare.
3493 * remote.c (anonymous enum): <PACKET_fork_event_feature,
3494 * PACKET_vfork_event_feature>: New enumeration constants.
3495 (remote_protocol_features): Add table entries for new packets.
3496 (remote_query_supported): Add new feature queries to qSupported
3497 packet.
3498
835205d0
GB
34992015-05-12 Gary Benson <gbenson@redhat.com>
3500
3501 * remote.c (remote_add_inferior): Call exec_file_locate_attach
3502 for fake PIDs as well as real ones.
3503 (remote_pid_to_exec_file): Send empty annex if PID is fake.
3504
4c082a81
SC
35052015-05-09 Siva Chandra Reddy <sivachandra@google.com>
3506
3507 * NEWS (Python Scripting): Mention the new gdb.Value methods.
3508 * python/py-value.c (valpy_reference_value): New function.
3509 (valpy_const_value): Likewise.
3510 (value_object_methods): Add new methods.
3511 * value.c (make_cv_value): New function.
3512 * value.h (make_cv_value): Declare.
3513
afa6c9ab
SL
35142015-05-08 Yao Qi <yao@codesourcery.com>
3515 Sandra Loosemore <sandra@codesourcery.com>
3516
3517 * dwarf2read.c (setup_type_unit_groups): Do NULL pointer check
3518 to 'lh->include_dirs' before accessing to it.
3519 (psymtab_include_file_name): Likewise.
3520 (dwarf_decode_lines_1): Likewise.
3521 (dwarf_decode_lines): Likewise.
3522 (file_file_name): Likewise.
3523
35d54293
SL
35242015-05-08 Sandra Loosemore <sandra@codesourcery.com>
3525
3526 * nios2-linux-tdep.c (NIOS2_SIGRETURN_TRAMP_ADDR): Define.
3527 (NIOS2_SIGRETURN_REGSAVE_OFFSET): Define.
3528 (nios2_linux_rt_sigreturn_init): Adjust base address of
3529 register save area.
3530
b73c49b7
SL
35312015-05-08 Sandra Loosemore <sandra@codesourcery.com>
3532
3533 * nios2-tdep.c (nios2_breakpoint_from_pc): Revert to using
3534 "trap 31" as the breakpoint instruction on all targets.
3535
dd9f02a0
JK
35362015-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
3537
3538 * infcmd.c (print_return_value): Remove unused declaration.
3539
6ad395a7
JB
35402015-05-08 Joel Brobecker <brobecker@adacore.com>
3541
3542 * dwarf2read.c (attr_to_dynamic_prop)
3543 <DW_AT_data_member_location>: Use read_type_die isntead of
3544 get_die_type.
3545
8344af1e
JB
35462015-05-08 Joel Brobecker <brobecker@adacore.com>
3547
3548 * ada-lang.c (ada_convert_actual): Add handling of formals
3549 passed inside an aligner type.
3550
80b0912b
JB
35512015-05-08 Joel Brobecker <brobecker@adacore.com>
3552
3553 * copyright.py (NOT_FSF_LIST): Remove sim/erc32 entries.
3554
df2eb078
SC
35552015-05-08 Siva Chandra Reddy <sivachandra@google.com>
3556
3557 PR python/18291
3558 * python/lib/gdb/command/xmethods.py (print_xm_info): Fix typo.
3559 Print xmethod matcher status.
3560
2492f0d0
AA
35612015-05-08 Andreas Arnez <arnez@linux.vnet.ibm.com>
3562
3563 * s390-linux-nat.c (fill_gregset): Avoid relying on the PSWA
3564 register in the regcache when treating the PSWM register, and vice
3565 versa.
3566
1c56a84d
GB
35672015-05-07 Gary Benson <gbenson@redhat.com>
3568
3569 * linux-thread-db.c (struct thread_db_info)
3570 <td_ta_map_id2thr_p>: Remove field.
3571 (try_thread_db_load_1): Remove initialization for the above.
3572
74850322
GB
35732015-05-07 Gary Benson <gbenson@redhat.com>
3574
3575 * linux-thread-db.c (struct thread_db_info)
3576 <td_thr_validate_p>: Remove field.
3577 (try_thread_db_load_1): Remove initialization for the above.
3578
e26efa40
JK
35792015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
3580
3581 * compile/compile-object-load.c (compile_object_load): Support
3582 mst_text_gnu_ifunc.
3583
851c9091
JK
35842015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
3585
3586 * compile/compile.c (compile_to_object): Make the cmd_string parameter
3587 const. Use new variables for the const compatibility.
3588 (eval_compile_command): Make the cmd_string parameter const.
3589 * compile/compile.h (eval_compile_command): Make the cmd_string
3590 parameter const.
3591
f218b647
JB
35922015-05-06 Joel Brobecker <brobecker@adacore.com>
3593
3594 * defs.h (deprecated_init_ui_hook): Delete. Remove associated
3595 comment.
3596 * top.c (deprecated_init_ui_hook): Delete.
3597 (gdb_init): Remove handling of deprecated_init_ui_hook.
3598 * interps.c (clear_interpreter_hooks): Remove handling of
3599 deprecated_init_ui_hook.
3600 * main.c (captured_main): Update comment.
3601
b30a0bc3
JB
36022015-05-06 Joel Brobecker <brobecker@adacore.com>
3603
3604 * solib.c (_initialize_solib): Add "info dll" alias creation.
3605 * windows-nat.c (set_windows_aliases): Delete.
3606 (_initialize_windows_nat): Remove deprecated_init_ui_hook
3607 assignment.
3608 * NEWS: Add news entry about "info dll" now being available
3609 on all platforms.
3610
7c512744
JB
36112015-05-05 Joel Brobecker <brobecker@adacore.com>
3612
3613 * ada-lang.c (value_assign_to_component): Reformat and improve
3614 documentation. Remove all trailing spaces.
3615
0fa7fe50
JB
36162015-05-05 Joel Brobecker <brobecker@adacore.com>
3617
3618 * inline-frame.c (inline_frame_sniffer, skip_inline_frames):
3619 Stop counting inlined frames as soon as an out-of-line function
3620 is found.
3621
3ea89b92
PMR
36222014-05-05 Pierre-Marie de Rodat <derodat@adacore.com>
3623
3624 * dwarf2read.c (inherit_abstract_dies): Skip
3625 DW_TAG_GNU_call_site dies while inheriting children of an
3626 abstract DIE into a scope.
3627 (read_lexical_block_scope): Inherit abstract DIE's for
3628 lexical scopes.
3629
2478d075
JB
36302015-05-05 Joel Brobecker <brobecker@adacore.com>
3631
3632 * ada-valprint.c (val_print_packed_array_elements): Delete
3633 variable "len". Add a type-length check when comparing two
3634 consecutive elements of the array. Use the element's actual
3635 length in call to value_contents_eq.
3636 * ada-lang.c (ada_value_primitive_packed_val): Always return
3637 a value whose type has been resolved.
3638
fc958966
JB
36392015-05-05 Joel Brobecker <brobecker@adacore.com>
3640
3641 * ada-lang.c (ada_value_primitive_packed_val): Recompute
3642 BIT_SIZE and LEN if the size of the resolved type is smaller
3643 than BIT_SIZE * HOST_CHAR_BIT.
3644
ca34b84f
JB
36452015-05-05 Joel Brobecker <brobecker@adacore.com>
3646
3647 * ada-lang.c (ada_value_primitive_packed_val): Use a more
3648 correct address in call to value_at. Adjust call to
3649 value_address accordingly.
3650
62c67f3c
JB
36512015-05-05 Joel Brobecker <brobecker@adacore.com>
3652
3653 * ada-valprint.c (ada_val_print_1): Resolve TYPE before trying
3654 to print it.
3655
c3345124
JB
36562015-05-05 Joel Brobecker <brobecker@adacore.com>
3657
3658 * dwarf2loc.h (struct property_addr_info): Add "valaddr" field.
3659 * dwarf2loc.c (dwarf2_evaluate_property): Add handling of
3660 pinfo->valaddr.
3661 * gdbtypes.h (resolve_dynamic_type): Add "valaddr" parameter.
3662 * gdbtypes.c (resolve_dynamic_struct): Set pinfo.valaddr.
3663 (resolve_dynamic_type_internal): Set pinfo.valaddr.
3664 Add handling of addr_stack->valaddr.
3665 (resolve_dynamic_type): Add "valaddr" parameter.
3666 Set pinfo.valaddr field.
3667 * ada-lang.c (ada_discrete_type_high_bound): Update call to
3668 resolve_dynamic_type.
3669 (ada_discrete_type_low_bound): Likewise.
3670 * findvar.c (default_read_var_value): Likewise.
3671 * value.c (value_from_contents_and_address): Likewise.
3672
75ea5859
JB
36732015-05-05 Joel Brobecker <brobecker@adacore.com>
3674
3675 * gdbtypes.c (resolve_dynamic_array): Use
3676 create_array_type_with_stride instead of create_array_type.
3677
0952813b
DD
36782015-04-30 DJ Delorie <dj@redhat.com>
3679
3680 * rl78-tdep.c (rl78_analyze_prologue): Pass RL78_ISA_DEFAULT to
3681 rl78_decode_opcode
3682
2ce1cdbf
DE
36832015-04-29 Doug Evans <dje@google.com>
3684
3685 PR python/18285
3686 * NEWS: Document new gdb.XMethodWorker.get_result_type method.
3687 * eval.c (evaluate_subexp_standard) <OP_FUNCALL>: Handle
3688 EVAL_AVOID_SIDE_EFFECTS for xmethods.
3689 * extension-priv.h (struct extension_language_ops)
3690 <get_xmethod_result_type>: New member.
3691 * extension.c (get_xmethod_result_type): New function.
3692 * extension.h (get_xmethod_result_type): Declare.
3693 * python/py-xmethods.c (get_result_type_method_name): New static
3694 global.
3695 (py_get_result_type_method_name): Ditto.
3696 (gdbpy_get_xmethod_result_type): New function.
3697 (gdbpy_initialize_xmethods): Initialize py_get_result_type_method_name.
3698 * python/python-internal.h (gdbpy_get_xmethod_result_type): Declare.
3699 * python/python.c (python_extension_ops): Add
3700 gdbpy_get_xmethod_result_type.
3701 * python/lib/gdb/xmethod.py (XMethodWorker): Add get_result_type.
3702 * valarith.c (value_x_binop): Handle EVAL_AVOID_SIDE_EFFECTS for
3703 xmethods.
3704 (value_x_unop): Ditto.
3705 * value.c (result_type_of_xmethod): New function.
3706 * value.h (result_type_of_xmethod): Declare.
3707
998d2a3e
GB
37082015-04-29 Gary Benson <gbenson@redhat.com>
3709
3710 * solib.c (solib_find_1): Allow fd argument to be NULL.
3711 (exec_file_find): Update comment.
3712 (solib_find): Likewise.
3713 * exec.c (exec_file_locate_attach): Use NULL as fd
3714 argument to exec_file_find to avoid having to close
3715 the opened file.
3716 * infrun.c (follow_exec): Likewise.
3717
34f5f757
DE
37182015-04-28 Doug Evans <dje@google.com>
3719
3720 PR python/18299
3721 * python/lib/gdb/printing.py (register_pretty_printer): Handle
3722 name or __name__ attributes. Handle gdb module as first argument.
3723
69b4374a
DE
37242015-04-28 Doug Evans <dje@google.com>
3725
3726 PR python/18089
3727 * python/py-prettyprint.c (print_children): Verify result of children
3728 iterator. Provide better error message.
3729 * python/python-internal..h (gdbpy_print_python_errors_p): Declare.
3730 * python/python.c (gdbpy_print_python_errors_p): New function.
3731
5e7cf078
DE
37322015-04-28 Doug Evans <dje@google.com>
3733
3734 * gdbtypes.h (struct cplus_struct_type) <n_baseclasses>: Fix comment.
3735
59fb7612
SS
37362015-04-28 Sasha Smundak <asmundak@google.com>
3737
3738 * NEWS: Mention gdb.Type.optimized_out method.
3739 * python/py-type.c (typy_optimized_out): New function.
3740
cea6e4f1
JB
37412015-04-28 John Baldwin <jhb@FreeBSD.org>
3742
3743 * fbsd-nat.c: Include "gdb_wait.h" instead of <sys/wait.h>.
3744
24b73f8e
PP
37452015-04-28 Patrick Palka <patrick@parcs.ath.cx>
3746
3747 * utils.c (init_page_info): Set rl_catch_sigwinch to zero.
3748 (initialize_utils): Move call of init_page_info() to ...
3749 * top.c (gdb_init): ... here.
3750
a88d0bb3
PP
37512015-04-28 Patrick Palka <patrick@parcs.ath.cx>
3752
3753 * tui/tui-win.c (tui_sigwinch_handler): Remove now-stale comment.
3754 (tui_sigwinch_handler): Still update our idea of
3755 the terminal's width and height even when TUI is not active.
3756
d6e5e7f7
PP
37572015-04-28 Patrick Palka <patrick@parcs.ath.cx>
3758
3759 * utils.h (set_screen_width_and_height): Declare.
3760 * utils.c (set_screen_width_and_height): Define.
3761 * tui/tui-win.c (tui_update_gdb_sizes): Use it.
3762
ff862be4
GB
37632015-04-28 Gary Benson <gbenson@redhat.com>
3764
3765 * infrun.c (solist.h): New include.
3766 (follow_exec): Use exec_file_find to prefix execd_pathname
3767 with gdb_sysroot.
3768
2eb639cb
PP
37692015-04-28 Patrick Palka <patrick@parcs.ath.cx>
3770
3771 * tui/tui-source.c (tui_set_source_content): Avoid calling
3772 strcpy() when offset is 0.
3773
97206799
PP
37742015-04-28 Patrick Palka <patrick@parcs.ath.cx>
3775
3776 PR gdb/18155
3777 * tui/tui-data.c (tui_free_window): Don't free the locator
3778 window when passed an SRC_WIN or a DISASSEM_WIN.
3779
63ed8182
PP
37802015-04-28 Patrick Palka <patrick@parcs.ath.cx>
3781
3782 * tui/tui-data.h (struct tui_win_element): Forward-declare.
3783 (tui_win_content): Move declaration.
3784 (struct tui_gen_win_info): Give 'content' field the
3785 type tui_win_content.
3786 * tui/tui-data.c (init_content_element): Remove redundant and
3787 erroneous casts.
3788 (tui_add_content_elements): Remove erroneous cast.
3789 * tui/tui-disasm.c (tui_set_disassem_content): Remove redundant
3790 casts.
3791 (tui_get_begin_asm_address): Likewise.
3792 * tui/tui-regs.c (tui_show_registers): Likewise.
3793 (tui_show_register_group): Likewise.
3794 (tui_display_registers_from): Likewise.
3795 (tui_check_register_values): Likewise.
3796 * tui/tui-source.c (tui_set_source_content): Likewise.
3797 (tui_set_source_content_nil): Likewise.
3798 (tui_source_is_displayed): Likewise.
3799 * tui/tui-stack.c (tui_show_locator_content): Likewise.
3800 (tui_set_locator_fullname): Likewise.
3801 (tui_set_locator_info): Likewise.
3802 (tui_show_frame_info): Likewise.
3803 * tui/tui-winsource.c (tui_clear_source_content): Likewise.
3804 (tui_show_source_line): Likewise.
3805 (tui_horizontal_source_scroll): Likewise.
3806 (tui_update_breakpoint_info): Likewise.
3807 (tui_set_exec_info_content): Likewise.
3808 (tui_show_exec_info_content): Likewise.
3809 (tui_alloc_source_buffer): Likewise.
3810 (tui_line_is_displayed): Likewise.
3811 (tui_addr_is_displayed): Likewise.
3812
d2b41ca0
JB
38132015-04-27 John Baldwin <jhb@FreeBSD.org>
3814
3815 * fbsd-nat.c: (fbsd_wait) [PL_FLAG_EXEC]: Report TARGET_WAITKIND_EXECD
3816 event if PL_FLAG_EXEC is set.
3817 [PL_FLAG_EXEC] (fbsd_insert_exec_catchpoint): New function.
3818 [PL_FLAG_EXEC] (fbsd_remove_exec_catchpoint): New function.
3819 (fbsd_nat_add_target) [PL_FLAG_EXEC]: Set
3820 "to_insert_exec_catchpoint" to "fbsd_insert_exec_catchpoint".
3821 Set "to_remove_exec_catchpoint" to "fbsd_remove_exec_catchpoint".
3822
e58e05d6
JB
38232015-04-27 John Baldwin <jhb@FreeBSD.org>
3824
3825 * fbsd-nat.c: [PT_LWPINFO] New variable super_wait.
3826 [TDP_RFPPWAIT] New variable fbsd_pending_children.
3827 [TDP_RFPPWAIT] (fbsd_remember_child): New function.
3828 [TDP_RFPPWAIT] (fbsd_is_child_pending): New function.
3829 [TDP_RFPPWAIT] (fbsd_fetch_kinfo_proc): New function.
3830 [PT_LWPINFO] (fbsd_wait): New function.
3831 [TDP_RFPPWAIT] (fbsd_follow_fork): New function.
3832 [TDP_RFPPWAIT] (fbsd_insert_fork_catchpoint): New function.
3833 [TDP_RFPPWAIT] (fbsd_remove_fork_catchpoint): New function.
3834 [TDP_RFPPWAIT] (fbsd_insert_vfork_catchpoint): New function.
3835 [TDP_RFPPWAIT] (fbsd_remove_vfork_catchpoint): New function.
3836 [TDP_RFPPWAIT] (fbsd_enable_follow_fork): New function.
3837 [TDP_RFPPWAIT] (fbsd_post_startup_inferior): New function.
3838 [TDP_RFPPWAIT] (fbsd_post_attach): New function.
3839 (fbsd_nat_add_target) [PT_LWPINFO] Set "to_wait" to
3840 "fbsd_wait".
3841 [TDP_RFPPWAIT] Set "to_follow_fork" to "fbsd_follow_fork".
3842 Set "to_insert_fork_catchpoint" to "fbsd_insert_fork_catchpoint".
3843 Set "to_remove_fork_catchpoint" to "fbsd_remove_fork_catchpoint".
3844 Set "to_insert_vfork_catchpoint" to "fbsd_insert_vfork_catchpoint".
3845 Set "to_remove_vfork_catchpoint" to "fbsd_remove_vfork_catchpoint".
3846 Set "to_post_startup_inferior" to "fbsd_post_startup_inferior".
3847 Set "to_post_attach" to "fbsd_post_attach".
3848
8f60fe01
JB
38492015-04-27 John Baldwin <jhb@FreeBSD.org>
3850
3851 * fbsd-nat.c (fbsd_pid_to_exec_file): Mark static.
3852 (fbsd_find_memory_regions): Mark static.
3853 (fbsd_nat_add_target): New function.
3854 * fbsd-nat.h: Export fbsd_nat_add_target and remove prototypes for
3855 fbsd_pid_to_exec_file and fbsd_find_memory_regions.
3856 * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Use fbsd_nat_add_target.
3857 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Likewise.
3858 * ppcfbsd-nat.c (_initialize_ppcfbsd_nat): Likewise.
3859 * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Likewise.
3860
5fbae7d1
GB
38612015-04-27 Gary Benson <gbenson@redhat.com>
3862
3863 * objfiles.c (allocate_objfile): Do not attempt to expand name
3864 if name is a "target:" filename.
3865 * auto-load.c (load_auto_scripts_for_objfile): Do not attempt
3866 to load auto-load scripts for objfiles with "target:" filenames.
3867
417c80f9
AA
38682015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
3869
3870 * s390-linux-tdep.c: Include "elf/s390.h" and "elf-bfd.h".
3871 (enum s390_vector_abi_kind): New enum.
3872 (struct gdbarch_tdep)<vector_abi>: New field.
3873 (s390_effective_inner_type): Add parameter min_size. Stop
3874 unwrapping if the inner type is smaller than min_size.
3875 (s390_function_arg_float): Adjust call to
3876 s390_effective_inner_type.
3877 (s390_function_arg_vector): New function.
3878 (s390_function_arg_integer): Adjust comment.
3879 (struct s390_arg_state)<vr>: New field.
3880 (s390_handle_arg): Add parameter 'is_unnamed'. Pass vector
3881 arguments according to vector ABI when appropriate.
3882 (s390_push_dummy_call): Initialize the argument state's field
3883 'vr'. Adjust calls to s390_handle_arg.
3884 (s390_register_return_value): Handle vector return values.
3885 (s390_return_value): Apply the "register" return value convention
3886 to a vector when appropriate.
3887 (s390_gdbarch_init): Initialize tdep->vector_abi.
3888 * NEWS: Announce S390 vector ABI support.
3889
4e65a17e
AA
38902015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
3891
3892 * s390-linux-tdep.c (s390_return_value_convention): Remove
3893 function. Inline its logic...
3894 (s390_return_value): ...here. Instead, move the handling of the
3895 "register" return value convention...
3896 (s390_register_return_value): ...here. New function.
3897
80f75320
AA
38982015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
3899
3900 * s390-linux-tdep.c
3901 (is_float_singleton): Remove function. Move the "singleton" part
3902 of the logic...
3903 (s390_effective_inner_type): ...here. New function.
3904 (is_float_like): Remove function. Inline its logic...
3905 (s390_function_arg_float): ...here.
3906 (is_pointer_like, is_integer_like, is_struct_like): Remove
3907 functions. Inline their logic...
3908 (s390_function_arg_integer): ...here.
3909 (s390_function_arg_pass_by_reference): Remove function.
3910 (extend_simple_arg): Remove function.
3911 (alignment_of): Remove function.
3912 (struct s390_arg_state): New structure.
3913 (s390_handle_arg): New function.
3914 (s390_push_dummy_call): Move parameter placement logic to the new
3915 function s390_handle_arg. Call it for calculating the stack area
3916 sizes first, and again for actually writing the parameters.
3917
6dbc9c04
AA
39182015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
3919
3920 * s390-linux-tdep.c (is_power_of_two): Add comment. Return
3921 false if the argument is zero.
3922
9e195661
PMR
39232015-04-27 Pierre-Marie de Rodat <derodat@adacore.com>
3924
3925 * ada-lang.c (template_to_static_fixed_type): Return input type
3926 when it is already fixed. Cache the input type itself when not
3927 creating a static fixed copy. Make it explicit that we never
3928 molestate the input type.
3929 * gdbtypes.c (resolve_dynamic_struct): Reset the
3930 TYPE_TARGET_TYPE field for resolved copies.
3931
460efde1
JB
39322015-04-27 Joel Brobecker <brobecker@adacore.com>
3933
3934 * ada-lang.c (ada_is_tagged_type): Add call to ada_check_typedef.
3935 (ada_lookup_struct_elt_type): Remove calls to ada_check_typedef.
3936 (template_to_static_fixed_type): Call ada_check_typedef only
3937 when necessary.
3938
6faec16b
AB
39392015-04-24 Andrew Burgess <andrew.burgess@embecosm.com>
3940
3941 * cli/cli-dump.c (srec_dump_command): Add internationalization
3942 mark ups.
3943 (ihex_dump_command): Likewise.
3944 (tekhex_dump_command): Likewise.
3945 (binary_dump_command): Likewise.
3946 (binary_append_command): Likewise.
3947
cf75d6c3
AB
39482015-04-24 Andrew Burgess <andrew.burgess@embecosm.com>
3949
3950 * cli/cli-dump.c (verilog_cmdlist): New variable.
3951 (dump_verilog_memory): New function.
3952 (dump_verilog_value): New function.
3953 (verilog_dump_command): New function.
3954 (_initialize_cli_dump): Add new commands to support verilog dump
3955 format.
3956 * NEWS: Add entry for "dump verilog".
3957
8cd00c59
PMR
39582015-04-24 Pierre-Marie de Rodat <derodat@adacore.com>
3959
3960 * gdbtypes.c (print_gnat_stuff): Do not recurse on the
3961 descriptive type when there is none.
3962
8900d71e
PP
39632015-04-23 Patrick Palka <patrick@parcs.ath.cx>
3964
3965 * tui/tui-win.c (tui_async_resize_screen): Call
3966 rl_resize_terminal().
3967
f16eab5f
JT
39682015-04-22 Jon Turney <jon.turney@dronecode.org.uk>
3969
3970 * windows-nat.c (handle_output_debug_string): Don't change
3971 current_event.dwThreadId.
3972 (get_windows_debug_event): Use thread_id, rather than relying on
3973 current_event.dwThreadId being changed.
3974
68ffc902
JT
39752015-04-22 Jon Turney <jon.turney@dronecode.org.uk>
3976
3977 * windows-nat.c (windows_continue): Report an error if
3978 ContinueDebugEvent() fails.
3979
23942819
JT
39802015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
3981
3982 * windows-nat.c (windows_resume): Fix misspelling in debug output.
3983
e6ad66bd
JT
39842015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
3985
3986 * windows-nat.c (get_windows_debug_event): Replace retval with
3987 thread_id throughout. Update stale comment.
3988
776704b9
JT
39892015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
3990
3991 * windows-nat.c (get_windows_debug_event): Don't use ternary
3992 conditional operator.
3993
8aae4344
PM
39942015-04-21 Pierre Muller <muller@sourceware.org>
3995
3996 PR pascal/17815
3997 p-exp.y (yylex): Reorganize code to return the matched pattern
3998 for a field of this.
3999
819843c7
GB
40002015-04-21 Gary Benson <gbenson@redhat.com>
4001
4002 * common/fileio.h (fileio_to_host_openflags): New declaration.
4003 * common/fileio.c (fcntl.h): New include.
4004 (fileio_to_host_openflags): New function, factored out from...
4005 * inf-child.c (inf_child_fileio_open_flags_to_host): ...here.
4006 Single use updated.
4007
0bca7f99
KB
40082015-04-21 Kevin Buettner <kevinb@redhat.com>
4009
4010 * rl78-tdep.c (RL78_SP_ADDR): Define.
4011 (opc_reg_to_gdb_regnum): New static function.
4012 (rl78_analyze_prologue): Recognize instructions forming slightly
4013 more interesting prologues.
4014
e771e4be
PMR
40152015-04-20 Pierre-Marie de Rodat <derodat@adacore.com>
4016
4017 Revert:
4018 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
4019 * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
4020 TYPE_CODE_REF types so that they are not considered as dynamic
4021 depending on the referenced type.
4022 (resolve_dynamic_type_internal): Likewise.
4023
ee715b5a
PMR
40242015-04-20 Pierre-Marie de Rodat <derodat@adacore.com>
4025
4026 Revert:
4027 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
4028 * gdbtypes.c (is_dynamic_type_internal): Remove the unused
4029 "top_level" parameter.
4030 (resolve_dynamic_type_internal): Remove the unused "top_level"
4031 parameter. Update call to is_dynamic_type_internal.
4032 (is_dynamic_type): Update call to is_dynamic_type_internal.
4033 (resolve_dynamic_range): Update call to
4034 resolve_dynamic_type_internal.
4035 (resolve_dynamic_union): Likewise.
4036 (resolve_dynamic_struct): Likewise.
4037 (resolve_dynamic_type): Likewise.
4038
e31d7699
GKB
40392015-04-19 Gabriel Krisman Bertazi <gabriel@krisman.be>
4040
4041 * breakpoint.c (update_dprintf_command_list): Remove duplicated
4042 xmalloc.
4043
d214e5e7
TS
40442015-04-20 Thomas Schwinge <thomas@codesourcery.com>
4045
110f9112
TS
4046 * reply_mig_hack.awk: Robustify parsing.
4047
d214e5e7
TS
4048 * reply_mig_hack.awk: Don't bother to declare an intermediate
4049 function pointer variable.
4050
8f61baf8
DE
40512015-04-17 Doug Evans <dje@google.com>
4052
4053 * solib-svr4.c (svr4_exec_displacement): Rename outer "displacement"
4054 to "exec_displacement" to avoid confusion with inner use of the name.
4055
dbbf180a
YQ
40562015-04-17 Pedro Alves <palves@redhat.com>
4057
4058 * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Return zero
4059 if HW point of TYPE isn't supported.
4060
059790a0
YQ
40612015-04-17 Yao Qi <yao.qi@linaro.org>
4062 Pedro Alves <palves@redhat.com>
4063
4064 * target.h (target_can_use_hardware_watchpoint): Update comments.
4065 Remove trailing ";".
4066
1b6e6f5c
GB
40672015-04-17 Gary Benson <gbenson@redhat.com>
4068
4069 * remote.c (remote_add_inferior): New argument try_open_exec.
4070 If nonzero, attempt to open the inferior's executable file as
4071 the main executable if no main executable is open already.
4072 All callers updated.
4073 * NEWS: Mention that GDB now supports automatic location and
4074 retrieval of executable + files from remote targets.
4075
c78fa86a
GB
40762015-04-17 Gary Benson <gbenson@redhat.com>
4077
4078 * target.h (TARGET_OBJECT_EXEC_FILE): New enum value.
4079 * remote.c (PACKET_qXfer_exec_file): Likewise.
4080 (remote_protocol_features): Register the
4081 "qXfer:exec-file:read" feature.
4082 (remote_xfer_partial): Handle TARGET_OBJECT_EXEC_FILE.
4083 (remote_pid_to_exec_file): New function.
4084 (init_remote_ops): Initialize to_pid_to_exec_file.
4085 (_initialize_remote): Register new "set/show remote
4086 pid-to-exec-file-packet" command.
4087 * NEWS: Announce new qXfer:exec-file:read packet.
4088
e0d86d2c
GB
40892015-04-17 Gary Benson <gbenson@redhat.com>
4090
4091 * nat/linux-procfs.h (linux_proc_pid_to_exec_file):
4092 New declaration.
4093 * nat/linux-procfs.c (linux_proc_pid_to_exec_file):
4094 New function, factored out from...
4095 * linux-nat.c (linux_child_pid_to_exec_file): ...here.
4096
a9a5a3d1
GB
40972015-04-17 Gary Benson <gbenson@redhat.com>
4098
4099 * exec.c (solist.h): New include.
4100 (exec_file_locate_attach): Prefix absolute executable
4101 paths with gdb_sysroot if set.
4102 * NEWS: Mention that executable paths may be prepended
4103 with sysroot.
4104
af1900b0
GB
41052015-04-17 Gary Benson <gbenson@redhat.com>
4106
4107 * solist.h (exec_file_find): New declaration.
4108 * solib.c (solib_find_1): New function, factored out from...
4109 (solib_find): ...here.
4110 (exec_file_find): New function.
4111
a10de604
GB
41122015-04-17 Gary Benson <gbenson@redhat.com>
4113
4114 * gdbcore.h (exec_file_locate_attach): New declaration.
4115 * exec.c (exec_file_locate_attach): New function, factored
4116 out from...
4117 * infcmd.c (attach_command_post_wait): ...here.
4118
92209ddf
MF
41192015-04-17 Mike Frysinger <vapier@gentoo.org>
4120
4121 * MAINTAINERS: Add myself for Blackfin/write-after-approval.
4122
8550d3b3
YQ
41232015-04-16 Yao Qi <yao.qi@linaro.org>
4124
4125 * infrun.c (maybe_software_singlestep): Declare.
4126 (displaced_step_fixup): Call maybe_software_singlestep.
4127
30b3dd9d
DE
41282015-04-15 Doug Evans <dje@google.com>
4129
4130 * psymtab.c (psym_expand_symtabs_matching): Add QUIT call.
4131
61d96d7e
DE
41322015-04-15 Doug Evans <dje@google.com>
4133
4134 * dwarf2read.c (dw2_expand_symtabs_matching): Add some QUIT calls.
4135
40d2f8d6
SM
41362015-04-15 Simon Marchi <simon.marchi@ericsson.com>
4137
4138 * python/lib/gdb/command/unwinders.py: Add parentheses.
4139
6bbbba9b
YQ
41402015-04-15 Yao Qi <yao.qi@linaro.org>
4141
4142 * arm-linux-tdep.c (arm_linux_copy_svc): Update debug message.
4143
2bb2dcab
YQ
41442015-04-15 Yao Qi <yao.qi@linaro.org>
4145
4146 * arm-linux-tdep.c (arm_linux_copy_svc): Fix indentation.
4147
41f071ef
YQ
41482015-04-15 Yao Qi <yao.qi@linaro.org>
4149
4150 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
4151 dsc->insn_size instead of 4.
4152
326a5c7e
GB
41532015-04-14 Gary Benson <gbenson@redhat.com>
4154
4155 * jit.c (mem_bfd_iovec_stat): Zero supplied buffer.
4156 * minidebug.c (lzma_stat): Likewise.
4157 * solib-spu.c (spu_bfd_iovec_stat): Likewise.
4158 * spu-linux-nat.c (spu_bfd_iovec_stat): Likewise.
4159
dd177e81
SS
41602015-04-13 Stan Shebs <stanshebs@google.com>
4161
4162 * MAINTAINERS: Update my email address.
4163
97de3545
JB
41642015-04-13 John Baldwin <jhb@FreeBSD.org>
4165
4166 * amd64-tdep.c (amd64_target_description): New function.
4167 * amd64-tdep.h: Export amd64_target_description and tdesc_amd64.
4168 * amd64bsd-nat.c [PT_GETXSTATE_INFO]: New variable amd64bsd_xsave_len.
4169 (amd64bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
4170 x86 extended save area.
4171 (amd64bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
4172 * amd64bsd-nat.h: Export amd64bsd_xsave_len.
4173 * amd64fbsd-nat.c (amd64fbsd_read_description): New function.
4174 (_initialize_amd64fbsd_nat): Set "to_read_description" to
4175 "amd64fbsd_read_description".
4176 * amd64fbsd-tdep.c (amd64fbsd_core_read_description): New function.
4177 (amd64fbsd_supply_xstateregset): New function.
4178 (amd64fbsd_collect_xstateregset): New function.
4179 Add "amd64fbsd_xstateregset".
4180 (amd64fbsd_iterate_over_regset_sections): New function.
4181 (amd64fbsd_init_abi): Set "xsave_xcr0_offset" to
4182 "I386_FBSD_XSAVE_XCR0_OFFSET".
4183 Add "iterate_over_regset_sections" gdbarch method.
4184 Add "core_read_description" gdbarch method.
4185 * i386-tdep.c (i386_target_description): New function.
4186 * i386-tdep.h: Export i386_target_description and tdesc_i386.
4187 * i386bsd-nat.c [PT_GETXSTATE_INFO]: New variable i386bsd_xsave_len.
4188 (i386bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
4189 x86 extended save area.
4190 (i386bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
4191 * i386bsd-nat.h: Export i386bsd_xsave_len.
4192 * i386fbsd-nat.c (i386fbsd_read_description): New function.
4193 (_initialize_i386fbsd_nat): Set "to_read_description" to
4194 "i386fbsd_read_description".
4195 * i386fbsd-tdep.c (i386fbsd_core_read_xcr0): New function.
4196 (i386fbsd_core_read_description): New function.
4197 (i386fbsd_supply_xstateregset): New function.
4198 (i386fbsd_collect_xstateregset): New function.
4199 Add "i386fbsd_xstateregset".
4200 (i386fbsd_iterate_over_regset_sections): New function.
4201 (i386fbsd4_init_abi): Set "xsave_xcr0_offset" to
4202 "I386_FBSD_XSAVE_XCR0_OFFSET".
4203 Add "iterate_over_regset_sections" gdbarch method.
4204 Add "core_read_description" gdbarch method.
4205 * i386fbsd-tdep.h: New file.
4206
4f45d445
JK
42072015-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4208
4209 * NEWS (Changes since GDB 7.9): Add removed -xdb.
4210 * breakpoint.c (command_line_is_silent): Remove xdb_commands
4211 conditional.
4212 (_initialize_breakpoint): Remove xdb_commands for bc, ab, sb, db, ba
4213 and lb.
4214 * cli/cli-cmds.c (_initialize_cli_cmds): Remove xdb_commands for v and
4215 va.
4216 * cli/cli-decode.c (find_command_name_length): Remove xdb_commands
4217 conditional.
4218 * defs.h (xdb_commands): Remove declaration.
4219 * f-valprint.c (_initialize_f_valprint): Remove xdb_commands for lc.
4220 * guile/scm-cmd.c (command_classes): Remove xdb from comment.
4221 * infcmd.c (run_no_args_command, go_command): Remove.
4222 (_initialize_infcmd): Remove xdb_commands for S, go, g, R and lr.
4223 * infrun.c (xdb_handle_command): Remove.
4224 (_initialize_infrun): Remove xdb_commands for lz and z.
4225 * main.c (xdb_commands): Remove variable.
4226 (captured_main): Remove "xdb" from long_options.
4227 (print_gdb_help): Remove --xdb from help.
4228 * python/py-cmd.c (gdbpy_initialize_commands): Remove xdb from comment.
4229 * source.c (_initialize_source): Remove xdb_commands for D, ld, / and ?.
4230 * stack.c (backtrace_full_command, args_plus_locals_info)
4231 (current_frame_command): Remove.
4232 (_initialize_stack): Remove xdb_commands for t, T and l.
4233 * symtab.c (_initialize_symtab): Remove xdb_commands for lf and lg.
4234 * thread.c (_initialize_thread): Remove xdb_commands condition.
4235 * tui/tui-layout.c (tui_toggle_layout_command)
4236 (tui_toggle_split_layout_command, tui_handle_xdb_layout): Remove.
4237 (_initialize_tui_layout): Remove xdb_commands for td and ts.
4238 * tui/tui-regs.c (tui_scroll_regs_forward_command)
4239 (tui_scroll_regs_backward_command): Remove.
4240 (_initialize_tui_regs): Remove xdb_commands for fr, gr, sr, +r and -r.
4241 * tui/tui-win.c (tui_xdb_set_win_height_command): Remove.
4242 (_initialize_tui_win): Remove xdb_commands for U and w.
4243 * utils.c (pagination_on_command, pagination_off_command): Remove.
4244 (initialize_utils): Remove xdb_commands for am and sm.
4245
cb71640d
PA
42462015-04-10 Pedro Alves <palves@redhat.com>
4247
4248 * infrun.c (displaced_step_fixup): Switch to the event ptid
4249 earlier. If the thread stopped for a watchpoint and the
4250 target/arch has non-continuable watchpoints, cancel the displaced
4251 step.
4252 (resume): Don't start a displaced step if in-line step-over info
4253 is valid.
4254
8f572e5c
PA
42552015-04-10 Pedro Alves <palves@redhat.com>
4256
4257 * infrun.c (displaced_step_in_progress): New function.
4258 (do_target_resume): Advise target to report all signals if
4259 displaced stepping.
4260
8d707a12
PA
42612015-04-10 Pedro Alves <palves@redhat.com>
4262
4263 PR gdb/18216
4264 * infrun.c (process_event_stop_test): Don't assume a step-resume
4265 is set if tp->stepped_breakpoint is true.
4266
ef713951
YQ
42672015-04-10 Yao Qi <yao.qi@linaro.org>
4268
4269 * arm-tdep.c (install_alu_reg): Update comment.
4270 (thumb_copy_alu_reg): Remove local variable rn. Update
4271 debugging message. Use r2 instead of r1 in the modified
4272 instruction.
4273
906d60cf
PA
42742015-04-10 Pedro Alves <palves@redhat.com>
4275
4276 PR gdb/13858
4277 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Install
4278 linux_displaced_step_location as gdbarch_displaced_step_location
4279 hook.
4280 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
4281 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
4282 * linux-tdep.c (linux_displaced_step_location): New function,
4283 based on ppc_linux_displaced_step_location.
4284 * linux-tdep.h (linux_displaced_step_location): New declaration.
4285 * ppc-linux-tdep.c (ppc_linux_entry_point_addr): Delete.
4286 (ppc_linux_inferior_created, ppc_linux_displaced_step_location):
4287 Delete.
4288 (ppc_linux_init_abi): Install linux_displaced_step_location as
4289 gdbarch_displaced_step_location hook, even without Cell/B.E..
4290 (_initialize_ppc_linux_tdep): Don't install
4291 ppc_linux_inferior_created as inferior_created observer.
4292 * s390-linux-tdep.c (s390_gdbarch_init): Install
4293 linux_displaced_step_location as gdbarch_displaced_step_location
4294 hook.
4295
7823a941
GB
42962015-04-09 Gary Benson <gbenson@redhat.com>
4297
4298 * common/common-remote-fileio.h: Rename to...
4299 * common/fileio.h: ...this. Update all references.
4300 (remote_fileio_to_fio_error): Rename to...
4301 (host_to_fileio_error): ...this.
4302 (remote_fileio_to_be): Rename to...
4303 (host_to_bigendian): ...this. Update all callers.
4304 (remote_fileio_to_fio_uint): Rename to...
4305 (host_to_fileio_uint): ...this. Update all callers.
4306 (remote_fileio_to_fio_time): Rename to...
4307 (host_to_fileio_time): ...this. Update all callers.
4308 (remote_fileio_to_fio_stat): Rename to...
4309 (host_to_fileio_stat): ...this.
4310 Update all references.
4311 * common/common-remote-fileio.c: Rename to...
4312 * common/fileio.c: ...this. Update all references.
4313 (remote_fileio_to_fio_error): Rename to...
4314 (host_to_fileio_error): ...this. Update all callers.
4315 (remote_fileio_mode_to_target): Rename to...
4316 (fileio_mode_pack): ...this. Update all callers.
4317 (remote_fileio_to_fio_mode): Rename to...
4318 (host_to_fileio_mode): ...this. Update all callers.
4319 (remote_fileio_to_fio_ulong): Rename to...
4320 (host_to_fileio_ulong): ...this. Update all callers.
4321 (remote_fileio_to_fio_stat): Rename to...
4322 (host_to_fileio_stat): ...this. Update all callers.
4323
f2983cc3
AW
43242015-04-09 Andy Wingo <wingo@igalia.com>
4325
4326 * guile/scm-frame.c (gdbscm_frame_read_register): New function.
4327 (frame_functions): Bind gdbscm_frame_read_register to
4328 frame-read-register.
4329 * guile/lib/gdb.scm (frame-read-register): Export.
4330
b88bb450
GB
43312015-04-09 Gary Benson <gbenson@redhat.com>
4332
4333 * common/common-remote-fileio.h (remote_fileio_to_fio_error):
4334 New declaration.
4335 * common/common-remote-fileio.c (remote_fileio_to_fio_error):
4336 New function, factored out the named functions below.
4337 * inf-child.c (gdb/fileio.h): Remove include.
4338 (common-remote-fileio.h): New include.
4339 (inf_child_errno_to_fileio_error): Remove function. Update
4340 all callers to use remote_fileio_to_fio_error.
4341 * remote-fileio.c (remote_fileio_errno_to_target): Likewise.
4342
2f2680f3
AW
43432015-04-09 Andy Wingo <wingo@igalia.com>
4344
4345 * MAINTAINERS (Write After Approval): Add Andy Wingo.
4346
5a2d4533
L
43472015-04-09 H.J. Lu <hongjiu.lu@intel.com>
4348
4349 * acinclude.m4: (GDB_AC_CHECK_BFD): Set ZLIBDIR with $zlibdir.
4350 Replace $zlibdir with $ZLIBDIR in LDFLAGS.
4351 * configure: Regenerated.
4352
421693b0
PA
43532015-04-09 Pedro Alves <palves@redhat.com>
4354
4355 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strtok_r.
4356 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/strtok_r.m4.
4357 * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: Regenerate.
4358 * gnulib/import/Makefile.am: Update.
4359 * gnulib/import/Makefile.in: Update.
4360 * gnulib/import/m4/gnulib-cache.m4: Update.
4361 * gnulib/import/m4/gnulib-comp.m4: Update.
4362 * gnulib/import/m4/strtok_r.m4: New file.
4363 * gnulib/import/strtok_r.c: New file.
4364
f543dc83
PA
43652015-04-09 Pedro Alves <palves@redhat.com>
4366
4367 * gnulib/update-gnulib.sh (aclocal version check): Filter out
4368 "called too early to check prototype".
4369
6d62641c
SDJ
43702015-04-08 Sergio Durigan Junior <sergiodj@redhat.com>
4371
4372 PR python/16699
4373 * python/py-cmd.c (cmdpy_completer_helper): Adjust function to not
4374 use a caching mechanism. Adjust comments and code to reflect
4375 that. Replace 'sizeof' by 'strlen' when fetching 'wordobj'.
4376 (cmdpy_completer_handle_brkchars): Adjust call to
4377 cmdpy_completer_helper. Call Py_XDECREF for 'resultobj'.
4378 (cmdpy_completer): Likewise.
4379
85558555
YQ
43802015-04-08 Yao Qi <yao.qi@linaro.org>
4381
4382 * spu-tdep.c (spu_gdbarch_init): Don't call
4383 set_gdbarch_cannot_step_breakpoint.
4384
d249a14a
SDJ
43852015-04-07 Sergio Durigan Junior <sergiodj@redhat.com>
4386
4387 * linux-tdep.c (decode_vmflags): Initialize 'saveptr'.
4388
8a06aea7
PA
43892015-04-07 Pedro Alves <palves@redhat.com>
4390
4391 * gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): Rename to ...
4392 (ALL_THREADS_SAFE): ... this, and don't skip exited threads.
4393 (delete_exited_threads): New declaration.
4394 * infrun.c (follow_exec): Use ALL_THREADS_SAFE.
4395 * linux-nat.c (linux_nat_update_thread_list): New function.
4396 (linux_nat_add_target): Install it.
4397 * remote.c (remote_update_thread_list): Use ALL_THREADS_SAFE.
4398 * thread.c (prune_threads): Use ALL_THREADS_SAFE.
4399 (delete_exited_threads): New function.
4400
d9b67d9f
PA
44012015-04-07 Pedro Alves <pedro@codesourcery.com>
4402
4403 * infrun.c (resume) <displaced stepping debug output>: Get the
4404 leader thread's regcache, not resume_ptid's.
4405
2c26b84f
DE
44062015-04-06 Doug Evans <xdje42@gmail.com>
4407
4408 * symtab.c (hash_symbol_entry): Hash STRUCT_DOMAIN symbols as
4409 VAR_DOMAIN.
4410 (symbol_cache_lookup): Clarify use of bsc_ptr, slot_ptr parameters.
4411 Include symbol domain in debugging output.
4412
7a85168d
PA
44132015-04-06 Pedro Alves <palves@redhat.com>
4414 Bernd Edlinger <bernd.edlinger@hotmail.de>
4415
4416 * configure.ac: Remove the mingw32-specific stub-termcap.o
4417 fallback, and instead fallback to the stub termcap on all hosts.
4418 * configure: Regenerate.
4419 * stub-termcap.c [!__MINGW32__] (PC, BC, UP): Define as weak
4420 symbols.
4421
25755e2b
PMR
44222015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
4423
4424 * gdbtypes.c (is_dynamic_type_internal): Remove the unused
4425 "top_level" parameter.
4426 (resolve_dynamic_type_internal): Remove the unused "top_level"
4427 parameter. Update call to is_dynamic_type_internal.
4428 (is_dynamic_type): Update call to is_dynamic_type_internal.
4429 (resolve_dynamic_range): Update call to
4430 resolve_dynamic_type_internal.
4431 (resolve_dynamic_union): Likewise.
4432 (resolve_dynamic_struct): Likewise.
4433 (resolve_dynamic_type): Likewise.
4434
961f4160
PMR
44352015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
4436
4437 * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
4438 TYPE_CODE_REF types so that they are not considered as dynamic
4439 depending on the referenced type.
4440 (resolve_dynamic_type_internal): Likewise.
4441
39f3de7c
L
44422015-04-02 H.J. Lu <hongjiu.lu@intel.com>
4443
4444 * Makefile.in (top_srcdir): New.
4445 * configure: Regenerated.
4446
599bd15c
GB
44472015-04-02 Gary Benson <gbenson@redhat.com>
4448
4449 * NEWS: Announce the new default sysroot of "target:".
4450
fed040c6
GB
44512015-04-02 Gary Benson <gbenson@redhat.com>
4452
4453 * main.c (captured_main): Set gdb_sysroot to "target:"
4454 if not otherwise set.
4455
64c0b5de
GB
44562015-04-02 Gary Benson <gbenson@redhat.com>
4457
4458 * exec.c (exec_file_attach): Support "target:" filenames.
4459
b57fbfba
GB
44602015-04-02 Gary Benson <gbenson@redhat.com>
4461
4462 * solib.c (solib_find): Strip "target:" prefix from sysroot
4463 if accessing local files.
4464
97a41605
GB
44652015-04-02 Gary Benson <gbenson@redhat.com>
4466
4467 * symfile.c (symfile_bfd_open): Reorder to remove duplicated
4468 checks and error messages.
4469
2938e6cf
GB
44702015-04-02 Gary Benson <gbenson@redhat.com>
4471
4472 * remote.h (REMOTE_SYSROOT_PREFIX): Remove definition.
4473 (remote_filename_p): Remove declaration.
4474 (remote_bfd_open): Likewise.
4475 * remote.c (remote_bfd_iovec_open): Remove function.
4476 (remote_bfd_iovec_close): Likewise.
4477 (remote_bfd_iovec_pread): Likewise.
4478 (remote_bfd_iovec_stat): Likewise.
4479 (remote_filename_p): Likewise.
4480 (remote_bfd_open): Likewise.
4481 * symfile.h (gdb_bfd_open_maybe_remote): Remove declaration.
4482 * symfile.c (separate_debug_file_exists): Use gdb_bfd_open.
4483 (gdb_bfd_open_maybe_remote): Remove function.
4484 (symfile_bfd_open): Replace remote filename check with
4485 target filename check.
4486 (reread_symbols): Use gdb_bfd_open.
4487 * build-id.c (gdbcore.h): New include.
4488 (build_id_to_debug_bfd): Use gdb_bfd_open.
4489 * infcmd.c (attach_command_post_wait): Remove remote filename
4490 check.
4491 * solib.c (solib_find): Replace remote-specific handling with
4492 target-specific handling. Update comments where necessary.
4493 (solib_bfd_open): Replace remote-specific handling with
4494 target-specific handling.
4495 (gdb_sysroot_changed): New function.
4496 (_initialize_solib): Call the above when gdb_sysroot changes.
4497 * windows-tdep.c (gdbcore.h): New include.
4498 (windows_xfer_shared_library): Use gdb_bfd_open.
4499
f08e97fe
GB
45002015-04-02 Gary Benson <gbenson@redhat.com>
4501
4502 * gdb/gdb_bfd.h (TARGET_SYSROOT_PREFIX): New definition.
4503 (is_target_filename): New declaration.
4504 (gdb_bfd_has_target_filename): Likewise.
4505 (gdb_bfd_open): Update documentation comment.
4506 * gdb_bfd.c (target.h): New include.
4507 (gdb/fileio.h): Likewise.
4508 (is_target_filename): New function.
4509 (gdb_bfd_has_target_filename): Likewise.
4510 (fileio_errno_to_host): Likewise.
4511 (gdb_bfd_iovec_fileio_open): Likewise.
4512 (gdb_bfd_iovec_fileio_pread): Likewise.
4513 (gdb_bfd_iovec_fileio_close): Likewise.
4514 (gdb_bfd_iovec_fileio_fstat): Likewise.
4515 (gdb_bfd_open): Use target fileio to access paths prefixed
4516 with "target:" where necessary.
4517
4bd7dc42
GB
45182015-04-02 Gary Benson <gbenson@redhat.com>
4519
4520 * target.h (struct target_ops) <to_filesystem_is_local>:
4521 New field.
4522 (target_filesystem_is_local): New macro.
4523 * target-delegates.c: Regenerate.
4524 * remote.c (remote_filesystem_is_local): New function.
4525 (init_remote_ops): Initialize to_filesystem_is_local.
4526
9b15c1f0
GB
45272015-04-02 Gary Benson <gbenson@redhat.com>
4528
4529 * target.h (struct target_ops) <to_fileio_fstat>: New field.
4530 (target_fileio_fstat): New declaration.
4531 * target.c (target_fileio_fstat): New function.
4532 * inf-child.c (inf_child_fileio_fstat): Likewise.
4533 (inf_child_target): Initialize to_fileio_fstat.
4534 * remote.c (init_remote_ops): Likewise.
4535
d11916aa
SS
45362015-04-01 Sasha Smundak <asmundak@google.com>
4537
4538 * Makefile.in (SUBDIR_PYTHON_OBJS): Add py-unwind.o.
4539 (SUBDIR_PYTHON_SRCS): Add py-unwind.c.
4540 (py-unwind.o): New recipe.
4541 * NEWS: mention Python frame unwinding.
4542 * data-directory/Makefile.in (PYTHON_FILE_LIST): Add
4543 gdb/unwinder.py and gdb/command/unwinder.py
4544 * python/lib/gdb/__init__.py (packages): Add frame_unwinders
4545 list.
4546 (execute_unwinders): New function.
4547 * python/lib/gdb/command/unwinders.py: New file.
4548 * python/lib/gdb/unwinder.py: New file.
4549 * python/py-objfile.c (objfile_object): Add frame_unwinders field.
4550 (objfpy_dealloc): Decrement frame_unwinders reference count.
4551 (objfpy_initialize): Create frame_unwinders list.
4552 (objfpy_get_frame_unwinders): New function.
4553 (objfpy_set_frame_unwinders): Ditto.
4554 (objfile_getset): Add frame_unwinders attribute to Objfile.
4555 * python/py-progspace.c (pspace_object): Add frame_unwinders field.
4556 (pspy_dealloc): Decrement frame_unwinders reference count.
4557 (pspy_initialize): Create frame_unwinders list.
4558 (pspy_get_frame_unwinders): New function.
4559 (pspy_set_frame_unwinders): Ditto.
4560 (pspy_getset): Add frame_unwinders attribute to gdb.Progspace.
4561 * python/py-unwind.c: New file.
4562 * python/python-internal.h (pspy_get_name_unwinders): New prototype.
4563 (objpy_get_frame_unwinders): New prototype.
4564 (gdbpy_initialize_unwind): New prototype.
4565 * python/python.c (gdbpy_apply_type_printers): Call
4566 gdbpy_initialize_unwind.
4567
6b403daa
PA
45682015-04-01 Pedro Alves <palves@redhat.com>
4569
4570 * infrun.c (resume): Check currently_stepping after clearing
4571 stepped_breakpoint, not before.
4572
1176ecec
PA
45732015-04-01 Pedro Alves <palves@redhat.com>
4574
4575 * infrun.c (print_target_wait_results): Print all the ptid
4576 elements.
4577
de1fe8c8
PA
45782015-04-01 Pedro Alves <palves@redhat.com>
4579
4580 * infrun.c (keep_going): Also discard cleanups if inserting
4581 breakpoints fails.
4582
e6f5c25b
PA
45832015-04-01 Pedro Alves <palves@redhat.com>
4584
4585 * infrun.c (wait_for_inferior): Install the
4586 finish_thread_state_cleanup cleanup across the whole function, not
4587 just around handle_inferior_event.
4588
1ac806b8
PA
45892015-04-01 Pedro Alves <palves@redhat.com>
4590
4591 * infrun.c (resume) <step past permanent breakpoint>: Use
4592 do_target_resume.
4593
2ee52aa4
PA
45942015-04-01 Pedro Alves <palves@redhat.com>
4595
4596 * linux-nat.c (linux_handle_extended_wait): Always call set_running.
4597
5445da1b
PMR
45982015-04-01 Pierre-Marie de Rodat <derodat@adacore.com>
4599
4600 * MAINTAINERS (Write After Approval): Add "Pierre-Marie de Rodat".
4601
4eec2deb
PA
46022015-04-01 Pedro Alves <palves@redhat.com>
4603
4604 * linux-thread-db.c (record_thread): Readd the thread to gdb's
4605 list if it was marked exited.
4606
afa59b79
L
46072015-04-01 H.J. Lu <hongjiu.lu@intel.com>
4608
4609 * configure: Regenerated.
4610
df8411da
SDJ
46112015-03-31 Sergio Durigan Junior <sergiodj@redhat.com>
4612 Jan Kratochvil <jan.kratochvil@redhat.com>
4613 Oleg Nesterov <oleg@redhat.com>
4614
4615 PR corefiles/16092
4616 * linux-tdep.c: Include 'gdbcmd.h' and 'gdb_regex.h'.
4617 New enum identifying the various options of the coredump_filter
4618 file.
4619 (struct smaps_vmflags): New struct.
4620 (use_coredump_filter): New variable.
4621 (decode_vmflags): New function.
4622 (mapping_is_anonymous_p): Likewise.
4623 (dump_mapping_p): Likewise.
4624 (linux_find_memory_regions_full): New variables
4625 'coredumpfilter_name', 'coredumpfilterdata', 'pid', 'filterflags'.
4626 Removed variable 'modified'. Read /proc/<PID>/smaps file; improve
4627 parsing of its information. Implement memory mapping filtering
4628 based on its contents.
4629 (show_use_coredump_filter): New function.
4630 (_initialize_linux_tdep): New command 'set use-coredump-filter'.
4631 * NEWS: Mention the possibility of using the
4632 '/proc/PID/coredump_filter' file when generating a corefile.
4633 Mention new command 'set use-coredump-filter'.
4634
416f679e
SDJ
46352015-03-31 Sergio Durigan Junior <sergiodj@redhat.com>
4636
4637 * solib-svr4.c (solib_svr4_r_ldsomap): Catch possible exception by
4638 read_memory_unsigned_integer.
4639
711a72d3
L
46402015-03-31 H.J. Lu <hongjiu.lu@intel.com>
4641
4642 * Makefile.in (ZLIB): New.
4643 (ZLIBINC): Likewise.
4644 (INTERNAL_CFLAGS_BASE): Add $(ZLIBINC).
4645 (CLIBS): Add $(ZLIB).
4646 * acinclude.m4: (GDB_AC_CHECK_BFD): Add $zlibdir to LDFLAGS.
4647 Add -lz to LIBS.
4648 * gdb_bfd.c: Don't check HAVE_ZLIB_H to include <zlib.h>.
4649 * top.c (print_gdb_configuration): Remove --with-zlib and
4650 --without-zlib.
4651 * config.in: Regenerated.
4652 * configure: Likewise.
4653
d33279b3
AT
46542015-03-31 Antoine Tremblay <antoine.tremblay@ericsson.com>
4655
4656 * NEWS: Mention info os cpus support.
4657 * gdb/nat/linux-osdata.c (linux_xfer_osdata_cpus): New function.
4658 (struct osdata_type): Add cpus entry, reorder the entries in
4659 alphabetical order.
4660
71b30f27
MK
46612015-03-31 Matthias Klose <doko@ubuntu.com>
4662
4663 * compile/compile.c (compile_to_object): Allow triplets with or
4664 without vendor set.
4665
13ce9222
DE
46662015-03-30 Doug Evans <dje@google.com>
4667
4668 PR c++/18141
4669 * cp-namespace.c (cp_search_static_and_baseclasses): Always look for
4670 klass in VAR_DOMAIN.
4671
20f796c9
GB
46722015-03-30 Gary Benson <gbenson@redhat.com>
4673
4674 * remote.c (remote_mourn_1): Remove function. Update all callers
4675 to use remote_mourn.
4676 (extended_remote_mourn_1): Remove function. Update all callers
4677 to use extended_remote_mourn.
4678 (extended_remote_attach_1): Remove function. Update all callers
4679 to use extended_remote_attach.
4680
49d45b20
JB
46812015-03-28 James Bowman <james.bowman@ftdichip.com>
4682
4683 * Makefile.in (ALL_TARGET_OBS): Add ft32-tdep.o.
4684 (HFILES_NO_SRCDIR): Add ft32-tdep.h.
4685 (ALLDEPFILES): Add ft32-tdep.c.
4686 * configure.tgt: Add FT32 entry.
4687 * ft32-tdep.c: New file, FT32 target-dependent code.
4688 * ft32-tdep.h: New file, FT32 target-dependent code.
4689
1c4ff080
JK
46902015-03-27 Jan Kratochvil <jan.kratochvil@redhat.com>
4691
4692 Revert:
4693 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
4694 Code cleanup.
4695 * printcmd.c (print_command_1): Move expr variable scope.
4696
79498702
JB
46972015-03-27 Joel Brobecker <brobecker@adacore.com>
4698
4699 * dtrace-probe.c (dtrace_process_dof_probe): Initialize expr to NULL.
4700
ce9c0ca1
AK
47012015-03-27 Andrzej Kaczmarek <andrzej.kaczmarek@tieto.com>
4702
4703 * gdb_bfd.c (gdb_bfd_section_index): Fix off-by-one for special
4704 sections.
4705
429e1e81
JB
47062015-03-26 Joel Brobecker <brobecker@adacore.com>
4707
4708 * dtrace-probe.c (dtrace_process_dof_probe): Contain any
4709 exception raised while parsing the probe arguments.
4710 Force parsing to be done using the C language parser.
4711 * expression.h (parse_expression_with_language): Declare.
4712 * parse.c (parse_expression_with_language): New function.
4713
4593441b
JT
47142015-03-26 Jon Turney <jon.turney@dronecode.org.uk>
4715
4716 * MAINTAINERS (Write After Approval): Add "Jon Turney".
4717
ff908ebf
AW
47182015-03-26 Andy Wingo <wingo@igalia.com>
4719
4720 PR symtab/18148
4721 * dwarf2read.c (struct partial_die_info): Add has_const_value
4722 member.
4723 (add_partial_symbol): Don't punt on symbols that have const_value
4724 attributes.
4725 (read_partial_die): Detect DW_AT_const_value.
4726
f30d5c78
JK
47272015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
4728
4729 Code cleanup.
4730 * printcmd.c (print_command_1): Move expr variable scope.
4731
8d89f51a
JK
47322015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
4733
4734 Code cleanup.
4735 * printcmd.c (validate_format): Make the parameter cmdname const.
4736
0b736949
DB
47372015-03-26 Don Breazeal <donb@codesourcery.com>
4738
4739 * remote.c (_initialize_remote): Update comment.
4740
20d35291
PA
47412015-03-26 Pedro Alves <palves@redhat.com>
4742 Jon TURNEY <jon.turney@dronecode.org.uk>
4743
4744 * coffread.c (coff_symfile_read): When constructing the name of an
4745 import stub symbol from import symbol for amd64, only skip the
4746 char after _imp_ if the target is underscored (like i386) and the
4747 char is indeed the target's leading char.
4748
6a3753b3
PA
47492015-03-25 Pedro Alves <palves@redhat.com>
4750
4751 * target.h <to_async>: Replace 'callback' and 'context' parameters
4752 with boolean 'enable' parameter.
4753 (target_async): Replace CALLBACK and CONTEXT parameters with
4754 boolean ENABLE parameter.
4755 * inf-loop.c (inferior_event_handler): Adjust.
4756 * linux-nat.c (linux_nat_attach, linux_nat_resume)
4757 (linux_nat_resume): Adjust.
4758 (async_client_callback, async_client_context): Delete.
4759 (handle_target_event): Call inferior_event_handler directly.
4760 (linux_nat_async): Replace 'callback' and 'context' parameters
4761 with boolean 'enable' parameter. Adjust. Remove references to
4762 async_client_callback and async_client_context.
4763 (linux_nat_close): Adjust.
4764 * record-btrace.c (record_btrace_async): Replace 'callback' and
4765 'context' parameters with boolean 'enable' parameter. Adjust.
4766 (record_btrace_resume): Adjust.
4767 * record-full.c (record_full_async): Replace 'callback' and
4768 'context' parameters with boolean 'enable' parameter. Adjust.
4769 (record_full_resume, record_full_core_resume): Adjust.
4770 * remote.c (struct remote_state) <async_client_callback,
4771 async_client_context>: Delete fields.
4772 (remote_start_remote, extended_remote_attach_1, remote_resume)
4773 (extended_remote_create_inferior): Adjust.
4774 (remote_async_serial_handler): Call inferior_event_handler
4775 directly.
4776 (remote_async): Replace 'callback' and 'context' parameters with
4777 boolean 'enable' parameter. Adjust.
4778 * top.c (gdb_readline_wrapper_cleanup, gdb_readline_wrapper):
4779 Adjust.
4780 * target-delegates.c: Regenerate.
4781
1c4b552b
GB
47822015-03-25 Gary Benson <gbenson@redhat.com>
4783 Pedro Alves <palves@redhat.com>
4784
4785 * target.c (fileio_ft_t): New typedef, define object vector.
4786 (fileio_fhandles): New static variable.
4787 (is_closed_fileio_fh): New macro.
4788 (lowest_closed_fd): New static variable.
4789 (acquire_fileio_fd): New function.
4790 (release_fileio_fd): Likewise.
4791 (fileio_fd_to_fh): New macro.
4792 (target_fileio_open): Wrap the file descriptor on success.
4793 (target_fileio_pwrite): Updated to use wrapped file descriptor.
4794 (target_fileio_pread): Likewise.
4795 (target_fileio_close): Likewise.
4796
a25d8bf9
PA
47972015-03-24 Pedro Alves <palves@redhat.com>
4798
4799 * thread.c (thread_apply_all_command): Take exited threads into
4800 account.
4801
44a1ee51
PA
48022015-03-24 Pedro Alves <palves@redhat.com>
4803
4804 * infrun.c (resume, proceed): Mention
4805 switch_back_to_stepped_thread, not switch_back_to_stepping.
4806
f3263aa4
PA
48072015-03-24 Pedro Alves <palves@redhat.com>
4808
4809 * infrun.c (user_visible_resume_ptid): Rewrite going from
4810 most-locked to unlocked instead of the opposite. Move comment ...
4811 * infrun.h (user_visible_resume_ptid): ... here.
4812
2bf6fb9d
PA
48132015-03-24 Pedro Alves <palves@redhat.com>
4814
4815 * linux-nat.c (linux_nat_resume): Output debug logs before trying
4816 to resume the event lwp. Use the lwp's ptid instead of the passed
4817 in (maybe wildcard) ptid.
4818 (stop_wait_callback): Tweak debug log output.
4819 (check_stopped_by_breakpoint): Tweak debug log output. Also dump
4820 TRAP_TRACE.
4821 (linux_nat_filter_event): In debug output, distinguish a
4822 resume_stop SIGSTOP from a delayed SIGSTOP. Output debug logs
4823 before trying to resume the lwp.
4824
283a9958
JB
48252015-03-24 Joel Brobecker <brobecker@adacore.com>
4826
4827 * gdbtypes.h (struct dynamic_prop_list) <prop>: Remove
4828 pointer indirection.
4829 * gdbtypes.c (get_dyn_prop): Adjust, following change above.
4830 (add_dyn_prop, copy_dynamic_prop_list): Likewise.
4831
93a8e227
JB
48322015-03-24 Joel Brobecker <brobecker@adacore.com>
4833
4834 * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_DATA_LOCATION>:
4835 Renames DYN_ATTR_DATA_LOCATION.
4836 (TYPE_DATA_LOCATION): Use DYN_PROP_DATA_LOCATION instead of
4837 DYN_ATTR_DATA_LOCATION.
4838 * dwarf2read.c (set_die_type): Use DYN_PROP_DATA_LOCATION
4839 instead of DYN_ATTR_DATA_LOCATION.
4840
64ce06e4
PA
48412015-03-24 Pedro Alves <palves@redhat.com>
4842
4843 * breakpoint.c (until_break_command): Adjust call to proceed.
4844 * gdbthread.h (struct thread_control_state) <stepping_command>:
4845 New field.
4846 * infcall.c (run_inferior_call): Adjust call to proceed.
4847 * infcmd.c (run_command_1, proceed_thread_callback, continue_1):
4848 Adjust calls to proceed.
4849 (set_step_frame): Set the current thread's step_start_function
4850 here.
4851 (step_once): Adjust calls to proceed.
4852 (jump_command, signal_command, until_next_command)
4853 (finish_backward, finish_forward, proceed_after_attach_callback)
4854 (attach_command_post_wait): Adjust calls to proceed.
4855 * infrun.c (proceed_after_vfork_done): Adjust call to proceed.
4856 (do_target_resume): New function, factored out from ...
4857 (resume): ... here. Remove 'step' parameter. Instead, check
4858 currently_stepping to determine whether the thread should be
4859 single-stepped.
4860 (proceed): Remove 'step' parameter and don't set the thread's
4861 step_start_function here. Adjust call to 'resume'.
4862 (handle_inferior_event): Adjust calls to 'resume'.
4863 (switch_back_to_stepped_thread): Use do_target_resume instead of
4864 'resume'.
4865 (keep_going): Adjust calls to 'resume'.
4866 * infrun.h (proceed): Remove 'step' parameter.
4867 (resume): Likewise.
4868 * windows-nat.c (do_initial_windows_stuff): Adjust call to
4869 'resume'.
4870 * mi/mi-main.c (proceed_thread): Adjust call to 'proceed'.
4871
856e7dd6
PA
48722015-03-24 Pedro Alves <palves@redhat.com>
4873
4874 * gdbthread.h (struct thread_control_state) <stepping_command>:
4875 New field.
4876 * infcmd.c (step_once): Pass step=1 to clear_proceed_status. Set
4877 the thread's stepping_command field.
4878 * infrun.c (resume): Check the thread's stepping_command flag to
4879 determine which threads should be resumed. Rename 'entry_step'
4880 local to user_step.
4881 (clear_proceed_status_thread): Clear 'stepping_command'.
4882 (schedlock_applies): Change parameter type to struct thread_info
4883 pointer. Adjust.
4884 (find_thread_needs_step_over): Remove 'step' parameter. Adjust.
4885 (switch_back_to_stepped_thread): Adjust calls to
4886 'schedlock_applies'.
4887 (_initialize_infrun): Adjust "set scheduler-locking step" help.
4888
885eeb5b
PA
48892015-03-24 Pedro Alves <palves@redhat.com>
4890
4891 * infrun.c (step_start_function): Delete and ...
4892 * gdbthread.h (struct thread_control_state) <step_start_function>:
4893 ... now a field here.
4894 * infrun.c (clear_proceed_status_thread): Clear the thread's
4895 step_start_function.
4896 (proceed, process_event_stop_test, print_stop_event): Adjust.
4897
3333f03a
PA
48982015-03-24 Pedro Alves <palves@redhat.com>
4899
4900 * infrun.c (proceed): No longer handle negative step.
4901
369f6daa
GB
49022015-03-24 Gary Benson <gbenson@redhat.com>
4903
4904 * nat/x86-linux.h (x86_linux_new_thread): New declaration.
4905 (x86_linux_prepare_to_resume): Likewise.
4906 * x86-linux-nat.c (x86_linux_new_thread):
4907 Moved to nat/x86-linux.c.
4908 (x86_linux_prepare_to_resume): Likewise.
4909 * nat/x86-linux.c (x86_linux_new_thread): New function.
4910 (x86_linux_prepare_to_resume): Likewise.
4911
8e5d4070
GB
49122015-03-24 Gary Benson <gbenson@redhat.com>
4913
4914 * nat/x86-linux-dregs.h: New file.
4915 * nat/x86-linux-dregs.c: Likewise.
4916 * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux-dregs.h.
4917 (x86-linux-dregs.o): New rule.
4918 * config/i386/linux.mh (NATDEPFILES): Add x86-linux-dregs.o.
4919 * config/i386/linux64.mh (NATDEPFILES): Likewise.
4920 * x86-linux-nat.c: Include nat/x86-linux-dregs.h.
4921 (u_debugreg_offset): Moved to nat/x86-linux-dregs.c.
4922 (x86_linux_dr_get): Likewise.
4923 (x86_linux_dr_set): Likewise.
4924 (x86_linux_dr_get_addr): Likewise.
4925 (x86_linux_dr_get_control): Likewise.
4926 (x86_linux_dr_get_status): Likewise.
4927 (update_debug_registers_callback): Likewise.
4928 (x86_linux_dr_set_control): Likewise.
4929 (x86_linux_dr_set_addr): Likewise.
4930 (x86_linux_update_debug_registers): Likewise.
4931
2b95d440
GB
49322015-03-24 Gary Benson <gbenson@redhat.com>
4933
4934 * x86-linux-nat.c (x86_linux_update_debug_registers):
4935 New function, factored out from...
4936 (x86_linux_prepare_to_resume): ...this.
4937
14b0bc68
GB
49382015-03-24 Gary Benson <gbenson@redhat.com>
4939
4940 * x86-linux-nat.c (x86_linux_dr_get): Update comments.
4941 (x86_linux_dr_set): Likewise.
4942 (x86_linux_dr_get_addr): Likewise.
4943 (x86_linux_dr_get_control): Likewise.
4944 (x86_linux_dr_get_status): Likewise.
4945 (update_debug_registers_callback): Likewise.
4946 (x86_linux_dr_set_control): Likewise.
4947 (x86_linux_dr_set_addr): Likewise.
4948 (x86_linux_prepare_to_resume): Likewise.
4949 (x86_linux_new_thread): Likewise.
4950
5dfe6ca8
GB
49512015-03-24 Gary Benson <gbenson@redhat.com>
4952
4953 * x86-linux-nat.c (x86_linux_dr_set_addr): Update assertion.
4954 (x86_linux_new_thread): Rename argument.
4955
4b134ca1
GB
49562015-03-24 Gary Benson <gbenson@redhat.com>
4957
4958 * nat/x86-linux.h: New file.
4959 * nat/x86-linux.c: Likewise.
4960 * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux.h.
4961 (x86-linux.o): New rule.
4962 * config/i386/linux.mh (NATDEPFILES): Add x86-linux.o.
4963 * config/i386/linux64.mh (NATDEPFILES): Likewise.
4964 * nat/linux-nat.h (struct arch_lwp_info): New forward declaration.
4965 (lwp_set_arch_private_info): New declaration.
4966 (lwp_arch_private_info): Likewise.
4967 * linux-nat.c (lwp_set_arch_private_info): New function.
4968 (lwp_arch_private_info): Likewise.
4969 * x86-linux-nat.c: Include nat/x86-linux.h.
4970 (arch_lwp_info): Removed structure.
4971 (update_debug_registers_callback):
4972 Use lwp_set_debug_registers_changed.
4973 (x86_linux_prepare_to_resume): Use lwp_debug_registers_changed
4974 and lwp_set_debug_registers_changed.
4975 (x86_linux_new_thread): Use lwp_set_debug_registers_changed.
4976
cff068da
GB
49772015-03-24 Gary Benson <gbenson@redhat.com>
4978
4979 * nat/linux-nat.h (ptid_of_lwp): New declaration.
4980 (lwp_is_stopped): Likewise.
4981 (lwp_stop_reason): Likewise.
4982 * linux-nat.c (ptid_of_lwp): New function.
4983 (lwp_is_stopped): Likewise.
4984 (lwp_is_stopped_by_watchpoint): Likewise.
4985 * x86-linux-nat.c (update_debug_registers_callback):
4986 Use lwp_is_stopped.
4987 (x86_linux_prepare_to_resume): Use ptid_of_lwp and
4988 lwp_stop_reason.
4989
b2f7c7e8
GB
49902015-03-24 Gary Benson <gbenson@redhat.com>
4991
4992 * linux-nat.h (linux_stop_lwp): Move declaration to...
4993 * nat/linux-nat.h (linux_stop_lwp): New declaration.
4994
6d4ee8c6
GB
49952015-03-24 Gary Benson <gbenson@redhat.com>
4996
4997 * linux-nat.h: Include nat/linux-nat.h.
4998 (iterate_over_lwps): Move declaration to nat/linux-nat.h.
4999 * nat/linux-nat.h (struct lwp_info): New forward declaration.
5000 (iterate_over_lwps_ftype): New typedef.
5001 (iterate_over_lwps): New declaration.
5002 * linux-nat.h (iterate_over_lwps): Update comment. Use
5003 iterate_over_lwps_ftype. Update callback return value check.
5004
70a0bb6b
GB
50052015-03-24 Gary Benson <gbenson@redhat.com>
5006
5007 * x86-nat.h (x86_debug_reg_state): Move declaration to...
5008 * nat/x86-dregs.h (x86_debug_reg_state): New declaration.
5009
7b669087
GB
50102015-03-24 Gary Benson <gbenson@redhat.com>
5011
5012 * nat/linux-nat.h (current_lwp_ptid): New declaration.
5013 * linux-nat.c (current_lwp_ptid): New function.
5014 * x86-linux-nat.c: Include nat/linux-nat.h.
5015 (x86_linux_dr_get_addr): Use current_lwp_ptid.
5016 (x86_linux_dr_get_control): Likewise.
5017 (x86_linux_dr_get_status): Likewise.
5018 (x86_linux_dr_set_control): Likewise.
5019 (x86_linux_dr_set_addr): Likewise.
5020
15630549
AT
50212015-03-24 Antoine Tremblay <antoine.tremblay@ericsson.com>
5022
5023 PR breakpoints/16466
5024 * breakpoint.c (create_breakpoint): Set thread on breakpoint struct.
5025
8a4506c0
JB
50262015-03-23 Joel Brobecker <brobecker@adacore.com>
5027
5028 * ser-mingw.c (ser_windows_setparity): Fix indentation.
5029 * ser-unix.c (hardwire_setparity): Likewise.
5030
236af5e3
YG
50312015-03-23 Yurij Grechishhev <yurij.grechishhev@gmail.com>
5032
5033 * NEWS: Mention set/show serial parity command.
5034 * monitor.c (monitor_open): Call serial_setparity.
5035 * remote.c (remote_open_1): Likewise.
5036 * ser-base.c (ser_base_serparity): New function.
5037 * ser-base.h (ser_base_setparity): Add declaration.
5038 * ser-go32.c (dos_ops): Set "setparity" field.
5039 * ser-mingw.c (ser_windows_raw): Do not set state.fParity and
5040 state.Parity.
5041 (ser_windows_setparity): New function.
5042 (hardwire_ops): Add ser_windows_setparity.
5043 (tty_ops): Add NULL for setparity field.
5044 (pipe_ops): Add ser_base_setparity.
5045 (tcp_ops): Likewise.
5046 * ser-pipe.c (pipe_ops): Likewise.
5047 * ser-tcp.c (tcp_ops): Likewise.
5048 * ser-unix.c (hardwire_setparity): Add declaration.
5049 (hardwire_raw): Don't reset PARENB flag.
5050 (hardwire_setparity): New function.
5051 (hardwire_ops): Add hardwire_setparity.
5052 * serial.c (serial_setparity): New function.
5053 (serial_parity): New global.
5054 (parity_none, parity_odd, parity_even, parity_enums, parity):
5055 New static globals.
5056 (set_parity): New function.
5057 (_initialize_serial): Add set/show serial parity commands.
5058 * serial.h (GDBPARITY_NONE): Define.
5059 (GDBPARITY_ODD): Define.
5060 (GDBPARITY_EVEN): Define.
5061 (serial_setparity) Add declaration.
5062 (struct serial_ops): Add setparity field.
5063 * target.h (serial_parity): Add declaration.
5064
32b40af9
KS
50652015-03-23 Keith Seitz <keiths@redhat.com>
5066
5067 * linespec.c (linespec_lexer_lex_keyword): Update comment.
5068
693dca06
KS
50692015-03-23 Keith Seitz <keiths@redhat.com>
5070
5071 * breakpoint.c (parse_breakpoint_sals): Use
5072 linespec_lexer_lex_keyword to ascertain if the user specified
5073 a NULL location.
5074 * linespec.c [IF_KEYWORD_INDEX]: Define.
5075 (linespec_lexer_lex_keyword): Export.
5076 (struct ls_parser) <keyword_ok>: Remove.
5077 A keyword is only a keyword if not followed by another keyword.
5078 (linespec_lexer_lex_one): Remove keyword_ok handling.
5079 Add comment explaining why the parsing stream is not advanced
5080 when a keyword is seen.
5081 (parse_linespec): Remove parser->keyword_ok.
5082 * linespec.h (linespec_lexer_lex_keyword): Add declaration.
5083
7e993ebf
KS
50842015-03-23 Keith Seitz <keiths@redhat.com>
5085
5086 PR gdb/18021
5087 * dwarf2read.c (dwarf2_add_member_fn): Issue a complaint
5088 if we find a static method with DW_AT_vtable_elem_location.
5089
b1a0f704
EZ
50902015-03-21 Eli Zaretskii <eliz@gnu.org>
5091
5092 * tui/tui-io.c (tui_expand_tabs): Reinitialize the column counter
5093 before the second loop, to avoid undefined behavior. Reported by
5094 Anton Blanchard <anton@samba.org>.
5095
d9823cbb
KB
50962015-03-20 Keven Boell <keven.boell@intel.com>
5097
5098 * gdbtypes.c (resolve_dynamic_type_internal): Adapt
5099 data_location usage to linked list.
5100 (resolve_dynamic_type_internal): Adapt data_location to
5101 linked list.
5102 (get_dyn_prop, add_dyn_prop, copy_dynamic_prop_list): New function.
5103 (copy_type_recursive, copy_type): Add copy of linked list.
5104 * gdbtypes.h (enum dynamic_prop_node_kind): New enum.
5105 (struct dynamic_prop_list): New struct.
5106 * dwarf2read.c (set_die_type): Set data_location data.
5107
2e7bf1d7
PA
51082015-03-20 Pedro Alves <palves@redhat.com>
5109
5110 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Move "p" to
5111 inner block and make it const.
5112 * machoread.c (get_archive_prefix_len): Make "lparen" const.
5113
7a26bd4d
PA
51142015-03-20 Pedro Alves <palves@redhat.com>
5115
5116 * breakpoint.c (set_breakpoint_condition): Make argument "exp" const.
5117 * breakpoint.h (set_breakpoint_condition): Update declaration.
5118
cd46431b
PA
51192015-03-20 Pedro Alves <palves@redhat.com>
5120
5121 * tui/tui-io.c (tui_expand_tabs): Make "s1" const.
5122
e28566f7
PA
51232015-03-20 Pedro Alves <palves@redhat.com>
5124
5125 * xcoffread.c (scan_xcoff_symtab): Make "p" and "q" const.
5126
f6fc92f6
PA
51272015-03-20 Pedro Alves <palves@redhat.com>
5128
5129 * remote-m32r-sdi.c (m32r_open): Make "port_str" const.
5130
c32ed3ef
PA
51312015-03-20 Pedro Alves <palves@redhat.com>
5132
5133 * nto-tdep.c (nto_find_and_open_solib): Make "endian" const.
5134 (nto_init_solib_absolute_prefix): Likewise.
5135
53e78085
PA
51362015-03-20 Pedro Alves <palves@redhat.com>
5137
5138 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Make "p" const.
5139 * spu-tdep.c (spu_gdbarch_init): Make "name" const.
5140
bc23328c
JK
51412015-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5142
5143 * config/djgpp/README: Remove gdb.hp.
5144
e8ffc436
YQ
51452015-03-20 Yao Qi <yao.qi@linaro.org>
5146
5147 * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
5148 set_gdbarch_cannot_step_breakpoint.
5149
23f238d3
PA
51502015-03-19 Pedro Alves <palves@redhat.com>
5151
5152 * linux-nat.c (linux_resume_one_lwp): Rename to ...
5153 (linux_resume_one_lwp_throw): ... this. Don't handle ESRCH here,
5154 instead call perror_with_name.
5155 (check_ptrace_stopped_lwp_gone): New function.
5156 (linux_resume_one_lwp): Reimplement as wrapper around
5157 linux_resume_one_lwp_throw that swallows errors if the LWP is
5158 gone.
5159 (resume_stopped_resumed_lwps): Try register reads in TRY/CATCH and
5160 swallows errors if the LWP is gone. Use
5161 linux_resume_one_lwp_throw instead of linux_resume_one_lwp.
5162
eb54c8bf
PA
51632015-03-19 Pedro Alves <palves@redhat.com>
5164
5165 * linux-nat.c (status_callback): Return early if the LWP has no
5166 status pending.
5167
b90fc188
PA
51682015-03-19 Pedro Alves <palves@redhat.com>
5169
5170 * linux-nat.c (select_event_lwp_callback): Update comment to no
5171 longer mention SIGTRAP.
5172
670f82d4
TG
51732015-03-18 Tristan Gingold <gingold@adacore.com>
5174
72f4393d
L
5175 * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Move
5176 redirection code to ...
5177 (amd64_windows_frame_decode_insns): ... Here. Fix in prologue
5178 checks. Fix SAVE_NONVOL operations. Add debug code and comments.
670f82d4 5179
464b0089
GB
51802015-03-18 Gary Benson <gbenson@redhat.com>
5181
5182 (remote_protocol_features): Remove the "vFile:fstat" feature.
5183 (remote_hostio_fstat): Probe for "vFile:fstat" support.
5184
f68f11b7
YQ
51852015-03-11 Yao Qi <yao.qi@linaro.org>
5186
5187 PR tdep/18107
5188 * aarch64-linux-tdep.c: Include xml-syscall.h
5189 (aarch64_linux_get_syscall_number): New function.
5190 (aarch64_linux_init_abi): Call
5191 set_gdbarch_get_syscall_number.
5192 * syscalls/aarch64-linux.xml: New file.
5193
393bd0c0
YG
51942015-03-17 Yurij Grechishhev <yurij.grechishhev@gmail.com>
5195
5196 * ser-base.h (ser_base_setstopbits): Change second argument name
5197 from "rate" to "num".
5198
7f3647e2
GB
51992015-03-17 Gary Benson <gbenson@redhat.com>
5200 Luke Allardyce <lukeallardyce@gmail.com>
5201
5202 PR gdb/18131
5203 * common/common-remote-fileio.h (sys/stat.h): New include.
5204 (stuct stat): Remove forward declaration.
5205
3ce5b6e2
JB
52062015-03-16 John Baldwin <jhb@FreeBSD.org>
5207
5208 * fbsd-tdep.c (fbsd_make_corefile_notes): Fetch all target registers
5209 before writing core register notes.
5210
d053f6be
YZ
52112015-03-16 Yuanhui Zhang <asmwarrior@gmail.com>
5212 Pedro Alves <palves@redhat.com>
5213
5214 * gdb_curses.h (tgetnum): Mark with EXTERN_C.
5215 * stub-termcap.c (tgetent, tgetnum, tgetflag, tgetstr, tputs)
5216 (tgoto): Wrap with extern "C".
5217
b1a921c8
PA
52182015-03-16 Pedro Alves <palves@redhat.com>
5219 Yuanhui Zhang <asmwarrior@gmail.com>
5220
5221 * stub-termcap.c (tputs): Change prototype.
5222
876d1cd7
YZ
52232015-03-16 Yuanhui Zhang <asmwarrior@gmail.com>
5224 Pedro Alves <palves@redhat.com>
5225
5226 * windows-nat.c (struct thread_info_struct): Rename to ...
5227 (struct windows_thread_info_struct): ... this.
5228 (thread_info): Rename to ...
5229 (windows_thread_info): ... this.
5230 All users updated.
5231
0800b440
JK
52322015-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5233 Pedro Alves <palves@redhat.com>
5234
5235 * NEWS: New Removed targets and native configurations.
5236
52372015-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
61a12cfa
JK
5238
5239 Remove HPUX.
5240 * Makefile.in (ALL_64_TARGET_OBS): Remove ia64-hpux-tdep.o.
5241 (ALL_TARGET_OBS): Remove hppa-hpux-tdep.o, solib-som.o and solib-pa64.o.
5242 (HFILES_NO_SRCDIR): Remove solib-som.h, inf-ttrace.h, solib-pa64.h and
5243 ia64-hpux-tdep.h, solib-ia64-hpux.h.
5244 (ALLDEPFILES): Remove hppa-hpux-tdep.c, hppa-hpux-nat.c,
5245 ia64-hpux-nat.c, ia64-hpux-tdep.c, somread.c and solib-som.c.
5246 * config/djgpp/fnchange.lst: Remove hppa-hpux-nat.c and
5247 hppa-hpux-tdep.c.
5248 * config/ia64/hpux.mh: Remove file.
5249 * config/pa/hpux.mh: Remove file.
5250 * configure: Rebuilt.
5251 * configure.ac (dlgetmodinfo, somread.o): Remove.
5252 * configure.host (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
5253 (ia64-*-hpux*): Remove its float format exception.
5254 * configure.tgt (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
5255 * hppa-hpux-nat.c: Remove file.
5256 * hppa-hpux-tdep.c: Remove file.
5257 * hppa-tdep.c (struct hppa_unwind_info, struct hppa_objfile_private):
5258 Move them here from hppa-tdep.h
5259 (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Make it static.
5260 (hppa_frame_prev_register_helper): Remove HPPA_FLAGS_REGNUM exception.
5261 * hppa-tdep.h (struct hppa_unwind_info, struct hppa_objfile_private):
5262 Move them to hppa-tdep.c.
5263 (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Remove
5264 declarations.
5265 * ia64-hpux-nat.c: Remove file.
5266 * ia64-hpux-tdep.c: Remove file.
5267 * ia64-hpux-tdep.h: Remove file.
5268 * inf-ttrace.c: Remove file.
5269 * inf-ttrace.h: Remove file.
5270 * solib-ia64-hpux.c: Remove file.
5271 * solib-ia64-hpux.h: Remove file.
5272 * solib-pa64.c: Remove file.
5273 * solib-pa64.h: Remove file.
5274 * solib-som.c: Remove file.
5275 * solib-som.h: Remove file.
5276 * somread.c: Remove file.
5277
25268153
JB
52782015-03-13 John Baldwin <jhb@FreeBSD.org>
5279
5280 * configure.ac: AC_SEARCH_LIBS(kinfo_getvmmap, util).
5281 * config.in: Regenerate.
5282 * configure: Regenerate.
5283 * fbsd-nat.c [!HAVE_KINFO_GETVMMAP] (fbsd_read_mapping): Don't
72f4393d 5284 define.
25268153
JB
5285 (fbsd_find_memory_regions): Use kinfo_getvmmap to
5286 enumerate memory regions if present.
5287
773eacf5
JB
52882015-03-13 John Baldwin <jhb@FreeBSD.org>
5289
5290 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_p): Style fixes.
5291 * i386fbsd-tdep.c: Fix style in various gdb_static_assert
5292 expressions.
5293 (i386fbsd_sigtramp_p): Likewise.
5294
01b6bdb0
JB
52952015-03-12 John Baldwin <jhb@FreeBSD.org>
5296
5297 * MAINTAINERS (Write After Approval): Add John Baldwin.
5298
811a659a
GB
52992015-03-12 Gary Benson <gbenson@redhat.com>
5300
5301 * solib.c (_initialize_solib): Make "set/show sysroot" use
5302 add_setshow_optional_filename_cmd so it can be restored to
5303 empty after being set.
5304
10304ef3
SDJ
53052015-03-11 Sergio Durigan Junior <sergiodj@redhat.com>
5306
5307 * Makefile.in (SFILES): New source break-catch-syscall.c.
5308 (COMMON_OBS): New object break-catch-syscall.o.
5309 * break-catch-syscall.c: New file.
5310 * breakpoint.c: Remove inclusion of "xml-syscall.h".
5311 (syscall_catchpoint_p): Move declaration to break-catch-syscall.c
5312 (struct syscall_catchpoint): Likewise.
5313 (dtor_catch_syscall): Likewise.
5314 (catch_syscall_inferior_data): Likewise.
5315 (struct catch_syscall_inferior_data): Likewise.
5316 (get_catch_syscall_inferior_data): Likewise.
5317 (catch_syscall_inferior_data_cleanup): Likewise.
5318 (insert_catch_syscall): Likewise.
5319 (remove_catch_syscall): Likewise.
5320 (breakpoint_hit_catch_syscall): Likewise.
5321 (print_it_catch_syscall): Likewise.
5322 (print_one_catch_syscall): Likewise.
5323 (print_mention_catch_syscall): Likewise.
5324 (print_recreate_catch_syscall): Likewise.
5325 (catch_syscall_breakpoint_ops): Likewise.
5326 (syscall_catchpoint_p): Likewise.
5327 (create_syscall_event_catchpoint): Likewise.
5328 (catch_syscall_split_args): Likewise.
5329 (catch_syscall_command_1): Likewise.
5330 (is_syscall_catchpoint_enabled): Likewise.
5331 (catch_syscall_enabled): Likewise.
5332 (catching_syscall_number): Likewise.
5333 (catch_syscall_completer): Likewise.
5334 (clear_syscall_counts): Likewise.
5335 (initialize_breakpoint_ops): Move initialization of syscall
5336 catchpoints to break-catch-syscall.c.
5337 (_initialize_breakpoint): Move code related to syscall catchpoints
5338 to break-catch-syscall.c.
5339
badd37ce
SDJ
53402015-03-11 Sergio Durigan Junior <sergiodj@redhat.com>
5341
5342 * breakpoint.c (breakpoint_find_if): New function.
5343 * breakpoint.h (breakpoint_find_if): New prototype.
5344
0a93529c
GB
53452015-03-11 Gary Benson <gbenson@redhat.com>
5346
5347 * remote-fileio.h (remote_fileio_to_host_stat): New declaration.
5348 * remote-fileio.c (remote_fileio_to_host_uint): New function.
5349 (remote_fileio_to_host_ulong): Likewise.
5350 (remote_fileio_to_host_mode): Likewise.
5351 (remote_fileio_to_host_time): Likewise.
5352 (remote_fileio_to_host_stat): Likewise.
5353 * remote.c (PACKET_vFile_fstat): New enum value.
5354 (remote_protocol_features): Register the "vFile:fstat" feature.
5355 (remote_hostio_fstat): New function.
5356 (remote_bfd_iovec_stat): Use the above.
5357 (_initialize_remote): Register new "set/show remote
5358 hostio-fstat-packet" command.
5359 * symfile.c (separate_debug_file_exists): Update comment.
5360 * NEWS: Announce new vFile:fstat packet.
5361
791c0056
GB
53622015-03-11 Gary Benson <gbenson@redhat.com>
5363
5364 * common/common-remote-fileio.h: New file.
5365 * common/common-remote-fileio.c: Likewise.
5366 * Makefile.in (SFILES): Add common/common-remote-fileio.c.
5367 (HFILES_NO_SRCDIR): Add common/common-remote-fileio.h.
5368 (COMMON_OBS): Add common-remote-fileio.o.
5369 (common-remote-fileio.o): New rule.
5370 * remote-fileio.h (common-remote-fileio.h): New include.
5371 * remote-fileio.c (gdb/fileio.h): Do not include.
5372 (remote_fileio_to_be): Moved to common-remote-fileio.h.
5373 (remote_fileio_to_fio_uint): Likewise.
5374 (remote_fileio_to_fio_time): Likewise.
5375 (remote_fileio_mode_to_target): Moved to common-remote-fileio.c.
5376 (remote_fileio_to_fio_mode): Likewise.
5377 (remote_fileio_to_fio_ulong): Likewise.
5378 (remote_fileio_to_fio_stat): Likewise.
5379
1390d0ef
AW
53802015-03-11 Andy Wingo <wingo@igalia.com>
5381
5382 * guile/scm-value.c (gdbscm_value_dynamic_type): Fix typo in which
5383 we were checking the cached type, not the cached dynamic type.
5384
84a4591a
AW
53852015-03-11 Andy Wingo <wingo@igalia.com>
5386
5387 * guile/scm-cmd.c (cmdscm_destroyer): Don't xfree the name and
5388 other strings, as these are on the GC'd heap, and will be
5389 collected along with the smob.
5390
85642ba0
AW
53912015-03-11 Andy Wingo <wingo@igalia.com>
5392
5393 * guile/scm-objfile.c (gdbscm_objfile_progspace): New function.
5394 (objfile_functions): Bind gdbscm_objfile_progspace to
5395 objfile-progspace.
5396 * guile/lib/gdb.scm: Add objfile-progspace to exports.
5397
92fab5a6
AW
53982015-03-11 Andy Wingo <wingo@igalia.com>
5399
5400 * guile/guile.c (_initialize_guile): Disable automatic
5401 finalization, if Guile offers us that possibility.
5402 * guile/guile.c (call_initialize_gdb_module):
5403 * guile/scm-safe-call.c (gdbscm_with_catch): Arrange to run
5404 finalizers in appropriate places.
5405 * configure.ac (AC_TRY_LIBGUILE): Add a check for
5406 scm_set_automatic_finalization_enabled.
5407 * configure: Regenerated.
5408
f054145e
AA
54092015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com>
5410
5411 * s390-linux-tdep.c (s390_skip_prologue): Skip the prologue using
5412 SAL, if possible.
5413
18396193
AA
54142015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com>
5415
5416 * s390-linux-nat.c (struct arch_lwp_info): New.
5417 (s390_fix_watch_points): Rename to...
5418 (s390_prepare_to_resume): ...this. Skip the PER info update
5419 unless the watch points have changed.
5420 (s390_refresh_per_info, s390_new_thread): New functions.
5421 (s390_insert_watchpoint): Call s390_refresh_per_info instead of
5422 s390_fix_watch_points.
5423 (s390_remove_watchpoint): Likewise.
5424 (_initialize_s390_nat): Reflect renaming of s390_fix_watch_points.
5425 Register s390_prepare_to_resume.
5426
9eb1356e
PA
54272015-03-09 Pedro Alves <palves@redhat.com>
5428
5429 Revert:
5430 2015-03-07 Pedro Alves <palves@redhat.com>
5431 * common/gdb_socket.h: New file.
5432 * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor
5433 sys/socket.h.
5434 (net_open): Use union gdb_sockaddr_u.
5435
aac331e4
PA
54362015-03-07 Pedro Alves <palves@redhat.com>
5437
5438 * configure.ac (build_warnings): Move -Wmissing-prototypes
5439 -Wdeclaration-after-statement -Wmissing-parameter-type
5440 -Wold-style-declaration -Wold-style-definition to the C-specific
5441 set.
5442 * configure: Regenerate.
5443
366c75fc
PA
54442015-03-07 Pedro Alves <palves@redhat.com>
5445
5446 * common/gdb_socket.h: New file.
5447 * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor
5448 sys/socket.h.
5449 (net_open): Use union gdb_sockaddr_u.
5450
72df25b2
PA
54512015-03-07 Pedro Alves <palves@redhat.com>
5452
5453 * common/common-exceptions.c [!__cplusplus] (enum catcher_state)
5454 (exceptions_state_mc_action_iter)
5455 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
5456 Don't define.
5457 [__cplusplus] (try_scope_depth): New global.
5458 [__cplusplus] (exception_try_scope_entry)
5459 (exception_try_scope_exit, gdb_exception_sliced_copy)
5460 (exception_rethrow): New functions.
5461 (throw_exception): In C++ mode, throw
5462 gdb_exception_RETURN_MASK_QUIT for RETURN_QUIT and
5463 gdb_exception_RETURN_MASK_ERROR for RETURN_ERROR.
5464 (throw_it): In C++ mode, use try_scope_depth.
5465 * common/common-exceptions.h [!__cplusplus]
5466 (exceptions_state_mc_action_iter)
5467 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
5468 Don't declare.
5469 [__cplusplus] (exception_try_scope_entry)
5470 (exception_try_scope_exit, exception_rethrow): Declare.
5471 [__cplusplus] (struct exception_try_scope): New struct.
5472 [__cplusplus] (TRY, CATCH, END_CATCH): Reimplement on top of real
5473 C++ exceptions.
5474 (struct gdb_exception_RETURN_MASK_ALL)
5475 (struct gdb_exception_RETURN_MASK_ERROR)
5476 (struct gdb_exception_RETURN_MASK_QUIT): New types.
5477
284e6217
PA
54782015-03-07 Pedro Alves <palves@redhat.com>
5479
5480 * main.c (handle_command_errors): Remove volatile qualifier from
5481 parameter.
5482
6c63c96a
PA
54832015-03-07 Pedro Alves <palves@redhat.com>
5484
5485 * breakpoint.c (save_breakpoints): Adjust to avoid code between
5486 TRY and CATCH.
5487 * gdbtypes.c (safe_parse_type): Remove empty line.
5488 (types_deeply_equal):
5489 * guile/scm-frame.c (gdbscm_frame_name):
5490 * linux-thread-db.c (find_new_threads_once):
5491 * python/py-breakpoint.c (bppy_get_commands):
5492 * record-btrace.c (record_btrace_insert_breakpoint)
5493 (record_btrace_remove_breakpoint, record_btrace_start_replaying)
5494 (record_btrace_start_replaying): Adjust to avoid code between TRY
5495 and CATCH.
5496
492d29ea
PA
54972015-03-07 Pedro Alves <palves@redhat.com>
5498
5499 * common/common-exceptions.c (struct catcher) <exception>: No
5500 longer a pointer to volatile exception. Now an exception value.
5501 <mask>: Delete field.
5502 (exceptions_state_mc_init): Remove all parameters. Adjust.
5503 (exceptions_state_mc): No longer pop the catcher here.
5504 (exceptions_state_mc_catch): New function.
5505 (throw_exception): Adjust.
5506 * common/common-exceptions.h (exceptions_state_mc_init): Remove
5507 all parameters.
5508 (exceptions_state_mc_catch): Declare.
5509 (TRY_CATCH): Rename to ...
5510 (TRY): ... this. Remove EXCEPTION and MASK parameters.
5511 (CATCH, END_CATCH): New.
5512 All callers adjusted.
5513
ece957c8
TT
55142015-03-07 Tom Tromey <tromey@redhat.com>
5515
5516 * top.c (quit_force): Inline and delete DO_TRY, DO_PRINT_EX.
5517
7556d4a4
PA
55182015-03-07 Pedro Alves <palves@redhat.com>
5519
5520 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
5521 (amd64_epilogue_frame_cache): Normal exception handling code.
5522 * break-catch-throw.c (check_status_exception_catchpoint)
5523 (re_set_exception_catchpoint): Ditto.
5524 * cli/cli-interp.c (safe_execute_command):
5525 * cli/cli-script.c (script_from_file): Ditto.
5526 * compile/compile-c-symbols.c (generate_c_for_for_one_variable):
5527 Ditto.
5528 * compile/compile-object-run.c (compile_object_run): Ditto.
5529 * cp-abi.c (baseclass_offset): Ditto.
5530 * cp-valprint.c (cp_print_value): Ditto.
5531 * exceptions.c (catch_exceptions_with_msg):
5532 * frame-unwind.c (frame_unwind_try_unwinder): Ditto.
5533 * frame.c (get_frame_address_in_block_if_available): Ditto.
5534 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
5535 (i386_sigtramp_frame_cache): Ditto.
5536 * infcmd.c (post_create_inferior): Ditto.
5537 * linespec.c (parse_linespec, find_linespec_symbols):
5538 * p-valprint.c (pascal_object_print_value): Ditto.
5539 * parse.c (parse_expression_for_completion): Ditto.
5540 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
5541 * remote.c (remote_get_noisy_reply): Ditto.
5542 * s390-linux-tdep.c (s390_frame_unwind_cache): Ditto.
5543 * solib-svr4.c (solib_svr4_r_map): Ditto.
5544
f873665f 55452015-03-06 Gary Benson <gbenson@redhat.com>
61012eef
GB
5546
5547 * common/common-utils.h (startswith): New inline function.
5548 All places where this logic was used updated to use the above.
5549
68901c4d
PA
55502015-03-05 Pedro Alves <palves@redhat.com>
5551
5552 PR gdb/18002
5553 * mem-break.c (default_memory_insert_breakpoint): Set shadow_len
5554 after reading the breakpoint's shadow memory.
5555
2dcb2b1a
MK
55562015-03-05 Mark Kettenis <kettenis@gnu.org>
5557
5558 * hppabsd-nat.c: Remove file.
5559 * hppaobsd-nat.c: New file.
5560 * Makefile.in (ALLDEPFILES): Remove hppabsd-nat.c. Add
5561 hppaobsd-nat.c.
5562 * config/pa/obsd.mh (NATDEPFILES): Replace hppabsd-nat.o with
5563 hppaobsd-nat.o.
5564
527a273a
PA
55652015-03-04 Pedro Alves <palves@redhat.com>
5566
5567 * target.h (struct target_ops) <to_decr_pc_after_break>: Delete.
5568 (target_decr_pc_after_break): Delete declaration.
5569 * target.c (default_target_decr_pc_after_break)
5570 (target_decr_pc_after_break): Delete.
5571 * linux-nat.c (check_stopped_by_breakpoint, linux_nat_wait_1): Use
5572 gdbarch_decr_pc_after_break instead of target_decr_pc_after_break.
5573 * linux-thread-db.c (check_event): Likewise.
5574 * infrun.c (adjust_pc_after_break): Likewise.
5575 * darwin-nat.c (cancel_breakpoint): Likewise.
5576 * aix-thread.c (aix_thread_wait): Likewise.
5577 * target-delegates.c: Regenerate.
5578
faf09f01
PA
55792015-03-04 Pedro Alves <palves@redhat.com>
5580
5581 * linux-nat.c (save_sigtrap): Check for breakpoints before
5582 checking watchpoints.
5583 (status_callback) [USE_SIGTRAP_SIGINFO]: Don't check whether a
5584 breakpoint is inserted if relying on SIGTRAP's siginfo.si_code.
5585 (check_stopped_by_breakpoint) [USE_SIGTRAP_SIGINFO]: Decide whether
5586 a breakpoint triggered based on the SIGTRAP's siginfo.si_code.
5587 (linux_nat_stopped_by_sw_breakpoint)
5588 (linux_nat_supports_stopped_by_sw_breakpoint)
5589 (linux_nat_stopped_by_hw_breakpoint)
5590 (linux_nat_supports_stopped_by_hw_breakpoint): New functions.
5591 (linux_nat_wait_1): Don't re-increment the PC if relying on
5592 SIGTRAP's siginfo->si_code.
5593 (linux_nat_add_target): Install new target methods.
5594 * linux-thread-db.c (check_event): Don't account for breakpoint PC
5595 offset if the target already adjusted the PC.
5596 * nat/linux-ptrace.h (USE_SIGTRAP_SIGINFO): New.
5597 (GDB_ARCH_TRAP_BRKPT): New.
5598 (TRAP_HWBKPT): Define if not already defined.
5599
f7e6eed5
PA
56002015-03-04 Pedro Alves <palves@redhat.com>
5601
5602 * NEWS: Mention the new "swbreak" and "hwbreak" stop reasons.
5603 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p>:
5604 Delete field.
5605 <stop_reason>: New field.
5606 (PACKET_swbreak_feature, PACKET_hwbreak_feature): New enum values.
5607 (packet_set_cmd_state): New function.
5608 (remote_protocol_features): Register the "swbreak" and "hwbreak"
5609 features.
5610 (remote_query_supported): If not disabled with the corresponding
5611 "set remote foo-packet" command, report support for the swbreak
5612 and hwbreak features.
5613 (struct stop_reply) <remote_stopped_by_watchpoint_p>: Delete
5614 field.
5615 <stop_reason>: New field.
5616 (remote_parse_stop_reply): Handle "swbreak" and "hwbreak".
5617 (remote_wait_as): Adjust.
5618 (remote_stopped_by_sw_breakpoint)
5619 (remote_supports_stopped_by_sw_breakpoint)
5620 (remote_stopped_by_hw_breakpoint)
5621 (remote_supports_stopped_by_hw_breakpoint): New functions.
5622 (remote_stopped_by_watchpoint): New function.
5623 (init_remote_ops): Install them.
5624 (_initialize_remote): Register new "set/show remote
5625 swbreak-feature-packet" and "set/show remote
5626 swbreak-feature-packet" commands.
5627
9e8915c6
PA
56282015-03-04 Pedro Alves <palves@redhat.com>
5629
5630 * btrace.h: Include target/waitstatus.h.
5631 (struct btrace_thread_info) <stop_reason>: New field.
5632 * record-btrace.c (record_btrace_step_thread): Use
5633 record_check_stopped_by_breakpoint instead of breakpoint_here_p.
5634 (record_btrace_decr_pc_after_break): Delete.
5635 (record_btrace_stopped_by_sw_breakpoint)
5636 (record_btrace_supports_stopped_by_sw_breakpoint)
5637 (record_btrace_stopped_by_hw_breakpoint)
5638 (record_btrace_supports_stopped_by_hw_breakpoint): New functions.
5639 (init_record_btrace_ops): Install them.
5640 * record-full.c (record_full_hw_watchpoint): Delete and replace
5641 with ...
5642 (record_full_stop_reason): ... this throughout.
5643 (record_full_exec_insn): Adjust.
5644 (record_full_wait_1): Adjust. No longer re-increment the PC.
5645 (record_full_wait_1): Adjust. Use
5646 record_check_stopped_by_breakpoint instead of breakpoint_here_p.
5647 (record_full_stopped_by_watchpoint): Adjust.
5648 (record_full_stopped_by_sw_breakpoint)
5649 (record_full_supports_stopped_by_sw_breakpoint)
5650 (record_full_supports_stopped_by_sw_breakpoint)
5651 (record_full_stopped_by_hw_breakpoint)
5652 (record_full_supports_stopped_by_hw_breakpoint): New functions.
5653 (init_record_full_ops, init_record_full_core_ops): Install them.
5654 * record.c (record_check_stopped_by_breakpoint): New function.
5655 * record.h: Include target/waitstatus.h.
5656 (record_check_stopped_by_breakpoint): New declaration.
5657
15c66dd6
PA
56582015-03-04 Pedro Alves <palves@redhat.com>
5659
5660 enum lwp_stop_reason -> enum target_stop_reason
5661 * linux-nat.c (linux_resume_one_lwp, check_stopped_by_watchpoint)
5662 (linux_nat_stopped_by_watchpoint, status_callback)
5663 (linux_nat_wait_1): Adjust.
5664 * linux-nat.h (enum lwp_stop_reason): Delete.
5665 (struct lwp_info) <stop_reason>: Now an enum target_stop_reason.
5666 * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
5667 * target/waitstatus.h (enum target_stop_reason): New.
5668
1cf4d951
PA
56692015-03-04 Pedro Alves <palves@redhat.com>
5670
5671 * breakpoint.c (need_moribund_for_location_type): New function.
5672 (bpstat_stop_status): Don't skipping checking moribund locations
5673 of breakpoint types which the target tell caused a stop.
5674 (program_breakpoint_here_p): New function, factored out from ...
5675 (bp_loc_is_permanent): ... this.
5676 (update_global_location_list): Don't create a moribund location if
5677 the target supports reporting stops of the type of the removed
5678 breakpoint.
5679 * breakpoint.h (program_breakpoint_here_p): New declaration.
5680 * infrun.c (adjust_pc_after_break): Return early if the target has
5681 already adjusted the PC. Add comments.
5682 (handle_signal_stop): If nothing explains a signal, and the target
5683 tells us the stop was caused by a software breakpoint, check if
5684 there's a breakpoint instruction in the memory. If so, adjust the
5685 PC before presenting the stop to the user. Otherwise, ignore the
5686 trap. If nothing explains a signal, and the target tells us the
5687 stop was caused by a hardware breakpoint, ignore the trap.
5688 * target.h (struct target_ops) <to_stopped_by_sw_breakpoint,
5689 to_supports_stopped_by_sw_breakpoint, to_stopped_by_hw_breakpoint,
5690 to_supports_stopped_by_hw_breakpoint>: New fields.
5691 (target_stopped_by_sw_breakpoint)
5692 (target_supports_stopped_by_sw_breakpoint)
5693 (target_stopped_by_hw_breakpoint)
5694 (target_supports_stopped_by_hw_breakpoint): Define.
5695 * target-delegates.c: Regenerate.
5696
79639e11
PA
56972015-03-04 Pedro Alves <palves@redhat.com>
5698
5699 * infrun.c (follow_fork_inferior): Use the whole of the
5700 inferior_ptid and pending_follow.related_pid ptids instead of
5701 building ptids from the process components. Adjust verbose output
5702 to use target_pid_to_str.
5703 * linux-nat.c (linux_child_follow_fork): Use the whole of the
5704 inferior_ptid and pending_follow.related_pid ptids instead of
5705 building ptids from the process components.
5706
e85e8e5e
MK
57072015-03-04 Mark Kettenis <kettenis@gnu.org>
5708
5709 * inf-ptrace.c [PT_GET_PROCESS_STATE]
5710 (inf_ptrace_insert_fork_catchpoint): New function.
5711 (inf_ptrace_remove_fork_catchpoint): New function.
5712 (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Install them.
5713
87de11c0
AA
57142015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
5715
5716 * s390-linux-tdep.c (s390_register_name): Return empty string
5717 instead of NULL for registers that shouldn't be visible.
5718
d851a69a
AA
57192015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
5720
5721 * s390-linux-tdep.c (s390_gdbarch_init): Use the correct syscall
5722 XML file for 64-bit targets.
5723
b072f6c1
SM
57242015-03-03 Simon Marchi <simon.marchi@ericsson.com>
5725
5726 * target.h (find_default_create_inferior): Remove declaration.
5727 (find_default_attach): Likewise.
5728
c1593e4f
PA
57292015-03-03 Pedro Alves <palves@redhat.com>
5730
5731 * inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace.
5732 Use ptid_get_pid to get the overall process id when resuming all
5733 threads.
5734
90ad5e1d
PA
57352015-03-03 Pedro Alves <palves@redhat.com>
5736
5737 * i386-linux-nat.c (i386_linux_resume): Get the ptrace PID out of
5738 the lwp field of ptid. Pass the full ptid to get_thread_regcache.
5739 * inf-ptrace.c (get_ptrace_pid): New function.
5740 (inf_ptrace_resume): Use it.
5741 * linux-nat.c (linux_resume_one_lwp): Pass the LWP's ptid ummodified
5742 to the lower layer.
5743
d68e53f4
MM
57442015-03-03 Markus Metzger <markus.t.metzger@intel.com>
5745
5746 * nat/linux-btrace.c: Include sys/utsname.h.
5747 (linux_determine_kernel_ptr_bits): New.
5748 (linux_enable_bts): Call linux_determine_kernel_ptr_bits.
5749 * x86-linux-nat.c (x86_linux_enable_btrace): Do not overwrite non-zero
5750 ptr_bits.
5751
986b6601
MM
57522015-03-03 Markus Metzger <markus.t.metzger@intel.com>
5753
5754 * btrace.c (ftrace_update_function): Treat return as tailcall for
5755 "_dl_runtime_resolve".
5756
ce0dfbea
MM
57572015-03-03 Markus Metzger <markus.t.metzger@intel.com>
5758
5759 * btrace.h (btrace_function) <lbegin, lend>: Remove.
5760 * btrace.c (ftrace_debug): Do not print the line range.
5761 (ftrace_skip_file, ftrace_update_lines): Remove.
5762 (ftrace_new_function): Remove lbegin and lend initialization.
5763 (btrace_compute_ftrace_bts): Remove call to ftrace_update_lines.
5764 * record-btrace.c (btrace_compute_src_line_range): New.
5765 (btrace_call_history_src_line): Call btrace_compute_src_line_range.
5766
95e50b27
PA
57672015-03-02 Pedro Alves <palves@redhat.com>
5768
5769 * infrun.c (follow_exec): Delete all threads of the process except
5770 the event thread. Extended comments.
5771
00e474c2
JB
57722015-03-02 Joel Brobecker <brobecker@adacore.com>
5773
5774 * contrib/ari/gdb_ari.sh: Reinstate checks for "true" and "false".
5775
cc7039d3
JB
57762015-03-02 Joel Brobecker <brobecker@adacore.com>
5777
5778 * utils.h: Remove <stdbool.h> #include.
5779 (producer_is_gcc): Change return type to "int".
5780 * utils.c (producer_is_gcc): Change return type to int.
5781 Return 1 instead of true, and 0 instead of false.
5782 Adjust function documentation accordingly.
5783
550bdf96
AA
57842015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
5785
5786 * s390-linux-nat.c (have_regset_vxrs): New static variable.
5787 (s390_linux_fetch_inferior_registers): Handle vector registers, if
5788 present.
5789 (s390_linux_store_inferior_registers): Likewise.
5790 (s390_get_hwcap): Remove function. Embed its logic...
5791 (s390_read_description): ...here. Yield a target description with
5792 vector registers if applicable.
5793 * s390-linux-tdep.c: Include "features/s390-vx-linux64.c",
5794 "features/s390-tevx-linux64.c", "features/s390x-vx-linux64.c", and
5795 "features/s390x-tevx-linux64.c".
5796 (struct gdbarch_tdep) <v0_full_regnum>: New field.
5797 (s390_dwarf_regmap): Add vector registers. Remove bogus entries
5798 for "GNU/Linux-specific registers".
5799 (s390_dwarf_reg_r0l): New enum value.
5800 (s390_dwarf_reg_to_regnum): Support vector registers.
5801 (s390_adjust_frame_regnum): Adjust pseudo DWARF register numbers
5802 of GPR lower halves.
5803 (regnum_is_vxr_full): New function.
5804 (s390_register_name): New function.
5805 (s390_pseudo_register_name): Handle v0-v15, which are composed of
5806 f0-f15 and v0l-v15l.
5807 (s390_pseudo_register_type): Likewise.
5808 (s390_pseudo_register_read): Likewise.
5809 (s390_pseudo_register_write): Likewise.
5810 (s390_value_from_register): Account for the fact that values are
5811 placed left-justified in vector registers.
5812 (s390_pseudo_register_reggroup_p): Add pseudo registers v0-v15 to
5813 the vector reggroup and omit them from the general reggroup.
5814 (s390_regmap_vxrs_low, s390_regmap_vxrs_high): New register maps.
5815 (s390_vxrs_low_regset, s390_vxrs_high_regset): New regsets.
5816 (s390_iterate_over_regset_sections): Add iterations for the two
5817 new vector regsets.
5818 (s390_core_read_description): Yield a target description with
5819 vector registers if applicable.
5820 (s390_gdbarch_init): Handle target descriptions with vector
5821 registers. Add "register_name" gdbarch method.
5822 (_initialize_s390_tdep): Call new tdesc initialization functions.
5823 * s390-linux-tdep.h (HWCAP_S390_VX): New macro.
5824 (S390_V0_LOWER_REGNUM, S390_V1_LOWER_REGNUM, S390_V2_LOWER_REGNUM)
5825 (S390_V3_LOWER_REGNUM, S390_V4_LOWER_REGNUM, S390_V5_LOWER_REGNUM)
5826 (S390_V6_LOWER_REGNUM, S390_V7_LOWER_REGNUM, S390_V8_LOWER_REGNUM)
5827 (S390_V9_LOWER_REGNUM, S390_V10_LOWER_REGNUM)
5828 (S390_V11_LOWER_REGNUM, S390_V12_LOWER_REGNUM)
5829 (S390_V13_LOWER_REGNUM, S390_V14_LOWER_REGNUM)
5830 (S390_V15_LOWER_REGNUM, S390_V16_REGNUM, S390_V17_REGNUM)
5831 (S390_V18_REGNUM, S390_V19_REGNUM, S390_V20_REGNUM)
5832 (S390_V21_REGNUM, S390_V22_REGNUM, S390_V23_REGNUM)
5833 (S390_V24_REGNUM, S390_V25_REGNUM, S390_V26_REGNUM)
5834 (S390_V27_REGNUM, S390_V28_REGNUM, S390_V29_REGNUM)
5835 (S390_V30_REGNUM, S390_V31_REGNUM): New macros.
5836 (S390_NUM_REGS): Adjust value.
5837 (s390_vxrs_low_regset, s390_vxrs_high_regset): Declare.
5838 (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64)
5839 (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): Likewise.
5840 * NEWS: Announce S/390 vector register support.
5841
446899e4
AA
58422015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
5843
5844 * features/s390-tevx-linux64.xml: New file.
5845 * features/s390-vx-linux64.xml: New file.
5846 * features/s390-vx.xml: New file.
5847 * features/s390x-tevx-linux64.xml: New file.
5848 * features/s390x-vx-linux64.xml: New file.
5849 * features/Makefile (WHICH): Add s390-vx-linux64,
5850 s390x-vx-linux64, s390-tevx-linux64, and s390x-tevx-linux64.
5851 (s390-vx-linux64-expedite, s390-tevx-linux64-expedite)
5852 (s390x-vx-linux64-expedite, s390x-tevx-linux64-expedite): New
5853 macros.
5854 * features/s390-tevx-linux64.c: New generated file.
5855 * features/s390-vx-linux64.c: Likewise.
5856 * features/s390x-tevx-linux64.c: Likewise.
5857 * features/s390x-vx-linux64.c: Likewise.
5858 * regformats/s390-tevx-linux64.dat: Likewise.
5859 * regformats/s390-vx-linux64.dat: Likewise.
5860 * regformats/s390x-tevx-linux64.dat: Likewise.
5861 * regformats/s390x-vx-linux64.dat: Likewise.
5862
b7236fbe
DE
58632015-02-28 Doug Evans <xdje42@gmail.com>
5864
5865 * symtab.h (struct symtab) <next>: Fix comment.
5866
02e62830
SM
58672015-02-27 Simon Marchi <simon.marchi@ericsson.com>
5868
5869 * python/python.c (python_GdbModuleDef): Rename GdbMethods to
5870 python_GdbMethods.
5871
bf36a1e7
PA
58722015-02-27 Pedro Alves <palves@redhat.com>
5873
5874 * dtrace-probe.c (dtrace_probe_ops): Make extern.
5875
ad6aff7d
PA
58762015-02-27 Pedro Alves <palves@redhat.com>
5877
5878 * common/common-exceptions.h (exception_none): Declare.
5879 * common/common-exceptions.c (exception_none): Moved from
5880 exceptions.c.
5881 (exceptions_state_mc_init): Use exception_none.
5882 * exceptions.c (exception_none): Move to
5883 common/common-exceptions.c.
5884 * exceptions.h (exception_none): Move to
5885 common/common-exceptions.h.
5886
97c18565
PA
58872015-02-27 Pedro Alves <palves@redhat.com>
5888
5889 * main.c (catch_command_errors, catch_command_errors_const):
5890 Remove 'mask' argument. Adjust.
5891 (captured_main): Adjust callers.
5892
e992c591
PA
58932015-02-27 Pedro Alves <palves@redhat.com>
5894
5895 * python/python-internal.h: Include "extension-priv.h".
5896
64166036
PA
58972015-02-27 Pedro Alves <palves@redhat.com>
5898
5899 * breakpoint.h (enum print_stop_action): Move further up in the
5900 file.
5901
8a526fa6
PA
59022015-02-27 Pedro Alves <palves@redhat.com>
5903
5904 * gdbarch.sh: Include regcache.h.
5905 * gdbarch.h: Regenerate.
5906
0fa9c223
PA
59072015-02-27 Pedro Alves <palves@redhat.com>
5908
5909 * arm-tdep.c (decode_insn) <arm_handle_insn, thumb_handle_insn>:
5910 Remove duplicate const.
5911 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Remove
5912 duplicate const.
5913
7cf99fb1
PA
59142015-02-27 Pedro Alves <palves@redhat.com>
5915
5916 * cp-valprint.c (vtbl_ptr_name): Use EXPORTED_CONST.
5917 * guile/guile.c (extension_language_guile): Use EXPORTED_CONST.
5918 * features/feature_to_c.sh: Tag the generated xml_builtin array
5919 with extern const in C++ mode.
5920
1424c16e
TT
59212015-02-27 Tom Tromey <tromey@redhat.com>
5922
5923 * minidebug.c (struct lzma_stream): Rename to ...
5924 (struct gdb_lzma_stream): ... this.
5925 (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust.
5926
10367c7c
PA
59272015-02-27 Pedro Alves <palves@redhat.com>
5928
5929 * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New
5930 function.
5931 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
5932 (mi_cmd_stack_list_variables): Use it.
5933
4180215b
PA
59342015-02-27 Pedro Alves <palves@redhat.com>
5935
5936 * x86-linux-nat.c (u_debugreg_offset): New function.
5937 (x86_linux_dr_get, x86_linux_dr_set): Use it.
5938
2f56f7c3
PA
59392015-02-27 Pedro Alves <palves@redhat.com>
5940
5941 * nat/x86-dregs.h (enum target_hw_bp_type): Remove forward
5942 declaration.
5943 Include break-common.h.
5944
570dc176
TT
59452015-02-27 Tom Tromey <tromey@redhat.com>
5946 Pedro Alves <palves@redhat.com>
5947
5948 * arm-tdep.c (set_fp_model_sfunc, arm_set_abi): Use 'int' for
5949 local used to iterate over enums.
5950 * completer.c (signal_completer): Likewise.
5951 * i386-tdep.c (i386_stap_parse_special_token): Likewise.
5952 * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
5953 * tui/tui-data.c (tui_next_win, tui_prev_win): Likewise.
5954 * tui/tui-layout.c (next_layout, prev_layout): Likewise.
5955 * tui/tui-win.c (tui_refresh_all_win, tui_rehighlight_all)
5956 (tui_resize_all, tui_set_focus_command, tui_all_windows_info): Likewise.
5957 * tui-wingeneral.c (tui_refresh_all): Likewise.
5958
68c14faa
PA
59592015-02-27 Pedro Alves <palves@redhat.com>
5960
5961 * target.h: Include "infrun.h".
5962
749bab01
PA
59632015-02-27 Pedro Alves <palves@redhat.com>
5964
5965 * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP.
5966
3c14e5a3
PA
59672015-02-27 Pedro Alves <palves@redhat.com>
5968
5969 * common/agent.h (IPA_SYM_EXPORTED_NAME): New.
5970 (IPA_SYM): Use it.
5971 * common/common-defs.h (EXTERN_C_PUSH, EXTERN_C_POP): New macros.
5972
56000a98
PA
59732015-02-27 Pedro Alves <palves@redhat.com>
5974
5975 * cli-out.c (_rl_erase_entire_line): Move declaration out of
5976 cli_mld_erase_entire_line, and make it extern "C".
5977 * common/common-defs.h (EXTERN_C): New.
5978 * completer.c (_rl_completion_prefix_display_length)
5979 (_rl_print_completions_horizontally, QSFUNC): Move declarations
5980 out of gdb_display_match_list_1.
5981 (_rl_qsort_string_compare): Move declaration out of
5982 gdb_display_match_list_1, and make it extern "C".
5983 * defs.h (re_comp): Use EXTERN_C.
5984 * maint.c (_mcleanup): Move declaration out of mcleanup_wrapper,
5985 and make it extern "C".
5986 (monstartup): Move declaration out of maintenance_set_profile_cmd,
5987 and make it extern "C".
5988 (main): Move declaration out of maintenance_set_profile_cmd.
5989 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string): Use
5990 EXTERN_C.
5991
bcabf420
PA
59922015-02-27 Pedro Alves <palves@redhat.com>
5993
5994 * python/python.c (GdbMethods): Rename to ...
5995 (python_GdbMethods): ... this and make extern.
5996 (GdbModuleDef): Rename to ...
5997 (python_GdbModuleDef): ... this and make extern.
5998
928dbe07
PA
59992015-02-27 Pedro Alves <palves@redhat.com>
6000
6001 * record-btrace.c (set_record_btrace_cmdlist)
6002 (show_record_btrace_cmdlist): Remove redefinitions.
6003
52059ffd
TT
60042015-02-27 Tom Tromey <tromey@redhat.com>
6005 Pedro Alves <palves@redhat.com>
6006
6007 * dwarf2-frame.c (enum cfa_how_kind, struct
6008 dwarf2_frame_state_reg_info): Move out of struct
6009 dwarf2_frame_state.
6010 * dwarf2read.c (struct tu_stats): Move out of struct
6011 dwarf2_per_objfile.
6012 (struct file_entry): Move out of struct line_header.
6013 (struct nextfield, struct nextfnfield, struct fnfieldlist, struct
6014 typedef_field_list): Move out of struct field_info.
6015 * gdbtypes.h (enum dynamic_prop_kind, union dynamic_prop_data):
6016 Move out of struct dynamic_prop.
6017 (union type_owner, union field_location, struct field, struct
6018 range_bounds, union type_specific): Move out of struct main_type.
6019 (struct fn_fieldlist, struct fn_field, struct typedef_field)
6020 (VOFFSET_STATIC): Move out of struct cplus_struct_type.
6021 (struct call_site_target, union call_site_parameter_u, struct
6022 call_site_parameter): Move out of struct call_site.
6023 * m32c-tdep.c (enum m32c_prologue_kind): Move out of struct
6024 m32c_prologue.
6025 (enum srcdest_kind): Move out of struct srcdest.
6026 * main.c (enum cmdarg_kind): Move out of struct cmdarg.
6027 * prologue-value.h (enum prologue_value_kind): Move out of struct
6028 prologue_value.
6029 * s390-linux-tdep.c (enum s390_abi_kind): Move out of struct
6030 gdbarch_tdep.
6031 * stabsread.c (struct nextfield, struct next_fnfieldlist): Move
6032 out of struct field_info.
6033 * symfile.h (struct other_sections): Move out of struct
6034 section_addr_info.
6035 * symtab.c (struct symbol_cache_slot): Move out struct
6036 block_symbol_cache.
6037 * target-descriptions.c (enum tdesc_type_kind): Move out of
6038 typedef struct tdesc_type.
6039 * tui/tui-data.h (enum tui_line_or_address_kind): Move out of
6040 struct tui_line_or_address.
6041 * value.c (enum internalvar_kind, union internalvar_data): Move
6042 out of struct internalvar.
6043 * xtensa-tdep.h (struct ctype_cache): Move out of struct
6044 gdbarch_tdep.
6045
fe978cb0
PA
60462015-02-27 Tom Tromey <tromey@redhat.com>
6047 Pedro Alves <palves@redhat.com>
6048
6049 Rename symbols whose names are reserved C++ keywords throughout.
6050
3bc3d82a
PA
60512015-02-27 Pedro Alves <palves@redhat.com>
6052
6053 * Makefile.in (COMPILER): New, get it from autoconf.
6054 (COMPILE.pre, CC_LD): Use COMPILER.
6055 (CXX): Get from autoconf instead.
6056 (CXX_FOR_TARGET): Default to g++ instead of gcc.
6057 * acinclude.m4: Include build-with-cxx.m4.
6058 * build-with-cxx.m4: New file.
6059 * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX.
6060 Disable -Werror by default if building in C++ mode.
6061 (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and
6062 -Wno-narrowing in C++ mode. Only enable -Wpointer-sign in C mode.
6063 Run supported-warning-flags tests with the C++ compiler.
6064 Save/restore CXXFLAGS too.
6065 * configure: Regenerate.
6066
07697489
PA
60672015-02-27 Pedro Alves <palves@redhat.com>
6068
6069 * libiberty.m4: New file.
6070 * acinclude.m4: Include libiberty.m4.
6071 * configure.ac: Call libiberty_INIT.
6072 * config.in, configure: Regenerate.
6073
60abeae4
AA
60742015-02-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
6075
6076 * s390-linux-tdep.c (s390_gcc_target_options): Not just handle
6077 31-bit targets, but 64-bit targets as well.
6078 (s390_gnu_triplet_regexp): New function.
6079 (s390_gdbarch_init): Set the gcc_target_options gdbarch method for
6080 64-bit targets as well. Set the gnu_triplet_regexp gdbarch
6081 method.
6082
f44466fb 60832015-02-27 Jon TURNEY <jon.turney@dronecode.org.uk> (tiny patch)
f0666312
JT
6084
6085 * windows-nat.c (CONTEXT_DEBUGGER): Remove.
6086 (CONTEXT_DEBUGGER_DR): Add CONTEXT_SEGMENTS. Incorporate flags
6087 from CONTEXT_DEBUGGER.
6088
0def5aaa
DE
60892015-02-26 Doug Evans <dje@google.com>
6090
6091 * gdbtypes.c (internal_type_vptr_fieldno): Add missing call to
6092 CHECK_TYPEDEF.
6093 (set_type_vptr_fieldno): Ditto.
6094 (internal_type_vptr_basetype, set_type_vptr_basetype): Ditto.
6095 * gnu-v3-abi.c (gnuv3_dynamic_class): Ditto.
6096
77b64a49
PA
60972015-02-26 Pedro Alves <palves@redhat.com>
6098
6099 * auto-load.h (file_is_auto_load_safe): Add ATTRIBUTE_PRINTF.
6100 * complaints.c (vcomplaint): Pass argument FMT directly to
6101 printf-like functions instead of complaint->fmt.
6102 * ctf.c (ctf_save_write_metadata): Add ATTRIBUTE_PRINTF.
6103 * darwin-nat.c (inferior_debug): Add ATTRIBUTE_PRINTF.
6104 * compile/compile-loc2c.c (pushf, unary, binary): Add
6105 ATTRIBUTE_PRINTF.
6106 (do_compile_dwarf_expr_to_c): Pass string literal as format string
6107 to pushf.
6108 (BINARY): Pass string literal as format string to 'binary'.
6109 * compile/compile-object-load.c (link_callbacks_einfo): Add
6110 ATTRIBUTE_PRINTF.
6111 * guile/guile-internal.h (gdbscm_printf): Add ATTRIBUTE_PRINTF.
6112
532f44ed
PA
61132015-02-26 Pedro Alves <palves@redhat.com>
6114
6115 * windows-termcap.c: Rename to ...
6116 * stub-termcap.c: ... this. Adjust header line.
6117 * Makefile.in (SFILES): Refer to stub-termcap.c instead of
6118 windows-termcap.c.
6119 * configure: Regenerate.
6120 * configure.ac: Refer to stub-termcap.o instead of
6121 windows-termcap.o.
6122 * gdb_curses.h: Mention stub-termcap.c instead of
6123 windows-termcap.c.
6124
081a1c2c
JK
61252015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
6126
6127 * compile/compile-c-symbols.c (convert_one_symbol, convert_symbol_bmsym)
6128 (gcc_symbol_address): Call gnu_ifunc_resolve_addr.
6129
2f41223f
AT
61302015-02-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
6131
6132 * gdb/infcmd.c (print_return_value): use type_to_string to print type.
6133
80c57053
JK
61342015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
6135
6136 * elfread.c (elf_read_minimal_symbols): Use bfd_alloc for
6137 bfd_canonicalize_symtab.
6138
cf424aef
JB
61392015-02-25 John Baldwin <jhb@FreeBSD.org>
6140
6141 * amd64fbsd-nat.c: Include sys/user.h.
6142 (_initialize_amd64fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
6143 instead of KERN_PS_STRINGS to locate the signal trampoline.
6144 * i386fbsd-nat.c: Include sys/user.h.
6145 (_initialize_i386fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
6146 instead of KERN_PS_STRINGS to locate the signal trampoline.
6147 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_code): New.
6148 (amd64fbsd_sigtramp_p): New.
6149 (amd64fbsd_sigtramp_start_addr, amd64fbsd_sigtramp_end_addr): No
6150 longer set default values.
6151 (amd64fbsd_init_abi): Set "sigtramp_p" to "amd64fbsd_sigtramp_p".
6152 * i386fbsd-tdep.c (i386fbsd_sigtramp_start)
6153 (i386fbsd_sigtramp_middle, i386fbsd_sigtramp_end)
6154 (i386fbsd_freebsd4_sigtramp_start)
6155 (i386fbsd_freebsd4_sigtramp_middle)
6156 (i386fbsd_freebsd4_sigtramp_end, i386fbsd_osigtramp_start)
6157 (i386fbsd_osigtramp_middle, i386fbsd_osigtramp_end): New.
6158 (i386fbsd_sigtramp_p): New.
6159 (i386fbsd_sigtramp_start_addr, i386fbsd_sigtramp_end_addr): No
6160 longer set default values.
6161 (i386fbsd_init_abi): Set "sigtramp_p" to "i386fbsd_sigtramp_p".
6162
c5cb74ee
JB
61632015-02-25 John Baldwin <jhb@freebsd.org>
6164
6165 * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use
6166 get_frame_register instead of frame_unwind_register_unsigned.
6167
17487d85
JK
61682015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
6169
6170 PR build/18033
6171 * compile/compile-c-support.c (c_compute_program): Change // comment.
6172 * compile/compile-object-load.c (setup_sections): Change // comment.
6173
9357a9e6
JB
61742015-02-26 Joel Brobecker <brobecker@adacore.com>
6175
6176 PR build/18033:
6177 * iq2000-tdep.c (iq2000_frame_cache): Delete C++-style comment.
6178
1f10ba14
PA
61792015-02-23 Pedro Alves <palves@redhat.com>
6180
6181 * remote.c (skip_to_semicolon): New function.
6182 (remote_parse_stop_reply) <T stop reply>: Use it. Don't
6183 special case the stop reasons that look like hex numbers
6184 upfront. Instead handle real register numbers after matching
6185 all the known stop reasons.
6186
96553a0c
DE
61872015-02-21 Doug Evans <dje@google.com>
6188
6189 PR c++/17976, symtab/17821
6190 * cp-namespace.c (cp_search_static_and_baseclasses): New parameter
6191 is_in_anonymous. All callers updated.
6192 (find_symbol_in_baseclass): Ditto.
6193 (cp_lookup_nested_symbol_1): Ditto. Don't search all static blocks
6194 for symbols in an anonymous namespace.
6195 * dwarf2read.c (namespace_name): Don't call dwarf2_name, fetch
6196 DW_AT_name directly.
6197 (dwarf2_name): Convert missing namespace name to
6198 CP_ANONYMOUS_NAMESPACE_STR.
6199
2db9a427
PA
62002015-02-20 Pedro Alves <palves@redhat.com>
6201
6202 * linux-nat.c (linux_handle_extended_wait): Call
6203 thread_db_notice_clone whenever a new clone LWP is detected.
6204 (linux_stop_and_wait_all_lwps, linux_unstop_all_lwps): New
6205 functions.
6206 * linux-nat.h (thread_db_attach_lwp): Delete declaration.
6207 (thread_db_notice_clone, linux_stop_and_wait_all_lwps)
6208 (linux_unstop_all_lwps): Declare.
6209 * linux-thread-db.c (struct thread_get_info_inout): Delete.
6210 (thread_get_info_callback): Delete.
6211 (thread_from_lwp): Use td_thr_get_info and record_thread.
6212 (thread_db_attach_lwp): Delete.
6213 (thread_db_notice_clone): New function.
6214 (try_thread_db_load_1): If /proc is mounted and shows the
6215 process'es task list, walk over all LWPs and call thread_from_lwp
6216 instead of relying on td_ta_thr_iter.
6217 (attach_thread): Don't call check_thread_signals here. Split the
6218 tail part of the function (which adds the thread to the core GDB
6219 thread list) to ...
6220 (record_thread): ... this function. Call check_thread_signals
6221 here.
6222 (thread_db_wait): Don't call thread_db_find_new_threads_1. Always
6223 call thread_from_lwp.
6224 (thread_db_update_thread_list): Rename to ...
6225 (thread_db_update_thread_list_org): ... this.
6226 (thread_db_update_thread_list): New function.
6227 (thread_db_find_thread_from_tid): Delete.
6228 (thread_db_get_ada_task_ptid): Simplify.
6229 * nat/linux-procfs.c: Include <sys/stat.h>.
6230 (linux_proc_task_list_dir_exists): New function.
6231 * nat/linux-procfs.h (linux_proc_task_list_dir_exists): Declare.
6232
3b27ef47
PA
62332015-02-20 Pedro Alves <palves@redhat.com>
6234
6235 * linux-nat.c (lin_lwp_attach_lwp): No longer special case the
6236 main LWP. Handle the case of waitpid returning 0 if we're already
6237 attached to the LWP. Don't set the LWP's last_resume_kind to
6238 resume_stop if we already knew about the LWP.
6239 (linux_nat_filter_event): Add debug logs.
6240
1cc28231
PA
62412015-02-20 Pedro Alves <palves@redhat.com>
6242
6243 * target.h (forward_target_decr_pc_after_break): Delete
6244 declaration.
6245
5c5019c2
PA
62462015-02-20 Pedro Alves <palves@redhat.com>
6247
6248 PR threads/18006
6249 * linux-thread-db.c (thread_get_info_callback): Return early if
6250 the thread's lwp id is -1.
6251
f3978e91
JB
62522015-02-20 Joel Brobecker <brobecker@adacore.com>
6253
6254 GDB 7.9 released.
6255
ffdf88ec
SE
62562015-02-19 Steve Ellcey <sellcey@imgtec.com>
6257
6258 * dtrace-probe.c (dtrace_process_dof_probe): Initialize arg.expr.
6259 (dtrace_get_probes) Change type of variable 'dof'.
6260
c9587f88
AT
62612015-02-19 Antoine Tremblay <antoine.tremblay@ericsson.com>
6262
6263 PR breakpoints/16812
6264 * linux-nat.c (linux_nat_filter_event): Report SIGTRAP,SIGILL,SIGSEGV.
6265 * nat/linux-ptrace.c (linux_wstatus_maybe_breakpoint): Add.
6266 * nat/linux-ptrace.h: Add linux_wstatus_maybe_breakpoint.
6267
53cf2ee0
DT
62682015-02-19 David Taylor <dtaylor@emc.com>
6269
6270 * common/ax.def (setv): Fix consumed entry in setv DEFOP.
6271
acfe0940
PP
62722015-02-18 Patrick Palka <patrick@parcs.ath.cx>
6273
6274 * tui/tui-io.c (tui_handle_resize_during_io): Remove this
6275 function.
6276 (tui_putc): Don't call tui_handle_resize_during_io.
6277 (tui_getc): Likewise.
6278 (tui_mld_getc): Likewise.
6279 * tui/tui-win.c: Include event-loop.h and tui/tui-io.h.
6280 (tui_sigwinch_token): New static variable.
6281 (tui_initialize_win): Adjust documentation. Set
6282 tui_sigwinch_token.
6283 (tui_async_resize_screen): New asynchronous callback.
6284 (tui_sigwinch_handler): Adjust documentation. Asynchronously
6285 invoke tui_async_resize_screen.
6286
f6a88844
JM
62872015-02-18 Jose E. Marchesi <jose.marchesi@oracle.com>
6288
6289 * configure: Regenerated.
6290 * configure.ac: Use GDB_AC_TRANSFORM.
6291 * Makefile.in (aclocal_m4_deps): Added transform.m4.
6292 * acinclude.m4: sinclude transform.m4.
6293 * transform.m4: New file.
6294 (GDB_AC_TRANSFORM): New macro.
6295
b05e3b0d
JM
62962015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
6297
6298 * NEWS: Announce the support for DTrace SDT probes.
6299
c3e3045e
JM
63002015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
6301
6302 * amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h".
6303 (amd64_dtrace_parse_probe_argument): New function.
6304 (amd64_dtrace_probe_is_enabled): Likewise.
6305 (amd64_dtrace_enable_probe): Likewise.
6306 (amd64_dtrace_disable_probe): Likewise.
6307 (amd64_linux_init_abi): Register the
6308 `gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe',
6309 `gdbarch_dtrace_disable_probe' and
6310 `gdbarch_dtrace_probe_is_enabled' hooks.
6311 (amd64_dtrace_disabled_probe_sequence_1): New constant.
6312 (amd64_dtrace_disabled_probe_sequence_2): Likewise.
6313 (amd64_dtrace_enable_probe_sequence): Likewise.
6314 (amd64_dtrace_disable_probe_sequence): Likewise.
6315
d4777acb
JM
63162015-01-17 Jose E. Marchesi <jose.marchesi@oracle.com>
6317
6318 * breakpoint.c (BREAK_ARGS_HELP): Help string updated to mention
6319 the -probe-dtrace new vpossible value for PROBE_MODIFIER.
6320 * configure.ac (CONFIG_OBS): dtrace-probe.o added if BFD can
6321 handle ELF files.
6322 * Makefile.in (SFILES): dtrace-probe.c added.
6323 * configure: Regenerate.
6324 * dtrace-probe.c: New file.
6325 (SHT_SUNW_dof): New constant.
6326 (dtrace_probe_type): New enum.
6327 (dtrace_probe_arg): New struct.
6328 (dtrace_probe_arg_s): New typedef.
6329 (struct dtrace_probe_enabler): New struct.
6330 (dtrace_probe_enabler_s): New typedef.
6331 (dtrace_probe): New struct.
6332 (dtrace_probe_is_linespec): New function.
6333 (dtrace_dof_sect_type): New enum.
6334 (dtrace_dof_dofh_ident): Likewise.
6335 (dtrace_dof_encoding): Likewise.
6336 (DTRACE_DOF_ENCODE_LSB): Likewise.
6337 (DTRACE_DOF_ENCODE_MSB): Likewise.
6338 (dtrace_dof_hdr): New struct.
6339 (dtrace_dof_sect): Likewise.
6340 (dtrace_dof_provider): Likewise.
6341 (dtrace_dof_probe): Likewise.
6342 (DOF_UINT): New macro.
6343 (DTRACE_DOF_PTR): Likewise.
6344 (DTRACE_DOF_SECT): Likewise.
6345 (dtrace_process_dof_probe): New function.
6346 (dtrace_process_dof): Likewise.
6347 (dtrace_build_arg_exprs): Likewise.
6348 (dtrace_get_arg): Likewise.
6349 (dtrace_get_probes): Likewise.
6350 (dtrace_get_probe_argument_count): Likewise.
6351 (dtrace_can_evaluate_probe_arguments): Likewise.
6352 (dtrace_evaluate_probe_argument): Likewise.
6353 (dtrace_compile_to_ax): Likewise.
6354 (dtrace_probe_destroy): Likewise.
6355 (dtrace_gen_info_probes_table_header): Likewise.
6356 (dtrace_gen_info_probes_table_values): Likewise.
6357 (dtrace_probe_is_enabled): Likewise.
6358 (dtrace_probe_ops): New variable.
6359 (info_probes_dtrace_command): New function.
6360 (_initialize_dtrace_probe): Likewise.
6361 (dtrace_type_name): Likewise.
6362
8b367e17
JM
63632015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
6364
6365 * gdbarch.sh (dtrace_parse_probe_argument): New.
6366 (dtrace_probe_is_enabled): Likewise.
6367 (dtrace_enable_probe): Likewise.
6368 (dtrace_disable_probe): Likewise.
6369 * gdbarch.c: Regenerate.
6370 * gdbarch.h: Regenerate.
6371
9aca2ff8
JM
63722015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
6373
6374 * stap-probe.c (stap_probe_ops): Add NULLs in the static
6375 stap_probe_ops for `enable_probe' and `disable_probe'.
6376 * probe.c (enable_probes_command): New function.
6377 (disable_probes_command): Likewise.
6378 (_initialize_probe): Define the cli commands `enable probe' and
6379 `disable probe'.
6380 (parse_probe_linespec): New function.
6381 (info_probes_for_ops): Use parse_probe_linespec.
6382 * probe.h (probe_ops): New hooks `enable_probe' and
6383 `disable_probe'.
6384
03e98035
JM
63852015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
6386
6387 * probe.c (compute_probe_arg): Moved from stap-probe.c
6388 (compile_probe_arg): Likewise.
6389 (probe_funcs): Likewise.
6390 * stap-probe.c (compute_probe_arg): Moved to probe.c.
6391 (compile_probe_arg): Likewise.
6392 (probe_funcs): Likewise.
6393
6f9b8491
JM
63942015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
6395
6396 * probe.c (print_ui_out_not_applicables): New function.
6397 (exists_probe_with_pops): Likewise.
6398 (info_probes_for_ops): Do not include column headers for probe
6399 types for which no probe has been actually found on any object.
6400 Also invoke `print_ui_out_not_applicables' in order to match the
6401 column rows with the header when probes of several types are
6402 listed.
6403 Print the "Type" column.
6404 * probe.h (probe_ops): Added a new probe operation `type_name'.
6405 * stap-probe.c (stap_probe_ops): Add `stap_type_name'.
6406 (stap_type_name): New function.
6407
69efdff1
PP
64082015-02-17 Patrick Palka <patrick@parcs.ath.cx>
6409
6410 * tui/tui-io.c (tui_getc): Don't call key_is_command_char.
6411 (key_is_command_char): Delete.
6412
f8e5e23e
PA
64132015-02-17 Pedro Alves <palves@redhat.com>
6414
6415 * tui/tui.c (tui_enable): Resize windows before anything
6416 might show a window.
6417
9f2e0721
MO
64182015-02-17 Max Ostapenko <m.ostapenko@partner.samsung.com>
6419
6420 PR gdb/17984
6421 * aarch64-linux-nat.c: Don't include features/aarch64.c anymore.
6422 (aarch64_linux_read_description): Remove initialize_tdesc_aarch64
6423 call.
6424 * aarch64-tdep.h (tdesc_aarch64): Declare.
6425
171e6b1c
MW
64262015-02-12 Mark Wielaard <mjw@redhat.com>
6427
6428 * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false".
6429
d5ff0482
DE
64302015-02-13 Doug Evans <dje@google.com>
6431
6432 * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter
6433 anonymous_namespace to is_in_anonymous for consistency with the rest
6434 of the file.
6435 (cp_lookup_bare_symbol): Fix typo in comment.
6436 (cp_search_static_and_baseclasses): Ditto.
6437 (search_symbol_list): Use vertical space in comment better.
6438 (reset_directive_searched): Ditto. Fix typo.
6439 (cp_lookup_nested_symbol_1): Clarify contents of NESTED_NAME parameter.
6440
9f04ac5f
YQ
64412015-02-13 Yao Qi <yao.qi@arm.com>
6442
6443 * MAINTAINERS: Update my email address.
6444
013d0319
DE
64452015-02-12 Doug Evans <dje@google.com>
6446
b615dd20 6447 * symtab.c (completion_list_add_name): Fix memory leak.
013d0319 6448
9a7e538e
DE
64492015-02-12 Doug Evans <dje@google.com>
6450
6451 * completer.c (complete_line): Remove incorrect comment.
6452
e1fcd575
JK
64532015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6454
6455 * python/py-framefilter.c (py_print_single_arg, enumerate_locals)
6456 (py_print_frame): Use RETURN_MASK_ERROR.
6457
b99bf4e3
JK
64582015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6459
6460 * python/py-framefilter.c (py_print_frame): Mention RETURN_QUIT in
6461 function comment. Wrap all function that can throw in cleanups.
6462 (gdbpy_apply_frame_filter): Wrap all function that can throw in
6463 cleanups.
6464
800eb1ce
JK
64652015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6466
6467 * python/py-framefilter.c (py_print_frame): Substitute goto error.
6468 Remove the error label.
6469
34019068
JK
64702015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6471
6472 * python/py-framefilter.c (py_print_frame): Put conditional code paths
6473 with goto first, indent the former else codepath left. Put variable
6474 'elided' to a new inner block.
6475
8d4a54e2
JK
64762015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6477
6478 * python/py-framefilter.c (py_print_frame): Whitespacing fixes.
6479
18ad82c1
PA
64802015-02-11 Pedro Alves <palves@redhat.com>
6481
6482 * xcoffread.c (within_function): Delete.
6483
e36122e9
TT
64842015-02-11 Tom Tromey <tromey@redhat.com>
6485 Pedro Alves <palves@redhat.com>
6486
6487 * breakpoint.c (base_breakpoint_ops): Delete.
6488 * dwarf2loc.c (dwarf_expr_ctx_funcs): Make extern.
6489 * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_lazy_psyms): Make extern.
6490 * guile/guile.c (guile_extension_script_ops, guile_extension_ops): Make extern.
6491 * ppcnbsd-tdep.c (ppcnbsd2_sigtramp): Make extern.
6492 * python/py-arch.c (arch_object_type): Make extern.
6493 * python/py-block.c (block_syms_iterator_object_type): Make extern.
6494 * python/py-bpevent.c (breakpoint_event_object_type): Make extern.
6495 * python/py-cmd.c (cmdpy_object_type): Make extern.
6496 * python/py-continueevent.c (continue_event_object_type)
6497 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove 'qual'
6498 parameter. Update all callers.
6499 * python/py-evtregistry.c (eventregistry_object_type): Make extern.
6500 * python/py-exitedevent.c (exited_event_object_type): Make extern.
6501 * python/py-finishbreakpoint.c (finish_breakpoint_object_type): Make extern.
6502 * python/py-function.c (fnpy_object_type): Make extern.
6503 * python/py-inferior.c (inferior_object_type, membuf_object_type): Make extern.
6504 * python/py-infevents.c (call_pre_event_object_type)
6505 (inferior_call_post_event_object_type).
6506 (memory_changed_event_object_type): Make extern.
6507 * python/py-infthread.c (thread_object_type): Make extern.
6508 * python/py-lazy-string.c (lazy_string_object_type): Make extern.
6509 * python/py-linetable.c (linetable_entry_object_type)
6510 (linetable_object_type, ltpy_iterator_object_type): Make extern.
6511 * python/py-newobjfileevent.c (new_objfile_event_object_type)
6512 (clear_objfiles_event_object_type): Make extern.
6513 * python/py-objfile.c (objfile_object_type): Make extern.
6514 * python/py-param.c (parmpy_object_type): Make extern.
6515 * python/py-progspace.c (pspace_object_type): Make extern.
6516 * python/py-signalevent.c (signal_event_object_type): Make extern.
6517 * python/py-symtab.c (symtab_object_type, sal_object_type): Make extern.
6518 * python/py-type.c (type_object_type, field_object_type)
6519 (type_iterator_object_type): Make extern.
6520 * python/python.c (python_extension_script_ops)
6521 (python_extension_ops): Make extern.
6522 * stap-probe.c (stap_probe_ops): Make extern.
6523
0703599a
PA
65242015-02-11 Pedro Alves <pedro@codesourcery.com>
6525
6526 * infrun.c (adjust_pc_after_break): Don't adjust the PC just
6527 because the event thread is not the current thread.
6528
eaaf76ab
DE
65292015-02-11 Doug Evans <xdje42@gmail.com>
6530
6531 * gdbtypes.c (internal_type_self_type): If TYPE_SPECIFIC_FIELD hasn't
6532 been initialized yet, return NULL.
6533
e7d52ed3
DE
65342015-02-11 Doug Evans <dje@google.com>
6535
6536 * symfile.h (new_symfile_objfile): Delete.
6537 * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile.
6538 All callers updated.
6539
fc6b1256
PP
65402015-02-11 Patrick Palka <patrick@parcs.ath.cx>
6541
6542 * tui/tui-io.c (tui_handle_resize_during_io): Call
6543 tui_update_gdb_sizes() after resizing the screen.
6544 * tui/tui.c (tui_enable): Resize the terminal before
6545 calling tui_update_gdb_sizes().
6546
d9080678
PP
65472015-02-11 Patrick Palka <patrick@parcs.ath.cx>
6548
6549 * tui/tui-io.c (tui_getc): Move cursor to the end of the command
6550 line before printing a newline.
6551
9f615e3a
MW
65522015-02-11 Mark Wielaard <mjw@redhat.com>
6553
6554 * utils.c (producer_is_gcc): Return true or false.
6555
d9080678 65562015-02-10 Mark Wielaard <mjw@redhat.com>
b1ffba5a
MW
6557
6558 * utils.h (producer_is_gcc): Change return type to bool. Add major
6559 argument.
6560 * utils.c (producer_is_gcc): Likewise.
6561 (producer_is_gcc_ge_4): Adjust producer_is_gcc call.
6562 * dwarf2read.c (check_producer): Likewise.
6563
b052c4fb
PA
65642015-02-10 Pedro Alves <palves@redhat.com>
6565
6566 * infrun.c (displaced_step_fixup): Switch to the event thread
6567 before calling gdbarch_displaced_step_fixup.
6568
3ac240d4
AT
65692015-02-10 Antoine Tremblay <antoine.tremblay@ericsson.com>
6570
6571 * MAINTAINERS (Write After Approval): Add Antoine Tremblay.
6572
c1cc6152
SM
65732015-02-10 Simon Marchi <simon.marchi@ericsson.com>
6574
6575 * ada-varobj.c (ada_name_of_child): Constify parent.
6576 (ada_path_expr_of_child): Same.
6577 (ada_value_of_child): Same.
6578 (ada_type_of_child): Same.
6579 * c-varobj.c (c_is_path_expr_parent): Same.
6580 (c_describe_child): Same.
6581 (c_name_of_child): Same.
6582 (c_value_of_child): Same.
6583 (c_type_of_child): Same.
6584 (cplus_number_of_children): Same.
6585 (cplus_describe_child): Constify var.
6586 (cplus_name_of_child): Constify parent.
6587 (cplus_value_of_child): Same.
6588 (cplus_type_of_child): Same.
6589 * jv-varobj.c (java_name_of_child): Same.
6590 (java_value_of_child): Same.
6591 (java_type_of_child): Same.
6592 * varobj.c (value_of_child): Same.
6593 (varobj_default_is_path_expr_parent): Constify var, parent and return
6594 value.
6595 (varobj_get_path_expr): Constify var, modify path_expr through
6596 mutable_var.
6597 (install_new_value): Constify parent.
6598 (value_of_child): Constify parent.
6599 * varobj.h (struct varobj): Constify parent.
6600 (struct lang_varobj_ops): Constify name_of_child, value_of_child and
6601 type_of_child.
6602 (varobj_get_path_expr): Constify var.
6603 (varobj_get_path_expr_parent): Constify var and return value.
6604
c1ee9414
LM
66052015-02-10 Luis Machado <lgustavo@codesourcery.com>
6606
6607 * arm-tdep.c (arm_prologue_unwind_stop_reason): New function.
6608 (arm_prologue_this_id): Move PC and SP limit checks to
6609 arm_prologue_unwind_stop_reason.
6610 (arm_prologue_unwind) <stop_reason> : Set to
6611 arm_prologue_unwind_stop_reason.
6612
f7de9aab
MW
66132015-02-09 Mark Wielaard <mjw@redhat.com>
6614
6615 * dwarf2read.c (set_cu_language): Recognize DW_LANG_Fortran03 and
6616 DW_LANG_Fortran08 as language_fortran.
6617
0b24eb2d
SDJ
66182015-02-09 Sergio Durigan Junior <sergiodj@redhat.com>
6619
6620 PR remote/17946
6621 * gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison
6622 of pointer against char.
6623
a2c2acaf
MW
66242015-02-09 Mark Wielaard <mjw@redhat.com>
6625
6626 * c-typeprint.c (cp_type_print_method_args): Handle '_Atomic'.
6627 (c_type_print_modifier): Likewise.
6628 * dwarf2read.c (read_tag_atomic_type): New function.
6629 (read_type_die_1): Handle DW_TAG_atomic_type.
6630 * gdbtypes.c (make_atomic_type): New function.
6631 (recursive_dump_type): Handle TYPE_ATOMIC.
6632 * gdbtypes.h (enum type_flag_values): Renumber.
6633 (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_ATOMIC.
6634 (TYPE_ATOMIC): New macro.
6635 (make_atomic_type): Declare.
6636
31fd9caa
MM
66372015-02-09 Markus Metzger <markus.t.metzger@intel.com>
6638
6639 * btrace.c (ftrace_find_call): Skip gaps.
6640 (ftrace_new_function): Initialize level.
6641 (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return)
6642 (ftrace_new_switch): Update
6643 level computation.
6644 (ftrace_new_gap): New.
6645 (ftrace_update_function): Create new function after gap.
6646 (btrace_compute_ftrace_bts): Create gap on error.
6647 (btrace_stitch_bts): Update parameters. Clear trace if it
6648 becomes empty.
6649 (btrace_stitch_trace): Update parameters. Update callers.
6650 (btrace_clear): Reset the number of gaps.
6651 (btrace_insn_get): Return NULL if the iterator points to a gap.
6652 (btrace_insn_number): Return zero if the iterator points to a gap.
6653 (btrace_insn_end): Allow gaps at the end.
6654 (btrace_insn_next, btrace_insn_prev, btrace_insn_cmp): Handle gaps.
6655 (btrace_find_insn_by_number): Assert that the found iterator does
6656 not point to a gap.
6657 (btrace_call_next, btrace_call_prev): Assert that the last function
6658 is not a gap.
6659 * btrace.h (btrace_bts_error): New.
6660 (btrace_function): Update comment.
6661 (btrace_function) <insn, insn_offset, number>: Update comment.
6662 (btrace_function) <errcode>: New.
6663 (btrace_thread_info) <ngaps>: New.
6664 (btrace_thread_info) <replay>: Update comment.
6665 (btrace_insn_get): Update comment.
6666 * record-btrace.c (btrace_ui_out_decode_error): New.
6667 (record_btrace_info): Print number of gaps.
6668 (btrace_insn_history, btrace_call_history): Call
6669 btrace_ui_out_decode_error for gaps.
6670 (record_btrace_step_thread, record_btrace_start_replaying): Skip gaps.
6671
afb778a2
MM
66722015-02-09 Markus Metzger <markus.t.metzger@intel.com>
6673
6674 * common/btrace-common.h (btrace_cpu_vendor, btrace_cpu): New.
6675 * nat/linux-btrace.c: (btrace_this_cpu): New.
6676 (cpu_supports_bts): Call btrace_this_cpu.
6677 (intel_supports_bts): Add cpu parameter.
6678
7d5c24b3
MM
66792015-02-09 Markus Metzger <markus.t.metzger@intel.com>
6680
6681 * btrace.h (btrace_insn_class): New.
6682 (btrace_insn) <size, iclass>: New.
6683 * btrace.c (ftrace_find_call): Update parameters. Update users.
6684 Use instruction classification.
6685 (ftrace_new_return): Update parameters. Update users.
6686 (ftrace_update_function): Update parameters. Update users. Use
6687 instruction classification.
6688 (ftrace_update_insns): Update parameters. Update users.
6689 (ftrace_classify_insn): New.
6690 (btrace_compute_ftrace_bts): Fill in new btrace_insn fields. Add
6691 TRY_CATCH around call to gdb_insn_length.
6692
76235df1
MM
66932015-02-09 Markus Metzger <markus.t.metzger@intel.com>
6694
6695 * btrace.c (btrace_compute_ftrace_bts, btrace_compute_ftrace):
6696 Update parameters. Update users.
6697
d33501a5
MM
66982015-02-09 Markus Metzger <markus.t.metzger@intel.com>
6699
6700 * btrace.c (parse_xml_btrace_conf_bts): Add size.
6701 (btrace_conf_bts_attributes): New.
6702 (btrace_conf_children): Add attributes.
6703 * common/btrace-common.h (btrace_config_bts): New.
6704 (btrace_config)<bts>: New.
6705 (btrace_config): Update comment.
6706 * nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts):
6707 Use config.
6708 * features/btrace-conf.dtd: Increment version. Add size
6709 attribute to bts element.
6710 * record-btrace.c (set_record_btrace_bts_cmdlist,
6711 show_record_btrace_bts_cmdlist): New.
6712 (record_btrace_adjust_size, record_btrace_print_bts_conf,
6713 record_btrace_print_conf, cmd_set_record_btrace_bts,
6714 cmd_show_record_btrace_bts): New.
6715 (record_btrace_info): Call record_btrace_print_conf.
6716 (_initialize_record_btrace): Add commands.
6717 * remote.c: Add PACKET_Qbtrace_conf_bts_size enum.
6718 (remote_protocol_features): Add Qbtrace-conf:bts:size packet.
6719 (btrace_sync_conf): Synchronize bts size.
6720 (_initialize_remote): Add Qbtrace-conf:bts:size packet.
6721 * NEWS: Announce new commands and new packets.
6722
f4abbc16
MM
67232015-02-09 Markus Metzger <markus.t.metzger@intel.com>
6724
6725 * Makefile.in (XMLFILES): Add btrace-conf.dtd.
6726 * x86-linux-nat.c (x86_linux_enable_btrace): Update parameters.
6727 (x86_linux_btrace_conf): New.
6728 (x86_linux_create_target): Initialize to_btrace_conf.
6729 * nat/linux-btrace.c (linux_enable_btrace): Update parameters.
6730 Check format. Split into this and ...
6731 (linux_enable_bts): ... this.
6732 (linux_btrace_conf): New.
6733 (perf_event_skip_record): Renamed into ...
6734 (perf_event_skip_bts_record): ... this. Updated users.
6735 (linux_disable_btrace): Split into this and ...
6736 (linux_disable_bts): ... this.
6737 (linux_read_btrace): Check format.
6738 * nat/linux-btrace.h (linux_enable_btrace): Update parameters.
6739 (linux_btrace_conf): New.
6740 (btrace_target_info)<ptid>: Moved.
6741 (btrace_target_info)<conf>: New.
6742 (btrace_target_info): Split into this and ...
6743 (btrace_tinfo_bts): ... this. Updated users.
6744 * btrace.c (btrace_enable): Update parameters.
6745 (btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf)
6746 (btrace_conf_children, btrace_conf_attributes)
6747 (btrace_conf_elements): New.
6748 * btrace.h (btrace_enable): Update parameters.
6749 (btrace_conf, parse_xml_btrace_conf): New.
6750 * common/btrace-common.h (btrace_config): New.
6751 * feature/btrace-conf.dtd: New.
6752 * record-btrace.c (record_btrace_conf): New.
6753 (record_btrace_cmdlist): New.
6754 (record_btrace_enable_warn, record_btrace_open): Pass
6755 &record_btrace_conf.
6756 (record_btrace_info): Print recording format.
6757 (cmd_record_btrace_bts_start): New.
6758 (cmd_record_btrace_start): Call cmd_record_btrace_bts_start.
6759 (_initialize_record_btrace): Add "record btrace bts" subcommand.
6760 Add "record bts" alias command.
6761 * remote.c (remote_state)<btrace_config>: New.
6762 (remote_btrace_reset, PACKET_qXfer_btrace_conf): New.
6763 (remote_protocol_features): Add qXfer:btrace-conf:read.
6764 (remote_open_1): Call remote_btrace_reset.
6765 (remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF.
6766 (btrace_target_info)<conf>: New.
6767 (btrace_sync_conf, btrace_read_config): New.
6768 (remote_enable_btrace): Update parameters. Call btrace_sync_conf and
6769 btrace_read_conf.
6770 (remote_btrace_conf): New.
6771 (init_remote_ops): Initialize to_btrace_conf.
6772 (_initialize_remote): Add qXfer:btrace-conf packet.
6773 * target.c (target_enable_btrace): Update parameters.
6774 (target_btrace_conf): New.
6775 * target.h (target_enable_btrace): Update parameters.
6776 (target_btrace_conf): New.
6777 (target_object)<TARGET_OBJECT_BTRACE_CONF>: New.
6778 (target_ops)<to_enable_btrace>: Update parameters and comment.
6779 (target_ops)<to_btrace_conf>: New.
6780 * target-delegates: Regenerate.
6781 * target-debug.h (target_debug_print_const_struct_btrace_config_p)
6782 (target_debug_print_const_struct_btrace_target_info_p): New.
6783 * NEWS: Announce new command and new packet.
6784
aadf7753
MM
67852015-02-09 Markus Metzger <markus.t.metzger@intel.com>
6786
6787 * nat/linux-btrace.h (perf_event_buffer): New.
6788 (btrace_target_info) <buffer, size, data_head>: Replace with ...
6789 <bts>: ... this.
6790 * nat/linux-btrace.c (perf_event_header, perf_event_mmap_size)
6791 (perf_event_buffer_size, perf_event_buffer_begin)
6792 (perf_event_buffer_end, linux_btrace_has_changed): Removed.
6793 Updated users.
6794 (perf_event_new_data): New.
6795
043c3577
MM
67962015-02-09 Markus Metzger <markus.t.metzger@intel.com>
6797
6798 * btrace.c (btrace_enable): Pass BTRACE_FORMAT_BTS.
6799 * record-btrace.c (record_btrace_open): Remove call to
6800 target_supports_btrace.
6801 * remote.c (remote_supports_btrace): Update parameters.
6802 * target.c (target_supports_btrace): Update parameters.
6803 * target.h (to_supports_btrace, target_supports_btrace): Update
6804 parameters.
6805 * target-delegates.c: Regenerate.
6806 * target-debug.h (target_debug_print_enum_btrace_format): New.
6807 * nat/linux-btrace.c
6808 (kernel_supports_btrace): Rename into ...
6809 (kernel_supports_bts): ... this. Update users. Update warning text.
6810 (intel_supports_btrace): Rename into ...
6811 (intel_supports_bts): ... this. Update users.
6812 (cpu_supports_btrace): Rename into ...
6813 (cpu_supports_bts): ... this. Update users.
6814 (linux_supports_btrace): Update parameters. Split into this and ...
6815 (linux_supports_bts): ... this.
6816 * nat/linux-btrace.h (linux_supports_btrace): Update parameters.
6817
734b0e4b
MM
68182015-02-09 Markus Metzger <markus.t.metzger@intel.com>
6819
6820 * Makefile.in (SFILES): Add common/btrace-common.c.
6821 (COMMON_OBS): Add common/btrace-common.o.
6822 (btrace-common.o): Add build rules.
6823 * btrace.c (parse_xml_btrace): Update parameters.
6824 (parse_xml_btrace_block): Set format field.
6825 (btrace_add_pc, btrace_fetch): Use struct btrace_data.
6826 (do_btrace_data_cleanup, make_cleanup_btrace_data): New.
6827 (btrace_compute_ftrace): Split into this and...
6828 (btrace_compute_ftrace_bts): ...this.
6829 (btrace_stitch_trace): Split into this and...
6830 (btrace_stitch_bts): ...this.
6831 * btrace.h (parse_xml_btrace): Update parameters.
6832 (make_cleanup_btrace_data): New.
6833 * common/btrace-common.c: New.
6834 * common/btrace-common.h: Include common-defs.h.
6835 (btrace_block_s): Update comment.
6836 (btrace_format): New.
6837 (btrace_format_string): New.
6838 (btrace_data_bts): New.
6839 (btrace_data): New.
6840 (btrace_data_init, btrace_data_fini, btrace_data_empty): New.
6841 * remote.c (remote_read_btrace): Update parameters.
6842 * target.c (target_read_btrace): Update parameters.
6843 * target.h (target_read_btrace): Update parameters.
6844 (target_ops)<to_read_btrace>: Update parameters.
6845 * x86-linux-nat.c (x86_linux_read_btrace): Update parameters.
6846 * target-delegates.c: Regenerate.
6847 * target-debug (target_debug_print_struct_btrace_data_p): New.
6848 * nat/linux-btrace.c (linux_read_btrace): Split into this and...
6849 (linux_read_bts): ...this.
6850 * nat/linux-btrace.h (linux_read_btrace): Update parameters.
6851
bd2e0e9e
DE
68522015-02-06 Doug Evans <dje@google.com>
6853
6854 * remote-m32r-sdi.c: Include symfile.h.
6855
f176c4b5
DE
68562015-02-06 Doug Evans <dje@google.com>
6857
6858 * symtab.h (clear_symtab_users, deduce_language_from_filename): Move
6859 * symfile.h (clear_symtab_users, deduce_language_from_filename): ...
6860 to here.
6861
d6c146e9
PA
68622015-02-06 Pedro Alves <palves@redhat.com>
6863
6864 * linux-thread-db.c (find_new_threads_callback): Add debug output.
6865
b9d61307
SM
68662015-02-06 Simon Marchi <simon.marchi@ericsson.com>
6867
6868 PR gdb/15678
6869 * breakpoint.c (map_breakpoint_numbers): Check for empty args string.
6870 (enable_count_command): Check args for NULL value.
6871
e9fbd043
DE
68722015-02-05 Doug Evans <xdje42@gmail.com>
6873
6874 * guile/scm-frame.c: Fix spelling errors in a comment.
6875
881d5d5d
JK
68762015-02-04 Jan Kratochvil <jan.kratochvil@redhat.com>
6877
6878 * python/python-internal.h (Py_hash_t): Define it for Python <3.2.
6879 * python/py-value.c (valpy_fetch_lazy): Use it. Remove cast to the
6880 return type.
6881
20ba1ce6
PA
68822015-02-04 Pedro Alves <palves@redhat.com>
6883
6884 * linux-nat.c (handle_extended_wait): Don't resume LWPs here.
6885 (wait_lwp): Don't call wait_lwp if linux_handle_extended_wait
6886 returns true.
6887 (resume_stopped_resumed_lwps): Don't check whether the thread is
6888 marked as executing.
6889 (linux_nat_wait_1): Use resume_stopped_resumed_lwps.
6890
f962539a
AA
68912015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
6892
6893 * regset.h (struct regset): Add flags field.
6894 (REGSET_VARIABLE_SIZE): New value for a regset's flags field.
6895 * corelow.c (get_core_register_section): Add warning if the size
6896 exceeds the requested size and the regset does not have the
6897 REGSET_VARIABLE_SIZE flag set.
6898 * alphanbsd-tdep.c (alphanbsd_gregset): Add REGSET_VARIABLE_SIZE
6899 flag.
6900 * armbsd-tdep.c (armbsd_gregset): Likewise.
6901 * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise.
6902 * hppaobsd-tdep.c (hppaobsd_gregset): Likewise.
6903 * m68kbsd-tdep.c (m68kbsd_gregset): Likewise.
6904 * mipsnbsd-tdep.c (mipsnbsd_gregset): Likewise.
6905
dde9acd6
AA
69062015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
6907
6908 * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections):
6909 For ".reg-xstate", explicitly specify the requested section size
6910 via X86_XSTATE_SIZE instead of just 0 on input and
6911 X86_XSTATE_MAX_SIZE on output.
6912 * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections):
6913 Likewise.
6914
1528345d
AA
69152015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
6916
6917 PR corefiles/17808:
6918 * gdbarch.sh (iterate_over_regset_sections_cb): Document this
6919 function type, particularly its SIZE parameter.
6920 * gdbarch.h: Regenerate.
6921 * amd64-tdep.c (amd64_supply_fpregset): In gdb_assert, compare
6922 actual against required size using ">=" instead of "==".
6923 (amd64_collect_fpregset): Likewise.
6924 * i386-tdep.c (i386_supply_gregset): Likewise.
6925 (i386_collect_gregset): Likewise.
6926 (i386_supply_fpregset): Likewise.
6927 (i386_collect_fpregset): Likewise.
6928 * mips-linux-tdep.c (mips_supply_gregset_wrapper): Likewise.
6929 (mips_fill_gregset_wrapper): Likewise.
6930 (mips_supply_fpregset_wrapper): Likewise.
6931 (mips_fill_fpregset_wrapper): Likewise.
6932 (mips64_supply_gregset_wrapper): Likewise.
6933 (mips64_fill_gregset_wrapper): Likewise.
6934 (mips64_supply_fpregset_wrapper): Likewise.
6935 (mips64_fill_fpregset_wrapper): Likewise.
6936 * mn10300-linux-tdep.c (am33_supply_gregset_method): Likewise.
6937 (am33_supply_fpregset_method): Likewise.
6938 (am33_collect_gregset_method): Likewise.
6939 (am33_collect_fpregset_method): Likewise.
6940
518be979
DE
69412015-02-04 Doug Evans <dje@google.com>
6942 Pedro Alves <palves@redhat.com>
6943 Eli Zaretskii <eliz@gnu.org>
6944
6945 PR tui/17810
6946 * tui/tui-command.c (tui_refresh_cmd_win): New function.
6947 * tui/tui-command.c (tui_refresh_cmd_win): Declare.
6948 * tui/tui-file.c: #include tui/tui-command.h.
6949 (tui_file_fputs): Refresh command window if stream is not gdb_stdout.
6950 (tui_file_flush): Refresh command window if stream is gdb_stdout.
6951 * tui/tui-io.c (tui_puts): Remove calls to wrefresh, fflush.
6952
80bd5fab
PA
69532015-02-04 Pedro Alves <palves@redhat.com>
6954
6955 Fix build breakage.
6956 * event-loop.c (gdb_do_one_event): Add default switch case.
6957
a7606d80
JK
69582015-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
6959
6960 Filter out inferior gcc option -fpreprocessed.
6961 * compile/compile.c (filter_args): New function.
6962 (get_args): Use it.
6963
70b66289
PA
69642015-02-03 Pedro Alves <palves@redhat.com>
6965
6966 * event-loop.c: Don't declare nor define a queue type for
6967 gdb_event_p.
6968 (event_queue): Delete.
6969 (create_event, create_file_event, gdb_event_xfree)
6970 (initialize_event_loop, process_event): Delete.
6971 (gdb_do_one_event): Return as soon as one event is handled.
6972 (handle_file_event): Change prototype. Used the passed in
6973 file_handler pointer and ready_mask instead of looping over all
6974 file handlers.
6975 (gdb_wait_for_event): Update the poll/select timeouts before
6976 blocking. Run event handlers directly instead of queueing events.
6977 Return as soon as one event is handled.
6978 (struct async_event_handler_data): Delete.
6979 (invoke_async_event_handler): Delete.
6980 (check_async_event_handlers): Change return type to int. Run
6981 event handlers directly instead of queueing events. Return as
6982 soon as one event is handled.
6983 (handle_timer_event): Delete.
6984 (update_wait_timeout): New function, factored out from
6985 poll_timers.
6986 (poll_timers): Reimplement.
6987 * event-loop.h (initialize_event_loop): Delete declaration.
6988 * top.c (gdb_init): Don't call initialize_event_loop.
6989
b7d2e916
PA
69902015-02-03 Pedro Alves <palves@redhat.com>
6991
6992 * event-loop.c (clear_async_event_handler): New function.
6993 * event-loop.h (clear_async_event_handler): New declaration.
6994 * record-btrace.c (record_btrace_async): New function.
6995 (init_record_btrace_ops): Install record_btrace_async.
6996 * record-full.c (record_full_async): New function.
6997 (record_full_resume): Don't mark the async event source here.
6998 (init_record_full_ops): Install record_full_async.
6999 (record_full_core_resume): Don't mark the async event source here.
7000 (init_record_full_core_ops): Install record_full_async.
7001 * remote.c (remote_async): Mark and clear the async stop reply
7002 queue event-loop token as appropriate.
7003
d9d41e78
PA
70042015-02-03 Pedro Alves <palves@redhat.com>
7005
7006 * linux-nat.c (linux_child_follow_fork, linux_nat_wait_1): Use
7007 target_is_async_p instead of target_can_async.
7008 (linux_nat_wait): Use target_is_async_p instead of
7009 target_can_async. Don't enable async here.
7010 * remote.c (interrupt_query, remote_wait, putpkt_binary): Use
7011 target_is_async_p instead of target_can_async.
7012
aa3de267
SM
70132015-02-02 Simon Marchi <simon.marchi@ericsson.com>
7014
7015 * varobj.h (lang_varobj_ops): Mention which return values need
7016 to be freed.
7017
2c811c0f
JB
70182015-02-02 Joel Brobecker <brobecker@adacore.com>
7019
7020 * dwarf2loc.c (dwarf2_evaluate_property): Add i18n marker.
7021
b1eedac9
JB
70222015-02-02 Joel Brobecker <brobecker@adacore.com>
7023
7024 PR gdb/17856:
7025 * ada-lang.c (ada_lookup_symbol_list_worker): Do not re-cache
7026 results found in the cache.
7027
66c168ae
JB
70282015-02-02 Joel Brobecker <brobecker@adacore.com>
7029
7030 PR gdb/17854:
7031 * ada-lang.c (ada_get_symbol_cache): Set pspace_data->sym_cache
7032 when allocating a new one.
7033
4bdc02b2
TT
70342015-02-01 Tom Tromey <tom@tromey.com>
7035
7036 * MAINTAINERS: Remove myself.
7037
ae6ae975
DE
70382015-01-31 Doug Evans <xdje42@gmail.com>
7039
7040 * dwarf2read.c (process_structure_scope): Update setting of
7041 TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO.
7042 * gdbtypes.c (internal_type_vptr_fieldno): New function.
7043 (set_type_vptr_fieldno): New function.
7044 (internal_type_vptr_basetype): New function.
7045 (set_type_vptr_basetype): New function.
7046 (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO,
7047 TYPE_VPTR_BASETYPE.
7048 (allocate_cplus_struct_type): Initialize vptr_fieldno.
7049 (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ...
7050 (print_cplus_stuff): ... moved here.
7051 (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE.
7052 * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype
7053 moved to ...
7054 (struct cplus_struct_type): ... here. All uses updated.
7055 (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite.
7056 (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare.
7057 (internal_type_vptr_basetype, set_type_vptr_basetype): Declare.
7058 * stabsread.c (read_tilde_fields): Update setting of
7059 TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE.
7060
09e2d7c7
DE
70612015-01-31 Doug Evans <xdje42@gmail.com>
7062
7063 * cp-valprint.c (cp_find_class_member): Rename parameter domain_p
7064 to self_p.
7065 (cp_print_class_member): Rename local domain to self_type.
7066 * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local
7067 domain_type to self_type.
7068 (set_die_type) <need_gnat_info>: Handle
7069 TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD.
7070 * gdb-gdb.py (StructMainTypePrettyPrinter): Handle
7071 TYPE_SPECIFIC_SELF_TYPE.
7072 * gdbtypes.c (internal_type_self_type): New function.
7073 (set_type_self_type): New function.
7074 (smash_to_memberptr_type): Rename parameter domain to self_type.
7075 Update setting of TYPE_SELF_TYPE.
7076 (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE.
7077 (smash_to_method_type): Rename parameter domain to self_type.
7078 Update setting of TYPE_SELF_TYPE.
7079 (check_stub_method): Call smash_to_method_type.
7080 (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE.
7081 (copy_type_recursive): Ditto.
7082 * gdbtypes.h (enum type_specific_kind): New value
7083 TYPE_SPECIFIC_SELF_TYPE.
7084 (struct main_type) <type_specific>: New member self_type.
7085 (struct cplus_struct_type) <fn_field.type>: Update comment.
7086 (TYPE_SELF_TYPE): Rewrite.
7087 (internal_type_self_type, set_type_self_type): Declare.
7088 * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to
7089 self_type.
7090 (gnuv3_method_ptr_to_value): Rename local domain_type to self_type.
7091 * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with
7092 TYPE_TARGET_TYPE.
7093 * stabsread.c (read_member_functions): Mark methods with
7094 TYPE_CODE_METHOD, not TYPE_CODE_FUNC. Update setting of
7095 TYPE_SELF_TYPE.
7096
4bfb94b8
DE
70972015-01-31 Doug Evans <xdje42@gmail.com>
7098
7099 * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE.
7100 All uses updated.
7101
5f4ce105
DE
71022015-01-31 Doug Evans <xdje42@gmail.com>
7103
7104 * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs
7105 or unions. Return zero if union.
7106 (gnuv3_get_vtable): Call check_typedef. Assert only passed structs.
7107 (gnuv3_rtti_type): Pass already-check_typedef'd value to
7108 gnuv3_get_vtable.
7109 (compute_vtable_size): Assert only passed structs.
7110 (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs.
7111
f6b3afbf
DE
71122015-01-31 Doug Evans <xdje42@gmail.com>
7113
7114 * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD
7115 kinds.
7116
cfb069a8
GB
71172015-01-31 Gary Benson <gbenson@redhat.com>
7118 Doug Evans <dje@google.com>
7119
7120 PR cli/9007
7121 PR cli/11920
7122 PR cli/15548
7123 * cli/cli-cmds.c (complete_command): Notify user if max-completions
7124 reached.
7125 * common/common-exceptions.h (enum errors)
7126 <MAX_COMPLETIONS_REACHED_ERROR>: New value.
7127 * completer.h (get_max_completions_reached_message): New declaration.
7128 (max_completions): Likewise.
7129 (completion_tracker_t): New typedef.
7130 (new_completion_tracker): New declaration.
7131 (make_cleanup_free_completion_tracker): Likewise.
7132 (maybe_add_completion_enum): New enum.
7133 (maybe_add_completion): New declaration.
7134 (throw_max_completions_reached_error): Likewise.
7135 * completer.c (max_completions): New global variable.
7136 (new_completion_tracker): New function.
7137 (free_completion_tracker): Likewise.
7138 (make_cleanup_free_completion_tracker): Likewise.
7139 (maybe_add_completions): Likewise.
7140 (throw_max_completions_reached_error): Likewise.
7141 (complete_line): Remove duplicates and limit result to max_completions
7142 entries.
7143 (get_max_completions_reached_message): New function.
7144 (gdb_display_match_list): Handle max_completions.
7145 (_initialize_completer): New declaration and function.
7146 * symtab.c: Include completer.h.
7147 (completion_tracker): New static variable.
7148 (completion_list_add_name): Call maybe_add_completion.
7149 (default_make_symbol_completion_list_break_on_1): Renamed from
7150 default_make_symbol_completion_list_break_on. Maintain
7151 completion_tracker across calls to completion_list_add_name.
7152 (default_make_symbol_completion_list_break_on): New function.
7153 * top.c (init_main): Set rl_completion_display_matches_hook.
7154 * tui/tui-io.c: Include completer.h.
7155 (tui_old_rl_display_matches_hook): New static global.
7156 (tui_rl_display_match_list): Notify user if max-completions reached.
7157 (tui_setup_io): Save/restore rl_completion_display_matches_hook.
7158 * NEWS (New Options): Mention set/show max-completions.
7159
e11c72c7
GB
71602015-01-31 Gary Benson <gbenson@redhat.com>
7161
7162 * symtab.c (struct add_name_data) <code>: New field.
7163 Updated comments.
7164 (add_symtab_completions): New function.
7165 (symtab_expansion_callback): Likewise.
7166 (default_make_symbol_completion_list_break_on): Set datum.code.
7167 Move minimal symbol scan before calling expand_symtabs_matching.
7168 Scan known primary symtabs for externs and statics before calling
7169 expand_symtabs_matching. Pass symtab_expansion_callback as
7170 expansion_notify argument to expand_symtabs_matching. Do not scan
7171 primary symtabs for externs and statics after calling
7172 expand_symtabs_matching.
7173
276d885b
GB
71742015-01-31 Gary Benson <gbenson@redhat.com>
7175
7176 * symfile.h (expand_symtabs_exp_notify_ftype): New typedef.
7177 (struct quick_symbol_functions) <expand_symtabs_matching>:
7178 New argument expansion_notify. All uses updated.
7179 (expand_symtabs_matching): New argument expansion_notify.
7180 All uses updated.
7181 * symfile-debug.c (debug_qf_expand_symtabs_matching):
7182 Also print expansion notify.
7183 * symtab.c (expand_symtabs_matching_via_partial): Call
7184 expansion_notify whenever a partial symbol table is expanded.
7185 * dwarf2read.c (dw2_expand_symtabs_matching): Call
7186 expansion_notify whenever a symbol table is instantiated.
7187
82083d6d
DE
71882015-01-31 Doug Evans <xdje42@gmail.com>
7189
7190 * cli-out.c: #include completer.h, readline/readline.h.
7191 (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions.
7192 (cli_mld_flush, cld_mld_erase_entire_line): Ditto.
7193 (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto.
7194 * cli-out.h (cli_display_match_list): Declare.
7195 * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros.
7196 (ELLIPSIS_LEN): Ditto.
7197 (gdb_get_y_or_n, gdb_display_match_list_pager): New functions.
7198 (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto.
7199 (gdb_fnprint, gdb_print_filename): Ditto.
7200 (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto.
7201 (gdb_display_match_list): Ditto.
7202 * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs.
7203 (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto.
7204 (mld_beep_ftype, mld_read_key_ftype): Ditto.
7205 (match_list_displayer): New struct.
7206 (gdb_display_match_list): Declare.
7207 * top.c (init_main): Set rl_completion_display_matches_hook.
7208 * tui/tui-io.c: #include completer.h.
7209 (printable_part, PUTX, print_filename, get_y_or_n): Delete.
7210 (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions.
7211 (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto.
7212 (tui_mld_getc, tui_mld_read_key): Ditto.
7213 (tui_rl_display_match_list): Rewrite.
7214 (tui_handle_resize_during_io): New arg for_completion. All callers
7215 updated.
7216
f57d2163
DE
72172015-01-31 Doug Evans <xdje42@gmail.com>
7218
7219 Add symbol lookup cache.
7220 * NEWS: Document new options and commands.
7221 * symtab.c (symbol_cache_key): New static global.
7222 (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros.
7223 (SYMBOL_LOOKUP_FAILED): New macro.
7224 (symbol_cache_slot_state): New enum.
7225 (block_symbol_cache): New struct.
7226 (symbol_cache): New struct.
7227 (new_symbol_cache_size, symbol_cache_size): New static globals.
7228 (hash_symbol_entry, eq_symbol_entry): New functions.
7229 (symbol_cache_byte_size, resize_symbol_cache): New functions.
7230 (make_symbol_cache, free_symbol_cache): New functions.
7231 (get_symbol_cache, symbol_cache_cleanup): New function.
7232 (set_symbol_cache_size, set_symbol_cache_size_handler): New functions.
7233 (symbol_cache_lookup, symbol_cache_clear_slot): New function.
7234 (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions.
7235 (symbol_cache_flush, symbol_cache_dump): New functions.
7236 (maintenance_print_symbol_cache): New function.
7237 (maintenance_flush_symbol_cache): New function.
7238 (symbol_cache_stats): New function.
7239 (maintenance_print_symbol_cache_statistics): New function.
7240 (symtab_new_objfile_observer): New function.
7241 (symtab_free_objfile_observer): New function.
7242 (lookup_static_symbol, lookup_global_symbol): Use symbol cache.
7243 (_initialize_symtab): Init symbol_cache_key. New parameter
7244 maint symbol-cache-size. New maint commands print symbol-cache,
7245 print symbol-cache-statistics, flush-symbol-cache.
7246 Install new_objfile, free_objfile observers.
7247
e700d1b2
JB
72482015-01-31 Joel Brobecker <brobecker@adacore.com>
7249
7250 PR symtab/17855
7251 * symfile.c (clear_symtab_users): Move call to breakpoint_re_set
7252 to end.
7253
9f050062
DE
72542015-01-31 Doug Evans <xdje42@gmail.com>
7255
7256 * NEWS: Mention inlined scripts in .debug_gdb_scripts section.
7257 * auto-load.c: #include ctype.h.
7258 (struct auto_load_pspace_info): Replace member loaded_scripts with
7259 new members loaded_script_files, loaded_script_texts.
7260 (auto_load_pspace_data_cleanup): Update.
7261 (init_loaded_scripts_info): Update.
7262 (get_auto_load_pspace_data_for_loading): Update.
7263 (maybe_add_script_file): Renamed from maybe_add_script. All callers
7264 updated.
7265 (maybe_add_script_text): New function.
7266 (clear_section_scripts): Update.
7267 (source_script_file, execute_script_contents): New functions.
7268 (source_section_scripts): Add support for
7269 SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT.
7270 (print_scripts): New function.
7271 (auto_load_info_scripts): Also print inlined scripts.
7272 (maybe_print_unsupported_script_warning): Renamed from
7273 unsupported_script_warning_print. All callers updated.
7274 (maybe_print_script_not_found_warning): Renamed from
7275 script_not_found_warning_print. All callers updated.
7276 * extension-priv.h (struct extension_language_script_ops): New member
7277 objfile_script_executor.
7278 * extension.c (ext_lang_objfile_script_executor): New function.
7279 * extension.h (objfile_script_executor_func): New typedef.
7280 (ext_lang_objfile_script_executor): Declare.
7281 * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare.
7282 * guile/guile.c (guile_extension_script_ops): Update.
7283 * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function.
7284 * python/python.c (python_extension_script_ops): Update.
7285 (gdbpy_execute_objfile_script): New function.
7286
312809f8
EZ
72872015-01-31 Eli Zaretskii <eliz@gnu.org>
7288
7289 * tui/tui-io.c (tui_expand_tabs): New function.
7290 (tui_puts, tui_redisplay_readline): Expand TABs into the
7291 appropriate number of spaces.
7292 * tui/tui-regs.c: Include tui-io.h.
7293 (tui_register_format): Call tui_expand_tabs to expand TABs into
7294 the appropriate number of spaces.
7295 * tui/tui-io.h: Add prototype for tui_expand_tabs.
7296
b6577aab
DE
72972015-01-30 Doug Evans <dje@google.com>
7298
7299 * NEWS: "info source" command now display producer string if present.
7300 * source.c (source_info): Print producer string if present.
7301
6da58d3e
SM
73022015-01-30 Simon Marchi <simon.marchi@ericsson.com>
7303
7304 * varobj.c (varobj_delete): Fix comment.
7305
837ce252
SM
73062015-01-30 Simon Marchi <simon.marchi@ericsson.com>
7307
7308 * varobj.c (create_child): Modify comment.
7309
b09e2c59
SM
73102015-01-30 Simon Marchi <simon.marchi@ericsson.com>
7311
7312 * ada-varobj.c (ada_number_of_children): Constify struct varobj *
7313 parameter.
7314 (ada_name_of_variable): Same.
7315 (ada_path_expr_of_child): Same.
7316 (ada_value_of_variable): Same.
7317 (ada_value_is_changeable_p): Same.
7318 (ada_value_has_mutated): Same.
7319 * c-varobj.c (varobj_is_anonymous_child): Same.
7320 (c_is_path_expr_parent): Same.
7321 (c_number_of_children): Same.
7322 (c_name_of_variable): Same.
7323 (c_path_expr_of_child): Same.
7324 (get_type): Same.
7325 (c_value_of_variable): Same.
7326 (cplus_number_of_children): Same.
7327 (cplus_name_of_variable): Same.
7328 (cplus_path_expr_of_child): Same.
7329 (cplus_value_of_variable): Same.
7330 * jv-varobj.c (java_number_of_children): Same.
7331 (java_name_of_variable): Same.
7332 (java_path_expr_of_child): Same.
7333 (java_value_of_variable): Same.
7334 * varobj.c (number_of_children): Same.
7335 (name_of_variable): Same.
7336 (is_root_p): Same.
7337 (varobj_ensure_python_env): Same.
7338 (varobj_get_objname): Same.
7339 (varobj_get_expression): Same.
7340 (varobj_get_display_format): Same.
7341 (varobj_get_display_hint): Same.
7342 (varobj_has_more): Same.
7343 (varobj_get_thread_id): Same.
7344 (varobj_get_frozen): Same.
7345 (dynamic_varobj_has_child_method): Same.
7346 (varobj_get_gdb_type): Same.
7347 (is_path_expr_parent): Same.
7348 (varobj_default_is_path_expr_parent): Same.
7349 (varobj_get_language): Same.
7350 (varobj_get_attributes): Same.
7351 (varobj_is_dynamic_p): Same.
7352 (varobj_get_child_range): Same.
7353 (varobj_value_has_mutated): Same.
7354 (varobj_get_value_type): Same.
7355 (number_of_children): Same.
7356 (name_of_variable): Same.
7357 (check_scope): Same.
7358 (varobj_editable_p): Same.
7359 (varobj_value_is_changeable_p): Same.
7360 (varobj_floating_p): Same.
7361 (varobj_default_value_is_changeable_p): Same.
7362
2568868e
SM
73632015-01-30 Simon Marchi <simon.marchi@ericsson.com>
7364
7365 * varobj.c (varobj_get_path_expr): Set var->path_expr.
7366 * c-varobj.c (c_path_expr_of_child): Set local var instead of
7367 child->path_expr.
7368 (cplus_path_expr_of_child): Same.
7369
ca83fa81
SM
73702015-01-30 Simon Marchi <simon.marchi@ericsson.com>
7371
7372 * mi-cmd-var.c (print_varobj): Free varobj_get_expression
7373 result.
7374 (mi_cmd_var_info_expression): Same.
7375 * varobj.c (varobj_get_expression): Mention in the comment that
7376 the result must by freed by the caller.
7377
afa269ae
SM
73782015-01-30 Simon Marchi <simon.marchi@ericsson.com>
7379
7380 * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of
7381 varobj_get_type.
7382 (varobj_update_one): Same.
7383 * varobj.c (update_type_if_necessary): Free curr_type_str and
7384 new_type_str.
7385 (varobj_get_type): Specify in comment that the result needs to be
7386 freed by the caller.
7387
cd366ee8
DE
73882015-01-29 Doug Evans <dje@google.com>
7389
7390 PR symtab/17890
7391 * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4.
7392
38360086
MW
73932015-01-25 Mark Wielaard <mjw@redhat.com>
7394
7395 * dwarf2read.c (checkproducer): Call producer_is_gcc.
7396 * utils.c (producer_is_gcc_ge_4): Likewise.
7397 (producer_is_gcc): New function.
7398 * utils.h (producer_is_gcc): New declaration.
7399
df25ebbd
JB
74002015-01-29 Joel Brobecker <brobecker@adacore.com>
7401
7402 * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum
7403 kind.
7404 * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr"
7405 parameter by "addr_stack" parameter.
7406 (resolve_dynamic_range): Replace "addr" parameter by
7407 "stack_addr" parameter. Update function documentation.
7408 Update code accordingly.
7409 (resolve_dynamic_array, resolve_dynamic_union)
7410 (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise.
7411 (resolve_dynamic_type): Update code, following the changes made
7412 to resolve_dynamic_type_internal's interface.
7413 * dwarf2loc.h (struct property_addr_info): New.
7414 (dwarf2_evaluate_property): Replace "address" parameter
7415 by "addr_stack" parameter. Adjust function documentation.
7416 (struct dwarf2_offset_baton): New.
7417 (struct dwarf2_property_baton): Update documentation of
7418 field "referenced_type" to be more general. New field
7419 "offset_info" in union data field.
7420 * dwarf2loc.c (dwarf2_evaluate_property): Replace "address"
7421 parameter by "addr_stack" parameter. Adjust code accordingly.
7422 Add support for PROP_ADDR_OFFSET properties.
7423 * dwarf2read.c (attr_to_dynamic_prop): Add support for
7424 DW_AT_data_member_location attributes as well. Use case
7425 statements instead of if/else condition.
7426
4a0ca9ec
JB
74272015-01-29 Joel Brobecker <brobecker@adacore.com>
7428
7429 * ada-varobj.c (ada_varobj_get_array_number_of_children):
7430 Return zero if PARENT_VALUE is NULL and parent_type's
7431 range type is dynamic.
7432
ddb87a81
JB
74332015-01-29 Joel Brobecker <brobecker@adacore.com>
7434
7435 * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return
7436 nonzero if the type's subtype is dynamic.
7437 (resolve_dynamic_range): Also resolve the range's subtype.
7438
3d7ad9b4 74392015-01-29 Alexander Klimov <alserkli@inbox.ru> (tiny patch)
7a270e0c 7440
3d7ad9b4 7441 Pushed by Joel Brobecker <brobecker@adacore.com>.
7a270e0c
AK
7442 * symfile.c (unmap_overlay_command): Initialize sec to NULL.
7443
3a8b707a
DE
74442015-01-27 Doug Evans <dje@google.com>
7445
7446 * NEWS: Mention gdb.Objfile.username.
7447 * python/py-objfile.c (objfpy_get_username): New function.
7448 (objfile_getset): Add "username".
7449
d35b90fb
MW
74502015-01-24 Mark Wielaard <mjw@redhat.com>
7451
7452 * stack.c (return_command): Markup warning message with _.
7453
734ae125
DE
74542015-01-24 Doug Evans <xdje42@gmail.com>
7455
7456 * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
7457
527f3840
JK
74582015-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
7459
7460 Fix 100x slowdown regression on DWZ files.
7461 * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash.
7462 (struct line_header): Add offset and offset_in_dwz.
7463 (dwarf_decode_lines): Add parameter decode_mapping to the declaration.
7464 (free_line_header_voidp): New declaration.
7465 (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New
7466 functions.
7467 (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller.
7468 (handle_DW_AT_stmt_list): Use line_header_hash.
7469 (free_line_header_voidp): New function.
7470 (dwarf_decode_line_header): Initialize offset and offset_in_dwz.
7471 (dwarf_decode_lines): New parameter decode_mapping, use it.
7472 (dwarf2_free_objfile): Free line_header_hash.
7473
f7e5394d
SM
74742015-01-23 Simon Marchi <simon.marchi@ericsson.com>
7475
7476 PR gdb/17416
7477 * valops.c (value_rtti_indirect_type): Catch exception thrown by
7478 value_ind.
7479
743649fd
MW
74802015-01-15 Mark Wielaard <mjw@redhat.com>
7481
7482 * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from
7483 DW_AT_noreturn.
7484 * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make
7485 calling_convention an 8 bit bit field.
7486 (TYPE_NO_RETURN): New macro.
7487 * infcmd.c (finish_command): Query if function does not return
7488 normally.
7489 * stack.c (return_command): Likewise.
7490
198297aa
PA
74912015-01-23 Pedro Alves <palves@redhat.com>
7492
7493 * linux-nat.c (linux_is_async_p): New macro.
7494 (linux_nat_is_async_p):
7495 (linux_nat_terminal_inferior): Check whether the target can async
7496 instead of whether it is already async.
7497 (linux_nat_terminal_ours): Don't check whether the target is
7498 async.
7499 (linux_async_pipe): Use linux_is_async_p.
7500
253828f1
JK
75012015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
7502
7503 * NEWS (Changes since GDB 7.9): Add 'thread apply all' option
7504 '-ascending'.
7505 * thread.c (tp_array_compar_ascending, tp_array_compar): New.
7506 (thread_apply_all_command): Parse CMD for tp_array_compar_ascending.
7507 Sort tp_array using tp_array_compar.
7508 (_initialize_thread): Extend thread_apply_all_command help.
7509
f0e8c4c5
JK
75102015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
7511
7512 * corelow.c (core_open): Call also thread_command.
7513 * gdbthread.h (thread_command): New prototype moved from ...
7514 * thread.c (thread_command): ... here.
7515 (thread_command): Make it global.
7516
03b79603
PA
75172015-01-22 Pedro Alves <palves@redhat.com>
7518
7519 * configure.ac [*mingw32*]: Check $curses_found instead of
7520 $prefer_curses.
7521 * configure: Regenerate.
7522 * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and
7523 HAVE_NCURSES_NCURSES_H checks.
7524
6b8a872f
EZ
75252015-01-22 Eli Zaretskii <eliz@gnu.org>
7526
bbbbffbb 7527 * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm'
6b8a872f
EZ
7528 fails with the 1st arg NULL, try again with "unknown". Don't test
7529 the "cup" capability: it isn't supported by the Windows port of
7530 ncurses, but the Windows console driver is still capable of
7531 supporting TUI.
7532
4b62a76e
JK
75332015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
7534
7535 * compile/compile.c (_initialize_compile): Use -fPIE for compile_args.
7536
82a864f9
EZ
75372015-01-22 Eli Zaretskii <eliz@gnu.org>
7538
7539 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
7540 (ALLDEPFILES): Remove irix5-nat.c. These two are part of the
7541 reason that "make TAGS" is broken.
7542
b35018fd
CG
75432015-01-22 Chen Gang <gang.chen.5i5j@gmail.com>
7544
7545 * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues
7546 and check additional store instructions.
7547
ffbc4646
WW
75482015-01-21 Wei-cheng Wang <cole945@gmail.com>
7549
7550 * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang".
7551
ddeca1df
WW
75522015-01-21 Wei-cheng Wang <cole945@gmail.com>
7553
7554 * ppc-linux-tdep.c (ppc_skip_trampoline_code,
7555 ppc_canonicalize_syscall, ppc_linux_syscall_record,
7556 ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments.
7557 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
7558 * rs6000-tdep.c (rs6000_epilogue_frame_cache,
7559 rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register,
7560 rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4,
7561 ppc_process_record_op19, ppc_process_record_op31,
7562 ppc_process_record_op59, ppc_process_record_op60,
7563 ppc_process_record_op63): Likewise.
7564
049bb5de
JB
75652015-01-20 Joel Brobecker <brobecker@adacore.com>
7566
7567 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string)
7568 (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of
7569 strerror.
7570
42b87c63 75712015-01-20 Wei-cheng Wang <cole945@gmail.com>
810c1026
WW
7572
7573 * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19,
7574 ppc_process_record_op31, ppc_process_record_op59,
7575 ppc_process_record_op60, ppc_process_record_op63,
7576 ppc_process_record): Fix -Wformat warning.
7577 * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60):
7578 Remove unused variables.
7579
569340fc
CG
75802015-01-20 Chen Gang <gang.chen.5i5j@gmail.com>
7581
7582 * MAINTAINERS (Write After Approval): Add "Chen Gang".
7583
63413d85
EZ
75842015-01-19 Eli Zaretskii <eliz@gnu.org>
7585
7586 * configure.ac [*mingw32*]: Only add windows-termcap.o to
7587 CONFIG_OBS if not building with a curses library.
7588 * configure: Regenerate.
7589
7590 * windows-termcap.c: Include defs.h. Make the whole body empty if
7591 either one of HAVE_CURSES_H or HAVE_NCURSES_H or
7592 HAVE_NCURSES_NCURSES_H is defined.
7593
16d8013c
JB
75942015-01-19 Joel Brobecker <brobecker@adacore.com>
7595
7596 * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator
7597 from end of line to start of next line.
7598
cf90fd9a
WW
75992015-01-17 Wei-cheng Wang <cole945@gmail.com>
7600
7601 * ppc-linux-tdep.c (ppc_skip_trampoline_code):
7602 Scan PLT stub backward for reverse debugging.
7603 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
7604
b4cdae6f
WW
76052015-01-17 Wei-cheng Wang <cole945@gmail.com>
7606 Ulrich Weigand <uweigand@de.ibm.com>
7607
7608 * configure.tgt (powerpc*-*-linux): Add linux-record.o to
7609 gdb_target_obs.
7610 (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall
7611 record.
7612 (ppc_canonicalize_syscall, ppc_linux_syscall_record,
7613 ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions.
7614 (ppc_linux_init_abi): Set process_record, process_record_signal.
7615 * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and
7616 ppc_linux_record_tdep to gdbarch_tdep.
7617 (ppc_process_record): New declaration.
7618 * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4,
7619 ppc_process_record_op19, ppc_process_record_op31,
7620 ppc_process_record_op59, ppc_process_record_op60,
7621 ppc_process_record_op63, ppc_process_record): New functions.
7622
2608dbf8
WW
76232015-01-17 Wei-cheng Wang <cole945@gmail.com>
7624
7625 * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to
7626 rs6000_in_function_epilogue_frame_p and add an argument
7627 for frame_info.
7628 (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id,
7629 rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer):
7630 New functions.
7631 (rs6000_epilogue_frame_unwind): New.
7632 (rs6000_gdbarch_init): Append epilogue unwinder.
7633
4c347be6
SDJ
76342015-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
7635
7636 * nat/linux-personality.c: Replace "#ifndef
7637 HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if
7638 !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5
7639 systems.
7640
9f2850ba
EZ
76412015-01-16 Eli Zaretskii <eliz@gnu.org>
7642
6cdb25f4
EZ
7643 * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New
7644 functions.
7645 (_initialize_tui_win) <border-kind, border-mode>:
7646 <active-border-mode>: Use tui_set_var_cmd as the "set" function.
c54da50d
EZ
7647 (tui_set_tab_width_command): Fix the commentary.
7648
6cdb25f4
EZ
7649 * tui/tui-win.h: Add prototype for tui_rehighlight_all.
7650
bf555842
EZ
7651 * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command):
7652 Doc fix.
cb86fcc1
EZ
7653 (tui_set_tab_width_command): Delete and recreate the source and
7654 the disassembly windows, to show the effect of the changed tab
7655 size immediately.
bf555842 7656
9f2850ba
EZ
7657 * tui/tui-data.h (LINE_PREFIX): Make shorter
7658 (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for
7659 "Thread NNNNN.XXXX" thread ID notation on Windows.
7660
95761b2d
JK
76612015-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7662
7663 Fix gcc-5 compilation.
7664 * hppa-tdep.c (inst_saves_gr): Fix parentheses typo.
7665
8cc73a39
SDJ
76662015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
7667
7668 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h.
7669 (linux-personality.o): New rule.
7670 * common/common-defs.h: Include <stdint.h>.
7671 * config/aarch64/linux.mh (NATDEPFILES): Include
7672 linux-personality.o.
7673 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
7674 * config/arm/linux.mh (NATDEPFILES): Likewise.
7675 * config/i386/linux64.mh (NATDEPFILES): Likewise.
7676 * config/i386/linux.mh (NATDEPFILES): Likewise.
7677 * config/ia64/linux.mh (NATDEPFILES): Likewise.
7678 * config/m32r/linux.mh (NATDEPFILES): Likewise.
7679 * config/m68k/linux.mh (NATDEPFILES): Likewise.
7680 * config/mips/linux.mh (NATDEPFILES): Likewise.
7681 * config/pa/linux.mh (NATDEPFILES): Likewise.
7682 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
7683 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
7684 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
7685 * config/s390/linux.mh (NATDEPFILES): Likewise.
7686 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
7687 * config/sparc/linux.mh (NATDEPFILES): Likewise.
7688 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
7689 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
7690 * defs.h: Remove #include <stdint.h> (moved to
7691 common/common-defs.h).
7692 * linux-nat.c: Include nat/linux-personality.h. Remove #include
7693 <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to
7694 nat/linux-personality.c).
7695 (linux_nat_create_inferior): Remove code to disable address space
7696 randomization (moved to nat/linux-personality.c). Create cleanup
7697 to disable address space randomization.
7698 * nat/linux-personality.c: New file.
7699 * nat/linux-personality.h: Likewise.
7700
fb23d554
SDJ
77012015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
7702
7703 * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and
7704 common/posix-strerror.c.
7705 (posix-strerror.o): New rule.
7706 (mingw-strerror.o): Likewise.
7707 * common/common-utils.h (safe_strerror): Move prototype to here,
7708 from utils.h.
7709 * common/common.host: New file.
7710 * common/mingw-strerror.c: Likewise.
7711 * common/posix-strerror.c: Likewise.
7712 * configure: Regenerated.
7713 * configure.ac: Source common/common.host. Add variable
7714 common_host_obs to gdb_host_obs.
7715 * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and
7716 gdb/common/posix-strerror.c when warning about the use of
7717 strerror.
7718 * mingw-hdep.c (safe_strerror): Remove definition; move it to
7719 common/mingw-strerror.c.
7720 * posix-hdep.c (safe_strerror): Remove definition; move it to
7721 common/posix-hdep.c.
7722 * utils.h (safe_strerror): Remove prototype; move to
7723 common/common-utils.h.
7724
3af8af43
JB
77252015-01-15 Joel Brobecker <brobecker@adacore.com>
7726
7727 GDB 7.8.2 released.
7728
bafffb51
JB
77292015-01-15 Joel Brobecker <brobecker@adacore.com>
7730
7731 * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel
7732 ___XA type if the array has already been fixed.
7733
cdf43629
YQ
77342015-01-14 Yao Qi <yao@codesourcery.com>
7735
7736 * Makefile.in (ppc-linux.o): New rule.
7737 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o.
7738 * configure.ac: AC_CHECK_FUNCS(getauxval).
7739 * config.in: Re-generated.
7740 * configure: Re-generated.
7741 * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p):
7742 Declare.
7743 * nat/ppc-linux.c: New file.
7744 * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]:
7745 Call ppc64_64bit_inferior_p.
7746
514c5338
YQ
77472015-01-14 Yao Qi <yao@codesourcery.com>
7748
7749 * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to
7750 nat/ppc-linux.h.
7751 (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise.
7752 (PPC_FEATURE_HAS_DFP): Likewise.
7753 (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise.
7754 (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise.
7755 (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise.
7756 Include "nat/ppc-linux.h".
7757 * nat/ppc-linux.h: New file.
7758 * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h.
7759
5589af0e
PA
77602015-01-14 Pedro Alves <palves@redhat.com>
7761
7762 PR gdb/17525
7763 * breakpoint.c: Include "interps.h".
7764 (bpstat_do_actions_1): Also check whether the interpreter is
7765 async.
7766
6c400b59
PA
77672015-01-14 Pedro Alves <palves@redhat.com>
7768
7769 PR cli/17828
7770 * infrun.c (reinstall_readline_callback_handler_cleanup): Don't
7771 reinstall if the interpreter is sync.
7772
e02c96a7
DE
77732015-01-13 Doug Evans <dje@google.com>
7774
7775 * objfiles.c (objfile_filename): New function.
7776 * objfiles.h (objfile_filename): Declare it.
7777 (objfile_name): Add function comment.
7778 * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the
7779 bfd file name (which may be realpath'd), and the original name.
7780
3b2f13ff
JB
77812015-01-13 Joel Brobecker <brobecker@adacore.com>
7782
7783 * NEWS: Create a new section for the next release branch.
7784 Rename the section of the current branch, now that it has
7785 been cut.
7786
b4cfe7f8
JB
77872015-01-13 Joel Brobecker <brobecker@adacore.com>
7788
7789 GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37):
7790 * version.in: Bump version to 7.9.50.DATE-cvs.
7791
92fc2e69
JB
77922015-01-13 Joel Brobecker <brobecker@adacore.com>
7793
7794 * nat/linux-procfs.c (linux_proc_attach_tgid_threads):
7795 Remove trailing new-line in argument of call to warning.
7796
f71f0b0d
JB
77972015-01-13 Joel Brobecker <brobecker@adacore.com>
7798
7799 * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing
7800 new-line in argument of call to "warning".
7801
04dccad0
JB
78022015-01-13 Joel Brobecker <brobecker@adacore.com>
7803
7804 * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found
7805 in static block, then try searching for primitive types.
7806
08b13bdd
PP
78072015-01-12 Patrick Palka <patrick@parcs.ath.cx>
7808
7809 * top.h (gdb_add_history): Declare.
7810 * top.c (command_count): New variable.
7811 (gdb_add_history): New function.
7812 (gdb_safe_append_history): New static function.
7813 (quit_force): Call it.
7814 (command_line_input): Use gdb_add_history instead of
7815 add_history.
7816 * event-top.c (command_line_handler): Likewise.
7817
4ac15b59
JC
78182015-01-12 James Clarke <jrtc27@jrtc27.com> (tiny patch)
7819
7820 PR gdb/17046
7821 * darwin-nat.c: Replace <machine/setjmp.h> #include by
7822 <setjmp.h> #include.
7823
005e54bb
DE
78242015-01-11 Doug Evans <xdje42@gmail.com>
7825
7826 * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.
7827
439250fb
DE
78282015-01-11 Doug Evans <xdje42@gmail.com>
7829
7830 PR gdb/15830
7831 * NEWS: The "maint demangle" command is renamed as "demangle".
7832 * demangle.c: #include cli/cli-utils.h, language.h.
7833 (demangle_command): New function.
7834 (_initialize_demangle): Add new command "demangle".
7835 * maint.c (maintenance_demangle): Stub out.
7836 (_initialize_maint_cmds): Update help text for "maint demangle",
7837 and mark as deprecated.
7838
ebf3aa72
MK
78392015-01-11 Mark Kettenis <kettenis@gnu.org>
7840
7841 * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that
7842 inferior_thread is a function.
7843
6bf045cd
PP
78442015-01-09 Patrick Palka <patrick@parcs.ath.cx>
7845
7846 * Makefile.in (.y.c): Don't munge yacc's #line
7847 directives.
7848
588dcc3e
PP
78492015-01-09 Patrick Palka <patrick@parcs.ath.cx>
7850
7851 * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper
7852 to prompt for input.
7853 * tui/tui-hooks.c (tui_query_hook): Remove.
7854 (tui_install_hooks): Don't set deprecated_query_hook.
7855 * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in
7856 height calculation. Always update the command window's cur_line.
7857
9c02b525
PA
78582015-01-09 Pedro Alves <palves@redhat.com>
7859
7860 * breakpoint.c (hardware_breakpoint_inserted_here_p): New
7861 function.
7862 * breakpoint.h (hardware_breakpoint_inserted_here_p): New
7863 declaration.
7864 * linux-nat.c (linux_nat_status_is_event): Move higher up in file.
7865 (linux_resume_one_lwp): Store the thread's PC. Adjust to clear
7866 stop_reason.
7867 (check_stopped_by_watchpoint): New function.
7868 (save_sigtrap): Reimplement.
7869 (linux_nat_stopped_by_watchpoint): Adjust.
7870 (linux_nat_lp_status_is_event): Delete.
7871 (stop_wait_callback): Only call save_sigtrap after storing the
7872 pending status.
7873 (status_callback): If the thread had been stopped for a breakpoint
7874 that has since been removed, discard the event and resume the LWP.
7875 (count_events_callback, select_event_lwp_callback): Use
7876 lwp_status_pending_p instead of linux_nat_lp_status_is_event.
7877 (cancel_breakpoint): Rename to ...
7878 (check_stopped_by_breakpoint): ... this. Record whether the LWP
7879 stopped for a software breakpoint or hardware breakpoint.
7880 (select_event_lwp): Only give preference to the stepping LWP in
7881 all-stop mode. Adjust comments.
7882 (stop_and_resume_callback): Remove references to new_pending_p.
7883 (linux_nat_filter_event): Likewise. Leave exit events of the
7884 leader thread pending here. Handle signal short circuiting here.
7885 Only call save_sigtrap after storing the pending waitstatus.
7886 (linux_nat_wait_1): Remove 'retry' label. Remove references to
7887 new_pending. Don't handle leaving events the caller is not
7888 interested in pending here, nor handle signal short-circuiting
7889 here. Also give equal priority to all LWPs that have had events
7890 in non-stop mode. If reporting a software breakpoint event,
7891 unadjust the LWP's PC.
7892 * linux-nat.h (enum lwp_stop_reason): New.
7893 (struct lwp_info) <stop_pc>: New field.
7894 (struct lwp_info) <stopped_by_watchpoint>: Delete field.
7895 (struct lwp_info) <stop_reason>: New field.
7896 * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
7897
8af756ef
PA
78982015-01-09 Pedro Alves <palves@redhat.com>
7899
7900 * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>:
7901 Set the LWP's 'resumed' flag.
7902
8a99810d
PA
79032015-01-09 Pedro Alves <palves@redhat.com>
7904
7905 * linux-nat.c (linux_resume_one_lwp): New function.
7906 (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp.
7907 (linux_nat_resume): Use lwp_status_pending_p and
7908 linux_resume_one_lwp.
7909 (linux_handle_syscall_trap): Use linux_resume_one_lwp.
7910 (linux_handle_extended_wait): Use linux_resume_one_lwp.
7911 (status_callback, running_callback): Use lwp_status_pending_p.
7912 (lwp_status_pending_p): New function.
7913 (stop_and_resume_callback): Use lwp_status_pending_p.
7914 (linux_nat_filter_event): Use linux_resume_one_lwp.
7915 (linux_nat_wait_1): Always use status_callback to look for an LWP
7916 with a pending status. Use linux_resume_one_lwp.
7917 (resume_stopped_resumed_lwps): Use lwp_status_pending_p and
7918 linux_resume_one_lwp.
7919
f7ce857f
PA
79202015-01-09 Pedro Alves <palves@redhat.com>
7921
7922 * breakpoint.c (bp_location_inserted_here_p): New function,
7923 factored out from ...
7924 (breakpoint_inserted_here_p): ... here. Use
7925 ALL_BP_LOCATIONS_AT_ADDR.
7926 (software_breakpoint_inserted_here_p): Use
7927 bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR.
7928
c1a747c1
PA
79292014-01-09 Pedro Alves <palves@redhat.com>
7930
7931 Skip enabling event reporting if the kernel supports
7932 PTRACE_EVENT_CLONE.
7933 * linux-thread-db.c: Include "nat/linux-ptrace.h".
7934 (thread_db_use_events): New function.
7935 (try_thread_db_load_1): Check thread_db_use_events before enabling
7936 event reporting.
7937 (update_thread_state): New function.
7938 (attach_thread): Use it. Check thread_db_use_events before
7939 enabling event reporting.
7940 (thread_db_detach): Check thread_db_use_events before disabling
7941 event reporting.
7942 (find_new_threads_callback): Check thread_db_use_events before
7943 enabling event reporting. Update the thread's state if not using
7944 libthread_db events.
7945
a33e3959
PA
79462015-01-09 Pedro Alves <palves@redhat.com>
7947
7948 * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're
7949 about to wait for is > 0.
7950 * linux-thread-db.c (find_new_threads_callback): Ignore thread if
7951 the kernel thread ID is -1.
7952
8784d563
PA
79532015-01-09 Pedro Alves <palves@redhat.com>
7954
7955 * linux-nat.c (attach_proc_task_lwp_callback): New function.
7956 (linux_nat_attach): Use linux_proc_attach_tgid_threads.
7957 (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's
7958 ptrace option flags.
7959 * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New
7960 field.
7961 * nat/linux-procfs.c: Include <dirent.h>.
7962 (linux_proc_get_int): New parameter "warn". Handle it.
7963 (linux_proc_get_tgid): Adjust.
7964 (linux_proc_get_tracerpid): Rename to ...
7965 (linux_proc_get_tracerpid_nowarn): ... this.
7966 (linux_proc_pid_get_state): New function, factored out from
7967 (linux_proc_pid_has_state): ... this. Add new parameter "warn"
7968 and handle it.
7969 (linux_proc_pid_is_gone): New function.
7970 (linux_proc_pid_is_stopped): Adjust.
7971 (linux_proc_pid_is_zombie_maybe_warn)
7972 (linux_proc_pid_is_zombie_nowarn): New functions.
7973 (linux_proc_pid_is_zombie): Use
7974 linux_proc_pid_is_zombie_maybe_warn.
7975 (linux_proc_attach_tgid_threads): New function.
7976 * nat/linux-procfs.h (linux_proc_get_tgid): Update comment.
7977 (linux_proc_get_tracerpid): Rename to ...
7978 (linux_proc_get_tracerpid_nowarn): ... this, and update comment.
7979 (linux_proc_pid_is_gone): New declaration.
7980 (linux_proc_pid_is_zombie): Update comment.
7981 (linux_proc_pid_is_zombie_nowarn): New declaration.
7982 (linux_proc_attach_lwp_func): New typedef.
7983 (linux_proc_attach_tgid_threads): New declaration.
7984 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to
7985 use nowarn functions.
7986 (linux_ptrace_attach_fail_reason_string): Move here from
7987 gdbserver/linux-low.c and rename.
7988 (ptrace_supports_feature): If the current ptrace options are not
7989 known yet, check them now, instead of asserting.
7990 * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string):
7991 Declare.
7992
883ed13e
PA
79932015-01-09 Pedro Alves <palves@redhat.com>
7994
7995 * linux-thread-db.c (thread_db_find_new_threads_silently)
7996 (try_thread_db_load_1, try_thread_db_load, thread_db_load_search)
7997 (find_new_threads_once): Print debug output on gdb_stdlog.
7998
1710aab8
CG
79992015-01-09 Chen Gang <gang.chen.5i5j@gmail.com>
8000 Pedro Alves <palves@redhat.com>
8001
8002 * compile/compile.c: Include "gdb_wait.h".
8003 (do_rmdir): Check return value, and free 'zap'.
8004
b597c318
YQ
80052015-01-08 Pedro Alves <palves@redhat.com>
8006 Yao Qi <yao@codesourcery.com>
8007
8008 * dwarf2loc.c (indirect_pieced_value): Don't call
8009 gdb_sign_extend. Call extract_signed_integer instead.
8010 * utils.c (gdb_sign_extend): Remove.
8011 * utils.h (gdb_sign_extend): Remove declaration.
8012
025ac414
PM
80132015-01-07 Pierre Muller <muller@sourceware.org>
8014
8015 PR symtab/17811
8016 * stabsread.c (define_symbol): Set language for C++ special symbols.
8017
fa5af12a
PP
80182015-01-07 Patrick Palka <patrick@parcs.ath.cx>
8019
8020 * inflow.c (initial_gdb_ttystate): Tweak comment.
8021
ea42d6f8
JB
80222015-01-07 Joel Brobecker <brobecker@adacore.com>
8023
8024 * inflow.c (set_initial_gdb_ttystate): Add empty line after
8025 comment documenting function.
8026
6a06d660
PP
80272015-01-07 Patrick Palka <patrick@parcs.ath.cx>
8028
8029 * terminal.h (set_initial_gdb_ttystate): Declare.
8030 * inflow.c (initial_gdb_ttystate): New static variable.
8031 (set_initial_gdb_ttystate): New setter.
8032 (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate
8033 instead of our current terminal state.
8034 * top.c (gdb_init): Call set_initial_gdb_ttystate.
8035
e810d75b
JB
80362015-01-07 Joel Brobecker <brobecker@adacore.com>
8037
8038 * guile/scm-type.c (tyscm_array_1): Add comment.
8039 * python/py-type.c (typy_array_1): Add comment.
8040
fce10a84
JB
80412015-01-06 Joel Brobecker <brobecker@adacore.com>
8042
8043 * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range
8044 error if N2 is equal to N1 - 1.
8045
8503d6e1
JB
80462015-01-06 Joel Brobecker <brobecker@adacore.com>
8047
8048 * python/py-type.c (typy_array_1): Do not raise negative-length
8049 exception if N2 is equal to N1 - 1.
8050
4d29c0a8
DE
80512015-01-03 Doug Evans <xdje42@gmail.com>
8052
8053 * c-exp.y: Whitespace cleanup.
8054 (classify_inner_name): Remove extra ;.
8055
eaa6a9a4
MR
80562015-01-02 Maciej W. Rozycki <macro@codesourcery.com>
8057
8058 * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack
8059 offset signed.
8060
02fe9972
DE
80612015-01-02 Doug Evans <dje@google.com>
8062
8063 * dwarf2read.c (setup_type_unit_groups): Remove outdated comment.
8064
e2ada9cb
DE
80652015-01-02 Doug Evans <dje@google.com>
8066
8067 * symtab.h (struct symbol): Fix typo in comment.
8068
32d0add0
JB
80692015-01-01 Joel Brobecker <brobecker@adacore.com>
8070
8071 Update year range in copyright notice of all files.
8072
76f2b779
JB
80732015-01-01 Joel Brobecker <brobecker@adacore.com>
8074
8075 * top.c (print_gdb_version): Update copyright year to 2015.
8076
077309e2 80772015-01-01 Joel Brobecker <brobecker@adacore.com>
6bf6fd09 8078
077309e2 8079 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014.
6bf6fd09 8080
077309e2 8081For older changes see ChangeLog-2014.
c906108c
SS
8082\f
8083Local Variables:
8084mode: change-log
8085left-margin: 8
8086fill-column: 74
8087version-control: never
57da7796 8088coding: utf-8
c906108c 8089End:
This page took 2.118466 seconds and 4 git commands to generate.