PowerPC VLE insn set additions
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
9be21bb4
SM
12017-04-21 Simon Marchi <simon.marchi@ericsson.com>
2
3 * thread.c (print_thread_info_1): Remove dead code.
4
0d4c07af
JK
52017-04-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6
7 * aarch64-tdep.c (selftests::aarch64_process_record_test): Make it #if
8 GDB_SELF_TEST.
9 * arm-tdep.c (selftests::arm_record_test): Likewise.
10
4daf993d
YQ
112017-04-21 Yao Qi <yao.qi@linaro.org>
12
13 * regcache.c (regcache_restore): Remove argument 2. Replace
14 argument 3 with regcache. Get register status from
15 src->register_status and get register contents from
16 register_buffer (src, regnum).
17 (regcache_cpy): Update.
18
a6c21d4a
PA
192017-04-19 Pedro Alves <palves@redhat.com>
20
21 * gdbthread.h (thread): Add missing closing parenthesis in
22 comment.
23
3a3fd0fd
PA
242017-04-19 Pedro Alves <palves@redhat.com>
25
26 * common/refcounted-object.h: New file.
27 * gdbthread.h: Include "common/refcounted-object.h".
28 (thread_info): Inherit from refcounted_object and add comments.
29 (thread_info::incref, thread_info::decref)
30 (thread_info::m_refcount): Delete.
31 (thread_info::deletable): Use the refcounted_object::refcount()
32 method.
33 * inferior.c (current_inferior_): Add comment.
34 (set_current_inferior): Increment/decrement refcounts.
35 (prune_inferiors, remove_inferior_command): Skip inferiors marked
36 not-deletable instead of comparing with the current inferior.
37 (initialize_inferiors): Increment the initial inferior's refcount.
38 * inferior.h (struct inferior): Forward declare.
39 Include "common/refcounted-object.h".
40 (current_inferior, set_current_inferior): Move declaration to
41 before struct inferior's definition, and fix comment.
42 (inferior): Inherit from refcounted_object. Add comments.
43 * thread.c (switch_to_thread_no_regs): Reference the thread's
44 inferior pointer directly instead of doing a ptid lookup.
45 (switch_to_no_thread): New function.
46 (switch_to_thread(thread_info *)): New function, factored out
47 from ...
48 (switch_to_thread(ptid_t)): ... this.
49 (restore_current_thread): Delete.
50 (current_thread_cleanup): Remove 'inf_id' and 'was_removable'
51 fields, and add 'inf' field.
52 (do_restore_current_thread_cleanup): Check whether old->inf is
53 alive instead of looking up an inferior by ptid. Use
54 switch_to_thread and switch_to_no_thread.
55 (restore_current_thread_cleanup_dtor): Use old->inf directly
56 instead of lookup up an inferior by id. Decref the inferior.
57 Don't restore 'removable'.
58 (make_cleanup_restore_current_thread): Same the inferior pointer
59 in old, instead of the inferior number. Incref the inferior.
60 Don't save/clear 'removable'.
61
9bcb1f16
PA
622017-04-19 Pedro Alves <palves@redhat.com>
63
64 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
65 unittests/scoped_restore-selftests.c.
66 (SUBDIR_UNITTESTS_OBS): Add scoped_restore-selftests.o.
67 * common/scoped_restore.h (scoped_restore_base): Make "class".
68 (scoped_restore_base::release): New public method.
69 (scoped_restore_base::scoped_restore_base): New protected ctor.
70 (scoped_restore_base::m_saved_var): New protected field.
71 (scoped_restore_tmpl::scoped_restore_tmpl(T*)): Initialize the
72 scoped_restore_base base class instead of m_saved_var directly.
73 (scoped_restore_tmpl::scoped_restore_tmpl(T*, T2)): Likewise.
74 (scoped_restore_tmpl::scoped_restore_tmpl(const
75 scoped_restore_tmpl<T>&)): Likewise.
76 (scoped_restore_tmpl::~scoped_restore_tmpl): Use the saved_var
77 method.
78 (scoped_restore_tmpl::saved_var): New method.
79 (scoped_restore_tmpl::m_saved_var): Delete.
80 * inferior.h (inferior::detaching): Now a bool.
81 * infrun.c (prepare_for_detach): Use a scoped_restore instead of a
82 cleanup.
83 * unittests/scoped_restore-selftests.c: New file.
84
26fcd539
PA
852017-04-19 Pedro Alves <palves@redhat.com>
86
87 * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS):
88 Re-sort in alphabetic order.
89
fdd243b0
PA
902017-04-18 Pedro Alves <palves@redhat.com>
91
92 * xml-support.c (obstack_xml_printf): Delete.
93 * xml-support.h (obstack_xml_printf): Delete.
94
4895cde2
PA
952017-04-18 Pedro Alves <palves@redhat.com>
96
97 * xml-support.c (gdb_xml_parser) <use_dtd, dtd_name, parse,
98 vdebug, verror, body_text, start_element, end_element, name,
99 user_data, set_is_xinclude, set_error, expat_parser>: New methods.
100 <name, user_data, expat_parser, scopes, error, last_line, dtd_name,
101 is_xinclude>: Make private and add m_ prefix.
102 (gdb_xml_parser::body_text): New method, based on ...
103 (gdb_xml_body_text): ... this. Adjust.
104 (gdb_xml_parser::vdebug): New method, based on ...
105 (gdb_xml_debug): ... this. Adjust.
106 (gdb_xml_parser::verror): New method, based on ...
107 (gdb_xml_error): ... this. Adjust.
108 (gdb_xml_parser::start_element): New method, based on ...
109 (gdb_xml_start_element): ... this. Adjust.
110 (gdb_xml_start_element_wrapper): Defer to
111 gdb_xml_parser::start_element and gdb_xml_parser::set_error.
112 (gdb_xml_parser::end_element): New method, based on ...
113 (gdb_xml_end_element_wrapper): ... this. Adjust.
114 (gdb_xml_parser::~gdb_xml_parser): Adjust.
115 (gdb_xml_parser::gdb_xml_parser): Adjust to field renames.
116 (gdb_xml_parser::use_dtd): New method, based on ...
117 (gdb_xml_use_dtd): ... this. Adjust.
118 (gdb_xml_parser::parse): New method, based on ...
119 (gdb_xml_parse): ... this. Adjust.
120 (gdb_xml_parse_quick): Adjust to call the parser's parse method.
121 (xinclude_start_include): Adjust to call the parser's name method.
122 (xml_xinclude_default, xml_xinclude_start_doctype)
123 (xml_xinclude_end_doctype): Adjust to call the parser's user_data
124 method.
125 (xml_process_xincludes): Adjust to call parser methods.
126 * xml-support.h (gdb_xml_use_dtd, gdb_xml_parse): Delete
127 declarations.
128
bd8a901f
PA
1292017-04-18 Pedro Alves <palves@redhat.com>
130
131 * tracefile-tfile.c (tfile_write_tdesc): Adjust to use
132 gdb::optional<std::string>.
133 * xml-support.c: Include <string>.
134 (scope_level::scope_level(scope_level &&))
135 (scope_level::~scope_level): Delete.
136 (scope_level::body): Now a std::string.
137 (gdb_xml_body_text, gdb_xml_end_element): Adjust.
138 (xinclude_parsing_data::xinclude_parsing_data): Add 'output'
139 parameter.
140 (xinclude_parsing_data::~xinclude_parsing_data): Delete.
141 (xinclude_parsing_data::output): Now a std::string reference.
142 (xinclude_start_include): Adjust.
143 (xml_xinclude_default): Adjust.
144 (xml_process_xincludes): Add 'output' parameter, and return bool.
145 * xml-support.h (xml_process_xincludes): Add 'output' parameter,
146 and return bool.
147 * xml-tdesc.c: Include <unordered_map> and <string>.
148 (tdesc_xml_cache): Delete.
149 (tdesc_xml_cache_s): Delete.
150 (xml_cache): Now an std::unordered_map.
151 (tdesc_parse_xml): Adjust to use std::string and unordered_map.
152 (target_fetch_description_xml): Change return type to
153 gdb::optional<std::string>, and adjust.
154 * xml-tdesc.h: Include "common/gdb_optional.h" and <string>.
155 (target_fetch_description_xml): Change return type to
156 gdb::optional<std::string>.
157
d35d1958
PA
1582017-04-18 Pedro Alves <palves@redhat.com>
159
160 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
161 unittests/optional-selftests.c.
162 (SUBDIR_UNITTESTS_OBS): Add optional-selftests.o.
163 * unittests/optional-selftests.c: New file.
164 * unittests/optional/assignment/1.cc: New file.
165 * unittests/optional/assignment/2.cc: New file.
166 * unittests/optional/assignment/3.cc: New file.
167 * unittests/optional/assignment/4.cc: New file.
168 * unittests/optional/assignment/5.cc: New file.
169 * unittests/optional/assignment/6.cc: New file.
170 * unittests/optional/assignment/7.cc: New file.
171 * unittests/optional/cons/copy.cc: New file.
172 * unittests/optional/cons/default.cc: New file.
173 * unittests/optional/cons/move.cc: New file.
174 * unittests/optional/cons/value.cc: New file.
175 * unittests/optional/in_place.cc: New file.
176 * unittests/optional/observers/1.cc: New file.
177 * unittests/optional/observers/2.cc: New file.
178
22796e97
PA
1792017-04-18 Pedro Alves <palves@redhat.com>
180
181 * common/gdb_optional.h: Include common/traits.h.
182 (in_place_t): New type.
183 (in_place): New constexpr variable.
184 (optional::optional): Remove member initialization of
185 m_instantiated.
186 (optional::optional(in_place_t...)): New constructor.
187 (optional::~optional): Use reset.
188 (optional::optional(const optional&)): New.
189 (optional::optional(const optional&&)): New.
190 (optional::optional(T &)): New.
191 (optional::optional(T &&)): New.
192 (operator::operator=(const optional &)): New.
193 (operator::operator=(optional &&)): New.
194 (operator::operator= (const T &))
195 (operator::operator= (T &&))
196 (operator::emplace (Args &&... args)): Return a T&. Use reset.
197 (operator::reset): New.
198 (operator::m_instantiated):: Add in-class initializer.
199 * common/traits.h: Include <type_traits>.
200 (struct And): New types.
201
a7fc9b61
PA
2022017-04-18 Pedro Alves <palves@redhat.com>
203
204 * xml-support.c: Include <vector>.
205 (scope_level::scope_level(const gdb_xml_element *))
206 (scope_level::scope_level(scope_level&&)): New.
207 (scope_level::~scope_level): New.
208 (scope_level_s): Delete.
209 (gdb_xml_parser::scopes): Now a std::vector.
210 (gdb_xml_body_text, gdb_xml_start_element, gdb_xml_end_element):
211 Use std::vector.
212 (gdb_xml_parser::~gdb_xml_parser): Remove now unnecessary
213 scope cleanup code.
214 (gdb_xml_parser::gdb_xml_parser): Remove explicit initialization
215 of the scopes member. Use std::vector::emplace_back.
216
010151c9
PA
2172017-04-18 Pedro Alves <palves@redhat.com>
218
219 * xml-support.c (gdb_xml_parser): Add ctor/dtor. Make is_xinclude
220 a bool.
221 (gdb_xml_end_element): Change type of first parameter.
222 (gdb_xml_cleanup): Rename to ...
223 (gdb_xml_parser::~gdb_xml_parser): ... this.
224 (gdb_xml_create_parser_and_cleanup): Delete with ...
225 (gdb_xml_parser::gdb_xml_parser): ... creation parts factored out
226 to this new ctor.
227 (gdb_xml_parse_quick): Create a local gdb_xml_parser instead of
228 using gdb_xml_create_parser_and_cleanup.
229 (xinclude_parsing_data): Add ctor/dtor.
230 (xml_xinclude_cleanup): Delete.
231 (xml_process_xincludes): Create a local xinclude_parsing_data
232 instead of heap-allocating one. Create a local gdb_xml_parser
233 instead of heap-allocating one with
234 gdb_xml_create_parser_and_cleanup.
235
d56060f0
JB
2362017-04-18 John Baldwin <jhb@FreeBSD.org>
237
238 PR threads/20743
239 * fbsd-nat.c (resume_one_thread_cb): Remove.
240 (resume_all_threads_cb): Remove.
241 (fbsd_resume): Use ALL_NON_EXITED_THREADS instead of
242 iterate_over_threads.
243
305d16a9
JB
2442017-04-17 Joel Brobecker <brobecker@adacore.com>
245
246 * NEWS: Create a new section for the next release branch.
247 Rename the section of the current branch, now that it has
248 been cut.
249
8bb57231
JB
2502017-04-17 Joel Brobecker <brobecker@adacore.com>
251
252 GDB 8.0 branch created (725bf5cf125783c2a7ca4ab63d3768e220bab2db):
253 * version.in: Bump version to 8.0.50.DATE-git.
254
096c92dd
SDJ
2552017-04-13 Sergio Durigan Junior <sergiodj@redhat.com>
256
257 PR gdb/21385
258 * windows-nat.c (windows_create_inferior): Declare 'allargs'
259 independently of the host, and fix build breakage on Cygwin.
260
0550c955
PA
2612017-04-13 Pedro Alves <palves@redhat.com>
262
263 * inferior.c (free_inferior): Convert to ...
264 (inferior::~inferior): ... this dtor.
265 (inferior::inferior): New ctor, factored out from ...
266 (add_inferior_silent): ... here. Allocate the inferior with a new
267 expression.
268 (delete_inferior): Call delete instead of free_inferior.
269 * inferior.h (gdb_environ, continuation): Forward declare.
270 (inferior): Now a class. Add in-class initialization to all
271 members. Make boolean fields bool, except 'detaching'.
272 (inferior::inferior): New explicit ctor.
273 (inferior::~inferior): New.
274
e3d60dfc
PA
2752017-04-13 Pedro Alves <palves@redhat.com>
276
277 * inferior.c (init_inferior_list): Delete.
278 * inferior.h (init_inferior_list): Delete.
279
5fd69d0a
PA
2802017-04-13 Pedro Alves <palves@redhat.com>
281
282 PR threads/13217
283 * gdb.threads/threadapply.exp (thr_apply_detach): New procedure.
284 (top level): Call it twice, with different thread sets.
285
c6609450
PA
2862017-04-13 Pedro Alves <palves@redhat.com>
287
288 * thread.c: Include <algorithm>.
289 (thread_array_cleanup): Delete.
290 (scoped_inc_dec_ref): New class.
291 (live_threads_count): New function.
292 (set_thread_refcount): Delete.
293 (tp_array_compar_ascending): Now a bool.
294 (tp_array_compar): Convert to a std::sort comparison function.
295 (thread_apply_all_command): Use std::vector and scoped_inc_dec_ref
296 and live_threads_count.
297
2a00d7ce
PA
2982017-04-13 Pedro Alves <palves@redhat.com>
299
300 * infrun.c (follow_fork_inferior): Also switch the current
301 inferior.
302
441d7c93
PA
3032017-04-13 Pedro Alves <palves@redhat.com>
304
305 * breakpoint.c (watch_command_1): Save watchpoint-frame info
306 before calling create_internal_breakpoint.
307
808480f6
PA
3082017-04-13 Pedro Alves <palves@redhat.com>
309
310 * fork-child.c (execv_argv): New class.
311 (breakup_args): Refactored as ...
312 (execv_argv::init_for_no_shell): .. this method of execv_argv.
313 Copy arguments to storage and replace separators with NULL
314 terminators in place.
315 (escape_bang_in_quoted_argument): Adjust to return bool.
316 (execv_argv::execv_argv): New ctor.
317 (execv_argv::init_for_shell): New method, factored out from
318 fork_inferior. Don't strdup strings into the vector.
319 (fork_inferior): Eliminate "shell" local and use execv_argv. Use
320 Remove free_vector_argv call.
321
ad3d022a
YQ
3222017-04-13 Yao Qi <yao.qi@linaro.org>
323
324 * rx-tdep.c (rx_fpsw_type): Check tdep->rx_fpsw_type instead of
325 tdep->rx_psw_type.
326
e6ddc3bf
YQ
3272017-04-13 Yao Qi <yao.qi@linaro.org>
328
329 * rl78-tdep.c (rl78_gdbarch_init): Use XCNEW instead of XNEW.
330 * rx-tdep.c (rx_gdbarch_init): Likewise.
331
bfb8cf90
PA
3322017-04-13 Pedro Alves <palves@redhat.com>
333
334 * breakpoint.h (struct breakpoint): Reindent.
335
f5336ca5
PA
3362017-04-13 Pedro Alves <palves@redhat.com>
337
338 * breakpoint.c (bp_location): Rename to ...
339 (bp_locations): ... this. All references updated.
340 (bp_location_count): Rename to ...
341 (bp_locations_count): ... this. All references updated.
342 (bp_location_placed_address_before_address_max): Rename to ...
343 (bp_locations_placed_address_before_address_max): ... this. All
344 references updated.
345 (bp_location_shadow_len_after_address_max): Rename to ...
346 (bp_locations_shadow_len_after_address_max): ... this. All
347 references updated.
348 (bp_location_compare_addrs): Rename to ...
349 (bp_locations_compare_addrs): ... this. All references updated.
350 (bp_location_compare):Rename to ...
351 (bp_locations_compare): ... this. All references updated.
352 (bp_location_target_extensions_update): Rename to ...
353 (bp_locations_target_extensions_update): ... this. All references
354 updated.
355
be628ab8
SDJ
3562017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
357
358 * Makefile.in (HFILES_NO_SRCDIR): Add "common/gdb_termios.h".
359 * common/common.m4: Check headers 'termios.h', 'termio.h' and
360 'sgtty.h'.
361 * common/gdb_termios.h: New file, with parts of "terminal.h".
362 * inflow.c: Include "gdb_termios.h".
363 * ser-unix.c: Include "gdb_termios.h".
364 * terminal.h: Move terminal-related defines to
365 "common/gdb_termios.h".
366
8e9e35b1
TT
3672017-04-12 Tom Tromey <tom@tromey.com>
368
369 * probe.c (parse_probes): Update.
370 * location.h (delete_event_location): Don't declare.
371 (event_location_deleter::operator()): Update.
372 * location.c (event_location_deleter::operator()): Rename from
373 delete_event_location.
374 * linespec.h (linespec_result) <location>: Change type to
375 event_location_up.
376 * linespec.c (canonicalize_linespec, event_location_to_sals)
377 (decode_objc): Update.
378 (linespec_result): Don't call delete_event_location.
379 * breakpoint.c (create_breakpoints_sal)
380 (bkpt_probe_create_sals_from_location)
381 (strace_marker_create_sals_from_location): Update.
382
16e802b9
TT
3832017-04-12 Tom Tromey <tom@tromey.com>
384
385 * linespec.h (struct linespec_result): Add constructor and
386 destructor.
387 (init_linespec_result, destroy_linespec_result)
388 (make_cleanup_destroy_linespec_result): Don't declare.
389 * linespec.c (init_linespec_result): Remove.
390 (linespec_result::~linespec_result): Rename from
391 destroy_linespec_result. Update.
392 (cleanup_linespec_result, make_cleanup_destroy_linespec_result):
393 Remove.
394 * breakpoint.c (create_breakpoint, break_range_command)
395 (decode_location_default): Update.
396 * ax-gdb.c (agent_command_1): Update.
397
d28cd78a
TT
3982017-04-12 Tom Tromey <tom@tromey.com>
399
400 * remote.c (remote_download_tracepoint): Update.
401 * python/py-breakpoint.c (bppy_get_location): Update.
402 * guile/scm-breakpoint.c (bpscm_print_breakpoint_smob)
403 (gdbscm_breakpoint_location): Update.
404 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Update.
405 * breakpoint.h (struct breakpoint) <location, location_range_end>:
406 Change type to event_location_up.
407 * breakpoint.c (create_overlay_event_breakpoint)
408 (create_longjmp_master_breakpoint)
409 (create_std_terminate_master_breakpoint)
410 (create_exception_master_breakpoint)
411 (breakpoint_event_location_empty_p, print_breakpoint_location)
412 (print_one_breakpoint_location, create_thread_event_breakpoint)
413 (init_breakpoint_sal, create_breakpoint)
414 (print_recreate_ranged_breakpoint, break_range_command)
415 (init_ada_exception_breakpoint, say_where): Update.
416 (base_breakpoint_dtor): Don't call delete_event_location.
417 (bkpt_print_recreate, tracepoint_print_recreate)
418 (dprintf_print_recreate, update_static_tracepoint)
419 (breakpoint_re_set_default): Update.
420
711799d5
TT
4212017-04-12 Tom Tromey <tom@tromey.com>
422
423 * compile/compile-loc2c.c (compute_stack_depth_worker): Change
424 type of "to_do". Update.
425 (compute_stack_depth): Use std::vector.
426
52d214d3
TT
4272017-04-12 Tom Tromey <tom@tromey.com>
428
429 * printcmd.c (find_instruction_backward): Use std::vector.
430
4c404b8b
TT
4312017-04-12 Tom Tromey <tom@tromey.com>
432
433 * symfile.c (objfilep): Remove typedef.
434 (reread_symbols): Use a std::vector.
435
156d9eab
TT
4362017-04-12 Tom Tromey <tom@tromey.com>
437
438 * mi/mi-main.c (exec_direction_forward): Remove.
439 (exec_reverse_continue, mi_execute_command): Use scoped_restore.
440 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
441 scoped_restore.
442 * guile/guile.c (guile_repl_command, guile_command)
443 (gdbscm_execute_gdb_command): Use scoped_restore.
444 * go-exp.y (go_parse): Use scoped_restore.
445 * d-exp.y (d_parse): Use scoped_restore.
446 * cli/cli-decode.c (cmd_func): Use scoped_restore.
447 * c-exp.y (c_parse): Use scoped_restore.
448
4d89769a
TT
4492017-04-12 Tom Tromey <tom@tromey.com>
450
451 * mi/mi-parse.h (struct mi_parse): Add constructor, destructor.
452 (mi_parse): Update return type.
453 (mi_parse_free): Remove.
454 * mi/mi-parse.c (mi_parse::mi_parse): New constructor.
455 (mi_parse::~mi_parse): Rename from mi_parse_free.
456 (mi_parse_cleanup): Remove.
457 (mi_parse): Return a unique_ptr. Use new.
458 * mi/mi-main.c (mi_execute_command): Update.
459
4b217cc7
TT
4602017-04-12 Tom Tromey <tom@tromey.com>
461
462 * location.c (explicit_location_lex_one): Return a
463 unique_xmalloc_ptr.
464 (string_to_explicit_location): Update. Remove cleanups.
465
59d3651b
TT
4662017-04-12 Tom Tromey <tom@tromey.com>
467
468 * gnu-v3-abi.c (value_and_voffset_p): Remove typedef.
469 (compare_value_and_voffset): Change type. Update.
470 (compute_vtable_size): Change type of "offset_vec".
471 (gnuv3_print_vtable): Use std::vector. Remove cleanups.
472 (gnuv3_get_typeid): Remove extraneous declaration.
473
b24b0d6c
TT
4742017-04-12 Tom Tromey <tom@tromey.com>
475
476 * charset.h (wchar_iterator): Fix comment.
477
80a3b8c5
TT
4782017-04-12 Tom Tromey <tom@tromey.com>
479
480 * charset.c (iconv_wrapper): New class.
481 (cleanup_iconv): Remove.
482 (convert_between_encodings): Use it.
483
c83dd867
TT
4842017-04-12 Tom Tromey <tom@tromey.com>
485
486 * symfile.h (increment_reading_symtab): Update type.
487 * symfile.c (decrement_reading_symtab): Remove.
488 (increment_reading_symtab): Return a scoped_restore_tmpl<int>.
489 * psymtab.c (psymtab_to_symtab): Update.
490 * dwarf2read.c (dw2_instantiate_symtab): Update.
491
0e8621a0
TT
4922017-04-12 Tom Tromey <tom@tromey.com>
493
494 * jit.c (struct jit_reader): Declare separately. Add constructor
495 and destructor. Change type of "handle".
496 (loaded_jit_reader): Define separately.
497 (jit_reader_load): Update. New "new".
498 (jit_reader_unload_command): Use "delete".
499 * gdb-dlfcn.h (struct dlclose_deleter): New.
500 (gdb_dlhandle_up): New typedef.
501 (gdb_dlopen, gdb_dlsym): Update types.
502 (gdb_dlclose): Remove.
503 * gdb-dlfcn.c (gdb_dlopen): Return a gdb_dlhandle_up.
504 (gdb_dlsym): Change type of "handle".
505 (make_cleanup_dlclose): Remove.
506 (dlclose_deleter::operator()): Rename from gdb_dlclose.
507 * compile/compile-c-support.c (load_libcc): Update.
508
67d89901
TT
5092017-04-12 Tom Tromey <tom@tromey.com>
510
511 * symtab.h (find_pcs_for_symtab_line): Change return type.
512 * symtab.c (find_pcs_for_symtab_line): Change return type.
513 * python/py-linetable.c (build_line_table_tuple_from_pcs): Change
514 type of "vec". Update.
515 (ltpy_get_pcs_for_line): Update.
516 * linespec.c (decode_digits_ordinary): Update.
517
93921405
TT
5182017-04-12 Tom Tromey <tom@tromey.com>
519
520 * tracepoint.c (actions_command): Update.
521 * python/python.c (python_command, python_interactive_command):
522 Update.
523 * mi/mi-cmd-break.c (mi_cmd_break_commands): Update.
524 * guile/guile.c (guile_command): Update.
525 * defs.h (read_command_lines, read_command_lines_1): Return
526 command_line_up.
527 (command_lines_deleter): New struct.
528 (command_line_up): New typedef.
529 * compile/compile.c (compile_code_command)
530 (compile_print_command): Update.
531 * cli/cli-script.h (get_command_line, copy_command_lines): Return
532 command_line_up.
533 (make_cleanup_free_command_lines): Remove.
534 * cli/cli-script.c (get_command_line, read_command_lines_1)
535 (copy_command_lines): Return command_line_up.
536 (while_command, if_command, read_command_lines, define_command)
537 (document_command): Update.
538 (do_free_command_lines_cleanup, make_cleanup_free_command_lines):
539 Remove.
540 * breakpoint.h (breakpoint_set_commands): Change type of
541 "commands".
542 * breakpoint.c (breakpoint_set_commands): Change type of
543 "commands". Update.
544 (do_map_commands_command, update_dprintf_command_list)
545 (create_tracepoint_from_upload): Update.
546
ffc2605c
TT
5472017-04-12 Tom Tromey <tom@tromey.com>
548
549 * tracepoint.c (scope_info): Update.
550 * spu-tdep.c (spu_catch_start): Update.
551 * python/python.c (gdbpy_decode_line): Update.
552 * python/py-finishbreakpoint.c (bpfinishpy_init): Update.
553 * python/py-breakpoint.c (bppy_init): Update.
554 * probe.c (parse_probes): Update.
555 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Update.
556 * location.h (event_location_deleter): New struct.
557 (event_location_up): New typedef.
558 (new_linespec_location, new_address_location, new_probe_location)
559 (new_explicit_location, copy_event_location)
560 (string_to_event_location, string_to_event_location_basic)
561 (string_to_explicit_location): Update return type.
562 (make_cleanup_delete_event_location): Remove.
563 * location.c (new_linespec_location, new_address_location)
564 (new_probe_location, new_explicit_location, copy_event_location):
565 Return event_location_up.
566 (delete_event_location_cleanup)
567 (make_cleanup_delete_event_location): Remove.
568 (string_to_explicit_location, string_to_event_location_basic)
569 (string_to_event_location): Return event_location_up.
570 * linespec.c (canonicalize_linespec, event_location_to_sals)
571 (decode_line_with_current_source)
572 (decode_line_with_last_displayed, decode_objc): Update.
573 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
574 * completer.c (location_completer): Update.
575 * cli/cli-cmds.c (edit_command, list_command): Update.
576 * breakpoint.c (create_overlay_event_breakpoint)
577 (create_longjmp_master_breakpoint)
578 (create_std_terminate_master_breakpoint)
579 (create_exception_master_breakpoint)
580 (create_thread_event_breakpoint): Update.
581 (init_breakpoint_sal): Update. Remove some dead code.
582 (create_breakpoint_sal): Change type of "location". Update.
583 (create_breakpoints_sal, create_breakpoint, break_command_1)
584 (dprintf_command, break_range_command, until_break_command)
585 (init_ada_exception_breakpoint)
586 (strace_marker_create_sals_from_location)
587 (update_static_tracepoint, trace_command, ftrace_command)
588 (strace_command, create_tracepoint_from_upload): Update.
589 * break-catch-throw.c (re_set_exception_catchpoint): Update.
590 * ax-gdb.c (agent_command_1): Update.
591
8f10c932
PA
5922017-04-12 Pedro Alves <palves@redhat.com>
593
594 * Makefile.in (ALL_TARGET_OBS): Add i386-go32-tdep.o.
595 * configure.tgt: Handle i[34567]86-*-go32* and
596 i[34567]86-*-msdosdjgpp*.
597 * i386-tdep.c (i386_svr4_reg_to_regnum):
598 Make extern.
599 (i386_go32_init_abi, i386_coff_osabi_sniffer): Moved to
600 i386-go32-tdep.c.
601 (_initialize_i386_tdep): DJGPP bits moved to i386-go32-tdep.c.
602 * i386-go32-tdep.c: New file.
603 * i386-tdep.h (tdesc_i386_mmx, i386_svr4_reg_to_regnum): New
604 declarations.
605
0a31ccfb
SM
6062017-04-12 Simon Marchi <simon.marchi@ericsson.com>
607
608 * aix-thread.c (pd_status2str): Change return type to const char *.
609
e9bb3fbb
PA
6102017-04-12 Pedro Alves <palves@redhat.com>
611
612 * i386-tdep.c (i386_elf_init_abi, i386_go32_init_abi): Remove
613 calls to set_gdbarch_gnu_triplet_regexp.
614
53375380
PA
6152017-04-12 Pedro Alves <palves@redhat.com>
616
617 PR gdb/21323
618 * c-lang.c (cplus_primitive_types) <cplus_primitive_type_wchar_t>:
619 New enum value.
620 (cplus_language_arch_info): Register cplus_primitive_type_wchar_t.
621 * gdbtypes.h (struct builtin_type) <builtin_wchar>: New field.
622 * gdbtypes.c (gdbtypes_post_init): Create the "wchar_t" type.
623 * gdbarch.sh (wchar_bit, wchar_signed): New per-arch values.
624 * gdbarch.h, gdbarch.c: Regenerate.
625 * aarch64-tdep.c (aarch64_gdbarch_init): Override
626 gdbarch_wchar_bit and gdbarch_wchar_signed.
627 * alpha-tdep.c (alpha_gdbarch_init): Likewise.
628 * arm-tdep.c (arm_gdbarch_init): Likewise.
629 * avr-tdep.c (avr_gdbarch_init): Likewise.
630 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
631 * i386-nto-tdep.c (i386nto_init_abi): Likewise.
632 * i386-tdep.c (i386_go32_init_abi): Likewise.
633 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
634 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
635 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
636 * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
637 * sh-tdep.c (sh_gdbarch_init): Likewise.
638 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
639 * sparc64-tdep.c (sparc64_init_abi): Likewise.
640 * windows-tdep.c (windows_init_abi): Likewise.
641 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
642
53e710ac
PA
6432017-04-12 Pedro Alves <palves@redhat.com>
644
645 PR c++/21323
646 * c-lang.c (cplus_primitive_types) <cplus_primitive_type_char16_t,
647 cplus_primitive_type_char32_t>: New enum values.
648 (cplus_language_arch_info): Register cplus_primitive_type_char16_t
649 and cplus_primitive_type_char32_t.
650 * dwarf2read.c (read_base_type) <DW_ATE_UTF>: If bit size is 16 or
651 32, use the archtecture's built-in type for char16_t and char32_t,
652 respectively. Otherwise, fallback to init_integer_type as before,
653 but make the type unsigned, and issue a complaint.
654 * gdbtypes.c (gdbtypes_post_init): Make char16_t and char32_t unsigned.
655
ab0538b8
AH
6562017-04-12 Alan Hayward <alan.hayward@arm.com>
657
5e0e0422 658 * m32r-tdep.c (M32R_ARG_REGISTER_SIZE): Added.
ab0538b8
AH
659 (m32r_push_dummy_call): Use M32R_ARG_REGISTER_SIZE.
660
5430098f
SDJ
6612017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
662
663 * windows-nat.c (windows_create_inferior): Declare 'toexec' as
664 'const char *'.
665
7c5ded6a
SDJ
6662017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
667
668 * common/common-utils.c (free_vector_argv): New function.
669 * common/common-utils.h: Include <vector>.
670 (free_vector_argv): New prototype.
671 * darwin-nat.c (darwin_create_inferior): Rewrite function
672 prototype in order to constify "exec_file" and accept a
673 "std::string" for "allargs".
674 * fork-child.c: Include <vector>.
675 (breakup_args): Rewrite function, using C++.
676 (fork_inferior): Rewrite function header, constify "exec_file_arg"
677 and accept "std::string" for "allargs". Update the code to
678 calculate "argv" based on "allargs". Update calls to "exec_fun"
679 and "execvp".
680 * gnu-nat.c (gnu_create_inferior): Rewrite function prototype in
681 order to constify "exec_file" and accept a "std::string" for
682 "allargs".
683 * go32-nat.c (go32_create_inferior): Likewise.
684 * inf-ptrace.c (inf_ptrace_create_inferior): Likewise.
685 * infcmd.c (run_command_1): Constify "exec_file". Use
686 "std::string" for inferior arguments.
687 * inferior.h (fork_inferior): Update prototype.
688 * linux-nat.c (linux_nat_create_inferior): Rewrite function
689 prototype in order to constify "exec_file" and accept a
690 "std::string" for "allargs".
691 * nto-procfs.c (procfs_create_inferior): Likewise.
692 * procfs.c (procfs_create_inferior): Likewise.
693 * remote-sim.c (gdbsim_create_inferior): Likewise.
694 * remote.c (extended_remote_run): Update code to accept
695 "std::string" as argument.
696 (extended_remote_create_inferior): Rewrite function prototype in
697 order to constify "exec_file" and accept a "std::string" for
698 "allargs".
699 * rs6000-nat.c (super_create_inferior): Likewise.
700 (rs6000_create_inferior): Likewise.
701 * target.h (struct target_ops) <to_create_inferior>: Likewise.
702 * windows-nat.c (windows_create_inferior): Likewise.
703
ae0eee42
PA
7042017-04-11 Pedro Alves <palves@redhat.com>
705
706 * thread.c: Fix whitespace throughout.
707
a6acac06
PR
7082017-04-11 Philipp Rudo <prudo@linux.vnet.ibm.com>
709
710 * linux-nat.c (linux_nat_detach): Remove delete_lwp call.
711
64403bd1
AH
7122017-04-11 Alan Hayward <alan.hayward@arm.com>
713
714 * arm-tdep.c (arm_store_return_value): Use FP_REGISTER_SIZE
715
a5bef50f
SDJ
7162017-04-10 Sergio Durigan Junior <sergiodj@redhat.com>
717
718 PR gdb/21364
719 * osdata.c (info_osdata): Check if 'type' is an empty string
720 instead of NULL.
721
9295a5a9
PA
7222017-04-10 Pedro Alves <palves@redhat.com>
723
724 * thread.c (add_thread_silent, delete_thread_1, find_thread_ptid)
725 (ptid_to_global_thread_id, in_thread_list)
726 (do_captured_list_thread_ids, set_resumed, set_running)
727 (set_executing, set_stop_requested, finish_thread_state)
728 (validate_registers_access, can_access_registers_ptid)
729 (print_thread_info_1, switch_to_thread)
730 (do_restore_current_thread_cleanup)
731 (make_cleanup_restore_current_thread, thread_command)
732 (thread_name_command): Use operator== instead of ptid_equal.
733
996812e3
PA
7342017-04-10 Pedro Alves <palves@redhat.com>
735
736 * thread.c (struct current_thread_cleanup) <next>: Delete field.
737 (current_thread_cleanup_chain): Delete.
738 (restore_current_thread_cleanup_dtor)
739 (make_cleanup_restore_current_thread): Remove references to
740 current_thread_cleanup_chain.
741
845b344f
AH
7422017-04-10 Alan Hayward <alan.hayward@arm.com>
743
744 * msp430-tdep.c (msp430_pseudo_register_read): Never return
745 REG_UNKNOWN.
746
803bdfe4
YQ
7472017-04-10 Yao Qi <yao.qi@linaro.org>
748
749 PR gdb/19942
750 * gdbthread.h (thread_info::deletable): New method.
751 (thread_info::incref): New method.
752 (thread_info::decref): New method.
753 (thread_info::refcount): Move it to private.
754 * infrun.c (save_stop_context): Call inc_refcount.
755 (release_stop_context_cleanup): Likewise.
756 * thread.c (set_thread_exited): New function.
757 (init_thread_list): Delete "tp" only it is deletable, otherwise
758 call set_thread_exited.
759 (delete_thread_1): Call set_thread_exited.
760 (current_thread_cleanup) <inferior_pid>: Remove.
761 <thread>: New field.
762 (restore_current_thread_ptid_changed): Removed.
763 (do_restore_current_thread_cleanup): Adjust.
764 (restore_current_thread_cleanup_dtor): Don't call
765 find_thread_ptid.
766 (set_thread_refcount): Use dec_refcount.
767 (make_cleanup_restore_current_thread): Adjust.
768 (thread_apply_all_command): Call inc_refcount.
769 (_initialize_thread): Don't call
770 observer_attach_thread_ptid_changed.
771
8c25b497
YQ
7722017-04-10 Yao Qi <yao.qi@linaro.org>
773
774 * thread.c (delete_thread_1): Hoist code on marking thread as
775 exited.
776
8473b447
SM
7772017-04-09 Simon Marchi <simon.marchi@polymtl.ca>
778
779 * windows-nat.c (windows_detach): Initialize ptid with
780 minus_one_ptid.
781
6670ec13
SM
7822017-04-07 Simon Marchi <simon.marchi@ericsson.com>
783
784 * unittests/ptid-selftests.c: Fix erroneous assert messages.
785
ba2f91bb
AH
7862017-04-07 Alan Hayward <alan.hayward@arm.com>
787
788 * bfin-tdep.c (BFIN_MAX_REGISTER_SIZE): Add.
789 (bfin_pseudo_register_read): Use BFIN_MAX_REGISTER_SIZE.
790 (bfin_pseudo_register_write): Likewise
791
436252de
SM
7922017-04-06 Simon Marchi <simon.marchi@ericsson.com>
793
794 * common/ptid.h (struct ptid): Change to...
795 (class ptid_t): ... this.
796 <ptid_t>: New constructors.
797 <pid, lwp_p, lwp, tid_p, tid, is_pid, operator==, operator!=,
798 matches>: New methods.
799 <make_null, make_minus_one>: New static methods.
800 <pid>: Rename to...
801 <m_pid>: ...this.
802 <lwp>: Rename to...
803 <m_lwp>: ...this.
804 <tid>: Rename to...
805 <m_tid>: ...this.
806 (ptid_build, ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal,
807 ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match): Take ptid arguments
808 as references, move comment to class ptid_t.
809 * common/ptid.c (null_ptid, minus_one_ptid): Initialize with
810 ptid_t static methods.
811 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_tid,
812 ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match):
813 Take ptid arguments as references, implement using ptid_t methods.
814 * unittests/ptid-selftests.c: New file.
815 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
816 unittests/ptid-selftests.c.
817 (SUBDIR_UNITTESTS_OBS): Add unittests/ptid-selftests.o.
818
0dedf377
TP
8192017-04-06 Thomas Preud'homme <thomas.preudhomme@arm.com>
820
821 * python/python.c (python_run_simple_file): Cast mode literal to
822 non-const char pointer as expected by PyFile_FromString.
823
4e9868d4
SM
8242017-04-05 Simon Marchi <simon.marchi@ericsson.com>
825
826 * common/ptid.c (ptid_lwp_p, ptid_tid_p): Remove comparison with
827 minus_one_ptid and null_ptid.
828
9bf2a700
PA
8292017-04-05 Pedro Alves <palves@redhat.com>
830
831 * warning.m4 (build_warnings): Remove -Wno-write-strings.
832 * configure: Regenerate.
833
a121b7c1
PA
8342017-04-05 Pedro Alves <palves@redhat.com>
835
836 * ada-exp.y (yyerror): Constify.
837 * ada-lang.c (bound_name, get_selections)
838 (ada_variant_discrim_type)
839 (ada_variant_discrim_name, ada_value_struct_elt)
840 (ada_lookup_struct_elt_type, is_unchecked_variant)
841 (ada_which_variant_applies, standard_exc, ada_get_next_arg)
842 (catch_ada_exception_command_split)
843 (catch_ada_assert_command_split, catch_assert_command)
844 (ada_op_name): Constify.
845 * ada-lang.h (ada_yyerror, get_selections)
846 (ada_variant_discrim_name, ada_value_struct_elt): Constify.
847 * arc-tdep.c (arc_print_frame_cache): Constify.
848 * arm-tdep.c (arm_skip_stub): Constify.
849 * ax-gdb.c (gen_binop, gen_struct_ref_recursive, gen_struct_ref)
850 (gen_aggregate_elt_ref): Constify.
851 * bcache.c (print_bcache_statistics): Constify.
852 * bcache.h (print_bcache_statistics): Constify.
853 * break-catch-throw.c (catch_exception_command_1):
854 * breakpoint.c (struct ep_type_description::description):
855 Constify.
856 (add_solib_catchpoint): Constify.
857 (catch_fork_command_1): Add cast.
858 (add_catch_command): Constify.
859 * breakpoint.h (add_catch_command, add_solib_catchpoint):
860 Constify.
861 * bsd-uthread.c (bsd_uthread_state): Constify.
862 * buildsym.c (patch_subfile_names): Constify.
863 * buildsym.h (next_symbol_text_func, patch_subfile_names):
864 Constify.
865 * c-exp.y (yyerror): Constify.
866 (token::oper): Constify.
867 * c-lang.h (c_yyerror, cp_print_class_member): Constify.
868 * c-varobj.c (cplus_describe_child): Constify.
869 * charset.c (find_charset_names): Add cast.
870 (find_charset_names): Constify array and add const_cast.
871 * cli/cli-cmds.c (complete_command, cd_command): Constify.
872 (edit_command): Constify.
873 * cli/cli-decode.c (lookup_cmd): Constify.
874 * cli/cli-dump.c (dump_memory_command, dump_value_command):
875 Constify.
876 (struct dump_context): Constify.
877 (add_dump_command, restore_command): Constify.
878 * cli/cli-script.c (get_command_line): Constify.
879 * cli/cli-script.h (get_command_line): Constify.
880 * cli/cli-utils.c (check_for_argument): Constify.
881 * cli/cli-utils.h (check_for_argument): Constify.
882 * coff-pe-read.c (struct read_pe_section_data): Constify.
883 * command.h (lookup_cmd): Constify.
884 * common/print-utils.c (decimal2str): Constify.
885 * completer.c (gdb_print_filename): Constify.
886 * corefile.c (set_gnutarget): Constify.
887 * cp-name-parser.y (yyerror): Constify.
888 * cp-valprint.c (cp_print_class_member): Constify.
889 * cris-tdep.c (cris_register_name, crisv32_register_name):
890 Constify.
891 * d-exp.y (yyerror): Constify.
892 (struct token::oper): Constify.
893 * d-lang.h (d_yyerror): Constify.
894 * dbxread.c (struct header_file_location::name): Constify.
895 (add_old_header_file, add_new_header_file, last_function_name)
896 (dbx_next_symbol_text, add_bincl_to_list)
897 (find_corresponding_bincl_psymtab, set_namestring)
898 (find_stab_function_addr, read_dbx_symtab, start_psymtab)
899 (dbx_end_psymtab, read_ofile_symtab, process_one_symbol):
900 * defs.h (command_line_input, print_address_symbolic)
901 (deprecated_readline_begin_hook): Constify.
902 * dwarf2read.c (anonymous_struct_prefix, dwarf_bool_name):
903 Constify.
904 * event-top.c (handle_line_of_input): Constify and add cast.
905 * exceptions.c (catch_errors): Constify.
906 * exceptions.h (catch_errors): Constify.
907 * expprint.c (print_subexp_standard, op_string, op_name)
908 (op_name_standard, dump_raw_expression, dump_raw_expression):
909 * expression.h (op_name, op_string, dump_raw_expression):
910 Constify.
911 * f-exp.y (yyerror): Constify.
912 (struct token::oper): Constify.
913 (struct f77_boolean_val::name): Constify.
914 * f-lang.c (f_word_break_characters): Constify.
915 * f-lang.h (f_yyerror): Constify.
916 * fork-child.c (fork_inferior): Add cast.
917 * frv-tdep.c (struct gdbarch_tdep::register_names): Constify.
918 (new_variant): Constify.
919 * gdbarch.sh (pstring_ptr, pstring_list): Constify.
920 * gdbarch.c: Regenerate.
921 * gdbcore.h (set_gnutarget): Constify.
922 * go-exp.y (yyerror): Constify.
923 (token::oper): Constify.
924 * go-lang.h (go_yyerror): Constify.
925 * go32-nat.c (go32_sysinfo): Constify.
926 * guile/scm-breakpoint.c (gdbscm_breakpoint_expression): Constify.
927 * guile/scm-cmd.c (cmdscm_function): Constify.
928 * guile/scm-param.c (pascm_param_value): Constify.
929 * h8300-tdep.c (h8300_register_name, h8300s_register_name)
930 (h8300sx_register_name): Constify.
931 * hppa-tdep.c (hppa32_register_name, hppa64_register_name):
932 Constify.
933 * ia64-tdep.c (ia64_register_names): Constify.
934 * infcmd.c (construct_inferior_arguments): Constify.
935 (path_command, attach_post_wait): Constify.
936 * language.c (show_range_command, show_case_command)
937 (unk_lang_error): Constify.
938 * language.h (language_defn::la_error)
939 (language_defn::la_name_of_this): Constify.
940 * linespec.c (decode_line_2): Constify.
941 * linux-thread-db.c (thread_db_err_str): Constify.
942 * lm32-tdep.c (lm32_register_name): Constify.
943 * m2-exp.y (yyerror): Constify.
944 * m2-lang.h (m2_yyerror): Constify.
945 * m32r-tdep.c (m32r_register_names): Constify and make static.
946 * m68hc11-tdep.c (m68hc11_register_names): Constify.
947 * m88k-tdep.c (m88k_register_name): Constify.
948 * macroexp.c (appendmem): Constify.
949 * mdebugread.c (fdr_name, add_data_symbol, parse_type)
950 (upgrade_type, parse_external, parse_partial_symbols)
951 (mdebug_next_symbol_text, cross_ref, mylookup_symbol, new_psymtab)
952 (new_symbol): Constify.
953 * memattr.c (mem_info_command): Constify.
954 * mep-tdep.c (register_name_from_keyword): Constify.
955 * mi/mi-cmd-env.c (mi_cmd_env_path, _initialize_mi_cmd_env):
956 Constify.
957 * mi/mi-cmd-stack.c (list_args_or_locals): Constify.
958 * mi/mi-cmd-var.c (mi_cmd_var_show_attributes): Constify.
959 * mi/mi-main.c (captured_mi_execute_command): Constify and add
960 cast.
961 (mi_execute_async_cli_command): Constify.
962 * mips-tdep.c (mips_register_name): Constify.
963 * mn10300-tdep.c (register_name, mn10300_generic_register_name)
964 (am33_register_name, am33_2_register_name)
965 * moxie-tdep.c (moxie_register_names): Constify.
966 * nat/linux-osdata.c (osdata_type): Constify fields.
967 * nto-tdep.c (nto_parse_redirection): Constify.
968 * objc-lang.c (lookup_struct_typedef, lookup_objc_class)
969 (lookup_child_selector): Constify.
970 (objc_methcall::name): Constify.
971 * objc-lang.h (lookup_objc_class, lookup_child_selector)
972 (lookup_struct_typedef): Constify.
973 * objfiles.c (pc_in_section): Constify.
974 * objfiles.h (pc_in_section): Constify.
975 * p-exp.y (struct token::oper): Constify.
976 (yyerror): Constify.
977 * p-lang.h (pascal_yyerror): Constify.
978 * parser-defs.h (op_name_standard): Constify.
979 (op_print::string): Constify.
980 (exp_descriptor::op_name): Constify.
981 * printcmd.c (print_address_symbolic): Constify.
982 * psymtab.c (print_partial_symbols): Constify.
983 * python/py-breakpoint.c (stop_func): Constify.
984 (bppy_get_expression): Constify.
985 * python/py-cmd.c (cmdpy_completer::name): Constify.
986 (cmdpy_function): Constify.
987 * python/py-event.c (evpy_add_attribute)
988 (gdbpy_initialize_event_generic): Constify.
989 * python/py-event.h (evpy_add_attribute)
990 (gdbpy_initialize_event_generic): Constify.
991 * python/py-evts.c (add_new_registry): Constify.
992 * python/py-finishbreakpoint.c (outofscope_func): Constify.
993 * python/py-framefilter.c (get_py_iter_from_func): Constify.
994 * python/py-inferior.c (get_buffer): Add cast.
995 * python/py-param.c (parm_constant::name): Constify.
996 * python/py-unwind.c (fprint_frame_id): Constify.
997 * python/python.c (gdbpy_parameter_value): Constify.
998 * remote-fileio.c (remote_fio_func_map): Make 'name' const.
999 * remote.c (memory_packet_config::name): Constify.
1000 (show_packet_config_cmd, remote_write_bytes)
1001 (remote_buffer_add_string):
1002 * reverse.c (exec_reverse_once): Constify.
1003 * rs6000-tdep.c (variant::name, variant::description): Constify.
1004 * rust-exp.y (rustyyerror): Constify.
1005 * rust-lang.c (rust_op_name): Constify.
1006 * rust-lang.h (rustyyerror): Constify.
1007 * serial.h (serial_ops::name): Constify.
1008 * sh-tdep.c (sh_sh_register_name, sh_sh3_register_name)
1009 (sh_sh3e_register_name, sh_sh2e_register_name)
1010 (sh_sh2a_register_name, sh_sh2a_nofpu_register_name)
1011 (sh_sh_dsp_register_name, sh_sh3_dsp_register_name)
1012 (sh_sh4_register_name, sh_sh4_nofpu_register_name)
1013 (sh_sh4al_dsp_register_name): Constify.
1014 * sh64-tdep.c (sh64_register_name): Constify.
1015 * solib-darwin.c (lookup_symbol_from_bfd): Constify.
1016 * spu-tdep.c (spu_register_name, info_spu_dma_cmdlist): Constify.
1017 * stabsread.c (patch_block_stabs, read_type_number)
1018 (ref_map::stabs, ref_add, process_reference)
1019 (symbol_reference_defined, define_symbol, define_symbol)
1020 (error_type, read_type, read_member_functions, read_cpp_abbrev)
1021 (read_one_struct_field, read_struct_fields, read_baseclasses)
1022 (read_tilde_fields, read_struct_type, read_array_type)
1023 (read_enum_type, read_sun_builtin_type, read_sun_floating_type)
1024 (read_huge_number, read_range_type, read_args, common_block_start)
1025 (find_name_end): Constify.
1026 * stabsread.h (common_block_start, define_symbol)
1027 (process_one_symbol, symbol_reference_defined, ref_add):
1028 * symfile.c (get_section_index, add_symbol_file_command):
1029 * symfile.h (get_section_index): Constify.
1030 * target-descriptions.c (tdesc_type::name): Constify.
1031 (tdesc_free_type): Add cast.
1032 * target.c (find_default_run_target):
1033 (add_deprecated_target_alias, find_default_run_target)
1034 (target_announce_detach): Constify.
1035 (do_option): Constify.
1036 * target.h (add_deprecated_target_alias): Constify.
1037 * thread.c (print_thread_info_1): Constify.
1038 * top.c (deprecated_readline_begin_hook, command_line_input):
1039 Constify.
1040 (init_main): Add casts.
1041 * top.h (handle_line_of_input): Constify.
1042 * tracefile-tfile.c (tfile_write_uploaded_tsv): Constify.
1043 * tracepoint.c (tvariables_info_1, trace_status_mi): Constify.
1044 (tfind_command): Rename to ...
1045 (tfind_command_1): ... this and constify.
1046 (tfind_command): New function.
1047 (tfind_end_command, tfind_start_command): Adjust.
1048 (encode_source_string): Constify.
1049 * tracepoint.h (encode_source_string): Constify.
1050 * tui/tui-data.c (tui_partial_win_by_name): Constify.
1051 * tui/tui-data.h (tui_partial_win_by_name): Constify.
1052 * tui/tui-source.c (tui_set_source_content_nil): Constify.
1053 * tui/tui-source.h (tui_set_source_content_nil): Constify.
1054 * tui/tui-win.c (parse_scrolling_args): Constify.
1055 * tui/tui-windata.c (tui_erase_data_content): Constify.
1056 * tui/tui-windata.h (tui_erase_data_content): Constify.
1057 * tui/tui-winsource.c (tui_erase_source_content): Constify.
1058 * tui/tui.c (tui_enable): Add cast.
1059 * utils.c (defaulted_query): Constify.
1060 (init_page_info): Add cast.
1061 (puts_debug, subset_compare): Constify.
1062 * utils.h (subset_compare): Constify.
1063 * varobj.c (varobj_format_string): Constify.
1064 * varobj.h (varobj_format_string): Constify.
1065 * vax-tdep.c (vax_register_name): Constify.
1066 * windows-nat.c (windows_detach): Constify.
1067 * xcoffread.c (process_linenos, xcoff_next_symbol_text): Constify.
1068 * xml-support.c (gdb_xml_end_element): Constify.
1069 * xml-tdesc.c (tdesc_start_reg): Constify.
1070 * xstormy16-tdep.c (xstormy16_register_name): Constify.
1071 * xtensa-tdep.c (xtensa_find_register_by_name): Constify.
1072 * xtensa-tdep.h (xtensa_register_t::name): Constify.
1073
995816ba
PA
10742017-04-05 Pedro Alves <palves@redhat.com>
1075
1076 * proc-api.c (struct trans): Constify.
1077 (procfs_note): Constify.
1078 * proc-events.c (struct trans, syscall_table):
1079 * proc-flags.c (struct trans): Constify.
1080 * proc-utils.h (procfs_note): Constify.
1081 * proc-why.c (struct trans): Constify.
1082 * procfs.c (dead_procinfo, find_syscall, proc_warn, proc_error)
1083 (procfs_detach): Constify.
1084 * sol-thread.c (struct string_map): Constify.
1085 (td_err_string, td_state_string): Constify.
1086
3e83a920
PA
10872017-04-05 Pedro Alves <palves@redhat.com>
1088
1089 * proc-api.c (procfs_filename): Don't initialize
1090 procfs_filename.
1091 (prepare_to_trace): Assume procfs_filename is non-NULL.
1092 (_initialize_proc_api): Give procfs_filename a default value here.
1093
63160a43
PA
10942017-04-05 Pedro Alves <palves@redhat.com>
1095
1096 * break-catch-throw.c (handle_gnu_v3_exceptions): Constify
1097 'cond_string' parameter.
1098 (extract_exception_regexp): Constify 'string' parameter.
1099 (catch_exception_command_1): Constify.
1100 * breakpoint.c (init_catchpoint)
1101 (create_fork_vfork_event_catchpoint): Constify 'cond_string'
1102 parameter.
1103 (ep_parse_optional_if_clause, catch_fork_command_1)
1104 (catch_exec_command_1): Constify.
1105 * breakpoint.h (init_catchpoint): Constify 'cond_string'
1106 parameter.
1107 (ep_parse_optional_if_clause): Constify.
1108 * cli/cli-utils.c (remove_trailing_whitespace)
1109 (check_for_argument): Constify.
1110 * cli/cli-utils.h (remove_trailing_whitespace): Constify and add
1111 non-const overload.
1112 (check_for_argument): Likewise.
1113
9b2eba3d
PA
11142017-04-05 Pedro Alves <palves@redhat.com>
1115
1116 * event-top.c (command_line_handler): Add cast to execute_command
1117 call.
1118 * record-btrace.c (cmd_record_btrace_bts_start)
1119 (cmd_record_btrace_pt_start, cmd_record_btrace_start)
1120 (cmd_record_btrace_start): Add cast to execute_command call.
1121 * record-full.c (record_full_goto_insn):
1122 * record.c (record_start, record_stop): Add cast to
1123 execute_command_to_string calls.
1124 (cmd_record_start): Add cast to execute_command calls.
1125
2adadf51
PA
11262017-04-05 Pedro Alves <palves@redhat.com>
1127
1128 * python/python-internal.h (gdb_PyArg_ParseTupleAndKeywords): New
1129 static inline function.
1130 * python/py-arch.c (archpy_disassemble): Constify 'keywords'
1131 array and use gdb_PyArg_ParseTupleAndKeywords.
1132 * python/py-cmd.c (cmdpy_init): Likewise.
1133 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
1134 * python/py-inferior.c (infpy_read_memory, infpy_write_memory)
1135 (infpy_search_memory): Likewise.
1136 * python/py-objfile.c (objfpy_add_separate_debug_file)
1137 (gdbpy_lookup_objfile): Likewise.
1138 * python/py-symbol.c (gdbpy_lookup_symbol)
1139 (gdbpy_lookup_global_symbol): Likewise.
1140 * python/py-type.c (gdbpy_lookup_type): Likewise.
1141 * python/py-value.c (valpy_lazy_string, valpy_string): Likewise.
1142 * python/python.c (execute_gdb_command, gdbpy_write, gdbpy_flush):
1143 Likewise.
1144
0d1f4ceb
PA
11452017-04-05 Pedro Alves <palves@redhat.com>
1146
1147 * python/python-internal.h (gdb_PyGetSetDef): New type.
1148 * python/py-block.c (block_object_getset)
1149 (breakpoint_object_getset): Now a gdb_PyGetSetDef array.
1150 * python/py-event.c (event_object_getset)
1151 (finish_breakpoint_object_getset): Likewise.
1152 * python/py-inferior.c (inferior_object_getset): Likewise.
1153 * python/py-infthread.c (thread_object_getset): Likewise.
1154 * python/py-lazy-string.c (lazy_string_object_getset): Likewise.
1155 * python/py-linetable.c (linetable_entry_object_getset): Likewise.
1156 * python/py-objfile.c (objfile_getset): Likewise.
1157 * python/py-progspace.c (pspace_getset): Likewise.
1158 * python/py-record-btrace.c (btpy_insn_getset, btpy_call_getset):
1159 Likewise.
1160 * python/py-record.c (recpy_record_getset): Likewise.
1161 * python/py-symbol.c (symbol_object_getset): Likewise.
1162 * python/py-symtab.c (symtab_object_getset, sal_object_getset):
1163 Likewise.
1164 * python/py-type.c (type_object_getset, field_object_getset):
1165 Likewise.
1166 * python/py-value.c (value_object_getset): Likewise.
1167
4d759979
PA
11682017-04-05 Pedro Alves <palves@redhat.com>
1169
1170 * python/python-internal.h (gdb_PyObject_CallMethod)
1171 (gdb_PyErr_NewException, gdb_PySys_GetObject, gdb_PySys_SetPath):
1172 New functions.
1173 (GDB_PYSYS_SETPATH_CHAR, PyObject_CallMethod, PyErr_NewException)
1174 (PySys_GetObject, PySys_SetPath): New macros.
1175
fdf9e36f
PA
11762017-04-05 Pedro Alves <palves@redhat.com>
1177
1178 * mi/mi-cmd-info.c (mi_cmd_info_os): Call info_osdata instead of
1179 info_osdata_command.
1180 * osdata.c (info_osdata_command): Rename to ...
1181 (info_osdata): ... this. Constify 'type' parameter, and remove
1182 the 'from_tty' parameter. Accept NULL TYPE.
1183 (info_osdata_command): New function.
1184 * osdata.h (info_osdata_command): Remove declaration.
1185 (info_osdata): New declaration.
1186
9f33b8b7
PA
11872017-04-05 Pedro Alves <palves@redhat.com>
1188
1189 * mi/mi-cmd-break.c (mi_cmd_break_insert_1, mi_cmd_break_insert)
1190 (mi_cmd_dprintf_insert, mi_cmd_break_passcount)
1191 (mi_cmd_break_watch, mi_cmd_break_commands): Constify 'command'
1192 parameter.
1193 * mi/mi-cmd-catch.c (mi_cmd_catch_assert, mi_cmd_catch_exception)
1194 (mi_cmd_catch_load, mi_cmd_catch_unload): Constify cmd' parameter.
1195 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Constify 'command'
1196 parameter.
1197 * mi/mi-cmd-env.c (mi_cmd_env_pwd, mi_cmd_env_cd, mi_cmd_env_path)
1198 (mi_cmd_env_dir, mi_cmd_inferior_tty_set, _cmd_inferior_tty_show)
1199 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
1200 (mi_cmd_file_list_exec_source_files)
1201 (mi_cmd_file_list_shared_libraries): Constify 'command' parameter.
1202 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
1203 (mi_cmd_info_gdb_mi_command, mi_cmd_info_os): Constify 'command'
1204 parameter.
1205 * mi/mi-cmd-stack.c (mi_cmd_enable_frame_filters)
1206 (mi_cmd_stack_list_frames, mi_cmd_stack_info_depth)
1207 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
1208 (mi_cmd_stack_list_variables, mi_cmd_stack_select_frame)
1209 (mi_cmd_stack_info_frame): Constify 'command' parameter.
1210 * mi/mi-cmd-target.c (mi_cmd_target_file_get)
1211 (mi_cmd_target_file_put, mi_cmd_target_file_delete): Constify
1212 'command' parameter.
1213 * mi/mi-cmd-var.c (mi_cmd_var_create, mi_cmd_var_delete)
1214 (mi_cmd_var_set_format, mi_cmd_var_set_visualizer)
1215 (mi_cmd_var_set_frozen, mi_cmd_var_show_format)
1216 (mi_cmd_var_info_num_children, mi_cmd_var_list_children)
1217 (mi_cmd_var_info_type, mi_cmd_var_info_path_expression)
1218 (mi_cmd_var_info_expression, mi_cmd_var_show_attributes)
1219 (mi_cmd_var_evaluate_expression, mi_cmd_var_assign)
1220 (mi_cmd_var_update, mi_cmd_enable_pretty_printing)
1221 (mi_cmd_var_set_update_range): Constify 'command' parameter.
1222 * mi/mi-cmds.h (mi_cmd_argv_ftype): Constify 'command' parameter.
1223 * mi/mi-interp.c (mi_cmd_interpreter_exec): Constify 'command'
1224 parameter.
1225 * mi/mi-main.c (mi_cmd_gdb_exit, mi_cmd_exec_next)
1226 (mi_cmd_exec_next_instruction, mi_cmd_exec_step)
1227 (mi_cmd_exec_step_instruction, mi_cmd_exec_finish)
1228 (mi_cmd_exec_return ,mi_cmd_exec_jump, mi_cmd_exec_continue)
1229 (mi_cmd_exec_interrupt, mi_cmd_exec_run, mi_cmd_target_detach)
1230 (mi_cmd_target_flash_erase, mi_cmd_thread_select)
1231 (mi_cmd_thread_list_ids, mi_cmd_thread_info)
1232 (mi_cmd_list_thread_groups, mi_cmd_data_list_register_names)
1233 (mi_cmd_data_list_changed_registers)
1234 (mi_cmd_data_write_register_values)
1235 (mi_cmd_data_evaluate_expression, mi_cmd_data_read_memory)
1236 (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory)
1237 (mi_cmd_data_write_memory_bytes, mi_cmd_enable_timings)
1238 (mi_cmd_list_features, mi_cmd_list_target_features)
1239 (mi_cmd_add_inferior, mi_cmd_remove_inferior)
1240 (mi_cmd_trace_define_variable, mi_cmd_trace_list_variables)
1241 (mi_cmd_trace_find, mi_cmd_trace_save, mi_cmd_trace_start)
1242 (mi_cmd_trace_status, mi_cmd_trace_stop, mi_cmd_ada_task_info)
1243 (mi_cmd_trace_frame_collected): Constify 'command'
1244 parameter.
1245 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Constify
1246 'command' parameter.
1247
67cb5b2d
PA
12482017-04-05 Pedro Alves <palves@redhat.com>
1249
1250 * ada-lang.c (ada_completer_word_break_characters): Now a const
1251 array.
1252 (ada_get_gdb_completer_word_break_characters): Constify.
1253 * completer.c (gdb_completer_command_word_break_characters)
1254 (gdb_completer_file_name_break_characters)
1255 (gdb_completer_quote_characters): Now const arrays.
1256 (get_gdb_completer_quote_characters): Constify.
1257 (set_rl_completer_word_break_characters): New function.
1258 (set_gdb_completion_word_break_characters)
1259 (complete_line_internal): Use it.
1260 * completer.h (get_gdb_completer_quote_characters): Constify.
1261 (set_rl_completer_word_break_characters): Declare.
1262 * f-lang.c (f_word_break_characters): Constify.
1263 * language.c (default_word_break_characters): Constify.
1264 * language.h (language_defn::la_word_break_characters): Constify.
1265 (default_word_break_characters): Constify.
1266 * top.c (init_main): Use set_rl_completer_word_break_characters.
1267
7a114964
PA
12682017-04-05 Pedro Alves <palves@redhat.com>
1269
1270 * aix-thread.c (aix_thread_pid_to_str)
1271 (aix_thread_extra_thread_info): Constify.
1272 * bsd-kvm.c (bsd_kvm_pid_to_str): Constify.
1273 * bsd-uthread.c (bsd_uthread_extra_thread_info)
1274 (bsd_uthread_pid_to_str): Constify.
1275 * corelow.c (core_pid_to_str): Constify.
1276 * darwin-nat.c (darwin_pid_to_str): Constify.
1277 * fbsd-nat.c (fbsd_pid_to_str): Constify.
1278 * fbsd-tdep.c (fbsd_core_pid_to_str, gdbarch_core_pid_to_str):
1279 Constify.
1280 * gnu-nat.c (gnu_pid_to_str): Constify.
1281 * go32-nat.c (go32_pid_to_str): Constify.
1282 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Constify.
1283 * inf-ptrace.c (inf_ptrace_pid_to_str): Constify.
1284 * inferior.c (inferior_pid_to_str): Constify.
1285 * linux-nat.c (linux_nat_pid_to_str): Constify.
1286 * linux-tdep.c (linux_core_pid_to_str): Constify.
1287 * linux-thread-db.c (thread_db_pid_to_str)
1288 (thread_db_extra_thread_info): Constify.
1289 * nto-tdep.c (nto_extra_thread_info): Constify.
1290 * nto-tdep.h (nto_extra_thread_info): Constify.
1291 * obsd-nat.c (obsd_pid_to_str): Constify.
1292 * procfs.c (procfs_pid_to_str): Constify.
1293 * ravenscar-thread.c (ravenscar_extra_thread_info)
1294 (ravenscar_pid_to_str): Constify.
1295 * remote-sim.c (gdbsim_pid_to_str): Constify.
1296 * remote.c (remote_threads_extra_info, remote_pid_to_str):
1297 Constify.
1298 * sol-thread.c (solaris_pid_to_str): Constify.
1299 * sol2-tdep.c (sol2_core_pid_to_str): Constify.
1300 * sol2-tdep.h (sol2_core_pid_to_str): Constify.
1301 * target.c (default_pid_to_str, target_pid_to_str)
1302 (normal_pid_to_str, default_pid_to_str): Constify.
1303 * target.h (target_ops::to_pid_to_str)
1304 (target_ops::to_extra_thread_info): Constify.
1305 (target_pid_to_str, normal_pid_to_str): Constify.
1306 * windows-nat.c (windows_pid_to_str): Constify.
1307 * gdbarch.sh (core_pid_to_str): Constify.
1308 * target-delegates.c: Regenerate.
1309 * gdbarch.h, gdbarch.c: Regenerate.
1310
69bbf465
PA
13112017-04-05 Pedro Alves <palves@redhat.com>
1312
1313 * main.c (captured_main_1): Use gdb::unique_xmalloc_ptr to manage
1314 the memory of the temporary warning_pre_print override.
1315 * utils.c (warning_pre_print): Constify.
1316 * utils.h (warning_pre_print): Constify.
1317
be47f9e8
PA
13182017-04-05 Pedro Alves <palves@redhat.com>
1319
1320 * cli/cli-cmds.c (shell_escape): Constify 'arg' parameter.
1321 (shell_command): New function.
1322 (make_command): Use std::string.
1323 (init_cli_cmds): Register shell_command instead of shell_escape.
1324
bde6261a
PA
13252017-04-05 Pedro Alves <palves@redhat.com>
1326
1327 * breakpoint.c (dprintf_function, dprintf_channel): Don't initialize.
1328 * tracepoint.c (default_collect): Don't initialize.
1329
b38ef47f
PA
13302017-04-05 Pedro Alves <palves@redhat.com>
1331
1332 * macroexp.c (macro_buffer::shared): Now a bool.
1333 (init_buffer): Update.
1334 (init_shared_buffer): Constify 'addr' parameter.
1335 (substitute_args, expand, macro_expand, macro_expand_next): Remove
1336 casts.
1337
f995bbe8
PA
13382017-04-05 Pedro Alves <palves@redhat.com>
1339
1340 * arm-tdep.c (show_disassembly_style_sfunc): Constify local.
1341 * disasm.c (set_disassembler_options): Constify local.
1342 * i386-tdep.c (i386_print_insn): Remove cast and FIXME comment.
1343
4a596fe2
SDJ
13442017-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
1345
1346 PR gdb/21352
1347 * tracefile.c (tsave_command): Fix argument parsing for '-r'
1348 option.
1349
2cad08ea
YQ
13502017-04-05 Yao Qi <yao.qi@linaro.org>
1351
1352 * frame.c (frame_unwind_register_unsigned): Call
1353 frame_unwind_register_value.
1354
55a98976
YQ
13552017-04-05 Yao Qi <yao.qi@linaro.org>
1356
1357 * gdb.threads/thread-specific-bp.exp (check_thread_specific_breakpoint):
1358 Use gdb_test_multiple, and don't match anchor.
1359
4ac40124
PA
13602017-04-05 Pedro Alves <palves@redhat.com>
1361
1362 * MAINTAINERS (Global Maintainers): Add Simon Marchi.
1363 (Write After Approval): Remove Simon Marchi.
1364
c053b654
PA
13652017-04-05 Pedro Alves <palves@redhat.com>
1366
1367 * common/gdb_optional.h (optional::optional): Make constexpr and
1368 initialize m_dummy.
1369
4c7bf4f9
JB
13702017-04-04 John Baldwin <jhb@FreeBSD.org>
1371
1372 * amd64-fbsd-tdep.c: Remove "bsd-uthread.h" include.
1373 (amd64fbsd_jmp_buf_reg_offset): Remove.
1374 (amd64fbsd_supply_uthread): Remove function.
1375 (amd64fbsd_collect_uthread): Remove function.
1376 (amd64fbsd_init_abi): Don't set bsd-uthread callbacks.
1377 * configure.tgt (i[34567]86-*-freebsd*): Remove bsd-uthread.o.
1378 (x86_64-*-freebsd*): Remove bsd-uthread.o.
1379 (fbsd-nat.c): Update comment.
1380 * i386-fbsd-tdep.c: Remove "bsd-uthread.h" include.
1381 (i386fbsd_jmp_buf_reg_offset): Remove.
1382 (i386fbsd_supply_uthread): Remove function.
1383 (i386fbsd_collect_uthread): Remove function.
1384 (i386fbsd_init_abi): Don't set bsd-uthread callbacks.
1385
1e1a8bef
JB
13862017-04-04 John Baldwin <jhb@FreeBSD.org>
1387
1388 * Makefile.in (ALL_64_TARGET_OBS): Remove alpha-fbsd-tdep.o.
1389 (ALLDEPFILES): Remove alpha-fbsd-tdep.c
1390 * NEWS: Mention that support for FreeBSD/alpha was removed.
1391 * alpha-fbsd-tdep.c: Delete file.
1392 * config/alpha/fbsd.mh: Delete file.
1393 * configure.host: Delete alpha*-*-freebsd* and
1394 alpha*-*-kfreebsd*-gnu.
1395 * configure.tgt: Delete alpha*-*-freebsd* and
1396 alpha*-*-kfreebsd*-gnu.
1397
49907934
JB
13982017-04-04 John Baldwin <jhb@FreeBSD.org>
1399
1400 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers,
1401 amd64bsd_store_inferior_registers): Use ptid from regcache.
1402
6f77053d
PA
14032017-04-04 Pedro Alves <palves@redhat.com>
1404
1405 * dwarf2read.c (lnp_state_machine): Now a class. Initialize all
1406 data fields, make them private and add "m_" prefixes.
1407 (lnp_state_machine::lnp_state_machine): New ctor.
1408 (record_line, check_line_address, handle_set_discriminator)
1409 (handle_set_address, handle_advance_pc, handle_special_opcode)
1410 (handle_advance_line, handle_set_file, handle_negate_stmt)
1411 (handle_const_add_pc, handle_fixed_advance_pc, handle_copy)
1412 (end_sequence, advance_line): New methods.
1413 (m_gdbarch, m_record_lines_p): New fields.
1414 (lnp_reader_state): Delete.
1415 (dwarf_record_line): Rename to ...
1416 (lnp_state_machine::record_line): ... adjust.
1417 (init_lnp_state_machine): Delete.
1418 (lnp_state_machine::lnp_state_machine): New.
1419 (check_line_address): Rename to ...
1420 (lnp_state_machine::check_line_address): This.
1421 (dwarf_decode_lines_1): Remove reference to "reader_state".
1422 Adjust lnp_state_machine having a non-default ctor. Use bool.
1423 State machine internal state manipulation moved to
1424 lnp_state_machine methods.
1425
9c541725
PA
14262017-04-04 Pedro Alves <palves@redhat.com>
1427
1428 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
1429 unittests/offset-type-selftests.c.
1430 (SUBDIR_UNITTESTS_OBS): Add offset-type-selftests.o.
1431 * common/offset-type.h: New file.
1432 * common/preprocessor.h: New file.
1433 * common/traits.h: New file.
1434 * common/valid-expr.h: New file.
1435 * dwarf2expr.c: Include "common/underlying.h". Adjust to use
1436 sect_offset and cu_offset strong typedefs throughout.
1437 * dwarf2expr.h: Adjust to use sect_offset and cu_offset strong
1438 typedefs throughout.
1439 * dwarf2loc.c: Include "common/underlying.h". Adjust to use
1440 sect_offset and cu_offset strong typedefs throughout.
1441 * dwarf2read.c: Adjust to use sect_offset and cu_offset strong
1442 typedefs throughout.
1443 * gdbtypes.h: Include "common/offset-type.h".
1444 (cu_offset): Now an offset type (strong typedef) instead of a
1445 struct.
1446 (sect_offset): Likewise.
1447 (union call_site_parameter_u): Rename "param_offset" field to
1448 "param_cu_off".
1449 * unittests/offset-type-selftests.c: New file.
1450
ecfb656c
PA
14512017-04-04 Pedro Alves <palves@redhat.com>
1452
1453 * common/underlying.h: New file.
1454 * dwarf2read.c: Include "common/gdb_optional.h" and
1455 "common/underlying.h".
1456 (dir_index, file_name_index): New types.
1457 (file_entry): Use them.
1458 (file_entry::include): Use to_underlying.
1459 (line_header::add_file_name): Use dir_index.
1460 (read_formatted_entries): Use gdb::optional. Read form before
1461 writting to file_entry.
1462 (dwarf_decode_line_header): Use dir_index.
1463 (lnp_state_machine::current_file): Use to_underlying.
1464 (lnp_state_machine::file): Change type to file_name_index.
1465 (dwarf_record_line): Use to_underlying.
1466 (init_lnp_state_machine): Use file_name_index.
1467 (dwarf_decode_lines_1): Use dir_index and file_name_index.
1468
d194f1fe
PA
14692017-04-04 Pedro Alves <palves@redhat.com>
1470
1471 * common/gdb_optional.h (gdb::optiona): Add operator->, operator*,
1472 operator bool, has_value and get methods.
1473
fff8551c
PA
14742017-04-04 Pedro Alves <palves@redhat.com>
1475
1476 * dwarf2read.c (struct file_entry): Add ctors, and initialize all
1477 fields.
1478 (line_header): Initialize all data fields. Change type of
1479 standard_opcode_lengths to std::unique_ptr<unsigned char[]>.
1480 Change type of include_dirs to std::vector<const char *>. Remove
1481 num_include_dirs, include_dirs_size. Change type of file_names to
1482 std::vector<file_entry>. Remove num_file_names, file_names_size.
1483 (line_header::line_header): New.
1484 (line_header::add_include_dir, line_header::add_file_name): New
1485 methods.
1486 (line_header::include_dir_at): Remove NULL check.
1487 (line_header::file_name_at): Add const overload.
1488 (line_header_up): New unique_ptr typedef.
1489 (dw2_get_file_names_reader): Use line_header_up. Adjust to use
1490 std::vector. Remove free_line_header call.
1491 (dwarf2_build_include_psymtabs): Use line_header_up. Remove
1492 free_line_header call.
1493 (free_cu_line_header): Delete.
1494 (handle_DW_AT_stmt_list, handle_DW_AT_stmt_list)
1495 (setup_type_unit_groups): Use line_header_up instead of cleanups.
1496 Adjust to use std::vector.
1497 (free_line_header): Delete.
1498 (free_line_header_voidp): Use delete.
1499 (add_include_dir): Replace with ...
1500 (line_header::add_include_dir): ... this method. Use std::vector.
1501 (add_file_name): Replace with ...
1502 (line_header::add_file_name): ... this method. Use std::vector.
1503 (add_include_dir_stub): Delete.
1504 (read_formatted_entries): Remove memset.
1505 (dwarf_decode_line_header): Return a line_header_up instead of a
1506 raw pointer. Remove cleanup handling. Pass lambdas to
1507 read_formatted_entries. Adjust to use line_header methods.
1508 (dwarf_decode_lines_1): Adjust to use line_header methods.
1509 (dwarf_decode_lines, file_file_name, file_full_name): Adjust to
1510 use std::vector.
1511
d62a8ae2
SM
15122017-04-04 Simon Marchi <simon.marchi@polymtl.ca>
1513
1514 * remote.c (set_general_thread, set_continue_thread): Use ptid_t
1515 instead of struct ptid.
1516
db3a1dc7
AH
15172017-05-04 Alan Hayward <alan.hayward@arm.com>
1518
1519 * frame.c (get_frame_register_bytes): Unwind using value.
1520 (put_frame_register_bytes): Likewise.
1521
b1b45502
IB
15222017-03-30 Iain Buclaw <ibuclaw@gdcproject.org>
1523
1524 * d-exp.y (type_aggregate_p): Treat TYPE_CODE_MODULE as being
1525 aggregate-like.
1526
ec13808e
JK
15272017-03-29 Jan Kratochvil <jan.kratochvil@redhat.com>
1528
1529 * auto-load.c (auto_load_section_scripts): Check SEC_HAS_CONTENTS.
1530
12316564
YQ
15312017-03-29 Yao Qi <yao.qi@linaro.org>
1532
1533 * gdbthread.h (struct thread_info): Declare constructor and
1534 destructor. Add some in-class member initializers.
1535 * thread.c (free_thread): Remove.
1536 (init_thread_list): Call delete instead of free_thread.
1537 (new_thread): Call thread_info constructor.
1538 (thread_info::thread_info): New function.
1539 (thread_info::~thread_info): New function.
1540 (delete_thread_1): Call delete instead of free_thread.
1541 (make_cleanup_restore_current_thread): Move tp and frame to
1542 inner block.
1543
fe5f7374
AK
15442017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
1545
1546 * arc-tdep.c (arc_frame_cache): Add support for prologue analysis.
1547 (arc_skip_prologue): Likewise.
1548 (arc_make_frame_cache): Likewise.
1549 (arc_pv_get_operand): New function.
1550 (arc_is_in_prologue): Likewise.
1551 (arc_analyze_prologue): Likewise.
1552 (arc_print_frame_cache): Likewise.
1553 (MAX_PROLOGUE_LENGTH): New constant.
1554
eea78757
AK
15552017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
1556
1557 * configure.tgt: Add arc-insn.o.
1558 * arc-tdep.c (arc_delayed_print_insn): Make non-static.
1559 (dump_arc_instruction_command): New function.
1560 (arc_fprintf_disasm): Likewise.
1561 (arc_disassemble_info): Likewise.
1562 (arc_insn_get_operand_value): Likewise.
1563 (arc_insn_get_operand_value_signed): Likewise.
1564 (arc_insn_get_memory_base_reg): Likewise.
1565 (arc_insn_get_memory_offset): Likewise.
1566 (arc_insn_get_branch_target): Likewise.
1567 (arc_insn_dump): Likewise.
1568 (arc_insn_get_linear_next_pc): Likewise.
1569 * arc-tdep.h (arc_delayed_print_insn): Add function declaration.
1570 (arc_disassemble_info): Likewise.
1571 (arc_insn_get_branch_target): Likewise.
1572 (arc_insn_get_linear_next_pc): Likewise.
1573 * NEWS: Mention new "maint print arc arc-instruction".
1574
3be78afd
AK
15752017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
1576
1577 * arc-tdep (maintenance_print_arc_list): New variable.
1578 (maintenance_print_arc_command): New function.
1579
296ec4fa
AK
15802017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
1581
1582 * arc-tdep.c (core_v2_register_names, core_arcompact_register_names)
1583 Add "limm" and "reserved".
1584 (arc_cannot_fetch_register, arc_cannot_store_register): Add
1585 ARC_RESERVED_REGNUM and ARC_LIMM_REGNUM.
1586 * arc-tdep.h (arc_regnum): Likewise.
1587
f74f865e
MF
15882017-03-27 Max Filippov <jcmvbkbc@gmail.com>
1589
1590 * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
1591 for THREADPTR register.
1592 (supply_gregset_reg): Call regcache_raw_supply for THREADPTR
1593 register.
1594 * xtensa-tdep.c (XTENSA_DBREGN_UREG): New definition.
1595 (xtensa_derive_tdep): Initialize tdep->threadptr_regnum.
1596 * xtensa-tdep.h (gdbarch_tdep::threadptr_regnum): New field.
1597
0d0bf81a
MF
15982017-03-27 Max Filippov <jcmvbkbc@gmail.com>
1599
1600 * xtensa-tdep.c (xtensa_pseudo_register_read): Treat all
1601 registers above gdbarch_num_regs (gdbarch) as privileged in
1602 call0 ABI.
1603
0ce4291e
MF
16042017-03-27 Max Filippov <jcmvbkbc@gmail.com>
1605
1606 * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
1607 for a single specified register or for all registers in
1608 a0_base..a0_base + C0_NREGS range.
1609 (supply_gregset_reg): Call regcache_raw_supply for a single
1610 specified register or for all registers in a0_base..a0_base +
1611 C0_NREGS range.
1612
c56054f9
MF
16132017-03-27 Max Filippov <jcmvbkbc@gmail.com>
1614
1615 * arch/xtensa.h (C0_NREGS): Add definition.
1616 * xtensa-tdep.c (C0_NREGS): Remove definition.
1617
a4398628
MF
16182017-03-27 Max Filippov <jcmvbkbc@gmail.com>
1619
1620 * xtensa-tdep.c (xtensa_scan_prologue, call0_analyze_prologue):
1621 Drop xtensa_default_isa initialization.
1622 (xtensa_gdbarch_init): Initialize xtensa_default_isa.
1623
8c43009f
PA
16242017-03-27 Pedro Alves <palves@redhat.com>
1625
1626 * dwarf2read.c (file_entry) <dir_index>: Add comment.
1627 (file_entry::include_dir): New method.
1628 (line_header::include_dir_at, line_header::file_name_at): New
1629 methods.
1630 (setup_type_unit_groups, setup_type_unit_groups)
1631 (psymtab_include_file_name): Simplify using the new methods.
1632 (lnp_state_machine) <the_line_header>: New field.
1633 <file>: Add comment.
1634 (lnp_state_machine::current_file): New method.
1635 (dwarf_record_line): Simplify using the new methods.
1636 (init_lnp_state_machine): Initialize the "the_line_header" field.
1637 (dwarf_decode_lines_1, dwarf_decode_lines, file_file_name):
1638 Simplify using the new methods.
1639
a7e80b9e
PA
16402017-03-27 Pedro Alves <palves@redhat.com>
1641
1642 * cp-name-parser.y (make_empty): Delete.
1643 (demangler_special, nested_name, ptr_operator, array_indicator)
1644 (direct_declarator, declarator_1): Use fill_comp instead of
1645 make_empty.
1646
21047726
PA
16472017-03-27 Pedro Alves <palves@redhat.com>
1648
1649 * xml-support.h (gdb_xml_debug): Pass a "first-to-check" argument
1650 to ATTRIBUTE_PRINTF.
1651 * solib-target.c (library_list_start_list): Print "string" not
1652 "version".
1653 * xml-tdesc.c (tdesc_start_field): Pass "field_name" to
1654 gdb_xml_error call.
1655
d721ba37
PA
16562017-03-27 Pedro Alves <palves@redhat.com>
1657
1658 * dwarf2read.c (struct file_and_directory): New.
1659 (dwarf2_get_dwz_file): Adjust to use std::string.
1660 (dw2_get_file_names_reader): Adjust to use file_and_directory.
1661 (find_file_and_directory): Adjust to return a file_and_directory
1662 object.
1663 (read_file_scope): Adjust to use file_and_directory. Remove
1664 make_cleanup/do_cleanups calls.
1665 (open_and_init_dwp_file): Adjust to use std::string. Remove
1666 make_cleanup/do_cleanups calls.
1667 * python/python.c (do_start_initialization): Adjust to ldirname
1668 returning a std::string.
1669 * utils.c (ldirname): Now returns a std::string.
1670 * utils.h (ldirname): Change return type to std::string.
1671 * xml-syscall.c (xml_init_syscalls_info): Adjust to ldirname
1672 returning a std::string.
1673 * xml-tdesc.c (file_read_description_xml): Likewise.
1674
ed771251
AH
16752017-03-24 Alan Hayward <alan.hayward@arm.com>
1676
1677 * regcache.c (regcache_debug_print_register): New function.
1678 * regcache.h (regcache_debug_print_register): New declaration.
1679 * target.c (debug_print_register): Remove.
1680 (target_fetch_registers): Call regcache_debug_print_register.
1681 (target_store_registers): Likewise.
1682
568c1b9f
PB
16832017-03-24 Pádraig Brady <pbrady@fb.com>
1684
1685 * dwarf2read.c (setup_type_unit_groups): Ensure dir_index doesn't
1686 reference beyond the 'lh->include_dirs' array before accessing to
1687 it.
1688 (psymtab_include_file_name): Likewise.
1689 (dwarf_decode_lines_1): Likewise.
1690 (dwarf_decode_lines): Likewise.
1691 (file_file_name): Likewise.
1692
3e00d44f
SM
16932017-03-23 Simon Marchi <simon.marchi@ericsson.com>
1694
1695 * fbsd-tdep.c (fbsd_corefile_thread): Don't set/restore
1696 inferior_ptid.
1697 * proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
1698 ps_lsetfpregs): Likewise.
1699 * regcache.c (regcache_raw_update, regcache_raw_write): Likewise.
1700 * sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
1701 ps_lsetfpregs): Likewise.
1702 * target.c (target_fetch_registers, target_store_registers):
1703 Remove asserts.
1704
077ae656
AH
17052017-03-23 Alan Hayward <alan.hayward@arm.com>
1706
1707 * sol-thread.c (sol_thread_store_registers): Remove regcache calls.
1708
1e2b521d
YQ
17092017-03-23 Yao Qi <yao.qi@linaro.org>
1710
1711 * aarch64-tdep.c (aarch64_process_record_test): Declare.
1712 (_initialize_aarch64_tdep): Register it.
1713 (aarch64_record_load_store): Handle PRFM instruction.
1714 (aarch64_process_record_test): New function.
1715
33877125
YQ
17162017-03-23 Yao Qi <yao.qi@linaro.org>
1717
1718 * aarch64-tdep.c (aarch64_record_load_store): Fix code
1719 indentation.
1720
a0eef940
YQ
17212017-03-23 Yao Qi <yao.qi@linaro.org>
1722
1723 * aarch64-tdep.c: Remove AARCH64_RECORD_FAILURE.
1724
3f2a3564
PR
17252017-03-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
1726
1727 python/python.c (do_start_initialization): Fix memory leak.
1728
b67aeab0
SM
17292017-03-22 Simon Marchi <simon.marchi@polymtl.ca>
1730
1731 * inf-ptrace.c (inf_ptrace_xfer_partial): Get pid from ptid
1732 using get_ptrace_pid.
1733 * linux-nat.c (linux_nat_xfer_partial): Don't set/restore
1734 inferior_ptid.
1735 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use lwp of
1736 inferior_ptid instead of pid.
1737
ffdbe864
YQ
17382017-03-22 Yao Qi <yao.qi@linaro.org>
1739
1740 * aarch64-tdep.c: Wrap locally used classes in anonymous
1741 namespace.
1742 * arm-tdep.c: Likewise.
1743 * linespec.c: Likewise.
1744 * ui-out.c: Likewise.
1745
9d736fbf
JG
17462017-03-22 Jonah Graham <jonah@kichwacoders.com>
1747
1748 PR gdb/19637
1749 * python/lib/gdb/printer/bound_registers.py: Import sys.
1750
3de88e9a
SM
17512017-03-21 Simon Marchi <simon.marchi@ericsson.com>
1752
1753 * windows-nat.c (do_windows_fetch_inferior_registers): Add
1754 windows_thread_info parameter and use it instead of
1755 current_thread.
1756 (windows_fetch_inferior_registers): Don't set current_thread,
1757 pass the thread to do_windows_fetch_inferior_registers. Use
1758 ptid from regcache instead of inferior_ptid.
1759 (do_windows_store_inferior_registers): Add windows_thread_info
1760 parameter and use it instead of current_thread.
1761 (windows_store_inferior_registers): Don't set current_thread,
1762 pass the thread to do_windows_store_inferior_registers. Use
1763 ptid from regcache instead of inferior_ptid.
1764
0e7b8f61
SM
17652017-03-21 Simon Marchi <simon.marchi@ericsson.com>
1766
1767 * ser-mingw.c (ser_windows_raw): Remove reference to
1768 struct serial::current_timeout.
1769
5badf10a
IR
17702017-03-21 Ivo Raisr <ivo.raisr@oracle.com>
1771
1772 PR tdep/20928
1773 * gdb/sparc-tdep.h (gdbarch_tdep) <sparc64_ccr_type>: New field.
1774 * gdb/sparc64-tdep.c (sparc64_ccr_type): New function.
1775 (sparc64_fsr_type): Fix %fsr decoding.
1776
cee59b3f
TW
17772017-03-21 Tim Wiederhake <tim.wiederhake@intel.com>
1778
1779 * python/py-record-btrace.c (btpy_insn_data): Change return type
1780 for Python 2.
1781
639a9038
SM
17822017-03-20 Simon Marchi <simon.marchi@polymtl.ca>
1783
1784 * spu-linux-nat.c (spu_fetch_inferior_registers,
1785 spu_store_inferior_registers): Use ptid from regcache, set and
1786 restore inferior_ptid.
1787 * spu-multiarch.c (spu_fetch_registers, spu_store_registers):
1788 Likewise.
1789
bcc0c096
SM
17902017-03-20 Simon Marchi <simon.marchi@polymtl.ca>
1791
1792 * i386-linux-nat.c (fetch_register, store_register,
1793 i386_linux_fetch_inferior_registers,
1794 i386_linux_store_inferior_registers): Use ptid from regcache.
1795 * ia64-linux-nat.c (ia64_linux_fetch_register,
1796 ia64_linux_store_register): Likewise.
1797 * inf-ptrace.c (inf_ptrace_fetch_register,
1798 inf_ptrace_store_register): Likewise.
1799 * m32r-linux-nat.c (m32r_linux_fetch_inferior_registers,
1800 m32r_linux_store_inferior_registers): Likewise.
1801 * m68k-bsd-nat.c (m68kbsd_fetch_inferior_registers,
1802 m68kbsd_store_inferior_registers): Likewise.
1803 * m68k-linux-nat.c (fetch_register, store_register,
1804 m68k_linux_fetch_inferior_registers,
1805 m68k_linux_store_inferior_registers): Likewise.
1806 * m88k-bsd-nat.c (m88kbsd_fetch_inferior_registers,
1807 m88kbsd_store_inferior_registers): Likewise.
1808 * mips-fbsd-nat.c (mips_fbsd_fetch_inferior_registers,
1809 mips_fbsd_store_inferior_registers): Likewise.
1810 * mips-linux-nat.c (mips64_linux_regsets_fetch_registers,
1811 mips64_linux_regsets_store_registers): Likewise.
1812 * mips-nbsd-nat.c (mipsnbsd_fetch_inferior_registers,
1813 mipsnbsd_store_inferior_registers): Likewise.
1814 * mips-obsd-nat.c (mips64obsd_fetch_inferior_registers,
1815 mips64obsd_store_inferior_registers): Likewise.
1816 * nto-procfs.c (procfs_fetch_registers, procfs_store_registers):
1817 Likewise.
1818 * ppc-fbsd-nat.c (ppcfbsd_fetch_inferior_registers,
1819 ppcfbsd_store_inferior_registers): Likewise.
1820 * ppc-linux-nat.c (ppc_linux_fetch_inferior_registers,
1821 ppc_linux_store_inferior_registers): Likewise.
1822 * ppc-nbsd-nat.c (ppcnbsd_fetch_inferior_registers,
1823 ppcnbsd_store_inferior_registers): Likewise.
1824 * ppc-obsd-nat.c (ppcobsd_fetch_registers,
1825 ppcobsd_store_registers): Likewise.
1826 * procfs.c (procfs_fetch_registers, procfs_store_registers):
1827 Likewise.
1828 * ravenscar-thread.c (ravenscar_fetch_registers,
1829 ravenscar_store_registers, ravenscar_prepare_to_store):
1830 Likewise.
1831 * record-btrace.c (record_btrace_fetch_registers,
1832 record_btrace_store_registers, record_btrace_prepare_to_store):
1833 Likewise.
1834 * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register):
1835 Lookup inferior using ptid from regcache, instead of
1836 current_inferior.
1837 * remote.c (remote_fetch_registers, remote_store_registers): Use
1838 ptid from regcache.
1839 * rs6000-nat.c (fetch_register, store_register): Likewise.
1840 * s390-linux-nat.c (s390_linux_fetch_inferior_registers,
1841 s390_linux_store_inferior_registers): Likewise.
1842 * sh-nbsd-nat.c (shnbsd_fetch_inferior_registers,
1843 shnbsd_store_inferior_registers): Likewise.
1844 * sol-thread.c (sol_thread_fetch_registers,
1845 sol_thread_store_registers): Likewise.
1846 * sparc-nat.c (sparc_fetch_inferior_registers,
1847 sparc_store_inferior_registers): Likewise.
1848 * tilegx-linux-nat.c (fetch_inferior_registers,
1849 store_inferior_registers): Likewise.
1850 * vax-bsd-nat.c (vaxbsd_fetch_inferior_registers,
1851 vaxbsd_store_inferior_registers): Likewise.
1852 * xtensa-linux-nat.c (fetch_gregs, store_gregs, fetch_xtregs,
1853 store_xtregs): Likewise.
1854
c0f55cc6
AV
18552017-03-20 Artemiy Volkov <artemiyv@acm.org>
1856
1857 PR gdb/14441
1858 * NEWS: Mention support for rvalue references in GDB and python.
1859 * doc/gdb.texinfo (C Plus Plus Expressions): Mention that GDB
1860 supports both lvalue and rvalue references.
1861
15c0a2a9
AV
18622017-03-20 Artemiy Volkov <artemiyv@acm.org>
1863
1864 PR gdb/14441
1865 * gdbtypes.c (rank_one_type): Implement overloading
1866 resolution rules regarding rvalue references.
1867
aa006118
AV
18682017-03-20 Artemiy Volkov <artemiyv@acm.org>
1869
1870 PR gdb/14441
1871 * aarch64-tdep.c (aarch64_type_align)
1872 (aarch64_extract_return_value, aarch64_store_return_value): Change
1873 lvalue reference type checks to general reference type checks.
1874 * amd64-tdep.c (amd64_classify): Likewise.
1875 * amd64-windows-tdep.c (amd64_windows_passed_by_integer_register):
1876 Likewise.
1877 * arm-tdep.c (arm_type_align, arm_extract_return_value)
1878 (arm_store_return_value): Likewise.
1879 * ax-gdb.c (gen_fetch, gen_cast): Likewise.
1880 * c-typeprint.c (c_print_type): Likewise.
1881 * c-varobj.c (adjust_value_for_child_access, c_value_of_variable)
1882 (cplus_number_of_children, cplus_describe_child): Likewise.
1883 * compile/compile-c-symbols.c (generate_vla_size): Likewise.
1884 * completer.c (expression_completer): Likewise.
1885 * cp-support.c (make_symbol_overload_list_adl_namespace):
1886 Likewise.
1887 * darwin-nat-info.c (info_mach_region_command): Likewise.
1888 * dwarf2loc.c (entry_data_value_coerce_ref)
1889 (value_of_dwarf_reg_entry): Likewise.
1890 * eval.c (ptrmath_type_p, evaluate_subexp_standard)
1891 (evaluate_subexp_for_address, evaluate_subexp_for_sizeof):
1892 Likewise.
1893 * findvar.c (extract_typed_address, store_typed_address):
1894 Likewise.
1895 * gdbtypes.c (rank_one_type): Likewise.
1896 * hppa-tdep.c (hppa64_integral_or_pointer_p): Likewise.
1897 * infcall.c (value_arg_coerce): Likewise.
1898 * language.c (pointer_type): Likewise.
1899 * m32c-tdep.c (m32c_reg_arg_type, m32c_m16c_address_to_pointer):
1900 Likewise.
1901 * m88k-tdep.c (m88k_integral_or_pointer_p): Likewise.
1902 * mn10300-tdep.c (mn10300_type_align): Likewise.
1903 * msp430-tdep.c (msp430_push_dummy_call): Likewise.
1904 * ppc-sysv-tdep.c (do_ppc_sysv_return_value)
1905 (ppc64_sysv_abi_push_param, ppc64_sysv_abi_return_value):
1906 Likewise.
1907 * printcmd.c (print_formatted, x_command): Likewise.
1908 * python/py-type.c (typy_get_composite, typy_template_argument):
1909 Likewise.
1910 * python/py-value.c (valpy_referenced_value)
1911 (valpy_get_dynamic_type, value_has_field): Likewise.
1912 * s390-linux-tdep.c (s390_function_arg_integer): Likewise.
1913 * sparc-tdep.c (sparc_integral_or_pointer_p): Likewise.
1914 * sparc64-tdep.c (sparc64_integral_or_pointer_p): Likewise.
1915 * spu-tdep.c (spu_scalar_value_p): Likewise.
1916 * symtab.c (lookup_symbol_aux): Likewise.
1917 * typeprint.c (whatis_exp, print_type_scalar): Likewise.
1918 * valarith.c (binop_types_user_defined_p, unop_user_defined_p):
1919 Likewise.
1920 * valops.c (value_cast_pointers, value_cast)
1921 (value_reinterpret_cast, value_dynamic_cast, value_addr, typecmp)
1922 (value_struct_elt, value_struct_elt_bitpos)
1923 (value_find_oload_method_list, find_overload_match)
1924 (value_rtti_indirect_type): Likewise.
1925 * valprint.c (val_print_scalar_type_p, generic_val_print):
1926 Likewise.
1927 * value.c (value_actual_type, value_as_address, unpack_long)
1928 (pack_long, pack_unsigned_long, coerce_ref_if_computed)
1929 (coerce_ref): Likewise.
1930 * varobj.c (varobj_get_value_type): Likewise.
1931
3fcf899d
AV
19322017-03-20 Artemiy Volkov <artemiyv@acm.org>
1933
1934 PR gdb/14441
1935 * doc/python.texi (Types in Python): Add TYPE_CODE_RVALUE_REF to
1936 table of constants.
1937 * python/lib/gdb/command/explore.py: Support exploring values
1938 of rvalue reference types.
1939 * python/lib/gdb/types.py: Implement get_basic_type() for
1940 rvalue reference types.
1941 * python/py-type.c (pyty_codes) <TYPE_CODE_RVALUE_REF>: New
1942 constant.
1943 * python/py-value.c (valpy_getitem): Add an rvalue reference
1944 check.
1945 (valpy_reference_value): Add new parameter "refcode".
1946 (valpy_lvalue_reference_value, valpy_rvalue_reference_value):
1947 New wrappers for valpy_reference_value().
1948 * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
1949 (gdbpy_invoke_xmethod): Likewise.
1950
4297a3f0
AV
19512017-03-20 Artemiy Volkov <artemiyv@acm.org>
1952
1953 PR gdb/14441
1954 * dwarf2read.c (process_die, read_type_die_1): Handle the
1955 DW_TAG_rvalue_reference_type DIE.
1956 (read_tag_reference_type): Add new parameter "refcode".
1957
e1cb3213
AV
19582017-03-20 Artemiy Volkov <artemiyv@acm.org>
1959
1960 PR gdb/14441
1961 * c-typeprint.c (c_print_type, c_type_print_varspec_prefix)
1962 (c_type_print_modifier, c_type_print_varspec_suffix)
1963 (c_type_print_base): Support printing rvalue reference types.
1964 * c-valprint.c (c_val_print, c_value_print): Support printing
1965 rvalue reference values.
1966
e4347c89
AV
19672017-03-20 Artemiy Volkov <artemiyv@acm.org>
1968
1969 PR gdb/14441
1970 * cp-name-parser.y (ptr_operator): Handle the '&&' token in
1971 typename.
1972 * cp-support.c (replace_typedefs): Handle
1973 DEMANGLE_COMPONENT_RVALUE_REFERENCE.
1974 * python/py-type.c (typy_lookup_type): Likewise.
1975
53cc15f5
AV
19762017-03-20 Artemiy Volkov <artemiyv@acm.org>
1977
1978 PR gdb/14441
1979 * c-exp.y (ptr_operator): Handle the '&&' token in the typename.
1980 * parse.c (insert_type): Change assert statement.
1981 (follow_types): Handle rvalue reference types.
1982 * parser-defs.h (enum type_pieces) <tp_rvalue_reference>: New
1983 constant.
1984
a65cfae5
AV
19852017-03-20 Artemiy Volkov <artemiyv@acm.org>
1986
1987 PR gdb/14441
1988 * ada-lang.c (ada_evaluate_subexp): Adhere to the new
1989 value_ref() interface.
1990 * c-valprint.c (c_value_print): Likewise.
1991 * infcall.c (value_arg_coerce): Likewise.
1992 * python/py-value.c (valpy_reference_value): Likewise.
1993 * valops.c (value_cast, value_reinterpret_cast)
1994 (value_dynamic_cast, typecmp): Likewise.
1995 (value_ref): Parameterize by kind of return value reference type.
1996 * value.h (value_ref): Add new parameter "refcode".
1997
3b224330
AV
19982017-03-20 Artemiy Volkov <artemiyv@acm.org>
1999
2000 PR gdb/14441
2001 * dwarf2read.c (read_tag_reference_type): Use
2002 lookup_lvalue_reference_type() instead of lookup_reference_type().
2003 * eval.c (evaluate_subexp_standard): Likewise.
2004 * f-exp.y: Likewise.
2005 * gdbtypes.c (make_reference_type, lookup_reference_type):
2006 Generalize with rvalue reference types.
2007 (lookup_lvalue_reference_type, lookup_rvalue_reference_type): New
2008 convenience wrappers for lookup_reference_type().
2009 * gdbtypes.h (make_reference_type, lookup_reference_type): Add a
2010 reference kind parameter.
2011 (lookup_lvalue_reference_type, lookup_rvalue_reference_type): Add
2012 wrappers for lookup_reference_type().
2013 * guile/scm-type.c (gdbscm_type_reference): Use
2014 lookup_lvalue_reference_type() instead of lookup_reference_type().
2015 * guile/scm-value.c (gdbscm_value_dynamic_type): Likewise.
2016 * parse.c (follow_types): Likewise.
2017 * python/py-type.c (typy_reference, typy_lookup_type): Likewise.
2018 * python/py-value.c (valpy_get_dynamic_type, valpy_getitem):
2019 Likewise.
2020 * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
2021 (gdbpy_invoke_xmethod): Likewise.
2022 * stabsread.c: Provide extra argument to make_reference_type()
2023 call.
2024 * valops.c (value_ref, value_rtti_indirect_type): Use
2025 lookup_lvalue_reference_type() instead of lookup_reference_type().
2026
f9aeb8d4
AV
20272017-03-20 Artemiy Volkov <artemiyv@acm.org>
2028
2029 PR gdb/14441
2030 * gdbtypes.h (enum type_code) <TYPE_CODE_RVALUE_REF>: New constant.
2031 (TYPE_IS_REFERENCE): New macro.
2032 (struct type): Add rvalue_reference_type field.
2033 (TYPE_RVALUE_REFERENCE_TYPE): New macro.
2034
51457a05
MAL
20352017-03-20 Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
2036
2037 * NEWS: Add an entry about new '-file-list-shared-libraries' command.
2038 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries):
2039 New function definition.
2040 * mi/mi-cmds.c (mi_cmds): Add -file-list-shared-libraries command.
2041 * mi/mi-cmds.h (mi_cmd_file_list_shared_libraries):
2042 New function declaration.
2043 * mi/mi-interp.c (mi_output_solib_attribs): New Function.
2044 * mi/mi-interp.h: New file.
2045 * solib.c (info_sharedlibrary_command): Replace for loop with
2046 ALL_SO_LIBS macro
2047 * solib.h (update_solib_list): New function declaration.
2048 (so_list_head): Move macro.
2049 * solist.h (ALL_SO_LIBS): New macro.
2050
e696b3ad
MAL
20512017-03-20 Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
2052
2053 * infcmd.c (post_create_inferior): Remove unused argument in
2054 call to solib_add.
2055 * remote.c (remote_start_remote): Likewise.
2056 * solib-frv.c (frv_fetch_objfile_link_map): Likewise.
2057 * solib-svr4.c: (svr4_fetch_objfile_link_map): Likewise.
2058 (enable_break): Likewise.
2059 * solib.c (update_solib_list): Remove unused target argument
2060 and its documentation.
2061 (solib_add): Remove unused target argument. Remove unused
2062 argument in call to update_solib_list.
2063 (info_sharedlibrary_command): Remove unused argument in call
2064 to update_solib_list.
2065 (sharedlibrary_command): Remove unused argument in call to
2066 solib_add.
2067 (handle_solib_event): Likewise.
2068 (reload_shared_libraries): Likewise.
2069 * solib.h (solib_add): Remove unused target argument.
2070
dcb84eda
AA
20712017-03-20 Andreas Arnez <arnez@linux.vnet.ibm.com>
2072
2073 * s390-linux-tdep.c (is_rsi, is_rie): Remove functions.
2074 (s390_displaced_step_fixup): Cover relative branches with the
2075 default fixup handling. This fixes lack of support for some
2076 relative branch instructions.
2077
d9cb6cdc
SM
20782017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
2079
2080 * i386-gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Use
2081 ptid from regcache.
2082
1afaf9f4
SM
20832017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
2084
2085 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers,
2086 i386_darwin_store_inferior_registers): Use ptid from regcache.
2087
aac12e24
SM
20882017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
2089
2090 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers,
2091 i386bsd_store_inferior_registers): Use ptid from regcache.
2092
bbe1eef1
SM
20932017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
2094
2095 * hppa-obsd-nat.c (hppaobsd_fetch_registers,
2096 hppaobsd_store_registers): Use ptid from regcache.
2097
10799020
SM
20982017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
2099
2100 * hppa-nbsd-nat.c (hppanbsd_fetch_registers,
2101 hppanbsd_store_registers): Use ptid from regcache.
2102
00204cf7
SM
21032017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
2104
2105 * hppa-linux-nat.c (fetch_register, store_register): Use ptid
2106 from regcache. Use get_ptrace_pid.
2107
11a33714
SM
21082017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
2109
2110 * corelow.c (get_core_register_section): Use ptid from regcache,
2111 update doc.
2112
317cd492
SM
21132017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
2114
2115 * bsd-uthread.c (bsd_uthread_fetch_registers,
2116 bsd_uthread_store_registers): Use ptid from regcache, set and
2117 restore inferior_ptid.
2118
9ac8a7c2
SM
21192017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
2120
2121 * arm-nbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
2122 fetch_fp_regs, store_register, store_regs, store_fp_register,
2123 store_fp_regs): Use ptid from regcache.
2124
4ac4bb6a
SM
21252017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
2126
2127 * arm-linux-nat.c (fetch_fpregs, store_fpregs, fetch_regs,
2128 store_regs, fetch_wmmx_regs, store_wmmx_regs, fetch_vfp_regs,
2129 store_vfp_regs): Use ptid from regcache.
2130
9bcbdca8
PA
21312017-03-17 Pedro Alves <palves@redhat.com>
2132
2133 PR remote/21188
2134 * ser-base.c (ser_base_wait_for): Add comment.
2135 (do_ser_base_readchar): Improve comment based on the ser-unix.c's
2136 version.
2137 * ser-unix.c (hardwire_raw): Remove reference to
2138 scb->current_timeout.
2139 (wait_for, do_hardwire_readchar, hardwire_readchar): Delete.
2140 (hardwire_ops): Install ser_base_readchar instead of
2141 hardwire_readchar.
2142 * serial.h (struct serial) <current_timeout, timeout_remaining>:
2143 Remove fields.
2144
7503099f
JG
21452017-03-17 Jonah Graham <jonah@kichwacoders.com>
2146
2147 PR gdb/19637
2148 * python/lib/gdb/printer/bound_registers.py: Add support for
2149 Python 3.
2150
7942e96e
AA
21512017-03-16 Andreas Arnez <arnez@linux.vnet.ibm.com>
2152
2153 * dwarf2loc.c (indirect_synthetic_pointer): Get data type of
2154 pointed-to DIE and pass it to dwarf2_evaluate_loc_desc_full.
2155 (dwarf2_evaluate_loc_desc_full): New parameter subobj_type; rename
2156 byte_offset to subobj_byte_offset. Fix the handling of
2157 DWARF_VALUE_STACK on big-endian targets when coming via an
2158 implicit pointer.
2159 (dwarf2_evaluate_loc_desc): Adjust call to
2160 dwarf2_evaluate_loc_desc_full.
2161 * dwarf2loc.h (dwarf2_fetch_die_type_sect_off): New declaration.
2162 * dwarf2read.c (dwarf2_fetch_die_type_sect_off): New function.
2163
ba14f379
YQ
21642017-03-16 Yao Qi <yao.qi@linaro.org>
2165
2166 * arm-tdep.c (thumb_record_misc): Decode CBNZ, CBZ, REV16,
2167 and REVSH instructions.
2168
b121eeb9
YQ
21692017-03-16 Yao Qi <yao.qi@linaro.org>
2170
2171 * arm-tdep.c [GDB_SELF_TEST]: include "selftests.h".
2172 (arm_record_test): Declare.
2173 (_initialize_arm_tdep) [GDB_SELF_TEST]: call register_self_test.
2174 (thumb_record_ld_st_reg_offset): Rewrite the opcode matching to
2175 align with the manual.
2176 (thumb_record_misc): Adjust the code order to align with the
2177 manual.
2178 (thumb2_record_decode_insn_handler): Fix instruction matching.
2179 (instruction_reader_thumb): New class.
2180 (arm_record_test): New function.
2181
728a7913
YQ
21822017-03-16 Yao Qi <yao.qi@linaro.org>
2183
2184 * arm-tdep.c (abstract_memory_reader): New class.
2185 (instruction_reader): New class.
2186 (extract_arm_insn): Add argument 'reader'. Callers updated.
2187 (decode_insn): Likewise.
2188
34b43320
DE
21892017-03-16 Doug Evans <dje@google.com>
2190
a7c0469f
DE
2191 * guile/scm-lazy-string.c (lazy_string_smob): Clarify use of LENGTH
2192 member. Change type of TYPE member to SCM. All uses updated.
2193 (lsscm_make_lazy_string_smob): Add assert.
2194 (lsscm_make_lazy_string): Flag bad length values.
2195 (lsscm_elt_type): New function.
2196 (gdbscm_lazy_string_to_value): Rewrite to use
2197 lsscm_safe_lazy_string_to_value.
2198 (lsscm_safe_lazy_string_to_value): Fix handling of TYPE_CODE_PTR.
2199 * guile/scm-value.c (gdbscm_value_to_lazy_string): Flag bad length
2200 values. Fix TYPE_CODE_PTR. Handle TYPE_CODE_ARRAY. Handle typedefs
2201 in incoming type.
2202 * guile/guile-internal.h (tyscm_scm_to_type): Declare.
2203 * guile/scm-type.c (tyscm_scm_to_type): New function.
2204
22052017-03-15 Doug Evans <dje@google.com>
2206
34b43320
DE
2207 PR python/17728, python/18439, python/18779
2208 * python/py-lazy-string.c (lazy_string_object): Clarify use of LENGTH
2209 member. Change type of TYPE member to PyObject *. All uses updated.
2210 (stpy_convert_to_value): Fix handling of TYPE_CODE_PTR.
2211 (gdbpy_create_lazy_string_object): Flag bad length values.
2212 Handle TYPE_CODE_ARRAY with possibly different user-provided length.
2213 Handle typedefs in incoming type.
2214 (stpy_lazy_string_elt_type): New function.
2215 (gdbpy_extract_lazy_string): Call it.
2216 * python/py-value.c (valpy_lazy_string): Flag bad length values.
2217 Fix handling of TYPE_CODE_PTR. Handle TYPE_CODE_ARRAY. Handle
2218 typedefs in incoming type.
2219
a3a5fecc
DE
22202017-03-16 Doug Evans <dje@google.com>
2221
2222 * guile/guile-internal.h (tyscm_scm_to_type): Declare.
2223 * guile/scm-type.c (tyscm_scm_to_type): New function.
2224
28f1c605
JW
22252017-03-16 Jiong Wang <jiong.wang@arm.com>
2226
2227 * inf-ptrace.c (inf_ptrace_peek_poke): Change the type to
2228 "ULONGEST" for "skip".
2229
87c336f6
AA
22302017-03-14 Andreas Arnez <arnez@linux.vnet.ibm.com>
2231
2232 PR gdb/21220
2233 * inf-ptrace.c (inf_ptrace_xfer_partial): In "case
2234 TARGET_OBJECT_MEMORY", extract the logic for ptrace peek/poke...
2235 (inf_ptrace_peek_poke): ...here. New function. Now also loop
2236 over ptrace peek/poke until end of buffer or error.
2237
cf81cf60
SM
22382017-03-14 Simon Marchi <simon.marchi@ericsson.com>
2239
2240 * parse.c (length_of_subexp): Make static.
2241 * parser-defs.h (length_of_subexp): Remove.
2242
a379284a
AA
22432017-03-14 Andreas Arnez <arnez@linux.vnet.ibm.com>
2244
2245 * linux-nat.c (linux_proc_xfer_partial): Handle write operations
2246 as well.
2247
8a6200ba
PA
22482017-03-14 Pedro Alves <palves@redhat.com>
2249
2250 * cp-name-parser.y (cp_demangled_name_to_comp): Update comment.
2251 (main): Use std::unique_ptr. Remove calls to
2252 cp_demangled_name_parse_free.
2253
f79ec206
SM
22542017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
2255
2256 * alpha-bsd-nat.c (alphabsd_fetch_inferior_registers,
2257 alphabsd_store_inferior_registers): Use regcache->ptid instead
2258 of inferior_ptid.
2259
edb5fb00
SM
22602017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
2261
2262 * aix-thread.c (aix_thread_fetch_registers,
2263 aix_thread_store_registers): Use regcache->ptid instead of
2264 inferior_ptid.
2265
55119686
SM
22662017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
2267
2268 * aarch64-linux-nat.c (fetch_gregs_from_thread,
2269 store_gregs_to_thread, fetch_fpregs_from_thread,
2270 store_fpregs_to_thread): Use regcache->ptid instead of
2271 inferior_ptid.
2272
6a06fbb7
SM
22732017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
2274
2275 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers,
2276 amd64_linux_fetch_inferior_registers): Use regcache->ptid
2277 instead of inferior_ptid.
2278
c6386875
SM
22792017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
2280
2281 * target.c (target_fetch_registers, target_store_registers): Add
2282 assert.
2283
ddaaf0fb
SM
22842017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
2285
2286 * regcache.h (regcache_get_ptid): New function.
2287 * regcache.c (regcache_get_ptid): New function.
2288
b9da89d1 22892017-03-13 Mark Wielaard <mark@klomp.org>
2290
2291 * cp-name-parser.y (make_empty): Initialize d_printing to zero.
2292
5f4d1085
KS
22932017-03-10 Keith Seitz <keiths@redhat.com>
2294
2295 PR c++/8218
2296 * c-typeprint.c (cp_type_print_method_args): Skip artificial arguments.
2297
c65d6b55
PA
22982017-03-08 Pedro Alves <palves@redhat.com>
2299
2300 PR gdb/18360
2301 * infrun.c (start_step_over, do_target_resume, resume)
2302 (restart_threads): Assert we're not resuming a thread that is
2303 meant to be stopped.
2304 (infrun_thread_stop_requested_callback): Delete.
2305 (infrun_thread_stop_requested): If the thread is internally
2306 stopped, queue a pending stop event and clear the thread's
2307 inline-frame state.
2308 (handle_stop_requested): New function.
2309 (handle_syscall_event, handle_inferior_event_1): Use
2310 handle_stop_requested.
2311 (handle_stop_requested): New function.
2312 (handle_signal_stop): Set the thread's stop_signal here instead of
2313 at caller.
2314 (finish_step_over): Clear step over info unconditionally.
2315 (handle_signal_stop): If the user had interrupted the event
2316 thread, consider the stop a random signal.
2317 (handle_signal_stop) <signal arrived while stepping over
2318 breakpoint>: Don't restart threads here.
2319 (stop_waiting): Don't clear step-over info here.
2320
15c22686
PA
23212017-03-08 Pedro Alves <palves@redhat.com>
2322
2323 PR 21206
2324 * common/gdb_unlinker.h (unlinker::unlinker): Attribute nonnull
2325 goes to argument 2, not 1.
2326
6e5d74e7
PA
23272017-03-08 Pedro Alves <palves@redhat.com>
2328
2329 PR cli/21218
2330 * top.c (gdb_readline_wrapper): Avoid passing NULL to
2331 display_gdb_prompt.
2332 (command_line_input): Add comment.
2333
9753a2f6
PA
23342017-03-08 Pedro Alves <palves@redhat.com>
2335
2336 PR tui/21216
2337 * tui/tui-file.c (tui_file::write): New.
2338 * tui/tui-file.h (tui_file): Override "write".
2339 * tui/tui-io.c (do_tui_putc, update_start_line): New functions,
2340 factored out from ...
2341 (tui_puts): ... here.
2342 (tui_putc): Use them.
2343 (tui_write): New function.
2344 * tui/tui-io.h (tui_write): Declare.
2345
1672e0d9
SDJ
23462017-03-07 Sergio Durigan Junior <sergiodj@redhat.com>
2347
2348 * Makefile.in (SFILES): Replace "environ.c" with
2349 "common/environ.c".
2350 (HFILES_NO_SRCDIR): Likewise, for "environ.h".
2351 * environ.c: Include "common-defs.h" instead of "defs.h. Moved
2352 to...
2353 * common/environ.c: ... here.
2354 * environ.h: Moved to...
2355 * common/environ.h: ... here.
2356
f7bb4e3a
PB
23572017-03-07 Peter Bergner <bergner@vnet.ibm.com>
2358
2359 * gdbarch.sh (pstring_ptr): New static function.
2360 (gdbarch_disassembler_options): Use it.
2361 (gdbarch_verify_disassembler_options): Print valid_disassembler_options,
2362 not valid_disassembler_option->name.
2363 * gdbarch.c: Regenerate.
2364
e45ced6c
PB
23652017-03-07 Peter Bergner <bergner@vnet.ibm.com>
2366
2367 * config/powerpc/ppc64-linux.mh (MH_CFLAGS): Delete.
2368
5f6fd321
PA
23692017-03-07 Pedro Alves <palves@redhat.com>
2370
2371 * tui/tui-regs.c (tui_restore_gdbout): Don't delete gdb_stdout.
2372
6dbb839a 23732017-03-07 Walfred Tedeschi <walfred.tedeschi@intel.com>
4a612d6f
WT
2374
2375 * i387-tdep.h (i387_reset_bnd_regs): Add function definition.
2376 * i387-tdep.c (i387_reset_bnd_regs): Add function implementation.
2377 * i386-tdep.c (i386_push_dummy_call): Call i387_reset_bnd_regs.
6dbb839a 2378 * amd64-tdep.c (amd64_push_dummy_call): Call i387_reset_bnd_regs.
4a612d6f 2379
d274ecf4
SM
23802017-03-06 Simon Marchi <simon.marchi@ericsson.com>
2381
2382 * xtensa-linux-nat.c (fetch_gregs): Remove const.
2383
df97be55
SM
23842017-03-03 Simon Marchi <simon.marchi@ericsson.com>
2385
2386 * remote.c (remote_add_target_side_commands): Use range-based
2387 for loop.
2388
7d45f3df
YQ
23892017-03-03 Yao Qi <yao.qi@linaro.org>
2390
2391 PR gdb/21165
2392 * ada-valprint.c (ada_val_print_ref): Call value_fetch_lazy if
2393 value is lazy.
2394 * valprint.c (common_val_print): Likewise.
2395
65b48a81
PB
23962017-02-28 Peter Bergner <bergner@vnet.ibm.com>
2397
2398 * NEWS: Mention new set/show disassembler-options commands.
2399 * doc/gdb.texinfo: Document new set/show disassembler-options commands.
2400 * disasm.c: Include "arch-utils.h", "gdbcmd.h" and "safe-ctype.h".
2401 (prospective_options): New static variable.
2402 (gdb_disassembler::gdb_disassembler): Initialize
2403 m_di.disassembler_options.
2404 (gdb_buffered_insn_length_init_dis): Initilize di->disassembler_options.
2405 (get_disassembler_options): New function.
2406 (set_disassembler_options): Likewise.
2407 (set_disassembler_options_sfunc): Likewise.
2408 (show_disassembler_options_sfunc): Likewise.
2409 (disassembler_options_completer): Likewise.
2410 (_initialize_disasm): Likewise.
2411 * disasm.h (get_disassembler_options): New prototype.
2412 (set_disassembler_options): Likewise.
2413 * gdbarch.sh (gdbarch_disassembler_options): New variable.
2414 (gdbarch_verify_disassembler_options): Likewise.
2415 * gdbarch.c: Regenerate.
2416 * gdbarch.h: Likewise.
2417 * arm-tdep.c (num_disassembly_options): Delete.
2418 (set_disassembly_style): Likewise.
2419 (arm_disassembler_options): New static variable.
2420 (set_disassembly_style_sfunc): Convert short style name into long
2421 option name. Call set_disassembler_options.
2422 (show_disassembly_style_sfunc): New function.
2423 (arm_gdbarch_init): Call set_gdbarch_disassembler_options and
2424 set_gdbarch_verify_disassembler_options.
2425 (_initialize_arm_tdep): Delete regnames variable and update callers.
2426 (arm_disassembler_options): Initialize.
2427 (disasm_options): New variable.
2428 (num_disassembly_options): Rename from this...
2429 (num_disassembly_styles): ...to this. Compute by scanning through
2430 disasm_options.
2431 (valid_disassembly_styles): Initialize using disasm_options.
2432 Remove calls to parse_arm_disassembler_option, get_arm_regnames and
2433 set_arm_regname_option.
2434 Pass show_disassembly_style_sfunc to the "disassembler" setshow command.
2435 * rs6000-tdep.c (powerpc_disassembler_options): New static variable.
2436 (rs6000_gdbarch_init): Call set_gdbarch_disassembler_options and
2437 set_gdbarch_verify_disassembler_options.
2438 * s390-tdep.c (s390_disassembler_options): New static variable.
2439 (s390_gdbarch_init):all set_gdbarch_disassembler_options and
2440 set_gdbarch_verify_disassembler_options.
2441
d538e36d
SM
24422017-02-27 Simon Marchi <simon.marchi@ericsson.com>
2443
2444 * remote.c (remote_add_target_side_condition): Remove "struct"
2445 keyword from range-based for loop.
2446
83621223
SM
24472017-02-27 Simon Marchi <simon.marchi@ericsson.com>
2448
2449 * remote.c (remote_add_target_side_condition): Use range-based
2450 for loop. Update comment.
2451
2123df0e
YQ
24522017-02-27 Yao Qi <yao.qi@linaro.org>
2453
2454 * f-typeprint.c (f_print_type): Check "varstring" is empty first.
2455
8e368124
AH
24562017-02-26 Alan Hayward <alan.hayward@arm.com>
2457
2458 * regcache.c (regcache_raw_update): New function.
2459 (regcache_raw_read): Move code to regcache_raw_update.
2460 * regcache.h (regcache_raw_update): New declaration.
2461 * remote.c (remote_prepare_to_store): Call regcache_raw_update.
2462
a49dd8dd
JK
24632017-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2464
2465 * dwarf2read.c (create_debug_type_hash_table): Initialize
2466 header.signature and header.type_offset_in_tu.
2467
34e4bae9
PA
24682017-02-24 Pedro Alves <palves@redhat.com>
2469
2470 * symtab.c (make_file_symbol_completion_list_1): Use
2471 add_symtab_completions.
2472
b0e4b369
AH
24732017-02-24 Alan Hayward <alan.hayward@arm.com>
2474
2475 * stack.c (frame_info): Use frame_unwind_register_value to avoid buf.
2476
975c21ab
AH
24772017-02-24 Alan Hayward <alan.hayward@arm.com>
2478
2479 * i386-tdep.c (i386_pseudo_register_read_into_value): Use
2480 I386_MAX_REGISTER_SIZE.
2481 (i386_pseudo_register_write): Likewise.
2482 (i386_process_record): Likewise.
2483 * i387-tdep.c (i387_supply_xsave): Likewise.
2484 * m68k-linux-nat.c (fetch_register): Use M68K_MAX_REGISTER_SIZE.
2485 (store_register): Likewise.
2486
14bc53a8
PA
24872017-02-23 Pedro Alves <palves@redhat.com>
2488
2489 * ada-lang.c: Include "common/function-view.h".
2490 (ada_iterate_over_symbols): Adjust to use function_view as
2491 callback type.
2492 (struct add_partial_datum, ada_complete_symbol_matcher): Delete.
2493 (ada_make_symbol_completion_list): Use a lambda.
2494 (ada_exc_search_name_matches): Delete.
2495 (name_matches_regex): New.
2496 (ada_add_global_exceptions): Use a lambda and name_matches_regex.
2497 * compile/compile-c-support.c: Include "common/function-view.h".
2498 (print_one_macro): Change prototype to accept a ui_file pointer.
2499 (write_macro_definitions): Use a lambda.
2500 * dwarf2read.c: Include "common/function-view.h".
2501 (dw2_map_expand_apply, dw2_map_symtabs_matching_filename)
2502 (dw2_expand_symtabs_matching): Adjust to use function_view as
2503 callback type.
2504 * language.h: Include "common/function-view.h".
2505 (struct language_defn) <la_iterate_over_symbols>: Adjust to use
2506 function_view as callback type.
2507 (LA_ITERATE_OVER_SYMBOLS): Remove DATA parameter.
2508 * linespec.c: Include "common/function-view.h".
2509 (collect_info::add_symbol): New method.
2510 (struct symbol_and_data_callback, iterate_inline_only, struct
2511 symbol_matcher_data, iterate_name_matcher): Delete.
2512 (iterate_over_all_matching_symtabs): Adjust to use function_view
2513 as callback type and lambdas.
2514 (iterate_over_file_blocks): Adjust to use function_view as
2515 callback type.
2516 (decode_compound_collector): Now a class with private fields.
2517 (decode_compound_collector::release_symbols): New method.
2518 (collect_one_symbol): Rename to...
2519 (decode_compound_collector::operator()): ... this and adjust.
2520 (lookup_prefix_sym): decode_compound_collector construction bits
2521 move to decode_compound_collector ctor. Pass the
2522 decode_compound_collector object directly as callback. Remove
2523 cleanups and use decode_compound_collector::release_symbols
2524 instead.
2525 (symtab_collector): Now a class with private fields.
2526 (symtab_collector::release_symtabs): New method.
2527 (add_symtabs_to_list): Rename to...
2528 (symtab_collector::operator()): ... this and adjust.
2529 (collect_symtabs_from_filename): symtab_collector construction
2530 bits move to symtab_collector ctor. Pass the symtab_collector
2531 object directly as callback. Remove cleanups and use
2532 symtab_collector::release_symtabs instead.
2533 (collect_symbols): Delete.
2534 (add_matching_symbols_to_info): Use lambdas.
2535 * macrocmd.c (print_macro_callback): Delete.
2536 (info_macro_command): Use a lambda.
2537 (info_macros_command): Pass print_macro_definition as callable
2538 directly.
2539 (print_one_macro): Remove 'ignore' parameter.
2540 (macro_list_command): Adjust.
2541 * macrotab.c (macro_for_each_data::fn): Now a function_view.
2542 (macro_for_each_data::user_data): Delete field.
2543 (foreach_macro): Adjust to call the function_view.
2544 (macro_for_each): Adjust to use function_view as callback type.
2545 (foreach_macro_in_scope): Adjust to call the function_view.
2546 (macro_for_each_in_scope): Adjust to use function_view as callback
2547 type.
2548 * macrotab.h: Include "common/function-view.h".
2549 (macro_callback_fn): Declare a prototype instead of a pointer.
2550 Remove "user_data" parameter.
2551 (macro_for_each, macro_for_each_in_scope): Adjust to use
2552 function_view as callback type.
2553 * psymtab.c (partial_map_expand_apply)
2554 (psym_map_symtabs_matching_filename, recursively_search_psymtabs):
2555 Adjust to use function_view as callback type and to return bool.
2556 (psym_expand_symtabs_matching): Adjust to use function_view as
2557 callback types.
2558 * symfile-debug.c (debug_qf_map_symtabs_matching_filename): Adjust
2559 to use function_view as callback type and to return bool.
2560 (debug_qf_expand_symtabs_matching): Adjust to use function_view as
2561 callback types.
2562 * symfile.c (expand_symtabs_matching): Adjust to use function_view
2563 as callback types.
2564 * symfile.h: Include "common/function-view.h".
2565 (expand_symtabs_file_matcher_ftype)
2566 (expand_symtabs_symbol_matcher_ftype)
2567 (expand_symtabs_exp_notify_ftype): Remove "data" parameter and
2568 return bool.
2569 (quick_symbol_functions::map_symtabs_matching_filename)
2570 (quick_symbol_functions::expand_symtabs_matching): Adjust to use
2571 function_view as callback type and return bool.
2572 (expand_symtabs_matching): Adjust to use function_view as callback
2573 type.
2574 (maintenance_expand_name_matcher)
2575 (maintenance_expand_file_matcher): Delete.
2576 (maintenance_expand_symtabs): Use lambdas.
2577 * symtab.c (iterate_over_some_symtabs): Adjust to use
2578 function_view as callback types and return bool.
2579 (iterate_over_symtabs): Likewise. Use unique_xmalloc_ptr instead
2580 of a cleanup.
2581 (lookup_symtab_callback): Delete.
2582 (lookup_symtab): Use a lambda.
2583 (iterate_over_symbols): Adjust to use function_view as callback
2584 type.
2585 (struct search_symbols_data, search_symbols_file_matches)
2586 (search_symbols_name_matches): Delete.
2587 (search_symbols): Use a pair of lambdas.
2588 (struct add_name_data, add_macro_name, symbol_completion_matcher)
2589 (symtab_expansion_callback): Delete.
2590 (default_make_symbol_completion_list_break_on_1): Use lambdas.
2591 * symtab.h: Include "common/function-view.h".
2592 (iterate_over_some_symtabs): Adjust to use function_view as
2593 callback type and return bool.
2594 (iterate_over_symtabs): Adjust to use function_view as callback
2595 type.
2596 (symbol_found_callback_ftype): Remove 'data' parameter and return
2597 bool.
2598 (iterate_over_symbols): Adjust to use function_view as callback
2599 type.
2600
07e253aa
PA
26012017-02-23 Pedro Alves <palves@redhat.com>
2602
2603 * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS): New.
2604 (%.o) <unittests/%.c>: New pattern.
2605 * configure.ac ($development): Add $(SUBDIR_UNITTESTS_OBS) to
2606 CONFIG_OBS, and $(SUBDIR_UNITTESTS_SRCS) to CONFIG_SRCS.
2607 * common/function-view.h: New file.
2608 * unittests/function-view-selftests.c: New file.
2609 * configure: Regenerate.
2610
8eaf5320
SM
26112017-02-23 Simon Marchi <simon.marchi@ericsson.com>
2612
2613 * bsd-uthread.c (bsd_uthread_thread_alive): Use ptid instead of
2614 inferior_ptid.
2615 * go32-nat.c (go32_thread_alive): Likewise.
2616
38768751
YQ
26172017-02-23 Yao Qi <yao.qi@linaro.org>
2618
2619 * varobj-iter.h (varobj_iter_delete): Call xfree instead of
2620 delete.
2621
0a8beaba
YQ
26222017-02-23 Yao Qi <yao.qi@linaro.org>
2623
2624 * varobj.c (varobj_clear_saved_item): Use delete instead of
2625 xfree.
2626 (update_dynamic_varobj_children): Likewise.
2627
58fdfd2c
JK
26282017-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2629
2630 * dwarf2read.c (dwarf2_record_block_ranges): Add forgotten BASEADDR.
2631
1b90b139
SM
26322017-02-21 Simon Marchi <simon.marchi@ericsson.com>
2633
2634 * common/enum-flags.h (enum_flags::enum_flags): Initialize
2635 m_enum_value to 0 in default constructor.
2636
2039d74e
EBM
26372017-02-21 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
2638
2639 * rs6000-tdep.c (LOAD_AND_RESERVE_MASK): Rename from LWARX_MASK.
2640 (STORE_CONDITIONAL_MASK): Rename from STWCX_MASK.
2641 (LBARX_INSTRUCTION, LHARX_INSTRUCTION, LQARX_INSTRUCTION,
2642 STBCX_INSTRUCTION, STHCX_INSTRUCTION, STQCX_INSTRUCTION): New defines.
2643 (IS_LOAD_AND_RESERVE_INSN, IS_STORE_CONDITIONAL_INSN): New macros.
2644 (ppc_displaced_step_copy_insn): Use IS_LOAD_AND_RESERVE_INSN.
2645 (ppc_deal_with_atomic_sequence): Use IS_LOAD_AND_RESERVE_INSN and
2646 IS_STORE_CONDITIONAL_INSN.
2647
7814882a
JK
26482017-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2649
2650 * dwarf2_rnglists_process: Initialize range_beginning and range_end.
2651
0ae60b63
JK
26522017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2653
2654 * NEWS (Changes since GDB 7.12): Add DWARF-5.
2655
0224619f
JK
26562017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2657
2658 * dwarf2read.c (skip_one_die, read_attribute_value)
2659 (dwarf2_const_value_attr, dump_die_shallow)
2660 (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
2661 (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_data16.
2662
0af92d60
JK
26632017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2664
2665 * dwarf2read.c (read_file_scope): Rename DW_MACRO_GNU_*.
2666 (dwarf_parse_macro_header): Accept DWARF version 5.
2667 (dwarf_decode_macro_bytes, dwarf_decode_macros): Rename DW_MACRO_GNU_*.
2668
216f72a1
JK
26692017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2670
2671 * block.c (call_site_for_pc): Rename DW_OP_GNU_*, DW_TAG_GNU_* and
2672 DW_AT_GNU_*.
2673 * common/common-exceptions.h (enum errors): Likewise.
2674 * dwarf2-frame.c (class dwarf_expr_executor): Likewise.
2675 * dwarf2expr.c (dwarf_block_to_dwarf_reg)
2676 (dwarf_expr_context::execute_stack_op): Likewise.
2677 * dwarf2expr.h (struct dwarf_expr_context, struct dwarf_expr_piece):
2678 Likewise.
2679 * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type)
2680 (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
2681 (show_entry_values_debug, call_site_to_target_addr)
2682 (func_addr_to_tail_call_list, func_verify_no_selftailcall)
2683 (dwarf_expr_reg_to_entry_parameter, dwarf_entry_parameter_to_value)
2684 (entry_data_value_free_closure, value_of_dwarf_reg_entry)
2685 (value_of_dwarf_block_entry, indirect_pieced_value)
2686 (symbol_needs_eval_context::push_dwarf_reg_entry_value):
2687 (disassemble_dwarf_expression): Likewise.
2688 * dwarf2read.c (process_die, inherit_abstract_dies)
2689 (read_call_site_scope): Likewise.
2690 * gdbtypes.h (struct func_type, struct call_site_parameter)
2691 (struct call_site): Likewise.
2692 * stack.c (read_frame_arg): Likewise.
2693 * std-operator.def (OP_VAR_ENTRY_VALUE): Likewise.
2694
43988095
JK
26952017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2696
2697 * defs.h (read_unsigned_leb128): New declaration.
2698 * dwarf2loc.c (decode_debug_loclists_addresses): New function.
2699 (decode_debug_loc_dwo_addresses): Update DEBUG_LOC_* to DW_LLE_*.
2700 (dwarf2_find_location_expression): Call also
2701 decode_debug_loclists_addresses. Handle DWARF-5 ULEB128 length.
2702 * dwarf2loc.h (dwarf2_version): New declaration.
2703 * dwarf2read.c (struct dwarf2_per_objfile): Add loclists, line_str,
2704 rnglists.
2705 (dwarf2_elf_names): Add .debug_loclists, .debug_line_str,
2706 .debug_rnglists.
2707 (struct dwop_section_names): Add loclists_dwo.
2708 (dwop_section_names): Add .debug_loclists.dwo.
2709 (struct comp_unit_head): Add unit_type, signature, type_offset_in_tu.
2710 (struct dwarf2_per_cu_data): Add dwarf_version.
2711 (struct dwo_sections): Add loclists.
2712 (struct attr_abbrev): Add implicit_const.
2713 (read_indirect_line_string): New declaration.
2714 (read_unsigned_leb128): Delete declaration.
2715 (rcuh_kind): New definition.
2716 (read_and_check_comp_unit_head): Change parameter
2717 is_debug_types_section to section_kind.
2718 (dwarf2_locate_sections): Handle loclists, line_str and rnglists.
2719 (read_comp_unit_head): Change parameter abfd to section, add parameter
2720 section_kind. Handle DWARF-5.
2721 (error_check_comp_unit_head): Accept also DWARF version 5.
2722 (read_and_check_comp_unit_head): Change parameter
2723 is_debug_types_section to section_kind.
2724 (read_and_check_type_unit_head): Delete function.
2725 (read_abbrev_offset): Handle DWARF-5.
2726 (create_debug_type_hash_table): Add parameter section_kind. Process
2727 only DW_UT_type. Use signature and type_offset_in_tu from struct
2728 comp_unit_head.
2729 (create_debug_types_hash_table): Update create_debug_type_hash_table
2730 caller.
2731 (create_all_type_units): Call create_debug_type_hash_table.
2732 (read_cutu_die_from_dwo, init_cutu_and_read_dies): Change
2733 read_and_check_type_unit_head caller to read_and_check_comp_unit_head
2734 caller.
2735 (skip_one_die): Handle DW_FORM_implicit_const.
2736 (dwarf2_rnglists_process): New function.
2737 (dwarf2_ranges_process): Call dwarf2_rnglists_process for DWARF-5.
2738 (abbrev_table_read_table): Handle DW_FORM_implicit_const.
2739 (read_attribute_value): Handle DW_FORM_implicit_const,
2740 DW_FORM_line_strp.
2741 (read_attribute): Handle DW_FORM_implicit_const.
2742 (read_indirect_string_at_offset_from): New function from
2743 read_indirect_string_at_offset.
2744 (read_indirect_string_at_offset): Call
2745 read_indirect_string_at_offset_from.
2746 (read_indirect_line_string_at_offset): New function.
2747 (read_indirect_string): New function comment.
2748 (read_indirect_line_string): New function.
2749 (read_unsigned_leb128): Make it global.
2750 (dwarf2_string_attr): Handle DWARF-5.
2751 (add_include_dir_stub, read_formatted_entries): New functions.
2752 (dwarf_decode_line_header, dump_die_shallow, cu_debug_loc_section):
2753 Handle DWARF-5.
2754 (per_cu_header_read_in): Update read_comp_unit_head caller.
2755 (dwarf2_version): New function.
2756 * symfile.h (struct dwarf2_debug_sections): Add loclists, line_str and
2757 rnglists.
2758 * xcoffread.c (dwarf2_xcoff_names): Update struct dwarf2_debug_sections
2759 fields.
2760
22d2f3ab
JK
27612017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2762
2763 * dwarf2read.c (abbrev_table_read_table): Read the data only once.
2764
5f46c5a5
JK
27652017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2766
2767 * dwarf2read.c (dwarf2_ranges_process): New function from
2768 dwarf2_ranges_read.
2769 (dwarf2_ranges_read, dwarf2_record_block_ranges): Use
2770 dwarf2_ranges_process.
2771
78d4d2c5
JK
27722017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2773
2774 * dwarf2read.c (create_debug_type_hash_table): New function from
2775 create_debug_types_hash_table.
2776 (create_debug_types_hash_table): Call create_debug_type_hash_table.
2777 (create_all_type_units, open_and_init_dwo_file): Update
2778 create_debug_types_hash_table callers.
2779
1b076f25
SDJ
27802017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
2781
2782 PR gdb/16188
2783 * fork-child.c (trace_start_error): Fix thinko. va_end should
2784 refer to 'ap', not 'args'.
2785
0db8980c
SDJ
27862017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
2787 Pedro Alves <palves@redhat.com>
2788
2789 PR gdb/16188
2790 * darwin-nat.c (darwin_ptrace_me): Check if calls to system
2791 calls succeeded.
2792 * fork-child.c (trace_start_error): New function.
2793 (trace_start_error_with_name): Likewise.
2794 * gnu-nat.c (gnu_ptrace_me): Check if call to PTRACE succeeded.
2795 * inf-ptrace.c (inf_ptrace_me): Likewise.
2796 * inferior.h (trace_start_error): New prototype.
2797 (trace_start_error_with_name): Likewise.
2798
99e8a4f9
SDJ
27992017-02-15 Sergio Durigan Junior <sergiodj@redhat.com>
2800
2801 PR gdb/21164
2802 * psymtab.c (maintenance_print_psymbols): Verify if 'argv' is not
2803 NULL before using it.
2804 * symmisc.c (maintenance_print_symbols): Likewise.
2805 (maintenance_print_msymbols): Likewise.
2806
4e746bb6
TW
28072017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
2808
2809 * NEWS: Add record Python bindings entry.
2810
28112017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
2812
2813 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-record-btrace.o,
2814 py-record-full.o.
2815 (SUBDIR_PYTHON_SRCS): Add py-record-btrace.c, py-record-full.c.
2816 * python/py-record-btrace.c, python/py-record-btrace.h,
2817 python/py-record-full.c, python/py-record-full.h: New file.
2818 * python/py-record.c: Add include for py-record-btrace.h and
2819 py-record-full.h.
2820 (recpy_method, recpy_format, recpy_goto, recpy_replay_position,
2821 recpy_instruction_history, recpy_function_call_history, recpy_begin,
2822 recpy_end): Use functions from py-record-btrace.c and py-record-full.c.
2823 * python/python-internal.h (PyInt_FromSsize_t, PyInt_AsSsize_t):
2824 New definition.
2825 (gdbpy_initialize_btrace): New export.
2826 * python/python.c (_initialize_python): Add gdbpy_initialize_btrace.
2827
28282017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
2829
2830 * Makefile.in (SUBDIR_PYTHON_OBS): Add python/py-record.o.
2831 (SUBDIR_PYTHON_SRCS): Add python/py-record.c.
2832 * python/py-record.c: New file.
2833 * python/python-internal.h (gdbpy_start_recording,
2834 gdbpy_current_recording, gdpy_stop_recording,
2835 gdbpy_initialize_record): New export.
2836 * python/python.c (_initialize_python): Add gdbpy_initialize_record.
2837 (python_GdbMethods): Add gdbpy_start_recording,
2838 gdbpy_current_recording and gdbpy_stop_recording.
2839
28402017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
2841
2842 * record-btrace.c (record_btrace_record_method): New function.
2843 (init_record_btrace_ops): Initialize to_record_method.
2844 * record-full.c (record_full_record_method): New function.
2845 (init_record_full_ops, init_record_full_core_ops): Add
2846 record_full_record_method.
2847 * record.h (enum record_method): New enum.
2848 * target-debug.h (target_debug_print_enum_record_method: New define.
2849 * target-delegates.c: Regenerate.
2850 * target.c (target_record_method): New function.
2851 * target.h: Include record.h.
2852 (struct target_ops) <to_record_method>: New field.
2853 (target_record_method): New export.
2854
28552017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
2856
2857 * record.h (record_start, record_stop): New export.
2858 * record.c (record_start, record_stop): New function.
2859
28602017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
2861
2862 * btrace.c (btrace_fetch): Copy function call segments pointer
2863 into a vector.
2864 (btrace_clear): Clear the vector.
2865 (btrace_find_insn_by_number): Use binary search to find the correct
2866 function call segment.
2867 * btrace.h (brace_fun_p): New typedef.
2868 (struct btrace_thread_info) <functions>: New field.
2869
28702017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
2871
2872 * record-btrace.c (btrace_ui_out_decode_error): Move most of it ...
2873 * btrace.c (btrace_decode_error): ... here. New function.
2874 * btrace.h (btrace_decode_error): New export.
2875
28762017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
2877
2878 * btrace.c (ftrace_call_num_insn, btrace_insn_get_error): New function.
2879 (ftrace_new_function, btrace_insn_number, btrace_insn_cmp,
2880 btrace_find_insn_by_number): Remove special case for gaps.
2881 * btrace.h (btrace_insn_get_error): New export.
2882 (btrace_insn_number, btrace_find_insn_by_number): Adjust comment.
2883 * record-btrace.c (btrace_insn_history): Print number for gaps.
2884 (record_btrace_info, record_btrace_goto): Handle gaps.
2885
3f77c769
TT
28862017-02-14 Tom Tromey <tom@tromey.com>
2887
2888 PR python/13598:
2889 * python/python.c (gdbpy_before_prompt_hook): Emit before_prompt
2890 event.
2891 * python/py-evts.c (gdbpy_initialize_py_events): Add
2892 before_prompt registry.
2893 * python/py-events.h (events_object) <before_prompt>: New field.
2894
4c2c7ac6
MM
28952017-02-14 Markus Metzger <markus.t.metzger@intel.com>
2896
2897 * btrace.c (ftrace_new_switch): Preserve up link and flags.
2898
5cf30ebf
LM
28992017-02-13 Luis Machado <lgustavo@codesourcery.com>
2900
2901 * symfile (_initialize_symfile): Add usage text to the load command's
2902 help text.
2903
26a06916
SM
29042017-02-10 Simon Marchi <simon.marchi@ericsson.com>
2905
2906 * utils.c (defaulted_query): Don't query on secondary UIs.
2907
0b145e37
TT
29082017-02-10 Tom Tromey <tom@tromey.com>
2909
2910 * rust-lang.c (rust_get_disr_info): Remove unused variable.
2911
2d8365c4
TT
29122017-02-10 Tom Tromey <tom@tromey.com>
2913
2914 * python/py-value.c (valpy_richcompare_throw): Remove unnecessary
2915 "cleanup" local.
2916 * python/py-type.c (typy_legacy_template_argument): Remove
2917 unnecessary "cleanup" local.
2918
2bb8f231
TT
29192017-02-10 Tom Tromey <tom@tromey.com>
2920
2921 * python/python.c (do_start_initialization): New function, from
2922 _initialize_python.
2923 (_initialize_python): Call do_start_initialization.
2924 * python/py-linetable.c (ltpy_iternext): Use explicit returns, not
2925 goto.
2926
1bdfaf42
TT
29272017-02-10 Tom Tromey <tom@tromey.com>
2928
2929 * python/py-prettyprint.c (pretty_print_one_value): Use
2930 gdbpy_ref.
2931
88b6faea
TT
29322017-02-10 Tom Tromey <tom@tromey.com>
2933
2934 * python/py-cmd.c (cmdpy_destroyer): Use gdbpy_ref.
2935 * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Use
2936 gdbpy_ref.
2937 * python/py-type.c (field_new): Use gdbpy_ref.
2938 * python/py-symtab.c (symtab_and_line_to_sal_object): Use
2939 gdbpy_ref.
2940 * python/py-progspace.c (pspy_new): Use gdbpy_ref.
2941 (py_free_pspace): Likewise.
2942 (pspace_to_pspace_object): Likewise.
2943 * python/py-objfile.c (objfpy_new): Use gdbpy_ref.
2944 (py_free_objfile): Likewise.
2945 (objfile_to_objfile_object): Likewise.
2946 * python/py-inferior.c (delete_thread_object): Use
2947 gdbpy_ref.
2948 (infpy_read_memory): Likewise.
2949 (py_free_inferior): Likewise.
2950 * python/py-evtregistry.c (create_eventregistry_object): Use
2951 gdbpy_ref.
2952 * python/py-event.c (create_event_object): Use gdbpy_ref.
2953
7780f186
TT
29542017-02-10 Tom Tromey <tom@tromey.com>
2955
2956 * python/py-ref.h (gdbpy_ref_policy): Now a template.
2957 (gdbpy_ref): Now a template; allow subclasses of PyObject to be
2958 used.
2959 * python/py-arch.c, python/py-bpevent.c, python/py-breakpoint.c,
2960 python/py-cmd.c, python/py-continueevent.c, python/py-event.c,
2961 python/py-exitedevent.c, python/py-finishbreakpoint.c,
2962 python/py-framefilter.c, python/py-function.c,
2963 python/py-inferior.c, python/py-infevents.c,
2964 python/py-linetable.c, python/py-newobjfileevent.c,
2965 python/py-param.c, python/py-prettyprint.c, python/py-ref.h,
2966 python/py-signalevent.c, python/py-stopevent.c,
2967 python/py-symbol.c, python/py-threadevent.c, python/py-type.c,
2968 python/py-unwind.c, python/py-utils.c, python/py-value.c,
2969 python/py-varobj.c, python/py-xmethods.c, python/python.c,
2970 varobj.c: Change gdbpy_ref to gdbpy_ref<>.
2971
d4b0bb18
TT
29722017-02-10 Tom Tromey <tom@tromey.com>
2973
2974 * ui-out.h (ui_out_emit_type): New class.
2975 (ui_out_emit_tuple, ui_out_emit_list): New typedefs.
2976 * python/py-framefilter.c (py_print_single_arg): Use gdb::optional
2977 and ui_out_emit_tuple.
2978 (enumerate_locals): Likewise.
2979 (py_mi_print_variables, py_print_locals, py_print_args): Use
2980 ui_out_emit_list.
2981 (py_print_frame): Use gdb::optional, ui_out_emit_tuple,
2982 ui_out_emit_list.
2983 * common/gdb_optional.h: New file.
2984
f67f945c
MG
29852017-02-10 Martin Galvan <martingalvan@sourceware.org>
2986
2987 * MAINTAINERS (Write After Approval): Update my e-mail address.
2988
18da0c51
MG
29892017-02-10 Martin Galvan <martingalvan@sourceware.org>
2990
2991 PR gdb/21122
2992 * breakpoint.c (_initialize_breakpoint): Update the help description
2993 of the 'commands' command to indicate that it takes a list argument.
2994
62c14536
SM
29952017-02-09 Simon Marchi <simon.marchi@ericsson.com>
2996
2997 * interps.c (current_interp_set_logging): Remove "return".
2998
ff6fa247
GB
29992017-02-09 Gary Benson <gbenson@redhat.com>
3000
3001 * symtab.c (add_symtab_completions): Prevent NULL pointer
3002 dereference.
3003
a474bd8e
PA
30042017-02-08 Pedro Alves <palves@redhat.com>
3005
3006 * interps.c (interp::interp): Remove reference to quiet_p.
3007 (interp_set): Make static. Remove dead "Switching to" output
3008 code.
3009 (interp_quiet_p, interp_set_quiet): Delete.
3010 (interpreter_exec_cmd): Don't set the interpreter quiet.
3011 * interps.h (interp_quiet_p): Make static.
3012 (class interp) <quiet_p>: Remove field
3013
3d7b173c
JG
30142017-02-08 Jerome Guitton <guitton@adacore.com>
3015
604c4576
JG
3016 * cli/cli-decode.c (find_command_name_length): Make it extern.
3017 * cli/cli-decode.h (find_command_name_length): Declare.
3018 * cli/cli-script.c (command_name_equals, line_first_arg):
3019 New functions.
3020 (process_next_line): Use cli-decode to parse command names.
3021 (build_command_line): Make args a constant pointer.
3022
30232017-02-08 Jerome Guitton <guitton@adacore.com>
6dbb839a 3024
3d7b173c
JG
3025 * cli-decode.c (lookup_cmd_1, lookup_cmd_composition):
3026 Remove case-insensitive search.
3027
1291063d
JM
30282017-02-07 Jose E. Marchesi <jose.marchesi@oracle.com>
3029
3030 * sparc-tdep.c (sparc32_gdbarch_init): Do not place a + operator
3031 at the end of the line. Avoids an ARI warning.
3032
20b477a7
LM
30332017-02-06 Luis Machado <lgustavo@codesourcery.com>
3034
3035 * NEWS: Mention support for record/replay of Intel 64 rdrand and
3036 rdseed instructions.
3037 i386-tdep.c (i386_process_record): Handle Intel 64 rdrand and rseed.
3038
3f7b46f2
IR
30392017-02-06 Ivo Raisr <ivo.raisr@oracle.com>
3040
3041 PR tdep/20936
3042 Provide and use sparc32 and sparc64 target description XML files.
3043 * features/sparc/sparc32-cp0.xml, features/sparc/sparc32-cpu.xml,
3044 features/sparc/sparc32-fpu.xml: New files for sparc 32-bit.
3045 * features/sparc/sparc64-cp0.xml, features/sparc/sparc64-cpu.xml,
3046 features/sparc/sparc64-fpu.xml: New files for sparc 64-bit.
3047 * features/sparc/sparc32-solaris.xml: New file.
3048 * features/sparc/sparc64-solaris.xml: New file.
3049 * features/sparc/sparc32-solaris.c: Generated.
3050 * features/sparc/sparc64-solaris.c: Generated.
3051 * sparc-tdep.h: Account for differences in target descriptions.
3052 * sparc-tdep.c (sparc32_register_name): Use target provided registers.
3053 (sparc32_register_type): Use target provided registers.
3054 (validate_tdesc_registers): New function.
3055 (sparc32_gdbarch_init): Use tdesc_has_registers.
3056 Set pseudoregister functions.
3057 * sparc64-tdep.c (sparc64_register_name): Use target provided registers.
3058 (sparc64_register_type): Use target provided registers.
3059 (sparc64_init_abi): Set pseudoregister functions.
3060
f0fd41c1
TT
30612017-02-03 Tom Tromey <tom@tromey.com>
3062
3063 PR rust/21097:
3064 * rust-lang.c (rust_print_type) <TYPE_CODE_UNION>: Handle enums
3065 with a single member.
3066
d6f9b0fb
PA
30672017-02-03 Pedro Alves <palves@redhat.com>
3068
3069 * cli/cli-interp.c (cli_interp_base::cli_interp_base)
3070 (cli_interp_base::~cli_interp_base): New.
3071 (cli_interp): New struct.
3072 (as_cli_interp): Cast the interp itself to cli_interp.
3073 (cli_interpreter_pre_command_loop): Rename to ...
3074 (cli_interp_base::pre_command_loop): ... this. Remove 'self'
3075 parameter.
3076 (cli_interpreter_init): Rename to ...
3077 (cli_interp::init): ... this. Remove 'self' parameter. Use
3078 boolean. Make extern.
3079 (cli_interpreter_resume): Rename to ...
3080 (cli_interp::resume): ... this. Remove 'data' parameter. Make
3081 extern.
3082 (cli_interpreter_suspend): Rename to ...
3083 (cli_interp::suspend): ... this. Remove 'data' parameter. Make
3084 extern.
3085 (cli_interpreter_exec): Rename to ...
3086 (cli_interp::exec): ... this. Remove 'data' parameter. Make
3087 extern.
3088 (cli_interpreter_supports_command_editing): Rename to ...
3089 (cli_interp_base::supports_command_editing): ... this. Remove
3090 'interp' parameter. Make extern.
3091 (cli_ui_out): Rename to ...
3092 (cli_interp::interp_ui_out): ... this. Remove 'interp' parameter.
3093 Make extern.
3094 (cli_set_logging): Rename to ...
3095 (cli_interp_base::set_logging): ... this. Remove 'interp'
3096 parameter. Make extern.
3097 (cli_interp_procs): Delete.
3098 (cli_interp_factory): Adjust to use "new".
3099 * cli/cli-interp.h: Include "interps.h".
3100 (struct cli_interp_base): New struct.
3101 * interps.c (struct interp): Delete. Fields moved to interps.h.
3102 (interp_new): Delete.
3103 (interp::interp, interp::~interp): New.
3104 (interp_set): Use bool, and return void. Assume the interpreter
3105 has suspend, init and resume methods, and that the all return
3106 void.
3107 (set_top_level_interpreter): interp_set returns void.
3108 (interp_ui_out): Adapt.
3109 (current_interp_set_logging): Adapt.
3110 (interp_data): Delete.
3111 (interp_pre_command_loop, interp_supports_command_editing): Adapt.
3112 (interp_exec): Adapt.
3113 (top_level_interpreter_data): Delete.
3114 * interps.h (interp_init_ftype, interp_resume_ftype)
3115 (interp_suspend_ftype, interp_exec_ftype)
3116 (interp_pre_command_loop_ftype, interp_ui_out_ftype): Delete.
3117 (class interp): New.
3118 (interp_new): Delete.
3119 (interp_set): Now returns void. Use bool.
3120 (interp_data, top_level_interpreter_data): Delete.
3121 * mi/mi-common.h: Include interps.h.
3122 (class mi_interp): Inherit from interp. Define a ctor. Declare
3123 init, resume, suspect, exec, interp_ui_out, set_logging and
3124 pre_command_loop methods.
3125 * mi/mi-interp.c (as_mi_interp): Cast the interp itself.
3126 (mi_interpreter_init): Rename to ...
3127 (mi_interp::init): ... this. Remove the 'interp' parameter, use
3128 bool, return void and make extern. Adjust.
3129 (mi_interpreter_resume): ... Rename to ...
3130 (mi_interp::resume): ... this. Remove the 'data' parameter,
3131 return void and make extern. Adjust.
3132 (mi_interpreter_suspend): ... Rename to ...
3133 (mi_interp::suspend): ... this. Remove the 'data' parameter,
3134 return void and make extern. Adjust.
3135 (mi_interpreter_exec): ... Rename to ...
3136 (mi_interp::exec): ... this. Remove the 'data' parameter and make
3137 extern. Adjust.
3138 (mi_interpreter_pre_command_loop): ... Rename to ...
3139 (mi_interp::pre_command_loop): ... this. Remove the 'self'
3140 parameter and make extern.
3141 (mi_on_normal_stop_1): Adjust.
3142 (mi_ui_out): Rename to ...
3143 (mi_interp::interp_ui_out): ... this. Remove the 'interp'
3144 parameter and make extern. Adjust.
3145 (mi_set_logging): Rename to ...
3146 (mi_interp::set_logging): ... this. Remove the 'interp'
3147 parameter and make extern. Adjust.
3148 (mi_interp_procs): Delete.
3149 (mi_interp_factory): Adjust to use 'new'.
3150 * mi/mi-main.c (mi_cmd_gdb_exit, captured_mi_execute_command)
3151 (mi_print_exception, mi_execute_command, mi_load_progress):
3152 Adjust.
3153 * tui/tui-interp.c (tui_interp): New class.
3154 (as_tui_interp): Return a tui_interp pointer.
3155 (tui_on_normal_stop, tui_on_signal_received)
3156 (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
3157 (tui_on_no_history, tui_on_user_selected_context_changed): Adjust
3158 to use interp::interp_ui_out.
3159 (tui_init): Rename to ...
3160 (tui_interp::init): ... this. Remove the 'self' parameter, use
3161 bool, return void and make extern. Adjust.
3162 (tui_resume): Rename to ...
3163 (tui_interp::resume): ... this. Remove the 'data' parameter,
3164 return void and make extern. Adjust.
3165 (tui_suspend): Rename to ...
3166 (tui_interp::suspend): ... this. Remove the 'data' parameter,
3167 return void and make extern. Adjust.
3168 (tui_ui_out): Rename to ...
3169 (tui_interp::interp_ui_out): ... this. Remove the 'self'
3170 parameter, and make extern. Adjust.
3171 (tui_exec): Rename to ...
3172 (tui_interp::exec): ... this. Remove the 'data' parameter and
3173 make extern.
3174 (tui_interp_procs): Delete.
3175 (tui_interp_factory): Use "new".
3176
65c40c95
TT
31772017-02-02 Tom Tromey <tom@tromey.com>
3178
3179 * rust-exp.y (ends_raw_string, space_then_number)
3180 (rust_identifier_start_p): Return bool.
3181 * rust-lang.c (rust_tuple_type_p, rust_underscore_fields)
3182 (rust_tuple_struct_type_p, rust_tuple_variant_type_p)
3183 (rust_slice_type_p, rust_range_type_p, rust_u8_type_p)
3184 (rust_chartype_p): Return bool.
3185 (val_print_struct, rust_print_struct_def, rust_print_type):
3186 Update.
3187 * rust-lang.h (rust_tuple_type_p, rust_tuple_struct_type_p):
3188 Return bool.
3189
b50f188d
TT
31902017-02-02 Tom Tromey <tom@tromey.com>
3191
3192 * rust-lang.c: Reindent.
3193
03c85b11
TT
31942017-02-02 Tom Tromey <tom@tromey.com>
3195
3196 * rust-lang.h (rust_crate_for_block): Update.
3197 * rust-lang.c (rust_crate_for_block): Return std::string.
3198 (rust_get_disr_info): Use std:;string, not
3199 gdb::unique_xmalloc_ptr.
3200 * rust-exp.y (crate_name): Update.
3201
9b6da501
PA
32022017-02-02 Pedro Alves <palves@redhat.com>
3203
3204 * disasm-selftests.c (print_one_insn_test): Move the "verbose"
3205 field out of gdb_disassembler_test and make it static.
3206
ec4cb20b
PA
32072017-02-02 Pedro Alves <palves@redhat.com>
3208
3209 * mi/mi-common.h (struct mi_interp): Delete the mi2_interp,
3210 mi1_interp and mi_interp fields.
3211
5be5dbf0
PA
32122017-02-02 Pedro Alves <palves@redhat.com>
3213
616268b6
PA
3214 * cli/cli-interp.c (struct saved_output_files, saved_output):
3215 Moved from cli/cli-logging.c.
3216 (cli_set_logging): New function.
3217 (cli_interp_procs): Install cli_set_logging.
3218 * cli/cli-interp.h (make_logging_output, cli_set_logging):
3219 Declare.
3220 * cli/cli-logging.c (struct saved_output_files, saved_output):
3221 Moved to cli/cli-interp.c.
3222 (pop_output_files): Don't save outputs here.
3223 (make_logging_output): New function.
3224 (handle_redirections): Don't build tee nor save previous outputs
3225 here.
3226 * interps.c (current_interp_set_logging): Change prototype.
3227 Assume there's always a set_logging_proc method installed.
3228 * interps.h (interp_set_logging_ftype): Change prototype.
3229 (current_interp_set_logging): Change prototype and adjust comment.
3230 * mi/mi-interp.c (mi_set_logging): Change protototype. Adjust to
3231 use make_logging_output.
3232 * tui/tui-interp.c (tui_interp_procs): Install cli_set_logging.
32332017-02-02 Pedro Alves <palves@redhat.com>
3234
5be5dbf0
PA
3235 * cli/cli-logging.c (maybe_warn_already_logging): New factored out
3236 from ...
3237 (set_logging_overwrite): ... here.
3238 (logging_no_redirect_file): Delete.
3239 (set_logging_redirect): Don't handle redirection on the fly.
3240 Instead warn that "logging off" / "logging on" is necessary.
3241 (pop_output_files): Delete references to logging_no_redirect_file.
3242 (show_logging_command): Always speak in terms of what will happen
3243 once logging is reenabled.
3244
c99cc448
PA
32452017-02-02 Pedro Alves <palves@redhat.com>
3246
3247 * disasm.h (gdb_pretty_print_disassembler): Tweak intro comment.
3248
8b172ce7
PA
32492017-02-02 Pedro Alves <palves@redhat.com>
3250
3251 * disasm.c (gdb_pretty_print_insn): Rename to ...
3252 (gdb_pretty_print_disassembler::pretty_print_insn): ... this.
3253 Remove gdbarch parameter. Adapt to clear the object's buffers
3254 instead of allocating new buffers, and to print using the object's
3255 gdb_disassembler instead of calling gdb_print_insn.
3256 (dump_insns): Use gdb_pretty_print_disassembler.
3257 * disasm.h (gdb_pretty_print_insn): Delete declaration.
3258 (gdb_pretty_print_disassembler): New class.
3259 * record-btrace.c (btrace_insn_history): Use
3260 gdb_pretty_print_disassembler.
3261
d7e74731
PA
32622017-02-02 Pedro Alves <palves@redhat.com>
3263
3264 * ada-lang.c (type_as_string): Use string_file.
3265 * ada-valprint.c (ada_print_floating): Use string_file.
3266 * ada-varobj.c (ada_varobj_scalar_image)
3267 (ada_varobj_get_value_image): Use string_file.
3268 * aix-thread.c (aix_thread_extra_thread_info): Use string_file.
3269 * arm-tdep.c (_initialize_arm_tdep): Use string_printf.
3270 * breakpoint.c (update_inserted_breakpoint_locations)
3271 (insert_breakpoint_locations, reattach_breakpoints)
3272 (print_breakpoint_location, print_one_detail_ranged_breakpoint)
3273 (print_it_watchpoint): Use string_file.
3274 (save_breakpoints): Use stdio_file.
3275 * c-exp.y (oper): Use string_file.
3276 * cli/cli-logging.c (set_logging_redirect): Use ui_file_up and
3277 tee_file.
3278 (pop_output_files): Use delete.
3279 (handle_redirections): Use stdio_file and tee_file.
3280 * cli/cli-setshow.c (do_show_command): Use string_file.
3281 * compile/compile-c-support.c (c_compute_program): Use
3282 string_file.
3283 * compile/compile-c-symbols.c (generate_vla_size): Take a
3284 'string_file &' instead of a 'ui_file *'.
3285 (generate_c_for_for_one_variable): Take a 'string_file &' instead
3286 of a 'ui_file *'. Use string_file.
3287 (generate_c_for_variable_locations): Take a 'string_file &'
3288 instead of a 'ui_file *'.
3289 * compile/compile-internal.h (generate_c_for_for_one_variable):
3290 Take a 'string_file &' instead of a 'ui_file *'.
3291 * compile/compile-loc2c.c (push, pushf, unary, binary)
3292 (print_label, pushf_register_address, pushf_register)
3293 (do_compile_dwarf_expr_to_c): Take a 'string_file &' instead of a
3294 'ui_file *'. Adjust.
3295 * compile/compile.c (compile_to_object): Use string_file.
3296 * compile/compile.h (compile_dwarf_expr_to_c)
3297 (compile_dwarf_bounds_to_c): Take a 'string_file &' instead of a
3298 'ui_file *'.
3299 * cp-support.c (inspect_type): Use string_file and obstack_copy0.
3300 (replace_typedefs_qualified_name): Use string_file and
3301 obstack_copy0.
3302 * disasm.c (gdb_pretty_print_insn): Use string_file.
3303 (gdb_disassembly): Adjust reference the null_stream global.
3304 (do_ui_file_delete): Delete.
3305 (gdb_insn_length): Use null_stream.
3306 * dummy-frame.c (maintenance_print_dummy_frames): Use stdio_file.
3307 * dwarf2loc.c (dwarf2_compile_property_to_c)
3308 (locexpr_generate_c_location, loclist_generate_c_location): Take a
3309 'string_file &' instead of a 'ui_file *'.
3310 * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise.
3311 * dwarf2read.c (do_ui_file_peek_last): Delete.
3312 (dwarf2_compute_name): Use string_file.
3313 * event-top.c (gdb_setup_readline): Use stdio_file.
3314 * gdbarch.sh (verify_gdbarch): Use string_file.
3315 * gdbtypes.c (safe_parse_type): Use null_stream.
3316 * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
3317 string_file.
3318 * guile/scm-disasm.c (gdbscm_print_insn_from_port): Take a
3319 'string_file *' instead of a 'ui_file *'.
3320 (gdbscm_arch_disassemble): Use string_file.
3321 * guile/scm-frame.c (frscm_print_frame_smob): Use string_file.
3322 * guile/scm-ports.c (class ioscm_file_port): Now a class that
3323 inherits from ui_file.
3324 (ioscm_file_port_delete, ioscm_file_port_rewind)
3325 (ioscm_file_port_put): Delete.
3326 (ioscm_file_port_write): Rename to ...
3327 (ioscm_file_port::write): ... this. Remove file_port_magic
3328 checks.
3329 (ioscm_file_port_new): Delete.
3330 (ioscm_with_output_to_port_worker): Use ioscm_file_port and
3331 ui_file_up.
3332 * guile/scm-type.c (tyscm_type_name): Use string_file.
3333 * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
3334 Use string_file.
3335 * infcmd.c (print_return_value_1): Use string_file.
3336 * infrun.c (print_target_wait_results): Use string_file.
3337 * language.c (add_language): Use string_file.
3338 * location.c (explicit_to_string_internal): Use string_file.
3339 * main.c (captured_main_1): Use null_file.
3340 * maint.c (maintenance_print_architecture): Use stdio_file.
3341 * mi/mi-cmd-stack.c (list_arg_or_local): Use string_file.
3342 * mi/mi-common.h (struct mi_interp) <out, err, log, targ,
3343 event_channel>: Change type to mi_console_file pointer.
3344 * mi/mi-console.c (mi_console_file_fputs, mi_console_file_flush)
3345 (mi_console_file_delete): Delete.
3346 (struct mi_console_file): Delete.
3347 (mi_console_file_magic): Delete.
3348 (mi_console_file_new): Delete.
3349 (mi_console_file::mi_console_file): New.
3350 (mi_console_file_delete): Delete.
3351 (mi_console_file_fputs): Delete.
3352 (mi_console_file::write): New.
3353 (mi_console_raw_packet): Delete.
3354 (mi_console_file::flush): New.
3355 (mi_console_file_flush): Delete.
3356 (mi_console_set_raw): Rename to ...
3357 (mi_console_file::set_raw): ... this.
3358 * mi/mi-console.h (class mi_console_file): New class.
3359 (mi_console_file_new, mi_console_set_raw): Delete.
3360 * mi/mi-interp.c (mi_interpreter_init): Use mi_console_file.
3361 (mi_set_logging): Use delete and tee_file. Adjust.
3362 * mi/mi-main.c (output_register): Use string_file.
3363 (mi_cmd_data_evaluate_expression): Use string_file.
3364 (mi_cmd_data_read_memory): Use string_file.
3365 (mi_cmd_execute, print_variable_or_computed): Use string_file.
3366 * mi/mi-out.c (mi_ui_out::main_stream): New.
3367 (mi_ui_out::rewind): Use main_stream and
3368 string_file.
3369 (mi_ui_out::put): Use main_stream and string_file.
3370 (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
3371 Allocate a 'string_file' instead.
3372 (mi_out_new): Don't allocate a mem_fileopen stream here.
3373 * mi/mi-out.h (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
3374 (mi_ui_out::main_stream): Declare method.
3375 * printcmd.c (eval_command): Use string_file.
3376 * psymtab.c (maintenance_print_psymbols): Use stdio_file.
3377 * python/py-arch.c (archpy_disassemble): Use string_file.
3378 * python/py-breakpoint.c (bppy_get_commands): Use string_file.
3379 * python/py-frame.c (frapy_str): Use string_file.
3380 * python/py-framefilter.c (py_print_type, py_print_single_arg):
3381 Use string_file.
3382 * python/py-type.c (typy_str): Use string_file.
3383 * python/py-unwind.c (unwind_infopy_str): Use string_file.
3384 * python/py-value.c (valpy_str): Use string_file.
3385 * record-btrace.c (btrace_insn_history): Use string_file.
3386 * regcache.c (regcache_print): Use stdio_file.
3387 * reggroups.c (maintenance_print_reggroups): Use stdio_file.
3388 * remote.c (escape_buffer): Use string_file.
3389 * rust-lang.c (rust_get_disr_info): Use string_file.
3390 * serial.c (serial_open_ops_1): Use stdio_file.
3391 (do_serial_close): Use delete.
3392 * stack.c (print_frame_arg): Use string_file.
3393 (print_frame_args): Remove local mem_fileopen stream, not used.
3394 (print_frame): Use string_file.
3395 * symmisc.c (maintenance_print_symbols): Use stdio_file.
3396 * symtab.h (struct symbol_computed_ops) <generate_c_location>:
3397 Take a 'string_file *' instead of a 'ui_file *'.
3398 * top.c (new_ui): Use stdio_file and stderr_file.
3399 (free_ui): Use delete.
3400 (execute_command_to_string): Use string_file.
3401 (quit_confirm): Use string_file.
3402 * tracepoint.c (collection_list::append_exp): Use string_file.
3403 * tui/tui-disasm.c (tui_disassemble): Use string_file.
3404 * tui/tui-file.c: Don't include "ui-file.h".
3405 (enum streamtype, struct tui_stream): Delete.
3406 (tui_file_new, tui_file_delete, tui_fileopen, tui_sfileopen)
3407 (tui_file_isatty, tui_file_rewind, tui_file_put): Delete.
3408 (tui_file::tui_file): New method.
3409 (tui_file_fputs): Delete.
3410 (tui_file_get_strbuf): Delete.
3411 (tui_file::puts): New method.
3412 (tui_file_adjust_strbuf): Delete.
3413 (tui_file_flush): Delete.
3414 (tui_file::flush): New method.
3415 * tui/tui-file.h: Tweak intro comment.
3416 Include ui-file.h.
3417 (tui_fileopen, tui_sfileopen, tui_file_get_strbuf)
3418 (tui_file_adjust_strbuf): Delete declarations.
3419 (class tui_file): New class.
3420 * tui/tui-io.c (tui_initialize_io): Use tui_file.
3421 * tui/tui-regs.c (tui_restore_gdbout): Use delete.
3422 (tui_register_format): Use string_stream.
3423 * tui/tui-stack.c (tui_make_status_line): Use string_file.
3424 (tui_get_function_from_frame): Use string_file.
3425 * typeprint.c (type_to_string): Use string_file.
3426 * ui-file.c (struct ui_file, ui_file_magic, ui_file_new): Delete.
3427 (null_stream): New global.
3428 (ui_file_delete): Delete.
3429 (ui_file::ui_file): New.
3430 (null_file_isatty): Delete.
3431 (ui_file::~ui_file): New.
3432 (null_file_rewind): Delete.
3433 (ui_file::printf): New.
3434 (null_file_put): Delete.
3435 (null_file_flush): Delete.
3436 (ui_file::putstr): New.
3437 (null_file_write): Delete.
3438 (ui_file::putstrn): New.
3439 (null_file_read): Delete.
3440 (ui_file::putc): New.
3441 (null_file_fputs): Delete.
3442 (null_file_write_async_safe): Delete.
3443 (ui_file::vprintf): New.
3444 (null_file_delete): Delete.
3445 (null_file::write): New.
3446 (null_file_fseek): Delete.
3447 (null_file::puts): New.
3448 (ui_file_data): Delete.
3449 (null_file::write_async_safe): New.
3450 (gdb_flush, ui_file_isatty): Adjust.
3451 (ui_file_put, ui_file_rewind): Delete.
3452 (ui_file_write): Adjust.
3453 (ui_file_write_for_put): Delete.
3454 (ui_file_write_async_safe, ui_file_read): Adjust.
3455 (ui_file_fseek): Delete.
3456 (fputs_unfiltered): Adjust.
3457 (set_ui_file_flush, set_ui_file_isatty, set_ui_file_rewind)
3458 (set_ui_file_put, set_ui_file_write, set_ui_file_write_async_safe)
3459 (set_ui_file_read, set_ui_file_fputs, set_ui_file_fseek)
3460 (set_ui_file_data): Delete.
3461 (string_file::~string_file, string_file::write)
3462 (struct accumulated_ui_file, do_ui_file_xstrdup, ui_file_xstrdup)
3463 (do_ui_file_as_string, ui_file_as_string): Delete.
3464 (do_ui_file_obsavestring, ui_file_obsavestring): Delete.
3465 (struct mem_file): Delete.
3466 (mem_file_new): Delete.
3467 (stdio_file::stdio_file): New.
3468 (mem_file_delete): Delete.
3469 (stdio_file::stdio_file): New.
3470 (mem_fileopen): Delete.
3471 (stdio_file::~stdio_file): New.
3472 (mem_file_rewind): Delete.
3473 (stdio_file::set_stream): New.
3474 (mem_file_put): Delete.
3475 (stdio_file::open): New.
3476 (mem_file_write): Delete.
3477 (stdio_file_magic, struct stdio_file): Delete.
3478 (stdio_file_new, stdio_file_delete, stdio_file_flush): Delete.
3479 (stdio_file::flush): New.
3480 (stdio_file_read): Rename to ...
3481 (stdio_file::read): ... this. Adjust.
3482 (stdio_file_write): Rename to ...
3483 (stdio_file::write): ... this. Adjust.
3484 (stdio_file_write_async_safe): Rename to ...
3485 (stdio_file::write_async_safe) ... this. Adjust.
3486 (stdio_file_fputs): Rename to ...
3487 (stdio_file::puts) ... this. Adjust.
3488 (stdio_file_isatty): Delete.
3489 (stdio_file_fseek): Delete.
3490 (stdio_file::isatty): New.
3491 (stderr_file_write): Rename to ...
3492 (stderr_file::write) ... this. Adjust.
3493 (stderr_file_fputs): Rename to ...
3494 (stderr_file::puts) ... this. Adjust.
3495 (stderr_fileopen, stdio_fileopen, gdb_fopen): Delete.
3496 (stderr_file::stderr_file): New.
3497 (tee_file_magic): Delete.
3498 (struct tee_file): Delete.
3499 (tee_file::tee_file): New.
3500 (tee_file_new): Delete.
3501 (tee_file::~tee_file): New.
3502 (tee_file_delete): Delete.
3503 (tee_file_flush): Rename to ...
3504 (tee_file::flush): ... this. Adjust.
3505 (tee_file_write): Rename to ...
3506 (tee_file::write): ... this. Adjust.
3507 (tee_file::write_async_safe): New.
3508 (tee_file_fputs): Rename to ...
3509 (tee_file::puts): ... this. Adjust.
3510 (tee_file_isatty): Rename to ...
3511 (tee_file::isatty): ... this. Adjust.
3512 * ui-file.h (struct obstack, struct ui_file): Don't
3513 forward-declare.
3514 (ui_file_new, ui_file_flush_ftype, set_ui_file_flush)
3515 (ui_file_write_ftype)
3516 (set_ui_file_write, ui_file_fputs_ftype, set_ui_file_fputs)
3517 (ui_file_write_async_safe_ftype, set_ui_file_write_async_safe)
3518 (ui_file_read_ftype, set_ui_file_read, ui_file_isatty_ftype)
3519 (set_ui_file_isatty, ui_file_rewind_ftype, set_ui_file_rewind)
3520 (ui_file_put_method_ftype, ui_file_put_ftype, set_ui_file_put)
3521 (ui_file_delete_ftype, set_ui_file_data, ui_file_fseek_ftype)
3522 (set_ui_file_fseek): Delete.
3523 (ui_file_data, ui_file_delete, ui_file_rewind)
3524 (struct ui_file): New.
3525 (ui_file_up): New.
3526 (class null_file): New.
3527 (null_stream): Declare.
3528 (ui_file_write_for_put, ui_file_put): Delete.
3529 (ui_file_xstrdup, ui_file_as_string, ui_file_obsavestring):
3530 Delete.
3531 (ui_file_fseek, mem_fileopen, stdio_fileopen, stderr_fileopen)
3532 (gdb_fopen, tee_file_new): Delete.
3533 (struct string_file): New.
3534 (struct stdio_file): New.
3535 (stdio_file_up): New.
3536 (struct stderr_file): New.
3537 (class tee_file): New.
3538 * ui-out.c (ui_out::field_stream): Take a 'string_file &' instead
3539 of a 'ui_file *'. Adjust.
3540 * ui-out.h (class ui_out) <field_stream>: Likewise.
3541 * utils.c (do_ui_file_delete, make_cleanup_ui_file_delete)
3542 (null_stream): Delete.
3543 (error_stream): Take a 'string_file &' instead of a 'ui_file *'.
3544 Adjust.
3545 * utils.h (struct ui_file): Delete forward declaration..
3546 (make_cleanup_ui_file_delete, null_stream): Delete declarations.
3547 (error_stream): Take a 'string_file &' instead of a
3548 'ui_file *'.
3549 * varobj.c (varobj_value_get_print_value): Use string_file.
3550 * xtensa-tdep.c (xtensa_verify_config): Use string_file.
3551 * gdbarch.c: Regenerate.
3552
187808b0
PA
35532017-02-02 Pedro Alves <palves@redhat.com>
3554
3555 * disasm.c (gdb_disassembler::pretty_print_insn): Rename to...
3556 (gdb_pretty_print_insn): ... this. Now a free function. Add back
3557 a 'gdbarch' parameter. Allocate a mem_fileopen stream here.
3558 Adjust to call gdb_print_insn instead of
3559 gdb_disassembler::print_insn.
3560 (dump_insns, do_mixed_source_and_assembly_deprecated)
3561 (do_mixed_source_and_assembly, do_assembly_only): Add back a
3562 'gdbarch' parameter. Remove gdb_disassembler parameter.
3563 (gdb_disassembly): Don't allocate a gdb_disassembler here.
3564 * disasm.h (gdb_disassembler::pretty_print_insn): Delete
3565 declaration.
3566 (gdb_pretty_print_insn): Re-add declaration.
3567 * record-btrace.c (btrace_insn_history): Don't allocate a
3568 gdb_disassembler here. Adjust to call gdb_pretty_print_insn.
3569
7a8eb317
SM
35702017-02-01 Simon Marchi <simon.marchi@polymtl.ca>
3571
3572 * disasm.h (gdb_disassembly): Remove file_string parameter.
3573 * disasm.c (gdb_disassembly): Likewise.
3574 * cli/cli-cmds.c (print_disassembly): Adapt.
3575 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
3576 * stack.c (do_gdb_disassembly): Likewise.
3577
7346ef59
AA
35782017-02-01 Andreas Arnez <arnez@linux.vnet.ibm.com>
3579
3580 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
3581 DWARF_VALUE_LITERAL, no longer ignore the offset on big-endian
3582 targets. And if the implicit value is longer than needed, extract
3583 the first bytes instead of the "least significant" ones.
3584
cd4007e4
MM
35852017-02-01 Markus Metzger <markus.t.metzger@intel.com>
3586
3587 * btrace.c (btrace_enable): Do not call btrace_add_pc for
3588 BTRACE_FORMAT_PT or if can_access_registers_ptid returns false.
3589 (btrace_fetch): Assert can_access_registers_ptid.
3590 * record-btrace.c (require_btrace_thread, record_btrace_info): Call
3591 validate_registers_access.
3592
cf77c34e
MM
35932017-02-01 Markus Metzger <markus.t.metzger@intel.com>
3594
3595 * gdbthread.h (can_access_registers_ptid): New.
3596 * thread.c (can_access_registers_ptid): New.
3597
be85ce7d
PA
35982017-02-01 Pedro Alves <palves@redhat.com>
3599
3600 * i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
3601
29b0b251
PA
36022017-01-31 Pedro Alves <palves@redhat.com>
3603
3604 * mi/mi-interp.c (mi_breakpoint_created, mi_breakpoint_modified):
3605 Fix typos.
3606
289b5b24
PA
36072017-01-31 Pedro Alves <palves@redhat.com>
3608
3609 * stack.c (print_frame_args): Remove local mem_fileopen stream,
3610 not used.
3611
b47413b4
PA
36122017-01-31 Pedro Alves <palves@redhat.com>
3613
3614 * varobj.c (varobj_value_get_print_value): Remove xstrdup call.
3615
60adb36c
PA
36162017-01-31 Pedro Alves <palves@redhat.com>
3617
3618 * common/scoped_restore.h
3619 (scoped_restore_tmpl::scoped_restore_tmpl): Template on T2, and
3620 change the value's parameter type to T2.
3621 (make_scoped_restore): Likewise.
3622
2735833d
WT
36232017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
3624 Richard Henderson <rth@redhat.com>
3625
3626 * amd64-linux-nat.c (PTRACE_ARCH_PRCTL): New define.
3627 (amd64_linux_fetch_inferior_registers): Add case to fetch FS_BASE
3628 GS_BASE for older kernels.
3629 (amd64_linux_store_inferior_registers): Add case to store FS_BASE
3630 GS_BASE for older kernels.
3631 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Add FS_BASE
3632 and GS_BASE to the offset table.
3633 (amd64_linux_register_reggroup_p): Add FS_BASE and GS_BASE to the
3634 system register group.
3635 * amd64-nat.c (amd64_native_gregset_reg_offset): Implements case
3636 for older kernels.
3637 * amd64-tdep.c (amd64_init_abi): Add segment registers for the
3638 amd64 ABI.
3639 * amd64-tdep.h (amd64_regnum): Add AMD64_FSBASE_REGNUM and
3640 AMD64_GSBASE_REGNUM.
3641 (AMD64_NUM_REGS): Set to AMD64_GSBASE_REGNUM + 1.
3642 * features/Makefile (amd64-linux.dat, amd64-avx-linux.dat)
3643 (amd64-mpx-linux.dat, amd64-avx512-linux.dat, x32-linux.dat)
3644 (x32-avx-linux.dat, x32-avx512-linux.dat): Add
3645 i386/64bit-segments.xml in those rules.
3646 * features/i386/64bit-segments.xml: New file.
3647 * features/i386/amd64-avx-mpx-linux.xml: Add 64bit-segments.xml.
3648 * features/i386/amd64-avx-linux.xml: Add 64bit-segments.xml.
3649 * features/i386/amd64-avx512-linux.xml: Add 64bit-segments.xml.
3650 * features/i386/amd64-mpx-linux.xml: Add 64bit-segments.xml.
3651 * features/i386/x32-avx512-linux.xml: Add 64bit-segments.xml.
3652 * features/i386/x32-avx-linux.xml: Add 64bit-segments.xml.
3653 * features/i386/amd64-linux.xml: Add 64bit-segments.xml.
3654 * features/i386/amd64-avx-linux.c: Regenerated.
3655 * features/i386/amd64-avx-mpx-linux.c: Regenerated.
3656 * features/i386/amd64-avx-mpx.c: Regenerated.
3657 * features/i386/amd64-avx512-linux.c: Regenerated.
3658 * features/i386/amd64-linux.c: Regenerated.
3659 * features/i386/amd64-mpx-linux.c: Regenerated.
3660 * features/i386/i386-avx-mpx-linux.c: Regenerated.
3661 * features/i386/i386-avx-mpx.c: Regenerated.
3662 * features/i386/x32-avx-linux.c: Regenerated.
3663 * features/i386/x32-avx512-linux.c: Regenerated.
3664 * regformats/i386/amd64-avx-linux.dat: Regenerated.
3665 * regformats/i386/amd64-avx-mpx-linux.dat: Regenerated.
3666 * regformats/i386/amd64-avx512-linux.dat: Regenerated.
3667 * regformats/i386/amd64-linux.dat: Regenerated.
3668 * regformats/i386/amd64-mpx-linux.dat: Regenerated.
3669 * regformats/i386/x32-avx-linux.dat: Regenerated.
3670 * regformats/i386/x32-avx512-linux.dat: Regenerated.
3671 * regformats/i386/x32-linux.dat: Regenerated.
3672
8884e97e
WT
36732017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
3674
3675 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM):
3676 Set to AMD64_NUM_REGS.
3677
7005d26a
WT
36782017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
3679
3680 * amd64-nat.c (amd64_native_gregset_reg_offset): Simplify logic
3681 that checks validity of a register number.
3682
4bd2e1b2
KC
36832017-01-27 Kees Cook <keescook@google.com>
3684
3685 * gdb/arm-linux-nat.c (arm_linux_fetch_inferior_registers): Call
3686 fetch_fpregs if target has fpa registers.
3687 (arm_linux_store_inferior_registers): Call store_fpregs if target
3688 has fpa registers.
3689
7cf1de6c
AA
36902017-01-26 Andreas Arnez <arnez@linux.vnet.ibm.com>
3691
3692 * cris-tdep.c (cris_gdbarch_init): Remove check for
3693 info.byte_order and force it to BFD_ENDIAN_LITTLE.
3694
874a1c8c
AT
36952017-01-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
3696
3697 * corelow.c (get_core_register_section): Check for regset
3698 existence before checking for REGSET_VARIABLE_SIZE.
3699
d8b49cf0
YQ
37002017-01-26 Yao Qi <yao.qi@linaro.org>
3701 Pedro Alves <palves@redhat.com>
3702
3703 PR gdb/20939
3704 * disasm.c (gdb_disassembler::dis_asm_memory_error): Don't
3705 call memory_error, save memaddr instead.
3706 (gdb_disassembler::print_insn): If gdbarch_print_insn returns
3707 negative, cal memory_error.
3708 * disasm.h (gdb_disassembler) <m_err_memaddr>: New field.
3709
658ca58c
YQ
37102017-01-26 Yao Qi <yao.qi@linaro.org>
3711
3712 * disasm-selftests.c (memory_error_test): New function.
3713 (_initialize_disasm_selftests): Register memory_error_test.
3714
79843d45
YQ
37152017-01-26 Yao Qi <yao.qi@linaro.org>
3716
3717 * Makefile.in (SFILES): Add disasm-selftests.c and
3718 selftest-arch.c.
3719 (COMMON_OBS): Add disasm-selftests.o and selftest-arch.o.
3720 * disasm-selftests.c: New file.
3721 * selftest-arch.c: New file.
3722 * selftest-arch.h: New file.
3723
8cafda32
YQ
37242017-01-26 Yao Qi <yao.qi@linaro.org>
3725
3726 * mep-tdep.c (mep_gdb_print_insn): Set info->arch
3727 to bfd_arch_mep. Don't return 0 if section is not
3728 found. Call print_insn_mep.
3729
e47ad6c0
YQ
37302017-01-26 Pedro Alves <palves@redhat.com>
3731 Yao Qi <yao.qi@linaro.org>
3732
3733 * arm-tdep.c: Include "disasm.h".
3734 (gdb_print_insn_arm): Update code to get gdbarch.
3735 * disasm.c (dis_asm_read_memory): Change it to
3736 gdb_disassembler::dis_asm_read_memory.
3737 (dis_asm_memory_error): Likewise.
3738 (dis_asm_print_address): Likewise.
3739 (gdb_pretty_print_insn): Change it to
3740 gdb_disassembler::pretty_print_insn.
3741 (dump_insns): Add one argument gdb_disassemlber. All
3742 callers updated.
3743 (do_mixed_source_and_assembly_deprecated): Likewise.
3744 (do_mixed_source_and_assembly): Likewise.
3745 (do_assembly_only): Likewise.
3746 (gdb_disassembler::gdb_disassembler): New.
3747 (gdb_disassembler::print_insn): New.
3748 * disasm.h (class gdb_disassembler): New.
3749 (gdb_pretty_print_insn): Remove declaration.
3750 (gdb_disassemble_info): Likewise.
3751 * guile/scm-disasm.c (class gdbscm_disassembler): New.
3752 (gdbscm_disasm_read_memory_worker): Update.
3753 (gdbscm_disasm_read_memory): Update.
3754 (gdbscm_disasm_memory_error): Remove.
3755 (gdbscm_disasm_print_address): Remove.
3756 (gdbscm_disassembler::gdbscm_disassembler): New.
3757 (gdbscm_print_insn_from_port): Update.
3758 * mips-tdep.c: Include disasm.h.
3759 (gdb_print_insn_mips): Update code to get gdbarch.
3760 * record-btrace.c (btrace_insn_history): Update.
3761 * spu-tdep.c: Include disasm.h.
3762 (struct spu_dis_asm_data): Remove.
3763 (struct spu_dis_asm_info): New.
3764 (spu_dis_asm_print_address): Use spu_dis_asm_info to get
3765 SPU id.
3766 (gdb_print_insn_spu): Cast disassemble_info to
3767 spu_dis_asm_info.
3768
80d75874
YQ
37692017-01-26 Yao Qi <yao.qi@linaro.org>
3770
3771 * disasm.c (do_ui_file_delete): Delete.
3772 (gdb_insn_length): Move code creating stream to ...
3773 * utils.c (null_stream): ... here. New function.
3774 * utils.h (null_stream): Declare.
3775
60685cd0
SM
37762017-01-23 Simon Marchi <simon.marchi@polymtl.ca>
3777
3778 * python/py-inferior.c (find_thread_object): Return directly
3779 from the loop. Remove "found" variable.
3780
eb1cdb62
JB
37812017-01-21 Joel Brobecker <brobecker@adacore.com>
3782
3783 GDB 7.12.1 released.
3784
b1ce6568
SM
37852017-01-20 Simon Marchi <simon.marchi@ericsson.com>
3786
3787 * python/py-function.c (fnpy_call): Reorder declarations to have
3788 the gdbpy_enter object declared first.
3789 * python/py-xmethods.c (gdbpy_get_xmethod_arg_types): Likewise.
3790
6f8b0407
SM
37912017-01-20 Simon Marchi <simon.marchi@ericsson.com>
3792
fec93fb1 3793 PR python/21068
6f8b0407
SM
3794 * python/python-internal.h (PyMem_RawMalloc): Define for
3795 Python < 3.4.
3796 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use
3797 PyMem_RawMalloc instead of PyMem_Malloc.
3798
78cbbba8
LM
37992017-01-20 Mike Wrighton <mike_wrighton@codesourcery.com>
3800 Luis Machado <lgustavo@codesourcery.com>
3801
3802 * NEWS (New commands): Mention flash-erase.
3803 (New MI commands): Mention target-flash-erase.
3804 * mi/mi-cmds.c (mi_cmd_target_flash_erase): Add target-flash-erase MI
3805 command.
3806 * mi/mi-cmds.h (mi_cmd_target_flash_erase): New declaration.
3807 * mi/mi-main.c (mi_cmd_target_flash_erase): New function.
3808 * target.c (flash_erase_command): New function.
3809 (initialize_targets): Add new flash-erase command.
3810 * target.h (flash_erase_command): New declaration.
3811
2132fe85
JB
38122017-01-20 Joel Brobecker <brobecker@adacore.com>
3813
3814 * nat/linux-ptrace.c: Only include <sys/procfs.h> if
3815 HAVE_SYS_PROCFS_H is defined.
3816
d1dff226
AH
38172017-01-18 Alan Hayward <alan.hayward@arm.com>
3818
3819 * remote.c (struct cached_reg): Change data into a pointer.
3820 * (stop_reply_dtr): Free data pointers before deleting vector.
3821 (process_stop_reply): Likewise.
3822 (remote_parse_stop_reply): Allocate space for data
3823
9890e433
AH
38242017-01-18 Alan Hayward <alan.hayward@arm.com>
3825
3826 * amd64-tdep.c (amd64_pseudo_register_read_value): remove
3827 MAX_REGISTER_SIZE.
3828 (amd64_pseudo_register_read_value): Likewise.
3829 * remote.c (fetch_register_using_p): Remove MAX_REGISTER_SIZE.
3830 (store_register_using_P): Likewise.
3831 * regcache.c (regcache_xfer_part): Likewise.
3832
7a36499a
IR
38332017-01-16 Ivo Raisr <ivo.raisr@oracle.com>
3834
3835 Split real and pseudo registers.
3836 * sparc-tdep.h (SPARC_CORE_REGISTERS): New macro.
3837 (sparc32_pseudo_regnum): New enum.
3838 * sparc64-tdep.h (sparc64_pseudo_regnum): New enum.
3839 * sparc-tdep.c (SPARC32_FPU_REGISTERS): New macro.
3840 (SPARC32_CP0_REGISTERS): New macro.
3841 (sparc32_pseudo_register_name): New function.
3842 (sparc32_register_name): Use sparc32_pseudo_register_name.
3843 (sparc32_pseudo_register_type): New function.
3844 (sparc32_register_type): Use sparc32_pseudo_register_type.
3845 (sparc32_pseudo_register_read, sparc32_pseudo_register_write): Handle
3846 pseudo register numbers.
3847 * sparc64-tdep.c SPARC64_FPU_REGISTERS): New macro.
3848 (SPARC64_CP0_REGISTERS): New macro.
3849 (sparc64_pseudo_register_name): New function.
3850 (sparc64_register_name): Use sparc64_pseudo_register_name.
3851 (sparc64_pseudo_register_type): New function.
3852 (sparc64_register_type): Use sparc64_pseudo_register_type.
3853 (sparc64_pseudo_register_read, sparc64_pseudo_register_write): Handle
3854 pseudo register numbers.
3855 (sparc64_store_floating_fields, sparc64_extract_floating_fields,
3856 sparc64_store_arguments): Handle pseudo register numbers.
3857
6f8976bf
YQ
38582017-01-13 Yao Qi <yao.qi@linaro.org>
3859
3860 * remote.c (REMOTE_DEBUG_MAX_CHAR): New macro.
3861 (putpkt_binary): Print only REMOTE_DEBUG_MAX_CHAR chars in debug
3862 output.
3863 (getpkt_or_notif_sane_1): Likewise.
3864
e4241ace
YQ
38652017-01-13 Yao Qi <yao.qi@linaro.org>
3866
3867 * Makefile.in (checker-headers): Use CXX and CXX_DIALET instead
3868 of CC. Pass "-x c++-header" instead of "-x c".
3869
3015c064
SM
38702017-01-12 Simon Marchi <simon.marchi@ericsson.com>
3871
3872 * remote.c (remote_can_async_p): Update comment.
3873
fde1b17d
SM
38742017-01-12 Simon Marchi <simon.marchi@ericsson.com>
3875
3876 * linux-nat.c (linux_nat_can_async_p): Update comment.
3877
ca1ca08b
SM
38782017-01-12 Simon Marchi <simon.marchi@ericsson.com>
3879
3880 * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
3881
4ad2da73
SM
38822017-01-11 Simon Marchi <simon.marchi@ericsson.com>
3883
3884 * cli/cli-decode.c (lookup_cmd_1): Fix typo in comment.
3885
c8b23b3f
TT
38862017-01-10 Tom Tromey <tom@tromey.com>
3887
3888 * python/py-type.c (typy_legacy_template_argument): Update.
3889 * cp-support.h (struct demangle_parse_info) (demangle_parse_info,
3890 ~demangle_parse_info): Declare new members.
3891 (cp_demangled_name_to_comp): Return unique_ptr.
3892 (cp_demangled_name_parse_free)
3893 (make_cleanup_cp_demangled_name_parse_free)
3894 (cp_new_demangle_parse_info): Remove.
3895 * cp-support.c (do_demangled_name_parse_free_cleanup)
3896 (make_cleanup_cp_demangled_name_parse_free): Remove.
3897 (inspect_type, cp_canonicalize_string_full)
3898 (cp_canonicalize_string): Update.
3899 (mangled_name_to_comp): Change return type.
3900 (cp_class_name_from_physname, method_name_from_physname)
3901 (cp_func_name, cp_remove_params): Update.
3902 * cp-name-parser.y (demangle_parse_info): New constructor, from
3903 cp_new_demangle_parse_info.
3904 (~demangle_parse_info): New destructor, from
3905 cp_demangled_name_parse_free.
3906 (cp_merge_demangle_parse_infos): Update.
3907 (cp_demangled_name_to_comp): Change return type.
3908
1ac32117
TT
39092017-01-10 Tom Tromey <tom@tromey.com>
3910
3911 * top.c (prevent_dont_repeat): Change return type.
3912 * python/python.c (execute_gdb_command): Use std::string.
3913 Update.
3914 * guile/guile.c (gdbscm_execute_gdb_command): Update.
3915 * command.h (prevent_dont_repeat): Change return type.
3916 * breakpoint.c (bpstat_do_actions_1): Update.
3917
0cf08227
TT
39182017-01-10 Tom Tromey <tom@tromey.com>
3919
3920 * value.h (scoped_value_mark::~scoped_value_mark): Call
3921 free_to_mark.
3922 (scoped_value_mark::free_to_mark): New method.
3923 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
3924 scoped_value_mark.
3925
eb115069
TT
39262017-01-10 Tom Tromey <tom@tromey.com>
3927
3928 * python/py-value.c (valpy_dereference, valpy_referenced_value)
3929 (valpy_reference_value, valpy_const_value, valpy_get_address)
3930 (valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
3931 (valpy_getitem, valpy_call, valpy_binop_throw, valpy_negative)
3932 (valpy_absolute, valpy_richcompare_throw): Use scoped_value_mark.
3933 * dwarf2loc.c (dwarf2_loc_desc_get_symbol_read_needs): Use
3934 scoped_value_mark.
3935 * dwarf2-frame.c (execute_stack_op): Use scoped_value_mark.
3936 * value.h (scoped_value_mark): New class.
3937
906768f9
TT
39382017-01-10 Tom Tromey <tom@tromey.com>
3939
3940 * dwarf2read.c (dwarf2_build_psymtabs): Use psymtab_discarder.
3941 * psympriv.h (make_cleanup_discard_psymtabs): Don't declare.
3942 * psymtab.c (discard_psymtabs_upto): Remove.
3943 (make_cleanup_discard_psymtabs): Remove.
3944 (struct psymtab_state): Remove.
3945
bef155c3
TT
39462017-01-10 Tom Tromey <tom@tromey.com>
3947
3948 * record-full.c (record_full_save_cleanups): Remove.
3949 (record_full_save): Use gdb::unlinker.
3950 * gcore.c (do_bfd_delete_cleanup): Remove.
3951 (gcore_command): Use gdb::unlinker, unique_xmalloc_ptr. Remove
3952 cleanups.
3953 * dwarf2read.c (unlink_if_set): Remove.
3954 (write_psymtabs_to_index): Use gdb::unlinker.
3955 * common/gdb_unlinker.h: New file.
3956
192b62ce
TT
39572017-01-10 Tom Tromey <tom@tromey.com>
3958
3959 * windows-tdep.c (windows_xfer_shared_library): Update.
3960 * windows-nat.c (windows_make_so): Update.
3961 * utils.h (make_cleanup_bfd_unref): Remove.
3962 * utils.c (do_bfd_close_cleanup, make_cleanup_bfd_unref): Remove.
3963 * symfile.h (symfile_bfd_open)
3964 (find_separate_debug_file_in_section): Return gdb_bfd_ref_ptr.
3965 * symfile.c (read_symbols, symbol_file_add)
3966 (separate_debug_file_exists): Update.
3967 (symfile_bfd_open): Return gdb_bfd_ref_ptr.
3968 (generic_load, reread_symbols): Update.
3969 * symfile-mem.c (symbol_file_add_from_memory): Update.
3970 * spu-linux-nat.c (spu_bfd_open): Return gdb_bfd_ref_ptr.
3971 (spu_symbol_file_add_from_memory): Update.
3972 * solist.h (struct target_so_ops) <bfd_open>: Return
3973 gdb_bfd_ref_ptr.
3974 (solib_bfd_fopen, solib_bfd_open): Return gdb_bfd_ref_ptr.
3975 * solib.c (solib_bfd_fopen, solib_bfd_open): Return
3976 gdb_bfd_ref_ptr.
3977 (solib_map_sections, reload_shared_libraries_1): Update.
3978 * solib-svr4.c (enable_break): Update.
3979 * solib-spu.c (spu_bfd_fopen): Return gdb_bfd_ref_ptr.
3980 * solib-frv.c (enable_break2): Update.
3981 * solib-dsbt.c (enable_break): Update.
3982 * solib-darwin.c (gdb_bfd_mach_o_fat_extract): Return
3983 gdb_bfd_ref_ptr.
3984 (darwin_solib_get_all_image_info_addr_at_init): Update.
3985 (darwin_bfd_open): Return gdb_bfd_ref_ptr.
3986 * solib-aix.c (solib_aix_bfd_open): Return gdb_bfd_ref_ptr.
3987 * record-full.c (record_full_save): Update.
3988 * python/py-objfile.c (objfpy_add_separate_debug_file): Update.
3989 * procfs.c (insert_dbx_link_bpt_in_file): Update.
3990 * minidebug.c (find_separate_debug_file_in_section): Return
3991 gdb_bfd_ref_ptr.
3992 * machoread.c (macho_add_oso_symfile): Change abfd to
3993 gdb_bfd_ref_ptr.
3994 (macho_symfile_read_all_oso): Update.
3995 (macho_check_dsym): Return gdb_bfd_ref_ptr.
3996 (macho_symfile_read): Update.
3997 * jit.c (bfd_open_from_target_memory): Return gdb_bfd_ref_ptr.
3998 (jit_bfd_try_read_symtab): Update.
3999 * gdb_bfd.h (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
4000 (gdb_bfd_openw, gdb_bfd_openr_iovec)
4001 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
4002 gdb_bfd_ref_ptr.
4003 (gdb_bfd_ref_policy): New struct.
4004 (gdb_bfd_ref_ptr): New typedef.
4005 * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
4006 (gdb_bfd_openw, gdb_bfd_openr_iovec)
4007 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
4008 gdb_bfd_ref_ptr.
4009 * gcore.h (create_gcore_bfd): Return gdb_bfd_ref_ptr.
4010 * gcore.c (create_gcore_bfd): Return gdb_bfd_ref_ptr.
4011 (gcore_command): Update.
4012 * exec.c (exec_file_attach): Update.
4013 * elfread.c (elf_symfile_read): Update.
4014 * dwarf2read.c (dwarf2_get_dwz_file): Update.
4015 (try_open_dwop_file, open_dwo_file): Return gdb_bfd_ref_ptr.
4016 (open_and_init_dwo_file): Update.
4017 (open_dwp_file): Return gdb_bfd_ref_ptr.
4018 (open_and_init_dwp_file): Update.
4019 * corelow.c (core_open): Update.
4020 * compile/compile-object-load.c (compile_object_load): Update.
4021 * common/gdb_ref_ptr.h (ref_ptr::operator->): New operator.
4022 * coffread.c (coff_symfile_read): Update.
4023 * cli/cli-dump.c (bfd_openr_or_error, bfd_openw_or_error): Return
4024 gdb_bfd_ref_ptr. Rename.
4025 (dump_bfd_file, restore_command): Update.
4026 * build-id.h (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
4027 * build-id.c (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
4028 (find_separate_debug_file_by_buildid): Update.
4029
50315b21
TT
40302017-01-10 Tom Tromey <tom@tromey.com>
4031
4032 * common/gdb_ref_ptr.h: New file.
4033 * python/py-ref.h (struct gdbpy_ref_policy): New.
4034 (gdbpy_ref): Now a typedef.
4035
fc4007c9
TT
40362017-01-10 Tom Tromey <tom@tromey.com>
4037
4038 * utils.h (make_cleanup_htab_delete): Don't declare.
4039 * utils.c (do_htab_delete_cleanup, make_cleanup_htab_delete):
4040 Remove.
4041 * linespec.c (decode_compound_collector): Add constructor,
4042 destructor.
4043 (lookup_prefix_sym): Remove cleanup.
4044 (symtab_collector): Add constructor, destructor.
4045 (collect_symtabs_from_filename): Remove cleanup.
4046 * disasm.c (do_mixed_source_and_assembly): Use htab_up.
4047 * compile/compile-c-symbols.c (generate_c_for_variable_locations):
4048 Use htab_up.
4049 * gnu-v3-abi.c (gnuv3_print_vtable): Use htab_up.
4050 * dwarf2read.c (dw2_expand_symtabs_matching)
4051 (dw2_map_symbol_filenames, dwarf_decode_macros)
4052 (write_psymtabs_to_index): Use htab_up.
4053 * dwarf2loc.c (func_verify_no_selftailcall)
4054 (call_site_find_chain_1, func_verify_no_selftailcall)
4055 (chain_candidate, call_site_find_chain_1): Use std::unordered_set,
4056 std::vector, gdb::unique_xmalloc_ptr.
4057 (call_sitep): Remove typedef.
4058 (dwarf2_locexpr_baton_eval): Remove unused variable.
4059
8dbcee67
TT
40602017-01-10 Tom Tromey <tom@tromey.com>
4061
4062 * python/python-internal.h (make_cleanup_py_decref)
4063 (make_cleanup_py_xdecref): Don't declare.
4064 * python/py-utils.c (py_decref, make_cleanup_py_decref)
4065 (py_xdecref, make_cleanup_py_xdecref): Remove.
4066
13df46cc
TT
40672017-01-10 Tom Tromey <tom@tromey.com>
4068
4069 * python/py-framefilter.c (py_mi_print_variables): Use gdbpy_ref.
4070 (py_print_locals, enumerate_locals, py_print_args): Use gdbpy_ref.
4071
06fc9bf7
TT
40722017-01-10 Tom Tromey <tom@tromey.com>
4073
4074 * python/py-framefilter.c (enumerate_args): Use gdbpy_ref.
4075
830a4934
TT
40762017-01-10 Tom Tromey <tom@tromey.com>
4077
4078 * python/py-utils.c (unicode_to_encoded_string)
4079 (python_string_to_target_string)
4080 (python_string_to_target_python_string)
4081 (python_string_to_host_string, gdbpy_obj_to_string)
4082 (get_addr_from_python): Use gdbpy_ref.
4083
4586d543
TT
40842017-01-10 Tom Tromey <tom@tromey.com>
4085
4086 * python/py-unwind.c (pyuw_object_attribute_to_pointer): Use
4087 gdbpy_ref.
4088
59876f8f
TT
40892017-01-10 Tom Tromey <tom@tromey.com>
4090
4091 * python/python.c (eval_python_command, gdbpy_decode_line)
4092 (gdbpy_run_events, gdbpy_start_type_printers)
4093 (gdbpy_apply_type_printers): Use gdbpy_ref.
4094
97d83487
TT
40952017-01-10 Tom Tromey <tom@tromey.com>
4096
4097 * python/py-param.c (get_doc_string, compute_enum_values): Use
4098 gdbpy_ref.
4099
9205649a
TT
41002017-01-10 Tom Tromey <tom@tromey.com>
4101
4102 * python/py-inferior.c (find_thread_object, build_inferior_list):
4103 Use gdbpy_ref.
4104
74c49d45
TT
41052017-01-10 Tom Tromey <tom@tromey.com>
4106
4107 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
4108
16361ffb
TT
41092017-01-10 Tom Tromey <tom@tromey.com>
4110
4111 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope): Use
4112 gdbpy_ref.
4113
905f2cca
TT
41142017-01-10 Tom Tromey <tom@tromey.com>
4115
4116 * python/py-cmd.c (cmdpy_completer_helper): Use gdbpy_ref. Remove
4117 extra incref.
4118 (cmdpy_completer_handle_brkchars, cmdpy_completer, cmdpy_init):
4119 Use gdbpy_ref.
4120
64081434
TT
41212017-01-10 Tom Tromey <tom@tromey.com>
4122
4123 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
4124 gdbpy_ref.
4125
59e9e831
TT
41262017-01-10 Tom Tromey <tom@tromey.com>
4127
4128 * python/py-arch.c (archpy_disassemble): Use gdbpy_ref. Don't
4129 decref results of PyArg_ParseTupleAndKeywords.
4130
9de10f6d
TT
41312017-01-10 Tom Tromey <tom@tromey.com>
4132
4133 * python/python.c (python_run_simple_file): Use
4134 unique_xmalloc_ptr, gdbpy_ref.
4135
2bd5759d
TT
41362017-01-10 Tom Tromey <tom@tromey.com>
4137
4138 * python/py-prettyprint.c (print_stack_unless_memory_error)
4139 (print_string_repr, print_children): Use gdbpy_ref.
4140 (dummy_python_frame): New class.
4141 (dummy_python_frame::dummy_python_frame): Rename from
4142 push_dummy_python_frame.
4143 (py_restore_tstate): Remove.
4144
3b4e0e01
TT
41452017-01-10 Tom Tromey <tom@tromey.com>
4146
4147 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
4148
17a22718
TT
41492017-01-10 Tom Tromey <tom@tromey.com>
4150
4151 * python/python.c (ensure_python_env, restore_python_env):
4152 Remove.
4153 * python/python-internal.h (ensure_python_env): Don't declare.
4154 * varobj.h (varobj_ensure_python_env): Don't declare.
4155 * varobj.c (varobj_ensure_python_env): Remove.
4156
68cdc557
TT
41572017-01-10 Tom Tromey <tom@tromey.com>
4158
4159 * varobj.c (varobj_value_get_print_value): Use
4160 gdbpy_enter_varobj.
4161
1eba6383
TT
41622017-01-10 Tom Tromey <tom@tromey.com>
4163
4164 * python/py-prettyprint.c (print_string_repr, print_children):
4165 Update.
4166 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Change type
4167 of "encoding".
4168 * varobj.c (varobj_value_get_print_value): Update.
4169 * python/python-internal.h (gdbpy_extract_lazy_string): Update.
4170
bde7b3e3
TT
41712017-01-10 Tom Tromey <tom@tromey.com>
4172
4173 * varobj.c (varobj_get_display_hint)
4174 (dynamic_varobj_has_child_method, install_new_value_visualizer)
4175 (varobj_set_visualizer, free_variable): Use
4176 gdbpy_enter_varobj.
4177
a7785f8c
TT
41782017-01-10 Tom Tromey <tom@tromey.com>
4179
4180 * python/python.c (python_command): Use gdbpy_enter, gdbpy_ref.
4181 (do_finish_initialization): New function. Use gdbpy_ref.
4182 (gdbpy_finish_initialization): Use gdbpy_enter. Call
4183 do_finish_initialization.
4184
2865bfce
TT
41852017-01-10 Tom Tromey <tom@tromey.com>
4186
4187 * python/py-param.c (get_set_value, get_show_value): Use
4188 gdbpy_enter, gdbpy_ref.
4189
0e9dcc75
TT
41902017-01-10 Tom Tromey <tom@tromey.com>
4191
4192 * python/py-function.c (fnpy_call): Use gdbpy_enter, gdbpy_ref.
4193
12a5cedd
TT
41942017-01-10 Tom Tromey <tom@tromey.com>
4195
4196 * python/py-cmd.c (cmdpy_function): Use gdbpy_enter, gdbpy_ref.
4197
788f2586
TT
41982017-01-10 Tom Tromey <tom@tromey.com>
4199
4200 * python/py-varobj.c (py_varobj_iter_dtor, py_varobj_iter_next):
4201 Use gdbpy_enter_varobj.
4202
6cd67bea
TT
42032017-01-10 Tom Tromey <tom@tromey.com>
4204
4205 * varobj.c (gdbpy_enter_varobj): New constructor.
4206 * python/python-internal.h (gdbpy_enter_varobj): New class.
4207 * python/py-varobj.c (py_varobj_get_iterator): Use
4208 gdbpy_enter_varobj.
4209
14b122bf
TT
42102017-01-10 Tom Tromey <tom@tromey.com>
4211
4212 * python/py-xmethods.c (gdbpy_get_xmethod_result_type): Use
4213 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
4214 (gdbpy_invoke_xmethod): Use gdbpy_ref, gdbpy_enter.
4215 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref,
4216 unique_xmalloc_ptr.
4217 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref, gdbpy_enter.
4218
bf1ca3b9
TT
42192017-01-10 Tom Tromey <tom@tromey.com>
4220
4221 * python/py-xmethods.c (invoke_match_method): Use
4222 gdbpy_ref.
4223
572a5524
TT
42242017-01-10 Tom Tromey <tom@tromey.com>
4225
4226 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): use
4227 gdbpy_enter, gdbpy_ref.
4228
396a78b6
TT
42292017-01-10 Tom Tromey <tom@tromey.com>
4230
4231 * python/python.c (python_interactive_command): Use gdbpy_enter.
4232
a88b13c7
TT
42332017-01-10 Tom Tromey <tom@tromey.com>
4234
4235 * python/python.c (gdbpy_before_prompt_hook): Use gdbpy_enter,
4236 gdbpy_ref.
4237
e9f0c363
TT
42382017-01-10 Tom Tromey <tom@tromey.com>
4239
4240 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Use
4241 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
4242
6349f452
TT
42432017-01-10 Tom Tromey <tom@tromey.com>
4244
4245 * utils.h (htab_deleter): New struct.
4246 (htab_up): New typedef.
4247 * python/py-framefilter.c (gdbpy_apply_frame_filter): Use
4248 gdbpy_enter, gdbpy_ref, htab_up.
4249
c0171de6
TT
42502017-01-10 Tom Tromey <tom@tromey.com>
4251
4252 * python/py-unwind.c (pending_frame_invalidate): Remove.
4253 (pyuw_sniffer): Use gdbpy_enter and gdbpy_ref.
4254
f18e226f
TT
42552017-01-10 Tom Tromey <tom@tromey.com>
4256
4257 * python/py-xmethods.c (gdbpy_free_xmethod_worker_data)
4258 (gdbpy_clone_xmethod_worker_data): Use gdbpy_enter.
4259
c57af3f1
TT
42602017-01-10 Tom Tromey <tom@tromey.com>
4261
4262 * python/py-type.c (save_objfile_types): Use gdbpy_enter.
4263
60e600ec
TT
42642017-01-10 Tom Tromey <tom@tromey.com>
4265
4266 * python/python.c (gdbpy_eval_from_control_command)
4267 (gdbpy_source_script, gdbpy_run_events)
4268 (gdbpy_source_objfile_script, gdbpy_execute_objfile_script)
4269 (gdbpy_free_type_printers, gdbpy_finish_initialization): Use
4270 gdbpy_enter.
4271
bf7da5b0
TT
42722017-01-10 Tom Tromey <tom@tromey.com>
4273
4274 * python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
4275
2d38bced
TT
42762017-01-10 Tom Tromey <tom@tromey.com>
4277
4278 * python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
4279
07bc7329
TT
42802017-01-10 Tom Tromey <tom@tromey.com>
4281
4282 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
4283 (python_on_inferior_call_pre, python_on_inferior_call_post)
4284 (python_on_memory_change, python_on_register_change)
4285 (python_inferior_exit, python_new_objfile, add_thread_object)
4286 (delete_thread_object, py_free_inferior): Use gdbpy_enter.
4287
6e7c365e
TT
42882017-01-10 Tom Tromey <tom@tromey.com>
4289
4290 * python/py-finishbreakpoint.c (bpfinishpy_handle_stop)
4291 (bpfinishpy_handle_exit): Use gdbpy_enter.
4292
6ba0cd40
TT
42932017-01-10 Tom Tromey <tom@tromey.com>
4294
4295 * python/py-cmd.c (cmdpy_destroyer)
4296 (cmdpy_completer_handle_brkchars, cmdpy_completer): Use
4297 gdbpy_enter.
4298
de2dc875
TT
42992017-01-10 Tom Tromey <tom@tromey.com>
4300
4301 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
4302 gdbpy_enter.
4303 (gdbpy_breakpoint_has_cond): Likewise.
4304
4ecee2c4
TT
43052017-01-10 Tom Tromey <tom@tromey.com>
4306
4307 * python/python.c (gdbpy_enter): New constructor.
4308 (~gdbpy_enter): New destructor.
4309 (restore_python_env, ensure_python_env): Rewrite.
4310 * python/python-internal.h (gdbpy_enter): New class.
4311
37fce74f
TT
43122017-01-10 Tom Tromey <tom@tromey.com>
4313
4314 * python/py-symbol.c (gdbpy_lookup_symbol): Use gdbpy_ref.
4315
53a0cca3
TT
43162017-01-10 Tom Tromey <tom@tromey.com>
4317
4318 * python/py-value.c (value_has_field, get_field_flag)
4319 (get_field_type, valpy_getitem, convert_value_from_python): Use
4320 gdbpy_ref.
4321
ff3724f5
TT
43222017-01-10 Tom Tromey <tom@tromey.com>
4323
4324 * python/python.c (gdbpy_progspaces, gdbpy_objfiles): Use
4325 gdbpy_ref.
4326
0700aea5
TT
43272017-01-10 Tom Tromey <tom@tromey.com>
4328
4329 * python/py-prettyprint.c (search_pp_list)
4330 (find_pretty_printer_from_objfiles)
4331 (find_pretty_printer_from_progspace)
4332 (find_pretty_printer_from_gdb, find_pretty_printer)
4333 (gdbpy_get_display_hint, gdbpy_get_varobj_pretty_printer): Use
4334 gdbpy_ref.
4335
1bb44c9f
TT
43362017-01-10 Tom Tromey <tom@tromey.com>
4337
4338 * python/py-param.c (call_doc_function): Use gdbpy_ref.
4339
87ce03fd
TT
43402017-01-10 Tom Tromey <tom@tromey.com>
4341
4342 * python/py-linetable.c (build_line_table_tuple_from_pcs)
4343 (ltpy_get_all_source_lines): Use gdbpy_ref.
4344
ee0a3fb8
TT
43452017-01-10 Tom Tromey <tom@tromey.com>
4346
4347 * python/py-framefilter.c (extract_sym, extract_value)
4348 (get_py_iter_from_func, bootstrap_python_frame_filters): Use
4349 gdbpy_ref.
4350
bf2a52fa
TT
43512017-01-10 Tom Tromey <tom@tromey.com>
4352
4353 * python/py-breakpoint.c (gdbpy_breakpoints): Use gdbpy_ref.
4354
f59fe7f8
TT
43552017-01-10 Tom Tromey <tom@tromey.com>
4356
4357 * python/py-inferior.c (gdbpy_inferiors): Use gdbpy_ref.
4358
80bd970a
TT
43592017-01-10 Tom Tromey <tom@tromey.com>
4360
4361 * python/py-function.c (convert_values_to_python, fnpy_init): Use
4362 gdbpy_ref.
4363
d1b3de2e
TT
43642017-01-10 Tom Tromey <tom@tromey.com>
4365
4366 * python/py-cmd.c (gdbpy_string_to_argv): Use gdbpy_ref.
4367
3bb43384
TT
43682017-01-10 Tom Tromey <tom@tromey.com>
4369
4370 * python/py-type.c (convert_field, make_fielditem, typy_fields)
4371 (typy_range): Use gdbpy_ref.
4372
abf5651e
TT
43732017-01-10 Tom Tromey <tom@tromey.com>
4374
4375 * python/py-threadevent.c (create_thread_event_object): Use
4376 gdbpy_ref.
4377 * python/py-stopevent.c (create_stop_event_object): Simplify.
4378 (emit_stop_event): Use gdbpy_ref.
4379 * python/py-signalevent.c (create_signal_event_object): Use
4380 gdbpy_ref.
4381 * python/py-newobjfileevent.c (create_new_objfile_event_object)
4382 (emit_new_objfile_event, create_clear_objfiles_event_object)
4383 (emit_clear_objfiles_event): Use gdbpy_ref.
4384 * python/py-infevents.c (create_inferior_call_event_object)
4385 (create_register_changed_event_object)
4386 (create_memory_changed_event_object, emit_inferior_call_event)
4387 (emit_memory_changed_event, emit_register_changed_event): Use
4388 gdbpy_ref.
4389 * python/py-exitedevent.c (create_exited_event_object)
4390 (emit_exited_event): Use gdbpy_ref.
4391 * python/py-event.h (evpy_emit_event): Remove
4392 CPYCHECKER_STEALS_REFERENCE_TO_ARG annotation.
4393 * python/py-event.c (evpy_emit_event): Use gdbpy_ref.
4394 * python/py-continueevent.c (emit_continue_event): Use
4395 gdbpy_ref.
4396 * python/py-breakpoint.c (gdbpy_breakpoint_created)
4397 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
4398 gdbpy_ref.
4399 * python/py-bpevent.c (create_breakpoint_event_object): Use
4400 gdbpy_ref.
4401
a68ff33e
TT
44022017-01-10 Tom Tromey <tom@tromey.com>
4403
4404 * python/py-ref.h: New file.
4405
7becfd03
SM
44062017-01-10 Simon Marchi <simon.marchi@ericsson.com>
4407
4408 * cli-out.c (cli_ui_out::do_redirect): Change return type to
4409 void.
4410 * cli-out.h (cli_ui_out::do_redirect): Likewise.
4411 * mi/mi-out.c (mi_ui_out::do_redirect): Likewise.
4412 * mi/mi-out.h (mi_ui_out::do_redirect): Likewise.
4413 * ui-out.c (ui_out::redirect): Likewise.
4414 * ui-out.h (ui_out::redirect, ui_out::do_redirect): Likewise.
4415 * cli/cli-logging.c (set_logging_redirect): Update call site of
4416 ui_out::redirect.
4417 (handle_redirections): Likewise.
4418 * scm-ports.c (ioscm_with_output_to_port_worker): Likewise.
4419 * top.c (execute_command_to_string): Likewise.
4420 * utils.c (do_ui_out_redirect_pop): Likewise.
4421
df294654
SM
44222017-01-10 Simon Marchi <simon.marchi@ericsson.com>
4423
4424 * stack.c (_initialize_stack): Update "frame" command help message.
4425
f5e6296e
IB
44262017-01-08 Iain Buclaw <ibuclaw@gdcproject.org>
4427
4428 * d-exp.y (CastExpression): Emit UNOP_CAST_TYPE.
4429
0e2d6fa6
YQ
44302017-01-06 Yao Qi <yao.qi@linaro.org>
4431
4432 * x86-linux-nat.h: Include gdb_proc_service.h.
4433
44d6d3f9
YQ
44342017-01-06 Yao Qi <yao.qi@linaro.org>
4435
4436 * ser-base.h: Include serial.h.
4437
656731fe
YQ
44382017-01-06 Yao Qi <yao.qi@linaro.org>
4439
4440 * ppc-linux-tdep.h: Include ppc-tdep.h.
4441
1ca8f924
YQ
44422017-01-06 Yao Qi <yao.qi@linaro.org>
4443
4444 * nat/amd64-linux-siginfo.h: Include signal.h.
4445
bc3008c4
YQ
44462017-01-06 Yao Qi <yao.qi@linaro.org>
4447
4448 * nat/aarch64-linux-hw-point.h: Include break-common.h.
4449
66c80d03
YQ
44502017-01-06 Yao Qi <yao.qi@linaro.org>
4451
4452 * mi/mi-parse.h: Include mi-cmds.h.
4453
051d2dda
YQ
44542017-01-06 Yao Qi <yao.qi@linaro.org>
4455
4456 * inf-loop.c: Don't include "target.h".
4457 * inf-loop.h: Include it here.
4458
8018d34f
YQ
44592017-01-06 Yao Qi <yao.qi@linaro.org>
4460
4461 * dfp.h: Include "dboulest.h" and "expression.h".
4462
c0b8369c
YQ
44632017-01-06 Yao Qi <yao.qi@linaro.org>
4464
4465 * ax-gdb.h: Include "ax.h".
4466
ad5cba2a
YQ
44672017-01-06 Yao Qi <yao.qi@linaro.org>
4468
4469 * Makefile.in (HFILES_NO_SRCDIR): Replace gdb_ptrace.h
4470 with nat/gdb_ptrace.h.
4471
1c33cd7f
YQ
44722017-01-05 Yao Qi <yao.qi@linaro.org>
4473
4474 * mips-fbsd-tdep.c (mips_fbsd_sigframe_init): Move && to
4475 new line.
4476 (mips64_fbsd_sigframe_init): Likewise.
4477
c988ac1d
JB
44782017-01-04 John Baldwin <jhb@FreeBSD.org>
4479
4480 * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Use
4481 GDB_OSABI_FREEBSD instead of GDB_OSABI_FREEBSD_ELF.
4482
b268007c
JB
44832017-01-04 John Baldwin <jhb@FreeBSD.org>
4484
4485 * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
4486 * NEWS: Mention new FreeBSD/mips native configuration.
4487 * config/mips/fbsd.mh: New file.
4488 * configure.host: Add mips*-*-freebsd*.
4489 * mips-fbsd-nat.c: New file.
4490
387360da
JB
44912017-01-04 John Baldwin <jhb@FreeBSD.org>
4492
4493 * Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
4494 (ALLDEPFILES): Add mips-fbsd-tdep.c.
4495 * NEWS: Mention new FreeBSD/mips target.
4496 * configure.tgt: Add mips*-*-freebsd*.
4497 * mips-fbsd-tdep.c: New file.
4498 * mips-fbsd-tdep.h: New file.
4499
2aaaf250
YQ
45002017-01-04 Yao Qi <yao.qi@linaro.org>
4501
4502 * dwarf2loc.c (write_pieced_value): Don't use VALUE_FRAME_ID (to),
4503 use c->frame_id when the piece location is DWARF_VALUE_REGISTER.
4504
61baf725
JB
45052017-01-01 Joel Brobecker <brobecker@adacore.com>
4506
6dbb839a 4507 Update copyright year range in all GDB files.
61baf725 4508
c113e7ff 45092017-01-01 Joel Brobecker <brobecker@adacore.com>
ce0db137 4510
c113e7ff 4511 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2016.
ce0db137 4512
c113e7ff 4513For older changes see ChangeLog-2016.
c906108c
SS
4514\f
4515Local Variables:
4516mode: change-log
4517left-margin: 8
4518fill-column: 74
4519version-control: never
57da7796 4520coding: utf-8
c906108c 4521End:
This page took 2.418648 seconds and 4 git commands to generate.