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