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