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