Command abbreviation in define
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
3d7b173c
JG
12017-02-08 Jerome Guitton <guitton@adacore.com>
2
604c4576
JG
3 * cli/cli-decode.c (find_command_name_length): Make it extern.
4 * cli/cli-decode.h (find_command_name_length): Declare.
5 * cli/cli-script.c (command_name_equals, line_first_arg):
6 New functions.
7 (process_next_line): Use cli-decode to parse command names.
8 (build_command_line): Make args a constant pointer.
9
102017-02-08 Jerome Guitton <guitton@adacore.com>
11
3d7b173c
JG
12 * cli-decode.c (lookup_cmd_1, lookup_cmd_composition):
13 Remove case-insensitive search.
14
1291063d
JM
152017-02-07 Jose E. Marchesi <jose.marchesi@oracle.com>
16
17 * sparc-tdep.c (sparc32_gdbarch_init): Do not place a + operator
18 at the end of the line. Avoids an ARI warning.
19
20b477a7
LM
202017-02-06 Luis Machado <lgustavo@codesourcery.com>
21
22 * NEWS: Mention support for record/replay of Intel 64 rdrand and
23 rdseed instructions.
24 i386-tdep.c (i386_process_record): Handle Intel 64 rdrand and rseed.
25
3f7b46f2
IR
262017-02-06 Ivo Raisr <ivo.raisr@oracle.com>
27
28 PR tdep/20936
29 Provide and use sparc32 and sparc64 target description XML files.
30 * features/sparc/sparc32-cp0.xml, features/sparc/sparc32-cpu.xml,
31 features/sparc/sparc32-fpu.xml: New files for sparc 32-bit.
32 * features/sparc/sparc64-cp0.xml, features/sparc/sparc64-cpu.xml,
33 features/sparc/sparc64-fpu.xml: New files for sparc 64-bit.
34 * features/sparc/sparc32-solaris.xml: New file.
35 * features/sparc/sparc64-solaris.xml: New file.
36 * features/sparc/sparc32-solaris.c: Generated.
37 * features/sparc/sparc64-solaris.c: Generated.
38 * sparc-tdep.h: Account for differences in target descriptions.
39 * sparc-tdep.c (sparc32_register_name): Use target provided registers.
40 (sparc32_register_type): Use target provided registers.
41 (validate_tdesc_registers): New function.
42 (sparc32_gdbarch_init): Use tdesc_has_registers.
43 Set pseudoregister functions.
44 * sparc64-tdep.c (sparc64_register_name): Use target provided registers.
45 (sparc64_register_type): Use target provided registers.
46 (sparc64_init_abi): Set pseudoregister functions.
47
f0fd41c1
TT
482017-02-03 Tom Tromey <tom@tromey.com>
49
50 PR rust/21097:
51 * rust-lang.c (rust_print_type) <TYPE_CODE_UNION>: Handle enums
52 with a single member.
53
d6f9b0fb
PA
542017-02-03 Pedro Alves <palves@redhat.com>
55
56 * cli/cli-interp.c (cli_interp_base::cli_interp_base)
57 (cli_interp_base::~cli_interp_base): New.
58 (cli_interp): New struct.
59 (as_cli_interp): Cast the interp itself to cli_interp.
60 (cli_interpreter_pre_command_loop): Rename to ...
61 (cli_interp_base::pre_command_loop): ... this. Remove 'self'
62 parameter.
63 (cli_interpreter_init): Rename to ...
64 (cli_interp::init): ... this. Remove 'self' parameter. Use
65 boolean. Make extern.
66 (cli_interpreter_resume): Rename to ...
67 (cli_interp::resume): ... this. Remove 'data' parameter. Make
68 extern.
69 (cli_interpreter_suspend): Rename to ...
70 (cli_interp::suspend): ... this. Remove 'data' parameter. Make
71 extern.
72 (cli_interpreter_exec): Rename to ...
73 (cli_interp::exec): ... this. Remove 'data' parameter. Make
74 extern.
75 (cli_interpreter_supports_command_editing): Rename to ...
76 (cli_interp_base::supports_command_editing): ... this. Remove
77 'interp' parameter. Make extern.
78 (cli_ui_out): Rename to ...
79 (cli_interp::interp_ui_out): ... this. Remove 'interp' parameter.
80 Make extern.
81 (cli_set_logging): Rename to ...
82 (cli_interp_base::set_logging): ... this. Remove 'interp'
83 parameter. Make extern.
84 (cli_interp_procs): Delete.
85 (cli_interp_factory): Adjust to use "new".
86 * cli/cli-interp.h: Include "interps.h".
87 (struct cli_interp_base): New struct.
88 * interps.c (struct interp): Delete. Fields moved to interps.h.
89 (interp_new): Delete.
90 (interp::interp, interp::~interp): New.
91 (interp_set): Use bool, and return void. Assume the interpreter
92 has suspend, init and resume methods, and that the all return
93 void.
94 (set_top_level_interpreter): interp_set returns void.
95 (interp_ui_out): Adapt.
96 (current_interp_set_logging): Adapt.
97 (interp_data): Delete.
98 (interp_pre_command_loop, interp_supports_command_editing): Adapt.
99 (interp_exec): Adapt.
100 (top_level_interpreter_data): Delete.
101 * interps.h (interp_init_ftype, interp_resume_ftype)
102 (interp_suspend_ftype, interp_exec_ftype)
103 (interp_pre_command_loop_ftype, interp_ui_out_ftype): Delete.
104 (class interp): New.
105 (interp_new): Delete.
106 (interp_set): Now returns void. Use bool.
107 (interp_data, top_level_interpreter_data): Delete.
108 * mi/mi-common.h: Include interps.h.
109 (class mi_interp): Inherit from interp. Define a ctor. Declare
110 init, resume, suspect, exec, interp_ui_out, set_logging and
111 pre_command_loop methods.
112 * mi/mi-interp.c (as_mi_interp): Cast the interp itself.
113 (mi_interpreter_init): Rename to ...
114 (mi_interp::init): ... this. Remove the 'interp' parameter, use
115 bool, return void and make extern. Adjust.
116 (mi_interpreter_resume): ... Rename to ...
117 (mi_interp::resume): ... this. Remove the 'data' parameter,
118 return void and make extern. Adjust.
119 (mi_interpreter_suspend): ... Rename to ...
120 (mi_interp::suspend): ... this. Remove the 'data' parameter,
121 return void and make extern. Adjust.
122 (mi_interpreter_exec): ... Rename to ...
123 (mi_interp::exec): ... this. Remove the 'data' parameter and make
124 extern. Adjust.
125 (mi_interpreter_pre_command_loop): ... Rename to ...
126 (mi_interp::pre_command_loop): ... this. Remove the 'self'
127 parameter and make extern.
128 (mi_on_normal_stop_1): Adjust.
129 (mi_ui_out): Rename to ...
130 (mi_interp::interp_ui_out): ... this. Remove the 'interp'
131 parameter and make extern. Adjust.
132 (mi_set_logging): Rename to ...
133 (mi_interp::set_logging): ... this. Remove the 'interp'
134 parameter and make extern. Adjust.
135 (mi_interp_procs): Delete.
136 (mi_interp_factory): Adjust to use 'new'.
137 * mi/mi-main.c (mi_cmd_gdb_exit, captured_mi_execute_command)
138 (mi_print_exception, mi_execute_command, mi_load_progress):
139 Adjust.
140 * tui/tui-interp.c (tui_interp): New class.
141 (as_tui_interp): Return a tui_interp pointer.
142 (tui_on_normal_stop, tui_on_signal_received)
143 (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
144 (tui_on_no_history, tui_on_user_selected_context_changed): Adjust
145 to use interp::interp_ui_out.
146 (tui_init): Rename to ...
147 (tui_interp::init): ... this. Remove the 'self' parameter, use
148 bool, return void and make extern. Adjust.
149 (tui_resume): Rename to ...
150 (tui_interp::resume): ... this. Remove the 'data' parameter,
151 return void and make extern. Adjust.
152 (tui_suspend): Rename to ...
153 (tui_interp::suspend): ... this. Remove the 'data' parameter,
154 return void and make extern. Adjust.
155 (tui_ui_out): Rename to ...
156 (tui_interp::interp_ui_out): ... this. Remove the 'self'
157 parameter, and make extern. Adjust.
158 (tui_exec): Rename to ...
159 (tui_interp::exec): ... this. Remove the 'data' parameter and
160 make extern.
161 (tui_interp_procs): Delete.
162 (tui_interp_factory): Use "new".
163
65c40c95
TT
1642017-02-02 Tom Tromey <tom@tromey.com>
165
166 * rust-exp.y (ends_raw_string, space_then_number)
167 (rust_identifier_start_p): Return bool.
168 * rust-lang.c (rust_tuple_type_p, rust_underscore_fields)
169 (rust_tuple_struct_type_p, rust_tuple_variant_type_p)
170 (rust_slice_type_p, rust_range_type_p, rust_u8_type_p)
171 (rust_chartype_p): Return bool.
172 (val_print_struct, rust_print_struct_def, rust_print_type):
173 Update.
174 * rust-lang.h (rust_tuple_type_p, rust_tuple_struct_type_p):
175 Return bool.
176
b50f188d
TT
1772017-02-02 Tom Tromey <tom@tromey.com>
178
179 * rust-lang.c: Reindent.
180
03c85b11
TT
1812017-02-02 Tom Tromey <tom@tromey.com>
182
183 * rust-lang.h (rust_crate_for_block): Update.
184 * rust-lang.c (rust_crate_for_block): Return std::string.
185 (rust_get_disr_info): Use std:;string, not
186 gdb::unique_xmalloc_ptr.
187 * rust-exp.y (crate_name): Update.
188
9b6da501
PA
1892017-02-02 Pedro Alves <palves@redhat.com>
190
191 * disasm-selftests.c (print_one_insn_test): Move the "verbose"
192 field out of gdb_disassembler_test and make it static.
193
ec4cb20b
PA
1942017-02-02 Pedro Alves <palves@redhat.com>
195
196 * mi/mi-common.h (struct mi_interp): Delete the mi2_interp,
197 mi1_interp and mi_interp fields.
198
5be5dbf0
PA
1992017-02-02 Pedro Alves <palves@redhat.com>
200
616268b6
PA
201 * cli/cli-interp.c (struct saved_output_files, saved_output):
202 Moved from cli/cli-logging.c.
203 (cli_set_logging): New function.
204 (cli_interp_procs): Install cli_set_logging.
205 * cli/cli-interp.h (make_logging_output, cli_set_logging):
206 Declare.
207 * cli/cli-logging.c (struct saved_output_files, saved_output):
208 Moved to cli/cli-interp.c.
209 (pop_output_files): Don't save outputs here.
210 (make_logging_output): New function.
211 (handle_redirections): Don't build tee nor save previous outputs
212 here.
213 * interps.c (current_interp_set_logging): Change prototype.
214 Assume there's always a set_logging_proc method installed.
215 * interps.h (interp_set_logging_ftype): Change prototype.
216 (current_interp_set_logging): Change prototype and adjust comment.
217 * mi/mi-interp.c (mi_set_logging): Change protototype. Adjust to
218 use make_logging_output.
219 * tui/tui-interp.c (tui_interp_procs): Install cli_set_logging.
2202017-02-02 Pedro Alves <palves@redhat.com>
221
5be5dbf0
PA
222 * cli/cli-logging.c (maybe_warn_already_logging): New factored out
223 from ...
224 (set_logging_overwrite): ... here.
225 (logging_no_redirect_file): Delete.
226 (set_logging_redirect): Don't handle redirection on the fly.
227 Instead warn that "logging off" / "logging on" is necessary.
228 (pop_output_files): Delete references to logging_no_redirect_file.
229 (show_logging_command): Always speak in terms of what will happen
230 once logging is reenabled.
231
c99cc448
PA
2322017-02-02 Pedro Alves <palves@redhat.com>
233
234 * disasm.h (gdb_pretty_print_disassembler): Tweak intro comment.
235
8b172ce7
PA
2362017-02-02 Pedro Alves <palves@redhat.com>
237
238 * disasm.c (gdb_pretty_print_insn): Rename to ...
239 (gdb_pretty_print_disassembler::pretty_print_insn): ... this.
240 Remove gdbarch parameter. Adapt to clear the object's buffers
241 instead of allocating new buffers, and to print using the object's
242 gdb_disassembler instead of calling gdb_print_insn.
243 (dump_insns): Use gdb_pretty_print_disassembler.
244 * disasm.h (gdb_pretty_print_insn): Delete declaration.
245 (gdb_pretty_print_disassembler): New class.
246 * record-btrace.c (btrace_insn_history): Use
247 gdb_pretty_print_disassembler.
248
d7e74731
PA
2492017-02-02 Pedro Alves <palves@redhat.com>
250
251 * ada-lang.c (type_as_string): Use string_file.
252 * ada-valprint.c (ada_print_floating): Use string_file.
253 * ada-varobj.c (ada_varobj_scalar_image)
254 (ada_varobj_get_value_image): Use string_file.
255 * aix-thread.c (aix_thread_extra_thread_info): Use string_file.
256 * arm-tdep.c (_initialize_arm_tdep): Use string_printf.
257 * breakpoint.c (update_inserted_breakpoint_locations)
258 (insert_breakpoint_locations, reattach_breakpoints)
259 (print_breakpoint_location, print_one_detail_ranged_breakpoint)
260 (print_it_watchpoint): Use string_file.
261 (save_breakpoints): Use stdio_file.
262 * c-exp.y (oper): Use string_file.
263 * cli/cli-logging.c (set_logging_redirect): Use ui_file_up and
264 tee_file.
265 (pop_output_files): Use delete.
266 (handle_redirections): Use stdio_file and tee_file.
267 * cli/cli-setshow.c (do_show_command): Use string_file.
268 * compile/compile-c-support.c (c_compute_program): Use
269 string_file.
270 * compile/compile-c-symbols.c (generate_vla_size): Take a
271 'string_file &' instead of a 'ui_file *'.
272 (generate_c_for_for_one_variable): Take a 'string_file &' instead
273 of a 'ui_file *'. Use string_file.
274 (generate_c_for_variable_locations): Take a 'string_file &'
275 instead of a 'ui_file *'.
276 * compile/compile-internal.h (generate_c_for_for_one_variable):
277 Take a 'string_file &' instead of a 'ui_file *'.
278 * compile/compile-loc2c.c (push, pushf, unary, binary)
279 (print_label, pushf_register_address, pushf_register)
280 (do_compile_dwarf_expr_to_c): Take a 'string_file &' instead of a
281 'ui_file *'. Adjust.
282 * compile/compile.c (compile_to_object): Use string_file.
283 * compile/compile.h (compile_dwarf_expr_to_c)
284 (compile_dwarf_bounds_to_c): Take a 'string_file &' instead of a
285 'ui_file *'.
286 * cp-support.c (inspect_type): Use string_file and obstack_copy0.
287 (replace_typedefs_qualified_name): Use string_file and
288 obstack_copy0.
289 * disasm.c (gdb_pretty_print_insn): Use string_file.
290 (gdb_disassembly): Adjust reference the null_stream global.
291 (do_ui_file_delete): Delete.
292 (gdb_insn_length): Use null_stream.
293 * dummy-frame.c (maintenance_print_dummy_frames): Use stdio_file.
294 * dwarf2loc.c (dwarf2_compile_property_to_c)
295 (locexpr_generate_c_location, loclist_generate_c_location): Take a
296 'string_file &' instead of a 'ui_file *'.
297 * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise.
298 * dwarf2read.c (do_ui_file_peek_last): Delete.
299 (dwarf2_compute_name): Use string_file.
300 * event-top.c (gdb_setup_readline): Use stdio_file.
301 * gdbarch.sh (verify_gdbarch): Use string_file.
302 * gdbtypes.c (safe_parse_type): Use null_stream.
303 * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
304 string_file.
305 * guile/scm-disasm.c (gdbscm_print_insn_from_port): Take a
306 'string_file *' instead of a 'ui_file *'.
307 (gdbscm_arch_disassemble): Use string_file.
308 * guile/scm-frame.c (frscm_print_frame_smob): Use string_file.
309 * guile/scm-ports.c (class ioscm_file_port): Now a class that
310 inherits from ui_file.
311 (ioscm_file_port_delete, ioscm_file_port_rewind)
312 (ioscm_file_port_put): Delete.
313 (ioscm_file_port_write): Rename to ...
314 (ioscm_file_port::write): ... this. Remove file_port_magic
315 checks.
316 (ioscm_file_port_new): Delete.
317 (ioscm_with_output_to_port_worker): Use ioscm_file_port and
318 ui_file_up.
319 * guile/scm-type.c (tyscm_type_name): Use string_file.
320 * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
321 Use string_file.
322 * infcmd.c (print_return_value_1): Use string_file.
323 * infrun.c (print_target_wait_results): Use string_file.
324 * language.c (add_language): Use string_file.
325 * location.c (explicit_to_string_internal): Use string_file.
326 * main.c (captured_main_1): Use null_file.
327 * maint.c (maintenance_print_architecture): Use stdio_file.
328 * mi/mi-cmd-stack.c (list_arg_or_local): Use string_file.
329 * mi/mi-common.h (struct mi_interp) <out, err, log, targ,
330 event_channel>: Change type to mi_console_file pointer.
331 * mi/mi-console.c (mi_console_file_fputs, mi_console_file_flush)
332 (mi_console_file_delete): Delete.
333 (struct mi_console_file): Delete.
334 (mi_console_file_magic): Delete.
335 (mi_console_file_new): Delete.
336 (mi_console_file::mi_console_file): New.
337 (mi_console_file_delete): Delete.
338 (mi_console_file_fputs): Delete.
339 (mi_console_file::write): New.
340 (mi_console_raw_packet): Delete.
341 (mi_console_file::flush): New.
342 (mi_console_file_flush): Delete.
343 (mi_console_set_raw): Rename to ...
344 (mi_console_file::set_raw): ... this.
345 * mi/mi-console.h (class mi_console_file): New class.
346 (mi_console_file_new, mi_console_set_raw): Delete.
347 * mi/mi-interp.c (mi_interpreter_init): Use mi_console_file.
348 (mi_set_logging): Use delete and tee_file. Adjust.
349 * mi/mi-main.c (output_register): Use string_file.
350 (mi_cmd_data_evaluate_expression): Use string_file.
351 (mi_cmd_data_read_memory): Use string_file.
352 (mi_cmd_execute, print_variable_or_computed): Use string_file.
353 * mi/mi-out.c (mi_ui_out::main_stream): New.
354 (mi_ui_out::rewind): Use main_stream and
355 string_file.
356 (mi_ui_out::put): Use main_stream and string_file.
357 (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
358 Allocate a 'string_file' instead.
359 (mi_out_new): Don't allocate a mem_fileopen stream here.
360 * mi/mi-out.h (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
361 (mi_ui_out::main_stream): Declare method.
362 * printcmd.c (eval_command): Use string_file.
363 * psymtab.c (maintenance_print_psymbols): Use stdio_file.
364 * python/py-arch.c (archpy_disassemble): Use string_file.
365 * python/py-breakpoint.c (bppy_get_commands): Use string_file.
366 * python/py-frame.c (frapy_str): Use string_file.
367 * python/py-framefilter.c (py_print_type, py_print_single_arg):
368 Use string_file.
369 * python/py-type.c (typy_str): Use string_file.
370 * python/py-unwind.c (unwind_infopy_str): Use string_file.
371 * python/py-value.c (valpy_str): Use string_file.
372 * record-btrace.c (btrace_insn_history): Use string_file.
373 * regcache.c (regcache_print): Use stdio_file.
374 * reggroups.c (maintenance_print_reggroups): Use stdio_file.
375 * remote.c (escape_buffer): Use string_file.
376 * rust-lang.c (rust_get_disr_info): Use string_file.
377 * serial.c (serial_open_ops_1): Use stdio_file.
378 (do_serial_close): Use delete.
379 * stack.c (print_frame_arg): Use string_file.
380 (print_frame_args): Remove local mem_fileopen stream, not used.
381 (print_frame): Use string_file.
382 * symmisc.c (maintenance_print_symbols): Use stdio_file.
383 * symtab.h (struct symbol_computed_ops) <generate_c_location>:
384 Take a 'string_file *' instead of a 'ui_file *'.
385 * top.c (new_ui): Use stdio_file and stderr_file.
386 (free_ui): Use delete.
387 (execute_command_to_string): Use string_file.
388 (quit_confirm): Use string_file.
389 * tracepoint.c (collection_list::append_exp): Use string_file.
390 * tui/tui-disasm.c (tui_disassemble): Use string_file.
391 * tui/tui-file.c: Don't include "ui-file.h".
392 (enum streamtype, struct tui_stream): Delete.
393 (tui_file_new, tui_file_delete, tui_fileopen, tui_sfileopen)
394 (tui_file_isatty, tui_file_rewind, tui_file_put): Delete.
395 (tui_file::tui_file): New method.
396 (tui_file_fputs): Delete.
397 (tui_file_get_strbuf): Delete.
398 (tui_file::puts): New method.
399 (tui_file_adjust_strbuf): Delete.
400 (tui_file_flush): Delete.
401 (tui_file::flush): New method.
402 * tui/tui-file.h: Tweak intro comment.
403 Include ui-file.h.
404 (tui_fileopen, tui_sfileopen, tui_file_get_strbuf)
405 (tui_file_adjust_strbuf): Delete declarations.
406 (class tui_file): New class.
407 * tui/tui-io.c (tui_initialize_io): Use tui_file.
408 * tui/tui-regs.c (tui_restore_gdbout): Use delete.
409 (tui_register_format): Use string_stream.
410 * tui/tui-stack.c (tui_make_status_line): Use string_file.
411 (tui_get_function_from_frame): Use string_file.
412 * typeprint.c (type_to_string): Use string_file.
413 * ui-file.c (struct ui_file, ui_file_magic, ui_file_new): Delete.
414 (null_stream): New global.
415 (ui_file_delete): Delete.
416 (ui_file::ui_file): New.
417 (null_file_isatty): Delete.
418 (ui_file::~ui_file): New.
419 (null_file_rewind): Delete.
420 (ui_file::printf): New.
421 (null_file_put): Delete.
422 (null_file_flush): Delete.
423 (ui_file::putstr): New.
424 (null_file_write): Delete.
425 (ui_file::putstrn): New.
426 (null_file_read): Delete.
427 (ui_file::putc): New.
428 (null_file_fputs): Delete.
429 (null_file_write_async_safe): Delete.
430 (ui_file::vprintf): New.
431 (null_file_delete): Delete.
432 (null_file::write): New.
433 (null_file_fseek): Delete.
434 (null_file::puts): New.
435 (ui_file_data): Delete.
436 (null_file::write_async_safe): New.
437 (gdb_flush, ui_file_isatty): Adjust.
438 (ui_file_put, ui_file_rewind): Delete.
439 (ui_file_write): Adjust.
440 (ui_file_write_for_put): Delete.
441 (ui_file_write_async_safe, ui_file_read): Adjust.
442 (ui_file_fseek): Delete.
443 (fputs_unfiltered): Adjust.
444 (set_ui_file_flush, set_ui_file_isatty, set_ui_file_rewind)
445 (set_ui_file_put, set_ui_file_write, set_ui_file_write_async_safe)
446 (set_ui_file_read, set_ui_file_fputs, set_ui_file_fseek)
447 (set_ui_file_data): Delete.
448 (string_file::~string_file, string_file::write)
449 (struct accumulated_ui_file, do_ui_file_xstrdup, ui_file_xstrdup)
450 (do_ui_file_as_string, ui_file_as_string): Delete.
451 (do_ui_file_obsavestring, ui_file_obsavestring): Delete.
452 (struct mem_file): Delete.
453 (mem_file_new): Delete.
454 (stdio_file::stdio_file): New.
455 (mem_file_delete): Delete.
456 (stdio_file::stdio_file): New.
457 (mem_fileopen): Delete.
458 (stdio_file::~stdio_file): New.
459 (mem_file_rewind): Delete.
460 (stdio_file::set_stream): New.
461 (mem_file_put): Delete.
462 (stdio_file::open): New.
463 (mem_file_write): Delete.
464 (stdio_file_magic, struct stdio_file): Delete.
465 (stdio_file_new, stdio_file_delete, stdio_file_flush): Delete.
466 (stdio_file::flush): New.
467 (stdio_file_read): Rename to ...
468 (stdio_file::read): ... this. Adjust.
469 (stdio_file_write): Rename to ...
470 (stdio_file::write): ... this. Adjust.
471 (stdio_file_write_async_safe): Rename to ...
472 (stdio_file::write_async_safe) ... this. Adjust.
473 (stdio_file_fputs): Rename to ...
474 (stdio_file::puts) ... this. Adjust.
475 (stdio_file_isatty): Delete.
476 (stdio_file_fseek): Delete.
477 (stdio_file::isatty): New.
478 (stderr_file_write): Rename to ...
479 (stderr_file::write) ... this. Adjust.
480 (stderr_file_fputs): Rename to ...
481 (stderr_file::puts) ... this. Adjust.
482 (stderr_fileopen, stdio_fileopen, gdb_fopen): Delete.
483 (stderr_file::stderr_file): New.
484 (tee_file_magic): Delete.
485 (struct tee_file): Delete.
486 (tee_file::tee_file): New.
487 (tee_file_new): Delete.
488 (tee_file::~tee_file): New.
489 (tee_file_delete): Delete.
490 (tee_file_flush): Rename to ...
491 (tee_file::flush): ... this. Adjust.
492 (tee_file_write): Rename to ...
493 (tee_file::write): ... this. Adjust.
494 (tee_file::write_async_safe): New.
495 (tee_file_fputs): Rename to ...
496 (tee_file::puts): ... this. Adjust.
497 (tee_file_isatty): Rename to ...
498 (tee_file::isatty): ... this. Adjust.
499 * ui-file.h (struct obstack, struct ui_file): Don't
500 forward-declare.
501 (ui_file_new, ui_file_flush_ftype, set_ui_file_flush)
502 (ui_file_write_ftype)
503 (set_ui_file_write, ui_file_fputs_ftype, set_ui_file_fputs)
504 (ui_file_write_async_safe_ftype, set_ui_file_write_async_safe)
505 (ui_file_read_ftype, set_ui_file_read, ui_file_isatty_ftype)
506 (set_ui_file_isatty, ui_file_rewind_ftype, set_ui_file_rewind)
507 (ui_file_put_method_ftype, ui_file_put_ftype, set_ui_file_put)
508 (ui_file_delete_ftype, set_ui_file_data, ui_file_fseek_ftype)
509 (set_ui_file_fseek): Delete.
510 (ui_file_data, ui_file_delete, ui_file_rewind)
511 (struct ui_file): New.
512 (ui_file_up): New.
513 (class null_file): New.
514 (null_stream): Declare.
515 (ui_file_write_for_put, ui_file_put): Delete.
516 (ui_file_xstrdup, ui_file_as_string, ui_file_obsavestring):
517 Delete.
518 (ui_file_fseek, mem_fileopen, stdio_fileopen, stderr_fileopen)
519 (gdb_fopen, tee_file_new): Delete.
520 (struct string_file): New.
521 (struct stdio_file): New.
522 (stdio_file_up): New.
523 (struct stderr_file): New.
524 (class tee_file): New.
525 * ui-out.c (ui_out::field_stream): Take a 'string_file &' instead
526 of a 'ui_file *'. Adjust.
527 * ui-out.h (class ui_out) <field_stream>: Likewise.
528 * utils.c (do_ui_file_delete, make_cleanup_ui_file_delete)
529 (null_stream): Delete.
530 (error_stream): Take a 'string_file &' instead of a 'ui_file *'.
531 Adjust.
532 * utils.h (struct ui_file): Delete forward declaration..
533 (make_cleanup_ui_file_delete, null_stream): Delete declarations.
534 (error_stream): Take a 'string_file &' instead of a
535 'ui_file *'.
536 * varobj.c (varobj_value_get_print_value): Use string_file.
537 * xtensa-tdep.c (xtensa_verify_config): Use string_file.
538 * gdbarch.c: Regenerate.
539
187808b0
PA
5402017-02-02 Pedro Alves <palves@redhat.com>
541
542 * disasm.c (gdb_disassembler::pretty_print_insn): Rename to...
543 (gdb_pretty_print_insn): ... this. Now a free function. Add back
544 a 'gdbarch' parameter. Allocate a mem_fileopen stream here.
545 Adjust to call gdb_print_insn instead of
546 gdb_disassembler::print_insn.
547 (dump_insns, do_mixed_source_and_assembly_deprecated)
548 (do_mixed_source_and_assembly, do_assembly_only): Add back a
549 'gdbarch' parameter. Remove gdb_disassembler parameter.
550 (gdb_disassembly): Don't allocate a gdb_disassembler here.
551 * disasm.h (gdb_disassembler::pretty_print_insn): Delete
552 declaration.
553 (gdb_pretty_print_insn): Re-add declaration.
554 * record-btrace.c (btrace_insn_history): Don't allocate a
555 gdb_disassembler here. Adjust to call gdb_pretty_print_insn.
556
7a8eb317
SM
5572017-02-01 Simon Marchi <simon.marchi@polymtl.ca>
558
559 * disasm.h (gdb_disassembly): Remove file_string parameter.
560 * disasm.c (gdb_disassembly): Likewise.
561 * cli/cli-cmds.c (print_disassembly): Adapt.
562 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
563 * stack.c (do_gdb_disassembly): Likewise.
564
7346ef59
AA
5652017-02-01 Andreas Arnez <arnez@linux.vnet.ibm.com>
566
567 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
568 DWARF_VALUE_LITERAL, no longer ignore the offset on big-endian
569 targets. And if the implicit value is longer than needed, extract
570 the first bytes instead of the "least significant" ones.
571
cd4007e4
MM
5722017-02-01 Markus Metzger <markus.t.metzger@intel.com>
573
574 * btrace.c (btrace_enable): Do not call btrace_add_pc for
575 BTRACE_FORMAT_PT or if can_access_registers_ptid returns false.
576 (btrace_fetch): Assert can_access_registers_ptid.
577 * record-btrace.c (require_btrace_thread, record_btrace_info): Call
578 validate_registers_access.
579
cf77c34e
MM
5802017-02-01 Markus Metzger <markus.t.metzger@intel.com>
581
582 * gdbthread.h (can_access_registers_ptid): New.
583 * thread.c (can_access_registers_ptid): New.
584
be85ce7d
PA
5852017-02-01 Pedro Alves <palves@redhat.com>
586
587 * i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
588
29b0b251
PA
5892017-01-31 Pedro Alves <palves@redhat.com>
590
591 * mi/mi-interp.c (mi_breakpoint_created, mi_breakpoint_modified):
592 Fix typos.
593
289b5b24
PA
5942017-01-31 Pedro Alves <palves@redhat.com>
595
596 * stack.c (print_frame_args): Remove local mem_fileopen stream,
597 not used.
598
b47413b4
PA
5992017-01-31 Pedro Alves <palves@redhat.com>
600
601 * varobj.c (varobj_value_get_print_value): Remove xstrdup call.
602
60adb36c
PA
6032017-01-31 Pedro Alves <palves@redhat.com>
604
605 * common/scoped_restore.h
606 (scoped_restore_tmpl::scoped_restore_tmpl): Template on T2, and
607 change the value's parameter type to T2.
608 (make_scoped_restore): Likewise.
609
2735833d
WT
6102017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
611 Richard Henderson <rth@redhat.com>
612
613 * amd64-linux-nat.c (PTRACE_ARCH_PRCTL): New define.
614 (amd64_linux_fetch_inferior_registers): Add case to fetch FS_BASE
615 GS_BASE for older kernels.
616 (amd64_linux_store_inferior_registers): Add case to store FS_BASE
617 GS_BASE for older kernels.
618 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Add FS_BASE
619 and GS_BASE to the offset table.
620 (amd64_linux_register_reggroup_p): Add FS_BASE and GS_BASE to the
621 system register group.
622 * amd64-nat.c (amd64_native_gregset_reg_offset): Implements case
623 for older kernels.
624 * amd64-tdep.c (amd64_init_abi): Add segment registers for the
625 amd64 ABI.
626 * amd64-tdep.h (amd64_regnum): Add AMD64_FSBASE_REGNUM and
627 AMD64_GSBASE_REGNUM.
628 (AMD64_NUM_REGS): Set to AMD64_GSBASE_REGNUM + 1.
629 * features/Makefile (amd64-linux.dat, amd64-avx-linux.dat)
630 (amd64-mpx-linux.dat, amd64-avx512-linux.dat, x32-linux.dat)
631 (x32-avx-linux.dat, x32-avx512-linux.dat): Add
632 i386/64bit-segments.xml in those rules.
633 * features/i386/64bit-segments.xml: New file.
634 * features/i386/amd64-avx-mpx-linux.xml: Add 64bit-segments.xml.
635 * features/i386/amd64-avx-linux.xml: Add 64bit-segments.xml.
636 * features/i386/amd64-avx512-linux.xml: Add 64bit-segments.xml.
637 * features/i386/amd64-mpx-linux.xml: Add 64bit-segments.xml.
638 * features/i386/x32-avx512-linux.xml: Add 64bit-segments.xml.
639 * features/i386/x32-avx-linux.xml: Add 64bit-segments.xml.
640 * features/i386/amd64-linux.xml: Add 64bit-segments.xml.
641 * features/i386/amd64-avx-linux.c: Regenerated.
642 * features/i386/amd64-avx-mpx-linux.c: Regenerated.
643 * features/i386/amd64-avx-mpx.c: Regenerated.
644 * features/i386/amd64-avx512-linux.c: Regenerated.
645 * features/i386/amd64-linux.c: Regenerated.
646 * features/i386/amd64-mpx-linux.c: Regenerated.
647 * features/i386/i386-avx-mpx-linux.c: Regenerated.
648 * features/i386/i386-avx-mpx.c: Regenerated.
649 * features/i386/x32-avx-linux.c: Regenerated.
650 * features/i386/x32-avx512-linux.c: Regenerated.
651 * regformats/i386/amd64-avx-linux.dat: Regenerated.
652 * regformats/i386/amd64-avx-mpx-linux.dat: Regenerated.
653 * regformats/i386/amd64-avx512-linux.dat: Regenerated.
654 * regformats/i386/amd64-linux.dat: Regenerated.
655 * regformats/i386/amd64-mpx-linux.dat: Regenerated.
656 * regformats/i386/x32-avx-linux.dat: Regenerated.
657 * regformats/i386/x32-avx512-linux.dat: Regenerated.
658 * regformats/i386/x32-linux.dat: Regenerated.
659
8884e97e
WT
6602017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
661
662 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM):
663 Set to AMD64_NUM_REGS.
664
7005d26a
WT
6652017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
666
667 * amd64-nat.c (amd64_native_gregset_reg_offset): Simplify logic
668 that checks validity of a register number.
669
4bd2e1b2
KC
6702017-01-27 Kees Cook <keescook@google.com>
671
672 * gdb/arm-linux-nat.c (arm_linux_fetch_inferior_registers): Call
673 fetch_fpregs if target has fpa registers.
674 (arm_linux_store_inferior_registers): Call store_fpregs if target
675 has fpa registers.
676
7cf1de6c
AA
6772017-01-26 Andreas Arnez <arnez@linux.vnet.ibm.com>
678
679 * cris-tdep.c (cris_gdbarch_init): Remove check for
680 info.byte_order and force it to BFD_ENDIAN_LITTLE.
681
874a1c8c
AT
6822017-01-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
683
684 * corelow.c (get_core_register_section): Check for regset
685 existence before checking for REGSET_VARIABLE_SIZE.
686
d8b49cf0
YQ
6872017-01-26 Yao Qi <yao.qi@linaro.org>
688 Pedro Alves <palves@redhat.com>
689
690 PR gdb/20939
691 * disasm.c (gdb_disassembler::dis_asm_memory_error): Don't
692 call memory_error, save memaddr instead.
693 (gdb_disassembler::print_insn): If gdbarch_print_insn returns
694 negative, cal memory_error.
695 * disasm.h (gdb_disassembler) <m_err_memaddr>: New field.
696
658ca58c
YQ
6972017-01-26 Yao Qi <yao.qi@linaro.org>
698
699 * disasm-selftests.c (memory_error_test): New function.
700 (_initialize_disasm_selftests): Register memory_error_test.
701
79843d45
YQ
7022017-01-26 Yao Qi <yao.qi@linaro.org>
703
704 * Makefile.in (SFILES): Add disasm-selftests.c and
705 selftest-arch.c.
706 (COMMON_OBS): Add disasm-selftests.o and selftest-arch.o.
707 * disasm-selftests.c: New file.
708 * selftest-arch.c: New file.
709 * selftest-arch.h: New file.
710
8cafda32
YQ
7112017-01-26 Yao Qi <yao.qi@linaro.org>
712
713 * mep-tdep.c (mep_gdb_print_insn): Set info->arch
714 to bfd_arch_mep. Don't return 0 if section is not
715 found. Call print_insn_mep.
716
e47ad6c0
YQ
7172017-01-26 Pedro Alves <palves@redhat.com>
718 Yao Qi <yao.qi@linaro.org>
719
720 * arm-tdep.c: Include "disasm.h".
721 (gdb_print_insn_arm): Update code to get gdbarch.
722 * disasm.c (dis_asm_read_memory): Change it to
723 gdb_disassembler::dis_asm_read_memory.
724 (dis_asm_memory_error): Likewise.
725 (dis_asm_print_address): Likewise.
726 (gdb_pretty_print_insn): Change it to
727 gdb_disassembler::pretty_print_insn.
728 (dump_insns): Add one argument gdb_disassemlber. All
729 callers updated.
730 (do_mixed_source_and_assembly_deprecated): Likewise.
731 (do_mixed_source_and_assembly): Likewise.
732 (do_assembly_only): Likewise.
733 (gdb_disassembler::gdb_disassembler): New.
734 (gdb_disassembler::print_insn): New.
735 * disasm.h (class gdb_disassembler): New.
736 (gdb_pretty_print_insn): Remove declaration.
737 (gdb_disassemble_info): Likewise.
738 * guile/scm-disasm.c (class gdbscm_disassembler): New.
739 (gdbscm_disasm_read_memory_worker): Update.
740 (gdbscm_disasm_read_memory): Update.
741 (gdbscm_disasm_memory_error): Remove.
742 (gdbscm_disasm_print_address): Remove.
743 (gdbscm_disassembler::gdbscm_disassembler): New.
744 (gdbscm_print_insn_from_port): Update.
745 * mips-tdep.c: Include disasm.h.
746 (gdb_print_insn_mips): Update code to get gdbarch.
747 * record-btrace.c (btrace_insn_history): Update.
748 * spu-tdep.c: Include disasm.h.
749 (struct spu_dis_asm_data): Remove.
750 (struct spu_dis_asm_info): New.
751 (spu_dis_asm_print_address): Use spu_dis_asm_info to get
752 SPU id.
753 (gdb_print_insn_spu): Cast disassemble_info to
754 spu_dis_asm_info.
755
80d75874
YQ
7562017-01-26 Yao Qi <yao.qi@linaro.org>
757
758 * disasm.c (do_ui_file_delete): Delete.
759 (gdb_insn_length): Move code creating stream to ...
760 * utils.c (null_stream): ... here. New function.
761 * utils.h (null_stream): Declare.
762
60685cd0
SM
7632017-01-23 Simon Marchi <simon.marchi@polymtl.ca>
764
765 * python/py-inferior.c (find_thread_object): Return directly
766 from the loop. Remove "found" variable.
767
eb1cdb62
JB
7682017-01-21 Joel Brobecker <brobecker@adacore.com>
769
770 GDB 7.12.1 released.
771
b1ce6568
SM
7722017-01-20 Simon Marchi <simon.marchi@ericsson.com>
773
774 * python/py-function.c (fnpy_call): Reorder declarations to have
775 the gdbpy_enter object declared first.
776 * python/py-xmethods.c (gdbpy_get_xmethod_arg_types): Likewise.
777
6f8b0407
SM
7782017-01-20 Simon Marchi <simon.marchi@ericsson.com>
779
fec93fb1 780 PR python/21068
6f8b0407
SM
781 * python/python-internal.h (PyMem_RawMalloc): Define for
782 Python < 3.4.
783 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use
784 PyMem_RawMalloc instead of PyMem_Malloc.
785
78cbbba8
LM
7862017-01-20 Mike Wrighton <mike_wrighton@codesourcery.com>
787 Luis Machado <lgustavo@codesourcery.com>
788
789 * NEWS (New commands): Mention flash-erase.
790 (New MI commands): Mention target-flash-erase.
791 * mi/mi-cmds.c (mi_cmd_target_flash_erase): Add target-flash-erase MI
792 command.
793 * mi/mi-cmds.h (mi_cmd_target_flash_erase): New declaration.
794 * mi/mi-main.c (mi_cmd_target_flash_erase): New function.
795 * target.c (flash_erase_command): New function.
796 (initialize_targets): Add new flash-erase command.
797 * target.h (flash_erase_command): New declaration.
798
2132fe85
JB
7992017-01-20 Joel Brobecker <brobecker@adacore.com>
800
801 * nat/linux-ptrace.c: Only include <sys/procfs.h> if
802 HAVE_SYS_PROCFS_H is defined.
803
d1dff226
AH
8042017-01-18 Alan Hayward <alan.hayward@arm.com>
805
806 * remote.c (struct cached_reg): Change data into a pointer.
807 * (stop_reply_dtr): Free data pointers before deleting vector.
808 (process_stop_reply): Likewise.
809 (remote_parse_stop_reply): Allocate space for data
810
9890e433
AH
8112017-01-18 Alan Hayward <alan.hayward@arm.com>
812
813 * amd64-tdep.c (amd64_pseudo_register_read_value): remove
814 MAX_REGISTER_SIZE.
815 (amd64_pseudo_register_read_value): Likewise.
816 * remote.c (fetch_register_using_p): Remove MAX_REGISTER_SIZE.
817 (store_register_using_P): Likewise.
818 * regcache.c (regcache_xfer_part): Likewise.
819
7a36499a
IR
8202017-01-16 Ivo Raisr <ivo.raisr@oracle.com>
821
822 Split real and pseudo registers.
823 * sparc-tdep.h (SPARC_CORE_REGISTERS): New macro.
824 (sparc32_pseudo_regnum): New enum.
825 * sparc64-tdep.h (sparc64_pseudo_regnum): New enum.
826 * sparc-tdep.c (SPARC32_FPU_REGISTERS): New macro.
827 (SPARC32_CP0_REGISTERS): New macro.
828 (sparc32_pseudo_register_name): New function.
829 (sparc32_register_name): Use sparc32_pseudo_register_name.
830 (sparc32_pseudo_register_type): New function.
831 (sparc32_register_type): Use sparc32_pseudo_register_type.
832 (sparc32_pseudo_register_read, sparc32_pseudo_register_write): Handle
833 pseudo register numbers.
834 * sparc64-tdep.c SPARC64_FPU_REGISTERS): New macro.
835 (SPARC64_CP0_REGISTERS): New macro.
836 (sparc64_pseudo_register_name): New function.
837 (sparc64_register_name): Use sparc64_pseudo_register_name.
838 (sparc64_pseudo_register_type): New function.
839 (sparc64_register_type): Use sparc64_pseudo_register_type.
840 (sparc64_pseudo_register_read, sparc64_pseudo_register_write): Handle
841 pseudo register numbers.
842 (sparc64_store_floating_fields, sparc64_extract_floating_fields,
843 sparc64_store_arguments): Handle pseudo register numbers.
844
6f8976bf
YQ
8452017-01-13 Yao Qi <yao.qi@linaro.org>
846
847 * remote.c (REMOTE_DEBUG_MAX_CHAR): New macro.
848 (putpkt_binary): Print only REMOTE_DEBUG_MAX_CHAR chars in debug
849 output.
850 (getpkt_or_notif_sane_1): Likewise.
851
e4241ace
YQ
8522017-01-13 Yao Qi <yao.qi@linaro.org>
853
854 * Makefile.in (checker-headers): Use CXX and CXX_DIALET instead
855 of CC. Pass "-x c++-header" instead of "-x c".
856
3015c064
SM
8572017-01-12 Simon Marchi <simon.marchi@ericsson.com>
858
859 * remote.c (remote_can_async_p): Update comment.
860
fde1b17d
SM
8612017-01-12 Simon Marchi <simon.marchi@ericsson.com>
862
863 * linux-nat.c (linux_nat_can_async_p): Update comment.
864
ca1ca08b
SM
8652017-01-12 Simon Marchi <simon.marchi@ericsson.com>
866
867 * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
868
4ad2da73
SM
8692017-01-11 Simon Marchi <simon.marchi@ericsson.com>
870
871 * cli/cli-decode.c (lookup_cmd_1): Fix typo in comment.
872
c8b23b3f
TT
8732017-01-10 Tom Tromey <tom@tromey.com>
874
875 * python/py-type.c (typy_legacy_template_argument): Update.
876 * cp-support.h (struct demangle_parse_info) (demangle_parse_info,
877 ~demangle_parse_info): Declare new members.
878 (cp_demangled_name_to_comp): Return unique_ptr.
879 (cp_demangled_name_parse_free)
880 (make_cleanup_cp_demangled_name_parse_free)
881 (cp_new_demangle_parse_info): Remove.
882 * cp-support.c (do_demangled_name_parse_free_cleanup)
883 (make_cleanup_cp_demangled_name_parse_free): Remove.
884 (inspect_type, cp_canonicalize_string_full)
885 (cp_canonicalize_string): Update.
886 (mangled_name_to_comp): Change return type.
887 (cp_class_name_from_physname, method_name_from_physname)
888 (cp_func_name, cp_remove_params): Update.
889 * cp-name-parser.y (demangle_parse_info): New constructor, from
890 cp_new_demangle_parse_info.
891 (~demangle_parse_info): New destructor, from
892 cp_demangled_name_parse_free.
893 (cp_merge_demangle_parse_infos): Update.
894 (cp_demangled_name_to_comp): Change return type.
895
1ac32117
TT
8962017-01-10 Tom Tromey <tom@tromey.com>
897
898 * top.c (prevent_dont_repeat): Change return type.
899 * python/python.c (execute_gdb_command): Use std::string.
900 Update.
901 * guile/guile.c (gdbscm_execute_gdb_command): Update.
902 * command.h (prevent_dont_repeat): Change return type.
903 * breakpoint.c (bpstat_do_actions_1): Update.
904
0cf08227
TT
9052017-01-10 Tom Tromey <tom@tromey.com>
906
907 * value.h (scoped_value_mark::~scoped_value_mark): Call
908 free_to_mark.
909 (scoped_value_mark::free_to_mark): New method.
910 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
911 scoped_value_mark.
912
eb115069
TT
9132017-01-10 Tom Tromey <tom@tromey.com>
914
915 * python/py-value.c (valpy_dereference, valpy_referenced_value)
916 (valpy_reference_value, valpy_const_value, valpy_get_address)
917 (valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
918 (valpy_getitem, valpy_call, valpy_binop_throw, valpy_negative)
919 (valpy_absolute, valpy_richcompare_throw): Use scoped_value_mark.
920 * dwarf2loc.c (dwarf2_loc_desc_get_symbol_read_needs): Use
921 scoped_value_mark.
922 * dwarf2-frame.c (execute_stack_op): Use scoped_value_mark.
923 * value.h (scoped_value_mark): New class.
924
906768f9
TT
9252017-01-10 Tom Tromey <tom@tromey.com>
926
927 * dwarf2read.c (dwarf2_build_psymtabs): Use psymtab_discarder.
928 * psympriv.h (make_cleanup_discard_psymtabs): Don't declare.
929 * psymtab.c (discard_psymtabs_upto): Remove.
930 (make_cleanup_discard_psymtabs): Remove.
931 (struct psymtab_state): Remove.
932
bef155c3
TT
9332017-01-10 Tom Tromey <tom@tromey.com>
934
935 * record-full.c (record_full_save_cleanups): Remove.
936 (record_full_save): Use gdb::unlinker.
937 * gcore.c (do_bfd_delete_cleanup): Remove.
938 (gcore_command): Use gdb::unlinker, unique_xmalloc_ptr. Remove
939 cleanups.
940 * dwarf2read.c (unlink_if_set): Remove.
941 (write_psymtabs_to_index): Use gdb::unlinker.
942 * common/gdb_unlinker.h: New file.
943
192b62ce
TT
9442017-01-10 Tom Tromey <tom@tromey.com>
945
946 * windows-tdep.c (windows_xfer_shared_library): Update.
947 * windows-nat.c (windows_make_so): Update.
948 * utils.h (make_cleanup_bfd_unref): Remove.
949 * utils.c (do_bfd_close_cleanup, make_cleanup_bfd_unref): Remove.
950 * symfile.h (symfile_bfd_open)
951 (find_separate_debug_file_in_section): Return gdb_bfd_ref_ptr.
952 * symfile.c (read_symbols, symbol_file_add)
953 (separate_debug_file_exists): Update.
954 (symfile_bfd_open): Return gdb_bfd_ref_ptr.
955 (generic_load, reread_symbols): Update.
956 * symfile-mem.c (symbol_file_add_from_memory): Update.
957 * spu-linux-nat.c (spu_bfd_open): Return gdb_bfd_ref_ptr.
958 (spu_symbol_file_add_from_memory): Update.
959 * solist.h (struct target_so_ops) <bfd_open>: Return
960 gdb_bfd_ref_ptr.
961 (solib_bfd_fopen, solib_bfd_open): Return gdb_bfd_ref_ptr.
962 * solib.c (solib_bfd_fopen, solib_bfd_open): Return
963 gdb_bfd_ref_ptr.
964 (solib_map_sections, reload_shared_libraries_1): Update.
965 * solib-svr4.c (enable_break): Update.
966 * solib-spu.c (spu_bfd_fopen): Return gdb_bfd_ref_ptr.
967 * solib-frv.c (enable_break2): Update.
968 * solib-dsbt.c (enable_break): Update.
969 * solib-darwin.c (gdb_bfd_mach_o_fat_extract): Return
970 gdb_bfd_ref_ptr.
971 (darwin_solib_get_all_image_info_addr_at_init): Update.
972 (darwin_bfd_open): Return gdb_bfd_ref_ptr.
973 * solib-aix.c (solib_aix_bfd_open): Return gdb_bfd_ref_ptr.
974 * record-full.c (record_full_save): Update.
975 * python/py-objfile.c (objfpy_add_separate_debug_file): Update.
976 * procfs.c (insert_dbx_link_bpt_in_file): Update.
977 * minidebug.c (find_separate_debug_file_in_section): Return
978 gdb_bfd_ref_ptr.
979 * machoread.c (macho_add_oso_symfile): Change abfd to
980 gdb_bfd_ref_ptr.
981 (macho_symfile_read_all_oso): Update.
982 (macho_check_dsym): Return gdb_bfd_ref_ptr.
983 (macho_symfile_read): Update.
984 * jit.c (bfd_open_from_target_memory): Return gdb_bfd_ref_ptr.
985 (jit_bfd_try_read_symtab): Update.
986 * gdb_bfd.h (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
987 (gdb_bfd_openw, gdb_bfd_openr_iovec)
988 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
989 gdb_bfd_ref_ptr.
990 (gdb_bfd_ref_policy): New struct.
991 (gdb_bfd_ref_ptr): New typedef.
992 * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
993 (gdb_bfd_openw, gdb_bfd_openr_iovec)
994 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
995 gdb_bfd_ref_ptr.
996 * gcore.h (create_gcore_bfd): Return gdb_bfd_ref_ptr.
997 * gcore.c (create_gcore_bfd): Return gdb_bfd_ref_ptr.
998 (gcore_command): Update.
999 * exec.c (exec_file_attach): Update.
1000 * elfread.c (elf_symfile_read): Update.
1001 * dwarf2read.c (dwarf2_get_dwz_file): Update.
1002 (try_open_dwop_file, open_dwo_file): Return gdb_bfd_ref_ptr.
1003 (open_and_init_dwo_file): Update.
1004 (open_dwp_file): Return gdb_bfd_ref_ptr.
1005 (open_and_init_dwp_file): Update.
1006 * corelow.c (core_open): Update.
1007 * compile/compile-object-load.c (compile_object_load): Update.
1008 * common/gdb_ref_ptr.h (ref_ptr::operator->): New operator.
1009 * coffread.c (coff_symfile_read): Update.
1010 * cli/cli-dump.c (bfd_openr_or_error, bfd_openw_or_error): Return
1011 gdb_bfd_ref_ptr. Rename.
1012 (dump_bfd_file, restore_command): Update.
1013 * build-id.h (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
1014 * build-id.c (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
1015 (find_separate_debug_file_by_buildid): Update.
1016
50315b21
TT
10172017-01-10 Tom Tromey <tom@tromey.com>
1018
1019 * common/gdb_ref_ptr.h: New file.
1020 * python/py-ref.h (struct gdbpy_ref_policy): New.
1021 (gdbpy_ref): Now a typedef.
1022
fc4007c9
TT
10232017-01-10 Tom Tromey <tom@tromey.com>
1024
1025 * utils.h (make_cleanup_htab_delete): Don't declare.
1026 * utils.c (do_htab_delete_cleanup, make_cleanup_htab_delete):
1027 Remove.
1028 * linespec.c (decode_compound_collector): Add constructor,
1029 destructor.
1030 (lookup_prefix_sym): Remove cleanup.
1031 (symtab_collector): Add constructor, destructor.
1032 (collect_symtabs_from_filename): Remove cleanup.
1033 * disasm.c (do_mixed_source_and_assembly): Use htab_up.
1034 * compile/compile-c-symbols.c (generate_c_for_variable_locations):
1035 Use htab_up.
1036 * gnu-v3-abi.c (gnuv3_print_vtable): Use htab_up.
1037 * dwarf2read.c (dw2_expand_symtabs_matching)
1038 (dw2_map_symbol_filenames, dwarf_decode_macros)
1039 (write_psymtabs_to_index): Use htab_up.
1040 * dwarf2loc.c (func_verify_no_selftailcall)
1041 (call_site_find_chain_1, func_verify_no_selftailcall)
1042 (chain_candidate, call_site_find_chain_1): Use std::unordered_set,
1043 std::vector, gdb::unique_xmalloc_ptr.
1044 (call_sitep): Remove typedef.
1045 (dwarf2_locexpr_baton_eval): Remove unused variable.
1046
8dbcee67
TT
10472017-01-10 Tom Tromey <tom@tromey.com>
1048
1049 * python/python-internal.h (make_cleanup_py_decref)
1050 (make_cleanup_py_xdecref): Don't declare.
1051 * python/py-utils.c (py_decref, make_cleanup_py_decref)
1052 (py_xdecref, make_cleanup_py_xdecref): Remove.
1053
13df46cc
TT
10542017-01-10 Tom Tromey <tom@tromey.com>
1055
1056 * python/py-framefilter.c (py_mi_print_variables): Use gdbpy_ref.
1057 (py_print_locals, enumerate_locals, py_print_args): Use gdbpy_ref.
1058
06fc9bf7
TT
10592017-01-10 Tom Tromey <tom@tromey.com>
1060
1061 * python/py-framefilter.c (enumerate_args): Use gdbpy_ref.
1062
830a4934
TT
10632017-01-10 Tom Tromey <tom@tromey.com>
1064
1065 * python/py-utils.c (unicode_to_encoded_string)
1066 (python_string_to_target_string)
1067 (python_string_to_target_python_string)
1068 (python_string_to_host_string, gdbpy_obj_to_string)
1069 (get_addr_from_python): Use gdbpy_ref.
1070
4586d543
TT
10712017-01-10 Tom Tromey <tom@tromey.com>
1072
1073 * python/py-unwind.c (pyuw_object_attribute_to_pointer): Use
1074 gdbpy_ref.
1075
59876f8f
TT
10762017-01-10 Tom Tromey <tom@tromey.com>
1077
1078 * python/python.c (eval_python_command, gdbpy_decode_line)
1079 (gdbpy_run_events, gdbpy_start_type_printers)
1080 (gdbpy_apply_type_printers): Use gdbpy_ref.
1081
97d83487
TT
10822017-01-10 Tom Tromey <tom@tromey.com>
1083
1084 * python/py-param.c (get_doc_string, compute_enum_values): Use
1085 gdbpy_ref.
1086
9205649a
TT
10872017-01-10 Tom Tromey <tom@tromey.com>
1088
1089 * python/py-inferior.c (find_thread_object, build_inferior_list):
1090 Use gdbpy_ref.
1091
74c49d45
TT
10922017-01-10 Tom Tromey <tom@tromey.com>
1093
1094 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
1095
16361ffb
TT
10962017-01-10 Tom Tromey <tom@tromey.com>
1097
1098 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope): Use
1099 gdbpy_ref.
1100
905f2cca
TT
11012017-01-10 Tom Tromey <tom@tromey.com>
1102
1103 * python/py-cmd.c (cmdpy_completer_helper): Use gdbpy_ref. Remove
1104 extra incref.
1105 (cmdpy_completer_handle_brkchars, cmdpy_completer, cmdpy_init):
1106 Use gdbpy_ref.
1107
64081434
TT
11082017-01-10 Tom Tromey <tom@tromey.com>
1109
1110 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
1111 gdbpy_ref.
1112
59e9e831
TT
11132017-01-10 Tom Tromey <tom@tromey.com>
1114
1115 * python/py-arch.c (archpy_disassemble): Use gdbpy_ref. Don't
1116 decref results of PyArg_ParseTupleAndKeywords.
1117
9de10f6d
TT
11182017-01-10 Tom Tromey <tom@tromey.com>
1119
1120 * python/python.c (python_run_simple_file): Use
1121 unique_xmalloc_ptr, gdbpy_ref.
1122
2bd5759d
TT
11232017-01-10 Tom Tromey <tom@tromey.com>
1124
1125 * python/py-prettyprint.c (print_stack_unless_memory_error)
1126 (print_string_repr, print_children): Use gdbpy_ref.
1127 (dummy_python_frame): New class.
1128 (dummy_python_frame::dummy_python_frame): Rename from
1129 push_dummy_python_frame.
1130 (py_restore_tstate): Remove.
1131
3b4e0e01
TT
11322017-01-10 Tom Tromey <tom@tromey.com>
1133
1134 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
1135
17a22718
TT
11362017-01-10 Tom Tromey <tom@tromey.com>
1137
1138 * python/python.c (ensure_python_env, restore_python_env):
1139 Remove.
1140 * python/python-internal.h (ensure_python_env): Don't declare.
1141 * varobj.h (varobj_ensure_python_env): Don't declare.
1142 * varobj.c (varobj_ensure_python_env): Remove.
1143
68cdc557
TT
11442017-01-10 Tom Tromey <tom@tromey.com>
1145
1146 * varobj.c (varobj_value_get_print_value): Use
1147 gdbpy_enter_varobj.
1148
1eba6383
TT
11492017-01-10 Tom Tromey <tom@tromey.com>
1150
1151 * python/py-prettyprint.c (print_string_repr, print_children):
1152 Update.
1153 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Change type
1154 of "encoding".
1155 * varobj.c (varobj_value_get_print_value): Update.
1156 * python/python-internal.h (gdbpy_extract_lazy_string): Update.
1157
bde7b3e3
TT
11582017-01-10 Tom Tromey <tom@tromey.com>
1159
1160 * varobj.c (varobj_get_display_hint)
1161 (dynamic_varobj_has_child_method, install_new_value_visualizer)
1162 (varobj_set_visualizer, free_variable): Use
1163 gdbpy_enter_varobj.
1164
a7785f8c
TT
11652017-01-10 Tom Tromey <tom@tromey.com>
1166
1167 * python/python.c (python_command): Use gdbpy_enter, gdbpy_ref.
1168 (do_finish_initialization): New function. Use gdbpy_ref.
1169 (gdbpy_finish_initialization): Use gdbpy_enter. Call
1170 do_finish_initialization.
1171
2865bfce
TT
11722017-01-10 Tom Tromey <tom@tromey.com>
1173
1174 * python/py-param.c (get_set_value, get_show_value): Use
1175 gdbpy_enter, gdbpy_ref.
1176
0e9dcc75
TT
11772017-01-10 Tom Tromey <tom@tromey.com>
1178
1179 * python/py-function.c (fnpy_call): Use gdbpy_enter, gdbpy_ref.
1180
12a5cedd
TT
11812017-01-10 Tom Tromey <tom@tromey.com>
1182
1183 * python/py-cmd.c (cmdpy_function): Use gdbpy_enter, gdbpy_ref.
1184
788f2586
TT
11852017-01-10 Tom Tromey <tom@tromey.com>
1186
1187 * python/py-varobj.c (py_varobj_iter_dtor, py_varobj_iter_next):
1188 Use gdbpy_enter_varobj.
1189
6cd67bea
TT
11902017-01-10 Tom Tromey <tom@tromey.com>
1191
1192 * varobj.c (gdbpy_enter_varobj): New constructor.
1193 * python/python-internal.h (gdbpy_enter_varobj): New class.
1194 * python/py-varobj.c (py_varobj_get_iterator): Use
1195 gdbpy_enter_varobj.
1196
14b122bf
TT
11972017-01-10 Tom Tromey <tom@tromey.com>
1198
1199 * python/py-xmethods.c (gdbpy_get_xmethod_result_type): Use
1200 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
1201 (gdbpy_invoke_xmethod): Use gdbpy_ref, gdbpy_enter.
1202 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref,
1203 unique_xmalloc_ptr.
1204 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref, gdbpy_enter.
1205
bf1ca3b9
TT
12062017-01-10 Tom Tromey <tom@tromey.com>
1207
1208 * python/py-xmethods.c (invoke_match_method): Use
1209 gdbpy_ref.
1210
572a5524
TT
12112017-01-10 Tom Tromey <tom@tromey.com>
1212
1213 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): use
1214 gdbpy_enter, gdbpy_ref.
1215
396a78b6
TT
12162017-01-10 Tom Tromey <tom@tromey.com>
1217
1218 * python/python.c (python_interactive_command): Use gdbpy_enter.
1219
a88b13c7
TT
12202017-01-10 Tom Tromey <tom@tromey.com>
1221
1222 * python/python.c (gdbpy_before_prompt_hook): Use gdbpy_enter,
1223 gdbpy_ref.
1224
e9f0c363
TT
12252017-01-10 Tom Tromey <tom@tromey.com>
1226
1227 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Use
1228 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
1229
6349f452
TT
12302017-01-10 Tom Tromey <tom@tromey.com>
1231
1232 * utils.h (htab_deleter): New struct.
1233 (htab_up): New typedef.
1234 * python/py-framefilter.c (gdbpy_apply_frame_filter): Use
1235 gdbpy_enter, gdbpy_ref, htab_up.
1236
c0171de6
TT
12372017-01-10 Tom Tromey <tom@tromey.com>
1238
1239 * python/py-unwind.c (pending_frame_invalidate): Remove.
1240 (pyuw_sniffer): Use gdbpy_enter and gdbpy_ref.
1241
f18e226f
TT
12422017-01-10 Tom Tromey <tom@tromey.com>
1243
1244 * python/py-xmethods.c (gdbpy_free_xmethod_worker_data)
1245 (gdbpy_clone_xmethod_worker_data): Use gdbpy_enter.
1246
c57af3f1
TT
12472017-01-10 Tom Tromey <tom@tromey.com>
1248
1249 * python/py-type.c (save_objfile_types): Use gdbpy_enter.
1250
60e600ec
TT
12512017-01-10 Tom Tromey <tom@tromey.com>
1252
1253 * python/python.c (gdbpy_eval_from_control_command)
1254 (gdbpy_source_script, gdbpy_run_events)
1255 (gdbpy_source_objfile_script, gdbpy_execute_objfile_script)
1256 (gdbpy_free_type_printers, gdbpy_finish_initialization): Use
1257 gdbpy_enter.
1258
bf7da5b0
TT
12592017-01-10 Tom Tromey <tom@tromey.com>
1260
1261 * python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
1262
2d38bced
TT
12632017-01-10 Tom Tromey <tom@tromey.com>
1264
1265 * python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
1266
07bc7329
TT
12672017-01-10 Tom Tromey <tom@tromey.com>
1268
1269 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
1270 (python_on_inferior_call_pre, python_on_inferior_call_post)
1271 (python_on_memory_change, python_on_register_change)
1272 (python_inferior_exit, python_new_objfile, add_thread_object)
1273 (delete_thread_object, py_free_inferior): Use gdbpy_enter.
1274
6e7c365e
TT
12752017-01-10 Tom Tromey <tom@tromey.com>
1276
1277 * python/py-finishbreakpoint.c (bpfinishpy_handle_stop)
1278 (bpfinishpy_handle_exit): Use gdbpy_enter.
1279
6ba0cd40
TT
12802017-01-10 Tom Tromey <tom@tromey.com>
1281
1282 * python/py-cmd.c (cmdpy_destroyer)
1283 (cmdpy_completer_handle_brkchars, cmdpy_completer): Use
1284 gdbpy_enter.
1285
de2dc875
TT
12862017-01-10 Tom Tromey <tom@tromey.com>
1287
1288 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
1289 gdbpy_enter.
1290 (gdbpy_breakpoint_has_cond): Likewise.
1291
4ecee2c4
TT
12922017-01-10 Tom Tromey <tom@tromey.com>
1293
1294 * python/python.c (gdbpy_enter): New constructor.
1295 (~gdbpy_enter): New destructor.
1296 (restore_python_env, ensure_python_env): Rewrite.
1297 * python/python-internal.h (gdbpy_enter): New class.
1298
37fce74f
TT
12992017-01-10 Tom Tromey <tom@tromey.com>
1300
1301 * python/py-symbol.c (gdbpy_lookup_symbol): Use gdbpy_ref.
1302
53a0cca3
TT
13032017-01-10 Tom Tromey <tom@tromey.com>
1304
1305 * python/py-value.c (value_has_field, get_field_flag)
1306 (get_field_type, valpy_getitem, convert_value_from_python): Use
1307 gdbpy_ref.
1308
ff3724f5
TT
13092017-01-10 Tom Tromey <tom@tromey.com>
1310
1311 * python/python.c (gdbpy_progspaces, gdbpy_objfiles): Use
1312 gdbpy_ref.
1313
0700aea5
TT
13142017-01-10 Tom Tromey <tom@tromey.com>
1315
1316 * python/py-prettyprint.c (search_pp_list)
1317 (find_pretty_printer_from_objfiles)
1318 (find_pretty_printer_from_progspace)
1319 (find_pretty_printer_from_gdb, find_pretty_printer)
1320 (gdbpy_get_display_hint, gdbpy_get_varobj_pretty_printer): Use
1321 gdbpy_ref.
1322
1bb44c9f
TT
13232017-01-10 Tom Tromey <tom@tromey.com>
1324
1325 * python/py-param.c (call_doc_function): Use gdbpy_ref.
1326
87ce03fd
TT
13272017-01-10 Tom Tromey <tom@tromey.com>
1328
1329 * python/py-linetable.c (build_line_table_tuple_from_pcs)
1330 (ltpy_get_all_source_lines): Use gdbpy_ref.
1331
ee0a3fb8
TT
13322017-01-10 Tom Tromey <tom@tromey.com>
1333
1334 * python/py-framefilter.c (extract_sym, extract_value)
1335 (get_py_iter_from_func, bootstrap_python_frame_filters): Use
1336 gdbpy_ref.
1337
bf2a52fa
TT
13382017-01-10 Tom Tromey <tom@tromey.com>
1339
1340 * python/py-breakpoint.c (gdbpy_breakpoints): Use gdbpy_ref.
1341
f59fe7f8
TT
13422017-01-10 Tom Tromey <tom@tromey.com>
1343
1344 * python/py-inferior.c (gdbpy_inferiors): Use gdbpy_ref.
1345
80bd970a
TT
13462017-01-10 Tom Tromey <tom@tromey.com>
1347
1348 * python/py-function.c (convert_values_to_python, fnpy_init): Use
1349 gdbpy_ref.
1350
d1b3de2e
TT
13512017-01-10 Tom Tromey <tom@tromey.com>
1352
1353 * python/py-cmd.c (gdbpy_string_to_argv): Use gdbpy_ref.
1354
3bb43384
TT
13552017-01-10 Tom Tromey <tom@tromey.com>
1356
1357 * python/py-type.c (convert_field, make_fielditem, typy_fields)
1358 (typy_range): Use gdbpy_ref.
1359
abf5651e
TT
13602017-01-10 Tom Tromey <tom@tromey.com>
1361
1362 * python/py-threadevent.c (create_thread_event_object): Use
1363 gdbpy_ref.
1364 * python/py-stopevent.c (create_stop_event_object): Simplify.
1365 (emit_stop_event): Use gdbpy_ref.
1366 * python/py-signalevent.c (create_signal_event_object): Use
1367 gdbpy_ref.
1368 * python/py-newobjfileevent.c (create_new_objfile_event_object)
1369 (emit_new_objfile_event, create_clear_objfiles_event_object)
1370 (emit_clear_objfiles_event): Use gdbpy_ref.
1371 * python/py-infevents.c (create_inferior_call_event_object)
1372 (create_register_changed_event_object)
1373 (create_memory_changed_event_object, emit_inferior_call_event)
1374 (emit_memory_changed_event, emit_register_changed_event): Use
1375 gdbpy_ref.
1376 * python/py-exitedevent.c (create_exited_event_object)
1377 (emit_exited_event): Use gdbpy_ref.
1378 * python/py-event.h (evpy_emit_event): Remove
1379 CPYCHECKER_STEALS_REFERENCE_TO_ARG annotation.
1380 * python/py-event.c (evpy_emit_event): Use gdbpy_ref.
1381 * python/py-continueevent.c (emit_continue_event): Use
1382 gdbpy_ref.
1383 * python/py-breakpoint.c (gdbpy_breakpoint_created)
1384 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
1385 gdbpy_ref.
1386 * python/py-bpevent.c (create_breakpoint_event_object): Use
1387 gdbpy_ref.
1388
a68ff33e
TT
13892017-01-10 Tom Tromey <tom@tromey.com>
1390
1391 * python/py-ref.h: New file.
1392
7becfd03
SM
13932017-01-10 Simon Marchi <simon.marchi@ericsson.com>
1394
1395 * cli-out.c (cli_ui_out::do_redirect): Change return type to
1396 void.
1397 * cli-out.h (cli_ui_out::do_redirect): Likewise.
1398 * mi/mi-out.c (mi_ui_out::do_redirect): Likewise.
1399 * mi/mi-out.h (mi_ui_out::do_redirect): Likewise.
1400 * ui-out.c (ui_out::redirect): Likewise.
1401 * ui-out.h (ui_out::redirect, ui_out::do_redirect): Likewise.
1402 * cli/cli-logging.c (set_logging_redirect): Update call site of
1403 ui_out::redirect.
1404 (handle_redirections): Likewise.
1405 * scm-ports.c (ioscm_with_output_to_port_worker): Likewise.
1406 * top.c (execute_command_to_string): Likewise.
1407 * utils.c (do_ui_out_redirect_pop): Likewise.
1408
df294654
SM
14092017-01-10 Simon Marchi <simon.marchi@ericsson.com>
1410
1411 * stack.c (_initialize_stack): Update "frame" command help message.
1412
f5e6296e
IB
14132017-01-08 Iain Buclaw <ibuclaw@gdcproject.org>
1414
1415 * d-exp.y (CastExpression): Emit UNOP_CAST_TYPE.
1416
0e2d6fa6
YQ
14172017-01-06 Yao Qi <yao.qi@linaro.org>
1418
1419 * x86-linux-nat.h: Include gdb_proc_service.h.
1420
44d6d3f9
YQ
14212017-01-06 Yao Qi <yao.qi@linaro.org>
1422
1423 * ser-base.h: Include serial.h.
1424
656731fe
YQ
14252017-01-06 Yao Qi <yao.qi@linaro.org>
1426
1427 * ppc-linux-tdep.h: Include ppc-tdep.h.
1428
1ca8f924
YQ
14292017-01-06 Yao Qi <yao.qi@linaro.org>
1430
1431 * nat/amd64-linux-siginfo.h: Include signal.h.
1432
bc3008c4
YQ
14332017-01-06 Yao Qi <yao.qi@linaro.org>
1434
1435 * nat/aarch64-linux-hw-point.h: Include break-common.h.
1436
66c80d03
YQ
14372017-01-06 Yao Qi <yao.qi@linaro.org>
1438
1439 * mi/mi-parse.h: Include mi-cmds.h.
1440
051d2dda
YQ
14412017-01-06 Yao Qi <yao.qi@linaro.org>
1442
1443 * inf-loop.c: Don't include "target.h".
1444 * inf-loop.h: Include it here.
1445
8018d34f
YQ
14462017-01-06 Yao Qi <yao.qi@linaro.org>
1447
1448 * dfp.h: Include "dboulest.h" and "expression.h".
1449
c0b8369c
YQ
14502017-01-06 Yao Qi <yao.qi@linaro.org>
1451
1452 * ax-gdb.h: Include "ax.h".
1453
ad5cba2a
YQ
14542017-01-06 Yao Qi <yao.qi@linaro.org>
1455
1456 * Makefile.in (HFILES_NO_SRCDIR): Replace gdb_ptrace.h
1457 with nat/gdb_ptrace.h.
1458
1c33cd7f
YQ
14592017-01-05 Yao Qi <yao.qi@linaro.org>
1460
1461 * mips-fbsd-tdep.c (mips_fbsd_sigframe_init): Move && to
1462 new line.
1463 (mips64_fbsd_sigframe_init): Likewise.
1464
c988ac1d
JB
14652017-01-04 John Baldwin <jhb@FreeBSD.org>
1466
1467 * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Use
1468 GDB_OSABI_FREEBSD instead of GDB_OSABI_FREEBSD_ELF.
1469
b268007c
JB
14702017-01-04 John Baldwin <jhb@FreeBSD.org>
1471
1472 * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
1473 * NEWS: Mention new FreeBSD/mips native configuration.
1474 * config/mips/fbsd.mh: New file.
1475 * configure.host: Add mips*-*-freebsd*.
1476 * mips-fbsd-nat.c: New file.
1477
387360da
JB
14782017-01-04 John Baldwin <jhb@FreeBSD.org>
1479
1480 * Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
1481 (ALLDEPFILES): Add mips-fbsd-tdep.c.
1482 * NEWS: Mention new FreeBSD/mips target.
1483 * configure.tgt: Add mips*-*-freebsd*.
1484 * mips-fbsd-tdep.c: New file.
1485 * mips-fbsd-tdep.h: New file.
1486
2aaaf250
YQ
14872017-01-04 Yao Qi <yao.qi@linaro.org>
1488
1489 * dwarf2loc.c (write_pieced_value): Don't use VALUE_FRAME_ID (to),
1490 use c->frame_id when the piece location is DWARF_VALUE_REGISTER.
1491
61baf725
JB
14922017-01-01 Joel Brobecker <brobecker@adacore.com>
1493
1494 Update copyright year range in all GDB files.
1495
c113e7ff 14962017-01-01 Joel Brobecker <brobecker@adacore.com>
ce0db137 1497
c113e7ff 1498 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2016.
ce0db137 1499
c113e7ff 1500For older changes see ChangeLog-2016.
c906108c
SS
1501\f
1502Local Variables:
1503mode: change-log
1504left-margin: 8
1505fill-column: 74
1506version-control: never
57da7796 1507coding: utf-8
c906108c 1508End:
This page took 2.286768 seconds and 4 git commands to generate.