]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/ChangeLog
Fix aarch64-none-elf build error
[thirdparty/binutils-gdb.git] / gdb / ChangeLog
1 2017-11-24 Alan Hayward <alan.hayward@arm.com>
2
3 * configure.tgt: Add arch/aarch64.o
4
5 2017-11-24 Simon Marchi <simon.marchi@polymtl.ca>
6
7 * common/common-utils.h: Include poison.h.
8 (xfree): Remove declaration, add definition with static_assert.
9 * common/common-utils.c (xfree): Remove.
10 * common/poison.h (IsMallocatable): Define.
11 (IsFreeable): Define.
12 (free): Delete for non-freeable types.
13 (xnew): New.
14 (XNEW): Undef and redefine.
15 (xcnew): New.
16 (XCNEW): Undef and redefine.
17 (xdelete): New.
18 (XDELETE): Undef and redefine.
19 (xnewvec): New.
20 (XNEWVEC): Undef and redefine.
21 (xcnewvec): New.
22 (XCNEWVEC): Undef and redefine.
23 (xresizevec): New.
24 (XRESIZEVEC): Undef and redefine.
25 (xdeletevec): New.
26 (XDELETEVEC): Undef and redefine.
27 (xnewvar): New.
28 (XNEWVAR): Undef and redefine.
29 (xcnewvar): New.
30 (XCNEWVAR): Undef and redefine.
31 (xresizevar): New.
32 (XRESIZEVAR): Undef and redefine.
33
34 2017-11-24 Simon Marchi <simon.marchi@polymtl.ca>
35
36 * gdbthread.h (private_thread_info): Define structure type, add
37 virtual pure destructor.
38 (thread_info) <priv>: Change type to unique_ptr.
39 <private_dtor>: Remove.
40 * thread.c (add_thread_with_info): Adjust to use of unique_ptr.
41 (private_thread_info::~private_thread_info): Provide default
42 implementation.
43 (thread_info::~thread_info): Don't call private_dtor nor
44 manually free priv.
45 * aix-thread.c (private_thread_info): Rename to ...
46 (aix_thread_info): ... this.
47 (get_aix_thread_info): New.
48 (sync_threadlists): Adjust.
49 (iter_tid): Adjust.
50 (aix_thread_resume): Adjust.
51 (aix_thread_fetch_registers): Adjust.
52 (aix_thread_store_registers): Adjust.
53 (aix_thread_extra_thread_info): Adjust.
54 * darwin-nat.h (private_thread_info): Rename to ...
55 (darwin_thread_info): ... this.
56 (get_darwin_thread_info): New.
57 * darwin-nat.c (darwin_init_thread_list): Adjust.
58 (darwin_check_new_threads): Adjust.
59 (thread_info_from_private_thread_info): Adjust.
60 * linux-thread-db.c (private_thread_info): Rename to ...
61 (thread_db_thread_info): ... this, initialize fields.
62 (get_thread_db_thread_info): New.
63 <dying>: Change type to bool.
64 (update_thread_state): Adjust to type rename.
65 (record_thread): Adjust to type rename an use of unique_ptr.
66 (thread_db_pid_to_str): Likewise.
67 (thread_db_extra_thread_info): Likewise.
68 (thread_db_thread_handle_to_thread_info): Likewise.
69 (thread_db_get_thread_local_address): Likewise.
70 * nto-tdep.h (private_thread_info): Rename to ...
71 (nto_thread_info): ... this, initialize fields.
72 (get_nto_thread_info): New.
73 <name>: Change type to std::string.
74 * nto-tdep.c (nto_extra_thread_info): Adjust to type rename and
75 use of unique_ptr.
76 * nto-procfs.c (update_thread_private_data_name): Adjust to
77 std::string change, allocate nto_private_thread_info with new.
78 (update_thread_private_data): Adjust to unique_ptr.
79 * remote.c (private_thread_info): Rename to ...
80 (remote_thread_info): ... this, initialize data members with
81 default values.
82 <extra, name>: Change type to std::string.
83 <thread_handle>: Change type to non-pointer.
84 (free_private_thread_info): Remove.
85 (get_private_info_thread): Rename to...
86 (get_remote_thread_info): ... this, change return type, adjust to
87 use of unique_ptr, use remote_thread_info constructor.
88 (remote_add_thread): Adjust.
89 (get_private_info_ptid): Rename to...
90 (get_remote_thread_info): ...this, change return type.
91 (remote_thread_name): Use get_remote_thread_info, adjust to
92 change to std::string.
93 (struct thread_item) <~thread_item>: Remove.
94 <thread_handle>: Make non pointer.
95 (start_thread): Adjust to thread_item::thread_handle type
96 change.
97 (remote_update_thread_list): Adjust to type name change, move
98 strings from temporary to long-lived object instead of
99 duplicating.
100 (remote_threads_extra_info): Use get_remote_thread_info.
101 (process_initial_stop_replies): Likewise.
102 (resume_clear_thread_private_info): Likewise.
103 (remote_resume): Adjust to type name change.
104 (remote_commit_resume): Use get_remote_thread_info.
105 (process_stop_reply): Adjust to type name change.
106 (remote_stopped_by_sw_breakpoint): Use get_remote_thread_info.
107 (remote_stopped_by_hw_breakpoint): Likewise.
108 (remote_stopped_by_watchpoint): Likewise.
109 (remote_stopped_data_address): Likewise.
110 (remote_core_of_thread): Likewise.
111 (remote_thread_handle_to_thread_info): Use
112 get_private_info_thread, adjust to thread_handle field type
113 change.
114
115 2017-11-24 Simon Marchi <simon.marchi@polymtl.ca>
116
117 * remote.c (struct thread_item): Add constructor, disable copy
118 construction and copy assignment, define default move
119 construction and move assignment.
120 <extra, name>: Change type to std::string.
121 <core>: Initialize.
122 <thread_handle>: Make non-pointer.
123 (thread_item_t): Remove typedef.
124 (DEF_VEC_O(thread_item_t)): Remove.
125 (threads_listing_context) <contains_thread>: New method.
126 <remove_thread>: New method.
127 <items>: Change type to std::vector.
128 (clear_threads_listing_context): Remove.
129 (threads_listing_context_remove): Remove.
130 (remote_newthread_step): Use thread_item constructor, adjust to
131 change to std::vector.
132 (start_thread): Use thread_item constructor, adjust to change to
133 std::vector.
134 (end_thread): Adjust to change to std::vector and std::string.
135 (remote_get_threads_with_qthreadinfo): Use thread_item
136 constructor, adjust to std::vector.
137 (remote_update_thread_list): Adjust to change to std::vector and
138 std::string, use threads_listing_context methods.
139 (remove_child_of_pending_fork): Adjust.
140 (remove_new_fork_children): Adjust.
141 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add rsp-low-selftests.c.
142 (SUBDIR_UNITTESTS_OBS): Add rsp-low-selftests.o.
143 * unittests/rsp-low-selftests.c: New file.
144 * common/rsp-low.h: Include common/byte-vector.h.
145 (hex2bin): New overload.
146 * common/rsp-low.c (hex2bin): New overload.
147
148 2017-11-24 Simon Marchi <simon.marchi@ericsson.com>
149
150 * inferior.h (private_inferior): Define structure type, add
151 virtual pure destructor.
152 (inferior) <priv>: Change type to unique_ptr.
153 * inferior.c (private_inferior::~private_inferior): Provide
154 default implementation.
155 (inferior::~inferior): Don't free priv field.
156 (exit_inferior_1): Likewise.
157 * darwin-nat.h (struct darwin_exception_info): Initialize fields.
158 (darwin_exception_info): Remove typedef.
159 (DEF_VEC_O (darwin_thread_t)); Remove.
160 (private_inferior): Rename to ...
161 (darwin_private_inferior): ... this, extend private_inferior.
162 (get_darwin_inferior): New.
163 <threads>: Change type to std::vector of darwin_thread_t pointers.
164 * darwin-nat.c (darwin_check_new_threads): Adjust.
165 (find_inferior_task_it): Adjust.
166 (darwin_find_thread); Adjust.
167 (darwin_suspend_inferior): Adjust.
168 (darwin_resume_inferior): Adjust.
169 (darwin_find_new_inferior): Adjust.
170 (darwin_decode_notify_message): Adjust.
171 (darwin_send_reply): Adjust.
172 (darwin_resume_inferior_threads): Adjust.
173 (darwin_suspend_inferior_threads): Adjust.
174 (darwin_decode_message): Adjust.
175 (darwin_wait): Adjust.
176 (darwin_interrupt): Adjust.
177 (darwin_deallocate_threads): Adjust.
178 (darwin_mourn_inferior): Adjust, don't free private data.
179 (darwin_reply_to_all_pending_messages): Adjust.
180 (darwin_stop_inferior): Adjust.
181 (darwin_setup_exceptions): Adjust.
182 (darwin_kill_inferior): Adjust.
183 (darwin_setup_request_notification): Adjust.
184 (darwin_attach_pid): Adjust.
185 (darwin_init_thread_list): Adjust.
186 (darwin_setup_fake_stop_event): Adjust.
187 (darwin_attach): Adjust.
188 (darwin_detach): Adjust.
189 (darwin_xfer_partial): Adjust.
190 (set_enable_mach_exceptions): Adjust.
191 (darwin_pid_to_exec_file): Adjust.
192 (darwin_get_ada_task_ptid): Adjust.
193 * darwin-nat-info.c (get_task_from_args): Adjust.
194 (info_mach_ports_command): Adjust.
195 (info_mach_region_command): Adjust.
196 (info_mach_exceptions_command): Adjust.
197 * remote.c (private_inferior): Rename to ...
198 (remote_private_inferior): ... this, initialize fields.
199 (get_remote_inferior); New.
200 (remote_commit_resume): Use get_remote_inferior.
201 (check_pending_event_prevents_wildcard_vcont_callback): Likewise.
202
203 2017-11-24 Pedro Alves <palves@redhat.com>
204
205 * NEWS: Mention linespecs and explicit locations, and completion
206 improvements.
207
208 2017-11-24 Yao Qi <yao.qi@linaro.org>
209
210 * regcache.c (regcache::dump): Remove footnote_register_size.
211
212 2017-11-24 Yao Qi <yao.qi@linaro.org>
213
214 * regcache.c (cooked_read_test): Add more test for readonly
215 regcache.
216
217 2017-11-24 Yao Qi <yao.qi@linaro.org>
218
219 * gdbarch-selftests.c (test_target_has_registers): Move it to
220 target.c.
221 (test_target_has_stack): Likewise.
222 (test_target_has_memory): Likewise.
223 (test_target_prepare_to_store): Likewise.
224 (test_target_store_registers): Likewise.
225 (test_target_ops): Likewise.
226 * regcache.c: Include selftest-arch.h and gdbthread.h.
227 (target_ops_no_register): New class.
228 (test_target_fetch_registers): New.
229 (test_target_store_registers): New.
230 (test_target_xfer_partial): New.
231 (readwrite_regcache): New.
232 (cooked_read_test): New.
233 (_initialize_regcache): Register the test.
234 * target.c: (test_target_has_registers): Moved from
235 gdbarch-selftests.c.
236 (test_target_has_stack): Likewise.
237 (test_target_has_memory): Likewise.
238 (test_target_prepare_to_store): Likewise.
239 (test_target_store_registers): Likewise.
240 * target.h (test_target_ops): New class.
241
242 2017-11-24 Alan Hayward <alan.hayward@arm.com>
243
244 * aarch64-tdep.c (_initialize_aarch64_tdep): Add target desc
245 selftest.
246
247 2017-11-24 Alan Hayward <alan.hayward@arm.com>
248
249 * aarch64-tdep.c (_initialize_aarch64_tdep): Remove init.
250 * arch/aarch64.c (aarch64_create_target_description): Create
251 new target description.
252 * features/Makefile: Add new files.
253 * features/aarch64.c: Remove file.
254 * features/aarch64-core.c: New autogenerated file.
255 * features/aarch64-fpu.c: New autogenerated file.
256 * target-descriptions.c (maint_print_c_tdesc_cmd): Check for aarch64.
257
258 2017-11-24 Alan Hayward <alan.hayward@arm.com>
259
260 * Makefile.in: Add new files.
261 * aarch64-linux-nat.c (aarch64_linux_read_description): Call
262 aarch64_read_description.
263 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
264 Call aarch64_read_description.
265 * aarch64-tdep.c (aarch64_read_description): New function.
266 (aarch64_gdbarch_init): Call aarch64_read_description.
267 * aarch64-tdep.h (aarch64_read_description): New function.
268 * arch/aarch64.c: New file.
269 * configure.tgt: Add new files.
270
271 2017-11-24 Yao Qi <yao.qi@linaro.org>
272
273 * mi/mi-main.c (register_changed_p): Update.
274 * value.c (value_contents_bits_eq): Change return type.
275 (value_contents_eq): Likewise.
276 * value.h: Update comments.
277
278 2017-11-24 Yao Qi <yao.qi@linaro.org>
279
280 * mi/mi-main.c (mi_cmd_data_list_changed_registers): Remove
281 local 'changed'. Remove error.
282 (register_changed_p): Change return type to bool.
283
284 2017-11-24 Yao Qi <yao.qi@linaro.org>
285
286 * arch/tic6x.c: New file.
287 * arch/tic6x.h: New file.
288 * features/Makefile (FEATURE_XMLFILES): Add tic6x-c6xp.xml,
289 tic6x-core.xml and tic6x-gp.xml.
290 * features/tic6x-c6xp.c: Generated.
291 * features/tic6x-core.c: Generated.
292 * features/tic6x-gp.c: Generated.
293 * target-descriptions.c (maint_print_c_tdesc_cmd): Match
294 "tic6x-".
295
296 2017-11-23 Simon Marchi <simon.marchi@ericsson.com>
297
298 * mi/mi-main.c (list_available_thread_groups): Change map value
299 type to std::vector.
300
301 2017-11-23 Simon Marchi <simon.marchi@ericsson.com>
302
303 * osdata.c (osdata_end_column, get_osdata): Remove std::move.
304
305 2017-11-23 Simon Marchi <simon.marchi@ericsson.com>
306
307 * varobj.c (struct varobj_dynamic) <children_requested_>: Rename
308 back to...
309 <children_requested>: ... this.
310 (varobj_get_num_children, varobj_update): Adjust.
311
312 2017-11-23 Simon Marchi <simon.marchi@ericsson.com>
313
314 * ada-varobj.c (ada_value_is_changeable_p): Change int to bool where applicable.
315 (ada_value_has_mutated): Likewise.
316 * c-varobj.c (varobj_is_anonymous_child): Likewise.
317 (c_is_path_expr_parent): Likewise.
318 * mi/mi-cmd-var.c (varobj_update_one): Likewise.
319 (mi_cmd_var_set_frozen): Likewise.
320 (mi_cmd_var_update_iter): Likewise.
321 (mi_cmd_var_update): Likewise.
322 * varobj.c (pretty_printing): Likewise.
323 (varobj_enable_pretty_printing): Likewise.
324 (struct varobj_root) <floating, is_valid>: Likewise.
325 (struct varobj_dynamic) <children_requested>: Likewise.
326 (delete_variable): Likewise.
327 (delete_variable_1): Likewise.
328 (install_variable): Likewise.
329 (update_type_if_necessary): Likewise.
330 (install_new_value): Likewise.
331 (value_of_root): Likewise.
332 (is_root_p): Likewise.
333 (varobj_create): Likewise.
334 (varobj_delete): Likewise.
335 (varobj_has_more): Likewise.
336 (varobj_set_frozen): Likewise.
337 (varobj_get_frozen): Likewise.
338 (install_dynamic_child): Likewise.
339 (dynamic_varobj_has_child_method): Likewise.
340 (update_dynamic_varobj_children): Likewise.
341 (varobj_get_num_children): Likewise.
342 (varobj_list_children): Likewise.
343 (is_path_expr_parent): Likewise.
344 (varobj_default_is_path_expr_parent): Likewise.
345 (varobj_is_dynamic_p): Likewise.
346 (varobj_set_value): Likewise.
347 (varobj_value_has_mutated): Likewise.
348 (varobj_update): Likewise.
349 (check_scope): Likewise.
350 (value_of_root_1): Likewise.
351 (varobj_value_get_print_value): Likewise.
352 (varobj_editable_p): Likewise.
353 (varobj_value_is_changeable_p): Likewise.
354 (varobj_floating_p): Likewise.
355 (varobj_default_value_is_changeable_p): Likewise.
356 (varobj_invalidate_iter): Likewise.
357 * varobj.h (struct varobj_update_result) <type_changed,
358 children_changed, changed, value_installed>: Likewise.
359 (struct varobj) <updated, frozen, not_fetched>: Likewise.
360 (struct lang_varobj_ops) <value_is_changeable_p,
361 value_has_mutated, is_path_expr_parent>: Likewise.
362 (varobj_delete): Likewise.
363 (varobj_set_frozen): Likewise.
364 (varobj_get_frozen): Likewise.
365 (varobj_set_value): Likewise.
366 (varobj_update): Likewise.
367 (varobj_editable_p): Likewise.
368 (varobj_floating_p): Likewise.
369 (varobj_has_more): Likewise.
370 (varobj_is_dynamic_p): Likewise.
371 (varobj_default_value_is_changeable_p): Likewise.
372 (varobj_value_is_changeable_p): Likewise.
373 (varobj_is_anonymous_child): Likewise.
374 (varobj_default_is_path_expr_parent): Likewise.
375
376 2017-11-22 Sergio Durigan Junior <sergiodj@redhat.com>
377
378 * dtrace-probe.c (struct probe_ops dtrace_probe_ops): Delete.
379 (struct dtrace_probe_arg) <dtrace_probe_arg>: New constructor.
380 <type_str>: Convert to 'std::string'.
381 <expr>: Convert to 'expression_up'.
382 (dtrace_probe_arg_s): Delete type and VEC.
383 (dtrace_probe_enabler_s): Likewise.
384 (struct dtrace_probe): Replace by...
385 (class dtrace_static_probe_ops): ...this and...
386 (class dtrace_probe): ...this.
387 (dtrace_probe_is_linespec): Rename to...
388 (dtrace_static_probe_ops::is_linespec): ...this. Adjust code
389 to reflect change.
390 (dtrace_process_dof_probe): Use 'std::vector' instead of VEC.
391 Adjust code. Create new instance of 'dtrace_probe'.
392 (dtrace_build_arg_exprs): Rename to...
393 (dtrace_probe::build_arg_exprs): ...this. Adjust code to
394 reflect change.
395 (dtrace_get_probes): Rename to...
396 (dtrace_static_probe_ops::get_probes): ...this. Adjust code
397 to reflect change.
398 (dtrace_get_arg): Rename to...
399 (dtrace_probe::get_arg_by_number): ...this. Adjust code to
400 reflect change.
401 (dtrace_probe_is_enabled): Rename to...
402 (dtrace_probe::is_enabled): ...this. Adjust code to reflect
403 change.
404 (dtrace_get_probe_address): Rename to...
405 (dtrace_probe::get_relocated_address): ...this. Adjust code
406 to reflect change.
407 (dtrace_get_probe_argument_count): Rename to...
408 (dtrace_probe::get_argument_count): ...this. Adjust code to
409 reflect change.
410 (dtrace_can_evaluate_probe_arguments): Rename to...
411 (dtrace_probe::can_evaluate_arguments): ...this. Adjust code
412 to reflect change.
413 (dtrace_evaluate_probe_argument): Rename to...
414 (dtrace_probe::evaluate_argument): ...this. Adjust code to
415 reflect change.
416 (dtrace_compile_to_ax): Rename to...
417 (dtrace_probe::compile_to_ax): ...this. Adjust code to
418 reflect change.
419 (dtrace_probe_destroy): Delete.
420 (dtrace_type_name): Rename to...
421 (dtrace_static_probe_ops::type_name): ...this. Adjust code to
422 reflect change.
423 (dtrace_probe::get_static_ops): New method.
424 (dtrace_gen_info_probes_table_header): Rename to...
425 (dtrace_static_probe_ops::gen_info_probes_table_header):
426 ...this. Adjust code to reflect change.
427 (dtrace_gen_info_probes_table_values): Rename to...
428 (dtrace_probe::gen_info_probes_table_values): ...this. Adjust
429 code to reflect change.
430 (dtrace_enable_probe): Rename to...
431 (dtrace_probe::enable_probe): ...this. Adjust code to reflect
432 change.
433 (dtrace_disable_probe): Rename to...
434 (dtrace_probe::disable_probe): ...this. Adjust code to reflect
435 change.
436 (struct probe_ops dtrace_probe_ops): Delete.
437 (info_probes_dtrace_command): Call 'info_probes_for_spops'
438 instead of 'info_probes_for_ops'.
439 (_initialize_dtrace_probe): Use 'all_static_probe_ops' instead
440 of 'all_probe_ops'.
441
442 2017-11-22 Sergio Durigan Junior <sergiodj@redhat.com>
443 Simon Marchi <simark@simark.ca>
444
445 * stap-probe.c (struct probe_ops stap_probe_ops): Delete
446 variable.
447 (struct stap_probe_arg) <stap_probe_arg>: New constructor.
448 <aexpr>: Change type to 'expression_up'.
449 (stap_probe_arg_s): Delete type and VEC.
450 (struct stap_probe): Delete. Replace by...
451 (class stap_static_probe_ops): ...this and...
452 (class stap_probe): ...this. Rename variables to add 'm_'
453 prefix. Do not use 'union' for arguments anymore.
454 (stap_get_expected_argument_type): Receive probe name instead
455 of 'struct stap_probe'. Adjust code.
456 (stap_parse_probe_arguments): Rename to...
457 (stap_probe::parse_arguments): ...this. Adjust code to
458 reflect change.
459 (stap_get_probe_address): Rename to...
460 (stap_probe::get_relocated_address): ...this. Adjust code
461 to reflect change.
462 (stap_get_probe_argument_count): Rename to...
463 (stap_probe::get_argument_count): ...this. Adjust code
464 to reflect change.
465 (stap_get_arg): Rename to...
466 (stap_probe::get_arg_by_number'): ...this. Adjust code to
467 reflect change.
468 (can_evaluate_probe_arguments): Rename to...
469 (stap_probe::can_evaluate_arguments): ...this. Adjust code
470 to reflect change.
471 (stap_evaluate_probe_argument): Rename to...
472 (stap_probe::evaluate_argument): ...this. Adjust code
473 to reflect change.
474 (stap_compile_to_ax): Rename to...
475 (stap_probe::compile_to_ax): ...this. Adjust code to
476 reflect change.
477 (stap_probe_destroy): Delete.
478 (stap_modify_semaphore): Adjust comment.
479 (stap_set_semaphore): Rename to...
480 (stap_probe::set_semaphore): ...this. Adjust code to reflect
481 change.
482 (stap_clear_semaphore): Rename to...
483 (stap_probe::clear_semaphore): ...this. Adjust code to
484 reflect change.
485 (stap_probe::get_static_ops): New method.
486 (handle_stap_probe): Adjust code to create instance of
487 'stap_probe'.
488 (stap_get_probes): Rename to...
489 (stap_static_probe_ops::get_probes): ...this. Adjust code to
490 reflect change.
491 (stap_probe_is_linespec): Rename to...
492 (stap_static_probe_ops::is_linespec): ...this. Adjust code to
493 reflect change.
494 (stap_type_name): Rename to...
495 (stap_static_probe_ops::type_name): ...this. Adjust code to
496 reflect change.
497 (stap_gen_info_probes_table_header): Rename to...
498 (stap_static_probe_ops::gen_info_probes_table_header):
499 ...this. Adjust code to reflect change.
500 (stap_gen_info_probes_table_values): Rename to...
501 (stap_probe::gen_info_probes_table_values): ...this. Adjust
502 code to reflect change.
503 (struct probe_ops stap_probe_ops): Delete.
504 (info_probes_stap_command): Use 'info_probes_for_spops'
505 instead of 'info_probes_for_ops'.
506 (_initialize_stap_probe): Use 'all_static_probe_ops' instead
507 of 'all_probe_ops'.
508
509 2017-11-22 Sergio Durigan Junior <sergiodj@redhat.com>
510
511 * break-catch-throw.c (fetch_probe_arguments): Use
512 'probe.prob' instead of 'probe.probe'.
513 * breakpoint.c (create_longjmp_master_breakpoint): Call
514 'can_evaluate_arguments' and 'get_relocated_address' methods
515 from probe.
516 (create_exception_master_breakpoint): Likewise.
517 (add_location_to_breakpoint): Use 'sal->prob' instead of
518 'sal->probe'.
519 (bkpt_probe_insert_location): Call 'set_semaphore' method from
520 probe.
521 (bkpt_probe_remove_location): Likewise, for 'clear_semaphore'.
522 * elfread.c (elf_get_probes): Use 'static_probe_ops' instead
523 of 'probe_ops'.
524 (probe_key_free): Call 'delete' on probe.
525 (check_exception_resume): Use 'probe.prob' instead of
526 'probe.probe'.
527 * location.c (string_to_event_location_basic): Call
528 'probe_linespec_to_static_ops'.
529 * probe.c (class any_static_probe_ops): New class.
530 (any_static_probe_ops any_static_probe_ops): New variable.
531 (parse_probes_in_pspace): Receive 'static_probe_ops' as
532 argument. Adjust code to reflect change.
533 (parse_probes): Use 'static_probe_ops' instead of
534 'probe_ops'. Adjust code to reflect change.
535 (find_probes_in_objfile): Call methods to get name and
536 provider from probe.
537 (find_probe_by_pc): Use 'result.prob' instead of
538 'result.probe'. Call 'get_relocated_address' method from
539 probe.
540 (collect_probes): Adjust comment and argument list to receive
541 'static_probe_ops' instead of 'probe_ops'. Adjust code to
542 reflect change. Call necessary methods from probe.
543 (compare_probes): Call methods to get name and provider from
544 probes.
545 (gen_ui_out_table_header_info): Receive 'static_probe_ops'
546 instead of 'probe_ops'. Use 'std::vector' instead of VEC,
547 adjust code accordingly.
548 (print_ui_out_not_applicables): Likewise.
549 (info_probes_for_ops): Rename to...
550 (info_probes_for_spops): ...this. Receive 'static_probe_ops'
551 as argument instead of 'probe_ops'. Adjust code. Call
552 necessary methods from probe.
553 (info_probes_command): Use 'info_probes_for_spops'.
554 (enable_probes_command): Pass correct argument to
555 'collect_probes'. Call methods from probe.
556 (disable_probes_command): Likewise.
557 (get_probe_address): Move to 'any_static_probe_ops::get_address'.
558 (get_probe_argument_count): Move to
559 'any_static_probe_ops::get_argument_count'.
560 (can_evaluate_probe_arguments): Move to
561 'any_static_probe_ops::can_evaluate_arguments'.
562 (evaluate_probe_argument): Move to
563 'any_static_probe_ops::evaluate_argument'.
564 (probe_safe_evaluate_at_pc): Use 'probe.prob' instead of
565 'probe.probe'.
566 (probe_linespec_to_ops): Rename to...
567 (probe_linespec_to_static_ops): ...this. Adjust code.
568 (probe_any_is_linespec): Rename to...
569 (any_static_probe_ops::is_linespec): ...this.
570 (probe_any_get_probes): Rename to...
571 (any_static_probe_ops::get_probes): ...this.
572 (any_static_probe_ops::type_name): New method.
573 (any_static_probe_ops::gen_info_probes_table_header): New
574 method.
575 (compute_probe_arg): Use 'pc_probe.prob' instead of
576 'pc_probe.probe'. Call methods from probe.
577 (compile_probe_arg): Likewise.
578 (std::vector<const probe_ops *> all_probe_ops): Delete.
579 (std::vector<const static_probe_ops *> all_static_probe_ops):
580 New variable.
581 (_initialize_probe): Use 'all_static_probe_ops' instead of
582 'all_probe_ops'.
583 * probe.h (struct info_probe_column) <field_name>: Delete
584 extraneous newline
585 (info_probe_column_s): Delete type and VEC.
586 (struct probe_ops): Delete. Replace with...
587 (class static_probe_ops): ...this and...
588 (clas probe): ...this.
589 (struct bound_probe) <bound_probe>: Delete extraneous
590 newline. Adjust constructor to receive 'probe' instead of
591 'struct probe'.
592 <probe>: Rename to...
593 <prob>: ...this. Delete extraneous newline.
594 <objfile>: Delete extraneous newline.
595 (register_probe_ops): Delete unused prototype.
596 (info_probes_for_ops): Rename to...
597 (info_probes_for_spops): ...this. Adjust comment.
598 (get_probe_address): Move to 'probe::get_address'.
599 (get_probe_argument_count): Move to
600 'probe::get_argument_count'.
601 (can_evaluate_probe_arguments): Move to
602 'probe::can_evaluate_arguments'.
603 (evaluate_probe_argument): Move to 'probe::evaluate_argument'.
604 * solib-svr4.c (struct svr4_info): Adjust comment.
605 (struct probe_and_action) <probe>: Rename to...
606 <prob>: ...this.
607 (register_solib_event_probe): Receive 'probe' instead of
608 'struct probe' as argument. Use 'prob' instead of 'probe'
609 when applicable.
610 (solib_event_probe_action): Call 'get_argument_count' method
611 from probe. Adjust comment.
612 (svr4_handle_solib_event): Adjust comment. Call
613 'evaluate_argument' method from probe.
614 (svr4_create_probe_breakpoints): Call 'get_relocated_address'
615 from probe.
616 (svr4_create_solib_event_breakpoints): Use 'probe' instead of
617 'struct probe'. Call 'can_evaluate_arguments' from probe.
618 * symfile.h: Forward declare 'class probe' instead of 'struct
619 probe'.
620 * symtab.h: Likewise.
621 (struct symtab_and_line) <probe>: Rename to...
622 <prob>: ...this.
623 * tracepoint.c (start_tracing): Use 'prob' when applicable.
624 Call probe methods.
625 (stop_tracing): Likewise.
626
627 2017-11-22 Joel Brobecker <brobecker@adacore.com>
628
629 * ravenscar-thread.c (ravenscar_inferior_created): Remove
630 trailing newline at end of string in call to warning.
631
632 2017-11-22 Simon Marchi <simon.marchi@polymtl.ca>
633
634 * osdata.h: Include vector isntead of vec.h.
635 (osdata_column_s): Remove typedef.
636 (struct osdata_column): Add constructor.
637 <name, value>: Change type to std::string.
638 (DEF_VEC_O (osdata_column_s)): Remove.
639 (osdata_item_s): Remove typedef.
640 (struct osdata_item) <columns>: Change type to std::vector.
641 (DEF_VEC_O (osdata_item_s)): Remove.
642 (struct osdata): Add constructor.
643 <type>: Change type to std::string.
644 <items>: Change type to std::vector.
645 (osdata_p): Remove typedef.
646 (DEF_VEC_P (osdata_p)): Remove.
647 (osdata_parse): Return a unique_ptr.
648 (osdata_free): Remove.
649 (make_cleanup_osdata_free): Remove.
650 (get_osdata): Return a unique_ptr.
651 (get_osdata_column): Return pointer to std::string, take a
652 reference to osdata_item as parameter.
653 * osdata.c (struct osdata_parsing_data) <osdata>: Change type to
654 unique_ptr.
655 <property_name>: Change type to std::string.
656 (osdata_start_osdata): Allocate osdata with new and adjust.
657 (osdata_start_item): Adjust.
658 (osdata_start_column): Adjust.
659 (osdata_end_column): Adjust.
660 (clear_parsing_data): Remove.
661 (osdata_parse): Return a unique_ptr and adjust, remove cleanup.
662 (osdata_item_clear): Remove.
663 (get_osdata): return a unique_ptr and adjust.
664 (get_osdata_column): Return a pointer to std::string and adjust.
665 (info_osdata): Adjust.
666 * mi/mi-main.c: Include <map>.
667 (free_vector_of_osdata_items): Remove.
668 (list_available_thread_groups): Adjust, use std::map instead of
669 splay tree.
670
671 2017-11-22 Simon Marchi <simon.marchi@ericsson.com>
672
673 * stack.c (iterate_over_block_locals): Add LOC_OPTIMIZED_OUT
674 case in switch.
675
676 2017-11-22 Simon Marchi <simon.marchi@polymtl.ca>
677
678 * varobj.h (DEF_VEC_P (varobj_p)): Remove.
679
680 2017-11-22 Simon Marchi <simon.marchi@polymtl.ca>
681
682 * varobj.h (struct varobj_update_result): Add constructor, add
683 move constructor, disable copy and assign, initialize fields.
684 <newobj>: Change type to std::vector.
685 (varobj_update): Return std::vector.
686 * varobj.c (install_dynamic_child): Change VEC parameters to
687 std::vector and adjust.
688 (update_dynamic_varobj_children): Likewise.
689 (varobj_update): Return std::vector and adjust.
690 * mi/mi-cmd-var.c (varobj_update_one): Adjust to vector changes.
691
692 2017-11-22 Simon Marchi <simon.marchi@polymtl.ca>
693
694 * varobj.h (struct varobj) <parent>: Remove const.
695 <children>: Change type to std::vector.
696 (varobj_list_children): Return std::vector const reference.
697 (varobj_restrict_range): Change parameter type to std::vector
698 const reference.
699 * varobj.c (varobj_has_more): Adjust.
700 (varobj_restrict_range): Change parameter type to std::vector
701 const reference and adjust.
702 (install_dynamic_child): Adjust.
703 (update_dynamic_varobj_children): Adjust.
704 (varobj_list_children): Return std::vector const reference and
705 adjust.
706 (varobj_add_child): Adjust.
707 (update_type_if_necessary): Adjust.
708 (varobj_update): Adjust.
709 (delete_variable_1): Adjust.
710 * ada-varobj.c (ada_value_has_mutated): Adjust.
711 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Adjust.
712
713 2017-11-22 Simon Marchi <simon.marchi@polymtl.ca>
714
715 * varobj.h (struct varobj): Add constructor and destructor,
716 initialize fields.
717 * varobj.c (struct varobj_root): Initialize fields.
718 (struct varobj_dynamic): Initialize fields.
719 (varobj_create): Use unique_ptr instead of cleanup. Create
720 varobj with new instead of new_root_variable.
721 (delete_variable_1): Free variable with delete instead of
722 free_variable.
723 (create_child_with_value): Create variable with new instead of
724 new_variable.
725 (varobj::varobj): New.
726 (varobj::~varobj): New (body mostly coming from free_variable).
727 (new_variable): Remove.
728 (free_variable): Remove.
729 (do_free_variable_cleanup): Remove.
730 (make_cleanup_free_variable): Remove.
731
732 2017-11-22 Ulrich Weigand <uweigand@de.ibm.com>
733
734 * core-regset.c: Remove file.
735 * Makefile.in (ALLDEPFILES): Remove core-regset.c.
736
737 2017-11-22 Ulrich Weigand <uweigand@de.ibm.com>
738
739 * NEWS: Document use of GNU MPFR.
740 * README: Likewise.
741
742 * Makefile.in (LIBMPFR): Add define.
743 (CLIBS): Add $(LIBMPFR).
744 * configure.ac: Add --with-mpfr configure option.
745 * configure: Regenerate.
746 * config.in: Regenerate.
747
748 * target-float.c [HAVE_LIBMPFR]: Include <mpfr.h>.
749 (class mpfr_float_ops): New type.
750 (mpfr_float_ops::from_target): Two new overloaded functions.
751 (mpfr_float_ops::to_target): Likewise.
752 (mpfr_float_ops::to_string): New function.
753 (mpfr_float_ops::from_string): Likewise.
754 (mpfr_float_ops::to_longest): Likewise.
755 (mpfr_float_ops::from_longest): Likewise.
756 (mpfr_float_ops::from_ulongest): Likewise.
757 (mpfr_float_ops::to_host_double): Likewise.
758 (mpfr_float_ops::from_host_double): Likewise.
759 (mpfr_float_ops::convert): Likewise.
760 (mpfr_float_ops::binop): Likewise.
761 (mpfr_float_ops::compare): Likewise.
762 (get_target_float_ops): Use mpfr_float_ops if available.
763
764 2017-11-22 Ulrich Weigand <uweigand@de.ibm.com>
765
766 * target-float.c: Do not include <math.h>.
767 Include <cmath> and <limits>.
768 (DOUBLEST): Do not define.
769 (class target_float_ops): New type.
770 (class host_float_ops): New templated type.
771 (class decimal_float_ops): New type.
772
773 (floatformat_to_doublest): Rename to ...
774 (host_float_ops<T>::from_target): ... this. Use template type T
775 instead of DOUBLEST. Use C++ math routines. Update recursive calls.
776 (host_float_ops<T>::from_target): New overload using a type argument.
777 (floatformat_from_doublest): Rename to ...
778 (host_float_ops<T>::to_target): ... this. Use template type T
779 instead of DOUBLEST. Use C++ math routines. Update recursive calls.
780 (host_float_ops<T>::to_target): New overload using a type argument.
781 (floatformat_printf_format): New function.
782 (struct printf_length_modifier): New templated type.
783 (floatformat_to_string): Rename to ...
784 (host_float_ops<T>::to_string): ... this. Use type instead of
785 floatformat argument. Use floatformat_printf_format and
786 printf_length_modifier. Remove special handling of invalid numbers,
787 infinities and NaN (moved to target_float_to_string).
788 (struct scanf_length_modifier): New templated type.
789 (floatformat_from_string): Rename to ...
790 (host_float_ops<T>::from_string): ... this. Use type instead of
791 floatformat argument. Use scanf_length_modifier.
792 (floatformat_to_longest): Rename to ...
793 (host_float_ops<T>::to_longest): ... this. Use type instead of
794 floatformat argument. Handle out-of-range values deterministically.
795 (floatformat_from_longest): Rename to ...
796 (host_float_ops<T>::from_longest): ... this. Use type instead of
797 floatformat argument.
798 (floatformat_from_ulongest): Rename to ...
799 (host_float_ops<T>::from_ulongest): ... this. Use type instead of
800 floatformat argument.
801 (floatformat_to_host_double): Rename to ...
802 (host_float_ops<T>::to_host_double): ... this. Use type instead of
803 floatformat argument.
804 (floatformat_from_host_double): Rename to ...
805 (host_float_ops<T>::from_host_double): ... this. Use type instead of
806 floatformat argument.
807 (floatformat_convert): Rename to ...
808 (host_float_ops<T>::convert): ... this. Use type instead of
809 floatformat arguments. Remove handling of no-op conversions.
810 (floatformat_binop): Rename to ...
811 (host_float_ops<T>::binop): ... this. Use type instead of
812 floatformat arguments.
813 (floatformat_compare): Rename to ...
814 (host_float_ops<T>::compare): ... this. Use type instead of
815 floatformat arguments.
816
817 (match_endianness): Use type instead of length/byte_order arguments.
818 (set_decnumber_context): Likewise.
819 (decimal_from_number): Likewise. Update calls.
820 (decimal_to_number): Likewise.
821 (decimal_is_zero): Likewise. Update calls. Move to earlier in file.
822 (decimal_float_ops::to_host_double): New dummy function.
823 (decimal_float_ops::from_host_double): Likewise.
824 (decimal_to_string): Rename to ...
825 (decimal_float_ops::to_string): ... this. Use type instead of
826 length/byte_order arguments. Update calls.
827 (decimal_from_string): Rename to ...
828 (decimal_float_ops::from_string): ... this. Use type instead of
829 length/byte_order arguments. Update calls.
830 (decimal_from_longest): Rename to ...
831 (decimal_float_ops::from_longest): ... this. Use type instead of
832 length/byte_order arguments. Update calls.
833 (decimal_from_ulongest): Rename to ...
834 (decimal_float_ops::from_ulongest): ... this. Use type instead of
835 length/byte_order arguments. Update calls.
836 (decimal_to_longest): Rename to ...
837 (decimal_float_ops::to_longest): ... this. Use type instead of
838 length/byte_order arguments. Update calls.
839 (decimal_binop): Rename to ...
840 (decimal_float_ops::binop): ... this. Use type instead of
841 length/byte_order arguments. Update calls.
842 (decimal_compare): Rename to ...
843 (decimal_float_ops::compare): ... this. Use type instead of
844 length/byte_order arguments. Update calls.
845 (decimal_convert): Rename to ...
846 (decimal_float_ops::convert): ... this. Use type instead of
847 length/byte_order arguments. Update calls.
848
849 (target_float_same_category_p): New function.
850 (target_float_same_format_p): Likewise.
851 (target_float_format_length): Likewise.
852 (enum target_float_ops_kind): New type.
853 (get_target_float_ops_kind): New function.
854 (get_target_float_ops): Three new overloaded functions.
855
856 (target_float_is_zero): Update call.
857 (target_float_to_string): Add special handling of invalid numbers,
858 infinities and NaN (moved from floatformat_to_string). Use
859 target_float_ops callback.
860 (target_float_from_string): Use target_float_ops callback.
861 (target_float_to_longest): Likewise.
862 (target_float_from_longest): Likewise.
863 (target_float_from_ulongest): Likewise.
864 (target_float_to_host_double): Likewise.
865 (target_float_from_host_double): Likewise.
866 (target_float_convert): Add special case for no-op conversions.
867 Use target_float_ops callback.
868 (target_float_binop): Use target_float_ops callback.
869 (target_float_compare): Likewise.
870
871 2017-11-22 Yao Qi <yao.qi@linaro.org>
872
873 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use strcpy.
874
875 2017-11-22 Yao Qi <yao.qi@linaro.org>
876
877 * cli/cli-decode.c (help_list): Use memcpy instead of strncpy.
878 * cp-namespace.c (cp_lookup_transparent_type_loop): Likewise.
879
880 2017-11-21 Jerome Guitton <guitton@adacore.com>
881
882 * ravenscar-thread.c (ravenscar_wait): Update inferior ptid
883 with event ptid from the lower layer before doing the
884 ravenscar-specific update.
885
886 2017-11-21 Joel Brobecker <brobecker@adacore.com>
887
888 * ravenscar-thread.c (is_ravenscar_task): Also verify that
889 the ptid's TID is nonzero.
890
891 2017-11-21 Joel Brobecker <brobecker@adacore.com>
892
893 * ada-lang.h (ada_get_tcb_types_info): Add declaration.
894 * ada-tasks.c (ada_get_tcb_types_info): Renames get_tcb_types_info.
895 Make non-static. Change return type to char *. Adjust code
896 accordingly. Rewrite the function's documentation.
897 (read_atcb): Adjust call to get_tcb_types_info accordingly.
898 * ravenscar-thread.c (ravenscar_inferior_created): Check that
899 we have enough debugging information in the runtime to support
900 Ada task debugging before we enable the ravenscar-thread layer.
901
902 2017-11-21 Joel Brobecker <brobecker@adacore.com>
903
904 * ada-lang.h (ada_get_task_info_from_ptid): Add declaration.
905 * ada-tasks.c (ada_get_task_info_from_ptid): New function.
906 * ravenscar-thread.c: Add into comment.
907 (base_magic_null_ptid): Delete.
908 (base_ptid): Change documentation.
909 (ravenscar_active_task): Renames ravenscar_running_thread.
910 All callers updated throughout.
911 (is_ravenscar_task, ravenscar_get_thread_base_cpu): New function.
912 (ravenscar_task_is_currently_active): Likewise.
913 (get_base_thread_from_ravenscar_task): Ditto.
914 (ravenscar_update_inferior_ptid): Adjust to handle multiple CPUs.
915 (ravenscar_runtime_initialized): Likewise.
916 (get_running_thread_id): Add new parameter "cpu". Adjust
917 implementation to handle this new parameter.
918 (ravenscar_fetch_registers): Small adjustment to use
919 is_ravenscar_task and ravenscar_task_is_currently_active in
920 order to decide whether to use the target beneath or this
921 module's arch_ops.
922 (ravenscar_store_registers, ravenscar_prepare_to_store): Likewise.
923 (ravenscar_stopped_by_sw_breakpoint): Use
924 get_base_thread_from_ravenscar_task to get the underlying
925 thread, rather than using base_ptid.
926 (ravenscar_stopped_by_hw_breakpoint, ravenscar_stopped_by_watchpoint)
927 (ravenscar_stopped_data_address, ravenscar_core_of_thread):
928 Likewise.
929 (ravenscar_inferior_created): Do not set base_magic_null_ptid.
930
931 2017-11-21 Joel Brobecker <brobecker@adacore.com>
932
933 * ada-lang.h (struct ada_task_info) <base_cpu>: New field.
934 * ada-lang.c (struct atcb_fieldno) <base_cpu>: New field.
935 (get_tcb_types_info): Set fieldnos.base_cpu.
936 (read_atcb): Set task_info->base_cpu.
937 (info_task): Print "Base CPU" info if set by runtime.
938
939 2017-11-21 Joel Brobecker <brobecker@adacore.com>
940
941 * ravenscar-thread.c (ravenscar_stopped_by_sw_breakpoint)
942 (ravenscar_stopped_by_hw_breakpoint, ravenscar_stopped_by_watchpoint)
943 (ravenscar_stopped_data_address, ravenscar_core_of_thread):
944 New functions.
945 (init_ravenscar_thread_ops): Set the to_stopped_by_sw_breakpoint,
946 to_stopped_by_hw_breakpoint, to_stopped_by_watchpoint,
947 to_stopped_data_address and to_core_of_thread fields of
948 ravenscar_ops.
949
950 2017-11-21 Ulrich Weigand <uweigand@de.ibm.com>
951
952 * ppc-tdep.h (enum powerpc_long_double_abi): New data type.
953 (struct gdbarch_tdep): New member long_double_abi.
954 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize long_double_abi
955 member of tdep struct based on Tag_GNU_Power_ABI_FP attribute.
956 * ppc-linux-tdep.c (ppc_linux_init_abi): Install long double data
957 format depending on long_double_abi tdep member.
958 (ppc_floatformat_for_type): Handle __ibm128 type.
959
960 2017-11-20 Simon Marchi <simon.marchi@polymtl.ca>
961
962 * darwin-nat.c (set_enable_mach_exceptions): Constify parameter.
963
964 2017-11-21 Pedro Alves <palves@redhat.com>
965
966 * dwarf2read.c (mapped_index::find_name_components_bounds)
967 <completion mode, upper bound>: Use std::lower_bound instead of
968 std::upper_bound.
969 (test_mapped_index_find_name_component_bounds): Remove incorrect
970 "t1_fund" from expected symbols.
971
972 2017-11-21 Pedro Alves <palves@redhat.com>
973
974 * dwarf2read.c (mapped_index::name_components_casing): New field.
975 (mapped_index) <build_name_components,
976 find_name_components_bounds): Declare new methods.
977 (mapped_index::find_name_components_bounds)
978 (mapped_index::build_name_components): New methods, factored out
979 from dw2_expand_symtabs_matching_symbol.
980 (check_find_bounds_finds)
981 (test_mapped_index_find_name_component_bounds): New.
982 (run_test): Rename to ...
983 (test_dw2_expand_symtabs_matching_symbol): ... this.
984 (run_test): Reimplement.
985
986 2017-11-21 Pedro Alves <palves@redhat.com>
987
988 * cp-name-parser.y (cp_ident_is_alpha, cp_ident_is_alnum): New.
989 (symbol_end): Use cp_ident_is_alnum.
990 (yylex): Use cp_ident_is_alpha and cp_ident_is_alnum.
991 * dwarf2read.c (make_sort_after_prefix_name): New function.
992 (dw2_expand_symtabs_matching_symbol): Use it.
993 (test_symbols): Add more symbols.
994 (run_test): Add tests.
995
996 2017-11-17 Tom Tromey <tom@tromey.com>
997
998 * symtab.h (enum symbol_subclass_kind): New.
999 (struct symbol) <is_cplus_template_function, is_rust_vtable>:
1000 Remove.
1001 <subclass>: New member.
1002 (SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION): Update.
1003 * rust-lang.c (rust_get_trait_object_pointer): Update.
1004 * dwarf2read.c (read_func_scope): Update.
1005 (read_variable): Update.
1006
1007 2017-11-17 Tom Tromey <tom@tromey.com>
1008
1009 * dwarf2read.c (read_func_scope): Update.
1010 * symtab.h (struct template_symbol): Derive from symbol.
1011 <base>: Remove.
1012
1013 2017-11-17 Tom Tromey <tom@tromey.com>
1014
1015 * symtab.h (struct symbol) <is_rust_vtable>: New member.
1016 (struct rust_vtable_symbol): New.
1017 (find_symbol_at_address): Declare.
1018 * symtab.c (find_symbol_at_address): New function.
1019 * symfile.h (struct quick_symbol_functions)
1020 <find_compunit_symtab_by_address>: New member.
1021 * symfile-debug.c (debug_qf_find_compunit_symtab_by_address): New
1022 function.
1023 (debug_sym_quick_functions): Link to
1024 debug_qf_find_compunit_symtab_by_address.
1025 * rust-lang.c (rust_get_trait_object_pointer): New function.
1026 (rust_evaluate_subexp) <case UNOP_IND>: New case. Call
1027 rust_get_trait_object_pointer.
1028 * psymtab.c (psym_relocate): Clear psymbol_map.
1029 (psym_fill_psymbol_map, psym_find_compunit_symtab_by_address): New
1030 functions.
1031 (psym_functions): Link to psym_find_compunit_symtab_by_address.
1032 * objfiles.h (struct objfile) <psymbol_map>: New member.
1033 * dwarf2read.c (dwarf2_gdb_index_functions): Update.
1034 (process_die) <DW_TAG_variable>: New case. Call read_variable.
1035 (rust_containing_type, read_variable): New functions.
1036
1037 2017-11-17 Simon Marchi <simon.marchi@polymtl.ca>
1038
1039 * common/gdb_vecs.h (DEF_VEC_I (int)): Remove.
1040
1041 2017-11-17 Simon Marchi <simon.marchi@polymtl.ca>
1042
1043 * common/filestuff.c: Include <algorithm>.
1044 (open_fds): Change type to std::vector<int>.
1045 (do_mark_open_fd): Adjust.
1046 (unmark_fd_no_cloexec): Adjust.
1047 (do_close): Adjust.
1048
1049 2017-11-17 Simon Marchi <simon.marchi@polymtl.ca>
1050
1051 * breakpoint.c (output_thread_groups): Take an std::vector.
1052 (print_one_breakpoint_location): Adjust.
1053
1054 2017-11-17 Joel Brobecker <brobecker@adacore.com>
1055
1056 * ada-lang.c (resolve_subexp): Add handling of OP_VAR_MSYM_VALUE.
1057 (ada_evaluate_subexp_for_cast): New function.
1058 (ada_evaluate_subexp) <UNOP_CAST>: Replace code by call to
1059 ada_evaluate_subexp_for_cast.
1060 (ada_evaluate_subexp) <nosideret>: Replace code by call to
1061 eval_skip_value.
1062 * eval.c (evaluate_var_value): Make non-static.
1063 (evaluate_var_msym_value, eval_skip_value): Likewise.
1064 * value.h (evaluate_var_value, evaluate_var_msym_value)
1065 (eval_skip_value): Declare.
1066
1067 2017-11-16 Joel Brobecker <brobecker@adacore.com>
1068
1069 * ada-lang.c (ada_value_cast): Remove parameter "noside".
1070 Update all callers.
1071
1072 2017-11-16 Pedro Alves <palves@redhat.com>
1073
1074 * python/py-unwind.c (pyuw_sniffer): Translate
1075 PyExc_KeyboardInterrupt to a GDB Quit exception.
1076
1077 2017-11-16 Pedro Alves <palves@redhat.com>
1078
1079 * infrun.c (resume_cleanups): Delete.
1080 (resume): No longer install a resume_cleanups cleanup nor call
1081 QUIT.
1082 (proceed): Pass the terminal to the inferior.
1083 (keep_going_pass_signal): No longer install a resume_cleanups
1084 cleanup.
1085
1086 2017-11-16 Pedro Alves <palves@redhat.com>
1087
1088 * inf-loop.c (inferior_event_handler): Don't swallow the exception
1089 if the prompt is blocked.
1090
1091 2017-11-16 Pedro Alves <palves@redhat.com>
1092
1093 * breakpoint.c (insert_bp_location): Replace bp_err and
1094 bp_err_message locals by a gdb_exception local.
1095
1096 2017-11-16 Pedro Alves <palves@redhat.com>
1097
1098 * inflow.c (scoped_ignore_sigttou): New class.
1099 (child_terminal_ours_1, new_tty): Use it.
1100
1101 2017-11-16 Ulrich Weigand <uweigand@de.ibm.com>
1102
1103 * target-float.c (decimal_from_number): Add byte_order argument and
1104 call match_endianness. Error if unknown floating-point type.
1105 (decimal_to_number): Add byte_order argument and call match_endianness.
1106 (decimal_from_longest): Update call. Do not call match_endianness.
1107 (decimal_from_ulongest): Likewise.
1108 (decimal_binop): Likewise.
1109 (decimal_is_zero): Likewise.
1110 (decimal_compare): Likewise.
1111 (decimal_convert): Likewise.
1112
1113 2017-11-16 Phil Muldoon <pmuldoon@redhat.com>
1114
1115 * python/python.c (gdbpy_rbreak): New function.
1116 * NEWS: Document Python rbreak feature.
1117
1118 2017-11-16 Yao Qi <yao.qi@linaro.org>
1119
1120 * features/tic6x-c62x.xml: Remove.
1121 * features/tic6x-c64x.xml: Remove.
1122 * features/tic6x-c64xp.xml: Remove.
1123
1124 2017-11-15 John Baldwin <jhb@FreeBSD.org>
1125
1126 * symtab.h: Include <array>.
1127
1128 2017-11-15 John Baldwin <jhb@FreeBSD.org>
1129
1130 * bsd-kvm.c (bsd_kvm_cmd): Constify 'arg'.
1131 (bsd_kvm_proc_cmd): Likewise.
1132
1133 2017-11-15 Simon Marchi <simon.marchi@ericsson.com>
1134
1135 * tui/tui-win.c (window_name_completer): Replace VEC with
1136 std::vector.
1137
1138 2017-11-15 Andrew Cagney <cagney@gnu.org>
1139
1140 * MAINTAINERS: Remove no-longer applicable entries.
1141
1142 2017-11-15 Andrew Cagney <cagney@gnu.org>
1143
1144 * MAINTAINERS: Move self to Past Maintainers.
1145
1146 2017-11-15 Yao Qi <yao.qi@linaro.org>
1147
1148 * features/Makefile (XMLTOC): Remove nios2-linux.xml.
1149 * features/nios2-linux.c: Remove.
1150 * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Don't call
1151 initialize_tdesc_nios2_linux.
1152
1153 2017-11-15 Yao Qi <yao.qi@linaro.org>
1154
1155 * m68hc11-tdep.c (M68HC11_NUM_REGS): Change it to
1156 M68HC11_LAST_HARD_REG + 1.
1157
1158 2017-11-14 Paul Carroll <pcarroll@codesourcery.com>
1159
1160 PR gdb/22388
1161 * remote.c (remote_write_bytes_aux, remote_read_bytes_1,
1162 remote_read_bytes, remote_write_qxfer, remote_xfer_partial):
1163 Return TARGET_XFER_EOF if size of returned data is 0.
1164
1165 2017-11-14 Simon Marchi <simon.marchi@ericsson.com>
1166
1167 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
1168 memory-map-selftests.c.
1169 (SUBDIR_UNITTESTS_OBS): Add memory-map-selftests.o.
1170 * memory-map.c (memory_map_start_memory): Fix computation of hi
1171 address.
1172 * unittests/memory-map-selftests.c: New file.
1173
1174 2017-11-09 Joel Brobecker <brobecker@adacore.com>
1175
1176 * ada-lang.c: Fix some typos in the general command documenting
1177 how Ada expressions are being evaluated and how their result
1178 is printed.
1179
1180 2017-11-09 Tom Tromey <tom@tromey.com>
1181
1182 * psymtab.c (psymbol_hash): Do not hash string contents.
1183 (psymbol_compare): Add comment.
1184
1185 2017-11-09 Tom Tromey <tom@tromey.com>
1186
1187 * dictionary.c (dict_hash): Move "TKB" check into the "switch".
1188
1189 2017-11-08 Joel Brobecker <brobecker@adacore.com>
1190
1191 * ada-exp.y (write_var_from_sym): Remove parameter
1192 "orig_left_context". Update all callers.
1193
1194 2017-11-08 Simon Marchi <simon.marchi@ericsson.com>
1195
1196 * tracepoint.h (class collection_list) <stringify>: Return
1197 std::vector<std::string>.
1198 (encode_actions_rsp): Change parameters to
1199 std::vector<std::string> *.
1200 * tracepoint.c (collection_list::stringify): Return
1201 std::vector<std::string> and adjust accordingly.
1202 (encode_actions_rsp): Changee parameters to
1203 std::vector<std::string> and adjust accordingly.
1204 * remote.c (free_actions_list),
1205 free_actions_list_cleanup_wrapper): Remove.
1206 (remote_download_tracepoint): Adjust to std::vector.
1207
1208 2017-11-08 Tom Tromey <tom@tromey.com>
1209
1210 * dwarf2read.c (symbolp): Remove typedef.
1211 (read_func_scope): Use std::vector.
1212 (process_structure_scope): Use std::vector.
1213
1214 2017-11-08 Pedro Alves <palves@redhat.com>
1215
1216 * ada-lang.c (ada_make_symbol_completion_list): Use
1217 completion_skip_symbol.
1218 * symtab.c (symbol_is_function_or_method(minimal_symbol*)): New.
1219 (symbol_is_function_or_method(symbol*)): New.
1220 (add_symtab_completions): Add complete_symbol_mode parameter. Use
1221 completion_skip_symbol.
1222 (default_collect_symbol_completion_matches_break_on): Use
1223 completion_skip_symbol. Pass down mode.
1224 (collect_file_symbol_completion_matches): Pass down mode.
1225 * symtab.h (symbol_is_function_or_method): New declarations.
1226 (completion_skip_symbol): New template function.
1227
1228 2017-11-08 Pedro Alves <palves@redhat.com>
1229
1230 * linespec.c (iterate_over_all_matching_symtabs): Add
1231 search_domain parameter. Pass it down to expand_symtabs_matching.
1232 (decode_objc): Request FUNCTIONS_DOMAIN symbols only.
1233 (lookup_prefix_sym): Adjust by passing ALL_DOMAIN as
1234 search_domain.
1235 (add_all_symbol_names_from_pspace): Add search_domain parameter.
1236 Pass it down.
1237 (find_method, find_function_symbols): Request FUNCTIONS_DOMAIN
1238 symbols.
1239 (add_matching_symbols_to_info): Add search_domain parameter. Pass
1240 it down.
1241
1242 2017-11-08 Pedro Alves <palves@redhat.com>
1243
1244 * ada-lang.c (ada_make_symbol_completion_list): Remove text and
1245 text_len locals and don't pass them down.
1246 * symtab.c (completion_list_add_name): Remove
1247 sym_text/sym_text_len parameters and adjust.
1248 (completion_list_add_symbol, completion_list_add_msymbol)
1249 (completion_list_objc_symbol, completion_list_add_fields)
1250 (add_symtab_completions): Likewise.
1251 (default_collect_symbol_completion_matches_break_on)
1252 (collect_file_symbol_completion_matches): Remove sym_text_len
1253 local and don't pass it down.
1254 * symtab.h (completion_list_add_name): Remove
1255 sym_text/sym_text_len parameters.
1256
1257 2017-11-08 Pedro Alves <palves@redhat.com>
1258
1259 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
1260 unittests/lookup_name_info-selftests.c.
1261 (SUBDIR_UNITTESTS_OBS): Add lookup_name_info-selftests.o.
1262 * cp-support.c: Include "selftest.h".
1263 (cp_remove_params_1): Rename from cp_remove_params. Add
1264 'require_param' parameter, and handle it.
1265 (cp_remove_params): Reimplement.
1266 (cp_remove_params_if_any): New.
1267 (selftests::quote): New.
1268 (selftests::check_remove_params): New.
1269 (selftests::test_cp_remove_params): New.
1270 (_initialize_cp_support): Install
1271 selftests::test_cp_remove_params.
1272 * cp-support.h (cp_remove_params_if_any): Declare.
1273 * dwarf2read.c :Include "selftest.h".
1274 (dw2_expand_symtabs_matching_symbol): Use
1275 lookup_name_info::make_ignore_params.
1276 (selftests::dw2_expand_symtabs_matching::mock_mapped_index)
1277 (selftests::dw2_expand_symtabs_matching::string_or_null)
1278 (selftests::dw2_expand_symtabs_matching::check_match)
1279 (selftests::dw2_expand_symtabs_matching::test_symbols)
1280 (selftests::dw2_expand_symtabs_matching::run_test): New.
1281 (_initialize_dwarf2_read): Register
1282 selftests::dw2_expand_symtabs_matching::run_test.
1283 * psymtab.c (psym_expand_symtabs_matching): Use
1284 lookup_name_info::make_ignore_params.
1285 * symtab.c (demangle_for_lookup_info::demangle_for_lookup_info):
1286 If the lookup name wants to ignore parameters, strip them.
1287 (compare_symbol_name): Remove sym_text/sym_text_len parameters and
1288 code handling '('.
1289 (completion_list_add_name): Don't pass down sym_text/sym_text_len.
1290 (default_collect_symbol_completion_matches_break_on): Don't try to
1291 strip parameters.
1292 * symtab.h (lookup_name_info::lookup_name_info): Add
1293 'ignore_parameters' parameter.
1294 (lookup_name_info::ignore_parameters)
1295 (lookup_name_info::make_ignore_params): New methods.
1296 (lookup_name_info::m_ignore_parameters): New field.
1297 * unittests/lookup_name_info-selftests.c: New file.
1298
1299 2017-11-08 Pedro Alves <palves@redhat.com>
1300
1301 * dwarf2read.c (dw2_expand_marked_cus)
1302 (dw2_expand_symtabs_matching_symbol): Remove forward declarations.
1303 (dw2_expand_symtabs_matching): Move further below.
1304 (dw2_expand_marked_cus): Reindent.
1305
1306 2017-11-08 Pedro Alves <palves@redhat.com>
1307
1308 * dwarf2read.c (byte_swap, MAYBE_SWAP): Move higher up in file.
1309 (struct name_component): New.
1310 (mapped_index::name_components): New field.
1311 (mapped_index::symbol_name_at): New method.
1312 (dwarf2_read_index): Call mapped_index ctor.
1313 (dw2_map_matching_symbols): Add comment about name_components
1314 table.
1315 (dw2_expand_symtabs_matching): Factor part to...
1316 (dw2_expand_symtabs_matching_symbol): ... this new function.
1317 Build name components table, and lookup symbols in it before
1318 calling the name matcher.
1319 (dw2_expand_marked_cus): New, factored out from
1320 dw2_expand_symtabs_matching.
1321 (dwarf2_per_objfile_free): Call the mapped_index's dtor.
1322
1323 2017-11-08 Pedro Alves <palves@redhat.com>
1324
1325 * ada-lang.c (ada_encode): Rename to ..
1326 (ada_encode_1): ... this. Add throw_errors parameter and handle
1327 it.
1328 (ada_encode): Reimplement.
1329 (match_name): Delete, folded into full_name.
1330 (resolve_subexp): No longer pass the encoded name to
1331 ada_lookup_symbol_list.
1332 (should_use_wild_match): Delete.
1333 (name_match_type_from_name): New.
1334 (ada_lookup_simple_minsym): Use lookup_name_info and the
1335 language's symbol_name_matcher_ftype.
1336 (add_symbols_from_enclosing_procs, ada_add_local_symbols)
1337 (ada_add_block_renamings): Adjust to use lookup_name_info.
1338 (ada_lookup_name): New.
1339 (add_nonlocal_symbols, ada_add_all_symbols)
1340 (ada_lookup_symbol_list_worker, ada_lookup_symbol_list)
1341 (ada_iterate_over_symbols): Adjust to use lookup_name_info.
1342 (ada_name_for_lookup): Delete.
1343 (ada_lookup_encoded_symbol): Construct a verbatim name.
1344 (wild_match): Reverse sense of return type. Use bool.
1345 (full_match): Reverse sense of return type. Inline bits of old
1346 match_name here.
1347 (ada_add_block_symbols): Adjust to use lookup_name_info.
1348 (symbol_completion_match): Delete, folded into...
1349 (ada_lookup_name_info::matches): ... .this new method.
1350 (symbol_completion_add): Delete.
1351 (ada_collect_symbol_completion_matches): Add name_match_type
1352 parameter. Adjust to use lookup_name_info and
1353 completion_list_add_name.
1354 (get_var_value, ada_add_global_exceptions): Adjust to use
1355 lookup_name_info.
1356 (ada_get_symbol_name_cmp): Delete.
1357 (do_wild_match, do_full_match): New functions.
1358 (ada_lookup_name_info::ada_lookup_name_info): New method.
1359 (ada_symbol_name_matches, ada_get_symbol_name_matcher): New
1360 functions.
1361 (ada_language_defn): Install ada_get_symbol_name_matcher.
1362 * ada-lex.l (processId): If name starts with '<', copy it
1363 verbatim.
1364 * block.c (block_iter_match_step, block_iter_match_first)
1365 (block_iter_match_next, block_lookup_symbol)
1366 (block_lookup_symbol_primary, block_find_symbol): Adjust to use
1367 lookup_name_info.
1368 * block.h (block_iter_match_first, block_iter_match_next)
1369 (ALL_BLOCK_SYMBOLS_WITH_NAME): Adjust to use lookup_name_info.
1370 * c-lang.c (c_language_defn, cplus_language_defn)
1371 (asm_language_defn, minimal_language_defn): Adjust comments to
1372 refer to la_get_symbol_name_matcher.
1373 * completer.c (complete_files_symbols)
1374 (collect_explicit_location_matches, symbol_completer): Pass a
1375 symbol_name_match_type down.
1376 * completer.h (class completion_match, completion_match_result):
1377 New classes.
1378 (completion_tracker::reset_completion_match_result): New method.
1379 (completion_tracker::m_completion_match_result): New field.
1380 * cp-support.c (make_symbol_overload_list_block): Adjust to use
1381 lookup_name_info.
1382 (cp_fq_symbol_name_matches, cp_get_symbol_name_matcher): New
1383 functions.
1384 * cp-support.h (cp_get_symbol_name_matcher): New declaration.
1385 * d-lang.c: Adjust comments to refer to
1386 la_get_symbol_name_matcher.
1387 * dictionary.c (dict_vector) <iter_match_first, iter_match_next>:
1388 Adjust to use lookup_name_info.
1389 (dict_iter_match_first, dict_iter_match_next)
1390 (iter_match_first_hashed, iter_match_next_hashed)
1391 (iter_match_first_linear, iter_match_next_linear): Adjust to work
1392 with a lookup_name_info.
1393 * dictionary.h (dict_iter_match_first, dict_iter_match_next):
1394 Likewise.
1395 * dwarf2read.c (dw2_lookup_symbol): Adjust to use lookup_name_info.
1396 (dw2_map_matching_symbols): Adjust to use symbol_name_match_type.
1397 (gdb_index_symbol_name_matcher): New class.
1398 (dw2_expand_symtabs_matching) Adjust to use lookup_name_info and
1399 gdb_index_symbol_name_matcher. Accept a NULL symbol_matcher.
1400 * f-lang.c (f_collect_symbol_completion_matches): Adjust to work
1401 with a symbol_name_match_type.
1402 (f_language_defn): Adjust comments to refer to
1403 la_get_symbol_name_matcher.
1404 * go-lang.c (go_language_defn): Adjust comments to refer to
1405 la_get_symbol_name_matcher.
1406 * language.c (default_symbol_name_matcher)
1407 (language_get_symbol_name_matcher): New functions.
1408 (unknown_language_defn, auto_language_defn): Adjust comments to
1409 refer to la_get_symbol_name_matcher.
1410 * language.h (symbol_name_cmp_ftype): Delete.
1411 (language_defn) <la_collect_symbol_completion_matches>: Add match
1412 type parameter.
1413 <la_get_symbol_name_cmp>: Delete field.
1414 <la_get_symbol_name_matcher>: New field.
1415 <la_iterate_over_symbols>: Adjust to use lookup_name_info.
1416 (default_symbol_name_matcher, language_get_symbol_name_matcher):
1417 Declare.
1418 * linespec.c (iterate_over_all_matching_symtabs)
1419 (iterate_over_file_blocks): Adjust to use lookup_name_info.
1420 (find_methods): Add language parameter, and use lookup_name_info
1421 and the language's symbol_name_matcher_ftype.
1422 (linespec_complete_function): Adjust.
1423 (lookup_prefix_sym): Use lookup_name_info.
1424 (add_all_symbol_names_from_pspace): Adjust.
1425 (find_superclass_methods): Add language parameter and pass it
1426 down.
1427 (find_method): Pass symbol language down.
1428 (find_linespec_symbols): Don't demangle or Ada encode here.
1429 (search_minsyms_for_name): Add lookup_name_info parameter.
1430 (add_matching_symbols_to_info): Add name_match_type parameter.
1431 Use lookup_name_info.
1432 * m2-lang.c (m2_language_defn): Adjust comments to refer to
1433 la_get_symbol_name_matcher.
1434 * minsyms.c: Include <algorithm>.
1435 (add_minsym_to_demangled_hash_table): Remove table parameter and
1436 add objfile parameter. Use search_name_hash, and add language to
1437 demangled languages vector.
1438 (struct found_minimal_symbols): New struct.
1439 (lookup_minimal_symbol_mangled, lookup_minimal_symbol_demangled):
1440 New functions.
1441 (lookup_minimal_symbol): Adjust to use them. Don't canonicalize
1442 input names here. Use lookup_name_info instead. Lookup up
1443 demangled names once for each language in the demangled names
1444 vector.
1445 (iterate_over_minimal_symbols): Use lookup_name_info. Lookup up
1446 demangled names once for each language in the demangled names
1447 vector.
1448 (build_minimal_symbol_hash_tables): Adjust.
1449 * minsyms.h (iterate_over_minimal_symbols): Adjust to pass down a
1450 lookup_name_info.
1451 * objc-lang.c (objc_language_defn): Adjust comment to refer to
1452 la_get_symbol_name_matcher.
1453 * objfiles.h: Include <vector>.
1454 (objfile_per_bfd_storage) <demangled_hash_languages>: New field.
1455 * opencl-lang.c (opencl_language_defn): Adjust comment to refer to
1456 la_get_symbol_name_matcher.
1457 * p-lang.c (pascal_language_defn): Adjust comment to refer to
1458 la_get_symbol_name_matcher.
1459 * psymtab.c (psym_lookup_symbol): Use lookup_name_info.
1460 (match_partial_symbol): Use symbol_name_match_type,
1461 lookup_name_info and psymbol_name_matches.
1462 (lookup_partial_symbol): Use lookup_name_info.
1463 (map_block): Use symbol_name_match_type and lookup_name_info.
1464 (psym_map_matching_symbols): Use symbol_name_match_type.
1465 (psymbol_name_matches): New.
1466 (recursively_search_psymtabs): Use lookup_name_info and
1467 psymbol_name_matches. Rename 'kind' parameter to 'domain'.
1468 (psym_expand_symtabs_matching): Use lookup_name_info. Rename
1469 'kind' parameter to 'domain'.
1470 * rust-lang.c (rust_language_defn): Adjust comment to refer to
1471 la_get_symbol_name_matcher.
1472 * symfile-debug.c (debug_qf_map_matching_symbols)
1473 (debug_qf_map_matching_symbols): Use symbol_name_match_type.
1474 (debug_qf_expand_symtabs_matching): Use lookup_name_info.
1475 * symfile.c (expand_symtabs_matching): Use lookup_name_info.
1476 * symfile.h (quick_symbol_functions) <map_matching_symbols>:
1477 Adjust to use symbol_name_match_type.
1478 <expand_symtabs_matching>: Adjust to use lookup_name_info.
1479 (expand_symtabs_matching): Adjust to use lookup_name_info.
1480 * symmisc.c (maintenance_expand_symtabs): Use
1481 lookup_name_info::match_any ().
1482 * symtab.c (symbol_matches_search_name): New.
1483 (eq_symbol_entry): Adjust to use lookup_name_info and the
1484 language's matcher.
1485 (demangle_for_lookup_info::demangle_for_lookup_info): New.
1486 (lookup_name_info::match_any): New.
1487 (iterate_over_symbols, search_symbols): Use lookup_name_info.
1488 (compare_symbol_name): Add language, lookup_name_info and
1489 completion_match_result parameters, and use them.
1490 (completion_list_add_name): Make extern. Add language and
1491 lookup_name_info parameters. Use them.
1492 (completion_list_add_symbol, completion_list_add_msymbol)
1493 (completion_list_objc_symbol): Add lookup_name_info parameters and
1494 adjust. Pass down language.
1495 (completion_list_add_fields): Add lookup_name_info parameters and
1496 adjust. Pass down language.
1497 (add_symtab_completions): Add lookup_name_info parameters and
1498 adjust.
1499 (default_collect_symbol_completion_matches_break_on): Add
1500 name_match_type parameter, and use it. Use lookup_name_info.
1501 (default_collect_symbol_completion_matches)
1502 (collect_symbol_completion_matches): Add name_match_type
1503 parameter, and pass it down.
1504 (collect_symbol_completion_matches_type): Adjust.
1505 (collect_file_symbol_completion_matches): Add name_match_type
1506 parameter, and use lookup_name_info.
1507 * symtab.h: Include <string> and "common/gdb_optional.h".
1508 (enum class symbol_name_match_type): New.
1509 (class ada_lookup_name_info): New.
1510 (struct demangle_for_lookup_info): New.
1511 (class lookup_name_info): New.
1512 (symbol_name_matcher_ftype): New.
1513 (SYMBOL_MATCHES_SEARCH_NAME): Use symbol_matches_search_name.
1514 (symbol_matches_search_name): Declare.
1515 (MSYMBOL_MATCHES_SEARCH_NAME): Delete.
1516 (default_collect_symbol_completion_matches)
1517 (collect_symbol_completion_matches)
1518 (collect_file_symbol_completion_matches): Add name_match_type
1519 parameter.
1520 (iterate_over_symbols): Use lookup_name_info.
1521 (completion_list_add_name): Declare.
1522 * utils.c (enum class strncmp_iw_mode): Moved to utils.h.
1523 (strncmp_iw_with_mode): Now extern.
1524 * utils.h (enum class strncmp_iw_mode): Moved from utils.c.
1525 (strncmp_iw_with_mode): Declare.
1526
1527 2017-11-08 Keith Seitz <keiths@redhat.com>
1528 Pedro Alves <palves@redhat.com>
1529
1530 * ada-lang.c (ada_language_defn): Install
1531 default_search_name_hash.
1532 * buildsym.c (struct buildsym_compunit): <language>: New field.
1533 (finish_block_internal): Pass language when creating dictionaries.
1534 (start_buildsym_compunit, start_symtab): New language parameters.
1535 Use them.
1536 (restart_symtab): Pass down compilation unit's language.
1537 * buildsym.h (enum language): Forward declare.
1538 (start_symtab): New 'language' parameter.
1539 * c-lang.c (c_language_defn, cplus_language_defn)
1540 (asm_language_defn, minimal_language_defn): Install
1541 default_search_name_hash.
1542 * coffread.c (coff_start_symtab): Adjust.
1543 * d-lang.c (d_language_defn): Install default_search_name_hash.
1544 * dbxread.c (struct symloc): Add 'pst_language' field.
1545 (PST_LANGUAGE): Define.
1546 (start_psymtab, read_ofile_symtab): Use it.
1547 (process_one_symbol): New 'language' parameter. Pass it down.
1548 * dictionary.c (struct dictionary) <language>: New field.
1549 (DICT_LANGUAGE): Define.
1550 (dict_create_hashed, dict_create_hashed_expandable)
1551 (dict_create_linear, dict_create_linear_expandable): New parameter
1552 'language'. Set the dictionary's language.
1553 (iter_match_first_hashed): Adjust to rename.
1554 (insert_symbol_hashed): Assert we don't see mismatching
1555 languages. Adjust to rename.
1556 (dict_hash): Rename to ...
1557 (default_search_name_hash): ... this and make extern.
1558 * dictionary.h (struct language_defn): Forward declare.
1559 (dict_create_hashed): New parameter 'language'.
1560 * dwarf2read.c (dwarf2_start_symtab): Pass down language.
1561 * f-lang.c (f_language_defn): Install default_search_name_hash.
1562 * go-lang.c (go_language_defn): Install default_search_name_hash.
1563 * jit.c (finalize_symtab): Pass compunit's language to dictionary
1564 creation.
1565 * language.c (unknown_language_defn, auto_language_defn):
1566 * language.h (language_defn::la_search_name_hash): New field.
1567 (default_search_name_hash): Declare.
1568 * m2-lang.c (m2_language_defn): Install default_search_name_hash.
1569 * mdebugread.c (new_block): New parameter 'language'.
1570 * mdebugread.c (parse_symbol): Pass symbol language to block
1571 allocation.
1572 (psymtab_to_symtab_1): Pass down language.
1573 (new_symtab): Pass compunit's language to block allocation.
1574 * objc-lang.c (objc_language_defn): Install
1575 default_search_name_hash.
1576 * opencl-lang.c (opencl_language_defn):
1577 * p-lang.c (pascal_language_defn): Install
1578 default_search_name_hash.
1579 * rust-lang.c (rust_language_defn): Install
1580 default_search_name_hash.
1581 * stabsread.h (enum language): Forward declare.
1582 (process_one_symbol): Add 'language' parameter.
1583 * symtab.c (search_name_hash): New function.
1584 * symtab.h (search_name_hash): Declare.
1585 * xcoffread.c (read_xcoff_symtab): Pass language to start_symtab.
1586
1587 2017-11-08 Pedro Alves <palves@redhat.com>
1588
1589 * cp-name-parser.y (main): Don't initialize extra_chars.
1590
1591 2017-11-07 Tom Tromey <tom@tromey.com>
1592
1593 * event-top.h (command_handler): Constify.
1594 * record-full.c (cmd_record_full_start): Update.
1595 * thread.c (thread_apply_all_command): Update.
1596 * printcmd.c (eval_command): Update.
1597 * mi/mi-main.c (mi_execute_cli_command): Update.
1598 (mi_execute_async_cli_command): Update.
1599 * tui/tui-stack.c (tui_update_command): Update.
1600 * cli/cli-interp.c (safe_execute_command): Constify.
1601 * record.c (record_start): Update.
1602 (record_start, record_stop, cmd_record_start): Update.
1603 * record-btrace.c (cmd_record_btrace_bts_start): Update.
1604 (cmd_record_btrace_pt_start): Update.
1605 (cmd_record_btrace_start): Update.
1606 (cmd_record_btrace_start): Update.
1607 * reverse.c (exec_reverse_once): Update.
1608 * python/python.c (execute_gdb_command): Don't copy the command.
1609 * event-top.c (command_line_handler): Update.
1610 (command_handler): Constify.
1611 * defs.h (deprecated_call_command_hook): Constify.
1612 * cli/cli-script.h (execute_user_command): Constify.
1613 * cli/cli-script.c (execute_user_command): Constify.
1614 (execute_cmd_pre_hook, execute_cmd_post_hook): Constify.
1615 (enum command_control_type): Update.
1616 * main.c (catch_command_errors): Remove non-const overload.
1617 (catch_command_errors_ftype): Remove.
1618 * python/py-cmd.c (cmdpy_function): Constify.
1619 * guile/scm-cmd.c (cmdscm_function): Constify.
1620 * cli/cli-dump.c (call_dump_func): Constify.
1621 * cli/cli-decode.c (do_const_cfunc): Constify.
1622 (do_sfunc): Constify.
1623 (cmd_func): Constify.
1624 * gdbcmd.h (execute_command, execute_command_to_string): Constify.
1625 * top.h (execute_command): Constify.
1626 * top.c (execute_command): Constify.
1627 (execute_command_to_string): Constify.
1628 (deprecated_call_command_hook): Constify.
1629 * command.h (cmd_func): Constify.
1630 * cli/cli-decode.h (struct cmd_list_element) <func>: Constify.
1631
1632 2017-11-07 Tom Tromey <tom@tromey.com>
1633
1634 * ada-lang.c (catch_ada_exception_command): Constify.
1635 (catch_assert_command): Constify.
1636 * break-catch-throw.c (catch_catch_command, catch_throw_command)
1637 (catch_rethrow_command): Constify.
1638 (catch_exception_command_1): Constify.
1639 * breakpoint.h (add_catch_command): Constify.
1640 * break-catch-syscall.c (catch_syscall_command_1): Constify.
1641 (catch_syscall_split_args): Constify.
1642 * break-catch-sig.c (catch_signal_command): Constify.
1643 (catch_signal_split_args): Constify.
1644 * cli/cli-decode.h (struct cmd_list_element) <function>: Use
1645 cmd_const_sfunc_ftype.
1646 * cli/cli-decode.c (add_setshow_cmd_full): Constify.
1647 (add_setshow_enum_cmd, add_setshow_auto_boolean_cmd)
1648 (add_setshow_boolean_cmd, add_setshow_filename_cmd)
1649 (add_setshow_string_cmd, struct cmd_list_element)
1650 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
1651 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
1652 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd):
1653 Constify.
1654 (set_cmd_sfunc): Constify.
1655 (empty_sfunc): Constify.
1656 * command.h (add_setshow_enum_cmd, add_setshow_auto_boolean_cmd)
1657 (add_setshow_boolean_cmd, add_setshow_filename_cmd)
1658 (add_setshow_string_cmd, add_setshow_string_noescape_cmd)
1659 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
1660 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
1661 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
1662 Constify.
1663 (set_cmd_sfunc): Constify.
1664 (cmd_sfunc_ftype): Remove.
1665 * compile/compile.c (set_compile_args): Constify.
1666 * infrun.c (set_disable_randomization): Constify.
1667 * infcmd.c (set_args_command, set_cwd_command): Constify.
1668 * breakpoint.c (set_condition_evaluation_mode): Constify.
1669 (add_catch_command): Constify.
1670 (catch_fork_command_1, catch_exec_command_1)
1671 (catch_load_command_1, catch_unload_command_1): Constify.
1672 (catch_load_or_unload): Constify.
1673 * guile/scm-param.c (pascm_set_func): Constify.
1674 (add_setshow_generic): Constify.
1675 * python/py-param.c (get_set_value): Constify.
1676 * top.h (set_verbose): Constify.
1677 * tui/tui-win.c (tui_set_var_cmd): Constify.
1678 * mi/mi-main.c (set_mi_async_command): Constify.
1679 * cli/cli-logging.c (set_logging_overwrite)
1680 (set_logging_redirect): Constify.
1681 * value.c (set_max_value_size): Constify.
1682 * valprint.c (set_input_radix, set_output_radix): Constify.
1683 * utils.c (set_width_command, set_height_command): Constify.
1684 * typeprint.c (set_print_type_methods, set_print_type_typedefs): Constify.
1685 * tracepoint.c (set_disconnected_tracing)
1686 (set_circular_trace_buffer, set_trace_buffer_size)
1687 (set_trace_user, set_trace_notes, set_trace_stop_notes): Constify.
1688 * top.c (set_history_size_command, set_verbose, set_editing)
1689 (set_gdb_datadir, set_history_filename): Constify.
1690 * target.c (set_targetdebug, maint_set_target_async_command)
1691 (maint_set_target_non_stop_command, set_target_permissions)
1692 (set_write_memory_permission): Constify.
1693 (open_target): Constify.
1694 * target-descriptions.c (set_tdesc_filename_cmd): Constify.
1695 * target-dcache.c (set_stack_cache, set_code_cache): Constify.
1696 * symtab.c (set_symbol_cache_size_handler): Constify.
1697 * symfile.c (set_ext_lang_command): Constify.
1698 * symfile-debug.c (set_debug_symfile): Constify.
1699 * source.c (set_directories_command): Constify.
1700 * solib.c (reload_shared_libraries, gdb_sysroot_changed): Constify.
1701 * serial.c (set_parity): Constify.
1702 * rs6000-tdep.c (powerpc_set_soft_float, powerpc_set_vector_abi): Constify.
1703 * remote.c (set_remote_exec_file, set_remotebreak)
1704 (set_remote_protocol_Z_packet_cmd, set_range_stepping): Constify.
1705 * record.c (set_record_insn_history_size)
1706 (set_record_call_history_size): Constify.
1707 * record-full.c (set_record_full_insn_max_num): Constify.
1708 * proc-api.c (set_procfs_trace_cmd, set_procfs_file_cmd): Constify.
1709 * osabi.c (set_osabi): Constify.
1710 * mips-tdep.c (set_mips64_transfers_32bit_regs)
1711 (reinit_frame_cache_sfunc, mips_abi_update): Constify.
1712 * maint.c (maintenance_set_profile_cmd): Constify.
1713 * linux-thread-db.c (set_libthread_db_search_path): Constify.
1714 * language.c (set_language_command, set_range_command)
1715 (set_case_command): Constify.
1716 * infrun.c (set_non_stop, set_observer_mode)
1717 (set_stop_on_solib_events, set_schedlock_func)
1718 (set_exec_direction_func): Constify.
1719 * infcmd.c (set_inferior_tty_command): Constify.
1720 * disasm.c (set_disassembler_options_sfunc): Constify.
1721 * demangle.c (set_demangling_command): Constify.
1722 * dcache.c (set_dcache_size, set_dcache_line_size): Constify.
1723 * cris-tdep.c (set_cris_version, set_cris_mode)
1724 (set_cris_dwarf2_cfi): Constify.
1725 * corefile.c (set_gnutarget_command): Constify.
1726 * charset.c (set_host_charset_sfunc, set_target_charset_sfunc)
1727 (set_target_wide_charset_sfunc): Constify.
1728 * breakpoint.c (update_dprintf_commands): Constify.
1729 * auto-load.c (set_auto_load_dir, set_auto_load_safe_path): Constify.
1730 * arm-tdep.c (set_fp_model_sfunc, arm_set_abi)
1731 (set_disassembly_style_sfunc): Constify.
1732 * arch-utils.c (set_endian, set_architecture): Constify.
1733 * alpha-tdep.c (reinit_frame_cache_sfunc): Constify.
1734 * agent.c (set_can_use_agent): Constify.
1735
1736 2017-11-07 Tom Tromey <tom@tromey.com>
1737
1738 * go32-nat.c (go32_sysinfo, go32_sldt, go32_sgdt, go32_sidt)
1739 (go32_pde, go32_pte, go32_pte_for_address): Constify.
1740 * gnu-nat.c (_parse_bool_arg, show_thread_default_pause_cmd)
1741 (set_thread_default_pause_cmd, set_thread_default_run_cmd)
1742 (show_thread_default_run_cmd, set_thread_default_detach_sc_cmd)
1743 (parse_int_arg, show_thread_default_detach_sc_cmd)
1744 (set_signals_cmd, show_signals_cmd, set_sig_thread_cmd)
1745 (show_sig_thread_cmd, set_stopped_cmd, show_stopped_cmd)
1746 (set_exceptions_cmd, show_exceptions_cmd, set_task_pause_cmd)
1747 (show_task_pause_cmd, set_task_detach_sc_cmd)
1748 (show_task_detach_sc_cmd, set_task_exc_port_cmd)
1749 (set_noninvasive_cmd, set_thread_pause_cmd)
1750 (show_thread_pause_cmd, set_thread_run_cmd, show_thread_run_cmd)
1751 (set_thread_detach_sc_cmd, show_thread_detach_sc_cmd)
1752 (set_thread_exc_port_cmd, thread_takeover_sc_cmd): Constify.
1753 * windows-nat.c (display_selectors): Constify.
1754 * cli/cli-decode.h (struct cmd_list_element) <function>: Remove
1755 non-const "cfunc".
1756 * cli/cli-decode.c (set_cmd_cfunc): Remove non-const overload.
1757 (cmd_cfunc_eq): Likewise.
1758 (struct cmd_list_element): Likewise.
1759 (do_cfunc): Remove.
1760 (cli_user_command_p): Update.
1761 * command.h (add_cmd): Remove non-const overload.
1762 (cmd_cfunc_ftype): Remove typedef.
1763 (cmd_cfunc_eq): Remove non-const overload.
1764 * value.c (show_values): Constify.
1765 * thread.c (thread_apply_all_command): Constify.
1766 * symfile.c (load_command): Constify.
1767 * source.c (directory_command): Constify.
1768 * maint.c (maintenance_internal_error)
1769 (maintenance_demangler_warning, maintenance_space_display)
1770 (maintenance_print_architecture, maintenance_translate_address)
1771 (maintenance_info_selftests, maintenance_internal_warning):
1772 Constify.
1773 * breakpoint.c (disable_trace_command, enable_trace_command):
1774 Constify.
1775 * auto-load.c (info_auto_load_local_gdbinit, add_auto_load_dir):
1776 Constify.
1777 (add_auto_load_safe_path): Constify.
1778 * guile/scm-auto-load.c (info_auto_load_guile_scripts): Constify.
1779 * top.h (show_commands): Constify.
1780 * linux-thread-db.c (info_auto_load_libthread_db): Constify.
1781 * sparc64-tdep.c (adi_examine_command): Constify.
1782 (adi_assign_command): Constify.
1783
1784 2017-11-07 Tom Tromey <tom@tromey.com>
1785
1786 * frame.h (info_locals_command, info_args_command): Constify.
1787 * auto-load.h (auto_load_info_scripts): Constify.
1788 * inferior.h (registers_info): Constify.
1789 * copying.c: Rebuild.
1790 * copying.awk: Constify generated commands.
1791 * auto-load.c (auto_load_info_scripts)
1792 (info_auto_load_gdb_scripts): Constify.
1793 * cli/cli-decode.c (struct cmd_list_element): Take a
1794 cmd_const_cfunc_ftype.
1795 * command.h (add_info): Take a cmd_const_cfunc_ftype.
1796 * tui/tui-win.c (tui_all_windows_info): Constify.
1797 * python/py-auto-load.c (info_auto_load_python_scripts):
1798 Constify.
1799 * cli/cli-cmds.c (show_command): Remove non-const overload.
1800 * tracepoint.c (info_tvariables_command, info_scope_command):
1801 Constify.
1802 (info_static_tracepoint_markers_command): Constify.
1803 * thread.c (info_threads_command): Constify.
1804 (print_thread_info_1): Constify.
1805 * target.c (info_target_command): Constify.
1806 * symtab.c (info_sources_command, info_functions_command)
1807 (info_types_command): Constify.
1808 (info_variables_command): Remove non-const overload.
1809 * symfile.c (info_ext_lang_command): Constify.
1810 * stack.c (info_frame_command, info_locals_command)
1811 (info_args_command): Constify.
1812 (backtrace_command): Remove non-const overload.
1813 * source.c (info_source_command, info_line_command): Constify.
1814 * solib.c (info_sharedlibrary_command): Constify.
1815 * skip.c (info_skip_command): Constify.
1816 * ser-go32.c (info_serial_command): Constify.
1817 * reverse.c (info_bookmarks_command): Constify.
1818 * printcmd.c (info_symbol_command, info_address_command)
1819 (info_display_command): Constify.
1820 * osdata.c (info_osdata_command): Constify.
1821 * objc-lang.c (info_selectors_command, info_classes_command):
1822 Constify.
1823 * nto-procfs.c (procfs_pidlist, procfs_meminfo): Constify.
1824 * memattr.c (info_mem_command): Constify.
1825 * macrocmd.c (info_macro_command, info_macros_command): Constify.
1826 * linux-fork.c (info_checkpoints_command): Constify.
1827 * infrun.c (info_signals_command): Constify.
1828 * inflow.c (info_terminal_command): Constify.
1829 * inferior.c (info_inferiors_command): Constify.
1830 (print_inferior): Constify.
1831 * infcmd.c (info_program_command, info_all_registers_command)
1832 (info_registers_command, info_vector_command)
1833 (info_float_command): Constify.
1834 (registers_info): Constify.
1835 * gnu-nat.c (info_send_rights_cmd, info_recv_rights_cmd)
1836 (info_port_sets_cmd, info_dead_names_cmd, info_port_rights_cmd):
1837 Constify.
1838 * f-valprint.c (info_common_command): Constify.
1839 * dcache.c (info_dcache_command): Constify.
1840 (dcache_info_1): Constify.
1841 * darwin-nat-info.c (info_mach_tasks_command)
1842 (info_mach_task_command, info_mach_ports_command)
1843 (info_mach_port_command, info_mach_threads_command)
1844 (info_mach_thread_command, info_mach_regions_command)
1845 (info_mach_regions_recurse_command, info_mach_region_command)
1846 (info_mach_exceptions_command): Constify.
1847 (get_task_from_args): Constify.
1848 * cp-support.c (info_vtbl_command): Constify.
1849 * breakpoint.c (info_watchpoints_command)
1850 (info_tracepoints_command): Constify.
1851 (info_breakpoints_command): Remove non-const overload.
1852 * avr-tdep.c (avr_io_reg_read_command): Constify.
1853 * auxv.c (info_auxv_command): Constify.
1854 * ada-tasks.c (info_tasks_command): Constify.
1855 (info_task): Constify.
1856 * ada-lang.c (info_exceptions_command): Constify.
1857
1858 2017-11-07 Tom Tromey <tom@tromey.com>
1859
1860 * solib.h (no_shared_libraries): Constify.
1861 * frame.h (return_command): Constify.
1862 * cli/cli-cmds.h (quit_command): Constify.
1863 * top.h (quit_command, execute_command): Constify.
1864 * target.h (flash_erase_command): Constify.
1865 * inferior.h (set_inferior_args, attach_command): Constify.
1866 * tracepoint.h (start_tracing, stop_tracing): Constify.
1867 * breakpoint.h (break_command, tbreak_command)
1868 (hbreak_command_wrapper, thbreak_command_wrapper)
1869 (rbreak_command_wrapper, watch_command_wrapper)
1870 (awatch_command_wrapper, rwatch_command_wrapper)
1871 (get_tracepoint_by_number): Constify.
1872 * symtab.c (info_variables_command, rbreak_command)
1873 (symtab_symbol_info): Constify.
1874 (info_variables_command): Add non-const overload.
1875 * top.c (dont_repeat_command): Constify.
1876 * breakpoint.c (ignore_command, commands_command)
1877 (condition_command, tbreak_command, hbreak_command)
1878 (thbreak_command, clear_command, break_command)
1879 (info_breakpoints_command, watch_command, rwatch_command)
1880 (awatch_command, trace_command, ftrace_command, strace_command)
1881 (trace_pass_command, break_range_command, dprintf_command)
1882 (agent_printf_command, get_tracepoint_by_number)
1883 (watch_maybe_just_location, trace_pass_command): Constify.
1884 (info_breakpoints_command): Add non-const overload.
1885 * tracefile.c (tsave_command): Constify.
1886 * infcmd.c (attach_command, disconnect_command, signal_command)
1887 (queue_signal_command, stepi_command, nexti_command)
1888 (finish_command, next_command, step_command, until_command)
1889 (advance_command, jump_command, continue_command, run_command)
1890 (start_command, starti_command, interrupt_command)
1891 (run_command_1, set_inferior_args, step_1): Constify.
1892 * inferior.c (add_inferior_command, remove_inferior_command)
1893 (clone_inferior_command): Constify.
1894 * linux-fork.c (checkpoint_command, restart_command): Constify.
1895 * windows-nat.c (signal_event_command): Constify.
1896 * guile/guile.c (guile_repl_command, guile_command): Constify.
1897 * printcmd.c (x_command, display_command, printf_command)
1898 (output_command, set_command, call_command, print_command)
1899 (eval_command): Constify.
1900 (non_const_set_command): Remove.
1901 (_initialize_printcmd): Update.
1902 * source.c (forward_search_command, reverse_search_command):
1903 Constify.
1904 * jit.c (jit_reader_load_command, jit_reader_unload_command):
1905 Constify.
1906 * infrun.c (handle_command): Constify.
1907 * memattr.c (mem_command): Constify.
1908 * stack.c (return_command, up_command, up_silently_command)
1909 (down_command, down_silently_command, frame_command)
1910 (backtrace_command, func_command, backtrace_command_1): Constify.
1911 (backtrace_command): Add non-const overload.
1912 * remote-sim.c (simulator_command): Constify.
1913 * exec.c (set_section_command): Constify.
1914 * tracepoint.c (tdump_command, trace_variable_command)
1915 (tstatus_command, tstop_command, tstart_command)
1916 (end_actions_pseudocommand, while_stepping_pseudocommand)
1917 (collect_pseudocommand, teval_pseudocommand, actions_command)
1918 (start_tracing, stop_tracing): Constify.
1919 * value.c (init_if_undefined_command): Constify.
1920 * tui/tui-stack.c (tui_update_command): Constify.
1921 * tui/tui-win.c (tui_refresh_all_command)
1922 (tui_set_tab_width_command, tui_set_win_height_command)
1923 (tui_set_focus_command, tui_scroll_forward_command)
1924 (tui_scroll_backward_command, tui_scroll_left_command)
1925 (tui_scroll_right_command, parse_scrolling_args, tui_set_focus)
1926 (tui_set_win_height): Constify.
1927 * tui/tui-layout.c (tui_layout_command): Constify.
1928 * procfs.c (proc_trace_syscalls, proc_trace_sysentry_cmd)
1929 (proc_trace_sysexit_cmd, proc_untrace_sysentry_cmd)
1930 (proc_untrace_sysexit_cmd): Constify.
1931 * remote.c (threadlist_test_cmd, threadinfo_test_cmd)
1932 (threadset_test_cmd, threadlist_update_test_cmd)
1933 (threadalive_test): Constify.
1934 * objc-lang.c (print_object_command): Constify.
1935 * command.h (add_com): Constify.
1936 * cli/cli-dump.c (restore_command): Constify.
1937 * cli/cli-cmds.c (pwd_command, echo_command, quit_command)
1938 (help_command, complete_command, shell_command, edit_command)
1939 (list_command, disassemble_command, make_command)
1940 (apropos_command, alias_command): Constify.
1941 * cli/cli-script.c (document_command, define_command)
1942 (while_command, if_command, validate_comname): Constify.
1943 * cli/cli-decode.c (struct cmd_list_element): Change type of
1944 "fun".
1945 * target.c (do_monitor_command, flash_erase_command): Constify.
1946 * regcache.c (reg_flush_command): Constify.
1947 * reverse.c (reverse_step, reverse_next, reverse_stepi)
1948 (reverse_nexti, reverse_continue, reverse_finish)
1949 (save_bookmark_command, goto_bookmark_command)
1950 (exec_reverse_once): Constify.
1951 * python/python.c (python_interactive_command, python_command):
1952 Constify.
1953 * typeprint.c (ptype_command, whatis_command, whatis_exp):
1954 Constify.
1955 * solib.c (sharedlibrary_command, no_shared_libraries): Constify.
1956 * gcore.c (gcore_command): Constify.
1957
1958 2017-11-07 Tom Tromey <tom@tromey.com>
1959
1960 * printcmd.c (x_command): Call set_repeat_arguments.
1961 * cli/cli-cmds.c (list_command): Call set_repeat_arguments.
1962 * top.c (repeat_arguments): New global.
1963 (set_repeat_arguments): New function.
1964 (execute_command): Handle repeat_arguments.
1965 (show_commands): Calls set_repeat_arguments.
1966 * command.h (set_repeat_arguments): Declare.
1967
1968 2017-11-07 Tom Tromey <tom@tromey.com>
1969
1970 * stack.c (backtrace_command): Use std::string.
1971 (backtrace_command_1): Make "count_exp" const.
1972
1973 2017-11-07 Tom Tromey <tom@tromey.com>
1974
1975 * source.c (directory_switch, mod_path, add_path): Constify.
1976 * defs.h (add_path, mod_path, directory_switch): Constify.
1977 * mi/mi-cmd-env.c (env_mod_path): Constify.
1978
1979 2017-11-07 Tom Tromey <tom@tromey.com>
1980
1981 * infcmd.c (strip_bg_char): Return gdb::unique_xmalloc_ptr.
1982 (run_command_1, continue_command, step_1, jump_command)
1983 (signal_command, until_command, advance_command, finish_command)
1984 (attach_command): Update.
1985
1986 2017-11-07 Tom Tromey <tom@tromey.com>
1987
1988 * command.h (set_cmd_cfunc): Don't declare.
1989 * cli/cli-decode.c (set_cmd_cfunc): Now static.
1990
1991 2017-11-07 Tom Tromey <tom@tromey.com>
1992
1993 * stack.c (select_frame_command): Constify.
1994 * cli/cli-decode.c (add_com_suppress_notification): Constify.
1995 * command.h (add_com_suppress_notification): Constify.
1996
1997 2017-11-07 Tom Tromey <tom@tromey.com>
1998
1999 * breakpoint.c (stop_command): Constify.
2000 * cli/cli-decode.c (struct cmd_list_element): Constify.
2001 * command.h (add_abbrev_prefix_cmd): Constify.
2002
2003 2017-11-07 Pedro Alves <palves@redhat.com>
2004
2005 * breakpoint.c (extract_bp_kind): New enum.
2006 (extract_bp_num, extract_bp_or_bp_range): New functions, partially
2007 factored out from ...
2008 (extract_bp_number_and_location): ... here.
2009 * cli/cli-utils.c (get_number_trailer): Handle '-$variable'.
2010
2011 2017-11-07 Pedro Alves <palves@redhat.com>
2012
2013 * breakpoint.c (extract_bp_number_and_location): Change return
2014 type to void. Throw error instead of warning.
2015 (enable_disable_command): Adjust.
2016
2017 2017-11-07 Xavier Roirand <roirand@adacore.com>
2018 Pedro Alves <palves@redhat.com>
2019
2020 * breakpoint.c (map_breakpoint_number_range): New, factored out
2021 from ...
2022 (map_breakpoint_numbers): ... here.
2023 (find_location_by_number): Change parameters from string to
2024 breakpoint number and location.
2025 (extract_bp_number_and_location): New function.
2026 (enable_disable_bp_num_loc)
2027 (enable_disable_breakpoint_location_range)
2028 (enable_disable_command): New functions, factored out ...
2029 (enable_command, disable_command): ... these functions, and
2030 adjusted to support ranges.
2031 * NEWS: Document enable/disable breakpoint location range feature.
2032
2033 2017-11-06 Luis Machado <luis.machado@linaro.org>
2034
2035 * MAINTAINERS (Write After Approval): Update my e-mail address.
2036
2037 2017-11-06 Pedro Alves <palves@redhat.com>
2038
2039 * gnu-nat.c (gnu_terminal_init): Delete.
2040 (gnu_target): Don't install gnu_terminal_init.
2041 * inflow.c (child_terminal_init_with_pgrp): Delete, merged with ...
2042 (child_terminal_init): ... this function.
2043
2044 2017-11-06 Pedro Alves <palves@redhat.com>
2045
2046 * common/common.m4 (GDB_AC_COMMON): No longer check termio.h nor
2047 sgtty.h.
2048 * config.in, configure: Regenerate.
2049
2050 2017-11-06 Pedro Alves <palves@redhat.com>
2051
2052 * event-top.c: Check SIGTSTP instead of STOP_SIGNAL thoughout.
2053 (async_init_signals): Adjust.
2054 (handle_stop_sig): Rename to ...
2055 (handle_sigtstp): ... this.
2056 (async_stop_sig): Rename to ...
2057 (async_sigtstp_handler): ... this, and delete STOP_SIGNAL !=
2058 SIGTSTP path.
2059 * event-top.h: Move signal.h include to the top. Check SIGTSTP
2060 instead of STOP_SIGNAL thoughout.
2061 (handle_stop_sig): Rename to ...
2062 (handle_sigtstp): ... this.
2063 * top.c (command_line_input): Replace STOP_SIGNAL -> SIGTSTP.
2064
2065 2017-11-06 Pedro Alves <palves@redhat.com>
2066
2067 * inflow.c (child_terminal_inferior, child_terminal_ours_1): No
2068 longer set flags twice in row.
2069
2070 2017-11-06 Pedro Alves <palves@redhat.com>
2071
2072 * Makefile.in (SER_HARDWIRE): Update comment.
2073 (HFILES_NO_SRCDIR): Remove gdb_termios.h.
2074 * common/gdb_termios.h: Delete file.
2075 * common/job-control.c: Include termios.h and unistd.h instead of
2076 gdb_termios.h.
2077 (gdb_setpgid): Remove HAVE_TERMIOS || TIOCGPGRP preprocessor
2078 check.
2079 (have_job_control): Check HAVE_TERMIOS_H instead of HAVE_TERMIOS.
2080 Remove sgtty code.
2081 * configure.ac: No longer check for termio.h and sgtty.h.
2082 * configure: Regenerate.
2083 * inflow.c: Include termios.h instead of gdb_termios.h. Replace
2084 PROCESS_GROUP_TYPE checks with HAVE_TERMIOS_H checks throughout.
2085 Replace PROCESS_GROUP_TYPE references with pid_t references
2086 throughout.
2087 (gdb_getpgrp): Delete.
2088 (set_initial_gdb_ttystate): Use tcgetpgrp instead of gdb_getpgrp.
2089 (child_terminal_inferior): Remove comment. Remove sgtty code.
2090 (child_terminal_ours_1): Use tcgetpgrp directly instead of
2091 gdb_getpgrp. Use serial_set_tty_state instead aof
2092 serial_noflush_set_tty_state. Remove sgtty code.
2093 * inflow.h: Include unistd.h instead of gdb_termios.h. Replace
2094 PROCESS_GROUP_TYPE check with HAVE_TERMIOS_H check.
2095 (inferior_process_group): Now returns pid_t.
2096 * ser-base.c (ser_base_noflush_set_tty_state): Delete.
2097 * ser-base.h (ser_base_noflush_set_tty_state): Delete.
2098 * ser-event.c (serial_event_ops): Update.
2099 * ser-go32.c (dos_noflush_set_tty_state): Delete.
2100 (dos_ops): Update.
2101 * ser-mingw.c (hardwire_ops, tty_ops, pipe_ops, tcp_ops): Update.
2102 * ser-pipe.c (pipe_ops): Update.
2103 * ser-tcp.c (tcp_ops): Update.
2104 * ser-unix.c: Include termios.h instead of gdb_termios.h. Remove
2105 HAVE_TERMIOS checks.
2106 [HAVE_TERMIO] (struct hardwire_ttystate): Delete.
2107 [HAVE_SGTTY] (struct hardwire_ttystate): Delete.
2108 (get_tty_state, set_tty_state): Drop termio and sgtty code, and
2109 assume termios.
2110 (hardwire_noflush_set_tty_state): Delete.
2111 (hardwire_print_tty_state, hardwire_drain_output)
2112 (hardwire_flush_output, hardwire_flush_input)
2113 (hardwire_send_break, hardwire_raw, hardwire_setbaudrate)
2114 (hardwire_setstopbits, hardwire_setparity): Drop termio and sgtty
2115 code, and assume termios.
2116 (hardwire_ops): Update.
2117 (_initialize_ser_hardwire): Remove HAVE_TERMIOS check.
2118 * serial.c (serial_noflush_set_tty_state): Delete.
2119 * serial.h (serial_noflush_set_tty_state): Delete.
2120 (serial_ops::noflush_set_tty_state): Delete.
2121
2122 2017-11-06 Ulrich Weigand <uweigand@de.ibm.com>
2123
2124 * Makefile.in (SFILES): Remove doublest.c and dfp.c.
2125 (HFILES_NO_SRCDIR): Remove doublest.h and dfp.h.
2126 (COMMON_OBS): Remove doublest.o and dfp.o.
2127 Do not build target-float.c (instead of doublest.c)
2128 with -Wformat-nonliteral.
2129
2130 * doublest.c: Remove file.
2131 * doublest.h: Remove file.
2132 * dfp.c: Remove file.
2133 * dfp.h: Remove file.
2134
2135 * target-float.c: Do not include "doublest.h" and "dfp.h".
2136 (DOUBLEST): Move here from doublest.h.
2137 (enum float_kind): Likewise.
2138 (FLOATFORMAT_CHAR_BIT): Likewise.
2139 (FLOATFORMAT_LARGEST_BYTES): Likewise.
2140 (floatformat_totalsize_bytes): Move here from doublest.c. Make static.
2141 (floatformat_precision): Likewise.
2142 (floatformat_normalize_byteorder, get_field, put_field): Likewise.
2143 (floatformat_is_negative, floatformat_classify, floatformat_mantissa):
2144 Likewise.
2145 (host_float_format, host_double_format, host_long_double_format):
2146 Likewise.
2147 (floatformat_to_string, floatformat_from_string): Likewise.
2148 (floatformat_to_doublest): Likewise. Also, inline the original
2149 convert_floatformat_to_doublest.
2150 (floatformat_from_doublest): Likewise. Also, inline the original
2151 convert_floatformat_from_doublest.
2152
2153 Include "dpd/decimal128.h", "dpd/decimal64.h", and "dpd/decimal32.h".
2154 (MAX_DECIMAL_STRING): Move here from dfp.c.
2155 (match_endianness): Likewise.
2156 (set_decnumber_context, decimal_check_errors): Likewise.
2157 (decimal_from_number, decimal_to_number): Likewise.
2158 (decimal_to_string, decimal_from_string): Likewise. Make static.
2159 (decimal_from_longest, decimal_from_ulongest): Likewise.
2160 (decimal_to_longest): Likewise.
2161 (decimal_binop, decimal_is_zero, decimal_compare): Likewise.
2162 (decimal_convert): Likewise.
2163
2164 2017-11-06 Ulrich Weigand <uweigand@de.ibm.com>
2165
2166 * doublest.c: Do not include "gdbtypes.h".
2167 (extract_typed_floating): Remove.
2168 (store_typed_floating): Remove.
2169 (convert_typed_floating): Remove.
2170 * doublest.h (struct type): Remove.
2171 (DOUBLEST_PRINT_FORMAT): Remove.
2172 (DOUBLEST_SCAN_FORMAT): Remove.
2173 (extract_typed_floating): Remove.
2174 (store_typed_floating): Remove.
2175 (convert_typed_floating): Remove.
2176
2177 * dfp.c (decimal_from_doublest): Remove.
2178 (decimal_to_doublest): Remove.
2179 * dfp.h: Do not include "doublest.h".
2180 (decimal_from_doublest): Remove.
2181 (decimal_to_doublest): Remove.
2182
2183 * value.c: Do not include "doublest.h" and "dfp.h".
2184 (value_as_double): Remove.
2185 (unpack_double): Remove.
2186 (value_from_double): Remove.
2187 (value_from_decfloat): Remove.
2188 * value.h: Do not include "doublest.h".
2189 (value_as_double): Remove.
2190 (unpack_double): Remove.
2191 (value_from_double): Remove.
2192 (value_from_decfloat): Remove.
2193
2194 2017-11-06 Ulrich Weigand <uweigand@de.ibm.com>
2195
2196 * i386-tdep.c: Include "target-float.h". Do not include "doublest.h".
2197 (i386_extract_return_value): Use target_float_convert.
2198 (i386_store_return_value): Likewise.
2199 * i387-tdep.c (i387_register_to_value): Use target_float_convert.
2200 (i387_value_to_register): Likewise.
2201 * ia64-tdep.c: Include "target-float.h". Do not include "doublest.h".
2202 (ia64_register_to_value): Use target_float_convert.
2203 (ia64_value_to_register): Likewise.
2204 (ia64_extract_return_value): Likewise.
2205 (ia64_store_return_value): Likewise.
2206 (ia64_push_dummy_call): Likewise.
2207 * m68k-tdep.c: Include "target-float.h".
2208 (m68k_register_to_value): Use target_float_convert.
2209 (m68k_value_to_register): Likewise.
2210 (m68k_svr4_extract_return_value): Likewise.
2211 (m68k_svr4_store_return_value): Likewise.
2212 * ppc-sysv-tdep.c: Include "target-float.h".
2213 (ppc_sysv_abi_push_dummy_call): Use target_float_convert.
2214 (do_ppc_sysv_return_value): Likewise.
2215 (ppc64_sysv_abi_push_freg): Likewise.
2216 (ppc64_sysv_abi_return_value_base): Likewise.
2217 * rs6000-aix-tdep.c: Include "target-float.h".
2218 (rs6000_push_dummy_call): Use target_float_convert.
2219 (rs6000_return_value): Likewise.
2220 * rs6000-lynx178-tdep.c: Include "target-float.h".
2221 (rs6000_lynx178_push_dummy_call): Use target_float_convert.
2222 (rs6000_lynx178_return_value): Likewise.
2223 * rs6000-tdep.c: Include "target-float.h". Do not include "doublest.h".
2224 (rs6000_register_to_value): Use target_float_convert.
2225 (rs6000_value_to_register): Likewise.
2226 * arm-tdep.c: Include "target-float.h". Do not include "doublest.h".
2227 (arm_extract_return_value): Use target_float_convert.
2228 (arm_store_return_value): Likewise.
2229 * sh-tdep.c: Include "target-float.h". Do not include "doublest.h".
2230 (sh_register_convert_to_virtual): Use target_float_convert.
2231 (sh_register_convert_to_raw): Likewise.
2232 * sh64-tdep.c: Include "target-float.h".
2233 (sh64_extract_return_value): Use target_float_convert.
2234 (sh64_register_convert_to_virtual): Likewise.
2235 (sh64_register_convert_to_raw): Likewise. Fix argument types.
2236
2237 2017-11-06 Ulrich Weigand <uweigand@de.ibm.com>
2238
2239 * target-float.c (floatformat_to_host_double): New function.
2240 (floatformat_from_host_double): Likewise.
2241 (target_float_to_host_double): Likewise.
2242 (target_float_from_host_double): Likewise.
2243 * target-float.h (target_float_to_host_double): Add prototype.
2244 (target_float_from_host_double): Likewise.
2245
2246 * guile/scm-value.c: Include "target-float.h".
2247 (gdbscm_value_to_real): Use target_float_to_host_double.
2248 Handle integer source values via value_as_long.
2249 * guile/scm-math.c: Include "target-float.h". Do not include
2250 "doublest.h", "dfp.h", and "expression.h".
2251 (vlscm_convert_typed_number): Use target_float_from_host_double.
2252 (vlscm_convert_number): Likewise.
2253
2254 * python/py-value.c (valpy_float): Use target_float_to_host_double.
2255 (convert_value_from_python): Use target_float_from_host_double.
2256
2257 2017-11-06 Ulrich Weigand <uweigand@de.ibm.com>
2258
2259 * ada-lang.c (cast_to_fixed): Reimplement in target arithmetic.
2260 (cast_from_fixed): Likewise.
2261 (ada_scaling_type): New function.
2262 (ada_delta): Return value instead of DOUBLEST. Perform target
2263 arithmetic instead of host arithmetic.
2264 (scaling_factor): Rename to ...
2265 (ada_scaling_factor) ... this. Make non-static. Return value instead
2266 of DOUBLEST. Perform target arithmetic instead of host arithmetic.
2267 (ada_fixed_to_float): Remove.
2268 (ada_float_to_fixed): Remove.
2269 * ada-lang.h (ada_fixed_to_float): Remove.
2270 (ada_float_to_fixed): Remove.
2271 (ada_delta): Return value instead of DOUBLEST.
2272 (ada_scaling_factor): Add prototype.
2273
2274 * ada-typeprint.c: Include "target-float.h".
2275 (print_fixed_point_type): Perform target arithmetic instead of
2276 host arithmetic.
2277 * ada-valprint.c: Include "target-float.h".
2278 (ada_val_print_num): Perform target arithmetic instead of
2279 host arithmetic for fixed-point types.
2280
2281 2017-11-06 Ulrich Weigand <uweigand@de.ibm.com>
2282
2283 * target-float.c: Include <math.h>.
2284 (floatformat_binop): New function.
2285 (floatformat_compare): Likewise.
2286 (target_float_binop): Likewise.
2287 (target_float_compare): Likewise.
2288 * target-float.h: Include "expression.h".
2289 (target_float_binop): Add prototype.
2290 (target_float_compare): Likewise.
2291
2292 * valarith.c: Do not include "doublest.h" and "dfp.h".
2293 Include "common/byte-vector.h".
2294 (value_args_as_decimal): Remove, replace by ...
2295 (value_args_as_target_float): ... this function. Handle both
2296 binary and decimal target floating-point formats.
2297 (scalar_binop): Handle both binary and decimal FP using
2298 value_args_as_target_float and target_float_binop.
2299 (value_equal): Handle both binary and decimal FP using
2300 value_args_as_target_float and target_float_compare.
2301 (value_less): Likewise.
2302 (value_pos): Handle all scalar types as simple copy.
2303 (value_neg): Handle all scalar types via BINOP_SUB from 0.
2304 * dfp.c (decimal_binop): Throw error instead of internal_error
2305 when called with an unsupported operation code.
2306
2307 2017-11-06 Ulrich Weigand <uweigand@de.ibm.com>
2308
2309 * target-float.c (target_float_to_string): New function.
2310 (target_float_from_string): New function.
2311 * target-float.h (target_float_to_string): Add prototype.
2312 (target_float_from_string): Add prototype.
2313
2314 * valprint.c: Include "target-float.h". Do not include
2315 "doublest.h" and "dfp.h".
2316 (print_floating): Use target_float_to_string.
2317 * printcmd.c: Include "target-float.h". Do not include "dfp.h".
2318 (printf_floating): Use target_float_to_string.
2319 * i387-tdep.c: Include "target-float.h". Do not include "doublest.h".
2320 (print_i387_value): Use target_float_to_string.
2321 * mips-tdep.c: Include "target-float.h".
2322 (mips_print_fp_register): Use target_float_to_string.
2323 * sh64-tdep.c: Include "target-float.h".
2324 (sh64_do_fp_register): Use target_float_to_string.
2325
2326 * parse.c: Include "target-float.h". Do not include
2327 "doublest.h" and "dfp.h".
2328 (parse_float): Use target_float_from_string.
2329 * stabsread.c: Include "target-float.h". Do not include "doublest.h".
2330 (define_symbol): Use target_float_from_string.
2331 * gdbarch-selftests.c: Include "target-float.h".
2332 (register_to_value_test): Use target_float_from_string.
2333
2334 2017-11-06 Ulrich Weigand <uweigand@de.ibm.com>
2335
2336 * Makefile.c (SFILES): Add target-float.c.
2337 (HFILES_NO_SRCDIR): Add target-float.h.
2338 (COMMON_OBS): Add target-float.o.
2339 * target-float.h: New file.
2340 * target-float.c: New file.
2341
2342 * doublest.c (floatformat_classify): Fix detection of float_zero.
2343
2344 * gdbtypes.c (is_floating_type): New function.
2345 * gdbtypes.h (is_floating_type): Add prototype.
2346
2347 * value.c: Do not include "floatformat.h".
2348 (unpack_double): Use target_float_is_valid.
2349 (is_floating_value): New function.
2350 * value.h (is_floating_value): Add prototype-
2351
2352 * valarith.c: Include "target-float.h".
2353 (value_logical_not): Use target_float_is_zero.
2354
2355 * python/py-value.c: Include "target-float.h".
2356 (valpy_nonzero): Use target_float_is_zero.
2357
2358 2017-11-04 Tom Tromey <tom@tromey.com>
2359
2360 * h8300-tdep.c (h8300_push_dummy_call): Use std::vector.
2361
2362 2017-11-04 Tom Tromey <tom@tromey.com>
2363
2364 * breakpoint.c (set_momentary_breakpoint): Return
2365 breakpoint_up.
2366 (until_break_command): Update.
2367 (new_until_break_fsm): Change argument types to
2368 breakpoint_up.
2369 (set_momentary_breakpoint_at_pc): Return breakpoint_up.
2370 (do_delete_breakpoint_cleanup, make_cleanup_delete_breakpoint):
2371 Remove.
2372 * infcmd.c (finish_forward): Update.
2373 * breakpoint.h (set_momentary_breakpoint)
2374 (set_momentary_breakpoint_at_pc): Return breakpoint_up.
2375 (make_cleanup_delete_breakpoint): Remove.
2376 (struct breakpoint_deleter): New.
2377 (breakpoint_up): New typedef.
2378 * infrun.c (insert_step_resume_breakpoint_at_sal_1): Update.
2379 (insert_exception_resume_breakpoint): Update.
2380 (insert_exception_resume_from_probe): Update.
2381 (insert_longjmp_resume_breakpoint): Update.
2382 * arm-linux-tdep.c (arm_linux_copy_svc): Update.
2383 * elfread.c (elf_gnu_ifunc_resolver_stop): Update.
2384 * infcall.c (call_function_by_hand_dummy): Update
2385
2386 2017-11-04 Tom Tromey <tom@tromey.com>
2387
2388 * c-typeprint.c (c_type_print_base): Use gdb::unique_xmalloc_ptr.
2389
2390 2017-11-04 Tom Tromey <tom@tromey.com>
2391
2392 * linux-tdep.c (linux_core_info_proc_mappings): Use
2393 gdb::def_vector.
2394 (linux_get_siginfo_data): Return gdb::byte_vector. Remove
2395 "size" argument.
2396 (linux_corefile_thread): Update.
2397 (linux_make_corefile_notes): Remove unused variable.
2398
2399 2017-11-04 Tom Tromey <tom@tromey.com>
2400
2401 * ppc-linux-tdep.c (ppc_linux_get_syscall_number): Use
2402 gdb::byte_vector.
2403
2404 2017-11-04 Tom Tromey <tom@tromey.com>
2405
2406 * objfiles.c (do_free_objfile_cleanup): Remove.
2407 * compile/compile-object-load.c (compile_object_load): Update.
2408 * objfiles.h (make_cleanup_free_objfile): Remove.
2409
2410 2017-11-04 Tom Tromey <tom@tromey.com>
2411
2412 * sparc64-tdep.c (do_examine): Use gdb::def_vector.
2413 (adi_read_versions): Change "tags" to "gdb_byte *".
2414 (adi_print_versions): Likewise.
2415
2416 2017-11-04 Tom Tromey <tom@tromey.com>
2417
2418 * breakpoint.c
2419 (scoped_rbreak_breakpoints::scoped_rbreak_breakpoints): Rename
2420 from start_rbreak_breakpoints.
2421 (scoped_rbreak_breakpoints): Rename from end_rbreak_breakpoints.
2422 * breakpoint.h (class scoped_rbreak_breakpoints): New.
2423 (start_rbreak_breakpoints, end_rbreak_breakpoints): Remove.
2424 * symtab.c (do_end_rbreak_breakpoints): Remove.
2425 (rbreak_command): Use scoped_rbreak_breakpoints, std::string.
2426
2427 2017-11-04 Tom Tromey <tom@tromey.com>
2428
2429 * cp-namespace.c (reset_directive_searched): Remove.
2430 (cp_lookup_symbol_via_imports): Use scoped_restore.
2431 * cp-support.c (reset_directive_searched): Remove.
2432 (make_symbol_overload_list_using): Use scoped_restore.
2433 * d-namespace.c (d_lookup_symbol_imports): Use scoped_restore.
2434 (reset_directive_searched): Remove.
2435
2436 2017-11-04 Tom Tromey <tom@tromey.com>
2437
2438 * symfile.c (find_separate_debug_file_by_debuglink): Use
2439 unique_xmalloc_ptr.
2440
2441 2017-11-04 Tom Tromey <tom@tromey.com>
2442
2443 * compile/compile-loc2c.c (compute_stack_depth_worker): Change
2444 type of "info".
2445 (compute_stack_depth): Likewise.
2446 (do_compile_dwarf_expr_to_c): Use std::vector.
2447
2448 2017-11-04 Tom Tromey <tom@tromey.com>
2449
2450 * compile/compile-object-load.c (link_callbacks_einfo): Use
2451 std::string.
2452
2453 2017-11-04 Tom Tromey <tom@tromey.com>
2454
2455 * dwarf2read.c (process_full_comp_unit, process_full_type_unit):
2456 Use scoped_free_pendings.
2457 * dbxread.c (dbx_symfile_read, dbx_psymtab_to_symtab_1): Use
2458 scoped_free_pendings.
2459 * xcoffread.c (xcoff_psymtab_to_symtab_1): Use scoped_free_pendings.
2460 (xcoff_initial_scan): Likewise.
2461 * buildsym.c (reset_symtab_globals): Update comment.
2462 (scoped_free_pendings): Rename from really_free_pendings.
2463 (prepare_for_building): Update comment.
2464 (buildsym_init): Likewise.
2465 * buildsym.h (class scoped_free_pendings): New class.
2466 (really_free_pendings): Don't declare.
2467
2468 2017-11-03 Ulrich Weigand <uweigand@de.ibm.com>
2469
2470 * doublest.c (convert_doublest_to_floatformat): Fix uninitialized
2471 output when converting a zero value to a special byteorder format.
2472
2473 2017-11-02 Yao Qi <yao.qi@linaro.org>
2474
2475 * frame.c (do_frame_register_read): Remove aspace.
2476 * jit.c (jit_frame_sniffer): Likwise.
2477 * ppc-linux-tdep.c (ppu2spu_sniffer): Likewise.
2478 * regcache.c (regcache::regcache): Pass nullptr.
2479 (regcache_print): Caller updated.
2480 * regcache.h (regcache::regcache): Remove one constructor
2481 parameter aspace.
2482
2483 2017-11-02 Yao Qi <yao.qi@linaro.org>
2484
2485 * regcache.h (regcache) <m_readonly_p>: Change it to const bool.
2486
2487 2017-11-02 Yao Qi <yao.qi@linaro.org>
2488
2489 * breakpoint.c (insert_single_step_breakpoints): Update.
2490 * frame.c (struct frame_info) <aspace>: Add const.
2491 (frame_save_as_regcache): Add const.
2492 (get_frame_address_space): Return const address_space *.
2493 * frame.h (get_frame_address_space): Update declaration.
2494 * infrun.c (struct step_over_info) <aspace>: Add const.
2495 (set_step_over_info): Make aspace const.
2496 (displaced_step_prepare_throw): Change variable const.
2497 (resume): Likewise.
2498 (proceed): Likewise.
2499 (adjust_pc_after_break): Likewise.
2500 (save_waitstatus): Likewise.
2501 (handle_signal_stop): Likewise.
2502 (keep_going_pass_signal): Likewise.
2503 * jit.c (jit_frame_sniffer): Add const.
2504 * mips-tdep.c (mips_single_step_through_delay): Likewise.
2505 * ppc-linux-tdep.c (ppu2spu_sniffer): Likewise.
2506 * record-full.c (record_full_wait_1): Likewise.
2507 * regcache.c (regcache::regcache): Change parameter to const.
2508 * regcache.h (regcache::regcache): Likewise.
2509 (regcache::aspace): Return const address_space *.
2510 (regcache) <m_aspace>: Add const.
2511
2512 2017-11-02 Yao Qi <yao.qi@linaro.org>
2513
2514 * darwin-nat.c (cancel_breakpoint): Use regcache->aspace ().
2515 * frame.c (create_sentinel_frame): Likewise.
2516 * infrun.c (displaced_step_prepare_throw): Likewise.
2517 (resume): Likewise.
2518 (thread_still_needs_step_over_bp): Likewise.
2519 (proceed): Likewise.
2520 (do_target_wait): Likewise.
2521 (adjust_pc_after_break): Likewise.
2522 (handle_syscall_event): Likewise.
2523 (save_waitstatus): Likewise.
2524 (handle_inferior_event_1): Likewise.
2525 (handle_signal_stop): Likewise.
2526 (keep_going_pass_signal): Likewise.
2527 * linux-nat.c (status_callback): Likewise.
2528 (save_stop_reason): Likewise.
2529 (resume_stopped_resumed_lwps): Likewise.
2530 * record-full.c (record_full_exec_insn): Likewise.
2531 (record_full_wait_1): Likewise.
2532 * regcache.c (get_regcache_aspace): Remove.
2533 * regcache.h (get_regcache_aspace): Remove.
2534
2535 2017-11-02 Yao Qi <yao.qi@linaro.org>
2536
2537 * regcache.c (struct regcache_descr) <nr_raw_registers>: Remove.
2538 (init_regcache_descr): Use gdbarch_num_regs.
2539 (regcache::regcache): Likewise.
2540 (regcache::get_register_status): Likewise.
2541 (regcache::assert_raw_regnum): Likewise.
2542 (regcache::cooked_read): Likewise.
2543 (regcache::cooked_read_value): Likewise.
2544 (regcache::cooked_write): Likewise.
2545 (regcache::dump): Likewise.
2546 (regcache::num_raw_registers): New method.
2547 * regcache.h (class regcache) <num_raw_registers>: New.
2548
2549 2017-11-02 Yao Qi <yao.qi@linaro.org>
2550
2551 * regcache.c (regcache::assert_regnum): New method.
2552 (regcache::invalidate): Call assert_regnum.
2553 (regcache::raw_update): Likewise.
2554 (regcache::raw_write): Likewise.
2555 (regcache::raw_read_part): Likewise.
2556 (regcache::raw_write_part): Likewise.
2557 (regcache::raw_supply): Likewise.
2558 (regcache::raw_supply_integer): Likewise.
2559 (regcache::raw_supply_zeroed): Likewise.
2560 (regcache::raw_collect): Likewise.
2561 (regcache::raw_collect_integer): Likewise.
2562 * regcache.h (regcache::assert_regnum): Declare.
2563
2564 2017-11-02 Yao Qi <yao.qi@linaro.org>
2565
2566 * regcache.c (regcache::dump): Remove code.
2567
2568 2017-11-02 Yao Qi <yao.qi@linaro.org>
2569
2570 * regcache.c (struct regcache_descr) <sizeof_raw_register_status>:
2571 Remove.
2572 <sizeof_cooked_register_status>: Remove.
2573 (init_regcache_descr): Update.
2574 (regcache::regcache): Use nr_cooked_registers and nr_raw_registers.
2575 (regcache::save): Likewise.
2576 (regcache::dump): Likewise.
2577
2578 2017-11-01 James Bowman <james.bowman@ftdichip.com>
2579
2580 * ft32-tdep.c (ft32_fetch_instruction): New function.
2581 (ft32_analyze_prologue): Use ft32_fetch_instruction().
2582
2583 2017-10-31 Simon Marchi <simon.marchi@polymtl.ca>
2584
2585 * cli/cli-script.c (execute_control_command): Rename to ...
2586 (execute_control_command_1): ... this.
2587 (execute_control_command): New function.
2588
2589 2017-10-31 Simon Marchi <simon.marchi@ericsson.com>
2590
2591 * tracepoint.c (tfind_command): Remove const_cast.
2592
2593 2017-10-30 Mike Gulick <mgulick@mathworks.com>
2594
2595 * Makefile.in (HFILES_NO_SRCDIR): Remove reference to gdb.h.
2596
2597 2017-10-30 Simon Marchi <simon.marchi@ericsson.com>
2598
2599 * common/common-utils.h (in_inclusive_range): New function.
2600 * arm-tdep.c (arm_record_extension_space): Use
2601 in_inclusive_range.
2602 (thumb_record_ld_st_reg_offset): Use in_inclusive_range.
2603 * cris-tdep.c (cris_spec_reg_applicable): Use
2604 in_inclusive_range.
2605
2606 2017-10-30 Pedro Alves <palves@redhat.com>
2607 Simon Marchi <simon.marchi@ericsson.com>
2608
2609 * remote.c (remote_set_syscall_catchpoint): Build a std::string
2610 instead of a gdb::unique_xmalloc_ptr, using string_appendf.
2611
2612 2017-10-30 Pedro Alves <palves@redhat.com>
2613
2614 * common/common-utils.c (string_appendf, string_vappendf): New
2615 functions.
2616 * common/common-utils.h (string_appendf, string_vappendf): New
2617 declarations.
2618 * unittests/common-utils-selftests.c (string_appendf_func)
2619 (test_appendf_func, string_vappendf_wrapper, string_appendf_tests)
2620 (string_vappendf_tests): New functions.
2621 (_initialize_common_utils_selftests): Register "string_appendf" and
2622 "string_vappendf tests".
2623
2624 2017-10-30 Pedro Alves <palves@redhat.com>
2625
2626 * unittests/common-utils-selftests.c (format_func): New typedef.
2627 (string_printf_tests, string_vprintf_tests): Tests factored out
2628 and merged to ...
2629 (test_format_func): ... this new function.
2630 (string_printf_tests, string_vprintf_tests): Reimplement on top of
2631 test_format_func.
2632
2633 2017-10-29 Simon Marchi <simon.marchi@ericsson.com>
2634
2635 * darwin-nat.c: Remove include of gdb.h.
2636
2637 2017-10-29 Simon Marchi <simon.marchi@ericsson.com>
2638
2639 * xtensa-xtregs.c: Fix formatting issues.
2640
2641 2017-10-29 Simon Marchi <simon.marchi@ericsson.com>
2642
2643 * xtensa-xtregs.c (xtensa_regtable_t) <name>: Constify.
2644
2645 2017-10-28 Maksim Dzabraev <dzabraew@gmail.com>
2646
2647 PR python/21213
2648 * python/py-infthread.c (thpy_get_inferior): Increment reference
2649 of inferior before returning it.
2650
2651 2017-10-27 Simon Marchi <simon.marchi@ericsson.com>
2652
2653 * unittests/common-utils-selftests.c (format): Add
2654 ATTRIBUTE_PRINTF.
2655
2656 2017-10-27 Simon Marchi <simon.marchi@polymtl.ca>
2657
2658 * xml-syscall.c (struct syscall_desc): Add constructor.
2659 <name>: Change type to std::string.
2660 (syscall_desc_up): New typedef.
2661 (syscall_desc_p): Remove typeder.
2662 (DEF_VEC_P(syscall_desc_p)): Remove.
2663 (struct syscall_group_desc): Add constructor.
2664 <name>: Change type to std::string.
2665 <syscalls>: Change type to std::vector.
2666 (syscall_group_desc_up): New typedef.
2667 (syscall_group_desc_p): Remove typedef.
2668 (DEF_VEC_P(syscall_group_desc_p)): Remove.
2669 (struct syscalls_info) <syscalls>: Change type to std::vector of
2670 unique_ptr.
2671 <groups>: Likewise.
2672 <my_gdb_datadir>: Change type to std::string.
2673 (syscalls_info_up): New typedef.
2674 (allocate_syscalls_info): Remove.
2675 (syscalls_info_free_syscalls_desc): Remove.
2676 (syscalls_info_free_syscall_group_desc): Remove.
2677 (free_syscalls_info): Remove.
2678 (make_cleanup_free_syscalls_info): Remove.
2679 (syscall_group_create_syscall_group_desc): Adjust.
2680 (syscall_group_add_syscall): Adjust.
2681 (syscall_create_syscall_desc): Adjust.
2682 (syscall_parse_xml): Adjust, use unique_ptr instead of cleanup.
2683 (init_syscalls_info): Adjust.
2684 (syscall_group_get_group_by_name): Adjust.
2685 (xml_get_syscall_number): Adjust.
2686 (xml_get_syscall_name): Adjust.
2687 (xml_list_of_syscalls): Adjust.
2688 (xml_list_syscalls_by_group): Adjust.
2689 (xml_list_of_groups): Adjust.
2690
2691 2017-10-27 Simon Marchi <simon.marchi@ericsson.com>
2692
2693 * probe.h: Don't include gdb_vecs.h.
2694 (DEF_VEC_P (probe_p)): Remove.
2695 (find_probes_in_objfile): Return an std::vector.
2696 * probe.c (find_probes_in_objfile): Likewise.
2697 * breakpoint.c (breakpoint_objfile_data)
2698 <longjmp_probes>: Change type to std::vector.
2699 <exception_probes>: Likewise.
2700 (free_breakpoint_probes): Don't manually free vectors.
2701 (create_longjmp_master_breakpoint): Adjust.
2702 (create_exception_master_breakpoint): Adjust.
2703 * solib-svr4.c (svr4_create_probe_breakpoints): Change
2704 parameter type, adjust.
2705 (svr4_create_solib_event_breakpoints): Adjust.
2706
2707 2017-10-27 Simon Marchi <simon.marchi@ericsson.com>
2708
2709 * breakpoint.c (breakpoint_objfile_data): Initialize fields.
2710 (get_breakpoint_objfile_data): Allocate breakpoint_objfile_data
2711 with new.
2712 (free_breakpoint_probes): Rename to ...
2713 (free_breakpoint_objfile_data): ... this, and call delete on
2714 bp_objfile_data..
2715
2716 2017-10-27 Simon Marchi <simon.marchi@polymtl.ca>
2717
2718 * auto-load.c: Don't include gdb_vecs.h, include algorithm.
2719 (loaded_script_ptr): Remove typedef.
2720 (DEF_VEC_P (loaded_script_ptr)): Remove.
2721 (struct collect_matching_scripts_data): Add constructor.
2722 <scripts_p>: Change type to (pointer to) std::vector.
2723 (collect_matching_scripts_data): Adjust.
2724 (sort_scripts_by_name): Make suitable for std::sort.
2725 (print_scripts): Don't sort vector, adjust to std::vector.
2726 (auto_load_info_scripts): Sort vectors, adjust to std::vector.
2727
2728 2017-10-27 Simon Marchi <simon.marchi@ericsson.com>
2729
2730 * symfile.c (filename_language): Make struct, not typedef. Add
2731 constructor.
2732 <ext>: Change type to std::string.
2733 (DEF_VEC_O (filename_language)): Remove.
2734 (filename_language_table): Change type to std::vector.
2735 (add_filename_language): Adjust.
2736 (set_ext_lang_command): Adjust.
2737 (info_ext_lang_command): Adjust.
2738 (deduce_language_from_filename): Adjust.
2739 (class scoped_restore_filename_language_table): Remove.
2740 (test_filename_language): Use scoped_restore.
2741 (test_set_ext_lang_command): Use scoped_restore, adjust to
2742 std::vector change.
2743
2744 2017-10-27 Simon Marchi <simon.marchi@ericsson.com>
2745
2746 * symfile.c: Include selftest.h.
2747 (class scoped_restore_filename_language_table): New.
2748 (test_filename_language): New test.
2749 (test_set_ext_lang_command): New test.
2750 (_initialize_symfile): Register tests.
2751
2752 2017-10-27 Keith Seitz <keiths@redhat.com>
2753
2754 * breakpoint.c (print_breakpoint_location): Use the symbol saved
2755 in the bp_location, falling back to find_pc_sect_function when
2756 needed.
2757 (add_location_to_breakpoint): Save sal->symbol.
2758 * breakpoint.h (struct bp_location) <symbol>: New field.
2759 * symtab.c (find_function_start_sal): Save the symbol into the SaL.
2760 * symtab.h (struct symtab_and_line) <symbol>: New field.
2761
2762 2017-10-26 Patrick Frants <osscontribute@gmail.com>
2763
2764 PR gdb/13669
2765 * cp-valprint.c (cp_print_value_fields): Use obstack_blank_fast
2766 to rewind obstack.
2767
2768 2017-10-26 Pedro Alves <palves@redhat.com>
2769
2770 * remote.c (remote_async_terminal_ours_p): Delete.
2771 (remote_open_1, remote_terminal_inferior, remote_terminal_ours):
2772 Remove references to 'remote_async_terminal_ours_p'.
2773
2774 2017-10-26 Yao Qi <yao.qi@linaro.org>
2775
2776 * breakpoint.h (regular_breakpoint_inserted_here_p): Remove.
2777
2778 2017-10-26 Yao Qi <yao.qi@linaro.org>
2779
2780 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Make
2781 aspace const.
2782 * break-catch-syscall.c (breakpoint_hit_catch_syscall):
2783 Likewise.
2784 * breakpoint.c (bpstat_check_location): Remove cast.
2785 (breakpoint_hit_catch_fork): Make aspce const.
2786 (breakpoint_hit_catch_solib): Likewise.
2787 (breakpoint_hit_catch_exec): Likewise.
2788 (breakpoint_hit_ranged_breakpoint): Likewise.
2789 (breakpoint_hit_watchpoint): Likewise.
2790 (base_breakpoint_breakpoint_hit): Likewise.
2791 (bkpt_breakpoint_hit): Likewise.
2792 (dprintf_breakpoint_hit): Likewise.
2793 (tracepoint_breakpoint_hit): Likewise.
2794 * breakpoint.h (breakpoint_ops) <breakpoint_hit>: Likewise.
2795
2796 2017-10-26 Yao Qi <yao.qi@linaro.org>
2797
2798 * breakpoint.c (breakpoint_location_address_match): Change
2799 "struct address_space *" to "const address_space".
2800 (breakpoint_location_address_range_overlap): Likewise.
2801 (breakpoint_here_p): Likewise.
2802 (breakpoint_in_range_p): Likewise.
2803 (moribund_breakpoint_here_p): Likewise.
2804 (bp_location_inserted_here_p): Likewise.
2805 (software_breakpoint_inserted_here_p): Likewise.
2806 (hardware_breakpoint_inserted_here_p): Likewise.
2807 (hardware_watchpoint_inserted_in_range): Likewise.
2808 (bpstat_check_location): Likewise.
2809 (bpstat_stop_status): Likewise.
2810 (breakpoint_address_match): Likewise.
2811 (breakpoint_address_match_range): Likewise.
2812 (breakpoint_location_address_match): Likewise.
2813 (breakpoint_location_address_range_overlap): Likewise.
2814 (insert_single_step_breakpoint): Likewise.
2815 (breakpoint_has_location_inserted_here): Likewise.
2816 (single_step_breakpoint_inserted_here_p): Likewise.
2817 (pc_at_non_inline_function): Likewise.
2818 * breakpoint.h (bpstat_stop_status): Update declaration.
2819 (breakpoint_here_p): Likewise.
2820 (breakpoint_in_range_p): Likewise.
2821 (moribund_breakpoint_here_p): Likewise.
2822 (breakpoint_inserted_here_p): Likewise.
2823 (software_breakpoint_inserted_here_p): Likewise.
2824 (hardware_breakpoint_inserted_here_p): Likewise.
2825 (breakpoint_has_location_inserted_here): Likewise.
2826 (single_step_breakpoint_inserted_here_p): Likewise.
2827 (hardware_watchpoint_inserted_in_range): Likewise.
2828 (breakpoint_address_match): Likewise.
2829 (insert_single_step_breakpoint): Likewise.
2830 (pc_at_non_inline_function): Likewise.
2831 * gdbthread.h (thread_has_single_step_breakpoint_here): Likewise.
2832 * record.c (record_check_stopped_by_breakpoint): Likewise.
2833 * record.h (record_check_stopped_by_breakpoint): Likewise.
2834 * thread.c (thread_has_single_step_breakpoint_here): Likewise.
2835
2836 2017-10-25 Yao Qi <yao.qi@linaro.org>
2837
2838 * aarch32-linux-nat.c (aarch32_gp_regcache_supply): Use
2839 regcache->arch () instead get_regcache_arch.
2840 * aarch64-fbsd-nat.c (aarch64_fbsd_fetch_inferior_registers):
2841 Likewise.
2842 (aarch64_fbsd_store_inferior_registers): Likewise.
2843 * aarch64-linux-nat.c (fetch_gregs_from_thread): Likewise.
2844 (store_gregs_to_thread): Likewise.
2845 (fetch_fpregs_from_thread): Likewise.
2846 (store_fpregs_to_thread): Likewise.
2847 * aarch64-tdep.c (aarch64_extract_return_value): Likewise.
2848 (aarch64_store_return_value): Likewise.
2849 (aarch64_software_single_step): Likewise.
2850 * aix-thread.c (aix_thread_wait): Likewise.
2851 (supply_reg32): Likewise.
2852 (supply_sprs64): Likewise.
2853 (supply_sprs32): Likewise.
2854 (fill_gprs64): Likewise.
2855 (fill_gprs32): Likewise.
2856 (fill_sprs64): Likewise.
2857 (fill_sprs32): Likewise.
2858 (store_regs_user_thread): Likewise.
2859 (store_regs_kernel_thread): Likewise.
2860 * alpha-bsd-nat.c (alphabsd_fetch_inferior_registers): Likewise.
2861 (alphabsd_store_inferior_registers): Likewise.
2862 * alpha-tdep.c (alpha_extract_return_value): Likewise.
2863 (alpha_store_return_value): Likewise.
2864 (alpha_deal_with_atomic_sequence): Likewise.
2865 (alpha_next_pc): Likewise.
2866 (alpha_software_single_step): Likewise.
2867 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Likewise.
2868 (amd64bsd_store_inferior_registers): Likewise.
2869 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers):
2870 Likewise.
2871 (amd64_linux_store_inferior_registers): Likewise.
2872 * amd64-nat.c (amd64_supply_native_gregset): Likewise.
2873 (amd64_collect_native_gregset): Likewise.
2874 * amd64-obsd-tdep.c (amd64obsd_supply_uthread): Likewise.
2875 (amd64obsd_collect_uthread): Likewise.
2876 * amd64-tdep.c (amd64_supply_fpregset): Likewise.
2877 (amd64_collect_fpregset): Likewise.
2878 (amd64_supply_fxsave): Likewise.
2879 (amd64_supply_xsave): Likewise.
2880 (amd64_collect_fxsave): Likewise.
2881 (amd64_collect_xsave): Likewise.
2882 * arc-tdep.c (arc_write_pc): Likewise.
2883 * arch-utils.c (default_skip_permanent_breakpoint): Likewise.
2884 * arm-fbsd-nat.c (arm_fbsd_fetch_inferior_registers): Likewise.
2885 (arm_fbsd_store_inferior_registers): Likewise.
2886 * arm-linux-nat.c (fetch_vfp_regs): Likewise.
2887 (store_vfp_regs): Likewise.
2888 (arm_linux_fetch_inferior_registers): Likewise.
2889 (arm_linux_store_inferior_registers): Likewise.
2890 * arm-linux-tdep.c (arm_linux_supply_gregset): Likewise.
2891 (arm_linux_sigreturn_next_pc): Likewise.
2892 (arm_linux_get_next_pcs_syscall_next_pc): Likewise.
2893 * arm-nbsd-nat.c (arm_supply_gregset): Likewise.
2894 (fetch_register): Likewise.
2895 (store_register): Likewise.
2896 * arm-tdep.c (arm_is_thumb): Likewise.
2897 (displaced_in_arm_mode): Likewise.
2898 (bx_write_pc): Likewise.
2899 (arm_get_next_pcs_addr_bits_remove): Likewise.
2900 (arm_software_single_step): Likewise.
2901 (arm_extract_return_value): Likewise.
2902 (arm_store_return_value): Likewise.
2903 (arm_write_pc): Likewise.
2904 * bfin-tdep.c (bfin_extract_return_value): Likewise.
2905 * bsd-uthread.c (bsd_uthread_fetch_registers): Likewise.
2906 (bsd_uthread_store_registers): Likewise.
2907 * core-regset.c (fetch_core_registers): Likewise.
2908 * corelow.c (get_core_registers): Likewise.
2909 * cris-tdep.c (cris_store_return_value): Likewise.
2910 (cris_extract_return_value): Likewise.
2911 (find_step_target): Likewise.
2912 (find_step_target): Likewise.
2913 (cris_software_single_step): Likewise.
2914 * ctf.c (ctf_fetch_registers): Likewise.
2915 * darwin-nat.c (cancel_breakpoint): Likewise.
2916 * fbsd-tdep.c (fbsd_collect_thread_registers): Likewise.
2917 * frv-tdep.c (frv_extract_return_value): Likewise.
2918 * ft32-tdep.c (ft32_store_return_value): Likewise.
2919 (ft32_extract_return_value): Likewise.
2920 * go32-nat.c (fetch_register): Likewise.
2921 (go32_fetch_registers): Likewise.
2922 (go32_store_registers): Likewise.
2923 (store_register): Likewise.
2924 * h8300-tdep.c (h8300_extract_return_value): Likewise.
2925 (h8300_store_return_value): Likewise.
2926 * hppa-linux-nat.c (fetch_register): Likewise.
2927 (store_register): Likewise.
2928 (hppa_linux_fetch_inferior_registers): Likewise.
2929 (hppa_linux_store_inferior_registers): Likewise.
2930 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Likewise.
2931 (i386_darwin_store_inferior_registers): Likewise.
2932 * i386-gnu-nat.c (gnu_fetch_registers): Likewise.
2933 (gnu_store_registers): Likewise.
2934 * i386-linux-nat.c (fetch_register): Likewise.
2935 (store_register): Likewise.
2936 (supply_gregset): Likewise.
2937 (fill_gregset): Likewise.
2938 (i386_linux_fetch_inferior_registers): Likewise.
2939 (i386_linux_store_inferior_registers): Likewise.
2940 (i386_linux_resume): Likewise.
2941 * i386-linux-tdep.c (i386_linux_get_syscall_number_from_regcache):
2942 Likewise.
2943 * i386-nto-tdep.c (i386nto_supply_gregset): Likewise.
2944 * i386-obsd-nat.c (i386obsd_supply_pcb): Likewise.
2945 * i386-obsd-tdep.c (i386obsd_supply_uthread): Likewise.
2946 (i386obsd_collect_uthread): Likewise.
2947 * i386-tdep.c (i386_mmx_regnum_to_fp_regnum): Likewise.
2948 (i386_supply_gregset): Likewise.
2949 (i386_collect_gregset): Likewise.
2950 (i386_supply_fpregset): Likewise.
2951 (i386_collect_fpregset): Likewise.
2952 (i386_mpx_bd_base): Likewise.
2953 * i386-v4-nat.c (supply_fpregset): Likewise.
2954 (fill_fpregset): Likewise.
2955 * i387-tdep.c (i387_supply_fsave): Likewise.
2956 (i387_collect_fsave): Likewise.
2957 (i387_supply_fxsave): Likewise.
2958 (i387_collect_fxsave): Likewise.
2959 (i387_supply_xsave): Likewise.
2960 (i387_collect_xsave): Likewise.
2961 * ia64-linux-nat.c (ia64_linux_fetch_registers): Likewise.
2962 (ia64_linux_store_registers): Likewise.
2963 * ia64-tdep.c (ia64_access_rse_reg): Likewise.
2964 (ia64_extract_return_value): Likewise.
2965 (ia64_store_return_value): Likewise.
2966 (find_func_descr): Likewise.
2967 * inf-child.c (inf_child_fetch_inferior_registers): Likewise.
2968 * inf-ptrace.c (inf_ptrace_fetch_registers): Likewise.
2969 (inf_ptrace_store_registers): Likewise.
2970 * infrun.c (use_displaced_stepping): Likewise.
2971 (displaced_step_prepare_throw): Likewise.
2972 (resume): Likewise.
2973 (proceed): Likewise.
2974 (do_target_wait): Likewise.
2975 (adjust_pc_after_break): Likewise.
2976 (handle_inferior_event_1): Likewise.
2977 (handle_signal_stop): Likewise.
2978 (save_infcall_suspend_state): Likewise.
2979 (restore_infcall_suspend_state): Likewise.
2980 * iq2000-tdep.c (iq2000_extract_return_value): Likewise.
2981 * jit.c (jit_frame_prev_register): Likewise.
2982 * linux-nat.c (save_stop_reason): Likewise.
2983 (linux_nat_wait_1): Likewise.
2984 (resume_stopped_resumed_lwps): Likewise.
2985 * linux-record.c (record_linux_sockaddr): Likewise.
2986 (record_linux_msghdr): Likewise.
2987 (record_linux_system_call): Likewise.
2988 * linux-tdep.c (linux_collect_thread_registers): Likewise.
2989 * lm32-tdep.c (lm32_extract_return_value): Likewise.
2990 (lm32_store_return_value): Likewise.
2991 * m32c-tdep.c (m32c_read_flg): Likewise.
2992 (m32c_pseudo_register_read): Likewise.
2993 (m32c_pseudo_register_write): Likewise.
2994 * m32r-linux-tdep.c (m32r_linux_supply_gregset): Likewise.
2995 (m32r_linux_collect_gregset): Likewise.
2996 * m32r-tdep.c (m32r_store_return_value): Likewise.
2997 (m32r_extract_return_value): Likewise.
2998 * m68k-bsd-nat.c (m68kbsd_supply_fpregset): Likewise.
2999 (m68kbsd_collect_fpregset): Likewise.
3000 * m68k-bsd-tdep.c (m68kbsd_supply_fpregset): Likewise.
3001 * m68k-linux-nat.c (fetch_register): Likewise.
3002 (old_fetch_inferior_registers): Likewise.
3003 (old_store_inferior_registers): Likewise.
3004 (store_regs): Likewise.
3005 * m68k-tdep.c (m68k_svr4_extract_return_value): Likewise.
3006 (m68k_svr4_store_return_value): Likewise.
3007 * m88k-tdep.c (m88k_store_arguments): Likewise.
3008 * mi/mi-main.c (mi_cmd_data_list_changed_registers): Likewise.
3009 (mi_cmd_data_write_register_values): Likewise.
3010 * mips-fbsd-nat.c (mips_fbsd_fetch_inferior_registers): Likewise.
3011 (mips_fbsd_store_inferior_registers): Likewise.
3012 * mips-fbsd-tdep.c (mips_fbsd_supply_fpregs): Likewise.
3013 (mips_fbsd_supply_gregs): Likewise.
3014 (mips_fbsd_collect_fpregs): Likewise.
3015 (mips_fbsd_collect_gregs): Likewise.
3016 (mips_fbsd_supply_fpregset): Likewise.
3017 (mips_fbsd_collect_fpregset): Likewise.
3018 (mips_fbsd_supply_gregset): Likewise.
3019 (mips_fbsd_collect_gregset): Likewise.
3020 * mips-linux-nat.c (supply_gregset): Likewise.
3021 (fill_gregset): Likewise.
3022 (supply_fpregset): Likewise.
3023 (fill_fpregset): Likewise.
3024 * mips-linux-tdep.c (mips_supply_gregset): Likewise.
3025 (mips_fill_gregset): Likewise.
3026 (mips_supply_fpregset): Likewise.
3027 (mips_fill_fpregset): Likewise.
3028 (mips64_supply_gregset): Likewise.
3029 (micromips_linux_sigframe_validate): Likewise.
3030 * mips-nbsd-nat.c (mipsnbsd_fetch_inferior_registers): Likewise.
3031 (mipsnbsd_fetch_inferior_registers): Likewise.
3032 (mipsnbsd_store_inferior_registers): Likewise.
3033 * mips-nbsd-tdep.c (mipsnbsd_supply_fpregset): Likewise.
3034 (mipsnbsd_supply_gregset): Likewise.
3035 (mipsnbsd_iterate_over_regset_sections): Likewise.
3036 (mipsnbsd_supply_reg): Likewise.
3037 (mipsnbsd_supply_fpreg): Likewise.
3038 * mips-tdep.c (mips_in_frame_stub): Likewise.
3039 (mips_dummy_id): Likewise.
3040 (is_octeon_bbit_op): Likewise.
3041 (micromips_bc1_pc): Likewise.
3042 (extended_mips16_next_pc): Likewise.
3043 (mips16_next_pc): Likewise.
3044 (deal_with_atomic_sequence): Likewise.
3045 * moxie-tdep.c (moxie_process_readu): Likewise.
3046 * nios2-tdep.c (nios2_get_next_pc): Likewise.
3047 * nto-procfs.c (procfs_store_registers): Likewise.
3048 * ppc-fbsd-nat.c (ppcfbsd_fetch_inferior_registers): Likewise.
3049 (ppcfbsd_store_inferior_registers): Likewise.
3050 * ppc-linux-nat.c (fetch_vsx_register): Likewise.
3051 (fetch_altivec_register): Likewise.
3052 (get_spe_registers): Likewise.
3053 (fetch_spe_register): Likewise.
3054 (fetch_altivec_registers): Likewise.
3055 (fetch_all_gp_regs): Likewise.
3056 (fetch_all_fp_regs): Likewise.
3057 (store_vsx_register): Likewise.
3058 (store_altivec_register): Likewise.
3059 (set_spe_registers): Likewise.
3060 (store_spe_register): Likewise.
3061 (store_altivec_registers): Likewise.
3062 (store_all_gp_regs): Likewise.
3063 (store_all_fp_regs): Likewise.
3064 * ppc-linux-tdep.c (ppc_linux_supply_gregset): Likewise.
3065 (ppc_linux_collect_gregset): Likewise.
3066 (ppc_canonicalize_syscall): Likewise.
3067 (ppc_linux_record_signal): Likewise.
3068 (ppu2spu_prev_register): Likewise.
3069 * ppc-nbsd-nat.c (ppcnbsd_supply_pcb): Likewise.
3070 * ppc-obsd-nat.c (ppcobsd_fetch_registers): Likewise.
3071 (ppcobsd_store_registers): Likewise.
3072 * ppc-ravenscar-thread.c (ppc_ravenscar_generic_fetch_registers):
3073 Likewise.
3074 (ppc_ravenscar_generic_store_registers): Likewise.
3075 * procfs.c (procfs_fetch_registers): Likewise.
3076 (procfs_store_registers): Likewise.
3077 * ravenscar-thread.c (ravenscar_fetch_registers): Likewise.
3078 (ravenscar_store_registers): Likewise.
3079 (ravenscar_prepare_to_store): Likewise.
3080 * record-btrace.c (record_btrace_fetch_registers): Likewise.
3081 * record-full.c (record_full_wait_1): Likewise.
3082 (record_full_registers_change): Likewise.
3083 (record_full_store_registers): Likewise.
3084 (record_full_core_fetch_registers): Likewise.
3085 (record_full_save): Likewise.
3086 (record_full_goto_insn): Likewise.
3087 * regcache.c (regcache_register_size): Likewise.
3088 (get_regcache_arch): Remove.
3089 (regcache_read_pc): Likewise.
3090 * regcache.h (get_regcache_arch): Remove.
3091 * remote-sim.c (gdbsim_fetch_register): Likewise.
3092 (gdbsim_store_register): Likewise.
3093 * remote.c (fetch_register_using_p): Likewise.
3094 (send_g_packet): Likewise.
3095 (remote_prepare_to_store): Likewise.
3096 (store_registers_using_G): Likewise.
3097 * reverse.c (save_bookmark_command): Likewise.
3098 (goto_bookmark_command): Likewise.
3099 * rs6000-aix-tdep.c (branch_dest): Likewise.
3100 * rs6000-nat.c (rs6000_ptrace64): Likewise.
3101 (fetch_register): Likewise.
3102 * rs6000-tdep.c (ppc_supply_reg): Likewise.
3103 (ppc_collect_reg): Likewise.
3104 (ppc_collect_gregset): Likewise.
3105 (ppc_collect_fpregset): Likewise.
3106 (ppc_collect_vsxregset): Likewise.
3107 (ppc_collect_vrregset): Likewise.
3108 (ppc_displaced_step_hw_singlestep): Likewise.
3109 (rs6000_pseudo_register_read): Likewise.
3110 (rs6000_pseudo_register_write): Likewise.
3111 * s390-linux-nat.c (supply_gregset): Likewise.
3112 (fill_gregset): Likewise.
3113 (s390_linux_fetch_inferior_registers): Likewise.
3114 * s390-linux-tdep.c (s390_write_pc): Likewise.
3115 (s390_software_single_step): Likewise.
3116 (s390_all_but_pc_registers_record): Likewise.
3117 (s390_linux_syscall_record): Likewise.
3118 * sentinel-frame.c (sentinel_frame_prev_arch): Likewise.
3119 * sh-nbsd-nat.c (shnbsd_fetch_inferior_registers): Likewise.
3120 (shnbsd_store_inferior_registers): Likewise.
3121 * sh-tdep.c (sh_extract_return_value_nofpu): Likewise.
3122 (sh_extract_return_value_fpu): Likewise.
3123 (sh_store_return_value_nofpu): Likewise.
3124 (sh_corefile_supply_regset): Likewise.
3125 (sh_corefile_collect_regset): Likewise.
3126 * sh64-tdep.c (sh64_extract_return_value): Likewise.
3127 (sh64_store_return_value): Likewise.
3128 * sparc-linux-tdep.c (sparc32_linux_collect_core_fpregset): Likewise.
3129 * sparc-nat.c (sparc_fetch_inferior_registers): Likewise.
3130 (sparc_store_inferior_registers): Likewise.
3131 * sparc-ravenscar-thread.c (register_in_thread_descriptor_p): Likewise.
3132 (sparc_ravenscar_prepare_to_store): Likewise.
3133 * sparc-tdep.c (sparc32_store_arguments): Likewise.
3134 (sparc_analyze_control_transfer): Likewise.
3135 (sparc_step_trap): Likewise.
3136 (sparc_software_single_step): Likewise.
3137 (sparc32_gdbarch_init): Likewise.
3138 (sparc_supply_rwindow): Likewise.
3139 (sparc_collect_rwindow): Likewise.
3140 * sparc64-linux-tdep.c (sparc64_linux_collect_core_fpregset): Likewise.
3141 * sparc64-nbsd-nat.c (sparc64nbsd_supply_gregset): Likewise.
3142 (sparc64nbsd_collect_gregset): Likewise.
3143 (sparc64nbsd_supply_fpregset): Likewise.
3144 (sparc64nbsd_collect_fpregset): Likewise.
3145 * sparc64-tdep.c (sparc64_store_arguments): Likewise.
3146 (sparc64_supply_gregset): Likewise.
3147 (sparc64_collect_gregset): Likewise.
3148 (sparc64_supply_fpregset): Likewise.
3149 (sparc64_collect_fpregset): Likewise.
3150 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
3151 * spu-tdep.c (spu_unwind_sp): Likewise.
3152 (spu2ppu_prev_register): Likewise.
3153 (spu_memory_remove_breakpoint): Likewise.
3154 * stack.c (return_command): Likewise.
3155 * tic6x-tdep.c (tic6x_extract_signed_field): Likewise.
3156 * tracefile-tfile.c (tfile_fetch_registers): Likewise.
3157 * tracefile.c (trace_save_ctf): Likewise.
3158 * windows-nat.c (do_windows_fetch_inferior_registers): Likewise.
3159 (do_windows_store_inferior_registers): Likewise.
3160 (windows_resume): Likewise.
3161 * xtensa-linux-nat.c (fill_gregset): Likewise.
3162 (supply_gregset_reg): Likewise.
3163 * xtensa-tdep.c (xtensa_register_write_masked): Likewise.
3164 (xtensa_register_read_masked): Likewise.
3165 (xtensa_supply_gregset): Likewise.
3166 (xtensa_extract_return_value): Likewise.
3167 (xtensa_store_return_value): Likewise.
3168
3169 2017-10-25 Ulrich Weigand <uweigand@de.ibm.com>
3170
3171 * doublest.c (floatformat_from_string): New function.
3172 * doublest.h (floatformat_from_string): Add prototype.
3173
3174 * std-operator.def (OP_DOUBLE, OP_DECFLOAT): Remove, replace by ...
3175 (OP_FLOAT): ... this.
3176 * expression.h: Do not include "doublest.h".
3177 (union exp_element): Replace doubleconst and decfloatconst by
3178 new element floatconst.
3179 * ada-lang.c (resolve_subexp): Handle OP_FLOAT instead of OP_DOUBLE.
3180 (ada_evaluate_subexp): Likewise.
3181 * eval.c (evaluate_subexp_standard): Handle OP_FLOAT instead of
3182 OP_DOUBLE and OP_DECFLOAT.
3183 * expprint.c (print_subexp_standard): Likewise.
3184 (dump_subexp_body_standard): Likewise.
3185 * breakpoint.c (watchpoint_exp_is_const): Likewise.
3186
3187 * parse.c: Include "dfp.h".
3188 (write_exp_elt_dblcst, write_exp_elt_decfloatcst): Remove.
3189 (write_exp_elt_floatcst): New function.
3190 (operator_length_standard): Handle OP_FLOAT instead of OP_DOUBLE
3191 and OP_DECFLOAT.
3192 (operator_check_standard): Likewise.
3193 (parse_float): Do not accept suffix. Take type as input. Return bool.
3194 Return target format buffer instead of host DOUBLEST.
3195 Use floatformat_from_string and decimal_from_string to parse
3196 either binary or decimal floating-point types.
3197 (parse_c_float): Remove.
3198 * parser-defs.h: Do not include "doublest.h".
3199 (write_exp_elt_dblcst, write_exp_elt_decfloatcst): Remove.
3200 (write_exp_elt_floatcst): Add prototype.
3201 (parse_float): Update prototype.
3202 (parse_c_float): Remove.
3203
3204 * c-exp.y: Do not include "dfp.h".
3205 (typed_val_float): Use byte buffer instead of DOUBLEST.
3206 (typed_val_decfloat): Remove.
3207 (DECFLOAT): Remove.
3208 (FLOAT): Use OP_FLOAT and write_exp_elt_floatcst.
3209 (parse_number): Update to new parse_float interface.
3210 Parse suffixes and determine type before calling parse_float.
3211 Handle decimal and binary FP types the same way.
3212
3213 * d-exp.y (typed_val_float): Use byte buffer instead of DOUBLEST.
3214 (FLOAT_LITERAL): Use OP_FLOAT and write_exp_elt_floatcst.
3215 (parse_number): Update to new parse_float interface.
3216 Parse suffixes and determine type before calling parse_float.
3217
3218 * f-exp.y: Replace dval by typed_val_float.
3219 (FLOAT): Use OP_FLOAT and write_exp_elt_floatcst.
3220 (parse_number): Use parse_float instead of atof.
3221
3222 * go-exp.y (typed_val_float): Use byte buffer instead of DOUBLEST.
3223 (parse_go_float): Remove.
3224 (FLOAT): Use OP_FLOAT and write_exp_elt_floatcst.
3225 (parse_number): Call parse_float instead of parse_go_float.
3226 Parse suffixes and determine type before calling parse_float.
3227
3228 * p-exp.y (typed_val_float): Use byte buffer instead of DOUBLEST.
3229 (FLOAT): Use OP_FLOAT and write_exp_elt_floatcst.
3230 (parse_number): Update to new parse_float interface.
3231 Parse suffixes and determine type before calling parse_float.
3232
3233 * m2-exp.y: Replace dval by byte buffer val.
3234 (FLOAT): Use OP_FLOAT and write_exp_elt_floatcst.
3235 (parse_number): Call parse_float instead of atof.
3236
3237 * rust-exp.y (typed_val_float): Use byte buffer instead of DOUBLEST.
3238 (lex_number): Call parse_float instead of strtod.
3239 (ast_dliteral): Use OP_FLOAT instead of OP_DOUBLE.
3240 (convert_ast_to_expression): Handle OP_FLOAT instead of OP_DOUBLE.
3241 Use write_exp_elt_floatcst.
3242 (unit_testing): Remove static variable.
3243 (rust_type): Do not check unit_testing.
3244 (rust_lex_tests): Do not set uint_testing. Set up dummy rust_parser.
3245
3246 * ada-exp.y (type_float, type_double): Remove.
3247 (typed_val_float): Use byte buffer instead of DOUBLEST.
3248 (FLOAT): Use OP_FLOAT and write_exp_elt_floatcst.
3249 * ada-lex.l (processReal): Use parse_float instead of sscanf.
3250
3251 2017-10-25 Alan Hayward <alan.hayward@arm.com>
3252
3253 * aarch64-tdep.h (enum aarch64_regnum): Remove.
3254 * arch/aarch64.h: New file.
3255
3256 2017-10-24 Ulrich Weigand <uweigand@de.ibm.com>
3257
3258 * dfp.h (decimal_from_string): Use const reference for argument.
3259 * dfp.c (decimal_from_string): Likewise.
3260
3261 2017-10-24 Ulrich Weigand <uweigand@de.ibm.com>
3262
3263 * i387-tdep.c (print_i387_value): Use floatformat_to_string.
3264 * sh64-tdep.c (sh64_do_fp_register): Likewise.
3265 * mips-tdep.c (mips_print_fp_register): Likewise.
3266
3267 2017-10-24 Ulrich Weigand <uweigand@de.ibm.com>
3268
3269 * common/format.h (enum argclass): Replace decfloat_arg by
3270 dec32float_arg, dec64float_arg, and dec128float_arg.
3271 * common/format.c (parse_format_string): Update to return
3272 new decimal float argument classes.
3273
3274 * printcmd.c (printf_decfloat): Rename to ...
3275 (printf_floating): ... this. Add argclass argument, and use it
3276 instead of parsing the format string again. Add support for
3277 binary floating-point values, using floatformat_to_string.
3278 Convert value to the target format if it doesn't already match.
3279 (ui_printf): Call printf_floating instead of printf_decfloat,
3280 also for double_arg / long_double_arg. Pass argclass.
3281
3282 * dfp.c (decimal_to_string): Add format string argument.
3283 * dfp.h (decimal_to_string): Likewise.
3284
3285 * doublest.c (floatformat_to_string): Add format string argument.
3286 * doublest.h (floatformat_to_string): Likewise.
3287
3288 2017-10-24 Ulrich Weigand <uweigand@de.ibm.com>
3289
3290 * doublest.c (floatformat_precision): New routine.
3291 (floatformat_to_string): Likewise.
3292 * doublest.c (floatformat_to_string): Add prototype.
3293
3294 * printcmd.c (print_scalar_formatted): Only call print_floating
3295 on floating-point types.
3296 * valprint.c: Do not include "floatformat.h".
3297 (generic_val_print_decfloat): Remove.
3298 (generic_val_print): Call generic_val_print_float for both
3299 TYPE_CODE_FLT and TYPE_CODE_DECFLOAT.
3300 (print_floating): Use floatformat_to_string. Handle decimal float.
3301 (print_decimal_floating): Remove, merge into floatformat_to_string.
3302 * value.h (print_decimal_floating): Remove.
3303
3304 * Makefile.in: Do not build doublest.c with -Wformat-nonliteral.
3305
3306 2017-10-24 Ulrich Weigand <uweigand@de.ibm.com>
3307
3308 * buildsym.c (end_symtab_get_static_block): Use std::stable_sort.
3309
3310 2017-10-21 Simon Marchi <simon.marchi@ericsson.com>
3311
3312 * memattr.h: Don't include vec.h.
3313 (struct mem_attrib): Initialize fields.
3314 <unknown>: New static method.
3315 (struct mem_region): Add constructors, operator<, initialize
3316 fields.
3317 * memattr.c: Include algorithm.
3318 (default_mem_attrib, unknown_mem_attrib): Remove.
3319 (user_mem_region_list): New global.
3320 (target_mem_region_list, mem_region_list): Change type to
3321 std::vector<mem_region>.
3322 (mem_use_target): Now a function.
3323 (target_mem_regions_valid): Change type to bool.
3324 (mem_region_lessthan, mem_region_cmp, mem_region_init): Remove.
3325 (require_user_regions): Adjust.
3326 (require_target_regions): Adjust.
3327 (create_mem_region): Adjust.
3328 (lookup_mem_region): Adjust.
3329 (invalidate_target_mem_regions): Adjust.
3330 (mem_clear): Rename to...
3331 (user_mem_clear): ... this, and adjust.
3332 (mem_command): Adjust.
3333 (info_mem_command): Adjust.
3334 (mem_enable, enable_mem_command, mem_disable,
3335 disable_mem_command): Adjust.
3336 (mem_delete): Adjust.
3337 (delete_mem_command): Adjust.
3338 * memory-map.h (parse_memory_map): Return an std::vector.
3339 * memory-map.c (parse_memory_map): Likewise.
3340 (struct memory_map_parsing_data): Add constructor.
3341 <memory_map>: Point to std::vector.
3342 (memory_map_start_memory): Adjust.
3343 (memory_map_end_memory): Adjust.
3344 (memory_map_end_property): Adjust.
3345 (clear_result): Remove.
3346 * remote.c (remote_memory_map): Return an std::vector.
3347 * target-debug.h (target_debug_print_VEC_mem_region_s__p):
3348 Remove.
3349 (target_debug_print_mem_region_vector): New.
3350 * target-delegates.c: Regenerate.
3351 * target.h (mem_region_vector): New typedef.
3352 (to_memory_map): Return mem_region_vector.
3353 (target_memory_map): Return an std::vector.
3354 * target.c (target_memory_map): Return an std::vector.
3355 (flash_erase_command): Adjust.
3356
3357 2017-10-21 Simon Marchi <simon.marchi@ericsson.com>
3358
3359 * memory-map.c (struct memory_map_parsing_data) <property_name>:
3360 Change type to std::string.
3361 (memory_map_start_property): Adjust.
3362 (memory_map_end_property): Adjust.
3363
3364 2017-10-21 Simon Marchi <simon.marchi@polymtl.ca>
3365
3366 * infrun.h: Include common/byte-vector.h.
3367 (struct displaced_step_closure): New struct.
3368 (struct buf_displaced_step_closure): New struct.
3369 * infrun.c (displaced_step_closure::~displaced_step_closure):
3370 Provide default implementation.
3371 (displaced_step_clear): Deallocate step closure with delete.
3372 * aarch64-tdep.c (displaced_step_closure): Rename to ...
3373 (aarch64_displaced_step_closure): ... this, extend
3374 displaced_step_closure.
3375 (aarch64_displaced_step_data) <dsc>: Change type to
3376 aarch64_displaced_step_closure.
3377 (aarch64_displaced_step_copy_insn): Adjust to type change, use
3378 unique_ptr.
3379 (aarch64_displaced_step_fixup): Add cast for displaced step
3380 closure.
3381 * amd64-tdep.c (displaced_step_closure): Rename to ...
3382 (amd64_displaced_step_closure): ... this, extend
3383 displaced_step_closure.
3384 <insn_buf>: Change type to std::vector<gdb_byte>.
3385 <max_len>: Remove.
3386 (fixup_riprel): Change type of DSC parameter, adjust to type
3387 change of insn_buf.
3388 (fixup_displaced_copy): Change type of DSC parameter.
3389 (amd64_displaced_step_copy_insn): Instantiate
3390 amd64_displaced_step_closure.
3391 (amd64_displaced_step_fixup): Add cast for closure type, adjust
3392 to type change of insn_buf.
3393 * arm-linux-tdep.c (arm_linux_cleanup_svc): Change type of
3394 parameter DSC.
3395 (arm_linux_copy_svc): Likewise.
3396 (cleanup_kernel_helper_return): Likewise.
3397 (arm_catch_kernel_helper_return): Likewise.
3398 (arm_linux_displaced_step_copy_insn): Instantiate
3399 arm_displaced_step_closure.
3400 * arm-tdep.c (arm_pc_is_thumb): Add cast for closure.
3401 (displaced_read_reg): Change type of parameter DSC.
3402 (branch_write_pc): Likewise.
3403 (load_write_pc): Likewise.
3404 (alu_write_pc): Likewise.
3405 (displaced_write_reg): Likewise.
3406 (arm_copy_unmodified): Likewise.
3407 (thumb_copy_unmodified_32bit): Likewise.
3408 (thumb_copy_unmodified_16bit): Likewise.
3409 (cleanup_preload): Likewise.
3410 (install_preload): Likewise.
3411 (arm_copy_preload): Likewise.
3412 (thumb2_copy_preload): Likewise.
3413 (install_preload_reg): Likewise.
3414 (arm_copy_preload_reg): Likewise.
3415 (cleanup_copro_load_store): Likewise.
3416 (install_copro_load_store): Likewise.
3417 (arm_copy_copro_load_store) Likewise.
3418 (thumb2_copy_copro_load_store): Likewise.
3419 (cleanup_branch): Likewise.
3420 (install_b_bl_blx): Likewise.
3421 (arm_copy_b_bl_blx): Likewise.
3422 (thumb2_copy_b_bl_blx): Likewise.
3423 (thumb_copy_b): Likewise.
3424 (install_bx_blx_reg): Likewise.
3425 (arm_copy_bx_blx_reg): Likewise.
3426 (thumb_copy_bx_blx_reg): Likewise.
3427 (cleanup_alu_imm): Likewise.
3428 (arm_copy_alu_imm): Likewise.
3429 (thumb2_copy_alu_imm): Likewise.
3430 (cleanup_alu_reg): Likewise.
3431 (install_alu_reg): Likewise.
3432 (arm_copy_alu_reg): Likewise.
3433 (thumb_copy_alu_reg): Likewise.
3434 (cleanup_alu_shifted_reg): Likewise.
3435 (install_alu_shifted_reg): Likewise.
3436 (arm_copy_alu_shifted_reg): Likewise.
3437 (cleanup_load): Likewise.
3438 (cleanup_store): Likewise.
3439 (arm_copy_extra_ld_st): Likewise.
3440 (install_load_store): Likewise.
3441 (thumb2_copy_load_literal): Likewise.
3442 (thumb2_copy_load_reg_imm): Likewise.
3443 (arm_copy_ldr_str_ldrb_strb): Likewise.
3444 (cleanup_block_load_all): Likewise.
3445 (cleanup_block_store_pc): Likewise.
3446 (cleanup_block_load_pc): Likewise.
3447 (arm_copy_block_xfer): Likewise.
3448 (thumb2_copy_block_xfer): Likewise.
3449 (cleanup_svc): Likewise.
3450 (install_svc): Likewise.
3451 (arm_copy_svc): Likewise.
3452 (thumb_copy_svc): Likewise.
3453 (arm_copy_undef): Likewise.
3454 (thumb_32bit_copy_undef): Likewise.
3455 (arm_copy_unpred): Likewise.
3456 (arm_decode_misc_memhint_neon): Likewise.
3457 (arm_decode_unconditional): Likewise.
3458 (arm_decode_miscellaneous): Likewise.
3459 (arm_decode_dp_misc): Likewise.
3460 (arm_decode_ld_st_word_ubyte): Likewise.
3461 (arm_decode_media): Likewise.
3462 (arm_decode_b_bl_ldmstm): Likewise.
3463 (arm_decode_ext_reg_ld_st): Likewise.
3464 (thumb2_decode_dp_shift_reg): Likewise.
3465 (thumb2_decode_ext_reg_ld_st): Likewise.
3466 (arm_decode_svc_copro): Likewise.
3467 (thumb2_decode_svc_copro): Likewise.
3468 (install_pc_relative): Likewise.
3469 (thumb_copy_pc_relative_16bit): Likewise.
3470 (thumb_decode_pc_relative_16bit): Likewise.
3471 (thumb_copy_pc_relative_32bit): Likewise.
3472 (thumb_copy_16bit_ldr_literal): Likewise.
3473 (thumb_copy_cbnz_cbz): Likewise.
3474 (thumb2_copy_table_branch): Likewise.
3475 (cleanup_pop_pc_16bit_all): Likewise.
3476 (thumb_copy_pop_pc_16bit): Likewise.
3477 (thumb_process_displaced_16bit_insn): Likewise.
3478 (decode_thumb_32bit_ld_mem_hints): Likewise.
3479 (thumb_process_displaced_32bit_insn): Likewise.
3480 (thumb_process_displaced_insn): Likewise.
3481 (arm_process_displaced_insn): Likewise.
3482 (arm_displaced_init_closure): Likewise.
3483 (arm_displaced_step_fixup): Add cast for closure.
3484 * arm-tdep.h: Include infrun.h.
3485 (displaced_step_closure): Rename to ...
3486 (arm_displaced_step_closure): ... this, extend
3487 displaced_step_closure.
3488 <u::svc::copy_svc_os>: Change type of parameter DSC.
3489 <cleanup>: Likewise.
3490 (arm_process_displaced_insn): Likewise.
3491 (arm_displaced_init_closure): Likewise.
3492 (displaced_read_reg): Likewise.
3493 (displaced_write_reg): Likewise.
3494 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn):
3495 Adjust.
3496 * i386-tdep.h: Include infrun.h.
3497 (i386_displaced_step_closure): New typedef.
3498 * i386-tdep.c (i386_displaced_step_copy_insn): Use
3499 i386_displaced_step_closure.
3500 (i386_displaced_step_fixup): Adjust.
3501 * rs6000-tdep.c (ppc_displaced_step_closure): New typedef.
3502 (ppc_displaced_step_copy_insn): Use ppc_displaced_step_closure
3503 and unique_ptr.
3504 (ppc_displaced_step_fixup): Adjust.
3505 * s390-linux-tdep.c (s390_displaced_step_closure): New typedef.
3506 (s390_displaced_step_copy_insn): Use s390_displaced_step_closure
3507 and unique_ptr.
3508 (s390_displaced_step_fixup): Adjust.
3509
3510 2017-10-21 Simon Marchi <simon.marchi@polymtl.ca>
3511
3512 * interps.h (interp_resume, interp_suspend, interp_set_temp):
3513 Remove declarations.
3514
3515 2017-10-20 Tom Tromey <tom@tromey.com>
3516
3517 * gdb_bfd.c (struct gdb_bfd_data) <included_bfds>: Now a
3518 std::vector.
3519 (gdb_bfd_record_inclusion): Update.
3520 (bfdp): Remove typedef.
3521
3522 2017-10-20 Tom Tromey <tom@tromey.com>
3523
3524 * gdb_bfd.c (gdb_bfd_ref): Use new.
3525 (struct gdb_bfd_data): Add constructor, destructor, and member
3526 initializers.
3527 (gdb_bfd_unref): Use delete.
3528
3529 2017-10-20 Tom Tromey <tom@tromey.com>
3530
3531 * exec.c (exec_file_attach): Use new_bfd_ref.
3532 * symfile-mem.c (symbol_file_add_from_memory): Use new_bfd_ref.
3533 * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
3534 (gdb_bfd_openw, gdb_bfd_openr_iovec, gdb_bfd_fdopenr): Use
3535 new_bfd_ref.
3536 * gdb_bfd.h (new_bfd_ref): New function.
3537
3538 2017-10-20 Pedro Alves <palves@redhat.com>
3539
3540 * main.c (captured_command_loop): Add attribute noinline.
3541
3542 2017-10-19 Simon Marchi <simon.marchi@ericsson.com>
3543
3544 * interps.c (struct interp_factory): Add constructor.
3545 (interp_factory_p): Remove typedef.
3546 (DEF_VEC_P(interp_factory_p)): Remove.
3547 (interpreter_factories): Change type to std::vector.
3548 (interp_factory_register): Adjust.
3549 (interp_lookup): Adjust.
3550 (interpreter_completer): Adjust.
3551
3552 2017-10-19 Tom Tromey <tom@tromey.com>
3553
3554 * break-catch-syscall.c (catch_syscall_completer): Use
3555 std::string, gdb::unique_xmalloc_ptr.
3556
3557 2017-10-19 Tom Tromey <tom@tromey.com>
3558
3559 * infcall.c (call_function_by_hand_dummy): Use std::string.
3560
3561 2017-10-19 Tom Tromey <tom@tromey.com>
3562
3563 * mi/mi-main.c (mi_cmd_execute): Update.
3564 * top.h (prepare_execute_command): Return scoped_value_mark.
3565 * value.h (class scoped_value_mark): Use DISABLE_COPY_AND_ASSIGN.
3566 Add move constructor.
3567 * top.c (prepare_execute_command): Return scoped_value_mark.
3568 (execute_command): Update.
3569
3570 2017-10-19 Pedro Alves <palves@redhat.com>
3571
3572 * xml-support.c (xml_fetch_content_from_file): Check fread's
3573 return.
3574
3575 2017-10-19 Pedro Alves <palves@redhat.com>
3576
3577 * ser-base.c (ser_base_read_error_fd): Delete the file handler if
3578 async.
3579 (handle_error_fd): New function.
3580 (ser_base_async): Add/delete an event loop file handler for
3581 error_fd.
3582
3583 2017-10-19 Pedro Alves <palves@redhat.com>
3584
3585 * xml-support.c (xml_fetch_content_from_file): Don't read in
3586 chunks. Instead use fseek to determine the file's size, and read
3587 it in one go.
3588
3589 2017-11-18 Keith Seitz <keiths@redhat.com>
3590
3591 * c-exp.y (oper): Canonicalize conversion operators of user-defined
3592 types.
3593 Add whitespace to front of type name.
3594
3595 2017-10-18 Keith Seitz <keiths@redhat.com>
3596
3597 * dwarf2read.c (dwarf2_add_typedef): Issue a complaint on unhandled
3598 DW_AT_accessibility.
3599
3600 2017-10-18 Yao Qi <yao.qi@linaro.org>
3601
3602 * features/tic6x-c62x-linux.c: Remove.
3603
3604 2017-10-17 Tom Tromey <tom@tromey.com>
3605
3606 * disasm.c (do_mixed_source_and_assembly_deprecated): Use
3607 gdb::optional, ui_out_emit_list, ui_out_emit_tuple.
3608 (do_mixed_source_and_assembly): Likewise.
3609
3610 2017-10-17 Tom Tromey <tom@tromey.com>
3611
3612 * regcache.c (regcache::xfer_part): Remove assertion.
3613
3614 2017-10-17 Pedro Alves <palves@redhat.com>
3615
3616 * xml-support.c (xml_fetch_content_from_file): Call
3617 unique_ptr::release() instead unique_ptr::get() when passing
3618 through xrealloc.
3619
3620 2017-10-17 Yao Qi <yao.qi@linaro.org>
3621
3622 * regcache.c (regcache::xfer_part): Remove parameters read and
3623 write, add parameter is_raw. All callers are updated.
3624
3625 2017-10-16 Keith Seitz <keiths@redhat.com>
3626
3627 * c-typeprint.c (enum access_specifier): Moved here from
3628 c_type_print_base.
3629 (output_access_specifier): New function.
3630 (c_type_print_base): Consider typedefs when assessing
3631 whether access labels are needed.
3632 Use output_access_specifier as needed.
3633 Output access specifier for typedefs, if needed.
3634 * dwarf2read.c (dwarf2_add_typedef): Record DW_AT_accessibility.
3635 * gdbtypes.h (struct typedef_field) <is_protected, is_private>: New
3636 fields.
3637 (TYPE_TYPEDEF_FIELD_PROTECTED, TYPE_TYPEDEF_FIELD_PRIVATE): New
3638 accessor macros.
3639
3640 2017-10-16 Tom Tromey <tom@tromey.com>
3641
3642 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full)
3643 (linux_fill_prpsinfo, linux_vsyscall_range_raw): Update.
3644 * target.c (target_fileio_read_stralloc): Update.
3645 * sparc64-tdep.c (adi_is_addr_mapped): Update.
3646 * target.h (target_fileio_read_stralloc): Return
3647 unique_xmalloc_ptr.
3648
3649 2017-10-16 Tom Tromey <tom@tromey.com>
3650
3651 * xml-syscall.c (xml_init_syscalls_info): Update.
3652 * xml-support.c (xinclude_start_include): Update.
3653 (xml_fetch_content_from_file): Return unique_xmalloc_ptr.
3654 * xml-support.h (xml_fetch_another): Return unique_xmalloc_ptr.
3655 (xml_fetch_content_from_file): Likewise.
3656 * osdata.c (get_osdata): Update.
3657 * target.h (target_read_stralloc, target_get_osdata): Return
3658 unique_xmalloc_ptr.
3659 * solib-aix.c (solib_aix_get_library_list): Update.
3660 * solib-target.c (solib_target_current_sos): Update.
3661 * solib-svr4.c (svr4_current_sos_via_xfer_libraries): Update.
3662 * xml-tdesc.c (fetch_available_features_from_target): Update.
3663 (target_fetch_description_xml): Update.
3664 (file_read_description_xml): Update.
3665 * remote.c (remote_get_threads_with_qxfer, remote_memory_map)
3666 (remote_traceframe_info, btrace_read_config, remote_read_btrace)
3667 (remote_pid_to_exec_file): Update.
3668 * target.c (target_read_stralloc): Return unique_xmalloc_ptr.
3669 (target_get_osdata): Likewise.
3670
3671 2017-10-16 Tom Tromey <tom@tromey.com>
3672
3673 * remote.c (remote_register_number_and_offset): Use std::vector.
3674 (remote_set_syscall_catchpoint): Use gdb::unique_xmalloc_ptr.
3675 (putpkt_binary): Use gdb::def_vector.
3676 (compare_sections_command): Use gdb::byte_vector.
3677
3678 2017-10-16 Tom Tromey <tom@tromey.com>
3679
3680 * ppc-linux-nat.c (hwdebug_insert_point): Use
3681 gdb::unique_xmalloc_ptr, XDUP.
3682
3683 2017-10-16 Tom Tromey <tom@tromey.com>
3684
3685 * probe.c (parse_probes): Use std::string.
3686 (info_probes_for_ops, enable_probes_command)
3687 (disable_probes_command): Remove cleanups.
3688
3689 2017-10-16 Tom Tromey <tom@tromey.com>
3690
3691 * buildsym.c (block_compar): Remove.
3692 (end_symtab_get_static_block): Use std::vector.
3693
3694 2017-10-16 Simon Marchi <simon.marchi@ericsson.com>
3695
3696 * memrange.h (struct mem_range): Define operator< and operator==.
3697 (mem_range_s): Remove.
3698 (DEF_VEC_O (mem_range_s)): Remove.
3699 (normalize_mem_ranges): Change parameter type to std::vector.
3700 * memrange.c (compare_mem_ranges): Remove.
3701 (normalize_mem_ranges): Change parameter type to std::vector,
3702 adjust to vector change.
3703 * exec.c (section_table_available_memory): Return vector, remove
3704 parameter.
3705 (section_table_read_available_memory): Adjust to std::vector
3706 change.
3707 * remote.c (remote_read_bytes): Adjust to std::vector
3708 change.
3709 * tracepoint.h (traceframe_available_memory): Change parameter
3710 type to std::vector.
3711 * tracepoint.c (traceframe_available_memory): Change parameter
3712 type to std::vector, adjust.
3713 * gdb/mi/mi-main.c (mi_cmd_trace_frame_collected): Adjust to
3714 std::vector change.
3715 * gdb/Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
3716 unittests/memrange-selftests.c.
3717 (SUBDIR_UNITTESTS_OBS): Add memrange-selftests.o.
3718 * gdb/unittests/memrange-selftests.c: New file.
3719
3720 2017-10-16 Pedro Alves <palves@redhat.com>
3721
3722 * elfread.c (probe_key_free): Rename range-for variable.
3723 * probe.c (parse_probes_in_pspace, find_probes_in_objfile)
3724 (find_probe_by_pc, collect_probes): Rename range-for variable.
3725
3726 2017-10-16 Yao Qi <yao.qi@linaro.org>
3727
3728 * features/Makefile (XMLTOC): Remove tic6x-*.xml.
3729 * features/tic6x-c62x.c: Remove.
3730 * features/tic6x-c64x-linux.c: Remove.
3731 * features/tic6x-c64x.c: Remove.
3732 * features/tic6x-c64xp-linux.c: Remove.
3733 * features/tic6x-c64xp.c: Remove.
3734 * tic6x-linux-tdep.c (_initialize_tic6x_linux_tdep): Don't call
3735 initialize_tdesc_tic6x_*_linux functions.
3736 * tic6x-tdep.c (_initialize_tic6x_tdep): Don't call
3737 initialize_tdesc_tic6x_* functions.
3738
3739 2017-10-16 Yao Qi <yao.qi@linaro.org>
3740
3741 * features/Makefile (WHICH): Remove tic6x-c64xp, tic6x-c64x
3742 tic6x-c62x.
3743 * regformats/tic6x-c62x.dat: Remove.
3744 * regformats/tic6x-c64x.dat: Remove.
3745 * regformats/tic6x-c64xp.dat: Remove.
3746
3747 2017-10-15 Simon Marchi <simon.marchi@ericsson.com>
3748
3749 * tracepoint.c (parse_traceframe_info): Return a unique_ptr
3750 (the !HAVE_LIBEXPAT version).
3751
3752 2017-10-14 Simon Marchi <simon.marchi@ericsson.com>
3753
3754 * nat/linux-osdata.c (struct pid_pgid_entry) <operator<>: Make
3755 const.
3756
3757 2017-10-14 Simon Marchi <simon.marchi@polymtl.ca>
3758
3759 * target.h: Include tracepoint.h.
3760 (enum trace_find_type): Move to tracepoint.h.
3761 (struct target_ops) <to_traceframe_info>: Return a unique ptr.
3762 * tracepoint.h: Don't include target.h
3763 (enum trace_find_type): Move from target.h.
3764 (parse_traceframe_info): Return a unique ptr.
3765 * tracepoint.c (current_traceframe_info): Change type to unique
3766 ptr.
3767 (free_traceframe_info): Remove.
3768 (clear_traceframe_info): Don't manually free
3769 current_traceframe_info.
3770 (free_result): Remove.
3771 (parse_traceframe_info): Return a unique ptr.
3772 (get_traceframe_info): Adjust to unique ptr.
3773 * ctf.c (ctf_traceframe_info): Return a unique ptr.
3774 * remote.c (remote_traceframe_info): Return a unique ptr.
3775 * tracefile-tfile.c (tfile_traceframe_info): Return a unique
3776 ptr.
3777 * target-debug.h (target_debug_print_traceframe_info_up): New
3778 macro.
3779 * target-delegates.c: Regenerate.
3780
3781 2017-10-14 Simon Marchi <simon.marchi@polymtl.ca>
3782
3783 * memrange.h (struct mem_range): Add constructors.
3784 * tracepoint.h (struct traceframe_info) <memory>: Change type to
3785 std::vector<mem_range>.
3786 * tracepoint.c (free_traceframe_info): Don't manually free
3787 vector.
3788 (traceframe_info_start_memory): Adjust to vector change.
3789 (traceframe_available_memory): Likewise.
3790 * tracefile-tfile.c (build_traceframe_info): Likewise.
3791 * ctf.c (ctf_traceframe_info): Likewise.
3792
3793 2017-10-14 Simon Marchi <simon.marchi@polymtl.ca>
3794
3795 * tracepoint.h (struct traceframe_info) <tvars>: Change type to
3796 std::vector<int>.
3797 * tracepoint.c (free_traceframe_info): Deallocate with delete.
3798 (traceframe_info_start_tvar): Adjust to vector change.
3799 (parse_traceframe_info): Allocate with new.
3800 * ctf.c (ctf_traceframe_info): Allocate with new, adjust to
3801 vector change.
3802 * tracefile-tfile.c (build_traceframe_info): Adjust to vector
3803 change.
3804 tfile_traceframe_info): Allocate with new.
3805 * mi/mi-main.c (mi_cmd_trace_frame_collected): Adjust to vector
3806 change.
3807
3808 2017-10-14 Simon Marchi <simon.marchi@polymtl.ca>
3809
3810 * tracepoint.c (traceframe_info): Rename to...
3811 (current_traceframe_info): ...this.
3812 (clear_traceframe_info): Adjust.
3813 (get_traceframe_info): Adjust.
3814
3815 2017-10-14 Simon Marchi <simon.marchi@ericsson.com>
3816
3817 * nat/linux-osdata.c: Include algorithm.
3818 (compare_processes): Remove.
3819 (struct pid_pgid_entry): New struct.
3820 (linux_xfer_osdata_processgroups): Use std::vector instead of
3821 XNEWVEC.
3822
3823 2017-10-14 Simon Marchi <simon.marchi@ericsson.com>
3824
3825 * objfiles.h: Don't include symfile.h.
3826 (struct partial_symbol): Remove forward-declaration.
3827 (struct objfile) <global_psymbols, static_psymbols>: Change type
3828 to std::vector<partial_symbol *>.
3829 * objfiles.c (objfile::objfile): Don't memset those fields.
3830 (objfile::~objfile): Don't free those fields.
3831 * psympriv.h (struct psymbol_allocation_list): Remove
3832 forward-declaration.
3833 (add_psymbol_to_list): Change psymbol_allocation_list parameter
3834 to std::vector.
3835 (start_psymtab_common): Change parameters to std::vector.
3836 * psymtab.c: Include algorithm.
3837 (require_partial_symbols): Call shrink_to_fit.
3838 (find_pc_sect_psymbol): Adjust to vector change.
3839 (match_partial_symbol): Likewise.
3840 (lookup_partial_symbol): Likewise.
3841 (psym_relocate): Likewise.
3842 (dump_psymtab): Likewise.
3843 (recursively_search_psymtabs): Likewise.
3844 (compare_psymbols): Remove.
3845 (sort_pst_symbols): Adjust to vector change.
3846 (start_psymtab_common): Likewise.
3847 (end_psymtab_common): Likewise.
3848 (psymbol_bcache_full): De-constify return value.
3849 (add_psymbol_to_bcache): Likewise.
3850 (extend_psymbol_list): Remove.
3851 (append_psymbol_to_list): Adjust to vector change.
3852 (add_psymbol_to_list): Likewise.
3853 (init_psymbol_list): Likewise.
3854 (maintenance_info_psymtabs): Likewise.
3855 (maintenance_check_psymtabs): Likewise.
3856 * symfile.h (struct psymbol_allocation_list): Remove.
3857 * symfile.c (reread_symbols): Adjust to vector change.
3858 * dbxread.c (start_psymtab): Change type of parameters.
3859 (dbx_symfile_read): Adjust to vector change.
3860 (read_dbx_symtab): Likewise.
3861 (start_psymtab): Change type of parameters.
3862 * dwarf2read.c (dwarf2_build_psymtabs): Adjust to vector change.
3863 (create_partial_symtab): Likewise.
3864 (add_partial_symbol): Likewise.
3865 (write_one_signatured_type): Likewise.
3866 (recursively_write_psymbols): Likewise.
3867 * mdebugread.c (parse_partial_symbols): Likewise.
3868 * xcoffread.c (xcoff_start_psymtab): Change type of parameters.
3869 (scan_xcoff_symtab): Adjust to vector change.
3870 (xcoff_initial_scan): Likewise.
3871
3872 2017-10-13 Simon Marchi <simon.marchi@ericsson.com>
3873
3874 * ada-typeprint.c (print_dynamic_range_bound): Use std::string.
3875
3876 2017-10-13 Yao Qi <yao.qi@linaro.org>
3877
3878 * features/Makefile: Remove tic6x-*-expedite, add tic6x-expedite.
3879 Remove s390x-*-expedite, add s390x-expedite.
3880
3881 2017-10-13 Yao Qi <yao.qi@linaro.org>
3882
3883 * features/s390-gs-linux64.c: Regenerated.
3884 * features/s390x-gs-linux64.c: Regenerated.
3885
3886 2017-10-13 Tom Tromey <tom@tromey.com>
3887
3888 * compile/compile-object-run.c (do_module_cleanup): Use delete.
3889 * solib.c (update_solib_list, reload_shared_libraries_1): Use
3890 delete.
3891 * symfile.c (symbol_file_add_with_addrs): Use new.
3892 (symbol_file_add_separate): Update comment.
3893 (syms_from_objfile_1, remove_symbol_file_command): Use delete.
3894 * jit.c (jit_object_close_impl): Use new.
3895 (jit_unregister_code): Use delete.
3896 * objfiles.c (objfile::objfile): Rename from allocate_objfile.
3897 (~objfile): Rename from free_objfile.
3898 (free_objfile_separate_debug, do_free_objfile_cleanup)
3899 (free_all_objfiles, objfile_purge_solibs): Use delete.
3900 * objfiles.h (struct objfile): Add constructor and destructor.
3901 Use DISABLE_COPY_AND_ASSIGN. Add initializers to data members.
3902 (allocate_objfile, free_objfile): Don't declare.
3903 (struct objstats): Add initializers.
3904
3905 2017-10-12 Simon Marchi <simon.marchi@ericsson.com>
3906
3907 * arch-utils.h (simple_displaced_step_copy_insn): Remove.
3908 * arch-utils.c (simple_displaced_step_copy_insn): Remove.
3909 * gdbarch.sh (displaced_step_copy_insn): Adjust comment.
3910 * gdbarch.h: Regenerate.
3911 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn):
3912 Adjust comment.
3913 * i386-tdep.c (i386_displaced_step_copy_insn): Adjust comment.
3914 (i386_displaced_step_fixup): Adjust comment.
3915 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Adjust comment.
3916
3917 2017-10-12 Tom Tromey <tom@tromey.com>
3918
3919 * prologue-value.h (pv_area::store_would_trash): Return bool.
3920 (pv_area::find_reg): Likewise.
3921 * prologue-value.c (pv_area::store_would_trash): Return bool.
3922 (pv_area::find_reg): Likewise.
3923
3924 2017-10-12 Tom Tromey <tom@tromey.com>
3925
3926 * s390-linux-tdep.c (s390_store, s390_load)
3927 (s390_check_for_saved, s390_analyze_prologue): Update.
3928 * rx-tdep.c (check_for_saved, rx_analyze_prologue): Update.
3929 * rl78-tdep.c (rl78_analyze_prologue, check_for_saved): Update.
3930 * prologue-value.h (class pv_area): Move from prologue-value.c.
3931 Change names of members. Add constructor, destructor, member
3932 functions.
3933 (make_pv_area, free_pv_area, make_cleanup_free_pv_area)
3934 (pv_area_store, pv_area_fetch, pv_area_store_would_trash)
3935 (pv_area_fetch, pv_area_scan): Don't declare.
3936 * prologue-value.c (struct pv_area::area_entry): Now member of
3937 pv_area.
3938 (struct pv_area): Move to prologue-value.h.
3939 (pv_area::pv_area): Rename from make_pv_area.
3940 (pv_area::~pv_area): Rename from free_pv_area.
3941 (do_free_pv_area_cleanup, make_cleanup_free_pv_area): Remove.
3942 (clear_entries, find_entry, overlaps, store_would_trash, store)
3943 (fetch, find_reg, scan): Now member of pv_area.
3944 Remove "area" argument. Update.
3945 * msp430-tdep.c (check_for_saved, msp430_analyze_prologue):
3946 Update.
3947 * mn10300-tdep.c (push_reg, check_for_saved)
3948 (mn10300_analyze_prologue): Update.
3949 * mep-tdep.c (is_arg_spill, check_for_saved)
3950 (mep_analyze_prologue): Update.
3951 * m32c-tdep.c (m32c_pv_push, m32c_srcdest_fetch)
3952 (m32c_srcdest_store, m32c_pv_enter, m32c_is_arg_spill)
3953 (m32c_is_struct_return, m32c_analyze_prologue): Update.
3954 * arm-tdep.c (thumb_analyze_prologue, arm_analyze_prologue):
3955 Update.
3956 * arc-tdep.c (arc_is_in_prologue, arc_analyze_prologue): Update.
3957 * aarch64-tdep.c (aarch64_analyze_prologue): Update.
3958
3959 2017-10-12 Simon Marchi <simon.marchi@ericsson.com>
3960
3961 * linux-nat.h (linux_nat_set_delete_thread): New declaration.
3962 * linux-nat.c (linux_nat_delete_thread): New variable.
3963 (lwp_free): Invoke linux_nat_delete_thread if set.
3964 (linux_nat_set_delete_thread): New function.
3965 * aarch64-linux-nat.c (_initialize_aarch64_linux_nat): Assign
3966 thread delete callback.
3967 * arm-linux-nat.c (arm_linux_delete_thread): New function.
3968 (_initialize_arm_linux_nat): Assign thread delete callback.
3969 * s390-linux-nat.c (s390_delete_thread): New function.
3970 (_initialize_s390_nat): Assign thread delete callback.
3971 * x86-linux-nat.c (x86_linux_add_target): Likewise.
3972 * nat/aarch64-linux.c (aarch64_linux_delete_thread): New
3973 function.
3974 * nat/aarch64-linux.h (aarch64_linux_delete_thread): New
3975 declaration.
3976 * nat/x86-linux.c (x86_linux_delete_thread): New function.
3977 * nat/x86-linux.h (x86_linux_delete_thread): New declaration.
3978
3979 2017-10-09 Tom Tromey <tom@tromey.com>
3980
3981 * tui/tui-win.c (tui_set_win_height, parse_scrolling_args): Use
3982 std::string.
3983 * tui/tui-layout.c (enum tui_status): Use std::string.
3984
3985 2017-10-11 Tom Tromey <tom@tromey.com>
3986
3987 * gdbthread.h (thread_command): Constify.
3988 * inferior.h (detach_command): Constify.
3989 * top.h (set_history, show_history): Constify.
3990 * arm-tdep.c (set_arm_command, show_arm_command): Constify.
3991 * serial.c (serial_set_cmd, serial_show_cmd): Constify.
3992 * bsd-kvm.c (bsd_kvm_cmd): Constify.
3993 * printcmd.c (set_command): Constify.
3994 (non_const_set_command): New function.
3995 * dcache.c (set_dcache_command, show_dcache_command): Constify.
3996 * breakpoint.c (enable_command, disable_command, delete_command)
3997 (catch_command, tcatch_command, set_breakpoint_cmd)
3998 (show_breakpoint_cmd): Constify.
3999 * macrocmd.c (macro_command): Constify.
4000 * infcmd.c (unset_command, kill_command, detach_command)
4001 (info_proc_cmd): Constify.
4002 * i386-tdep.c (set_mpx_cmd, show_mpx_cmd): Constify.
4003 * auto-load.c (show_auto_load_cmd, set_auto_load_cmd)
4004 (info_auto_load_cmd): Constify.
4005 * target-descriptions.c (set_tdesc_cmd, show_tdesc_cmd)
4006 (unset_tdesc_cmd): Constify.
4007 * ada-lang.c (set_ada_command, show_ada_command)
4008 (maint_set_ada_cmd, maint_show_ada_cmd): Constify.
4009 * guile/guile.c (set_guile_command, show_guile_command)
4010 (info_guile_command): Constify.
4011 * tui/tui-win.c (tui_command, set_tui_cmd, show_tui_cmd):
4012 Constify.
4013 * skip.c (skip_command): Constify.
4014 * compile/compile.c (_initialize_compile): Constify.
4015 * dwarf2read.c (set_dwarf_cmd, show_dwarf_cmd): Constify.
4016 * btrace.c (maint_btrace_cmd, maint_btrace_set_cmd)
4017 (maint_btrace_show_cmd, maint_btrace_pt_set_cmd)
4018 (maint_btrace_pt_show_cmd): Constify.
4019 * remote.c (set_remote_cmd, show_remote_cmd, remote_command):
4020 Constify.
4021 * python/python.c (user_show_python, user_set_python): Constify.
4022 * mips-tdep.c (set_mips_command, show_mips_command)
4023 (set_mipsfpu_command): Constify.
4024 * record-btrace.c (cmd_record_btrace_start)
4025 (cmd_set_record_btrace, cmd_show_record_btrace)
4026 (cmd_set_record_btrace_bts, cmd_show_record_btrace_bts)
4027 (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): Constify.
4028 * rs6000-tdep.c (set_powerpc_command, show_powerpc_command):
4029 Constify.
4030 * symfile.c (overlay_command): Constify.
4031 * spu-tdep.c (set_spu_command, show_spu_command): Constify.
4032 * cli/cli-logging.c (set_logging_command, show_logging_command):
4033 Constify.
4034 * cli/cli-dump.c (dump_command, append_command)
4035 (srec_dump_command, ihex_dump_command, verilog_dump_command)
4036 (tekhex_dump_command, binary_dump_command)
4037 (binary_append_command): Constify.
4038 * cli/cli-decode.c (struct cmd_list_element): Change type of
4039 "fun".
4040 * cli/cli-cmds.c (info_command, show_command, set_debug)
4041 (show_debug): Constify.
4042 (show_command): Add non-const overload.
4043 * top.c (set_history, show_history): Constify.
4044 * sh-tdep.c (set_sh_command, show_sh_command): Constify.
4045 * command.h (add_prefix_cmd): Accept a cmd_const_cfunc_ftype.
4046 * target.c (target_command): Constify.
4047 * sparc64-tdep.c (info_adi_command): Constify.
4048 * record-full.c (cmd_record_full_start): Constify.
4049 (set_record_full_command): Constify. Fix typo.
4050 (show_record_full_command): Constify.
4051 * thread.c (thread_command, thread_apply_command): Constify.
4052 * memattr.c (dummy_cmd): Constify.
4053 * value.c (function_command): Constify.
4054 * frame.c (set_backtrace_cmd, show_backtrace_cmd): Constify.
4055 * probe.c (info_probes_command): Constify.
4056 * ser-tcp.c (set_tcp_cmd, show_tcp_cmd): Constify.
4057 * gnu-nat.c (set_task_cmd, show_task_cmd, set_thread_cmd)
4058 (show_thread_cmd, set_thread_default_cmd)
4059 (show_thread_default_cmd): Constify.
4060 (check_empty): Constify.
4061 * tracepoint.c (tfind_command): Constify.
4062 * cp-support.c (maint_cplus_command): Constify.
4063 * windows-tdep.c (info_w32_command): Constify.
4064 * record.c (cmd_record_start, set_record_command)
4065 (show_record_command, info_record_command, cmd_record_goto):
4066 Constify.
4067 * ravenscar-thread.c (set_ravenscar_command)
4068 (show_ravenscar_command): Constify.
4069 * utils.c (set_internal_problem_cmd, show_internal_problem_cmd):
4070 Constify.
4071 (add_internal_problem_command): Remove casts.
4072 * arc-tdep.c (maintenance_print_arc_command): Constify.
4073 * valprint.c (set_print, show_print, set_print_raw)
4074 (show_print_raw): Constify.
4075 * maint.c (maintenance_command, maintenance_info_command)
4076 (maintenance_print_command, maintenance_set_cmd)
4077 (maintenance_show_cmd, set_per_command_cmd)
4078 (show_per_command_cmd, maintenance_check_command): Constify.
4079 * language.c (set_check, show_check): Constify.
4080 * typeprint.c (show_print_type, set_print_type): Constify.
4081 * go32-nat.c (go32_info_dos_command): Constify.
4082
4083 2017-10-11 Tom Tromey <tom@tromey.com>
4084
4085 * breakpoint.c (prepare_re_set_context): Remove.
4086 (breakpoint_re_set_one): Update. Don't use cleanups.
4087 (breakpoint_re_set): Use scoped_restore, std::string, and
4088 scoped_restore_current_language.
4089
4090 2017-10-11 Tom Tromey <tom@tromey.com>
4091
4092 * breakpoint.c (commands_command_1): Use std::string.
4093 (cleanup_executing_breakpoints): Remove.
4094 (bpstat_do_actions_1): Use scoped_restore.
4095 (bpstat_check_watchpoint): Use std::string.
4096 (decode_static_tracepoint_spec): Likewise.
4097 (break_range_command): Likewise.
4098 (watch_command_1): Likewise.
4099 (compare_breakpoints): Change argument types.
4100 (clear_command): Use std::vector.
4101 (cleanup_executing_breakpoints): Remove.
4102 (update_global_location_list): Use unique_xmalloc_ptr.
4103 (strace_command): Remove unused declaration.
4104
4105 2017-10-11 John Baldwin <jhb@FreeBSD.org>
4106
4107 * Makefile.in (ALLDEPFILES): Add arm-fbsd-nat.c.
4108 * NEWS: Mention new FreeBSD/arm native configuration.
4109 * configure.host: Add arm*-*-freebsd*.
4110 * configure.nat: Likewise.
4111 * arm-fbsd-nat.c: New file.
4112
4113 2017-10-11 John Baldwin <jhb@FreeBSD.org>
4114
4115 * Makefile.in (ALL_TARGET_OBS): Add arm-fbsd-tdep.o.
4116 (ALLDEPFILES): Add arm-fbsd-tdep.c.
4117 * NEWS: Mention new FreeBSD/arm target.
4118 * configure.tgt: Add arm*-*-freebsd*.
4119 * arm-fbsd-tdep.c: New file.
4120 * arm-fbsd-tdep.h: New file.
4121
4122 2017-10-11 Maciej W. Rozycki <macro@imgtec.com>
4123
4124 * linux-tdep.c (linux_make_corefile_notes): Remove call to
4125 `gdbarch_elfcore_write_linux_prpsinfo'.
4126 * gdbarch.sh (elfcore_write_linux_prpsinfo): Remove architecture
4127 method.
4128 (elf_internal_linux_prpsinfo): Remove declaration.
4129 * gdbarch.h: Regenerate.
4130 * gdbarch.c: Regenerate.
4131
4132 2017-10-11 Maciej W. Rozycki <macro@imgtec.com>
4133
4134 * ppc-linux-tdep.c (ppc_linux_init_abi): Remove call to
4135 `set_gdbarch_elfcore_write_linux_prpsinfo'.
4136
4137 2017-10-11 Pedro Alves <palves@redhat.com>
4138
4139 * breakpoint.c (reattach_breakpoints): Delete.
4140 * breakpoint.h (reattach_breakpoints): Delete.
4141
4142 2017-10-11 Simon Marchi <simon.marchi@ericsson.com>
4143
4144 * symfile.c (registered_sym_fns): Make struct, not typedef.
4145 (DEF_VEC_O (registered_sym_fns)): Remove.
4146 (symtab_fns): Change type to std::vector.
4147 (add_symtab_fns): Adjust.
4148 (find_sym_fns): Adjust.
4149
4150 2017-10-11 Anton Kolesov <Anton.Kolesov@synopsys.com>
4151
4152 * arc-tdep.c (arc_gdbarch_init): Pass proper cpu value to disassembler.
4153 * arc-tdep.h (arc_arch_is_em): New function.
4154 (arc_arch_is_hs): Likewise.
4155
4156 2017-10-11 Egeyar Bagcioglu <egeyar.bagcioglu@oracle.com>
4157
4158 * macrotab.h (macro_lookup_inclusion): Remove unnecessary
4159 parentheses in the declaration.
4160 (macro_lookup_inclusion): Likewise.
4161 (macro_lookup_definition): Likewise.
4162 * p-lang.h (pascal_builtin_types): Likewise.
4163 * tui/tui-data.c (tui_win_list): Likewise.
4164 * tui/tui-data.h (tui_win_list): Likewise.
4165 * utils.h (make_cleanup_free_section_addr_info): Likewise.
4166
4167 2017-10-11 Mark Rages <markrages@gmail.com>
4168
4169 * target-memory.c (block_boundaries): Fix for block address not
4170 aligned on block size.
4171
4172 2017-10-10 Pedro Alves <palves@redhat.com>
4173 Tom Tromey <tom@tromey.com>
4174
4175 * breakpoint.c (struct captured_breakpoint_query_args)
4176 (do_captured_breakpoint_query, gdb_breakpoint_query): Delete.
4177 (print_breakpoint): New.
4178 * breakpoint.h (print_breakpoint): Declare.
4179 * common/common-exceptions.h (enum return_reason): Remove
4180 references to catch_exceptions.
4181 * exceptions.c (catch_exceptions, catch_exceptions_with_msg):
4182 Delete.
4183 * exceptions.h (catch_exceptions_ftype, catch_exceptions)
4184 (catch_exception_ftype, catch_exceptions_with_msg): Delete.
4185 * gdb.h: Delete.
4186 * gdbthread.h (thread_select): Declare.
4187 * mi/mi-cmd-break.c: Don't include gdb.h.
4188 (breakpoint_notify): Use print_breakpoint.
4189 * mi/mi-cmd-catch.c: Don't include gdb.h.
4190 * mi/mi-interp.c: Don't include gdb.h.
4191 (mi_print_breakpoint_for_event): New.
4192 (mi_breakpoint_created, mi_breakpoint_modified): Use
4193 mi_print_breakpoint_for_event.
4194 * mi/mi-main.c: Don't include gdb.h.
4195 (mi_cmd_thread_select): Parse the global thread ID here. Use
4196 thread_select instead of gdb_thread_select.
4197 (mi_cmd_thread_list_ids): Output "thread-ids" tuple here instead
4198 of using gdb_list_thread_ids.
4199 * remote-fileio.c (do_remote_fileio_request): Change type. Reply
4200 FILEIO_ENOSYS here.
4201 (remote_fileio_request): Use TRY/CATCH instead of
4202 catch_exceptions.
4203 * symfile-mem.c (struct symbol_file_add_from_memory_args)
4204 (symbol_file_add_from_memory_wrapper): Delete.
4205 (add_vsyscall_page): Use TRY/CATCH instead of catch_exceptions.
4206 * thread.c: Don't include gdb.h.
4207 (do_captured_list_thread_ids, gdb_list_thread_ids): Delete.
4208 (thread_alive): Use thread_select.
4209 (do_captured_thread_select): Delete, parts salvaged as ...
4210 (thread_select): ... this new function.
4211 (gdb_thread_select): Delete.
4212
4213 2017-10-10 Pedro Alves <palves@redhat.com>
4214 Tom Tromey <tom@tromey.com>
4215
4216 * breakpoint.c (breakpoint_cond_eval): Change return type to bool
4217 and reverse logic.
4218 (WP_DELETED, WP_VALUE_CHANGED, WP_VALUE_NOT_CHANGED, WP_IGNORE):
4219 No longer macros. Instead ...
4220 (enum wp_check_result): They're now values of this new
4221 enumeration.
4222 (watchpoint_check): Change return type to wp_check_result and
4223 parameter type to bpstat.
4224 (bpstat_check_watchpoint): Use TRY/CATCH instead of catch_errors.
4225 (bpstat_check_breakpoint_conditions): Use TRY/CATCH instead of
4226 catch_errors. Reverse logic of watchpoint_check call.
4227 (breakpoint_re_set_one): Now returns void and takes a breakpoint
4228 pointer as parameter.
4229 (breakpoint_re_set): Use TRY/CATCH instead of catch_errors.
4230 * common/common-exceptions.c (throw_exception_sjlj): Update
4231 comments to avoid mentioning catch_errors.
4232 * exceptions.c (catch_errors): Delete.
4233 * exceptions.h: Update comments to avoid mentioning catch_errors.
4234 (catch_errors_ftype, catch_errors): Delete.
4235 * infrun.c (normal_stop): Use TRY/CATCH instead of catch_errors.
4236 (hook_stop_stub): Delete.
4237 (restore_selected_frame): Change return type to void, and
4238 parameter type to const frame_id &.
4239 (restore_infcall_control_state): Use TRY/CATCH instead of
4240 catch_errors.
4241 * main.c (captured_command_loop): Return void and remove
4242 parameter. Remove references to catch_errors.
4243 (captured_main): Use TRY/CATCH instead of catch_errors.
4244 * objc-lang.c (objc_submethod_helper_data)
4245 (find_objc_msgcall_submethod_helper): Delete.
4246 (find_objc_msgcall_submethod): Use TRY/CATCH instead of
4247 catch_errors.
4248 * record-full.c (record_full_message): Return void.
4249 (record_full_message_args, record_full_message_wrapper): Delete.
4250 (record_full_message_wrapper_safe): Return bool and use TRY/CATCH
4251 instead of catch_errors.
4252 * solib-aix.c (solib_aix_open_symbol_file_object): Change
4253 parameter type to int.
4254 * solib-darwin.c (open_symbol_file_object): Ditto.
4255 * solib-dsbt.c (open_symbol_file_object): Ditto.
4256 * solib-frv.c (open_symbol_file_object): Ditto.
4257 * solib-svr4.c (open_symbol_file_object): Ditto.
4258 * solib-target.c (solib_target_open_symbol_file_object): Ditto.
4259 * solib.c (update_solib_list): Use TRY/CATCH instead of
4260 catch_errors.
4261 * solist.h (struct target_so_ops) <open_symbol_file_object>:
4262 Change type.
4263 * symmisc.c (struct print_symbol_args): Remove.
4264 (dump_symtab_1): Use TRY/CATCH instead of catch_errors.
4265 (print_symbol): Change type.
4266 * windows-nat.c (handle_load_dll, handle_unload_dll): Return void
4267 and remove parameters.
4268 (catch_errors): New.
4269 (get_windows_debug_event): Adjust.
4270
4271 2017-10-09 Tom Tromey <tom@tromey.com>
4272
4273 * mi/mi-main.c (free_splay_tree): Remove.
4274 (list_available_thread_groups): Use splay_tree_up.
4275 * common/gdb_splay_tree.h: New file.
4276
4277 2017-10-09 Tom Tromey <tom@tromey.com>
4278
4279 * mi/mi-main.c (do_nothing): Remove.
4280 (list_available_thread_groups): Update.
4281
4282 2017-10-09 Pedro Alves <palves@redhat.com>
4283
4284 * infrun.c (handle_inferior_event_1) <TARGET_WAITKIND_EXECD>: Skip
4285 reading registers when switching context.
4286
4287 2017-10-09 John Baldwin <jhb@FreeBSD.org>
4288
4289 * fbsd-nat.c (fbsd_siginfo_size): Use gdbarch_long_bit.
4290 (fbsd_convert_siginfo): Likewise.
4291 * fbsd-tdep.c (fbsd_core_xfer_siginfo): Likewise.
4292
4293 2017-10-09 Simon Marchi <simon.marchi@polymtl.ca>
4294
4295 * configure.ac (try_guile_versions): Remove guile-2.2.
4296 * configure: Regenerate.
4297
4298 2017-10-09 Tom Tromey <tom@tromey.com>
4299
4300 * Makefile.in (COMPILE.post, POSTCOMPILE): Restore $(basename).
4301 (COMPILE.pre): Use $(CXX).
4302
4303 2017-10-09 Pedro Alves <palves@redhat.com>
4304
4305 * cp-support.c (cp_remove_params): Return a gdb::unique_xmalloc_ptr.
4306 Use bool.
4307 (overload_list_add_symbol): Adjust to use gdb::unique_xmalloc_ptr.
4308 * cp-support.h (cp_remove_params): Now returns a
4309 gdb::unique_xmalloc_ptr.
4310 * dwarf2read.c (find_slot_in_mapped_hash): Now returns bool.
4311 Adjust to cp_remove_params returning a gdb::unique_xmalloc_ptr.
4312 * psymtab.c (psymtab_search_name): Adjust to cp_remove_params
4313 returning a gdb::unique_xmalloc_ptr.
4314 (lookup_partial_symbol): Adjust to use gdb::unique_xmalloc_ptr.
4315 * stack.c (find_frame_funname): Adjust to cp_remove_params
4316 returning a gdb::unique_xmalloc_ptr.
4317
4318 2017-10-08 Tom Tromey <tom@tromey.com>
4319
4320 * dwarf2read.c (dwarf2_get_dwz_file): Use
4321 gdb::unique_xmalloc_ptr.
4322 (find_slot_in_mapped_hash): Likewise.
4323 (dwarf2_physname): Likewise.
4324 (create_dwo_unit_in_dwp_v1): Use std::string.
4325 (create_dwo_unit_in_dwp_v2): Likewise.
4326 (lookup_dwo_cutu): Likewise.
4327 (inherit_abstract_dies): Use std::vector.
4328 (read_array_type): Likewise.
4329 (dwarf_decode_macros): Remove unused declaration.
4330 (unsigned_int_compar): Remove.
4331 (dwarf2_build_psymtabs_hard): Use scoped_restore.
4332 (psymtabs_addrmap_cleanup): Remove.
4333
4334 2017-10-08 Tom Tromey <tom@tromey.com>
4335
4336 * frame-unwind.c (frame_unwind_try_unwinder): Update.
4337 * frame.h (frame_cleanup_after_sniffer): Declare.
4338 (frame_prepare_for_sniffer): Return void.
4339 * frame.c (frame_cleanup_after_sniffer): No longer static. Change
4340 type of argument.
4341 (frame_prepare_for_sniffer): Return void.
4342
4343 2017-10-08 Tom Tromey <tom@tromey.com>
4344
4345 * utils.h (make_cleanup_value_free): Remove.
4346 * utils.c (do_value_free, struct cleanup): Remove.
4347 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full) <DWARF_VALUE_STACK>:
4348 Use gdb_value_up.
4349 * value.h (struct value_deleter): New.
4350 (gdb_value_up): New typedef.
4351
4352 2017-10-08 Tom Tromey <tom@tromey.com>
4353
4354 * symtab.c (free_search_symbols, do_free_search_symbols_cleanup)
4355 (make_cleanup_free_search_symbols): Remove.
4356 (search_symbols): Return std::vector.
4357 (symbol_search::compare_search_syms): Now member of
4358 symbol_search. Change arguments.
4359 (sort_search_symbols_remove_dups): Change arguments. Rewrite.
4360 (symtab_symbol_info, rbreak_command): Update.
4361 * symtab.h (struct symbol_search) <next>: Remove.
4362 Add constructors.
4363 (symbol_search::operator<): New function.
4364 (symbol_search::operator==): New function.
4365 (search_symbols): Remove std::vector.
4366 (free_search_symbols, make_cleanup_free_search_symbols): Remove.
4367 (symbol_search::compare_search_syms): Declare.
4368
4369 2017-10-06 Yao Qi <yao.qi@linaro.org>
4370
4371 * Makefile.in (ALL_64_TARGET_OBS): Replace aarch64-insn.o with
4372 arch/aarch64-insn.o.
4373 Remove one rule.
4374 * configure.tgt: Replace aarch64-insn.o with arch/aarch64-insn.o.
4375
4376 2017-10-06 Yao Qi <yao.qi@linaro.org>
4377
4378 * Makefile.in (ALL_TARGET_OBS): Replace arm.o, arm-get-next-pcs.o,
4379 and arm-linux.o with arch/arm.o, arch/arm-get-next-pcs.o and
4380 arch/arm-linux.o respectively.
4381 * configure.tgt: Likewise.
4382
4383 2017-10-06 Yao Qi <yao.qi@linaro.org>
4384
4385 * Makefile.in (ALL_TARGET_OBS): Rename i386.o to arch/i386.o.
4386 * configure.tgt (i386_tobjs): Replace i386.o with arch/i386.o.
4387
4388 2017-10-06 Pedro Alves <palves@redhat.com>
4389
4390 * windows-nat.c: Include <algorithm>.
4391
4392 2017-10-06 Yao Qi <yao.qi@linaro.org>
4393
4394 * configure.tgt (i386_tobjs): New variable.
4395 (amd64_tobjs): New variable.
4396 Set $cpu_obs and $os_obs.
4397
4398 2017-10-06 Yao Qi <yao.qi@linaro.org>
4399
4400 * Makefile.in (CONFIG_SRC_SUBDIR): New.
4401 (ALL_64_TARGET_OBS): Replace amd64.o with arch/amd64.o.
4402 (clean): Remove object files and dependency files.
4403 (distclean): Remove the directory.
4404 * configure.ac: Invoke AC_CONFIG_COMMANDS.
4405 * configure: Re-generated.
4406 * configure.tgt: Replace amd64.o with arch/amd64.o.
4407
4408 2017-10-05 Jose E. Marchesi <jose.marchesi@oracle.com>
4409
4410 PR build/22188
4411 * arm-tdep.c (arm_decode_misc_memhint_neon): Fix decoding of CPS
4412 and SETEND.
4413
4414 2017-10-05 Pedro Alves <palves@redhat.com>
4415
4416 * linux-nat.c (linux_child_follow_fork): When following the parent
4417 and detaching the child, consult the parent thread's architecture
4418 instead of the child's.
4419
4420 2017-10-05 Ulrich Weigand <uweigand@de.ibm.com>
4421
4422 * ax.h: Do not include "doublest.h".
4423 (union agent_val): Remove.
4424
4425 2017-10-05 Ulrich Weigand <uweigand@de.ibm.com>
4426
4427 * dfp.h (MAX_DECIMAL_STRING): Move to dfp.c.
4428 (decimal_to_string): Return std::string object.
4429 (decimal_from_string): Accept std::string object. Return bool.
4430 (decimal_from_integral, decimal_from_doublest): Remove.
4431 (decimal_from_longest): Add prototype.
4432 (decimal_from_ulongest): Likewise.
4433 (decimal_to_longest): Likewise.
4434 (decimal_from_doublest): Likewise.
4435 * dfp.c: Do not include "gdbtypes.h" or "value.h".
4436 (MAX_DECIMAL_STRING): Move here.
4437 (decimal_to_string): Return std::string object.
4438 (decimal_from_string): Accept std::string object. Return bool.
4439 (decimal_from_integral): Remove, replace by ...
4440 (decimal_from_longest, decimal_from_ulongest): ... these new functions.
4441 (decimal_to_longest): New function.
4442 (decimal_from_floating): Remove, replace by ...
4443 (decimal_from_doublest): ... this new function.
4444 (decimal_to_doublest): Update to new decimal_to_string interface.
4445
4446 * value.c (unpack_long): Use decimal_to_longest.
4447 * valops.c (value_cast): Use decimal_from_doublest instead of
4448 decimal_from_floating. Use decimal_from_[u]longest isntead of
4449 decimal_from_integral.
4450 * valarith.c (value_args_as_decimal): Likewise.
4451 * valprint.c (print_decimal_floating): Update to new
4452 decimal_to_string interface.
4453 * printcmd.c (printf_decfloat): Likewise.
4454 * c-exp.y (parse_number): Update to new decimal_from_string interface.
4455
4456 2017-10-05 Ulrich Weigand <uweigand@de.ibm.com>
4457
4458 * doublest.h: Do not include "floatformat.h". Remove stale comments.
4459 * gdbtypes.c: Include "floatformat.h".
4460 * value.c: Likewise.
4461 * m68k-tdep.c: Likewise.
4462
4463 * findvar.c: Do not include "floatformat.h".
4464 * amd64-darwin-tdep.c: Likewise.
4465 * arm-linux-tdep.c: Likewise.
4466 * i386-darwin-tdep.c: Likewise.
4467 * i387-tdep.c: Likewise.
4468 * m68k-linux-tdep.c: Likewise.
4469 * mep-tdep.c: Likewise.
4470 * mips-tdep.c: Likewise.
4471 * nios2-tdep.c: Likewise.
4472 * s390-linux-tdep.c: Likewise.
4473 * sparc-obsd-tdep.c: Likewise.
4474 * sparc-tdep.c: Likewise.
4475 * sparc64-tdep.c: Likewise.
4476 * spu-tdep.c: Likewise.
4477 * tic6x-tdep.c: Likewise.
4478 * tilegx-tdep.c: Likewise.
4479 * vax-tdep.c: Likewise.
4480 * xstormy16-tdep.c: Likewise.
4481 * xtensa-tdep.c: Likewise.
4482
4483 * top.c: Do not include "doublest.h".
4484 * aarch64-tdep.c: Likewise.
4485 * alpha-tdep.c: Likewise.
4486 * arm-linux-tdep.c: Likewise.
4487 * m68k-linux-tdep.c: Likewise.
4488 * tilegx-tdep.c: Likewise.
4489 * xstormy16-tdep.c: Likewise.
4490
4491 2017-10-05 John Baldwin <jhb@FreeBSD.org>
4492
4493 * mips-fbsd-tdep.c (MIPS_INST_ADDIU_A0_SP_N32): Define.
4494 (mipsn32_fbsd_sigframe): Define.
4495 (mips_fbsd_init_abi): Install mipsn32_fbsd_sigframe unwinder
4496 for FreeBSD/mipsn32.
4497
4498 2017-10-05 John Baldwin <jhb@FreeBSD.org>
4499
4500 * fbsd-tdep.c (fbsd_print_auxv_entry): Handle AT_EHDRFLAGS and
4501 AT_HWCAP.
4502
4503 2017-10-05 Tristan Gingold <tgingold@free.fr>
4504
4505 * MAINTAINERS (Misc): Update my email address.
4506
4507 2017-10-04 Pedro Alves <palves@redhat.com>
4508
4509 * remote.c (get_remote_arch_state): New 'gdbarch' parameter. Use
4510 it instead of target_gdbarch.
4511 (get_remote_state, get_remote_packet_size): Adjust
4512 get_remote_arch_state calls, passing down target_gdbarch
4513 explicitly.
4514 (packet_reg_from_regnum, packet_reg_from_pnum): New parameter
4515 'gdbarch' and use it instead of target_gdbarch.
4516 (get_memory_packet_size): Adjust get_remote_arch_state calls,
4517 passing down target_gdbarch explicitly.
4518 (struct stop_reply) <arch>: New field.
4519 (remote_parse_stop_reply): Use the stopped thread's architecture,
4520 not the current inferior's. Save the architecture in the
4521 stop_reply.
4522 (process_stop_reply): Use the stop reply's architecture.
4523 (process_g_packet, remote_fetch_registers)
4524 (remote_prepare_to_store, store_registers_using_G)
4525 (remote_store_registers): Adjust get_remote_arch_state calls,
4526 using the regcache's architecture.
4527 (remote_get_trace_status): Adjust get_remote_arch_state calls,
4528 passing down target_gdbarch explicitly.
4529 * spu-multiarch.c (spu_thread_architecture): Defer to the target
4530 beneath instead of calling target_gdbarch.
4531 * target.c (default_thread_architecture): Use the specified
4532 inferior's architecture, instead of the current inferior's
4533 architecture (via target_gdbarch).
4534
4535 2017-10-04 Pedro Alves <palves@redhat.com>
4536
4537 * regcache.c (get_thread_arch_regcache): Remove null_ptid special
4538 case.
4539 (regcache_print): Handle !target_has_registers here instead.
4540
4541 2017-10-04 Pedro Alves <palves@redhat.com>
4542
4543 * frame.c (create_test_frame): Delete.
4544 * frame.h (create_test_frame): Delete.
4545 * gdbarch-selftests.c: Include gdbthread.h and target.h.
4546 (class regcache_test): Delete.
4547 (test_target_has_registers, test_target_has_stack)
4548 (test_target_has_memory, test_target_prepare_to_store)
4549 (test_target_store_registers): New functions.
4550 (test_target_ops): New class.
4551 (register_to_value_test): Error out if there's already a
4552 process_stratum (or higher) target pushed. Create a fuller mock
4553 environment, with mock target_ops, inferior, address space, thread
4554 and inferior_ptid.
4555 * progspace.c (struct address_space): Move to ...
4556 * progspace.h (struct address_space): ... here.
4557 * regcache.h (regcache::~regcache, regcache::raw_write)
4558 [GDB_SELF_TEST]: No longer virtual.
4559
4560 2017-10-04 Simon Marchi <simon.marchi@ericsson.com>
4561
4562 * mi/mi-main.c (list_available_thread_groups): Reverse filter logic.
4563
4564 2017-10-04 Pedro Alves <palves@redhat.com>
4565
4566 * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Move code
4567 out of 'between TRY and CATCH'.
4568
4569 2017-10-04 Pedro Alves <palves@redhat.com>
4570
4571 * cli/cli-cmds.c (complete_command): Add missing END_CATCH.
4572 * common/common-exceptions.h (TRY): Open an outermost scope.
4573 Expand intro comment.
4574 (CATCH): Reindent.
4575 (END_CATCH): Close the outermost scope.
4576 * completer.c (complete_line_internal): Add missing END_CATCH.
4577
4578 2017-10-04 Sergio Durigan Junior <sergiodj@redhat.com>
4579
4580 * NEWS (Changes since GDB 8.0): Add entry about new
4581 'set-cwd-on-gdbserver' feature.
4582 (New remote packets): Add entry for QSetWorkingDir.
4583 * common/common-inferior.h (set_inferior_cwd): New prototype.
4584 * infcmd.c (set_inferior_cwd): Remove "static".
4585 (show_cwd_command): Expand text to include remote debugging.
4586 * remote.c: Add PACKET_QSetWorkingDir.
4587 (remote_protocol_features) <QSetWorkingDir>: New entry for
4588 PACKET_QSetWorkingDir.
4589 (extended_remote_set_inferior_cwd): New function.
4590 (extended_remote_create_inferior): Call
4591 "extended_remote_set_inferior_cwd".
4592 (_initialize_remote): Call "add_packet_config_cmd" for
4593 QSetWorkingDir.
4594
4595 2017-10-04 Sergio Durigan Junior <sergiodj@redhat.com>
4596
4597 * NEWS (New commands): Mention "set/show cwd".
4598 * cli/cli-cmds.c (_initialize_cli_cmds): Mention "set cwd" on
4599 "cd" command's help text.
4600 * common/common-inferior.h (get_inferior_cwd): New prototype.
4601 * infcmd.c (inferior_cwd_scratch): New global variable.
4602 (set_inferior_cwd): New function.
4603 (get_inferior_cwd): Likewise.
4604 (set_cwd_command): Likewise.
4605 (show_cwd_command): Likewise.
4606 (_initialize_infcmd): Add "set/show cwd" commands.
4607 * inferior.h (class inferior) <cwd>: New field.
4608 * nat/fork-inferior.c: Include "gdb_tilde_expand.h".
4609 (fork_inferior): Change inferior's cwd before its execution.
4610 * windows-nat.c (windows_create_inferior): Pass inferior's cwd
4611 to CreateProcess.
4612
4613 2017-10-04 Sergio Durigan Junior <sergiodj@redhat.com>
4614
4615 * Makefile.in (SFILES): Add gdb_tilde_expand.c.
4616 (HFILES_NO_SRCDIR): Add gdb_tilde_expand.h.
4617 (COMMON_OBS): Add gdb_tilde_expand.o.
4618 * common/gdb_tilde_expand.c: New file.
4619 * common/gdb_tilde_expand.h: Likewise.
4620
4621 2017-10-03 Maciej W. Rozycki <macro@imgtec.com>
4622
4623 * gdbarch.sh (objfile): Remove duplicate declaration.
4624 * gdbarch.h: Regenerate.
4625
4626 2017-10-03 Tom Tromey <tom@tromey.com>
4627
4628 * utils.c (internal_vproblem): Use string_vprintf.
4629
4630 2017-10-03 Tom Tromey <tom@tromey.com>
4631
4632 * printcmd.c (info_symbol_command): Use std::string.
4633
4634 2017-10-03 Tom Tromey <tom@tromey.com>
4635
4636 * top.c (gdb_safe_append_history): Use std::string.
4637
4638 2017-10-03 Tom Tromey <tom@tromey.com>
4639
4640 * event-top.c (stdin_event_handler): Update.
4641 * main.c (captured_main_1): Update.
4642 * top.h (make_delete_ui_cleanup): Remove.
4643 (struct ui): Add constructor and destructor.
4644 (new_ui, delete_ui): Remove.
4645 * top.c (make_delete_ui_cleanup): Remove.
4646 (new_ui_command): Use std::unique_ptr.
4647 (delete_ui_cleanup): Remove.
4648 (ui::ui): Rename from new_ui. Update.
4649 (free_ui): Remove.
4650 (ui::~ui): Rename from delete_ui. Update.
4651
4652 2017-10-03 Tom Tromey <tom@tromey.com>
4653
4654 * symfile.c (load_progress): Use gdb::byte_vector.
4655
4656 2017-10-03 Tom Tromey <tom@tromey.com>
4657
4658 * mi/mi-main.c (mi_cmd_trace_frame_collected): Remove unused
4659 declaration.
4660 * printcmd.c (x_command): Remove unused declaration.
4661 * symfile.c (symbol_file_command): Remove unused declaration.
4662
4663 2017-10-03 Tom Tromey <tom@tromey.com>
4664
4665 * utils.c (internal_vproblem): Use std::string.
4666 (defaulted_query): Likewise.
4667
4668 2017-10-03 Tom Tromey <tom@tromey.com>
4669
4670 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Update.
4671 * top.c (execute_command_to_string): Update.
4672 * utils.c (make_cleanup_restore_page_info): Remove.
4673 (do_restore_page_info_cleanup): Remove.
4674 (set_batch_flag_and_restore_page_info):
4675 New.
4676 (make_cleanup_restore_page_info): Remove.
4677 (set_batch_flag_and_make_cleanup_restore_page_info): Remove.
4678 (~set_batch_flag_and_restore_page_info): New
4679 (make_cleanup_restore_uinteger): Remove.
4680 (make_cleanup_restore_integer): Remove.
4681 (struct restore_integer_closure): Remove.
4682 (restore_integer): Remove.
4683 * utils.h (struct set_batch_flag_and_restore_page_info): New
4684 class.
4685 (set_batch_flag_and_make_cleanup_restore_page_info): Remove.
4686 (make_cleanup_restore_page_info): Remove.
4687 (make_cleanup_restore_uinteger) Remove.
4688 (make_cleanup_restore_integer) Remove.
4689
4690 2017-10-03 Tom Tromey <tom@tromey.com>
4691
4692 * record-full.h (record_full_gdb_operation_disable_set): Return
4693 scoped_restore_tmpl<int>.
4694 * infrun.c (adjust_pc_after_break): Update.
4695 (handle_signal_stop): Update.
4696 * record-full.c (record_full_gdb_operation_disable_set): Return
4697 scoped_restore_tmpl<int>.
4698 (record_full_wait_1, record_full_insert_breakpoint)
4699 (record_full_remove_breakpoint, record_full_save)
4700 (record_full_goto_insn): Update.
4701
4702 2017-10-02 Tom Tromey <tom@tromey.com>
4703
4704 PR rust/22236:
4705 * rust-lang.c (rust_val_print_str): New function.
4706 (val_print_struct): Call it.
4707 (rust_subscript): Preserve name of slice type.
4708
4709 2017-10-02 Tom Tromey <tom@tromey.com>
4710
4711 * rust-lang.c (rust_subscript): Handle slices in
4712 EVAL_AVOID_SIDE_EFFECTS case.
4713
4714 2017-10-02 Tom Tromey <tom@tromey.com>
4715
4716 * rust-lang.c (rust_slice_type_p): Recognize &str as a slice type.
4717
4718 2017-10-02 Tom Tromey <tom@tromey.com>
4719
4720 * rust-lang.h (rust_slice_type): Add "extern".
4721
4722 2017-10-02 Tom Tromey <tom@tromey.com>
4723 Pedro Alves <palves@redhat.com>
4724
4725 * ada-lang.h (ada_exc_info::operator<): Make const.
4726 (ada_exc_info::operator==): Make const.
4727 * ada-lang.c (ada_exc_info::operator<, ada_exc_info::operator==):
4728 Make const.
4729
4730 2017-09-29 Tom Tromey <tom@tromey.com>
4731
4732 * target.c (read_whatever_is_readable): Change type of "result".
4733 Update.
4734 (free_memory_read_result_vector): Remove.
4735 (read_memory_robust): Change return type. Update.
4736 * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Update. Use
4737 bin2hex, std::string.
4738 * target.h (memory_read_result_s): Remove typedef.
4739 (free_memory_read_result_vector): Remove.
4740 (read_memory_robust): Return std::vector.
4741
4742 2017-09-29 Tom Tromey <tom@tromey.com>
4743
4744 * mi/mi-main.c (captured_mi_execute_command): Use scope_restore.
4745
4746 2017-09-29 Tom Tromey <tom@tromey.com>
4747
4748 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions): Update.
4749 * ada-lang.h (struct ada_exc_info): Remove typedef. Declare
4750 operator< and operator==.
4751 (ada_exceptions_list): Return a std::vector.
4752 * ada-lang.c (ada_exc_info::operator<): Rename from
4753 compare_ada_exception_info.
4754 (ada_exc_info::operator==): New.
4755 (sort_remove_dups_ada_exceptions_list): Change type of
4756 "exceptions".
4757 (ada_add_standard_exceptions, ada_add_exceptions_from_frame)
4758 (ada_add_global_exceptions): Likewise.
4759 (ada_exceptions_list_1): Return a std::vector.
4760 (ada_exceptions_list): Likewise.
4761
4762 2017-09-29 Tom Tromey <tom@tromey.com>
4763
4764 * mi/mi-main.c (struct print_one_inferior_data) <inferiors>: Now a
4765 'std::set *'.
4766 (print_one_inferior): Update.
4767 (free_vector_of_ints): Remove.
4768 (list_available_thread_groups): Change "ids" to std::set.
4769 (mi_cmd_list_thread_groups): Update.
4770 (struct collect_cores_data) <core>: Now a std::set.
4771 (collect_cores): Update.
4772 (unique): Remove.
4773 (print_one_inferior): Update.
4774
4775 2017-09-29 Tom Tromey <tom@tromey.com>
4776
4777 * mi/mi-main.c (mi_execute_cli_command): Use std::string.
4778 (mi_execute_async_cli_command): Likewise.
4779 (mi_cmd_trace_frame_collected): Use field_fmt.
4780
4781 2017-09-29 Tom Tromey <tom@tromey.com>
4782
4783 * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Use
4784 gdb::byte_vector.
4785
4786 2017-09-29 Tom Tromey <tom@tromey.com>
4787
4788 * mi/mi-parse.c (mi_parse): Remove unused declaration.
4789
4790 2017-09-29 Tom Tromey <tom@tromey.com>
4791
4792 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Don't copy "oarg".
4793
4794 2017-09-29 Tom Tromey <tom@tromey.com>
4795
4796 * varobj.h (varobj_gen_name): Return std::string.
4797 * varobj.c (varobj_gen_name): Return std::string.
4798 * mi/mi-cmd-var.c (mi_cmd_var_create): Use std::string.
4799 (mi_cmd_var_delete): Don't copy "name".
4800
4801 2017-09-29 Tom Tromey <tom@tromey.com>
4802
4803 * mi/mi-cmd-break.c (mi_argv_to_format): Return std::string.
4804 (mi_cmd_break_insert_1): Update.
4805
4806 2017-09-29 Tom Tromey <tom@tromey.com>
4807
4808 * target.h (make_scoped_defer_target_commit_resume): Update.
4809 * target.c (make_scoped_defer_target_commit_resume): Rename from
4810 make_cleanup_defer_target_commit_resume. Return a
4811 scoped_restore.
4812 * infrun.c (proceed): Use make_scoped_defer_target_commit_resume.
4813
4814 2017-09-29 Tom Tromey <tom@tromey.com>
4815
4816 * main.c (captured_main_1): Remove unused declaration.
4817 * spu-multiarch.c (parse_spufs_run): Remove unused declaration.
4818
4819 2017-09-29 Tom Tromey <tom@tromey.com>
4820
4821 * symtab.c (search_symbols): Remove unused outer cleanup.
4822 (make_source_files_completion_list): Remove unused declaration.
4823
4824 2017-09-29 Tom Tromey <tom@tromey.com>
4825
4826 * mt-tdep.c (mt_push_dummy_call): Use gdb::byte_vector.
4827
4828 2017-09-29 Tom Tromey <tom@tromey.com>
4829
4830 * xstormy16-tdep.c (xstormy16_push_dummy_call): Use
4831 gdb::byte_vector.
4832
4833 2017-09-29 Tom Tromey <tom@tromey.com>
4834
4835 * complaints.c (vcomplaint): Use std::string.
4836
4837 2017-09-29 Tom Tromey <tom@tromey.com>
4838
4839 * tracepoint.c (trace_variable_command): Use std::string.
4840 (encode_actions_1): Remove unused declarations.
4841 (create_tsv_from_upload): Use std::string.
4842
4843 2017-09-29 Tom Tromey <tom@tromey.com>
4844
4845 * cp-support.c (gdb_demangle): Use std::string.
4846
4847 2017-09-29 Tom Tromey <tom@tromey.com>
4848
4849 * stack.c (parse_frame_specification): Use std::string
4850 (info_frame_command): Use gdb::unique_xmalloc_ptr.
4851
4852 2017-09-29 Tom Tromey <tom@tromey.com>
4853
4854 * tilegx-tdep.c (tilegx_push_dummy_call): Use gdb::byte_vector.
4855
4856 2017-09-29 Tom Tromey <tom@tromey.com>
4857
4858 * utils.c (vfprintf_maybe_filtered): Use std::string.
4859 (vfprintf_unfiltered): Likewise.
4860
4861 2017-09-29 Tom Tromey <tom@tromey.com>
4862
4863 * event-top.c (top_level_prompt): Return std::string.
4864 (display_gdb_prompt): Update.
4865
4866 2017-09-29 Tom Tromey <tom@tromey.com>
4867
4868 * unittests/common-utils-selftests.c (format): New function.
4869 (string_vprintf_tests): New function.
4870 (_initialize_common_utils_selftests): Register new tests.
4871 * common/common-utils.c (string_vprintf): New function.
4872 * common/common-utils.h (string_vprintf): Declare.
4873
4874 2017-09-29 Pedro Alves <palves@redhat.com>
4875
4876 * common/rsp-low.c (unpack_varlen_hex): Constify.
4877 * common/rsp-low.h (unpack_varlen_hex): Constify.
4878 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
4879 Constify.
4880 * remote.c (remote_set_permissions, read_ptid)
4881 (remote_current_thread, remote_get_threads_with_qthreadinfo)
4882 (remote_static_tracepoint_marker_at)
4883 (remote_static_tracepoint_markers_by_strid)
4884 (stop_reply_extract_thread, remote_parse_stop_reply): Constify.
4885 * tracepoint.c (parse_trace_status, parse_tracepoint_status)
4886 (parse_tracepoint_definition, parse_tsv_definition)
4887 (parse_static_tracepoint_marker_definition): Constify.
4888 * tracepoint.h (parse_static_tracepoint_marker_definition)
4889 (parse_trace_status, parse_tracepoint_status)
4890 (parse_tracepoint_definition, parse_tsv_definition): Constify.
4891
4892 2017-09-29 Pedro Alves <palves@redhat.com>
4893
4894 * remote.c (target_buf, target_buf_size): Delete.
4895 (remote_get_noisy_reply): Remove buf_p and sizeof_buf parameters.
4896 Use the connection's packet buffer instead.
4897 All callers adjusted.
4898 (_initialize_remote): Remove references to target_buf and
4899 target_buf_size.
4900
4901 2017-09-28 Pedro Alves <palves@redhat.com>
4902
4903 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
4904 unittests/common-utils-selftests.c.
4905 (SUBDIR_UNITTESTS_OBS): Add common-utils-selftests.o.
4906 (COMMON_OBS): Remove utils-selftests.o.
4907 * utils-selftests.c: Move to ...
4908 * unittests/common-utils-selftests.c: ... here and rename self
4909 test to "string_printf".
4910
4911 2017-09-28 Alexander Shaposhnikov <alexander.v.shaposhnikov@gmail.com> (tiny patch)
4912
4913 * dwarf2read.c (open_and_init_dwp_file): Protect against dwp_file
4914 having NULL cus or tus.
4915
4916 2017-09-27 Ulrich Weigand <uweigand@de.ibm.com>
4917
4918 * arm-tdep.c: (convert_from_extended): Remove.
4919 (convert_to_extended): Likewise.
4920 (arm_extract_return_value): Use convert_typed_floating.
4921 (arm_store_return_value): Likewise.
4922
4923 * sh-tdep.h (struct gdbarch_tdep): Add sh_littlebyte_bigword_type.
4924 * sh-tdep.c: Do not include "floatformat.h".
4925 (sh_littlebyte_bigword_type): New function.
4926 (sh_register_convert_to_virtual): Use convert_typed_floating.
4927 (sh_register_convert_to_raw): Likewise.
4928 * sh64-tdep.c: (struct gdbarch_tdep): Add sh_littlebyte_bigword_type.
4929 (sh64_littlebyte_bigword_type): New function.
4930 (sh64_extract_return_value): Use convert_typed_floating.
4931 (sh64_register_convert_to_virtual): Likewise.
4932 (sh64_register_convert_to_raw): Likewise.
4933
4934 2017-09-27 Ulrich Weigand <uweigand@de.ibm.com>
4935
4936 * doublest.h (floatformat_from_type): Move to gdbtypes.h.
4937 * doublest.c (floatformat_from_type): Move to gdbtypes.c.
4938
4939 * gdbtypes.h (union type_specific): Make field floatformat hold
4940 just a single struct floatformat, not an array.
4941 (floatformat_from_type): Move here.
4942 * gdbtypes.c (floatformat_from_type): Move here. Update to
4943 changed TYPE_FLOATFORMAT definition.
4944 (verify_floatformat): Update to changed TYPE_FLOATFORMAT.
4945 (recursive_dump_type): Likewise.
4946 (init_float_type): Install correct floatformat for byte order.
4947 (arch_float_type): Likewise.
4948
4949 2017-09-27 Ulrich Weigand <uweigand@de.ibm.com>
4950
4951 * gdbtypes.c (init_type): Change incoming argument from
4952 length-in-bytes to length-in-bits. Assert length is a
4953 multiple of TARGET_CHAR_BITS.
4954 (arch_type, arch_flags_type): Likewise.
4955 (init_integer_type): Update call to init_type.
4956 (init_character_type): Likewise.
4957 (init_boolean_type): Likewise.
4958 (init_float_type): Likewise.
4959 (init_decfloat_type): Likewise.
4960 (init_complex_type): Likewise.
4961 (init_pointer_type): Likewise.
4962 (objfile_type): Likewise.
4963 (arch_integer_type): Update call to arch_type.
4964 (arch_character_type): Likewise.
4965 (arch_boolean_type): Likewise.
4966 (arch_float_type): Likewise.
4967 (arch_decfloat_type): Likewise.
4968 (arch_complex_type): Likewise.
4969 (arch_pointer_type): Likewise.
4970 (gdbtypes_post_init): Likewise.
4971
4972 * dwarf2read.c (dwarf2_init_float_type): Update call to init_type.
4973 (read_base_type): Likewise.
4974 * mdebugread.c (basic_type): Likewise.
4975 * stabsread.c (dbx_init_float_type): Likewise.
4976 (rs6000_builtin_type): Likewise.
4977 (read_range_type): Likewise. Also, fix call to init_integer_type
4978 with erroneous length argument.
4979
4980 * ada-lang.c (ada_language_arch_info): Update call to arch_type.
4981 * d-lang.c (build_d_types): Likewise.
4982 * f-lang.c (build_fortran_types): Likewise.
4983 * go-lang.c (build_go_types): Likewise.
4984 * opencl-lang.c (build_opencl_types): Likewise.
4985 * jit.c (finalize_symtab): Likewise.
4986 * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
4987 (build_std_type_info_type): Likewise.
4988 * target-descriptions.c (tdesc_gdb_type): Likewise. Also,
4989 update call to arch_flags_type.
4990
4991 * linux-tdep.c (linux_get_siginfo_type_with_fields): Update call to
4992 arch_type.
4993 * fbsd-tdep.c (fbsd_get_siginfo_type): Likewise.
4994 * windows-tdep.c (windows_get_tlb_type): Likewise.
4995
4996 * avr-tdep.c (avr_gdbarch_init): Update call to arch_type.
4997 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
4998 * m32c-tdep.c (make_types): Likewise.
4999 * rl78-tdep.c (rl78_gdbarch_init): Likewise.
5000 (rl78_psw_type): Update call to arch_flags_type.
5001 * m68k-tdep.c (m68k_ps_type): Update call to arch_flags_type.
5002 * rx-tdep.c (rx_psw_type): Likewise.
5003 (rx_fpsw_type): Likewise.
5004 * sparc-tdep.c (sparc_psr_type): Likewise.
5005 (sparc_fsr_type): Likewise.
5006 * sparc64-tdep.c (sparc64_pstate_type): Likewise.
5007 (sparc64_ccr_type): Likewise.
5008 (sparc64_fsr_type): Likewise.
5009 (sparc64_fprs_type): Likewise.
5010
5011 2017-09-27 Tom Tromey <tom@tromey.com>
5012
5013 * findcmd.c (find_command): Constify.
5014
5015 2017-09-27 Tom Tromey <tom@tromey.com>
5016
5017 * ada-tasks.c (task_command_1, task_command): Constify.
5018
5019 2017-09-27 Tom Tromey <tom@tromey.com>
5020
5021 * symtab.c (maintenance_print_symbol_cache)
5022 (maintenance_flush_symbol_cache)
5023 (maintenance_print_symbol_cache_statistics): Constify.
5024
5025 2017-09-27 Tom Tromey <tom@tromey.com>
5026
5027 * inferior.c (detach_inferior_command, kill_inferior_command)
5028 (inferior_command): Constify.
5029
5030 2017-09-27 Tom Tromey <tom@tromey.com>
5031
5032 * regcache.c (regcache_print, maintenance_print_registers)
5033 (maintenance_print_raw_registers)
5034 (maintenance_print_cooked_registers)
5035 (maintenance_print_register_groups)
5036 (maintenance_print_remote_registers): Constify.
5037
5038 2017-09-27 Tom Tromey <tom@tromey.com>
5039
5040 * printcmd.c (map_display_numbers, undisplay_command)
5041 (enable_disable_display_command, enable_display_command)
5042 (disable_display_command): Constify.
5043
5044 2017-09-27 Tom Tromey <tom@tromey.com>
5045
5046 * breakpoint.h (delete_command): Don't declare.
5047 * breakpoint.c (delete_command, enable_once_command)
5048 (enable_count_command, enable_delete_command, breakpoint_1)
5049 (maintenance_info_breakpoints, stopin_command, stopat_command)
5050 (delete_command, delete_trace_command, save_breakpoints)
5051 (save_breakpoints_command, save_tracepoints_command): Constify.
5052
5053 2017-09-27 Tom Tromey <tom@tromey.com>
5054
5055 * macrocmd.c (macro_expand_command, macro_expand_once_command)
5056 (skip_ws, extract_identifier, macro_define_command)
5057 (macro_undef_command, macro_list_command): Constify.
5058
5059 2017-09-27 Tom Tromey <tom@tromey.com>
5060
5061 * infcmd.c (environment_info, set_environment_command)
5062 (unset_environment_command, path_info, info_proc_cmd_1)
5063 (info_proc_cmd_mappings, info_proc_cmd_stat)
5064 (info_proc_cmd_status, info_proc_cmd_cwd, info_proc_cmd_cmdline)
5065 (info_proc_cmd_exe, info_proc_cmd_all): Constify.
5066
5067 2017-09-27 Tom Tromey <tom@tromey.com>
5068
5069 * i386-tdep.c (i386_mpx_info_bounds, i386_mpx_set_bounds):
5070 Constify.
5071
5072 2017-09-27 Tom Tromey <tom@tromey.com>
5073
5074 * symfile-mem.c (add_symbol_file_from_memory_command): Constify.
5075
5076 2017-09-27 Tom Tromey <tom@tromey.com>
5077
5078 * demangle.c (demangle_command): Constify.
5079
5080 2017-09-27 Tom Tromey <tom@tromey.com>
5081
5082 * progspace.c (maintenance_info_program_spaces_command):
5083 Constify.
5084
5085 2017-09-27 Tom Tromey <tom@tromey.com>
5086
5087 * compile/compile.c (check_raw_argument, compile_file_command)
5088 (compile_code_command, compile_print_command): Constify.
5089
5090 2017-09-27 Tom Tromey <tom@tromey.com>
5091
5092 * reggroups.c (maintenance_print_reggroups): Constify.
5093
5094 2017-09-27 Tom Tromey <tom@tromey.com>
5095
5096 * dwarf2read.c (save_gdb_index_command): Constify.
5097
5098 2017-09-27 Tom Tromey <tom@tromey.com>
5099
5100 * stap-probe.c (info_probes_stap_command): Constify.
5101
5102 2017-09-27 Tom Tromey <tom@tromey.com>
5103
5104 * fork-child.c (unset_exec_wrapper_command): Constify.
5105
5106 2017-09-27 Tom Tromey <tom@tromey.com>
5107
5108 * btrace.c (get_uint, get_context_size, no_chunk)
5109 (maint_btrace_packet_history_cmd)
5110 (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
5111 (maint_info_btrace_cmd): Constify.
5112
5113 2017-09-27 Tom Tromey <tom@tromey.com>
5114
5115 * reverse.c (delete_bookmark_command): Constify.
5116
5117 2017-09-27 Tom Tromey <tom@tromey.com>
5118
5119 * remote.c (set_memory_packet_size)
5120 (set_memory_write_packet_size, show_memory_write_packet_size)
5121 (set_memory_read_packet_size, show_memory_read_packet_size)
5122 (compare_sections_command, packet_command, remote_put_command)
5123 (remote_get_command, remote_delete_command): Constify.
5124
5125 2017-09-27 Tom Tromey <tom@tromey.com>
5126
5127 * mips-tdep.c (show_mipsfpu_command, set_mipsfpu_single_command)
5128 (set_mipsfpu_double_command, set_mipsfpu_none_command)
5129 (set_mipsfpu_auto_command): Constify.
5130
5131 2017-09-27 Tom Tromey <tom@tromey.com>
5132
5133 * cli/cli-cmds.h (cd_command): Constify.
5134 * cli/cli-cmds.c (cd_command): Constify.
5135
5136 2017-09-27 Tom Tromey <tom@tromey.com>
5137
5138 * thread.c (thread_name_command, thread_find_command): Constify.
5139
5140 2017-09-27 Tom Tromey <tom@tromey.com>
5141
5142 * probe.c (enable_probes_command, disable_probes_command):
5143 Constify.
5144
5145 2017-09-27 Tom Tromey <tom@tromey.com>
5146
5147 * symfile.c (symbol_file_command): Constify.
5148 * gdbcore.h (deprecated_file_changed_hook): Constify.
5149 * exec.c (deprecated_file_changed_hook, exec_file_command)
5150 (file_command): Constify.
5151 * defs.h (symbol_file_command): Constify.
5152
5153 2017-09-27 Tom Tromey <tom@tromey.com>
5154
5155 * remote-fileio.c (set_system_call_allowed)
5156 (show_system_call_allowed): Constify.
5157
5158 2017-09-27 Tom Tromey <tom@tromey.com>
5159
5160 * tracepoint.c (delete_trace_variable_command)
5161 (tfind_end_command, tfind_start_command, tfind_pc_command)
5162 (tfind_tracepoint_command, tfind_line_command)
5163 (tfind_range_command, tfind_outside_command): Constify.
5164
5165 2017-09-27 Tom Tromey <tom@tromey.com>
5166
5167 * ax-gdb.c (maint_agent_printf_command, agent_command)
5168 (agent_eval_command): Constify.
5169
5170 2017-09-27 Tom Tromey <tom@tromey.com>
5171
5172 * tracepoint.c (info_scope_command): Constify.
5173 * python/python.c (gdbpy_decode_line): Constify.
5174 * python/py-breakpoint.c (bppy_init): Constify.
5175 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Constify.
5176 * location.h: (new_linespec_location)
5177 (string_to_event_location_basic, string_to_event_location):
5178 Constify.
5179 * location.c (new_linespec_location)
5180 (string_to_event_location_basic, string_to_event_location):
5181 Constify.
5182 * linespec.h (decode_line_with_current_source)
5183 (decode_line_with_last_displayed, linespec_lex_to_end): Constify.
5184 * linespec.c (linespec_lex_to_end)
5185 (decode_line_with_current_source)
5186 (decode_line_with_last_displayed): Constify.
5187 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x):
5188 Constify.
5189 * cli/cli-cmds.c (edit_command, list_command): Constify.
5190 * breakpoint.h (until_break_command, watch_command_wrapper)
5191 (awatch_command_wrapper, rwatch_command_wrapper)
5192 (init_ada_exception_breakpoint): Constify.
5193 * breakpoint.c (break_command_1, dprintf_command)
5194 (break_range_command, watch_command_wrapper)
5195 (rwatch_command_wrapper, awatch_command_wrapper)
5196 (until_break_command, init_ada_exception_breakpoint)
5197 (strace_marker_create_sals_from_location, trace_command)
5198 (ftrace_command, strace_command, struct tracepoint): Constify.
5199 * ax-gdb.c (agent_command_1): Constify.
5200 * ada-lang.c (ada_exception_sal): Constify.
5201
5202 2017-09-27 Tom Tromey <tom@tromey.com>
5203
5204 * record.c (cmd_record_delete, cmd_record_stop, cmd_record_save)
5205 (cmd_record_goto_begin, cmd_record_goto_end, get_insn_number)
5206 (get_context_size, no_chunk, get_insn_history_modifiers)
5207 (cmd_record_insn_history, get_call_history_modifiers)
5208 (cmd_record_call_history): Constify.
5209
5210 2017-09-27 Tom Tromey <tom@tromey.com>
5211
5212 * source.c (show_substitute_path_command)
5213 (unset_substitute_path_command, set_substitute_path_command):
5214 Constify.
5215
5216 2017-09-27 Tom Tromey <tom@tromey.com>
5217
5218 * typeprint.c (maintenance_print_type): Constify.
5219 * maint.c (maintenance_dump_me, maintenance_demangle)
5220 (maintenance_time_display, maintenance_info_sections)
5221 (maintenance_print_statistics, maintenance_deprecate)
5222 (maintenance_undeprecate): Constify.
5223 (maintenance_do_deprecate): Constify. Use std::string.
5224 (maintenance_selftest): Constify.
5225 * gdbtypes.h (maintenance_print_type): Constify.
5226
5227 2017-09-27 Tom Tromey <tom@tromey.com>
5228
5229 * hppa-tdep.c (unwind_command): Constify.
5230
5231 2017-09-27 Tom Tromey <tom@tromey.com>
5232
5233 * target-descriptions.c (unset_tdesc_filename_cmd)
5234 (maint_print_c_tdesc_cmd, maintenance_check_xml_descriptions):
5235 Constify.
5236
5237 2017-09-27 Tom Tromey <tom@tromey.com>
5238
5239 * dummy-frame.c (maintenance_print_dummy_frames): Constify.
5240
5241 2017-09-27 Tom Tromey <tom@tromey.com>
5242
5243 * tui/tui.c (tui_enable_command, tui_disable_command): Constify.
5244
5245 2017-09-27 Tom Tromey <tom@tromey.com>
5246
5247 * tui/tui-regs.c (tui_reg_command): Constify.
5248
5249 2017-09-27 Tom Tromey <tom@tromey.com>
5250
5251 * skip.c (skip_file_command, skip_function_command)
5252 (skip_enable_command, skip_disable_command, skip_delete_command):
5253 Constify.
5254
5255 2017-09-27 Tom Tromey <tom@tromey.com>
5256
5257 * record-btrace.c (cmd_record_btrace_bts_start)
5258 (cmd_record_btrace_pt_start): Constify.
5259
5260 2017-09-27 Tom Tromey <tom@tromey.com>
5261
5262 * symmisc.c (maintenance_print_symbols)
5263 (maintenance_print_msymbols, maintenance_print_objfiles)
5264 (maintenance_info_symtabs, maintenance_check_symtabs)
5265 (maintenance_expand_symtabs, maintenance_info_line_tables):
5266 Constify.
5267
5268 2017-09-27 Tom Tromey <tom@tromey.com>
5269
5270 * top.c (new_ui_command): Constify.
5271
5272 2017-09-27 Tom Tromey <tom@tromey.com>
5273
5274 * symfile.c (add_symbol_file_command)
5275 (remove_symbol_file_command, list_overlays_command)
5276 (map_overlay_command, unmap_overlay_command)
5277 (overlay_auto_command, overlay_manual_command)
5278 (overlay_off_command, overlay_load_command): Constify.
5279
5280 2017-09-27 Tom Tromey <tom@tromey.com>
5281
5282 * spu-tdep.c (info_spu_event_command, info_spu_signal_command)
5283 (info_spu_mailbox_command, info_spu_dma_command)
5284 (info_spu_proxydma_command): Constify.
5285
5286 2017-09-27 Tom Tromey <tom@tromey.com>
5287
5288 * cli/cli-logging.c (set_logging_on, set_logging_off): Constify.
5289
5290 2017-09-27 Tom Tromey <tom@tromey.com>
5291
5292 * cli/cli-script.c (user_defined_command): Constify.
5293
5294 2017-09-27 Tom Tromey <tom@tromey.com>
5295
5296 * cli/cli-dump.c (dump_memory_command, dump_value_command)
5297 (dump_srec_memory, dump_srec_value, dump_ihex_memory)
5298 (dump_ihex_value, dump_verilog_memory, dump_verilog_value)
5299 (dump_tekhex_memory, dump_tekhex_value, dump_binary_memory)
5300 (dump_binary_value, append_binary_memory, append_binary_value):
5301 Constify.
5302 (struct dump_context) <func>: Constify.
5303 (add_dump_command): Update.
5304
5305 2017-09-27 Tom Tromey <tom@tromey.com>
5306
5307 * cli/cli-cmds.c (show_version, show_configuration)
5308 (source_command, show_user): Constify.
5309
5310 2017-09-27 Tom Tromey <tom@tromey.com>
5311
5312 * target.c (maintenance_print_target_stack): Constify.
5313
5314 2017-09-27 Tom Tromey <tom@tromey.com>
5315
5316 * interps.c (interpreter_exec_cmd): Constify.
5317
5318 2017-09-27 Tom Tromey <tom@tromey.com>
5319
5320 * record-full.c (cmd_record_full_restore): Constify.
5321
5322 2017-09-27 Tom Tromey <tom@tromey.com>
5323
5324 * memattr.c (enable_mem_command, disable_mem_command)
5325 (delete_mem_command): Constify.
5326
5327 2017-09-27 Tom Tromey <tom@tromey.com>
5328
5329 * value.c (show_convenience): Constify.
5330
5331 2017-09-27 Tom Tromey <tom@tromey.com>
5332
5333 * gdbcore.h (core_file_command): Update.
5334 * corefile.c (core_file_command): Constify.
5335
5336 2017-09-27 Tom Tromey <tom@tromey.com>
5337
5338 * user-regs.c (maintenance_print_user_registers): Constify.
5339
5340 2017-09-27 Tom Tromey <tom@tromey.com>
5341
5342 * cp-namespace.c (maintenance_cplus_namespace): Constify.
5343
5344 2017-09-27 Tom Tromey <tom@tromey.com>
5345
5346 * cp-support.c (first_component_command): Constify.
5347
5348 2017-09-27 Tom Tromey <tom@tromey.com>
5349
5350 * psymtab.c (maintenance_print_psymbols)
5351 (maintenance_info_psymtabs, maintenance_check_psymtabs):
5352 Constify.
5353
5354 2017-09-27 Tom Tromey <tom@tromey.com>
5355
5356 * windows-tdep.c (display_tib): Constify.
5357
5358 2017-09-27 Tom Tromey <tom@tromey.com>
5359
5360 * linux-fork.c (delete_checkpoint_command)
5361 (detach_checkpoint_command): Constify.
5362
5363 2017-09-27 Tom Tromey <tom@tromey.com>
5364
5365 * cp-abi.c (set_cp_abi_cmd, show_cp_abi_cmd): Constify.
5366
5367 2017-09-27 Tom Tromey <tom@tromey.com>
5368
5369 * arc-tdep.c (dump_arc_instruction_command): Constify.
5370
5371 2017-09-27 Tom Tromey <tom@tromey.com>
5372
5373 * valprint.c (set_radix, show_radix): Constify.
5374
5375 2017-09-27 Tom Tromey <tom@tromey.com>
5376
5377 * dtrace-probe.c (info_probes_dtrace_command): Constify.
5378
5379 2017-09-27 Tom Tromey <tom@tromey.com>
5380
5381 * command.h (not_just_help_class_command): Update.
5382 * cli/cli-decode.h (not_just_help_class_command): Update.
5383 * cli/cli-decode.c (not_just_help_class_command): Constify.
5384
5385 2017-09-27 Tom Tromey <tom@tromey.com>
5386
5387 * gdb_bfd.c (maintenance_info_bfds): Constify.
5388
5389 2017-09-27 Tom Tromey <tom@tromey.com>
5390
5391 * cli/cli-decode.c (add_cmd, set_cmd_cfunc): New function
5392 overloads.
5393 (do_add_cmd): Rename from add_cmd. Don't call set_cmd_cfunc.
5394 (do_const_cfunc): New function.
5395 (cmd_cfunc_eq): New overload.
5396 (cli_user_command_p): Check do_const_cfunc.
5397 * cli/cli-decode.h (struct cmd_list_element) <function>: New field
5398 const_cfunc.
5399 * command.h (add_cmd): Add const overload and no-function
5400 overload.
5401 (set_cmd_cfunc): Add const overload.
5402 (cmd_const_cfunc_ftype): Declare.
5403 (cmd_cfunc_eq): Add const overload.
5404 * breakpoint.c, cli-cmds.c, cli-dump.c, guile/scm-cmd.c,
5405 python/py-cmd.c, target.c, tracepoint.c: Use no-function add_cmd
5406 overload.
5407
5408 2017-09-27 Tom Tromey <tom@tromey.com>
5409
5410 * macroexp.c (get_next_token_for_substitution): New function.
5411 (substitute_args): Call it. Check for __VA_OPT__.
5412
5413 2017-09-26 Walfred Tedeschi <walfred.tedeschi@intel.com>
5414 Pedro Alves <palves@redhat.com>
5415
5416 * dwarf2read.c (dwarf2_cu): Remove field producer_is_icc and add
5417 producer_is_icc_lt_14.
5418 (producer_is_icc_lt_14): New function.
5419 (check_producer): Add code for checking version of ICC.
5420 (producer_is_icc): Move to producer.c.
5421 (read_structure_type): Restrict ICC workaround to ICC<14.
5422 * producer.c: Include selftest.h.
5423 (producer_is_icc, producer_parsing_tests, _initialize_producer):
5424 New functions.
5425 * producer.h (producer_is_icc): New declaration.
5426
5427 2017-09-26 Walfred Tedeschi <walfred.tedeschi@intel.com>
5428
5429 * Makefile.in (SFILES): Add producer.c.
5430 (COMMON_OBS): Add producer.o
5431 * amd64-tdep.c (producer.h): Add new include.
5432 * dwarf2read.c (producer.h): Add new include.
5433 * producer.c: New file.
5434 * producer.h: New file.
5435 * utils.c (producer_is_gcc, producer_is_gcc_ge_4): Move to
5436 producer.c.
5437 * utils.h (producer_is_gcc, producer_is_gcc_ge_4): Move to
5438 producer.h.
5439
5440 2017-09-26 Matthias Klose <doko@ubuntu.com>
5441
5442 * configure.ac: Search ncursesw before ncurses.
5443 Check ncursesw/ncurses.h before ncurses/ncurses.h.
5444 * gdb_curses.h: Include <ncursesw/ncurses.h>
5445 * config.in, configure: Regenerate.
5446
5447 2017-09-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5448
5449 PR gdb/22185
5450 * configure.host <*-*-solaris2.[01], *-*-solaris2.[2-9]*>: Mark as
5451 obsolete.
5452 Use gdb_host sol2 for i[34567]86-*-solaris2*, x86_64-*-solaris2*.
5453 Remove i386sol2 support.
5454 * configure.nat <i386sol2>: Remove.
5455 <sol2-64>: Fold into ...
5456 <sol2>: ... this.
5457 Move common settings to default section.
5458 Add sol-thread.o.
5459 * configure.tgt <i[34567]86-*-solaris2.1[0-9]*,
5460 x86_64-*-solaris2.1[0-9]*>: Rename to ...
5461 <i[34567]86-*-solaris2*, x86_64-*-solaris2*>: ... this.
5462 <i[34567]86-*-solaris*>: Remove.
5463 <sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*>: Remove.
5464
5465 * configure.ac: Remove wctype in libw check.
5466 (_MSE_INT_H): Don't define on Solaris 7-9.
5467 <solaris*>: Remove libthread_db.so.1 check.
5468 * configure: Regenerate.
5469 * config.in: Regenerate.
5470
5471 * proc-service.c: Remove PROC_SERVICE_IS_OLD handling.
5472 (gdb_ps_prochandle_t, gdb_ps_read_buf_t, gdb_ps_write_buf_t)
5473 (gdb_ps_size_t): Remove.
5474 Use base types in users.
5475 * sol-thread.c: Likewise, also for gdb_ps_addr_t.
5476
5477 * NEWS (Changes since GDB 8.0): Document Solaris 2.0-9 removal.
5478
5479 2017-09-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5480
5481 PR build/22206
5482 * sparc64-tdep.c (adi_tag_fd): Print pid as long.
5483 (adi_is_addr_mapped): Likewise.
5484 (PSR_ICC): Don't redefine.
5485 (PSR_IMPL): Likewise.
5486
5487 2017-09-25 Tom Tromey <tom@tromey.com>
5488
5489 * regcache.c (regcache::dump): Use string_printf.
5490
5491 2017-09-25 Tom Tromey <tom@tromey.com>
5492
5493 * regcache.c (class regcache_invalidator): New.
5494 (struct register_to_invalidate): Remove.
5495 (make_cleanup_regcache_invalidate): Remove.
5496 (regcache::raw_write): Use regcache_invalidator.
5497
5498 2017-09-25 Tom Tromey <tom@tromey.com>
5499
5500 * spu-tdep.c (spu2ppu_sniffer): Update.
5501 * regcache.h (make_cleanup_regcache_xfree): Don't declare.
5502 * regcache.c (do_regcache_xfree, make_cleanup_regcache_xfree):
5503 Remove.
5504 * ppc-linux-tdep.c (ppu2spu_sniffer): Update.
5505 * mi/mi-main.c (mi_cmd_data_list_changed_registers): Update.
5506 * frame.h (frame_save_as_regcache): Return std::unique_ptr.
5507 * frame.c (frame_save_as_regcache): Return std::unique_ptr.
5508 (frame_pop): Update.
5509
5510 2017-09-25 Tom Tromey <tom@tromey.com>
5511
5512 * spu-tdep.c (spu2ppu_dealloc_cache): Use delete.
5513 * regcache.h (regcache_xfree): Don't declare.
5514 * regcache.c (regcache_xfree): Remove.
5515 (do_regcache_xfree): Use delete.
5516 * ppc-linux-tdep.c (ppu2spu_dealloc_cache): Use delete.
5517 * linux-fork.c (free_fork): Use delete.
5518 (fork_save_infrun_state): Likewise.
5519 * jit.c (jit_dealloc_cache): Use delete.
5520 * infrun.c (discard_infcall_suspend_state): Use delete.
5521
5522 2017-09-25 Tom Tromey <tom@tromey.com>
5523
5524 * regcache.h (regcache_xmalloc): Don't declare.
5525 (regcache_raw_set_cached_value): Update comment.
5526 * regcache.c (regcache_xmalloc): Remove.
5527 * ppc-linux-tdep.c (ppu2spu_sniffer): Use new.
5528 * jit.c (jit_frame_sniffer): Use new.
5529 * frame.c (frame_save_as_regcache): Use new.
5530
5531 2017-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
5532
5533 * NEWS: Advertise support for guarded-storage registers on IBM z.
5534
5535 2017-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
5536
5537 * s390-linux-nat.c (have_regset_gs): New static variable.
5538 (s390_linux_fetch_inferior_registers): Handle guarded-storage
5539 control block and guarded-storage broadcast control regsets.
5540 (s390_read_description): Detect whether the target has
5541 guarded-storage support, return appropriate tdesc.
5542 * s390-linux-tdep.c (features/s390-gs-linux64.c): New include.
5543 (features/s390x-gs-linux64.c): Likewise.
5544 (struct gdbarch_tdep) <have_gs>: New field.
5545 (s390_regmap_gs, s390_regmap_gsbc, s390_gs_regset)
5546 (s390_gsbc_regset): New variables.
5547 (s390_iterate_over_regset_sections): Iterate over s390_gs_regset
5548 and s390_gsbc_regset, if applicable.
5549 (s390_core_read_description): Check whether core file was from a
5550 target with guarded-storage support; include appropriate regsets.
5551 (s390_gdbarch_init): Add registers for guarded-storage support.
5552 (_initialize_s390_tdep): Initialize new target descriptions that
5553 include registers for guarded-storage support.
5554 * s390-linux-tdep.h (HWCAP_S390_GS, S390_GSD_REGNUM)
5555 (S390_GSSM_REGNUM, S390_GSEPLA_REGNUM)
5556 (S390_BC_GSD_REGNUM, S390_BC_GSSM_REGNUM): New defines.
5557 (S390_NUM_REGS): Adjust macro definition.
5558 (s390_gs_regset, s390_gsbc_regset, tdesc_s390_gs_linux64)
5559 (tdesc_s390x_gs_linux64): New declarations.
5560
5561 2017-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
5562
5563 * features/s390-gs-linux64.xml: New file.
5564 * features/s390-gs.xml: New file.
5565 * features/s390-gsbc.xml: New file.
5566 * features/s390x-gs-linux64.xml: New file.
5567 * features/Makefile (WHICH): Add s390-gs-linux64 and
5568 s390x-gs-linux64.
5569 (s390-gs-linux64-expedite, s390x-gs-linux64-expedite): New macros.
5570 (XMLTOC): Add s390-gs-linux64.xml and s390x-linux64.xml.
5571 * features/s390-gs-linux64.c: New generated file.
5572 * features/s390x-gs-linux64.c: New file.
5573 * regformats/s390-gs-linux64.dat: New file.
5574 * regformats/s390x-gs-linux64.dat: New file.
5575
5576 2017-09-23 Tom Tromey <tom@tromey.com>
5577
5578 * defs.h (make_cleanup_override_quit_handler): Don't declare.
5579
5580 2017-09-22 Tom Tromey <tom@tromey.com>
5581
5582 * utils.c (class scoped_input_handler) <m_quit_handler>: Change
5583 type to scoped_restore_tmpl.
5584 <scoped_input_handler>: Initialize m_quit_handler directly.
5585
5586 2017-09-22 Sergio Durigan Junior <sergiodj@redhat.com>
5587
5588 * cli/cli-cmds.c (pwd_command): Use "getcwd (NULL, 0)".
5589 (cd_command): Likewise. Free "current_directory" before
5590 assigning to it.
5591 * main.c (captured_main_1): Use "getcwd (NULL, 0)".
5592 * mi/mi-cmd-env.c (mi_cmd_env_pwd): Likewise.
5593 * top.c (gdb_dirbuf): Remove global declaration.
5594 * top.h (gdb_dirbuf): Likewise.
5595
5596 2017-09-22 Sergio Durigan Junior <sergiodj@redhat.com>
5597
5598 * gnulib/aclocal.m4: Regenerate.
5599 * gnulib/config.in: Regenerate.
5600 * gnulib/configure: Regenerate.
5601 * gnulib/import/Makefile.am: Regenerate.
5602 * gnulib/import/Makefile.in: Regenerate.
5603 * gnulib/import/assure.h: New file.
5604 * gnulib/import/at-func.c: Likewise
5605 * gnulib/import/chdir-long.c: New file.
5606 * gnulib/import/chdir-long.h: New file.
5607 * gnulib/import/cloexec.c: New file.
5608 * gnulib/import/cloexec.h: New file.
5609 * gnulib/import/close.c: New file.
5610 * gnulib/import/closedir.c: New file.
5611 * gnulib/import/dirent-private.h: New file.
5612 * gnulib/import/dup-safer.c: New file.
5613 * gnulib/import/dup.c: New file.
5614 * gnulib/import/dup2.c: New file.
5615 * gnulib/import/error.c: New file.
5616 * gnulib/import/error.h: New file.
5617 * gnulib/import/exitfail.c: New file.
5618 * gnulib/import/exitfail.h: New file.
5619 * gnulib/import/fchdir.c: New file.
5620 * gnulib/import/fcntl.c: New file.
5621 * gnulib/import/fcntl.in.h: New file.
5622 * gnulib/import/fd-hook.c: New file.
5623 * gnulib/import/fd-hook.h: New file.
5624 * gnulib/import/fd-safer.c: New file.
5625 * gnulib/import/fdopendir.c: New file.
5626 * gnulib/import/filename.h: New file.
5627 * gnulib/import/filenamecat-lgpl.c: New file.
5628 * gnulib/import/filenamecat.h: New file.
5629 * gnulib/import/fstat.c: New file.
5630 * gnulib/import/fstatat.c: New file.
5631 * gnulib/import/getcwd-lgpl.c: New file.
5632 * gnulib/import/getcwd.c: New file.
5633 * gnulib/import/getdtablesize.c: New file.
5634 * gnulib/import/getlogin_r.c: New file.
5635 * gnulib/import/getprogname.c: New file.
5636 * gnulib/import/getprogname.h: New file.
5637 * gnulib/import/gettext.h: New file.
5638 * gnulib/import/glob-libc.h: New file.
5639 * gnulib/import/glob.c: New file.
5640 * gnulib/import/glob.in.h: New file.
5641 * gnulib/import/intprops.h: New file.
5642 * gnulib/import/m4/chdir-long.m4: New file.
5643 * gnulib/import/m4/close.m4: New file.
5644 * gnulib/import/m4/closedir.m4: New file.
5645 * gnulib/import/m4/d-ino.m4: New file.
5646 * gnulib/import/m4/d-type.m4: New file.
5647 * gnulib/import/m4/dup.m4: New file.
5648 * gnulib/import/m4/dup2.m4: New file.
5649 * gnulib/import/m4/error.m4: New file.
5650 * gnulib/import/m4/fchdir.m4: New file.
5651 * gnulib/import/m4/fcntl.m4: New file.
5652 * gnulib/import/m4/fcntl_h.m4: New file.
5653 * gnulib/import/m4/fdopendir.m4: New file.
5654 * gnulib/import/m4/filenamecat.m4: New file.
5655 * gnulib/import/m4/fstat.m4: New file.
5656 * gnulib/import/m4/fstatat.m4: New file.
5657 * gnulib/import/m4/getcwd-abort-bug.m4: New file.
5658 * gnulib/import/m4/getcwd-path-max.m4: New file.
5659 * gnulib/import/m4/getcwd.m4: New file.
5660 * gnulib/import/m4/getdtablesize.m4: New file.
5661 * gnulib/import/m4/getlogin_r.m4: New file.
5662 * gnulib/import/m4/getprogname.m4: New file.
5663 * gnulib/import/m4/glob.m4: New file.
5664 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
5665 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
5666 * gnulib/import/m4/mempcpy.m4: New file.
5667 * gnulib/import/m4/memrchr.m4: New file.
5668 * gnulib/import/m4/mode_t.m4: New file.
5669 * gnulib/import/m4/msvc-inval.m4: New file.
5670 * gnulib/import/m4/msvc-nothrow.m4: New file.
5671 * gnulib/import/m4/open.m4: New file.
5672 * gnulib/import/m4/openat.m4: New file.
5673 * gnulib/import/m4/opendir.m4: New file.
5674 * gnulib/import/m4/readdir.m4: New file.
5675 * gnulib/import/m4/realloc.m4: New file.
5676 * gnulib/import/m4/rewinddir.m4: New file.
5677 * gnulib/import/m4/save-cwd.m4: New file.
5678 * gnulib/import/m4/strdup.m4: New file.
5679 * gnulib/import/m4/strerror.m4: New file.
5680 * gnulib/import/m4/unistd-safer.m4: New file.
5681 * gnulib/import/mempcpy.c: New file.
5682 * gnulib/import/memrchr.c: New file.
5683 * gnulib/import/msvc-inval.c: New file.
5684 * gnulib/import/msvc-inval.h: New file.
5685 * gnulib/import/msvc-nothrow.c: New file.
5686 * gnulib/import/msvc-nothrow.h: New file.
5687 * gnulib/import/open.c: New file.
5688 * gnulib/import/openat-die.c: New file.
5689 * gnulib/import/openat-priv.h: New file.
5690 * gnulib/import/openat-proc.c: New file.
5691 * gnulib/import/openat.c: New file.
5692 * gnulib/import/openat.h: New file.
5693 * gnulib/import/opendir.c: New file.
5694 * gnulib/import/pipe-safer.c: New file.
5695 * gnulib/import/readdir.c: New file.
5696 * gnulib/import/realloc.c: New file.
5697 * gnulib/import/rewinddir.c: New file.
5698 * gnulib/import/save-cwd.c: New file.
5699 * gnulib/import/save-cwd.h: New file.
5700 * gnulib/import/strdup.c: New file.
5701 * gnulib/import/strerror-override.c: New file.
5702 * gnulib/import/strerror-override.h: New file.
5703 * gnulib/import/strerror.c: New file.
5704 * gnulib/import/unistd--.h: New file.
5705 * gnulib/import/unistd-safer.h: New file.
5706 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
5707 "getcwd" and "glob".
5708 * ser-tcp.c: Undefine "close" before redefining it.
5709
5710 2017-09-21 Simon Marchi <simon.marchi@ericsson.com>
5711
5712 * guile/scm-value.c (gdbscm_value_address): Initialize address,
5713 get rid of res_val.
5714
5715 2017-09-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5716
5717 * configure.nat <i386sol2,i386>: Add fork-inferior.o to NATDEPFILES.
5718 <sol2,sparc>: Likewise.
5719 <sol2-64,i386>: Likewise.
5720
5721 * warning.m4 (AM_GDB_WARNINGS): Disable -Wunknown-pragmas,
5722 -Wdeprecated-declarations on *-*-solaris*.
5723 * configure: Regenerate.
5724
5725 * procfs.c: Include "nat/inferior.h".
5726 (procfs_info_proc): Fix typo.
5727
5728 2017-09-21 Kevin Buettner <kevinb@redhat.com>
5729
5730 * remote.c (vector): Include.
5731 (struct private_thread_info): Add field, thread_handle.
5732 (free_private_thread_info): Deallocate storage associated with
5733 thread handle.
5734 (get_private_info_thread): Initialize `thread_handle' field.
5735 (struct thread_item): Add field, thread_handle.
5736 (clear_threads_listing_context): Deallocate storage associated
5737 with thread handle.
5738 (start_thread): Add support for "handle" attribute.
5739 (thread_attributes): Add "handle".
5740 (remote_get_threads_with_qthreadinfo): Initialize thread_handle
5741 field.
5742 (remote_update_thread_list): Update thread_handle.
5743 (remote_thread_handle_to_thread_info): New function.
5744 (init_remote_ops): Initialize to_thread_handle_to_thread_info.
5745
5746 2017-09-21 Kevin Buettner <kevinb@redhat.com>
5747
5748 * python/py-inferior.c (gdbpy_thread_from_thread_handle): New
5749 function.
5750 (inferior_object_methods): Add gdbpy_thread_from_thread_handle.
5751 * python/python-internal.h (thread_object_type): Declare.
5752
5753 2017-09-21 Kevin Buettner <kevinb@redhat.com>
5754
5755 * target.h (struct target_ops): Add to_thread_handle_to_thread_info.
5756 (target_thread_handle_to_thread_info): Declare.
5757 * target.c (target_thread_handle_to_thread_info): New function.
5758 * target-delegates.c: Regenerate.
5759 * gdbthread.h (find_thread_by_handle): Declare.
5760 * thread.c (find_thread_by_handle): New function.
5761 * linux-thread-db.c (thread_db_thread_handle_to_thread_info): New
5762 function.
5763 (init_thread_db_ops): Register thread_db_thread_handle_to_thread_info.
5764
5765 2017-09-21 Simon Marchi <simon.marchi@ericsson.com>
5766
5767 * nat/linux-waitpid.c (linux_debug): Add ATTRIBUTE_PRINTF.
5768
5769 2017-09-21 Simon Marchi <simon.marchi@ericsson.com>
5770
5771 * microblaze-tdep.c (microblaze_debug): Add ATTRIBUTE_PRINTF.
5772
5773 2017-09-21 Yao Qi <yao.qi@linaro.org>
5774
5775 * configure.tgt (aarch64*-*-freebsd*): Add fbsd-tdep.o solib-svr4.o
5776 to gdb_target_obs.
5777
5778 2017-09-20 Tom Tromey <tom@tromey.com>
5779
5780 * breakpoint.c (struct counted_command_line): Remove.
5781 (breakpoint_commands): Update.
5782 (alloc_counted_command_line, incref_counted_command_line)
5783 (decref_counted_command_line, do_cleanup_counted_command_line)
5784 (make_cleanup_decref_counted_command_line): Remove.
5785 (breakpoint_set_commands, commands_command_1, ~bpstats, bpstats)
5786 (bpstat_clear_actions, bpstat_do_actions_1, watchpoint_check)
5787 (bpstat_stop_status, print_one_breakpoint_location, ~breakpoint)
5788 (save_breakpoints): Update.
5789 * breakpoint.h (counted_command_line): Now a typedef to
5790 shared_ptr.
5791 (struct breakpoint) <commands>: Now a counted_command_line.
5792 (struct bpstats) <command>: Likewise.
5793
5794 2017-09-20 Tom Tromey <tom@tromey.com>
5795
5796 * breakpoint.c (struct commands_info, do_map_commands_command):
5797 Remove.
5798 (commands_command_1): Update.
5799 (iterate_over_related_breakpoints): Take a function_view.
5800 (do_delete_breakpoint, do_map_delete_breakpoint): Remove.
5801 (delete_command): Update.
5802 (map_breakpoint_numbers): Take a function_view.
5803 (do_disable_breakpoint, do_map_delete_breakpoint): Remove.
5804 (disable_command): Update.
5805 (do_enable_breakpoint, do_map_enable_breakpoint): Remove.
5806 (enable_command): Update.
5807 (struct disp_data, do_enable_breakpoint_disp)
5808 (do_map_enable_once_breakpoint, do_map_enable_count_breakpoint)
5809 (do_map_enable_delete_breakpoint): Remove.
5810 (enable_once_command, enable_count_command, enable_delete_command)
5811 (delete_trace_variable_command): Update.
5812
5813 2017-09-20 Tom Tromey <tom@tromey.com>
5814
5815 * breakpoint.c (~bpstats): Rename from bpstat_free. Update.
5816 (bpstat_clear): Use delete.
5817 (bpstats): New constructors.
5818 (bpstat_copy, bpstat_stop_status): Use new.
5819 (dprintf_after_condition_true): Update.
5820 * breakpoint.h (bpstats::bpstats): Add constructors.
5821 (bpstats::~bpstats): Add destructor.
5822
5823 2017-09-20 Pedro Alves <palves@redhat.com>
5824
5825 * eval.c (make_params): Delete, refactored as ...
5826 (class fake_method): ... this new type's ctor.
5827 (fake_method::~fake_method): New.
5828 (evaluate_subexp_standard): Use 'fake_method'.
5829
5830 2017-09-20 Tom Tromey <tom@tromey.com>
5831
5832 * windows-nat.c (get_windows_debug_event, windows_wait)
5833 (do_initial_windows_stuff, windows_attach): Update.
5834 * utils.c (vwarning, internal_vproblem): Update.
5835 (ui_unregister_input_event_handler_cleanup)
5836 (prepare_to_handle_input): Remove.
5837 (class scoped_input_handler): New.
5838 (defaulted_query, prompt_for_continue): Update.
5839 * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
5840 Update.
5841 * top.c (undo_terminal_modifications_before_exit): Update.
5842 * target/target.h (target_terminal_init, target_terminal_inferior)
5843 (target_terminal_ours): Don't declare.
5844 (class target_terminal): New.
5845 * target.h (target_terminal_is_inferior, target_terminal_is_ours)
5846 (target_terminal_ours_for_output)
5847 (make_cleanup_restore_target_terminal): Don't declare.
5848 (target_terminal_info): Remove.
5849 * target.c (enum terminal_state, terminal_state): Remove.
5850 (target_terminal::terminal_state): Define.
5851 (target_terminal::init): Rename from target_terminal_init.
5852 (target_terminal::inferior): Rename from
5853 target_terminal_inferior.
5854 (target_terminal::ours): Rename from target_terminal_ours.
5855 (target_terminal::ours_for_output): Rename from
5856 target_terminal_ours_for_output.
5857 (target_terminal::info): New method.
5858 (cleanup_restore_target_terminal)
5859 (make_cleanup_restore_target_terminal): Remove.
5860 * solib.c (handle_solib_event): Update.
5861 * remote.c (remote_serial_quit_handler): Update.
5862 (remote_terminal_inferior, remote_wait_as): Update.
5863 * record-full.c (record_full_wait_1): Update.
5864 * nto-procfs.c (procfs_create_inferior): Update.
5865 * nat/fork-inferior.c (startup_inferior): Update.
5866 * mi/mi-interp.c (mi_new_thread, mi_thread_exit)
5867 (mi_record_changed, mi_inferior_added, mi_inferior_appeared)
5868 (mi_inferior_exit, mi_inferior_removed, mi_traceframe_changed)
5869 (mi_tsv_created, mi_tsv_deleted, mi_tsv_modified)
5870 (mi_breakpoint_created, mi_breakpoint_deleted)
5871 (mi_breakpoint_modified, mi_on_resume, mi_solib_loaded)
5872 (mi_solib_unloaded, mi_command_param_changed, mi_memory_changed)
5873 (mi_user_selected_context_changed, report_initial_inferior):
5874 Update.
5875 * linux-nat.c (linux_nat_attach, linux_nat_terminal_ours)
5876 (linux_nat_terminal_inferior): Update.
5877 * infrun.c (follow_fork_inferior)
5878 (handle_vfork_child_exec_or_exit, do_target_resume)
5879 (check_curr_ui_sync_execution_done, handle_inferior_event_1)
5880 (handle_signal_stop, maybe_remove_breakpoints, normal_stop):
5881 Update.
5882 * inflow.c (child_terminal_init, info_terminal_command): Update.
5883 * infcmd.c (post_create_inferior, continue_1, prepare_one_step)
5884 (attach_command): Update.
5885 * infcall.c (call_thread_fsm_should_stop): Update.
5886 * gnu-nat.c (gnu_attach): Update.
5887 * extension.c (struct active_ext_lang_state)
5888 (restore_active_ext_lang): Update.
5889 * exceptions.c (print_flush): Update.
5890 * event-top.c (async_enable_stdin, default_quit_handler): Update.
5891 (struct quit_handler_cleanup_data, restore_quit_handler)
5892 (restore_quit_handler_dtor, make_cleanup_override_quit_handler):
5893 Remove.
5894 * cp-support.c (gdb_demangle): Update.
5895 * breakpoint.c (update_inserted_breakpoint_locations)
5896 (insert_breakpoint_locations, handle_jit_event)
5897 (disable_breakpoints_in_unloaded_shlib): Update.
5898 * annotate.c (annotate_breakpoints_invalid)
5899 (annotate_frames_invalid): Update.
5900
5901 2017-09-20 Tom Tromey <tom@tromey.com>
5902
5903 * main.c (catch_command_errors): Rename from
5904 catch_command_errors_const.
5905 (captured_main_1): Update.
5906
5907 2017-09-20 Pedro Alves <palves@redhat.com>
5908
5909 * cli/cli-cmds.c (list_command): Use print_sal_location.
5910 (print_sal_location): New function.
5911 (ambiguous_line_spec): Use print_sal_location.
5912 * linespec.c (symbol_to_sal): Record the symbol in the sal.
5913 * symtab.c (find_function_start_sal): Likewise.
5914 * symtab.h (symtab_and_line::symbol): New field.
5915
5916 2017-09-20 Pedro Alves <palves@redhat.com>
5917
5918 * linespec.c (minsym_found): Handle non-text minsyms.
5919 (symbol_to_sal): Record a sal.pc for non-block, non-label symbols.
5920
5921 2017-09-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
5922
5923 * features/Makefile (i386-avx-mpx-avx512-pku.dat): Add missing
5924 backslash.
5925
5926 2017-09-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
5927
5928 * gdb.arch/i386-avx512.c (move_zmm_data_to_reg): Use
5929 vmovups instead vmovaps.
5930 (move_zmm_data_to_memory): Use vmovups instead vmovaps.
5931
5932 2017-09-19 John Baldwin <jhb@FreeBSD.org>
5933
5934 * NEWS (Changes since GDB 8.0): Add starti.
5935 * infcmd.c (enum run_break): New.
5936 (run_command_1): Queue pending event for RUN_STOP_AT_FIRST_INSN
5937 case.
5938 (run_command): Use enum run_how.
5939 (start_command): Likewise.
5940 (starti_command): New function.
5941 (RUN_ARGS_HELP): New macro.
5942 (_initialize_infcmd): Use RUN_ARGS_HELP for run and start
5943 commands. Add starti command.
5944
5945 2017-09-19 Yao Qi <yao.qi@linaro.org>
5946
5947 * Makefile.in (monitor.o): Remove the rule.
5948
5949 2017-09-19 Yao Qi <yao.qi@linaro.org>
5950
5951 * annotate.h (struct annotate_arg_emitter): Use
5952 DISABLE_COPY_AND_ASSIGN.
5953 * common/refcounted-object.h (refcounted_object): Likewise.
5954 * completer.h (struct completion_result): Likewise.
5955 * dwarf2read.c (struct dwarf2_per_objfile): Likewise.
5956 * filename-seen-cache.h (filename_seen_cache): Likewise.
5957 * gdbcore.h (thread_section_name): Likewise.
5958 * gdb_regex.h (compiled_regex): Likewise.
5959 * gdbthread.h (scoped_restore_current_thread): Likewise.
5960 * inferior.h (scoped_restore_current_inferior): Likewise.
5961 * jit.c (jit_reader): Likewise.
5962 * linespec.h (struct linespec_result): Likewise.
5963 * mi/mi-parse.h (struct mi_parse): Likewise.
5964 * nat/fork-inferior.c (execv_argv): Likewise.
5965 * progspace.h (scoped_restore_current_program_space): Likewise.
5966 * python/python-internal.h (class gdbpy_enter): Likewise.
5967 * regcache.h (regcache): Likewise.
5968 * target-descriptions.c (struct tdesc_reg): Likewise.
5969 (struct tdesc_type): Likewise.
5970 (struct tdesc_feature): Likewise.
5971 * ui-out.h (ui_out_emit_type): Likewise.
5972
5973 2017-09-18 Simon Marchi <simon.marchi@ericsson.com>
5974
5975 * dwarf2expr.c (dwarf_expr_context::execute_stack_op): Remove
5976 label abort_expression.
5977
5978 2017-09-16 Simon Marchi <simon.marchi@ericsson.com>
5979
5980 * common/buffer.c (buffer_xml_printf): Adjust.
5981 * common/xml-utils.c (xml_escape_text): Change return type to
5982 std::string, update code accordingly.
5983 * common/xml-utils.h (xml_escape_text): Change return type to
5984 std::string.
5985 * rs6000-aix-tdep.c (rs6000_aix_shared_library_to_xml): Adjust.
5986 * windows-tdep.c (windows_xfer_shared_library): Adjust.
5987 * unittests/xml-utils-selftests.c (test_xml_escape_text):
5988 Adjust.
5989
5990 2017-09-16 Simon Marchi <simon.marchi@ericsson.com>
5991
5992 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add new source file.
5993 (SUBDIR_UNITTESTS_OBS): Add new object file.
5994 * unittests/xml-utils-selftests.c: New file.
5995
5996 2017-09-16 Simon Marchi <simon.marchi@ericsson.com>
5997
5998 * common/selftest.h (selftest): New struct/interface.
5999 (register_test): Add name parameter, add new overload.
6000 (run_tests): Add filter parameter.
6001 (for_each_selftest_ftype): New typedef.
6002 (for_each_selftest): New declaration.
6003 * common/selftest.c (tests): Change type to
6004 map<string, unique_ptr<selftest>>.
6005 (simple_selftest): New struct.
6006 (register_test): New function.
6007 (register_test): Add name parameter and use it.
6008 (run_tests): Add filter parameter and use it. Add prints.
6009 Adjust to vector -> map change.
6010 * aarch64-tdep.c (_initialize_aarch64_tdep): Add names when
6011 registering selftests.
6012 * arm-tdep.c (_initialize_arm_tdep): Likewise.
6013 * disasm-selftests.c (_initialize_disasm_selftests): Likewise.
6014 * dwarf2-frame.c (_initialize_dwarf2_frame): Likewise.
6015 * dwarf2loc.c (_initialize_dwarf2loc): Likewise.
6016 * findvar.c (_initialize_findvar): Likewise.
6017 * gdbarch-selftests.c (_initialize_gdbarch_selftests): Likewise.
6018 * maint.c (maintenance_selftest): Update call to run_tests.
6019 (maintenance_info_selftests): New function.
6020 (_initialize_maint_cmds): Register "maintenance info selftests"
6021 command. Update "maintenance selftest" doc.
6022 * regcache.c (_initialize_regcache): Add names when registering
6023 selftests.
6024 * rust-exp.y (_initialize_rust_exp): Likewise.
6025 * selftest-arch.c (gdbarch_selftest): New struct.
6026 (gdbarch_tests): Remove.
6027 (register_test_foreach_arch): Add name parameter. Call
6028 register_test.
6029 (tests_with_arch): Remove, move most content to
6030 gdbarch_selftest::operator().
6031 (_initialize_selftests_foreach_arch): Remove.
6032 * selftest-arch.h (register_test_foreach_arch): Add name
6033 parameter.
6034 (run_tests_with_arch): New declaration.
6035 * utils-selftests.c (_initialize_utils_selftests): Add names
6036 when registering selftests.
6037 * utils.c (_initialize_utils): Likewise.
6038 * unittests/array-view-selftests.c
6039 (_initialize_array_view_selftests): Likewise.
6040 * unittests/environ-selftests.c (_initialize_environ_selftests):
6041 Likewise.
6042 * unittests/function-view-selftests.c
6043 (_initialize_function_view_selftests): Likewise.
6044 * unittests/offset-type-selftests.c
6045 (_initialize_offset_type_selftests): Likewise.
6046 * unittests/optional-selftests.c
6047 (_initialize_optional_selftests): Likewise.
6048 * unittests/scoped_restore-selftests.c
6049 (_initialize_scoped_restore_selftests): Likewise.
6050 * NEWS: Document "maintenance selftest" and "maint info
6051 selftests".
6052
6053 2017-09-16 Simon Marchi <simon.marchi@ericsson.com>
6054
6055 * mi/mi-main.c (mi_load_progress): Restore current_uiout using a
6056 scoped_restore.
6057
6058 2017-09-16 Simon Marchi <simon.marchi@ericsson.com>
6059
6060 * mi/mi-main.c (mi_load_progress): Make uiout variable
6061 a unique_ptr.
6062
6063 2017-09-15 Pedro Alves <palves@redhat.com>
6064
6065 * compile/compile-c-types.c (convert_enum, convert_int)
6066 (convert_float): Adjust to refer to int_type_v0 and float_type_v0.
6067
6068 2017-09-15 Simon Marchi <simon.marchi@ericsson.com>
6069
6070 * dwarf2read.c (copy_string): Remove.
6071 (parse_macro_definition): Replace copy_string with savestring.
6072
6073 2017-09-15 Yao Qi <yao.qi@linaro.org>
6074
6075 * configure.tgt (i[34567]86-*-darwin*): Append amd64.o to
6076 gdb_target_obs.
6077 (i[34567]86-*-solaris2.1[0-9]* | x86_64-*-solaris2.1[0-9]*):
6078 Likewise.
6079 (i[34567]86-*-linux*): Likewise.
6080
6081 2017-09-14 Simon Marchi <simon.marchi@ericsson.com>
6082
6083 * dwarf2expr.h (dwarf_stack_value): Add constructor.
6084 (dwarf_expr_context) <~dwarf_expr_context>: Define as default.
6085 <stack>: Change type to std::vector.
6086 <stack_len, stack_allocated>: Remove.
6087 <grow_stack>: Remove.
6088 * dwarf2expr.c (dwarf_expr_context::dwarf_expr_context): Adjust.
6089 (dwarf_expr_context::~dwarf_expr_context): Remove.
6090 (dwarf_expr_context::grow_stack): Remove.
6091 (dwarf_expr_context::push): Adjust.
6092 (dwarf_expr_context::pop): Adjust.
6093 (dwarf_expr_context::fetch): Adjust.
6094 (dwarf_expr_context::fetch_in_stack_memory): Adjust.
6095 (dwarf_expr_context::stack_empty_p): Adjust.
6096 (dwarf_expr_context::execute_stack_op): Adjust.
6097
6098 2017-09-14 Simon Marchi <simon.marchi@ericsson.com>
6099
6100 * dwarf2expr.h (dwarf_expr_context) <stack_empty_p>: Change
6101 return type to bool.
6102 * dwarf2expr.c (dwarf_expr_context::stack_empty_p): Likewise.
6103
6104 2017-09-14 Simon Marchi <simon.marchi@ericsson.com>
6105
6106 * dwarf2expr.h (dwarf_expr_piece) <v.mem.in_stack_memory>:
6107 Change type to bool.
6108 (dwarf_stack_value) <in_stack_memory>: Likewise.
6109 (dwarf_expr_context) <push_address>: Change parameter type to
6110 bool.
6111 <fetch_in_stack_memory>: Change return type to bool.
6112 <push>: Change parameter type to bool.
6113 * dwarf2expr.c (dwarf_expr_context::push): Change parameter type
6114 to bool.
6115 (dwarf_expr_context::push_address): Likewise.
6116 (dwarf_expr_context::fetch_in_stack_memory): Change return type
6117 to bool.
6118 (dwarf_expr_context::execute_stack_op): Adjust.
6119 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Adjust.
6120
6121 2017-09-14 Simon Marchi <simon.marchi@ericsson.com>
6122
6123 * dwarf2expr.h (struct dwarf_expr_piece): Move up.
6124 (struct dwarf_expr_context) <n_pieces>: Remove.
6125 <pieces>: Change type to std::vector.
6126 * dwarf2expr.c (dwarf_expr_context::dwarf_expr_context): Adjust.
6127 (dwarf_expr_context::~dwarf_expr_context): Don't manually free
6128 pieces.
6129 (dwarf_expr_context::add_piece): Adjust.
6130 * dwarf2loc.c (struct piece_closure): Initialize fields.
6131 <n_pieces>: Remove.
6132 <pieces>: Change type to std::vector.
6133 (allocate_piece_closure): Adjust, change parameter to
6134 std::vector rvalue and std::move it to piece_closure.
6135 (rw_pieced_value): Adjust.
6136 (check_pieced_synthetic_pointer): Adjust.
6137 (indirect_synthetic_pointer): Adjust.
6138 (coerce_pieced_ref): Adjust.
6139 (free_pieced_value_closure): Adjust. Use delete to free
6140 piece_closure.
6141 (dwarf2_evaluate_loc_desc_full): Adjust. std::move ctx.pieces
6142 to allocate_piece_closure.
6143 (dwarf2_loc_desc_get_symbol_read_needs): Adjust.
6144
6145 2017-09-12 Simon Marchi <simon.marchi@ericsson.com>
6146
6147 * probe.h (probe_ops_cp): Remove typedef.
6148 (DEF_VEC_P (probe_ops_cp)): Remove.
6149 (all_probe_ops): Change type to std::vector.
6150 * probe.c (info_probes_for_ops): Adjust to vector change.
6151 (probe_linespec_to_ops): Likewise.
6152 (all_probe_ops): Change type to std::vector.
6153 (_initialize_probe): Adjust to vector change.
6154 * dtrace-probe.c (_initialize_dtrace_probe): Likewise.
6155 * elfread.c (elf_get_probes): Likewise.
6156 * stap-probe.c (_initialize_stap_probe): Likewise.
6157
6158 2017-09-12 Simon Marchi <simon.marchi@ericsson.com>
6159
6160 * probe.h (struct bound_probe): Define constructors.
6161 * probe.c (bound_probe_s): Remove typedef.
6162 (DEF_VEC_O (bound_probe_s)): Remove VEC.
6163 (collect_probes): Change return type to std::vector, remove
6164 cleanup.
6165 (compare_probes): Return bool, change parameter type. Change
6166 semantic to "less than".
6167 (gen_ui_out_table_header_info): Change parameter to std::vector
6168 and update.
6169 (exists_probe_with_pops): Likewise.
6170 (info_probes_for_ops): Update to std::vector change.
6171 (enable_probes_command): Likewise.
6172 (disable_probes_command): Likewise.
6173
6174 2017-09-12 Simon Marchi <simon.marchi@ericsson.com>
6175
6176 * probe.h (struct probe_ops) <get_probes>: Change parameter from
6177 vec to std::vector.
6178 * probe.c (parse_probes_in_pspace): Update.
6179 (find_probes_in_objfile): Update.
6180 (find_probe_by_pc): Update.
6181 (collect_probes): Update.
6182 (probe_any_get_probes): Update.
6183 * symfile.h (struct sym_probe_fns) <sym_get_probes> Change
6184 return type to reference to std::vector.
6185 * dtrace-probe.c (dtrace_process_dof_probe): Change parameter to
6186 std::vector and update.
6187 (dtrace_process_dof): Likewise.
6188 (dtrace_get_probes): Likewise.
6189 * elfread.c (elf_get_probes): Change return type to std::vector,
6190 store an std::vector in bfd_data.
6191 (probe_key_free): Update to std::vector.
6192 * stap-probe.c (handle_stap_probe): Change parameter to
6193 std::vector and update.
6194 (stap_get_probes): Likewise.
6195 * symfile-debug.c (debug_sym_get_probes): Change return type to
6196 std::vector and update.
6197
6198 2017-09-11 Tom Tromey <tom@tromey.com>
6199
6200 * breakpoint.c (program_breakpoint_here_p): Update.
6201 * target.c (make_scoped_restore_show_memory_breakpoints): Rename
6202 from make_show_memory_breakpoints_cleanup. Return a
6203 scoped_restore_tmpl<int>.
6204 (restore_show_memory_breakpoints): Remove.
6205 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Update.
6206 * mem-break.c (memory_validate_breakpoint): Update.
6207 * ia64-tdep.c (ia64_memory_insert_breakpoint): Update.
6208 (ia64_memory_remove_breakpoint): Update.
6209 (ia64_breakpoint_from_pc): Update.
6210 * target.h (make_scoped_restore_show_memory_breakpoints): Rename
6211 from make_show_memory_breakpoints_cleanup.
6212
6213 2017-09-11 Tom Tromey <tom@tromey.com>
6214
6215 * d-namespace.c (d_lookup_symbol): Use std::string.
6216 (find_symbol_in_baseclass): Likewise.
6217
6218 2017-09-11 Tom Tromey <tom@tromey.com>
6219
6220 * ctf.c (ctf_start): Use std::string.
6221
6222 2017-09-11 Tom Tromey <tom@tromey.com>
6223
6224 * ada-lang.c (is_known_support_routine): Update.
6225 (ada_unhandled_exception_name_addr_from_raise): Update.
6226 * guile/scm-frame.c (gdbscm_frame_name): Update.
6227 * python/py-frame.c (frapy_name): Update.
6228 (frapy_function): Update.
6229 * stack.h (find_frame_funname): Update.
6230 * stack.c (find_frame_funname): Return unique_xmalloc_ptr.
6231 (print_frame): Update.
6232
6233 2017-09-11 Tom Tromey <tom@tromey.com>
6234
6235 * findcmd.c (put_bits): Take a gdb::byte_vector.
6236 (parse_find_args): Return gdb::byte_vector. "args" now const.
6237 Remove "pattern_bufp" and "pattern_lenp" parameters. Remove
6238 cleanups.
6239 (find_command): Update.
6240
6241 2017-09-11 Tom Tromey <tom@tromey.com>
6242
6243 * cli/cli-script.c (class scoped_restore_hook_in): New.
6244 (clear_hook_in_cleanup): Remove.
6245 (execute_cmd_pre_hook, execute_cmd_post_hook): Use
6246 scoped_restore_hook_in.
6247
6248 2017-09-11 Tom Tromey <tom@tromey.com>
6249
6250 * cli/cli-script.c (restore_interp): Remove.
6251 (read_command_lines): Use scoped_restore_interp.
6252 * interps.c (scoped_restore_interp::set_temp): Rename from
6253 interp_set_temp.
6254 * interps.h (class scoped_restore_interp): New.
6255 (interp_set_temp): Remove.
6256
6257 2017-09-11 Tom Tromey <tom@tromey.com>
6258
6259 * mi/mi-cmd-catch.c (mi_cmd_catch_assert)
6260 (mi_cmd_catch_exception, mi_catch_load_unload): Update.
6261 * mi/mi-cmd-break.c (setup_breakpoint_reporting): Return a
6262 scoped_restore.
6263 (mi_cmd_break_insert_1): Update.
6264 * mi/mi-cmd-break.h (setup_breakpoint_reporting): Return a
6265 scoped_restore.
6266
6267 2017-09-11 Tom Tromey <tom@tromey.com>
6268
6269 * demangle.c (demangle_command): Update.
6270 * breakpoint.c (disable_command): Update.
6271 (enable_command): Update.
6272 (find_location_by_number): Make "number" const. Use
6273 get_number_trailer.
6274 * cli/cli-utils.c (extract_arg): Return std::string.
6275 * probe.c (parse_probe_linespec): Update. Change types.
6276 (collect_probes): Take string arguments.
6277 (parse_probe_linespec): Likewise.
6278 (info_probes_for_ops): Update.
6279 (enable_probes_command): Update.
6280 (disable_probes_command): Update.
6281 * break-catch-sig.c (catch_signal_split_args): Update.
6282 * mi/mi-parse.c (mi_parse): Update.
6283
6284 2017-09-11 Tom Tromey <tom@tromey.com>
6285
6286 * language.h (language_enum): Make argument const.
6287 * language.c (language_enum): Make argument const.
6288
6289 2017-09-11 Tom Tromey <tom@tromey.com>
6290
6291 * common/common-utils.h (skip_to_space): Remove macro, redeclare
6292 as function.
6293 (skip_to_space): Rename from skip_to_space_const.
6294 * common/common-utils.c (skip_to_space): New function.
6295 (skip_to_space): Rename from skip_to_space_const.
6296 * cli/cli-utils.h (get_number): Rename from get_number_const.
6297 (extract_arg): Rename from extract_arg_const.
6298 * cli/cli-utils.c (get_number): Rename from get_number_const.
6299 (extract_arg): Rename from extract_arg_const.
6300 (number_or_range_parser::get_number): Use ::get_number.
6301 * aarch64-linux-tdep.c, ada-lang.c, arm-linux-tdep.c, ax-gdb.c,
6302 break-catch-throw.c, breakpoint.c, cli/cli-cmds.c, cli/cli-dump.c,
6303 cli/cli-script.c, cli/cli-setshow.c, compile/compile.c,
6304 completer.c, demangle.c, disasm.c, findcmd.c, linespec.c,
6305 linux-tdep.c, linux-thread-db.c, location.c, mi/mi-parse.c,
6306 minsyms.c, nat/linux-procfs.c, printcmd.c, probe.c,
6307 python/py-breakpoint.c, record.c, rust-exp.y, serial.c, stack.c,
6308 stap-probe.c, tid-parse.c, tracepoint.c: Update all callers.
6309
6310 2017-09-11 Tom Tromey <tom@tromey.com>
6311
6312 * python/python.c (do_start_initialization): Use
6313 py-event-types.def to initialize types.
6314 Define all object type structures.
6315 * python/python-internal.h: Don't declare event initialization
6316 functions.
6317 * python/py-threadevent.c (thread_event_object_type): Don't
6318 define.
6319 * python/py-stopevent.c (stop_event_object_type): Don't define.
6320 * python/py-signalevent.c (signal_event_object_type): Don't
6321 declare or define.
6322 * python/py-newobjfileevent.c (new_objfile_event_object_type)
6323 (clear_objfiles_event_object_type): Don't declare or define.
6324 * python/py-infevents.c (inferior_call_pre_event_object_type)
6325 (inferior_call_post_event_object_type)
6326 (register_changed_event_object_type)
6327 (memory_changed_event_object_type): Don't declare or define.
6328 * python/py-inferior.c (new_thread_event_object_type)
6329 (new_inferior_event_object_type)
6330 (inferior_deleted_event_object_type): Don't declare or define.
6331 * python/py-exitedevent.c (exited_event_object_type): Don't
6332 declare or define.
6333 * python/py-evts.c (gdbpy_initialize_py_events): Use
6334 py-all-events.def.
6335 * python/py-events.h (thread_event_object_type): Don't declare.
6336 (events_object): Use py-all-events.def.
6337 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove. Use
6338 py-event-types.def.
6339 * python/py-event-types.def: New file.
6340 * python/py-continueevent.c (create_continue_event_object): Don't
6341 declare or define.
6342 * python/py-bpevent.c (breakpoint_event_object_type): Don't
6343 declare or define.
6344 * python/py-all-events.def: New file.
6345
6346 2017-09-11 Tom Tromey <tom@tromey.com>
6347
6348 * python/py-threadevent.c (create_thread_event_object): Return
6349 gdbpy_ref.
6350 * python/py-stopevent.h (create_stop_event_object)
6351 (create_breakpoint_event_object, create_signal_event_object):
6352 Update.
6353 * python/py-stopevent.c (create_stop_event_object): Return
6354 gdbpy_ref.
6355 (emit_stop_event): Update.
6356 * python/py-signalevent.c (create_signal_event_object): Return
6357 gdbpy_ref.
6358 * python/py-infevents.c (create_inferior_call_event_object):
6359 Update.
6360 * python/py-event.h (create_event_object)
6361 (create_thread_event_object): Update.
6362 * python/py-event.c (create_event_object): Return gdbpy_ref.
6363 * python/py-continueevent.c: Return gdbpy_ref.
6364 * python/py-bpevent.c (create_breakpoint_event_object): Return
6365 gdbpy_ref.
6366
6367 2017-09-11 Tom Tromey <tom@tromey.com>
6368
6369 PR python/15622:
6370 * NEWS: Add entry.
6371 * python/python.c (do_start_initialization): Initialize new event
6372 types.
6373 * python/python-internal.h (gdbpy_initialize_new_inferior_event)
6374 (gdbpy_initialize_inferior_deleted_event)
6375 (gdbpy_initialize_new_thread_event): Declare.
6376 * python/py-threadevent.c (create_thread_event_object): Add option
6377 "thread" parameter.
6378 * python/py-inferior.c (new_thread_event_object_type)
6379 (new_inferior_event_object_type)
6380 (inferior_deleted_event_object_type): Declare.
6381 (python_new_inferior, python_inferior_deleted): New functions.
6382 (add_thread_object): Emit new_thread event.
6383 (gdbpy_initialize_inferior): Attach new functions to corresponding
6384 observers.
6385 (new_thread, new_inferior, inferior_deleted): Define new event
6386 types.
6387 * python/py-evts.c (gdbpy_initialize_py_events): Add new
6388 registries.
6389 * python/py-events.h (events_object) <new_inferior,
6390 inferior_deleted, new_thread>: New fields.
6391 * python/py-event.h (create_thread_event_breakpoint): Add optional
6392 "thread" parameter.
6393
6394 2017-09-10 Andrew Burgess <andrew.burgess@embecosm.com>
6395
6396 * utils.c (abort_with_message): Don't compare gdb_stderr to NULL,
6397 check current_ui instead.
6398 (internal_vproblem): Likewise.
6399
6400 2017-09-09 Simon Marchi <simon.marchi@ericsson.com>
6401
6402 * thread.c (print_thread_info_1): Remove unnecessary calls to
6403 uiout->is_mi_like_p.
6404
6405 2017-09-09 Tom Tromey <tom@tromey.com>
6406
6407 * namespace.h (add_using_directive): Update.
6408 * namespace.c (add_using_directive): Change type of excludes to
6409 std::vector.
6410 * dwarf2read.c (read_import_statement): Use std::vector.
6411 (read_namespace): Update.
6412 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
6413
6414 2017-09-09 Tom Tromey <tom@tromey.com>
6415
6416 * linespec.c (create_sals_line_offset): Use gdb::def_vector.
6417
6418 2017-09-09 Tom Tromey <tom@tromey.com>
6419
6420 * p-valprint.c (pascal_object_print_value): Use gdb::byte_vector.
6421
6422 2017-09-09 Tom Tromey <tom@tromey.com>
6423
6424 * stack.c (func_command): Use gdb::def_vector.
6425
6426 2017-09-09 Tom Tromey <tom@tromey.com>
6427
6428 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Use gdb::optional,
6429 ui_out_emit_list, ui_out_emit_tuple.
6430 (mi_cmd_var_update): Likewise.
6431
6432 2017-09-09 Tom Tromey <tom@tromey.com>
6433
6434 * mi/mi-interp.c (mi_user_selected_context_changed): Use
6435 ui_out_redirect_pop.
6436 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
6437 ui_out_redirect_pop.
6438 * utils.c (do_ui_out_redirect_pop)
6439 (make_cleanup_ui_out_redirect_pop): Remove.
6440 * top.c (execute_command_to_string): Use ui_out_redirect_pop.
6441 * utils.h (make_cleanup_ui_out_redirect_pop): Remove.
6442 * ui-out.h (ui_out_redirect_pop): New class.
6443
6444 2017-09-09 Tom Tromey <tom@tromey.com>
6445
6446 * mi/mi-main.c (output_cores): Use ui_out_emit_list.
6447 (list_available_thread_groups, mi_cmd_list_thread_groups)
6448 (mi_cmd_data_list_changed_registers, mi_cmd_data_read_memory)
6449 (mi_cmd_data_read_memory_bytes, mi_cmd_trace_frame_collected):
6450 Likewise.
6451
6452 2017-09-09 Tom Tromey <tom@tromey.com>
6453
6454 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
6455 ui_out_emit_tuple.
6456
6457 2017-09-09 Tom Tromey <tom@tromey.com>
6458
6459 * target.c (flash_erase_command): Use ui_out_emit_tuple.
6460 * stack.c (print_frame): Use ui_out_emit_tuple.
6461 * spu-tdep.c (info_spu_event_command): Use ui_out_emit_tuple.
6462 (info_spu_mailbox_command, info_spu_dma_command)
6463 (info_spu_proxydma_command): Likewise.
6464 * mi/mi-main.c (mi_cmd_trace_frame_collected): Use
6465 ui_out_emit_tuple, gdb::byte_vector, bin2hex.
6466 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Use
6467 ui_out_emit_tuple.
6468 * breakpoint.c (print_it_watchpoint): Use ui_out_emit_tuple.
6469
6470 2017-09-09 Tom Tromey <tom@tromey.com>
6471
6472 * ui-out.h (make_cleanup_ui_out_table_begin_end): Remove.
6473 (class ui_out_emit_table): Update comment.
6474 * ui-out.c (do_cleanup_table_end)
6475 (make_cleanup_ui_out_table_begin_end): Remove.
6476 * spu-tdep.c (info_spu_mailbox_list): Use ui_out_emit_table.
6477 (info_spu_dma_cmdlist): Likewise.
6478 * probe.c (info_probes_for_ops): Use ui_out_emit_table.
6479 * darwin-nat-info.c (darwin_debug_regions_recurse): Use
6480 ui_out_emit_table.
6481
6482 2017-09-09 Tom Tromey <tom@tromey.com>
6483
6484 * thread.c (print_thread_info_1): Use ui_out_emit_table,
6485 ui_out_emit_list, gdb::optional.
6486
6487 2017-09-09 John Baldwin <jhb@FreeBSD.org>
6488
6489 * aarch64-linux-nat.c: Remove _initialize_aarch64_linux_nat
6490 prototype.
6491 * aarch64-linux-tdep.c: Remove _initialize_aarch64_linux_tdep
6492 prototype.
6493 * aarch64-newlib-tdep.c: Remove _initialize_aarch64_newlib_tdep
6494 prototype.
6495 * aarch64-tdep.c: Remove _initialize_aarch64_tdep prototype.
6496 * ada-exp.y: Remove _initialize_ada_exp prototype.
6497 * ada-lang.c: Remove _initialize_ada_language prototype.
6498 * ada-tasks.c: Remove _initialize_tasks prototype.
6499 * addrmap.c: Remove _initialize_addrmap prototype.
6500 * agent.c: Remove _initialize_agent prototype.
6501 * aix-thread.c: Remove _initialize_aix_thread prototype.
6502 * alpha-bsd-nat.c: Remove _initialize_alphabsd_nat prototype.
6503 * alpha-linux-nat.c: Remove _initialize_alpha_linux_nat prototype.
6504 * alpha-linux-tdep.c: Remove _initialize_alpha_linux_tdep
6505 prototype.
6506 * alpha-nbsd-tdep.c: Remove _initialize_alphanbsd_tdep prototype.
6507 * alpha-obsd-tdep.c: Remove _initialize_alphaobsd_tdep prototype.
6508 * alpha-tdep.c: Remove _initialize_alpha_tdep prototype.
6509 * amd64-darwin-tdep.c: Remove _initialize_amd64_darwin_tdep
6510 prototype.
6511 * amd64-dicos-tdep.c: Remove _initialize_amd64_dicos_tdep
6512 prototype.
6513 * amd64-fbsd-nat.c: Remove _initialize_amd64fbsd_nat prototype.
6514 * amd64-fbsd-tdep.c: Remove _initialize_amd64fbsd_tdep prototype.
6515 * amd64-linux-nat.c: Remove _initialize_amd64_linux_nat prototype.
6516 * amd64-linux-tdep.c: Remove _initialize_amd64_linux_tdep
6517 prototype.
6518 * amd64-nbsd-nat.c: Remove _initialize_amd64nbsd_nat prototype.
6519 * amd64-nbsd-tdep.c: Remove _initialize_amd64nbsd_tdep prototype.
6520 * amd64-obsd-nat.c: Remove _initialize_amd64obsd_nat prototype.
6521 * amd64-obsd-tdep.c: Remove _initialize_amd64obsd_tdep prototype.
6522 * amd64-sol2-tdep.c: Remove _initialize_amd64_sol2_tdep prototype.
6523 * amd64-tdep.c: Remove _initialize_amd64_tdep prototype.
6524 * amd64-windows-nat.c: Remove _initialize_amd64_windows_nat
6525 prototype.
6526 * amd64-windows-tdep.c: Remove _initialize_amd64_windows_tdep
6527 prototype.
6528 * annotate.c: Remove _initialize_annotate prototype.
6529 * arc-newlib-tdep.c: Remove _initialize_arc_newlib_tdep prototype.
6530 * arc-tdep.c: Remove _initialize_arc_tdep prototype.
6531 * arch-utils.c: Remove _initialize_gdbarch_utils prototype.
6532 * arm-linux-nat.c: Remove _initialize_arm_linux_nat prototype.
6533 * arm-linux-tdep.c: Remove _initialize_arm_linux_tdep prototype.
6534 * arm-nbsd-tdep.c: Remove _initialize_arm_netbsd_tdep prototype.
6535 * arm-obsd-tdep.c: Remove _initialize_armobsd_tdep prototype.
6536 * arm-symbian-tdep.c: Remove _initialize_arm_symbian_tdep
6537 prototype.
6538 * arm-tdep.c: Remove _initialize_arm_tdep prototype.
6539 * arm-wince-tdep.c: Remove _initialize_arm_wince_tdep prototype.
6540 * auto-load.c: Remove _initialize_auto_load prototype.
6541 * auxv.c: Remove _initialize_auxv prototype.
6542 * avr-tdep.c: Remove _initialize_avr_tdep prototype.
6543 * ax-gdb.c: Remove _initialize_ax_gdb prototype.
6544 * bfin-linux-tdep.c: Remove _initialize_bfin_linux_tdep prototype.
6545 * bfin-tdep.c: Remove _initialize_bfin_tdep prototype.
6546 * break-catch-sig.c: Remove _initialize_break_catch_sig prototype.
6547 * break-catch-syscall.c: Remove _initialize_break_catch_syscall
6548 prototype.
6549 * break-catch-throw.c: Remove _initialize_break_catch_throw
6550 prototype.
6551 * breakpoint.c: Remove _initialize_breakpoint prototype.
6552 * bsd-uthread.c: Remove _initialize_bsd_uthread prototype.
6553 * btrace.c: Remove _initialize_btrace prototype.
6554 * charset.c: Remove _initialize_charset prototype.
6555 * cli/cli-cmds.c: Remove _initialize_cli_cmds prototype.
6556 * cli/cli-dump.c: Remove _initialize_cli_dump prototype.
6557 * cli/cli-interp.c: Remove _initialize_cli_interp prototype.
6558 * cli/cli-logging.c: Remove _initialize_cli_logging prototype.
6559 * cli/cli-script.c: Remove _initialize_cli_script prototype.
6560 * coff-pe-read.c: Remove _initialize_coff_pe_read prototype.
6561 * coffread.c: Remove _initialize_coffread prototype.
6562 * compile/compile.c: Remove _initialize_compile prototype.
6563 * complaints.c: Remove _initialize_complaints prototype.
6564 * completer.c: Remove _initialize_completer prototype.
6565 * copying.awk: Remove _initialize_copying prototype.
6566 * copying.c: Regenerate.
6567 * core-regset.c: Remove _initialize_core_regset prototype.
6568 * corefile.c: Remove _initialize_core prototype.
6569 * corelow.c: Remove _initialize_corelow prototype.
6570 * cp-abi.c: Remove _initialize_cp_abi prototype.
6571 * cp-namespace.c: Remove _initialize_cp_namespace prototype.
6572 * cp-support.c: Remove _initialize_cp_support prototype.
6573 * cp-valprint.c: Remove _initialize_cp_valprint prototype.
6574 * cris-linux-tdep.c: Remove _initialize_cris_linux_tdep prototype.
6575 * cris-tdep.c: Remove _initialize_cris_tdep prototype.
6576 * ctf.c: Remove _initialize_ctf prototype.
6577 * d-lang.c: Remove _initialize_d_language prototype.
6578 * darwin-nat-info.c: Remove _initialize_darwin_info_commands
6579 prototype.
6580 * darwin-nat.c: Remove _initialize_darwin_inferior prototype.
6581 * dbxread.c: Remove _initialize_dbxread prototype.
6582 * dcache.c: Remove _initialize_dcache prototype.
6583 * demangle.c: Remove _initialize_demangler prototype.
6584 * disasm-selftests.c: Remove _initialize_disasm_selftests
6585 prototype.
6586 * disasm.c: Remove _initialize_disasm prototype.
6587 * dtrace-probe.c: Remove _initialize_dtrace_probe prototype.
6588 * dummy-frame.c: Remove _initialize_dummy_frame prototype.
6589 * dwarf2-frame-tailcall.c: Remove _initialize_tailcall_frame
6590 prototype.
6591 * dwarf2-frame.c: Remove _initialize_dwarf2_frame prototype.
6592 * dwarf2expr.c: Remove _initialize_dwarf2expr prototype.
6593 * dwarf2loc.c: Remove _initialize_dwarf2loc prototype.
6594 * dwarf2read.c: Remove _initialize_dwarf2_read prototype.
6595 * elfread.c: Remove _initialize_elfread prototype.
6596 * exec.c: Remove _initialize_exec prototype.
6597 * extension.c: Remove _initialize_extension prototype.
6598 * f-lang.c: Remove _initialize_f_language prototype.
6599 * f-valprint.c: Remove _initialize_f_valprint prototype.
6600 * fbsd-nat.c: Remove _initialize_fbsd_nat prototype.
6601 * fbsd-tdep.c: Remove _initialize_fbsd_tdep prototype.
6602 * filesystem.c: Remove _initialize_filesystem prototype.
6603 * findcmd.c: Remove _initialize_mem_search prototype.
6604 * fork-child.c: Remove _initialize_fork_child prototype.
6605 * frame-base.c: Remove _initialize_frame_base prototype.
6606 * frame-unwind.c: Remove _initialize_frame_unwind prototype.
6607 * frame.c: Remove _initialize_frame prototype.
6608 * frv-linux-tdep.c: Remove _initialize_frv_linux_tdep prototype.
6609 * frv-tdep.c: Remove _initialize_frv_tdep prototype.
6610 * ft32-tdep.c: Remove _initialize_ft32_tdep prototype.
6611 * gcore.c: Remove _initialize_gcore prototype.
6612 * gdb_bfd.c: Remove _initialize_gdb_bfd prototype.
6613 * gdbarch.c: Regenerate.
6614 * gdbarch.sh: Remove _initialize_gdbarch prototype.
6615 * gdbtypes.c: Remove _initialize_gdbtypes prototype.
6616 * gnu-nat.c: Remove _initialize_gnu_nat prototype.
6617 * gnu-v2-abi.c: Remove _initialize_gnu_v2_abi prototype.
6618 * gnu-v3-abi.c: Remove _initialize_gnu_v3_abi prototype.
6619 * go-lang.c: Remove _initialize_go_language prototype.
6620 * go32-nat.c: Remove _initialize_go32_nat prototype.
6621 * guile/guile.c: Remove _initialize_guile prototype.
6622 * h8300-tdep.c: Remove _initialize_h8300_tdep prototype.
6623 * hppa-linux-nat.c: Remove _initialize_hppa_linux_nat prototype.
6624 * hppa-linux-tdep.c: Remove _initialize_hppa_linux_tdep prototype.
6625 * hppa-nbsd-nat.c: Remove _initialize_hppanbsd_nat prototype.
6626 * hppa-nbsd-tdep.c: Remove _initialize_hppanbsd_tdep prototype.
6627 * hppa-obsd-nat.c: Remove _initialize_hppaobsd_nat prototype.
6628 * hppa-obsd-tdep.c: Remove _initialize_hppaobsd_tdep prototype.
6629 * hppa-tdep.c: Remove _initialize_hppa_tdep prototype.
6630 * i386-bsd-nat.c: Remove _initialize_i386bsd_nat prototype.
6631 * i386-cygwin-tdep.c: Remove _initialize_i386_cygwin_tdep
6632 prototype.
6633 * i386-darwin-tdep.c: Remove _initialize_i386_darwin_tdep
6634 prototype.
6635 * i386-dicos-tdep.c: Remove _initialize_i386_dicos_tdep prototype.
6636 * i386-fbsd-nat.c: Remove _initialize_i386fbsd_nat prototype.
6637 * i386-fbsd-tdep.c: Remove _initialize_i386fbsd_tdep prototype.
6638 * i386-gnu-nat.c: Remove _initialize_i386gnu_nat prototype.
6639 * i386-gnu-tdep.c: Remove _initialize_i386gnu_tdep prototype.
6640 * i386-linux-nat.c: Remove _initialize_i386_linux_nat prototype.
6641 * i386-linux-tdep.c: Remove _initialize_i386_linux_tdep prototype.
6642 * i386-nbsd-nat.c: Remove _initialize_i386nbsd_nat prototype.
6643 * i386-nbsd-tdep.c: Remove _initialize_i386nbsd_tdep prototype.
6644 * i386-nto-tdep.c: Remove _initialize_i386nto_tdep prototype.
6645 * i386-obsd-nat.c: Remove _initialize_i386obsd_nat prototype.
6646 * i386-obsd-tdep.c: Remove _initialize_i386obsd_tdep prototype.
6647 * i386-sol2-nat.c: Remove _initialize_amd64_sol2_nat prototype.
6648 * i386-sol2-tdep.c: Remove _initialize_amd64_sol2_tdep prototype.
6649 * i386-tdep.c: Remove _initialize_i386_tdep prototype.
6650 * i386-windows-nat.c: Remove _initialize_i386_windows_nat
6651 prototype.
6652 * ia64-libunwind-tdep.c: Remove _initialize_libunwind_frame
6653 prototype.
6654 * ia64-linux-nat.c: Remove _initialize_ia64_linux_nat prototype.
6655 * ia64-linux-tdep.c: Remove _initialize_ia64_linux_tdep prototype.
6656 * ia64-tdep.c: Remove _initialize_ia64_tdep prototype.
6657 * ia64-vms-tdep.c: Remove _initialize_ia64_vms_tdep prototype.
6658 * infcall.c: Remove _initialize_infcall prototype.
6659 * infcmd.c: Remove _initialize_infcmd prototype.
6660 * inferior.c: Remove _initialize_inferiors prototype.
6661 * inflow.c: Remove _initialize_inflow prototype.
6662 * infrun.c: Remove _initialize_infrun prototype.
6663 * interps.c: Remove _initialize_interpreter prototype.
6664 * iq2000-tdep.c: Remove _initialize_iq2000_tdep prototype.
6665 * jit.c: Remove _initialize_jit prototype.
6666 * language.c: Remove _initialize_language prototype.
6667 * linux-fork.c: Remove _initialize_linux_fork prototype.
6668 * linux-nat.c: Remove _initialize_linux_nat prototype.
6669 * linux-tdep.c: Remove _initialize_linux_tdep prototype.
6670 * linux-thread-db.c: Remove _initialize_thread_db prototype.
6671 * lm32-tdep.c: Remove _initialize_lm32_tdep prototype.
6672 * m2-lang.c: Remove _initialize_m2_language prototype.
6673 * m32c-tdep.c: Remove _initialize_m32c_tdep prototype.
6674 * m32r-linux-nat.c: Remove _initialize_m32r_linux_nat prototype.
6675 * m32r-linux-tdep.c: Remove _initialize_m32r_linux_tdep prototype.
6676 * m32r-tdep.c: Remove _initialize_m32r_tdep prototype.
6677 * m68hc11-tdep.c: Remove _initialize_m68hc11_tdep prototype.
6678 * m68k-bsd-nat.c: Remove _initialize_m68kbsd_nat prototype.
6679 * m68k-bsd-tdep.c: Remove _initialize_m68kbsd_tdep prototype.
6680 * m68k-linux-nat.c: Remove _initialize_m68k_linux_tdep prototype.
6681 * m68k-linux-tdep.c: Remove _initialize_m68k_linux_tdep prototype.
6682 * m68k-tdep.c: Remove _initialize_m68k_tdep prototype.
6683 * m88k-bsd-nat.c: Remove _initialize_m68kbsd_nat prototype.
6684 * m88k-tdep.c: Remove _initialize_m68kbsd_tdep prototype.
6685 * machoread.c: Remove _initialize_machoread prototype.
6686 * macrocmd.c: Remove _initialize_macrocmd prototype.
6687 * macroscope.c: Remove _initialize_macroscope prototype.
6688 * maint.c: Remove _initialize_maint_cmds prototype.
6689 * mdebugread.c: Remove _initialize_mdebugread prototype.
6690 * memattr.c: Remove _initialize_mem prototype.
6691 * mep-tdep.c: Remove _initialize_mep_tdep prototype.
6692 * mi/mi-cmd-env.c: Remove _initialize_mi_cmd_env prototype.
6693 * mi/mi-cmds.c: Remove _initialize_mi_cmds prototype.
6694 * mi/mi-interp.c: Remove _initialize_mi_interp prototype.
6695 * mi/mi-main.c: Remove _initialize_mi_main prototype.
6696 * microblaze-linux-tdep.c: Remove
6697 _initialize_microblaze_linux_tdep prototype.
6698 * microblaze-tdep.c: Remove _initialize_microblaze_tdep prototype.
6699 * mips-fbsd-nat.c: Remove _initialize_mips_fbsd_nat prototype.
6700 * mips-fbsd-tdep.c: Remove _initialize_mips_fbsd_tdep prototype.
6701 * mips-linux-nat.c: Remove _initialize_mips_linux_nat prototype.
6702 * mips-linux-tdep.c: Remove _initialize_mips_linux_tdep prototype.
6703 * mips-nbsd-nat.c: Remove _initialize_mipsnbsd_nat prototype.
6704 * mips-nbsd-tdep.c: Remove _initialize_mipsnbsd_tdep prototype.
6705 * mips-sde-tdep.c: Remove _initialize_mips_sde_tdep prototype.
6706 * mips-tdep.c: Remove _initialize_mips_tdep prototype.
6707 * mips64-obsd-nat.c: Remove _initialize_mips64obsd_nat prototype.
6708 * mips64-obsd-tdep.c: Remove _initialize_mips64obsd_tdep
6709 prototype.
6710 * mipsread.c: Remove _initialize_mipsread prototype.
6711 * mn10300-linux-tdep.c: Remove _initialize_mn10300_linux_tdep
6712 prototype.
6713 * mn10300-tdep.c: Remove _initialize_mn10300_tdep prototype.
6714 * moxie-tdep.c: Remove _initialize_moxie_tdep prototype.
6715 * msp430-tdep.c: Remove _initialize_msp430_tdep prototype.
6716 * mt-tdep.c: Remove _initialize_mt_tdep prototype.
6717 * nds32-tdep.c: Remove _initialize_nds32_tdep prototype.
6718 * nios2-linux-tdep.c: Remove _initialize_nios2_linux_tdep
6719 prototype.
6720 * nios2-tdep.c: Remove _initialize_nios2_tdep prototype.
6721 * nto-procfs.c: Remove _initialize_procfs prototype.
6722 * nto-tdep.c: Remove _initialize_nto_tdep prototype.
6723 * objc-lang.c: Remove _initialize_objc_language prototype.
6724 * objfiles.c: Remove _initialize_objfiles prototype.
6725 * observer.c: Remove observer_test_first_notification_function,
6726 observer_test_second_notification_function,
6727 observer_test_third_notification_function, and
6728 _initialize_observer prototypes.
6729 * opencl-lang.c: Remove _initialize_opencl_language prototypes.
6730 * osabi.c: Remove _initialize_gdb_osabi prototype.
6731 * osdata.c: Remove _initialize_osdata prototype.
6732 * p-valprint.c: Remove _initialize_pascal_valprint prototype.
6733 * parse.c: Remove _initialize_parse prototype.
6734 * ppc-fbsd-nat.c: Remove _initialize_ppcfbsd_nat prototype.
6735 * ppc-fbsd-tdep.c: Remove _initialize_ppcfbsd_tdep prototype.
6736 * ppc-linux-nat.c: Remove _initialize_ppc_linux_nat prototype.
6737 * ppc-linux-tdep.c: Remove _initialize_ppc_linux_tdep prototype.
6738 * ppc-nbsd-nat.c: Remove _initialize_ppcnbsd_nat prototype.
6739 * ppc-nbsd-tdep.c: Remove _initialize_ppcnbsd_tdep prototype.
6740 * ppc-obsd-nat.c: Remove _initialize_ppcobsd_nat prototype.
6741 * ppc-obsd-tdep.c: Remove _initialize_ppcobsd_tdep prototype.
6742 * printcmd.c: Remove _initialize_printcmd prototype.
6743 * probe.c: Remove _initialize_probe prototype.
6744 * proc-api.c: Remove _initialize_proc_api prototype.
6745 * proc-events.c: Remove _initialize_proc_events prototype.
6746 * proc-service.c: Remove _initialize_proc_service prototype.
6747 * procfs.c: Remove _initialize_procfs prototype.
6748 * psymtab.c: Remove _initialize_psymtab prototype.
6749 * python/python.c: Remove _initialize_python prototype.
6750 * ravenscar-thread.c: Remove _initialize_ravenscar prototype.
6751 * record-btrace.c: Remove _initialize_record_btrace prototype.
6752 * record-full.c: Remove _initialize_record_full prototype.
6753 * record.c: Remove _initialize_record prototype.
6754 * regcache.c: Remove _initialize_regcache prototype.
6755 * reggroups.c: Remove _initialize_reggroup prototype.
6756 * remote-notif.c: Remove _initialize_notif prototype.
6757 * remote-sim.c: Remove _initialize_remote_sim prototype.
6758 * remote.c: Remove _initialize_remote prototype.
6759 * reverse.c: Remove _initialize_reverse prototype.
6760 * rl78-tdep.c: Remove _initialize_rl78_tdep prototype.
6761 * rs6000-aix-tdep.c: Remove _initialize_rs6000_aix_tdep prototype.
6762 * rs6000-lynx178-tdep.c: Remove _initialize_rs6000_lynx178_tdep
6763 prototype.
6764 * rs6000-nat.c: Remove _initialize_rs6000_nat prototype.
6765 * rs6000-tdep.c: Remove _initialize_rs6000_tdep prototype.
6766 * rust-exp.y: Remove _initialize_rust_exp prototype.
6767 * rx-tdep.c: Remove _initialize_rx_tdep prototype.
6768 * s390-linux-nat.c: Remove _initialize_s390_nat prototype.
6769 * s390-linux-tdep.c: Remove _initialize_s390_tdep prototype.
6770 * score-tdep.c: Remove _initialize_score_tdep prototype.
6771 * selftest-arch.c: Remove _initialize_selftests_foreach_arch
6772 prototype.
6773 * ser-go32.c: Remove _initialize_ser_dos prototype.
6774 * ser-mingw.c: Remove _initialize_ser_windows prototype.
6775 * ser-pipe.c: Remove _initialize_ser_pipe prototype.
6776 * ser-tcp.c: Remove _initialize_ser_tcp prototype.
6777 * ser-unix.c: Remove _initialize_ser_hardwire prototype.
6778 * serial.c: Remove _initialize_serial prototype.
6779 * sh-linux-tdep.c: Remove _initialize_sh_linux_tdep prototype.
6780 * sh-nbsd-nat.c: Remove _initialize_shnbsd_nat prototype.
6781 * sh-nbsd-tdep.c: Remove _initialize_shnbsd_tdep prototype.
6782 * sh-tdep.c: Remove _initialize_sh_tdep prototype.
6783 * skip.c: Remove _initialize_step_skip prototype.
6784 * sol-thread.c: Remove _initialize_sol_thread prototype.
6785 * solib-aix.c: Remove _initialize_solib_aix prototype.
6786 * solib-darwin.c: Remove _initialize_darwin_solib prototype.
6787 * solib-dsbt.c: Remove _initialize_dsbt_solib prototype.
6788 * solib-frv.c: Remove _initialize_frv_solib prototype.
6789 * solib-spu.c: Remove _initialize_spu_solib prototype.
6790 * solib-svr4.c: Remove _initialize_svr4_solib prototype.
6791 * solib-target.c: Remove _initialize_solib_target prototype.
6792 * solib.c: Remove _initialize_solib prototype.
6793 * source.c: Remove _initialize_source prototype.
6794 * sparc-linux-nat.c: Remove _initialize_sparc_linux_nat prototype.
6795 * sparc-linux-tdep.c: Remove _initialize_sparc_linux_tdep
6796 prototype.
6797 * sparc-nat.c: Remove _initialize_sparc_nat prototype.
6798 * sparc-nbsd-nat.c: Remove _initialize_sparcnbsd_nat prototype.
6799 * sparc-nbsd-tdep.c: Remove _initialize_sparcnbsd_tdep prototype.
6800 * sparc-obsd-tdep.c: Remove _initialize_sparc32obsd_tdep
6801 prototype.
6802 * sparc-sol2-nat.c: Remove _initialize_sparc_sol2_nat prototype.
6803 * sparc-sol2-tdep.c: Remove _initialize_sparc_sol2_tdep prototype.
6804 * sparc-tdep.c: Remove _initialize_sparc_tdep prototype.
6805 * sparc64-fbsd-nat.c: Remove _initialize_sparc64fbsd_nat
6806 prototype.
6807 * sparc64-fbsd-tdep.c: Remove _initialize_sparc64fbsd_tdep
6808 prototype.
6809 * sparc64-linux-nat.c: Remove _initialize_sparc64_linux_nat
6810 prototype.
6811 * sparc64-linux-tdep.c: Remove _initialize_sparc64_linux_tdep
6812 prototype.
6813 * sparc64-nat.c: Remove _initialize_sparc64_nat prototype.
6814 * sparc64-nbsd-nat.c: Remove _initialize_sparc64nbsd_nat
6815 prototype.
6816 * sparc64-nbsd-tdep.c: Remove _initialize_sparc64nbsd_tdep
6817 prototype.
6818 * sparc64-obsd-nat.c: Remove _initialize_sparc64obsd_nat
6819 prototype.
6820 * sparc64-obsd-tdep.c: Remove _initialize_sparc64obsd_tdep
6821 prototype.
6822 * sparc64-sol2-tdep.c: Remove _initialize_sparc64_sol2_tdep
6823 prototype.
6824 * spu-linux-nat.c: Remove _initialize_spu_nat prototype.
6825 * spu-multiarch.c: Remove _initialize_spu_multiarch prototype.
6826 * spu-tdep.c: Remove _initialize_spu_tdep prototype.
6827 * stabsread.c: Remove _initialize_stabsread prototype.
6828 * stack.c: Remove _initialize_stack prototype.
6829 * stap-probe.c: Remove _initialize_stap_probe prototype.
6830 * std-regs.c: Remove _initialize_frame_reg prototype.
6831 * symfile-debug.c: Remove _initialize_symfile_debug prototype.
6832 * symfile-mem.c: Remove _initialize_symfile_mem prototype.
6833 * symfile.c: Remove _initialize_symfile prototype.
6834 * symmisc.c: Remove _initialize_symmisc prototype.
6835 * symtab.c: Remove _initialize_symtab prototype.
6836 * target-dcache.c: Remove _initialize_target_dcache prototype.
6837 * target-descriptions.c: Remove _initialize_target_descriptions
6838 prototype.
6839 * thread.c: Remove _initialize_thread prototype.
6840 * tic6x-linux-tdep.c: Remove _initialize_tic6x_linux_tdep
6841 prototype.
6842 * tic6x-tdep.c: Remove _initialize_tic6x_tdep prototype.
6843 * tilegx-linux-nat.c: Remove _initialize_tile_linux_nat prototype.
6844 * tilegx-linux-tdep.c: Remove _initialize_tilegx_linux_tdep
6845 prototype.
6846 * tilegx-tdep.c: Remove _initialize_tilegx_tdep prototype.
6847 * tracefile-tfile.c: Remove _initialize_tracefile_tfile prototype.
6848 * tracefile.c: Remove _initialize_tracefile prototype.
6849 * tracepoint.c: Remove _initialize_tracepoint prototype.
6850 * tui/tui-hooks.c: Remove _initialize_tui_hooks prototype.
6851 * tui/tui-interp.c: Remove _initialize_tui_interp prototype.
6852 * tui/tui-layout.c: Remove _initialize_tui_layout prototype.
6853 * tui/tui-regs.c: Remove _initialize_tui_regs prototype.
6854 * tui/tui-stack.c: Remove _initialize_tui_stack prototype.
6855 * tui/tui-win.c: Remove _initialize_tui_win prototype.
6856 * tui/tui.c: Remove _initialize_tui prototype.
6857 * typeprint.c: Remove _initialize_typeprint prototype.
6858 * user-regs.c: Remove _initialize_user_regs prototype.
6859 * utils.c: Remove _initialize_utils prototype.
6860 * v850-tdep.c: Remove _initialize_v850_tdep prototype.
6861 * valarith.c: Remove _initialize_valarith prototype.
6862 * valops.c: Remove _initialize_valops prototype.
6863 * valprint.c: Remove _initialize_valprint prototype.
6864 * value.c: Remove _initialize_values prototype.
6865 * varobj.c: Remove _initialize_varobj prototype.
6866 * vax-bsd-nat.c: Remove _initialize_vaxbsd_nat prototype.
6867 * vax-nbsd-tdep.c: Remove _initialize_vaxnbsd_tdep prototype.
6868 * vax-tdep.c: Remove _initialize_vax_tdep prototype.
6869 * windows-nat.c: Remove _initialize_windows_nat,
6870 _initialize_check_for_gdb_ini, and _initialize_loadable
6871 prototypes.
6872 * windows-tdep.c: Remove _initialize_windows_tdep prototype.
6873 * xcoffread.c: Remove _initialize_xcoffread prototype.
6874 * xml-support.c: Remove _initialize_xml_support prototype.
6875 * xstormy16-tdep.c: Remove _initialize_xstormy16_tdep prototype.
6876 * xtensa-linux-nat.c: Remove _initialize_xtensa_linux_nat
6877 prototype.
6878 * xtensa-linux-tdep.c: Remove _initialize_xtensa_linux_tdep
6879 prototype.
6880 * xtensa-tdep.c: Remove _initialize_xtensa_tdep prototype.
6881
6882 2017-09-08 Keith Seitz <keiths@redhat.com>
6883
6884 * dwarf2read.c (struct field_info) <fnfields>: Remove unused
6885 field.
6886
6887 2017-09-08 Christoph Weinmann <christoph.t.weinmann@intel.com>
6888
6889 * f-valprint.c (f_val_print): Remove check for one byte
6890 sized integers. Remove printing of character type.
6891
6892 2017-09-08 Frank Penczek <frank.penczek@intel.com>
6893 Christoph Weinmann <christoph.t.weinmann@intel.com>
6894 Bernhard Heckel <bernhard.heckel@intel.com>
6895
6896 * f-typeprint.c (f_type_print_base): Use fprintfi_filtered
6897 to maintain proper indentation when printing pointers/refs.
6898
6899 2017-09-07 Joel Brobecker <brobecker@adacore.com>
6900
6901 GDB 8.0.1 released.
6902
6903 2017-09-07 Joel Brobecker <brobecker@adacore.com>
6904
6905 * NEWS (Changes in GDB 7.11): Remove entry for QStartupWithShell.
6906
6907 2017-09-05 Tom Tromey <tom@tromey.com>
6908
6909 * parse.c (funcall_chain): Now a std::vector.
6910 (start_arglist, end_arglist): Simplify.
6911 (free_funcalls): Remove.
6912 (parse_exp_in_context_1): Remove cleanup.
6913
6914 2017-09-05 Tom Tromey <tom@tromey.com>
6915
6916 * go-exp.y (go_parse): Don't create a cleanup.
6917
6918 2017-09-05 Tom Tromey <tom@tromey.com>
6919
6920 * d-exp.y (PrimaryExpression): Use std::string.
6921 (d_parse): Don't create a cleanup.
6922
6923 2017-09-05 Tom Tromey <tom@tromey.com>
6924
6925 * utils.c (do_clear_parser_state): Remove.
6926 (make_cleanup_clear_parser_state): Remove.
6927 * p-exp.y (pascal_parse): Use scoped_restore.
6928 * m2-exp.y (m2_parse): Use scoped_restore.
6929 * f-exp.y (f_parse): Use scoped_restore.
6930 * d-exp.y (d_parse): Use scoped_restore.
6931 * c-exp.y (c_parse): Use scoped_restore.
6932 * ada-exp.y (ada_parse): Use scoped_restore.
6933 * utils.h (make_cleanup_clear_parser_state): Remove.
6934
6935 2017-09-06 Keith Seitz <keiths@redhat.com>
6936
6937 * dwarf2read.c (dw2_linkage_name_attr): New function.
6938 (dw2_linkage_name): New function.
6939 (dwarf2_compute_name, dwarf2_physname, read_call_site_scope)
6940 (guess_full_die_structure_name, dwarf2_name): Use dw2_linkage_name.
6941 (anonymous_struct_prefix, dwarf2_name): Use dw2_linkage_name_attr.
6942
6943 2017-09-06 Kamil Rytarowski <n54@gmx.com>
6944
6945 * config/djgpp/djconfig.sh: Correct shell portability issue.
6946
6947 2017-09-06 Kamil Rytarowski <n54@gmx.com>
6948
6949 * configure.nat: Define HAVE_NATIVE_GCORE_HOST on NetBSD.
6950
6951 2017-09-06 John Baldwin <jhb@FreeBSD.org>
6952
6953 * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
6954 * NEWS: Mention new FreeBSD/mips native configuration.
6955 * configure.host: Add aarch64*-*-freebsd*.
6956 * configure.nat: Likewise.
6957 * aarch64-fbsd-nat.c: New file.
6958
6959 2017-09-06 John Baldwin <jhb@FreeBSD.org>
6960
6961 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-fbsd-tdep.o.
6962 (ALLDEPFILES): Add aarch64-fbsd-tdep.c.
6963 * NEWS: Mention new FreeBSD/aarch64 target.
6964 * configure.tgt: Add aarch64*-*-freebsd*.
6965 * aarch64-fbsd-tdep.c: New file.
6966 * aarch64-fbsd-tdep.h: New file.
6967
6968 2017-09-06 Kamil Rytarowski <n54@gmx.com>
6969
6970 * MAINTAINERS (Write After Approval): Add Kamil Rytarowski.
6971
6972 2017-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
6973
6974 * parse.c (find_minsym_type_and_address): Don't relocate addresses
6975 of TLS symbols.
6976
6977 2017-09-05 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6978
6979 * objfiles.c (get_objfile_bfd_data): Remove useless obstack_init
6980 call.
6981
6982 2017-09-05 Simon Marchi <simon.marchi@ericsson.com>
6983
6984 * infrun.c (follow_exec): Call add_thread after
6985 target_find_description.
6986
6987 2017-09-05 Simon Marchi <simon.marchi@ericsson.com>
6988
6989 * infrun.c (handle_inferior_event_1): When exec'ing, read
6990 stop_pc after follow_exec.
6991
6992 2017-09-05 Simon Marchi <simon.marchi@ericsson.com>
6993
6994 * remote.c (process_g_packet): Update error message.
6995
6996 2017-09-05 Yao Qi <yao.qi@linaro.org>
6997
6998 * configure.tgt (gdb_target_obs): Add i386.o for x86_64-*
6999 targets.
7000
7001 2017-09-05 Pedro Alves <palves@redhat.com>
7002
7003 * eval.c (eval_call, evaluate_funcall): New functions, factored
7004 out from ...
7005 (evaluate_subexp_standard): ... this.
7006
7007 2017-09-05 Yao Qi <yao.qi@linaro.org>
7008
7009 * amd64-tdep.c (amd64_target_description): Create target
7010 descriptions.
7011 (_initialize_amd64_tdep): Don't call functions
7012 initialize_tdesc_amd64_*. Add self tests.
7013 * arch/amd64.c (amd64_create_target_description): Add parameter
7014 is_linux. Call set_tdesc_osabi if is_linux is true.
7015 * arch/amd64.h (amd64_create_target_description): Update the
7016 declaration.
7017 * arch/i386.c (i386_create_target_description): Add parameter
7018 is_linux. Call set_tdesc_osabi if is_linux is true.
7019 * arch/i386.h (i386_create_target_description): Update
7020 declaration.
7021 * configure.tgt: Add i386.o to gdb_target_obs.
7022 * features/Makefile (XMLTOC): Remove i386/*.xml.
7023 * features/i386/amd64-avx-avx512.c: Remove.
7024 * features/i386/amd64-avx-mpx-avx512-pku.c: Remove.
7025 * features/i386/amd64-avx-mpx.c: Remove.
7026 * features/i386/amd64-avx.c: Remove.
7027 * features/i386/amd64-mpx.c: Remove.
7028 * features/i386/amd64.c: Remove.
7029 * features/i386/i386-avx-avx512.c: Remove.
7030 * features/i386/i386-avx-mpx-avx512-pku.c: Remove.
7031 * features/i386/i386-avx-mpx.c: Remove.
7032 * features/i386/i386-avx.c: Remove.
7033 * features/i386/i386-mmx.c: Remove.
7034 * features/i386/i386-mpx.c: Remove.
7035 * features/i386/i386.c: Remove.
7036 * i386-tdep.c: Don't include features/i386/i386*.c., include
7037 target-descriptions.h and arch/i386.h.
7038 (i386_target_description): Create target descriptions.
7039 (i386_gdbarch_init): Don't call initialize_tdesc_i386_*
7040 functions. Do self tests.
7041
7042 2017-09-05 Yao Qi <yao.qi@linaro.org>
7043
7044 * features/Makefile (XMLTOC): Remove i386/amd64XXX-linux.xml.
7045 * features/i386/amd64-avx-avx512-linux.c: Removed.
7046 * features/i386/amd64-avx-linux.c: Removed.
7047 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Removed.
7048 * features/i386/amd64-avx-mpx-linux.c: Removed.
7049 * features/i386/amd64-linux.c: Removed.
7050 * features/i386/amd64-mpx-linux.c: Removed.
7051 * features/i386/x32-avx-avx512-linux.c: Removed.
7052 * features/i386/x32-avx-linux.c: Removed.
7053 * features/i386/x32-linux.c: Removed.
7054
7055 2017-09-05 Yao Qi <yao.qi@linaro.org>
7056
7057 * amd64-linux-tdep.c: Include arch/amd64.h. Don't include
7058 features/i386/*.c.
7059 (amd64_linux_read_description): Call
7060 amd64_create_target_description.
7061 * arch/amd64.c: New file.
7062 * arch/amd64.h: New file.
7063 * configure.tgt (x86_64-*-linux*): Append amd64.o.
7064 * Makefile.in (ALL_64_TARGET_OBS): Append amd64.o.
7065
7066 2017-09-05 Yao Qi <yao.qi@linaro.org>
7067
7068 * amd64-linux-tdep.c: Don't include amd64-XXX-linux and
7069 x32-XXX-linux.c. Include 64bit-XX.c and x32-XX.c.
7070 (amd64_linux_read_description): Create target descriptions.
7071 (_initialize_amd64_linux_tdep): Don't call initialize_tdesc_XXX
7072 functions. Add unit tests.
7073 * features/Makefile (FEATURE_XMLFILES): Append 64bit-XXX.xml and
7074 x32-core.xml.
7075 * features/i386/64bit-avx.c: Generated.
7076 * features/i386/64bit-avx512.c: Generated.
7077 * features/i386/64bit-core.c: Generated.
7078 * features/i386/64bit-linux.c: Generated.
7079 * features/i386/64bit-mpx.c: Generated.
7080 * features/i386/64bit-pkeys.c: Generated.
7081 * features/i386/64bit-segments.c: Generated.
7082 * features/i386/64bit-sse.c: Generated.
7083 * features/i386/x32-core.c: Generated.
7084 * target-descriptions.c (maint_print_c_tdesc_cmd): Print feature
7085 c files for amd64-linux and x32-linux.
7086
7087 2017-09-05 Yao Qi <yao.qi@linaro.org>
7088
7089 * amd64-linux-tdep.c (amd64_linux_read_description): New
7090 function.
7091 (amd64_linux_core_read_description): Call
7092 amd64_linux_read_description.
7093 (amd64_linux_init_abi): Likewise.
7094 (amd64_x32_linux_init_abi): Likewise.
7095 * amd64-linux-tdep.h (amd64_linux_read_description): Declare.
7096 * x86-linux-nat.c (x86_linux_read_description): Call
7097 amd64_linux_read_description.
7098
7099 2017-09-05 Yao Qi <yao.qi@linaro.org>
7100
7101 * amd64-linux-tdep.c (amd64_linux_core_read_description): Update
7102 comments.
7103
7104 2017-09-05 Yao Qi <yao.qi@linaro.org>
7105
7106 * features/Makefile (XMLTOC): Remove i386/i386-XX-linux.xml.
7107 * features/i386/i386-avx-avx512-linux.c: Remove.
7108 * features/i386/i386-avx-linux.c: Remove.
7109 * features/i386/i386-avx-mpx-avx512-pku-linux.c: Remove.
7110 * features/i386/i386-avx-mpx-linux.c: Remove.
7111 * features/i386/i386-linux.c: Remove.
7112 * features/i386/i386-mmx-linux.c: Remove.
7113 * features/i386/i386-mpx-linux.c: Remove.
7114
7115 2017-09-05 Yao Qi <yao.qi@linaro.org>
7116
7117 * Makefile.in (ALL_TARGET_OBS): Add i386.o.
7118 (SFILES): Add arch/i386.c.
7119 (HFILES_NO_SRCDIR): Add arch/i386.h.
7120 * arch/i386.c: New file.
7121 * arch/i386.h: New file.
7122 * arch/tdesc.h (allocate_target_description): Declare.
7123 (set_tdesc_architecture): Declare.
7124 (set_tdesc_osabi): Declare.
7125 * configure.tgt (i[34567]86-*-linux*): Add i386.o.
7126 * i386-linux-tdep.c: Don't include ../features/i386/32bit-XXX.c.
7127 include arch/i386.h.
7128 (i386_linux_read_description): Remove code and call
7129 i386_create_target_description.
7130 (set_tdesc_architecture): New function.
7131 (set_tdesc_osabi): New function.
7132 * target-descriptions.h (allocate_target_description): Remove.
7133
7134 2017-09-05 Yao Qi <yao.qi@linaro.org>
7135
7136 * arch/tdesc.h (tdesc_create_feature): Add an argument xml.
7137 * target-descriptions.c (tdesc_create_feature): Likewise, and
7138 adjust code.
7139 * features/i386/32bit-avx.c: Re-generated.
7140 * features/i386/32bit-avx512.c: Re-generated.
7141 * features/i386/32bit-core.c: Re-generated.
7142 * features/i386/32bit-linux.c: Re-generated.
7143 * features/i386/32bit-mpx.c: Re-generated.
7144 * features/i386/32bit-pkeys.c: Re-generated.
7145 * features/i386/32bit-sse.c: Re-generated.
7146
7147 2017-09-05 Yao Qi <yao.qi@linaro.org>
7148
7149 * regformats/regdef.h (struct reg): Override operator == and !=.
7150
7151 2017-09-05 Yao Qi <yao.qi@linaro.org>
7152
7153 * arch/tdesc.h: New file.
7154 * regformats/regdat.sh: Generate code using tdesc_create_reg.
7155 * target-descriptions.c: Update comments.
7156 * target-descriptions.h: Include "arch/tdesc.h". Remove the
7157 declarations.
7158 * features/i386/32bit-avx.c: Re-generated.
7159 * features/i386/32bit-avx512.c: Re-generated.
7160 * features/i386/32bit-core.c: Re-generated.
7161 * features/i386/32bit-linux.c: Re-generated.
7162 * features/i386/32bit-mpx.c: Re-generated.
7163 * features/i386/32bit-pkeys.c: Re-generated.
7164 * features/i386/32bit-sse.c: Re-generated.
7165
7166 2017-09-05 Yao Qi <yao.qi@linaro.org>
7167
7168 * regformats/regdat.sh: Update generated code.
7169
7170 2017-09-05 Yao Qi <yao.qi@linaro.org>
7171
7172 * regformats/regdat.sh: Adjust code order.
7173
7174 2017-09-05 Simon Marchi <simon.marchi@ericsson.com>
7175
7176 * expprint.c (dump_subexp_body_standard): Use constant format
7177 string in fprintf_filtered call.
7178
7179 2017-09-04 John Baldwin <jhb@FreeBSD.org>
7180
7181 * configure.nat: Add "x86-nat.o x86-dregs.o" for NetBSD/amd64 and
7182 NetBSD/i386.
7183 * x86-bsd-nat.c [!DBREG_DRX && __NetBSD__]: Define DBREG_DRX.
7184
7185 2017-09-04 John Baldwin <jhb@FreeBSD.org>
7186
7187 * bsd-kvm.o: Make <sys/user.h> conditional on HAVE_SYS_USER_H.
7188
7189 2017-09-04 John Baldwin <jhb@FreeBSD.org>
7190
7191 * bsd-kvm.o: Define _KMEMUSER.
7192 * configure.ac: Define _KMEMUSER when checking for "struct lwp".
7193 * configure: Regenerate.
7194
7195 2017-09-04 John Baldwin <jhb@FreeBSD.org>
7196
7197 * amd64-fbsd-nat.c: Add include of "x86-xstate.h".
7198 * i386-fbsd-nat.c: Likewise.
7199
7200 2017-09-04 John Baldwin <jhb@FreeBSD.org>
7201
7202 * unittests/array-view-selftests.c: Add include of <array>.
7203
7204 2017-09-04 John Baldwin <jhb@FreeBSD.org>
7205
7206 * spu-tdep.c (flush_ea_cache): Add missing argument to
7207 call_function_by_hand.
7208
7209 2017-09-04 Pedro Alves <palves@redhat.com>
7210
7211 * NEWS (Safer support for debugging with no debug info): New.
7212
7213 2017-09-04 Pedro Alves <palves@redhat.com>
7214
7215 * c-exp.y (function_method, function_method_void): Add current
7216 instance flags to TYPE_INSTANCE.
7217 * dwarf2read.c (check_modifier): New.
7218 (compute_delayed_physnames): Assert that only C++ adds delayed
7219 physnames. Mark fn_fields as const/volatile depending on
7220 physname.
7221 * eval.c (make_params): New type_instance_flags parameter. Use
7222 it as the new type's instance flags.
7223 (evaluate_subexp_standard) <TYPE_INSTANCE>: Extract the instance
7224 flags element and pass it to make_params.
7225 * expprint.c (print_subexp_standard) <TYPE_INSTANCE>: Handle
7226 instance flags element.
7227 (dump_subexp_body_standard) <TYPE_INSTANCE>: Likewise.
7228 * gdbtypes.h: Include "enum-flags.h".
7229 (type_instance_flags): New enum-flags type.
7230 (TYPE_CONST, TYPE_VOLATILE, TYPE_RESTRICT, TYPE_ATOMIC)
7231 (TYPE_CODE_SPACE, TYPE_DATA_SPACE): Return boolean.
7232 * parse.c (operator_length_standard) <TYPE_INSTANCE>: Adjust.
7233 (follow_type_instance_flags): New function.
7234 (operator_check_standard) <TYPE_INSTANCE>: Adjust.
7235 * parser-defs.h (follow_type_instance_flags): Declare.
7236 * valops.c (value_struct_elt_for_reference): const/volatile must
7237 match too.
7238
7239 2017-09-04 Pedro Alves <palves@redhat.com>
7240
7241 * cp-namespace.c (cp_search_static_and_baseclasses): Handle
7242 function/method scopes; lookup the nested name as a function local
7243 static variable.
7244
7245 2017-09-04 Pedro Alves <palves@redhat.com>
7246
7247 (%type <voidval>): Add function_method.
7248 * c-exp.y (exp): New production for calls with no arguments.
7249 (function_method, function_method_void_or_typelist): New
7250 productions.
7251 (exp): New production for "method()::static_var".
7252 * eval.c (evaluate_subexp_standard): Handle OP_FUNC_STATIC_VAR.
7253 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
7254 Handle OP_FUNC_STATIC_VAR.
7255 * parse.c (operator_length_standard):
7256 Handle OP_FUNC_STATIC_VAR.
7257
7258 2017-09-04 Pedro Alves <palves@redhat.com>
7259
7260 * eval.c (evaluate_subexp_standard): Remove UNOP_MEMVAL_TLS
7261 handling.
7262 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
7263 Ditto.
7264 * parse.c (operator_length_standard, operator_check_standard):
7265 Ditto.
7266 * std-operator.def (UNOP_MEMVAL_TLS): Delete.
7267
7268 2017-09-04 Pedro Alves <palves@redhat.com>
7269
7270 * ax-gdb.c: Include "typeprint.h".
7271 (gen_expr_for_cast): New function.
7272 (gen_expr) <OP_CAST, OP_CAST_TYPE>: Use it.
7273 <OP_VAR_VALUE, OP_MSYM_VAR_VALUE>: Error out if the variable's
7274 type is unknown.
7275 * dwarf2read.c (new_symbol_full): Fallback to int instead of
7276 nodebug_data_symbol.
7277 * eval.c: Include "typeprint.h".
7278 (evaluate_subexp_standard) <OP_VAR_VALUE, OP_VAR_MSYM_VALUE>:
7279 Error out if symbol has unknown type.
7280 <UNOP_CAST, UNOP_CAST_TYPE>: Common bits factored out to
7281 evaluate_subexp_for_cast.
7282 (evaluate_subexp_for_address, evaluate_subexp_for_sizeof): Handle
7283 OP_VAR_MSYM_VALUE.
7284 (evaluate_subexp_for_cast): New function.
7285 * gdbtypes.c (init_nodebug_var_type): New function.
7286 (objfile_type): Use it to initialize types of variables with no
7287 debug info.
7288 * typeprint.c (error_unknown_type): New.
7289 * typeprint.h (error_unknown_type): New declaration.
7290 * compile/compile-c-types.c (convert_type_basic): Handle
7291 TYPE_CODE_ERROR; warn and fallback to int for variables with
7292 unknown type.
7293
7294 2017-09-04 Pedro Alves <palves@redhat.com>
7295
7296 * eval.c (evaluate_var_value): New function, factored out from ...
7297 (evaluate_subexp_standard): ... here.
7298
7299 2017-09-04 Pedro Alves <palves@redhat.com>
7300
7301 * eval.c (evaluate_subexp_standard) <UNOP_COMPLEMENT, UNOP_ADDR>:
7302 Remove useless assignments to 'op'.
7303
7304 2017-09-04 Pedro Alves <palves@redhat.com>
7305
7306 * eval.c (eval_skip_value): New function.
7307 (evaluate_subexp_standard): Use it.
7308
7309 2017-09-04 Pedro Alves <palves@redhat.com>
7310
7311 * eval.c (evaluate_subexp_standard): <OP_FUNCALL>: Extract
7312 function name from symbol/minsym and pass it to
7313 error_call_unknown_return_type.
7314
7315 2017-09-04 Pedro Alves <palves@redhat.com>
7316
7317 * ada-lang.c (resolve_subexp): Handle OP_VAR_MSYM_VALUE.
7318 * ax-gdb.c (gen_msym_var_ref): New function.
7319 (gen_expr): Handle OP_VAR_MSYM_VALUE.
7320 * eval.c (evaluate_var_msym_value): New function.
7321 * eval.c (evaluate_subexp_standard): Handle OP_VAR_MSYM_VALUE.
7322 <OP_FUNCALL>: Extract function name from symbol/minsym and pass it
7323 to call_function_by_hand.
7324 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
7325 Handle OP_VAR_MSYM_VALUE.
7326 (union exp_element) <msymbol>: New field.
7327 * minsyms.h (struct type): Forward declare.
7328 (find_minsym_type_and_address): Declare.
7329 * parse.c (write_exp_elt_msym): New function.
7330 (write_exp_msymbol): Delete, refactored as ...
7331 (find_minsym_type_and_address): ... this new function.
7332 (write_exp_msymbol): Reimplement using OP_VAR_MSYM_VALUE.
7333 (operator_length_standard, operator_check_standard): Handle
7334 OP_VAR_MSYM_VALUE.
7335 * std-operator.def (OP_VAR_MSYM_VALUE): New.
7336
7337 2017-09-04 Pedro Alves <palves@redhat.com>
7338
7339 * ada-lang.c (ada_evaluate_subexp) <TYPE_CODE_FUNC>: Don't handle
7340 TYPE_GNU_IFUNC specially here. Throw error if return type is
7341 unknown.
7342 * ada-typeprint.c (print_func_type): Handle functions with unknown
7343 return type.
7344 * c-typeprint.c (c_type_print_base): Handle functions and methods
7345 with unknown return type.
7346 * compile/compile-c-symbols.c (convert_symbol_bmsym)
7347 <mst_text_gnu_ifunc>: Use nodebug_text_gnu_ifunc_symbol.
7348 * compile/compile-c-types.c: Include "objfiles.h".
7349 (convert_func): For functions with unknown return type, warn and
7350 default to int.
7351 * compile/compile-object-run.c (compile_object_run): Adjust call
7352 to call_function_by_hand_dummy.
7353 * elfread.c (elf_gnu_ifunc_resolve_addr): Adjust call to
7354 call_function_by_hand.
7355 * eval.c (evaluate_subexp_standard): Adjust calls to
7356 call_function_by_hand. Handle functions and methods with unknown
7357 return type. Pass expect_type to call_function_by_hand.
7358 * f-typeprint.c (f_type_print_base): Handle functions with unknown
7359 return type.
7360 * gcore.c (call_target_sbrk): Adjust call to
7361 call_function_by_hand.
7362 * gdbtypes.c (objfile_type): Leave nodebug text symbol with NULL
7363 return type instead of int. Make nodebug_text_gnu_ifunc_symbol be
7364 an integer address type instead of nodebug.
7365 * guile/scm-value.c (gdbscm_value_call): Adjust call to
7366 call_function_by_hand.
7367 * infcall.c (error_call_unknown_return_type): New function.
7368 (call_function_by_hand): New "default_return_type" parameter.
7369 Pass it down.
7370 (call_function_by_hand_dummy): New "default_return_type"
7371 parameter. Use it instead of defaulting to int. If there's no
7372 default and the return type is unknown, throw an error. If
7373 there's a default return type, and the called function has no
7374 debug info, then assume the function is prototyped.
7375 * infcall.h (call_function_by_hand, call_function_by_hand_dummy):
7376 New "default_return_type" parameter.
7377 (error_call_unknown_return_type): New declaration.
7378 * linux-fork.c (call_lseek): Cast return type of lseek.
7379 (inferior_call_waitpid, checkpoint_command): Adjust calls to
7380 call_function_by_hand.
7381 * linux-tdep.c (linux_infcall_mmap, linux_infcall_munmap): Adjust
7382 calls to call_function_by_hand.
7383 * m2-typeprint.c (m2_procedure): Handle functions with unknown
7384 return type.
7385 * objc-lang.c (lookup_objc_class, lookup_child_selector)
7386 (value_nsstring, print_object_command): Adjust calls to
7387 call_function_by_hand.
7388 * p-typeprint.c (pascal_type_print_varspec_prefix): Handle
7389 functions with unknown return type.
7390 (pascal_type_print_func_varspec_suffix): New function.
7391 (pascal_type_print_varspec_suffix) <TYPE_CODE_FUNC,
7392 TYPE_CODE_METHOD>: Use it.
7393 * python/py-value.c (valpy_call): Adjust call to
7394 call_function_by_hand.
7395 * rust-lang.c (rust_evaluate_funcall): Adjust call to
7396 call_function_by_hand.
7397 * valarith.c (value_x_binop, value_x_unop): Adjust calls to
7398 call_function_by_hand.
7399 * valops.c (value_allocate_space_in_inferior): Adjust call to
7400 call_function_by_hand.
7401 * typeprint.c (type_print_unknown_return_type): New function.
7402 * typeprint.h (type_print_unknown_return_type): New declaration.
7403
7404 2017-09-04 Pedro Alves <palves@redhat.com>
7405
7406 * gdbtypes.c (lookup_function_type_with_arguments): Mark function
7407 types with more than one parameter as prototyped.
7408
7409 2017-09-04 Pedro Alves <palves@redhat.com>
7410
7411 * cli/cli-cmds.c (print_disassembly, disassemble_current_function)
7412 (disassemble_command): Use gdb_disassembly_flags instead of bare
7413 int.
7414 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn)
7415 (dump_insns, do_mixed_source_and_assembly_deprecated)
7416 (do_mixed_source_and_assembly, do_assembly_only, gdb_disassembly):
7417 Use gdb_disassembly_flags instead of bare int.
7418 * disasm.h (DISASSEMBLY_SOURCE_DEPRECATED, DISASSEMBLY_RAW_INSN)
7419 (DISASSEMBLY_OMIT_FNAME, DISASSEMBLY_FILENAME)
7420 (DISASSEMBLY_OMIT_PC, DISASSEMBLY_SOURCE)
7421 (DISASSEMBLY_SPECULATIVE): No longer macros. Instead they're...
7422 (enum gdb_disassembly_flag): ... values of this new enumeration.
7423 (gdb_disassembly_flags): Define.
7424 (gdb_disassembly)
7425 (gdb_pretty_print_disassembler::pretty_print_insn): Use it.
7426 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Use
7427 gdb_disassembly_flags instead of bare int.
7428 * record-btrace.c (btrace_insn_history)
7429 (record_btrace_insn_history, record_btrace_insn_history_range)
7430 (record_btrace_insn_history_from): Use gdb_disassembly_flags
7431 instead of bare int.
7432 * record.c (get_insn_history_modifiers, cmd_record_insn_history):
7433 Use gdb_disassembly_flags instead of bare int.
7434 * target-debug.h (target_debug_print_gdb_disassembly_flags):
7435 Define.
7436 * target-delegates.c: Regenerate.
7437 * target.c (target_insn_history, target_insn_history_from)
7438 (target_insn_history_range): Use gdb_disassembly_flags instead of
7439 bare int.
7440 * target.h: Include "disasm.h".
7441 (struct target_ops) <to_insn_history, to_insn_history_from,
7442 to_insn_history_range>: Use gdb_disassembly_flags instead of bare
7443 int.
7444 (target_insn_history, target_insn_history_from)
7445 (target_insn_history_range): Use gdb_disassembly_flags instead of
7446 bare int.
7447
7448 2017-09-04 Simon Marchi <simon.marchi@ericsson.com>
7449
7450 * cli/cli-script.c (build_command_line): For if/while commands,
7451 check whether args is empty.
7452
7453 2017-09-04 Simon Marchi <simon.marchi@ericsson.com>
7454
7455 * cli/cli-script.h (enum misc_command_type): Move from defs.h.
7456 (enum command_control_type): Likewise.
7457 (struct command_line): Likewise.
7458 (free_command_lines): Likewise.
7459 (struct command_lines_deleter): Likewise.
7460 (command_line_up): Likewise.
7461 (read_command_lines): Likewise.
7462 (read_command_lines_1): Likewise.
7463 * defs.h (enum misc_command_type): Move to cli/cli-script.h.
7464 (enum command_control_type): Likewise.
7465 (struct command_line): Likewise.
7466 (free_command_lines): Likewise.
7467 (struct command_lines_deleter): Likewise.
7468 (command_line_up): Likewise.
7469 (read_command_lines): Likewise.
7470 (read_command_lines_1): Likewise.
7471 * breakpoint.h: Include cli/cli-script.h.
7472 * extension-priv.h: Likewise.
7473 * gdbcmd.h: Likewise.
7474
7475 2017-09-04 Pedro Alves <palves@redhat.com>
7476
7477 * ada-lang.c (is_known_support_routine): Move sal declaration to
7478 where it is initialized.
7479 * breakpoint.c (create_internal_breakpoint, init_catchpoint)
7480 (parse_breakpoint_sals, decode_static_tracepoint_spec)
7481 (clear_command, update_static_tracepoint): Remove init_sal
7482 references. Move declarations closer to initializations.
7483 * cli/cli-cmds.c (list_command): Move sal declarations closer to
7484 initializations.
7485 * elfread.c (elf_gnu_ifunc_resolver_stop): Remove init_sal
7486 references. Move sal declarations closer to initializations.
7487 * frame.c (find_frame_sal): Return a symtab_and_line via function
7488 return instead of output parameter. Remove init_sal references.
7489 * frame.h (find_frame_sal): Return a symtab_and_line via function
7490 return instead of output parameter.
7491 * guile/scm-frame.c (gdbscm_frame_sal): Adjust.
7492 * guile/scm-symtab.c (stscm_make_sal_smob): Use in-place new
7493 instead of memset.
7494 (gdbscm_find_pc_line): Remove init_sal reference.
7495 * infcall.c (call_function_by_hand_dummy): Remove init_sal
7496 references. Move declarations closer to initializations.
7497 * infcmd.c (set_step_frame): Update. Move declarations closer to
7498 initializations.
7499 (finish_backward): Remove init_sal references. Move declarations
7500 closer to initializations.
7501 * infrun.c (process_event_stop_test, handle_step_into_function)
7502 (insert_hp_step_resume_breakpoint_at_frame)
7503 (insert_step_resume_breakpoint_at_caller): Likewise.
7504 * linespec.c (create_sals_line_offset, decode_digits_ordinary)
7505 (symbol_to_sal): Likewise.
7506 * probe.c (parse_probes_in_pspace): Remove init_sal reference.
7507 * python/py-frame.c (frapy_find_sal): Move sal declaration closer
7508 to its initialization.
7509 * reverse.c (save_bookmark_command): Use new/delete. Remove
7510 init_sal references. Move declarations closer to initializations.
7511 * source.c (get_current_source_symtab_and_line): Remove brace
7512 initialization.
7513 (set_current_source_symtab_and_line): Now takes the sal by const
7514 reference. Remove brace initialization.
7515 (line_info): Remove init_sal reference.
7516 * source.h (set_current_source_symtab_and_line): Now takes a
7517 symtab_and_line via const reference.
7518 * stack.c (set_current_sal_from_frame): Adjust.
7519 (print_frame_info): Adjust.
7520 (get_last_displayed_sal): Return the sal via function return
7521 instead of via output parameter. Simplify.
7522 (frame_info): Adjust.
7523 * stack.h (get_last_displayed_sal): Return the sal via function
7524 return instead of via output parameter.
7525 * symtab.c (init_sal): Delete.
7526 (find_pc_sect_line): Remove init_sal references. Move
7527 declarations closer to initializations.
7528 (find_function_start_sal): Remove init_sal references. Move
7529 declarations closer to initializations.
7530 * symtab.h (struct symtab_and_line): In-class initialize all
7531 fields.
7532 * tracepoint.c (set_traceframe_context)
7533 (print_one_static_tracepoint_marker): Remove init_sal references.
7534 Move declarations closer to initializations.
7535 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Adjust.
7536 * tui/tui-stack.c (tui_show_frame_info): Adjust. Move
7537 declarations closer to initializations.
7538 * tui/tui-winsource.c (tui_update_source_window_as_is): Remove
7539 init_sal references. Adjust.
7540
7541 2017-09-04 Pedro Alves <palves@redhat.com>
7542
7543 * ax-gdb.c (agent_command_1): Use range-for.
7544 * break-catch-throw.c (re_set_exception_catchpoint): Update.
7545 * breakpoint.c: Include "common/array-view.h".
7546 (init_breakpoint_sal, create_breakpoint_sal): Change sals
7547 parameter from struct symtabs_and_lines to
7548 array_view<symtab_and_line>. Adjust. Use range-for. Update.
7549 (breakpoint_sals_to_pc): Change sals parameter from struct
7550 symtabs_and_lines to std::vector reference.
7551 (check_fast_tracepoint_sals): Change sals parameter from struct
7552 symtabs_and_lines to std::array_view. Use range-for.
7553 (decode_static_tracepoint_spec): Return a std::vector instead of
7554 symtabs_and_lines. Update.
7555 (create_breakpoint): Update.
7556 (break_range_command, until_break_command, clear_command): Update.
7557 (base_breakpoint_decode_location, bkpt_decode_location)
7558 (bkpt_probe_create_sals_from_location)
7559 (bkpt_probe_decode_location, tracepoint_decode_location)
7560 (tracepoint_probe_decode_location)
7561 (strace_marker_create_sals_from_location): Return a std::vector
7562 instead of symtabs_and_lines.
7563 (strace_marker_create_breakpoints_sal): Update.
7564 (strace_marker_decode_location): Return a std::vector instead of
7565 symtabs_and_lines. Update.
7566 (update_breakpoint_locations): Change struct symtabs_and_lines
7567 parameters to gdb::array_view. Adjust.
7568 (location_to_sals): Return a std::vector instead of
7569 symtabs_and_lines. Update.
7570 (breakpoint_re_set_default): Use std::vector instead of struct
7571 symtabs_and_lines.
7572 (decode_location_default): Return a std::vector instead of
7573 symtabs_and_lines. Update.
7574 * breakpoint.h: Include "common/array-view.h".
7575 (struct breakpoint_ops) <decode_location>: Now returns a
7576 std::vector instead of returning a symtabs_and_lines via output
7577 parameter.
7578 (update_breakpoint_locations): Change sals parameters to use
7579 gdb::array_view.
7580 * cli/cli-cmds.c (edit_command, list_command): Update to use
7581 std::vector and gdb::array_view.
7582 (ambiguous_line_spec): Adjust to use gdb::array_view and
7583 range-for.
7584 (compare_symtabs): Rename to ...
7585 (cmp_symtabs): ... this. Change parameters to symtab_and_line
7586 const reference and adjust.
7587 (filter_sals): Rewrite using std::vector and standard algorithms.
7588 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Simplify.
7589 (jump_command): Update to use std::vector.
7590 * linespec.c (struct linespec_state) <canonical_names>: Update
7591 comment.
7592 (add_sal_to_sals_basic): Delete.
7593 (add_sal_to_sals, filter_results, convert_results_to_lsals)
7594 (decode_line_2, create_sals_line_offset)
7595 (convert_address_location_to_sals, convert_linespec_to_sals)
7596 (convert_explicit_location_to_sals, parse_linespec)
7597 (event_location_to_sals, decode_line_full, decode_line_1)
7598 (decode_line_with_current_source)
7599 (decode_line_with_last_displayed, decode_objc)
7600 (decode_digits_list_mode, decode_digits_ordinary, minsym_found)
7601 (linespec_result::~linespec_result): Adjust to use std::vector
7602 instead of symtabs_and_lines.
7603 * linespec.h (linespec_sals::sals): Now a std::vector.
7604 (struct linespec_result): Use std::vector, bool, and in-class
7605 initialization.
7606 (decode_line_1, decode_line_with_current_source)
7607 (decode_line_with_last_displayed): Return std::vector.
7608 * macrocmd.c (info_macros_command): Use std::vector.
7609 * mi/mi-main.c (mi_cmd_trace_find): Use std::vector.
7610 * probe.c (parse_probes_in_pspace, parse_probes): Adjust to use
7611 std::vector.
7612 * probe.h (parse_probes): Return a std::vector.
7613 * python/python.c (gdbpy_decode_line): Use std::vector and
7614 gdb::array_view.
7615 * source.c (select_source_symtab, line_info): Use std::vector.
7616 * stack.c (func_command): Use std::vector.
7617 * symtab.h (struct symtabs_and_lines): Delete.
7618 * tracepoint.c (tfind_line_command, scope_info): Use std::vector.
7619
7620 2017-09-04 Pedro Alves <palves@redhat.com>
7621
7622 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
7623 unittests/array-view-selftests.c.
7624 (SUBDIR_UNITTESTS_OBS): Add array-view-selftests.o.
7625 * common/array-view.h: New file.
7626 * unittests/array-view-selftests.c: New file.
7627
7628 2017-09-04 Pedro Alves <palves@redhat.com>
7629
7630 * cli/cli-cmds.c (edit_command): Pass message to
7631 ambiguous_line_spec.
7632 (list_command): Pass message to ambiguous_line_spec. Say
7633 "first"/"last" instead of "start" and "end" to be consistent with
7634 the manual.
7635 (ambiguous_line_spec): Add 'format' and vararg parameters. Use
7636 them to print formatted message.
7637
7638 2017-09-04 Pedro Alves <palves@redhat.com>
7639
7640 * btrace.c (ftrace_add_pt): Pass btrace_insn to
7641 ftrace_update_insns by reference instead of pointer.
7642
7643 2017-09-04 Yao Qi <yao.qi@linaro.org>
7644
7645 * i386-go32-tdep.c: Include x86-xstate.h.
7646 (i386_go32_init_abi): Call i386_target_description.
7647 * i386-tdep.c (i386_target_description): Return tdesc_i386_mmx
7648 if xcr0 is X86_XSTATE_X87_MASK.
7649 * i386-tdep.h (tdesc_i386): Remove the declaration.
7650 (tdesc_i386_mmx): Likewise.
7651
7652 2017-09-04 Yao Qi <yao.qi@linaro.org>
7653
7654 * i386-fbsd-tdep.c (i386fbsd_core_read_xcr0): Return
7655 X86_XSTATE_SSE_MASK instead of 0.
7656
7657 2017-09-04 Yao Qi <yao.qi@linaro.org>
7658
7659 * amd64-fbsd-nat.c (amd64fbsd_read_description): Call
7660 i386_target_description.
7661 * i386-fbsd-nat.c (i386fbsd_read_description): Call
7662 i386_target_description.
7663 * i386-tdep.c (i386_gdbarch_init): Likewise.
7664
7665 2017-09-04 Yao Qi <yao.qi@linaro.org>
7666
7667 * amd64-darwin-tdep.c: Include "x86-xstate.h".
7668 (x86_darwin_init_abi_64): Call amd64_target_description.
7669 * amd64-dicos-tdep.c: Likewise.
7670 * amd64-fbsd-nat.c: Likewise.
7671 * amd64-fbsd-tdep.c: Likewise.
7672 * amd64-nbsd-tdep.c: Likewise.
7673 * amd64-obsd-tdep.c: Likewise.
7674 * amd64-sol2-tdep.c: Likewise.
7675 * amd64-windows-tdep.c: Likewise.
7676 * amd64-tdep.h (tdesc_amd64): Remove the declaration.
7677
7678 2017-09-04 Simon Marchi <simon.marchi@ericsson.com>
7679
7680 * btrace.h (btrace_insn_s, DEF_VEC_O (btrace_insn_s)): Remove.
7681 (btrace_function) <insn>: Change type to use std::vector.
7682 * btrace.c (ftrace_debug, ftrace_call_num_insn,
7683 ftrace_find_call, ftrace_new_gap, ftrace_update_function,
7684 ftrace_update_insns, ftrace_compute_global_level_offset,
7685 btrace_stitch_bts, btrace_clear, btrace_insn_get,
7686 btrace_insn_end, btrace_insn_next, btrace_insn_prev): Adjust to
7687 change to std::vector.
7688 (ftrace_update_insns): Adjust to change to std::vector, change
7689 type of INSN parameter.
7690 (btrace_compute_ftrace_bts): Adjust call to ftrace_update_insns.
7691 * record-btrace.c (btrace_call_history_insn_range,
7692 btrace_compute_src_line_range,
7693 record_btrace_frame_prev_register): Adjust to change to
7694 std::vector.
7695 * python/py-record-btrace.c (recpy_bt_func_instructions): Adjust
7696 to change to std::vector.
7697
7698 2017-09-03 Tom Tromey <tom@tromey.com>
7699
7700 * corefile.c (reopen_exec_file): Use std::string.
7701
7702 2017-09-03 Tom Tromey <tom@tromey.com>
7703
7704 * compile/compile.c (compile_register_name_mangled): Return
7705 std::string.
7706 * compile/compile-loc2c.c (pushf_register_address): Update.
7707 (pushf_register): Update.
7708 * compile/compile-c-types.c (convert_array): Update.
7709 * compile/compile-c-symbols.c (generate_vla_size): Update.
7710 (error_symbol_once): Use a gdb::unique_xmalloc_ptr.
7711 (symbol_substitution_name): Return a gdb::unique_xmalloc_ptr.
7712 (convert_one_symbol): Update.
7713 (generate_c_for_for_one_variable): Update.
7714 * compile/compile-c-support.c (c_get_range_decl_name): Return a
7715 std::string.
7716 (generate_register_struct): Update.
7717 * compile/compile-internal.h (c_get_range_decl_name): Return a
7718 std::string.
7719 (compile_register_name_mangled): Return std::string.
7720
7721 2017-09-03 Tom Tromey <tom@tromey.com>
7722
7723 * utils.c (perror_string): Return a std::string.
7724 (throw_perror_with_name, perror_warning_with_name): Update.
7725
7726 2017-09-03 Tom Tromey <tom@tromey.com>
7727
7728 * demangle.c (demangle_command): Use std::string,
7729 unique_xmalloc_ptr.
7730
7731 2017-09-03 Tom Tromey <tom@tromey.com>
7732
7733 * cli/cli-setshow.c (do_set_command): Use std::string.
7734
7735 2017-09-03 Tom Tromey <tom@tromey.com>
7736
7737 * cli/cli-cmds.c (cd_command): Use gdb::unique_xmalloc_ptr.
7738
7739 2017-09-03 Tom Tromey <tom@tromey.com>
7740
7741 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use std::string.
7742
7743 2017-09-03 Tom Tromey <tom@tromey.com>
7744
7745 * mi/mi-cmd-env.c (env_execute_cli_command): Use
7746 gdb::unique_xmalloc_ptr.
7747
7748 2017-09-03 Tom Tromey <tom@tromey.com>
7749
7750 * thread.c (print_thread_info_1): Use string_printf.
7751 (thread_apply_command, thread_apply_all_command): Use
7752 std::string.
7753
7754 2017-09-03 Tom Tromey <tom@tromey.com>
7755
7756 * valprint.c (val_print_string): Update.
7757 * gdbcore.h (memory_error_message): Return std::string.
7758 * corefile.c (memory_error_message): Return std::string.
7759 (memory_error): Update.
7760 * breakpoint.c (insert_bp_location): Update.
7761
7762 2017-09-03 Simon Marchi <simon.marchi@ericsson.com>
7763
7764 * target/waitstatus.h (target_waitstatus_to_string): Change
7765 return type to std::string.
7766 * target/waitstatus.c (target_waitstatus_to_string): Return
7767 std::string.
7768 * target.h (target_waitstatus_to_string): Remove declaration.
7769 * infrun.c (resume, clear_proceed_status_thread,
7770 print_target_wait_results, do_target_wait, save_waitstatus,
7771 stop_all_threads): Adjust.
7772 * record-btrace.c (record_btrace_wait): Adjust.
7773 * target-debug.h
7774 (target_debug_print_struct_target_waitstatus_p): Adjust.
7775
7776 2017-09-01 Jan Kratochvil <jan.kratochvil@redhat.com>
7777
7778 PR gdb/22046
7779 * nat/linux-procfs.c (parse_proc_status_state): Fix PROC_STATE_STOPPED
7780 detection.
7781
7782 2017-08-31 Sergio Durigan Junior <sergiodj@redhat.com>
7783
7784 * NEWS (Changes since GDB 8.0): Add entry mentioning new support
7785 for setting/unsetting environment variables on the remote target.
7786 (New remote packets): Add entries for QEnvironmentHexEncoded,
7787 QEnvironmentUnset and QEnvironmentReset.
7788 * common/environ.c (gdb_environ::operator=): Extend method to
7789 handle m_user_set_env_list and m_user_unset_env_list.
7790 (gdb_environ::clear): Likewise.
7791 (match_var_in_string): Change type of first parameter from 'char
7792 *' to 'const char *'.
7793 (gdb_environ::set): Extend method to handle
7794 m_user_set_env_list and m_user_unset_env_list.
7795 (gdb_environ::unset): Likewise.
7796 (gdb_environ::clear_user_set_env): New method.
7797 (gdb_environ::user_set_envp): Likewise.
7798 (gdb_environ::user_unset_envp): Likewise.
7799 * common/environ.h (gdb_environ): Handle m_user_set_env_list and
7800 m_user_unset_env_list on move constructor/assignment.
7801 (unset): Add new default parameter 'update_unset_list = true'.
7802 (clear_user_set_env): New method.
7803 (user_set_envp): Likewise.
7804 (user_unset_envp): Likewise.
7805 (m_user_set_env_list): New std::set.
7806 (m_user_unset_env_list): Likewise.
7807 * common/rsp-low.c (hex2str): New function.
7808 (bin2hex): New overload for bin2hex function.
7809 * common/rsp-low.c (hex2str): New prototype.
7810 (str2hex): New overload prototype.
7811 * remote.c: Include "environ.h". Add QEnvironmentHexEncoded,
7812 QEnvironmentUnset and QEnvironmentReset.
7813 (remote_protocol_features): Add QEnvironmentHexEncoded,
7814 QEnvironmentUnset and QEnvironmentReset packets.
7815 (send_environment_packet): New function.
7816 (extended_remote_environment_support): Likewise.
7817 (extended_remote_create_inferior): Call
7818 extended_remote_environment_support.
7819 (_initialize_remote): Add QEnvironmentHexEncoded,
7820 QEnvironmentUnset and QEnvironmentReset packet configs.
7821 * unittests/environ-selftests.c (gdb_selftest_env_var):
7822 New variable.
7823 (test_vector_initialization): New function.
7824 (test_init_from_host_environ): Likewise.
7825 (test_reinit_from_host_environ): Likewise.
7826 (test_set_A_unset_B_unset_A_cannot_find_A_can_find_B):
7827 Likewise.
7828 (test_unset_set_empty_vector): Likewise.
7829 (test_vector_clear): Likewise.
7830 (test_std_move): Likewise.
7831 (test_move_constructor):
7832 (test_self_move): Likewise.
7833 (test_set_unset_reset): Likewise.
7834 (run_tests): Rewrite in terms of the functions above.
7835
7836 2017-08-31 Weimin Pan <weimin.pan@oracle.com>
7837
7838 * sparc64-tdep.c (adi_stat_t): Fix comment formatting.
7839 (adi_available): Use a temp variable of type CORE_ADDR as argument
7840 3 when calling target_auxv_search.
7841 (adi_normalize_address): Use masks and xor operators to calculate
7842 normalized address.
7843 (adi_read_versions, adi_write_versions, adi_print_versions)
7844 (do_examine, do_assign): Use paddress.
7845
7846 2017-08-29 John Baldwin <jhb@FreeBSD.org>
7847
7848 * mips-fbsd-nat.c (getfpregs_supplies): Return true for FIR.
7849 * mips-fbsd-tdep.c (mips_fbsd_supply_fpregs): Split supply of FSR
7850 out of loop and add supply of FIR.
7851 (mips_fbsd_collect_fpregs): Split collect of FSR out of loop and
7852 add collect of FIR.
7853
7854 2017-08-28 Simon Marchi <simon.marchi@ericsson.com>
7855
7856 PR gdb/21827
7857 * cli/cli-script.c (define_command): Don't convert command name
7858 to lower case.
7859
7860 2017-08-25 Joel Brobecker <brobecker@adacore.com>
7861
7862 * ada-lang.c (ada_lookup_struct_elt_type): Remove parameter "dispp".
7863 Update all callers accordingly. Remove all code blocks handling
7864 the case where DISPP is not NULL.
7865
7866 2017-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
7867
7868 PR symtab/22003
7869 * dwarf2read.c (dwarf2_const_value_attr, dump_die_shallow)
7870 (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
7871 (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_implicit_const.
7872
7873 2017-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
7874
7875 * dwarf2read.c (build_type_psymtabs_reader): New prototype.
7876 (process_psymtab_comp_unit): Accept IS_DEBUG_TYPES.
7877 (read_comp_units_from_section): New parameter abbrev_section, use
7878 read_and_check_comp_unit_head, allocate signatured_type if needed.
7879 (create_all_comp_units): Update read_comp_units_from_section caller.
7880
7881 2017-08-23 Pedro Alves <palves@redhat.com>
7882
7883 PR remote/21852
7884 * remote.c (add_current_inferior_and_thread): Set inferior_ptid
7885 to null_ptid and switch to thread without reading the registers
7886 after adding the inferior.
7887
7888 2017-08-23 Jan Kratochvil <jan.kratochvil@redhat.com>
7889
7890 * NEWS (Changes since GDB 8.0): Add set compile-gcc and show
7891 compile-gcc.
7892 * compile/compile.c (compile_gcc, show_compile_gcc): New.
7893 (compile_to_object): Implement compile_gcc.
7894 (_initialize_compile): Install "set compile-gcc". Initialize
7895 compile_gcc.
7896
7897 2017-08-23 Jan Kratochvil <jan.kratochvil@redhat.com>
7898
7899 * compile/compile.c (compile_to_object): Conditionally call
7900 set_verbose. Conditionally call compile or compile_v0.
7901
7902 2017-08-07 Weimin Pan <weimin.pan@oracle.com>
7903
7904 * sparc64-tdep.h: (adi_normalize_address): New export.
7905 * sparc-nat.h: (open_adi_tag_fd): New export.
7906 * sparc64-linux-nat.c: (open_adi_tag_fd): New function.
7907 * sparc64-linux-tdep.c:
7908 (SEGV_ACCADI, SEGV_ADIDERR, SEGV_ADIPERR) New defines.
7909 (sparc64_linux_handle_segmentation_fault): New function.
7910 (sparc64_linux_init_abi): Register
7911 sparc64_linux_handle_segmentation_fault
7912 * sparc64-tdep.c: Include cli-utils.h,gdbcmd.h,auxv.h.
7913 (sparc64_addr_bits_remove): New function.
7914 (sparc64_init_abi): Register sparc64_addr_bits_remove.
7915 (MAX_PROC_NAME_SIZE): New macro.
7916 (AT_ADI_BLKSZ, AT_ADI_NBITS, AT_ADI_UEONADI) New defines.
7917 (sparc64adilist): New variable.
7918 (adi_proc_list): New variable.
7919 (find_adi_info): New function.
7920 (add_adi_info): New function.
7921 (get_adi_info_proc): New function.
7922 (get_adi_info): New function.
7923 (info_adi_command): New function.
7924 (read_maps_entry): New function.
7925 (adi_available): New function.
7926 (adi_normalize_address): New function.
7927 (adi_align_address): New function.
7928 (adi_convert_byte_count): New function.
7929 (adi_tag_fd): New function.
7930 (adi_is_addr_mapped): New function.
7931 (adi_read_versions): New function.
7932 (adi_write_versions): New function.
7933 (adi_print_versions): New function.
7934 (do_examine): New function.
7935 (do_assign): New function.
7936 (adi_examine_command): New function.
7937 (adi_assign_command): New function.
7938 (_initialize_sparc64_adi_tdep): New function.
7939
7940 2017-08-22 Simon Marchi <simon.marchi@ericsson.com>
7941
7942 * breakpoint.c (breakpoints_info): Rename to ...
7943 (info_breakpoints_command): ... this.
7944 (watchpoints_info): Rename to ...
7945 (info_watchpoints_command): ... this.
7946 (tracepoints_info): Rename to ...
7947 (info_tracepoints_command): ... this.
7948 (_initialize_breakpoint): Adjust.
7949 * dcache.c (dcache_info): Rename to ...
7950 (info_display_command): ... this.
7951 (_initialize_dcache): Adjust.
7952 * frame.h (args_info): Rename to ...
7953 (info_args_command): ... this.
7954 (locals_info): Rename to ...
7955 (info_locals_command): ... this.
7956 * infcmd.c (nofp_registers_info): Rename to ...
7957 (info_registers_command): ... this.
7958 (float_info): Rename to ...
7959 (info_float_command): ... this.
7960 (program_info): Rename to ...
7961 (info_program_command): ... this.
7962 (all_registers_info): Rename to ...
7963 (info_all_registers_command): ... this.
7964 (vector_info): Rename to ...
7965 (info_vector_command): ... this.
7966 (float_info): Rename to ...
7967 (info_float_command): ... this.
7968 (_initialize_infcmd): Adjust.
7969 * inferior.h (term_info): Rename to ...
7970 (info_terminal_command): ... this.
7971 * inflow.c (term_info): Rename to ...
7972 (info_terminal_command): ... this.
7973 (_initialize_inflow): Adjust.
7974 * infrun.c (signals_info): Rename to ...
7975 (info_signals_command): ... this.
7976 (_initialize_infrun): Adjust.
7977 * objc-lang.c (classes_info): Rename to ...
7978 (info_classes_command): ... this.
7979 (selectors_info): Rename to ...
7980 (info_selectors_command): ... this.
7981 (_initialize_objc_language): Adjust.
7982 * printcmd.c (sym_info): Rename to ...
7983 (info_symbol_command): ... this.
7984 (address_info): Rename to ...
7985 (info_address_command): ... this.
7986 (display_info): Rename to ...
7987 (info_display_command): ... this.
7988 (_initialize_printcmd): Adjust.
7989 * reverse.c (bookmarks_info): Rename to ...
7990 (info_breakpoints_command): ... this.
7991 (_initialize_reverse): Adjust.
7992 * ser-go32.c (dos_info): Rename to ...
7993 (info_serial_command): ... this.
7994 (_initialize_ser_dos): Adjust.
7995 * skip.c (skip_info): Rename to ...
7996 (info_skip_command): ... this.
7997 (_initialize_step_skip): Adjust.
7998 * source.c (line_info): Rename to ...
7999 (info_line_command): ... this.
8000 (source_info): Rename to ...
8001 (info_source_command)
8002 * stack.c (frame_info): Rename to ...
8003 (info_frame_command): ... this.
8004 (locals_info): Rename to ...
8005 (info_locals_command): ... this.
8006 (args_info): Rename to ...
8007 (info_args_command): ... this.
8008 (_initialize_stack): Adjust.
8009 * symtab.c (sources_info): Rename to ...
8010 (info_sources_command): ... this.
8011 (variables_info): Rename to ...
8012 (info_variables_command): ... this.
8013 (functions_info): Rename to ...
8014 (info_functions_command): ... this.
8015 (types_info): Rename to ...
8016 (info_types_command): ... this.
8017 (_initialize_symtab): Adjust.
8018 * target.c (target_info): Rename to ...
8019 (info_target_command): ... this.
8020 (initialize_targets): Adjust.
8021 * tracepoint.c (tvariables_info): Rename to ...
8022 (info_tvariables_command): ... this.
8023 (scope_info): Rename to ...
8024 (info_scope_command): ... this.
8025 (trace_dump_actions): Adjust.
8026 (_initialize_tracepoint): Adjust.
8027
8028 2017-08-22 Tom Tromey <tom@tromey.com>
8029
8030 * breakpoint.h (install_breakpoint): Update.
8031 * breakpoint.c (add_solib_catchpoint): Update.
8032 (install_breakpoint): Change argument to a std::unique_ptr.
8033 (create_fork_vfork_event_catchpoint): Use std::unique_ptr.
8034 (create_breakpoint_sal, create_breakpoint): Update.
8035 (watch_command_1, catch_exec_command_1)
8036 (strace_marker_create_breakpoints_sal): Use std::unique_ptr.
8037 (add_to_breakpoint_chain): Change argument to a std::unique_ptr.
8038 Return the breakpoint.
8039 (set_raw_breakpoint_without_location, set_raw_breakpoint)
8040 (new_single_step_breakpoint): Update.
8041 * break-catch-throw.c (handle_gnu_v3_exceptions): Use
8042 std::unique_ptr.
8043 * break-catch-syscall.c (create_syscall_event_catchpoint): Use
8044 std::unique_ptr.
8045 * break-catch-sig.c (create_signal_catchpoint): Use
8046 std::unique_ptr.
8047 * ada-lang.c (create_ada_exception_catchpoint): Use
8048 std::unique_ptr.
8049
8050 2017-08-22 Tom Tromey <tom@tromey.com>
8051
8052 * breakpoint.c (add_solib_catchpoint): Use std::unique_ptr.
8053
8054 2017-08-22 Tom Tromey <tom@tromey.com>
8055
8056 * psymtab.c (psymtab_search_name): Return a unique_xmalloc_ptr.
8057 (lookup_partial_symbol): Update.
8058
8059 2017-08-22 Tom Tromey <tom@tromey.com>
8060
8061 * source.h (rewrite_source_path): Return a unique_xmalloc_ptr.
8062 * source.c (rewrite_source_path): Return a unique_xmalloc_ptr.
8063 (find_and_open_source, symtab_to_fullname): Update.
8064 * psymtab.c (psymtab_to_fullname): Update.
8065
8066 2017-08-22 Tom Tromey <tom@tromey.com>
8067
8068 * exec.c (exec_file_attach): Update.
8069 * linux-thread-db.c (try_thread_db_load): Update.
8070 * guile/scm-safe-call.c (gdbscm_safe_source_script): Update.
8071 * utils.c (gdb_realpath): Change return type.
8072 (gdb_realpath_keepfile): Update.
8073 (gdb_realpath_check_trailer, gdb_realpath_tests): New functions.
8074 (_initialize_utils): Register the new self test.
8075 * source.c (openp): Update.
8076 (find_and_open_source): Update.
8077 * nto-tdep.c (nto_find_and_open_solib): Update.
8078 * main.c (set_gdb_data_directory): Update.
8079 (captured_main_1): Update.
8080 * dwarf2read.c (dwarf2_get_dwz_file): Update
8081 (dw2_map_symbol_filenames): Update.
8082 * auto-load.c (auto_load_safe_path_vec_update): Update.
8083 (filename_is_in_auto_load_safe_path_vec): Change type of
8084 "filename_realp".
8085 (auto_load_objfile_script): Update.
8086 (file_is_auto_load_safe): Update. Use std::string.
8087 * utils.h (gdb_realpath): Return a gdb::unique_xmalloc_ptr.
8088
8089 2017-08-22 Tom Tromey <tom@tromey.com>
8090
8091 * utils.c (gdb_realpath_keepfile): Return a
8092 gdb::unique_xmalloc_ptr.
8093 * exec.c (exec_file_attach): Update.
8094 * utils.h (gdb_realpath_keepfile): Return a
8095 gdb::unique_xmalloc_ptr.
8096
8097 2017-08-22 Tom Tromey <tom@tromey.com>
8098
8099 * compile/compile.c (compile_file_command): Use
8100 gdb::unique_xmalloc_ptr, std::string.
8101 * utils.c (gdb_abspath): Change return type.
8102 * source.c (openp): Update.
8103 * objfiles.c (allocate_objfile): Update.
8104 * main.c (set_gdb_data_directory): Update.
8105 * utils.h (gdb_abspath): Return a gdb::unique_xmalloc_ptr.
8106
8107 2017-08-22 Zhouyi Zhou <zhouzhouyi@gmail.com>
8108
8109 * cli-cmds.c (list_commands): List actual code around more than
8110 one location.
8111
8112 2017-08-21 John Baldwin <jhb@FreeBSD.org>
8113
8114 * fbsd-nat.c (fbsd_add_threads): Use array type for `lwps'.
8115
8116 2017-08-21 Pedro Alves <palves@redhat.com>
8117
8118 PR gdb/19487
8119 * c-exp.y (variable production): Handle function aliases.
8120 * minsyms.c (msymbol_is_text): New function.
8121 * minsyms.h (msymbol_is_text): Declare.
8122 * symtab.c (find_function_alias_target): New function.
8123 * symtab.h (find_function_alias_target): Declare.
8124
8125 2017-08-21 Pedro Alves <palves@redhat.com>
8126
8127 * eval.c (evaluate_subexp_standard) <OP_TYPE>: Don't dig past
8128 typedefs.
8129 * typeprint.c (whatis_exp): If handling "whatis", and expression
8130 is OP_TYPE, strip one typedef level. Otherwise don't strip
8131 typedefs here.
8132 * valops.c (value_cast): Save "to" type before resolving
8133 stubs/typedefs. Use that type as resulting value's type.
8134
8135 2017-08-18 Tom Tromey <tom@tromey.com>
8136 Pedro Alves <palves@redhat.com>
8137
8138 * spu-multiarch.c (parse_spufs_run): Use scoped_restore.
8139 * sol-thread.c (sol_thread_resume, sol_thread_wait)
8140 (sol_thread_xfer_partial, rw_common): Use scoped_restore.
8141 * procfs.c (procfs_do_thread_registers): Use scoped_restore.
8142 * proc-service.c (ps_xfer_memory): Use scoped_restore.
8143 * linux-tdep.c (linux_corefile_thread): Remove a cleanup.
8144 (linux_get_siginfo_data): Add "thread" argument. Use
8145 scoped_restore.
8146 * linux-nat.c (linux_child_follow_fork)
8147 (check_stopped_by_watchpoint): Use scoped_restore.
8148 * infrun.c (displaced_step_prepare_throw, write_memory_ptid)
8149 (THREAD_STOPPED_BY, handle_signal_stop): Use scoped_restore.
8150 (restore_inferior_ptid, save_inferior_ptid): Remove.
8151 * btrace.c (btrace_fetch): Use scoped_restore.
8152 * bsd-uthread.c (bsd_uthread_fetch_registers)
8153 (bsd_uthread_store_registers): Use scoped_restore.
8154 * breakpoint.c (reattach_breakpoints, detach_breakpoints): Use
8155 scoped_restore.
8156 * aix-thread.c (aix_thread_resume, aix_thread_wait)
8157 (aix_thread_xfer_partial): Use scoped_restore.
8158 * inferior.h (save_inferior_ptid): Remove.
8159
8160 2017-08-18 Yao Qi <yao.qi@linaro.org>
8161
8162 PR tdep/21818
8163 * arm-tdep.c (gdb_print_insn_arm): Mark
8164 USER_SPECIFIED_MACHINE_TYPE if exec_bfd isn't NULL.
8165
8166 2017-08-18 Yao Qi <yao.qi@linaro.org>
8167
8168 * NEWS: Mention GDBserver's new option "--selftest".
8169 * Makefile.in (SFILES): Remove selftest.c, add common/selftest.c.
8170 * selftest.c: Move it to common/selftest.c.
8171 * selftest.h: Move it to common/selftest.h.
8172 * selftest-arch.c (reset): New function.
8173 (tests_with_arch): Call reset.
8174
8175 2017-08-18 Yao Qi <yao.qi@linaro.org>
8176
8177 * selftest.c (run_tests): Don't call QUIT. Call debug_printf
8178 instead of exception_fprintf and printf_filtered.
8179
8180 2017-08-18 Yao Qi <yao.qi@linaro.org>
8181
8182 * selftest.c (register_self_test): Rename it to
8183 selftests::register_test.
8184 (run_self_tests): selftest::run_tests.
8185 * selftest.h: Update declarations.
8186 * selftest-arch.c (register_self_test_foreach_arch): Rename it to
8187 selftests::register_test_foreach_arch.
8188 * selftest-arch.h: Update declaration.
8189 * aarch64-tdep.c: Update.
8190 * arm-tdep.c: Likewise.
8191 * disasm-selftests.c: Likewise.
8192 * dwarf2loc.c: Likewise.
8193 * dwarf2-frame.c: Likewise.
8194 * findvar.c: Likewise.
8195 * gdbarch-selftests.c: Likewise.
8196 * maint.c (maintenance_selftest): Likewise.
8197 * regcache.c: Likewise.
8198 * rust-exp.y: Likewise.
8199 * selftest-arch.c: Likewise.
8200 * unittests/environ-selftests.c: Likewise.
8201 * unittests/function-view-selftests.c: Likewise.
8202 * unittests/offset-type-selftests.c: Likewise.
8203 * unittests/optional-selftests.c: Likewise.
8204 * unittests/scoped_restore-selftests.c: Likewise.
8205 * utils-selftests.c: Likewise.
8206
8207 2017-08-17 Pedro Alves <palves@redhat.com>
8208
8209 * cli/cli-cmds.c (source_command): Delete 'old_source_verbose'
8210 local.
8211
8212 2017-08-17 Pedro Alves <palves@redhat.com>
8213
8214 * dwarf2read.c (struct dwarf2_cu) <line_header_die_owner>: New
8215 field.
8216 (reset_die_in_process): Delete, replaced by ...
8217 (process_die_scope): ... this new class. Make it responsible for
8218 freeing cu->line_header too.
8219 (process_die): Use process_die_scope.
8220 (handle_DW_AT_stmt_list): Record the line header's owner CU/DIE in
8221 cu->line_header_die_owner. Don't release the line header if it's
8222 owned by the CU.
8223 (setup_type_unit_groups): Make the CU/DIE own the line header.
8224 Don't release the line header here.
8225
8226 2017-08-17 Alex Lindsay <alexlindsay239@gmail.com> (tiny change)
8227
8228 * elfread.c (elf_read_minimal_symbols): xfree synthsyms.
8229
8230 2017-08-17 Ruslan Kabatsayev <b7.10110111@gmail.com>
8231
8232 * NEWS: Mention new shortcuts for nexti and stepi in TUI
8233 Single-Key mode
8234
8235 2017-08-16 Ruslan Kabatsayev <b7.10110111@gmail.com>
8236
8237 * tui/tui.c (tui_commands): Add "nexti" and "stepi" to the Single-Key
8238 mode command list.
8239
8240 2017-08-15 Stafford Horne <shorne@gmail.com>
8241
8242 * MAINTAINERS (Write After Approval): Add Stafford Horne.
8243
8244 2017-08-15 Stafford Horne <shorne@gmail.com>
8245
8246 * xtensa-tdep.c (xtensa_init_reggroups): Use xstrdup for cpname.
8247
8248 2017-08-15 Sergio Durigan Junior <sergiodj@redhat.com>
8249
8250 PR gdb/21954
8251 * infcmd.c (unset_environment_command): Use the 'clear' method on
8252 the environment instead of resetting it.
8253
8254 2017-08-15 John Baldwin <jhb@FreeBSD.org>
8255
8256 * fbsd-nat.c (fbsd_convert_siginfo): Fix compile on big-endian
8257 platforms.
8258
8259 2017-08-14 Tom Tromey <tom@tromey.com>
8260
8261 * valprint.c (print_octal_chars): Use HOST_CHAR_BIT.
8262 (print_binary_chars): Likewise.
8263 (BITS_IN_BYTES): Remove.
8264
8265 2017-08-14 Tom Tromey <tom@tromey.com>
8266
8267 PR gdb/21675
8268 * valprint.c (LOW_ZERO): Change value to 034.
8269 (print_octal_chars): Add static_asserts for octal constants.
8270 * printcmd.c (print_scalar_formatted): Add 'd' case.
8271
8272 2017-08-11 Tom Tromey <tom@tromey.com>
8273
8274 * symfile.c (add_symbol_file_command): Use std::vector.
8275
8276 2017-08-14 Tom Tromey <tom@tromey.com>
8277
8278 * break-catch-throw.c (handle_gnu_v3_exceptions): Use std::move.
8279 * break-catch-syscall.c (create_syscall_event_catchpoint): Use
8280 std::move.
8281 * break-catch-sig.c (create_signal_catchpoint): Use std::move.
8282
8283 2017-08-11 Pedro Alves <palves@redhat.com>
8284
8285 * infrun.c (process_event_stop_test): Adjust
8286 function_name_is_marked_for_skip call.
8287 * skip.c: Include <list>.
8288 (skiplist_entry): Make it a class with private fields, and
8289 getters/setters.
8290 (skiplist_entry_chain): Delete.
8291 (skiplist_entries): New.
8292 (skiplist_entry_count): Delete.
8293 (highest_skiplist_entry_num): New.
8294 (ALL_SKIPLIST_ENTRIES, ALL_SKIPLIST_ENTRIES_SAFE): Delete.
8295 (add_skiplist_entry): Delete.
8296 (skiplist_entry::skiplist_entry): New.
8297 (skiplist_entry::add_entry): New.
8298 (skip_file_command, skip_function): Adjust.
8299 (compile_skip_regexp): Delete.
8300 (skip_command): Don't compile regexp here. Adjust to use
8301 skiplist_entry::add_entry.
8302 (skip_info): Adjust to use range-for and getters.
8303 (skip_enable_command, skip_disable_command): Adjust to use
8304 range-for and setters.
8305 (skip_delete_command): Adjust to use std::list.
8306 (add_skiplist_entry): Delete.
8307 (skip_file_p): Delete, refactored as ...
8308 (skiplist_entry::do_skip_file_p): ... this new method.
8309 (skip_gfile_p): Delete, refactored as ...
8310 (skiplist_entry::do_gskip_file_p): ... this new method.
8311 (skip_function_p, skip_rfunction_p): Delete, refactored as ...
8312 (skiplist_entry::skip_function_p): ... this new method.
8313 (function_name_is_marked_for_skip): Now returns bool, and takes
8314 the function sal by const reference. Adjust to use range-for and
8315 skiplist_entry methods.
8316 (_initialize_step_skip): Remove references to
8317 skiplist_entry_chain, skiplist_entry_count.
8318 * skip.h (function_name_is_marked_for_skip): Now returns bool, and
8319 takes the function sal by const reference.
8320
8321 2017-08-11 Yao Qi <yao.qi@linaro.org>
8322
8323 * dwarf2-frame.c (clear_pointer_cleanup): Remove.
8324 (dwarf2_frame_cache): Remove reset_cache_cleanup.
8325 (dwarf2_frame_cache):
8326 * frame-unwind.c (frame_unwind_try_unwinder): Catch
8327 RETURN_MASK_ALL and set *this_case to NULL.
8328 * frame-unwind.h: Update comments.
8329
8330 2017-08-11 Yao Qi <yao.qi@linaro.org>
8331
8332 * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Remove.
8333 (dwarf2_frame_state_copy_regs): Remove.
8334 (dwarf2_frame_state_free_regs): Remove.
8335 (dwarf2_frame_state::~dwarf2_frame_state): Remove.
8336 (dwarf2_restore_rule): Call method .alloc_regs instead of
8337 dwarf2_frame_state_alloc_regs.
8338 (execute_cfa_program): Likewise. Call dwarf2_frame_state_reg_info
8339 constructor. Call std::move.
8340 (dwarf2_fetch_cfa_info): Don't call dwarf2_frame_state_copy_regs.
8341 (dwarf2_frame_cache): Likewise.
8342
8343 [GDB_SELF_TEST]: Include selftest.h and
8344 selftest-arch.h.
8345 [GDB_SELF_TEST] (execute_cfa_program_test): New function.
8346 (_initialize_dwarf2_frame) [GDB_SELF_TEST]: Register
8347 execute_cfa_program_test.
8348
8349 * dwarf2-frame.h (dwarf2_frame_state_reg_info): Add ctor, dtor,
8350 copy ctor, assignment operator, move assignment.
8351 <alloc_regs>: New method.
8352 <swap>: New method.
8353 (struct dwarf2_frame_state): Delete dtor.
8354 (dwarf2_frame_state_alloc_regs): Remove declaration.
8355 * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): Don't call
8356 dwarf2_frame_state_alloc_regs, use .alloc_regs instead.
8357
8358 2017-08-11 Yao Qi <yao.qi@linaro.org>
8359
8360 * dwarf2-frame.c (dwarf2_frame_state_free): Remove.
8361 (dwarf2_frame_state::dwarf2_frame_state): New.
8362 (dwarf2_frame_state::~dwarf2_frame_state): New.
8363 (dwarf2_fetch_cfa_info): Update.
8364 (dwarf2_frame_cache): Remove old_chain. Change 'fs' to an object
8365 rather than a pointer. Update code.
8366 * dwarf2-frame.h (struct dwarf2_frame_state): Declare ctor and
8367 dtor.
8368 <data_align, code_align, retaddr_column>: Change them to const.
8369 <armcc_cfa_offsets_sf, armcc_cfa_offsets_reversed>: Change them
8370 to bool.
8371
8372 2017-08-11 Yao Qi <yao.qi@linaro.org>
8373
8374 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <exp_len>: Remove.
8375 <loc.exp>: New field.
8376 * dwarf2-frame.c (execute_cfa_program): Update.
8377 (dwarf2_frame_prev_register): Update.
8378
8379 2017-08-10 Pedro Alves <palves@redhat.com>
8380
8381 * common/gdb_unique_ptr.h (xfree_deleter<T[]>): Define.
8382
8383 2017-08-09 John Baldwin <jhb@FreeBSD.org>
8384
8385 * fbsd-nat.c (struct fbsd_fork_info): Remove.
8386 (fbsd_pending_children): Use std::list.
8387 (fbsd_remember_child): Likewise.
8388 (fbsd_is_child_pending): Likewise.
8389 (fbsd_pending_vfork_done): Use std::forward_list.
8390 (fbsd_add_vfork_done): Likewise.
8391 (fbsd_is_vfork_done_pending): Likewise.
8392 (fbsd_next_vfork_done): Likewise.
8393
8394 2017-08-09 John Baldwin <jhb@FreeBSD.org>
8395
8396 * fbsd-nat.c [HAVE_KINFO_GETVMMAP] (struct free_deleter): New.
8397 (fbsd_find_memory_regions): Use free_deleter with std::unique_ptr.
8398 [!HAVE_KINFO_GETVMMAP] (fbsd_find_memory_regions): Use std::string
8399 for `mapfilename'.
8400 (fbsd_xfer_partial): Use gdb::byte_vector.
8401 (fbsd_add_threads): Use gdb::unique_xmalloc_ptr.
8402
8403 2017-08-09 John Baldwin <jhb@FreeBSD.org>
8404
8405 * fbsd-nat.c: [!HAVE_KINFO_GETVMMAP]: Include <sys/user.h> and
8406 "filestuff.h".
8407 (fbsd_find_memory_regions): Fix `mapfile' initialization.
8408
8409 2017-08-09 Tom Tromey <tom@tromey.com>
8410
8411 * skip.c (skiplist_entry): New constructor.
8412 (skiplist_entry::enabled, skiplist_entry::function_is_regexp)
8413 (skiplist_entry::file_is_glob): Now bool.
8414 (skiplist_entry::file, skiplist_entry::function): Now
8415 std::string.
8416 (make_skip_entry): Return a unique_ptr. Use new.
8417 (free_skiplist_entry, free_skiplist_entry_cleanup)
8418 (make_free_skiplist_entry_cleanup): Remove.
8419 (skip_command, skip_disable_command, add_skiplist_entry)
8420 (skip_form_bytes, compile_skip_regexp, skip_command, skip_info)
8421 (skip_file_p, skip_gfile_p, skip_function_p, skip_rfunction_p)
8422 (function_name_is_marked_for_skip): Update.
8423 (skip_delete_command): Update. Use delete.
8424
8425 2017-08-09 Jiong Wang <jiong.wang@arm.com>
8426
8427 * aarch64-linux-tdep.c: Include "auxv.h" and "elf/common.h".
8428 (aarch64_linux_core_read_description): New function.
8429 (aarch64_linux_init_abi): Register gdbarch_core_read_description.
8430
8431 2017-08-09 Pedro Alves <palves@redhat.com>
8432
8433 * cp-name-parser.y (cp_comp_to_string): Return a
8434 gdb::unique_xmalloc_ptr<char>.
8435 * cp-support.c (replace_typedefs_qualified_name)
8436 (replace_typedefs): Adjust to use gdb::unique_xmalloc_ptr<char>.
8437 (cp_canonicalize_string_full): Use op= instead of explicit
8438 convertion.
8439 (cp_class_name_from_physname, method_name_from_physname)
8440 (cp_func_name, cp_remove_params): Adjust to use
8441 gdb::unique_xmalloc_ptr<char>.
8442 * cp-support.h (cp_comp_to_string): Return a
8443 gdb::unique_xmalloc_ptr<char>.
8444 * python/py-type.c (typy_lookup_type): Adjust to use
8445 gdb::unique_xmalloc_ptr<char>.
8446
8447 2017-08-09 H.J. Lu <hongjiu.lu@intel.com>
8448
8449 * dwarf2read.c (dwarf2_string_attr): Fix a typo.
8450
8451 2017-08-09 Alex Lindsay <alexlindsay239@gmail.com>
8452 Yao Qi <yao.qi@linaro.org>
8453
8454 * cp-support.c (cp_canonicalize_string_full): Use
8455 gdb::unique_xmalloc_ptr<char>.
8456 (cp_canonicalize_string): Likewise.
8457
8458 2017-08-09 Yao Qi <yao.qi@linaro.org>
8459
8460 * features/Makefile (WHICH): Remove i386/ non-linux stuff.
8461 * regformats/i386/amd64-avx-avx512.dat: Remove.
8462 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Remove.
8463 * regformats/i386/amd64-avx-mpx.dat:Remove.
8464 * regformats/i386/amd64-avx.dat: Remove.
8465 * regformats/i386/amd64-mpx.dat: Remove.
8466 * regformats/i386/i386-avx-avx512.dat: Remove.
8467 * regformats/i386/i386-avx-mpx-avx512-pku.dat: Remove.
8468 * regformats/i386/i386-avx-mpx.dat: Remove.
8469 * regformats/i386/i386-mmx.dat: Remove.
8470 * regformats/i386/i386-mpx.dat: Remove.
8471
8472 2017-08-09 Yao Qi <yao.qi@linaro.org>
8473
8474 * amd64-tdep.h (tdesc_x32): Remove the declaration.
8475 * amd64-tdep.c: Don't include features/i386/x32*.c.
8476 (_initialize_amd64_tdep): Don't call initialize_tdesc_x32*
8477 functions.
8478 * features/Makefile (WHICH): Remove i386/x32, i386/x32-avx,
8479 and i386/x32-avx-avx512.
8480 (XMLTOC): Remove i386/x32-avx.xml, i386/x32-avx-avx512.xml,
8481 and i386/x32.xml.
8482 * features/i386/x32-avx-avx512.c: Removed.
8483 * features/i386/x32-avx-avx512.xml: Removed.
8484 * features/i386/x32-avx.c: Removed.
8485 * features/i386/x32-avx.xml: Removed.
8486 * features/i386/x32.c: Removed.
8487 * features/i386/x32.xml: Removed.
8488 * regformats/i386/x32-avx-avx512.dat: Removed.
8489 * regformats/i386/x32-avx.dat: Removed.
8490 * regformats/i386/x32.dat: Removed.
8491
8492 2017-08-07 Maciej W. Rozycki <macro@imgtec.com>
8493
8494 PR breakpoints/21886
8495 * mem-break.c (default_memory_insert_breakpoint): Use
8496 `->placed_address' rather than `->reqstd_address' for the
8497 breakpoint location.
8498
8499 2017-08-07 Maciej W. Rozycki <macro@imgtec.com>
8500
8501 * arch-utils.c (default_print_insn): Remove arch/mach/endian
8502 assertions.
8503
8504 2017-08-07 Maciej W. Rozycki <macro@imgtec.com>
8505
8506 * gdbarch.sh (gdbarch_info): Replace the `tdep_info' member with
8507 a union of `tdep_info', `tdesc_data' and `id'.
8508 * aarch64-tdep.c (aarch64_gdbarch_init): Use `info.tdesc_data'
8509 rather than `info.tdep_info'.
8510 * amd64-linux-tdep.c (amd64_linux_init_abi): Likewise.
8511 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
8512 * i386-tdep.c (i386_gdbarch_init): Likewise.
8513 * mips-linux-tdep.c (mips_linux_init_abi): Likewise.
8514 * mips-tdep.c (mips_gdbarch_init): Likewise.
8515 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
8516 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
8517 * ppc-linux-tdep.c (ppu2spu_sniffer): Use `info.id' rather than
8518 `info.tdep_info'.
8519 (ppc_linux_init_abi): Use `info.tdesc_data' rather than
8520 `info.tdep_info'.
8521 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
8522 * spu-multiarch.c (spu_gdbarch): Use `info.id' rather than
8523 `info.tdep_info'.
8524 * spu-tdep.c (spu_gdbarch_init): Likewise.
8525 * gdbarch.h: Regenerate.
8526
8527 2017-08-07 Leszek Swirski <leszeks@google.com>
8528
8529 PR symtab/20899
8530 * dwarf2read.c (dwarf2_string_attr): Allow DW_FORM_GNU_strp_alt.
8531
8532 2017-08-07 Simon Marchi <simon.marchi@ericsson.com>
8533
8534 * remote-sim.c (gdbsim_load): Remove char **argv local variable.
8535 (gdbsim_open): Rename gdb_argv args object to argv.
8536
8537 2017-08-05 Tom Tromey <tom@tromey.com>
8538
8539 * compile/compile-object-load.c (compile_object_load): Use
8540 gdb::unique_xmalloc_ptr.
8541 * cli/cli-dump.c (scan_filename): Rename from
8542 scan_filename_with_cleanup. Change return type.
8543 (scan_expression): Rename from scan_expression_with_cleanup.
8544 Change return type.
8545 (dump_memory_to_file, dump_value_to_file, restore_command):
8546 Use gdb::unique_xmalloc_ptr. Update.
8547 * cli/cli-cmds.c (find_and_open_script): Use
8548 gdb::unique_xmalloc_ptr.
8549 * tracefile-tfile.c (tfile_open): Use gdb::unique_xmalloc_ptr.
8550 * symmisc.c (maintenance_print_symbols)
8551 (maintenance_print_msymbols): Use gdb::unique_xmalloc_ptr.
8552 * symfile.c (symfile_bfd_open, generic_load)
8553 (add_symbol_file_command, remove_symbol_file_command): Use
8554 gdb::unique_xmalloc_ptr.
8555 * source.c (openp): Use gdb::unique_xmalloc_ptr.
8556 * psymtab.c (maintenance_print_psymbols): Use
8557 gdb::unique_xmalloc_ptr.
8558 * corelow.c (core_open): Use gdb::unique_xmalloc_ptr.
8559 * breakpoint.c (save_breakpoints): Use gdb::unique_xmalloc_ptr.
8560 * solib.c (solib_map_sections): Use gdb::unique_xmalloc_ptr.
8561 (reload_shared_libraries_1): Likewise.
8562
8563 2017-08-05 Tom Tromey <tom@tromey.com>
8564
8565 * rust-exp.y (rust_op_ptr, set_field): Remove typedefs.
8566 (rust_op_vector, rust_set_vector): New typedefs.
8567 (current_parser): New global.
8568 (work_obstack): Change to pointer type. Update all users.
8569 (rust_ast, pstate): Remove globals.
8570 (struct rust_parser): New.
8571 (%union) <params, field_inits>: Change type.
8572 (start, tuple_expr, unit_expr, struct_expr_list, literal)
8573 (field_expr, expr_list, maybe_expr_list, type_list): Update.
8574 (ast_call_ish, ast_path, ast_function_type, ast_tuple_type)
8575 (convert_params_to_types, convert_params_to_expression): Change
8576 type of "params".
8577 (ast_string): Change type of "fields".
8578 (rust_parse): Make a rust_parser. Remove cleanups.
8579 (rust_lex_tests): Make and install an auto_obstack.
8580
8581 2017-08-04 Yao Qi <yao.qi@linaro.org>
8582
8583 * configure.srv (ipa_x32_linux_regobj): New.
8584 * linux-amd64-ipa.c (get_ipa_tdesc): Use X86_TDESC_AVX_AVX512
8585 instead of X86_TDESC_AVX512.
8586 (initialize_low_tracepoint): Call
8587 init_registers_x32_avx_avx512_linux.
8588
8589 2017-08-04 Yao Qi <yao.qi@linaro.org>
8590
8591 * utils.h (gdb_argv): Add namespace std for nullptr_t.
8592
8593 2017-08-03 Ruslan Kabatsayev <b7.10110111@gmail.com>
8594
8595 * MAINTAINERS (Write After Approval): Add Ruslan Kabatsayev.
8596
8597 2017-08-03 Tom Tromey <tom@tromey.com>
8598
8599 * utils.c (make_cleanup_freeargv, do_freeargv, gdb_buildargv):
8600 Remove.
8601 * utils.h (make_cleanup_freeargv, gdb_buildargv): Remove.
8602
8603 2017-08-03 Tom Tromey <tom@tromey.com>
8604
8605 * python/py-param.c (compute_enum_values): Use gdb_argv.
8606
8607 2017-08-03 Tom Tromey <tom@tromey.com>
8608
8609 * utils.h (struct gdb_argv_deleter): New.
8610 (gdb_argv): New class.
8611 * utils.c (gdb_argv::reset): New method.
8612 * tracepoint.c (delete_trace_variable_command): Use gdb_argv.
8613 * tracefile.c (tsave_command): Use gdb_argv.
8614 * top.c (new_ui_command): Use gdb_argv.
8615 * symmisc.c (maintenance_print_symbols)
8616 (maintenance_print_msymbols, maintenance_expand_symtabs): Use gdb_argv.
8617 * symfile.c (symbol_file_command, generic_load)
8618 (remove_symbol_file_command): Use gdb_argv.
8619 * stack.c (backtrace_command): Use gdb_argv.
8620 * source.c (add_path, show_substitute_path_command)
8621 (unset_substitute_path_command, set_substitute_path_command):
8622 Use gdb_argv.
8623 * skip.c (skip_command): Use gdb_argv. Use gdb_buildargv.
8624 * ser-mingw.c (pipe_windows_open): Use gdb_argv.
8625 * remote.c (extended_remote_run, remote_put_command)
8626 (remote_get_command, remote_delete_command): Use gdb_argv.
8627 * remote-sim.c (gdbsim_load, gdbsim_create_inferior)
8628 (gdbsim_open): Use gdb_argv.
8629 * python/py-cmd.c (gdbpy_string_to_argv): Use gdb_argv.
8630 * psymtab.c (maintenance_print_psymbols): Use gdb_argv.
8631 * procfs.c (procfs_info_proc): Use gdb_argv.
8632 * interps.c (interpreter_exec_cmd): Use gdb_argv.
8633 * infrun.c (handle_command): Use gdb_argv.
8634 * inferior.c (add_inferior_command, clone_inferior_command):
8635 Use gdb_argv.
8636 * guile/scm-string.c (gdbscm_string_to_argv): Use gdb_argv.
8637 * exec.c (exec_file_command): Use gdb_argv.
8638 * cli/cli-cmds.c (alias_command): Use gdb_argv.
8639 * compile/compile.c (build_argc_argv): Use gdb_argv.
8640
8641 2017-08-03 Tom Tromey <tom@tromey.com>
8642
8643 * python/python.c (gdbpy_decode_line): Use unique_xmalloc_ptr.
8644
8645 2017-08-03 Tom Tromey <tom@tromey.com>
8646
8647 * python/python.c (compute_python_string): Return std::string.
8648 (gdbpy_eval_from_control_command): Update.
8649 (do_start_initialization): Use std::string.
8650 * python/py-varobj.c (py_varobj_iter_next): Use string_printf, not
8651 xstrprintf.
8652 * python/py-breakpoint.c (local_setattro): Use string_printf, not
8653 xstrprintf.
8654
8655 2017-08-03 Tom Tromey <tom@tromey.com>
8656
8657 * top.h (do_restore_instream_cleanup): Remove.
8658 * top.c (do_restore_instream_cleanup): Remove.
8659 (read_command_file): Use scoped_restore.
8660 * cli/cli-script.c (execute_user_command): Use scoped_restore.
8661
8662 2017-08-03 Tom Tromey <tom@tromey.com>
8663
8664 * cli/cli-script.c (execute_user_command)
8665 (execute_control_command): Use scoped_restore.
8666
8667 2017-08-03 Tom Tromey <tom@tromey.com>
8668
8669 * cli/cli-script.c (do_restore_user_call_depth): Remove.
8670 (execute_user_command): Remove user_call_depth; use
8671 user_args_stack's size instead.
8672
8673 2017-08-03 Tom Tromey <tom@tromey.com>
8674
8675 * top.h (in_user_command): Remove.
8676 * top.c (in_user_command): Remove.
8677 * cli/cli-script.c (do_restore_user_call_depth)
8678 (execute_user_command): Update.
8679
8680 2017-08-03 Tom Tromey <tom@tromey.com>
8681
8682 * valops.c (search_struct_method): Use gdb::byte_vector.
8683 * valarith.c (value_concat): Use std::vector.
8684 * target.c (memory_xfer_partial): Use gdb::byte_vector.
8685 (simple_search_memory): Likewise.
8686 * printcmd.c (find_string_backward): Use gdb::byte_vector.
8687 * mi/mi-main.c (mi_cmd_data_write_memory): Use gdb::byte_vector.
8688 * gcore.c (gcore_copy_callback): Use gdb::byte_vector.
8689 * elfread.c (elf_rel_plt_read): Use std::string.
8690 * cp-valprint.c (cp_print_value): Use gdb::byte_vector.
8691 * cli/cli-dump.c (restore_section_callback): Use
8692 gdb::byte_vector.
8693
8694 2017-08-03 Tom Tromey <tom@tromey.com>
8695
8696 * jit.c (jit_reader_load_command): Use unique_xmalloc_ptr.
8697
8698 2017-08-03 Tom Tromey <tom@tromey.com>
8699
8700 * tui/tui-regs.c (tui_restore_gdbout): Remove.
8701 (tui_register_format): Use scoped_restore.
8702
8703 2017-08-03 Tom Tromey <tom@tromey.com>
8704
8705 * reverse.c (exec_direction_default): Remove.
8706 (exec_reverse_once): Use scoped_restore.
8707 * remote.c (restore_remote_timeout): Remove.
8708 (remote_flash_erase, remote_flash_write, remote_flash_done)
8709 (readchar, remote_serial_write): Use scoped_restore.
8710 * cli/cli-script.c (struct source_cleanup_lines_args)
8711 (source_cleanup_lines): Remove.
8712 (script_from_file): Use scoped_restore.
8713 * cli/cli-cmds.c (source_verbose_cleanup): Remove.
8714 (source_command): Use scoped_restore.
8715
8716 2017-08-03 Tom Tromey <tom@tromey.com>
8717
8718 * utils.h (make_cleanup_free_so): Remove.
8719 * utils.c (do_free_so, make_cleanup_free_so): Remove.
8720 * solist.h (struct so_deleter): New.
8721 (so_list_up): New typedef.
8722 * solib-svr4.c (svr4_read_so_list): Use so_list_up.
8723
8724 2017-08-03 Tom Tromey <tom@tromey.com>
8725
8726 * utils.h (make_cleanup_restore_current_language): Remove.
8727 * utils.c (do_restore_current_language)
8728 (make_cleanup_restore_current_language): Remove.
8729 * parse.c (parse_exp_in_context_1)
8730 (parse_expression_with_language): Use
8731 scoped_restore_current_language.
8732 * mi/mi-main.c (mi_cmd_execute): Use
8733 scoped_restore_current_language.
8734 * language.h (scoped_restore_current_language): New class.
8735
8736 2017-08-03 Tom Tromey <tom@tromey.com>
8737
8738 * compile/compile.c (cleanup_unlink_file): Remove.
8739 (compile_to_object): Use gdb::unlinker.
8740 (eval_compile_command): Likewise.
8741
8742 2017-08-03 Tom Tromey <tom@tromey.com>
8743
8744 * utils.h (make_cleanup_fclose): Remove.
8745 * utils.c (do_fclose_cleanup, make_cleanup_fclose): Remove.
8746
8747 2017-08-03 Tom Tromey <tom@tromey.com>
8748
8749 * top.c (open_terminal_stream): Return gdb_file_up.
8750 (new_ui_command): Update.
8751
8752 2017-08-03 Tom Tromey <tom@tromey.com>
8753
8754 * source.c (print_source_lines_base, forward_search_command)
8755 (reverse_search_command): Use gdb_file_up.
8756
8757 2017-08-03 Tom Tromey <tom@tromey.com>
8758
8759 * fbsd-nat.c (fbsd_find_memory_regions): Update.
8760
8761 2017-08-03 Tom Tromey <tom@tromey.com>
8762
8763 * cli/cli-cmds.c (find_and_open_script): Change return type.
8764 Remove "streamp" and "full_path" parameters.
8765 (source_script_with_search): Update.
8766 * auto-load.c (source_script_file): Update.
8767 * cli/cli-cmds.h (find_and_open_script): Change type.
8768 (open_script): New struct.
8769
8770 2017-08-03 Tom Tromey <tom@tromey.com>
8771
8772 * xml-support.c (xml_fetch_content_from_file): Update.
8773 * ui-file.c (stdio_file::open): Update.
8774 * tracefile-tfile.c (tfile_start): Update.
8775 * remote.c (remote_file_put, remote_file_get): Update.
8776 * nat/linux-procfs.c (linux_proc_get_int)
8777 (linux_proc_pid_get_state, linux_proc_tid_get_name): Update.
8778 * nat/linux-osdata.c (linux_common_core_of_thread): Update.
8779 (command_from_pid, commandline_from_pid, linux_xfer_osdata_cpus)
8780 (print_sockets, linux_xfer_osdata_shm, linux_xfer_osdata_sem)
8781 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Update.
8782 * nat/linux-btrace.c (linux_determine_kernel_start): Update.
8783 * linux-nat.c (linux_proc_pending_signals): Update.
8784 * dwarf2read.c (write_psymtabs_to_index): Use gdb_file_up.
8785 (file_closer): Remove.
8786 * compile/compile.c (compile_to_object): Update.
8787 * common/filestuff.h (struct gdb_file_deleter): New.
8788 (gdb_file_up): New typedef.
8789 (gdb_fopen_cloexec): Change return type.
8790 * common/filestuff.c (gdb_fopen_cloexec): Return gdb_file_up.
8791 * cli/cli-dump.c (fopen_with_cleanup): Remove.
8792 (dump_binary_file, restore_binary_file): Update.
8793 * auto-load.c (auto_load_objfile_script_1): Update.
8794
8795 2017-08-03 Tom Tromey <tom@tromey.com>
8796
8797 * tracepoint.c (tvariables_info_1): Use ui_out_emit_table.
8798 (info_static_tracepoint_markers_command): Likewise.
8799 * solib.c (info_sharedlibrary_command): Use ui_out_emit_table.
8800 * skip.c (skip_info): Use ui_out_emit_table.
8801 * progspace.c (print_program_space): Use ui_out_emit_table.
8802 * osdata.c (info_osdata): Use ui_out_emit_table.
8803 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions): Use
8804 ui_out_emit_table.
8805 * linux-thread-db.c (info_auto_load_libthread_db): Use
8806 ui_out_emit_table.
8807 * inferior.c (print_inferior): Use ui_out_emit_table.
8808 * gdb_bfd.c (maintenance_info_bfds): Use ui_out_emit_table.
8809 * breakpoint.c (breakpoint_1): Use ui_out_emit_table.
8810 * auto-load.c (auto_load_info_scripts): Use ui_out_emit_table.
8811 * ada-tasks.c (print_ada_task_info): Use ui_out_emit_table.
8812 * ui-out.h (class ui_out_emit_table): New.
8813
8814 2017-08-02 Maciej W. Rozycki <macro@imgtec.com>
8815
8816 * mips-tdep.c (mips_fpu_type_str): New function.
8817 (mips_dump_tdep): Call it.
8818
8819 2017-08-01 Maciej W. Rozycki <macro@imgtec.com>
8820
8821 * mips-tdep.c (mips_gdbarch_init): Use MIPS_FPU_TYPE to access
8822 `->mips_fpu_type'.
8823
8824 2017-07-31 Xavier Roirand <roirand@adacore.com>
8825
8826 * solib-darwin.c (DYLD_VERSION_MAX): Increase value.
8827
8828 2017-07-27 Xavier Roirand <roirand@adacore.com>
8829
8830 * MAINTAINERS (Write After Approval): Add Xavier Roirand.
8831
8832 2017-07-26 Yao Qi <yao.qi@linaro.org>
8833
8834 * cli/cli-cmds.c (maintenancechecklist): New variable.
8835 * gdbcmd.h (maintenancechecklist): Declare it.
8836 * i386-linux-tdep.c (_initialize_i386_linux_tdep) [GDB_SELF_TEST]:
8837 Call i386_linux_read_description with different masks.
8838 * maint.c (maintenance_check_command): New function.
8839 (_initialize_maint_cmds): Call add_prefix_cmd.
8840 * target-descriptions.c (tdesc_reg): override operator != and ==.
8841 (tdesc_type): Likewise.
8842 (tdesc_feature): Likewise.
8843 (target_desc): Likewise.
8844 [GDB_SELF_TEST] (selftests::record_xml_tdesc): New function.
8845 (maintenance_check_xml_descriptions): New function.
8846 (_initialize_target_descriptions) Add command "xml-descriptions".
8847 * target-descriptions.h (selftests::record_xml_tdesc): Declare.
8848
8849 2017-07-26 Yao Qi <yao.qi@linaro.org>
8850
8851 * i386-linux-tdep.c: Don't include features/i386/i386-*linux.c.
8852 Include features/i386/32bit-*.c.
8853 (i386_linux_read_description): Generate target description if it
8854 doesn't exist.
8855 (_initialize_i386_linux_tdep): Don't call _initialize_tdesc_i386
8856 functions.
8857 * features/i386/32bit-linux.c: Re-generated.
8858 * features/i386/32bit-sse.c: Likewise.
8859 * target-descriptions.c (print_c_feature::visit): Print code to
8860 set register number if needed.
8861 (print_c_feature) <m_next_regnum>: New field.
8862
8863 2017-07-26 Yao Qi <yao.qi@linaro.org>
8864
8865 * features/Makefile (CFILES): Rename with TDESC_CFILES.
8866 (FEATURE_XMLFILES): New.
8867 (FEATURE_CFILES): New.
8868 New rules.
8869 (clean-cfiles): Remove generated c files.
8870 * features/i386/32bit-avx.c: Generated.
8871 * features/i386/32bit-avx512.c: Generated.
8872 * features/i386/32bit-core.c: Generated.
8873 * features/i386/32bit-linux.c: Generated.
8874 * features/i386/32bit-mpx.c: Generated.
8875 * features/i386/32bit-pkeys.c: Generated.
8876 * features/i386/32bit-sse.c: Generated.
8877 * target-descriptions.c: Include algorithm.
8878 (tdesc_element_visitor): Add method visit_end.
8879 (print_c_tdesc): Implement visit_end.
8880 (print_c_tdesc:: m_filename_after_features): Move it to
8881 protected.
8882 (print_c_feature): New class.
8883 (maint_print_c_tdesc_cmd): Use print_c_feature if XML file
8884 name starts with "i386/32bit-".
8885
8886 2017-07-26 Yao Qi <yao.qi@linaro.org>
8887
8888 * target-descriptions.c (tdesc_element_visitor): New class.
8889 (tdesc_element): New class.
8890 (tdesc_reg): Inherit from tdesc_element.
8891 (tdesc_reg::accept): New function.
8892 (tdesc_type): Inherit from tdesc_element.
8893 (tdesc_type::accept): New function.
8894 (tdesc_feature): Inherit from tdesc_element.
8895 (tdesc_feature::accept): New function.
8896 (target_desc): Inherit from tdesc_element.
8897 (target_desc::target_desc): New.
8898 (target_desc::~target_desc): New.
8899 (target_desc::accept): New.
8900 (allocate_target_description): Use new.
8901 (free_target_description): Use delete.
8902 (print_c_tdesc): New class.
8903 (maint_print_c_tdesc_cmd): Adjust.
8904
8905 * features/aarch64.c: Re-generated.
8906 * features/arc-arcompact.c: Re-generated.
8907 * features/arc-v2.c: Re-generated.
8908 * features/arm/arm-with-iwmmxt.c: Re-generated.
8909 * features/arm/arm-with-m.c: Re-generated.
8910 * features/arm/arm-with-m-fpa-layout.c: Re-generated.
8911 * features/arm/arm-with-m-vfp-d16.c: Re-generated.
8912 * features/arm/arm-with-neon.c: Re-generated.
8913 * features/arm/arm-with-vfpv2.c: Re-generated.
8914 * features/arm/arm-with-vfpv3.c: Re-generated.
8915 * features/i386/amd64-avx-avx512.c: Re-generated.
8916 * features/i386/amd64-avx-avx512-linux.c: Re-generated.
8917 * features/i386/amd64-avx.c: Re-generated.
8918 * features/i386/amd64-avx-linux.c: Re-generated.
8919 * features/i386/amd64-avx-mpx-avx512-pku.c: Re-generated.
8920 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
8921 * features/i386/amd64-avx-mpx.c: Re-generated.
8922 * features/i386/amd64-avx-mpx-linux.c: Re-generated.
8923 * features/i386/amd64.c: Re-generated.
8924 * features/i386/amd64-linux.c: Re-generated.
8925 * features/i386/amd64-mpx.c: Re-generated.
8926 * features/i386/amd64-mpx-linux.c: Re-generated.
8927 * features/i386/i386-avx-avx512.c: Re-generated.
8928 * features/i386/i386-avx-avx512-linux.c: Re-generated.
8929 * features/i386/i386-avx.c: Re-generated.
8930 * features/i386/i386-avx-linux.c: Re-generated.
8931 * features/i386/i386-avx-mpx-avx512-pku.c: Re-generated.
8932 * features/i386/i386-avx-mpx-avx512-pku-linux.c: Re-generated.
8933 * features/i386/i386-avx-mpx.c: Re-generated.
8934 * features/i386/i386-avx-mpx-linux.c: Re-generated.
8935 * features/i386/i386.c: Re-generated.
8936 * features/i386/i386-linux.c: Re-generated.
8937 * features/i386/i386-mmx.c: Re-generated.
8938 * features/i386/i386-mmx-linux.c: Re-generated.
8939 * features/i386/i386-mpx.c: Re-generated.
8940 * features/i386/i386-mpx-linux.c: Re-generated.
8941 * features/i386/x32-avx-avx512.c: Re-generated.
8942 * features/i386/x32-avx-avx512-linux.c: Re-generated.
8943 * features/i386/x32-avx.c: Re-generated.
8944 * features/i386/x32-avx-linux.c: Re-generated.
8945 * features/i386/x32.c: Re-generated.
8946 * features/i386/x32-linux.c: Re-generated.
8947 * features/microblaze.c: Re-generated.
8948 * features/microblaze-with-stack-protect.c: Re-generated.
8949 * features/mips64-dsp-linux.c: Re-generated.
8950 * features/mips64-linux.c: Re-generated.
8951 * features/mips-dsp-linux.c: Re-generated.
8952 * features/mips-linux.c: Re-generated.
8953 * features/nds32.c: Re-generated.
8954 * features/nios2.c: Re-generated.
8955 * features/nios2-linux.c: Re-generated.
8956 * features/rs6000/powerpc-32.c: Re-generated.
8957 * features/rs6000/powerpc-32l.c: Re-generated.
8958 * features/rs6000/powerpc-403.c: Re-generated.
8959 * features/rs6000/powerpc-403gc.c : Re-generated.
8960 * features/rs6000/powerpc-405.c: Re-generated.
8961 * features/rs6000/powerpc-505.c: Re-generated.
8962 * features/rs6000/powerpc-601.c: Re-generated.
8963 * features/rs6000/powerpc-602.c: Re-generated.
8964 * features/rs6000/powerpc-603.c: Re-generated.
8965 * features/rs6000/powerpc-604.c: Re-generated.
8966 * features/rs6000/powerpc-64.c: Re-generated.
8967 * features/rs6000/powerpc-64l.c: Re-generated.
8968 * features/rs6000/powerpc-7400.c: Re-generated.
8969 * features/rs6000/powerpc-750.c: Re-generated.
8970 * features/rs6000/powerpc-860.c: Re-generated.
8971 * features/rs6000/powerpc-altivec32.c: Re-generated.
8972 * features/rs6000/powerpc-altivec32l.c: Re-generated.
8973 * features/rs6000/powerpc-altivec64.c: Re-generated.
8974 * features/rs6000/powerpc-altivec64l.c: Re-generated.
8975 * features/rs6000/powerpc-cell32l.c: Re-generated.
8976 * features/rs6000/powerpc-cell64l.c: Re-generated.
8977 * features/rs6000/powerpc-e500.c: Re-generated.
8978 * features/rs6000/powerpc-e500l.c: Re-generated.
8979 * features/rs6000/powerpc-isa205-32l.c: Re-generated.
8980 * features/rs6000/powerpc-isa205-64l.c: Re-generated.
8981 * features/rs6000/powerpc-isa205-altivec32l.c: Re-generated.
8982 * features/rs6000/powerpc-isa205-altivec64l.c: Re-generated.
8983 * features/rs6000/powerpc-isa205-vsx32l.c: Re-generated.
8984 * features/rs6000/powerpc-isa205-vsx64l.c: Re-generated.
8985 * features/rs6000/powerpc-vsx32.c: Re-generated.
8986 * features/rs6000/powerpc-vsx32l.c: Re-generated.
8987 * features/rs6000/powerpc-vsx64.c: Re-generated.
8988 * features/rs6000/powerpc-vsx64l.c: Re-generated.
8989 * features/rs6000/rs6000.c: Re-generated.
8990 * features/s390-linux32.c: Re-generated.
8991 * features/s390-linux32v1.c: Re-generated.
8992 * features/s390-linux32v2.c: Re-generated.
8993 * features/s390-linux64.c: Re-generated.
8994 * features/s390-linux64v1.c: Re-generated.
8995 * features/s390-linux64v2.c: Re-generated.
8996 * features/s390-te-linux64.c: Re-generated.
8997 * features/s390-tevx-linux64.c: Re-generated.
8998 * features/s390-vx-linux64.c: Re-generated.
8999 * features/s390x-linux64.c: Re-generated.
9000 * features/s390x-linux64v1.c: Re-generated.
9001 * features/s390x-linux64v2.c: Re-generated.
9002 * features/s390x-te-linux64.c: Re-generated.
9003 * features/s390x-tevx-linux64.c: Re-generated.
9004 * features/s390x-vx-linux64.c: Re-generated.
9005 * features/sparc/sparc32-solaris.c: Re-generated.
9006 * features/sparc/sparc64-solaris.c: Re-generated.
9007 * features/tic6x-c62x.c: Re-generated.
9008 * features/tic6x-c62x-linux.c: Re-generated.
9009 * features/tic6x-c64x.c: Re-generated.
9010 * features/tic6x-c64x-linux.c: Re-generated.
9011 * features/tic6x-c64xp.c: Re-generated.
9012 * features/tic6x-c64xp-linux.c: Re-generated.
9013
9014 2017-07-26 Yao Qi <yao.qi@linaro.org>
9015
9016 * i386-linux-tdep.c (i386_linux_read_description): New function.
9017 (i386_linux_core_read_description): Call
9018 i386_linux_read_description.
9019 * i386-linux-tdep.h (i386_linux_read_description): Declare.
9020 (tdesc_i386_linux, tdesc_i386_mmx_linux): Remove declarations.
9021 (tdesc_i386_avx_linux, tdesc_i386_mpx_linux): Likewise
9022 (tdesc_i386_avx_mpx_linux, tdesc_i386_avx_avx512_linux): Likewise.
9023 (tdesc_i386_avx_mpx_avx512_pku_linux): Likewise.
9024 * x86-linux-nat.c (x86_linux_read_description): Call
9025 i386_linux_read_description.
9026
9027 2017-07-26 Yao Qi <yao.qi@linaro.org>
9028
9029 * NEWS: Mention it.
9030 * features/Makefile (%.c: %.xml): Pass the xml file name to
9031 command "maint print c-tdesc".
9032 * target-descriptions.c (maint_print_c_tdesc_cmd): Get file
9033 name from 'arg'.
9034
9035 2017-07-26 Yao Qi <yao.qi@linaro.org>
9036
9037 * target-descriptions.c (target_desc): Add ctor and dtor. Do
9038 in-class initialization.
9039 (tdesc_create_feature): Call new instead of XCNEW.
9040 (free_target_description): Ue delete.
9041
9042 2017-07-25 John Baldwin <jhb@FreeBSD.org>
9043
9044 * configure.nat: Add "-lkvm" for NetBSD/sparc64 and fix typo.
9045
9046 2017-07-25 Yao Qi <yao.qi@linaro.org>
9047
9048 * amd64-tdep.c (amd64_init_abi): Make argument default_tdesc
9049 constant.
9050 (amd64_x32_init_abi): Likewise.
9051 * amd64-tdep.h (amd64_init_abi): Update declaration.
9052 (amd64_x32_init_abi): Likewise.
9053
9054 2017-07-25 Yao Qi <yao.qi@linaro.org>
9055
9056 PR tdep/21717
9057 * arm-linux-nat.c (arm_linux_fetch_inferior_registers): Update
9058 condition for FPSCR.
9059 (arm_linux_store_inferior_registers): Likewise.
9060
9061 2017-07-22 Tom Tromey <tom@tromey.com>
9062
9063 * break-catch-syscall.c (struct catch_syscall_inferior_data)
9064 <syscalls_counts>: Now a std::vector.
9065 (get_catch_syscall_inferior_data): Use "new".
9066 (catch_syscall_inferior_data_cleanup): Use "delete".
9067 (insert_catch_syscall, remove_catch_syscall)
9068 (clear_syscall_counts): Update.
9069
9070 2017-07-22 Tom Tromey <tom@tromey.com>
9071
9072 * break-catch-syscall.c (syscall_catchpoint)
9073 <syscalls_to_be_caught>: Now a std::vector<int>
9074 (~syscall_catchpoint): Remove.
9075 (insert_catch_syscall, remove_catch_syscall)
9076 (breakpoint_hit_catch_syscall, print_one_catch_syscall)
9077 (print_mention_catch_syscall, print_recreate_catch_syscall):
9078 Update.
9079 (create_syscall_event_catchpoint): Change type of "filter"
9080 parameter.
9081 (catch_syscall_split_args): Return a std::vector.
9082 (catch_syscall_command_1, catching_syscall_number_1): Update.
9083
9084 2017-07-22 Tom Tromey <tom@tromey.com>
9085
9086 * break-catch-throw.c (struct exception_catchpoint)
9087 <exception_rx>: Now a std::string.
9088 (~exception_catchpoint): Remove.
9089 (print_one_detail_exception_catchpoint): Update.
9090 (handle_gnu_v3_exceptions): Change type of except_rx.
9091 (extract_exception_regexp): Return a std::string.
9092 (catch_exception_command_1): Update.
9093
9094 2017-07-22 Tom Tromey <tom@tromey.com>
9095
9096 * break-catch-sig.c (gdb_signal_type): Remove typedef.
9097 (struct signal_catchpoint) <signals_to_be_caught>: Now a
9098 std::vector.
9099 <catch_all>: Now a bool.
9100 (~signal_catchpoint): Remove.
9101 (signal_catchpoint_insert_location)
9102 (signal_catchpoint_remove_location)
9103 (signal_catchpoint_breakpoint_hit, signal_catchpoint_print_one)
9104 (signal_catchpoint_print_mention)
9105 (signal_catchpoint_print_recreate)
9106 (signal_catchpoint_explains_signal): Update.
9107 (create_signal_catchpoint): Change type of "filter" and
9108 "catch_all".
9109 (catch_signal_split_args): Return a std::vector. Change type of
9110 "catch_all".
9111 (catch_signal_command): Update.
9112
9113 2017-07-20 Pedro Alves <palves@redhat.com>
9114
9115 * ada-lang.c (ada_language_defn): Make extern.
9116 (_initialize_ada_language): Remove add_language call.
9117 * c-lang.c (c_language_defn, cplus_language_defn)
9118 (asm_language_defn, minimal_language_defn): Make extern.
9119 (_initialize_c_language): Delete.
9120 * completer.c (compare_cstrings): Delete, moved to utils.h.
9121 * d-lang.c (d_language_defn): Make extern.
9122 (_initialize_d_language): Remove add_language calls.
9123 * defs.h (enum language): Add comment.
9124 * f-lang.c (f_language_defn): Make extern.
9125 (_initialize_f_language): Remove add_language call.
9126 * go-lang.c (go_language_defn): Make extern.
9127 (_initialize_go_language): Remove add_language call.
9128 * language.c: Include <algorithm>.
9129 (languages): Redefine as const array.
9130 (languages_size, languages_allocsize, DEFAULT_ALLOCSIZE): Delete.
9131 (set_language_command): Handle "local". Use for-range loop.
9132 (set_language): Remove loop.
9133 (language_enum): Rewrite.
9134 (language_def, language_str): Remove loops.
9135 (add_language): Delete.
9136 (add_set_language_command): New, based on add_languages.
9137 (skip_language_trampoline): Adjust.
9138 (local_language_defn): Delete.
9139 (language_gdbarch_post_init): Adjust.
9140 (_initialize_language): Remove add_language calls. Call
9141 add_set_language_command.
9142 * language.h (add_language): Delete.
9143 (auto_language_defn)
9144 (unknown_language_defn, minimal_language_defn, ada_language_defn)
9145 (asm_language_defn, c_language_defn, cplus_language_defn)
9146 (d_language_defn, f_language_defn, go_language_defn)
9147 (m2_language_defn, objc_language_defn, opencl_language_defn)
9148 (pascal_language_defn, rust_language_defn): Declare.
9149 * m2-lang.c (m2_language_defn): Make extern.
9150 (_initialize_m2_language): Remove add_language call.
9151 * objc-lang.c (objc_language_defn): Make extern.
9152 (_initialize_objc_language): Remove add_language call.
9153 * opencl-lang.c (opencl_language_defn): Make extern.
9154 (_initialize_opencl_language): Remove add_language call.
9155 * p-lang.c (pascal_language_defn): Make extern.
9156 (_initialize_pascal_language): Delete.
9157 * rust-lang.c (rust_language_defn): Make extern.
9158 (_initialize_rust_language): Delete.
9159 * utils.h (compare_cstrings): New static inline function.
9160
9161 2017-07-20 Pedro Alves <palves@redhat.com>
9162
9163 * ada-lang.c (ada_to_fixed_type_1): Adjust.
9164 (get_var_value): Constify parameters.
9165 (get_int_var_value): Change prototype.
9166 (to_fixed_range_type): Adjust.
9167 * ada-lang.h (get_int_var_value): Change prototype.
9168
9169 2017-07-20 Pedro Alves <palves@redhat.com>
9170
9171 * dwarf2read.c (dw2_lookup_symbol): Use
9172 SYMBOL_MATCHES_SEARCH_NAME.
9173 * psymtab.c (psym_lookup_symbol): Use SYMBOL_MATCHES_SEARCH_NAME.
9174
9175 2017-07-20 Pedro Alves <palves@redhat.com>
9176
9177 * block.c (block_iter_name_step, block_iter_name_first)
9178 (block_iter_name_next): Delete.
9179 (block_lookup_symbol_primary): Adjust to use
9180 dict_iter_match_first/dict_iter_match_next.
9181 * block.h (block_iter_name_first, block_iter_name_next): Delete
9182 declarations.
9183 (ALL_BLOCK_SYMBOLS_WITH_NAME): Adjust to use
9184 dict_iter_match_first/dict_iter_match_next.
9185
9186 2017-07-20 Pedro Alves <palves@redhat.com>
9187
9188 * cp-support.c (cp_find_first_component_aux): Add missing case for
9189 end of string.
9190
9191 2017-07-18 David Blaikie <dblaikie@gmail.com>
9192
9193 * dwarf2read.c (create_cus_hash_table): Re-add lost initialization
9194 of dwo_cu's dwo_file.
9195
9196 2017-07-18 Yao Qi <yao.qi@linaro.org>
9197
9198 * remote.c (store_registers_using_G): Remove one line comment.
9199
9200 2017-07-18 Yao Qi <yao.qi@linaro.org>
9201
9202 * regcache.c (regcache_cpy): Simplify it.
9203 (regcache::cpy_no_passthrough): Remove it.
9204 * regcache.h (cpy_no_passthrough): Remove it.
9205 (regcache_dup, regcache_cpy): Update comments.
9206
9207 2017-07-18 Pedro Alves <palves@redhat.com>
9208
9209 * remote-sim.c (sim_command_completer): Adjust to work with a
9210 completion_tracker instead of a VEC.
9211
9212 2017-07-17 Pedro Alves <palves@redhat.com>
9213
9214 * completer.c (complete_source_filenames): New function.
9215 (complete_address_and_linespec_locations): New function.
9216 (location_completer): Use complete_address_and_linespec_locations.
9217 (completion_tracker::build_completion_result): Honor the tracker's
9218 request to suppress append.
9219 * completer.h (completion_tracker::suppress_append_ws)
9220 (completion_tracker::set_suppress_append_ws): New methods.
9221 (completion_tracker::m_suppress_append_ws): New field.
9222 (complete_source_filenames): New declaration.
9223 * linespec.c (linespec_complete_what): New.
9224 (struct ls_parser) <complete_what, completion_word,
9225 completion_quote_char, completion_quote_end, completion_tracker>:
9226 New fields.
9227 (string_find_incomplete_keyword_at_end): New.
9228 (linespec_lexer_lex_string): Record quote char. If in completion
9229 mode, don't throw.
9230 (linespec_lexer_consume_token): Advance the completion word point.
9231 (linespec_lexer_peek_token): Save/restore completion info.
9232 (save_stream_and_consume_token): New.
9233 (set_completion_after_number): New.
9234 (linespec_parse_basic): Set what to complete next depending on
9235 token. Handle function and label completions specially.
9236 (parse_linespec): Disable objc shortcut in completion mode. Set
9237 what to complete next depending on token type. Skip keyword if in
9238 completion mode.
9239 (complete_linespec_component, linespec_complete): New.
9240 * linespec.h (linespec_complete): Declare.
9241
9242 2017-07-17 Pedro Alves <palves@redhat.com>
9243
9244 * linespec.c (linespec_lexer_lex_string, find_toplevel_char):
9245 Handle 'operator<' / 'operator<<'.
9246
9247 2017-07-17 Pedro Alves <palves@redhat.com>
9248
9249 * completer.c (collect_explicit_location_matches): Handle
9250 MATCH_LABEL.
9251 (convert_explicit_location_to_linespec): New, factored out from
9252 ...
9253 (convert_explicit_location_to_sals): ... this.
9254 (complete_label): New.
9255 (linespec_complete_label, find_label_symbols_in_block): New.
9256 (find_label_symbols): Add completion_mode parameter and adjust to
9257 call find_label_symbols_in_block.
9258 * linespec.h (linespec_complete_label): Declare.
9259
9260 2017-07-17 Pedro Alves <palves@redhat.com>
9261
9262 * ada-lang.c (ada_collect_symbol_completion_matches): Add
9263 complete_symbol_mode parameter.
9264 * cli/cli-cmds.c (complete_command): Get the completion result out
9265 of the handle_brkchars tracker if used a custom word point.
9266 * completer.c: Include "linespec.h".
9267 (enum explicit_location_match_type) <MATCH_LINE>: New enumerator.
9268 (advance_to_expression_complete_word_point): New.
9269 (completion_tracker::completes_to_completion_word): New.
9270 (complete_files_symbols): Pass down
9271 complete_symbol_mode::EXPRESSION.
9272 (explicit_options, probe_options): New.
9273 (collect_explicit_location_matches): Complete on the
9274 explictit_loc->foo instead of word. Use
9275 linespec_complete_function. Handle MATCH_LINE. Handle offering
9276 keyword and options completions.
9277 (backup_text_ptr): Delete.
9278 (skip_keyword): New.
9279 (complete_explicit_location): Remove 'word' parameter. Add
9280 language, quoted_arg_start and quoted_arg_end parameters.
9281 Rewrite, parsing left to right.
9282 (location_completer): Rewrite.
9283 (location_completer_handle_brkchars): New function.
9284 (symbol_completer): Pass down complete_symbol_mode::EXPRESSION.
9285 (enum complete_line_internal_reason): Adjust comments.
9286 (completion_tracker::discard_completions): New.
9287 (completer_handle_brkchars_func_for_completer): Handle
9288 location_completer.
9289 (gdb_custom_word_point_brkchars)
9290 (gdb_org_rl_basic_quote_characters): New.
9291 (gdb_completion_word_break_characters_throw)
9292 (completion_find_completion_word): Handle trackers that use a
9293 custom word point.
9294 (completion_tracker::advance_custom_word_point_by): New.
9295 (completion_tracker::build_completion_result): Don't rely on
9296 readline appending the quote char.
9297 (gdb_rl_attempted_completion_function_throw): Handle trackers that
9298 use a custom word point.
9299 (gdb_rl_attempted_completion_function): Restore
9300 rl_basic_quote_characters.
9301 * completer.h (class completion_tracker): Extend intro comment.
9302 (completion_tracker::set_quote_char)
9303 (completion_tracker::quote_char)
9304 (completion_tracker::set_use_custom_word_point)
9305 (completion_tracker::use_custom_word_point)
9306 (completion_tracker::custom_word_point)
9307 (completion_tracker::set_custom_word_point)
9308 (completion_tracker::advance_custom_word_point_by)
9309 (completion_tracker::completes_to_completion_word)
9310 (completion_tracker::discard_completions): New methods.
9311 (completion_tracker::m_quote_char)
9312 (completion_tracker::m_use_custom_word_point)
9313 (completion_tracker::m_custom_word_point): New fields.
9314 (advance_to_expression_complete_word_point): Declare.
9315 * f-lang.c (f_collect_symbol_completion_matches): Add
9316 complete_symbol_mode parameter.
9317 * language.h (struct language_defn)
9318 <la_collect_symbol_completion_matches>: Add complete_symbol_mode
9319 parameter.
9320 * linespec.c (linespec_keywords): Add NULL terminator. Make extern.
9321 (linespec_complete_function): New function.
9322 (linespec_lexer_lex_keyword): Adjust.
9323 * linespec.h (linespec_keywords, linespec_complete_function): New
9324 declarations.
9325 * location.c (find_end_quote): New function.
9326 (explicit_location_lex_one): Add explicit_completion_info
9327 parameter. Save quoting info. Don't throw if being called for
9328 completion. Don't handle Ada operators here.
9329 (is_cp_operator, skip_op_false_positives, first_of)
9330 (explicit_location_lex_one_function): New function.
9331 (string_to_explicit_location): Replace 'dont_throw' parameter with
9332 an explicit_completion_info pointer parameter. Handle it. Don't
9333 use explicit_location_lex_one to lex function names. Use
9334 explicit_location_lex_one_function instead.
9335 * location.h (struct explicit_completion_info): New.
9336 (string_to_explicit_location): Replace 'dont_throw' parameter with
9337 an explicit_completion_info pointer parameter.
9338 * symtab.c (default_collect_symbol_completion_matches_break_on):
9339 Add complete_symbol_mode parameter. Handle LINESPEC mode.
9340 (default_collect_symbol_completion_matches)
9341 (collect_symbol_completion_matches): Add complete_symbol_mode
9342 parameter.
9343 (collect_symbol_completion_matches_type): Pass down
9344 complete_symbol_mode::EXPRESSION.
9345 (collect_file_symbol_completion_matches): Add complete_symbol_mode
9346 parameter. Handle LINESPEC mode.
9347 * symtab.h (complete_symbol_mode): New.
9348 (default_collect_symbol_completion_matches_break_on)
9349 (default_collect_symbol_completion_matches)
9350 (collect_symbol_completion_matches)
9351 (collect_file_symbol_completion_matches): Add complete_symbol_mode
9352 parameter.
9353
9354 2017-07-17 Pedro Alves <palves@redhat.com>
9355
9356 * utils.c (enum class strncmp_iw_mode): New.
9357 (strcmp_iw): Rename to ...
9358 (strncmp_iw_with_mode): ... this. Add string2_len and mode
9359 parameters. Handle them.
9360 (strncmp_iw): New.
9361 (strcmp_iw): Reimplement as wrapper around strncmp_iw_with_mode.
9362 * utils.h (strncmp_iw): Declare.
9363 (strcmp_iw): Move describing comments here.
9364
9365 2017-07-17 Pedro Alves <palves@redhat.com>
9366
9367 * c-exp.y (operator_stoken): Use CP_OPERATOR_LEN and
9368 CP_OPERATOR_STR.
9369 * c-typeprint.c (is_type_conversion_operator): Use
9370 CP_OPERATOR_STR.
9371 * cp-support.c (LENGTH_OF_OPERATOR): Delete.
9372 (cp_find_first_component_aux): Use CP_OPERATOR_STR and
9373 CP_OPERATOR_LEN.
9374 * cp-support.h (CP_OPERATOR_STR, CP_OPERATOR_LEN): New.
9375 * gnu-v2-abi.c (gnuv2_is_operator_name): Use CP_OPERATOR_STR.
9376 * gnu-v3-abi.c (gnuv3_is_operator_name): Use CP_OPERATOR_STR.
9377 * linespec.c (linespec_lexer_lex_string): Use CP_OPERATOR_LEN and
9378 CP_OPERATOR_STR.
9379 * location.c: Include "cp-support.h".
9380 (explicit_location_lex_one): Use CP_OPERATOR_LEN and
9381 CP_OPERATOR_STR.
9382 * symtab.c (operator_chars): Use CP_OPERATOR_STR and
9383 CP_OPERATOR_LEN.
9384
9385 2017-07-17 Pedro Alves <palves@redhat.com>
9386
9387 * cli/cli-cmds.c (complete_command): Use a completion tracker
9388 along with completion_find_completion_word for handle_brkchars
9389 phase.
9390 * completer.c (RL_QF_SINGLE_QUOTE, RL_QF_DOUBLE_QUOTE)
9391 (RL_QF_BACKSLASH, RL_QF_OTHER_QUOTE): New.
9392 (struct gdb_rl_completion_word_info): New.
9393 (gdb_rl_find_completion_word): New.
9394 (completion_find_completion_word): New.
9395 * completer.h (completion_find_completion_word): Declare.
9396
9397 2017-07-17 Pedro Alves <palves@redhat.com>
9398
9399 * ada-lang.c (symbol_completion_match): Adjust comments.
9400 (symbol_completion_add): Replace vector parameter with
9401 completion_tracker parameter. Use it.
9402 (ada_make_symbol_completion_list): Rename to...
9403 (ada_collect_symbol_completion_matches): ... this. Add
9404 completion_tracker parameter and use it.
9405 (ada_language_defn): Adjust.
9406 * break-catch-syscall.c (catch_syscall_completer): Adjust
9407 prototype and work with completion_tracker instead of VEC.
9408 * breakpoint.c (condition_completer): Adjust prototype and work
9409 with completion_tracker instead of VEC.
9410 * c-lang.c (c_language_defn, cplus_language_defn)
9411 (asm_language_defn, minimal_language_defn): Adjust to renames.
9412 * cli/cli-cmds.c (complete_command): Rework using
9413 completion_tracker. Catch exceptions when completing.
9414 * cli/cli-decode.c (integer_unlimited_completer)
9415 (complete_on_cmdlist, complete_on_enum): Adjust prototype and work
9416 with completion_tracker instead of VEC.
9417 * command.h (struct completion_tracker): Forward declare.
9418 (completer_ftype, completer_handle_brkchars_ftype): Change
9419 types.
9420 (complete_on_cmdlist, complete_on_enum): Adjust.
9421 * completer.c: Include <algorithm>.
9422 (struct gdb_completer_state): New.
9423 (current_completion): New global.
9424 (readline_line_completion_function): Delete.
9425 (noop_completer, filename_completer)
9426 (filename_completer_handle_brkchars, complete_files_symbols)
9427 (linespec_location_completer): Adjust to work with a
9428 completion_tracker instead of a VEC.
9429 (string_or_empty): New.
9430 (collect_explicit_location_matches): Adjust to work with a
9431 completion_tracker instead of a VEC.
9432 (explicit_location_completer): Rename to ...
9433 (complete_explicit_location): ... this and adjust to work with a
9434 completion_tracker instead of a VEC.
9435 (location_completer): Adjust to work with a completion_tracker
9436 instead of a VEC.
9437 (add_struct_fields): Adjust to work with a completion_list instead
9438 of VEC.
9439 (expression_completer): Rename to ...
9440 (complete_expression): ... this and adjust to work with a
9441 completion_tracker instead of a VEC. Use complete_files_symbols.
9442 (expression_completer): Reimplement on top of complete_expression.
9443 (symbol_completer): Adjust to work with a completion_tracker
9444 instead of a VEC.
9445 (enum complete_line_internal_reason): Add describing comments.
9446 (complete_line_internal_normal_command): Adjust to work with a
9447 completion_tracker instead of a VEC.
9448 (complete_line_internal): Rename to ...
9449 (complete_line_internal_1): ... this and adjust to work with a
9450 completion_tracker instead of a VEC. Assert TEXT is NULL in the
9451 handle_brkchars phase.
9452 (new_completion_tracker): Delete.
9453 (complete_line_internal): Reimplement as TRY/CATCH wrapper around
9454 complete_line_internal_1.
9455 (free_completion_tracker): Delete.
9456 (INITIAL_COMPLETION_HTAB_SIZE): New.
9457 (completion_tracker::completion_tracker)
9458 (completion_tracker::~completion_tracker): New.
9459 (maybe_add_completion): Delete.
9460 (completion_tracker::maybe_add_completion)
9461 (completion_tracker::add_completion)
9462 (completion_tracker::add_completions): New.
9463 (throw_max_completions_reached_error): Delete.
9464 (complete_line): Adjust to work with a completion_tracker instead
9465 of a VEC. Don't create a completion_tracker_t or check for max
9466 completions here.
9467 (command_completer, command_completer_handle_brkchars)
9468 (signal_completer, reg_or_group_completer_1)
9469 (reg_or_group_completer, default_completer_handle_brkchars):
9470 Adjust to work with a completion_tracker.
9471 (gdb_completion_word_break_characters_throw): New.
9472 (gdb_completion_word_break_characters): Reimplement.
9473 (line_completion_function): Delete.
9474 (completion_tracker::recompute_lowest_common_denominator)
9475 (expand_preserving_ws)
9476 (completion_tracker::build_completion_result)
9477 (completion_result::completion_result)
9478 (completion_result::completion_result)
9479 (completion_result::~completion_result)
9480 (completion_result::completion_result)
9481 (completion_result::release_match_list, compare_cstrings)
9482 (completion_result::sort_match_list)
9483 (completion_result::reset_match_list)
9484 (gdb_rl_attempted_completion_function_throw)
9485 (gdb_rl_attempted_completion_function): New.
9486 * completer.h (completion_list, struct completion_result)
9487 (class completion_tracker): New.
9488 (complete_line): Add completion_tracker parameter.
9489 (readline_line_completion_function): Delete.
9490 (gdb_rl_attempted_completion_function): New.
9491 (noop_completer, filename_completer, expression_completer)
9492 (location_completer, symbol_completer, command_completer)
9493 (signal_completer, reg_or_group_completer): Update prototypes.
9494 (completion_tracker_t, new_completion_tracker)
9495 (make_cleanup_free_completion_tracker): Delete.
9496 (enum maybe_add_completion_enum): Delete.
9497 (maybe_add_completion): Delete.
9498 (throw_max_completions_reached_error): Delete.
9499 * corefile.c (complete_set_gnutarget): Adjust to work with a
9500 completion_tracker instead of a VEC.
9501 * cp-abi.c (cp_abi_completer): Adjust to work with a
9502 completion_tracker instead of a VEC.
9503 * d-lang.c (d_language_defn): Adjust.
9504 * disasm.c (disassembler_options_completer): Adjust to work with a
9505 completion_tracker instead of a VEC.
9506 * f-lang.c (f_make_symbol_completion_list): Rename to ...
9507 (f_collect_symbol_completion_matches): ... this. Adjust to work
9508 with a completion_tracker instead of a VEC.
9509 (f_language_defn): Adjust.
9510 * go-lang.c (go_language_defn): Adjust.
9511 * guile/scm-cmd.c (cmdscm_add_completion, cmdscm_completer):
9512 Adjust to work with a completion_tracker instead of a VEC.
9513 * infrun.c (handle_completer): Likewise.
9514 * interps.c (interpreter_completer): Likewise.
9515 * interps.h (interpreter_completer): Likewise.
9516 * language.c (unknown_language_defn, auto_language_defn)
9517 (local_language_defn): Adjust.
9518 * language.h (language_defn::la_make_symbol_completion_list):
9519 Rename to ...
9520 (language_defn::la_collect_symbol_completion_matches): ... this
9521 and adjust to work with a completion_tracker instead of a VEC.
9522 * m2-lang.c (m2_language_defn): Adjust.
9523 * objc-lang.c (objc_language_defn): Adjust.
9524 * opencl-lang.c (opencl_language_defn): Adjust.
9525 * p-lang.c (pascal_language_defn): Adjust.
9526 * python/py-cmd.c (cmdpy_completer_helper): Handle NULL word.
9527 (cmdpy_completer_handle_brkchars, cmdpy_completer): Adjust to work
9528 with a completion_tracker.
9529 * rust-lang.c (rust_language_defn): Adjust.
9530 * symtab.c (free_completion_list, do_free_completion_list)
9531 (return_val, completion_tracker): Delete.
9532 (completion_list_add_name, completion_list_add_symbol)
9533 (completion_list_add_msymbol, completion_list_objc_symbol)
9534 (completion_list_add_fields, add_symtab_completions): Add
9535 completion_tracker parameter and use it.
9536 (default_make_symbol_completion_list_break_on_1): Rename to...
9537 (default_collect_symbol_completion_matches_break_on): ... this.
9538 Add completion_tracker parameter and use it instead of allocating
9539 a completion tracker here.
9540 (default_make_symbol_completion_list_break_on): Delete old
9541 implementation.
9542 (default_make_symbol_completion_list): Delete.
9543 (default_collect_symbol_completion_matches): New.
9544 (make_symbol_completion_list): Delete.
9545 (collect_symbol_completion_matches): New.
9546 (make_symbol_completion_type): Rename to ...
9547 (collect_symbol_completion_matches_type): ... this. Add
9548 completion_tracker parameter and use it instead of VEC.
9549 (make_file_symbol_completion_list_1): Rename to...
9550 (collect_file_symbol_completion_matches): ... this. Add
9551 completion_tracker parameter and use it instead of VEC.
9552 (make_file_symbol_completion_list): Delete.
9553 (add_filename_to_list): Use completion_list instead of a VEC.
9554 (add_partial_filename_data::list): Now a completion_list.
9555 (make_source_files_completion_list): Work with a completion_list
9556 instead of a VEC.
9557 * symtab.h: Include "completer.h".
9558 (default_make_symbol_completion_list_break_on)
9559 (default_make_symbol_completion_list, make_symbol_completion_list)
9560 (make_symbol_completion_type, make_file_symbol_completion_list)
9561 (make_source_files_completion_list): Delete.
9562 (default_collect_symbol_completion_matches_break_on)
9563 (default_collect_symbol_completion_matches)
9564 (collect_symbol_completion_matches)
9565 (collect_symbol_completion_matches_type)
9566 (collect_file_symbol_completion_matches)
9567 (make_source_files_completion_list): New.
9568 * top.c (init_main): Don't install a rl_completion_entry_function
9569 hook. Install a rl_attempted_completion_function hook instead.
9570 * tui/tui-layout.c (layout_completer): Adjust to work with a
9571 completion_tracker.
9572 * tui/tui-regs.c (tui_reggroup_completer):
9573 * tui/tui-win.c (window_name_completer, focus_completer)
9574 (winheight_completer): Adjust to work with a completion_tracker.
9575 * value.c: Include "completer.h".
9576 (complete_internalvar): Adjust to work with a completion_tracker.
9577 * value.h (complete_internalvar): Likewise.
9578
9579 2017-07-17 Pedro Alves <palves@redhat.com>
9580
9581 * cli/cli-decode.c (set_cmd_completer_handle_brkchars): Adjust to
9582 renames.
9583 * cli/cli-decode.h (struct cmd_list_element) <completer>: Move
9584 comments to completer_ftype's declaration.
9585 <completer_handle_brkchars>: Change type to
9586 completer_handle_brkchars_ftype.
9587 * command.h (completer_ftype): Add describing comment and give
9588 names to parameters.
9589 (completer_ftype_void): Rename to ...
9590 (completer_handle_brkchars_ftype) ... this. Add describing comment.
9591 (set_cmd_completer_handle_brkchars): Adjust.
9592 * completer.c (filename_completer_handle_brkchars): New function.
9593 (complete_line_internal_normal_command): New function, factored
9594 out from ...
9595 (complete_line_internal): ... here.
9596 (command_completer_handle_brkchars)
9597 (default_completer_handle_brkchars)
9598 (completer_handle_brkchars_func_for_completer): New functions.
9599 * completer.h (set_gdb_completion_word_break_characters): Delete
9600 declaration.
9601 (completer_handle_brkchars_func_for_completer): New declaration.
9602 * python/py-cmd.c (cmdpy_completer_handle_brkchars): Adjust to use
9603 completer_handle_brkchars_func_for_completer.
9604
9605 2017-07-17 Pedro Alves <palves@redhat.com>
9606
9607 * completer.c (symbol_completer): New function, based on
9608 make_symbol_completion_list_fn.
9609 * completer.h (symbol_completer): New declaration.
9610 * guile/scm-cmd.c (cmdscm_completers): Adjust.
9611 * python/py-cmd.c (completers): Adjust.
9612 * symtab.c (make_symbol_completion_list_fn): Delete.
9613 * symtab.h (make_symbol_completion_list_fn): Delete.
9614 * cli/cli-decode.c (add_cmd): Adjust.
9615
9616 2017-07-17 Pedro Alves <palves@redhat.com>
9617
9618 * Makefile.in (COMMON_OBS): Add filename-seen-cache.o.
9619 * dwarf2read.c: Include "filename-seen-cache.h".
9620 * dwarf2read.c (dwarf2_per_objfile) <filenames_cache>: New field.
9621 (dw2_map_symbol_filenames): Build and use a filenames_seen_cache.
9622 * filename-seen-cache.c: New file.
9623 * filename-seen-cache.h: New file.
9624 * symtab.c: Include "filename-seen-cache.h".
9625 (struct filename_seen_cache, INITIAL_FILENAME_SEEN_CACHE_SIZE)
9626 (create_filename_seen_cache, clear_filename_seen_cache)
9627 (delete_filename_seen_cache, filename_seen): Delete, parts moved
9628 to filename-seen-cache.h/filename-seen-cache.c.
9629 (output_source_filename, sources_info)
9630 (maybe_add_partial_symtab_filename)
9631 (make_source_files_completion_list): Adjust to use
9632 filename_seen_cache.
9633
9634 2017-07-17 Pedro Alves <palves@redhat.com>
9635
9636 * dwarf2read.c (dwarf2_per_objfile): In-class initialize all
9637 fields.
9638 (dwarf2_per_objfile::dwarf2_per_objfile(objfile*, const
9639 dwarf2_debug_sections*)): New.
9640 (dwarf2_per_objfile::dwarf2_per_objfile(const
9641 dwarf2_per_objfile&)): Declare as deleted.
9642 (dwarf2_per_objfile::operator=): Declare as deleted.
9643 (dwarf2_per_objfile::dwarf2_per_objfile)
9644 (dwarf2_per_objfile::~dwarf2_per_objfile)
9645 (dwarf2_per_objfile::free_cached_comp_units): New.
9646 (dwarf2_has_info): dwarf2_per_objfile initialization code moved to
9647 ctor. Call dwarf2_per_objfile's ctor manually.
9648 (dwarf2_locate_sections): Deleted/refactored as ...
9649 (dwarf2_per_objfile::locate_sections): ... this new method.
9650 (free_cached_comp_units): Defer to
9651 dwarf2_per_objfile::free_cached_comp_units.
9652 (dwarf2_free_objfile): Call dwarf2_per_objfile's dtor manually.
9653
9654 2017-07-14 Tom Tromey <tom@tromey.com>
9655
9656 PR rust/21764:
9657 * rust-exp.y (convert_ast_to_expression): Add "want_type"
9658 parameter.
9659 <UNOP_SIZEOF>: Split into separate case.
9660 <UNOP_VAR_VALUE>: Handle want_type. Add error case.
9661
9662 2017-07-14 Tom Tromey <tom@tromey.com>
9663
9664 PR rust/21763:
9665 * symtab.c (symbol_matches_domain): Add language_rust to special
9666 case.
9667 * rust-exp.y (convert_ast_to_expression) <OP_VAR_VALUE>: Don't
9668 treat LOC_TYPEDEF symbols as variables.
9669
9670 2017-07-14 Pedro Alves <palves@redhat.com>
9671
9672 * symtab.c (make_file_symbol_completion_list_1): Iterate over
9673 symtabs matching all symtabs with SRCFILE as file name instead of
9674 only considering the first hit, with lookup_symtab.
9675
9676 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
9677
9678 * ax-gdb.c (gen_aggregate_elt_ref): Remove operand_name and
9679 operator_name parameters.
9680 (gen_expr): Update function call.
9681
9682 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
9683
9684 * dwarf2loc.h (dwarf2_compile_expr_to_ax): Remove gdbarch
9685 parameter.
9686 * symtab.h (struct symbol_computed_ops::tracepoint_var_ref):
9687 Likewise.
9688 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove gdbarch
9689 parameter, use agent_expr::gdbarch instead, update function
9690 calls.
9691 (locexpr_tracepoint_var_ref): Likewise.
9692 (loclist_tracepoint_var_ref): Likewise.
9693 * ax-gdb.c (gen_trace_static_fields): Likewise.
9694 (gen_traced_pop): Likewise.
9695 (gen_frame_args_address): Likewise.
9696 (gen_frame_locals_address): Likewise.
9697 (gen_var_ref): Likewise.
9698 (gen_struct_ref_recursive): Likewise.
9699 (gen_static_field): Likewise.
9700 (gen_maybe_namespace_elt): Likewise.
9701 (gen_expr): Likewise.
9702 (gen_trace_for_var): Likewise.
9703 (gen_trace_for_expr): Likewise.
9704 (gen_trace_for_return_address): Likewise.
9705
9706 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
9707
9708 * ax-gdb.c (gen_deref, gen_address_of): Remove unused ax
9709 parameter.
9710 (gen_struct_ref, gen_expr, gen_expr_binop_rest): Update call.
9711
9712 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
9713
9714 * ax-gdb.c (gen_usual_unary): Remove exp parameter, get gdbarch
9715 from ax, update calls.
9716 (gen_usual_arithmetic): Likewise.
9717 (gen_integral_promotions): Likewise.
9718 (gen_bitfield_ref): Likewise.
9719 (gen_primitive_field): Likewise.
9720 (gen_struct_ref_recursive): Likewise.
9721 (gen_struct_ref): Likewise.
9722 (gen_maybe_namespace_elt): Likewise.
9723 (gen_struct_elt_for_reference): Likewise.
9724 (gen_namespace_elt): Likewise.
9725 (gen_aggregate_elt_ref): Likewise.
9726 (gen_expr): Get gdbarch from ax, update calls.
9727 (gen_expr_binop_rest): Likewise.
9728
9729 2017-07-13 Pedro Alves <palves@redhat.com>
9730
9731 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Pass tdesc_amd64
9732 as default tdesc.
9733 * amd64-dicos-tdep.c (amd64_dicos_init_abi):
9734 * amd64-fbsd-tdep.c (amd64fbsd_init_abi):
9735 * amd64-linux-tdep.c (amd64_linux_init_abi): Pass
9736 tdesc_amd64_linux as default tdesc. Get final tdesc from the
9737 tdep.
9738 (amd64_x32_linux_init_abi): Pass tdesc_x32_linux as default tdesc.
9739 Get final tdesc from the tdep.
9740 * amd64-nbsd-tdep.c (amd64nbsd_init_abi): Pass tdesc_amd64 as
9741 default tdesc.
9742 * amd64-obsd-tdep.c (amd64obsd_init_abi): Likewise.
9743 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Likewise.
9744 * amd64-tdep.c (amd64_init_abi): Add 'default_tdesc' parameter.
9745 Use it as default tdesc.
9746 (amd64_x32_init_abi): Add 'default_tdesc' parameter, and pass it
9747 down to amd_init_abi. No longer handle fallback tdesc here.
9748 * amd64-tdep.h (tdesc_x32): Declare.
9749 (amd64_init_abi, amd64_x32_init_abi): Add 'default_tdesc'
9750 parameter.
9751 * amd64-windows-tdep.c (amd64_windows_init_abi): Pass tdesc_amd64
9752 as default tdesc.
9753
9754 2017-07-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
9755
9756 * s390-linux-tdep.c (s390_process_record): Add support for
9757 instructions new in arch12.
9758
9759 2017-07-11 John Baldwin <jhb@FreeBSD.org>
9760
9761 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
9762 PT_GETFSBASE and PT_GETGSBASE.
9763 (amd64bsd_store_inferior_registers): Use PT_SETFSBASE and
9764 PT_SETGSBASE.
9765
9766 2017-07-11 John Baldwin <jhb@FreeBSD.org>
9767
9768 * features/Makefile (amd64.dat, amd64-avx.dat, amd64-mpx.dat)
9769 (amd64-avx-mpx.dat, amd64-avx-avx512.dat)
9770 (amd64-avx-mpx-avx512-pku.dat): Add i386/64bit-segments.xml in
9771 those rules.
9772 * features/i386/amd64-avx-avx512.xml: Add 64bit-segments.xml.
9773 * features/i386/amd64-avx-mpx-avx512-pku.xml: Add 64bit-segments.xml.
9774 * features/i386/amd64-avx-mpx.xml: Add 64bit-segments.xml.
9775 * features/i386/amd64-avx.xml: Add 64bit-segments.xml.
9776 * features/i386/amd64-mpx.xml: Add 64bit-segments.xml.
9777 * features/i386/amd64.xml: Add 64bit-segments.xml.
9778 * features/i386/amd64-avx-avx512.c: Regenerated.
9779 * features/i386/amd64-avx-mpx-avx512-pku.c: Regenerated.
9780 * features/i386/amd64-avx-mpx.c: Regenerated.
9781 * features/i386/amd64-avx.c: Regenerated.
9782 * features/i386/amd64-mpx.c: Regenerated.
9783 * features/i386/amd64.c: Regenerated.
9784 * regformats/i386/amd64-avx-avx512.dat: Regenerated.
9785 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
9786 * regformats/i386/amd64-avx-mpx.dat: Regenerated.
9787 * regformats/i386/amd64-avx.dat: Regenerated.
9788 * regformats/i386/amd64-mpx.dat: Regenerated.
9789 * regformats/i386/amd64.dat: Regenerated.
9790
9791 2017-07-10 Yao Qi <yao.qi@linaro.org>
9792
9793 * features/i386/amd64-avx-avx512-linux.c: Re-generated.
9794 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
9795
9796 2017-07-10 Anton Kolesov <Anton.Kolesov@synopsys.com>
9797
9798 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add setenv and
9799 unsetenv.
9800 * gnulib/aclocal.m4: Regenerate.
9801 * gnulib/config.in: Regenerate.
9802 * gnulib/configure: Regenerate.
9803 * gnulib/import/Makefile.am: Regenerate.
9804 * gnulib/import/Makefile.in: Regenerate.
9805 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
9806 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
9807 * gnulib/import/m4/environ.m4: New file.
9808 * gnulib/import/m4/setenv.m4: New file.
9809 * gnulib/import/setenv.c: New file.
9810 * gnulib/import/unsetenv.c: New file.
9811
9812 2017-07-09 Simon Marchi <simon.marchi@ericsson.com>
9813
9814 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Read
9815 address when op is DW_OP_addr.
9816
9817 2017-07-09 Tom Tromey <tom@tromey.com>
9818
9819 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Reverse size
9820 check and apply to outer type.
9821
9822 2017-07-07 John Baldwin <jhb@FreeBSD.org>
9823
9824 * fbsd-tdep.c (LWPINFO_OFFSET, LWPINFO_PL_FLAGS)
9825 (LWPINFO64_PL_SIGINFO, LWPINFO32_PL_SIGINFO, PL_FLAG_SI)
9826 (SIZE64_SIGINFO_T, SIZE32_SIGINFO_T, fbsd_core_xfer_siginfo): New.
9827 (fbsd_init_abi): Install gdbarch "core_xfer_siginfo" method.
9828
9829 2017-07-07 John Baldwin <jhb@FreeBSD.org>
9830
9831 * fbsd-tdep.c (fbsd_core_thread_name): Use thread_section_name.
9832
9833 2017-07-07 John Baldwin <jhb@FreeBSD.org>
9834
9835 * corelow.c (get_core_siginfo): Remove.
9836 (core_xfer_partial): Use the gdbarch "core_xfer_siginfo" method
9837 instead of get_core_siginfo.
9838 * gdbarch.sh (core_xfer_siginfo): New gdbarch callback.
9839 * gdbarch.h: Re-generate.
9840 * gdbarch.c: Re-generate.
9841 * linux-tdep.c (linux_core_xfer_siginfo): New.
9842 (linux_init_abi): Install gdbarch "core_xfer_siginfo" method.
9843
9844 2017-07-07 John Baldwin <jhb@FreeBSD.org>
9845
9846 * corelow.c (thread_section_name): Move to ...
9847 * gdbcore.h (thread_section_name): ... here.
9848
9849 2017-07-07 John Baldwin <jhb@FreeBSD.org>
9850
9851 * fbsd-nat.c [PT_LWPINFO && __LP64__] (union sigval32)
9852 (struct siginfo32): New.
9853 [PT_LWPINFO] (fbsd_siginfo_size, fbsd_convert_siginfo): New.
9854 (fbsd_xfer_partial) [PT_LWPINFO]: Handle TARGET_OBJECT_SIGNAL_INFO
9855 via ptrace(PT_LWPINFO).
9856
9857 2017-07-07 John Baldwin <jhb@FreeBSD.org>
9858
9859 * fbsd-tdep.c (fbsd_gdbarch_data_handle, struct fbsd_gdbarch_data)
9860 (init_fbsd_gdbarch_data, get_fbsd_gdbarch_data)
9861 (fbsd_get_siginfo_type): New.
9862 (fbsd_init_abi): Install gdbarch "get_siginfo_type" method.
9863 (_initialize_fbsd_tdep): New.
9864
9865 2017-07-06 David Blaikie <dblaikie@gmail.com>
9866
9867 * dwarf2read.c (struct dwo_file): Use a htab of dwo_unit* (rather than
9868 a singular dwo_unit*) to support multiple CUs in the same way that
9869 multiple TUs are supported.
9870 (create_cus_hash_table): Replace create_dwo_cu with a function for
9871 parsing multiple CUs from a DWO file.
9872 (open_and_init_dwo_file): Use create_cus_hash_table rather than
9873 create_dwo_cu.
9874 (lookup_dwo_cutu): Lookup CU in the hash table in the dwo_file with
9875 htab_find, rather than comparing the signature to a singleton CU in
9876 the dwo_file.
9877
9878 2017-07-06 Pedro Alves <palves@redhat.com>
9879
9880 * python/py-unwind.c (pyuw_dealloc_cache): Fix for loop condition.
9881
9882 2017-07-04 Pedro Alves <palves@redhat.com>
9883
9884 * gdbtypes.c (recursive_dump_type): Don't reference TYPE_STATIC.
9885 * gdbtypes.h (TYPE_STATIC): Delete.
9886 (struct fn_field) <is_public, is_abstract, is_static, is_final,
9887 is_synchronized, is_native>: Delete.
9888 <dummy>: Bump.
9889 (TYPE_FN_FIELD_PUBLIC, TYPE_FN_FIELD_STATIC, TYPE_FN_FIELD_FINAL)
9890 (TYPE_FN_FIELD_SYNCHRONIZED, TYPE_FN_FIELD_NATIVE)
9891 (TYPE_FN_FIELD_ABSTRACT): Delete.
9892
9893 2017-07-03 Simon Marchi <simon.marchi@ericsson.com>
9894
9895 * buffer.h (buffer_finish): Fix spelling mistakes.
9896
9897 2017-07-01 Eli Zaretskii <eliz@gnu.org>
9898
9899 * .dir-locals.el: Automatically switch to C-style comments in
9900 versions of Emacs that support the feature.
9901
9902 2017-06-30 Sergio Durigan Junior <sergiodj@redhat.com>
9903 Pedro Alves <palves@redhat.com>
9904
9905 PR cli/21688
9906 * cli/cli-script.c (command_name_equals_not_inline): Remove function.
9907 (process_next_line): New variable 'inline_cmd'.
9908 Adjust 'if' clauses for "python", "compile" and "guile" to use
9909 'command_name_equals' and check for '!inline_cmd'.
9910
9911 2017-06-30 Sergio Durigan Junior <sergiodj@redhat.com>
9912
9913 PR cli/21688
9914 * cli/cli-script.c (command_name_equals_not_inline): New function.
9915 (process_next_line): Adjust 'if' clauses for "python", "compile"
9916 and "guile" to use command_name_equals_not_inline.
9917
9918 2017-06-29 Pedro Alves <palves@redhat.com>
9919
9920 * completer.c (expression_completer): Call
9921 linespec_location_completer instead of location_completer.
9922
9923 2017-06-29 Pedro Alves <palves@redhat.com>
9924
9925 * completer.c (expression_completer): Remove code that recomputes
9926 'text' from 'word'.
9927
9928 2017-06-29 Yao Qi <yao.qi@linaro.org>
9929
9930 * regformats/regdat.sh: Generate code with
9931 "ifndef IN_PROCESS_AGENT".
9932
9933 2017-06-28 Pedro Alves <palves@redhat.com>
9934
9935 * command.h: Include "common/scoped_restore.h".
9936
9937 2017-06-28 Yao Qi <yao.qi@linaro.org>
9938
9939 * mi/mi-cmd-break.c (mi_argv_to_format): Use obstack_grow_str
9940 instead of obstack_grow.
9941
9942 2017-06-28 Doug Gilmore <Doug.Gilmore@imgtec.com>
9943
9944 PR gdb/21337
9945 * symfile.c (reread_symbols): Call objfiles_changed just before
9946 read_symbols.
9947
9948 2017-06-27 Pedro Alves <palves@redhat.com>
9949
9950 * symtab.c (COMPLETION_LIST_ADD_SYMBOL)
9951 (MCOMPLETION_LIST_ADD_SYMBOL): Delete macros, replace with ...
9952 (completion_list_add_symbol, completion_list_add_msymbol):
9953 ... these new functions.
9954 (add_symtab_completions)
9955 (default_make_symbol_completion_list_break_on_1): Adjust.
9956
9957 2017-06-27 Pedro Alves <palves@redhat.com>
9958
9959 * objfiles.c (get_objfile_bfd_data): Call bfd_alloc instead of
9960 bfd_zalloc. Call objfile_per_bfd_storage's ctor.
9961 (free_objfile_per_bfd_storage): Call objfile_per_bfd_storage's
9962 dtor.
9963 * objfiles.h (objfile_per_bfd_storage): Add ctor. Make
9964 'storage_obstack' field an auto_obstack. In-class initialize all
9965 non-bitfield fields. Make minsyms_read bool.
9966 * symfile.c (read_symbols): Adjust.
9967
9968 2017-06-27 Alan Hayward <alan.hayward@arm.com>
9969
9970 * remote-sim.c (gdbsim_fetch_register): Use byte_vector.
9971 (gdbsim_store_register): Likewise.
9972
9973 2017-06-27 Pedro Alves <palves@redhat.com>
9974
9975 * c-exp.y (name_obstack): Now an auto_obstack.
9976 (yylex): Use auto_obstack::clear.
9977 (c_parse): Use auto_obstack::clear instead of reinitializing and
9978 freeing the obstack.
9979 * c-lang.c (evaluate_subexp_c): Use auto_obstack.
9980 * d-exp.y (name_obstack): Now an auto_obstack.
9981 (yylex): Use auto_obstack::clear.
9982 (d_parse): Use auto_obstack::clear instead of reinitializing and
9983 freeing the obstack.
9984 * dwarf2loc.c (fetch_const_value_from_synthetic_pointer): Use
9985 auto_obstack.
9986 * dwarf2read.c (create_addrmap_from_index)
9987 (dwarf2_build_psymtabs_hard)
9988 (update_enumeration_type_from_children): Likewise.
9989 * gdb_obstack.h (auto_obstack): New type.
9990 * go-exp.y (name_obstack): Now an auto_obstack.
9991 (build_packaged_name): Use auto_obstack::clear.
9992 (go_parse): Use auto_obstack::clear instead of reinitializing and
9993 freeing the obstack.
9994 * linux-tdep.c (linux_make_mappings_corefile_notes): Use
9995 auto_obstack.
9996 * printcmd.c (printf_wide_c_string, ui_printf): Use auto_obstack.
9997 * rust-exp.y (work_obstack): Now an auto_obstack.
9998 (rust_parse, rust_lex_tests): Use auto_obstack::clear instead of
9999 reinitializing and freeing the obstack.
10000 * utils.c (do_obstack_free, make_cleanup_obstack_free): Delete.
10001 (host_char_to_target): Use auto_obstack.
10002 * utils.h (make_cleanup_obstack_free): Delete declaration.
10003 * valprint.c (generic_emit_char, generic_printstr): Use
10004 auto_obstack.
10005
10006 2017-06-27 Simon Marchi <simon.marchi@ericsson.com>
10007
10008 * darwin-nat.c (darwin_check_new_threads): Don't handle dummy
10009 thread.
10010 (darwin_init_thread_list): Don't update dummy thread.
10011 (darwin_create_inferior, darwin_attach): Don't add a dummy thread.
10012
10013 2017-06-26 Simon Marchi <simon.marchi@ericsson.com>
10014
10015 * record-full.c (netorder16): Remove.
10016
10017 2017-06-26 Simon Marchi <simon.marchi@ericsson.com>
10018
10019 * common/diagnostics.h: Define macros for GCC.
10020 (DIAGNOSTIC_IGNORE_UNUSED_FUNCTION): New macro.
10021 * common/vec.h: Include diagnostics.h.
10022 (DIAGNOSTIC_IGNORE_UNUSED_VEC_FUNCTION): New macro.
10023 (DEF_VEC_I, DEF_VEC_P, DEF_VEC_O): Ignore -Wunused-function
10024 warning.
10025
10026 2017-06-26 Simon Marchi <simon.marchi@ericsson.com>
10027
10028 * common/diagnostics.h (DIAGNOSTIC_IGNORE_DEPRECATED_REGISTER):
10029 New macro.
10030 * ada-lex.l: Ignore deprecated register warnings.
10031
10032 2017-06-25 Simon Marchi <simon.marchi@ericsson.com>
10033
10034 * main.c (get_init_files): Replace "SYSTEM_GDBINIT +
10035 datadir_len" with "&SYSTEM_GDBINIT[datadir_len]".
10036
10037 2017-06-25 Simon Marchi <simon.marchi@ericsson.com>
10038
10039 * dtrace-probe.c (dtrace_process_dof_probe): Put semi-colon on
10040 its own line.
10041
10042 2017-06-25 Simon Marchi <simon.marchi@ericsson.com>
10043
10044 * nat/x86-dregs.c (x86_show_dr): Print registers one per line.
10045
10046 2017-06-23 Alan Hayward <alan.hayward@arm.com>
10047
10048 * xtensa-tdep.c (XTENSA_MAX_REGISTER_SIZE): Add.
10049 (xtensa_register_write_masked): Use XTENSA_MAX_REGISTER_SIZE.
10050 (xtensa_register_read_masked): Likewise.
10051
10052 2017-06-22 Sergio Durigan Junior <sergiodj@redhat.com>
10053
10054 * common/environ.c (gdb_environ::unset): Update comment.
10055
10056 2017-06-22 Alan Hayward <alan.hayward@arm.com>
10057
10058 * python/py-unwind.c (pyuw_sniffer): Allocate space for
10059 registers.
10060
10061 2017-06-22 Alan Hayward <alan.hayward@arm.com>
10062
10063 * record-full.c (record_full_exec_insn): Use byte_vector.
10064
10065 2017-06-22 Yao Qi <yao.qi@linaro.org>
10066
10067 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Regenerated.
10068 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
10069
10070 2017-06-22 Alan Hayward <alan.hayward@arm.com>
10071
10072 * remote.c (cached_reg): Move from here...
10073 * regcache.h (cached_reg): ...to here.
10074 * python/py-unwind.c (struct reg_info): Remove.
10075 (cached_frame_info): Use cached_reg_t.
10076 (pyuw_prev_register): Likewise.
10077 (pyuw_sniffer): Use cached_reg_t and allocate registers.
10078 (pyuw_dealloc_cache): Free all registers.
10079
10080 2017-06-22 Pedro Alves <palves@redhat.com>
10081 Simon Marchi <simon.marchi@ericsson.com>
10082
10083 * unittests/environ-selftests.c (run_tests): Ignore -Wself-move
10084 warning.
10085 * common/diagnostics.h: New file.
10086
10087 2017-06-22 Pedro Alves <palves@redhat.com>
10088
10089 * common/agent.h: Add include guards.
10090
10091 2017-06-21 Simon Marchi <simon.marchi@ericsson.com>
10092
10093 * target.h (struct target_ops) <to_xfer_partial>: Update doc to
10094 talk about addressable units instead of bytes.
10095
10096 2017-06-20 Sergio Durigan Junior <sergiodj@redhat.com>
10097
10098 * common/environ.c (gdb_environ::unset): Use '::iterator' instead
10099 of '::const_iterator'.
10100
10101 2017-06-20 Sergio Durigan Junior <sergiodj@redhat.com>
10102
10103 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
10104 'unittests/environ-selftests.c'.
10105 (SUBDIR_UNITTESTS_OBS): Add 'environ-selftests.o'.
10106 * charset.c (find_charset_names): Declare object 'iconv_env'.
10107 Update code to use 'iconv_env' object. Remove call to
10108 'free_environ'.
10109 * common/environ.c: Include <utility>.
10110 (make_environ): Delete function.
10111 (free_environ): Delete function.
10112 (gdb_environ::clear): New function.
10113 (gdb_environ::operator=): New function.
10114 (gdb_environ::get): Likewise.
10115 (environ_vector): Delete function.
10116 (set_in_environ): Delete function.
10117 (gdb_environ::set): New function.
10118 (unset_in_environ): Delete function.
10119 (gdb_environ::unset): New function.
10120 (gdb_environ::envp): Likewise.
10121 * common/environ.h: Include <vector>.
10122 (struct gdb_environ): Delete; transform into...
10123 (class gdb_environ): ... this class.
10124 (free_environ): Delete prototype.
10125 (init_environ, get_in_environ, set_in_environ, unset_in_environ,
10126 environ_vector): Likewise.
10127 * infcmd.c (run_command_1): Update code to call
10128 'envp' from 'gdb_environ' class.
10129 (environment_info): Update code to call methods from 'gdb_environ'
10130 class.
10131 (unset_environment_command): Likewise.
10132 (path_info): Likewise.
10133 (path_command): Likewise.
10134 * inferior.c (inferior::~inferior): Delete call to 'free_environ'.
10135 (inferior::inferior): Initialize 'environment' using the host's
10136 information.
10137 * inferior.h: Remove forward declaration of 'struct gdb_environ'.
10138 Include "environ.h".
10139 (class inferior) <environment>: Change type from 'struct
10140 gdb_environ' to 'gdb_environ'.
10141 * mi/mi-cmd-env.c (mi_cmd_env_path): Update code to call
10142 methods from 'gdb_environ' class.
10143 * solib.c (solib_find_1): Likewise
10144 * unittests/environ-selftests.c: New file.
10145
10146 2017-06-20 Yao Qi <yao.qi@linaro.org>
10147
10148 * features/i386/i386-linux.xml: Exchange the order of including
10149 32bit-linux.xml and 32bit-sse.xml.
10150 * features/i386/i386-linux.c: Regenerated.
10151
10152 2017-06-20 Yao Qi <yao.qi@linaro.org>
10153
10154 * target-descriptions.c (tdesc_reg): Add ctor, dtor.
10155 Delete copy ctor and assignment operator.
10156 (tdesc_type): Likewise.
10157 (tdesc_feature): Likewise.
10158 (tdesc_free_reg): Remove.
10159 (tdesc_create_reg): Use new.
10160 (tdesc_free_type): Remove.
10161 (tdesc_create_vector): Use new.
10162 (tdesc_create_union): Likewise.
10163 (tdesc_create_flags): Likewise.
10164 (tdesc_create_enum): Likewise.
10165 (tdesc_free_feature): Delete.
10166 (free_target_description): Use delete.
10167
10168 2017-06-19 John Baldwin <jhb@FreeBSD.org>
10169
10170 * mips-tdep.c (print_gp_register_row): Don't error for unavailable
10171 registers.
10172
10173 2017-06-19 Pedro Alves <palves@redhat.com>
10174
10175 * dwarf2read.c (write_psymtabs_to_index): Construct file_closer
10176 after gdb::unlinker.
10177
10178 2017-06-19 Sergio Durigan Junior <sergiodj@redhat.com>
10179
10180 * mi/mi-cm-env.c (_initialize_mi_cmd_env): Use getenv instead of
10181 gdb_environ to access an environment variable.
10182
10183 2017-06-18 Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10184
10185 * nat/linux-ptrace.c (linux_fork_to_function): Add cast to
10186 gdb_byte*.
10187
10188 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
10189
10190 * nat/fork-inferior.h (trace_start_error): Add ATTRIBUTE_PRINTF.
10191
10192 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
10193
10194 * configure: Re-generate.
10195 * warning.m4 (build_warnings): Add -Wno-mismatched-tags.
10196
10197 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
10198
10199 * configure: Re-generate.
10200 * warning.m4: Pass -Werror to compiler when checking for
10201 supported warning flags.
10202
10203 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
10204
10205 * Makefile.in (COMPILE.pre): Add "-x c++".
10206
10207 2017-06-16 Alan Hayward <alan.hayward@arm.com>
10208 Pedro Alves <palves@redhat.com>
10209 Yao Qi <yao.qi@linaro.org>
10210
10211 * defs.h (RequireLongest): New.
10212 (extract_integer): Declare function template.
10213 (extract_signed_integer): Remove the declaration, but define it
10214 static inline.
10215 (extract_unsigned_integer): Likewise.
10216 (store_integer): Declare function template.
10217 (store_signed_integer): Remove the declaration, but define it
10218 static inline.
10219 (store_unsigned_integer): Likewise.
10220 * findvar.c (extract_integer): New function template.
10221 (extract_signed_integer): Remove.
10222 (extract_unsigned_integer): Remove.
10223 (extract_integer<LONGEST>, extract_integer<ULONGEST>): Explicit
10224 instantiations.
10225 (store_integer): New function template.
10226 (store_signed_integer): Remove.
10227 (store_unsigned_integer): Remove.
10228 (store_integer): Explicit instantiations.
10229 * regcache.c (regcache_raw_read_signed): Update.
10230 (regcache::raw_read): New function.
10231 (regcache::raw_read_signed): Remove.
10232 (regcache::raw_read_unsigned): Remove.
10233 (regcache_raw_read_unsigned): Update.
10234 (regcache_raw_write_unsigned): Update.
10235 (regcache::raw_write_signed): Remove.
10236 (regcache::raw_write): New function.
10237 (regcache_cooked_read_signed): Update.
10238 (regcache::raw_write_unsigned): Remove.
10239 (regcache::cooked_read_signed): Remove.
10240 (regcache_cooked_read_unsigned): Update.
10241 (regcache::cooked_read_unsigned): Remove.
10242 (regcache_cooked_write_signed): Update.
10243 (regcache_cooked_write_unsigned): Update.
10244 * regcache.h (regcache) <raw_read_signed>: Remove.
10245 <raw_write_signed, raw_read_unsigned, raw_write_unsigned>: Remove.
10246 <raw_read, raw_write>: New.
10247 <cooked_read_signed, cooked_write_signed>: Remove.
10248 <cooked_write_unsigned, cooked_read_unsigned>: Remove.
10249 <cooked_read, cooked_write>: New.
10250 * sh64-tdep.c (sh64_pseudo_register_read): Update.
10251 (sh64_pseudo_register_write): Update.
10252
10253 2017-06-16 Anton Kolesov <anton.kolesov@synopsys.com>
10254
10255 * arc-tdep.c (arc_disassembler_options): New variable.
10256 (arc_gdbarch_init): Set and use it. Use arc_delayed_print_insn instead
10257 of default_print_insn.
10258 (arc_delayed_print_insn): Set info->section when needed,
10259 use default_print_insn to retrieve a disassembler.
10260
10261 2017-06-14 Sergio Durigan Junior <sergiodj@redhat.com>
10262
10263 PR gdb/21574
10264 * infcmd.c (_initialize_infcmd): Expand "help run" documentation
10265 to mention $SHELL and startup-with-shell.
10266
10267 2017-06-14 Max Filippov <jcmvbkbc@gmail.com>
10268
10269 * MAINTAINERS: Move Maxim Grigoriev to the Past Maintainers.
10270
10271 2017-06-14 Yao Qi <yao.qi@linaro.org>
10272
10273 * aarch64-tdep.c (aarch64_gdb_print_insn): Call
10274 default_print_insn instead of print_insn_aarch64.
10275 * arm-tdep.c (gdb_print_insn_arm): Call
10276 default_print_insn instead of print_insn_big_arm
10277 and print_insn_little_arm.
10278 * i386-tdep.c (i386_print_insn): Call default_print_insn
10279 instead of print_insn_i386.
10280 * ia64-tdep.c (ia64_print_insn): Call
10281 default_print_insn instead of print_insn_ia64.
10282 * mips-tdep.c (gdb_print_insn_mips): Call
10283 default_print_insn instead of print_insn_big_mips
10284 and print_insn_little_mips.
10285 * spu-tdep.c (gdb_print_insn_spu): Call default_print_insn
10286 instead of print_insn_spu.
10287
10288 2017-06-14 Pedro Alves <palves@redhat.com>
10289
10290 * ada-lang.c: Include "common/byte-vector.h".
10291 (ada_value_primitive_packed_val): Use gdb::byte_vector.
10292 * charset.c (wchar_iterator::iterate): Resize the vector instead
10293 of reserving it.
10294 * common/byte-vector.h: Include "common/def-vector.h".
10295 (wchar_iterator::m_out): Now a gdb::def_vector<gdb_wchar_t>.
10296 * cli/cli-dump.c: Include "common/byte-vector.h".
10297 (dump_memory_to_file, restore_binary_file): Use gdb::byte_vector.
10298 * common/byte-vector.h: New file.
10299 * common/def-vector.h: New file.
10300 * common/default-init-alloc.h: New file.
10301 * dwarf2loc.c: Include "common/byte-vector.h".
10302 (rw_pieced_value): Use gdb::byte_vector, and resize the vector
10303 instead of reserving it.
10304 * dwarf2read.c: Include "common/byte-vector.h".
10305 (data_buf::m_vec): Now a gdb::byte_vector.
10306 * gdb_regex.c: Include "common/def-vector.h".
10307 (compiled_regex::compiled_regex): Use gdb::def_vector<char>.
10308 * mi/mi-main.c: Include "common/byte-vector.h".
10309 (mi_cmd_data_read_memory): Use gdb::byte_vector.
10310 * printcmd.c: Include "common/byte-vector.h".
10311 (print_scalar_formatted): Use gdb::byte_vector.
10312 * valprint.c: Include "common/byte-vector.h".
10313 (maybe_negate_by_bytes, print_decimal_chars): Use
10314 gdb::byte_vector.
10315
10316 2017-06-13 Simon Marchi <simon.marchi@ericsson.com>
10317
10318 * darwin-nat.c: Include "nat/fork-inferior.h".
10319
10320 2017-06-13 Simon Marchi <simon.marchi@ericsson.com>
10321
10322 * configure.nat: Factor out Darwin bits that are not
10323 architecture-specific. Add fork-inferior.o.
10324
10325 2017-06-13 Simon Marchi <simon.marchi@ericsson.com>
10326
10327 * configure.nat: Factor out AIX bits that are not
10328 architecture-specific. Add fork-inferior.o.
10329
10330 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10331
10332 * dwarf2loc.c (rw_pieced_value): New. Merge logic from...
10333 (read_pieced_value, write_pieced_value): ...here. Reduce to
10334 wrappers that just call rw_pieced_value.
10335
10336 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10337
10338 * dwarf2loc.c (write_pieced_value): When writing the data for a
10339 memory piece, use write_memory_with_notification instead of
10340 write_memory.
10341
10342 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10343
10344 * valops.c (read_value_memory): Change embedded_offset to
10345 represent a bit offset instead of a byte offset.
10346 * value.h (read_value_memory): Adjust comment.
10347
10348 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10349
10350 * dwarf2loc.c (read_pieced_value): Remove unnecessary variables
10351 dest_offset_bits and source_offset_bits.
10352 (write_pieced_value): Likewise.
10353
10354 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10355
10356 * dwarf2loc.c (read_pieced_value): Respect the piece offset, as
10357 given by DW_OP_bit_piece.
10358 (write_pieced_value): Likewise.
10359
10360 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10361
10362 * dwarf2loc.c (read_pieced_value): Move the buffer allocation and
10363 some other preparations to the places where sufficient information
10364 is available.
10365 (write_pieced_value): Likewise.
10366
10367 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10368
10369 * dwarf2loc.c (bits_to_bytes): New function.
10370 (read_pieced_value): Fix offset calculations for register pieces
10371 on big-endian targets.
10372 (write_pieced_value): Likewise.
10373
10374 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10375
10376 * dwarf2loc.c (read_pieced_value): Remove buffer_size variable.
10377 (write_pieced_value): Likewise.
10378
10379 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10380
10381 * dwarf2loc.c (write_pieced_value): When writing to a bit-field,
10382 transfer the source value's least significant bits, instead of its
10383 lowest-addressed ones. Rename type_len to max_offset.
10384 (read_pieced_value): Mirror above changes to write_pieced_value as
10385 applicable.
10386
10387 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10388
10389 * dwarf2loc.c (write_pieced_value): In DWARF_VALUE_MEMORY,
10390 truncate full bytes from dest_offset_bits before using it as an
10391 offset into the buffer.
10392
10393 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10394
10395 * dwarf2loc.c (write_pieced_value): Include transfer size in
10396 byte-wise check.
10397
10398 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10399
10400 * dwarf2loc.c (write_pieced_value): Fix copy/paste error in the
10401 calculation of this_size.
10402
10403 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10404
10405 * dwarf2loc.c (read_pieced_value): Respect parent value's offset
10406 when targeting a bit-field.
10407 (write_pieced_value): Likewise.
10408
10409 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10410
10411 * dwarf2loc.c (struct piece_closure) <addr_size>: Remove field.
10412 (allocate_piece_closure): Drop addr_size parameter.
10413 (dwarf2_evaluate_loc_desc_full): Adjust call to
10414 allocate_piece_closure.
10415
10416 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10417
10418 PR gdb/21226
10419 * dwarf2loc.c (read_pieced_value): Anchor stack value pieces at
10420 the LSB end, independent of endianness.
10421
10422 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
10423
10424 * dwarf2loc.c (write_pieced_value): Fix order of calculations for
10425 size capping.
10426
10427 2017-06-13 Yao Qi <yao.qi@linaro.org>
10428
10429 * mips-linux-nat.c: Move include features/mips*-linux.c to
10430 mips-linux-tdep.c.
10431 (_initialize_mips_linux_nat): Move initialize_tdesc_mips* calls
10432 to mips-linux-tdep.c.
10433 * mips-linux-tdep.c: Include features/mips*-linux.c
10434 (_initialize_mips_linux_tdep): Call initialize_tdesc_mips*
10435 functions.
10436 * mips-linux-tdep.h (tdesc_mips_linux): Declare.
10437 (tdesc_mips_dsp_linux, tdesc_mips64_linux): Declare.
10438 (tdesc_mips64_dsp_linux): Declare.
10439
10440 2017-06-12 Tom Tromey <tom@tromey.com>
10441
10442 * valprint.h (val_print_type_code_int): Remove.
10443 * valprint.c (generic_val_print_int): Always call
10444 val_print_scalar_formatted.
10445 (val_print_type_code_int): Remove.
10446 * printcmd.c (print_scalar_formatted): Handle options->format==0.
10447 * f-valprint.c (f_val_print): Use val_print_scalar_formatted.
10448 * c-valprint.c (c_val_print_int): Use val_print_scalar_formatted.
10449 * ada-valprint.c (ada_val_print_num): Use
10450 val_print_scalar_formatted.
10451
10452 2017-06-12 Tom Tromey <tom@tromey.com>
10453
10454 * printcmd.c (print_scalar_formatted): Unify the two switches.
10455 Don't convert scalars to LONGEST.
10456
10457 2017-06-12 Tom Tromey <tom@tromey.com>
10458
10459 PR exp/16225:
10460 * valprint.h (print_decimal_chars): Update.
10461 * valprint.c (maybe_negate_by_bytes): New function.
10462 (print_decimal_chars): Add "is_signed" argument.
10463 * printcmd.c (print_scalar_formatted): Update.
10464
10465 2017-06-12 Tom Tromey <tom@tromey.com>
10466
10467 PR exp/16225:
10468 * valprint.h (print_binary_chars, print_hex_chars): Update.
10469 * valprint.c (val_print_type_code_int): Update.
10470 (print_binary_chars): Add "zero_pad" argument.
10471 (emit_octal_digit): New function.
10472 (print_octal_chars): Don't zero-pad.
10473 (print_decimal_chars): Likewise.
10474 (print_hex_chars): Add "zero_pad" argument.
10475 * sh64-tdep.c (sh64_do_fp_register): Update.
10476 * regcache.c (regcache::dump): Update.
10477 * printcmd.c (print_scalar_formatted): Update.
10478 * infcmd.c (default_print_one_register_info): Update.
10479
10480 2017-06-12 Pedro Alves <palves@redhat.com>
10481 Alan Hayward <alan.hayward@arm.com>
10482
10483 * mips-tdep.c (MAX_MIPS_ABI_REGSIZE): New.
10484 (mips_eabi_push_dummy_call): Rename local 'regsize' to
10485 'abi_regsize'. Rename local array 'valbuf' to 'ref_valbuf', and
10486 use MAX_MIPS_ABI_REGSIZE instead of MAX_REGISTER_SIZE to size it.
10487 Assert that abi_regsize bytes fit in 'ref_valbuf'.
10488
10489 2017-06-12 Pedro Alves <palves@redhat.com>
10490
10491 * dwarf2read.c (mapped_symtab::data): Now a vector of
10492 symtab_index_entry instead of vector of
10493 std::unique_ptr<symtab_index_entry>. All users adjusted to check
10494 whether an element's name is NULL instead of checking whether the
10495 element itself is NULL.
10496 (find_slot): Change return type. Adjust.
10497 (hash_expand, , add_index_entry, uniquify_cu_indices)
10498 (write_hash_table): Adjust.
10499
10500 2017-06-12 Pedro Alves <palves@redhat.com>
10501
10502 * dwarf2read.c (recursively_count_psymbols): New function.
10503 (write_psymtabs_to_index): Call it to compute number of psyms and
10504 pass estimate size of psyms_seen to unordered_set's ctor.
10505
10506 2017-06-12 Pedro Alves <palves@redhat.com>
10507
10508 * dwarf2read.c (write_hash_table): Check if key already exists
10509 before emplacing.
10510
10511 2017-06-12 Pedro Alves <palves@redhat.com>
10512
10513 * dwarf2read.c (data_buf::append_space): Rename to...
10514 (data_buf::grow): ... this, and make private. Adjust all callers.
10515 (data_buf::append_uint): New method.
10516 (add_address_entry, write_one_signatured_type)
10517 (write_psymtabs_to_index): Use it.
10518
10519 2017-06-12 Pedro Alves <palves@redhat.com>
10520
10521 * dwarf2read.c (file_write(FILE *, const void *, size_t)): Delete.
10522 (file_write (FILE *, const std::vector<Elem>&)): Delete.
10523 (data_buf::file_write): Call ::fwrite directly.
10524
10525 2017-06-12 Pedro Alves <palves@redhat.com>
10526
10527 * dwarf2read.c (uniquify_cu_indices): Use std::unique and
10528 std::vector::erase.
10529
10530 2017-06-12 Jan Kratochvil <jan.kratochvil@redhat.com>
10531
10532 Code cleanup: C++ify .gdb_index producer.
10533 * dwarf2read.c: Include <unordered_set> and <unordered_map>.
10534 (MAYBE_SWAP) [WORDS_BIGENDIAN]: Cast to offset_type.
10535 (struct strtab_entry, hash_strtab_entry, eq_strtab_entry)
10536 (create_strtab, add_string): Remove.
10537 (file_write, data_buf): New.
10538 (struct symtab_index_entry): Use std::vector for cu_indices.
10539 (struct mapped_symtab): Use std::vector for data.
10540 (hash_symtab_entry, eq_symtab_entry, delete_symtab_entry)
10541 (create_symbol_hash_table, create_mapped_symtab, cleanup_mapped_symtab):
10542 Remove.
10543 (find_slot): Change return type. Update it to the new data structures.
10544 (hash_expand, add_index_entry): Update it to the new data structures.
10545 (offset_type_compare): Remove.
10546 (uniquify_cu_indices): Update it to the new data structures.
10547 (c_str_view, c_str_view_hasher, vector_hasher): New.
10548 (add_indices_to_cpool): Remove.
10549 (write_hash_table): Update it to the new data structures.
10550 (struct psymtab_cu_index_map, hash_psymtab_cu_index)
10551 (eq_psymtab_cu_index): Remove.
10552 (psym_index_map): New typedef.
10553 (struct addrmap_index_data): Change addr_obstack pointer to data_buf
10554 reference and std::unordered_map for cu_index_htab.
10555 (add_address_entry, add_address_entry_worker, write_address_map)
10556 (write_psymbols): Update it to the new data structures.
10557 (write_obstack): Remove.
10558 (struct signatured_type_index_data): Change types_list to a data_buf
10559 reference and psyms_seen to a std::unordered_set reference.
10560 (write_one_signatured_type, recursively_write_psymbols)
10561 (write_psymtabs_to_index): Update it to the new data structures.
10562
10563 2017-06-11 Simon Marchi <simon.marchi@ericsson.com>
10564
10565 * NEWS (Changes since GDB 8.0): Announce {set,show} debug
10566 separate-debug-file commands.
10567 * symfile.h (separate_debug_file_debug): New global.
10568 * symfile.c (separate_debug_file_debug): New global.
10569 (separate_debug_file_exists, find_separate_debug_file): Add
10570 debug output.
10571 (_initialize_symfile): Add "set debug separate-debug-file"
10572 command.
10573 * build-id.c (build_id_to_debug_bfd,
10574 find_separate_debug_file_by_buildid): Add debug output.
10575
10576 2017-06-10 Simon Marchi <simon.marchi@polymtl.ca>
10577
10578 * gdbarch.sh (displaced_step_free_closure): Remove.
10579 * gdbarch.h, gdbarch.c: Re-generate.
10580 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't set
10581 displaced_step_free_closure.
10582 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
10583 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
10584 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
10585 * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
10586 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
10587 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
10588 * arch-utils.h (simple_displaced_step_free_closure): Remove.
10589 * arch-utils.c (simple_displaced_step_free_closure): Remove.
10590 * infrun.c (displaced_step_clear): Call xfree instead of
10591 gdbarch_displaced_step_free_closure.
10592
10593 2017-06-08 Sergio Durigan Junior <sergiodj@redhat.com>
10594
10595 * common/common-utils.c (stringify_argv): Check for "arg[0] !=
10596 NULL".
10597
10598 2017-06-08 Alan Hayward <alan.hayward@arm.com>
10599
10600 * mn10300-tdep.c (MN10300_MAX_REGISTER_SIZE): Add.
10601 (mn10300_extract_return_value): Use MN10300_MAX_REGISTER_SIZE.
10602 (mn10300_push_dummy_call): Likewise.
10603
10604 2017-06-08 Alan Hayward <alan.hayward@arm.com>
10605
10606 * mi/mi-main.c (register_changed_p): Use value_contents_eq.
10607
10608 2017-06-08 Alan Hayward <alan.hayward@arm.com>
10609
10610 * mi/mi-main.c (register_changed_p): Use cooked_read_value.
10611
10612 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
10613
10614 * NEWS (Changes since GDB 8.0): Announce that GDBserver is now
10615 able to start inferiors using a shell.
10616 (New remote packets): Announce new packet "QStartupWithShell".
10617 * remote.c: Add PACKET_QStartupWithShell.
10618 (extended_remote_create_inferior): Handle new
10619 PACKET_QStartupWithShell.
10620 (remote_protocol_features) <QStartupWithShell>: New entry for
10621 PACKET_QStartupWithShell.
10622 (_initialize_remote): Call "add_packet_config_cmd" for
10623 QStartupShell.
10624
10625 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
10626 Pedro Alves <palves@redhat.com>
10627
10628 * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-inferior.h"
10629 and "nat/fork-inferior.h".
10630 * common/common-inferior.h: New file, with contents from
10631 "gdb/inferior.h".
10632 * commom/common-utils.c: Include "common-utils.h".
10633 (stringify_argv): New function.
10634 * common/common-utils.h (stringify_argv): New prototype.
10635 * configure.nat: Add "fork-inferior.o" as a dependency for
10636 "*linux*", "fbsd*" and "nbsd*" hosts.
10637 * corefile.c (get_exec_file): Update comment.
10638 * darwin-nat.c (darwin_ptrace_him): Call "gdb_startup_inferior"
10639 instead of "startup_inferior".
10640 (darwin_create_inferior): Call "add_thread_silent" after
10641 "fork_inferior".
10642 * fork-child.c: Cleanup unnecessary includes.
10643 (SHELL_FILE): Move to "common/common-fork-child.c".
10644 (environ): Likewise.
10645 (exec_wrapper): Initialize.
10646 (get_exec_wrapper): New function.
10647 (breakup_args): Move to "common/common-fork-child.c"; rename to
10648 "breakup_args_for_exec".
10649 (escape_bang_in_quoted_argument): Move to
10650 "common/common-fork-child.c".
10651 (saved_ui): New variable.
10652 (prefork_hook): New function.
10653 (postfork_hook): Likewise.
10654 (postfork_child_hook): Likewise.
10655 (gdb_startup_inferior): Likewise.
10656 (fork_inferior): Move to "common/common-fork-child.c". Update
10657 function to support gdbserver.
10658 (startup_inferior): Likewise.
10659 * gdbcore.h (get_exec_file): Remove declaration.
10660 * gnu-nat.c (gnu_create_inferior): Call "gdb_startup_inferior"
10661 instead of "startup_inferior". Call "add_thread_silent" after
10662 "fork_inferior".
10663 * inf-ptrace.c: Include "nat/fork-inferior.h" and "utils.h".
10664 (inf_ptrace_create_inferior): Call "gdb_startup_inferior"
10665 instead of "startup_inferior". Call "add_thread_silent" after
10666 "fork_inferior".
10667 * inferior.h: Include "common-inferior.h".
10668 (trace_start_error): Move to "common/common-utils.h".
10669 (trace_start_error_with_name): Likewise.
10670 (fork_inferior): Move prototype to "nat/fork-inferior.h".
10671 (startup_inferior): Likewise.
10672 (gdb_startup_inferior): New prototype.
10673 * nat/fork-inferior.c: New file, with contents from "fork-child.c".
10674 * nat/fork-inferior.h: New file.
10675 * procfs.c (procfs_init_inferior): Call "gdb_startup_inferior"
10676 instead of "startup_inferior". Call "add_thread_silent" after
10677 "fork_inferior".
10678 * target.h (target_terminal_init): Move prototype to
10679 "target/target.h".
10680 (target_terminal_inferior): Likewise.
10681 (target_terminal_ours): Likewise.
10682 * target/target.h (target_terminal_init): New prototype, moved
10683 from "target.h".
10684 (target_terminal_inferior): Likewise.
10685 (target_terminal_ours): Likewise.
10686 * utils.c (gdb_flush_out_err): New function.
10687
10688 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
10689
10690 * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-gdbthread.h".
10691 * common/common-gdbthread.h: New file, with parts from
10692 "gdb/gdbthread.h".
10693 * gdbthread.h: Include "common-gdbthread.h".
10694 (switch_to_thread): Moved to "common/common-gdbthread.h".
10695
10696 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
10697
10698 * Makefile.in (SFILES): Add "common/job-control.c".
10699 (HFILES_NO_SRCDIR): Add "common/job-control.h".
10700 (COMMON_OBS): Add "job-control.o".
10701 * common/job-control.c: New file, with contents from
10702 "gdb/inflow.c".
10703 * common/job-control.h: New file, with contents from "terminal.h".
10704 * fork-child.c: Include "job-control.h".
10705 * inflow.c: Include "job-control.h".
10706 (gdb_setpgid): Move to "common/common-inflow.c".
10707 (_initialize_inflow): Move setting of "job_control" to
10708 "handle_job_control".
10709 * terminal.h (job_control): Moved to "common/common-terminal.h".
10710 (gdb_setpgid): Likewise.
10711 * top.c: Include "job_control.h".
10712 * utils.c: Likewise.
10713 (job_control): Moved to "job-control.c".
10714
10715 2017-06-07 Pedro Alves <palves@redhat.com>
10716
10717 * Makefile.in (SFILES): Add gdb_regex.c.
10718 (COMMON_OBS): Add gdb_regex.o.
10719 * ada-lang.c (ada_add_standard_exceptions)
10720 (ada_add_exceptions_from_frame, name_matches_regex)
10721 (ada_add_global_exceptions, ada_exceptions_list_1): Change regex
10722 parameter type to compiled_regex. Adjust.
10723 (ada_exceptions_list): Use compiled_regex.
10724 * break-catch-throw.c (exception_catchpoint::pattern): Now a
10725 std::unique_ptr<compiled_regex>.
10726 (exception_catchpoint::~exception_catchpoint): Remove regfree
10727 call.
10728 (check_status_exception_catchpoint): Adjust to use compiled_regex.
10729 (handle_gnu_v3_exceptions): Adjust to use compiled_regex.
10730 * breakpoint.c (solib_catchpoint::compiled): Now a
10731 std::unique_ptr<compiled_regex>.
10732 (solib_catchpoint::~solib_catchpoint): Remove regfree call.
10733 (check_status_catch_solib): Adjust to use compiled_regex.
10734 (add_solib_catchpoint): Adjust to use compiled_regex.
10735 * cli/cli-cmds.c (apropos_command): Use compiled_regex.
10736 * cli/cli-decode.c (apropos_cmd): Change regex parameter to
10737 compiled_regex reference. Adjust to use it.
10738 * cli/cli-decode.h: Remove struct re_pattern_buffer forward
10739 declaration. Include "gdb_regex.h".
10740 (apropos_cmd): Change regex parameter to compiled_regex reference.
10741 * gdb_regex.c: New file.
10742 * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Delete
10743 declarations.
10744 (class compiled_regex): New.
10745 * linux-tdep.c: Include "common/gdb_optional.h".
10746 (struct mapping_regexes): New, factored out from
10747 mapping_is_anonymous_p, and adjusted to use compiled_regex.
10748 (mapping_is_anonymous_p): Use mapping_regexes wrapped in a
10749 gdb::optional and remove cleanups. Adjust to compiled_regex.
10750 * probe.c: Include "common/gdb_optional.h".
10751 (collect_probes): Use compiled_regex and gdb::optional and remove
10752 cleanups.
10753 * skip.c: Include "common/gdb_optional.h".
10754 (skiplist_entry::compiled_function_regexp): Now a
10755 gdb::optional<compiled_regex>.
10756 (skiplist_entry::compiled_function_regexp_is_valid): Delete field.
10757 (free_skiplist_entry): Remove regfree call.
10758 (compile_skip_regexp, skip_rfunction_p): Adjust to use
10759 compiled_regex and gdb::optional.
10760 * symtab.c: Include "common/gdb_optional.h".
10761 (search_symbols): Use compiled_regex and gdb::optional.
10762 * utils.c (do_regfree_cleanup, make_regfree_cleanup)
10763 (get_regcomp_error, compile_rx_or_error): Delete. Some bits moved
10764 to gdb_regex.c.
10765
10766 2017-06-07 Alan Hayward <alan.hayward@arm.com>
10767
10768 * regcache.c (regcache::save): Avoid buffer use.
10769 (regcache::dump): Likewise.
10770
10771 2017-06-07 Alan Hayward <alan.hayward@arm.com>
10772
10773 * sh-tdep.c (sh_pseudo_register_read): Remove
10774 MAX_REGISTER_SIZE.
10775 (sh_pseudo_register_write): Likewise.
10776 * sh64-tdep.c (sh64_pseudo_register_read): Likewise.
10777 (sh64_pseudo_register_write): Likewise
10778
10779 2017-06-07 Alan Hayward <alan.hayward@arm.com>
10780
10781 * aarch64-tdep.c (aarch64_store_return_value): Use
10782 V_REGISTER_SIZE.
10783 (aarch64_pseudo_read_value): Likewise.
10784 (aarch64_pseudo_write): Likewise.
10785
10786 2017-06-06 Yao Qi <yao.qi@linaro.org>
10787
10788 * regformats/regdef.h (set_register_cache): Remove the
10789 declaration.
10790
10791 2017-06-06 Alan Hayward <alan.hayward@arm.com>
10792
10793 * frame.c (frame_unwind_register_signed): Use
10794 frame_unwind_register_value.
10795
10796 2017-06-06 Pedro Alves <palves@redhat.com>
10797
10798 PR breakpoints/21553
10799 * breakpoint.c (create_breakpoints_sal_default)
10800 (init_breakpoint_sal, create_breakpoint_sal): Use
10801 gdb::unique_xmalloc_ptr for string parameters.
10802 (create_breakpoint): Constify 'extra_string' and 'cond_string'
10803 parameters. Replace cleanups with gdb::unique_xmalloc_ptr.
10804 (base_breakpoint_create_breakpoints_sal)
10805 (bkpt_create_breakpoints_sal, tracepoint_create_breakpoints_sal)
10806 (strace_marker_create_breakpoints_sal)
10807 (create_breakpoints_sal_default): Use gdb::unique_xmalloc_ptr for
10808 string parameters.
10809 * breakpoint.h (breakpoint_ops::create_breakpoints_sal): Use
10810 gdb::unique_xmalloc_ptr for string parameters.
10811 (create_breakpoint): Constify 'extra_string' and 'cond_string'
10812 parameters.
10813
10814 2017-06-06 Alan Hayward <alan.hayward@arm.com>
10815
10816 * alpha-tdep.c (alpha_register_to_value): Use
10817 get_frame_register_value.
10818 (alpha_value_to_register): Use ALPHA_REGISTER_SIZE.
10819
10820 2017-06-06 Alan Hayward <alan.hayward@arm.com>
10821
10822 * ia64-tdep.c (IA64_MAX_FP_REGISTER_SIZE) Add.
10823 (ia64_register_to_value): Use IA64_MAX_FP_REGISTER_SIZE.
10824 (ia64_value_to_register): Likewise.
10825 (ia64_extract_return_value): Likewise.
10826 (ia64_store_return_value): Likewise.
10827 (ia64_push_dummy_call): Likewise.
10828
10829 2017-06-04 Joel Brobecker <brobecker@adacore.com>
10830
10831 GDB 8.0 released.
10832
10833 2017-06-03 Simon Marchi <simon.marchi@ericsson.com>
10834
10835 * x86-linux-nat.c (struct arch_lwp_info): Remove.
10836
10837 2017-06-03 Simon Marchi <simon.marchi@polymtl.ca>
10838
10839 * linux-nat.c (linux_nat_post_attach_wait): Remove FIRST
10840 parameter.
10841 (linux_nat_attach): Adjust call to linux_nat_post_attach_wait.
10842
10843 2017-06-02 Simon Marchi <simon.marchi@ericsson.com>
10844
10845 * event-loop.c (poll_timers): Unallocate timer using delete
10846 instead of xfree.
10847
10848 2017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
10849
10850 * breakpoint.h (struct breakpoint_ops) <dtor>: Remove.
10851 (struct breakpoint) <~breakpoint>: New.
10852 (struct watchpoint): Inherit from breakpoint.
10853 <~watchpoint>: New.
10854 <base>: Remove.
10855 (struct tracepoint): Inherit from breakpoint.
10856 <base>: Remove.
10857 * breakpoint.c (longjmp_breakpoint_ops): Remove.
10858 (struct longjmp_breakpoint): Inherit from breakpoint.
10859 <~longjmp_breakpoint>: New.
10860 <base>: Remove.
10861 (new_breakpoint_from_type): Remove casts.
10862 (watchpoint_in_thread_scope): Remove reference to base field.
10863 (watchpoint_del_at_next_stop): Likewise.
10864 (update_watchpoint): Likewise.
10865 (watchpoint_check): Likewise.
10866 (bpstat_check_watchpoint): Likewise.
10867 (set_longjmp_breakpoint): Likewise.
10868 (struct fork_catchpoint): Inherit from breakpoint.
10869 <base>: Remove.
10870 (struct solib_catchpoint): Inherit from breakpoint.
10871 <~solib_catchpoint>: New.
10872 <base>: Remove.
10873 (dtor_catch_solib): Change to ...
10874 (solib_catchpoint::~solib_catchpoint): ... this.
10875 (breakpoint_hit_catch_solib): Remove reference to base field.
10876 (add_solib_catchpoint): Likewise.
10877 (create_fork_vfork_event_catchpoint): Likewise.
10878 (struct exec_catchpoint): Inherit from breakpoint.
10879 <~exec_catchpoint>: New.
10880 <base>: Remove.
10881 (dtor_catch_exec): Change to ...
10882 (exec_catchpoint::~exec_catchpoint): ... this.
10883 (dtor_watchpoint): Change to ...
10884 (watchpoint::~watchpoint): ... this.
10885 (watch_command_1): Remove reference to base field.
10886 (catch_exec_command_1): Likewise.
10887 (base_breakpoint_dtor): Change to ...
10888 (breakpoint::~breakpoint): ... this.
10889 (base_breakpoint_ops): Remove dtor field value.
10890 (longjmp_bkpt_dtor): Change to ...
10891 (longjmp_breakpoint::~longjmp_breakpoint): ... this.
10892 (strace_marker_create_breakpoints_sal): Remove reference to base
10893 field.
10894 (delete_breakpoint): Don't manually call breakpoint destructor.
10895 (create_tracepoint_from_upload): Remove reference to base field.
10896 (trace_pass_set_count): Likewise.
10897 (initialize_breakpoint_ops): Don't initialize
10898 momentary_breakpoint_ops, don't set dtors.
10899 * ada-lang.c (struct ada_catchpoint): Inherit from breakpoint.
10900 <~ada_catchpoint>: New.
10901 <base>: Remove.
10902 (create_excep_cond_exprs): Remove reference to base field.
10903 (dtor_exception): Change to ...
10904 (ada_catchpoint::~ada_catchpoint): ... this.
10905 (dtor_catch_exception): Remove.
10906 (dtor_catch_exception_unhandled): Remove.
10907 (dtor_catch_assert): Remove.
10908 (create_ada_exception_catchpoint): Remove reference to base
10909 field.
10910 (initialize_ada_catchpoint_ops): Don't set dtors.
10911 * break-catch-sig.c (struct signal_catchpoint): Inherit from
10912 breakpoint.
10913 <~signal_catchpoint>: New.
10914 <base>: Remove.
10915 (signal_catchpoint_dtor): Change to ...
10916 (signal_catchpoint::~signal_catchpoint): ... this.
10917 (create_signal_catchpoint): Remove reference to base field.
10918 (initialize_signal_catchpoint_ops): Don't set dtor.
10919 * break-catch-syscall.c (struct syscall_catchpoint): Inherit
10920 from breakpoint.
10921 <~syscall_catchpoint>: New.
10922 <base>: Remove.
10923 (dtor_catch_syscall): Change to ...
10924 (syscall_catchpoint::~syscall_catchpoint): ... this.
10925 (create_syscall_event_catchpoint): Remove reference to base
10926 field.
10927 (initialize_syscall_catchpoint_ops): Don't set dtor.
10928 * break-catch-throw.c (struct exception_catchpoint): Inherit
10929 from breakpoint.
10930 <~exception_catchpoint>: New.
10931 <base>: Remove.
10932 (dtor_exception_catchpoint): Change to ...
10933 (exception_catchpoint::~exception_catchpoint): ... this.
10934 (handle_gnu_v3_exceptions): Remove reference to base field.
10935 (initialize_throw_catchpoint_ops): Don't set dtor.
10936 * ctf.c (ctf_get_traceframe_address): Remove reference to base
10937 field.
10938 * remote.c (remote_get_tracepoint_status): Likewise.
10939 * tracefile-tfile.c (tfile_get_traceframe_address): Likewise.
10940 * tracefile.c (tracefile_fetch_registers): Likewise.
10941 * tracepoint.c (actions_command): Likewise.
10942 (validate_actionline): Likewise.
10943 (tfind_1): Likewise.
10944 (get_traceframe_location): Likewise.
10945 (find_matching_tracepoint_location): Likewise.
10946 (parse_tracepoint_status): Likewise.
10947 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
10948
10949 2017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
10950
10951 * breakpoint.c (struct longjmp_breakpoint): New struct.
10952 (is_tracepoint_type): Change return type to bool.
10953 (is_longjmp_type): New function.
10954 (new_breakpoint_from_type): Handle longjmp kinds of breakpoints.
10955 (set_raw_breakpoint_without_location): Use
10956 new_breakpoint_from_type.
10957 (set_raw_breakpoint): Likewise.
10958
10959 2017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
10960
10961 * breakpoint.c (new_breakpoint_from_type): New function.
10962 (create_breakpoint_sal): Use new_breakpoint_from_type and
10963 unique_ptr.
10964 (create_breakpoint): Likewise.
10965
10966 2017-05-31 Simon Marchi <simon.marchi@ericsson.com>
10967
10968 * memattr.c (mem_info_command): Rename to ...
10969 (info_mem_command): ... this.
10970 (mem_enable_command): Rename to ...
10971 (enable_mem_command): ... this.
10972 (mem_disable_command): Rename to ...
10973 (disable_mem_command): ... this.
10974 (mem_delete_command): Rename to ...
10975 (delete_mem_command): ... this.
10976 (_initialize_mem): Adjust function names.
10977
10978 2017-05-31 Markus Metzger <markus.t.metzger@intel.com>
10979
10980 * btrace.c (handle_pt_insn_events): New.
10981 (ftrace_add_pt): Call handle_pt_insn_events. Rename ERRCODE into
10982 STATUS. Split into this and ...
10983 (handle_pt_insn_event_flags): ... this.
10984
10985 2017-05-31 Markus Metzger <markus.t.metzger@intel.com>
10986
10987 * configure.ac: Check for pt_insn_event, struct pt_insn.enabled,
10988 and struct pt_insn.resynced.
10989 * configure: Regenerated.
10990 * config.in: Regenerated.
10991
10992 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
10993
10994 * btrace.c (ftrace_find_call_by_number): New function.
10995 (ftrace_new_function): Store objects, not pointers.
10996 (ftrace_find_call_by_number, ftrace_new_return, ftrace_new_switch,
10997 ftrace_new_gap, ftrace_update_function,
10998 ftrace_compute_global_level_offset, btrace_stich_bts, btrace_clear,
10999 btrace_insn_get, btrace_insn_get_error, btrace_insn_end,
11000 btrace_insn_next, btrace_insn_prev, ptrace_find_insn_by_number,
11001 btrace_ends_with_single_insn, btrace_call_get): Account for
11002 btrace_thread_info::functions now storing objects.
11003 * btrace.h (struct btrace_thread_info): Add constructor.
11004 (struct btrace_thread_info) <functions>: Make std::vector.
11005 (struct btrace_thread_info) <prev, next, up, insn, errcode, flags):
11006 Initialize with default values.
11007 * record-btrace.c (record_btrace_frame_sniffer): Account for
11008 btrace_thread_info::functions now storing objects.
11009
11010 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
11011
11012 * btrace.c: Remove typedef bfun_s.
11013 (ftrace_new_gap): Directly add gaps to the list of gaps.
11014 (btrace_bridge_gaps, btrace_compute_ftrace_bts, pt_btrace_insn_flags,
11015 ftrace_add_pt, btrace_compute_ftrace_pt, btrace_compute_ftrace_1,
11016 btrace_finalize_ftrace, btrace_compute_ftrace): Use std::vector
11017 instead of gdb VEC.
11018
11019 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
11020
11021 * btrace.c (ftrace_fixup_caller, ftrace_new_return, ftrace_connect_bfun,
11022 ftrace_bridge_gap): Replace references to btrace_thread_info::segment
11023 with btrace_thread_info::next_segment and
11024 btrace_thread_info::prev_segment.
11025 * btrace.h: Remove struct btrace_func_link.
11026 (struct btrace_function): Replace pair of function segment pointers
11027 with pair of indices.
11028 * python/py-record-btrace.c (btpy_call_prev_sibling,
11029 btpy_call_next_sibling): Replace references to
11030 btrace_thread_info::segment with btrace_thread_info::next_segment and
11031 btrace_thread_info::prev_segment.
11032 * record-btrace.c (record_btrace_frame_this_id): Use
11033 btrace_find_call_by_number.
11034
11035 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
11036
11037 * btrace.c (ftrace_new_function, ftrace_fixup_level,
11038 ftrace_connect_bfun, ftrace_bridge_gap, btrace_bridge_gaps,
11039 btrace_insn_next, btrace_insn_prev): Remove references to
11040 btrace_thread_info::flow.
11041 * btrace.h (struct btrace_function): Remove FLOW.
11042
11043 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
11044
11045 * btrace.c (ftrace_find_call_by_number): New function.
11046 (ftrace_update_caller, ftrace_new_call, ftrace_new_tailcall,
11047 ftrace_get_caller, ftrace_find_call, ftrace_new_return,
11048 ftrace_match_backtrace, ftrace_connect_bfun, ftrace_connect_backtrace,
11049 ftrace_bridge_gap, btrace_bridge_gaps): Use btrace_function::up as an
11050 index.
11051 * btrace.h (struct btrace_function): Turn UP into an index.
11052 * python/py-record-btrace.c (btpy_call_up): Use btrace_function::up
11053 as an index.
11054 * record-btrace.c (record_btrace_frame_unwind_stop_reason,
11055 record_btrace_frame_prev_register, record_btrace_frame_sniffer,
11056 record_btrace_tailcall_frame_sniffe): Use btrace_find_call_by_number.
11057
11058 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
11059
11060 * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
11061 ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
11062 ftrace_update_function, ftrace_compute_global_level_offset,
11063 btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt,
11064 btrace_stitch_bts, btrace_fetch, btrace_clear, btrace_insn_number,
11065 btrace_insn_end, btrace_is_empty): Remove references to
11066 btrace_thread_info::begin and btrace_thread_info::end.
11067 * btrace.h (struct btrace_thread_info): Remove BEGIN and END.
11068 (struct btrace_thread_info) <functions>: Adjust comment.
11069 * record-btrace.c (record_btrace_start_replaying): Remove reference to
11070 btrace_thread_info::begin.
11071
11072 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
11073
11074 * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
11075 ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
11076 ftrace_update_function): Remove arguments that implicitly were always
11077 BTINFO->END.
11078 (btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt):
11079 Don't pass BTINFO->END.
11080
11081 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
11082
11083 * btrace.c: (btrace_insn_get, btrace_insn_get_error, btrace_insn_number,
11084 btrace_insn_begin, btrace_insn_end, btrace_insn_next, btrace_insn_prev,
11085 btrace_find_insn_by_number): Replace function segment pointer with
11086 index.
11087 (btrace_insn_cmp): Simplify.
11088 * btrace.h: (struct btrace_insn_iterator) Rename index to
11089 insn_index. Replace function segment pointer with index into function
11090 segment vector.
11091 * record-btrace.c (record_btrace_call_history): Replace function
11092 segment pointer use with index.
11093 (record_btrace_frame_sniffer): Retrieve function call segment through
11094 vector.
11095 (record_btrace_set_replay): Remove defunc't safety check.
11096
11097 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
11098
11099 * btrace.c (btrace_ends_with_single_insn): New function.
11100 (btrace_call_get, btrace_call_number, btrace_call_begin,
11101 btrace_call_end, btrace_call_next, btrace_call_prev,
11102 btrace_find_call_by_number): Use index into call segment vector
11103 instead of pointer.
11104 (btrace_call_cmp): Simplify.
11105 * btrace.h (struct btrace_call_iterator): Replace function call segment
11106 pointer with index into vector.
11107 * record-btrace.c (record_btrace_call_history): Use index instead of
11108 pointer.
11109
11110 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
11111
11112 * btrace.c (btrace_insn_begin, btrace_insn_end,
11113 btrace_find_insn_by_number): Add btinfo to iterator.
11114 * btrace.h (struct btrace_insn_iterator): Add btinfo.
11115
11116 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
11117
11118 * btrace.c (ftrace_new_function): Add btrace_thread_info to arguments
11119 and save pointers directly.
11120 (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return,
11121 ftrace_new_switch, ftrace_new_gap, ftrace_update_function,
11122 ftrace_add_pt): Add btrace_thread_info to arguments. Adjust for
11123 changed signature of functions.
11124 (btrace_compute_ftrace_pt): Adjust for changed signature of functions.
11125 (btrace_fetch): Remove code that adds btrace_function pointers to
11126 vector of btrace_functions.
11127 (btrace_clear): Simplify freeing vector of btrace_functions.
11128
11129 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
11130
11131 * btrace.c (btrace_fetch, btrace_clear, btrace_find_insn_by_number):
11132 Replace VEC_* with std::vector functions.
11133 * btrace.h: Add include: vector. Remove typedef for DEF_VEC_P.
11134 (struct btrace_thread_info)<functions>: Change type to std::vector.
11135
11136 2017-05-30 Simon Marchi <simon.marchi@ericsson.com>
11137
11138 * NEWS (Changes in GDB 8.0): Remove extra empty line. Move
11139 "Removed targets and native configurations" up. Merge duplicate
11140 "New commands" sub-sections. Add "New options" sub-sections.
11141
11142 2017-05-26 Alan Hayward <alan.hayward@arm.com>
11143
11144 * defs.h (copy_integer_to_size): New declaration.
11145 * findvar.c (copy_integer_to_size): New function.
11146 (do_cint_test): New selftest function.
11147 (copy_integer_to_size_test): Likewise.
11148 (_initialize_findvar): Likewise.
11149 * mips-fbsd-tdep.c (mips_fbsd_supply_reg): Use raw_supply_integer.
11150 (mips_fbsd_collect_reg): Use raw_collect_integer.
11151 * mips-linux-tdep.c (supply_32bit_reg): Use raw_supply_integer.
11152 (mips64_fill_gregset): Use raw_collect_integer
11153 (mips64_fill_fpregset): Use raw_supply_integer.
11154 * regcache.c (regcache::raw_supply_integer): New function.
11155 (regcache::raw_collect_integer): Likewise.
11156 * regcache.h: (regcache::raw_supply_integer): New declaration.
11157 (regcache::raw_collect_integer): Likewise.
11158
11159 2017-05-24 Yao Qi <yao.qi@linaro.org>
11160
11161 * Makefile.in (SFILES): Add gdbarch-selftests.c.
11162 (COMMON_OBS): Add gdbarch-selftests.o.
11163 * frame.c [GDB_SELF_TESTS] (create_new_frame): New function.
11164 * frame.h [GDB_SELF_TESTS] (create_new_frame): Declare.
11165 * gdbarch-selftests.c: New file.
11166 * regcache.h (regcache) <~regcache>: Mark it virtual if
11167 GDB_SELF_TEST.
11168 <raw_write>: Likewise.
11169
11170 2017-05-24 Yao Qi <yao.qi@linaro.org>
11171
11172 * regcache.c (current_regcache): Change it to
11173 regcache::current_regcache.
11174 (regcache_observer_target_changed): Update.
11175 (regcache_thread_ptid_changed): Make it a regcache static
11176 method.
11177 (regcache_thread_ptid_changed): Update.
11178 (class regcache_access): New.
11179 (current_regcache_test): Update.
11180 (_initialize_regcache): Update.
11181 * regcache.h: Include forward_list.
11182 (regcache): Declare regcache_thread_ptid_changed and declare
11183 registers_changed_ptid as friend.
11184
11185 2017-05-24 Yao Qi <yao.qi@linaro.org>
11186
11187 * i387-tdep.c (i387_register_to_value): Use register_size
11188 instead of TYPE_LENGTH.
11189 * m68k-tdep.c (m68k_register_to_value): Likewise.
11190
11191 2017-05-24 Yao Qi <yao.qi@linaro.org>
11192
11193 * i387-tdep.c (i387_convert_register_p): Return false if type
11194 code isn't TYPE_CODE_FLT.
11195
11196 2017-05-24 Yao Qi <yao.qi@linaro.org>
11197
11198 * alpha-tdep.c (alpha_convert_register_p): Return true if type
11199 length is 4.
11200 (alpha_register_to_value): Remove type length check.
11201 (alpha_value_to_register): Likewise.
11202
11203 2017-05-24 Yao Qi <yao.qi@linaro.org>
11204
11205 * ia64-tdep.c (ia64_convert_register_p): Check type's code is
11206 TYPE_CODE_FLT.
11207
11208 2017-05-24 Yao Qi <yao.qi@linaro.org>
11209
11210 * m68k-tdep.c (m68k_convert_register_p): Check type's code is
11211 TYPE_CODE_FLT or not.
11212
11213 2017-05-24 Yao Qi <yao.qi@linaro.org>
11214
11215 * alpha-tdep.c (alpha_gdbarch_init): Use XCNEW instead of XNEW.
11216 * avr-tdep.c (avr_gdbarch_init): Likewise.
11217 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
11218 * cris-tdep.c (cris_gdbarch_init): Likewise.
11219 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
11220 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
11221 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
11222 * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
11223 * mep-tdep.c (mep_gdbarch_init): Likewise.
11224 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
11225 * mips-tdep.c (mips_gdbarch_init): Likewise.
11226 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
11227 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
11228 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
11229 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
11230 * v850-tdep.c (v850_gdbarch_init): Likewise.
11231
11232 2017-05-24 Yao Qi <yao.qi@linaro.org>
11233
11234 * selftest-arch.c (tests_with_arch): Call registers_changed
11235 and reinit_frame_cache.
11236 * selftest.c (run_self_tests): Likewise.
11237
11238 2017-05-24 Yao Qi <yao.qi@linaro.org>
11239
11240 * rs6000-tdep.c (gdb_print_insn_powerpc): Remove.
11241 (rs6000_gdbarch_init): Don't call set_gdbarch_print_insn.
11242
11243 2017-05-24 Yao Qi <yao.qi@linaro.org>
11244
11245 * rl78-tdep.c (rl78_gdbarch_init): Don't call
11246 set_gdbarch_print_insn.
11247
11248 2017-05-24 Yao Qi <yao.qi@linaro.org>
11249
11250 * h8300-tdep.c (h8300_gdbarch_init): Don't call
11251 set_gdbarch_print_insn.
11252
11253 2017-05-24 Yao Qi <yao.qi@linaro.org>
11254
11255 * alpha-tdep.c (alpha_gdbarch_init): Don't call
11256 set_gdbarch_print_insn.
11257 * arc-tdep.c (arc_gdbarch_init): Likewise.
11258 * arch-utils.c: include dis-asm.h.
11259 (default_print_insn): New function.
11260 * arch-utils.h (default_print_insn): Declare.
11261 * avr-tdep.c (avr_gdbarch_init): Don't call set_gdbarch_print_insn.
11262 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
11263 * cris-tdep.c (cris_delayed_get_disassembler): Remove.
11264 (cris_gdbarch_init): Don't call set_gdbarch_print_insn.
11265 * frv-tdep.c (frv_gdbarch_init): Likewise.
11266 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
11267 * gdbarch.sh (print_insn): Use default_print_insn.
11268 * gdbarch.c: Regenerated.
11269 * hppa-tdep.c (hppa_gdbarch_init): Likewise.
11270 * iq2000-tdep.c (iq2000_gdbarch_init): Likewise.
11271 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
11272 * m32c-tdep.c (m32c_gdbarch_init): Likewise.
11273 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
11274 * m68hc11-tdep.c (gdb_print_insn_m68hc11): Remove.
11275 (m68hc11_gdbarch_init): Don't call set_gdbarch_print_insn.
11276 * m68k-tdep.c (m68k_gdbarch_init): Likewise.
11277 * m88k-tdep.c (m88k_gdbarch_init): Likewise.
11278 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
11279 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
11280 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
11281 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
11282 * mt-tdep.c (mt_gdbarch_init): Likewise.
11283 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
11284 * nios2-tdep.c (nios2_print_insn): Remove.
11285 (nios2_gdbarch_init): Don't call set_gdbarch_print_insn.
11286 * rx-tdep.c (rx_gdbarch_init): Likewise.
11287 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
11288 * score-tdep.c (score_print_insn): Remove.
11289 (score_gdbarch_init): Don't call set_gdbarch_print_insn.
11290 * sh-tdep.c (sh_gdbarch_init): Likewise.
11291 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
11292 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
11293 * tic6x-tdep.c (tic6x_print_insn): Remove.
11294 (tic6x_gdbarch_init): Don't call set_gdbarch_print_insn.
11295 * tilegx-tdep.c (tilegx_gdbarch_init): Likewise.
11296 * v850-tdep.c (v850_gdbarch_init): Likewise.
11297 * vax-tdep.c (vax_gdbarch_init): Likewise.
11298 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
11299 * xtensa-tdep.c (xtensa_gdbarch_init): Likewise.
11300
11301 2017-05-23 John Baldwin <jhb@FreeBSD.org>
11302
11303 * mips-fbsd-tdep.c (MIPS_PC_REGNUM): Remove.
11304 (MIPS_FP0_REGNUM): Remove.
11305 (MIPS_FSR_REGNUM): Remove.
11306 (mips_fbsd_supply_fpregs): Use mips_regnum.
11307 (mips_fbsd_supply_gregs): Likewise.
11308 (mips_fbsd_collect_fpregs): Likewise.
11309 (mips_fbsd_collect_gregs): Likewise.
11310
11311 2017-05-23 John Baldwin <jhb@FreeBSD.org>
11312
11313 * mips-fbsd-nat.c (getregs_supplies): Fix upper bound comparison.
11314 (getpfpregs_supplies): New function.
11315 (mips_fbsd_fetch_inferior_registers): Remove early exit and use
11316 getfpregs_supplies.
11317 (mips_fbsd_store_inferior_registers): Likewise.
11318
11319 2017-05-22 Pedro Alves <palves@redhat.com>
11320
11321 * MAINTAINERS (Host/Native): Add John Baldwin as FreeBSD
11322 maintainer.
11323
11324 2017-05-22 Alan Hayward <alan.hayward@arm.com>
11325
11326 * ppc-linux-nat.c (fetch_register): Use PPC_MAX_REGISTER_SIZE.
11327 (store_register): Likewise.
11328 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Likewise.
11329 (get_decimal_float_return_value): Likewise.
11330 (do_ppc_sysv_return_value): Likewise.
11331 (ppc64_sysv_abi_push_integer): Likewise.
11332 (ppc64_sysv_abi_push_freg): Likewise.
11333 (ppc64_sysv_abi_return_value_base): Likewise.
11334 (ppc64_sysv_abi_return_value): Likewise.
11335 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Likewise.
11336 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Likewise.
11337 * rs6000-nat.c: Likewise.
11338 * rs6000-tdep.c (rs6000_register_to_value): Likewise.
11339 (rs6000_value_to_register): Likewise.
11340 * ppc-tdep.h (PPC_MAX_REGISTER_SIZE): Add.
11341
11342 2017-05-21 Tom Tromey <tom@tromey.com>
11343
11344 PR rust/21466:
11345 * rust-lang.c (rust_print_type) <TYPE_CODE_ARRAY>: Print unsized
11346 arrays as "[T]", not "[T; ]".
11347
11348 2017-05-19 Tom Tromey <tom@tromey.com>
11349
11350 PR rust/21484:
11351 * rust-lang.c (exp_descriptor_rust): New function.
11352 (rust_language_defn): Use it.
11353 * p-lang.c (pascal_language_defn): Update.
11354 * opencl-lang.c (opencl_language_defn): Update.
11355 * objc-lang.c (objc_language_defn): Update.
11356 * m2-lang.c (m2_language_defn): Update.
11357 * language.h (struct language_defn)
11358 <la_watch_location_expression>: New member.
11359 * language.c (unknown_language_defn, auto_language_defn)
11360 (local_language_defn): Update.
11361 * go-lang.c (go_language_defn): Update.
11362 * f-lang.c (f_language_defn): Update.
11363 * d-lang.c (d_language_defn): Update.
11364 * c-lang.h (c_watch_location_expression): Declare.
11365 * c-lang.c (c_watch_location_expression): New function.
11366 (c_language_defn, cplus_language_defn, asm_language_defn)
11367 (minimal_language_defn): Use it.
11368 * breakpoint.c (watch_command_1): Call
11369 la_watch_location_expression.
11370 * ada-lang.c (ada_language_defn): Update.
11371
11372 2017-05-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11373
11374 PR tui/21482
11375 * gdb_curses.h (NOMACROS): Define.
11376 (NCURSES_NOMACROS): Define.
11377
11378 2017-05-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11379
11380 PR tui/21482
11381 * tui/tui-windata.c (tui_erase_data_content): Cast last mvwaddstr
11382 arg to char *.
11383 * tui/tui-wingeneral.c (box_win): Likewise.
11384 * tui/tui-winsource.c (tui_erase_source_content): Likewise.
11385 (tui_show_source_line): Likewise.
11386 (tui_show_exec_info_content): Likewise.
11387
11388 2017-05-19 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
11389
11390 * sparc-tdep.c (sparc_structure_return_p)
11391 (sparc_arg_on_registers_p): New functions.
11392 (sparc32_store_arguments): Use them.
11393 * sparc64-tdep.c (sparc64_16_byte_align_p)
11394 (sparc64_store_floating_fields, sparc64_extract_floating_fields):
11395 Handle TYPE_CODE_ARRAY.
11396
11397 2017-05-17 Yao Qi <yao.qi@linaro.org>
11398
11399 * cli/cli-decode.c (add_alias_cmd): New function.
11400 * command.h (add_alias_cmd): Declare.
11401 * infcmd.c (_initialize_infcmd): Don't call add_com_alias,
11402 instead call add_alias_cmd.
11403
11404 2017-05-17 Pedro Alves <palves@redhat.com>
11405
11406 * Makefile.in (nat_extra_makefile_frag): Rename to ...
11407 (nat_makefile_frag): ... this. All references updated.
11408 * configure.ac: Likewise.
11409 * configure.nat: Likewise. Enhance comments.
11410 * configure: Regenerate.
11411
11412 2017-05-15 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11413
11414 * procfs.c (procfs_create_inferior): Change prototype to match
11415 definition.
11416
11417 2017-05-13 Eli Zaretskii <eliz@gnu.org>
11418
11419 * tui/tui.c (tui_enable): Cast "unknown" to 'char *' to avoid a
11420 C++ compiler warning.
11421
11422 2017-05-12 Tom Tromey <tom@tromey.com>
11423
11424 PR rust/21483:
11425 * rust-lang.c (rust_evaluate_subexp) <STRUCTOP_STRUCT>: Don't
11426 recurse, just call value_struct_elt directly.
11427
11428 2017-05-12 Tom Tromey <tom@tromey.com>
11429
11430 * rust-lang.c (rust_dump_subexp_body) <STRUCTOP_ANONYMOUS,
11431 OP_RUST_ARRAY>: Fix.
11432
11433 2017-05-12 Tom Tromey <tom@tromey.com>
11434
11435 * rust-lang.c (rust_print_subexp): Replace "return" with "break".
11436
11437 2017-05-09 Yao Qi <yao.qi@linaro.org>
11438
11439 * regcache.c: Include <forward_list>.
11440 (struct regcache_list): Remove.
11441 (current_regcache): Update.
11442 (get_thread_arch_aspace_regcache): Update for std::forward_list.
11443 (regcache_thread_ptid_changed): Likewise.
11444 (registers_changed_ptid): Likewise.
11445 (current_regcache_size): Likewise.
11446
11447 2017-05-09 Yao Qi <yao.qi@linaro.org>
11448
11449 * regcache.c [GDB_SELF_TEST]: Include selftest.h.
11450 (current_regcache_size): New function.
11451 (current_regcache_test): New function.
11452 (_initialize_regcache) [GDB_SELF_TEST]: Register the unit test.
11453
11454 2017-05-08 Alan Hayward <alan.hayward@arm.com>
11455
11456 * mips-tdep.c (mips_o32_return_value): Remove unused buffer.
11457 (print_gp_register_row): Use get_frame_register_value.
11458
11459 2017-05-08 Alan Hayward <alan.hayward@arm.com>
11460
11461 * mips-linux-tdep.c (mips_supply_gregset): Use raw_supply_zeroed.
11462 (mips_supply_fpregset): Likewise.
11463 (mips64_supply_gregset): Likewise.
11464
11465 2017-05-08 Alan Hayward <alan.hayward@arm.com>
11466
11467 * mn10300-linux-tdep.c (am33_supply_gregset_method): Use
11468 regcache->raw_supply_zeroed.
11469
11470 2017-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
11471
11472 * configure.nat: Rearrange 'case' statements to match
11473 host before cpu.
11474
11475 2017-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
11476
11477 * Makefile.in: Remove "@host_makefile_frag@". Add variables
11478 NAT_FILE, NATDEPFILES, NAT_CDEPS, LOADLIBES, MH_CFLAGS, XM_CLIBS,
11479 NAT_GENERATED_FILES, HAVE_NATIVE_GCORE_HOST. Add
11480 "@nat_extra_makefile_frag@".
11481 (Makefile): Remove dependency on "@frags@".
11482 ($(GNULIB_BUILDDIR)/Makefile): Likewise.
11483 (data-directory/Makefile): Likewise.
11484 * config/aarch64/linux.mh: Deleted; moved contents to
11485 "gdb/configure.nat".
11486 * config/alpha/alpha-linux.mh: Likewise.
11487 * config/alpha/nbsd.mh: Likewise.
11488 * config/arm/linux.mh: Likewise.
11489 * config/arm/nbsdelf.mh: Likewise.
11490 * config/i386/cygwin.mh: Likewise.
11491 * config/i386/cygwin64.mh: Likewise.
11492 * config/i386/darwin.mh: Likewise.
11493 * config/i386/fbsd.mh: Likewise.
11494 * config/i386/fbsd64.mh: Likewise.
11495 * config/i386/go32.mh: Likewise.
11496 * config/i386/i386gnu.mh: Likewise.
11497 * config/i386/i386sol2.mh: Likewise.
11498 * config/i386/linux.mh: Likewise.
11499 * config/i386/linux64.mh: Likewise.
11500 * config/i386/mingw.mh: Likewise.
11501 * config/i386/mingw64.mh: Likewise.
11502 * config/i386/nbsd64.mh: Likewise.
11503 * config/i386/nbsdelf.mh: Likewise.
11504 * config/i386/nto.mh: Likewise.
11505 * config/i386/obsd.mh: Likewise.
11506 * config/i386/obsd64.mh: Likewise.
11507 * config/i386/sol2-64.mh: Likewise.
11508 * config/ia64/linux.mh: Likewise.
11509 * config/m32r/linux.mh: Likewise.
11510 * config/m68k/linux.mh: Likewise.
11511 * config/m68k/nbsdelf.mh: Likewise.
11512 * config/m68k/obsd.mh: Likewise.
11513 * config/m88k/obsd.mh: Likewise.
11514 * config/mips/fbsd.mh: Likewise.
11515 * config/mips/linux.mh: Likewise.
11516 * config/mips/nbsd.mh: Likewise.
11517 * config/mips/obsd64.mh: Likewise.
11518 * config/pa/linux.mh: Likewise.
11519 * config/pa/nbsd.mh: Likewise.
11520 * config/pa/obsd.mh: Likewise.
11521 * config/powerpc/aix.mh: Likewise.
11522 * config/powerpc/fbsd.mh: Likewise.
11523 * config/powerpc/linux.mh: Likewise.
11524 * config/powerpc/nbsd.mh: Likewise.
11525 * config/powerpc/obsd.mh: Likewise.
11526 * config/powerpc/ppc64-linux.mh: Likewise.
11527 * config/powerpc/spu-linux.mh: Likewise.
11528 * config/s390/linux.mh: Likewise.
11529 * config/sh/nbsd.mh: Likewise.
11530 * config/sparc/fbsd.mh: Likewise.
11531 * config/sparc/linux.mh: Likewise.
11532 * config/sparc/linux64.mh: Likewise.
11533 * config/sparc/nbsd64.mh: Likewise.
11534 * config/sparc/nbsdelf.mh: Likewise.
11535 * config/sparc/obsd64.mh: Likewise.
11536 * config/sparc/sol2.mh: Likewise.
11537 * config/tilegx/linux.mh: Likewise.
11538 * config/vax/nbsdelf.mh: Likewise.
11539 * config/vax/obsd.mh: Likewise.
11540 * config/xtensa/linux.mh: Likewise.
11541 * config/i386/i386gnu.mn: New file, with excerpts from
11542 "config/i386/i386gnu.mh".
11543 * configure: Regenerate.
11544 * configure.ac: Rewrite code to use "gdb/configure.nat" instead of
11545 *.mh files under "gdb/config".
11546 * configure.nat: New file, with contents from the
11547 "gdb/config/*/*.mh" files.
11548
11549 2017-05-05 Tim Wiederhake <tim.wiederhake@intel.com>
11550
11551 * btrace.c (btrace_clear): Free insn vector.
11552
11553 2017-05-05 Pedro Alves <palves@redhat.com>
11554
11555 * warning.m4 (build_warnings): Add -Wno-error=maybe-uninitialized.
11556 * configure: Regenerate.
11557
11558 2017-05-04 Pedro Alves <palves@redhat.com>
11559
11560 * Makefile.in (SFILES): Add progspace-and-thread.c.
11561 (HFILES_NO_SRCDIR): Add progspace-and-thread.h.
11562 (COMMON_OBS): Add progspace-and-thread.o.
11563 * breakpoint.c: Include "progspace-and-thread.h".
11564 (update_inserted_breakpoint_locations)
11565 (insert_breakpoint_locations, create_longjmp_master_breakpoint):
11566 Use scoped_restore_current_pspace_and_thread.
11567 (create_std_terminate_master_breakpoint): Use
11568 scoped_restore_current_program_space.
11569 (remove_breakpoint): Use scoped_restore_current_pspace_and_thread.
11570 (print_breakpoint_location): Use
11571 scoped_restore_current_program_space.
11572 (bp_loc_is_permanent): Use
11573 scoped_restore_current_pspace_and_thread.
11574 (resolve_sal_pc): Use scoped_restore_current_pspace_and_thread.
11575 (download_tracepoint_locations): Use
11576 scoped_restore_current_pspace_and_thread.
11577 (breakpoint_re_set): Use scoped_restore_current_pspace_and_thread.
11578 * exec.c (exec_close_1): Use scoped_restore_current_program_space.
11579 (enum step_over_calls_kind): Moved from inferior.h.
11580 (class scoped_restore_current_thread): New class.
11581 * gdbthread.h (make_cleanup_restore_current_thread): Delete
11582 declaration.
11583 (scoped_restore_current_thread): New class.
11584 * infcmd.c: Include "common/gdb_optional.h".
11585 (continue_1, proceed_after_attach): Use
11586 scoped_restore_current_thread.
11587 (notice_new_inferior): Use scoped_restore_current_thread.
11588 * inferior.c: Include "progspace-and-thread.h".
11589 (restore_inferior, save_current_inferior): Delete.
11590 (add_inferior_command, clone_inferior_command): Use
11591 scoped_restore_current_pspace_and_thread.
11592 * inferior.h (scoped_restore_current_inferior): New class.
11593 * infrun.c: Include "progspace-and-thread.h" and
11594 "common/gdb_optional.h".
11595 (follow_fork_inferior): Use
11596 scoped_restore_current_pspace_and_thread.
11597 (scoped_restore_exited_inferior): New class.
11598 (handle_vfork_child_exec_or_exit): Use
11599 scoped_restore_exited_inferior,
11600 scoped_restore_current_pspace_and_thread,
11601 scoped_restore_current_thread and scoped_restore.
11602 (fetch_inferior_event): Use scoped_restore_current_thread.
11603 * linespec.c (decode_line_full, decode_line_1): Use
11604 scoped_restore_current_program_space.
11605 * mi/mi-main.c: Include "progspace-and-thread.h".
11606 (exec_continue): Use scoped_restore_current_thread.
11607 (mi_cmd_exec_run): Use scoped_restore_current_pspace_and_thread.
11608 (mi_cmd_trace_frame_collected): Use scoped_restore_current_thread.
11609 * proc-service.c (ps_pglobal_lookup): Use
11610 scoped_restore_current_program_space.
11611 * progspace-and-thread.c: New file.
11612 * progspace-and-thread.h: New file.
11613 * progspace.c (release_program_space, clone_program_space): Use
11614 scoped_restore_current_program_space.
11615 (restore_program_space, save_current_program_space)
11616 (save_current_space_and_thread): Delete.
11617 (switch_to_program_space_and_thread): Moved to
11618 progspace-and-thread.c.
11619 * progspace.h (save_current_program_space)
11620 (save_current_space_and_thread): Delete declarations.
11621 (scoped_restore_current_program_space): New class.
11622 * remote.c (remote_btrace_maybe_reopen): Use
11623 scoped_restore_current_thread.
11624 * symtab.c: Include "progspace-and-thread.h".
11625 (skip_prologue_sal): Use scoped_restore_current_pspace_and_thread.
11626 * thread.c (print_thread_info_1): Use
11627 scoped_restore_current_thread.
11628 (struct current_thread_cleanup): Delete.
11629 (do_restore_current_thread_cleanup)
11630 (restore_current_thread_cleanup_dtor): Rename/convert both to ...
11631 (scoped_restore_current_thread::~scoped_restore_current_thread):
11632 ... this new dtor.
11633 (make_cleanup_restore_current_thread): Rename/convert to ...
11634 (scoped_restore_current_thread::scoped_restore_current_thread):
11635 ... this new ctor.
11636 (thread_apply_all_command): Use scoped_restore_current_thread.
11637 (thread_apply_command): Use scoped_restore_current_thread.
11638 * tracepoint.c (tdump_command): Use scoped_restore_current_thread.
11639 * varobj.c (value_of_root_1): Use scoped_restore_current_thread.
11640
11641 2017-05-04 Pedro Alves <palves@redhat.com>
11642
11643 * thread.c (make_cleanup_restore_current_thread): Move
11644 find_thread_ptid call before the is_stopped call. Assert that the
11645 thread is found. Replace is_stopped call by checking the thread's
11646 state directly. Remove unnecessary NULL-thread check.
11647
11648 2017-05-04 Pedro Alves <palves@redhat.com>
11649
11650 * corelow.c (thread_section_name): New class.
11651 (get_core_register_section, get_core_siginfo): Use it.
11652
11653 2017-05-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
11654
11655 * corelow.c (sniff_core_bfd): Remove extra semicolon.
11656 (get_core_register_section): Remove xfree of NULL pointer.
11657
11658 2017-05-03 Alan Hayward <alan.hayward@arm.com>
11659
11660 * frv-linux-tdep.c (frv_linux_supply_gregset): Use raw_supply_zeroed.
11661 * regcache.c (regcache::raw_supply_zeroed): New function.
11662 * regcache.h (regcache::raw_supply_zeroed): New declaration.
11663
11664 2017-05-03 Simon Marchi <simon.marchi@ericsson.com>
11665
11666 * gdbarch.sh: Remove commented out definition of
11667 TARGET_CHAR_BIT.
11668 * gdbarch.h: Re-generate.
11669
11670 2017-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
11671
11672 * configure: Regenerate.
11673
11674 2017-05-02 Simon Marchi <simon.marchi@ericsson.com>
11675
11676 * solib-target.c (solib_target_relocate_section_addresses):
11677 Remove num_section_bases, num_bases, segment_bases variables.
11678
11679 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
11680
11681 * common/gdb_vecs.h (DEF_VEC_I (CORE_ADDR)): Remove.
11682
11683 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
11684
11685 * solib-target.c: Include <vector>
11686 (struct lm_info_target) <~lm_info_target>: Remove.
11687 <segment_bases, section_bases>: Change type to
11688 std::vector<CORE_ADDR>.
11689 (library_list_start_segment, library_list_start_section,
11690 library_list_end_library,
11691 solib_target_relocate_section_addresses): Adjust.
11692
11693 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
11694
11695 * gdbarch.sh (software_single_step): Change return type to
11696 std::vector<CORE_ADDR>.
11697 * gdbarch.c, gdbarch.h: Re-generate.
11698 * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
11699 Adjust.
11700 (arm_deal_with_atomic_sequence_raw): Adjust.
11701 (thumb_get_next_pcs_raw): Adjust.
11702 (arm_get_next_pcs_raw): Adjust.
11703 (arm_get_next_pcs): Adjust.
11704 * arch/arm-get-next-pcs.h (arm_get_next_pcs): Adjust.
11705 * aarch64-tdep.c (aarch64_software_single_step): Adjust.
11706 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Adjust.
11707 (alpha_software_single_step): Adjust.
11708 * alpha-tdep.h (alpha_software_single_step): Adjust.
11709 * arm-linux-tdep.c (arm_linux_software_single_step): Adjust.
11710 * arm-tdep.c (arm_software_single_step): Adjust.
11711 (arm_breakpoint_kind_from_current_state): Adjust.
11712 * arm-tdep.h (arm_software_single_step): Adjust.
11713 * breakpoint.c (insert_single_step_breakpoint): Adjust.
11714 * cris-tdep.c (cris_software_single_step): Adjust.
11715 * mips-tdep.c (mips_deal_with_atomic_sequence): Adjust.
11716 (micromips_deal_with_atomic_sequence): Adjust.
11717 (deal_with_atomic_sequence): Adjust.
11718 (mips_software_single_step): Adjust.
11719 * mips-tdep.h (mips_software_single_step): Adjust.
11720 * moxie-tdep.c (moxie_software_single_step): Adjust.
11721 * nios2-tdep.c (nios2_software_single_step): Adjust.
11722 * ppc-tdep.h (ppc_deal_with_atomic_sequence): Adjust.
11723 * rs6000-aix-tdep.c (rs6000_software_single_step): Adjust.
11724 * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Adjust.
11725 * s390-linux-tdep.c (s390_software_single_step): Adjust.
11726 * sparc-tdep.c (sparc_software_single_step): Adjust.
11727 * spu-tdep.c (spu_software_single_step): Adjust.
11728 * tic6x-tdep.c (tic6x_software_single_step): Adjust.
11729
11730 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
11731
11732 * gdbarch.sh: Use semi-colon as field separator instead of colon.
11733 * gdbarch.h: Re-generate.
11734
11735 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
11736
11737 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-instruction.o.
11738 (SUBDIR_PYTHON_SRCS): Add py-instruction.c.
11739 * python/py-instruction.c, python/py-instruction.h: New file.
11740 * python/py-record.c: Add py-instruction.h include.
11741 (gdbpy_initialize_record): Make gdb.Instruction a super class of
11742 gdb.RecordInstruction.
11743 * python/python-internal.h: Add gdbpy_initialize_instruction
11744 declaration.
11745 * python/python.c (do_start_initialization): Add
11746 gdbpy_initialize_instruction.
11747
11748 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
11749
11750 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_CALL, btpy_call_type):
11751 Remove.
11752 (btrace_func_from_recpy_func): New function.
11753 (btpy_call_new, btpy_number, btpy_hash, btpy_richcompare): Remove.
11754 (btpy_call_level, btpy_call_symbol, btpy_call_instructions,
11755 btpy_call_up, btpy_call_prev_sibling, btpy_call_next_sibling): Rename to ...
11756 (recpy_bt_func_level, recpy_bt_func_symbol, recpy_bt_func_instructions,
11757 recpy_bt_func_up, recpy_bt_func_prev, recpy_bt_func_next): This.
11758 Also, use new helper functions.
11759 (btpy_list_item): Use new helper functions.
11760 (recpy_bt_function_call_history): Use new type name.
11761 (btpy_call_getset): Remove.
11762 (gdbpy_initialize_btrace): Remove code to initialize
11763 gdb.BtraceFunctionCall.
11764 * python/py-record-btrace.h (recpy_bt_func_number, recpy_btb_func_level,
11765 recpy_btb_func_symbol, recpy_bt_func_instructions, recpy_bt_func_up,
11766 recpy_bt_func_prev, recpy_bt_func_next): New export.
11767 * python/py-record.c (recpy_func_type): New static object.
11768 (recpy_func_new, recpy_func_level, recpy_func_symbol,
11769 recpy_func_instructions, recpy_func_up, recpy_func_prev,
11770 recpy_func_next): New function.
11771 (recpy_element_hash, recpy_element_richcompare): Updated comment.
11772 (recpy_func_getset): New static object.
11773 (gdbpy_initialize_record): Add code to initialize gdb.RecordInstruction.
11774 * python/py-record.h (recpy_func_type, recpy_func_new): New export.
11775
11776 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
11777
11778 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN): Remove.
11779 (btpy_object, btpy_insn_type, btpy_new): Remove.
11780 (btpy_list_object): Use gdb.RecordInstruction type instead of
11781 gdb.BtraceInstruction type.
11782 (btrace_insn_from_recpy_insn): New function.
11783 (btpy_insn_or_gap_new): Adjust comment. Use recpy_insn_new instead of
11784 btpy_new.
11785 (btpy_call_new, btpy_list_item): Do not use btpy_new anymore.
11786 (btpy_number, btpy_hash, btpy_call_level, btpy_call_symbol,
11787 btpy_call_instructions, btpy_call_up, btpy_call_prev_sibling,
11788 btpy_call_next_sibling, btpy_richcompare): Use recpy_element_object
11789 instead of btpy_object.
11790 (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
11791 btpy_insn_data, btpy_insn_decode): Rename to ...
11792 (recpy_bt_insn_sal, recpy_bt_insn_pc, recpy_bt_insn_size,
11793 recpy_bt_insn_is_speculative, recpy_bt_insn_data,
11794 recpy_bt_insn_decode): This. Also, use new helper functions.
11795 (btpy_list_position, recpy_bt_goto): Use recpy_element_object and
11796 recpy_insn_type.
11797 (btpy_insn_getset): Remove.
11798 (gdbpy_initialize_btrace): Remove code to initialize
11799 gdb.BtraceInstruction. Use recpy_element_object.
11800 * python/py-record-btrace.h (recpy_bt_insn_number, recpy_bt_insn_sal,
11801 recpy_bt_insn_pc, recpy_bt_insn_data, recpy_bt_insn_decoded,
11802 recpy_bt_insn_size, recpy_bt_insn_is_speculative): New export.
11803 * python/py-record.c (recpy_insn_type): New static object.
11804 (recpy_insn_new, recpy_insn_sal, recpy_insn_pc, recpy_insn_data,
11805 recpy_insn_decoded, recpy_insn_size, recpy_insn_is_speculative,
11806 recpy_element_number, recpy_element_hash, recpy_element_richcompare):
11807 New function.
11808 (recpy_insn_getset): New static object.
11809 (gdbpy_initialize_record): Initialize gdb.RecordInstruction.
11810 * python/py-record.h (recpy_element_object): New typedef.
11811 (recpy_insn_type, recpy_insn_new): New export.
11812
11813 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
11814
11815 * py-record-btrace.c (btpy_insn_new): Removed.
11816 (btpy_insn_or_gap_new): New function.
11817 (btpy_insn_error): Removed.
11818 (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
11819 btpy_insn_data, btpy_insn_decode): Remove code path for gaps.
11820 (recpy_bt_replay_position, recpy_bt_begin, recpy_bt_end): Call
11821 btpy_insn_or_gap_new instead of btpy_insn_new.
11822 (btpy_insn_getset): Remove btpy_insn_error.
11823 * py-record.c (recpy_gap_type): New static object.
11824 (recpy_gap_object): New typedef.
11825 (recpy_gap_new, recpy_gap_number, recpy_gap_reason_code,
11826 recpy_gap_reason_string): New function.
11827 (recpy_gap_getset): New static object.
11828 (gdbpy_initialize_record): Initialize gdb.RecordGap type.
11829 * py-record.h (recpy_gap_new): New export.
11830
11831 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
11832
11833 * python/py-record.c (recpy_ptid): Remove.
11834 (recpy_record_getset): Remove recpy_ptid.
11835
11836 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
11837
11838 * btrace.c (btrace_fetch): Set inferior_ptid.
11839 * python/py-record-btrace.c: Add "py-record.h" include.
11840 (recpy_bt_format, recpy_bt_replay_position, recpy_bt_begin,
11841 recpy_bt_end, recpy_bt_instruction_history,
11842 recpy_bt_function_call_history, recpy_bt_goto): Use ptid stored
11843 in gdb.Record object instead of current ptid.
11844 * python/py-record.c: Include new "py-record.h" file.
11845 (recpy_record_object): Moved to py-record.h.
11846 * python/py-record.h: New file.
11847
11848 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
11849
11850 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN,
11851 BTPY_REQUIRE_VALID_CALL, recpy_bt_function_call_history): Fix
11852 indentation.
11853
11854 2017-05-01 Joel Brobecker <brobecker@adacore.com>
11855
11856 * MAINTAINERS: Move Daniel Jacobowitz and Mark Kettenis to
11857 the past maintainers section.
11858
11859 2017-04-28 Yao Qi <yao.qi@linaro.org>
11860
11861 * infcmd.c (get_return_value): Use regcache ctor, and remove
11862 cleanup.
11863
11864 2017-04-28 Yao Qi <yao.qi@linaro.org>
11865 Pedro Alves <palves@redhat.com>
11866
11867 * regcache.c (regcache::regcache): New tag dispatch ctor.
11868 (do_cooked_read): Moved above.
11869 (regcache_dup): Use the tag dispatch ctor..
11870 * regcache.h (regcache): Declare ctor, delete copy ctor and
11871 assignment operator, remove friend regcache_dup.
11872
11873 2017-04-28 Yao Qi <yao.qi@linaro.org>
11874
11875 * regcache.c (regcache_dup): Assert !src->m_readonly_p and
11876 call method save instead of regcache_cpy.
11877 * regcache.h (struct regcache): Make regcache_dup a friend.
11878
11879 2017-04-28 Yao Qi <yao.qi@linaro.org>
11880
11881 * regcache.c (struct regcache): Move to regcache.h
11882 (regcache::arch): New method.
11883 (regcache_get_ptid): Update.
11884 (get_regcache_arch): Call arch method.
11885 (get_regcache_aspace): Call method aspace.
11886 (register_buffer): Change it to method.
11887 (regcache_save): Change it to regcache::save.
11888 (regcache_restore): Likewise.
11889 (regcache_cpy_no_passthrough): Remove the declaration.
11890 (regcache_cpy): Call methods restore and cpy_no_passthrough.
11891 (regcache_cpy_no_passthrough): Change it to method
11892 cpy_no_passthrough.
11893 (regcache_register_status): Change it to method
11894 get_register_status.
11895 (regcache_invalidate): Change it to method invalidate.
11896 (regcache_thread_ptid_changed): Use methods ptid and set_ptid.
11897 (regcache_raw_update): Change it to method raw_update.
11898 (regcache_raw_read): Likewise.
11899 (regcache_raw_read_signed): Likewise.
11900 (regcache_raw_read_unsigned): Likewise.
11901 (regcache_raw_write_signed): Likewise.
11902 (regcache_raw_write_unsigned): Likewise.
11903 (regcache_cooked_read): Likewise.
11904 (regcache_cooked_read_value): Likewise.
11905 (regcache_cooked_read_signed): Likewise.
11906 (regcache_cooked_read_unsigned): Likewise.
11907 (regcache_cooked_write_signed): Likewise.
11908 (regcache_cooked_write_unsigned): Likewise.
11909 (regcache_raw_set_cached_value): Likewise.
11910 (regcache_raw_write): Likewise.
11911 (regcache_cooked_write): Likewise.
11912 (regcache_xfer_part): Likewise.
11913 (regcache_raw_read_part): Likewise.
11914 (regcache_raw_write_part): Likewise.
11915 (regcache_cooked_read_part): Likewise.
11916 (regcache_cooked_write_part): Likewise.
11917 (regcache_raw_supply): Likewise.
11918 (regcache_raw_collect): Likewise.
11919 (regcache_transfer_regset): Likewise.
11920 (regcache_supply_regset): Likewise.
11921 (regcache_collect_regset): Likewise.
11922 (regcache_debug_print_register): Likewise.
11923 (enum regcache_dump_what): Move it to regcache.h.
11924 (regcache_dump): Change it to method dump.
11925 * regcache.h (enum regcache_dump_what): New.
11926 (class regcache): New.
11927 * target.c (target_fetch_registers): Call method
11928 debug_print_register.
11929 (target_store_registers): Likewise.
11930
11931 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
11932
11933 * windows-nat.c (struct lm_info_windows): Initialize field.
11934 (windows_make_so): Allocate lm_info_windows with new.
11935 (windows_free_so): Free lm_info_windows with delete.
11936
11937 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
11938
11939 * solib-darwin.c (struct lm_info_darwin): Initialize field.
11940 (darwin_current_sos): Allocate lm_info_darwin with new, remove
11941 cleanup.
11942 (darwin_free_so): Free lm_info_darwin with delete.
11943
11944 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
11945
11946 * solib-svr4.h (struct lm_info_svr4): Initialize fields.
11947 <l_addr_p>: Change type to bool.
11948 * solib-svr4.c (lm_info_read): Allocate lm_info_svr4 with new.
11949 (svr4_free_so): Free lm_info_svr4 with delete.
11950 (svr4_copy_library_list): Replace memcpy with call to copy
11951 constructor.
11952 (library_list_start_library, svr4_default_sos): Allocate
11953 lm_info_svr4 with new.
11954
11955 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
11956
11957 * solib-target.c (struct lm_info_target): Add destructor,
11958 initialize fields.
11959 <name>: Change type to std::string.
11960 (library_list_start_library): Allocate lm_info_target with new.
11961 (solib_target_free_library_list): Free lm_info_target with
11962 delete.
11963 (solib_target_current_sos): Adapt to std::string.
11964 (solib_target_free_so): Free lm_info_target with delete.
11965
11966 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
11967
11968 * solib-frv.c (struct lm_info_frv): Add destructor, initialize
11969 fields.
11970 (frv_current_sos): Allocate lm_info_frv with new.
11971 (frv_relocate_main_executable): Free lm_info_frv with delete,
11972 allocate with new.
11973 (frv_clear_solib, frv_free_so): Free lm_info_frv with delete.
11974
11975 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
11976
11977 * solib-frv.c (struct lm_info_frv): Fix indentation.
11978
11979 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
11980
11981 * solib-dsbt.c (struct lm_info_dsbt): Add destructor, initialize
11982 map field.
11983 (dsbt_current_sos): Allocate lm_info_dsbt with new.
11984 (dsbt_relocate_main_executable): Free lm_info_dsbt with delete
11985 and allocate with new.
11986 (dsbt_clear_solib, dsbt_free_so): Free lm_info_dsbt with delete.
11987
11988 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
11989
11990 * solib-aix.c (struct lm_info_aix): Initialize fields in-class.
11991 <filename, member_name>: Change type to std::string.
11992 (solib_aix_new_lm_info, solib_aix_xfree_lm_info): Remove.
11993 (library_list_start_library): Allocate lm_info_aix with new.
11994 (solib_aix_free_library_list, solib_aix_free_so): Free with delete.
11995 (solib_aix_current_sos): Adapt to std::string, copy lm_info_aix
11996 with copy constructor.
11997
11998 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
11999
12000 * solist.h (struct lm_info): Remove.
12001 (struct lm_info_base): New class.
12002 (struct so_list) <lm_info>: Change type to lm_info_base *.
12003 * nto-tdep.c (struct lm_info): Remove.
12004 (lm_addr): Adjust.
12005 * solib-aix.c (struct lm_info): Rename to ...
12006 (struct lm_info_aix): ... this. Extend lm_info_base.
12007 (lm_info_p): Rename to ...
12008 (lm_info_aix_p): ... this, and adjust.
12009 (solib_aix_new_lm_info, solib_aix_xfree_lm_info,
12010 solib_aix_parse_libraries, library_list_start_library,
12011 solib_aix_free_library_list, solib_aix_parse_libraries,
12012 solib_aix_get_library_list,
12013 solib_aix_relocate_section_addresses, solib_aix_free_so,
12014 solib_aix_get_section_offsets,
12015 solib_aix_solib_create_inferior_hook, solib_aix_current_sos):
12016 Adjust.
12017 (struct solib_aix_inferior_data) <library_list>: Adjust.
12018 * solib-darwin.c (struct lm_info): Rename to ...
12019 (struct lm_info_darwin): ... this. Extend lm_info_base.
12020 (darwin_current_sos, darwin_relocate_section_addresses): Adjust.
12021 * solib-dsbt.c (struct lm_info): Rename to ...
12022 (struct lm_info_dsbt): ... this. Extend lm_info_base.
12023 (struct dsbt_info) <main_executable_lm_info): Adjust.
12024 (dsbt_current_sos, dsbt_relocate_main_executable, dsbt_free_so,
12025 dsbt_relocate_section_addresses): Adjust.
12026 * solib-frv.c (struct lm_info): Rename to ...
12027 (struct lm_info_frv): ... this. Extend lm_info_base.
12028 (main_executable_lm_info): Adjust.
12029 (frv_current_sos, frv_relocate_main_executable, frv_free_so,
12030 frv_relocate_section_addresses, frv_fdpic_find_global_pointer,
12031 find_canonical_descriptor_in_load_object,
12032 frv_fdpic_find_canonical_descriptor): Adjust.
12033 * solib-svr4.c (struct lm_info): Move to solib-svr4.h, renamed
12034 to lm_info_svr4.
12035 (lm_info_read, lm_addr_check, svr4_keep_data_in_core,
12036 svr4_clear_so, svr4_copy_library_list,
12037 library_list_start_library, svr4_default_sos, svr4_read_so_list,
12038 svr4_current_sos, svr4_fetch_objfile_link_map,
12039 solist_update_incremental): Adjust.
12040 * solib-svr4.h (struct lm_info_svr4): Move here from
12041 solib-svr4.c.
12042 * solib-target.c (struct lm_info): Rename to ...
12043 (struct lm_info_target): ... this. Extend lm_info_base.
12044 (lm_info_p): Rename to ...
12045 (lm_info_target_p): ... this.
12046 (solib_target_parse_libraries, library_list_start_segment,
12047 library_list_start_section, library_list_start_library,
12048 library_list_end_library, solib_target_free_library_list,
12049 solib_target_current_sos, solib_target_free_so,
12050 solib_target_relocate_section_addresses): Adjust.
12051 * windows-nat.c (struct lm_info): Rename to ...
12052 (struct lm_info_windows): ... this. Extend lm_info_base.
12053 (windows_make_so, handle_load_dll, handle_unload_dll,
12054 windows_xfer_shared_libraries): Adjust.
12055
12056 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
12057
12058 * solib-darwin.c (struct darwin_so_list): Remove.
12059 (darwin_current_sos): Allocate an so_list object instead of a
12060 darwin_so_list, separately allocate an lm_info object.
12061 (darwin_free_so): Free lm_info.
12062
12063 2017-04-28 John Baldwin <jhb@FreeBSD.org>
12064
12065 * mips-tdep.c (print_gp_register_row): Replace printf_filtered
12066 with fprintf_filtered.
12067
12068 2017-04-28 Yao Qi <yao.qi@linaro.org>
12069
12070 * regcache.c (regcache::regcache): New function.
12071 (regcache::~regcache): New function.
12072 (regcache_xmalloc_1): Remove.
12073 (regcache_xmalloc): Call new regcache.
12074 (regcache_xfree): Call delete regcache.
12075 (get_thread_arch_aspace_regcache): Call new regcache.
12076
12077 2017-04-28 Yao Qi <yao.qi@linaro.org>
12078
12079 * mips-linux-nat.c (mips_linux_new_thread): Use ptid method
12080 lwp instead of ptid_get_lwp.
12081
12082 2017-04-28 Yao Qi <yao.qi@linaro.org>
12083
12084 * mips-linux-nat.c (mips_linux_new_thread): Get lwpid from
12085 lwp_info instead of getting from inferior_ptid.
12086
12087 2017-04-27 Keith Seitz <keiths@redhat.com>
12088
12089 * gdbtypes.c (LVALUE_REFERENCE_TO_RVALUE_BINDING_BADNESS)
12090 DIFFERENT_REFERENCE_TYPE_BADNESS): Remove.
12091 (CV_CONVERSION_BADNESS): Define.
12092 (rank_one_type): Remove overly restrictive rvalue reference
12093 rank checks.
12094 Add cv-qualifier checks and subranks for type equality.
12095 * gdbtypes.h (REFERENCE_CONVERSION_RVALUE,
12096 REFERENCE_CONVERSION_CONST_LVALUE, CV_CONVERSION_BADNESS,
12097 CV_CONVERSION_CONST, CV_CONVERSION_VOLATILE): Declare.
12098
12099 2017-04-27 Simon Marchi <simon.marchi@ericsson.com>
12100
12101 * python/py-inferior.c (inferior_to_inferior_object): Increment reference
12102 count when creating the object.
12103
12104 2017-04-27 Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
12105 Ulrich Weigand <uweigand@de.ibm.com>
12106
12107 * xcoffread.c (read_xcoff_symtab): Read correct function auxiliary
12108 entry if xlc -qfuncsect or gcc -ffunction-sections compiler option
12109 is used in AIX.
12110 (read_xcoff_symtab): Handle C_WEAKEXT storage class.
12111 (process_xcoff_symbol): Likewise.
12112 (scan_xcoff_symtab): Likewise.
12113
12114 2017-04-26 Alan Hayward <alan.hayward@arm.com>
12115
12116 * ia64-tdep.c (examine_prologue): Use get_frame_register_unsigned.
12117 (ia64_sigtramp_frame_prev_register): Use read_memory_unsigned_integer.
12118 (ia64_access_reg): Use get_frame_register_unsigned.
12119 (ia64_access_rse_reg): Likewise.
12120 (ia64_libunwind_frame_prev_register): Likewise.
12121
12122 2017-04-26 Jiong Wang <jiong.wang@arm.com>
12123
12124 * gdbarch.sh: New gdbarch method execute_dwarf_cfa_vendor_op.
12125 * gdbarch.c: Regenerated.
12126 * gdbarch.h: Regenerated.
12127 * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Made the
12128 visibility external.
12129 (execute_cfa_program): Call execute_dwarf_cfa_vendor_op for CFI
12130 between DW_CFA_lo_user and DW_CFA_high_user inclusive.
12131 (enum cfa_how_kind): Move to ...
12132 (struct dwarf2_frame_state_reg_info): Likewise.
12133 (struct dwarf2_frame_state): Likewise.
12134 * dwarf2-frame.h: ... here.
12135 (dwarf2_frame_state_alloc_regs): New declaration.
12136 * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): New function.
12137 (sparc32_gdbarch_init): Register execute_dwarf_cfa_vendor_op hook.
12138
12139 2017-04-26 Alan Hayward <alan.hayward@arm.com>
12140
12141 * xtensa-tdep.c (xtensa_pseudo_register_read): Use
12142 regcache_raw_read_unsigned.
12143 (xtensa_pseudo_register_write): Likewise.
12144
12145 2017-04-26 Alan Hayward <alan.hayward@arm.com>
12146
12147 * nds32-tdep.c (nds32_pseudo_register_read): Abort on errors.
12148 (nds32_pseudo_register_write): Likewise.
12149
12150 2017-04-25 Yao Qi <yao.qi@linaro.org>
12151
12152 * regcache.c (struct regcache) <readonly_p>: Change its type
12153 to bool.
12154 (regcache_xmalloc_1): Update parameter type and callers update.
12155
12156 2017-04-25 Yao Qi <yao.qi@linaro.org>
12157
12158 * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
12159 set_gdbarch_wchar_bit.
12160 * arm-tdep.c (arm_gdbarch_init): Likewise.
12161
12162 2017-04-25 Pedro Alves <palves@redhat.com>
12163
12164 * common/poison.h [!HAVE_IS_TRIVIALLY_COPYABLE] (IsRelocatable)
12165 (BothAreRelocatable, memcopy, memmove): Don't define.
12166 * common/traits.h (__has_feature, HAVE_IS_TRIVIALLY_COPYABLE): New
12167 macros.
12168
12169 2017-04-25 Pedro Alves <palves@redhat.com>
12170
12171 * common/common-defs.h: Include "common/poison.h".
12172 * common/function-view.h: (Not, Or, Requires): Move to traits.h
12173 and adjust.
12174 * common/poison.h: New file.
12175 * common/traits.h: Include <type_traits>.
12176 (Not, Or, Requires): New, moved from common/function-view.h.
12177
12178 2017-04-25 Pedro Alves <palves@redhat.com>
12179
12180 * breakpoint.h (struct breakpoint): In-class initialize all
12181 fields. Make boolean fields "bool".
12182 * breakpoint.c (init_raw_breakpoint_without_location): Remove
12183 memset call and initializations no longer necessary.
12184
12185 2017-04-25 Pedro Alves <palves@redhat.com>
12186
12187 * btrace.c (pt_btrace_insn_flags): Change parameter type to
12188 reference.
12189 (pt_btrace_insn): New function.
12190 (ftrace_add_pt): Remove memset call and use pt_btrace_insn.
12191
12192 2017-04-25 Pedro Alves <palves@redhat.com>
12193
12194 * ada-lang.c (ada_catchpoint_location): Now a "class". Remove
12195 "base" field and inherit from "bp_location" instead. Add
12196 non-default ctor.
12197 (allocate_location_exception): Use new non-default ctor.
12198 * breakpoint.c (get_first_locp_gte_addr): Remove memset call.
12199 (init_bp_location): Convert to ...
12200 (bp_location::bp_location): ... this new ctor, and remove memset
12201 call.
12202 (base_breakpoint_allocate_location): Use the new non-default ctor.
12203 * breakpoint.h (bp_location): Now a class. Declare default and
12204 non-default ctors. In-class initialize all members.
12205 (init_bp_location): Remove declaration.
12206
12207 2017-04-25 Pedro Alves <palves@redhat.com>
12208
12209 * common/enum-flags.h (enum_flags): Don't implement copy ctor and
12210 assignment operator.
12211
12212 2017-04-24 Yao Qi <yao.qi@linaro.org>
12213
12214 * doublest.c (convert_doublest_to_floatformat): Call
12215 floatformat_totalsize_bytes.
12216
12217 2017-04-22 Tom Tromey <tom@tromey.com>
12218
12219 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Use
12220 ui_out_emit_list.
12221 * stack.c (print_frame): Use ui_out_emit_list.
12222 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
12223 ui_out_emit_list.
12224 * mi/mi-main.c (print_one_inferior)
12225 (mi_cmd_data_list_register_names)
12226 (mi_cmd_data_list_register_values, mi_cmd_list_features)
12227 (mi_cmd_list_target_features, mi_cmd_trace_frame_collected): Use
12228 ui_out_emit_list.
12229 * mi/mi-interp.c (mi_on_normal_stop_1): Use ui_out_emit_list.
12230 (mi_output_solib_attribs): Use ui_out_emit_list,
12231 ui_out_emit_tuple.
12232 * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_list.
12233 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
12234 (mi_cmd_stack_list_args, list_args_or_locals): Use
12235 ui_out_emit_list.
12236 * disasm.c (do_assembly_only): Use ui_out_emit_list.
12237 * breakpoint.c (print_solib_event, output_thread_groups): Use
12238 ui_out_emit_list.
12239
12240 2017-04-22 Tom Tromey <tom@tromey.com>
12241
12242 * mi/mi-main.c (print_variable_or_computed): Use ui_out_emit_tuple.
12243 * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_tuple.
12244 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_out_emit_tuple.
12245
12246 2017-04-22 Tom Tromey <tom@tromey.com>
12247
12248 * tracepoint.c (tvariables_info_1)
12249 (print_one_static_tracepoint_marker): Use ui_out_emit_tuple.
12250
12251 2017-04-22 Tom Tromey <tom@tromey.com>
12252
12253 * stack.c (print_frame_arg): Use ui_out_emit_tuple,
12254 annotate_arg_emitter.
12255 * breakpoint.c (print_mention_watchpoint)
12256 (print_mention_masked_watchpoint): Use ui_out_emit_tuple.
12257 * annotate.h (struct annotate_arg_emitter): New.
12258
12259 2017-04-22 Tom Tromey <tom@tromey.com>
12260
12261 * record-btrace.c (record_btrace_insn_history)
12262 (record_btrace_insn_history_range, record_btrace_call_history)
12263 (record_btrace_call_history_range): Use ui_out_emit_tuple.
12264 * thread.c (do_captured_list_thread_ids, print_thread_info_1): Use
12265 ui_out_emit_tuple.
12266 * stack.c (print_frame_info): Use ui_out_emit_tuple.
12267 * solib.c (info_sharedlibrary_command): Use ui_out_emit_tuple.
12268 * skip.c (skip_info): Use ui_out_emit_tuple.
12269 * remote.c (show_remote_cmd): Use ui_out_emit_tuple.
12270 * progspace.c (print_program_space): Use ui_out_emit_tuple.
12271 * probe.c (info_probes_for_ops): Use ui_out_emit_tuple.
12272 * osdata.c (info_osdata): Use ui_out_emit_tuple.
12273 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
12274 ui_out_emit_tuple.
12275 * mi/mi-main.c (print_one_inferior, list_available_thread_groups)
12276 (output_register, mi_cmd_data_read_memory)
12277 (mi_cmd_data_read_memory_bytes, mi_load_progress)
12278 (mi_cmd_trace_frame_collected): Use ui_out_emit_tuple.
12279 * mi/mi-cmd-var.c (mi_cmd_var_list_children, varobj_update_one):
12280 Use ui_out_emit_tuple.
12281 * mi/mi-cmd-stack.c (mi_cmd_stack_list_args): Use
12282 ui_out_emit_tuple.
12283 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
12284 (mi_cmd_info_gdb_mi_command): Use ui_out_emit_tuple.
12285 * linux-thread-db.c (info_auto_load_libthread_db): Use
12286 ui_out_emit_tuple.
12287 * inferior.c (print_inferior): Use ui_out_emit_tuple.
12288 * gdb_bfd.c (print_one_bfd): Use ui_out_emit_tuple.
12289 * disasm.c (do_mixed_source_and_assembly_deprecated)
12290 (do_mixed_source_and_assembly): Use ui_out_emit_tuple.
12291 * cp-abi.c (list_cp_abis): Use ui_out_emit_tuple.
12292 * cli/cli-setshow.c (cmd_show_list): Use ui_out_emit_tuple.
12293 * breakpoint.c (print_one_breakpoint_location)
12294 (print_one_breakpoint): Use ui_out_emit_tuple.
12295 * auto-load.c (print_script, info_auto_load_cmd): Use
12296 ui_out_emit_tuple.
12297 * ada-tasks.c (print_ada_task_info): Use ui_out_emit_tuple.
12298
12299 2017-04-21 Simon Marchi <simon.marchi@ericsson.com>
12300
12301 * thread.c (print_thread_info_1): Remove dead code.
12302
12303 2017-04-21 Jan Kratochvil <jan.kratochvil@redhat.com>
12304
12305 * aarch64-tdep.c (selftests::aarch64_process_record_test): Make it #if
12306 GDB_SELF_TEST.
12307 * arm-tdep.c (selftests::arm_record_test): Likewise.
12308
12309 2017-04-21 Yao Qi <yao.qi@linaro.org>
12310
12311 * regcache.c (regcache_restore): Remove argument 2. Replace
12312 argument 3 with regcache. Get register status from
12313 src->register_status and get register contents from
12314 register_buffer (src, regnum).
12315 (regcache_cpy): Update.
12316
12317 2017-04-19 Pedro Alves <palves@redhat.com>
12318
12319 * gdbthread.h (thread): Add missing closing parenthesis in
12320 comment.
12321
12322 2017-04-19 Pedro Alves <palves@redhat.com>
12323
12324 * common/refcounted-object.h: New file.
12325 * gdbthread.h: Include "common/refcounted-object.h".
12326 (thread_info): Inherit from refcounted_object and add comments.
12327 (thread_info::incref, thread_info::decref)
12328 (thread_info::m_refcount): Delete.
12329 (thread_info::deletable): Use the refcounted_object::refcount()
12330 method.
12331 * inferior.c (current_inferior_): Add comment.
12332 (set_current_inferior): Increment/decrement refcounts.
12333 (prune_inferiors, remove_inferior_command): Skip inferiors marked
12334 not-deletable instead of comparing with the current inferior.
12335 (initialize_inferiors): Increment the initial inferior's refcount.
12336 * inferior.h (struct inferior): Forward declare.
12337 Include "common/refcounted-object.h".
12338 (current_inferior, set_current_inferior): Move declaration to
12339 before struct inferior's definition, and fix comment.
12340 (inferior): Inherit from refcounted_object. Add comments.
12341 * thread.c (switch_to_thread_no_regs): Reference the thread's
12342 inferior pointer directly instead of doing a ptid lookup.
12343 (switch_to_no_thread): New function.
12344 (switch_to_thread(thread_info *)): New function, factored out
12345 from ...
12346 (switch_to_thread(ptid_t)): ... this.
12347 (restore_current_thread): Delete.
12348 (current_thread_cleanup): Remove 'inf_id' and 'was_removable'
12349 fields, and add 'inf' field.
12350 (do_restore_current_thread_cleanup): Check whether old->inf is
12351 alive instead of looking up an inferior by ptid. Use
12352 switch_to_thread and switch_to_no_thread.
12353 (restore_current_thread_cleanup_dtor): Use old->inf directly
12354 instead of lookup up an inferior by id. Decref the inferior.
12355 Don't restore 'removable'.
12356 (make_cleanup_restore_current_thread): Same the inferior pointer
12357 in old, instead of the inferior number. Incref the inferior.
12358 Don't save/clear 'removable'.
12359
12360 2017-04-19 Pedro Alves <palves@redhat.com>
12361
12362 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
12363 unittests/scoped_restore-selftests.c.
12364 (SUBDIR_UNITTESTS_OBS): Add scoped_restore-selftests.o.
12365 * common/scoped_restore.h (scoped_restore_base): Make "class".
12366 (scoped_restore_base::release): New public method.
12367 (scoped_restore_base::scoped_restore_base): New protected ctor.
12368 (scoped_restore_base::m_saved_var): New protected field.
12369 (scoped_restore_tmpl::scoped_restore_tmpl(T*)): Initialize the
12370 scoped_restore_base base class instead of m_saved_var directly.
12371 (scoped_restore_tmpl::scoped_restore_tmpl(T*, T2)): Likewise.
12372 (scoped_restore_tmpl::scoped_restore_tmpl(const
12373 scoped_restore_tmpl<T>&)): Likewise.
12374 (scoped_restore_tmpl::~scoped_restore_tmpl): Use the saved_var
12375 method.
12376 (scoped_restore_tmpl::saved_var): New method.
12377 (scoped_restore_tmpl::m_saved_var): Delete.
12378 * inferior.h (inferior::detaching): Now a bool.
12379 * infrun.c (prepare_for_detach): Use a scoped_restore instead of a
12380 cleanup.
12381 * unittests/scoped_restore-selftests.c: New file.
12382
12383 2017-04-19 Pedro Alves <palves@redhat.com>
12384
12385 * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS):
12386 Re-sort in alphabetic order.
12387
12388 2017-04-18 Pedro Alves <palves@redhat.com>
12389
12390 * xml-support.c (obstack_xml_printf): Delete.
12391 * xml-support.h (obstack_xml_printf): Delete.
12392
12393 2017-04-18 Pedro Alves <palves@redhat.com>
12394
12395 * xml-support.c (gdb_xml_parser) <use_dtd, dtd_name, parse,
12396 vdebug, verror, body_text, start_element, end_element, name,
12397 user_data, set_is_xinclude, set_error, expat_parser>: New methods.
12398 <name, user_data, expat_parser, scopes, error, last_line, dtd_name,
12399 is_xinclude>: Make private and add m_ prefix.
12400 (gdb_xml_parser::body_text): New method, based on ...
12401 (gdb_xml_body_text): ... this. Adjust.
12402 (gdb_xml_parser::vdebug): New method, based on ...
12403 (gdb_xml_debug): ... this. Adjust.
12404 (gdb_xml_parser::verror): New method, based on ...
12405 (gdb_xml_error): ... this. Adjust.
12406 (gdb_xml_parser::start_element): New method, based on ...
12407 (gdb_xml_start_element): ... this. Adjust.
12408 (gdb_xml_start_element_wrapper): Defer to
12409 gdb_xml_parser::start_element and gdb_xml_parser::set_error.
12410 (gdb_xml_parser::end_element): New method, based on ...
12411 (gdb_xml_end_element_wrapper): ... this. Adjust.
12412 (gdb_xml_parser::~gdb_xml_parser): Adjust.
12413 (gdb_xml_parser::gdb_xml_parser): Adjust to field renames.
12414 (gdb_xml_parser::use_dtd): New method, based on ...
12415 (gdb_xml_use_dtd): ... this. Adjust.
12416 (gdb_xml_parser::parse): New method, based on ...
12417 (gdb_xml_parse): ... this. Adjust.
12418 (gdb_xml_parse_quick): Adjust to call the parser's parse method.
12419 (xinclude_start_include): Adjust to call the parser's name method.
12420 (xml_xinclude_default, xml_xinclude_start_doctype)
12421 (xml_xinclude_end_doctype): Adjust to call the parser's user_data
12422 method.
12423 (xml_process_xincludes): Adjust to call parser methods.
12424 * xml-support.h (gdb_xml_use_dtd, gdb_xml_parse): Delete
12425 declarations.
12426
12427 2017-04-18 Pedro Alves <palves@redhat.com>
12428
12429 * tracefile-tfile.c (tfile_write_tdesc): Adjust to use
12430 gdb::optional<std::string>.
12431 * xml-support.c: Include <string>.
12432 (scope_level::scope_level(scope_level &&))
12433 (scope_level::~scope_level): Delete.
12434 (scope_level::body): Now a std::string.
12435 (gdb_xml_body_text, gdb_xml_end_element): Adjust.
12436 (xinclude_parsing_data::xinclude_parsing_data): Add 'output'
12437 parameter.
12438 (xinclude_parsing_data::~xinclude_parsing_data): Delete.
12439 (xinclude_parsing_data::output): Now a std::string reference.
12440 (xinclude_start_include): Adjust.
12441 (xml_xinclude_default): Adjust.
12442 (xml_process_xincludes): Add 'output' parameter, and return bool.
12443 * xml-support.h (xml_process_xincludes): Add 'output' parameter,
12444 and return bool.
12445 * xml-tdesc.c: Include <unordered_map> and <string>.
12446 (tdesc_xml_cache): Delete.
12447 (tdesc_xml_cache_s): Delete.
12448 (xml_cache): Now an std::unordered_map.
12449 (tdesc_parse_xml): Adjust to use std::string and unordered_map.
12450 (target_fetch_description_xml): Change return type to
12451 gdb::optional<std::string>, and adjust.
12452 * xml-tdesc.h: Include "common/gdb_optional.h" and <string>.
12453 (target_fetch_description_xml): Change return type to
12454 gdb::optional<std::string>.
12455
12456 2017-04-18 Pedro Alves <palves@redhat.com>
12457
12458 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
12459 unittests/optional-selftests.c.
12460 (SUBDIR_UNITTESTS_OBS): Add optional-selftests.o.
12461 * unittests/optional-selftests.c: New file.
12462 * unittests/optional/assignment/1.cc: New file.
12463 * unittests/optional/assignment/2.cc: New file.
12464 * unittests/optional/assignment/3.cc: New file.
12465 * unittests/optional/assignment/4.cc: New file.
12466 * unittests/optional/assignment/5.cc: New file.
12467 * unittests/optional/assignment/6.cc: New file.
12468 * unittests/optional/assignment/7.cc: New file.
12469 * unittests/optional/cons/copy.cc: New file.
12470 * unittests/optional/cons/default.cc: New file.
12471 * unittests/optional/cons/move.cc: New file.
12472 * unittests/optional/cons/value.cc: New file.
12473 * unittests/optional/in_place.cc: New file.
12474 * unittests/optional/observers/1.cc: New file.
12475 * unittests/optional/observers/2.cc: New file.
12476
12477 2017-04-18 Pedro Alves <palves@redhat.com>
12478
12479 * common/gdb_optional.h: Include common/traits.h.
12480 (in_place_t): New type.
12481 (in_place): New constexpr variable.
12482 (optional::optional): Remove member initialization of
12483 m_instantiated.
12484 (optional::optional(in_place_t...)): New constructor.
12485 (optional::~optional): Use reset.
12486 (optional::optional(const optional&)): New.
12487 (optional::optional(const optional&&)): New.
12488 (optional::optional(T &)): New.
12489 (optional::optional(T &&)): New.
12490 (operator::operator=(const optional &)): New.
12491 (operator::operator=(optional &&)): New.
12492 (operator::operator= (const T &))
12493 (operator::operator= (T &&))
12494 (operator::emplace (Args &&... args)): Return a T&. Use reset.
12495 (operator::reset): New.
12496 (operator::m_instantiated):: Add in-class initializer.
12497 * common/traits.h: Include <type_traits>.
12498 (struct And): New types.
12499
12500 2017-04-18 Pedro Alves <palves@redhat.com>
12501
12502 * xml-support.c: Include <vector>.
12503 (scope_level::scope_level(const gdb_xml_element *))
12504 (scope_level::scope_level(scope_level&&)): New.
12505 (scope_level::~scope_level): New.
12506 (scope_level_s): Delete.
12507 (gdb_xml_parser::scopes): Now a std::vector.
12508 (gdb_xml_body_text, gdb_xml_start_element, gdb_xml_end_element):
12509 Use std::vector.
12510 (gdb_xml_parser::~gdb_xml_parser): Remove now unnecessary
12511 scope cleanup code.
12512 (gdb_xml_parser::gdb_xml_parser): Remove explicit initialization
12513 of the scopes member. Use std::vector::emplace_back.
12514
12515 2017-04-18 Pedro Alves <palves@redhat.com>
12516
12517 * xml-support.c (gdb_xml_parser): Add ctor/dtor. Make is_xinclude
12518 a bool.
12519 (gdb_xml_end_element): Change type of first parameter.
12520 (gdb_xml_cleanup): Rename to ...
12521 (gdb_xml_parser::~gdb_xml_parser): ... this.
12522 (gdb_xml_create_parser_and_cleanup): Delete with ...
12523 (gdb_xml_parser::gdb_xml_parser): ... creation parts factored out
12524 to this new ctor.
12525 (gdb_xml_parse_quick): Create a local gdb_xml_parser instead of
12526 using gdb_xml_create_parser_and_cleanup.
12527 (xinclude_parsing_data): Add ctor/dtor.
12528 (xml_xinclude_cleanup): Delete.
12529 (xml_process_xincludes): Create a local xinclude_parsing_data
12530 instead of heap-allocating one. Create a local gdb_xml_parser
12531 instead of heap-allocating one with
12532 gdb_xml_create_parser_and_cleanup.
12533
12534 2017-04-18 John Baldwin <jhb@FreeBSD.org>
12535
12536 PR threads/20743
12537 * fbsd-nat.c (resume_one_thread_cb): Remove.
12538 (resume_all_threads_cb): Remove.
12539 (fbsd_resume): Use ALL_NON_EXITED_THREADS instead of
12540 iterate_over_threads.
12541
12542 2017-04-17 Joel Brobecker <brobecker@adacore.com>
12543
12544 * NEWS: Create a new section for the next release branch.
12545 Rename the section of the current branch, now that it has
12546 been cut.
12547
12548 2017-04-17 Joel Brobecker <brobecker@adacore.com>
12549
12550 GDB 8.0 branch created (725bf5cf125783c2a7ca4ab63d3768e220bab2db):
12551 * version.in: Bump version to 8.0.50.DATE-git.
12552
12553 2017-04-13 Sergio Durigan Junior <sergiodj@redhat.com>
12554
12555 PR gdb/21385
12556 * windows-nat.c (windows_create_inferior): Declare 'allargs'
12557 independently of the host, and fix build breakage on Cygwin.
12558
12559 2017-04-13 Pedro Alves <palves@redhat.com>
12560
12561 * inferior.c (free_inferior): Convert to ...
12562 (inferior::~inferior): ... this dtor.
12563 (inferior::inferior): New ctor, factored out from ...
12564 (add_inferior_silent): ... here. Allocate the inferior with a new
12565 expression.
12566 (delete_inferior): Call delete instead of free_inferior.
12567 * inferior.h (gdb_environ, continuation): Forward declare.
12568 (inferior): Now a class. Add in-class initialization to all
12569 members. Make boolean fields bool, except 'detaching'.
12570 (inferior::inferior): New explicit ctor.
12571 (inferior::~inferior): New.
12572
12573 2017-04-13 Pedro Alves <palves@redhat.com>
12574
12575 * inferior.c (init_inferior_list): Delete.
12576 * inferior.h (init_inferior_list): Delete.
12577
12578 2017-04-13 Pedro Alves <palves@redhat.com>
12579
12580 PR threads/13217
12581 * gdb.threads/threadapply.exp (thr_apply_detach): New procedure.
12582 (top level): Call it twice, with different thread sets.
12583
12584 2017-04-13 Pedro Alves <palves@redhat.com>
12585
12586 * thread.c: Include <algorithm>.
12587 (thread_array_cleanup): Delete.
12588 (scoped_inc_dec_ref): New class.
12589 (live_threads_count): New function.
12590 (set_thread_refcount): Delete.
12591 (tp_array_compar_ascending): Now a bool.
12592 (tp_array_compar): Convert to a std::sort comparison function.
12593 (thread_apply_all_command): Use std::vector and scoped_inc_dec_ref
12594 and live_threads_count.
12595
12596 2017-04-13 Pedro Alves <palves@redhat.com>
12597
12598 * infrun.c (follow_fork_inferior): Also switch the current
12599 inferior.
12600
12601 2017-04-13 Pedro Alves <palves@redhat.com>
12602
12603 * breakpoint.c (watch_command_1): Save watchpoint-frame info
12604 before calling create_internal_breakpoint.
12605
12606 2017-04-13 Pedro Alves <palves@redhat.com>
12607
12608 * fork-child.c (execv_argv): New class.
12609 (breakup_args): Refactored as ...
12610 (execv_argv::init_for_no_shell): .. this method of execv_argv.
12611 Copy arguments to storage and replace separators with NULL
12612 terminators in place.
12613 (escape_bang_in_quoted_argument): Adjust to return bool.
12614 (execv_argv::execv_argv): New ctor.
12615 (execv_argv::init_for_shell): New method, factored out from
12616 fork_inferior. Don't strdup strings into the vector.
12617 (fork_inferior): Eliminate "shell" local and use execv_argv. Use
12618 Remove free_vector_argv call.
12619
12620 2017-04-13 Yao Qi <yao.qi@linaro.org>
12621
12622 * rx-tdep.c (rx_fpsw_type): Check tdep->rx_fpsw_type instead of
12623 tdep->rx_psw_type.
12624
12625 2017-04-13 Yao Qi <yao.qi@linaro.org>
12626
12627 * rl78-tdep.c (rl78_gdbarch_init): Use XCNEW instead of XNEW.
12628 * rx-tdep.c (rx_gdbarch_init): Likewise.
12629
12630 2017-04-13 Pedro Alves <palves@redhat.com>
12631
12632 * breakpoint.h (struct breakpoint): Reindent.
12633
12634 2017-04-13 Pedro Alves <palves@redhat.com>
12635
12636 * breakpoint.c (bp_location): Rename to ...
12637 (bp_locations): ... this. All references updated.
12638 (bp_location_count): Rename to ...
12639 (bp_locations_count): ... this. All references updated.
12640 (bp_location_placed_address_before_address_max): Rename to ...
12641 (bp_locations_placed_address_before_address_max): ... this. All
12642 references updated.
12643 (bp_location_shadow_len_after_address_max): Rename to ...
12644 (bp_locations_shadow_len_after_address_max): ... this. All
12645 references updated.
12646 (bp_location_compare_addrs): Rename to ...
12647 (bp_locations_compare_addrs): ... this. All references updated.
12648 (bp_location_compare):Rename to ...
12649 (bp_locations_compare): ... this. All references updated.
12650 (bp_location_target_extensions_update): Rename to ...
12651 (bp_locations_target_extensions_update): ... this. All references
12652 updated.
12653
12654 2017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
12655
12656 * Makefile.in (HFILES_NO_SRCDIR): Add "common/gdb_termios.h".
12657 * common/common.m4: Check headers 'termios.h', 'termio.h' and
12658 'sgtty.h'.
12659 * common/gdb_termios.h: New file, with parts of "terminal.h".
12660 * inflow.c: Include "gdb_termios.h".
12661 * ser-unix.c: Include "gdb_termios.h".
12662 * terminal.h: Move terminal-related defines to
12663 "common/gdb_termios.h".
12664
12665 2017-04-12 Tom Tromey <tom@tromey.com>
12666
12667 * probe.c (parse_probes): Update.
12668 * location.h (delete_event_location): Don't declare.
12669 (event_location_deleter::operator()): Update.
12670 * location.c (event_location_deleter::operator()): Rename from
12671 delete_event_location.
12672 * linespec.h (linespec_result) <location>: Change type to
12673 event_location_up.
12674 * linespec.c (canonicalize_linespec, event_location_to_sals)
12675 (decode_objc): Update.
12676 (linespec_result): Don't call delete_event_location.
12677 * breakpoint.c (create_breakpoints_sal)
12678 (bkpt_probe_create_sals_from_location)
12679 (strace_marker_create_sals_from_location): Update.
12680
12681 2017-04-12 Tom Tromey <tom@tromey.com>
12682
12683 * linespec.h (struct linespec_result): Add constructor and
12684 destructor.
12685 (init_linespec_result, destroy_linespec_result)
12686 (make_cleanup_destroy_linespec_result): Don't declare.
12687 * linespec.c (init_linespec_result): Remove.
12688 (linespec_result::~linespec_result): Rename from
12689 destroy_linespec_result. Update.
12690 (cleanup_linespec_result, make_cleanup_destroy_linespec_result):
12691 Remove.
12692 * breakpoint.c (create_breakpoint, break_range_command)
12693 (decode_location_default): Update.
12694 * ax-gdb.c (agent_command_1): Update.
12695
12696 2017-04-12 Tom Tromey <tom@tromey.com>
12697
12698 * remote.c (remote_download_tracepoint): Update.
12699 * python/py-breakpoint.c (bppy_get_location): Update.
12700 * guile/scm-breakpoint.c (bpscm_print_breakpoint_smob)
12701 (gdbscm_breakpoint_location): Update.
12702 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Update.
12703 * breakpoint.h (struct breakpoint) <location, location_range_end>:
12704 Change type to event_location_up.
12705 * breakpoint.c (create_overlay_event_breakpoint)
12706 (create_longjmp_master_breakpoint)
12707 (create_std_terminate_master_breakpoint)
12708 (create_exception_master_breakpoint)
12709 (breakpoint_event_location_empty_p, print_breakpoint_location)
12710 (print_one_breakpoint_location, create_thread_event_breakpoint)
12711 (init_breakpoint_sal, create_breakpoint)
12712 (print_recreate_ranged_breakpoint, break_range_command)
12713 (init_ada_exception_breakpoint, say_where): Update.
12714 (base_breakpoint_dtor): Don't call delete_event_location.
12715 (bkpt_print_recreate, tracepoint_print_recreate)
12716 (dprintf_print_recreate, update_static_tracepoint)
12717 (breakpoint_re_set_default): Update.
12718
12719 2017-04-12 Tom Tromey <tom@tromey.com>
12720
12721 * compile/compile-loc2c.c (compute_stack_depth_worker): Change
12722 type of "to_do". Update.
12723 (compute_stack_depth): Use std::vector.
12724
12725 2017-04-12 Tom Tromey <tom@tromey.com>
12726
12727 * printcmd.c (find_instruction_backward): Use std::vector.
12728
12729 2017-04-12 Tom Tromey <tom@tromey.com>
12730
12731 * symfile.c (objfilep): Remove typedef.
12732 (reread_symbols): Use a std::vector.
12733
12734 2017-04-12 Tom Tromey <tom@tromey.com>
12735
12736 * mi/mi-main.c (exec_direction_forward): Remove.
12737 (exec_reverse_continue, mi_execute_command): Use scoped_restore.
12738 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
12739 scoped_restore.
12740 * guile/guile.c (guile_repl_command, guile_command)
12741 (gdbscm_execute_gdb_command): Use scoped_restore.
12742 * go-exp.y (go_parse): Use scoped_restore.
12743 * d-exp.y (d_parse): Use scoped_restore.
12744 * cli/cli-decode.c (cmd_func): Use scoped_restore.
12745 * c-exp.y (c_parse): Use scoped_restore.
12746
12747 2017-04-12 Tom Tromey <tom@tromey.com>
12748
12749 * mi/mi-parse.h (struct mi_parse): Add constructor, destructor.
12750 (mi_parse): Update return type.
12751 (mi_parse_free): Remove.
12752 * mi/mi-parse.c (mi_parse::mi_parse): New constructor.
12753 (mi_parse::~mi_parse): Rename from mi_parse_free.
12754 (mi_parse_cleanup): Remove.
12755 (mi_parse): Return a unique_ptr. Use new.
12756 * mi/mi-main.c (mi_execute_command): Update.
12757
12758 2017-04-12 Tom Tromey <tom@tromey.com>
12759
12760 * location.c (explicit_location_lex_one): Return a
12761 unique_xmalloc_ptr.
12762 (string_to_explicit_location): Update. Remove cleanups.
12763
12764 2017-04-12 Tom Tromey <tom@tromey.com>
12765
12766 * gnu-v3-abi.c (value_and_voffset_p): Remove typedef.
12767 (compare_value_and_voffset): Change type. Update.
12768 (compute_vtable_size): Change type of "offset_vec".
12769 (gnuv3_print_vtable): Use std::vector. Remove cleanups.
12770 (gnuv3_get_typeid): Remove extraneous declaration.
12771
12772 2017-04-12 Tom Tromey <tom@tromey.com>
12773
12774 * charset.h (wchar_iterator): Fix comment.
12775
12776 2017-04-12 Tom Tromey <tom@tromey.com>
12777
12778 * charset.c (iconv_wrapper): New class.
12779 (cleanup_iconv): Remove.
12780 (convert_between_encodings): Use it.
12781
12782 2017-04-12 Tom Tromey <tom@tromey.com>
12783
12784 * symfile.h (increment_reading_symtab): Update type.
12785 * symfile.c (decrement_reading_symtab): Remove.
12786 (increment_reading_symtab): Return a scoped_restore_tmpl<int>.
12787 * psymtab.c (psymtab_to_symtab): Update.
12788 * dwarf2read.c (dw2_instantiate_symtab): Update.
12789
12790 2017-04-12 Tom Tromey <tom@tromey.com>
12791
12792 * jit.c (struct jit_reader): Declare separately. Add constructor
12793 and destructor. Change type of "handle".
12794 (loaded_jit_reader): Define separately.
12795 (jit_reader_load): Update. New "new".
12796 (jit_reader_unload_command): Use "delete".
12797 * gdb-dlfcn.h (struct dlclose_deleter): New.
12798 (gdb_dlhandle_up): New typedef.
12799 (gdb_dlopen, gdb_dlsym): Update types.
12800 (gdb_dlclose): Remove.
12801 * gdb-dlfcn.c (gdb_dlopen): Return a gdb_dlhandle_up.
12802 (gdb_dlsym): Change type of "handle".
12803 (make_cleanup_dlclose): Remove.
12804 (dlclose_deleter::operator()): Rename from gdb_dlclose.
12805 * compile/compile-c-support.c (load_libcc): Update.
12806
12807 2017-04-12 Tom Tromey <tom@tromey.com>
12808
12809 * symtab.h (find_pcs_for_symtab_line): Change return type.
12810 * symtab.c (find_pcs_for_symtab_line): Change return type.
12811 * python/py-linetable.c (build_line_table_tuple_from_pcs): Change
12812 type of "vec". Update.
12813 (ltpy_get_pcs_for_line): Update.
12814 * linespec.c (decode_digits_ordinary): Update.
12815
12816 2017-04-12 Tom Tromey <tom@tromey.com>
12817
12818 * tracepoint.c (actions_command): Update.
12819 * python/python.c (python_command, python_interactive_command):
12820 Update.
12821 * mi/mi-cmd-break.c (mi_cmd_break_commands): Update.
12822 * guile/guile.c (guile_command): Update.
12823 * defs.h (read_command_lines, read_command_lines_1): Return
12824 command_line_up.
12825 (command_lines_deleter): New struct.
12826 (command_line_up): New typedef.
12827 * compile/compile.c (compile_code_command)
12828 (compile_print_command): Update.
12829 * cli/cli-script.h (get_command_line, copy_command_lines): Return
12830 command_line_up.
12831 (make_cleanup_free_command_lines): Remove.
12832 * cli/cli-script.c (get_command_line, read_command_lines_1)
12833 (copy_command_lines): Return command_line_up.
12834 (while_command, if_command, read_command_lines, define_command)
12835 (document_command): Update.
12836 (do_free_command_lines_cleanup, make_cleanup_free_command_lines):
12837 Remove.
12838 * breakpoint.h (breakpoint_set_commands): Change type of
12839 "commands".
12840 * breakpoint.c (breakpoint_set_commands): Change type of
12841 "commands". Update.
12842 (do_map_commands_command, update_dprintf_command_list)
12843 (create_tracepoint_from_upload): Update.
12844
12845 2017-04-12 Tom Tromey <tom@tromey.com>
12846
12847 * tracepoint.c (scope_info): Update.
12848 * spu-tdep.c (spu_catch_start): Update.
12849 * python/python.c (gdbpy_decode_line): Update.
12850 * python/py-finishbreakpoint.c (bpfinishpy_init): Update.
12851 * python/py-breakpoint.c (bppy_init): Update.
12852 * probe.c (parse_probes): Update.
12853 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Update.
12854 * location.h (event_location_deleter): New struct.
12855 (event_location_up): New typedef.
12856 (new_linespec_location, new_address_location, new_probe_location)
12857 (new_explicit_location, copy_event_location)
12858 (string_to_event_location, string_to_event_location_basic)
12859 (string_to_explicit_location): Update return type.
12860 (make_cleanup_delete_event_location): Remove.
12861 * location.c (new_linespec_location, new_address_location)
12862 (new_probe_location, new_explicit_location, copy_event_location):
12863 Return event_location_up.
12864 (delete_event_location_cleanup)
12865 (make_cleanup_delete_event_location): Remove.
12866 (string_to_explicit_location, string_to_event_location_basic)
12867 (string_to_event_location): Return event_location_up.
12868 * linespec.c (canonicalize_linespec, event_location_to_sals)
12869 (decode_line_with_current_source)
12870 (decode_line_with_last_displayed, decode_objc): Update.
12871 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
12872 * completer.c (location_completer): Update.
12873 * cli/cli-cmds.c (edit_command, list_command): Update.
12874 * breakpoint.c (create_overlay_event_breakpoint)
12875 (create_longjmp_master_breakpoint)
12876 (create_std_terminate_master_breakpoint)
12877 (create_exception_master_breakpoint)
12878 (create_thread_event_breakpoint): Update.
12879 (init_breakpoint_sal): Update. Remove some dead code.
12880 (create_breakpoint_sal): Change type of "location". Update.
12881 (create_breakpoints_sal, create_breakpoint, break_command_1)
12882 (dprintf_command, break_range_command, until_break_command)
12883 (init_ada_exception_breakpoint)
12884 (strace_marker_create_sals_from_location)
12885 (update_static_tracepoint, trace_command, ftrace_command)
12886 (strace_command, create_tracepoint_from_upload): Update.
12887 * break-catch-throw.c (re_set_exception_catchpoint): Update.
12888 * ax-gdb.c (agent_command_1): Update.
12889
12890 2017-04-12 Pedro Alves <palves@redhat.com>
12891
12892 * Makefile.in (ALL_TARGET_OBS): Add i386-go32-tdep.o.
12893 * configure.tgt: Handle i[34567]86-*-go32* and
12894 i[34567]86-*-msdosdjgpp*.
12895 * i386-tdep.c (i386_svr4_reg_to_regnum):
12896 Make extern.
12897 (i386_go32_init_abi, i386_coff_osabi_sniffer): Moved to
12898 i386-go32-tdep.c.
12899 (_initialize_i386_tdep): DJGPP bits moved to i386-go32-tdep.c.
12900 * i386-go32-tdep.c: New file.
12901 * i386-tdep.h (tdesc_i386_mmx, i386_svr4_reg_to_regnum): New
12902 declarations.
12903
12904 2017-04-12 Simon Marchi <simon.marchi@ericsson.com>
12905
12906 * aix-thread.c (pd_status2str): Change return type to const char *.
12907
12908 2017-04-12 Pedro Alves <palves@redhat.com>
12909
12910 * i386-tdep.c (i386_elf_init_abi, i386_go32_init_abi): Remove
12911 calls to set_gdbarch_gnu_triplet_regexp.
12912
12913 2017-04-12 Pedro Alves <palves@redhat.com>
12914
12915 PR gdb/21323
12916 * c-lang.c (cplus_primitive_types) <cplus_primitive_type_wchar_t>:
12917 New enum value.
12918 (cplus_language_arch_info): Register cplus_primitive_type_wchar_t.
12919 * gdbtypes.h (struct builtin_type) <builtin_wchar>: New field.
12920 * gdbtypes.c (gdbtypes_post_init): Create the "wchar_t" type.
12921 * gdbarch.sh (wchar_bit, wchar_signed): New per-arch values.
12922 * gdbarch.h, gdbarch.c: Regenerate.
12923 * aarch64-tdep.c (aarch64_gdbarch_init): Override
12924 gdbarch_wchar_bit and gdbarch_wchar_signed.
12925 * alpha-tdep.c (alpha_gdbarch_init): Likewise.
12926 * arm-tdep.c (arm_gdbarch_init): Likewise.
12927 * avr-tdep.c (avr_gdbarch_init): Likewise.
12928 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
12929 * i386-nto-tdep.c (i386nto_init_abi): Likewise.
12930 * i386-tdep.c (i386_go32_init_abi): Likewise.
12931 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
12932 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
12933 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
12934 * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
12935 * sh-tdep.c (sh_gdbarch_init): Likewise.
12936 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
12937 * sparc64-tdep.c (sparc64_init_abi): Likewise.
12938 * windows-tdep.c (windows_init_abi): Likewise.
12939 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
12940
12941 2017-04-12 Pedro Alves <palves@redhat.com>
12942
12943 PR c++/21323
12944 * c-lang.c (cplus_primitive_types) <cplus_primitive_type_char16_t,
12945 cplus_primitive_type_char32_t>: New enum values.
12946 (cplus_language_arch_info): Register cplus_primitive_type_char16_t
12947 and cplus_primitive_type_char32_t.
12948 * dwarf2read.c (read_base_type) <DW_ATE_UTF>: If bit size is 16 or
12949 32, use the archtecture's built-in type for char16_t and char32_t,
12950 respectively. Otherwise, fallback to init_integer_type as before,
12951 but make the type unsigned, and issue a complaint.
12952 * gdbtypes.c (gdbtypes_post_init): Make char16_t and char32_t unsigned.
12953
12954 2017-04-12 Alan Hayward <alan.hayward@arm.com>
12955
12956 * m32r-tdep.c (M32R_ARG_REGISTER_SIZE): Added.
12957 (m32r_push_dummy_call): Use M32R_ARG_REGISTER_SIZE.
12958
12959 2017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
12960
12961 * windows-nat.c (windows_create_inferior): Declare 'toexec' as
12962 'const char *'.
12963
12964 2017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
12965
12966 * common/common-utils.c (free_vector_argv): New function.
12967 * common/common-utils.h: Include <vector>.
12968 (free_vector_argv): New prototype.
12969 * darwin-nat.c (darwin_create_inferior): Rewrite function
12970 prototype in order to constify "exec_file" and accept a
12971 "std::string" for "allargs".
12972 * fork-child.c: Include <vector>.
12973 (breakup_args): Rewrite function, using C++.
12974 (fork_inferior): Rewrite function header, constify "exec_file_arg"
12975 and accept "std::string" for "allargs". Update the code to
12976 calculate "argv" based on "allargs". Update calls to "exec_fun"
12977 and "execvp".
12978 * gnu-nat.c (gnu_create_inferior): Rewrite function prototype in
12979 order to constify "exec_file" and accept a "std::string" for
12980 "allargs".
12981 * go32-nat.c (go32_create_inferior): Likewise.
12982 * inf-ptrace.c (inf_ptrace_create_inferior): Likewise.
12983 * infcmd.c (run_command_1): Constify "exec_file". Use
12984 "std::string" for inferior arguments.
12985 * inferior.h (fork_inferior): Update prototype.
12986 * linux-nat.c (linux_nat_create_inferior): Rewrite function
12987 prototype in order to constify "exec_file" and accept a
12988 "std::string" for "allargs".
12989 * nto-procfs.c (procfs_create_inferior): Likewise.
12990 * procfs.c (procfs_create_inferior): Likewise.
12991 * remote-sim.c (gdbsim_create_inferior): Likewise.
12992 * remote.c (extended_remote_run): Update code to accept
12993 "std::string" as argument.
12994 (extended_remote_create_inferior): Rewrite function prototype in
12995 order to constify "exec_file" and accept a "std::string" for
12996 "allargs".
12997 * rs6000-nat.c (super_create_inferior): Likewise.
12998 (rs6000_create_inferior): Likewise.
12999 * target.h (struct target_ops) <to_create_inferior>: Likewise.
13000 * windows-nat.c (windows_create_inferior): Likewise.
13001
13002 2017-04-11 Pedro Alves <palves@redhat.com>
13003
13004 * thread.c: Fix whitespace throughout.
13005
13006 2017-04-11 Philipp Rudo <prudo@linux.vnet.ibm.com>
13007
13008 * linux-nat.c (linux_nat_detach): Remove delete_lwp call.
13009
13010 2017-04-11 Alan Hayward <alan.hayward@arm.com>
13011
13012 * arm-tdep.c (arm_store_return_value): Use FP_REGISTER_SIZE
13013
13014 2017-04-10 Sergio Durigan Junior <sergiodj@redhat.com>
13015
13016 PR gdb/21364
13017 * osdata.c (info_osdata): Check if 'type' is an empty string
13018 instead of NULL.
13019
13020 2017-04-10 Pedro Alves <palves@redhat.com>
13021
13022 * thread.c (add_thread_silent, delete_thread_1, find_thread_ptid)
13023 (ptid_to_global_thread_id, in_thread_list)
13024 (do_captured_list_thread_ids, set_resumed, set_running)
13025 (set_executing, set_stop_requested, finish_thread_state)
13026 (validate_registers_access, can_access_registers_ptid)
13027 (print_thread_info_1, switch_to_thread)
13028 (do_restore_current_thread_cleanup)
13029 (make_cleanup_restore_current_thread, thread_command)
13030 (thread_name_command): Use operator== instead of ptid_equal.
13031
13032 2017-04-10 Pedro Alves <palves@redhat.com>
13033
13034 * thread.c (struct current_thread_cleanup) <next>: Delete field.
13035 (current_thread_cleanup_chain): Delete.
13036 (restore_current_thread_cleanup_dtor)
13037 (make_cleanup_restore_current_thread): Remove references to
13038 current_thread_cleanup_chain.
13039
13040 2017-04-10 Alan Hayward <alan.hayward@arm.com>
13041
13042 * msp430-tdep.c (msp430_pseudo_register_read): Never return
13043 REG_UNKNOWN.
13044
13045 2017-04-10 Yao Qi <yao.qi@linaro.org>
13046
13047 PR gdb/19942
13048 * gdbthread.h (thread_info::deletable): New method.
13049 (thread_info::incref): New method.
13050 (thread_info::decref): New method.
13051 (thread_info::refcount): Move it to private.
13052 * infrun.c (save_stop_context): Call inc_refcount.
13053 (release_stop_context_cleanup): Likewise.
13054 * thread.c (set_thread_exited): New function.
13055 (init_thread_list): Delete "tp" only it is deletable, otherwise
13056 call set_thread_exited.
13057 (delete_thread_1): Call set_thread_exited.
13058 (current_thread_cleanup) <inferior_pid>: Remove.
13059 <thread>: New field.
13060 (restore_current_thread_ptid_changed): Removed.
13061 (do_restore_current_thread_cleanup): Adjust.
13062 (restore_current_thread_cleanup_dtor): Don't call
13063 find_thread_ptid.
13064 (set_thread_refcount): Use dec_refcount.
13065 (make_cleanup_restore_current_thread): Adjust.
13066 (thread_apply_all_command): Call inc_refcount.
13067 (_initialize_thread): Don't call
13068 observer_attach_thread_ptid_changed.
13069
13070 2017-04-10 Yao Qi <yao.qi@linaro.org>
13071
13072 * thread.c (delete_thread_1): Hoist code on marking thread as
13073 exited.
13074
13075 2017-04-09 Simon Marchi <simon.marchi@polymtl.ca>
13076
13077 * windows-nat.c (windows_detach): Initialize ptid with
13078 minus_one_ptid.
13079
13080 2017-04-07 Simon Marchi <simon.marchi@ericsson.com>
13081
13082 * unittests/ptid-selftests.c: Fix erroneous assert messages.
13083
13084 2017-04-07 Alan Hayward <alan.hayward@arm.com>
13085
13086 * bfin-tdep.c (BFIN_MAX_REGISTER_SIZE): Add.
13087 (bfin_pseudo_register_read): Use BFIN_MAX_REGISTER_SIZE.
13088 (bfin_pseudo_register_write): Likewise
13089
13090 2017-04-06 Simon Marchi <simon.marchi@ericsson.com>
13091
13092 * common/ptid.h (struct ptid): Change to...
13093 (class ptid_t): ... this.
13094 <ptid_t>: New constructors.
13095 <pid, lwp_p, lwp, tid_p, tid, is_pid, operator==, operator!=,
13096 matches>: New methods.
13097 <make_null, make_minus_one>: New static methods.
13098 <pid>: Rename to...
13099 <m_pid>: ...this.
13100 <lwp>: Rename to...
13101 <m_lwp>: ...this.
13102 <tid>: Rename to...
13103 <m_tid>: ...this.
13104 (ptid_build, ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal,
13105 ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match): Take ptid arguments
13106 as references, move comment to class ptid_t.
13107 * common/ptid.c (null_ptid, minus_one_ptid): Initialize with
13108 ptid_t static methods.
13109 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_tid,
13110 ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match):
13111 Take ptid arguments as references, implement using ptid_t methods.
13112 * unittests/ptid-selftests.c: New file.
13113 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
13114 unittests/ptid-selftests.c.
13115 (SUBDIR_UNITTESTS_OBS): Add unittests/ptid-selftests.o.
13116
13117 2017-04-06 Thomas Preud'homme <thomas.preudhomme@arm.com>
13118
13119 * python/python.c (python_run_simple_file): Cast mode literal to
13120 non-const char pointer as expected by PyFile_FromString.
13121
13122 2017-04-05 Simon Marchi <simon.marchi@ericsson.com>
13123
13124 * common/ptid.c (ptid_lwp_p, ptid_tid_p): Remove comparison with
13125 minus_one_ptid and null_ptid.
13126
13127 2017-04-05 Pedro Alves <palves@redhat.com>
13128
13129 * warning.m4 (build_warnings): Remove -Wno-write-strings.
13130 * configure: Regenerate.
13131
13132 2017-04-05 Pedro Alves <palves@redhat.com>
13133
13134 * ada-exp.y (yyerror): Constify.
13135 * ada-lang.c (bound_name, get_selections)
13136 (ada_variant_discrim_type)
13137 (ada_variant_discrim_name, ada_value_struct_elt)
13138 (ada_lookup_struct_elt_type, is_unchecked_variant)
13139 (ada_which_variant_applies, standard_exc, ada_get_next_arg)
13140 (catch_ada_exception_command_split)
13141 (catch_ada_assert_command_split, catch_assert_command)
13142 (ada_op_name): Constify.
13143 * ada-lang.h (ada_yyerror, get_selections)
13144 (ada_variant_discrim_name, ada_value_struct_elt): Constify.
13145 * arc-tdep.c (arc_print_frame_cache): Constify.
13146 * arm-tdep.c (arm_skip_stub): Constify.
13147 * ax-gdb.c (gen_binop, gen_struct_ref_recursive, gen_struct_ref)
13148 (gen_aggregate_elt_ref): Constify.
13149 * bcache.c (print_bcache_statistics): Constify.
13150 * bcache.h (print_bcache_statistics): Constify.
13151 * break-catch-throw.c (catch_exception_command_1):
13152 * breakpoint.c (struct ep_type_description::description):
13153 Constify.
13154 (add_solib_catchpoint): Constify.
13155 (catch_fork_command_1): Add cast.
13156 (add_catch_command): Constify.
13157 * breakpoint.h (add_catch_command, add_solib_catchpoint):
13158 Constify.
13159 * bsd-uthread.c (bsd_uthread_state): Constify.
13160 * buildsym.c (patch_subfile_names): Constify.
13161 * buildsym.h (next_symbol_text_func, patch_subfile_names):
13162 Constify.
13163 * c-exp.y (yyerror): Constify.
13164 (token::oper): Constify.
13165 * c-lang.h (c_yyerror, cp_print_class_member): Constify.
13166 * c-varobj.c (cplus_describe_child): Constify.
13167 * charset.c (find_charset_names): Add cast.
13168 (find_charset_names): Constify array and add const_cast.
13169 * cli/cli-cmds.c (complete_command, cd_command): Constify.
13170 (edit_command): Constify.
13171 * cli/cli-decode.c (lookup_cmd): Constify.
13172 * cli/cli-dump.c (dump_memory_command, dump_value_command):
13173 Constify.
13174 (struct dump_context): Constify.
13175 (add_dump_command, restore_command): Constify.
13176 * cli/cli-script.c (get_command_line): Constify.
13177 * cli/cli-script.h (get_command_line): Constify.
13178 * cli/cli-utils.c (check_for_argument): Constify.
13179 * cli/cli-utils.h (check_for_argument): Constify.
13180 * coff-pe-read.c (struct read_pe_section_data): Constify.
13181 * command.h (lookup_cmd): Constify.
13182 * common/print-utils.c (decimal2str): Constify.
13183 * completer.c (gdb_print_filename): Constify.
13184 * corefile.c (set_gnutarget): Constify.
13185 * cp-name-parser.y (yyerror): Constify.
13186 * cp-valprint.c (cp_print_class_member): Constify.
13187 * cris-tdep.c (cris_register_name, crisv32_register_name):
13188 Constify.
13189 * d-exp.y (yyerror): Constify.
13190 (struct token::oper): Constify.
13191 * d-lang.h (d_yyerror): Constify.
13192 * dbxread.c (struct header_file_location::name): Constify.
13193 (add_old_header_file, add_new_header_file, last_function_name)
13194 (dbx_next_symbol_text, add_bincl_to_list)
13195 (find_corresponding_bincl_psymtab, set_namestring)
13196 (find_stab_function_addr, read_dbx_symtab, start_psymtab)
13197 (dbx_end_psymtab, read_ofile_symtab, process_one_symbol):
13198 * defs.h (command_line_input, print_address_symbolic)
13199 (deprecated_readline_begin_hook): Constify.
13200 * dwarf2read.c (anonymous_struct_prefix, dwarf_bool_name):
13201 Constify.
13202 * event-top.c (handle_line_of_input): Constify and add cast.
13203 * exceptions.c (catch_errors): Constify.
13204 * exceptions.h (catch_errors): Constify.
13205 * expprint.c (print_subexp_standard, op_string, op_name)
13206 (op_name_standard, dump_raw_expression, dump_raw_expression):
13207 * expression.h (op_name, op_string, dump_raw_expression):
13208 Constify.
13209 * f-exp.y (yyerror): Constify.
13210 (struct token::oper): Constify.
13211 (struct f77_boolean_val::name): Constify.
13212 * f-lang.c (f_word_break_characters): Constify.
13213 * f-lang.h (f_yyerror): Constify.
13214 * fork-child.c (fork_inferior): Add cast.
13215 * frv-tdep.c (struct gdbarch_tdep::register_names): Constify.
13216 (new_variant): Constify.
13217 * gdbarch.sh (pstring_ptr, pstring_list): Constify.
13218 * gdbarch.c: Regenerate.
13219 * gdbcore.h (set_gnutarget): Constify.
13220 * go-exp.y (yyerror): Constify.
13221 (token::oper): Constify.
13222 * go-lang.h (go_yyerror): Constify.
13223 * go32-nat.c (go32_sysinfo): Constify.
13224 * guile/scm-breakpoint.c (gdbscm_breakpoint_expression): Constify.
13225 * guile/scm-cmd.c (cmdscm_function): Constify.
13226 * guile/scm-param.c (pascm_param_value): Constify.
13227 * h8300-tdep.c (h8300_register_name, h8300s_register_name)
13228 (h8300sx_register_name): Constify.
13229 * hppa-tdep.c (hppa32_register_name, hppa64_register_name):
13230 Constify.
13231 * ia64-tdep.c (ia64_register_names): Constify.
13232 * infcmd.c (construct_inferior_arguments): Constify.
13233 (path_command, attach_post_wait): Constify.
13234 * language.c (show_range_command, show_case_command)
13235 (unk_lang_error): Constify.
13236 * language.h (language_defn::la_error)
13237 (language_defn::la_name_of_this): Constify.
13238 * linespec.c (decode_line_2): Constify.
13239 * linux-thread-db.c (thread_db_err_str): Constify.
13240 * lm32-tdep.c (lm32_register_name): Constify.
13241 * m2-exp.y (yyerror): Constify.
13242 * m2-lang.h (m2_yyerror): Constify.
13243 * m32r-tdep.c (m32r_register_names): Constify and make static.
13244 * m68hc11-tdep.c (m68hc11_register_names): Constify.
13245 * m88k-tdep.c (m88k_register_name): Constify.
13246 * macroexp.c (appendmem): Constify.
13247 * mdebugread.c (fdr_name, add_data_symbol, parse_type)
13248 (upgrade_type, parse_external, parse_partial_symbols)
13249 (mdebug_next_symbol_text, cross_ref, mylookup_symbol, new_psymtab)
13250 (new_symbol): Constify.
13251 * memattr.c (mem_info_command): Constify.
13252 * mep-tdep.c (register_name_from_keyword): Constify.
13253 * mi/mi-cmd-env.c (mi_cmd_env_path, _initialize_mi_cmd_env):
13254 Constify.
13255 * mi/mi-cmd-stack.c (list_args_or_locals): Constify.
13256 * mi/mi-cmd-var.c (mi_cmd_var_show_attributes): Constify.
13257 * mi/mi-main.c (captured_mi_execute_command): Constify and add
13258 cast.
13259 (mi_execute_async_cli_command): Constify.
13260 * mips-tdep.c (mips_register_name): Constify.
13261 * mn10300-tdep.c (register_name, mn10300_generic_register_name)
13262 (am33_register_name, am33_2_register_name)
13263 * moxie-tdep.c (moxie_register_names): Constify.
13264 * nat/linux-osdata.c (osdata_type): Constify fields.
13265 * nto-tdep.c (nto_parse_redirection): Constify.
13266 * objc-lang.c (lookup_struct_typedef, lookup_objc_class)
13267 (lookup_child_selector): Constify.
13268 (objc_methcall::name): Constify.
13269 * objc-lang.h (lookup_objc_class, lookup_child_selector)
13270 (lookup_struct_typedef): Constify.
13271 * objfiles.c (pc_in_section): Constify.
13272 * objfiles.h (pc_in_section): Constify.
13273 * p-exp.y (struct token::oper): Constify.
13274 (yyerror): Constify.
13275 * p-lang.h (pascal_yyerror): Constify.
13276 * parser-defs.h (op_name_standard): Constify.
13277 (op_print::string): Constify.
13278 (exp_descriptor::op_name): Constify.
13279 * printcmd.c (print_address_symbolic): Constify.
13280 * psymtab.c (print_partial_symbols): Constify.
13281 * python/py-breakpoint.c (stop_func): Constify.
13282 (bppy_get_expression): Constify.
13283 * python/py-cmd.c (cmdpy_completer::name): Constify.
13284 (cmdpy_function): Constify.
13285 * python/py-event.c (evpy_add_attribute)
13286 (gdbpy_initialize_event_generic): Constify.
13287 * python/py-event.h (evpy_add_attribute)
13288 (gdbpy_initialize_event_generic): Constify.
13289 * python/py-evts.c (add_new_registry): Constify.
13290 * python/py-finishbreakpoint.c (outofscope_func): Constify.
13291 * python/py-framefilter.c (get_py_iter_from_func): Constify.
13292 * python/py-inferior.c (get_buffer): Add cast.
13293 * python/py-param.c (parm_constant::name): Constify.
13294 * python/py-unwind.c (fprint_frame_id): Constify.
13295 * python/python.c (gdbpy_parameter_value): Constify.
13296 * remote-fileio.c (remote_fio_func_map): Make 'name' const.
13297 * remote.c (memory_packet_config::name): Constify.
13298 (show_packet_config_cmd, remote_write_bytes)
13299 (remote_buffer_add_string):
13300 * reverse.c (exec_reverse_once): Constify.
13301 * rs6000-tdep.c (variant::name, variant::description): Constify.
13302 * rust-exp.y (rustyyerror): Constify.
13303 * rust-lang.c (rust_op_name): Constify.
13304 * rust-lang.h (rustyyerror): Constify.
13305 * serial.h (serial_ops::name): Constify.
13306 * sh-tdep.c (sh_sh_register_name, sh_sh3_register_name)
13307 (sh_sh3e_register_name, sh_sh2e_register_name)
13308 (sh_sh2a_register_name, sh_sh2a_nofpu_register_name)
13309 (sh_sh_dsp_register_name, sh_sh3_dsp_register_name)
13310 (sh_sh4_register_name, sh_sh4_nofpu_register_name)
13311 (sh_sh4al_dsp_register_name): Constify.
13312 * sh64-tdep.c (sh64_register_name): Constify.
13313 * solib-darwin.c (lookup_symbol_from_bfd): Constify.
13314 * spu-tdep.c (spu_register_name, info_spu_dma_cmdlist): Constify.
13315 * stabsread.c (patch_block_stabs, read_type_number)
13316 (ref_map::stabs, ref_add, process_reference)
13317 (symbol_reference_defined, define_symbol, define_symbol)
13318 (error_type, read_type, read_member_functions, read_cpp_abbrev)
13319 (read_one_struct_field, read_struct_fields, read_baseclasses)
13320 (read_tilde_fields, read_struct_type, read_array_type)
13321 (read_enum_type, read_sun_builtin_type, read_sun_floating_type)
13322 (read_huge_number, read_range_type, read_args, common_block_start)
13323 (find_name_end): Constify.
13324 * stabsread.h (common_block_start, define_symbol)
13325 (process_one_symbol, symbol_reference_defined, ref_add):
13326 * symfile.c (get_section_index, add_symbol_file_command):
13327 * symfile.h (get_section_index): Constify.
13328 * target-descriptions.c (tdesc_type::name): Constify.
13329 (tdesc_free_type): Add cast.
13330 * target.c (find_default_run_target):
13331 (add_deprecated_target_alias, find_default_run_target)
13332 (target_announce_detach): Constify.
13333 (do_option): Constify.
13334 * target.h (add_deprecated_target_alias): Constify.
13335 * thread.c (print_thread_info_1): Constify.
13336 * top.c (deprecated_readline_begin_hook, command_line_input):
13337 Constify.
13338 (init_main): Add casts.
13339 * top.h (handle_line_of_input): Constify.
13340 * tracefile-tfile.c (tfile_write_uploaded_tsv): Constify.
13341 * tracepoint.c (tvariables_info_1, trace_status_mi): Constify.
13342 (tfind_command): Rename to ...
13343 (tfind_command_1): ... this and constify.
13344 (tfind_command): New function.
13345 (tfind_end_command, tfind_start_command): Adjust.
13346 (encode_source_string): Constify.
13347 * tracepoint.h (encode_source_string): Constify.
13348 * tui/tui-data.c (tui_partial_win_by_name): Constify.
13349 * tui/tui-data.h (tui_partial_win_by_name): Constify.
13350 * tui/tui-source.c (tui_set_source_content_nil): Constify.
13351 * tui/tui-source.h (tui_set_source_content_nil): Constify.
13352 * tui/tui-win.c (parse_scrolling_args): Constify.
13353 * tui/tui-windata.c (tui_erase_data_content): Constify.
13354 * tui/tui-windata.h (tui_erase_data_content): Constify.
13355 * tui/tui-winsource.c (tui_erase_source_content): Constify.
13356 * tui/tui.c (tui_enable): Add cast.
13357 * utils.c (defaulted_query): Constify.
13358 (init_page_info): Add cast.
13359 (puts_debug, subset_compare): Constify.
13360 * utils.h (subset_compare): Constify.
13361 * varobj.c (varobj_format_string): Constify.
13362 * varobj.h (varobj_format_string): Constify.
13363 * vax-tdep.c (vax_register_name): Constify.
13364 * windows-nat.c (windows_detach): Constify.
13365 * xcoffread.c (process_linenos, xcoff_next_symbol_text): Constify.
13366 * xml-support.c (gdb_xml_end_element): Constify.
13367 * xml-tdesc.c (tdesc_start_reg): Constify.
13368 * xstormy16-tdep.c (xstormy16_register_name): Constify.
13369 * xtensa-tdep.c (xtensa_find_register_by_name): Constify.
13370 * xtensa-tdep.h (xtensa_register_t::name): Constify.
13371
13372 2017-04-05 Pedro Alves <palves@redhat.com>
13373
13374 * proc-api.c (struct trans): Constify.
13375 (procfs_note): Constify.
13376 * proc-events.c (struct trans, syscall_table):
13377 * proc-flags.c (struct trans): Constify.
13378 * proc-utils.h (procfs_note): Constify.
13379 * proc-why.c (struct trans): Constify.
13380 * procfs.c (dead_procinfo, find_syscall, proc_warn, proc_error)
13381 (procfs_detach): Constify.
13382 * sol-thread.c (struct string_map): Constify.
13383 (td_err_string, td_state_string): Constify.
13384
13385 2017-04-05 Pedro Alves <palves@redhat.com>
13386
13387 * proc-api.c (procfs_filename): Don't initialize
13388 procfs_filename.
13389 (prepare_to_trace): Assume procfs_filename is non-NULL.
13390 (_initialize_proc_api): Give procfs_filename a default value here.
13391
13392 2017-04-05 Pedro Alves <palves@redhat.com>
13393
13394 * break-catch-throw.c (handle_gnu_v3_exceptions): Constify
13395 'cond_string' parameter.
13396 (extract_exception_regexp): Constify 'string' parameter.
13397 (catch_exception_command_1): Constify.
13398 * breakpoint.c (init_catchpoint)
13399 (create_fork_vfork_event_catchpoint): Constify 'cond_string'
13400 parameter.
13401 (ep_parse_optional_if_clause, catch_fork_command_1)
13402 (catch_exec_command_1): Constify.
13403 * breakpoint.h (init_catchpoint): Constify 'cond_string'
13404 parameter.
13405 (ep_parse_optional_if_clause): Constify.
13406 * cli/cli-utils.c (remove_trailing_whitespace)
13407 (check_for_argument): Constify.
13408 * cli/cli-utils.h (remove_trailing_whitespace): Constify and add
13409 non-const overload.
13410 (check_for_argument): Likewise.
13411
13412 2017-04-05 Pedro Alves <palves@redhat.com>
13413
13414 * event-top.c (command_line_handler): Add cast to execute_command
13415 call.
13416 * record-btrace.c (cmd_record_btrace_bts_start)
13417 (cmd_record_btrace_pt_start, cmd_record_btrace_start)
13418 (cmd_record_btrace_start): Add cast to execute_command call.
13419 * record-full.c (record_full_goto_insn):
13420 * record.c (record_start, record_stop): Add cast to
13421 execute_command_to_string calls.
13422 (cmd_record_start): Add cast to execute_command calls.
13423
13424 2017-04-05 Pedro Alves <palves@redhat.com>
13425
13426 * python/python-internal.h (gdb_PyArg_ParseTupleAndKeywords): New
13427 static inline function.
13428 * python/py-arch.c (archpy_disassemble): Constify 'keywords'
13429 array and use gdb_PyArg_ParseTupleAndKeywords.
13430 * python/py-cmd.c (cmdpy_init): Likewise.
13431 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
13432 * python/py-inferior.c (infpy_read_memory, infpy_write_memory)
13433 (infpy_search_memory): Likewise.
13434 * python/py-objfile.c (objfpy_add_separate_debug_file)
13435 (gdbpy_lookup_objfile): Likewise.
13436 * python/py-symbol.c (gdbpy_lookup_symbol)
13437 (gdbpy_lookup_global_symbol): Likewise.
13438 * python/py-type.c (gdbpy_lookup_type): Likewise.
13439 * python/py-value.c (valpy_lazy_string, valpy_string): Likewise.
13440 * python/python.c (execute_gdb_command, gdbpy_write, gdbpy_flush):
13441 Likewise.
13442
13443 2017-04-05 Pedro Alves <palves@redhat.com>
13444
13445 * python/python-internal.h (gdb_PyGetSetDef): New type.
13446 * python/py-block.c (block_object_getset)
13447 (breakpoint_object_getset): Now a gdb_PyGetSetDef array.
13448 * python/py-event.c (event_object_getset)
13449 (finish_breakpoint_object_getset): Likewise.
13450 * python/py-inferior.c (inferior_object_getset): Likewise.
13451 * python/py-infthread.c (thread_object_getset): Likewise.
13452 * python/py-lazy-string.c (lazy_string_object_getset): Likewise.
13453 * python/py-linetable.c (linetable_entry_object_getset): Likewise.
13454 * python/py-objfile.c (objfile_getset): Likewise.
13455 * python/py-progspace.c (pspace_getset): Likewise.
13456 * python/py-record-btrace.c (btpy_insn_getset, btpy_call_getset):
13457 Likewise.
13458 * python/py-record.c (recpy_record_getset): Likewise.
13459 * python/py-symbol.c (symbol_object_getset): Likewise.
13460 * python/py-symtab.c (symtab_object_getset, sal_object_getset):
13461 Likewise.
13462 * python/py-type.c (type_object_getset, field_object_getset):
13463 Likewise.
13464 * python/py-value.c (value_object_getset): Likewise.
13465
13466 2017-04-05 Pedro Alves <palves@redhat.com>
13467
13468 * python/python-internal.h (gdb_PyObject_CallMethod)
13469 (gdb_PyErr_NewException, gdb_PySys_GetObject, gdb_PySys_SetPath):
13470 New functions.
13471 (GDB_PYSYS_SETPATH_CHAR, PyObject_CallMethod, PyErr_NewException)
13472 (PySys_GetObject, PySys_SetPath): New macros.
13473
13474 2017-04-05 Pedro Alves <palves@redhat.com>
13475
13476 * mi/mi-cmd-info.c (mi_cmd_info_os): Call info_osdata instead of
13477 info_osdata_command.
13478 * osdata.c (info_osdata_command): Rename to ...
13479 (info_osdata): ... this. Constify 'type' parameter, and remove
13480 the 'from_tty' parameter. Accept NULL TYPE.
13481 (info_osdata_command): New function.
13482 * osdata.h (info_osdata_command): Remove declaration.
13483 (info_osdata): New declaration.
13484
13485 2017-04-05 Pedro Alves <palves@redhat.com>
13486
13487 * mi/mi-cmd-break.c (mi_cmd_break_insert_1, mi_cmd_break_insert)
13488 (mi_cmd_dprintf_insert, mi_cmd_break_passcount)
13489 (mi_cmd_break_watch, mi_cmd_break_commands): Constify 'command'
13490 parameter.
13491 * mi/mi-cmd-catch.c (mi_cmd_catch_assert, mi_cmd_catch_exception)
13492 (mi_cmd_catch_load, mi_cmd_catch_unload): Constify cmd' parameter.
13493 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Constify 'command'
13494 parameter.
13495 * mi/mi-cmd-env.c (mi_cmd_env_pwd, mi_cmd_env_cd, mi_cmd_env_path)
13496 (mi_cmd_env_dir, mi_cmd_inferior_tty_set, _cmd_inferior_tty_show)
13497 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
13498 (mi_cmd_file_list_exec_source_files)
13499 (mi_cmd_file_list_shared_libraries): Constify 'command' parameter.
13500 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
13501 (mi_cmd_info_gdb_mi_command, mi_cmd_info_os): Constify 'command'
13502 parameter.
13503 * mi/mi-cmd-stack.c (mi_cmd_enable_frame_filters)
13504 (mi_cmd_stack_list_frames, mi_cmd_stack_info_depth)
13505 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
13506 (mi_cmd_stack_list_variables, mi_cmd_stack_select_frame)
13507 (mi_cmd_stack_info_frame): Constify 'command' parameter.
13508 * mi/mi-cmd-target.c (mi_cmd_target_file_get)
13509 (mi_cmd_target_file_put, mi_cmd_target_file_delete): Constify
13510 'command' parameter.
13511 * mi/mi-cmd-var.c (mi_cmd_var_create, mi_cmd_var_delete)
13512 (mi_cmd_var_set_format, mi_cmd_var_set_visualizer)
13513 (mi_cmd_var_set_frozen, mi_cmd_var_show_format)
13514 (mi_cmd_var_info_num_children, mi_cmd_var_list_children)
13515 (mi_cmd_var_info_type, mi_cmd_var_info_path_expression)
13516 (mi_cmd_var_info_expression, mi_cmd_var_show_attributes)
13517 (mi_cmd_var_evaluate_expression, mi_cmd_var_assign)
13518 (mi_cmd_var_update, mi_cmd_enable_pretty_printing)
13519 (mi_cmd_var_set_update_range): Constify 'command' parameter.
13520 * mi/mi-cmds.h (mi_cmd_argv_ftype): Constify 'command' parameter.
13521 * mi/mi-interp.c (mi_cmd_interpreter_exec): Constify 'command'
13522 parameter.
13523 * mi/mi-main.c (mi_cmd_gdb_exit, mi_cmd_exec_next)
13524 (mi_cmd_exec_next_instruction, mi_cmd_exec_step)
13525 (mi_cmd_exec_step_instruction, mi_cmd_exec_finish)
13526 (mi_cmd_exec_return ,mi_cmd_exec_jump, mi_cmd_exec_continue)
13527 (mi_cmd_exec_interrupt, mi_cmd_exec_run, mi_cmd_target_detach)
13528 (mi_cmd_target_flash_erase, mi_cmd_thread_select)
13529 (mi_cmd_thread_list_ids, mi_cmd_thread_info)
13530 (mi_cmd_list_thread_groups, mi_cmd_data_list_register_names)
13531 (mi_cmd_data_list_changed_registers)
13532 (mi_cmd_data_write_register_values)
13533 (mi_cmd_data_evaluate_expression, mi_cmd_data_read_memory)
13534 (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory)
13535 (mi_cmd_data_write_memory_bytes, mi_cmd_enable_timings)
13536 (mi_cmd_list_features, mi_cmd_list_target_features)
13537 (mi_cmd_add_inferior, mi_cmd_remove_inferior)
13538 (mi_cmd_trace_define_variable, mi_cmd_trace_list_variables)
13539 (mi_cmd_trace_find, mi_cmd_trace_save, mi_cmd_trace_start)
13540 (mi_cmd_trace_status, mi_cmd_trace_stop, mi_cmd_ada_task_info)
13541 (mi_cmd_trace_frame_collected): Constify 'command'
13542 parameter.
13543 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Constify
13544 'command' parameter.
13545
13546 2017-04-05 Pedro Alves <palves@redhat.com>
13547
13548 * ada-lang.c (ada_completer_word_break_characters): Now a const
13549 array.
13550 (ada_get_gdb_completer_word_break_characters): Constify.
13551 * completer.c (gdb_completer_command_word_break_characters)
13552 (gdb_completer_file_name_break_characters)
13553 (gdb_completer_quote_characters): Now const arrays.
13554 (get_gdb_completer_quote_characters): Constify.
13555 (set_rl_completer_word_break_characters): New function.
13556 (set_gdb_completion_word_break_characters)
13557 (complete_line_internal): Use it.
13558 * completer.h (get_gdb_completer_quote_characters): Constify.
13559 (set_rl_completer_word_break_characters): Declare.
13560 * f-lang.c (f_word_break_characters): Constify.
13561 * language.c (default_word_break_characters): Constify.
13562 * language.h (language_defn::la_word_break_characters): Constify.
13563 (default_word_break_characters): Constify.
13564 * top.c (init_main): Use set_rl_completer_word_break_characters.
13565
13566 2017-04-05 Pedro Alves <palves@redhat.com>
13567
13568 * aix-thread.c (aix_thread_pid_to_str)
13569 (aix_thread_extra_thread_info): Constify.
13570 * bsd-kvm.c (bsd_kvm_pid_to_str): Constify.
13571 * bsd-uthread.c (bsd_uthread_extra_thread_info)
13572 (bsd_uthread_pid_to_str): Constify.
13573 * corelow.c (core_pid_to_str): Constify.
13574 * darwin-nat.c (darwin_pid_to_str): Constify.
13575 * fbsd-nat.c (fbsd_pid_to_str): Constify.
13576 * fbsd-tdep.c (fbsd_core_pid_to_str, gdbarch_core_pid_to_str):
13577 Constify.
13578 * gnu-nat.c (gnu_pid_to_str): Constify.
13579 * go32-nat.c (go32_pid_to_str): Constify.
13580 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Constify.
13581 * inf-ptrace.c (inf_ptrace_pid_to_str): Constify.
13582 * inferior.c (inferior_pid_to_str): Constify.
13583 * linux-nat.c (linux_nat_pid_to_str): Constify.
13584 * linux-tdep.c (linux_core_pid_to_str): Constify.
13585 * linux-thread-db.c (thread_db_pid_to_str)
13586 (thread_db_extra_thread_info): Constify.
13587 * nto-tdep.c (nto_extra_thread_info): Constify.
13588 * nto-tdep.h (nto_extra_thread_info): Constify.
13589 * obsd-nat.c (obsd_pid_to_str): Constify.
13590 * procfs.c (procfs_pid_to_str): Constify.
13591 * ravenscar-thread.c (ravenscar_extra_thread_info)
13592 (ravenscar_pid_to_str): Constify.
13593 * remote-sim.c (gdbsim_pid_to_str): Constify.
13594 * remote.c (remote_threads_extra_info, remote_pid_to_str):
13595 Constify.
13596 * sol-thread.c (solaris_pid_to_str): Constify.
13597 * sol2-tdep.c (sol2_core_pid_to_str): Constify.
13598 * sol2-tdep.h (sol2_core_pid_to_str): Constify.
13599 * target.c (default_pid_to_str, target_pid_to_str)
13600 (normal_pid_to_str, default_pid_to_str): Constify.
13601 * target.h (target_ops::to_pid_to_str)
13602 (target_ops::to_extra_thread_info): Constify.
13603 (target_pid_to_str, normal_pid_to_str): Constify.
13604 * windows-nat.c (windows_pid_to_str): Constify.
13605 * gdbarch.sh (core_pid_to_str): Constify.
13606 * target-delegates.c: Regenerate.
13607 * gdbarch.h, gdbarch.c: Regenerate.
13608
13609 2017-04-05 Pedro Alves <palves@redhat.com>
13610
13611 * main.c (captured_main_1): Use gdb::unique_xmalloc_ptr to manage
13612 the memory of the temporary warning_pre_print override.
13613 * utils.c (warning_pre_print): Constify.
13614 * utils.h (warning_pre_print): Constify.
13615
13616 2017-04-05 Pedro Alves <palves@redhat.com>
13617
13618 * cli/cli-cmds.c (shell_escape): Constify 'arg' parameter.
13619 (shell_command): New function.
13620 (make_command): Use std::string.
13621 (init_cli_cmds): Register shell_command instead of shell_escape.
13622
13623 2017-04-05 Pedro Alves <palves@redhat.com>
13624
13625 * breakpoint.c (dprintf_function, dprintf_channel): Don't initialize.
13626 * tracepoint.c (default_collect): Don't initialize.
13627
13628 2017-04-05 Pedro Alves <palves@redhat.com>
13629
13630 * macroexp.c (macro_buffer::shared): Now a bool.
13631 (init_buffer): Update.
13632 (init_shared_buffer): Constify 'addr' parameter.
13633 (substitute_args, expand, macro_expand, macro_expand_next): Remove
13634 casts.
13635
13636 2017-04-05 Pedro Alves <palves@redhat.com>
13637
13638 * arm-tdep.c (show_disassembly_style_sfunc): Constify local.
13639 * disasm.c (set_disassembler_options): Constify local.
13640 * i386-tdep.c (i386_print_insn): Remove cast and FIXME comment.
13641
13642 2017-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
13643
13644 PR gdb/21352
13645 * tracefile.c (tsave_command): Fix argument parsing for '-r'
13646 option.
13647
13648 2017-04-05 Yao Qi <yao.qi@linaro.org>
13649
13650 * frame.c (frame_unwind_register_unsigned): Call
13651 frame_unwind_register_value.
13652
13653 2017-04-05 Yao Qi <yao.qi@linaro.org>
13654
13655 * gdb.threads/thread-specific-bp.exp (check_thread_specific_breakpoint):
13656 Use gdb_test_multiple, and don't match anchor.
13657
13658 2017-04-05 Pedro Alves <palves@redhat.com>
13659
13660 * MAINTAINERS (Global Maintainers): Add Simon Marchi.
13661 (Write After Approval): Remove Simon Marchi.
13662
13663 2017-04-05 Pedro Alves <palves@redhat.com>
13664
13665 * common/gdb_optional.h (optional::optional): Make constexpr and
13666 initialize m_dummy.
13667
13668 2017-04-04 John Baldwin <jhb@FreeBSD.org>
13669
13670 * amd64-fbsd-tdep.c: Remove "bsd-uthread.h" include.
13671 (amd64fbsd_jmp_buf_reg_offset): Remove.
13672 (amd64fbsd_supply_uthread): Remove function.
13673 (amd64fbsd_collect_uthread): Remove function.
13674 (amd64fbsd_init_abi): Don't set bsd-uthread callbacks.
13675 * configure.tgt (i[34567]86-*-freebsd*): Remove bsd-uthread.o.
13676 (x86_64-*-freebsd*): Remove bsd-uthread.o.
13677 (fbsd-nat.c): Update comment.
13678 * i386-fbsd-tdep.c: Remove "bsd-uthread.h" include.
13679 (i386fbsd_jmp_buf_reg_offset): Remove.
13680 (i386fbsd_supply_uthread): Remove function.
13681 (i386fbsd_collect_uthread): Remove function.
13682 (i386fbsd_init_abi): Don't set bsd-uthread callbacks.
13683
13684 2017-04-04 John Baldwin <jhb@FreeBSD.org>
13685
13686 * Makefile.in (ALL_64_TARGET_OBS): Remove alpha-fbsd-tdep.o.
13687 (ALLDEPFILES): Remove alpha-fbsd-tdep.c
13688 * NEWS: Mention that support for FreeBSD/alpha was removed.
13689 * alpha-fbsd-tdep.c: Delete file.
13690 * config/alpha/fbsd.mh: Delete file.
13691 * configure.host: Delete alpha*-*-freebsd* and
13692 alpha*-*-kfreebsd*-gnu.
13693 * configure.tgt: Delete alpha*-*-freebsd* and
13694 alpha*-*-kfreebsd*-gnu.
13695
13696 2017-04-04 John Baldwin <jhb@FreeBSD.org>
13697
13698 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers,
13699 amd64bsd_store_inferior_registers): Use ptid from regcache.
13700
13701 2017-04-04 Pedro Alves <palves@redhat.com>
13702
13703 * dwarf2read.c (lnp_state_machine): Now a class. Initialize all
13704 data fields, make them private and add "m_" prefixes.
13705 (lnp_state_machine::lnp_state_machine): New ctor.
13706 (record_line, check_line_address, handle_set_discriminator)
13707 (handle_set_address, handle_advance_pc, handle_special_opcode)
13708 (handle_advance_line, handle_set_file, handle_negate_stmt)
13709 (handle_const_add_pc, handle_fixed_advance_pc, handle_copy)
13710 (end_sequence, advance_line): New methods.
13711 (m_gdbarch, m_record_lines_p): New fields.
13712 (lnp_reader_state): Delete.
13713 (dwarf_record_line): Rename to ...
13714 (lnp_state_machine::record_line): ... adjust.
13715 (init_lnp_state_machine): Delete.
13716 (lnp_state_machine::lnp_state_machine): New.
13717 (check_line_address): Rename to ...
13718 (lnp_state_machine::check_line_address): This.
13719 (dwarf_decode_lines_1): Remove reference to "reader_state".
13720 Adjust lnp_state_machine having a non-default ctor. Use bool.
13721 State machine internal state manipulation moved to
13722 lnp_state_machine methods.
13723
13724 2017-04-04 Pedro Alves <palves@redhat.com>
13725
13726 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
13727 unittests/offset-type-selftests.c.
13728 (SUBDIR_UNITTESTS_OBS): Add offset-type-selftests.o.
13729 * common/offset-type.h: New file.
13730 * common/preprocessor.h: New file.
13731 * common/traits.h: New file.
13732 * common/valid-expr.h: New file.
13733 * dwarf2expr.c: Include "common/underlying.h". Adjust to use
13734 sect_offset and cu_offset strong typedefs throughout.
13735 * dwarf2expr.h: Adjust to use sect_offset and cu_offset strong
13736 typedefs throughout.
13737 * dwarf2loc.c: Include "common/underlying.h". Adjust to use
13738 sect_offset and cu_offset strong typedefs throughout.
13739 * dwarf2read.c: Adjust to use sect_offset and cu_offset strong
13740 typedefs throughout.
13741 * gdbtypes.h: Include "common/offset-type.h".
13742 (cu_offset): Now an offset type (strong typedef) instead of a
13743 struct.
13744 (sect_offset): Likewise.
13745 (union call_site_parameter_u): Rename "param_offset" field to
13746 "param_cu_off".
13747 * unittests/offset-type-selftests.c: New file.
13748
13749 2017-04-04 Pedro Alves <palves@redhat.com>
13750
13751 * common/underlying.h: New file.
13752 * dwarf2read.c: Include "common/gdb_optional.h" and
13753 "common/underlying.h".
13754 (dir_index, file_name_index): New types.
13755 (file_entry): Use them.
13756 (file_entry::include): Use to_underlying.
13757 (line_header::add_file_name): Use dir_index.
13758 (read_formatted_entries): Use gdb::optional. Read form before
13759 writting to file_entry.
13760 (dwarf_decode_line_header): Use dir_index.
13761 (lnp_state_machine::current_file): Use to_underlying.
13762 (lnp_state_machine::file): Change type to file_name_index.
13763 (dwarf_record_line): Use to_underlying.
13764 (init_lnp_state_machine): Use file_name_index.
13765 (dwarf_decode_lines_1): Use dir_index and file_name_index.
13766
13767 2017-04-04 Pedro Alves <palves@redhat.com>
13768
13769 * common/gdb_optional.h (gdb::optiona): Add operator->, operator*,
13770 operator bool, has_value and get methods.
13771
13772 2017-04-04 Pedro Alves <palves@redhat.com>
13773
13774 * dwarf2read.c (struct file_entry): Add ctors, and initialize all
13775 fields.
13776 (line_header): Initialize all data fields. Change type of
13777 standard_opcode_lengths to std::unique_ptr<unsigned char[]>.
13778 Change type of include_dirs to std::vector<const char *>. Remove
13779 num_include_dirs, include_dirs_size. Change type of file_names to
13780 std::vector<file_entry>. Remove num_file_names, file_names_size.
13781 (line_header::line_header): New.
13782 (line_header::add_include_dir, line_header::add_file_name): New
13783 methods.
13784 (line_header::include_dir_at): Remove NULL check.
13785 (line_header::file_name_at): Add const overload.
13786 (line_header_up): New unique_ptr typedef.
13787 (dw2_get_file_names_reader): Use line_header_up. Adjust to use
13788 std::vector. Remove free_line_header call.
13789 (dwarf2_build_include_psymtabs): Use line_header_up. Remove
13790 free_line_header call.
13791 (free_cu_line_header): Delete.
13792 (handle_DW_AT_stmt_list, handle_DW_AT_stmt_list)
13793 (setup_type_unit_groups): Use line_header_up instead of cleanups.
13794 Adjust to use std::vector.
13795 (free_line_header): Delete.
13796 (free_line_header_voidp): Use delete.
13797 (add_include_dir): Replace with ...
13798 (line_header::add_include_dir): ... this method. Use std::vector.
13799 (add_file_name): Replace with ...
13800 (line_header::add_file_name): ... this method. Use std::vector.
13801 (add_include_dir_stub): Delete.
13802 (read_formatted_entries): Remove memset.
13803 (dwarf_decode_line_header): Return a line_header_up instead of a
13804 raw pointer. Remove cleanup handling. Pass lambdas to
13805 read_formatted_entries. Adjust to use line_header methods.
13806 (dwarf_decode_lines_1): Adjust to use line_header methods.
13807 (dwarf_decode_lines, file_file_name, file_full_name): Adjust to
13808 use std::vector.
13809
13810 2017-04-04 Simon Marchi <simon.marchi@polymtl.ca>
13811
13812 * remote.c (set_general_thread, set_continue_thread): Use ptid_t
13813 instead of struct ptid.
13814
13815 2017-05-04 Alan Hayward <alan.hayward@arm.com>
13816
13817 * frame.c (get_frame_register_bytes): Unwind using value.
13818 (put_frame_register_bytes): Likewise.
13819
13820 2017-03-30 Iain Buclaw <ibuclaw@gdcproject.org>
13821
13822 * d-exp.y (type_aggregate_p): Treat TYPE_CODE_MODULE as being
13823 aggregate-like.
13824
13825 2017-03-29 Jan Kratochvil <jan.kratochvil@redhat.com>
13826
13827 * auto-load.c (auto_load_section_scripts): Check SEC_HAS_CONTENTS.
13828
13829 2017-03-29 Yao Qi <yao.qi@linaro.org>
13830
13831 * gdbthread.h (struct thread_info): Declare constructor and
13832 destructor. Add some in-class member initializers.
13833 * thread.c (free_thread): Remove.
13834 (init_thread_list): Call delete instead of free_thread.
13835 (new_thread): Call thread_info constructor.
13836 (thread_info::thread_info): New function.
13837 (thread_info::~thread_info): New function.
13838 (delete_thread_1): Call delete instead of free_thread.
13839 (make_cleanup_restore_current_thread): Move tp and frame to
13840 inner block.
13841
13842 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
13843
13844 * arc-tdep.c (arc_frame_cache): Add support for prologue analysis.
13845 (arc_skip_prologue): Likewise.
13846 (arc_make_frame_cache): Likewise.
13847 (arc_pv_get_operand): New function.
13848 (arc_is_in_prologue): Likewise.
13849 (arc_analyze_prologue): Likewise.
13850 (arc_print_frame_cache): Likewise.
13851 (MAX_PROLOGUE_LENGTH): New constant.
13852
13853 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
13854
13855 * configure.tgt: Add arc-insn.o.
13856 * arc-tdep.c (arc_delayed_print_insn): Make non-static.
13857 (dump_arc_instruction_command): New function.
13858 (arc_fprintf_disasm): Likewise.
13859 (arc_disassemble_info): Likewise.
13860 (arc_insn_get_operand_value): Likewise.
13861 (arc_insn_get_operand_value_signed): Likewise.
13862 (arc_insn_get_memory_base_reg): Likewise.
13863 (arc_insn_get_memory_offset): Likewise.
13864 (arc_insn_get_branch_target): Likewise.
13865 (arc_insn_dump): Likewise.
13866 (arc_insn_get_linear_next_pc): Likewise.
13867 * arc-tdep.h (arc_delayed_print_insn): Add function declaration.
13868 (arc_disassemble_info): Likewise.
13869 (arc_insn_get_branch_target): Likewise.
13870 (arc_insn_get_linear_next_pc): Likewise.
13871 * NEWS: Mention new "maint print arc arc-instruction".
13872
13873 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
13874
13875 * arc-tdep (maintenance_print_arc_list): New variable.
13876 (maintenance_print_arc_command): New function.
13877
13878 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
13879
13880 * arc-tdep.c (core_v2_register_names, core_arcompact_register_names)
13881 Add "limm" and "reserved".
13882 (arc_cannot_fetch_register, arc_cannot_store_register): Add
13883 ARC_RESERVED_REGNUM and ARC_LIMM_REGNUM.
13884 * arc-tdep.h (arc_regnum): Likewise.
13885
13886 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
13887
13888 * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
13889 for THREADPTR register.
13890 (supply_gregset_reg): Call regcache_raw_supply for THREADPTR
13891 register.
13892 * xtensa-tdep.c (XTENSA_DBREGN_UREG): New definition.
13893 (xtensa_derive_tdep): Initialize tdep->threadptr_regnum.
13894 * xtensa-tdep.h (gdbarch_tdep::threadptr_regnum): New field.
13895
13896 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
13897
13898 * xtensa-tdep.c (xtensa_pseudo_register_read): Treat all
13899 registers above gdbarch_num_regs (gdbarch) as privileged in
13900 call0 ABI.
13901
13902 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
13903
13904 * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
13905 for a single specified register or for all registers in
13906 a0_base..a0_base + C0_NREGS range.
13907 (supply_gregset_reg): Call regcache_raw_supply for a single
13908 specified register or for all registers in a0_base..a0_base +
13909 C0_NREGS range.
13910
13911 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
13912
13913 * arch/xtensa.h (C0_NREGS): Add definition.
13914 * xtensa-tdep.c (C0_NREGS): Remove definition.
13915
13916 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
13917
13918 * xtensa-tdep.c (xtensa_scan_prologue, call0_analyze_prologue):
13919 Drop xtensa_default_isa initialization.
13920 (xtensa_gdbarch_init): Initialize xtensa_default_isa.
13921
13922 2017-03-27 Pedro Alves <palves@redhat.com>
13923
13924 * dwarf2read.c (file_entry) <dir_index>: Add comment.
13925 (file_entry::include_dir): New method.
13926 (line_header::include_dir_at, line_header::file_name_at): New
13927 methods.
13928 (setup_type_unit_groups, setup_type_unit_groups)
13929 (psymtab_include_file_name): Simplify using the new methods.
13930 (lnp_state_machine) <the_line_header>: New field.
13931 <file>: Add comment.
13932 (lnp_state_machine::current_file): New method.
13933 (dwarf_record_line): Simplify using the new methods.
13934 (init_lnp_state_machine): Initialize the "the_line_header" field.
13935 (dwarf_decode_lines_1, dwarf_decode_lines, file_file_name):
13936 Simplify using the new methods.
13937
13938 2017-03-27 Pedro Alves <palves@redhat.com>
13939
13940 * cp-name-parser.y (make_empty): Delete.
13941 (demangler_special, nested_name, ptr_operator, array_indicator)
13942 (direct_declarator, declarator_1): Use fill_comp instead of
13943 make_empty.
13944
13945 2017-03-27 Pedro Alves <palves@redhat.com>
13946
13947 * xml-support.h (gdb_xml_debug): Pass a "first-to-check" argument
13948 to ATTRIBUTE_PRINTF.
13949 * solib-target.c (library_list_start_list): Print "string" not
13950 "version".
13951 * xml-tdesc.c (tdesc_start_field): Pass "field_name" to
13952 gdb_xml_error call.
13953
13954 2017-03-27 Pedro Alves <palves@redhat.com>
13955
13956 * dwarf2read.c (struct file_and_directory): New.
13957 (dwarf2_get_dwz_file): Adjust to use std::string.
13958 (dw2_get_file_names_reader): Adjust to use file_and_directory.
13959 (find_file_and_directory): Adjust to return a file_and_directory
13960 object.
13961 (read_file_scope): Adjust to use file_and_directory. Remove
13962 make_cleanup/do_cleanups calls.
13963 (open_and_init_dwp_file): Adjust to use std::string. Remove
13964 make_cleanup/do_cleanups calls.
13965 * python/python.c (do_start_initialization): Adjust to ldirname
13966 returning a std::string.
13967 * utils.c (ldirname): Now returns a std::string.
13968 * utils.h (ldirname): Change return type to std::string.
13969 * xml-syscall.c (xml_init_syscalls_info): Adjust to ldirname
13970 returning a std::string.
13971 * xml-tdesc.c (file_read_description_xml): Likewise.
13972
13973 2017-03-24 Alan Hayward <alan.hayward@arm.com>
13974
13975 * regcache.c (regcache_debug_print_register): New function.
13976 * regcache.h (regcache_debug_print_register): New declaration.
13977 * target.c (debug_print_register): Remove.
13978 (target_fetch_registers): Call regcache_debug_print_register.
13979 (target_store_registers): Likewise.
13980
13981 2017-03-24 Pádraig Brady <pbrady@fb.com>
13982
13983 * dwarf2read.c (setup_type_unit_groups): Ensure dir_index doesn't
13984 reference beyond the 'lh->include_dirs' array before accessing to
13985 it.
13986 (psymtab_include_file_name): Likewise.
13987 (dwarf_decode_lines_1): Likewise.
13988 (dwarf_decode_lines): Likewise.
13989 (file_file_name): Likewise.
13990
13991 2017-03-23 Simon Marchi <simon.marchi@ericsson.com>
13992
13993 * fbsd-tdep.c (fbsd_corefile_thread): Don't set/restore
13994 inferior_ptid.
13995 * proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
13996 ps_lsetfpregs): Likewise.
13997 * regcache.c (regcache_raw_update, regcache_raw_write): Likewise.
13998 * sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
13999 ps_lsetfpregs): Likewise.
14000 * target.c (target_fetch_registers, target_store_registers):
14001 Remove asserts.
14002
14003 2017-03-23 Alan Hayward <alan.hayward@arm.com>
14004
14005 * sol-thread.c (sol_thread_store_registers): Remove regcache calls.
14006
14007 2017-03-23 Yao Qi <yao.qi@linaro.org>
14008
14009 * aarch64-tdep.c (aarch64_process_record_test): Declare.
14010 (_initialize_aarch64_tdep): Register it.
14011 (aarch64_record_load_store): Handle PRFM instruction.
14012 (aarch64_process_record_test): New function.
14013
14014 2017-03-23 Yao Qi <yao.qi@linaro.org>
14015
14016 * aarch64-tdep.c (aarch64_record_load_store): Fix code
14017 indentation.
14018
14019 2017-03-23 Yao Qi <yao.qi@linaro.org>
14020
14021 * aarch64-tdep.c: Remove AARCH64_RECORD_FAILURE.
14022
14023 2017-03-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
14024
14025 python/python.c (do_start_initialization): Fix memory leak.
14026
14027 2017-03-22 Simon Marchi <simon.marchi@polymtl.ca>
14028
14029 * inf-ptrace.c (inf_ptrace_xfer_partial): Get pid from ptid
14030 using get_ptrace_pid.
14031 * linux-nat.c (linux_nat_xfer_partial): Don't set/restore
14032 inferior_ptid.
14033 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use lwp of
14034 inferior_ptid instead of pid.
14035
14036 2017-03-22 Yao Qi <yao.qi@linaro.org>
14037
14038 * aarch64-tdep.c: Wrap locally used classes in anonymous
14039 namespace.
14040 * arm-tdep.c: Likewise.
14041 * linespec.c: Likewise.
14042 * ui-out.c: Likewise.
14043
14044 2017-03-22 Jonah Graham <jonah@kichwacoders.com>
14045
14046 PR gdb/19637
14047 * python/lib/gdb/printer/bound_registers.py: Import sys.
14048
14049 2017-03-21 Simon Marchi <simon.marchi@ericsson.com>
14050
14051 * windows-nat.c (do_windows_fetch_inferior_registers): Add
14052 windows_thread_info parameter and use it instead of
14053 current_thread.
14054 (windows_fetch_inferior_registers): Don't set current_thread,
14055 pass the thread to do_windows_fetch_inferior_registers. Use
14056 ptid from regcache instead of inferior_ptid.
14057 (do_windows_store_inferior_registers): Add windows_thread_info
14058 parameter and use it instead of current_thread.
14059 (windows_store_inferior_registers): Don't set current_thread,
14060 pass the thread to do_windows_store_inferior_registers. Use
14061 ptid from regcache instead of inferior_ptid.
14062
14063 2017-03-21 Simon Marchi <simon.marchi@ericsson.com>
14064
14065 * ser-mingw.c (ser_windows_raw): Remove reference to
14066 struct serial::current_timeout.
14067
14068 2017-03-21 Ivo Raisr <ivo.raisr@oracle.com>
14069
14070 PR tdep/20928
14071 * gdb/sparc-tdep.h (gdbarch_tdep) <sparc64_ccr_type>: New field.
14072 * gdb/sparc64-tdep.c (sparc64_ccr_type): New function.
14073 (sparc64_fsr_type): Fix %fsr decoding.
14074
14075 2017-03-21 Tim Wiederhake <tim.wiederhake@intel.com>
14076
14077 * python/py-record-btrace.c (btpy_insn_data): Change return type
14078 for Python 2.
14079
14080 2017-03-20 Simon Marchi <simon.marchi@polymtl.ca>
14081
14082 * spu-linux-nat.c (spu_fetch_inferior_registers,
14083 spu_store_inferior_registers): Use ptid from regcache, set and
14084 restore inferior_ptid.
14085 * spu-multiarch.c (spu_fetch_registers, spu_store_registers):
14086 Likewise.
14087
14088 2017-03-20 Simon Marchi <simon.marchi@polymtl.ca>
14089
14090 * i386-linux-nat.c (fetch_register, store_register,
14091 i386_linux_fetch_inferior_registers,
14092 i386_linux_store_inferior_registers): Use ptid from regcache.
14093 * ia64-linux-nat.c (ia64_linux_fetch_register,
14094 ia64_linux_store_register): Likewise.
14095 * inf-ptrace.c (inf_ptrace_fetch_register,
14096 inf_ptrace_store_register): Likewise.
14097 * m32r-linux-nat.c (m32r_linux_fetch_inferior_registers,
14098 m32r_linux_store_inferior_registers): Likewise.
14099 * m68k-bsd-nat.c (m68kbsd_fetch_inferior_registers,
14100 m68kbsd_store_inferior_registers): Likewise.
14101 * m68k-linux-nat.c (fetch_register, store_register,
14102 m68k_linux_fetch_inferior_registers,
14103 m68k_linux_store_inferior_registers): Likewise.
14104 * m88k-bsd-nat.c (m88kbsd_fetch_inferior_registers,
14105 m88kbsd_store_inferior_registers): Likewise.
14106 * mips-fbsd-nat.c (mips_fbsd_fetch_inferior_registers,
14107 mips_fbsd_store_inferior_registers): Likewise.
14108 * mips-linux-nat.c (mips64_linux_regsets_fetch_registers,
14109 mips64_linux_regsets_store_registers): Likewise.
14110 * mips-nbsd-nat.c (mipsnbsd_fetch_inferior_registers,
14111 mipsnbsd_store_inferior_registers): Likewise.
14112 * mips-obsd-nat.c (mips64obsd_fetch_inferior_registers,
14113 mips64obsd_store_inferior_registers): Likewise.
14114 * nto-procfs.c (procfs_fetch_registers, procfs_store_registers):
14115 Likewise.
14116 * ppc-fbsd-nat.c (ppcfbsd_fetch_inferior_registers,
14117 ppcfbsd_store_inferior_registers): Likewise.
14118 * ppc-linux-nat.c (ppc_linux_fetch_inferior_registers,
14119 ppc_linux_store_inferior_registers): Likewise.
14120 * ppc-nbsd-nat.c (ppcnbsd_fetch_inferior_registers,
14121 ppcnbsd_store_inferior_registers): Likewise.
14122 * ppc-obsd-nat.c (ppcobsd_fetch_registers,
14123 ppcobsd_store_registers): Likewise.
14124 * procfs.c (procfs_fetch_registers, procfs_store_registers):
14125 Likewise.
14126 * ravenscar-thread.c (ravenscar_fetch_registers,
14127 ravenscar_store_registers, ravenscar_prepare_to_store):
14128 Likewise.
14129 * record-btrace.c (record_btrace_fetch_registers,
14130 record_btrace_store_registers, record_btrace_prepare_to_store):
14131 Likewise.
14132 * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register):
14133 Lookup inferior using ptid from regcache, instead of
14134 current_inferior.
14135 * remote.c (remote_fetch_registers, remote_store_registers): Use
14136 ptid from regcache.
14137 * rs6000-nat.c (fetch_register, store_register): Likewise.
14138 * s390-linux-nat.c (s390_linux_fetch_inferior_registers,
14139 s390_linux_store_inferior_registers): Likewise.
14140 * sh-nbsd-nat.c (shnbsd_fetch_inferior_registers,
14141 shnbsd_store_inferior_registers): Likewise.
14142 * sol-thread.c (sol_thread_fetch_registers,
14143 sol_thread_store_registers): Likewise.
14144 * sparc-nat.c (sparc_fetch_inferior_registers,
14145 sparc_store_inferior_registers): Likewise.
14146 * tilegx-linux-nat.c (fetch_inferior_registers,
14147 store_inferior_registers): Likewise.
14148 * vax-bsd-nat.c (vaxbsd_fetch_inferior_registers,
14149 vaxbsd_store_inferior_registers): Likewise.
14150 * xtensa-linux-nat.c (fetch_gregs, store_gregs, fetch_xtregs,
14151 store_xtregs): Likewise.
14152
14153 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
14154
14155 PR gdb/14441
14156 * NEWS: Mention support for rvalue references in GDB and python.
14157 * doc/gdb.texinfo (C Plus Plus Expressions): Mention that GDB
14158 supports both lvalue and rvalue references.
14159
14160 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
14161
14162 PR gdb/14441
14163 * gdbtypes.c (rank_one_type): Implement overloading
14164 resolution rules regarding rvalue references.
14165
14166 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
14167
14168 PR gdb/14441
14169 * aarch64-tdep.c (aarch64_type_align)
14170 (aarch64_extract_return_value, aarch64_store_return_value): Change
14171 lvalue reference type checks to general reference type checks.
14172 * amd64-tdep.c (amd64_classify): Likewise.
14173 * amd64-windows-tdep.c (amd64_windows_passed_by_integer_register):
14174 Likewise.
14175 * arm-tdep.c (arm_type_align, arm_extract_return_value)
14176 (arm_store_return_value): Likewise.
14177 * ax-gdb.c (gen_fetch, gen_cast): Likewise.
14178 * c-typeprint.c (c_print_type): Likewise.
14179 * c-varobj.c (adjust_value_for_child_access, c_value_of_variable)
14180 (cplus_number_of_children, cplus_describe_child): Likewise.
14181 * compile/compile-c-symbols.c (generate_vla_size): Likewise.
14182 * completer.c (expression_completer): Likewise.
14183 * cp-support.c (make_symbol_overload_list_adl_namespace):
14184 Likewise.
14185 * darwin-nat-info.c (info_mach_region_command): Likewise.
14186 * dwarf2loc.c (entry_data_value_coerce_ref)
14187 (value_of_dwarf_reg_entry): Likewise.
14188 * eval.c (ptrmath_type_p, evaluate_subexp_standard)
14189 (evaluate_subexp_for_address, evaluate_subexp_for_sizeof):
14190 Likewise.
14191 * findvar.c (extract_typed_address, store_typed_address):
14192 Likewise.
14193 * gdbtypes.c (rank_one_type): Likewise.
14194 * hppa-tdep.c (hppa64_integral_or_pointer_p): Likewise.
14195 * infcall.c (value_arg_coerce): Likewise.
14196 * language.c (pointer_type): Likewise.
14197 * m32c-tdep.c (m32c_reg_arg_type, m32c_m16c_address_to_pointer):
14198 Likewise.
14199 * m88k-tdep.c (m88k_integral_or_pointer_p): Likewise.
14200 * mn10300-tdep.c (mn10300_type_align): Likewise.
14201 * msp430-tdep.c (msp430_push_dummy_call): Likewise.
14202 * ppc-sysv-tdep.c (do_ppc_sysv_return_value)
14203 (ppc64_sysv_abi_push_param, ppc64_sysv_abi_return_value):
14204 Likewise.
14205 * printcmd.c (print_formatted, x_command): Likewise.
14206 * python/py-type.c (typy_get_composite, typy_template_argument):
14207 Likewise.
14208 * python/py-value.c (valpy_referenced_value)
14209 (valpy_get_dynamic_type, value_has_field): Likewise.
14210 * s390-linux-tdep.c (s390_function_arg_integer): Likewise.
14211 * sparc-tdep.c (sparc_integral_or_pointer_p): Likewise.
14212 * sparc64-tdep.c (sparc64_integral_or_pointer_p): Likewise.
14213 * spu-tdep.c (spu_scalar_value_p): Likewise.
14214 * symtab.c (lookup_symbol_aux): Likewise.
14215 * typeprint.c (whatis_exp, print_type_scalar): Likewise.
14216 * valarith.c (binop_types_user_defined_p, unop_user_defined_p):
14217 Likewise.
14218 * valops.c (value_cast_pointers, value_cast)
14219 (value_reinterpret_cast, value_dynamic_cast, value_addr, typecmp)
14220 (value_struct_elt, value_struct_elt_bitpos)
14221 (value_find_oload_method_list, find_overload_match)
14222 (value_rtti_indirect_type): Likewise.
14223 * valprint.c (val_print_scalar_type_p, generic_val_print):
14224 Likewise.
14225 * value.c (value_actual_type, value_as_address, unpack_long)
14226 (pack_long, pack_unsigned_long, coerce_ref_if_computed)
14227 (coerce_ref): Likewise.
14228 * varobj.c (varobj_get_value_type): Likewise.
14229
14230 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
14231
14232 PR gdb/14441
14233 * doc/python.texi (Types in Python): Add TYPE_CODE_RVALUE_REF to
14234 table of constants.
14235 * python/lib/gdb/command/explore.py: Support exploring values
14236 of rvalue reference types.
14237 * python/lib/gdb/types.py: Implement get_basic_type() for
14238 rvalue reference types.
14239 * python/py-type.c (pyty_codes) <TYPE_CODE_RVALUE_REF>: New
14240 constant.
14241 * python/py-value.c (valpy_getitem): Add an rvalue reference
14242 check.
14243 (valpy_reference_value): Add new parameter "refcode".
14244 (valpy_lvalue_reference_value, valpy_rvalue_reference_value):
14245 New wrappers for valpy_reference_value().
14246 * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
14247 (gdbpy_invoke_xmethod): Likewise.
14248
14249 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
14250
14251 PR gdb/14441
14252 * dwarf2read.c (process_die, read_type_die_1): Handle the
14253 DW_TAG_rvalue_reference_type DIE.
14254 (read_tag_reference_type): Add new parameter "refcode".
14255
14256 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
14257
14258 PR gdb/14441
14259 * c-typeprint.c (c_print_type, c_type_print_varspec_prefix)
14260 (c_type_print_modifier, c_type_print_varspec_suffix)
14261 (c_type_print_base): Support printing rvalue reference types.
14262 * c-valprint.c (c_val_print, c_value_print): Support printing
14263 rvalue reference values.
14264
14265 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
14266
14267 PR gdb/14441
14268 * cp-name-parser.y (ptr_operator): Handle the '&&' token in
14269 typename.
14270 * cp-support.c (replace_typedefs): Handle
14271 DEMANGLE_COMPONENT_RVALUE_REFERENCE.
14272 * python/py-type.c (typy_lookup_type): Likewise.
14273
14274 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
14275
14276 PR gdb/14441
14277 * c-exp.y (ptr_operator): Handle the '&&' token in the typename.
14278 * parse.c (insert_type): Change assert statement.
14279 (follow_types): Handle rvalue reference types.
14280 * parser-defs.h (enum type_pieces) <tp_rvalue_reference>: New
14281 constant.
14282
14283 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
14284
14285 PR gdb/14441
14286 * ada-lang.c (ada_evaluate_subexp): Adhere to the new
14287 value_ref() interface.
14288 * c-valprint.c (c_value_print): Likewise.
14289 * infcall.c (value_arg_coerce): Likewise.
14290 * python/py-value.c (valpy_reference_value): Likewise.
14291 * valops.c (value_cast, value_reinterpret_cast)
14292 (value_dynamic_cast, typecmp): Likewise.
14293 (value_ref): Parameterize by kind of return value reference type.
14294 * value.h (value_ref): Add new parameter "refcode".
14295
14296 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
14297
14298 PR gdb/14441
14299 * dwarf2read.c (read_tag_reference_type): Use
14300 lookup_lvalue_reference_type() instead of lookup_reference_type().
14301 * eval.c (evaluate_subexp_standard): Likewise.
14302 * f-exp.y: Likewise.
14303 * gdbtypes.c (make_reference_type, lookup_reference_type):
14304 Generalize with rvalue reference types.
14305 (lookup_lvalue_reference_type, lookup_rvalue_reference_type): New
14306 convenience wrappers for lookup_reference_type().
14307 * gdbtypes.h (make_reference_type, lookup_reference_type): Add a
14308 reference kind parameter.
14309 (lookup_lvalue_reference_type, lookup_rvalue_reference_type): Add
14310 wrappers for lookup_reference_type().
14311 * guile/scm-type.c (gdbscm_type_reference): Use
14312 lookup_lvalue_reference_type() instead of lookup_reference_type().
14313 * guile/scm-value.c (gdbscm_value_dynamic_type): Likewise.
14314 * parse.c (follow_types): Likewise.
14315 * python/py-type.c (typy_reference, typy_lookup_type): Likewise.
14316 * python/py-value.c (valpy_get_dynamic_type, valpy_getitem):
14317 Likewise.
14318 * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
14319 (gdbpy_invoke_xmethod): Likewise.
14320 * stabsread.c: Provide extra argument to make_reference_type()
14321 call.
14322 * valops.c (value_ref, value_rtti_indirect_type): Use
14323 lookup_lvalue_reference_type() instead of lookup_reference_type().
14324
14325 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
14326
14327 PR gdb/14441
14328 * gdbtypes.h (enum type_code) <TYPE_CODE_RVALUE_REF>: New constant.
14329 (TYPE_IS_REFERENCE): New macro.
14330 (struct type): Add rvalue_reference_type field.
14331 (TYPE_RVALUE_REFERENCE_TYPE): New macro.
14332
14333 2017-03-20 Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
14334
14335 * NEWS: Add an entry about new '-file-list-shared-libraries' command.
14336 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries):
14337 New function definition.
14338 * mi/mi-cmds.c (mi_cmds): Add -file-list-shared-libraries command.
14339 * mi/mi-cmds.h (mi_cmd_file_list_shared_libraries):
14340 New function declaration.
14341 * mi/mi-interp.c (mi_output_solib_attribs): New Function.
14342 * mi/mi-interp.h: New file.
14343 * solib.c (info_sharedlibrary_command): Replace for loop with
14344 ALL_SO_LIBS macro
14345 * solib.h (update_solib_list): New function declaration.
14346 (so_list_head): Move macro.
14347 * solist.h (ALL_SO_LIBS): New macro.
14348
14349 2017-03-20 Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
14350
14351 * infcmd.c (post_create_inferior): Remove unused argument in
14352 call to solib_add.
14353 * remote.c (remote_start_remote): Likewise.
14354 * solib-frv.c (frv_fetch_objfile_link_map): Likewise.
14355 * solib-svr4.c: (svr4_fetch_objfile_link_map): Likewise.
14356 (enable_break): Likewise.
14357 * solib.c (update_solib_list): Remove unused target argument
14358 and its documentation.
14359 (solib_add): Remove unused target argument. Remove unused
14360 argument in call to update_solib_list.
14361 (info_sharedlibrary_command): Remove unused argument in call
14362 to update_solib_list.
14363 (sharedlibrary_command): Remove unused argument in call to
14364 solib_add.
14365 (handle_solib_event): Likewise.
14366 (reload_shared_libraries): Likewise.
14367 * solib.h (solib_add): Remove unused target argument.
14368
14369 2017-03-20 Andreas Arnez <arnez@linux.vnet.ibm.com>
14370
14371 * s390-linux-tdep.c (is_rsi, is_rie): Remove functions.
14372 (s390_displaced_step_fixup): Cover relative branches with the
14373 default fixup handling. This fixes lack of support for some
14374 relative branch instructions.
14375
14376 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
14377
14378 * i386-gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Use
14379 ptid from regcache.
14380
14381 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
14382
14383 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers,
14384 i386_darwin_store_inferior_registers): Use ptid from regcache.
14385
14386 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
14387
14388 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers,
14389 i386bsd_store_inferior_registers): Use ptid from regcache.
14390
14391 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
14392
14393 * hppa-obsd-nat.c (hppaobsd_fetch_registers,
14394 hppaobsd_store_registers): Use ptid from regcache.
14395
14396 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
14397
14398 * hppa-nbsd-nat.c (hppanbsd_fetch_registers,
14399 hppanbsd_store_registers): Use ptid from regcache.
14400
14401 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
14402
14403 * hppa-linux-nat.c (fetch_register, store_register): Use ptid
14404 from regcache. Use get_ptrace_pid.
14405
14406 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
14407
14408 * corelow.c (get_core_register_section): Use ptid from regcache,
14409 update doc.
14410
14411 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
14412
14413 * bsd-uthread.c (bsd_uthread_fetch_registers,
14414 bsd_uthread_store_registers): Use ptid from regcache, set and
14415 restore inferior_ptid.
14416
14417 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
14418
14419 * arm-nbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
14420 fetch_fp_regs, store_register, store_regs, store_fp_register,
14421 store_fp_regs): Use ptid from regcache.
14422
14423 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
14424
14425 * arm-linux-nat.c (fetch_fpregs, store_fpregs, fetch_regs,
14426 store_regs, fetch_wmmx_regs, store_wmmx_regs, fetch_vfp_regs,
14427 store_vfp_regs): Use ptid from regcache.
14428
14429 2017-03-17 Pedro Alves <palves@redhat.com>
14430
14431 PR remote/21188
14432 * ser-base.c (ser_base_wait_for): Add comment.
14433 (do_ser_base_readchar): Improve comment based on the ser-unix.c's
14434 version.
14435 * ser-unix.c (hardwire_raw): Remove reference to
14436 scb->current_timeout.
14437 (wait_for, do_hardwire_readchar, hardwire_readchar): Delete.
14438 (hardwire_ops): Install ser_base_readchar instead of
14439 hardwire_readchar.
14440 * serial.h (struct serial) <current_timeout, timeout_remaining>:
14441 Remove fields.
14442
14443 2017-03-17 Jonah Graham <jonah@kichwacoders.com>
14444
14445 PR gdb/19637
14446 * python/lib/gdb/printer/bound_registers.py: Add support for
14447 Python 3.
14448
14449 2017-03-16 Andreas Arnez <arnez@linux.vnet.ibm.com>
14450
14451 * dwarf2loc.c (indirect_synthetic_pointer): Get data type of
14452 pointed-to DIE and pass it to dwarf2_evaluate_loc_desc_full.
14453 (dwarf2_evaluate_loc_desc_full): New parameter subobj_type; rename
14454 byte_offset to subobj_byte_offset. Fix the handling of
14455 DWARF_VALUE_STACK on big-endian targets when coming via an
14456 implicit pointer.
14457 (dwarf2_evaluate_loc_desc): Adjust call to
14458 dwarf2_evaluate_loc_desc_full.
14459 * dwarf2loc.h (dwarf2_fetch_die_type_sect_off): New declaration.
14460 * dwarf2read.c (dwarf2_fetch_die_type_sect_off): New function.
14461
14462 2017-03-16 Yao Qi <yao.qi@linaro.org>
14463
14464 * arm-tdep.c (thumb_record_misc): Decode CBNZ, CBZ, REV16,
14465 and REVSH instructions.
14466
14467 2017-03-16 Yao Qi <yao.qi@linaro.org>
14468
14469 * arm-tdep.c [GDB_SELF_TEST]: include "selftests.h".
14470 (arm_record_test): Declare.
14471 (_initialize_arm_tdep) [GDB_SELF_TEST]: call register_self_test.
14472 (thumb_record_ld_st_reg_offset): Rewrite the opcode matching to
14473 align with the manual.
14474 (thumb_record_misc): Adjust the code order to align with the
14475 manual.
14476 (thumb2_record_decode_insn_handler): Fix instruction matching.
14477 (instruction_reader_thumb): New class.
14478 (arm_record_test): New function.
14479
14480 2017-03-16 Yao Qi <yao.qi@linaro.org>
14481
14482 * arm-tdep.c (abstract_memory_reader): New class.
14483 (instruction_reader): New class.
14484 (extract_arm_insn): Add argument 'reader'. Callers updated.
14485 (decode_insn): Likewise.
14486
14487 2017-03-16 Doug Evans <dje@google.com>
14488
14489 * guile/scm-lazy-string.c (lazy_string_smob): Clarify use of LENGTH
14490 member. Change type of TYPE member to SCM. All uses updated.
14491 (lsscm_make_lazy_string_smob): Add assert.
14492 (lsscm_make_lazy_string): Flag bad length values.
14493 (lsscm_elt_type): New function.
14494 (gdbscm_lazy_string_to_value): Rewrite to use
14495 lsscm_safe_lazy_string_to_value.
14496 (lsscm_safe_lazy_string_to_value): Fix handling of TYPE_CODE_PTR.
14497 * guile/scm-value.c (gdbscm_value_to_lazy_string): Flag bad length
14498 values. Fix TYPE_CODE_PTR. Handle TYPE_CODE_ARRAY. Handle typedefs
14499 in incoming type.
14500 * guile/guile-internal.h (tyscm_scm_to_type): Declare.
14501 * guile/scm-type.c (tyscm_scm_to_type): New function.
14502
14503 2017-03-15 Doug Evans <dje@google.com>
14504
14505 PR python/17728, python/18439, python/18779
14506 * python/py-lazy-string.c (lazy_string_object): Clarify use of LENGTH
14507 member. Change type of TYPE member to PyObject *. All uses updated.
14508 (stpy_convert_to_value): Fix handling of TYPE_CODE_PTR.
14509 (gdbpy_create_lazy_string_object): Flag bad length values.
14510 Handle TYPE_CODE_ARRAY with possibly different user-provided length.
14511 Handle typedefs in incoming type.
14512 (stpy_lazy_string_elt_type): New function.
14513 (gdbpy_extract_lazy_string): Call it.
14514 * python/py-value.c (valpy_lazy_string): Flag bad length values.
14515 Fix handling of TYPE_CODE_PTR. Handle TYPE_CODE_ARRAY. Handle
14516 typedefs in incoming type.
14517
14518 2017-03-16 Doug Evans <dje@google.com>
14519
14520 * guile/guile-internal.h (tyscm_scm_to_type): Declare.
14521 * guile/scm-type.c (tyscm_scm_to_type): New function.
14522
14523 2017-03-16 Jiong Wang <jiong.wang@arm.com>
14524
14525 * inf-ptrace.c (inf_ptrace_peek_poke): Change the type to
14526 "ULONGEST" for "skip".
14527
14528 2017-03-14 Andreas Arnez <arnez@linux.vnet.ibm.com>
14529
14530 PR gdb/21220
14531 * inf-ptrace.c (inf_ptrace_xfer_partial): In "case
14532 TARGET_OBJECT_MEMORY", extract the logic for ptrace peek/poke...
14533 (inf_ptrace_peek_poke): ...here. New function. Now also loop
14534 over ptrace peek/poke until end of buffer or error.
14535
14536 2017-03-14 Simon Marchi <simon.marchi@ericsson.com>
14537
14538 * parse.c (length_of_subexp): Make static.
14539 * parser-defs.h (length_of_subexp): Remove.
14540
14541 2017-03-14 Andreas Arnez <arnez@linux.vnet.ibm.com>
14542
14543 * linux-nat.c (linux_proc_xfer_partial): Handle write operations
14544 as well.
14545
14546 2017-03-14 Pedro Alves <palves@redhat.com>
14547
14548 * cp-name-parser.y (cp_demangled_name_to_comp): Update comment.
14549 (main): Use std::unique_ptr. Remove calls to
14550 cp_demangled_name_parse_free.
14551
14552 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
14553
14554 * alpha-bsd-nat.c (alphabsd_fetch_inferior_registers,
14555 alphabsd_store_inferior_registers): Use regcache->ptid instead
14556 of inferior_ptid.
14557
14558 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
14559
14560 * aix-thread.c (aix_thread_fetch_registers,
14561 aix_thread_store_registers): Use regcache->ptid instead of
14562 inferior_ptid.
14563
14564 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
14565
14566 * aarch64-linux-nat.c (fetch_gregs_from_thread,
14567 store_gregs_to_thread, fetch_fpregs_from_thread,
14568 store_fpregs_to_thread): Use regcache->ptid instead of
14569 inferior_ptid.
14570
14571 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
14572
14573 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers,
14574 amd64_linux_fetch_inferior_registers): Use regcache->ptid
14575 instead of inferior_ptid.
14576
14577 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
14578
14579 * target.c (target_fetch_registers, target_store_registers): Add
14580 assert.
14581
14582 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
14583
14584 * regcache.h (regcache_get_ptid): New function.
14585 * regcache.c (regcache_get_ptid): New function.
14586
14587 2017-03-13 Mark Wielaard <mark@klomp.org>
14588
14589 * cp-name-parser.y (make_empty): Initialize d_printing to zero.
14590
14591 2017-03-10 Keith Seitz <keiths@redhat.com>
14592
14593 PR c++/8218
14594 * c-typeprint.c (cp_type_print_method_args): Skip artificial arguments.
14595
14596 2017-03-08 Pedro Alves <palves@redhat.com>
14597
14598 PR gdb/18360
14599 * infrun.c (start_step_over, do_target_resume, resume)
14600 (restart_threads): Assert we're not resuming a thread that is
14601 meant to be stopped.
14602 (infrun_thread_stop_requested_callback): Delete.
14603 (infrun_thread_stop_requested): If the thread is internally
14604 stopped, queue a pending stop event and clear the thread's
14605 inline-frame state.
14606 (handle_stop_requested): New function.
14607 (handle_syscall_event, handle_inferior_event_1): Use
14608 handle_stop_requested.
14609 (handle_stop_requested): New function.
14610 (handle_signal_stop): Set the thread's stop_signal here instead of
14611 at caller.
14612 (finish_step_over): Clear step over info unconditionally.
14613 (handle_signal_stop): If the user had interrupted the event
14614 thread, consider the stop a random signal.
14615 (handle_signal_stop) <signal arrived while stepping over
14616 breakpoint>: Don't restart threads here.
14617 (stop_waiting): Don't clear step-over info here.
14618
14619 2017-03-08 Pedro Alves <palves@redhat.com>
14620
14621 PR 21206
14622 * common/gdb_unlinker.h (unlinker::unlinker): Attribute nonnull
14623 goes to argument 2, not 1.
14624
14625 2017-03-08 Pedro Alves <palves@redhat.com>
14626
14627 PR cli/21218
14628 * top.c (gdb_readline_wrapper): Avoid passing NULL to
14629 display_gdb_prompt.
14630 (command_line_input): Add comment.
14631
14632 2017-03-08 Pedro Alves <palves@redhat.com>
14633
14634 PR tui/21216
14635 * tui/tui-file.c (tui_file::write): New.
14636 * tui/tui-file.h (tui_file): Override "write".
14637 * tui/tui-io.c (do_tui_putc, update_start_line): New functions,
14638 factored out from ...
14639 (tui_puts): ... here.
14640 (tui_putc): Use them.
14641 (tui_write): New function.
14642 * tui/tui-io.h (tui_write): Declare.
14643
14644 2017-03-07 Sergio Durigan Junior <sergiodj@redhat.com>
14645
14646 * Makefile.in (SFILES): Replace "environ.c" with
14647 "common/environ.c".
14648 (HFILES_NO_SRCDIR): Likewise, for "environ.h".
14649 * environ.c: Include "common-defs.h" instead of "defs.h. Moved
14650 to...
14651 * common/environ.c: ... here.
14652 * environ.h: Moved to...
14653 * common/environ.h: ... here.
14654
14655 2017-03-07 Peter Bergner <bergner@vnet.ibm.com>
14656
14657 * gdbarch.sh (pstring_ptr): New static function.
14658 (gdbarch_disassembler_options): Use it.
14659 (gdbarch_verify_disassembler_options): Print valid_disassembler_options,
14660 not valid_disassembler_option->name.
14661 * gdbarch.c: Regenerate.
14662
14663 2017-03-07 Peter Bergner <bergner@vnet.ibm.com>
14664
14665 * config/powerpc/ppc64-linux.mh (MH_CFLAGS): Delete.
14666
14667 2017-03-07 Pedro Alves <palves@redhat.com>
14668
14669 * tui/tui-regs.c (tui_restore_gdbout): Don't delete gdb_stdout.
14670
14671 2017-03-07 Walfred Tedeschi <walfred.tedeschi@intel.com>
14672
14673 * i387-tdep.h (i387_reset_bnd_regs): Add function definition.
14674 * i387-tdep.c (i387_reset_bnd_regs): Add function implementation.
14675 * i386-tdep.c (i386_push_dummy_call): Call i387_reset_bnd_regs.
14676 * amd64-tdep.c (amd64_push_dummy_call): Call i387_reset_bnd_regs.
14677
14678 2017-03-06 Simon Marchi <simon.marchi@ericsson.com>
14679
14680 * xtensa-linux-nat.c (fetch_gregs): Remove const.
14681
14682 2017-03-03 Simon Marchi <simon.marchi@ericsson.com>
14683
14684 * remote.c (remote_add_target_side_commands): Use range-based
14685 for loop.
14686
14687 2017-03-03 Yao Qi <yao.qi@linaro.org>
14688
14689 PR gdb/21165
14690 * ada-valprint.c (ada_val_print_ref): Call value_fetch_lazy if
14691 value is lazy.
14692 * valprint.c (common_val_print): Likewise.
14693
14694 2017-02-28 Peter Bergner <bergner@vnet.ibm.com>
14695
14696 * NEWS: Mention new set/show disassembler-options commands.
14697 * doc/gdb.texinfo: Document new set/show disassembler-options commands.
14698 * disasm.c: Include "arch-utils.h", "gdbcmd.h" and "safe-ctype.h".
14699 (prospective_options): New static variable.
14700 (gdb_disassembler::gdb_disassembler): Initialize
14701 m_di.disassembler_options.
14702 (gdb_buffered_insn_length_init_dis): Initilize di->disassembler_options.
14703 (get_disassembler_options): New function.
14704 (set_disassembler_options): Likewise.
14705 (set_disassembler_options_sfunc): Likewise.
14706 (show_disassembler_options_sfunc): Likewise.
14707 (disassembler_options_completer): Likewise.
14708 (_initialize_disasm): Likewise.
14709 * disasm.h (get_disassembler_options): New prototype.
14710 (set_disassembler_options): Likewise.
14711 * gdbarch.sh (gdbarch_disassembler_options): New variable.
14712 (gdbarch_verify_disassembler_options): Likewise.
14713 * gdbarch.c: Regenerate.
14714 * gdbarch.h: Likewise.
14715 * arm-tdep.c (num_disassembly_options): Delete.
14716 (set_disassembly_style): Likewise.
14717 (arm_disassembler_options): New static variable.
14718 (set_disassembly_style_sfunc): Convert short style name into long
14719 option name. Call set_disassembler_options.
14720 (show_disassembly_style_sfunc): New function.
14721 (arm_gdbarch_init): Call set_gdbarch_disassembler_options and
14722 set_gdbarch_verify_disassembler_options.
14723 (_initialize_arm_tdep): Delete regnames variable and update callers.
14724 (arm_disassembler_options): Initialize.
14725 (disasm_options): New variable.
14726 (num_disassembly_options): Rename from this...
14727 (num_disassembly_styles): ...to this. Compute by scanning through
14728 disasm_options.
14729 (valid_disassembly_styles): Initialize using disasm_options.
14730 Remove calls to parse_arm_disassembler_option, get_arm_regnames and
14731 set_arm_regname_option.
14732 Pass show_disassembly_style_sfunc to the "disassembler" setshow command.
14733 * rs6000-tdep.c (powerpc_disassembler_options): New static variable.
14734 (rs6000_gdbarch_init): Call set_gdbarch_disassembler_options and
14735 set_gdbarch_verify_disassembler_options.
14736 * s390-tdep.c (s390_disassembler_options): New static variable.
14737 (s390_gdbarch_init):all set_gdbarch_disassembler_options and
14738 set_gdbarch_verify_disassembler_options.
14739
14740 2017-02-27 Simon Marchi <simon.marchi@ericsson.com>
14741
14742 * remote.c (remote_add_target_side_condition): Remove "struct"
14743 keyword from range-based for loop.
14744
14745 2017-02-27 Simon Marchi <simon.marchi@ericsson.com>
14746
14747 * remote.c (remote_add_target_side_condition): Use range-based
14748 for loop. Update comment.
14749
14750 2017-02-27 Yao Qi <yao.qi@linaro.org>
14751
14752 * f-typeprint.c (f_print_type): Check "varstring" is empty first.
14753
14754 2017-02-26 Alan Hayward <alan.hayward@arm.com>
14755
14756 * regcache.c (regcache_raw_update): New function.
14757 (regcache_raw_read): Move code to regcache_raw_update.
14758 * regcache.h (regcache_raw_update): New declaration.
14759 * remote.c (remote_prepare_to_store): Call regcache_raw_update.
14760
14761 2017-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
14762
14763 * dwarf2read.c (create_debug_type_hash_table): Initialize
14764 header.signature and header.type_offset_in_tu.
14765
14766 2017-02-24 Pedro Alves <palves@redhat.com>
14767
14768 * symtab.c (make_file_symbol_completion_list_1): Use
14769 add_symtab_completions.
14770
14771 2017-02-24 Alan Hayward <alan.hayward@arm.com>
14772
14773 * stack.c (frame_info): Use frame_unwind_register_value to avoid buf.
14774
14775 2017-02-24 Alan Hayward <alan.hayward@arm.com>
14776
14777 * i386-tdep.c (i386_pseudo_register_read_into_value): Use
14778 I386_MAX_REGISTER_SIZE.
14779 (i386_pseudo_register_write): Likewise.
14780 (i386_process_record): Likewise.
14781 * i387-tdep.c (i387_supply_xsave): Likewise.
14782 * m68k-linux-nat.c (fetch_register): Use M68K_MAX_REGISTER_SIZE.
14783 (store_register): Likewise.
14784
14785 2017-02-23 Pedro Alves <palves@redhat.com>
14786
14787 * ada-lang.c: Include "common/function-view.h".
14788 (ada_iterate_over_symbols): Adjust to use function_view as
14789 callback type.
14790 (struct add_partial_datum, ada_complete_symbol_matcher): Delete.
14791 (ada_make_symbol_completion_list): Use a lambda.
14792 (ada_exc_search_name_matches): Delete.
14793 (name_matches_regex): New.
14794 (ada_add_global_exceptions): Use a lambda and name_matches_regex.
14795 * compile/compile-c-support.c: Include "common/function-view.h".
14796 (print_one_macro): Change prototype to accept a ui_file pointer.
14797 (write_macro_definitions): Use a lambda.
14798 * dwarf2read.c: Include "common/function-view.h".
14799 (dw2_map_expand_apply, dw2_map_symtabs_matching_filename)
14800 (dw2_expand_symtabs_matching): Adjust to use function_view as
14801 callback type.
14802 * language.h: Include "common/function-view.h".
14803 (struct language_defn) <la_iterate_over_symbols>: Adjust to use
14804 function_view as callback type.
14805 (LA_ITERATE_OVER_SYMBOLS): Remove DATA parameter.
14806 * linespec.c: Include "common/function-view.h".
14807 (collect_info::add_symbol): New method.
14808 (struct symbol_and_data_callback, iterate_inline_only, struct
14809 symbol_matcher_data, iterate_name_matcher): Delete.
14810 (iterate_over_all_matching_symtabs): Adjust to use function_view
14811 as callback type and lambdas.
14812 (iterate_over_file_blocks): Adjust to use function_view as
14813 callback type.
14814 (decode_compound_collector): Now a class with private fields.
14815 (decode_compound_collector::release_symbols): New method.
14816 (collect_one_symbol): Rename to...
14817 (decode_compound_collector::operator()): ... this and adjust.
14818 (lookup_prefix_sym): decode_compound_collector construction bits
14819 move to decode_compound_collector ctor. Pass the
14820 decode_compound_collector object directly as callback. Remove
14821 cleanups and use decode_compound_collector::release_symbols
14822 instead.
14823 (symtab_collector): Now a class with private fields.
14824 (symtab_collector::release_symtabs): New method.
14825 (add_symtabs_to_list): Rename to...
14826 (symtab_collector::operator()): ... this and adjust.
14827 (collect_symtabs_from_filename): symtab_collector construction
14828 bits move to symtab_collector ctor. Pass the symtab_collector
14829 object directly as callback. Remove cleanups and use
14830 symtab_collector::release_symtabs instead.
14831 (collect_symbols): Delete.
14832 (add_matching_symbols_to_info): Use lambdas.
14833 * macrocmd.c (print_macro_callback): Delete.
14834 (info_macro_command): Use a lambda.
14835 (info_macros_command): Pass print_macro_definition as callable
14836 directly.
14837 (print_one_macro): Remove 'ignore' parameter.
14838 (macro_list_command): Adjust.
14839 * macrotab.c (macro_for_each_data::fn): Now a function_view.
14840 (macro_for_each_data::user_data): Delete field.
14841 (foreach_macro): Adjust to call the function_view.
14842 (macro_for_each): Adjust to use function_view as callback type.
14843 (foreach_macro_in_scope): Adjust to call the function_view.
14844 (macro_for_each_in_scope): Adjust to use function_view as callback
14845 type.
14846 * macrotab.h: Include "common/function-view.h".
14847 (macro_callback_fn): Declare a prototype instead of a pointer.
14848 Remove "user_data" parameter.
14849 (macro_for_each, macro_for_each_in_scope): Adjust to use
14850 function_view as callback type.
14851 * psymtab.c (partial_map_expand_apply)
14852 (psym_map_symtabs_matching_filename, recursively_search_psymtabs):
14853 Adjust to use function_view as callback type and to return bool.
14854 (psym_expand_symtabs_matching): Adjust to use function_view as
14855 callback types.
14856 * symfile-debug.c (debug_qf_map_symtabs_matching_filename): Adjust
14857 to use function_view as callback type and to return bool.
14858 (debug_qf_expand_symtabs_matching): Adjust to use function_view as
14859 callback types.
14860 * symfile.c (expand_symtabs_matching): Adjust to use function_view
14861 as callback types.
14862 * symfile.h: Include "common/function-view.h".
14863 (expand_symtabs_file_matcher_ftype)
14864 (expand_symtabs_symbol_matcher_ftype)
14865 (expand_symtabs_exp_notify_ftype): Remove "data" parameter and
14866 return bool.
14867 (quick_symbol_functions::map_symtabs_matching_filename)
14868 (quick_symbol_functions::expand_symtabs_matching): Adjust to use
14869 function_view as callback type and return bool.
14870 (expand_symtabs_matching): Adjust to use function_view as callback
14871 type.
14872 (maintenance_expand_name_matcher)
14873 (maintenance_expand_file_matcher): Delete.
14874 (maintenance_expand_symtabs): Use lambdas.
14875 * symtab.c (iterate_over_some_symtabs): Adjust to use
14876 function_view as callback types and return bool.
14877 (iterate_over_symtabs): Likewise. Use unique_xmalloc_ptr instead
14878 of a cleanup.
14879 (lookup_symtab_callback): Delete.
14880 (lookup_symtab): Use a lambda.
14881 (iterate_over_symbols): Adjust to use function_view as callback
14882 type.
14883 (struct search_symbols_data, search_symbols_file_matches)
14884 (search_symbols_name_matches): Delete.
14885 (search_symbols): Use a pair of lambdas.
14886 (struct add_name_data, add_macro_name, symbol_completion_matcher)
14887 (symtab_expansion_callback): Delete.
14888 (default_make_symbol_completion_list_break_on_1): Use lambdas.
14889 * symtab.h: Include "common/function-view.h".
14890 (iterate_over_some_symtabs): Adjust to use function_view as
14891 callback type and return bool.
14892 (iterate_over_symtabs): Adjust to use function_view as callback
14893 type.
14894 (symbol_found_callback_ftype): Remove 'data' parameter and return
14895 bool.
14896 (iterate_over_symbols): Adjust to use function_view as callback
14897 type.
14898
14899 2017-02-23 Pedro Alves <palves@redhat.com>
14900
14901 * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS): New.
14902 (%.o) <unittests/%.c>: New pattern.
14903 * configure.ac ($development): Add $(SUBDIR_UNITTESTS_OBS) to
14904 CONFIG_OBS, and $(SUBDIR_UNITTESTS_SRCS) to CONFIG_SRCS.
14905 * common/function-view.h: New file.
14906 * unittests/function-view-selftests.c: New file.
14907 * configure: Regenerate.
14908
14909 2017-02-23 Simon Marchi <simon.marchi@ericsson.com>
14910
14911 * bsd-uthread.c (bsd_uthread_thread_alive): Use ptid instead of
14912 inferior_ptid.
14913 * go32-nat.c (go32_thread_alive): Likewise.
14914
14915 2017-02-23 Yao Qi <yao.qi@linaro.org>
14916
14917 * varobj-iter.h (varobj_iter_delete): Call xfree instead of
14918 delete.
14919
14920 2017-02-23 Yao Qi <yao.qi@linaro.org>
14921
14922 * varobj.c (varobj_clear_saved_item): Use delete instead of
14923 xfree.
14924 (update_dynamic_varobj_children): Likewise.
14925
14926 2017-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
14927
14928 * dwarf2read.c (dwarf2_record_block_ranges): Add forgotten BASEADDR.
14929
14930 2017-02-21 Simon Marchi <simon.marchi@ericsson.com>
14931
14932 * common/enum-flags.h (enum_flags::enum_flags): Initialize
14933 m_enum_value to 0 in default constructor.
14934
14935 2017-02-21 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
14936
14937 * rs6000-tdep.c (LOAD_AND_RESERVE_MASK): Rename from LWARX_MASK.
14938 (STORE_CONDITIONAL_MASK): Rename from STWCX_MASK.
14939 (LBARX_INSTRUCTION, LHARX_INSTRUCTION, LQARX_INSTRUCTION,
14940 STBCX_INSTRUCTION, STHCX_INSTRUCTION, STQCX_INSTRUCTION): New defines.
14941 (IS_LOAD_AND_RESERVE_INSN, IS_STORE_CONDITIONAL_INSN): New macros.
14942 (ppc_displaced_step_copy_insn): Use IS_LOAD_AND_RESERVE_INSN.
14943 (ppc_deal_with_atomic_sequence): Use IS_LOAD_AND_RESERVE_INSN and
14944 IS_STORE_CONDITIONAL_INSN.
14945
14946 2017-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
14947
14948 * dwarf2_rnglists_process: Initialize range_beginning and range_end.
14949
14950 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
14951
14952 * NEWS (Changes since GDB 7.12): Add DWARF-5.
14953
14954 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
14955
14956 * dwarf2read.c (skip_one_die, read_attribute_value)
14957 (dwarf2_const_value_attr, dump_die_shallow)
14958 (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
14959 (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_data16.
14960
14961 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
14962
14963 * dwarf2read.c (read_file_scope): Rename DW_MACRO_GNU_*.
14964 (dwarf_parse_macro_header): Accept DWARF version 5.
14965 (dwarf_decode_macro_bytes, dwarf_decode_macros): Rename DW_MACRO_GNU_*.
14966
14967 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
14968
14969 * block.c (call_site_for_pc): Rename DW_OP_GNU_*, DW_TAG_GNU_* and
14970 DW_AT_GNU_*.
14971 * common/common-exceptions.h (enum errors): Likewise.
14972 * dwarf2-frame.c (class dwarf_expr_executor): Likewise.
14973 * dwarf2expr.c (dwarf_block_to_dwarf_reg)
14974 (dwarf_expr_context::execute_stack_op): Likewise.
14975 * dwarf2expr.h (struct dwarf_expr_context, struct dwarf_expr_piece):
14976 Likewise.
14977 * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type)
14978 (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
14979 (show_entry_values_debug, call_site_to_target_addr)
14980 (func_addr_to_tail_call_list, func_verify_no_selftailcall)
14981 (dwarf_expr_reg_to_entry_parameter, dwarf_entry_parameter_to_value)
14982 (entry_data_value_free_closure, value_of_dwarf_reg_entry)
14983 (value_of_dwarf_block_entry, indirect_pieced_value)
14984 (symbol_needs_eval_context::push_dwarf_reg_entry_value):
14985 (disassemble_dwarf_expression): Likewise.
14986 * dwarf2read.c (process_die, inherit_abstract_dies)
14987 (read_call_site_scope): Likewise.
14988 * gdbtypes.h (struct func_type, struct call_site_parameter)
14989 (struct call_site): Likewise.
14990 * stack.c (read_frame_arg): Likewise.
14991 * std-operator.def (OP_VAR_ENTRY_VALUE): Likewise.
14992
14993 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
14994
14995 * defs.h (read_unsigned_leb128): New declaration.
14996 * dwarf2loc.c (decode_debug_loclists_addresses): New function.
14997 (decode_debug_loc_dwo_addresses): Update DEBUG_LOC_* to DW_LLE_*.
14998 (dwarf2_find_location_expression): Call also
14999 decode_debug_loclists_addresses. Handle DWARF-5 ULEB128 length.
15000 * dwarf2loc.h (dwarf2_version): New declaration.
15001 * dwarf2read.c (struct dwarf2_per_objfile): Add loclists, line_str,
15002 rnglists.
15003 (dwarf2_elf_names): Add .debug_loclists, .debug_line_str,
15004 .debug_rnglists.
15005 (struct dwop_section_names): Add loclists_dwo.
15006 (dwop_section_names): Add .debug_loclists.dwo.
15007 (struct comp_unit_head): Add unit_type, signature, type_offset_in_tu.
15008 (struct dwarf2_per_cu_data): Add dwarf_version.
15009 (struct dwo_sections): Add loclists.
15010 (struct attr_abbrev): Add implicit_const.
15011 (read_indirect_line_string): New declaration.
15012 (read_unsigned_leb128): Delete declaration.
15013 (rcuh_kind): New definition.
15014 (read_and_check_comp_unit_head): Change parameter
15015 is_debug_types_section to section_kind.
15016 (dwarf2_locate_sections): Handle loclists, line_str and rnglists.
15017 (read_comp_unit_head): Change parameter abfd to section, add parameter
15018 section_kind. Handle DWARF-5.
15019 (error_check_comp_unit_head): Accept also DWARF version 5.
15020 (read_and_check_comp_unit_head): Change parameter
15021 is_debug_types_section to section_kind.
15022 (read_and_check_type_unit_head): Delete function.
15023 (read_abbrev_offset): Handle DWARF-5.
15024 (create_debug_type_hash_table): Add parameter section_kind. Process
15025 only DW_UT_type. Use signature and type_offset_in_tu from struct
15026 comp_unit_head.
15027 (create_debug_types_hash_table): Update create_debug_type_hash_table
15028 caller.
15029 (create_all_type_units): Call create_debug_type_hash_table.
15030 (read_cutu_die_from_dwo, init_cutu_and_read_dies): Change
15031 read_and_check_type_unit_head caller to read_and_check_comp_unit_head
15032 caller.
15033 (skip_one_die): Handle DW_FORM_implicit_const.
15034 (dwarf2_rnglists_process): New function.
15035 (dwarf2_ranges_process): Call dwarf2_rnglists_process for DWARF-5.
15036 (abbrev_table_read_table): Handle DW_FORM_implicit_const.
15037 (read_attribute_value): Handle DW_FORM_implicit_const,
15038 DW_FORM_line_strp.
15039 (read_attribute): Handle DW_FORM_implicit_const.
15040 (read_indirect_string_at_offset_from): New function from
15041 read_indirect_string_at_offset.
15042 (read_indirect_string_at_offset): Call
15043 read_indirect_string_at_offset_from.
15044 (read_indirect_line_string_at_offset): New function.
15045 (read_indirect_string): New function comment.
15046 (read_indirect_line_string): New function.
15047 (read_unsigned_leb128): Make it global.
15048 (dwarf2_string_attr): Handle DWARF-5.
15049 (add_include_dir_stub, read_formatted_entries): New functions.
15050 (dwarf_decode_line_header, dump_die_shallow, cu_debug_loc_section):
15051 Handle DWARF-5.
15052 (per_cu_header_read_in): Update read_comp_unit_head caller.
15053 (dwarf2_version): New function.
15054 * symfile.h (struct dwarf2_debug_sections): Add loclists, line_str and
15055 rnglists.
15056 * xcoffread.c (dwarf2_xcoff_names): Update struct dwarf2_debug_sections
15057 fields.
15058
15059 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
15060
15061 * dwarf2read.c (abbrev_table_read_table): Read the data only once.
15062
15063 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
15064
15065 * dwarf2read.c (dwarf2_ranges_process): New function from
15066 dwarf2_ranges_read.
15067 (dwarf2_ranges_read, dwarf2_record_block_ranges): Use
15068 dwarf2_ranges_process.
15069
15070 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
15071
15072 * dwarf2read.c (create_debug_type_hash_table): New function from
15073 create_debug_types_hash_table.
15074 (create_debug_types_hash_table): Call create_debug_type_hash_table.
15075 (create_all_type_units, open_and_init_dwo_file): Update
15076 create_debug_types_hash_table callers.
15077
15078 2017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
15079
15080 PR gdb/16188
15081 * fork-child.c (trace_start_error): Fix thinko. va_end should
15082 refer to 'ap', not 'args'.
15083
15084 2017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
15085 Pedro Alves <palves@redhat.com>
15086
15087 PR gdb/16188
15088 * darwin-nat.c (darwin_ptrace_me): Check if calls to system
15089 calls succeeded.
15090 * fork-child.c (trace_start_error): New function.
15091 (trace_start_error_with_name): Likewise.
15092 * gnu-nat.c (gnu_ptrace_me): Check if call to PTRACE succeeded.
15093 * inf-ptrace.c (inf_ptrace_me): Likewise.
15094 * inferior.h (trace_start_error): New prototype.
15095 (trace_start_error_with_name): Likewise.
15096
15097 2017-02-15 Sergio Durigan Junior <sergiodj@redhat.com>
15098
15099 PR gdb/21164
15100 * psymtab.c (maintenance_print_psymbols): Verify if 'argv' is not
15101 NULL before using it.
15102 * symmisc.c (maintenance_print_symbols): Likewise.
15103 (maintenance_print_msymbols): Likewise.
15104
15105 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
15106
15107 * NEWS: Add record Python bindings entry.
15108
15109 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
15110
15111 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-record-btrace.o,
15112 py-record-full.o.
15113 (SUBDIR_PYTHON_SRCS): Add py-record-btrace.c, py-record-full.c.
15114 * python/py-record-btrace.c, python/py-record-btrace.h,
15115 python/py-record-full.c, python/py-record-full.h: New file.
15116 * python/py-record.c: Add include for py-record-btrace.h and
15117 py-record-full.h.
15118 (recpy_method, recpy_format, recpy_goto, recpy_replay_position,
15119 recpy_instruction_history, recpy_function_call_history, recpy_begin,
15120 recpy_end): Use functions from py-record-btrace.c and py-record-full.c.
15121 * python/python-internal.h (PyInt_FromSsize_t, PyInt_AsSsize_t):
15122 New definition.
15123 (gdbpy_initialize_btrace): New export.
15124 * python/python.c (_initialize_python): Add gdbpy_initialize_btrace.
15125
15126 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
15127
15128 * Makefile.in (SUBDIR_PYTHON_OBS): Add python/py-record.o.
15129 (SUBDIR_PYTHON_SRCS): Add python/py-record.c.
15130 * python/py-record.c: New file.
15131 * python/python-internal.h (gdbpy_start_recording,
15132 gdbpy_current_recording, gdpy_stop_recording,
15133 gdbpy_initialize_record): New export.
15134 * python/python.c (_initialize_python): Add gdbpy_initialize_record.
15135 (python_GdbMethods): Add gdbpy_start_recording,
15136 gdbpy_current_recording and gdbpy_stop_recording.
15137
15138 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
15139
15140 * record-btrace.c (record_btrace_record_method): New function.
15141 (init_record_btrace_ops): Initialize to_record_method.
15142 * record-full.c (record_full_record_method): New function.
15143 (init_record_full_ops, init_record_full_core_ops): Add
15144 record_full_record_method.
15145 * record.h (enum record_method): New enum.
15146 * target-debug.h (target_debug_print_enum_record_method: New define.
15147 * target-delegates.c: Regenerate.
15148 * target.c (target_record_method): New function.
15149 * target.h: Include record.h.
15150 (struct target_ops) <to_record_method>: New field.
15151 (target_record_method): New export.
15152
15153 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
15154
15155 * record.h (record_start, record_stop): New export.
15156 * record.c (record_start, record_stop): New function.
15157
15158 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
15159
15160 * btrace.c (btrace_fetch): Copy function call segments pointer
15161 into a vector.
15162 (btrace_clear): Clear the vector.
15163 (btrace_find_insn_by_number): Use binary search to find the correct
15164 function call segment.
15165 * btrace.h (brace_fun_p): New typedef.
15166 (struct btrace_thread_info) <functions>: New field.
15167
15168 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
15169
15170 * record-btrace.c (btrace_ui_out_decode_error): Move most of it ...
15171 * btrace.c (btrace_decode_error): ... here. New function.
15172 * btrace.h (btrace_decode_error): New export.
15173
15174 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
15175
15176 * btrace.c (ftrace_call_num_insn, btrace_insn_get_error): New function.
15177 (ftrace_new_function, btrace_insn_number, btrace_insn_cmp,
15178 btrace_find_insn_by_number): Remove special case for gaps.
15179 * btrace.h (btrace_insn_get_error): New export.
15180 (btrace_insn_number, btrace_find_insn_by_number): Adjust comment.
15181 * record-btrace.c (btrace_insn_history): Print number for gaps.
15182 (record_btrace_info, record_btrace_goto): Handle gaps.
15183
15184 2017-02-14 Tom Tromey <tom@tromey.com>
15185
15186 PR python/13598:
15187 * python/python.c (gdbpy_before_prompt_hook): Emit before_prompt
15188 event.
15189 * python/py-evts.c (gdbpy_initialize_py_events): Add
15190 before_prompt registry.
15191 * python/py-events.h (events_object) <before_prompt>: New field.
15192
15193 2017-02-14 Markus Metzger <markus.t.metzger@intel.com>
15194
15195 * btrace.c (ftrace_new_switch): Preserve up link and flags.
15196
15197 2017-02-13 Luis Machado <lgustavo@codesourcery.com>
15198
15199 * symfile (_initialize_symfile): Add usage text to the load command's
15200 help text.
15201
15202 2017-02-10 Simon Marchi <simon.marchi@ericsson.com>
15203
15204 * utils.c (defaulted_query): Don't query on secondary UIs.
15205
15206 2017-02-10 Tom Tromey <tom@tromey.com>
15207
15208 * rust-lang.c (rust_get_disr_info): Remove unused variable.
15209
15210 2017-02-10 Tom Tromey <tom@tromey.com>
15211
15212 * python/py-value.c (valpy_richcompare_throw): Remove unnecessary
15213 "cleanup" local.
15214 * python/py-type.c (typy_legacy_template_argument): Remove
15215 unnecessary "cleanup" local.
15216
15217 2017-02-10 Tom Tromey <tom@tromey.com>
15218
15219 * python/python.c (do_start_initialization): New function, from
15220 _initialize_python.
15221 (_initialize_python): Call do_start_initialization.
15222 * python/py-linetable.c (ltpy_iternext): Use explicit returns, not
15223 goto.
15224
15225 2017-02-10 Tom Tromey <tom@tromey.com>
15226
15227 * python/py-prettyprint.c (pretty_print_one_value): Use
15228 gdbpy_ref.
15229
15230 2017-02-10 Tom Tromey <tom@tromey.com>
15231
15232 * python/py-cmd.c (cmdpy_destroyer): Use gdbpy_ref.
15233 * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Use
15234 gdbpy_ref.
15235 * python/py-type.c (field_new): Use gdbpy_ref.
15236 * python/py-symtab.c (symtab_and_line_to_sal_object): Use
15237 gdbpy_ref.
15238 * python/py-progspace.c (pspy_new): Use gdbpy_ref.
15239 (py_free_pspace): Likewise.
15240 (pspace_to_pspace_object): Likewise.
15241 * python/py-objfile.c (objfpy_new): Use gdbpy_ref.
15242 (py_free_objfile): Likewise.
15243 (objfile_to_objfile_object): Likewise.
15244 * python/py-inferior.c (delete_thread_object): Use
15245 gdbpy_ref.
15246 (infpy_read_memory): Likewise.
15247 (py_free_inferior): Likewise.
15248 * python/py-evtregistry.c (create_eventregistry_object): Use
15249 gdbpy_ref.
15250 * python/py-event.c (create_event_object): Use gdbpy_ref.
15251
15252 2017-02-10 Tom Tromey <tom@tromey.com>
15253
15254 * python/py-ref.h (gdbpy_ref_policy): Now a template.
15255 (gdbpy_ref): Now a template; allow subclasses of PyObject to be
15256 used.
15257 * python/py-arch.c, python/py-bpevent.c, python/py-breakpoint.c,
15258 python/py-cmd.c, python/py-continueevent.c, python/py-event.c,
15259 python/py-exitedevent.c, python/py-finishbreakpoint.c,
15260 python/py-framefilter.c, python/py-function.c,
15261 python/py-inferior.c, python/py-infevents.c,
15262 python/py-linetable.c, python/py-newobjfileevent.c,
15263 python/py-param.c, python/py-prettyprint.c, python/py-ref.h,
15264 python/py-signalevent.c, python/py-stopevent.c,
15265 python/py-symbol.c, python/py-threadevent.c, python/py-type.c,
15266 python/py-unwind.c, python/py-utils.c, python/py-value.c,
15267 python/py-varobj.c, python/py-xmethods.c, python/python.c,
15268 varobj.c: Change gdbpy_ref to gdbpy_ref<>.
15269
15270 2017-02-10 Tom Tromey <tom@tromey.com>
15271
15272 * ui-out.h (ui_out_emit_type): New class.
15273 (ui_out_emit_tuple, ui_out_emit_list): New typedefs.
15274 * python/py-framefilter.c (py_print_single_arg): Use gdb::optional
15275 and ui_out_emit_tuple.
15276 (enumerate_locals): Likewise.
15277 (py_mi_print_variables, py_print_locals, py_print_args): Use
15278 ui_out_emit_list.
15279 (py_print_frame): Use gdb::optional, ui_out_emit_tuple,
15280 ui_out_emit_list.
15281 * common/gdb_optional.h: New file.
15282
15283 2017-02-10 Martin Galvan <martingalvan@sourceware.org>
15284
15285 * MAINTAINERS (Write After Approval): Update my e-mail address.
15286
15287 2017-02-10 Martin Galvan <martingalvan@sourceware.org>
15288
15289 PR gdb/21122
15290 * breakpoint.c (_initialize_breakpoint): Update the help description
15291 of the 'commands' command to indicate that it takes a list argument.
15292
15293 2017-02-09 Simon Marchi <simon.marchi@ericsson.com>
15294
15295 * interps.c (current_interp_set_logging): Remove "return".
15296
15297 2017-02-09 Gary Benson <gbenson@redhat.com>
15298
15299 * symtab.c (add_symtab_completions): Prevent NULL pointer
15300 dereference.
15301
15302 2017-02-08 Pedro Alves <palves@redhat.com>
15303
15304 * interps.c (interp::interp): Remove reference to quiet_p.
15305 (interp_set): Make static. Remove dead "Switching to" output
15306 code.
15307 (interp_quiet_p, interp_set_quiet): Delete.
15308 (interpreter_exec_cmd): Don't set the interpreter quiet.
15309 * interps.h (interp_quiet_p): Make static.
15310 (class interp) <quiet_p>: Remove field
15311
15312 2017-02-08 Jerome Guitton <guitton@adacore.com>
15313
15314 * cli/cli-decode.c (find_command_name_length): Make it extern.
15315 * cli/cli-decode.h (find_command_name_length): Declare.
15316 * cli/cli-script.c (command_name_equals, line_first_arg):
15317 New functions.
15318 (process_next_line): Use cli-decode to parse command names.
15319 (build_command_line): Make args a constant pointer.
15320
15321 2017-02-08 Jerome Guitton <guitton@adacore.com>
15322
15323 * cli-decode.c (lookup_cmd_1, lookup_cmd_composition):
15324 Remove case-insensitive search.
15325
15326 2017-02-07 Jose E. Marchesi <jose.marchesi@oracle.com>
15327
15328 * sparc-tdep.c (sparc32_gdbarch_init): Do not place a + operator
15329 at the end of the line. Avoids an ARI warning.
15330
15331 2017-02-06 Luis Machado <lgustavo@codesourcery.com>
15332
15333 * NEWS: Mention support for record/replay of Intel 64 rdrand and
15334 rdseed instructions.
15335 i386-tdep.c (i386_process_record): Handle Intel 64 rdrand and rseed.
15336
15337 2017-02-06 Ivo Raisr <ivo.raisr@oracle.com>
15338
15339 PR tdep/20936
15340 Provide and use sparc32 and sparc64 target description XML files.
15341 * features/sparc/sparc32-cp0.xml, features/sparc/sparc32-cpu.xml,
15342 features/sparc/sparc32-fpu.xml: New files for sparc 32-bit.
15343 * features/sparc/sparc64-cp0.xml, features/sparc/sparc64-cpu.xml,
15344 features/sparc/sparc64-fpu.xml: New files for sparc 64-bit.
15345 * features/sparc/sparc32-solaris.xml: New file.
15346 * features/sparc/sparc64-solaris.xml: New file.
15347 * features/sparc/sparc32-solaris.c: Generated.
15348 * features/sparc/sparc64-solaris.c: Generated.
15349 * sparc-tdep.h: Account for differences in target descriptions.
15350 * sparc-tdep.c (sparc32_register_name): Use target provided registers.
15351 (sparc32_register_type): Use target provided registers.
15352 (validate_tdesc_registers): New function.
15353 (sparc32_gdbarch_init): Use tdesc_has_registers.
15354 Set pseudoregister functions.
15355 * sparc64-tdep.c (sparc64_register_name): Use target provided registers.
15356 (sparc64_register_type): Use target provided registers.
15357 (sparc64_init_abi): Set pseudoregister functions.
15358
15359 2017-02-03 Tom Tromey <tom@tromey.com>
15360
15361 PR rust/21097:
15362 * rust-lang.c (rust_print_type) <TYPE_CODE_UNION>: Handle enums
15363 with a single member.
15364
15365 2017-02-03 Pedro Alves <palves@redhat.com>
15366
15367 * cli/cli-interp.c (cli_interp_base::cli_interp_base)
15368 (cli_interp_base::~cli_interp_base): New.
15369 (cli_interp): New struct.
15370 (as_cli_interp): Cast the interp itself to cli_interp.
15371 (cli_interpreter_pre_command_loop): Rename to ...
15372 (cli_interp_base::pre_command_loop): ... this. Remove 'self'
15373 parameter.
15374 (cli_interpreter_init): Rename to ...
15375 (cli_interp::init): ... this. Remove 'self' parameter. Use
15376 boolean. Make extern.
15377 (cli_interpreter_resume): Rename to ...
15378 (cli_interp::resume): ... this. Remove 'data' parameter. Make
15379 extern.
15380 (cli_interpreter_suspend): Rename to ...
15381 (cli_interp::suspend): ... this. Remove 'data' parameter. Make
15382 extern.
15383 (cli_interpreter_exec): Rename to ...
15384 (cli_interp::exec): ... this. Remove 'data' parameter. Make
15385 extern.
15386 (cli_interpreter_supports_command_editing): Rename to ...
15387 (cli_interp_base::supports_command_editing): ... this. Remove
15388 'interp' parameter. Make extern.
15389 (cli_ui_out): Rename to ...
15390 (cli_interp::interp_ui_out): ... this. Remove 'interp' parameter.
15391 Make extern.
15392 (cli_set_logging): Rename to ...
15393 (cli_interp_base::set_logging): ... this. Remove 'interp'
15394 parameter. Make extern.
15395 (cli_interp_procs): Delete.
15396 (cli_interp_factory): Adjust to use "new".
15397 * cli/cli-interp.h: Include "interps.h".
15398 (struct cli_interp_base): New struct.
15399 * interps.c (struct interp): Delete. Fields moved to interps.h.
15400 (interp_new): Delete.
15401 (interp::interp, interp::~interp): New.
15402 (interp_set): Use bool, and return void. Assume the interpreter
15403 has suspend, init and resume methods, and that the all return
15404 void.
15405 (set_top_level_interpreter): interp_set returns void.
15406 (interp_ui_out): Adapt.
15407 (current_interp_set_logging): Adapt.
15408 (interp_data): Delete.
15409 (interp_pre_command_loop, interp_supports_command_editing): Adapt.
15410 (interp_exec): Adapt.
15411 (top_level_interpreter_data): Delete.
15412 * interps.h (interp_init_ftype, interp_resume_ftype)
15413 (interp_suspend_ftype, interp_exec_ftype)
15414 (interp_pre_command_loop_ftype, interp_ui_out_ftype): Delete.
15415 (class interp): New.
15416 (interp_new): Delete.
15417 (interp_set): Now returns void. Use bool.
15418 (interp_data, top_level_interpreter_data): Delete.
15419 * mi/mi-common.h: Include interps.h.
15420 (class mi_interp): Inherit from interp. Define a ctor. Declare
15421 init, resume, suspect, exec, interp_ui_out, set_logging and
15422 pre_command_loop methods.
15423 * mi/mi-interp.c (as_mi_interp): Cast the interp itself.
15424 (mi_interpreter_init): Rename to ...
15425 (mi_interp::init): ... this. Remove the 'interp' parameter, use
15426 bool, return void and make extern. Adjust.
15427 (mi_interpreter_resume): ... Rename to ...
15428 (mi_interp::resume): ... this. Remove the 'data' parameter,
15429 return void and make extern. Adjust.
15430 (mi_interpreter_suspend): ... Rename to ...
15431 (mi_interp::suspend): ... this. Remove the 'data' parameter,
15432 return void and make extern. Adjust.
15433 (mi_interpreter_exec): ... Rename to ...
15434 (mi_interp::exec): ... this. Remove the 'data' parameter and make
15435 extern. Adjust.
15436 (mi_interpreter_pre_command_loop): ... Rename to ...
15437 (mi_interp::pre_command_loop): ... this. Remove the 'self'
15438 parameter and make extern.
15439 (mi_on_normal_stop_1): Adjust.
15440 (mi_ui_out): Rename to ...
15441 (mi_interp::interp_ui_out): ... this. Remove the 'interp'
15442 parameter and make extern. Adjust.
15443 (mi_set_logging): Rename to ...
15444 (mi_interp::set_logging): ... this. Remove the 'interp'
15445 parameter and make extern. Adjust.
15446 (mi_interp_procs): Delete.
15447 (mi_interp_factory): Adjust to use 'new'.
15448 * mi/mi-main.c (mi_cmd_gdb_exit, captured_mi_execute_command)
15449 (mi_print_exception, mi_execute_command, mi_load_progress):
15450 Adjust.
15451 * tui/tui-interp.c (tui_interp): New class.
15452 (as_tui_interp): Return a tui_interp pointer.
15453 (tui_on_normal_stop, tui_on_signal_received)
15454 (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
15455 (tui_on_no_history, tui_on_user_selected_context_changed): Adjust
15456 to use interp::interp_ui_out.
15457 (tui_init): Rename to ...
15458 (tui_interp::init): ... this. Remove the 'self' parameter, use
15459 bool, return void and make extern. Adjust.
15460 (tui_resume): Rename to ...
15461 (tui_interp::resume): ... this. Remove the 'data' parameter,
15462 return void and make extern. Adjust.
15463 (tui_suspend): Rename to ...
15464 (tui_interp::suspend): ... this. Remove the 'data' parameter,
15465 return void and make extern. Adjust.
15466 (tui_ui_out): Rename to ...
15467 (tui_interp::interp_ui_out): ... this. Remove the 'self'
15468 parameter, and make extern. Adjust.
15469 (tui_exec): Rename to ...
15470 (tui_interp::exec): ... this. Remove the 'data' parameter and
15471 make extern.
15472 (tui_interp_procs): Delete.
15473 (tui_interp_factory): Use "new".
15474
15475 2017-02-02 Tom Tromey <tom@tromey.com>
15476
15477 * rust-exp.y (ends_raw_string, space_then_number)
15478 (rust_identifier_start_p): Return bool.
15479 * rust-lang.c (rust_tuple_type_p, rust_underscore_fields)
15480 (rust_tuple_struct_type_p, rust_tuple_variant_type_p)
15481 (rust_slice_type_p, rust_range_type_p, rust_u8_type_p)
15482 (rust_chartype_p): Return bool.
15483 (val_print_struct, rust_print_struct_def, rust_print_type):
15484 Update.
15485 * rust-lang.h (rust_tuple_type_p, rust_tuple_struct_type_p):
15486 Return bool.
15487
15488 2017-02-02 Tom Tromey <tom@tromey.com>
15489
15490 * rust-lang.c: Reindent.
15491
15492 2017-02-02 Tom Tromey <tom@tromey.com>
15493
15494 * rust-lang.h (rust_crate_for_block): Update.
15495 * rust-lang.c (rust_crate_for_block): Return std::string.
15496 (rust_get_disr_info): Use std:;string, not
15497 gdb::unique_xmalloc_ptr.
15498 * rust-exp.y (crate_name): Update.
15499
15500 2017-02-02 Pedro Alves <palves@redhat.com>
15501
15502 * disasm-selftests.c (print_one_insn_test): Move the "verbose"
15503 field out of gdb_disassembler_test and make it static.
15504
15505 2017-02-02 Pedro Alves <palves@redhat.com>
15506
15507 * mi/mi-common.h (struct mi_interp): Delete the mi2_interp,
15508 mi1_interp and mi_interp fields.
15509
15510 2017-02-02 Pedro Alves <palves@redhat.com>
15511
15512 * cli/cli-interp.c (struct saved_output_files, saved_output):
15513 Moved from cli/cli-logging.c.
15514 (cli_set_logging): New function.
15515 (cli_interp_procs): Install cli_set_logging.
15516 * cli/cli-interp.h (make_logging_output, cli_set_logging):
15517 Declare.
15518 * cli/cli-logging.c (struct saved_output_files, saved_output):
15519 Moved to cli/cli-interp.c.
15520 (pop_output_files): Don't save outputs here.
15521 (make_logging_output): New function.
15522 (handle_redirections): Don't build tee nor save previous outputs
15523 here.
15524 * interps.c (current_interp_set_logging): Change prototype.
15525 Assume there's always a set_logging_proc method installed.
15526 * interps.h (interp_set_logging_ftype): Change prototype.
15527 (current_interp_set_logging): Change prototype and adjust comment.
15528 * mi/mi-interp.c (mi_set_logging): Change protototype. Adjust to
15529 use make_logging_output.
15530 * tui/tui-interp.c (tui_interp_procs): Install cli_set_logging.
15531 2017-02-02 Pedro Alves <palves@redhat.com>
15532
15533 * cli/cli-logging.c (maybe_warn_already_logging): New factored out
15534 from ...
15535 (set_logging_overwrite): ... here.
15536 (logging_no_redirect_file): Delete.
15537 (set_logging_redirect): Don't handle redirection on the fly.
15538 Instead warn that "logging off" / "logging on" is necessary.
15539 (pop_output_files): Delete references to logging_no_redirect_file.
15540 (show_logging_command): Always speak in terms of what will happen
15541 once logging is reenabled.
15542
15543 2017-02-02 Pedro Alves <palves@redhat.com>
15544
15545 * disasm.h (gdb_pretty_print_disassembler): Tweak intro comment.
15546
15547 2017-02-02 Pedro Alves <palves@redhat.com>
15548
15549 * disasm.c (gdb_pretty_print_insn): Rename to ...
15550 (gdb_pretty_print_disassembler::pretty_print_insn): ... this.
15551 Remove gdbarch parameter. Adapt to clear the object's buffers
15552 instead of allocating new buffers, and to print using the object's
15553 gdb_disassembler instead of calling gdb_print_insn.
15554 (dump_insns): Use gdb_pretty_print_disassembler.
15555 * disasm.h (gdb_pretty_print_insn): Delete declaration.
15556 (gdb_pretty_print_disassembler): New class.
15557 * record-btrace.c (btrace_insn_history): Use
15558 gdb_pretty_print_disassembler.
15559
15560 2017-02-02 Pedro Alves <palves@redhat.com>
15561
15562 * ada-lang.c (type_as_string): Use string_file.
15563 * ada-valprint.c (ada_print_floating): Use string_file.
15564 * ada-varobj.c (ada_varobj_scalar_image)
15565 (ada_varobj_get_value_image): Use string_file.
15566 * aix-thread.c (aix_thread_extra_thread_info): Use string_file.
15567 * arm-tdep.c (_initialize_arm_tdep): Use string_printf.
15568 * breakpoint.c (update_inserted_breakpoint_locations)
15569 (insert_breakpoint_locations, reattach_breakpoints)
15570 (print_breakpoint_location, print_one_detail_ranged_breakpoint)
15571 (print_it_watchpoint): Use string_file.
15572 (save_breakpoints): Use stdio_file.
15573 * c-exp.y (oper): Use string_file.
15574 * cli/cli-logging.c (set_logging_redirect): Use ui_file_up and
15575 tee_file.
15576 (pop_output_files): Use delete.
15577 (handle_redirections): Use stdio_file and tee_file.
15578 * cli/cli-setshow.c (do_show_command): Use string_file.
15579 * compile/compile-c-support.c (c_compute_program): Use
15580 string_file.
15581 * compile/compile-c-symbols.c (generate_vla_size): Take a
15582 'string_file &' instead of a 'ui_file *'.
15583 (generate_c_for_for_one_variable): Take a 'string_file &' instead
15584 of a 'ui_file *'. Use string_file.
15585 (generate_c_for_variable_locations): Take a 'string_file &'
15586 instead of a 'ui_file *'.
15587 * compile/compile-internal.h (generate_c_for_for_one_variable):
15588 Take a 'string_file &' instead of a 'ui_file *'.
15589 * compile/compile-loc2c.c (push, pushf, unary, binary)
15590 (print_label, pushf_register_address, pushf_register)
15591 (do_compile_dwarf_expr_to_c): Take a 'string_file &' instead of a
15592 'ui_file *'. Adjust.
15593 * compile/compile.c (compile_to_object): Use string_file.
15594 * compile/compile.h (compile_dwarf_expr_to_c)
15595 (compile_dwarf_bounds_to_c): Take a 'string_file &' instead of a
15596 'ui_file *'.
15597 * cp-support.c (inspect_type): Use string_file and obstack_copy0.
15598 (replace_typedefs_qualified_name): Use string_file and
15599 obstack_copy0.
15600 * disasm.c (gdb_pretty_print_insn): Use string_file.
15601 (gdb_disassembly): Adjust reference the null_stream global.
15602 (do_ui_file_delete): Delete.
15603 (gdb_insn_length): Use null_stream.
15604 * dummy-frame.c (maintenance_print_dummy_frames): Use stdio_file.
15605 * dwarf2loc.c (dwarf2_compile_property_to_c)
15606 (locexpr_generate_c_location, loclist_generate_c_location): Take a
15607 'string_file &' instead of a 'ui_file *'.
15608 * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise.
15609 * dwarf2read.c (do_ui_file_peek_last): Delete.
15610 (dwarf2_compute_name): Use string_file.
15611 * event-top.c (gdb_setup_readline): Use stdio_file.
15612 * gdbarch.sh (verify_gdbarch): Use string_file.
15613 * gdbtypes.c (safe_parse_type): Use null_stream.
15614 * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
15615 string_file.
15616 * guile/scm-disasm.c (gdbscm_print_insn_from_port): Take a
15617 'string_file *' instead of a 'ui_file *'.
15618 (gdbscm_arch_disassemble): Use string_file.
15619 * guile/scm-frame.c (frscm_print_frame_smob): Use string_file.
15620 * guile/scm-ports.c (class ioscm_file_port): Now a class that
15621 inherits from ui_file.
15622 (ioscm_file_port_delete, ioscm_file_port_rewind)
15623 (ioscm_file_port_put): Delete.
15624 (ioscm_file_port_write): Rename to ...
15625 (ioscm_file_port::write): ... this. Remove file_port_magic
15626 checks.
15627 (ioscm_file_port_new): Delete.
15628 (ioscm_with_output_to_port_worker): Use ioscm_file_port and
15629 ui_file_up.
15630 * guile/scm-type.c (tyscm_type_name): Use string_file.
15631 * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
15632 Use string_file.
15633 * infcmd.c (print_return_value_1): Use string_file.
15634 * infrun.c (print_target_wait_results): Use string_file.
15635 * language.c (add_language): Use string_file.
15636 * location.c (explicit_to_string_internal): Use string_file.
15637 * main.c (captured_main_1): Use null_file.
15638 * maint.c (maintenance_print_architecture): Use stdio_file.
15639 * mi/mi-cmd-stack.c (list_arg_or_local): Use string_file.
15640 * mi/mi-common.h (struct mi_interp) <out, err, log, targ,
15641 event_channel>: Change type to mi_console_file pointer.
15642 * mi/mi-console.c (mi_console_file_fputs, mi_console_file_flush)
15643 (mi_console_file_delete): Delete.
15644 (struct mi_console_file): Delete.
15645 (mi_console_file_magic): Delete.
15646 (mi_console_file_new): Delete.
15647 (mi_console_file::mi_console_file): New.
15648 (mi_console_file_delete): Delete.
15649 (mi_console_file_fputs): Delete.
15650 (mi_console_file::write): New.
15651 (mi_console_raw_packet): Delete.
15652 (mi_console_file::flush): New.
15653 (mi_console_file_flush): Delete.
15654 (mi_console_set_raw): Rename to ...
15655 (mi_console_file::set_raw): ... this.
15656 * mi/mi-console.h (class mi_console_file): New class.
15657 (mi_console_file_new, mi_console_set_raw): Delete.
15658 * mi/mi-interp.c (mi_interpreter_init): Use mi_console_file.
15659 (mi_set_logging): Use delete and tee_file. Adjust.
15660 * mi/mi-main.c (output_register): Use string_file.
15661 (mi_cmd_data_evaluate_expression): Use string_file.
15662 (mi_cmd_data_read_memory): Use string_file.
15663 (mi_cmd_execute, print_variable_or_computed): Use string_file.
15664 * mi/mi-out.c (mi_ui_out::main_stream): New.
15665 (mi_ui_out::rewind): Use main_stream and
15666 string_file.
15667 (mi_ui_out::put): Use main_stream and string_file.
15668 (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
15669 Allocate a 'string_file' instead.
15670 (mi_out_new): Don't allocate a mem_fileopen stream here.
15671 * mi/mi-out.h (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
15672 (mi_ui_out::main_stream): Declare method.
15673 * printcmd.c (eval_command): Use string_file.
15674 * psymtab.c (maintenance_print_psymbols): Use stdio_file.
15675 * python/py-arch.c (archpy_disassemble): Use string_file.
15676 * python/py-breakpoint.c (bppy_get_commands): Use string_file.
15677 * python/py-frame.c (frapy_str): Use string_file.
15678 * python/py-framefilter.c (py_print_type, py_print_single_arg):
15679 Use string_file.
15680 * python/py-type.c (typy_str): Use string_file.
15681 * python/py-unwind.c (unwind_infopy_str): Use string_file.
15682 * python/py-value.c (valpy_str): Use string_file.
15683 * record-btrace.c (btrace_insn_history): Use string_file.
15684 * regcache.c (regcache_print): Use stdio_file.
15685 * reggroups.c (maintenance_print_reggroups): Use stdio_file.
15686 * remote.c (escape_buffer): Use string_file.
15687 * rust-lang.c (rust_get_disr_info): Use string_file.
15688 * serial.c (serial_open_ops_1): Use stdio_file.
15689 (do_serial_close): Use delete.
15690 * stack.c (print_frame_arg): Use string_file.
15691 (print_frame_args): Remove local mem_fileopen stream, not used.
15692 (print_frame): Use string_file.
15693 * symmisc.c (maintenance_print_symbols): Use stdio_file.
15694 * symtab.h (struct symbol_computed_ops) <generate_c_location>:
15695 Take a 'string_file *' instead of a 'ui_file *'.
15696 * top.c (new_ui): Use stdio_file and stderr_file.
15697 (free_ui): Use delete.
15698 (execute_command_to_string): Use string_file.
15699 (quit_confirm): Use string_file.
15700 * tracepoint.c (collection_list::append_exp): Use string_file.
15701 * tui/tui-disasm.c (tui_disassemble): Use string_file.
15702 * tui/tui-file.c: Don't include "ui-file.h".
15703 (enum streamtype, struct tui_stream): Delete.
15704 (tui_file_new, tui_file_delete, tui_fileopen, tui_sfileopen)
15705 (tui_file_isatty, tui_file_rewind, tui_file_put): Delete.
15706 (tui_file::tui_file): New method.
15707 (tui_file_fputs): Delete.
15708 (tui_file_get_strbuf): Delete.
15709 (tui_file::puts): New method.
15710 (tui_file_adjust_strbuf): Delete.
15711 (tui_file_flush): Delete.
15712 (tui_file::flush): New method.
15713 * tui/tui-file.h: Tweak intro comment.
15714 Include ui-file.h.
15715 (tui_fileopen, tui_sfileopen, tui_file_get_strbuf)
15716 (tui_file_adjust_strbuf): Delete declarations.
15717 (class tui_file): New class.
15718 * tui/tui-io.c (tui_initialize_io): Use tui_file.
15719 * tui/tui-regs.c (tui_restore_gdbout): Use delete.
15720 (tui_register_format): Use string_stream.
15721 * tui/tui-stack.c (tui_make_status_line): Use string_file.
15722 (tui_get_function_from_frame): Use string_file.
15723 * typeprint.c (type_to_string): Use string_file.
15724 * ui-file.c (struct ui_file, ui_file_magic, ui_file_new): Delete.
15725 (null_stream): New global.
15726 (ui_file_delete): Delete.
15727 (ui_file::ui_file): New.
15728 (null_file_isatty): Delete.
15729 (ui_file::~ui_file): New.
15730 (null_file_rewind): Delete.
15731 (ui_file::printf): New.
15732 (null_file_put): Delete.
15733 (null_file_flush): Delete.
15734 (ui_file::putstr): New.
15735 (null_file_write): Delete.
15736 (ui_file::putstrn): New.
15737 (null_file_read): Delete.
15738 (ui_file::putc): New.
15739 (null_file_fputs): Delete.
15740 (null_file_write_async_safe): Delete.
15741 (ui_file::vprintf): New.
15742 (null_file_delete): Delete.
15743 (null_file::write): New.
15744 (null_file_fseek): Delete.
15745 (null_file::puts): New.
15746 (ui_file_data): Delete.
15747 (null_file::write_async_safe): New.
15748 (gdb_flush, ui_file_isatty): Adjust.
15749 (ui_file_put, ui_file_rewind): Delete.
15750 (ui_file_write): Adjust.
15751 (ui_file_write_for_put): Delete.
15752 (ui_file_write_async_safe, ui_file_read): Adjust.
15753 (ui_file_fseek): Delete.
15754 (fputs_unfiltered): Adjust.
15755 (set_ui_file_flush, set_ui_file_isatty, set_ui_file_rewind)
15756 (set_ui_file_put, set_ui_file_write, set_ui_file_write_async_safe)
15757 (set_ui_file_read, set_ui_file_fputs, set_ui_file_fseek)
15758 (set_ui_file_data): Delete.
15759 (string_file::~string_file, string_file::write)
15760 (struct accumulated_ui_file, do_ui_file_xstrdup, ui_file_xstrdup)
15761 (do_ui_file_as_string, ui_file_as_string): Delete.
15762 (do_ui_file_obsavestring, ui_file_obsavestring): Delete.
15763 (struct mem_file): Delete.
15764 (mem_file_new): Delete.
15765 (stdio_file::stdio_file): New.
15766 (mem_file_delete): Delete.
15767 (stdio_file::stdio_file): New.
15768 (mem_fileopen): Delete.
15769 (stdio_file::~stdio_file): New.
15770 (mem_file_rewind): Delete.
15771 (stdio_file::set_stream): New.
15772 (mem_file_put): Delete.
15773 (stdio_file::open): New.
15774 (mem_file_write): Delete.
15775 (stdio_file_magic, struct stdio_file): Delete.
15776 (stdio_file_new, stdio_file_delete, stdio_file_flush): Delete.
15777 (stdio_file::flush): New.
15778 (stdio_file_read): Rename to ...
15779 (stdio_file::read): ... this. Adjust.
15780 (stdio_file_write): Rename to ...
15781 (stdio_file::write): ... this. Adjust.
15782 (stdio_file_write_async_safe): Rename to ...
15783 (stdio_file::write_async_safe) ... this. Adjust.
15784 (stdio_file_fputs): Rename to ...
15785 (stdio_file::puts) ... this. Adjust.
15786 (stdio_file_isatty): Delete.
15787 (stdio_file_fseek): Delete.
15788 (stdio_file::isatty): New.
15789 (stderr_file_write): Rename to ...
15790 (stderr_file::write) ... this. Adjust.
15791 (stderr_file_fputs): Rename to ...
15792 (stderr_file::puts) ... this. Adjust.
15793 (stderr_fileopen, stdio_fileopen, gdb_fopen): Delete.
15794 (stderr_file::stderr_file): New.
15795 (tee_file_magic): Delete.
15796 (struct tee_file): Delete.
15797 (tee_file::tee_file): New.
15798 (tee_file_new): Delete.
15799 (tee_file::~tee_file): New.
15800 (tee_file_delete): Delete.
15801 (tee_file_flush): Rename to ...
15802 (tee_file::flush): ... this. Adjust.
15803 (tee_file_write): Rename to ...
15804 (tee_file::write): ... this. Adjust.
15805 (tee_file::write_async_safe): New.
15806 (tee_file_fputs): Rename to ...
15807 (tee_file::puts): ... this. Adjust.
15808 (tee_file_isatty): Rename to ...
15809 (tee_file::isatty): ... this. Adjust.
15810 * ui-file.h (struct obstack, struct ui_file): Don't
15811 forward-declare.
15812 (ui_file_new, ui_file_flush_ftype, set_ui_file_flush)
15813 (ui_file_write_ftype)
15814 (set_ui_file_write, ui_file_fputs_ftype, set_ui_file_fputs)
15815 (ui_file_write_async_safe_ftype, set_ui_file_write_async_safe)
15816 (ui_file_read_ftype, set_ui_file_read, ui_file_isatty_ftype)
15817 (set_ui_file_isatty, ui_file_rewind_ftype, set_ui_file_rewind)
15818 (ui_file_put_method_ftype, ui_file_put_ftype, set_ui_file_put)
15819 (ui_file_delete_ftype, set_ui_file_data, ui_file_fseek_ftype)
15820 (set_ui_file_fseek): Delete.
15821 (ui_file_data, ui_file_delete, ui_file_rewind)
15822 (struct ui_file): New.
15823 (ui_file_up): New.
15824 (class null_file): New.
15825 (null_stream): Declare.
15826 (ui_file_write_for_put, ui_file_put): Delete.
15827 (ui_file_xstrdup, ui_file_as_string, ui_file_obsavestring):
15828 Delete.
15829 (ui_file_fseek, mem_fileopen, stdio_fileopen, stderr_fileopen)
15830 (gdb_fopen, tee_file_new): Delete.
15831 (struct string_file): New.
15832 (struct stdio_file): New.
15833 (stdio_file_up): New.
15834 (struct stderr_file): New.
15835 (class tee_file): New.
15836 * ui-out.c (ui_out::field_stream): Take a 'string_file &' instead
15837 of a 'ui_file *'. Adjust.
15838 * ui-out.h (class ui_out) <field_stream>: Likewise.
15839 * utils.c (do_ui_file_delete, make_cleanup_ui_file_delete)
15840 (null_stream): Delete.
15841 (error_stream): Take a 'string_file &' instead of a 'ui_file *'.
15842 Adjust.
15843 * utils.h (struct ui_file): Delete forward declaration..
15844 (make_cleanup_ui_file_delete, null_stream): Delete declarations.
15845 (error_stream): Take a 'string_file &' instead of a
15846 'ui_file *'.
15847 * varobj.c (varobj_value_get_print_value): Use string_file.
15848 * xtensa-tdep.c (xtensa_verify_config): Use string_file.
15849 * gdbarch.c: Regenerate.
15850
15851 2017-02-02 Pedro Alves <palves@redhat.com>
15852
15853 * disasm.c (gdb_disassembler::pretty_print_insn): Rename to...
15854 (gdb_pretty_print_insn): ... this. Now a free function. Add back
15855 a 'gdbarch' parameter. Allocate a mem_fileopen stream here.
15856 Adjust to call gdb_print_insn instead of
15857 gdb_disassembler::print_insn.
15858 (dump_insns, do_mixed_source_and_assembly_deprecated)
15859 (do_mixed_source_and_assembly, do_assembly_only): Add back a
15860 'gdbarch' parameter. Remove gdb_disassembler parameter.
15861 (gdb_disassembly): Don't allocate a gdb_disassembler here.
15862 * disasm.h (gdb_disassembler::pretty_print_insn): Delete
15863 declaration.
15864 (gdb_pretty_print_insn): Re-add declaration.
15865 * record-btrace.c (btrace_insn_history): Don't allocate a
15866 gdb_disassembler here. Adjust to call gdb_pretty_print_insn.
15867
15868 2017-02-01 Simon Marchi <simon.marchi@polymtl.ca>
15869
15870 * disasm.h (gdb_disassembly): Remove file_string parameter.
15871 * disasm.c (gdb_disassembly): Likewise.
15872 * cli/cli-cmds.c (print_disassembly): Adapt.
15873 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
15874 * stack.c (do_gdb_disassembly): Likewise.
15875
15876 2017-02-01 Andreas Arnez <arnez@linux.vnet.ibm.com>
15877
15878 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
15879 DWARF_VALUE_LITERAL, no longer ignore the offset on big-endian
15880 targets. And if the implicit value is longer than needed, extract
15881 the first bytes instead of the "least significant" ones.
15882
15883 2017-02-01 Markus Metzger <markus.t.metzger@intel.com>
15884
15885 * btrace.c (btrace_enable): Do not call btrace_add_pc for
15886 BTRACE_FORMAT_PT or if can_access_registers_ptid returns false.
15887 (btrace_fetch): Assert can_access_registers_ptid.
15888 * record-btrace.c (require_btrace_thread, record_btrace_info): Call
15889 validate_registers_access.
15890
15891 2017-02-01 Markus Metzger <markus.t.metzger@intel.com>
15892
15893 * gdbthread.h (can_access_registers_ptid): New.
15894 * thread.c (can_access_registers_ptid): New.
15895
15896 2017-02-01 Pedro Alves <palves@redhat.com>
15897
15898 * i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
15899
15900 2017-01-31 Pedro Alves <palves@redhat.com>
15901
15902 * mi/mi-interp.c (mi_breakpoint_created, mi_breakpoint_modified):
15903 Fix typos.
15904
15905 2017-01-31 Pedro Alves <palves@redhat.com>
15906
15907 * stack.c (print_frame_args): Remove local mem_fileopen stream,
15908 not used.
15909
15910 2017-01-31 Pedro Alves <palves@redhat.com>
15911
15912 * varobj.c (varobj_value_get_print_value): Remove xstrdup call.
15913
15914 2017-01-31 Pedro Alves <palves@redhat.com>
15915
15916 * common/scoped_restore.h
15917 (scoped_restore_tmpl::scoped_restore_tmpl): Template on T2, and
15918 change the value's parameter type to T2.
15919 (make_scoped_restore): Likewise.
15920
15921 2017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
15922 Richard Henderson <rth@redhat.com>
15923
15924 * amd64-linux-nat.c (PTRACE_ARCH_PRCTL): New define.
15925 (amd64_linux_fetch_inferior_registers): Add case to fetch FS_BASE
15926 GS_BASE for older kernels.
15927 (amd64_linux_store_inferior_registers): Add case to store FS_BASE
15928 GS_BASE for older kernels.
15929 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Add FS_BASE
15930 and GS_BASE to the offset table.
15931 (amd64_linux_register_reggroup_p): Add FS_BASE and GS_BASE to the
15932 system register group.
15933 * amd64-nat.c (amd64_native_gregset_reg_offset): Implements case
15934 for older kernels.
15935 * amd64-tdep.c (amd64_init_abi): Add segment registers for the
15936 amd64 ABI.
15937 * amd64-tdep.h (amd64_regnum): Add AMD64_FSBASE_REGNUM and
15938 AMD64_GSBASE_REGNUM.
15939 (AMD64_NUM_REGS): Set to AMD64_GSBASE_REGNUM + 1.
15940 * features/Makefile (amd64-linux.dat, amd64-avx-linux.dat)
15941 (amd64-mpx-linux.dat, amd64-avx512-linux.dat, x32-linux.dat)
15942 (x32-avx-linux.dat, x32-avx512-linux.dat): Add
15943 i386/64bit-segments.xml in those rules.
15944 * features/i386/64bit-segments.xml: New file.
15945 * features/i386/amd64-avx-mpx-linux.xml: Add 64bit-segments.xml.
15946 * features/i386/amd64-avx-linux.xml: Add 64bit-segments.xml.
15947 * features/i386/amd64-avx512-linux.xml: Add 64bit-segments.xml.
15948 * features/i386/amd64-mpx-linux.xml: Add 64bit-segments.xml.
15949 * features/i386/x32-avx512-linux.xml: Add 64bit-segments.xml.
15950 * features/i386/x32-avx-linux.xml: Add 64bit-segments.xml.
15951 * features/i386/amd64-linux.xml: Add 64bit-segments.xml.
15952 * features/i386/amd64-avx-linux.c: Regenerated.
15953 * features/i386/amd64-avx-mpx-linux.c: Regenerated.
15954 * features/i386/amd64-avx-mpx.c: Regenerated.
15955 * features/i386/amd64-avx512-linux.c: Regenerated.
15956 * features/i386/amd64-linux.c: Regenerated.
15957 * features/i386/amd64-mpx-linux.c: Regenerated.
15958 * features/i386/i386-avx-mpx-linux.c: Regenerated.
15959 * features/i386/i386-avx-mpx.c: Regenerated.
15960 * features/i386/x32-avx-linux.c: Regenerated.
15961 * features/i386/x32-avx512-linux.c: Regenerated.
15962 * regformats/i386/amd64-avx-linux.dat: Regenerated.
15963 * regformats/i386/amd64-avx-mpx-linux.dat: Regenerated.
15964 * regformats/i386/amd64-avx512-linux.dat: Regenerated.
15965 * regformats/i386/amd64-linux.dat: Regenerated.
15966 * regformats/i386/amd64-mpx-linux.dat: Regenerated.
15967 * regformats/i386/x32-avx-linux.dat: Regenerated.
15968 * regformats/i386/x32-avx512-linux.dat: Regenerated.
15969 * regformats/i386/x32-linux.dat: Regenerated.
15970
15971 2017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
15972
15973 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM):
15974 Set to AMD64_NUM_REGS.
15975
15976 2017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
15977
15978 * amd64-nat.c (amd64_native_gregset_reg_offset): Simplify logic
15979 that checks validity of a register number.
15980
15981 2017-01-27 Kees Cook <keescook@google.com>
15982
15983 * gdb/arm-linux-nat.c (arm_linux_fetch_inferior_registers): Call
15984 fetch_fpregs if target has fpa registers.
15985 (arm_linux_store_inferior_registers): Call store_fpregs if target
15986 has fpa registers.
15987
15988 2017-01-26 Andreas Arnez <arnez@linux.vnet.ibm.com>
15989
15990 * cris-tdep.c (cris_gdbarch_init): Remove check for
15991 info.byte_order and force it to BFD_ENDIAN_LITTLE.
15992
15993 2017-01-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
15994
15995 * corelow.c (get_core_register_section): Check for regset
15996 existence before checking for REGSET_VARIABLE_SIZE.
15997
15998 2017-01-26 Yao Qi <yao.qi@linaro.org>
15999 Pedro Alves <palves@redhat.com>
16000
16001 PR gdb/20939
16002 * disasm.c (gdb_disassembler::dis_asm_memory_error): Don't
16003 call memory_error, save memaddr instead.
16004 (gdb_disassembler::print_insn): If gdbarch_print_insn returns
16005 negative, cal memory_error.
16006 * disasm.h (gdb_disassembler) <m_err_memaddr>: New field.
16007
16008 2017-01-26 Yao Qi <yao.qi@linaro.org>
16009
16010 * disasm-selftests.c (memory_error_test): New function.
16011 (_initialize_disasm_selftests): Register memory_error_test.
16012
16013 2017-01-26 Yao Qi <yao.qi@linaro.org>
16014
16015 * Makefile.in (SFILES): Add disasm-selftests.c and
16016 selftest-arch.c.
16017 (COMMON_OBS): Add disasm-selftests.o and selftest-arch.o.
16018 * disasm-selftests.c: New file.
16019 * selftest-arch.c: New file.
16020 * selftest-arch.h: New file.
16021
16022 2017-01-26 Yao Qi <yao.qi@linaro.org>
16023
16024 * mep-tdep.c (mep_gdb_print_insn): Set info->arch
16025 to bfd_arch_mep. Don't return 0 if section is not
16026 found. Call print_insn_mep.
16027
16028 2017-01-26 Pedro Alves <palves@redhat.com>
16029 Yao Qi <yao.qi@linaro.org>
16030
16031 * arm-tdep.c: Include "disasm.h".
16032 (gdb_print_insn_arm): Update code to get gdbarch.
16033 * disasm.c (dis_asm_read_memory): Change it to
16034 gdb_disassembler::dis_asm_read_memory.
16035 (dis_asm_memory_error): Likewise.
16036 (dis_asm_print_address): Likewise.
16037 (gdb_pretty_print_insn): Change it to
16038 gdb_disassembler::pretty_print_insn.
16039 (dump_insns): Add one argument gdb_disassemlber. All
16040 callers updated.
16041 (do_mixed_source_and_assembly_deprecated): Likewise.
16042 (do_mixed_source_and_assembly): Likewise.
16043 (do_assembly_only): Likewise.
16044 (gdb_disassembler::gdb_disassembler): New.
16045 (gdb_disassembler::print_insn): New.
16046 * disasm.h (class gdb_disassembler): New.
16047 (gdb_pretty_print_insn): Remove declaration.
16048 (gdb_disassemble_info): Likewise.
16049 * guile/scm-disasm.c (class gdbscm_disassembler): New.
16050 (gdbscm_disasm_read_memory_worker): Update.
16051 (gdbscm_disasm_read_memory): Update.
16052 (gdbscm_disasm_memory_error): Remove.
16053 (gdbscm_disasm_print_address): Remove.
16054 (gdbscm_disassembler::gdbscm_disassembler): New.
16055 (gdbscm_print_insn_from_port): Update.
16056 * mips-tdep.c: Include disasm.h.
16057 (gdb_print_insn_mips): Update code to get gdbarch.
16058 * record-btrace.c (btrace_insn_history): Update.
16059 * spu-tdep.c: Include disasm.h.
16060 (struct spu_dis_asm_data): Remove.
16061 (struct spu_dis_asm_info): New.
16062 (spu_dis_asm_print_address): Use spu_dis_asm_info to get
16063 SPU id.
16064 (gdb_print_insn_spu): Cast disassemble_info to
16065 spu_dis_asm_info.
16066
16067 2017-01-26 Yao Qi <yao.qi@linaro.org>
16068
16069 * disasm.c (do_ui_file_delete): Delete.
16070 (gdb_insn_length): Move code creating stream to ...
16071 * utils.c (null_stream): ... here. New function.
16072 * utils.h (null_stream): Declare.
16073
16074 2017-01-23 Simon Marchi <simon.marchi@polymtl.ca>
16075
16076 * python/py-inferior.c (find_thread_object): Return directly
16077 from the loop. Remove "found" variable.
16078
16079 2017-01-21 Joel Brobecker <brobecker@adacore.com>
16080
16081 GDB 7.12.1 released.
16082
16083 2017-01-20 Simon Marchi <simon.marchi@ericsson.com>
16084
16085 * python/py-function.c (fnpy_call): Reorder declarations to have
16086 the gdbpy_enter object declared first.
16087 * python/py-xmethods.c (gdbpy_get_xmethod_arg_types): Likewise.
16088
16089 2017-01-20 Simon Marchi <simon.marchi@ericsson.com>
16090
16091 PR python/21068
16092 * python/python-internal.h (PyMem_RawMalloc): Define for
16093 Python < 3.4.
16094 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use
16095 PyMem_RawMalloc instead of PyMem_Malloc.
16096
16097 2017-01-20 Mike Wrighton <mike_wrighton@codesourcery.com>
16098 Luis Machado <lgustavo@codesourcery.com>
16099
16100 * NEWS (New commands): Mention flash-erase.
16101 (New MI commands): Mention target-flash-erase.
16102 * mi/mi-cmds.c (mi_cmd_target_flash_erase): Add target-flash-erase MI
16103 command.
16104 * mi/mi-cmds.h (mi_cmd_target_flash_erase): New declaration.
16105 * mi/mi-main.c (mi_cmd_target_flash_erase): New function.
16106 * target.c (flash_erase_command): New function.
16107 (initialize_targets): Add new flash-erase command.
16108 * target.h (flash_erase_command): New declaration.
16109
16110 2017-01-20 Joel Brobecker <brobecker@adacore.com>
16111
16112 * nat/linux-ptrace.c: Only include <sys/procfs.h> if
16113 HAVE_SYS_PROCFS_H is defined.
16114
16115 2017-01-18 Alan Hayward <alan.hayward@arm.com>
16116
16117 * remote.c (struct cached_reg): Change data into a pointer.
16118 * (stop_reply_dtr): Free data pointers before deleting vector.
16119 (process_stop_reply): Likewise.
16120 (remote_parse_stop_reply): Allocate space for data
16121
16122 2017-01-18 Alan Hayward <alan.hayward@arm.com>
16123
16124 * amd64-tdep.c (amd64_pseudo_register_read_value): remove
16125 MAX_REGISTER_SIZE.
16126 (amd64_pseudo_register_read_value): Likewise.
16127 * remote.c (fetch_register_using_p): Remove MAX_REGISTER_SIZE.
16128 (store_register_using_P): Likewise.
16129 * regcache.c (regcache_xfer_part): Likewise.
16130
16131 2017-01-16 Ivo Raisr <ivo.raisr@oracle.com>
16132
16133 Split real and pseudo registers.
16134 * sparc-tdep.h (SPARC_CORE_REGISTERS): New macro.
16135 (sparc32_pseudo_regnum): New enum.
16136 * sparc64-tdep.h (sparc64_pseudo_regnum): New enum.
16137 * sparc-tdep.c (SPARC32_FPU_REGISTERS): New macro.
16138 (SPARC32_CP0_REGISTERS): New macro.
16139 (sparc32_pseudo_register_name): New function.
16140 (sparc32_register_name): Use sparc32_pseudo_register_name.
16141 (sparc32_pseudo_register_type): New function.
16142 (sparc32_register_type): Use sparc32_pseudo_register_type.
16143 (sparc32_pseudo_register_read, sparc32_pseudo_register_write): Handle
16144 pseudo register numbers.
16145 * sparc64-tdep.c SPARC64_FPU_REGISTERS): New macro.
16146 (SPARC64_CP0_REGISTERS): New macro.
16147 (sparc64_pseudo_register_name): New function.
16148 (sparc64_register_name): Use sparc64_pseudo_register_name.
16149 (sparc64_pseudo_register_type): New function.
16150 (sparc64_register_type): Use sparc64_pseudo_register_type.
16151 (sparc64_pseudo_register_read, sparc64_pseudo_register_write): Handle
16152 pseudo register numbers.
16153 (sparc64_store_floating_fields, sparc64_extract_floating_fields,
16154 sparc64_store_arguments): Handle pseudo register numbers.
16155
16156 2017-01-13 Yao Qi <yao.qi@linaro.org>
16157
16158 * remote.c (REMOTE_DEBUG_MAX_CHAR): New macro.
16159 (putpkt_binary): Print only REMOTE_DEBUG_MAX_CHAR chars in debug
16160 output.
16161 (getpkt_or_notif_sane_1): Likewise.
16162
16163 2017-01-13 Yao Qi <yao.qi@linaro.org>
16164
16165 * Makefile.in (checker-headers): Use CXX and CXX_DIALET instead
16166 of CC. Pass "-x c++-header" instead of "-x c".
16167
16168 2017-01-12 Simon Marchi <simon.marchi@ericsson.com>
16169
16170 * remote.c (remote_can_async_p): Update comment.
16171
16172 2017-01-12 Simon Marchi <simon.marchi@ericsson.com>
16173
16174 * linux-nat.c (linux_nat_can_async_p): Update comment.
16175
16176 2017-01-12 Simon Marchi <simon.marchi@ericsson.com>
16177
16178 * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
16179
16180 2017-01-11 Simon Marchi <simon.marchi@ericsson.com>
16181
16182 * cli/cli-decode.c (lookup_cmd_1): Fix typo in comment.
16183
16184 2017-01-10 Tom Tromey <tom@tromey.com>
16185
16186 * python/py-type.c (typy_legacy_template_argument): Update.
16187 * cp-support.h (struct demangle_parse_info) (demangle_parse_info,
16188 ~demangle_parse_info): Declare new members.
16189 (cp_demangled_name_to_comp): Return unique_ptr.
16190 (cp_demangled_name_parse_free)
16191 (make_cleanup_cp_demangled_name_parse_free)
16192 (cp_new_demangle_parse_info): Remove.
16193 * cp-support.c (do_demangled_name_parse_free_cleanup)
16194 (make_cleanup_cp_demangled_name_parse_free): Remove.
16195 (inspect_type, cp_canonicalize_string_full)
16196 (cp_canonicalize_string): Update.
16197 (mangled_name_to_comp): Change return type.
16198 (cp_class_name_from_physname, method_name_from_physname)
16199 (cp_func_name, cp_remove_params): Update.
16200 * cp-name-parser.y (demangle_parse_info): New constructor, from
16201 cp_new_demangle_parse_info.
16202 (~demangle_parse_info): New destructor, from
16203 cp_demangled_name_parse_free.
16204 (cp_merge_demangle_parse_infos): Update.
16205 (cp_demangled_name_to_comp): Change return type.
16206
16207 2017-01-10 Tom Tromey <tom@tromey.com>
16208
16209 * top.c (prevent_dont_repeat): Change return type.
16210 * python/python.c (execute_gdb_command): Use std::string.
16211 Update.
16212 * guile/guile.c (gdbscm_execute_gdb_command): Update.
16213 * command.h (prevent_dont_repeat): Change return type.
16214 * breakpoint.c (bpstat_do_actions_1): Update.
16215
16216 2017-01-10 Tom Tromey <tom@tromey.com>
16217
16218 * value.h (scoped_value_mark::~scoped_value_mark): Call
16219 free_to_mark.
16220 (scoped_value_mark::free_to_mark): New method.
16221 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
16222 scoped_value_mark.
16223
16224 2017-01-10 Tom Tromey <tom@tromey.com>
16225
16226 * python/py-value.c (valpy_dereference, valpy_referenced_value)
16227 (valpy_reference_value, valpy_const_value, valpy_get_address)
16228 (valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
16229 (valpy_getitem, valpy_call, valpy_binop_throw, valpy_negative)
16230 (valpy_absolute, valpy_richcompare_throw): Use scoped_value_mark.
16231 * dwarf2loc.c (dwarf2_loc_desc_get_symbol_read_needs): Use
16232 scoped_value_mark.
16233 * dwarf2-frame.c (execute_stack_op): Use scoped_value_mark.
16234 * value.h (scoped_value_mark): New class.
16235
16236 2017-01-10 Tom Tromey <tom@tromey.com>
16237
16238 * dwarf2read.c (dwarf2_build_psymtabs): Use psymtab_discarder.
16239 * psympriv.h (make_cleanup_discard_psymtabs): Don't declare.
16240 * psymtab.c (discard_psymtabs_upto): Remove.
16241 (make_cleanup_discard_psymtabs): Remove.
16242 (struct psymtab_state): Remove.
16243
16244 2017-01-10 Tom Tromey <tom@tromey.com>
16245
16246 * record-full.c (record_full_save_cleanups): Remove.
16247 (record_full_save): Use gdb::unlinker.
16248 * gcore.c (do_bfd_delete_cleanup): Remove.
16249 (gcore_command): Use gdb::unlinker, unique_xmalloc_ptr. Remove
16250 cleanups.
16251 * dwarf2read.c (unlink_if_set): Remove.
16252 (write_psymtabs_to_index): Use gdb::unlinker.
16253 * common/gdb_unlinker.h: New file.
16254
16255 2017-01-10 Tom Tromey <tom@tromey.com>
16256
16257 * windows-tdep.c (windows_xfer_shared_library): Update.
16258 * windows-nat.c (windows_make_so): Update.
16259 * utils.h (make_cleanup_bfd_unref): Remove.
16260 * utils.c (do_bfd_close_cleanup, make_cleanup_bfd_unref): Remove.
16261 * symfile.h (symfile_bfd_open)
16262 (find_separate_debug_file_in_section): Return gdb_bfd_ref_ptr.
16263 * symfile.c (read_symbols, symbol_file_add)
16264 (separate_debug_file_exists): Update.
16265 (symfile_bfd_open): Return gdb_bfd_ref_ptr.
16266 (generic_load, reread_symbols): Update.
16267 * symfile-mem.c (symbol_file_add_from_memory): Update.
16268 * spu-linux-nat.c (spu_bfd_open): Return gdb_bfd_ref_ptr.
16269 (spu_symbol_file_add_from_memory): Update.
16270 * solist.h (struct target_so_ops) <bfd_open>: Return
16271 gdb_bfd_ref_ptr.
16272 (solib_bfd_fopen, solib_bfd_open): Return gdb_bfd_ref_ptr.
16273 * solib.c (solib_bfd_fopen, solib_bfd_open): Return
16274 gdb_bfd_ref_ptr.
16275 (solib_map_sections, reload_shared_libraries_1): Update.
16276 * solib-svr4.c (enable_break): Update.
16277 * solib-spu.c (spu_bfd_fopen): Return gdb_bfd_ref_ptr.
16278 * solib-frv.c (enable_break2): Update.
16279 * solib-dsbt.c (enable_break): Update.
16280 * solib-darwin.c (gdb_bfd_mach_o_fat_extract): Return
16281 gdb_bfd_ref_ptr.
16282 (darwin_solib_get_all_image_info_addr_at_init): Update.
16283 (darwin_bfd_open): Return gdb_bfd_ref_ptr.
16284 * solib-aix.c (solib_aix_bfd_open): Return gdb_bfd_ref_ptr.
16285 * record-full.c (record_full_save): Update.
16286 * python/py-objfile.c (objfpy_add_separate_debug_file): Update.
16287 * procfs.c (insert_dbx_link_bpt_in_file): Update.
16288 * minidebug.c (find_separate_debug_file_in_section): Return
16289 gdb_bfd_ref_ptr.
16290 * machoread.c (macho_add_oso_symfile): Change abfd to
16291 gdb_bfd_ref_ptr.
16292 (macho_symfile_read_all_oso): Update.
16293 (macho_check_dsym): Return gdb_bfd_ref_ptr.
16294 (macho_symfile_read): Update.
16295 * jit.c (bfd_open_from_target_memory): Return gdb_bfd_ref_ptr.
16296 (jit_bfd_try_read_symtab): Update.
16297 * gdb_bfd.h (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
16298 (gdb_bfd_openw, gdb_bfd_openr_iovec)
16299 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
16300 gdb_bfd_ref_ptr.
16301 (gdb_bfd_ref_policy): New struct.
16302 (gdb_bfd_ref_ptr): New typedef.
16303 * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
16304 (gdb_bfd_openw, gdb_bfd_openr_iovec)
16305 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
16306 gdb_bfd_ref_ptr.
16307 * gcore.h (create_gcore_bfd): Return gdb_bfd_ref_ptr.
16308 * gcore.c (create_gcore_bfd): Return gdb_bfd_ref_ptr.
16309 (gcore_command): Update.
16310 * exec.c (exec_file_attach): Update.
16311 * elfread.c (elf_symfile_read): Update.
16312 * dwarf2read.c (dwarf2_get_dwz_file): Update.
16313 (try_open_dwop_file, open_dwo_file): Return gdb_bfd_ref_ptr.
16314 (open_and_init_dwo_file): Update.
16315 (open_dwp_file): Return gdb_bfd_ref_ptr.
16316 (open_and_init_dwp_file): Update.
16317 * corelow.c (core_open): Update.
16318 * compile/compile-object-load.c (compile_object_load): Update.
16319 * common/gdb_ref_ptr.h (ref_ptr::operator->): New operator.
16320 * coffread.c (coff_symfile_read): Update.
16321 * cli/cli-dump.c (bfd_openr_or_error, bfd_openw_or_error): Return
16322 gdb_bfd_ref_ptr. Rename.
16323 (dump_bfd_file, restore_command): Update.
16324 * build-id.h (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
16325 * build-id.c (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
16326 (find_separate_debug_file_by_buildid): Update.
16327
16328 2017-01-10 Tom Tromey <tom@tromey.com>
16329
16330 * common/gdb_ref_ptr.h: New file.
16331 * python/py-ref.h (struct gdbpy_ref_policy): New.
16332 (gdbpy_ref): Now a typedef.
16333
16334 2017-01-10 Tom Tromey <tom@tromey.com>
16335
16336 * utils.h (make_cleanup_htab_delete): Don't declare.
16337 * utils.c (do_htab_delete_cleanup, make_cleanup_htab_delete):
16338 Remove.
16339 * linespec.c (decode_compound_collector): Add constructor,
16340 destructor.
16341 (lookup_prefix_sym): Remove cleanup.
16342 (symtab_collector): Add constructor, destructor.
16343 (collect_symtabs_from_filename): Remove cleanup.
16344 * disasm.c (do_mixed_source_and_assembly): Use htab_up.
16345 * compile/compile-c-symbols.c (generate_c_for_variable_locations):
16346 Use htab_up.
16347 * gnu-v3-abi.c (gnuv3_print_vtable): Use htab_up.
16348 * dwarf2read.c (dw2_expand_symtabs_matching)
16349 (dw2_map_symbol_filenames, dwarf_decode_macros)
16350 (write_psymtabs_to_index): Use htab_up.
16351 * dwarf2loc.c (func_verify_no_selftailcall)
16352 (call_site_find_chain_1, func_verify_no_selftailcall)
16353 (chain_candidate, call_site_find_chain_1): Use std::unordered_set,
16354 std::vector, gdb::unique_xmalloc_ptr.
16355 (call_sitep): Remove typedef.
16356 (dwarf2_locexpr_baton_eval): Remove unused variable.
16357
16358 2017-01-10 Tom Tromey <tom@tromey.com>
16359
16360 * python/python-internal.h (make_cleanup_py_decref)
16361 (make_cleanup_py_xdecref): Don't declare.
16362 * python/py-utils.c (py_decref, make_cleanup_py_decref)
16363 (py_xdecref, make_cleanup_py_xdecref): Remove.
16364
16365 2017-01-10 Tom Tromey <tom@tromey.com>
16366
16367 * python/py-framefilter.c (py_mi_print_variables): Use gdbpy_ref.
16368 (py_print_locals, enumerate_locals, py_print_args): Use gdbpy_ref.
16369
16370 2017-01-10 Tom Tromey <tom@tromey.com>
16371
16372 * python/py-framefilter.c (enumerate_args): Use gdbpy_ref.
16373
16374 2017-01-10 Tom Tromey <tom@tromey.com>
16375
16376 * python/py-utils.c (unicode_to_encoded_string)
16377 (python_string_to_target_string)
16378 (python_string_to_target_python_string)
16379 (python_string_to_host_string, gdbpy_obj_to_string)
16380 (get_addr_from_python): Use gdbpy_ref.
16381
16382 2017-01-10 Tom Tromey <tom@tromey.com>
16383
16384 * python/py-unwind.c (pyuw_object_attribute_to_pointer): Use
16385 gdbpy_ref.
16386
16387 2017-01-10 Tom Tromey <tom@tromey.com>
16388
16389 * python/python.c (eval_python_command, gdbpy_decode_line)
16390 (gdbpy_run_events, gdbpy_start_type_printers)
16391 (gdbpy_apply_type_printers): Use gdbpy_ref.
16392
16393 2017-01-10 Tom Tromey <tom@tromey.com>
16394
16395 * python/py-param.c (get_doc_string, compute_enum_values): Use
16396 gdbpy_ref.
16397
16398 2017-01-10 Tom Tromey <tom@tromey.com>
16399
16400 * python/py-inferior.c (find_thread_object, build_inferior_list):
16401 Use gdbpy_ref.
16402
16403 2017-01-10 Tom Tromey <tom@tromey.com>
16404
16405 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
16406
16407 2017-01-10 Tom Tromey <tom@tromey.com>
16408
16409 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope): Use
16410 gdbpy_ref.
16411
16412 2017-01-10 Tom Tromey <tom@tromey.com>
16413
16414 * python/py-cmd.c (cmdpy_completer_helper): Use gdbpy_ref. Remove
16415 extra incref.
16416 (cmdpy_completer_handle_brkchars, cmdpy_completer, cmdpy_init):
16417 Use gdbpy_ref.
16418
16419 2017-01-10 Tom Tromey <tom@tromey.com>
16420
16421 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
16422 gdbpy_ref.
16423
16424 2017-01-10 Tom Tromey <tom@tromey.com>
16425
16426 * python/py-arch.c (archpy_disassemble): Use gdbpy_ref. Don't
16427 decref results of PyArg_ParseTupleAndKeywords.
16428
16429 2017-01-10 Tom Tromey <tom@tromey.com>
16430
16431 * python/python.c (python_run_simple_file): Use
16432 unique_xmalloc_ptr, gdbpy_ref.
16433
16434 2017-01-10 Tom Tromey <tom@tromey.com>
16435
16436 * python/py-prettyprint.c (print_stack_unless_memory_error)
16437 (print_string_repr, print_children): Use gdbpy_ref.
16438 (dummy_python_frame): New class.
16439 (dummy_python_frame::dummy_python_frame): Rename from
16440 push_dummy_python_frame.
16441 (py_restore_tstate): Remove.
16442
16443 2017-01-10 Tom Tromey <tom@tromey.com>
16444
16445 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
16446
16447 2017-01-10 Tom Tromey <tom@tromey.com>
16448
16449 * python/python.c (ensure_python_env, restore_python_env):
16450 Remove.
16451 * python/python-internal.h (ensure_python_env): Don't declare.
16452 * varobj.h (varobj_ensure_python_env): Don't declare.
16453 * varobj.c (varobj_ensure_python_env): Remove.
16454
16455 2017-01-10 Tom Tromey <tom@tromey.com>
16456
16457 * varobj.c (varobj_value_get_print_value): Use
16458 gdbpy_enter_varobj.
16459
16460 2017-01-10 Tom Tromey <tom@tromey.com>
16461
16462 * python/py-prettyprint.c (print_string_repr, print_children):
16463 Update.
16464 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Change type
16465 of "encoding".
16466 * varobj.c (varobj_value_get_print_value): Update.
16467 * python/python-internal.h (gdbpy_extract_lazy_string): Update.
16468
16469 2017-01-10 Tom Tromey <tom@tromey.com>
16470
16471 * varobj.c (varobj_get_display_hint)
16472 (dynamic_varobj_has_child_method, install_new_value_visualizer)
16473 (varobj_set_visualizer, free_variable): Use
16474 gdbpy_enter_varobj.
16475
16476 2017-01-10 Tom Tromey <tom@tromey.com>
16477
16478 * python/python.c (python_command): Use gdbpy_enter, gdbpy_ref.
16479 (do_finish_initialization): New function. Use gdbpy_ref.
16480 (gdbpy_finish_initialization): Use gdbpy_enter. Call
16481 do_finish_initialization.
16482
16483 2017-01-10 Tom Tromey <tom@tromey.com>
16484
16485 * python/py-param.c (get_set_value, get_show_value): Use
16486 gdbpy_enter, gdbpy_ref.
16487
16488 2017-01-10 Tom Tromey <tom@tromey.com>
16489
16490 * python/py-function.c (fnpy_call): Use gdbpy_enter, gdbpy_ref.
16491
16492 2017-01-10 Tom Tromey <tom@tromey.com>
16493
16494 * python/py-cmd.c (cmdpy_function): Use gdbpy_enter, gdbpy_ref.
16495
16496 2017-01-10 Tom Tromey <tom@tromey.com>
16497
16498 * python/py-varobj.c (py_varobj_iter_dtor, py_varobj_iter_next):
16499 Use gdbpy_enter_varobj.
16500
16501 2017-01-10 Tom Tromey <tom@tromey.com>
16502
16503 * varobj.c (gdbpy_enter_varobj): New constructor.
16504 * python/python-internal.h (gdbpy_enter_varobj): New class.
16505 * python/py-varobj.c (py_varobj_get_iterator): Use
16506 gdbpy_enter_varobj.
16507
16508 2017-01-10 Tom Tromey <tom@tromey.com>
16509
16510 * python/py-xmethods.c (gdbpy_get_xmethod_result_type): Use
16511 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
16512 (gdbpy_invoke_xmethod): Use gdbpy_ref, gdbpy_enter.
16513 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref,
16514 unique_xmalloc_ptr.
16515 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref, gdbpy_enter.
16516
16517 2017-01-10 Tom Tromey <tom@tromey.com>
16518
16519 * python/py-xmethods.c (invoke_match_method): Use
16520 gdbpy_ref.
16521
16522 2017-01-10 Tom Tromey <tom@tromey.com>
16523
16524 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): use
16525 gdbpy_enter, gdbpy_ref.
16526
16527 2017-01-10 Tom Tromey <tom@tromey.com>
16528
16529 * python/python.c (python_interactive_command): Use gdbpy_enter.
16530
16531 2017-01-10 Tom Tromey <tom@tromey.com>
16532
16533 * python/python.c (gdbpy_before_prompt_hook): Use gdbpy_enter,
16534 gdbpy_ref.
16535
16536 2017-01-10 Tom Tromey <tom@tromey.com>
16537
16538 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Use
16539 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
16540
16541 2017-01-10 Tom Tromey <tom@tromey.com>
16542
16543 * utils.h (htab_deleter): New struct.
16544 (htab_up): New typedef.
16545 * python/py-framefilter.c (gdbpy_apply_frame_filter): Use
16546 gdbpy_enter, gdbpy_ref, htab_up.
16547
16548 2017-01-10 Tom Tromey <tom@tromey.com>
16549
16550 * python/py-unwind.c (pending_frame_invalidate): Remove.
16551 (pyuw_sniffer): Use gdbpy_enter and gdbpy_ref.
16552
16553 2017-01-10 Tom Tromey <tom@tromey.com>
16554
16555 * python/py-xmethods.c (gdbpy_free_xmethod_worker_data)
16556 (gdbpy_clone_xmethod_worker_data): Use gdbpy_enter.
16557
16558 2017-01-10 Tom Tromey <tom@tromey.com>
16559
16560 * python/py-type.c (save_objfile_types): Use gdbpy_enter.
16561
16562 2017-01-10 Tom Tromey <tom@tromey.com>
16563
16564 * python/python.c (gdbpy_eval_from_control_command)
16565 (gdbpy_source_script, gdbpy_run_events)
16566 (gdbpy_source_objfile_script, gdbpy_execute_objfile_script)
16567 (gdbpy_free_type_printers, gdbpy_finish_initialization): Use
16568 gdbpy_enter.
16569
16570 2017-01-10 Tom Tromey <tom@tromey.com>
16571
16572 * python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
16573
16574 2017-01-10 Tom Tromey <tom@tromey.com>
16575
16576 * python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
16577
16578 2017-01-10 Tom Tromey <tom@tromey.com>
16579
16580 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
16581 (python_on_inferior_call_pre, python_on_inferior_call_post)
16582 (python_on_memory_change, python_on_register_change)
16583 (python_inferior_exit, python_new_objfile, add_thread_object)
16584 (delete_thread_object, py_free_inferior): Use gdbpy_enter.
16585
16586 2017-01-10 Tom Tromey <tom@tromey.com>
16587
16588 * python/py-finishbreakpoint.c (bpfinishpy_handle_stop)
16589 (bpfinishpy_handle_exit): Use gdbpy_enter.
16590
16591 2017-01-10 Tom Tromey <tom@tromey.com>
16592
16593 * python/py-cmd.c (cmdpy_destroyer)
16594 (cmdpy_completer_handle_brkchars, cmdpy_completer): Use
16595 gdbpy_enter.
16596
16597 2017-01-10 Tom Tromey <tom@tromey.com>
16598
16599 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
16600 gdbpy_enter.
16601 (gdbpy_breakpoint_has_cond): Likewise.
16602
16603 2017-01-10 Tom Tromey <tom@tromey.com>
16604
16605 * python/python.c (gdbpy_enter): New constructor.
16606 (~gdbpy_enter): New destructor.
16607 (restore_python_env, ensure_python_env): Rewrite.
16608 * python/python-internal.h (gdbpy_enter): New class.
16609
16610 2017-01-10 Tom Tromey <tom@tromey.com>
16611
16612 * python/py-symbol.c (gdbpy_lookup_symbol): Use gdbpy_ref.
16613
16614 2017-01-10 Tom Tromey <tom@tromey.com>
16615
16616 * python/py-value.c (value_has_field, get_field_flag)
16617 (get_field_type, valpy_getitem, convert_value_from_python): Use
16618 gdbpy_ref.
16619
16620 2017-01-10 Tom Tromey <tom@tromey.com>
16621
16622 * python/python.c (gdbpy_progspaces, gdbpy_objfiles): Use
16623 gdbpy_ref.
16624
16625 2017-01-10 Tom Tromey <tom@tromey.com>
16626
16627 * python/py-prettyprint.c (search_pp_list)
16628 (find_pretty_printer_from_objfiles)
16629 (find_pretty_printer_from_progspace)
16630 (find_pretty_printer_from_gdb, find_pretty_printer)
16631 (gdbpy_get_display_hint, gdbpy_get_varobj_pretty_printer): Use
16632 gdbpy_ref.
16633
16634 2017-01-10 Tom Tromey <tom@tromey.com>
16635
16636 * python/py-param.c (call_doc_function): Use gdbpy_ref.
16637
16638 2017-01-10 Tom Tromey <tom@tromey.com>
16639
16640 * python/py-linetable.c (build_line_table_tuple_from_pcs)
16641 (ltpy_get_all_source_lines): Use gdbpy_ref.
16642
16643 2017-01-10 Tom Tromey <tom@tromey.com>
16644
16645 * python/py-framefilter.c (extract_sym, extract_value)
16646 (get_py_iter_from_func, bootstrap_python_frame_filters): Use
16647 gdbpy_ref.
16648
16649 2017-01-10 Tom Tromey <tom@tromey.com>
16650
16651 * python/py-breakpoint.c (gdbpy_breakpoints): Use gdbpy_ref.
16652
16653 2017-01-10 Tom Tromey <tom@tromey.com>
16654
16655 * python/py-inferior.c (gdbpy_inferiors): Use gdbpy_ref.
16656
16657 2017-01-10 Tom Tromey <tom@tromey.com>
16658
16659 * python/py-function.c (convert_values_to_python, fnpy_init): Use
16660 gdbpy_ref.
16661
16662 2017-01-10 Tom Tromey <tom@tromey.com>
16663
16664 * python/py-cmd.c (gdbpy_string_to_argv): Use gdbpy_ref.
16665
16666 2017-01-10 Tom Tromey <tom@tromey.com>
16667
16668 * python/py-type.c (convert_field, make_fielditem, typy_fields)
16669 (typy_range): Use gdbpy_ref.
16670
16671 2017-01-10 Tom Tromey <tom@tromey.com>
16672
16673 * python/py-threadevent.c (create_thread_event_object): Use
16674 gdbpy_ref.
16675 * python/py-stopevent.c (create_stop_event_object): Simplify.
16676 (emit_stop_event): Use gdbpy_ref.
16677 * python/py-signalevent.c (create_signal_event_object): Use
16678 gdbpy_ref.
16679 * python/py-newobjfileevent.c (create_new_objfile_event_object)
16680 (emit_new_objfile_event, create_clear_objfiles_event_object)
16681 (emit_clear_objfiles_event): Use gdbpy_ref.
16682 * python/py-infevents.c (create_inferior_call_event_object)
16683 (create_register_changed_event_object)
16684 (create_memory_changed_event_object, emit_inferior_call_event)
16685 (emit_memory_changed_event, emit_register_changed_event): Use
16686 gdbpy_ref.
16687 * python/py-exitedevent.c (create_exited_event_object)
16688 (emit_exited_event): Use gdbpy_ref.
16689 * python/py-event.h (evpy_emit_event): Remove
16690 CPYCHECKER_STEALS_REFERENCE_TO_ARG annotation.
16691 * python/py-event.c (evpy_emit_event): Use gdbpy_ref.
16692 * python/py-continueevent.c (emit_continue_event): Use
16693 gdbpy_ref.
16694 * python/py-breakpoint.c (gdbpy_breakpoint_created)
16695 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
16696 gdbpy_ref.
16697 * python/py-bpevent.c (create_breakpoint_event_object): Use
16698 gdbpy_ref.
16699
16700 2017-01-10 Tom Tromey <tom@tromey.com>
16701
16702 * python/py-ref.h: New file.
16703
16704 2017-01-10 Simon Marchi <simon.marchi@ericsson.com>
16705
16706 * cli-out.c (cli_ui_out::do_redirect): Change return type to
16707 void.
16708 * cli-out.h (cli_ui_out::do_redirect): Likewise.
16709 * mi/mi-out.c (mi_ui_out::do_redirect): Likewise.
16710 * mi/mi-out.h (mi_ui_out::do_redirect): Likewise.
16711 * ui-out.c (ui_out::redirect): Likewise.
16712 * ui-out.h (ui_out::redirect, ui_out::do_redirect): Likewise.
16713 * cli/cli-logging.c (set_logging_redirect): Update call site of
16714 ui_out::redirect.
16715 (handle_redirections): Likewise.
16716 * scm-ports.c (ioscm_with_output_to_port_worker): Likewise.
16717 * top.c (execute_command_to_string): Likewise.
16718 * utils.c (do_ui_out_redirect_pop): Likewise.
16719
16720 2017-01-10 Simon Marchi <simon.marchi@ericsson.com>
16721
16722 * stack.c (_initialize_stack): Update "frame" command help message.
16723
16724 2017-01-08 Iain Buclaw <ibuclaw@gdcproject.org>
16725
16726 * d-exp.y (CastExpression): Emit UNOP_CAST_TYPE.
16727
16728 2017-01-06 Yao Qi <yao.qi@linaro.org>
16729
16730 * x86-linux-nat.h: Include gdb_proc_service.h.
16731
16732 2017-01-06 Yao Qi <yao.qi@linaro.org>
16733
16734 * ser-base.h: Include serial.h.
16735
16736 2017-01-06 Yao Qi <yao.qi@linaro.org>
16737
16738 * ppc-linux-tdep.h: Include ppc-tdep.h.
16739
16740 2017-01-06 Yao Qi <yao.qi@linaro.org>
16741
16742 * nat/amd64-linux-siginfo.h: Include signal.h.
16743
16744 2017-01-06 Yao Qi <yao.qi@linaro.org>
16745
16746 * nat/aarch64-linux-hw-point.h: Include break-common.h.
16747
16748 2017-01-06 Yao Qi <yao.qi@linaro.org>
16749
16750 * mi/mi-parse.h: Include mi-cmds.h.
16751
16752 2017-01-06 Yao Qi <yao.qi@linaro.org>
16753
16754 * inf-loop.c: Don't include "target.h".
16755 * inf-loop.h: Include it here.
16756
16757 2017-01-06 Yao Qi <yao.qi@linaro.org>
16758
16759 * dfp.h: Include "dboulest.h" and "expression.h".
16760
16761 2017-01-06 Yao Qi <yao.qi@linaro.org>
16762
16763 * ax-gdb.h: Include "ax.h".
16764
16765 2017-01-06 Yao Qi <yao.qi@linaro.org>
16766
16767 * Makefile.in (HFILES_NO_SRCDIR): Replace gdb_ptrace.h
16768 with nat/gdb_ptrace.h.
16769
16770 2017-01-05 Yao Qi <yao.qi@linaro.org>
16771
16772 * mips-fbsd-tdep.c (mips_fbsd_sigframe_init): Move && to
16773 new line.
16774 (mips64_fbsd_sigframe_init): Likewise.
16775
16776 2017-01-04 John Baldwin <jhb@FreeBSD.org>
16777
16778 * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Use
16779 GDB_OSABI_FREEBSD instead of GDB_OSABI_FREEBSD_ELF.
16780
16781 2017-01-04 John Baldwin <jhb@FreeBSD.org>
16782
16783 * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
16784 * NEWS: Mention new FreeBSD/mips native configuration.
16785 * config/mips/fbsd.mh: New file.
16786 * configure.host: Add mips*-*-freebsd*.
16787 * mips-fbsd-nat.c: New file.
16788
16789 2017-01-04 John Baldwin <jhb@FreeBSD.org>
16790
16791 * Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
16792 (ALLDEPFILES): Add mips-fbsd-tdep.c.
16793 * NEWS: Mention new FreeBSD/mips target.
16794 * configure.tgt: Add mips*-*-freebsd*.
16795 * mips-fbsd-tdep.c: New file.
16796 * mips-fbsd-tdep.h: New file.
16797
16798 2017-01-04 Yao Qi <yao.qi@linaro.org>
16799
16800 * dwarf2loc.c (write_pieced_value): Don't use VALUE_FRAME_ID (to),
16801 use c->frame_id when the piece location is DWARF_VALUE_REGISTER.
16802
16803 2017-01-01 Joel Brobecker <brobecker@adacore.com>
16804
16805 Update copyright year range in all GDB files.
16806
16807 2017-01-01 Joel Brobecker <brobecker@adacore.com>
16808
16809 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2016.
16810
16811 For older changes see ChangeLog-2016.
16812 \f
16813 Local Variables:
16814 mode: change-log
16815 left-margin: 8
16816 fill-column: 74
16817 version-control: never
16818 coding: utf-8
16819 End: