remove myself from MAINTAINERS
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2015-02-01 Tom Tromey <tom@tromey.com>
2
3 * MAINTAINERS: Remove myself.
4
5 2015-01-31 Doug Evans <xdje42@gmail.com>
6
7 * dwarf2read.c (process_structure_scope): Update setting of
8 TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO.
9 * gdbtypes.c (internal_type_vptr_fieldno): New function.
10 (set_type_vptr_fieldno): New function.
11 (internal_type_vptr_basetype): New function.
12 (set_type_vptr_basetype): New function.
13 (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO,
14 TYPE_VPTR_BASETYPE.
15 (allocate_cplus_struct_type): Initialize vptr_fieldno.
16 (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ...
17 (print_cplus_stuff): ... moved here.
18 (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE.
19 * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype
20 moved to ...
21 (struct cplus_struct_type): ... here. All uses updated.
22 (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite.
23 (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare.
24 (internal_type_vptr_basetype, set_type_vptr_basetype): Declare.
25 * stabsread.c (read_tilde_fields): Update setting of
26 TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE.
27
28 2015-01-31 Doug Evans <xdje42@gmail.com>
29
30 * cp-valprint.c (cp_find_class_member): Rename parameter domain_p
31 to self_p.
32 (cp_print_class_member): Rename local domain to self_type.
33 * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local
34 domain_type to self_type.
35 (set_die_type) <need_gnat_info>: Handle
36 TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD.
37 * gdb-gdb.py (StructMainTypePrettyPrinter): Handle
38 TYPE_SPECIFIC_SELF_TYPE.
39 * gdbtypes.c (internal_type_self_type): New function.
40 (set_type_self_type): New function.
41 (smash_to_memberptr_type): Rename parameter domain to self_type.
42 Update setting of TYPE_SELF_TYPE.
43 (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE.
44 (smash_to_method_type): Rename parameter domain to self_type.
45 Update setting of TYPE_SELF_TYPE.
46 (check_stub_method): Call smash_to_method_type.
47 (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE.
48 (copy_type_recursive): Ditto.
49 * gdbtypes.h (enum type_specific_kind): New value
50 TYPE_SPECIFIC_SELF_TYPE.
51 (struct main_type) <type_specific>: New member self_type.
52 (struct cplus_struct_type) <fn_field.type>: Update comment.
53 (TYPE_SELF_TYPE): Rewrite.
54 (internal_type_self_type, set_type_self_type): Declare.
55 * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to
56 self_type.
57 (gnuv3_method_ptr_to_value): Rename local domain_type to self_type.
58 * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with
59 TYPE_TARGET_TYPE.
60 * stabsread.c (read_member_functions): Mark methods with
61 TYPE_CODE_METHOD, not TYPE_CODE_FUNC. Update setting of
62 TYPE_SELF_TYPE.
63
64 2015-01-31 Doug Evans <xdje42@gmail.com>
65
66 * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE.
67 All uses updated.
68
69 2015-01-31 Doug Evans <xdje42@gmail.com>
70
71 * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs
72 or unions. Return zero if union.
73 (gnuv3_get_vtable): Call check_typedef. Assert only passed structs.
74 (gnuv3_rtti_type): Pass already-check_typedef'd value to
75 gnuv3_get_vtable.
76 (compute_vtable_size): Assert only passed structs.
77 (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs.
78
79 2015-01-31 Doug Evans <xdje42@gmail.com>
80
81 * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD
82 kinds.
83
84 2015-01-31 Gary Benson <gbenson@redhat.com>
85 Doug Evans <dje@google.com>
86
87 PR cli/9007
88 PR cli/11920
89 PR cli/15548
90 * cli/cli-cmds.c (complete_command): Notify user if max-completions
91 reached.
92 * common/common-exceptions.h (enum errors)
93 <MAX_COMPLETIONS_REACHED_ERROR>: New value.
94 * completer.h (get_max_completions_reached_message): New declaration.
95 (max_completions): Likewise.
96 (completion_tracker_t): New typedef.
97 (new_completion_tracker): New declaration.
98 (make_cleanup_free_completion_tracker): Likewise.
99 (maybe_add_completion_enum): New enum.
100 (maybe_add_completion): New declaration.
101 (throw_max_completions_reached_error): Likewise.
102 * completer.c (max_completions): New global variable.
103 (new_completion_tracker): New function.
104 (free_completion_tracker): Likewise.
105 (make_cleanup_free_completion_tracker): Likewise.
106 (maybe_add_completions): Likewise.
107 (throw_max_completions_reached_error): Likewise.
108 (complete_line): Remove duplicates and limit result to max_completions
109 entries.
110 (get_max_completions_reached_message): New function.
111 (gdb_display_match_list): Handle max_completions.
112 (_initialize_completer): New declaration and function.
113 * symtab.c: Include completer.h.
114 (completion_tracker): New static variable.
115 (completion_list_add_name): Call maybe_add_completion.
116 (default_make_symbol_completion_list_break_on_1): Renamed from
117 default_make_symbol_completion_list_break_on. Maintain
118 completion_tracker across calls to completion_list_add_name.
119 (default_make_symbol_completion_list_break_on): New function.
120 * top.c (init_main): Set rl_completion_display_matches_hook.
121 * tui/tui-io.c: Include completer.h.
122 (tui_old_rl_display_matches_hook): New static global.
123 (tui_rl_display_match_list): Notify user if max-completions reached.
124 (tui_setup_io): Save/restore rl_completion_display_matches_hook.
125 * NEWS (New Options): Mention set/show max-completions.
126
127 2015-01-31 Gary Benson <gbenson@redhat.com>
128
129 * symtab.c (struct add_name_data) <code>: New field.
130 Updated comments.
131 (add_symtab_completions): New function.
132 (symtab_expansion_callback): Likewise.
133 (default_make_symbol_completion_list_break_on): Set datum.code.
134 Move minimal symbol scan before calling expand_symtabs_matching.
135 Scan known primary symtabs for externs and statics before calling
136 expand_symtabs_matching. Pass symtab_expansion_callback as
137 expansion_notify argument to expand_symtabs_matching. Do not scan
138 primary symtabs for externs and statics after calling
139 expand_symtabs_matching.
140
141 2015-01-31 Gary Benson <gbenson@redhat.com>
142
143 * symfile.h (expand_symtabs_exp_notify_ftype): New typedef.
144 (struct quick_symbol_functions) <expand_symtabs_matching>:
145 New argument expansion_notify. All uses updated.
146 (expand_symtabs_matching): New argument expansion_notify.
147 All uses updated.
148 * symfile-debug.c (debug_qf_expand_symtabs_matching):
149 Also print expansion notify.
150 * symtab.c (expand_symtabs_matching_via_partial): Call
151 expansion_notify whenever a partial symbol table is expanded.
152 * dwarf2read.c (dw2_expand_symtabs_matching): Call
153 expansion_notify whenever a symbol table is instantiated.
154
155 2015-01-31 Doug Evans <xdje42@gmail.com>
156
157 * cli-out.c: #include completer.h, readline/readline.h.
158 (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions.
159 (cli_mld_flush, cld_mld_erase_entire_line): Ditto.
160 (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto.
161 * cli-out.h (cli_display_match_list): Declare.
162 * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros.
163 (ELLIPSIS_LEN): Ditto.
164 (gdb_get_y_or_n, gdb_display_match_list_pager): New functions.
165 (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto.
166 (gdb_fnprint, gdb_print_filename): Ditto.
167 (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto.
168 (gdb_display_match_list): Ditto.
169 * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs.
170 (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto.
171 (mld_beep_ftype, mld_read_key_ftype): Ditto.
172 (match_list_displayer): New struct.
173 (gdb_display_match_list): Declare.
174 * top.c (init_main): Set rl_completion_display_matches_hook.
175 * tui/tui-io.c: #include completer.h.
176 (printable_part, PUTX, print_filename, get_y_or_n): Delete.
177 (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions.
178 (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto.
179 (tui_mld_getc, tui_mld_read_key): Ditto.
180 (tui_rl_display_match_list): Rewrite.
181 (tui_handle_resize_during_io): New arg for_completion. All callers
182 updated.
183
184 2015-01-31 Doug Evans <xdje42@gmail.com>
185
186 Add symbol lookup cache.
187 * NEWS: Document new options and commands.
188 * symtab.c (symbol_cache_key): New static global.
189 (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros.
190 (SYMBOL_LOOKUP_FAILED): New macro.
191 (symbol_cache_slot_state): New enum.
192 (block_symbol_cache): New struct.
193 (symbol_cache): New struct.
194 (new_symbol_cache_size, symbol_cache_size): New static globals.
195 (hash_symbol_entry, eq_symbol_entry): New functions.
196 (symbol_cache_byte_size, resize_symbol_cache): New functions.
197 (make_symbol_cache, free_symbol_cache): New functions.
198 (get_symbol_cache, symbol_cache_cleanup): New function.
199 (set_symbol_cache_size, set_symbol_cache_size_handler): New functions.
200 (symbol_cache_lookup, symbol_cache_clear_slot): New function.
201 (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions.
202 (symbol_cache_flush, symbol_cache_dump): New functions.
203 (maintenance_print_symbol_cache): New function.
204 (maintenance_flush_symbol_cache): New function.
205 (symbol_cache_stats): New function.
206 (maintenance_print_symbol_cache_statistics): New function.
207 (symtab_new_objfile_observer): New function.
208 (symtab_free_objfile_observer): New function.
209 (lookup_static_symbol, lookup_global_symbol): Use symbol cache.
210 (_initialize_symtab): Init symbol_cache_key. New parameter
211 maint symbol-cache-size. New maint commands print symbol-cache,
212 print symbol-cache-statistics, flush-symbol-cache.
213 Install new_objfile, free_objfile observers.
214
215 2015-01-31 Joel Brobecker <brobecker@adacore.com>
216
217 PR symtab/17855
218 * symfile.c (clear_symtab_users): Move call to breakpoint_re_set
219 to end.
220
221 2015-01-31 Doug Evans <xdje42@gmail.com>
222
223 * NEWS: Mention inlined scripts in .debug_gdb_scripts section.
224 * auto-load.c: #include ctype.h.
225 (struct auto_load_pspace_info): Replace member loaded_scripts with
226 new members loaded_script_files, loaded_script_texts.
227 (auto_load_pspace_data_cleanup): Update.
228 (init_loaded_scripts_info): Update.
229 (get_auto_load_pspace_data_for_loading): Update.
230 (maybe_add_script_file): Renamed from maybe_add_script. All callers
231 updated.
232 (maybe_add_script_text): New function.
233 (clear_section_scripts): Update.
234 (source_script_file, execute_script_contents): New functions.
235 (source_section_scripts): Add support for
236 SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT.
237 (print_scripts): New function.
238 (auto_load_info_scripts): Also print inlined scripts.
239 (maybe_print_unsupported_script_warning): Renamed from
240 unsupported_script_warning_print. All callers updated.
241 (maybe_print_script_not_found_warning): Renamed from
242 script_not_found_warning_print. All callers updated.
243 * extension-priv.h (struct extension_language_script_ops): New member
244 objfile_script_executor.
245 * extension.c (ext_lang_objfile_script_executor): New function.
246 * extension.h (objfile_script_executor_func): New typedef.
247 (ext_lang_objfile_script_executor): Declare.
248 * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare.
249 * guile/guile.c (guile_extension_script_ops): Update.
250 * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function.
251 * python/python.c (python_extension_script_ops): Update.
252 (gdbpy_execute_objfile_script): New function.
253
254 2015-01-31 Eli Zaretskii <eliz@gnu.org>
255
256 * tui/tui-io.c (tui_expand_tabs): New function.
257 (tui_puts, tui_redisplay_readline): Expand TABs into the
258 appropriate number of spaces.
259 * tui/tui-regs.c: Include tui-io.h.
260 (tui_register_format): Call tui_expand_tabs to expand TABs into
261 the appropriate number of spaces.
262 * tui/tui-io.h: Add prototype for tui_expand_tabs.
263
264 2015-01-30 Doug Evans <dje@google.com>
265
266 * NEWS: "info source" command now display producer string if present.
267 * source.c (source_info): Print producer string if present.
268
269 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
270
271 * varobj.c (varobj_delete): Fix comment.
272
273 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
274
275 * varobj.c (create_child): Modify comment.
276
277 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
278
279 * ada-varobj.c (ada_number_of_children): Constify struct varobj *
280 parameter.
281 (ada_name_of_variable): Same.
282 (ada_path_expr_of_child): Same.
283 (ada_value_of_variable): Same.
284 (ada_value_is_changeable_p): Same.
285 (ada_value_has_mutated): Same.
286 * c-varobj.c (varobj_is_anonymous_child): Same.
287 (c_is_path_expr_parent): Same.
288 (c_number_of_children): Same.
289 (c_name_of_variable): Same.
290 (c_path_expr_of_child): Same.
291 (get_type): Same.
292 (c_value_of_variable): Same.
293 (cplus_number_of_children): Same.
294 (cplus_name_of_variable): Same.
295 (cplus_path_expr_of_child): Same.
296 (cplus_value_of_variable): Same.
297 * jv-varobj.c (java_number_of_children): Same.
298 (java_name_of_variable): Same.
299 (java_path_expr_of_child): Same.
300 (java_value_of_variable): Same.
301 * varobj.c (number_of_children): Same.
302 (name_of_variable): Same.
303 (is_root_p): Same.
304 (varobj_ensure_python_env): Same.
305 (varobj_get_objname): Same.
306 (varobj_get_expression): Same.
307 (varobj_get_display_format): Same.
308 (varobj_get_display_hint): Same.
309 (varobj_has_more): Same.
310 (varobj_get_thread_id): Same.
311 (varobj_get_frozen): Same.
312 (dynamic_varobj_has_child_method): Same.
313 (varobj_get_gdb_type): Same.
314 (is_path_expr_parent): Same.
315 (varobj_default_is_path_expr_parent): Same.
316 (varobj_get_language): Same.
317 (varobj_get_attributes): Same.
318 (varobj_is_dynamic_p): Same.
319 (varobj_get_child_range): Same.
320 (varobj_value_has_mutated): Same.
321 (varobj_get_value_type): Same.
322 (number_of_children): Same.
323 (name_of_variable): Same.
324 (check_scope): Same.
325 (varobj_editable_p): Same.
326 (varobj_value_is_changeable_p): Same.
327 (varobj_floating_p): Same.
328 (varobj_default_value_is_changeable_p): Same.
329
330 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
331
332 * varobj.c (varobj_get_path_expr): Set var->path_expr.
333 * c-varobj.c (c_path_expr_of_child): Set local var instead of
334 child->path_expr.
335 (cplus_path_expr_of_child): Same.
336
337 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
338
339 * mi-cmd-var.c (print_varobj): Free varobj_get_expression
340 result.
341 (mi_cmd_var_info_expression): Same.
342 * varobj.c (varobj_get_expression): Mention in the comment that
343 the result must by freed by the caller.
344
345 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
346
347 * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of
348 varobj_get_type.
349 (varobj_update_one): Same.
350 * varobj.c (update_type_if_necessary): Free curr_type_str and
351 new_type_str.
352 (varobj_get_type): Specify in comment that the result needs to be
353 freed by the caller.
354
355 2015-01-29 Doug Evans <dje@google.com>
356
357 PR symtab/17890
358 * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4.
359
360 2015-01-25 Mark Wielaard <mjw@redhat.com>
361
362 * dwarf2read.c (checkproducer): Call producer_is_gcc.
363 * utils.c (producer_is_gcc_ge_4): Likewise.
364 (producer_is_gcc): New function.
365 * utils.h (producer_is_gcc): New declaration.
366
367 2015-01-29 Joel Brobecker <brobecker@adacore.com>
368
369 * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum
370 kind.
371 * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr"
372 parameter by "addr_stack" parameter.
373 (resolve_dynamic_range): Replace "addr" parameter by
374 "stack_addr" parameter. Update function documentation.
375 Update code accordingly.
376 (resolve_dynamic_array, resolve_dynamic_union)
377 (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise.
378 (resolve_dynamic_type): Update code, following the changes made
379 to resolve_dynamic_type_internal's interface.
380 * dwarf2loc.h (struct property_addr_info): New.
381 (dwarf2_evaluate_property): Replace "address" parameter
382 by "addr_stack" parameter. Adjust function documentation.
383 (struct dwarf2_offset_baton): New.
384 (struct dwarf2_property_baton): Update documentation of
385 field "referenced_type" to be more general. New field
386 "offset_info" in union data field.
387 * dwarf2loc.c (dwarf2_evaluate_property): Replace "address"
388 parameter by "addr_stack" parameter. Adjust code accordingly.
389 Add support for PROP_ADDR_OFFSET properties.
390 * dwarf2read.c (attr_to_dynamic_prop): Add support for
391 DW_AT_data_member_location attributes as well. Use case
392 statements instead of if/else condition.
393
394 2015-01-29 Joel Brobecker <brobecker@adacore.com>
395
396 * ada-varobj.c (ada_varobj_get_array_number_of_children):
397 Return zero if PARENT_VALUE is NULL and parent_type's
398 range type is dynamic.
399
400 2015-01-29 Joel Brobecker <brobecker@adacore.com>
401
402 * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return
403 nonzero if the type's subtype is dynamic.
404 (resolve_dynamic_range): Also resolve the range's subtype.
405
406 2015-01-29 Alexander Klimov <alserkli@inbox.ru> (tiny patch)
407
408 Pushed by Joel Brobecker <brobecker@adacore.com>.
409 * symfile.c (unmap_overlay_command): Initialize sec to NULL.
410
411 2015-01-27 Doug Evans <dje@google.com>
412
413 * NEWS: Mention gdb.Objfile.username.
414 * python/py-objfile.c (objfpy_get_username): New function.
415 (objfile_getset): Add "username".
416
417 2015-01-24 Mark Wielaard <mjw@redhat.com>
418
419 * stack.c (return_command): Markup warning message with _.
420
421 2015-01-24 Doug Evans <xdje42@gmail.com>
422
423 * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
424
425 2015-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
426
427 Fix 100x slowdown regression on DWZ files.
428 * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash.
429 (struct line_header): Add offset and offset_in_dwz.
430 (dwarf_decode_lines): Add parameter decode_mapping to the declaration.
431 (free_line_header_voidp): New declaration.
432 (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New
433 functions.
434 (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller.
435 (handle_DW_AT_stmt_list): Use line_header_hash.
436 (free_line_header_voidp): New function.
437 (dwarf_decode_line_header): Initialize offset and offset_in_dwz.
438 (dwarf_decode_lines): New parameter decode_mapping, use it.
439 (dwarf2_free_objfile): Free line_header_hash.
440
441 2015-01-23 Simon Marchi <simon.marchi@ericsson.com>
442
443 PR gdb/17416
444 * valops.c (value_rtti_indirect_type): Catch exception thrown by
445 value_ind.
446
447 2015-01-15 Mark Wielaard <mjw@redhat.com>
448
449 * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from
450 DW_AT_noreturn.
451 * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make
452 calling_convention an 8 bit bit field.
453 (TYPE_NO_RETURN): New macro.
454 * infcmd.c (finish_command): Query if function does not return
455 normally.
456 * stack.c (return_command): Likewise.
457
458 2015-01-23 Pedro Alves <palves@redhat.com>
459
460 * linux-nat.c (linux_is_async_p): New macro.
461 (linux_nat_is_async_p):
462 (linux_nat_terminal_inferior): Check whether the target can async
463 instead of whether it is already async.
464 (linux_nat_terminal_ours): Don't check whether the target is
465 async.
466 (linux_async_pipe): Use linux_is_async_p.
467
468 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
469
470 * NEWS (Changes since GDB 7.9): Add 'thread apply all' option
471 '-ascending'.
472 * thread.c (tp_array_compar_ascending, tp_array_compar): New.
473 (thread_apply_all_command): Parse CMD for tp_array_compar_ascending.
474 Sort tp_array using tp_array_compar.
475 (_initialize_thread): Extend thread_apply_all_command help.
476
477 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
478
479 * corelow.c (core_open): Call also thread_command.
480 * gdbthread.h (thread_command): New prototype moved from ...
481 * thread.c (thread_command): ... here.
482 (thread_command): Make it global.
483
484 2015-01-22 Pedro Alves <palves@redhat.com>
485
486 * configure.ac [*mingw32*]: Check $curses_found instead of
487 $prefer_curses.
488 * configure: Regenerate.
489 * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and
490 HAVE_NCURSES_NCURSES_H checks.
491
492 2015-01-22 Eli Zaretskii <eliz@gnu.org>
493
494 * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm'
495 fails with the 1st arg NULL, try again with "unknown". Don't test
496 the "cup" capability: it isn't supported by the Windows port of
497 ncurses, but the Windows console driver is still capable of
498 supporting TUI.
499
500 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
501
502 * compile/compile.c (_initialize_compile): Use -fPIE for compile_args.
503
504 2015-01-22 Eli Zaretskii <eliz@gnu.org>
505
506 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
507 (ALLDEPFILES): Remove irix5-nat.c. These two are part of the
508 reason that "make TAGS" is broken.
509
510 2015-01-22 Chen Gang <gang.chen.5i5j@gmail.com>
511
512 * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues
513 and check additional store instructions.
514
515 2015-01-21 Wei-cheng Wang <cole945@gmail.com>
516
517 * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang".
518
519 2015-01-21 Wei-cheng Wang <cole945@gmail.com>
520
521 * ppc-linux-tdep.c (ppc_skip_trampoline_code,
522 ppc_canonicalize_syscall, ppc_linux_syscall_record,
523 ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments.
524 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
525 * rs6000-tdep.c (rs6000_epilogue_frame_cache,
526 rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register,
527 rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4,
528 ppc_process_record_op19, ppc_process_record_op31,
529 ppc_process_record_op59, ppc_process_record_op60,
530 ppc_process_record_op63): Likewise.
531
532 2015-01-20 Joel Brobecker <brobecker@adacore.com>
533
534 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string)
535 (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of
536 strerror.
537
538 2015-01-20 Wei-cheng Wang <cole945@gmail.com>
539
540 * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19,
541 ppc_process_record_op31, ppc_process_record_op59,
542 ppc_process_record_op60, ppc_process_record_op63,
543 ppc_process_record): Fix -Wformat warning.
544 * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60):
545 Remove unused variables.
546
547 2015-01-20 Chen Gang <gang.chen.5i5j@gmail.com>
548
549 * MAINTAINERS (Write After Approval): Add "Chen Gang".
550
551 2015-01-19 Eli Zaretskii <eliz@gnu.org>
552
553 * configure.ac [*mingw32*]: Only add windows-termcap.o to
554 CONFIG_OBS if not building with a curses library.
555 * configure: Regenerate.
556
557 * windows-termcap.c: Include defs.h. Make the whole body empty if
558 either one of HAVE_CURSES_H or HAVE_NCURSES_H or
559 HAVE_NCURSES_NCURSES_H is defined.
560
561 2015-01-19 Joel Brobecker <brobecker@adacore.com>
562
563 * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator
564 from end of line to start of next line.
565
566 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
567
568 * ppc-linux-tdep.c (ppc_skip_trampoline_code):
569 Scan PLT stub backward for reverse debugging.
570 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
571
572 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
573 Ulrich Weigand <uweigand@de.ibm.com>
574
575 * configure.tgt (powerpc*-*-linux): Add linux-record.o to
576 gdb_target_obs.
577 (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall
578 record.
579 (ppc_canonicalize_syscall, ppc_linux_syscall_record,
580 ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions.
581 (ppc_linux_init_abi): Set process_record, process_record_signal.
582 * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and
583 ppc_linux_record_tdep to gdbarch_tdep.
584 (ppc_process_record): New declaration.
585 * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4,
586 ppc_process_record_op19, ppc_process_record_op31,
587 ppc_process_record_op59, ppc_process_record_op60,
588 ppc_process_record_op63, ppc_process_record): New functions.
589
590 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
591
592 * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to
593 rs6000_in_function_epilogue_frame_p and add an argument
594 for frame_info.
595 (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id,
596 rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer):
597 New functions.
598 (rs6000_epilogue_frame_unwind): New.
599 (rs6000_gdbarch_init): Append epilogue unwinder.
600
601 2015-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
602
603 * nat/linux-personality.c: Replace "#ifndef
604 HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if
605 !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5
606 systems.
607
608 2015-01-16 Eli Zaretskii <eliz@gnu.org>
609
610 * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New
611 functions.
612 (_initialize_tui_win) <border-kind, border-mode>:
613 <active-border-mode>: Use tui_set_var_cmd as the "set" function.
614 (tui_set_tab_width_command): Fix the commentary.
615
616 * tui/tui-win.h: Add prototype for tui_rehighlight_all.
617
618 * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command):
619 Doc fix.
620 (tui_set_tab_width_command): Delete and recreate the source and
621 the disassembly windows, to show the effect of the changed tab
622 size immediately.
623
624 * tui/tui-data.h (LINE_PREFIX): Make shorter
625 (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for
626 "Thread NNNNN.XXXX" thread ID notation on Windows.
627
628 2015-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
629
630 Fix gcc-5 compilation.
631 * hppa-tdep.c (inst_saves_gr): Fix parentheses typo.
632
633 2015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
634
635 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h.
636 (linux-personality.o): New rule.
637 * common/common-defs.h: Include <stdint.h>.
638 * config/aarch64/linux.mh (NATDEPFILES): Include
639 linux-personality.o.
640 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
641 * config/arm/linux.mh (NATDEPFILES): Likewise.
642 * config/i386/linux64.mh (NATDEPFILES): Likewise.
643 * config/i386/linux.mh (NATDEPFILES): Likewise.
644 * config/ia64/linux.mh (NATDEPFILES): Likewise.
645 * config/m32r/linux.mh (NATDEPFILES): Likewise.
646 * config/m68k/linux.mh (NATDEPFILES): Likewise.
647 * config/mips/linux.mh (NATDEPFILES): Likewise.
648 * config/pa/linux.mh (NATDEPFILES): Likewise.
649 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
650 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
651 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
652 * config/s390/linux.mh (NATDEPFILES): Likewise.
653 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
654 * config/sparc/linux.mh (NATDEPFILES): Likewise.
655 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
656 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
657 * defs.h: Remove #include <stdint.h> (moved to
658 common/common-defs.h).
659 * linux-nat.c: Include nat/linux-personality.h. Remove #include
660 <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to
661 nat/linux-personality.c).
662 (linux_nat_create_inferior): Remove code to disable address space
663 randomization (moved to nat/linux-personality.c). Create cleanup
664 to disable address space randomization.
665 * nat/linux-personality.c: New file.
666 * nat/linux-personality.h: Likewise.
667
668 2015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
669
670 * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and
671 common/posix-strerror.c.
672 (posix-strerror.o): New rule.
673 (mingw-strerror.o): Likewise.
674 * common/common-utils.h (safe_strerror): Move prototype to here,
675 from utils.h.
676 * common/common.host: New file.
677 * common/mingw-strerror.c: Likewise.
678 * common/posix-strerror.c: Likewise.
679 * configure: Regenerated.
680 * configure.ac: Source common/common.host. Add variable
681 common_host_obs to gdb_host_obs.
682 * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and
683 gdb/common/posix-strerror.c when warning about the use of
684 strerror.
685 * mingw-hdep.c (safe_strerror): Remove definition; move it to
686 common/mingw-strerror.c.
687 * posix-hdep.c (safe_strerror): Remove definition; move it to
688 common/posix-hdep.c.
689 * utils.h (safe_strerror): Remove prototype; move to
690 common/common-utils.h.
691
692 2015-01-15 Joel Brobecker <brobecker@adacore.com>
693
694 GDB 7.8.2 released.
695
696 2015-01-15 Joel Brobecker <brobecker@adacore.com>
697
698 * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel
699 ___XA type if the array has already been fixed.
700
701 2015-01-14 Yao Qi <yao@codesourcery.com>
702
703 * Makefile.in (ppc-linux.o): New rule.
704 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o.
705 * configure.ac: AC_CHECK_FUNCS(getauxval).
706 * config.in: Re-generated.
707 * configure: Re-generated.
708 * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p):
709 Declare.
710 * nat/ppc-linux.c: New file.
711 * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]:
712 Call ppc64_64bit_inferior_p.
713
714 2015-01-14 Yao Qi <yao@codesourcery.com>
715
716 * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to
717 nat/ppc-linux.h.
718 (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise.
719 (PPC_FEATURE_HAS_DFP): Likewise.
720 (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise.
721 (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise.
722 (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise.
723 Include "nat/ppc-linux.h".
724 * nat/ppc-linux.h: New file.
725 * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h.
726
727 2015-01-14 Pedro Alves <palves@redhat.com>
728
729 PR gdb/17525
730 * breakpoint.c: Include "interps.h".
731 (bpstat_do_actions_1): Also check whether the interpreter is
732 async.
733
734 2015-01-14 Pedro Alves <palves@redhat.com>
735
736 PR cli/17828
737 * infrun.c (reinstall_readline_callback_handler_cleanup): Don't
738 reinstall if the interpreter is sync.
739
740 2015-01-13 Doug Evans <dje@google.com>
741
742 * objfiles.c (objfile_filename): New function.
743 * objfiles.h (objfile_filename): Declare it.
744 (objfile_name): Add function comment.
745 * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the
746 bfd file name (which may be realpath'd), and the original name.
747
748 2015-01-13 Joel Brobecker <brobecker@adacore.com>
749
750 * NEWS: Create a new section for the next release branch.
751 Rename the section of the current branch, now that it has
752 been cut.
753
754 2015-01-13 Joel Brobecker <brobecker@adacore.com>
755
756 GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37):
757 * version.in: Bump version to 7.9.50.DATE-cvs.
758
759 2015-01-13 Joel Brobecker <brobecker@adacore.com>
760
761 * nat/linux-procfs.c (linux_proc_attach_tgid_threads):
762 Remove trailing new-line in argument of call to warning.
763
764 2015-01-13 Joel Brobecker <brobecker@adacore.com>
765
766 * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing
767 new-line in argument of call to "warning".
768
769 2015-01-13 Joel Brobecker <brobecker@adacore.com>
770
771 * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found
772 in static block, then try searching for primitive types.
773
774 2015-01-12 Patrick Palka <patrick@parcs.ath.cx>
775
776 * top.h (gdb_add_history): Declare.
777 * top.c (command_count): New variable.
778 (gdb_add_history): New function.
779 (gdb_safe_append_history): New static function.
780 (quit_force): Call it.
781 (command_line_input): Use gdb_add_history instead of
782 add_history.
783 * event-top.c (command_line_handler): Likewise.
784
785 2015-01-12 James Clarke <jrtc27@jrtc27.com> (tiny patch)
786
787 PR gdb/17046
788 * darwin-nat.c: Replace <machine/setjmp.h> #include by
789 <setjmp.h> #include.
790
791 2015-01-11 Doug Evans <xdje42@gmail.com>
792
793 * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.
794
795 2015-01-11 Doug Evans <xdje42@gmail.com>
796
797 PR gdb/15830
798 * NEWS: The "maint demangle" command is renamed as "demangle".
799 * demangle.c: #include cli/cli-utils.h, language.h.
800 (demangle_command): New function.
801 (_initialize_demangle): Add new command "demangle".
802 * maint.c (maintenance_demangle): Stub out.
803 (_initialize_maint_cmds): Update help text for "maint demangle",
804 and mark as deprecated.
805
806 2015-01-11 Mark Kettenis <kettenis@gnu.org>
807
808 * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that
809 inferior_thread is a function.
810
811 2015-01-09 Patrick Palka <patrick@parcs.ath.cx>
812
813 * Makefile.in (.y.c): Don't munge yacc's #line
814 directives.
815
816 2015-01-09 Patrick Palka <patrick@parcs.ath.cx>
817
818 * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper
819 to prompt for input.
820 * tui/tui-hooks.c (tui_query_hook): Remove.
821 (tui_install_hooks): Don't set deprecated_query_hook.
822 * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in
823 height calculation. Always update the command window's cur_line.
824
825 2015-01-09 Pedro Alves <palves@redhat.com>
826
827 * breakpoint.c (hardware_breakpoint_inserted_here_p): New
828 function.
829 * breakpoint.h (hardware_breakpoint_inserted_here_p): New
830 declaration.
831 * linux-nat.c (linux_nat_status_is_event): Move higher up in file.
832 (linux_resume_one_lwp): Store the thread's PC. Adjust to clear
833 stop_reason.
834 (check_stopped_by_watchpoint): New function.
835 (save_sigtrap): Reimplement.
836 (linux_nat_stopped_by_watchpoint): Adjust.
837 (linux_nat_lp_status_is_event): Delete.
838 (stop_wait_callback): Only call save_sigtrap after storing the
839 pending status.
840 (status_callback): If the thread had been stopped for a breakpoint
841 that has since been removed, discard the event and resume the LWP.
842 (count_events_callback, select_event_lwp_callback): Use
843 lwp_status_pending_p instead of linux_nat_lp_status_is_event.
844 (cancel_breakpoint): Rename to ...
845 (check_stopped_by_breakpoint): ... this. Record whether the LWP
846 stopped for a software breakpoint or hardware breakpoint.
847 (select_event_lwp): Only give preference to the stepping LWP in
848 all-stop mode. Adjust comments.
849 (stop_and_resume_callback): Remove references to new_pending_p.
850 (linux_nat_filter_event): Likewise. Leave exit events of the
851 leader thread pending here. Handle signal short circuiting here.
852 Only call save_sigtrap after storing the pending waitstatus.
853 (linux_nat_wait_1): Remove 'retry' label. Remove references to
854 new_pending. Don't handle leaving events the caller is not
855 interested in pending here, nor handle signal short-circuiting
856 here. Also give equal priority to all LWPs that have had events
857 in non-stop mode. If reporting a software breakpoint event,
858 unadjust the LWP's PC.
859 * linux-nat.h (enum lwp_stop_reason): New.
860 (struct lwp_info) <stop_pc>: New field.
861 (struct lwp_info) <stopped_by_watchpoint>: Delete field.
862 (struct lwp_info) <stop_reason>: New field.
863 * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
864
865 2015-01-09 Pedro Alves <palves@redhat.com>
866
867 * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>:
868 Set the LWP's 'resumed' flag.
869
870 2015-01-09 Pedro Alves <palves@redhat.com>
871
872 * linux-nat.c (linux_resume_one_lwp): New function.
873 (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp.
874 (linux_nat_resume): Use lwp_status_pending_p and
875 linux_resume_one_lwp.
876 (linux_handle_syscall_trap): Use linux_resume_one_lwp.
877 (linux_handle_extended_wait): Use linux_resume_one_lwp.
878 (status_callback, running_callback): Use lwp_status_pending_p.
879 (lwp_status_pending_p): New function.
880 (stop_and_resume_callback): Use lwp_status_pending_p.
881 (linux_nat_filter_event): Use linux_resume_one_lwp.
882 (linux_nat_wait_1): Always use status_callback to look for an LWP
883 with a pending status. Use linux_resume_one_lwp.
884 (resume_stopped_resumed_lwps): Use lwp_status_pending_p and
885 linux_resume_one_lwp.
886
887 2015-01-09 Pedro Alves <palves@redhat.com>
888
889 * breakpoint.c (bp_location_inserted_here_p): New function,
890 factored out from ...
891 (breakpoint_inserted_here_p): ... here. Use
892 ALL_BP_LOCATIONS_AT_ADDR.
893 (software_breakpoint_inserted_here_p): Use
894 bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR.
895
896 2014-01-09 Pedro Alves <palves@redhat.com>
897
898 Skip enabling event reporting if the kernel supports
899 PTRACE_EVENT_CLONE.
900 * linux-thread-db.c: Include "nat/linux-ptrace.h".
901 (thread_db_use_events): New function.
902 (try_thread_db_load_1): Check thread_db_use_events before enabling
903 event reporting.
904 (update_thread_state): New function.
905 (attach_thread): Use it. Check thread_db_use_events before
906 enabling event reporting.
907 (thread_db_detach): Check thread_db_use_events before disabling
908 event reporting.
909 (find_new_threads_callback): Check thread_db_use_events before
910 enabling event reporting. Update the thread's state if not using
911 libthread_db events.
912
913 2015-01-09 Pedro Alves <palves@redhat.com>
914
915 * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're
916 about to wait for is > 0.
917 * linux-thread-db.c (find_new_threads_callback): Ignore thread if
918 the kernel thread ID is -1.
919
920 2015-01-09 Pedro Alves <palves@redhat.com>
921
922 * linux-nat.c (attach_proc_task_lwp_callback): New function.
923 (linux_nat_attach): Use linux_proc_attach_tgid_threads.
924 (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's
925 ptrace option flags.
926 * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New
927 field.
928 * nat/linux-procfs.c: Include <dirent.h>.
929 (linux_proc_get_int): New parameter "warn". Handle it.
930 (linux_proc_get_tgid): Adjust.
931 (linux_proc_get_tracerpid): Rename to ...
932 (linux_proc_get_tracerpid_nowarn): ... this.
933 (linux_proc_pid_get_state): New function, factored out from
934 (linux_proc_pid_has_state): ... this. Add new parameter "warn"
935 and handle it.
936 (linux_proc_pid_is_gone): New function.
937 (linux_proc_pid_is_stopped): Adjust.
938 (linux_proc_pid_is_zombie_maybe_warn)
939 (linux_proc_pid_is_zombie_nowarn): New functions.
940 (linux_proc_pid_is_zombie): Use
941 linux_proc_pid_is_zombie_maybe_warn.
942 (linux_proc_attach_tgid_threads): New function.
943 * nat/linux-procfs.h (linux_proc_get_tgid): Update comment.
944 (linux_proc_get_tracerpid): Rename to ...
945 (linux_proc_get_tracerpid_nowarn): ... this, and update comment.
946 (linux_proc_pid_is_gone): New declaration.
947 (linux_proc_pid_is_zombie): Update comment.
948 (linux_proc_pid_is_zombie_nowarn): New declaration.
949 (linux_proc_attach_lwp_func): New typedef.
950 (linux_proc_attach_tgid_threads): New declaration.
951 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to
952 use nowarn functions.
953 (linux_ptrace_attach_fail_reason_string): Move here from
954 gdbserver/linux-low.c and rename.
955 (ptrace_supports_feature): If the current ptrace options are not
956 known yet, check them now, instead of asserting.
957 * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string):
958 Declare.
959
960 2015-01-09 Pedro Alves <palves@redhat.com>
961
962 * linux-thread-db.c (thread_db_find_new_threads_silently)
963 (try_thread_db_load_1, try_thread_db_load, thread_db_load_search)
964 (find_new_threads_once): Print debug output on gdb_stdlog.
965
966 2015-01-09 Chen Gang <gang.chen.5i5j@gmail.com>
967 Pedro Alves <palves@redhat.com>
968
969 * compile/compile.c: Include "gdb_wait.h".
970 (do_rmdir): Check return value, and free 'zap'.
971
972 2015-01-08 Pedro Alves <palves@redhat.com>
973 Yao Qi <yao@codesourcery.com>
974
975 * dwarf2loc.c (indirect_pieced_value): Don't call
976 gdb_sign_extend. Call extract_signed_integer instead.
977 * utils.c (gdb_sign_extend): Remove.
978 * utils.h (gdb_sign_extend): Remove declaration.
979
980 2015-01-07 Pierre Muller <muller@sourceware.org>
981
982 PR symtab/17811
983 * stabsread.c (define_symbol): Set language for C++ special symbols.
984
985 2015-01-07 Patrick Palka <patrick@parcs.ath.cx>
986
987 * inflow.c (initial_gdb_ttystate): Tweak comment.
988
989 2015-01-07 Joel Brobecker <brobecker@adacore.com>
990
991 * inflow.c (set_initial_gdb_ttystate): Add empty line after
992 comment documenting function.
993
994 2015-01-07 Patrick Palka <patrick@parcs.ath.cx>
995
996 * terminal.h (set_initial_gdb_ttystate): Declare.
997 * inflow.c (initial_gdb_ttystate): New static variable.
998 (set_initial_gdb_ttystate): New setter.
999 (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate
1000 instead of our current terminal state.
1001 * top.c (gdb_init): Call set_initial_gdb_ttystate.
1002
1003 2015-01-07 Joel Brobecker <brobecker@adacore.com>
1004
1005 * guile/scm-type.c (tyscm_array_1): Add comment.
1006 * python/py-type.c (typy_array_1): Add comment.
1007
1008 2015-01-06 Joel Brobecker <brobecker@adacore.com>
1009
1010 * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range
1011 error if N2 is equal to N1 - 1.
1012
1013 2015-01-06 Joel Brobecker <brobecker@adacore.com>
1014
1015 * python/py-type.c (typy_array_1): Do not raise negative-length
1016 exception if N2 is equal to N1 - 1.
1017
1018 2015-01-03 Doug Evans <xdje42@gmail.com>
1019
1020 * c-exp.y: Whitespace cleanup.
1021 (classify_inner_name): Remove extra ;.
1022
1023 2015-01-02 Maciej W. Rozycki <macro@codesourcery.com>
1024
1025 * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack
1026 offset signed.
1027
1028 2015-01-02 Doug Evans <dje@google.com>
1029
1030 * dwarf2read.c (setup_type_unit_groups): Remove outdated comment.
1031
1032 2015-01-02 Doug Evans <dje@google.com>
1033
1034 * symtab.h (struct symbol): Fix typo in comment.
1035
1036 2015-01-01 Joel Brobecker <brobecker@adacore.com>
1037
1038 Update year range in copyright notice of all files.
1039
1040 2015-01-01 Joel Brobecker <brobecker@adacore.com>
1041
1042 * top.c (print_gdb_version): Update copyright year to 2015.
1043
1044 2015-01-01 Joel Brobecker <brobecker@adacore.com>
1045
1046 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014.
1047
1048 For older changes see ChangeLog-2014.
1049 \f
1050 Local Variables:
1051 mode: change-log
1052 left-margin: 8
1053 fill-column: 74
1054 version-control: never
1055 coding: utf-8
1056 End:
This page took 0.051115 seconds and 5 git commands to generate.