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