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