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