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