3 * coff-pe-read.c (IMAGE_SCN_CNT_TEXT, IMAGE_SCN_CNT_INITIALIZED_DATA)
4 (IMAGE_SCN_CNT_UNINITIALIZED_DATA): Remove useless checks
5 for already defined macros.
9 * coff-pe-read.h (pe_text_section_offset): Declare new function.
10 * coff-pe-read.c (debug_coff_pe_read): New static variable.
11 (struct read_pe_section_data): Add section_name field.
12 (IMAGE_SCN_CNT_CODE): New macro, if not already defined.
13 (IMAGE_SCN_CNT_INITIALIZED_DATA): Ditto.
14 (IMAGE_SCN_CNT_UNINITIALIZED_DATA): Ditto.
15 (get_pe_section_index): New function.
16 (struct pe_sections_info): New type.
17 (get_section_vmas): Use new struct pe_sections_info.
18 (add_pe_exported_sym): Handle unnamed exported function.
19 (add_pe_forwarded_sym): New function.
20 (read_pe_truncate_name): Truncate at last dot.
21 (pe_as16): New function.
22 (read_pe_exported_syms): Use ordinal of function to
23 retrieve correct RVA address of function and handle
25 (pe_text_section_offset): New function.
26 (show_debug_coff_pe_read): New function.
27 (_initialize_coff_pe_read): New function adding
28 'set/show debug coff_pe_read' commands.
30 * windows-tdep.c (windows_xfer_shared_library): Use
31 pe_text_section_offset function instead of possibly wrong
32 0x1000 constant for .text sextion offset.
36 * gdbarch.sh (do_read): Set IFS to blank.
40 * NEWS: Mention the -catch-load/-catch-unload MI commands.
44 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-catch.o.
45 (SUBDIR_MI_SRCS): Add mi/mi-cmd-catch.c.
46 * breakpoint.c (add_solib_catchpoint): New function that
47 can be used by both CLI and MI, factored out from
49 (catch_load_or_unload): Strip it down and make it use the
50 new add_solib_catchpoint.
51 * breakpoint.h (add_solib_catchpoint): Declare it.
52 * mi/mi-cmd-break.h: New file.
53 * mi/mi-cmd-break.c: Include mi-cmd-break.h.
54 (setup_breakpoint_reporting): New function used for both
55 catchpoints and breakpoints.
56 (mi_cmd_break_insert): Use setup_breakpoint_reporting.
57 * mi/mi-cmd-catch.c: New file.
58 * mi/mi-cmds.c (mi_cmds): Add the handlers for -catch-load
60 * mi/mi-cmds.h: Declare the handlers for -catch-load and
65 * dbxread.c (read_dbx_symtab): Update.
66 (end_psymtab, dbx_psymtab_to_symtab_1, dbx_psymtab_to_symtab)
67 (read_ofile_symtab): Add 'objfile' argument.
68 * dwarf2read.c (process_psymtab_comp_unit_reader)
69 (build_type_psymtabs_reader): Update.
70 (dwarf2_psymtab_to_symtab): Add 'objfile' argument.
71 * mdebugread.c (mdebug_psymtab_to_symtab): Add 'objfile'
73 (parse_procedure, parse_partial_symbols): Update.
74 (psymtab_to_symtab_1): Add 'objfile' argument.
75 * psympriv.h (struct partial_symtab) <objfile>: Remove.
76 <read_symtab>: Add 'objfile' argument.
77 (sort_pst_symbols, discard_psymtab): Update.
78 * psymtab.c (partial_map_expand_apply): Update.
79 (find_pc_sect_psymtab_closer): Add 'objfile' argument.
80 (find_pc_sect_psymtab, find_pc_sect_symtab_from_partial): Update.
81 (find_pc_sect_psymbol): Add 'objfile' argument.
82 (lookup_symbol_aux_psymtabs): Update.
83 (match_partial_symbol, lookup_partial_symbol, psymtab_to_symtab):
84 Add 'objfile' argument.
85 (find_last_source_symtab_from_partial, dump_psymtab)
86 (dump_psymtabs_for_objfile, read_symtabs_for_function)
87 (expand_partial_symbol_tables, read_psymtabs_with_filename)
88 (find_symbol_file_from_partial, map_matching_symbols_psymtab)
89 (expand_symtabs_matching_via_partial): Update.
90 (sort_pst_symbols): Add 'objfile' argument.
91 (allocate_psymtab): Update.
92 (discard_psymtab): Add 'objfile' argument.
93 (maintenance_info_psymtabs, maintenance_check_symtabs): Update.
94 * stabsread.h (end_psymtab): Update.
95 * xcoffread.c (this_symtab_objfile): New global.
96 (process_linenos, enter_line_range, xcoff_next_symbol_text):
98 (read_xcoff_symtab): Add 'objfile' argument.
99 (read_symbol, read_symbol_lineno): Update.
100 (xcoff_psymtab_to_symtab_1, xcoff_psymtab_to_symtab)
101 (xcoff_end_psymtab): Add 'objfile' argument.
102 (scan_xcoff_symtab): Update.
106 Add support for Python 3.
107 * NEWS: Mention Python 3 support.
108 * varobj.c (value_get_print_value): Use
109 python_string_to_target_string.
110 * python/py-block.c: Use PyVarObject_HEAD_INIT in initialization
112 * python/py-breakpoint.c: Ditto.
113 * python/py-cmd.c: Ditto.
114 * python/py-event.c: Ditto.
115 * python/py-event.h: Ditto.
116 * python/py-evtregistry.c: Ditto.
117 * python/py-finishbreakpoint.c: Ditto.
118 * python/py-frame.c: Ditto.
119 * python/py-function.c: Ditto.
120 * python/py-infthread.c: Ditto.
121 * python/py-lazy-string.c: Ditto.
122 * python/py-progspace.c: Ditto.
123 * /python/py-symbol.c: Ditto.
124 * python/py-evts.c: (gdbpy_initialize_py_events): Add module
125 initialization for Python 3.
126 * python/py-inferior.c: Use PyVarObject_HEAD_INIT in initialization
128 (infpy_read_memory): Return memoryview object if Python 3.
129 (infpy_write_memory): Use "s*" operand parsing code for Python 3.
130 (infpy_search_memory): Ditto.
131 (get_buffer): New function for Python 3.
132 * python/py-objfile.c: Use PyVarObject_HEAD_INIT in initialization
134 (objfpy_dealloc): Use Py_TYPE to call tp_free.
135 * python/py-param.c: Use PyVarObject_HEAD_INIT in initialization
137 (get_attr): Use PyUnicode_CompareWithASCIIString if Python 3.
139 * python/py-prettyprint.c (print_string_repr): use PyBytes methods
140 instead of PyString methods if Python 3.
141 (print_children): Skip push_dummy_python_frame call if Python 3.
142 * python/py-symtab.c: Use PyVarObject_HEAD_INIT in initialization
144 (salpy_dealloc): Use Py_TYPE to call tp_free.
145 * python/py-type.c: Use PyVarObject_HEAD_INIT in initialization
147 (field_dealloc): Use Py_TYPE to call tp_free.
148 (typy_dealloc): Ditto.
149 (type_object_as_number): Adjust struct initializations for
150 differences in layout for Python 2 vs. Python 3.
151 * python/py-utils.c (python_string_to_unicode): Omit non-Unicode
152 string case for Python 3.
153 (unicode_to_encoded_python_string): Shorten code (no functional
155 (python_string_to_target_python_string): Comment that in Python 3
156 returned value is a Python "bytes" type.
157 (gdbpy_is_string): Omit non-Unicode string check in Python 3.
158 (gdb_py_object_from_longest): Omit non-long integer case in Python
160 (gdb_py_object_from_ulongest): Ditto.
161 * python/py-value.c: Use PyVarObject_HEAD_INIT in initialization
163 (valpy_dealloc): Use Py_TYPE to call tp_free.
164 (valpy_int): Omit function if Python 3.
165 (convert_value_from_python): Use "%S" format (Python object as a
167 (value_object_as_number): Adjust struct initializations for
168 differences in layout for Python 2 vs. Python 3.
169 * python/python-config.py: Adjust syntax for Python 3
171 Include "sys.abiflags" string as part of python library name, if
172 that attribute exists (Python 3).
173 * python/python-internal.h (IS_PY3): Define if Python 3.
174 (Py_TPFLAGS_HAVE_ITER, Py_TPFLAGS_CHECKTYPES): Define with
175 placeholder value if Python 3.
176 (PyInt_Check, PyInt_FromLong, PyInt_AsLong, PyString_FromString,
177 PyString_Decode, PyString_FromFormat, PyString_Check): Define as
178 analogous Python 3 API function if Python 3.
179 (PyVarObject_HEAD_INIT): Define if not already defined.
181 * python/python.c (eval_python_command): Omit Py_FlushLine call if
183 Check return values of all Python API calls for error.
184 Supply dummy "python" and "python-interactive" commands if Python
185 initialization failed.
186 (_initialize_python): Convert argc to wchar_t** if Python 3.
187 Add module initialization for Python 3.
188 (finish_python_initialization): Pass wchar_t * argument to
189 PySys_SetPath if Python 3.
190 * python/lib/gdb/__init__.py: Define "reload" if Python 3.
191 (_GdbFile): New class for common output file behavior.
192 (GdbOutFile): Subclass from _GdbFile.
193 (GdbOutputErrorFile): Ditto.
194 (auto_load_packages): Adjust syntax for Python 3 compatibility.
195 * python/lib/gdb/printing.py: Define basestr and int if Python 3.
196 * python/lib/gdb/prompt.py: Use sorted() function rather than
198 * python/lib/gdb/command/explore.py: Define raw_input if Python 3.
199 Adjust syntax for Python 3 compatibility.
200 * python/lib/gdb/command/pretty_printers.py: Use sorted() function
201 rather than sort() method.
202 Adjust syntax for Python 3 compatibility.
203 * python/lib/gdb/command/type_printers.py: Ditto.
204 * doc/gdb.texinfo (Inferior.read_memory): Mention that the return
205 value is a memoryview object if Python 3.
209 * coffread.c (coff_objfile_data_key): New global.
210 (coff_symfile_init): Use set_objfile_data.
211 (coff_symfile_read): Use objfile_data.
212 (coff_symfile_finish): Don't free deprecated_sym_private.
213 (coff_free_info): New function.
214 (_initialize_coffread): Initialize coff_objfile_data_key.
215 * mdebugread.c (pending_list): Update comment.
216 * objfiles.h (struct objfile) <deprecated_sym_private>: Remove.
217 * symfile.c (reread_symbols): Don't mention
218 deprecated_sym_private.
219 * xcoffread.c (xcoff_objfile_data_key): New global.
220 (XCOFF_DATA): New macro.
221 (process_linenos, enter_line_range, xcoff_next_symbol_text)
222 (read_xcoff_symtab, coff_getfilename, read_symbol_lineno): Use
224 (xcoff_new_init) Use set_objfile_data.
225 (xcoff_symfile_finish): Don't free deprecated_sym_private.
226 (init_stringtab, swap_sym, scan_xcoff_symtab)
227 (xcoff_get_toc_offset, xcoff_initial_scan): Use XCOFF_DATA.
228 (xcoff_free_info): New function.
229 (_initialize_xcoffread): Initialize xcoff_objfile_data_key.
233 * MAINTAINERS (Write After Approval): Add "Mircea Gherzan".
237 * coffread.c (coff_symfile_init): Use set_objfile_data.
238 (coff_symfile_read): Use DBX_SYMFILE_INFO.
239 * dbxread.c (dbx_objfile_data_key): New global.
240 (dbx_symfile_init): Use set_objfile_data.
241 (dbx_symfile_finish): Don't free deprecated_sym_stab_info.
242 (dbx_free_symfile_info): New function.
243 (coffstab_build_psymtabs, elfstab_build_psymtabs): Use
245 (stabsect_build_psymtabs): Use set_objfile_data.
246 (_initialize_dbxreadb): Initialize dbx_objfile_data_key.
247 * elfread.c (elf_symtab_read): Use DBX_SYMFILE_INFO,
249 (free_elfinfo): Use DBX_SYMFILE_INFO.
250 (elf_symfile_finish): Don't free deprecated_sym_stab_info.
251 (elfstab_offset_sections): Use DBX_SYMFILE_INFO.
252 * gdb-stabs.h (dbx_objfile_data_key): Declare.
253 (DBX_SYMFILE_INFO): Rewrite to use objfile_data.
254 * objfiles.h (struct objfile) <deprecated_sym_stab_info>: Remove.
255 * somread.c (som_symfile_finish): Don't free
256 deprecated_sym_stab_info.
260 * gdbarch.sh (software_single_step): Remove trailing space in
261 comment (gdbarch.h is already correct).
265 * dwarf2read.c (dwarf2_get_dwz_file): Set 'dwz_file'.
269 * dsrec.c (report_transfer_performance): Don't declare.
270 (load_srec): Use gettimeofday, print_transfer_performance.
271 * symfile.c (report_transfer_performance): Remove.
276 * procfs.c (procfs_make_note_section) [NEW_PROC_API]: Output a
278 * sol2-tdep.c (sol2_core_pid_to_str): Print process IDs
279 differently from LWP IDs.
283 * configure.ac (detect type of /proc): Remove Unixware handling.
284 * configure: Regenerate.
285 * proc-api.c (ioctl_table) [PIOCLSTATUS]: Don't mention Unixware.
286 (ioctl_table) [PCRESET]: Remove entry.
287 * proc-events.c (SYS_lwp_create, SYS_lwp_exit, SYS_lwp_wait)
288 (SYS_lwp_self, SYS_lwp_info, SYS_lwp_private, SYS_lwp_kill)
289 (SYS_lwp_suspend, SYS_lwp_continue): Don't define.
290 * proc-why.c (pr_why_table) [PR_SUSPENDED]: Don't mention Unixware.
291 * procfs.c: Remove all UNIXWARE guarded code, and all traces of
292 Unixware in comments throughout.
293 * i386-tdep.c (i386_svr4_sigtramp_p): Don't match _sigacthandler,
294 and remove mention of Unixware.
298 * dwarf2read.c (dwarf2_cu): Enhance comment.
299 (dwarf2_get_pc_bounds): Only add ranges_base for DIEs that live in
301 (dwarf2_record_block_ranges): Ditto.
303 * dwarf2read.c (create_dwo_in_dwp): Tweak comment.
305 * symtab.c (find_pc_sect_symtab): Add comment.
309 * defs.h: Don't check for definition of LONGEST.
310 (min, max): Remove duplicates.
314 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): New function.
315 (dwarf2_fetch_die_loc_cu_off): Rename from
316 dwarf2_fetch_die_location_block. Rewrite to use
317 dwarf2_fetch_die_loc_sect_off.
318 * dwarf2loc.h (dwarf2_fetch_die_loc_sect_off): Declare.
319 (dwarf2_fetch_die_loc_cu_off): Rename.
320 * dwarf2loc.c (indirect_pieced_value): Use
321 dwarf2_fetch_die_loc_sect_off.
322 * dwarf2expr.h (struct dwarf_expr_context) <len, data>: Update
324 (struct dwarf_expr_piece) <v.ptr.die>: Now a sect_offset.
325 * dwarf2expr.c (add_piece): Update.
326 (execute_stack_op) <DW_OP_GNU_implicit_pointer>: Update comment.
330 * buildsym.c (struct pending_block): Move from buildsym.h.
331 (pending_blocks): Likewise; now static.
332 (pending_block_obstack): New global.
333 (free_pending_blocks): Free blocks.
334 (record_pending_block): Use pending_block_obstack.
335 * buildsym.h (struct pending_block): Move definition to
337 (pending_blocks): Don't declare.
341 * solib-svr4.c (svr4_solib_create_inferior_hook) [_SCO_DS]: Remove
342 dead SCO code, and adjust function description comment.
346 * configure.ac (CC_HAS_LONG_LONG): Replace by AC_MSG_ERROR.
347 * defs.h (LONGEST, ULONGEST): Remove conditionalization for
349 * dwarf2-frame.c (DW64_CIE_ID): Likewise.
350 * dwarf2read.c (extract_cu_value): Remove the function.
351 (create_cus_from_index_list): Make the return type void, inline the
352 extract_cu_value caller, include new gdb_static_assert.
353 (create_cus_from_index): Make the return type void, update the function
354 comment, update the create_cus_from_index_list caller.
355 (create_signatured_type_table_from_index): Make the return type void,
356 inline the extract_cu_value caller, include new gdb_static_assert.
357 (dwarf2_read_index): Update the create_cus_from_index and
358 create_signatured_type_table_from_index caller.
359 * printcmd.c (ui_printf): Remove conditionalizations for
361 * config.in: Regenerate.
362 * configure: Regenerate.
366 * dwarf2read.c (struct dwarf2_cu): New field producer_is_gcc_lt_4_3.
367 Update the comment for checked_producer.
368 (check_producer): New forward declaration.
369 (producer_is_gcc_lt_4_3): New function.
370 (find_file_and_directory): Simulate *COMP_DIR only for gcc < 4.3.
371 (check_producer): Initialize also PRODUCER_IS_GCC_LT_4_3.
375 * ada-lang.c (ada_make_symbol_completion_list): Add 'code'
377 * c-exp.y (typebase): Add completion productions.
378 * completer.c (expression_completer): Handle tag completion.
379 * expression.h (parse_expression_for_completion): Add argument.
380 * f-lang.c (f_make_symbol_completion_list): Add 'code'
382 * language.h (struct language_defn)
383 <la_make_symbol_completion_list>: Add 'code' argument.
384 * parse.c (expout_tag_completion_type, expout_completion_name):
386 (mark_struct_expression): Add assertion.
387 (mark_completion_tag): New function.
388 (parse_exp_in_context): Initialize new globals.
389 (parse_expression_for_completion): Add 'code' argument. Handle
391 * parser-defs.h (mark_completion_tag): Declare.
392 * symtab.c (default_make_symbol_completion_list_break_on): Add
393 'code' argument. Update.
394 (default_make_symbol_completion_list): Add 'code' argument.
395 (make_symbol_completion_list): Update.
396 (make_symbol_completion_type): New function.
397 * symtab.h (default_make_symbol_completion_list_break_on)
398 (default_make_symbol_completion_list): Update.
399 (make_symbol_completion_type): Declare.
403 * expression.h (parse_expression_for_completion): Rename
404 from parse_field_expression.
405 (parse_completion): Rename from in_parse_field.
406 * c-exp.y (lex_one_token): Update.
407 * completer.c (expression_completer): Update.
408 * go-exp.y (lex_one_token): Update.
409 * p-exp.y (yylex): Update.
410 * parse.c (parse_completion): Rename from in_parse_field.
411 (parse_exp_in_context): Update.
412 (parse_expression_for_completion): Rename from
413 parse_field_expression. Update.
417 * typeprint.c (_initialize_typeprint): Set completer
418 for "whatis" and "ptype".
422 * copyright.py (NOT_FSF_LIST): Remove duplicate entry
423 "sim/common/cgen-fpu.h". Remove invalid entries
424 "sim/common/sim-fpu.c" and "sim/mn10300/sim-main.h",
425 which actually have an FSF copyright header.
429 * osf-share/AT386/cma_thread_io.h: Delete.
430 * osf-share/HP800/cma_thread_io.h: Delete.
431 * osf-share/README: Delete.
432 * osf-share/RIOS/cma_thread_io.h: Delete.
433 * osf-share/cma_attr.h: Delete.
434 * osf-share/cma_deb_core.h: Delete.
435 * osf-share/cma_debug_client.h: Delete.
436 * osf-share/cma_errors.h: Delete.
437 * osf-share/cma_handle.h: Delete.
438 * osf-share/cma_init.h: Delete.
439 * osf-share/cma_list.h: Delete.
440 * osf-share/cma_mutex.h: Delete.
441 * osf-share/cma_sched.h: Delete.
442 * osf-share/cma_semaphore_defs.h: Delete.
443 * osf-share/cma_sequence.h: Delete.
444 * osf-share/cma_stack.h: Delete.
445 * osf-share/cma_stack_int.h: Delete.
446 * osf-share/cma_tcb_defs.h: Delete.
447 * osf-share/cma_util.h: Delete.
448 * Makefile.in (HFILES_NO_SRCDIR): Remove entries for the files
450 * config/djgpp/fnchange.lst: Remove osf-share/cma_stack_int.h entry.
451 * contrib/ari/gdb_find.sh: Remove handling of osf-share.
452 * copyright.sh (NOT_FSF_LIST): Remove "gdb/osf-share" entry.
457 * valops.c (value_cast): Move TYPE_CODE_VOID case earlier.
462 * mi/mi-cmd-var.c (varobj_update_one): Take value of
463 attribute "dynamic" and "displayhint" from printed child,
464 not the root variable.
468 * aix-thread.c (getthrds): Fix type of 4th parameter.
469 (get_signaled_thread): Change type of variable ktid to tid_t.
473 * dwarf2loc.c (dwarf_expr_frame_base): Add check for the return
474 value of get_frame_block.
478 Avoid memory leaks on struct cmd_list_element.doc field.
479 * cli/cli-decode.c (add_alias_cmd): Make a copy of doc field
480 if flags contains DOC_ALLOCATED.
481 (add_setshow_cmd_full): Add DOC_ALLOCATED to set and show
483 (delete_cmd): Handle DOC_ALLOCATED flag.
484 * cli/cli-decode.h (DOC_ALLOCATED): New macro for use
485 in flags filed of struct cmd_list_element.
486 (struct cmd_list_element): Document new flag item.
490 * symmisc.c: Whitespace fixes.
494 * i386-tdep.c (i386_skip_prologue): Using symbol table
495 to find the end of prologue for clang compiled binaries.
496 * amd64-tdep.c (amd64_skip_prologue): Using symbol table
497 to find the end of prologue for clang compiled binaries.
501 * dwarf2read.c (struct dwarf2_per_objfile): Clarify comment.
502 (dw2_find_symbol_file): Delete unused local file_data.
506 * ada-exp.y (write_object_renaming, write_var_or_type)
507 (write_ambiguous_var, write_var_from_sym): Make blocks const.
508 * ada-lang.c (replace_operator_with_call)
509 (find_old_style_renaming_symbol): Make blocks const.
510 * ada-lang.h (ada_find_renaming_symbol): Update.
511 (struct ada_symbol_info) <block>: Now const.
512 * breakpoint.c (watch_command_1): Update.
513 * breakpoint.h (struct watchpoint) <exp_valid_block,
514 cond_exp_valid_block>: Now const.
515 * c-exp.y (classify_inner_name, classify_name): Make block
517 * expprint.c (print_subexp_standard) <OP_VAR_VALUE>: Make 'b'
519 * expression.h (innermost_block, parse_exp_1): Update.
520 (union exp_element) <block>: Now const.
521 * gdbtypes.c (lookup_template_type, lookup_enum, lookup_union)
522 (lookup_struct): Make block argument const.
523 * gdbtypes.h (lookup_template_type): Update.
524 * go-exp.y (classify_name, classify_packaged_name)
525 (package_name_p): Make block argument const.
526 * objc-lang.c (lookup_struct_typedef): Make block argument const.
527 * objc-lang.h (lookup_struct_typedef): Update.
528 * parse.c (parse_exp_in_context, parse_exp_1)
529 (write_exp_elt_block): Make block arguments const.
530 (expression_context_block, innermost_block): Now const.
531 * parser-defs.h (write_exp_elt_block): Update.
532 (expression_context_block, innermost_block, block_found): Now
534 * printcmd.c (struct display) <block>: Now const.
535 * symtab.h (lookup_struct, lookup_union, lookup_enum): Update.
536 * valops.c (address_of_variable): Make block argument const.
537 * value.h (value_of_variable): Update.
538 * varobj.c (struct varobj_root) <valid_block>: Now const.
542 * breakpoint.c (print_one_breakpoint_location): Indent code.
546 * breakpoint.c (print_one_breakpoint_location): Combine two
547 blocks handling 'hit count' together.
551 * infrun.c (error_is_running, ensure_not_running): Move them
553 * infcmd.c (error_is_running, ensure_not_running): ... here.
555 * inferior.h: Remove declarations of error_is_running and
560 * tic6x-linux-tdep.c (tic6x_register_sigcontext_offset): Don't
565 * infrun.c: Make the declaration of 'init_infwait_state'
567 (init_infwait_state): Make it 'static'.
571 * python/python.c (finalize_python): Cast unused PyGILState_Ensure
572 return value to void to avoid compiler warning.
576 * opencl-lang.c (opencl_print_type): New function.
577 (opencl_language_arch_info): Install it.
581 * contrib/ari/gdb_ari.sh: Remove rules for xasprintf and
583 * common/common-utils.c (xasprintf, xvasprintf): Remove.
584 * common/common-utils.h (xasprintf, xvasprintf): Remove.
588 * ada-lang.c (ada_is_interface_tag): New function.
589 (ada_is_ignored_field): Add interface tags to the list
594 * ada-lang.h (ada_tag_value_at_base_address): New function
596 * ada-lang.c (is_ada95_tag, ada_tag_value_at_base_address):
598 (ada_to_fixed_type_1, ada_evaluate_subexp): Let ada_tag_base_address
599 relocate the class-wide value if need be.
600 (ada_value_struct_elt, ada_value_ind, ada_coerce_ref):
601 Let ada_tag_value_at_base_address relocate the class-wide access/ref
602 before dereferencing it.
603 * ada-valprint.c (ada_val_print_1): Relocate to base address
604 before displaying the content of an interface-wide ref.
608 * ada-lang.c (ada_evaluate_subexp): Unwrap only in EVAL_NORMAL.
617 * eval.c (evaluate_subexp_standard): Get the correct pointer
618 type for TYPE_CODE_MEMBERPTR.
622 * rs6000-tdep.c (gdb_print_insn_powerpc): Remove info->mach checking,
623 since now it is being done by binutils' powerpc_init_dialect().
628 * solib-darwin.c (gdb_bfd_mach_o_fat_extract): New function.
629 (darwin_solib_get_all_image_info_addr_at_init, darwin_bfd_open):
631 * gdb_bfd.h (gdb_bfd_mark_parent): Declare.
632 * gdb_bfd.c (gdb_bfd_mark_parent): New function.
633 (gdb_bfd_openr_next_archived_file): Use it.
637 * configure.ac: Check for linux/perf_event.h.
638 * config.in: Regenerated.
639 * configure: Regenerated.
643 * breakpoint.c (_initialize_breakpoint): Call add_alias_cmd to
644 abbreviate 'delete tracepoints' to 'delete tr'.
645 * corefile.c (_initialize_core): Call add_alias_cmd to
646 abbreviate 'set gnutarget' to 'set g'.
647 * value.c (_initialize_values): Call add_alias_cmd to abbreviate
648 'show convenience' to 'show conv'.
652 * sparc-sol2-nat.c (supply_gregset): Fix first parameter in
653 call to sparc_supply_fpregset.
654 (fill_fpregset): Fix first parameter in call to
655 sparc_collect_fpregset.
661 * objfiles.c (init_entry_point_info): Call
662 gdbarch_convert_from_func_ptr_addr and
663 gdbarch_addr_bits_remove here ...
664 (entry_point_address_query): ... instead of here.
665 * solib-svr4.c (exec_entry_point): Call
666 gdbarch_addr_bits_remove.
667 * symfile.c (generic_load): Call gdbarch_addr_bits_remove on
673 * eval.c (evaluate_subexp_standard): Add handling of
674 TYPE_CODE_MEMBERPTR when calling functions. Correct the
675 result of ptype for calling a TYPE_CODE_METHODPTR.
679 * symtab.c (symtab_symbol_info): Fix a -Wformat-extra-args
687 * NEWS: Mention mini debuginfo feature.
688 * minidebug.c: New file.
689 * configure.ac: Check for lzma.
690 * configure, config.in: Rebuild.
691 * Makefile.in (LIBLZMA): New variable.
692 (CLIBS): Include LIBLZMA.
693 (SFILES): Mention minidebug.c.
694 (COMMON_OBS): Mention minidebug.o.
695 * symfile.c (read_symbols): New function.
696 (syms_from_objfile, reread_symbols): Call it.
697 * symfile.h (find_separate_debug_file_in_section): Declare.
701 * exec.c (exec_file_attach): Move cleanup after verifying that
702 memory has in fact been allocated.
706 * ada-lang.c (user_select_syms): Use SYMBOL_SYMTAB.
707 * dwarf2read.c (dw2_find_symbol_file, fixup_go_packaging): Use
709 * skip.c (skip_info): Use SYMBOL_SYMTAB.
714 * common/linux-osdata.c (linux_xfer_osdata_fds): Decrease buffer
715 size parameter passed to readlink by one byte.
716 * fbsd-nat.c (fbsd_pid_to_exec_file): Ditto.
717 * linux-nat.c (linux_child_pid_to_exec_file): Ditto.
718 * nbsd-nat.c (nbsd_pid_to_exec_file): Ditto.
719 * inf-child.c (inf_child_fileio_readlink): Decrease local buffer's
724 * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
725 extraneous parentheses.
729 * remote.c (remote_start_remote): Typo fix.
733 * sparc-tdep.h (struct sparc_fpregset): New data structure.
734 (sparc32_sunos4_fpregset, sparc32_bsd_fpregset,
735 sparc32_sol2_fpregset): Declare new globals.
736 (sparc32_supply_fpregset, sparc32_collect_fpregset): Add new
738 * sparc64-tdep.h (sparc64_supply_fpregset,
739 sparc64_collect_fpregset): Likewise.
740 (sparc64_sol2_fpregset, sparc64_bsd_fpregset): Declare new
742 * sparc-nat.h (struct sparc_fpregset): Add forward declaration.
743 (sparc_fpregset): Declare new global.
744 (sparc_supply_fpregset, sparc_collect_fpregset): Add new
746 * sparc-linux-nat.c (supply_fpregset): Pass sparc_fpregset down
748 (fill_fpregset): Likewise.
749 (_initialize_sparc_linux_nat): Set sparc_fpregset to
750 sparc32_bsd_fpregset.
751 * sparc-linux-tdep.c (sparc32_linux_supply_core_fpregset): Pass
752 sparc32_bsd_fpregset down into handler.
753 (sparc32_linux_collect_core_fpregset): Likewise.
754 * sparc-nat.c (sparc_fpregset): Define.
755 (sparc_supply_fpregset): Add 'fpregset' argument.
756 (sparc_collect_fpregset): Likewise.
757 (sparc_fetch_inferior_registers): Pass sparc_fpregset down
758 into fpregset handler.
759 (sparc_store_inferior_registers): Likewise.
760 (_initialize_sparc_nat): Set sparc_fpregset to
761 sparc32_sunos4_fpregset if NULL.
762 * sparc-sol2-nat.c (supply_gregset): Pass sparc_sol2_fpregset
764 (fill_fpregset): Likewise.
765 * sparc-sol2-tdep.c (sparc32_sol2_fpregset): Define.
766 * sparc-tdep.c (sparc32_supply_fpregset): Add fpregset arg and
767 use it to compute offsets.
768 (sparc32_collect_fpregset): Likewise.
769 (sparc32_sunos4_fpregset, sparc32_bsd_fpregset): Define.
770 * sparc64-linux-nat.c (supply_fpregset): Pass sparc64_bsd_fpregset
772 (fill_fpregset): Likewise.
773 * sparc64-linux-tdep.c (sparc64_linux_supply_core_fpregset):
775 (sparc64_linux_collect_core_fpregset): Likewise.
776 * sparc64-sol2-tdep.c (sparc64_sol2_fpregset): Define.
777 * sparc64-tdep.c (sparc64_supply_fpregset): Add fpregset arg and
778 use it to compute offsets.
779 (sparc64_collect_fpregset): Likewise.
780 (sparc64_bsd_fpregset): Define.
781 * sparc64fbsd-tdep.c (sparc64fbsd_supply_fpregset): Padd
782 sparc64_bsd_fpregset down into handler.
783 (sparc64fbsd_collect_fpregset): Likewise.
784 * sparc64nbsd-nat.c (sparc64nbsd_supply_fpregset): Add fpregset arg
785 and pass sparc{32,64}_bsd_fpregset down into handler.
786 (sparc64nbsd_collect_fpregset): Likewise.
787 * sparc64nbsd-tdep.c (sparc64nbsd_supply_fpregset): Pass
788 sparc64_bsd_fpregset down into handler.
789 * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Likewise.
790 * sparcnbsd-nat.c (_initialize_sparcnbsd_nat): Set sparc_fpregset
791 to sparc32_bsd_fpregset.
792 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Pass
793 sparc32_bsd_fpregset down into sparc32_supply_fpregset.
794 (sparc32nbsd_supply_fpregset): Likewise.
798 * gdbtypes.h (struct cplus_struct_type) <localtype_ptr>: Remove
800 (TYPE_LOCALTYPE_PTR, TYPE_LOCALTYPE_FILE, TYPE_LOCALTYPE_LINE):
802 * c-typeprint.c (c_type_print_base): Update.
807 * gdbarch.sh (smash_text_address): Remove.
808 * gdbarch.c, gdbarch.h: Regenerate.
809 * arm-tdep.c (arm_smash_text_address): Remove.
810 (arm_gdbarch_init): Don't call set_gdbarch_smash_text_address.
811 * hppa-tdep.c (hppa_smash_text_address): Remove.
812 (hppa_addr_bits_remove): Rename from hppa_smash_text_address.
813 (hppa_gdbarch_init): Don't call set_gdbarch_smash_text_address.
815 * coffread.c (coff_symtab_read): Caller update.
816 * dbxread.c (process_one_symbol): Likewise.
817 * elfread.c (record_minimal_symbol): Likewise.
818 * somread.c (som_symtab_read): Likewise.
822 ARI fixes: sprintf rule.
823 Replace sprintf function calls for char arrays by
824 calls to xsnprintf calls.
825 * arm-tdep.c (arm_push_dummy_call): Replace sprintf by xsnprintf.
826 (arm_dwarf_reg_to_regnum, arm_return_value): Ditto.
827 (arm_neon_quad_read, arm_pseudo_read): Ditto.
828 (arm_neon_quad_write, arm_pseudo_write): Ditto.
829 * breakpoint.c (condition_completer): Ditto.
830 (create_tracepoint_from_upload): Ditto.
831 * dwarf2read.c (file_full_name): Ditto.
832 * gcore.c (gcore_command): Ditto.
833 * gnu-nat.c (proc_string, gnu_pid_to_str): Ditto.
834 * go32-nat.c (go32_sysinfo): Ditto.
835 * interps.c (interp_set): Ditto.
836 * m32c-tdep.c (make_types): Ditto.
837 * ppc-linux-nat.c (fetch_register, store_register): Ditto.
838 * remote-m32r-sdi.c (m32r_open): Ditto.
839 * sol-thread.c (td_err_string): Ditto.
840 (td_state_string, solaris_pid_to_str): Ditto.
841 * symtab.c (gdb_mangle_name): Ditto.
842 * cli/cli-script.c (execute_control_command): Ditto.
843 (define_command, document_command): Ditto.
844 * tui/tui-io.c (tui_rl_display_match_list): Ditto.
845 * tui/tui-stack.c (tui_make_status_line): Ditto.
846 * tui/tui-win.c (tui_update_gdb_sizes): Ditto.
850 * cli/cli-decode.c (complete_on_cmdlist): Add a fourth arg and check
851 it when looking at ptr->func.
852 * command.h (complete_on_cmdlist): Add a fourth arg.
853 * completer.c (complete_line_internal): Add local ignore_help_classes,
854 and set it to 1 when reason is not handle_help. Pass this down to
855 lookup_cmd_1 and complete_on_cmdlist.
859 * completer.c (count_struct_fields): Remove.
860 (expression_completer): Don't call count_struct_fields.
864 * annotate.c (breakpoints_changed): Rename to ...
865 (annotate_breakpoints_changed): ... this.
866 (annotate_stopped, breakpoint_changed): Adjust caller.
867 * annotate.h (breakpoints_changed): Rename to ...
868 (annotate_breakpoints_changed): ... this.
869 * breakpoint.c (set_breakpoint_condition, breakpoint_set_commands)
870 (do_map_commands_command, init_raw_breakpoint, clear_command)
871 (set_ignore_count, enable_breakpoint_disp): Adjust callers.
875 * common/linux-osdata.c (get_number_of_cpu_cores): Delete.
876 (linux_xfer_osdata_processes): Fetch _SC_NPROCESSORS_ONLN via
878 (get_cores_used_by_process): Update comment.
882 * objfiles.c (init_entry_point_info): Remove trailing spaces.
886 * infrun.c (handle_inferior_event): Pass 'saved_singlestep_ptid'
887 to deprecated_context_hook.
891 * infrun.c (infwait_state): Add static.
896 * cp-namespace.c (cp_lookup_symbol_in_namespace): Add SEARCH
897 parameter and pass it to lookup_symbol_file.
898 (cp_lookup_symbol_imports): Tell cp_lookup_symbol_in_namespace
899 to search base classes.
900 (cp_lookup_symbol_namespace): Likewise.
901 (lookup_namespace_scope): Likewise.
902 (lookup_symbol_file): Add SEARCH parameter.
903 If SEARCH is non-zero and no symbol is found, lookup the class
904 and call cp_lookup_nested_symbol.
905 (find_symbol_in_baseclass): New function.
906 (cp_lookup_nested_symbol): Do not let
907 cp_lookup_symbol_in_namespace search through base classes.
908 Do that later when there is no global symbol match.
912 * main.c (gdb_datadir_provided): New static global.
913 (get_init_files): If --data-directory is provided,
914 and SYSTEM_GDBINIT lives in data-directory, look for it there.
919 ARI fixes: move gdb_wait and gdb_stat headers to common subdirectory.
920 * gdb_stat.h: Delete. Moved to common directory.
921 * common/gdb_stat.h: New file.
922 * gdb_wait.h: Delete. Moved to common directory.
923 * common/gdb_wait.h: New file.
924 * Makefile.in (H_FILES_NO_SRC): Adapt to new header
926 * contrib/ari/gdb_ari.sh (wait.h rule): Adapt to new gdb_wait.h
928 (stat.h rule): Adapt to new gdb_stat.h location.
929 * common/linux-osdata.c: Include "gdb_stat.h" header instead of
931 * common/linux-ptrace.c: Include "gdb_wait.h" header instead of
936 * configure.ac (AC_HEADER_STAT): Remove.
937 * gdb_stat.h (STAT_MACROS_BROKEN): Remove macro use
938 and corresponding code.
939 * configure: Regenerate.
940 * config.in: Regenerate.
944 ARI xasprintf rule fixes.
945 * dwarf2read.c (create_dwo_in_dwp): Use xstrprintf function
946 instead of xasprintf.
947 (open_and_init_dwp_file): Ditto.
951 * value.c (value_actual_type): Check for TYPE_CODE_STRUCT
956 * configure, config.in: Rebuild.
957 * configure.ac: Don't check for ctype.h, time.h.
958 * expprint.c: Don't use HAVE_CTYPE_H.
962 * gdbarch.h, gdbarch.c: Rebuild.
963 * gdbarch.sh (set_target_gdbarch): Rename from
964 deprecated_target_gdbarch_select_hack.
965 * arch-utils.c (gdbarch_update_p): Update.
966 (set_gdbarch_from_file): Update.
970 * MAINTAINERS (Responsible Maintainers/misc): Add myself
971 as responsible of contrib/ari directory.
976 * arm-tdep.c (arm_addr_bits_remove): Do not adjust the low
978 (arm_m_exception_cache, arm_m_exception_this_id)
979 (arm_m_exception_prev_register, arm_m_exception_unwind_sniffer)
980 (arm_m_exception_unwind): New.
981 (arm_gdbarch_init): Register arm_m_exception_unwind.
985 * mi/mi-main.c (mi_cmd_data_write_memory): Handle additional
986 parameter COUNT, for pattern filling of memory regions.
991 * disasm.h (DISASSEMBLY_FILENAME): New macro.
992 * disasm.c (do_mixed_source_and_assembly): Pass filename flag on
993 to print_source_lines ().
994 * symtab.h (PRINT_SOURCE_LINES_FILENAME): New print source lines
996 * source.c (print_source_lines_base): Prefix source line with
997 filename if PRINT_SOURCE_LINES_FILENAME flag is set.
1001 * symtab.h (print_source_lines_flags): New enum.
1002 * source.c (print_source_lines_base): Change noerror to flags.
1003 (print_source_lines): Change noerror to flags.
1007 ARI fixes: Avoid sprintf function use rule.
1008 * charset.c (convert_between_encodings): Use xsnprintf.
1009 * cli-out.c (cli_field_int): Likewise.
1010 * cp-namespace.c (cp_lookup_nested_symbol): Likewise.
1011 * expprint.c (op_name_standard): Likewise.
1012 * frv-tdep.c (set_variant_num_gprs): Likewise.
1013 (set_variant_num_fprs): Likewise.
1014 * m68hc11-tdep.c (m68hc11_initialize_register_info): Likewise.
1015 * nto-tdep.c (nto_find_and_open_solib): Likewise.
1016 (nto_init_solib_absolute_prefix): Likewise.
1017 * source.c (init_source_path): Likewise.
1018 (print_source_lines_base): Likewise.
1019 * valprint.c (print_wchar): Likewise.
1020 * mi/mi-out.c (mi_field_int): Likewise.
1021 windows-nat.c (windows_pid_to_exec_file): Likewise.
1022 (windows_create_inferior): Likewise.
1023 (_initialize_check_for_gdb_ini): Likewise.
1027 * frame.h (deprecated_frame_register_read): Renames
1028 frame_register_read.
1029 * frame.c (deprecated_frame_register_read): Renames
1030 frame_register_read. Update all callers.
1031 * i386-tdep.c: Update all callers of frame_register_read.
1032 * infcmd.c: Likewise.
1034 * mips-tdep.c: Likewise.
1035 * mt-tdep.c: Likewise.
1036 * sh64-tdep.c: Likewise.
1040 * frame.h (frame_register_read): Remove FIXME comment.
1041 * frame.c (frame_register_read): Add suggestion explaining
1042 which function to use in place of this one.
1046 * python/python.c (start_type_printers): Initialize 'result_obj'.
1051 * data-directory/Makefile.in (PYTHON_FILES): Add
1053 * python/lib/gdb/command/type_printers.py: New file.
1054 * python/lib/gdb/command/types.py (TypePrinter): New class.
1055 (_get_some_type_recognizers, get_type_recognizers,
1056 apply_type_recognizers, register_type_printer): New
1058 * python/py-objfile.c (objfile_object) <type_printers>: New
1060 (objfpy_dealloc): Decref new field.
1061 (objfpy_new): Set new field.
1062 (objfpy_get_type_printers, objfpy_set_type_printers): New
1064 (objfile_to_objfile_object): Set new field.
1065 (objfile_getset): Add "type_printers".
1066 * python/py-progspace.c (pspace_object) <type_printers>: New
1068 (pspy_dealloc): Decref new field.
1069 (pspy_new): Set new field.
1070 (pspy_get_type_printers, pspy_set_type_printers): New functions.
1071 (pspace_to_pspace_object): Set new field.
1072 (pspace_getset): Add "type_printers".
1073 * python/python.c (start_type_printers, apply_type_printers,
1074 free_type_printers): New functions.
1075 (_initialize_python): Set gdb.type_printers.
1076 * python/python.h (start_type_printers, apply_type_printers,
1077 free_type_printers): Declare.
1078 * typeprint.c (type_print_raw_options, default_ptype_flags):
1079 Update for new fields.
1080 (do_free_global_table, create_global_typedef_table,
1081 find_global_typedef): New functions.
1082 (find_typedef_in_hash): Use find_global_typedef.
1083 (whatis_exp): Use create_global_typedef_table. Change cleanup
1085 * typeprint.h (struct type_print_options) <global_typedefs,
1086 global_printers>: New fields.
1090 * c-typeprint.c (find_typedef_for_canonicalize,
1091 print_name_maybe_canonical): New functions.
1092 (c_print_type): Look up type name.
1093 (cp_type_print_derivation_info): Add flags argument. Use
1094 print_name_maybe_canonical.
1095 (cp_type_print_method_args): Add wrapping.
1096 (c_type_print_varspec_prefix): Use print_name_maybe_canonical.
1097 (c_type_print_template_args): New function.
1098 (c_type_print_base): Change wrapping. Use
1099 print_name_maybe_canonical.
1100 <TYPE_CODE_STRUCT>: Possibly create a typedef hash, and do
1102 * gdbtypes.c (types_equal): No longer static.
1103 * gdbtypes.h (types_equal): Declare.
1104 * typeprint.c (type_print_raw_options, default_ptype_flags):
1106 (struct typedef_hash_table): New.
1107 (hash_typedef_field, eq_typedef_field,
1108 recursively_update_typedef_hash, add_template_parameters,
1109 create_typedef_hash, free_typedef_hash, do_free_typedef_hash,
1110 make_cleanup_free_typedef_hash, copy_typedef_hash_element,
1111 copy_typedef_hash, find_typedef_in_hash): New functions.
1112 * typeprint.h (struct type_print_options) <local_typedefs>:
1114 (recursively_update_typedef_hash, add_template_parameters,
1115 create_typedef_hash, free_typedef_hash,
1116 make_cleanup_free_typedef_hash, copy_typedef_hash,
1117 find_typedef_in_hash): Declare.
1121 * cp-support.c (inspect_type,
1122 replace_typedefs_qualified_name, replace_typedefs): Add
1123 finder, data arguments. Call as needed.
1124 (cp_canonicalize_string_full): New function.
1125 (cp_canonicalize_string_no_typedefs): Rewrite.
1126 * cp-support.h (canonicalization_ftype): New typedef.
1127 (cp_canonicalize_string_full): Declare.
1132 * c-typeprint.c (c_type_print_base): Handle print_method and
1133 print_typedefs flags.
1134 * gdbcmd.h (setprinttypelist, showprinttypelist): Declare.
1135 * python/py-type.c (typy_str): Use LA_PRINT_TYPE and raw
1137 * typeprint.c (type_print_raw_options, default_ptype_flags):
1138 Update for new field.s
1139 (whatis_exp): Parse flags. Use LA_PRINT_TYPE.
1140 (setprinttypelist, showprinttypelist, print_methods,
1141 print_typedefs): New globals.
1142 (set_print_type, show_print_type, set_print_type_methods,
1143 show_print_type_methods, set_print_type_typedefs,
1144 show_print_type_typedefs): New functions.
1145 (_initialize_typeprint): Update documentation. Add "print
1146 type methods" and "print type typedefs" parameters.
1147 * typeprint.h (struct type_print_options) <print_methods,
1148 print_typedefs>: New fields.
1152 * c-typeprint.c (cp_type_print_method_args): Add flags
1153 argument. Call c_print_type, not type_print.
1154 (c_type_print_base): Call c_print_type, not type_print.
1159 * ada-lang.c (user_select_syms, ada_print_subexp): Pass flags
1160 to type-printing functions.
1161 * ada-lang.h (ada_print_type): Add argument.
1162 * ada-typeprint.c (print_array_type, print_variant_clauses,
1163 print_variant_part, print_selected_record_field_types,
1164 print_record_field_types, print_unchecked_union_type,
1165 print_func_type, ada_print_type): Add flags argument.
1166 (ada_print_typedef): Update.
1167 * c-exp.y (OPERATOR conversion_type_id): Update.
1168 * c-lang.h (c_print_type, c_type_print_base): Update.
1169 * c-typeprint.c (c_print_type, c_type_print_varspec_prefix,
1170 c_type_print_modifier, c_type_print_args,
1171 c_type_print_varspec_suffix, c_type_print_base): Add flags
1173 * cp-valprint.c (cp_print_class_member): Update.
1174 * dwarf2read.c (dwarf2_compute_name): Update.
1175 * f-lang.h (f_print_type): Add argument.
1176 * f-typeprint.c (f_print_type): Add flags argument.
1177 * gnu-v3-abi.c (gnuv3_print_method_ptr): Update.
1178 * go-lang.h (go_print_type): Add argument.
1179 * go-typeprint.c (go_print_type): Add flags argument.
1180 * jv-lang.h (java_print_type): Add argument.
1181 * jv-typeprint.c (java_type_print_base, java_print_type): Add
1183 * language.c (unk_lang_print_type): Add flags argument.
1184 * language.h (struct language_defn) <la_print_type>: Add flags
1186 (LA_PRINT_TYPE): Likewise.
1187 * m2-lang.h (m2_print_type): Add argument.
1188 * m2-typeprint.c (m2_print_type, m2_range, m2_typedef,
1189 m2_array, m2_pointer, m2_ref, m2_procedure, m2_long_set,
1190 m2_unbounded_array, m2_record_fields): Add flags argument.
1191 * p-lang.h (pascal_print_type, pascal_type_print_base,
1192 pascal_type_print_varspec_prefix): Add argument.
1193 * p-typeprint.c (pascal_print_type,
1194 pascal_type_print_varspec_prefix, pascal_print_func_args,
1195 pascal_type_print_varspec_suffix, pascal_type_print_base): Add
1197 * symmisc.c (print_symbol): Update.
1198 * typeprint.c (type_print_raw_options, default_ptype_flags):
1200 (type_print): Update.
1201 * typeprint.h (struct type_print_options): New.
1202 (type_print_raw_options): Declare.
1203 (c_type_print_varspec_suffix, c_type_print_args): Add argument.
1207 * breakpoint.c (clear_command): Add cleanup for
1208 sals.sals if an argument is given.
1210 * linespec.c (parse_linespec): Do cleanups after
1211 parsing a convenience variable.
1216 * c-valprint.c (c_val_print): For character arrays
1217 with "print null" option on, print ellipses if
1218 the output is truncated and the next character is not \000.
1219 * valprint.c (MAX_WCHARS): Define.
1220 (WCHAR_BUFLEN): Likewise.
1221 (WCHAR_BUFLEN_MAX): Likewise.
1222 (struct converted_character): New structure.
1223 (count_next_character): New function.
1224 (print_converted_chars_to_obstack): New function.
1225 (generic_printstr): Rewrite using count_next_character
1226 and print_converted_chars_to_obstack.
1230 * tui/tui.c (tui_rl_command_key): Switch to TUI_ONE_COMMAND_MODE
1231 while executing the gdb command.
1232 (tui_rl_startup_hook): Do not switch back to TUI_SINGLE_KEY_MODE if we
1233 are called from prompt_for_continue.
1234 * tui/tui-io.c (tui_redisplay_readline): Likewise.
1240 * tui/tui.c (tui_rl_command_key): Do not call execute_command
1241 but insert the command to execute in readline's buffer.
1245 * gdbarch.sh (target_gdbarch): Remove macro.
1246 (get_target_gdbarch): Rename to target_gdbarch.
1247 * gdbarch.c, gdbarch.h: Rebuild.
1248 * ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
1249 arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
1250 darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
1251 filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
1252 ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
1253 linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
1254 mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
1255 mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
1256 nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
1257 procfs.c, progspace.c, ravenscar-thread.c, record.c,
1258 remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
1259 rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
1260 solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
1261 solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
1262 solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
1263 spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
1264 target-descriptions.c, target.c, target.h, tracepoint.c,
1265 windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
1266 common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
1267 python/py-inferior.c, python/python.c: Update.
1271 * source.c (print_source_lines_base): Add fullname field giving
1272 full path to file in mi output.
1273 * NEWS: Mention the new fullname field.
1277 * NEWS: Mention the fix to the ambiguity of 'fo' command.
1283 * infrun.c: Include target-descriptions.h.
1284 (follow_exec): Fetch new target description.
1288 * i386-tdep.c (i386_analyze_frame_setup): Handle opcode
1293 * breakpoint.c: Declare set_tracepoint_count.
1294 (install_breakpoint): Call set_tracepoint_count if B is a
1296 (trace_command): Don't call set_tracepoint_count. Re-indent.
1297 (strace_command, ftrace_command):
1298 (create_tracepoint_from_upload): Likewise.
1302 * gdbarch.sh (target_gdbarch) <gdbarch.h>: Reimplement as macro.
1303 (get_target_gdbarch) <gdbarch.h>: New function.
1304 (startup_gdbarch) <gdbarch.h>: Declare.
1305 <gdbarch.c> (target_gdbarch): Delete.
1306 <gdbarch.c> (deprecated_target_gdbarch_select_hack): Set the
1307 current inferior's gdbarch.
1308 <gdbarch.c> (get_target_gdbarch): New function.
1309 * inferior.c: Include target-descriptions.h.
1310 (free_inferior): Free target description info.
1311 (add_inferior_with_spaces): Set the inferior's initial
1313 (clone_inferior_command): Copy the original inferior's target
1314 description if it was user specified.
1315 (initialize_inferiors): Add comment.
1316 * inferior.h (struct target_desc_info): Forward declare.
1317 (struct inferior) <gdbarch>: New field.
1318 * linux-nat.c: Include target-descriptions.h.
1319 (linux_child_follow_fork): Copy the parent's architecture and
1320 target description to the child.
1321 * target-descriptions.c: Include inferior.h.
1322 (struct target_desc_info): New structure, holding the equivalents
1324 (target_desc_fetched, current_target_desc)
1325 (target_description_filename): ... these removed globals.
1326 (get_tdesc_info, target_desc_info_from_user_p)
1327 (copy_inferior_target_desc_info, target_desc_info_free): New.
1328 (target_desc_fetched, current_target_desc)
1329 (target_description_filename): Reimplemented as convenience
1331 (tdesc_filename_cmd_string): New global.
1332 (set_tdesc_filename_cmd): Copy the string manipulated by the "set
1333 tdescs filename ..." commands to the per-inferior equivalent.
1334 (show_tdesc_filename_cmd): Get the value to show from the
1335 per-inferior description filename.
1336 (_initilize_target_descriptions): Change the "set/show tdesc
1337 filename" commands' variable.
1338 * target-descriptions.h (struct target_desc, struct target_desc_info)
1339 (struct inferior): Forward declare.
1340 (target_find_description, target_clear_description)
1341 (target_current_description): Adjust comments.
1342 (copy_inferior_target_desc_info, target_desc_info_free)
1343 (target_desc_info_from_user_p). Declare.
1347 * tui/tui-hooks.c (tui_about_to_proceed): New function.
1348 (tui_target_wait_hook): Remove.
1349 (tui_install_hooks): Install the about_to_proceed observer.
1350 (tui_remove_hooks): And remove it here.
1354 * linux-tdep.c (linux_make_siginfo_note): New function.
1355 (linux_make_corefile_notes): Use it.
1356 * corelow.c (get_core_siginfo): New function.
1357 (core_xfer_partial) <TARGET_OBJECT_SIGNAL_INFO>: New case.
1362 * gdb_bfd.c (gdb_bfd_ref): Set BFD_DECOMPRESS.
1363 (zlib_decompress_section): Remove.
1364 (gdb_bfd_map_section): Only check for compressed section
1365 in mmap case. Use bfd_get_full_section_contents.
1366 * osabi.c (check_note): Add 'sectsize' argument. Read
1368 (generic_elf_osabi_sniff_abi_tag_sections): Don't read
1369 section data. Update for check_note change.
1370 * xcoffread.c (xcoff_initial_scan): Use
1371 bfd_get_full_section_contents.
1372 * py-auto-load.c (auto_load_section_scripts): Use
1373 bfd_get_full_section_contents.
1374 * contrib/cc-with-tweaks.sh: Add -Z option.
1378 * python/py-bpevent.c: Include defs.h.
1379 * python/py-continueevent.c: Include defs.h.
1380 * python/py-event.c: Include defs.h.
1381 * python/py-event.h: Don't include defs.h.
1382 * python/py-events.h: Don't include defs.h.
1383 * python/py-evts.c: Include defs.h.
1384 * python/py-exitedevent.c: Include defs.h.
1385 * python/py-newobjfileevent.c: Include defs.h.
1386 * python/py-signalevent.c: Include defs.h.
1387 * python/py-stopevent.c: Include defs.h.
1388 * python/py-threadevent.c: Include defs.h.
1392 * update-web-ari.sh (print_heading): Add number of files
1394 (nb_files): New variable counting the number of sources
1395 files found by gdb_find.sh script.
1396 (debug_awk): New variable to allow extra debug output.
1397 (indexes): Add more information if DEBUG_AWK is set.
1401 * ppc-linux-tdep.c (ppc64_standard_linkage1, ppc64_standard_linkage2,
1402 ppc64_standard_linkage3): Mark ld r11 instructions as optional,
1403 following the change in PLT call stubs on linker.
1407 * contrib/ari/gdb_ari.sh (LANG, LC_ALL): Use 'C' instead of 'c'
1408 as default language.
1409 (AWK): Use = instead of == for sh test to avoid warning.
1410 (Linux rule): Correct [:digit] into [[:digit:]].
1411 (__func__ rule): Adapt to "gdb_assert.h" move to common subdirectory.
1412 (vasprintf rule): Adapt to common subdirectory moves.
1413 (xasprintf rule): Idem.
1414 (xvasprintf rule): Idem.
1415 (var_boolean rule): Accept occurence in == or != test.
1417 * contrib/ari/gdb_find.sh: Also prune gdbtk directory.
1421 * tui/tui-hooks.c (tui_inferior_exit): New function.
1422 (tui_detach_hook): Remove.
1423 (tui_install_hooks): Install the inferior exit observer.
1424 (tui_remove_hooks): Remove it.
1429 * source.c (_initialize_source): Call add_com_alias to abbreviate
1430 'forward-search' as 'fo'.
1434 * arm-tdep.c: Make defs.h be the first include.
1435 * coff-pe-read.c: Ditto.
1437 * go32-nat.c: Ditto.
1438 * i386-nat.c: Ditto.
1439 * ppcnbsd-nat.c: Ditto.
1440 * ada-varobj.h: Don't include defs.h.
1441 * i386-darwin-tdep.h: Ditto.
1442 * i386-nat.h: Ditto.
1446 * MAINTAINERS: New FSF-appointed maintainers replace the Steering
1451 * common/linux-osdata.c (dirent.h): ARI fix: Remove.
1452 File already uses "gdb_dirent.h" header.
1456 * breakpoint.c (get_tracepoint_by_number): Remove 'extern int
1461 * target.h (inferior_has_forked, inferior_has_vforked)
1462 (inferior_has_execd, inferior_has_called_syscall): Remove
1467 * remote.c (remote_insert_hw_breakpoint): ARI fix,
1468 add missing internalization markup.
1474 * breakpoint.c (bpstat_stop_status): Skip disabled locations.
1478 * contrib/ari/create-web-ari-in-src.sh: Avoid problem if script
1483 * gnulib/update-gnulib.sh: New script.
1487 * MAINTAINERS: Update my email address.
1491 * frame.c (put_frame_register): Don't use temporary buffer.
1495 * inferior.c (exit_inferior_1): Clear 'vfork_parent' in the vfork
1496 child. Clear 'pending_detach'.
1497 * infrun.c (handle_vfork_child_exec_or_exit): Clear
1498 'pending_detach' in the vfork parent.
1502 Add support for DWP files. http://gcc.gnu.org/wiki/DebugFissionDWP
1503 * contrib/cc-with-tweaks.sh: Add -p parameter to invoke dwp.
1504 * dwarf2read.c: #include "elf-bfd.h".
1505 (struct dwarf2_per_objfile): New members dwp_checked, dwp_file.
1506 (dwop_section_names): Renamed from dwo_section names. All uses
1507 updated. Add entries for .debug_cu_index, .debug_tu_index.
1508 (struct dwo_file): Rename dwo_name to name, dwo_bfd to dbfd.
1510 (struct dwp_sections): New type.
1511 (struct virtual_dwo_sections): New type.
1512 (struct dwp_hash_table): New type.
1513 (struct dwp_file): New type.
1514 (init_cutu_and_read_dies): Ensure DWO info/types section has been
1515 read in. Handle DWOs coming from DWP files.
1516 (lookup_dwo_file_slot): New function.
1517 (dwarf2_locate_dwo_sections): Move definition closer to use.
1518 (create_dwo_debug_info_hash_table_reader): Renamed from
1519 create_debug_info_hash_table_reader. All callers updated.
1520 (create_dwo_debug_info_hash_table): Renamed from
1521 create_debug_info_hash_table. All callers updated.
1522 (create_dwp_hash_table): New function.
1523 (locate_virtual_dwo_sections, create_dwo_in_dwp): New functions.
1524 (lookup_dwo_in_dwp): New function.
1525 (try_open_dwop_file): Renamed from try_open_dwo_file. New parameter
1526 is_dwp. All callers updated.
1527 (open_dwop_file): Renamed from open_dwo_file. All callers updated.
1528 (open_and_init_dwo_file): Renamed from init_dwo_file.
1529 All callers updated.
1530 (lookup_dwo_file): Delete.
1531 (dwarf2_locate_dwp_sections): New function.
1532 (hash_dwp_loaded_cutus, eq_dwp_loaded_cutus): New functions.
1533 (allocate_dwp_loaded_cutus_table): New function.
1534 (open_and_init_dwp_file): New function.
1535 (lookup_dwo_cutu): New function.
1536 (lookup_dwo_comp_unit, lookup_dwo_type_unit): Call it.
1541 * breakpoint.c (trace_pass_set_count): Call
1542 observer_notify_breakpoint_modified instead of
1543 observer_notify_tracepoint_modified.
1544 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
1548 * breakpoint.c (catch_syscall_completer): Pass 'word' as second
1549 argument to complete_on_enum.
1553 * configure: Rebuild.
1554 * configure.ac (build_warnings): Add -Wempty-body.
1555 * m68k-tdep.c (m68k_gdbarch_init): Remove empty 'if'.
1556 * remote.c (handle_notification): Use braces for empty 'else' body.
1557 * s390-tdep.c (s390_analyze_prologue): Use braces for empty
1559 * sh64-tdep.c (sh64_push_dummy_call): Use braces for empty
1561 * solib-som.c (som_relocate_section_addresses): Use braces
1562 for empty 'else' body.
1563 * ui-file.c (stdio_file_write): Use braces for empty 'if' body.
1564 (stdio_file_write_async_safe, stdio_file_fputs): Likewise.
1570 * infrun.c (handle_inferior_event)
1571 <TARGET_WAITKIND_EXITED/TARGET_WAITKIND_SIGNALLED>: Switch to
1572 null_ptid before handling a vfork child exec or exit. Switch to
1573 the event ptid afterwards.
1577 * std-operator.def: Remove OP_LABELED.
1578 * eval.c: Remove the declaration of 'get_label'.
1579 (get_label): Remove.
1580 (evaluate_struct_tuple): Remove code handling OP_LABELED.
1582 Remove local variable 'variantno' and related code.
1583 Replace 'substruct_type' with 'struct_type'. Replace 'subfieldno'
1585 * expprint.c (print_subexp_standard): Likewise.
1586 (dump_subexp_body_standard): Likewise.
1587 * parse.c (operator_length_standard): Likewise.
1591 Incorporate ARI web page generator into GDB sources.
1592 * contrib/ari/create-web-ari-in-src.sh: New file.
1593 * contrib/ari/gdb_ari.sh: New file.
1594 * contrib/ari/gdb_find.sh: New file.
1595 * contrib/ari/update-web-ari.sh: New file.
1599 * gdbarch.c: Rebuild.
1600 * gdbarch.sh: Remove references to gdbarch_swap.
1601 * corelow.c (core_open): Remove obsolete comment.
1606 * c-typeprint.c (c_print_type): Don't print a space for vector
1607 types, this is handled within the suffix.
1608 (c_type_print_varspec_suffix): Add a space to vector suffix.
1612 * amd64-tdep.c (amd64_relocate_instruction): Use
1613 store_unsigned_integer instead of memcpy.
1614 * i386-tdep.c (i386_relocate_instruction): Ditto.
1618 * infrun.c (handle_inferior_event): Merge handling of
1619 TARGET_WAITKIND_EXITED and TARGET_WAITKIND_SIGNALLED into a single
1624 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_SIGNALLED>:
1629 * target.c (target_waitstatus_to_string): Handle
1630 TARGET_WAITKIND_VFORK_DONE.
1634 * infrun.c (handle_inferior_event): Print TARGET_WAITKIND_VFORKED
1635 as "TARGET_WAITKIND_VFORKED", not "TARGET_WAITKIND_FORKED".
1639 * ravenscar-sparc-thread.c (ravenscar_sparc_fetch_registers):
1644 * ravenscar-thread.c (ravenscar_wait): Only update the list
1645 of threads and inferior_ptid if the inferior is still alive.
1649 * ada-lang.c (is_known_support_routine): Use lbasename when
1650 matching the symtab's filename against
1651 known_runtime_file_name_patterns.
1655 * ada-lang.c (ada_same_array_size_p): New function.
1656 (ada_promote_array_of_integrals): New function.
1657 (coerce_for_assign): Add handling of arrays where the elements
1658 are integrals of a smaller size than the size of the target
1663 * doublest.c (convert_doublest_to_floatformat): Fix comparison
1664 against maximum exponent value.
1668 * ada-lang.h (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Add entry for
1673 * ada-lang.c (ada_template_to_fixed_record_type_1): Do not
1674 strip typedef layer when computing the fixed type's field type,
1675 only when computing its size.
1680 * i386-tdep.c (i386_return_value): Handle complex double and long
1685 * windows-nat.c (windows_create_inferior) [!__CYGWIN__]:
1686 New local variable args_len.
1687 Quote the name of the executable when computing the command line.
1694 * amd64-tdep.h (enum amd64_regnum): Add AMD64_ST1_REGNUM and
1696 * amd64-tdep.c (amd64_classify): Classify complex types.
1697 (amd64_return_value): Handle the COMPLEX_X87 class.
1701 * rs6000-aix-tdep.c (rs6000_aix_auto_wide_charset): New function.
1702 (rs6000_aix_init_osabi): Set auto_wide_charset gdbarch method.
1706 * amd64-windows-tdep.c (amd64_windows_auto_wide_charset): New
1708 (amd64_windows_init_abi): Set auto_wide_charset gdbarch method
1709 to amd64_windows_auto_wide_charset.
1713 * event-top.c (mark_async_signal_handler_wrapper): Remove.
1714 * event-top.h: Remove its declaration.
1715 (async_request_quit): Call mark_async_signal_handler instead of
1716 mark_async_signal_handler_wrapper.
1717 (async_do_nothing, async_disconnect): Likewise.
1718 (async_stop_sig): Likewise.
1719 * remote.c (handle_remote_sigint): Likewise.
1720 (handle_remote_sigint_twice): Likewise.
1724 * event-top.c (sigint_token, sighup_token): Replace 'void *'
1725 with 'static struct async_signal_handler *'.
1726 (sighup_token, sigquit_token, sigstp_token): Likewise.
1730 * gdbarch.sh (function_list): Use 'pstring' when printing
1731 a variable which could return NULL.
1732 * gdbarch.c: Regenerate.
1737 * rs6000-aix-tdep.c (rs6000_aix_osabi_sniffer): Replace
1738 inneffective if condition by gdb assertion. Add function
1739 description comment.
1743 * parser-defs.h (struct exp_descriptor): Document constraint
1744 on return value for "op_name" callbacks.
1748 * tracepoint.c (print_one_static_tracepoint_marker): Constify.
1749 * symtab.c (iterate_over_some_symtabs): Constify.
1750 * source.h (symtab_to_fullname): Return 'const char *'.
1751 * source.c (symtab_to_fullname): Return 'const char *'.
1752 * python/py-symtab.c (stpy_fullname): Constify.
1753 * cli/cli-cmds.c (edit_command): Constify.
1754 * breakpoint.c (print_breakpoint_location)
1755 (update_static_tracepoint): Constify.
1759 * breakpoint.c (compare_breakpoints): Fix comparison.
1763 * valprint.c (generic_emit_char, generic_printstr): Pass size of
1764 gdb_wchar_t to convert_between_encodings.
1768 * breakpoint.c (invalidate_bp_value_on_memory_change): Add one
1769 more parameter 'inferior'.
1770 * corefile.c (write_memory_with_notification): Caller update.
1772 * mi/mi-cmd-var.c: Include "mi-main.h".
1773 (mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
1774 to 1 and restore it later.
1775 * mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
1776 and "data-write-memory-bytes.
1777 * mi/mi-interp.c: Include objfiles.h.
1778 (mi_interpreter_init): Call observer_attach_memory_changed.
1779 (mi_memory_changed): New.
1780 * mi/mi-main.h (struct mi_suppress_notification) <memory>:
1783 * NEWS: Mention new MI notification "memory-changed".
1787 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Remove comment.
1791 New option -nh: inhibit loading of ~/.gdbinit.
1792 * NEWS: Mention -nh.
1793 * main.c (captured_main): Recognize and process -nh.
1794 (print_gdb_help): Mention -nh.
1795 * gdb.1: Mention -nh. Remove erroneous docs on -nx behavior.
1801 * i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
1803 * i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
1804 nor pc_regnum_from_eax.
1805 * amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
1806 nor pc_regnum_from_eax.
1810 Fix entry values resolving in inlined frames.
1811 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
1812 gdbarch and caller_frame initialization later. Skip INLINE_FRAME
1817 * configure.ac: Build with -DMS_WIN64 if building with Python
1818 enabled using GCC on amd64-windows.
1819 * configure: Regenerate.
1824 * python/py-symtab.c (del_objfile_sal): Set 'symtab' field
1830 * python/py-symbol.c (sympy_dealloc): Check for NULL symbol.
1834 * remote-sim.c (gdbsim_create_inferior): Call init_thread_list to
1835 reset thread numbering back to 1.
1839 PR breakpoints/14643.
1840 * linespec.c (struct ls_parser): New member keyword_ok.
1841 (linespec_lexer_lex_string): Add comment.
1842 (linespec_lexer_lex_one): Ignore keywords if it's the wrong place
1844 (parse_linespec): Set keyword_ok.
1848 * dwarf2read.c (process_psymtab_comp_unit_reader): Remove duplicate
1849 "0x" prefix on address in log message.
1851 * dwarf2read.c (read_1_byte): Add const to buf parameter.
1852 (read_1_signed_byte, read_2_bytes, read_2_signed_bytes): Ditto.
1853 (read_4_bytes, read_4_signed_bytes, read_8_bytes): Ditto.
1854 (lookup_dwo_file): Add const to dwo_name parameter.
1855 (lookup_dwo_comp_unit, lookup_dwo_type_unit): Ditto.
1859 Fix crash during stepping on ppc32.
1860 * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL
1866 * buildsym.c (buildsym_init): Reset using_directives to NULL.
1870 * remote-sim.c (dump_mem): Always dump buffer contents, zero fill
1871 output and use uint32_t not long to ensure 4 byte size.
1875 * rs6000-nat.c (add_vmap): Set "last" to "next" after having
1880 * target.c (simple_search_memory): Include access length in
1887 * solib.c (solib_find): Prevent GDB from loading native libraries when
1888 debugging a cross-target corefile.
1892 Make definition match declaration.
1894 * regcache.c (regcache_register_status): Change return type to
1895 enum register_status.
1899 * mi/mi-main.c (mi_cmd_data_write_memory): Call
1900 write_memory_with_notification instead of write_memory.
1901 (mi_cmd_data_write_memory_bytes): Call write_memory_with_notification
1902 instead of target_write_memory.
1906 * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Emit error
1907 when the length of content is not an even number.
1911 Fix https://bugzilla.redhat.com/show_bug.cgi?id=849357
1912 * cp-valprint.c (cp_print_value_fields): Use get_vptr_fieldno.
1916 * sol-thread.c (sol_thread_fetch_registers)
1917 (sol_thread_store_registers): Delete commented out code.
1921 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
1922 Move these functions to sparc-sol-thread.c.
1923 * sparc-sol-thread.c: New file.
1924 * configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and
1925 sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native
1927 * configure: Regenerate.
1931 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
1932 Remove commented-out code.
1936 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
1937 Enable this code for sparc hosts only.
1941 * procfs.h (procfs_find_LDT_entry): Add declaration.
1942 * sol-thread.c (ps_lgetLDT): Delete local declaration of
1943 function procfs_find_LDT_entry.
1947 * procfs.c (proc_get_LDT_entry): Make static.
1951 * procfs.c (proc_find_memory_regions): Fix declaration.
1955 * amd64-tdep.c (amd64_return_value): Revert previous change
1956 that used TYPE_LENGTH directly.
1957 * bfin-tdep.c (bfin_extract_return_value): Likewise.
1958 (bfin_store_return_value): Likewise.
1959 * cris-tdep.c (cris_store_return_value): Likewise.
1960 (cris_extract_return_value): Likewise.
1961 * h8300-tdep.c (h8300_extract_return_value): Likewise.
1962 * hppa-tdep.c (hppa64_return_value): Likewise.
1963 * lm32-tdep.c (lm32_store_return_value): Likewise.
1964 * microblaze-tdep.c (microblaze_store_return_value): Likewise.
1965 * spu-tdep.c (spu_value_from_register): Likewise.
1966 * vax-tdep.c (vax_return_value): Likewise.
1970 * gdbtypes.c (lookup_array_range_type): Expand parameters
1971 LOW_BOUND and HIGH_BOUND to LONGEST.
1972 (lookup_string_range_type): Likewise.
1973 * gdbtypes.h (lookup_array_range_type): Likewise.
1974 (lookup_string_range_type): Likewise.
1975 * valops.c (value_cstring): Expand parameter LEN to ssize_t.
1976 Expand HIGHBOUND to ssize_t.
1977 (value_string): Likewise.
1978 * value.h (value_cstring): Expand parameter LEN to ssize_t.
1979 (value_string): Likewise.
1983 PR breakpoints/13898
1984 * breakpoint.h (tracepoint_breakpoint_ops): Forward declaration.
1985 * mi/mi-cmd-break.c (mi_cmd_break_insert): Set breakpoint_ops
1986 per breakpoint type.
1990 * procfs.c: Add gdb_bfd header.
1991 * rs6000-nat.c: Likewise.
1992 * solib-pa64.c: Likewise.
1993 * spu-linux-nat.c: Likewise.
1994 * windows-nat.c: Likewise.
1998 * f-lang.h (BLANK_COMMON_NAME_LOCAL): Remove.
2002 * dwarf2read.c (mark_common_block_symbol_computed): New function.
2003 (read_common_block): Handle child DIEs with
2004 DW_AT_data_member_location.
2005 (new_symbol_full): Add special case for common blocks.
2010 * dwarf2read.c (read_common_block): Rewrite.
2011 (new_symbol_full): Handle DW_TAG_common_block.
2012 * f-lang.c (head_common_list, find_common_for_function):
2014 * f-lang.h (struct common_entry, struct saved_f77_common,
2015 SAVED_F77_COMMON, SAVED_F77_COMMON_PTR, COMMON_ENTRY,
2016 COMMON_ENTRY_PTR, head_common_list, find_common_for_function,
2017 BLANK_COMMON_NAME_LOCAL): Remove.
2018 (struct common_block): New.
2019 * f-valprint.c (list_all_visible_commons): Remove.
2020 (info_common_command_for_block): New function.
2021 (info_common_command): Use it.
2022 * stack.c (iterate_over_block_locals): Special case for
2023 COMMON_BLOCK_DOMAIN.
2024 * symtab.h (enum domain_enum_tag) <COMMON_BLOCK_DOMAIN>: New
2026 (struct general_symbol_info) <value.common_block>: New field.
2027 (SYMBOL_VALUE_COMMON_BLOCK): New define.
2032 * f-lang.c (allocate_saved_bf_node,
2033 allocate_saved_function_node, allocate_saved_f77_common_node,
2034 allocate_common_entry_node, tail_common_list, current_common,
2035 saved_bf_list, saved_bf_list_end, current_head_bf_list,
2036 tmp_bf_ptr, add_common_block, add_common_entry,
2037 find_first_common_named, patch_common_entries,
2038 patch_all_commons_by_name, ADD_BF_SYMNUM, clear_bf_list,
2039 global_remote_debug, get_bf_for_fcn, saved_function_list,
2040 saved_function_list_end, clear_function_list, struct saved_fcn,
2041 struct saved_bf_symnum, SAVED_FUNCTION, SAVED_FUNCTION_PTR,
2042 SAVED_BF, SAVED_BF_PTR): Remove.
2043 * f-lang.h (tail_common_list, current_common,
2044 UNINITIALIZED_SECNUM, COMMON_NEEDS_PATCHING,
2045 BLANK_COMMON_NAME_ORIGINAL, BLANK_COMMON_NAME_MF77,
2046 DEFAULT_UPPER_BOUND, DEFAULT_LOWER_BOUND, real_main_name,
2047 real_main_c_value): Remove.
2048 * f-valprint.c (there_is_a_visible_common_named): Remove.
2052 * breakpoint.c (update_global_location_list): Ignore previous
2053 duplicate status of a breakpoint when starting a new scan for
2054 duplicate breakpoints.
2057 PR breakpoints/14419
2058 * arm-tdep.c (arm_skip_prologue): Extending producer check to
2059 support LLVM compiler.
2063 * amd64-tdep.c (amd64_return_value): Use TYPE_LENGTH directly.
2064 * bfin-tdep.c (bfin_extract_return_value): Likewise.
2065 (bfin_store_return_value): Likewise.
2066 * cris-tdep.c (cris_store_return_value): Likewise.
2067 (cris_extract_return_value): Likewise.
2068 * h8300-tdep.c (h8300_extract_return_value): Likewise.
2069 * hppa-tdep.c (hppa64_return_value): Likewise.
2070 * lm32-tdep.c (lm32_store_return_value): Likewise.
2071 * microblaze-tdep.c (microblaze_store_return_value): Likewise.
2072 * spu-tdep.c (spu_value_from_register): Likewise.
2073 * vax-tdep.c (vax_return_value): Likewise.
2077 * breakpoint.c (invalidate_bp_value_on_memory_change): Expand
2078 parameter LEN to ssize_t.
2082 * ada-valprint.c (ada_val_print_1): Eliminate single-use
2084 * alpha-tdep.c (alpha_extract_return_value): Use TYPE_LENGTH
2086 (alpha_store_return_value): Likewise.
2087 * amd64-tdep.c (amd64_classify_aggregate): Likewise.
2088 (amd64_push_arguments): Likewise.
2089 * ax-gdb.c (gen_trace_static_fields): Likewise.
2090 (gen_traced_pop): Likewise.
2091 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
2092 * breakpoint.c (update_watchpoint): Likewise.
2093 * findcmd.c (parse_find_args): Use local variable for type
2095 * findvar.c (default_read_var_value): Use TYPE_LENGTH directly.
2096 * h8300-tdep.c (h8300h_extract_return_value): Likewise.
2097 (h8300_store_return_value): Likewise.
2098 * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
2099 Use i386_darwin_arg_type_alignment directly.
2100 * infcall.c (call_function_by_hand): Use TYPE_LENGTH directly.
2101 * lm32-tdep.c (lm32_push_dummy_call): Likewise.
2102 * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
2103 (m68hc11_extract_return_value): Likewise.
2104 * mep-tdep.c (mep_push_dummy_call): Likewise.
2105 * printcmd.c (float_type_from_length): Likewise.
2106 * s390-tdep.c (s390_value_from_register): Likewise.
2107 * stack.c (read_frame_arg): Likewise.
2108 * tracepoint.c (encode_actions_1): Likewise.
2109 * valops.c (value_fetch_lazy): Use local variable for type
2110 instead of length. Use TYPE_LENGTH directly.
2111 * value.c (value_contents_equal): Use TYPE_LENGTH directly.
2115 * symtab.c (skip_prologue_sal): Fix typo in comment.
2119 * linespec.c (create_sals_line_offset): Fix typo in comment.
2123 * c-typeprint.c (c_type_print_varspec_suffix): Remove cast and
2124 use plongest to print the array size.
2128 * m2-typeprint.c (m2_enum): Expand LASTVAL to LONGEST.
2129 * p-valprint.c (pascal_type_print_base): Likewise.
2133 * remote.c (remote_get_trace_status): Remove setting default
2134 values of fields of 'ts'.
2138 Fix internal error on canonicalization of clang types.
2139 * cp-name-parser.y (operator): New comment at make_operator call for
2140 new, delete, new[] and delete[].
2141 (exp): Use "sizeof ". Add new comment at make_operator call.
2145 Fix disassemble without parameters in tailcall frame.
2146 * cli/cli-cmds.c (disassemble_current_function): Use
2147 get_frame_address_in_block.
2151 * c-typeprint.c (c_type_print_base) <TYPE_CODE_STRUCT,
2152 TYPE_CODE_UNION>: Unify, removing a goto.
2156 * c-typeprint.c (cp_type_print_derivation_info): Fix comment.
2160 * findvar.c (read_frame_register_value): Mark the result value as
2161 optimized out if any of the input registers have been optimized out.
2165 * python/python.c (finalize_python): Only define if HAVE_PYTHON.
2169 * eval.c (evaluate_subexp_standard): Eliminate single-use
2174 * mi/mi-interp.c: Declare mi_record_changed.
2175 (mi_interpreter_init): Call observer_attach_record_changed.
2176 (mi_record_changed): New.
2177 * record.c (record_open): Call observer_notify_record_changed.
2178 (cmd_record_stop): Call observer_notify_record_changed.
2184 * python/python.c (finalize_python): New function.
2185 (_initialize_python): Make a final cleanup.
2189 * buildsym.h (param_symbols): Delete, unused.
2190 (context_stack): Delete member "params", unused.
2191 * buildsym.c (push_context): Update.
2192 * dwarf2read.c (read_func_scope): Update.
2196 * sh-tdep.c (sh_register_convert_to_virtual)
2197 (sh_register_convert_to_raw): Add a gdbarch parameter. Update
2198 all callers. Just do a memcpy if not the little-endian case.
2200 * h8300-tdep.c (h8300_gdbarch_init): Invoke
2201 set_gdbarch_double_format and set_gdbarch_long_double_format.
2202 * m68hc11-tdep.c (m68hc11_gdbarch_init): Invoke
2203 set_gdbarch_double_format.
2204 * sh-tdep.c (sh_gdbarch_init): Likewise.
2206 * NEWS: Document the removal of SH's 'regs' command.
2207 * sh-tdep.c (_initialize_sh_tdep): Remove the deprecated 'regs'
2212 * infcmd.c (_initialize_infcmd): Register `j' as an alias for
2217 * linespec.c (iterate_over_all_matching_symtabs): Use the correct
2218 language when iterating over symbols.
2222 * mi/mi-interp.c: Declare mi_tsv_created and mi_tsv_deleted.
2223 (mi_interpreter_init): Call observer_attach_tsv_created and
2224 observer_attach_tsv_deleted.
2225 (mi_tsv_created, mi_tsv_deleted): New.
2226 * tracepoint.c (delete_trace_state_variable): Call
2227 observer_notify_tsv_deleted.
2228 (trace_variable_command): Call observer_notify_tsv_created.
2229 (delete_trace_variable_command): Call
2230 observer_notify_tsv_deleted.
2231 (create_tsv_from_upload): Call observer_notify_tsv_created.
2236 * tracepoint.c (tfind_1): Call observer_notify_traceframe_changed
2237 if traceframe changed.
2238 * mi/mi-cmds.c (mi_cmd mi_cmds): Adjust for command
2240 * mi/mi-interp.c: Declare 'mi_traceframe_changed'.
2241 (mi_interpreter_init): Hook mi_traceframe_changed to observer
2242 'traceframe_changed'.
2243 (mi_traceframe_changed): New.
2244 * mi/mi-main.h (struct mi_suppress_notification) <traceframe>:
2246 * NEWS: Mention the new MI notification.
2250 * MAINTAINERS (Write After Approval): Add "Mike Wrighton".
2254 * common/linux-ptrace.c: Change __i386__ to __i386__ || __x86_64__.
2255 (linux_ptrace_test_ret_to_nx): Extend comment for x86_64. Change
2256 __i386__ to __i386__ || __x86_64__. Extend code also for __x86_64__.
2257 Extend code also for PaX support. Convert all gdb_assert to warning
2262 Implement auto-load user conveniences suggested by Doug Evans.
2263 * auto-load.c: Include top.h.
2264 (file_is_auto_load_safe): New variable advice_printed. Print advice.
2265 (_initialize_auto_load): New variable scripts_directory_help. Mention
2266 GDBPY_AUTO_FILE_NAME and GDB_AUTO_FILE_NAME for set auto-load
2267 scripts-directory. Document in online help one can use also files for
2268 set auto-load safe-path.
2269 * python/py-auto-load.c: (GDBPY_AUTO_FILE_NAME): Move it from here ...
2270 * python/python.h (GDBPY_AUTO_FILE_NAME): ... to here.
2274 * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused definition
2279 * m2-valprint.c (m2_print_array_contents): Eliminate variable
2280 ELTLEN and use TYPE_LENGTH directly.
2281 (m2_val_print): Likewise.
2282 * m68k-tdep.c (m68k_svr4_extract_return_value): Eliminate
2283 variable LEN and use TYPE_LENGTH directly.
2284 (m68k_svr4_store_return_value): Likewise.
2285 * mips-tdep.c (mips_o32_push_dummy_call): Eliminate variable
2286 ARGLEN and use TYPE_LENGTH directly.
2287 (mips_o64_push_dummy_call): Likewise.
2288 * s390-tdep (s390_function_arg_pass_by_reference): Eliminate
2289 variable LENGTH and use TYPE_LENGTH directly.
2290 (s390_function_arg_float): Likewise.
2291 (s390_function_arg_integer): Likewise.
2292 (s390_push_dummy_call): Likewise.
2293 (s390_return_value_convention): Likewise.
2294 * spu-tdep.c (spu_push_dummy_call): Eliminate LEN and use
2295 TYPE_LENGTH directly.
2299 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
2300 Update comment to add_setshow_integer_cmd.
2301 * cli/cli-setshow.c (do_set_command): Handle case
2302 'var_zuinteger_unlimited'.
2303 (do_show_command): Likewise.
2304 * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
2305 for command 'remotetimeout'.
2306 * command.h (enum var_types): New zuinteger_unlimited. Update comment
2308 * source.c (_initialize_source): Call
2309 add_setshow_zuinteger_unlimited_cmd for command 'set listsize'.
2313 * infrun.c (restore_infcall_suspend_state): Eliminate single-use
2319 * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames.
2320 (frame_pop): Drop also TAILCALL_FRAME frames.
2321 * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames.
2327 * infrun.c (handle_inferior_event): Do not reverse-continue back to the
2328 function start if we are already at function start. Both for
2329 reverse-next and for reverse-step into function without line number
2334 Code cleanup - rename 'inline' depth to 'artificial' depth.
2335 * breakpoint.c (set_momentary_breakpoint): Rename at a caller to
2336 frame_id_artificial_p, extend the comment.
2337 * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
2338 * frame.c (fprint_frame_id): Rename at a user, change debug output
2339 text to "artificial=".
2340 (skip_inlined_frames): Rename to ...
2341 (skip_artificial_frames): ... here. Extend the comment.
2342 (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
2343 (frame_id_inlined_p): Rename to ...
2344 (frame_id_artificial_p): ... here. Rename at a user.
2345 (frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
2346 (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
2348 * frame.h (struct frame_id): Rename inline_depth to artificial_depth.
2350 (frame_id_inlined_p): Rename to ...
2351 (frame_id_artificial_p): ... here.
2352 * inline-frame.c (inline_frame_this_id): Rename at a user.
2356 * c-typeprint.c (c_type_print_varspec_suffix): Display the size of
2357 vector variables using vector_size syntax rather than array
2362 * valarith.c (value_concat): Replace unsafe ALLOCA with
2367 * gdb.1 (SEE ALSO): Expand pointer to GDB's Texinfo manual.
2371 Point contrib/cc-with-tweaks.sh to the build-local data-directory.
2372 * contrib/cc-with-tweaks.sh (GDB): Add -data-directory
2373 data-directory as appropriate.
2377 * printcmd.c (ui_printf): Eliminate single-use variable
2383 * valops.c (value_assign): Move observer_notify_target_changed
2384 below to replace reinit_frame_cache.
2388 Refactor Python "gdb" module into a proper Python package, by
2389 introducing a new "_gdb" module for code implemented in C, and
2390 using reload/__import__ instead of exec.
2391 * python/lib/gdb/__init__.py: Import * from _gdb.
2392 (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
2393 prompt_hook, sys.argv): Moved from finish_python_initialization.
2394 (pretty_printers, PYTHONDIR): Moved from _initialize_python.
2395 (packages, auto_load_packages): New list and function replacing
2396 module_dict and auto-loading code, using __file__ instead of
2397 gdb.PYTHONDIR and reload/__import__ instead of exec.
2398 (GdbSetPythonDirectory): Replacing function of the same name
2399 from finish_python_initialization, using reload/__import__ instead
2400 of exec, as well as call auto_load_packages.
2401 * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
2402 gdb_python_module and not gdb_module.
2403 * python/python-internal.h (gdb_python_module): Declare.
2404 * python/python.c (gdb_python_module): New global.
2405 (before_prompt_hook): Check gdb_python_module and not gdb_module.
2406 (_initialize_python): Rename gdb module to _gdb.
2407 Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
2408 (finish_python_initialization): Move Python code to
2409 lib/gdb/__init__.py; instead, set up sys.path and import gdb into
2414 * Makefile.in (COMMON_OBS): Add registry.o.
2415 * registry.c: New file.
2416 * registry.h (struct registry_container): Declare.
2417 (registry_data_callback): New typedef.
2418 (struct registry_data, struct registry_data_registration, struct
2419 registry_data_registry): New type.
2420 (register_data_with_cleanup, registry_alloc_data)
2421 (registry_callback_adaptor, registry_clear_data)
2422 (registry_container_free_data, registry_set_data, registry_data):
2424 (DEFINE_REGISTRY): Refactor structures and functions as shims over
2425 the new common structures and functions.
2426 (DECLARE_REGISTRY): Declare struct TAG ## _data. Use the tagged
2431 * remote.c (remote_insert_hw_breakpoint): Throw exception if
2432 there is an error inserting hardware breakpoints and use the
2433 error message from the target.
2435 * breakpoint.c (insert_bp_location, insert_breakpoint_locations):
2436 Catch this exception and print the error message contained within.
2437 Do not print the default hardware error breakpoint message in this
2442 * dwarf2read.c (dwarf2_read_addr_index): Fix handling the case where
2447 * dwarf2read.c (dw2_do_expand_symtabs_matching): Don't examine
2448 .gdb_index symbol attributes if there are none.
2452 * symtab.h (struct minimal_symbol) [has_size]: New field.
2453 (MSYMBOL_SIZE): Adjust to forbid macro from being used as lvalue.
2454 (SET_MSYMBOL_SIZE, MSYMBOL_HAS_SIZE): New macros.
2455 * printcmd.c (build_address_symbolic): Only filter out zero-sized
2456 minimal symbols if the symbol's size is actually known.
2457 * minsyms.c (prim_record_minimal_symbol_full): Adjust setting
2458 of msymbol's size field. Add comment.
2459 * elfread.c (elf_symtab_read, elf_rel_plt_read): Use
2460 SET_MSYMBOL_SIZE to set the minimal symbol size.
2464 * minsyms.c (install_minimal_symbols): Use memset to fill entire
2465 minimal_symbol struct object, rather than setting some of its
2470 * c-typeprint.c (c_type_print_varspec_prefix): Pass through the
2471 passed_a_ptr flag when displaying typedef types.
2475 * ada-lang.c (coerce_unspec_val_to_type): Make sure that
2476 the optimized_out flag is preserved.
2480 * moxie-tdep.c (moxie_analyze_prologue): Update for function
2481 prologue changes in GCC.
2486 * gdbtypes.h (BOOL_PTR_CONVERSION_BADNESS): Rename to ...
2487 (BOOL_CONVERSION_BADNESS): ... this.
2488 * gdbtypes.c (BOOL_PTR_CONVERSION_BADNESS): Likewise.
2489 (rank_one_type): Allow all boolean conversions
2490 permitted by the standard.
2494 * python/py-newobjfileevent.c (create_new_objfile_event_object):
2495 Don't decref py_objfile.
2499 Do not enable -lmcheck by default when Python is enabled with
2501 * configure.ac: (python_has_threads) New variable, by testing
2502 if WITH_THREAD is defined in Python.h.
2503 Move --enable-lmcheck after --with-python.
2504 Do not enable -lmcheck by default if python_has_threads=yes.
2505 Warn if --enable-lmcheck and python_has_threads=yes.
2506 * configure: Regenerate.
2510 * mi/mi-cmds.c (mi_cmds): New macros DEF_MI_CMD_CLI
2511 DEF_MI_CMD_MI DEF_MI_CMD_CLI_1 and DEF_MI_CMD_CLI_1.
2512 Update some commands.
2513 * mi/mi-cmds.h (struct mi_cmd) <suppress_notification>: New field.
2514 * mi/mi-main.c (mi_cmd_execute): Set
2515 '*parse->cmd->suppress_notification' to 1.
2519 * mi/mi-cmds.c (mi_cmds): Add 'static'.
2523 * MAINTAINERS (Write After Approval): Add "Khoo Yit Phang".
2527 * main.c (print_gdb_help): Remove reference to
2528 --use-deprecated-index-sections.
2532 * cli/cli-cmds.c (max_user_call_depth): Add 'unsigned'.
2533 (init_cmds): Call add_setshow_uinteger_cmd for command
2534 'max-user-call-depth'.
2535 * cli/cli-script.c (execute_user_command): Add 'unsigned' to the
2536 declaration of 'max_user_call_depth'.
2537 * frame.c (backtrace_limit): Add 'unsigned'.
2538 (_initialize_frame): Call add_setshow_uinteger_cmd for command
2540 * remote.c (remoteaddresssize): Add 'unsigned'.
2541 (remote_address_masked): Change local var 'address_size' to
2543 (_initialize_remote): Call add_setshow_uinteger_cmd for
2544 'remoteaddresssize'.
2545 * top.c (history_size): Add 'unsigned'.
2546 (show_commands): Change local variables to 'unsigned'.
2547 (set_history_size_command): Don't check history_size is negative.
2548 Adjust the condition to call unstifle_history and set history_size
2555 * infcmd.c (default_print_one_register_info): New, factored out
2556 from default_print_registers_info.
2557 (default_print_registers_info): Use it. Mark value unavailable if
2559 (registers_info): Print user registers with
2560 default_print_one_register_info.
2565 * tui/tui-source.c (tui_source_is_displayed): Check if TUI_SRC_WIN
2566 is not NULL before referencing it.
2570 * breakpoint.c (parse_breakpoint_sals) <(*address) == NULL>: New
2571 variable pc. Call find_pc_line instead of find_pc_overlay, restore
2577 * auto-load.c (auto_load_objfile_script): Rename to ...
2578 (auto_load_objfile_script_1): ... here, change variable realname to
2579 parameter realname, document it, add return value, add variable retval.
2580 (auto_load_objfile_script): New function.
2584 * cli/cli-decode.c (print_doc_line): Keep skipping '.' and ',' not
2585 followed by a whitespace.
2590 * dwarf2read.c (dwarf2_locate_sections): Move variable aflag here.
2591 Move the SEC_HAS_CONTENTS check here - for any NAMES use.
2592 (dwarf2_locate_sections) <eh_frame>: Move the variable and check from
2597 * memattr.c (create_mem_region): Fix memory region overlapping
2602 * h8300-tdep.c (h8300_push_dummy_call): Replace unsafe alloca
2603 with xmalloc/cleanup.
2604 * mt-tdep.c (mt_push_dummy_call): Likewise.
2605 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
2606 * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
2610 * jv-exp.y (push_expression_name): Add "." at the end of error
2615 Document how to return from "python-interactive" to GDB.
2616 * python/python.c (_initialize_python): Update documentation.
2620 * infrun.c (_initialize_infrun) <handle command help text>:
2621 Mention that multiple signals are supported.
2625 * infcmd.c (_initialize_infcmd) <signal command>: Fix typo in help
2630 * tracepoint.c (disconnect_tracing): Call set_tracepoint_num.
2631 (tfind_1): Don't call registers_changed, set_traceframe_num,
2632 and clear_traceframe_info.
2633 Call set_current_traceframe.
2634 (set_current_traceframe): call set_traceframe_num.
2638 * remote-sim.c (_initialize_remote_sim): Pass NULL argument to
2639 `register_inferior_data_with_cleanup', fixing regression on PowerPC64.
2643 Enable readline in Python in a GDB-specific way and block the
2644 standard Python readline module to prevent conflicts with GDB.
2645 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
2646 (SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
2647 (py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
2648 * python/py-gdb-readline.c: New file.
2649 * python/python-internal.h (gdbpy_initialize_gdb_readline): New
2651 * python/python.c (_initialize_python): Call
2652 gdbpy_initialize_gdb_readline.
2656 * defs.h: Include build-gnulib/config.h
2660 * arm-tdep.c (thumb_get_next_pc_raw): Mask off low bits for bx pc
2665 Add a new "python-interactive" command that starts a standard
2666 Python interactive prompt with "pi" as alias, and add "py" as
2667 an alias to "python".
2668 * NEWS: Mention the new commands.
2669 * python/python.c (eval_python_command): New function.
2670 (python_interactive_command): For "python-interactive" with
2671 arguments, call eval_python_command. For "python-interactive"
2672 without arguments, call PyRun_InteractiveLoop.
2673 (_initialize_python): Add "python-interactive" command with
2674 "pi" as alias, and add "py" as an alias to "python".
2678 * defs.h (quit_flag): Don't declare.
2679 (clear_quit_flag, check_quit_flag, set_quit_flag): Declare.
2680 (QUIT): Use new functions.
2681 * event-top.c (command_handler): Use clear_quit_flag.
2682 (handle_sigint): Use set_quit_flag.
2683 (async_request_quit): Use check_quit_flag. Don't check
2685 * exceptions.c (throw_exception): Use clear_quit_flag.
2686 * main.c (captured_main): Use clear_quit_flag.
2687 * python/python.c (clear_quit_flag, set_quit_flag)
2688 (check_quit_flag): New functions.
2689 * remote-sim.c (gdb_os_poll_quit): Use check_quit_flag,
2691 * remote.c (remote_wait_as): Use check_quit_flag,
2693 (remote_start_remote): Call QUIT.
2694 * symfile.c (load_progress): Use check_quit_flag.
2695 * top.c (command_loop): Use clear_quit_flag.
2696 (command_line_input): Call QUIT.
2697 * utils.c (quit_flag): Conditionally define.
2698 (clear_quit_flag, check_quit_flag, set_quit_flag): New
2700 (prompt_for_continue): Call QUIT. Use quit, not
2702 * remote-mips.c (mips_expect_timeout): Call QUIT.
2703 * monitor.c (monitor_expect): Call QUIT.
2707 * event-top.c (sigwinch_token, handle_sigwinch): Remove.
2708 (async_init_signals): Update.
2709 * utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
2710 (SIGWINCH_HANDLER_BODY): Remove.
2714 * jit.c (jit_object_close_impl): Don't malloc the objfile
2716 * objfiles.c (allocate_objfile): Don't malloc the objfile
2718 (free_objfile): Don't free the objfile name.
2719 * objfiles.h (struct objfile) <name>: Update comment.
2720 * symfile.c (reread_symbols): Fix reference counting. Don't
2721 malloc objfile name.
2725 * windows-nat.c (windows_make_so): Use gdb_bfd_open.
2726 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_open.
2727 (symfile_bfd_open): Likewise.
2728 (generic_load): Likewise.
2729 * solib.c (solib_bfd_fopen): Use gdb_bfd_open.
2730 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
2732 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2734 * rs6000-nat.c (add_vmap): Use gdb_bfd_open.
2735 * remote-mips.c (mips_load_srec): Use gdb_bfd_open.
2736 (pmon_load_fast): Likewise.
2737 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_open.
2738 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_open.
2739 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_open.
2740 (macho_check_dsym): Likewise.
2741 * m32r-rom.c (m32r_load): Use gdb_bfd_open.
2742 (m32r_upload_command): Likewise.
2743 * gdb_bfd.h (gdb_bfd_cache): Declare.
2744 * gdb_bfd.c (struct gdb_bfd_data): New.
2745 (gdb_bfd_cache): New global.
2746 (struct gdb_bfd_cache_search): New.
2747 (hash_bfd): New function.
2749 (gdb_bfd_open): Likewise.
2750 (gdb_bfd_ref): Allocate a gdb_bfd_data and attach to the BFD.
2751 (gdb_bfd_unref): Remove closed BFD from cache. Update for
2753 * exec.c (exec_file_attach): Use gdb_bfd_open.
2754 * dsrec.c (load_srec): Use gdb_bfd_open.
2758 * dwarf2read.c (macro_start_file): Update.
2759 * objfiles.c (get_objfile_bfd_data): Initialize macro_cache.
2760 (free_objfile_per_bfd_storage): Destroy macro_cache.
2761 (allocate_objfile, free_objfile): Update.
2762 * objfiles.h (struct objfile_per_bfd_storage) <macro_cache>:
2764 (struct objfile) <macro_cache>: Remove.
2765 * symfile.c (reread_symbols): Update.
2766 * symmisc.c (print_symbol_bcache_statistics): Update.
2767 (print_objfile_statistics): Update.
2771 * elfread.c (elf_symtab_read): Update.
2772 * objfiles.c (objfiles_bfd_data): New global.
2773 (get_objfile_bfd_data, free_objfile_per_bfd_storage)
2774 (objfile_bfd_data_free, set_objfile_per_bfd): New functions.
2775 (allocate_objfile, free_objfile): Update.
2776 (_initialize_objfiles): Initialize objfiles_bfd_data.
2777 * objfiles.h (struct objfile_per_bfd_storage): New.
2778 (struct objfile) <per_bfd>: New field.
2779 <filename_cache>: Remove.
2780 (set_objfile_per_bfd): Declare.
2781 * symfile.c (reread_symbols): Update. Call
2782 set_objfile_per_bfd.
2783 (allocate_symtab): Update.
2784 * symmisc.c (print_symbol_bcache_statistics): Update.
2785 (print_objfile_statistics): Print the size of the BFD obstack.
2789 * gdb_bfd.h: Include registry.h. Use DECLARE_REGISTRY.
2790 * gdb_bfd.c: Use DEFINE_REGISTRY.
2791 (struct gdb_bfd_data): Add REGISTRY_FIELDS.
2792 (gdb_bfd_ref): Call bfd_alloc_data.
2793 (gdb_bfd_unref): Call bfd_free_data.
2797 * registry.h (struct registry_fields): New.
2798 (REGISTRY_FIELDS): Redefine.
2799 (REGISTRY_ACCESS_FIELD): New macro.
2800 (DEFINE_REGISTRY): Add ACCESS argument. Update defined
2805 * auto-load.c (_initialize_auto_load): Update.
2806 * solib-svr4.c (_initialize_svr4_solib): Update
2807 * solib-dsbt.c (_initialize_dsbt_solib): Update.
2808 * solib-darwin.c (_initialize_darwin_solib): Update.
2809 * registry.h: New file.
2810 * python/py-progspace.c (gdbpy_initialize_pspace): Update.
2811 * python/py-inferior.c (gdbpy_initialize_inferior): Update.
2812 * progspace.h: Include registry.h. Use DECLARE_REGISTRY.
2813 (register_program_space_data_with_cleanup)
2814 (register_program_space_data, program_space_alloc_data)
2815 (clear_program_space_data, set_program_space_data)
2816 (program_space_data): Don't declare.
2817 * progspace.c: Use DEFINE_REGISTRY.
2818 (struct program_space_data, struct
2819 program_space_data_registration, struct
2820 program_space_data_registry, program_space_data_registry)
2821 (register_program_space_data_with_cleanup)
2822 (register_program_space_data, program_space_alloc_data)
2823 (program_space_free_data, clear_program_space_data)
2824 (set_program_space_data, program_space_data): Remove.
2825 * objfiles.h: Include registry.h. Use DECLARE_REGISTRY.
2826 (struct objfile) <data, num_data>: Replace with REGISTRY_FIELDS.
2827 (register_objfile_data_with_cleanup, register_objfile_data)
2828 (clear_objfile_data, set_objfile_data, objfile_data): Don't
2830 * objfiles.c: Use DEFINE_REGISTRY.
2831 (struct objfile_data, struct objfile_data_registration, struct
2832 objfile_data_registry, objfile_data_registry)
2833 (register_objfile_data_with_cleanup, register_objfile_data)
2834 (objfile_alloc_data, objfile_free_data, clear_objfile_data)
2835 (set_objfile_data, objfile_data): Remove.
2836 (_initialize_objfiles): Update.
2837 * jit.c (_initialize_jit): Update.
2838 * inflow.c (_initialize_inflow): Update.
2839 * inferior.h: Include registry.h. Use DECLARE_REGISTRY.
2840 (struct inferior) <data, num_data>: Replace with REGISTRY_FIELDS.
2841 (register_inferior_data_with_cleanup, register_inferior_data)
2842 (clear_inferior_data, set_inferior_data, inferior_data): Don't
2844 * inferior.c: Use DEFINE_REGISTRY.
2845 (struct inferior_data, struct inferior_data_registration, struct
2846 inferior_data_registry, inferior_data_registry)
2847 (register_inferior_data_with_cleanup, register_inferior_data)
2848 (inferior_alloc_data, inferior_free_data clear_inferior_data)
2849 (set_inferior_data, inferior_data): Remove.
2850 * auxv.c (_initialize_auxv): Update.
2851 * ada-lang.c (_initialize_ada_language): Update.
2852 * breakpoint.c (_initialize_breakpoint): Update.
2853 * i386-nat.c (i386_use_watchpoints): Update.
2857 * exec.c (exec_close, exec_file_attach): Update.
2858 (add_to_section_table): Initialize 'key' field.
2859 (add_target_sections, remove_target_sections): Add 'key' argument.
2860 * exec.h (add_target_sections, remove_target_sections): Add
2862 * solib.c (solib_map_sections, update_solib_list, clear_solib)
2863 (reload_shared_libraries_1): Update.
2864 * target.h (struct target_section) <key>: New field.
2868 * cli/cli-cmds.c (filter_sals): Handle nelts == 0 case.
2872 * symfile.c (allocate_symtab): Use host_address_to_string
2873 function instead of cast of pointer to long which is not
2874 compatible with x86_64-w64-mingw32 build.
2878 * mips-tdep.c (is_octeon): New function.
2879 (is_octeon_bbit_op): New function.
2880 (mips32_next_pc): Handle Octeon's bbit instructions.
2881 (mips32_instruction_has_delay_slot): Likewise.
2885 * mips-tdep.c (mips32_next_pc): Fix line spacing of the comment
2886 before the function.
2890 * mips-tdep.c (mips32_next_pc): Consolidate calls to itype_op.
2895 * c-typeprint.c (c_type_print_varspec_prefix): Pass
2896 -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
2900 * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
2901 The typo broke "make TAGS".
2910 * gdbtypes.c (strict_type_checking): New variable.
2911 (show_strict_type_checking): New function.
2912 (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
2913 if strict type checking is disabled.
2914 (_initialize_gdbtypes): Add "check type" subcommand.
2915 * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
2919 * language.h (type_mode): Remove.
2920 (type_check): Remove.
2921 (struct language_defn): Remove la_type_check.
2922 (STRICT_TYPE): Remove unused macro.
2923 (type_error): Remove.
2924 * language.c (set_type_range_case): Renamed to ...
2925 (set_range_case): ... this. Update all callers.
2926 Remove type_mode/type_check.
2927 (type_mode): Remove.
2928 (type_check): Remove.
2929 (show_type_command): Remove.
2930 (set_type_command): Remove.
2931 (language_info): Remove type checking output.
2932 (type_error): Remove unused function.
2933 (range_error): Update comment.
2934 (unknown_language_defn): Remove la_type_check.
2935 (auto_language_defn): Likewise.
2936 (local_language_defn): Likewise.
2937 (_initialize_language): Remove "check type" subcommand.
2938 * ada-lang.c (ada_language_defn): Remove la_type_check.
2939 * c-lang.c (c_language_defn): Likewise.
2940 (cplus_language_defn): Likewise.
2941 (asm_language_defn): Likewise.
2942 (minimal_language_defn): Likewise.
2943 * d-lang.c (d_language_defn): Likewise.
2944 * f-lang.c (f_language_defn): Likewise.
2945 * go-lang.c (go_language_defn): Likewise.
2946 * jv-lang.c (java_language_defn): Likewise.
2947 * m2-lang.c (m2_language_defn): Likewise.
2948 * objc-lang.c (objc_language_defn): Likewise.
2949 * opencl-lang.c (opencl_language_defn): Likewise.
2950 * p-lang.c (pascal_language_defn): Likewise.
2954 * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
2958 * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
2960 (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
2961 using the regache. Use ia64_hpux_get_register_from_save_state_t
2962 to access the bsp and bspstore registers if not.
2966 * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
2967 * breakpoint.c (detach_breakpoints): Change pid parameter into
2968 a ptid. Adjust code accordingly.
2969 * infrun.c (handle_inferior_event): Delete variable child_pid.
2970 Update call to detach_breakpoints to pass the child ptid for
2972 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
2973 assert that inferior_ptid's lwp is zero.
2974 (linux_handle_extended_wait): Update call to detach_breakpoints.
2975 * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
2980 * inf-ttrace.c (inf_ttrace_follow_fork): When following the
2981 parent, only call detach_breakpoints if tts.tts_event ==
2986 * dwarf2-frame.c (dwarf2_frame_cache): Use
2987 get_frame_address_in_block instead of get_frame_pc as
2988 the bound for executing the frame's FDE.
2992 * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
2993 * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
2994 * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
2995 (c_type_print_varspec_suffix): Likewise.
2996 * eval.c (evaluate_subexp_standard): Likewise.
2997 * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
2998 (f_type_print_varspec_suffix): Likewise.
2999 * gdbtypes.c (is_scalar_type): Likewise.
3000 (recursive_dump_type): Likewise.
3001 * infcall.c (value_arg_coerce): Likewise.
3002 * m2-valprint.c (m2_val_print): Likewise.
3003 * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
3004 (pascal_type_print_varspec_suffix): Likewise.
3005 (pascal_type_print_base): Likewise.
3006 * p-valprint.c (pascal_val_print): Likewise.
3007 (pascal_val_print): Likewise.
3008 * valops.c (value_slice): Likewise.
3009 * valprint.c (scalar_type_p): Likewise.
3010 * valarith.c (value_bitstring_subscript): Remove.
3011 (value_concat): Remove code handling TYPE_CODE_BITSTRING.
3012 Remove comment on TYPE_CODE_BITSTRING.
3014 * stabsread.c (read_type): Don't set TYPE_CODE (type) to
3015 TYPE_CODE_BITSTRING.
3017 * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
3022 * tracepoint.c (trace_find_none_command): Remove.
3023 (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
3027 * remote.c (handle_notification): Remove parameter 'length'.
3028 (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
3032 * gdbtypes.c (opaque_type_resolution): Make static.
3033 Add missing comment.
3034 (overload_debug): Add missing comment.
3035 (show_opaque_type_resolution): Likewise.
3036 (show_overload_debug): Likewise.
3037 (print_bit_vector): Remove unnecessary forward declaration.
3038 (print_arg_types): Likewise.
3039 (dump_fn_fieldlists): Likewise.
3040 (print_cplus_stuff): Likewise.
3044 * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
3045 (gdb_bfd_ref): Initialize new field.
3046 (gdb_bfd_unref): Unref the archive BFD.
3047 (gdb_bfd_openr_next_archived_file): Acquire a reference to the
3053 * python/py-bpevent.c (create_breakpoint_event_object): Update
3055 * python/py-event.c (evpy_add_attribute): Update comment.
3056 * python/py-exitedevent.c (create_exited_event_object): Fix
3057 reference counting and error handling.
3058 * python/py-newobjfileevent.c (create_new_objfile_event_object):
3059 Fix reference counting.
3060 * python/py-signalevent.c (create_signal_event_object): Fix
3061 reference counting and error handling.
3062 * python/py-stopevent.c (emit_stop_event): Fix reference
3064 * python/py-threadevent.c (get_event_thread): Return a
3066 * python/py-type.c (convert_field): Fix reference counting.
3070 * dwarf2read.c (dwarf_decode_macro_bytes)
3071 <DW_MACRO_GNU_transparent_include>: Use pointer to included data
3076 * infcmd.c (_initialize_infcmd): Update help text for the signal,
3077 stepi, nexti, finish, next, step, jump, and continue commands.
3078 * infrun.c (_initialize_infrun): Update help text for the handle
3083 * gdbtypes.c (struct extra): Delete, unused.
3085 * gdbtypes.c: Whitespace cleanup.
3086 (address_space_name_to_int): Remove "extern" from definition.
3087 (_initialize_gdbtypes): Declare with initialize_file_ftype.
3089 * gdbtypes.c (make_pointer_type): Remove redundant setting of
3090 TYPE_POINTER_TYPE (type).
3094 * solib-svr4.c (svr4_free_library_list): Use free_so.
3098 * .gitignore: Add go-exp.c.
3102 * value.c (show_convenience): Tweak comment.
3103 (_initialize_values): Mention convenience functions in the help text
3104 for "show convenience".
3108 * std-operator.def: Remove TERNOP_SLICE_COUNT.
3109 * breakpoint.c (watchpoint_exp_is_const): Remove handling to
3111 * eval.c (evaluate_subexp_standard): Likewise.
3112 * expprint.c (print_subexp_standard): Likewise.
3113 (dump_subexp_body_standard): Likewise.
3114 * parse.c (operator_length_standard): Likewise.
3118 * std-operator.def: Remove OP_BITSTRING.
3119 * breakpoint.c (watchpoint_exp_is_const): Update.
3120 * eval.c (evaluate_subexp_standard): Remove handling to
3122 * expprint.c (print_subexp_standard): Likewise.
3123 (dump_subexp_body_standard): Likewise.
3124 * parse.c (operator_length_standard): Likewise.
3125 * valops.c (value_bitstring): Remove.
3126 * value.h: Remove the declaration of 'value_bitstring'.
3130 * linespec.c (find_methods): Remove unused variables `i1' and
3132 (decode_line_full): Likewise for `arg_start'.
3136 * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
3137 (zlib_decompress_section): Likewise for `section_data'.
3138 (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
3142 Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
3143 * NEWS: Document them.
3144 * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
3146 * python/py-type.c (typy_array_1): New function.
3147 (typy_array): Call it.
3148 (typy_vector): New function.
3149 (type_object_methods): Add "vector".
3150 * python/lib/gdb/function/__init__.py: New file.
3151 * python/lib/gdb/function/strfns.py: New file.
3155 * python/py-type.c (convert_field): Use gdb_py_long_from_longest
3156 for TYPE_FIELD_BITPOS.
3157 (typy_get_sizeof): Likewise for TYPE_LENGTH.
3162 * common/vec.h (VEC_merge): Define.
3163 (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
3164 (DEF_VEC_ALLOC_FUNC_P): Likewise.
3165 (DEF_VEC_ALLOC_FUNC_O): Likewise.
3166 * completer.c: Include gdb_signals.h.
3167 (signal_completer): Define.
3168 * completer.h (signal_completer): Add prototype.
3169 * infcmd.c (_initialize_infcmd): Assign the command
3170 completer for "signal" to handle_completer.
3171 * infrun.c: Include completer.h.
3172 (handle_completer): Define.
3173 (_initialize_infrun): Declare a new local variable c. Store the
3174 result of add_com("handle") to it. Assign the command
3175 completer for "handle" to handle_completer.
3179 * cli/cli-decode.c (set_cmd_prefix): New.
3180 (lookup_cmd_for_prefixlist): New.
3181 (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
3182 of each cmd_list_element in *prefixlist.
3183 (add_setshow_cmd_full): set_cmd_prefix.
3184 (add_alias_cmd): Likewise.
3185 * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
3186 Declare 'auto_boolean_enums'.
3187 * cli/cli-setshow.c: Include "observer.h".
3188 (notify_command_param_changed_p): New.
3189 (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
3191 (do_setshow_command): Split it to ...
3192 (do_set_command, do_show_command): ... them. New.
3193 (do_set_command): Call observer_notify_command_param_changed if
3194 notify_command_param_changed_p returns true.
3195 (cmd_show_list): Caller update.
3196 * auto-load.c (set_auto_load_cmd): Likewise.
3197 * remote.c (show_remote_cmd): Likewise.
3198 * cli/cli-setshow.h: Update declarations.
3199 * top.c (execute_command): Call do_set_command and do_show_command.
3201 * NEWS: Mention new MI notification.
3202 * mi/mi-interp.c: Declare mi_command_param_changed.
3203 (mi_interpreter_init): Attach mi_command_param_changed to
3204 observer command_param_changed.
3205 (mi_command_param_changed): New.
3206 Remove mi_suppress_breakpoint_notifications.
3207 Define global variable mi_suppress_notification.
3208 (mi_breakpoint_created): Update.
3209 (mi_breakpoint_deleted): Likewise.
3210 (mi_breakpoint_modified): Likewise.
3211 * mi/mi-main.c (mi_cmd_execute): Likewise. Check command
3212 'gdb-set' and set mi_suppress_notification.
3213 * mi/mi-main.h: (mi_suppress_notification): New struct.
3218 * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
3222 * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
3223 (skiplist): Move it to skip.c.
3224 (init_cmd_lists): Remove code setting enablebreaklist and
3226 * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
3227 * cli/cli-cmds.h: Remove declaration of enablebreaklist and
3229 * gdbcmd.h: Likewise.
3230 * skip.c (_initialize_step_skip): Move 'skiplist' from
3235 * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
3236 * gnu-nat.c, symfile.c: Likewise.
3240 * utils.c (prompt_for_continue_wait_time): New static global.
3241 (make_command_stats_cleanup): Initialize it.
3242 (report_command_stats): Subtract time waiting for user.
3243 (prompt_for_continue): Track time waiting for user.
3244 (defaulted_query): Track time waiting for user.
3248 * eval.c (evaluate_subexp_standard): Fix thinko in handling
3250 * expprint.c (print_subexp_standard, case OP_TYPE): New.
3251 (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
3252 (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
3253 (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
3254 (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
3255 (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
3257 (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
3258 (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
3259 (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
3260 (dump_prefix_expression): Handle OP_TYPE.
3264 * breakpoint.c (parse_breakpoint_sals): Remove unused variable
3269 * linux-thread-db.c: #include "gdb_vecs.h".
3270 (try_thread_db_load_from_pdir_1): New arg "subdir". All callers
3272 (try_thread_db_load_from_pdir): New arg "subdir". All callers updated.
3273 (thread_db_load_search): Use a vector to iterate over path elements.
3274 Handle text appearing after "$pdir".
3276 * gdb_string.h: Moved to ...
3277 * common/gdb_string.h: ... here.
3278 * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
3279 gdb_string.h and gdb_assert.h.
3283 * tic6x-tdep.c (tic6x_register_to_value): Remove.
3284 (tic6x_value_to_register): Likewise.
3285 (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
3286 and set_gdbarch_value_to_register.
3292 * defs.h (find_memory_region_ftype): New comment. New arg modified.
3293 * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
3294 * gcore.c (gcore_create_callback): New function comment. Add modified
3295 parameter. Only write modified regions. Set SEC_READONLY exactly
3296 according to MODIFIED.
3297 (objfile_find_memory_regions): Ignore separate debug info files. Ass
3298 the passed modified value to FUNC.
3299 * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
3300 * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
3301 first. New variables modified and has_anonymous. Parse the lines of
3302 smaps file. Add the passed MODIFIED value to FUNC.
3303 * procfs.c (find_memory_regions_callback): Add the passed modified
3308 * dwarf2-frame.c (clear_pointer_cleanup): New function.
3309 (dwarf2_frame_cache): Use it.
3310 * frame-unwind.h (frame_sniffer_ftype): Document prologue
3311 cache initialization constraint.
3316 * varobj.c (update_dynamic_varobj_children): Don't call
3322 * cli/cli-cmds.c (list_command): Filter 'sals_end'.
3326 * NEWS: New entry for 'cd' default parameters.
3327 * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
3331 * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
3336 * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
3337 to attempting lseek/write.
3338 (inf_child_fileio_pread): Likewise for pread.
3342 * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
3343 (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
3344 add_setshow_zinteger_cmd.
3345 * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
3346 * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
3347 (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
3348 instead of add_setshow_zinteger_cmd.
3349 * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
3350 (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
3351 instead of add_setshow_zinteger_cmd.
3352 * frame.c (frame_debug): Add 'unsigned'.
3353 (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
3354 add_setshow_zinteger_cmd.
3355 * frame.h: Update the declaration of 'frame_debug'.
3356 * gdbtypes.c (overload_debug): Add 'unsigned'.
3357 (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
3358 add_setshow_zinteger_cmd.
3359 * inferior.h: Update declaration of 'debug_infrun'.
3360 * infrun.c (debug_infrun): Add 'unsigned'.
3361 (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
3362 add_setshow_zinteger_cmd.
3363 * jit.c (jit_debug): Add 'unsigned'.
3364 (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
3365 add_setshow_zinteger_cmd.
3366 * linux-nat.c (debug_linux_nat): Add 'unsigned'.
3367 (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
3368 instead of add_setshow_zinteger_cmd.
3369 * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
3370 (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
3371 add_setshow_zinteger_cmd.
3372 * machoread.c (mach_o_debug_level): Add 'unsigned'.
3373 (_initialize_machoread): Call add_setshow_zuinteger_cmd
3374 instead of add_setshow_zinteger_cmd.
3375 * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
3376 * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
3377 (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
3378 intead of add_setshow_zinteger_cmd.
3379 * mips-tdep.c (mips_debug): Add 'unsigned'.
3380 (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
3381 instead of add_setshow_zinteger_cmd.
3382 * monitor.c (monitor_debug): Add 'unsigned'.
3383 (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
3384 add_setshow_zinteger_cmd.
3385 * observer.c (observer_debug): Add 'unsigned'.
3386 (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
3387 add_setshow_zinteger_cmd.
3388 * parse.c (expressiondebug): Add 'unsigned'.
3389 (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
3390 add_setshow_zinteger_cmd.
3391 * record.c (record_debug): Add 'unsigned'.
3392 (_initialize_record): Call add_setshow_zuinteger_cmd instead of
3393 add_setshow_zinteger_cmd.
3394 * record.h: Update the declaration of 'record_debug'.
3395 * stap-probe.c (stap_expression_debug): Add 'unsigned'.
3396 (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
3397 add_setshow_zinteger_cmd.
3398 * serial.c (global_serial_debug_p): Add 'unsigned'.
3399 (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
3400 add_setshow_zinteger_cmd.
3401 * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
3402 (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
3403 add_setshow_zinteger_cmd.
3404 * solib-frv.c (solib_frv_debug): Add 'unsigned'.
3405 (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
3406 add_setshow_zinteger_cmd.
3407 * target.c (targetdebug): Add 'unsigned'.
3408 (initialize_targets): Call add_setshow_zuinteger_cmd instead of
3409 add_setshow_zinteger_cmd.
3410 * valops.c (overload_debug): Add 'unsigned'.
3411 * varobj.c (varobjdebug): Add 'unsigned'.
3412 (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
3413 add_setshow_zinteger_cmd.
3414 * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
3415 (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
3416 instead of add_setshow_zinteger_cmd.
3418 * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
3419 * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
3420 (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
3421 instead of add_setshow_zinteger_cmd.
3422 * gdbarch.c, gdbarch.h: Re-generated.
3426 * nto-tdep.c: Don't include cli/cli-decode.h and
3428 (_initialize_nto_tdep): Remove.
3429 * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
3431 Remove macro nto_internal_debugging.
3435 * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
3436 (mep-*-*) [gdb_target_obs]: Likewise.
3440 * ppc-linux-tdep.c (ppc_linux_init_abi): Register
3441 linux_get_siginfo_type.
3445 * infcall.c (call_function_by_hand): Move BP_ADDR comment to
3447 (call_function_by_hand) <ON_STACK>: Call write_memory with
3448 gdbarch_breakpoint_from_pc, if possible.
3449 (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
3454 * tracepoint.c: Add 'static' for some variables.
3458 * go32-nat.c: Declare _initialize_go32_nat.
3459 * ser-go32.c: Declare _initialize_ser_dos.
3460 * top.c (do_chdir_cleanup): Add 'static'.
3464 * linespec.c (linespec_lex_number): A number followed
3465 by quotes is a valid number, too.
3469 * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
3473 * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
3474 attempt to 4-byte-align HW breakpoint addresses for Thumb.
3478 * varobj.c (varobj_invalidate_iter): All varobj must be marked as
3479 invalid or reevaluated to prevent prevent references to possibly
3480 delete'd type objects being left in the varobj.
3485 * copying.awk: Print buffer-read-only and vi ro markers.
3486 * copying.c: Rebuild.
3487 * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
3488 * gdbarch.c, gdbarch.h: Rebuild.
3489 * target-descriptions.c (maint_print_c_tdesc_cmd): Print
3490 buffer-read-only and vi ro markers.
3491 * features/arm-with-iwmmxt.c: Rebuild.
3492 * features/arm-with-m-fpa-layout.c: Rebuild.
3493 * features/arm-with-m-vfp-d16.c: Rebuild.
3494 * features/arm-with-m.c: Rebuild.
3495 * features/arm-with-neon.c: Rebuild.
3496 * features/arm-with-vfpv2.c: Rebuild.
3497 * features/arm-with-vfpv3.c: Rebuild.
3498 * features/i386/amd64-avx-linux.c: Rebuild.
3499 * features/i386/amd64-avx.c: Rebuild.
3500 * features/i386/amd64-linux.c: Rebuild.
3501 * features/i386/amd64.c: Rebuild.
3502 * features/i386/i386-avx-linux.c: Rebuild.
3503 * features/i386/i386-avx.c: Rebuild.
3504 * features/i386/i386-linux.c: Rebuild.
3505 * features/i386/i386-mmx-linux.c: Rebuild.
3506 * features/i386/i386-mmx.c: Rebuild.
3507 * features/i386/i386.c: Rebuild.
3508 * features/i386/x32-avx-linux.c: Rebuild.
3509 * features/i386/x32-avx.c: Rebuild.
3510 * features/i386/x32-linux.c: Rebuild.
3511 * features/i386/x32.c: Rebuild.
3512 * features/mips-dsp-linux.c: Rebuild.
3513 * features/mips-linux.c: Rebuild.
3514 * features/mips64-dsp-linux.c: Rebuild.
3515 * features/mips64-linux.c: Rebuild.
3516 * features/rs6000/powerpc-32.c: Rebuild.
3517 * features/rs6000/powerpc-32l.c: Rebuild.
3518 * features/rs6000/powerpc-403.c: Rebuild.
3519 * features/rs6000/powerpc-403gc.c: Rebuild.
3520 * features/rs6000/powerpc-405.c: Rebuild.
3521 * features/rs6000/powerpc-505.c: Rebuild.
3522 * features/rs6000/powerpc-601.c: Rebuild.
3523 * features/rs6000/powerpc-602.c: Rebuild.
3524 * features/rs6000/powerpc-603.c: Rebuild.
3525 * features/rs6000/powerpc-604.c: Rebuild.
3526 * features/rs6000/powerpc-64.c: Rebuild.
3527 * features/rs6000/powerpc-64l.c: Rebuild.
3528 * features/rs6000/powerpc-7400.c: Rebuild.
3529 * features/rs6000/powerpc-750.c: Rebuild.
3530 * features/rs6000/powerpc-860.c: Rebuild.
3531 * features/rs6000/powerpc-altivec32.c: Rebuild.
3532 * features/rs6000/powerpc-altivec32l.c: Rebuild.
3533 * features/rs6000/powerpc-altivec64.c: Rebuild.
3534 * features/rs6000/powerpc-altivec64l.c: Rebuild.
3535 * features/rs6000/powerpc-cell32l.c: Rebuild.
3536 * features/rs6000/powerpc-cell64l.c: Rebuild.
3537 * features/rs6000/powerpc-e500.c: Rebuild.
3538 * features/rs6000/powerpc-e500l.c: Rebuild.
3539 * features/rs6000/powerpc-isa205-32l.c: Rebuild.
3540 * features/rs6000/powerpc-isa205-64l.c: Rebuild.
3541 * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
3542 * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
3543 * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
3544 * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
3545 * features/rs6000/powerpc-vsx32.c: Rebuild.
3546 * features/rs6000/powerpc-vsx32l.c: Rebuild.
3547 * features/rs6000/powerpc-vsx64.c: Rebuild.
3548 * features/rs6000/powerpc-vsx64l.c: Rebuild.
3549 * features/rs6000/rs6000.c: Rebuild.
3550 * features/s390-linux32.c: Rebuild.
3551 * features/s390-linux32v1.c: Rebuild.
3552 * features/s390-linux32v2.c: Rebuild.
3553 * features/s390-linux64.c: Rebuild.
3554 * features/s390-linux64v1.c: Rebuild.
3555 * features/s390-linux64v2.c: Rebuild.
3556 * features/s390x-linux64.c: Rebuild.
3557 * features/s390x-linux64v1.c: Rebuild.
3558 * features/s390x-linux64v2.c: Rebuild.
3559 * features/tic6x-c62x-linux.c: Rebuild.
3560 * features/tic6x-c62x.c: Rebuild.
3561 * features/tic6x-c64x-linux.c: Rebuild.
3562 * features/tic6x-c64x.c: Rebuild.
3563 * features/tic6x-c64xp-linux.c: Rebuild.
3564 * features/tic6x-c64xp.c: Rebuild.
3568 * c-exp.y (classify_name): Avoid assignment in condition.
3572 * amd64-windows-tdep.c: Include "frame.h".
3573 (amd64_windows_skip_trampoline_code): New function.
3574 (amd64_windows_init_abi): Add trampoline registration.
3578 * tracepoint.c (cur_traceframe_number): Remove.
3579 (set_tfile_traceframe): Remove.
3580 (tfile_trace_find, tfile_fetch_registers): Update callers.
3581 (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
3582 (tfile_open, tfile_trace_find): Likewise.
3586 * thread.c (switch_to_thread): Don't call registers_changed.
3590 * Makefile.in (SFILES): Remove objc-exp.y.
3591 (YYFILES): Remove objc-exp.c.
3592 (YYOBJ): Remove objc-exp.o.
3593 (local-maintainer-clean): Don't mention objc-exp.c.
3594 * c-exp.y: Include objc-lang.h.
3595 (%union) <class>: New field.
3596 (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
3597 (exp): Clone subscript production for OBJC_LBRAC. Add various
3598 Objective C productions.
3599 (msglist, msgarglist, msgarg): New productions.
3600 (array_mod, func_mod, operator): Clone productions for
3602 (parse_string_or_char): Handle '@' strings.
3603 (lex_one_token): Return OBJC_LBRAC. Recognize @selector.
3604 (classify_name): Check la_name_of_this. Recognize ObjC class
3606 * objc-exp.y: Remove.
3607 * objc-lang.c (objc_language_defn): Use c_parse, c_error.
3608 * objc-lang.h (objc_parse, objc_error): Don't declare.
3612 * python/py-inferior.c (infpy_threads): Call update_thread_list ().
3616 * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
3621 * copying.c: Rebuild.
3622 * copying.awk: Don't use immediate_quit. Use 'no_set_class', not
3627 * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
3629 (print_objfile_statistics): Likewise.
3630 (maintenance_print_symbols): Likewise.
3631 (maintenance_print_msymbols): Likewise.
3632 (maintenance_print_objfiles): Likewise.
3633 * psymtab.c (print_partial_symbols): Call QUIT.
3634 (maintenance_print_psymbols): Likewise. Don't modify
3636 * copying.c (show_copying_command): Don't modify immediate_quit.
3637 (show_warranty_command): Likewise.
3638 * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
3642 * linespec.c (linespec_lexer_lex_number): The input
3643 is also a valid number if the next character is a comma
3648 * NEWS: Document new --enable-libmcheck/--disable-libmcheck
3653 * machoread.c: Include gdb_bfd.h.
3657 * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
3662 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
3664 (dwarf2_evaluate_loc_desc): Likewise.
3665 (dwarf2_loc_desc_needs_frame): Likewise.
3666 (locexpr_describe_location_1): Likewise.
3667 * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
3669 (struct dwarf2_loclist_baton): Likewise.
3670 * dwarf2read.c (struct dwarf_block): Likewise.
3671 (dump_die_shallow): Use pulongest to print dwarf_block.size.
3672 (decode_locdesc): Expand SIZE and I to size_t.
3676 * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
3680 * doublest.c (convert_doublest_to_floatformat): If the exponent
3681 is too small, treat the value as zero. If the exponent is too
3682 large, treat the value as infinity.
3686 * configure.ac: Add --enable-lmcheck configure option.
3687 * configure: Regenerate.
3691 * NEWS: Mention maint info bfds.
3692 * gdb_bfd.c (all_bfds): New global.
3693 (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
3694 (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
3699 * configure.tgt: Add v850*-*-rtems*.
3703 * macrotab.c (macro_bcache_str): Remove cast.
3707 * linespec.c (linespec_lexer_lex_number): Update comments,
3708 change the return and add check to make sure the input is
3709 the decimal numbers.
3710 (linespec_lexer_lex_one): If linespec_lexer_lex_number return
3711 false, call linespec_lexer_lex_string.
3715 * symfile.c (symbol_file_add): Don't open BFD twice.
3719 * breakpoint.c (create_breakpoint): Store condition for pending
3724 * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
3725 (m68k_return_value): Handle complex types like structures.
3726 (m68k_svr4_return_value): Likewise.
3730 * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
3731 parameters to bfd_get_section_name.
3735 * cli/cli-setshow.c: Handle case 'var_uinteger'
3736 and 'var_zuninteger' together. Handle case 'var_integer' and
3737 'var_zinteger' together.
3741 * linespec.c (convert_linespec_to_sal): Don't add
3742 any symbols to the result vector if symbol_to_sal
3747 * linespec.c (decode_objc): Record the function name
3752 * rs6000-nat.c (add_vmap): Rewrite archive loop. Fix reference
3754 * exec.c (exec_close_1): Unconditionally release vmap's BFD.
3755 (map_vmap): Acquire a reference to the BFD.
3759 * p-valprint.c (pascal_object_print_value): Replace potentially
3760 unsafe alloca with xmalloc/xfree.
3761 * valops.c (search_struct_method): Likewise.
3765 * solib-svr4.c (enable_break): Update.
3766 * bfd-target.h (target_bfd_reopen): Update documentation.
3770 * symfile.c (separate_debug_file_exists): Update.
3771 (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
3772 (reread_symbols): Update.
3773 * elfread.c (build_id_verify): Update.
3774 * symfile.h (gdb_bfd_open_maybe_remote): Rename from
3775 bfd_open_maybe_remote.
3779 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
3783 * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
3785 * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
3787 * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
3788 * machoread.c (macho_add_oso_symfile): Make a cleanup for
3790 (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
3791 * objfiles.c (allocate_objfile): Acquire a new reference.
3792 * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
3793 * solib.c (solib_read_symbols): Don't acquire a BFD reference.
3794 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
3795 a cleanup for 'nbfd'.
3796 * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
3798 * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
3799 make a cleanup for 'abfd'.
3800 (symbol_file_add): Make a BFD cleanup.
3804 * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
3805 (bfd_openw_with_cleanup): Use gdb_bfd_openw.
3806 * corelow.c (core_open): Use gdb_bfd_fopen.
3807 * dsrec.c (load_srec): Use gdb_bfd_openr.
3808 * exec.c (exec_file_attach): Use gdb_bfd_fopen.
3809 * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
3810 * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
3811 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
3812 (gdb_bfd_fdopenr): New functions.
3813 * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
3814 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
3815 (gdb_bfd_fdopenr): Declare.
3816 * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
3817 * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
3818 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
3819 gdb_bfd_openr_next_archived_file.
3820 (macho_check_dsym): Use gdb_bfd_openr.
3821 (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
3822 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
3823 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
3824 * remote-mips.c (mips_load_srec, pmon_load_fast): Use
3826 * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
3827 * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
3828 gdb_bfd_openr_next_archived_file.
3829 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3831 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
3833 * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
3834 * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
3835 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
3836 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
3837 (symfile_bfd_open): Use gdb_bfd_fopen.
3838 (generic_load): Use gdb_bfd_openr.
3839 * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
3843 * bfd-target.c (target_bfd_reopen): Update.
3844 * cli/cli-dump.c (bfd_openr_with_cleanup)
3845 (bfd_openw_with_cleanup): Update.
3846 * corelow.c (core_open): Update.
3847 * dsrec.c (load_srec): Update.
3848 * exec.c (exec_file_attach): Update.
3849 * gcore.c (create_gcore_bfd): Update.
3850 * gdb_bfd.c (gdb_bfd_ref): Return void.
3851 (gdb_bfd_open): Update.
3852 * gdb_bfd.h (gdb_bfd_ref): Return void.
3854 * jit.c (jit_bfd_try_read_symtab): Update.
3855 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
3856 * machoread.c (macho_symfile_read_all_oso): Update.
3857 (macho_check_dsym): Update.
3858 * procfs.c (insert_dbx_link_bpt_in_file): Update.
3859 * remote-m32r-sdi.c (m32r_load): Update.
3860 * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
3861 * rs6000-nat.c (add_vmap): Update.
3862 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3864 * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
3865 * solib-spu.c (spu_bfd_open): Update.
3866 * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
3867 * spu-linux-nat.c (spu_bfd_open): Update.
3868 * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
3869 (generic_load): Update.
3870 * windows-nat.c (windows_make_so): Update.
3874 * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
3878 * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
3879 SIGTRAMP_FRAME unwinding.
3883 * NEWS: Document new options "set/show use-deprecated-index-sections",
3884 and delete reference to --use-deprecated-index-sections.
3885 * symfile.h (use_deprecated_index_sections): Delete.
3886 * dwarf2read.c (use_deprecated_index_sections): Make static.
3887 (read_index_from_section): Update wording of how to load
3888 deprecated index sections.
3889 (_initialize_dwarf2_read): New options
3890 "set/show use-deprecated-index-sections".
3891 * main.c (captured_main): Delete --use-deprecated-index-sections.
3898 * infrun.c (handle_inferior_event) <new thread>: Don't special
3899 case minus_one_ptid.
3900 <TARGET_WAITKIND_SPURIOUS>: Ditto.
3901 * linux-thread-db.c (thread_get_info_callback): Don't return early
3902 if the thread is zombie.
3903 (thread_from_lwp): Change return type to void. Rewrite stale
3905 (attach_thread): Don't return early if the thread is zombie,
3906 instead set its "dying" flag.
3907 (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
3908 (find_new_threads_callback): Don't return early if the thread is
3913 * linux-nat.c (linux_nat_wait): Dump the passed in target options.
3914 * target.c (target_wait): Likewise.
3915 (str_comma_list_concat_elem, do_option, target_options_to_string):
3917 * target.h (target_options_to_string): Declare.
3922 * dwarf2read.c (dwarf_decode_macros)
3923 <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
3924 DW_MACRO_GNU_transparent_include_alt>: New cases.
3925 (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
3926 DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
3930 * dwarf2read.c (try_open_dwo_file): Don't call
3931 gdb_bfd_stash_filename.
3935 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
3936 (i386_record_lea_modrm, i386_record_push, i386_record_floats)
3937 (i386_process_record): Tweak description comments.
3941 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
3942 (i386_process_record): Use record_read_memory.
3943 * record.c (record_read_memory): New function.
3944 (record_arch_list_add_mem, record_exec_insn): Use
3946 * record.h (record_read_memory): Declare.
3950 * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
3955 * record.c (record_resume): Ask the target beneath to report all
3960 * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
3961 there's no section at address zero.
3962 (dwarf2_record_block_ranges): Ditto.
3966 * command.h, remote.c: Fix a typo in comment.
3971 * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
3972 * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
3973 OP_DECLTYPE>: New cases.
3974 * c-exp.y (TYPEOF, DECLTYPE): New tokens.
3975 (type_exp): Add new productions.
3976 (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
3978 * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
3980 * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
3981 OP_DECLTYPE>: New case.
3982 * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
3984 * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
3985 * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
3989 * c-exp.y (enum token_flags): New.
3990 (struct token) <cxx_only>: Remove.
3992 (tokentab3, tokentab2, ident_tokens): Update.
3993 (lex_one_token): Update. Handle FLAG_SHADOW.
3997 * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
3998 * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
3999 UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
4000 * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE. Update
4001 for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST. Use
4002 type_exp production where appropriate.
4003 * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
4004 <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
4005 <UNOP_MEMVAL_TYPE>: New case.
4006 (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
4007 (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
4008 * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
4009 <UNOP_MEMVAL_TYPE>: New case.
4010 (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
4011 UNOP_REINTERPRET_CAST>: Update.
4012 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
4013 * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
4014 UNOP_REINTERPRET_CAST>: Update.
4015 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
4016 * stack.c (return_command): Also check for UNOP_CAST_TYPE.
4017 * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
4023 * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
4024 and case 'var_optional_filename' together.
4025 * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
4026 instead of add_setshow_optional_filename_cmd for setshow command
4027 'args'. Set completer for 'set args'.
4031 * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
4032 * common/gdb_vecs.c: New file, contents from utils.c.
4033 * common/host-defs.h: New file, contents from defs.h.
4034 * utils.h: New file, contents from defs.h.
4035 * defs.h: Move all declarations of objects defined in utils.c
4036 to utils.h (except QUIT() and related).
4037 #include "utils.h", "host-defs.h".
4038 * probe.h (probe_p): Move here from gdb_vecs.h.
4039 * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
4040 * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
4041 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
4042 * Makefile.in (SFILES): Add common/gdb_vecs.c.
4043 (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
4044 (COMMON_OBS): Add gdb_vecs.o.
4045 (gdb_vecs.o): New rule.
4049 * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
4050 parameter. If non-zero, use SYMNAME as the canonical name
4053 (convert_linespec_to_sals): Use add_sal_to_sals for
4055 (decode_line_full): No need to "fill in missing canonical names"
4056 anymore. Simply make cleanups for the allocated names.
4060 * linespec.c (struct linespec): Constify expression,
4061 source_filename, function_name, and label_name.
4062 (symbol_not_found_error): Make all parameters const.
4063 (linespec_parser_delete): No need to check for NULL
4064 when using xfree. Cast const char * to char * for xfree.
4068 * breakpoint.c (invalid_thread_id_error): New function.
4069 (find_condition_and_thread): Use invalid_thread_id_error.
4070 (watch_command_1): Likewise.
4074 * cc-with-index.sh, cc-with-dwz.sh: Remove.
4075 * contrib/cc-with-tweaks.sh: New file.
4079 * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
4080 (locate_dwz_sections): Recognize .gdb_index.
4081 (create_cus_from_index_list): New function.
4082 (create_cus_from_index): Use it. Handle .dwz data.
4083 (read_index_from_section): New function, extracted from
4085 (dwarf2_read_index): Use it. Read .gdb_index from dwz file,
4090 * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
4091 (struct dwarf2_per_cu_data) <length>: No longer bitfield.
4092 <is_dwz>: New field.
4093 (struct dwz_file): New.
4094 (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
4095 (locate_dwz_sections, dwarf2_get_dwz_file)
4096 (get_abbrev_section_for_cu): New functions.
4097 (error_check_comp_unit_head, read_and_check_comp_unit_head)
4098 (read_and_check_type_unit_head): Add abbrev_section argument.
4099 (create_debug_types_hash_table): Update.
4100 (init_cutu_and_read_dies): Use proper abbrev section.
4101 (init_cutu_and_read_dies_no_follow): Likewise.
4102 (set_partial_user): Do nothing if PST==NULL.
4103 (read_comp_units_from_section): New function.
4104 (create_all_comp_units): Use it.
4105 (scan_partial_symbols, partial_die_parent_scope): Update.
4106 (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4107 (process_imported_unit_die, read_partial_die): Handle .dwz files.
4108 (find_partial_die): Add offset_in_dwz argument. Update.
4109 (guess_partial_die_structure_name, fixup_partial_die): Update.
4110 (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
4111 DW_FORM_GNU_strp_alt.
4112 (read_indirect_string_from_dwz): New function.
4113 (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
4114 (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4115 (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
4116 (follow_die_offset): Add offset_in_dwz argument.
4117 (follow_die_ref, dwarf2_fetch_die_location_block): Update.
4118 (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
4119 (dwarf_decode_macro_bytes): Add section_is_dwz argument.
4120 Handle new macro forms.
4121 (dwarf_decode_macros): Update.
4122 (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
4123 (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
4124 (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
4125 (create_debug_types_hash_table): Use correct abbrev section.
4126 (get_debug_line_section): New function.
4127 (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
4128 (process_full_comp_unit): Pass 'required' argument to
4129 end_symtab_get_static_block.
4130 * buildsym.h (end_symtab_get_static_block): Update.
4131 * buildsym.c (end_symtab_get_static_block): Add 'required'
4133 (end_symtab, end_expandable_symtab): Update.
4137 * dwarf2read.c: Don't include zlib.h or sys/mman.h.
4139 (struct dwarf2_section_info) <map_addr, map_len>: Remove.
4140 (zlib_decompress_section): Remove.
4141 (dwarf2_read_section): Use gdb_bfd_map_section.
4142 (munmap_section_buffer): Remove.
4143 (free_dwo_file, dwarf2_per_objfile_free): Don't use
4144 munmap_section_buffer.
4145 * gdb_bfd.c: Include zlib.h, sys/mman.h.
4146 (struct gdb_bfd_section_data): New.
4147 (free_one_bfd_section): New function.
4148 (gdb_bfd_close_or_warn): Use free_one_bfd_section.
4149 (get_section_descriptor, zlib_decompress_section)
4150 (gdb_bfd_map_section): New functions.
4151 * gdb_bfd.h (gdb_bfd_map_section): Declare.
4155 * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
4159 * gdb_bfd.c (struct gdb_bfd_data): New.
4160 (gdb_bfd_cache): New global.
4161 (struct gdb_bfd_cache_search): New.
4162 (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
4163 (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
4164 * gdb_bfd.h (gdb_bfd_open): Declare.
4168 * utils.c (make_cleanup_bfd_unref): Rename from
4169 make_cleanup_bfd_close.
4170 * defs.h (make_cleanup_bfd_unref): Rename from
4171 make_cleanup_bfd_close.
4172 * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
4173 (bfd_openw_with_cleanup): Update.
4174 * corelow.c (core_open): Update.
4175 * dsrec.c (load_srec): Update.
4176 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
4177 * remote-m32r-sdi.c (m32r_load): Update.
4178 * remote-mips.c (mips_load_srec): Update.
4179 (pmon_load_fast): Update.
4180 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4182 (darwin_bfd_open): Update.
4183 * solib.c (solib_bfd_fopen): Update.
4184 * symfile-mem.c (symbol_file_add_from_memory): Update.
4185 * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
4186 (symfile_bfd_open): Update.
4187 (generic_load): Update.
4191 * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
4192 (pmon_load_fast): Likewise.
4193 * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
4194 (m32r_upload_command): Likewise.
4195 * dsrec.c (load_srec): Use make_cleanup_bfd_close.
4196 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4197 Use make_cleanup_bfd_close.
4201 * symfile.c (symfile_bfd_open): Don't copy name. Call
4202 gdb_bfd_stash_filename.
4203 (load_command): Open the new BFD before freeing the old.
4204 (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
4205 * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
4206 Call gdb_bfd_stash_filename.
4207 * spu-linux-nat.c (spu_bfd_open): Don't copy name.
4208 * solib-spu.c (spu_bfd_fopen): Don't copy name. Call
4209 gdb_bfd_stash_filename.
4210 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4211 Free found_pathname.
4212 * rs6000-nat.c (add_vmap): Don't copy filename. Call
4213 gdb_bfd_stash_filename.
4214 * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
4215 * machoread.c (macho_add_oso_symfile): Call
4216 gdb_bfd_stash_filename.
4217 (macho_symfile_read_all_oso): Arrange to free archive_name. Call
4218 gdb_bfd_stash_filename.
4219 (macho_check_dsym): Don't copy filename. Call
4220 gdb_bfd_stash_filename.
4221 * jit.c (bfd_open_from_target_memory): Don't copy the filename.
4222 * gdb_bfd.c (gdb_bfd_stash_filename): New function.
4223 * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
4224 * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
4225 * exec.c (exec_close): Don't free the BFD's filename.
4226 (exec_file_attach): Don't copy the filename. Call
4227 gdb_bfd_stash_filename.
4228 * corelow.c (core_close): Don't free the BFD's filename.
4229 (core_open): Call gdb_bfd_stash_filename.
4230 * corefile.c (reopen_exec_file): Remove #if 0 code.
4231 * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename. Free
4233 * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
4237 * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
4239 (free_dwo_file): Use gdb_bfd_unref.
4240 * cli/cli-dump.c: Include gdb_bfd.h.
4241 (bfd_openw_with_cleanup): Use gdb_bfd_ref.
4242 (bfd_openr_with_cleanup): Likewise.
4243 * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
4245 * utils.c: Include gdb_bfd.h.
4246 (do_bfd_close_cleanup): Use gdb_bfd_unref.
4247 * symfile.c: Include gdb_bfd.h.
4248 (separate_debug_file_exists): Use gdb_bfd_unref.
4249 (bfd_open_maybe_remote): Use gdb_bfd_ref.
4250 (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4251 (generic_load): Use gdb_bfd_ref.
4252 (reread_symbols): Use gdb_bfd_unref.
4253 * symfile-mem.c: Include gdb_bfd.h.
4254 (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
4255 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4256 * solib.c: Include gdb_bfd.h.
4257 (solib_bfd_fopen): Use gdb_bfd_ref.
4258 (solib_bfd_open): Use gdb_bfd_unref.
4259 (free_so_symbols): Use gdb_bfd_unref.
4260 (reload_shared_libraries_1): Use gdb_bfd_unref.
4261 * solib-spu.c: Include gdb_bfd.h.
4262 (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
4263 * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
4265 * solib-frv.c: Include gdb_bfd.h.
4266 (enable_break2): Use gdb_bfd_unref.
4267 * solib-dsbt.c: Include gdb_bfd.h.
4268 (enable_break2): Use gdb_bfd_unref.
4269 * solib-darwin.c: Include gdb_bfd.h.
4270 (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
4272 (darwin_bfd_open): Use gdb_bfd_unref.
4273 * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
4274 * remote-mips.c: Include gdb_bfd.h.
4275 (mips_load_srec): Use gdb_bfd_ref.
4276 (pmon_load_fast): Use gdb_bfd_ref.
4277 * remote-m32r-sdi.c: Include gdb_bfd.h.
4278 (m32r_load): Use gdb_bfd_ref.
4279 * record.c: Include gdb_bfd.h.
4280 (record_save_cleanups): Use gdb_bfd_unref.
4281 (cmd_record_save): Use gdb_bfd_unref.
4282 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
4284 * objfiles.h (gdb_bfd_close_or_warn): Remove.
4285 (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
4286 * objfiles.c: Include gdb_bfd.h.
4287 (free_objfile): Use gdb_bfd_unref.
4288 (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
4290 * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
4291 (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
4292 (macho_check_dsym): Likewise.
4293 * m32r-rom.c: Include gdb_bfd.h.
4294 (m32r_load): Use gdb_bfd_ref.
4295 (m32r_upload_command): Use gdb_bfd_ref.
4296 * jit.c: Include gdb_bfd.h.
4297 (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
4298 * gdb_bfd.h: New file.
4299 * gdb_bfd.c: New file.
4300 * gcore.c: Include gdb_bfd.h.
4301 (create_gcore_bfd): Use gdb_bfd_ref.
4302 (do_bfd_delete_cleanup): Use gdb_bfd_unref.
4303 (gcore_command): Use gdb_bfd_unref.
4304 * exec.c: Include gdb_bfd.h.
4305 (exec_close): Use gdb_bfd_unref.
4306 (exec_close_1): Use gdb_bfd_unref.
4307 (exec_file_attach): Use gdb_bfd_ref.
4308 * elfread.c: Include gdb_bfd.h.
4309 (build_id_verify): Use gdb_bfd_unref.
4310 * dsrec.c: Include gdb_bfd.h.
4311 (load_srec): Use gdb_bfd_ref.
4312 * corelow.c: Include gdb_bfd.h.
4313 (core_close): Use gdb_bfd_unref.
4314 (core_open): Use gdb_bfd_ref.
4315 * bfd-target.c: Include gdb_bfd.h.
4316 (target_bfd_xclose): Use gdb_bfd_unref.
4317 (target_bfd_reopen): Use gdb_bfd_ref.
4318 * Makefile.in (SFILES): Add gdb_bfd.c.
4319 (HFILES_NO_SRCDIR): Add gdb_bfd.h.
4320 (COMMON_OBS): Add gdb_bfd.o.
4324 * breakpoint.c (find_condition_and_thread): Initialize
4326 (create_breakpiont): find_condition_and_thread will now
4327 initialize COND_STRING, THREAD, and REST (and TASK).
4328 (addr_string_to_sals): Likewise.
4332 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
4333 Pull the single step breakpoints out of the target.
4337 * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
4338 * stap-probe.c (compile_probe_arg): Likewise.
4342 * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
4343 (elf_compile_to_ax): Likewise.
4344 * infrun.c (insert_exception_resume_from_probe): Likewise.
4345 (check_exception_resume): Remove `objfile' variable.
4346 * probe.c (find_probe_by_pc): Remove `objfile' argument.
4347 (struct probe_and_objfile, probe_and_objfile_s): Delete.
4348 (collect_probes): Adjust return value to `VEC (probe_p) *'.
4349 (compare_entries): Rename to...
4350 (compare_probes): ...this. Adjust function to work with
4351 `struct probe *'. Rename variables `ea' and `eb' to `pa' and `pb'
4353 (gen_ui_out_table_header_info): Adjust `probes' argument to be
4355 (print_ui_out_info): Adjust argument to be `struct probe *'.
4356 (info_probes_for_ops): Adjust internal computations to use
4358 (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
4359 * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
4360 gen_info_probes_table_values>: Remove `objfile' argument.
4361 (struct probe) <objfile>: New field.
4362 (find_probe_by_pc): Remove `objfile' argument.
4363 * stap-probe.c (stap_parse_probe_arguments): Likewise.
4364 (stap_get_probe_argument_count): Likewise.
4365 (stap_get_arg): Likewise.
4366 (stap_evaluate_probe_argument): Likewise.
4367 (stap_compile_to_ax): Likewise.
4368 (compile_probe_arg): Refactor not to pass `objfile' anymore.
4369 (handle_stap_probe): Fill `objfile' field from `struct probe'.
4370 (stap_gen_info_probes_table_header): Remove `objfile' argument.
4371 * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
4372 sym_compile_to_ax>: Likewise.
4377 * defs.h (GDB_MI_MSG_WIDTH): New.
4378 * ser_base (ser_base_read_error_fd): New function.
4379 (do_ser_base_readchar): Poll error file descriptor as well as
4381 (generic_readchar): Refactor error handling.
4385 * NEWS: Create a new section for the next release branch.
4386 Rename the section of the current branch, now that it has
4391 GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
4392 * version.in: Bump version to 7.5.50.20120718-cvs.
4396 * linespec.c (linespec_parse_line_offset): Make parameter
4402 * f-valprint.c (info_common_command): New variable frame_id.
4403 Reinitialize FI form FRAME_ID after each print_variable_and_value.
4404 * printcmd.c (print_variable_and_value): Extend function comment.
4405 Add comment for invalidated FRAME.
4406 * stack.c (backtrace_command_1): New variable frame_id. Reinitialize
4407 FI form FRAME_ID after each print_frame_local_vars.
4408 (struct print_variable_and_value_data): Change frame to frame_id.
4409 (do_print_variable_and_value): New variable frame, initialize it from
4410 p->frame_id. Add comment for invalidated FRAME.
4411 (print_frame_local_vars, print_frame_arg_vars): New function comment.
4412 Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization. Add comment
4413 for invalidated FRAME.
4418 * linux-nat.c (linux_nat_detach): Don't unregister from the event
4423 * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
4427 * dwarf2read.c (stmt_list_hash): New struct.
4428 (type_unit_group): Embed "per_cu" member, remove pointer.
4429 New union member "t", move member "tus" into it, all uses updated.
4430 New member "hash", replaces member "line_offset, all uses updated.
4431 (quick_file_names): Replace member "offset" with "hash", all uses
4433 (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
4434 (hash_file_name_entry, eq_file_name_entry): Call them.
4435 (hash_type_unit_group, eq_type_unit_group): Ditto.
4436 (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
4437 (dw2_get_file_names_reader): Fix file name table calculation for TUs.
4438 (dw2_get_file_names): Update.
4439 (create_type_unit_group): Replace "per_cu" arg with "cu".
4440 All callers updated. Fix "quick" (.gdb_index) handling.
4441 (get_type_unit_group): Replace "per_cu" arg with "cu".
4442 All callers updated.
4443 (build_type_unit_groups): Don't reset tu_stats.
4445 * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
4446 "tab_cur_size". Change member "tab" to be a htab_t.
4447 (create_filename_seen_cache): Update.
4448 (clear_filename_seen_cache, delete_filename_seen_cache): Update.
4449 (filename_seen): Update.
4453 * symtab.c (filename_seen): Update comment.
4458 * buildsym.c (end_symtab_1): Split it to ...
4459 (end_symtab_get_static_block): ... this ...
4460 (end_symtab_from_static_block): ... and this function.
4461 (end_symtab, end_expandable_symtab): Call them.
4462 * buildsym.h (end_symtab_get_static_block)
4463 (end_symtab_from_static_block): New declarations.
4464 * dwarf2read.c (process_full_comp_unit): New variable static_block.
4465 Set its valid CU ranges.
4469 * dwarf2loc.c (disassemble_dwarf_expression): Handle
4470 DW_OP_GNU_parameter_ref.
4474 * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
4475 read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
4479 * symtab.c (output_source_filename): Delete unnecessary forward decl.
4480 (filename_seen_cache): New struct.
4481 (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
4482 (create_filename_seen_cache): New function.
4483 (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
4484 (filename_seen): Delete arg "first". New arg "cache". All callers
4486 (output_source_filename_data): New struct.
4487 (output_source_filename): Delete arg "first". New arg "data".
4488 All callers updated.
4489 (sources_info): Delete local "first". New locals "data", "cleanups".
4490 Rewrite to use filename_seen_cache.
4491 (add_partial_filename_data): Delete member "first". New member
4492 "filename_seen_cache". All uses updated.
4493 (make_source_files_completion_list): Rewrite to use
4494 filename_seen_cache.
4498 * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
4503 * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
4504 all_type_unit_groups, type_unit_groups, tu_stats.
4505 (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
4506 All uses updated. Add type_unit_group to union "s".
4507 (type_unit_group): New struct.
4508 (IS_TYPE_UNIT_GROUP): New macro.
4509 (abbrev_table): Delete unused member "section".
4510 (dw2_do_instantiate_symtab): Early exit if type_unit_group.
4511 (dw2_get_cu): Assert not used with type_unit_group.
4512 (dw2_get_primary_cu): New function.
4513 (dw2_build_type_unit_groups_reader): New function.
4514 (dw2_build_type_unit_groups): New function.
4515 (dw2_get_file_names): Assert not called on type units.
4516 (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
4517 Redo loop to iterate over type unit groups instead of type units.
4518 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
4519 (read_abbrev_offset): New function.
4520 (init_cutu_and_read_dies): New arg "abbrev_table". All callers
4522 (create_partial_symtab): New function.
4523 (process_psymtab_comp_unit_reader): Assert not used with type units.
4524 Call create_partial_symtab.
4525 (process_psymtab_type_unit): Delete.
4526 (hash_type_unit_group, eq_type_unit_group): New functions.
4527 (allocate_type_unit_groups_table): New function.
4528 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
4529 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
4530 (create_type_unit_group, get_type_unit_group): New functions.
4531 (tu_abbrev_offset): New struct.
4532 (sort_tu_by_abbrev_offset): New function.
4533 (add_type_unit_group_to_table): New function.
4534 (build_type_unit_groups): New function.
4535 (build_type_psymtabs_reader): New function.
4536 (build_type_psymtab_dependencies): New function.
4537 (build_type_psymtabs): Rewrite.
4538 (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
4539 is seen in a type unit.
4540 (process_queue): Move symtab expansion debugging printfs here.
4541 Call process_full_type_unit for type units.
4542 (compute_symtab_includes): Assert not called for type units.
4543 (process_cu_includes): Don't call compute_symtab_includes for
4545 (process_full_type_unit): New function.
4546 (process_imported_unit_die): Flag an error if called for type units.
4547 (handle_DW_AT_stmt_list): Delete arg "want_line_info". All callers
4548 updated. Assert not called for type units.
4549 (read_file_scope): Call dwarf2_start_symtab.
4550 (setup_type_unit_groups): New function.
4551 (read_type_unit_scope): Rewrite.
4552 (abbrev_table_read_table): Initialize abbrev_table->offset.
4553 (abbrev_table_free_cleanup): New function.
4554 (dwarf2_start_symtab): New function.
4555 (load_full_type_unit): Assert not called for type unit groups.
4556 * buildsym.c (finish_block_internal): New arg "expandable".
4557 All callers updated.
4558 (start_symtab): Move most contents to ...
4559 (restart_symtab): ... here. New function.
4560 (reset_symtab_globals): New function.
4561 (end_symtab_1): Renamed from end_symtab. New arg "expandable".
4562 Call reset_symtab_globals.
4563 (end_symtab, end_expandable_symtab): New functions.
4564 (set_missing_symtab, augment_type_symtab): New functions.
4565 * buildsym.h (end_expandable_symtab): Declare.
4566 (augment_type_symtab, restart_symtab): Declare.
4567 * psympriv.h (struct partial_symtab): New member "anonymous".
4568 * psymtab.c (partial_map_symtabs_matching_filename): Ignore
4570 (read_psymtabs_with_filename): Ditto.
4571 (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
4572 (expand_symtabs_matching_via_partial): Ditto.
4573 (dump_psymtab): Update.
4574 * dictionary.c (dict_add_pending): New function.
4575 * dictionary.h (dict_add_pending): Declare.
4579 * buildsym.c (start_subfile): Remove unnecessary check for
4582 * psymtab.c (allocate_psymtab): Use host_address_to_string.
4584 * dwarf2read.c (load_full_type_unit): Simplify.
4586 * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
4587 to struct signatured_type **. All uses updated.
4589 * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
4590 All callers updated.
4594 * c-exp.y (check_parameter_typelist): New function.
4595 (parameter_typelist): Call it.
4596 * eval.c (make_params): Handle '(void)' case.
4597 * gdbtypes.c (lookup_function_type_with_arguments): Handle
4602 * common/linux-ptrace.c: Include gdb_assert.h.
4603 <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
4604 <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
4606 (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
4608 * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
4609 * linux-nat.c (linux_child_post_attach)
4610 (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
4614 * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
4615 nptl <2.7 bug workaround for core files.
4619 * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
4621 (save_siginfo): Remove.
4622 (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
4624 (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
4625 (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
4626 * linux-nat.h (struct lwp_info): Remove field siginfo.
4630 Code cleanup for the next patch.
4631 * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
4632 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4634 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
4635 (ia64_linux_stopped_data_address):
4636 * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
4638 * linux-nat.h (linux_nat_get_siginfo): Likewise.
4639 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
4640 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4646 * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
4647 Increase buffer sizes to 2x we need, not just 2x of the previous size.
4651 * c-exp.y (DOTDOTDOT): New token.
4652 (func_mod, exp): Use parameter_typelist.
4653 (parameter_typelist): New production.
4654 (tokentab3): Add "..." token.
4655 * eval.c (make_params): Handle varargs.
4656 * gdbtypes.c (lookup_function_type_with_arguments): Handle
4662 * c-exp.y (%union) <tvec>: Change type.
4663 (func_mod): Now uses <tvec> type.
4664 (exp): Update for tvec change.
4665 (direct_abs_decl): Push the typelist.
4666 (func_mod): Return a typelist.
4667 (nonempty_typelist): Update for tvec change.
4668 * gdbtypes.c (lookup_function_type_with_arguments): New function.
4669 * gdbtypes.h (lookup_function_type_with_arguments): Declare.
4670 * parse.c (pop_type_list): New function.
4671 (push_typelist): New function.
4672 (follow_types): Handle tp_function_with_arguments.
4673 * parser-defs.h (type_ptr): New typedef. Define a VEC.
4674 (enum type_pieces) <tp_function_with_arguments>: New constant.
4675 (union type_stack_elt) <typelist_val>: New field.
4676 (push_typelist): Declare.
4680 * c-exp.y (%union) <type_stack>: New field.
4681 (abs_decl, direct_abs_decl): Use <type_stack> type. Update.
4682 (ptr_operator_ts): New production.
4684 * parse.c (type_stack_reserve): New function.
4685 (check_type_stack_depth): Use it.
4686 (pop_type_stack, append_type_stack, push_type_stack)
4687 (get_type_stack, type_stack_cleanup): New functions.
4688 (follow_types): Handle tp_type_stack.
4689 (_initialize_parse): Simplify initialization.
4690 * parser-defs.h (enum type_pieces) <tp_type_stack>: New
4692 (union type_stack_elt) <stack_val>: New field.
4693 (get_type_stack, append_type_stack, push_type_stack)
4694 (type_stack_cleanup): Declare.
4698 * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
4700 (struct type_stack): New.
4701 * parse.c (type_stack, type_stack_size, type_stack_depth):
4703 (type_stack): New global.
4704 (parse_exp_in_context, check_type_stack_depth)
4705 (insert_into_type_stack, insert_type, push_type, push_type_int)
4706 (insert_type_address_space, pop_type, pop_type_int)
4707 (_initialize_parse): Update.
4711 * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
4716 * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
4721 * cp-valprint.c (cp_print_value): Replace potentially unsafe
4722 alloca with xmalloc/xfree.
4726 * MAINTAINERS (Write After Approval): Add myself to the list.
4730 * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
4734 * ax-gdb.c (cli/cli-utils.h): New include.
4735 (linespec.h): Ditto.
4736 (agent_eval_command_one): New function.
4737 (agent_command_1): Ditto.
4738 (agent_command): Call function agent_command_1.
4739 (agent_eval_command): Ditto.
4740 (_initialize_ax_gdb): Change help for "maint agent"
4741 and "maint agent-eval".
4745 * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
4746 * cli/cli-utils.c (check_for_argument): New function.
4747 * cli/cli-utils.h (check_for_argument): Ditto.
4751 * NEWS: Mention x32 ABI support.
4755 * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
4756 AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
4758 * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
4759 and pc_regnum_from_eax to -1. Update SP regnum from
4760 sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
4763 * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
4768 Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
4769 * dwarf2expr.h: Include gdbtypes.h.
4770 (enum call_site_parameter_kind, union call_site_parameter_u): Remove
4771 these forward declarations.
4772 (cu_offset, sect_offset): Move these ...
4773 * gdbtypes.h: Remove include dwarf2expr.h.
4774 (cu_offset, sect_offset): ... here.
4778 * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
4779 (amd64_linux_sigtramp_code): This.
4780 (amd64_x32_linux_sigtramp_code): New.
4781 (LINUX_SIGTRAMP_LEN): Updated.
4782 (amd64_linux_sigtramp_start): Check x32 sigtramp.
4786 * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
4790 * config.in: Regenerate.
4791 * configure: Regenerate.
4792 * configure.ac: Remove check for gnu/libc-version.h.
4793 * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
4795 (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
4796 variables libc_version, libc_major and libc_minor. Replace sscanf by
4797 inferior_has_bug. Extend the comment.
4801 * linux-thread-db.c (inferior_has_bug): New function.
4802 (thread_db_find_new_threads_silently): Return boolean as checked by
4803 inferior_has_bug, describe it in the comments.
4804 (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
4805 earlier. Abort the initialization if it returned non-zero.
4806 (thread_db_new_objfile): Exclude debug files.
4807 (thread_db_find_new_threads_2): Preinitialize ERR. Check errors also
4812 * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
4813 related to queue management.
4815 * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
4816 instead of "debug dwarf2-die" in debugging printfs.
4817 (create_debug_info_hash_table_reader): Ditto.
4818 (create_debug_info_hash_table): Ditto.
4819 (init_dwo_file): Ditto.
4820 (init_cutu_and_read_dies): Add debugging printf.
4821 (init_cutu_and_read_dies_no_follow): Ditto.
4822 (process_psymtab_comp_unit_reader): Ditto.
4826 Add target-side support for dynamic printf.
4827 * NEWS: Mention the additional style.
4828 * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
4829 (struct bp_location): New field cmd_bytecode.
4830 * breakpoint.c: Include format.h.
4831 (disconnected_dprintf): New global.
4832 (parse_cmd_to_aexpr): New function.
4833 (build_target_command_list): New function.
4834 (insert_bp_location): Call it.
4835 (remove_breakpoints_pid): Skip dprintf breakpoints.
4836 (print_one_breakpoint_location): Ditto.
4837 (dprintf_style_agent): New global.
4838 (dprintf_style_enums): Add dprintf_style_agent.
4839 (update_dprintf_command_list): Add agent case.
4840 (agent_printf_command): New function.
4841 (_initialize_breakpoint): Add new commands.
4842 * common/ax.def (printf): New bytecode.
4843 * ax.h (ax_string): Declare.
4844 * ax-gdb.h (gen_printf): Declare.
4845 * ax-gdb.c: Include cli-utils.h, format.h.
4846 (gen_printf): New function.
4847 (maint_agent_print_command): New function.
4848 (_initialize_ax_gdb): Add maint agent-printf command.
4849 * ax-general.c (ax_string): New function.
4850 (ax_print): Add printf disassembly.
4851 * Makefile.in (SFILES): Add format.c
4852 (COMMON_OBS): Add format.o.
4853 * common/format.h: New file.
4854 * common/format.c: New file.
4855 * printcmd.c: Include format.h.
4856 (ui_printf): Call parse_format_string.
4857 * remote.c (remote_state): New field breakpoint_commands.
4858 (PACKET_BreakpointCommands): New enum.
4859 (remote_breakpoint_commands_feature): New function.
4860 (remote_protocol_features): Add new BreakpointCommands entry.
4861 (remote_can_run_breakpoint_commands): New function.
4862 (remote_add_target_side_commands): New function.
4863 (remote_insert_breakpoint): Call it.
4864 (remote_insert_hw_breakpoint): Ditto.
4865 (_initialize_remote): Add new packet configuration for
4866 target-side breakpoint commands.
4867 * target.h (struct target_ops): New field
4868 to_can_run_breakpoint_commands.
4869 (target_can_run_breakpoint_commands): New macro.
4870 * target.c (update_current_target): Handle
4871 to_can_run_breakpoint_commands.
4875 Execute -ix and -iex only after system and user gdbinit files.
4876 * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
4877 processing down after gdbinit files.
4881 Add fnmatch-gnu module.
4882 * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
4883 * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
4884 * gnulib/aclocal.m4: Regenerate.
4885 * gnulib/config.in: Regenerate.
4886 * gnulib/configure: Regenerate.
4887 * gnulib/import/dummy.c: Remove.
4888 * gnulib/import/Makefile.am: Regenerate.
4889 * gnulib/import/Makefile.in: Likewise.
4890 * gnulib/import/m4/gnulib-cache.m4: Likewise.
4891 * gnulib/import/m4/gnulib-comp.m4: Likewise.
4892 * gnulib/import/alloca.c: New file.
4893 * gnulib/import/alloca.in.h: Likewise.
4894 * gnulib/import/config.charset: Likewise.
4895 * gnulib/import/fnmatch.c: Likewise.
4896 * gnulib/import/fnmatch.in.h: Likewise.
4897 * gnulib/import/fnmatch_loop.c: Likewise.
4898 * gnulib/import/localcharset.c: Likewise.
4899 * gnulib/import/localcharset.h: Likewise.
4900 * gnulib/import/m4/alloca.m4: Likewise.
4901 * gnulib/import/m4/codeset.m4: Likewise.
4902 * gnulib/import/m4/configmake.m4: Likewise.
4903 * gnulib/import/m4/fcntl-o.m4: Likewise.
4904 * gnulib/import/m4/fnmatch.m4: Likewise.
4905 * gnulib/import/m4/glibc21.m4: Likewise.
4906 * gnulib/import/m4/localcharset.m4: Likewise.
4907 * gnulib/import/m4/locale-fr.m4: Likewise.
4908 * gnulib/import/m4/locale-ja.m4: Likewise.
4909 * gnulib/import/m4/locale-zh.m4: Likewise.
4910 * gnulib/import/m4/mbrtowc.m4: Likewise.
4911 * gnulib/import/m4/mbsinit.m4: Likewise.
4912 * gnulib/import/m4/mbsrtowcs.m4: Likewise.
4913 * gnulib/import/m4/mbstate_t.m4: Likewise.
4914 * gnulib/import/m4/stdbool.m4: Likewise.
4915 * gnulib/import/m4/wchar_h.m4: Likewise.
4916 * gnulib/import/m4/wctype_h.m4: Likewise.
4917 * gnulib/import/m4/wint_t.m4: Likewise.
4918 * gnulib/import/mbrtowc.c: Likewise.
4919 * gnulib/import/mbsinit.c: Likewise.
4920 * gnulib/import/mbsrtowcs-impl.h: Likewise.
4921 * gnulib/import/mbsrtowcs-state.c: Likewise.
4922 * gnulib/import/mbsrtowcs.c: Likewise.
4923 * gnulib/import/ref-add.sin: Likewise.
4924 * gnulib/import/ref-del.sin: Likewise.
4925 * gnulib/import/stdbool.in.h: Likewise.
4926 * gnulib/import/streq.h: Likewise.
4927 * gnulib/import/strnlen1.c: Likewise.
4928 * gnulib/import/strnlen1.h: Likewise.
4929 * gnulib/import/verify.h: Likewise.
4930 * gnulib/import/wchar.in.h: Likewise.
4931 * gnulib/import/wctype.in.h: Likewise.
4935 Support shell wildcards for 'set auto-load safe-path'.
4936 * auto-load.c: Include fnmatch.h.
4937 (filename_is_in_dir): Rename to ...
4938 (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
4939 it. Update function comment. Rename dir_len to pattern_len. New
4940 variables filename_len, pattern and filename. Add more DEBUG_AUTO_LOAD
4941 messages. Use gdb_filename_fnmatch.
4942 (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
4944 (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
4945 * defs.h (gdb_filename_fnmatch): New declaration.
4946 * utils.c: Include fnmatch.h.
4947 (gdb_filename_fnmatch): New function.
4951 * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
4952 `-probe' and `-probe-stap' options.
4956 * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
4957 always_inserted_off, and always_inserted_enums.
4958 Change always_inserted_mode's type to 'enum auto_boolean'.
4959 (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
4961 (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
4962 of add_setshow_enum_cmd.
4963 * infrun.c: Remove can_use_displaced_stepping_auto,
4964 can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
4965 can_use_displaced_stepping_enum.
4966 Change can_use_displaced_stepping's type to 'enum auto_boolean'.
4967 (show_can_use_displaced_stepping, use_displaced_stepping): Update
4969 (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
4970 add_setshow_enum_cmd.
4974 * dwarf2read.c (signatured_type): Make "per_cu" member first.
4975 (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
4976 currently being read. Propagate DW_AT_comp_dir to DWO DIE.
4980 * linespec.c: #include "stack.h".
4981 (decode_line_with_current_source): Moved here from symtab.c and
4982 renamed from decode_line_spec. All callers updated.
4983 (decode_line_with_last_displayed): Moved here from breakpoint.c and
4984 renamed from decode_line_spec_1. All callers updated.
4985 * linespec.h (decode_line_with_current_source): Move declaration here
4986 from symtab.h and renamed from decode_line_spec.
4987 (decode_line_with_last_displayed): Move declaration here from symtab.h
4988 and renamed from decode_line_spec_1.
4989 * macrocmd.c: #include "linespec.h".
4990 * symtab.c: Remove #include "linespec.h".
4994 * dwarf2read.c (get_cu_length): New function.
4995 (offset_in_cu_p, error_check_comp_unit_head): Call it.
4996 (create_debug_types_hash_table): Ditto.
4997 (init_cutu_and_read_dies): Ditto.
4998 (init_cutu_and_read_dies_no_follow): Ditto.
5000 * dwarf2read.c (dwarf2_find_base_address): Move definition.
5002 * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
5003 (struct abbrev_table): Define.
5004 (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
5006 (init_cutu_and_read_dies): Update.
5007 (abbrev_table_alloc_abbrev): New function. Replaces
5008 dwarf_alloc_abbrev. All callers updated.
5009 (abbrev_table_add_abbrev): New function.
5010 (abbrev_table_lookup_abbrev): New function. Replaces
5011 dwarf2_lookup_abbrev. All callers updated.
5012 (abbrev_table_read_table): New function. Contents moved here from
5013 dwarf2_read_abbrevs.
5014 (dwarf2_read_abbrevs): Call it.
5015 (abbrev_table_free): New function.
5016 (dwarf2_free_abbrev_table): Call it.
5020 * osdata.c (info_osdata_command): Filter out "Title" columns
5022 * common/linux-osdata.c (struct osdata_type): Add title field.
5023 (osdata_table): Add titles to each entry.
5024 (linux_command_xfer_osdata): Add a column for title data.
5028 Make logging work for MI.
5030 * interps.h (interp_set_logging_ftype): New typedef.
5031 (struct interp_procs): New field set_logging_proc.
5032 (current_interp_set_logging): Declare.
5033 * interps.c (current_interp_set_logging): New function.
5034 * cli/cli-logging.c: Include interps.h.
5035 (set_logging_redirect): Call current_interp_set_logging.
5036 (pop_output_files): Ditto.
5037 (handle_redirections): Ditto, plus skip ui-out redirect if MI.
5038 * mi/mi-console.h (mi_console_set_raw): Declare.
5039 * mi/mi-console.c (mi_console_set_raw): New function.
5040 * mi/mi-interp.c (saved_raw_stdout): New global.
5041 (mi_set_logging): New function.
5042 (_initialize_mi_interp): Add it to interp procs.
5046 * symtab.c (lookup_symbol_aux_objfile): Use
5047 ALL_OBJFILE_PRIMARY_SYMTABS.
5049 * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
5053 * common/buffer.c: Include inttypes.h and stdint.h.
5054 (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
5059 * gdbthread.h (ALL_THREADS): New macro.
5060 (thread_list): Declare.
5061 * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
5062 going, but instead fall through to the stepping handling.
5063 * linux-nat.c (resume_lwp): New parameter 'signo'. Resume with
5064 the passed in signal. Adjust debug output.
5065 (resume_callback): Rename to ...
5066 (linux_nat_resume_callback): ... this. Pass the thread's last
5067 stop signal, if in "pass" state.
5068 (linux_nat_resume): Adjust to rename.
5069 (stop_wait_callback): New assertion. Don't respawn signals;
5070 instead let the LWP remain with SIGNALLED set.
5071 (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
5072 * remote.c (append_pending_thread_resumptions): New.
5073 (remote_vcont_resume): Call it.
5074 * target.h (target_resume): Extend comment.
5078 * auxv.c (fprint_target_auxv): Handle extended cache data tags.
5082 * dwarf2read.c (dwarf2_cu): Add ranges_base.
5083 Delete have_addr_base, unused. All uses updated.
5084 (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
5085 (dwarf2_get_pc_bounds): Add ranges_base.
5086 (dwarf2_record_block_ranges): Ditto.
5091 * varobj.c (varobj_create): Update.
5092 (varobj_set_value): Update.
5093 * tracepoint.c (validate_actionline): Update.
5094 (encode_actions_1): Update.
5095 * parse.c (parse_exp_1): Add 'pc' argument.
5096 (parse_exp_in_context): Add 'pc' argument. Change how
5097 expression_context_pc is set.
5098 (parse_expression): Update.
5099 (parse_field_expression): Update.
5100 * expression.h (parse_exp_1): Update.
5101 * eval.c (parse_to_comma_and_eval): Update.
5102 * breakpoint.c (set_breakpoint_condition): Update.
5103 (update_watchpoint): Update.
5104 (init_breakpoint_sal): Update
5105 (find_condition_and_thread): Update.
5106 (watch_command_1): Update.
5107 (update_breakpoint_locations): Update.
5108 * ada-lang.c (ada_read_renaming_var_value): Update.
5109 (create_excep_cond_exprs): Update.
5113 * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
5118 * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
5120 (error_check_comp_unit_head): New arg abbrev_section. All callers
5122 (read_and_check_comp_unit_head): Ditto.
5123 (read_and_check_type_unit_head): Ditto.
5127 New attribute 'last' for gdb.Symtab_and_line.
5128 * NEWS (Python Scripting): Add entry about the new attribute.
5129 * python/py-symtab.c (salpy_get_last): New function which
5130 implements the get method for the 'last' attribute of
5131 gdb.Symtab_and_line.
5132 (sal_object_getset): Add entry for the 'last' attribute.
5136 * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
5137 (dwo_sections): Add macinfo, macro.
5138 (dwarf2_locate_dwo_sections): Watch for macro sections.
5139 (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
5140 All callers updated. Handle DWO files.
5142 * NEWS: Mention new options "set debug dwarf2-read" and
5143 "set debug symtab-create".
5144 * dwarf2read.c (dwarf2_read_debug): New static global.
5145 (dwarf2_build_psymtabs_hard): Add debugging printfs.
5146 (process_queue): Ditto.
5147 (process_full_comp_unit): Ditto.
5148 (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
5149 * elfread.c (elf_symfile_read): Add debugging printf.
5150 * minsyms.c (install_minimal_symbols): Ditto.
5151 * psymtab.c (allocate_psymtab): Ditto.
5152 * symfile.c (allocate_symtab): Ditto.
5153 * symtab.c (symtab_create_debug): New global.
5154 (_initialize_symtab): Add new option "set debug symtab-create".
5155 * symtab.h (symtab_create_debug): Declare.
5157 * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
5158 (lookup_dwo_type_unit): Ditto.
5163 * amd64-linux-nat.c: Include <sys/user.h>.
5164 (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
5165 if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
5166 HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
5168 * configure.ac: Check if the fs_base and gs_base members of
5169 `struct user_regs_struct' exist.
5170 * config.in: Regenerated.
5171 * configure: Likewise.
5176 * python/python.c (gdbpy_write): Check for interrupted output.
5180 * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
5181 register as a stack alignment in ARM mode.
5185 Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
5186 * gnulib/config.in: Regenerate.
5187 * gnulib/configure: Likewise.
5188 * gnulib/import/m4/extensions.m4: Update it.
5189 * gnulib/import/m4/gnulib-common.m4: Likewise.
5190 * gnulib/import/m4/memmem.m4: Likewise.
5191 * gnulib/import/m4/mmap-anon.m4: Likewise.
5192 * gnulib/import/m4/multiarch.m4: Likewise.
5193 * gnulib/import/stdint.in.h: Likewise.
5197 * corefile.c (write_memory_with_notification): New.
5198 * gdbcore.h: Declare write_memory_with_notification.
5199 * ada-lang.c (ada_value_assign): Replace 'write_memory' and
5200 'observer_notify_memory_changed' with 'write_memory_with_notification'.
5201 * valops.c (value_assign): Likewise.
5202 * python/py-inferior.c (infpy_write_memory): Call
5203 'write_memory_with_notification'.
5207 * cc-with-index.sh: Use also -ex "set auto-load no".
5212 * NEWS: Document additions to .gdb_index.
5213 * dwarf2read.c: #include "gdb/gdb-index.h".
5214 (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
5215 (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
5216 (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
5217 (dwarf2_read_index): Recognize version 7.
5218 (dw2_do_expand_symtabs_matching): New args want_specific_block,
5219 block_kind, domain): All callers updated.
5220 (dw2_find_symbol_file): Handle new index CU values.
5221 (dw2_expand_symtabs_matching): Match symbol kind if requested.
5222 (add_index_entry): New args is_static, kind. All callers updated.
5223 (offset_type_compare, uniquify_cu_indices): New functions
5224 (symbol_kind): New function.
5225 (write_psymtabs_to_index): Remove duplicate CU values.
5226 (write_psymtabs_to_index): Write .gdb_index version 7.
5230 * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
5231 * configure: Regenerate.
5235 * python/py-inferior.c: Update comments of infpy_read_memory
5236 and infpy_write_memory.
5241 * parser-defs.h (insert_type, insert_type_address_space): Declare.
5242 (push_type_address_space): Remove.
5243 * parse.c (insert_into_type_stack): New function.
5244 (insert_type): Likewise.
5245 (insert_type_address_space): Rename from push_type_address_space.
5246 Insert tp_space_identifier.
5247 * c-exp.y (ptr_operator): New production.
5248 (abs_decl): Use ptr_operator.
5249 (space_identifier): Call insert_type_address_space.
5250 (ptype): Don't use const_or_volatile_or_space_identifier.
5251 (const_or_volatile_noopt): Call insert_type.
5252 (conversion_type_id, conversion_declarator): New productions.
5253 (operator): Use conversion_type_id.
5257 * symtab.h (minimal_symbol): New member created_by_gdb.
5258 * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
5260 * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
5261 (search_symbols): Call it instead of lookup_symbol.
5262 Skip symbols created by gdb. Only scan minsyms if nfiles == 0.
5264 * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
5265 Adjust address for DW_OP_GNU_addr_index.
5266 * dwarf2expr.h (dwarf_expr_context): Update comment.
5267 * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
5268 all callers updated. Handle TLS vars described with
5269 DW_OP_GNU_const_index.
5270 (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
5271 and DW_OP_GNU_const_index.
5272 * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
5274 * block.c (find_block_in_blockvector): Make explicit the fact that we
5275 ignore GLOBAL_BLOCK.
5279 * c-exp.y (operator): Remove trailing space after "delete" and
5285 Switch i386 and derived targets to ON_STACK.
5286 * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
5287 (amd64_dicos_init_abi): Remove its installment.
5288 * dicos-tdep.c (dicos_init_abi): Remove the
5289 set_gdbarch_call_dummy_location call. Update the comment here.
5290 * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
5291 (i386_dicos_init_abi): Remove its installment.
5292 * i386-tdep.c (i386_push_dummy_code): New function.
5293 (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
5294 i386_push_dummy_code.
5298 Remove stale dummy frames.
5299 * breakpoint.c: Include dummy-frame.h.
5300 (longjmp_breakpoint_ops): New variable.
5301 (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
5302 bp_longjmp_call_dummy.
5303 (bpstat_what, bptype_string, print_one_breakpoint_location)
5304 (init_bp_location): Support bp_longjmp_call_dummy.
5305 (set_longjmp_breakpoint): Use longjmp_breakpoint_ops. Comment why.
5306 (set_longjmp_breakpoint_for_call_dummy)
5307 (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
5309 (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
5310 * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy. Delete
5311 FIXME comment and extend the other comment for bp_call_dummy.
5312 (set_longjmp_breakpoint_for_call_dummy)
5313 (check_longjmp_breakpoint_for_call_dummy): New declarations.
5314 * dummy-frame.c: Include gdbthread.h.
5315 (pop_dummy_frame_bpt): New function.
5316 (pop_dummy_frame): Call pop_dummy_frame_bpt.
5317 (dummy_frame_discard): New function.
5318 (cleanup_dummy_frames): Update the comment about longjmps.
5319 * dummy-frame.h (dummy_frame_discard): New declaration.
5320 * gdbthread.h (struct thread_info): Extend initiating_frame comment.
5321 * infcall.c (call_function_by_hand): New variable longjmp_b. Call
5322 set_longjmp_breakpoint_for_call_dummy. Chain its breakpoints with BPT.
5323 * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
5324 Add case 4 comment. Call check_longjmp_breakpoint_for_call_dummy and
5325 keep_going if IS_LONGJMP and there is no other reason to stop.
5329 * remote-sim.c (sim_command_completer): Initialize
5334 * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
5335 * dwarf2loc.c (call_site_parameter_matches): Support
5336 CALL_SITE_PARAMETER_PARAM_OFFSET.
5337 (needs_dwarf_reg_entry_value): Push stub value.
5338 * dwarf2read.c (read_call_site_scope): New variable origin. Support
5339 CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
5340 * gdbtypes.h (enum call_site_parameter_kind): New item
5341 CALL_SITE_PARAMETER_PARAM_OFFSET.
5342 (struct call_site.parameter.u): New field param_offset.
5346 Code cleanup: Generalize call_site.parameter key.
5347 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
5348 variable dwarf_reg. New variable kind_u. Update parameters to
5349 push_dwarf_reg_entry_value.
5350 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5351 * dwarf2expr.h (enum call_site_parameter_kind)
5352 (union call_site_parameter_u): Forward declarations.
5353 (struct dwarf_expr_context_funcs): Update parameters and their
5354 description for push_dwarf_reg_entry_value.
5355 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5356 * dwarf2loc.c (call_site_parameter_matches): New function.
5357 (dwarf_expr_reg_to_entry_parameter): Update parameters and their
5358 description. Use call_site_parameter_matches.
5359 (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
5360 Update parameters and their description.
5361 (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
5362 New variable kind_u. Adjust the caller for updated parameters.
5363 (needs_dwarf_reg_entry_value): Update parameters.
5364 * dwarf2read.c (read_call_site_scope): New variable loc. Use it
5365 instead of attr. Update for the changed fields of struct
5366 call_site_parameter.
5367 * gdbtypes.h: Include dwarf2expr.h.
5368 (enum call_site_parameter_kind): New.
5369 (struct call_site.parameter): New field kind. Wrap dwarf_reg and
5370 fb_offset into new union u.
5374 * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
5375 (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
5380 * amd64-linux-nat.c (compat_x32_clock_t): New.
5381 (compat_x32_siginfo_t): Likewise.
5382 (compat_x32_siginfo_from_siginfo): Likewise.
5383 (siginfo_from_compat_x32_siginfo): Likewise.
5384 (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
5385 and siginfo_from_compat_x32_siginfo for x32.
5389 * tracepoint.c (tfile_xfer_partial): Add a lseek.
5393 * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
5394 instead of gdbarch_ptr_bit.
5395 * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
5396 (amd64_supply_native_gregset): Likewise.
5397 (amd64_collect_native_gregset): Likewise.
5398 * amd64-tdep.c (amd64_supply_fxsave): Likewise.
5399 (amd64_supply_xsave): Likewise.
5400 (amd64_collect_fxsave): Likewise.
5401 (amd64_collect_xsave): Likewise.
5405 * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
5406 (amd64_linux_read_description): Check DS segment register for
5411 * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
5412 init_cutu_and_read_dies.
5416 * MAINTAINERS (Write After Approval): Add myself to the list.
5420 * valops.c (value_find_oload_method_list): Now static.
5421 * value.h (value_find_oload_method_list): Don't declare.
5425 * valops.c (find_overload_match): Use value_ind.
5429 * infrun.c (handle_inferior_event): Correct indentation.
5433 * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
5434 (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
5436 (decode_debug_loc_dwo_addresses): New arg "byte_order". All callers
5437 updated. Handle DEBUG_LOC_START_LENGTH.
5438 (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
5439 (loclist_describe_location): Ditto.
5444 * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
5445 after hiding inline functions.
5449 * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
5450 _initialize_inf_ttrace.
5454 * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
5455 _initialize_hppa_hpux_nat.
5459 * remote-sim.c (sim_command_completer): Change type of return
5460 value to "VEC (char_ptr) *". Adjust implementation accordingly.
5466 * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
5467 stack on a 16-byte boundary.
5471 * jit.c (finalize_symtab): Set function's return type to 'void' by
5477 * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
5478 Move bits common to both the classic LP64 and the new x32 ILP32
5480 (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
5481 (amd64_x32_linux_init_abi): New function.
5482 (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
5485 * i386-tdep.h (i386_pseudo_register_name): New prototype.
5486 * i386-tdep.c (i386_pseudo_register_name): Make public.
5487 * amd64-tdep.h (amd64_x32_init_abi): New prototype.
5488 * amd64-tdep.c (amd64_dword_names): Add "eip".
5489 (amd64_x32_pseudo_register_type): New function
5490 (amd64_x32_init_abi): New function.
5495 * inferior.h (struct inferior_suspend_state): Comment out.
5496 (struct inferior): Comment out the field suspend.
5497 * infrun.c (struct infcall_suspend_state): Comment out the field
5499 (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
5504 PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
5505 * c-exp.y (classify_inner_name): Remove caller assumptions in the
5506 function comment. Return ERROR for unresolved cases. Implement
5507 returning proper NAME.
5508 (yylex): Accept also NAME from classify_inner_name.
5509 * cp-namespace.c (cp_lookup_nested_type): Rename to ...
5510 (cp_lookup_nested_symbol): ... here. Return any found symbol, not just
5512 * cp-support.h (cp_lookup_nested_type): Update its declaration.
5516 * breakpoint.c (condition_completer): New function.
5517 (_initialize_breakpoint): Use it.
5518 * value.c (complete_internalvar): New function.
5519 * value.h (complete_internalvar): Declare.
5523 * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
5524 * breakpoint.c (catch_syscall_completer): Return a VEC.
5525 * cli/cli-cmds.c (complete_command): Update.
5526 * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
5527 (complete_on_enum): Likewise.
5528 * command.h: Include gdb_vecs.h.
5529 (completer_ftype): Change return type.
5530 (complete_on_cmdlist, complete_on_enum): Likewise.
5531 * completer.c (noop_completer, filename_completer)
5532 (location_completer): Return a VEC.
5533 (add_struct_fields): Remove 'nextp' argument. Change 'output'
5535 (expression_completer, complete_line_internal, complete_line)
5536 (command_completer): Return a VEC.
5537 (gdb_completion_word_break_characters, line_completion_function):
5539 * completer.h: Include gdb_vecs.h.
5540 (complete_line, noop_completer, filename_completer)
5541 (expression_completer, location_completer, command_completer):
5543 * f-lang.c (f_word_break_characters): Return a VEC.
5544 * interps.c (interpreter_completer): Return a VEC.
5545 * language.h (struct language_defn)
5546 <la_make_symbol_completion_list>: Return a VEC.
5547 * python/py-cmd.c (cmdpy_completer): Return a VEC.
5548 * symtab.c (free_completion_list): Take a VEC.
5549 (return_val_size, return_val_index): Remove.
5550 (return_val): Now a VEC.
5551 (completion_list_add_name): Update.
5552 (default_make_symbol_completion_list_break_on)
5553 (default_make_symbol_completion_list, make_symbol_completion_list)
5554 (make_symbol_completion_list_fn, make_file_symbol_completion_list):
5556 (add_filename_to_list): Update.
5557 (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
5559 (maybe_add_partial_symtab_filename): Update.
5560 (make_source_files_completion_list): Return a VEC.
5561 * symtab.h (default_make_symbol_completion_list_break_on)
5562 (default_make_symbol_completion_list, make_symbol_completion_list)
5563 (make_symbol_completion_list_fn, make_file_symbol_completion_list)
5564 (make_source_files_completion_list): Update.
5568 * breakpoint.c (add_catch_command): Use completer_ftype.
5569 * breakpoint.h: Include command.h.
5570 (add_catch_command): Use completer_ftype.
5571 * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
5572 * cli/cli-decode.h (struct cmd_list_element) <completer>:
5573 Use completer_ftype.
5574 * command.h (completer_ftype): New typedef.
5575 (set_cmd_completer): Use it.
5576 * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
5581 Partial revert of previous change.
5583 * serial.c (scb_base): New global.
5584 (serial_for_fd): New.
5585 (serial_open, serial_fdopen_ops): Link new serial in open serials
5587 (do_serial_close): Unlink serial from the open serials chain.
5591 * infrun.c (infrun_thread_stop_requested_callback): Don't switch
5593 (prepare_for_detach): No longer context switch here in non-stop
5595 (fetch_inferior_event): Ditto.
5596 (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
5597 to the event thread before removing breakpoints. Switch to the
5598 event thread before inserting breakpoints and resuming.
5599 (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
5600 event thread before resuming.
5601 (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
5602 Switch to the event thread before removing breakpoints.
5606 * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
5607 special characters correctly for the Windows shells. See
5608 http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
5610 [!__MINGW32__]: Remove extra double quote character from special
5615 * ui-out.h: Remove #if 0 declarations.
5616 * ui-out.c: Remove #if 0 functions.
5620 * ser-base.c (run_async_handler_and_reschedule): New.
5621 (fd_event, push_event): Use it.
5622 * serial.c (serial_open, serial_fdopen_ops): Set the initial
5623 reference count to 1.
5624 (do_serial_close): Set the bufp field to NULL. Use serial_unref
5626 (serial_is_open, serial_ref, serial_unref): New.
5627 * serial.h (serial_open): Adjust comment.
5628 (serial_is_open): Declare.
5629 (serial_close): Adjust comment.
5630 (serial_ref, serial_unref) Declare.
5631 (struct serial): New field 'refcnt'.
5635 Remove #if 0'd "connect" command, and unnecessary associated
5636 refcounting and serial reuse bits.
5638 * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
5639 * serial.c (last_serial_opened): Delete.
5641 (serial_open): Adjust.
5642 (serial_for_fd): Delete.
5643 (serial_fdopen_ops, do_serial_close): Adjust.
5644 (serial_fdopen_ops): Adjust.
5648 * serial.c (do_serial_close): Remove early return when SCB is
5653 * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
5657 Fix regression by the "ambiguous linespec" series.
5658 * breakpoint.c (parse_breakpoint_sals): New variable cursal. Use
5659 get_last_displayed_symtab and get_last_displayed_line and depending
5664 * dwarf2read.c (dw2_get_primary_filename_reader): New function.
5665 (dw2_find_symbol_file): Use it.
5669 * mips-linux-tdep.c (mips_gdb_signal_from_target): New
5670 * mips-linux-tdep.h (mips_signals): New
5674 * infrun.c (handle_inferior_event)
5675 <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
5677 <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
5678 exception logic in all cases. Update comments.
5679 (insert_longjmp_resume_breakpoint): Set the exception resume
5684 * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
5688 * valarith.c (binop_types_user_defined_p): Fix a typo.
5693 * arch-utils.c (default_return_in_first_hidden_param_p): New.
5694 * arch-utils.h: Declare.
5695 * gdbarch.sh: Add return_in_first_hidden_param_p.
5696 * gdbarch.c, gdbarch.h: Regenerated.
5697 * infcall.c (call_function_by_hand): Call
5698 gdbarch_return_in_first_hidden_param_p instead of
5699 language_pass_by_reference.
5701 * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
5702 (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
5703 * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
5704 (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
5705 * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
5706 `cplus_return_struct_by_reference'.
5707 (tic6x_return_value): Handle language cplusplus.
5708 (tic6x_return_in_first_hidden_param_p): New.
5709 (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
5713 * dwarf2read.c (dwarf2_cu): Add comment.
5717 * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
5719 (mips_eabi_push_dummy_call): Likewise.
5720 (mips_n32n64_push_dummy_call): Likewise.
5721 (mips_o32_push_dummy_call): Likewise.
5722 (mips_o64_push_dummy_call): Likewise.
5726 * mips-tdep.c (mips_convert_register_p): Correct coding style.
5730 * mips-tdep.c (mips_pseudo_register_type): Use
5731 mips_float_register_p.
5735 * infrun.c (handle_inferior_event): Remove calls to
5736 reinit_frame_cache that follow a context_switch call.
5740 * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
5741 context_switch and remove stale comment.
5745 * infrun.c (struct execution_control_state): Remove
5746 `new_thread_event' field.
5747 (handle_inferior_event): Simplify new threads handling; don't
5748 resume the inferior if we find a new thread.
5752 * NEWS: Document the deprecation of SH's 'regs' command.
5753 * inferior.h (all_registers_info): Add function declaration.
5754 * sh-tdep.c (sh_show_regs): Remove variable.
5755 (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
5756 (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
5757 (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
5758 (sh_show_regs_command): Remove functions.
5759 (sh_gdbarch_init): Don't set sh_show_regs.
5760 (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
5761 'info all-registers'.
5762 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
5763 (sh64_show_regs): Remove functions.
5764 * sh64-tdep.h (sh64_show_regs): Remove function declaration.
5768 * configure.ac: Move development=true below AC_INIT.
5769 * configure: Regenerate.
5773 * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
5778 * corefile.c (read_memory, read_stack, write_memory): Accept LEN
5779 argument as ssize_t.
5780 * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
5781 * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
5782 * target.c (target_read_stack, target_write_memory)
5783 (target_write_raw_memory): Likewise.
5784 * target.h (target_read_stack, target_write_memory)
5785 (target_write_raw_memory): Likewise.
5789 * symfile-mem.c: Change gdb_static_assert to ssize_t.
5790 (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
5791 * target.c (target_read_memory): Change LEN to ssize_t.
5792 * target.h (target_read_memory): Change LEN to ssize_t.
5798 * breakpoint.c (until_break_command): Only fetch the selected
5799 frame after decode_line_1.
5803 * solib-svr4.c (enable_break): Don't fallback to setting the solib
5804 event breakpoint at _start, __start or main if a program
5805 interpreter is not found.
5809 * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
5811 * windows-tdep.c: #include "objfiles.h".
5812 (windows_iterate_over_objfiles_in_search_order): New function.
5813 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
5814 iterate_over_objfiles_in_search_order gdbarch method to
5815 windows_iterate_over_objfiles_in_search_order.
5816 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
5820 * gdbarch.sh: Add generation of
5821 "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
5822 gdbarch.h. Add include of "objfiles.h" in gdbarch.c.
5823 (iterate_over_objfiles_in_search_order): New gdbarch method.
5824 * gdbarch.h, gdbarch.c: Regenerate.
5825 * objfiles.h (default_iterate_over_objfiles_in_search_order):
5827 * objfiles.c (default_iterate_over_objfiles_in_search_order):
5829 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5830 out of lookup_symbol_aux_symtabs.
5831 (lookup_symbol_aux_symtabs): Replace extracted-out code by
5832 call to lookup_symbol_aux_objfile.
5833 (struct global_sym_lookup_data): New type.
5834 (lookup_symbol_global_iterator_cb): New function.
5835 (lookup_symbol_global): Search for symbol using
5836 gdbarch_iterate_over_objfiles_in_search_order and
5837 lookup_symbol_global_iterator_cb.
5838 * findvar.c (struct minsym_lookup_data): New type.
5839 (minsym_lookup_iterator_cb): New function.
5840 (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
5841 symbol's address via gdbarch_iterate_over_objfiles_in_search_order
5842 and minsym_lookup_iterator_cb.
5846 Revert the following patch:
5847 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
5848 try locating the symbol in the symbol's own objfile first, before
5849 extending the search to all objfiles.
5850 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5851 out of lookup_symbol_aux_symtabs.
5852 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
5853 Replace extracted-out code by call to lookup_symbol_aux_objfile.
5854 Do not search EXCLUDE_OBJFILE.
5855 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
5856 (lookup_symbol_global): Search for matches in the block's objfile
5857 first, before searching all other objfiles.
5861 * breakpoint.c (find_condition_and_thread): Stop parsing
5862 as soon as the first invalid keyword is found.
5866 * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
5870 * config/djgpp/djcheck.sh: Add copyright header.
5874 * copyright.py (update_files, main): Fix path to update-copyright
5879 * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
5880 (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
5881 for which a reminder to update by hand is printed.
5885 * buildsym.c (make_blockvector): Add comment.
5889 * arch-utils.c (default_gdb_signal_from_target): Delete.
5890 * arch-utils.h (default_gdb_signal_from_target): Delete.
5891 * corelow.c (core_open) <signal mapping>: Extended comment. Check
5892 gdbarch_gdb_signal_from_target_p.
5893 * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
5895 * gdbarch.h: Regenerate.
5896 * gdbarch.c: Regenerate.
5900 * gdbarch.sh (gdb_signal_from_target): Mention that the
5901 implementation of the method must be host independent.
5902 * gdbarch.h: Regenerate.
5906 * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
5908 (target_read_memory_bfd): New function.
5909 (symbol_file_add_from_memory): Use it.
5913 * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
5915 (basic_lookup_transparent_type): Ditto.
5917 * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
5918 (ALL_PRIMARY_SYMTABS): Use it.
5919 (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
5920 * dwarf2read.c (dw2_find_symbol_file): Ditto.
5921 * linespec.c (iterate_over_all_matching_symtabs): Ditto.
5922 * symtab.c (lookup_symbol_aux_objfile): Ditto.
5923 (basic_lookup_transparent_type): Ditto.
5927 * symtab.c (symbol_demangled_name): New variable `dem_name'. Use
5928 it to optimize resolution of demangled name.
5932 * configure.ac (development): Define new variable.
5933 Call AC_CHECK_LIB for mcheck if $development.
5934 (ERROR_ON_WARNING): Enable it by default only if $development.
5935 * config.in: Regenerate.
5936 * configure: Regenerate.
5940 * target.c (target_read_memory): Make LEN argument as size_t.
5941 * target.h (target_read_memory): Likewise.
5945 * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
5949 * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
5950 BookE interface for PowerPC server processors if not available
5951 in the Linux Kernel.
5955 * linespec.c (decode_objc): Add cleanup to free
5957 (find_linespec_symbols): Add cleanup to free CLASSES.
5958 * symfile.c (find_separate_debug_file_by_debuglink): Add
5959 cleanup to free DEBUGLINK.
5960 * ui-out.c (clear_header_list): No need to check if
5961 HEADER_NEXT.COLHDR is NULL.
5962 Free HEADER_NEXT.COL_NAME.
5966 * ada-lang.c (standard_lookup): Prevent uninitialized variable
5971 * configure.host (gdb_host_cpu): Handle tilegx*.
5972 (gdb_host): Handle tilegx-*-linux*.
5973 * tilegx-linux-nat.c: New file.
5974 * config/tilegx/linux.mh: New file.
5978 * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
5979 tilegx-linux-tdep.o.
5980 (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
5981 tilegx-linux-tdep.c.
5982 * configure.tgt: Handle tilegx-*-linux*.
5983 * tilegx-tdep.h: New file.
5984 * tilegx-tdep.c: New file.
5985 * tilegx-linux-tdep.c: New file.
5986 * regformats/reg-tilegx.dat: New file.
5990 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
5991 accounting of hw watchpoints on ppc.
5995 * source.c (openp): Expand tilde in path entries.
5999 * buildsym.c (block_compar): Fix comment.
6000 (end_symtab): Fix and clarify some comments.
6002 * stabsread.h (cleanup_undefined_stabs_types): Renamed from
6003 cleanup_undefined_types.
6004 * stabsread.c (cleanup_undefined_stabs_types): Ditto.
6005 All callers updated.
6009 * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
6011 * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
6012 * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
6014 * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
6019 * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
6020 (struct darwin_info): ... New struct.
6021 (solib_darwin_pspace_data): New variable.
6022 (darwin_pspace_data_cleanup): New function.
6023 (get_darwin_info): Likewise.
6024 (darwin_dyld_version_ok, darwin_load_image_infos)
6025 (darwin_solib_get_all_image_info_addr_at_init)
6026 (darwin_solib_read_all_image_info_addr): Add info argument.
6028 (darwin_current_sos): Use per pspace structure.
6029 (darwin_solib_create_inferior_hook): Likewise.
6030 (darwin_clear_solib): Likewise.
6031 (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
6035 * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
6036 block that uses them. Clear ecss before handling each event.
6040 * solib-svr4.c (svr4_current_sos): New comment on
6041 svr4_current_sos_via_xfer_libraries fall back.
6045 * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best. Use
6046 it as a fallback for TYPE_IS_OPAQUE.
6047 * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
6048 symbols for lookup_symbol.
6052 PR symtab/13277: Resolving opaque structures in ICC generated binaries.
6053 * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
6054 (producer_is_gxx_lt_4_6): Move the checking and caching to...
6055 (check_producer): ... this new function, which also checks for ICC
6056 and caches the result.
6057 (producer_is_icc): New function.
6058 (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
6065 * arch-utils.c (default_gdb_signal_to_host): Rename to ...
6066 (default_gdb_signal_to_target): ... this. Add comment.
6067 (default_gdb_signal_from_host): Rename to ...
6068 (default_gdb_signal_from_target): ... this. Add comment.
6069 * arch-utils.h (default_gdb_signal_to_host): Rename to ...
6070 (default_gdb_signal_to_target): ... this.
6071 (default_gdb_signal_from_host): Rename to ...
6072 (default_gdb_signal_from_target): ... this.
6073 * corelow.c (core_open): Adjust to naming change. Replace comment.
6074 * gdbarch.sh (gdb_signal_from_host): Rename to ...
6075 (gdb_signal_from_target): ... this. Adjust to
6076 default_gdb_signal_from_host naming change. Extend comment.
6077 (gdb_signal_to_host): Rename to ...
6078 (gdb_signal_to_target): ... this. Adjust to
6079 default_gdb_signal_to_host naming change.
6080 * gdbarch.h, gdbarch.c: Renegerate.
6086 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
6092 Replace target_signal with gdb_signal throughout.
6098 * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
6099 string, instead of reusing the va_list argument.
6103 * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
6108 * symtab.c (search_symbols): Formatting fixes.
6109 (print_symbol_info): Formatting fixes.
6111 * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
6112 int64_t change to leb128 API.
6113 (read_encoded_value, decode_frame_entry_1): Ditto.
6114 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
6115 (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
6116 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6117 (execute_stack_op): Ditto.
6118 * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
6119 (safe_read_uleb128, safe_read_sleb128): Ditto.
6120 * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
6121 (dwarf2_compile_expr_to_ax): Ditto.
6122 (locexpr_describe_location_piece): Ditto.
6123 (disassemble_dwarf_expression): Ditto.
6124 (locexpr_describe_location_1): Ditto.
6129 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
6130 (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
6131 (mi-cmd-info.o): New rule.
6132 * osdata.h (info_osdata_command): New declaration.
6133 * osdata.c (info_osdata_command): Change to non-static.
6134 * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
6135 * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
6136 * mi/mi-cmd-info.c: New file.
6140 * symtab.c (search_symbols): Pass NULL for file_matcher to
6141 expand_symtabs_matching if there are no files to match.
6143 * gdbtypes.c (lookup_typename): Simplify.
6147 * arch-utils.h (default_target_signal_to_host): Delete.
6148 * arch-utils.c (default_target_signal_to_host): Delete.
6149 * gdbarch.sh (target_signal_to_host): Remove.
6150 * gdbarch.h, gdbarch.c: Regenerate.
6154 * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
6156 (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
6157 (execute_cfa_program): Update to match API of leb128 functions.
6158 (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
6160 (read_unsigned_leb128, read_signed_leb128): Delete.
6161 (read_initial_length): Change type of buf argument to
6163 (read_encoded_value): Update to match API of leb128 functions.
6164 (decode_frame_entry): Change result to "const gdb_byte *", and
6165 similarly for "start" parameter.
6166 (decode_frame_entry_1): Ditto. Use new leb128 reader functions.
6167 (dwarf2_build_frame_info): Change local frame_ptr to
6169 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
6170 read_uleb128, read_sleb128. All callers updated.
6171 (safe_skip_leb128): New function.
6172 (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
6173 Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
6174 (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
6175 functions. Call gdb_read_uleb128, gdb_read_sleb128 instead of
6176 read_uleb128, read_sleb128.
6177 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6178 (execute_stack_op): Update to match API of leb128 functions.
6179 * dwarf2expr.h: #include "leb128.h".
6180 (read_uleb128, read_sleb128): Delete.
6181 (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
6182 (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
6183 * dwarf2loc.c (debug_loc_kind): New enum.
6184 (decode_debug_loc_addresses): New function.
6185 (decode_debug_loc_dwo_addresses): New function.
6186 (dwarf2_find_location_expression): Rewrite.
6187 (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
6188 (locexpr_describe_location_piece): Ditto.
6189 (disassemble_dwarf_expression): Ditto.
6190 (locexpr_describe_location_1): Ditto.
6191 (loclist_describe_location): Rewrite.
6192 * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
6193 * dwarf2read.c (die_reader_specs): New member "buffer_end".
6194 (dwarf2_section_buffer_overflow_complaint): Renamed from
6195 dwarf2_macros_too_long_complaint. All callers updated.
6196 (skip_leb128): Delete.
6197 (init_cu_die_reader): Initialize reader->buffer_end.
6198 (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
6199 (skip_form_bytes): New arg buffer_end. All callers updated.
6200 Replace call to skip_leb128 with gdb_skip_leb128.
6201 (skip_unknown_opcode): New arg mac_end. All callers updated.
6202 (fill_in_loclist_baton): Initialize baton->from_dwo.
6206 * mips-linux-nat.c (mips_linux_read_description): Use a more
6207 verbose error message.
6211 * NEWS: Add MIPS/Linux DSP support.
6212 * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
6213 (SIGCONTEXT_DSPCTL): New macro.
6214 (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
6215 (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
6216 (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
6217 (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
6218 (N64_SIGCONTEXT_HI3): Likewise.
6219 (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
6220 (N64_SIGCONTEXT_LO3): Likewise.
6221 (N64_SIGCONTEXT_DSPCTL): Likewise.
6222 (N64_SIGCONTEXT_FPCSR): Clarify definition.
6223 (mips_linux_o32_sigframe_init): Handle DSP registers.
6224 (mips_linux_n32n64_sigframe_init): Likewise.
6228 * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
6233 * target.h (store_waitstatus): Move declaration ...
6234 * inf-child.h (store_waitstatus): ... here.
6235 * target.c: Move inclusion of gdb_wait.h, and ...
6236 (store_waitstatus): ... this ...
6237 * inf-child.c: ... here.
6238 * linux-nat.c: Include inf-child.h.
6239 * rs6000-nat.c: Include inf-child.h.
6240 * spu-linux-nat.c: Include inf-child.h.
6244 * tracepoint.c (start_tracing): Add missing i18n markup.
6245 (stop_tracing, set_trace_user): Ditto.
6246 (set_trace_notes, set_trace_stop_notes): Ditto.
6251 * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
6253 * value.h (value_cast_pointers): Update.
6254 * valops.c (value_cast_pointers): Add 'subclass_check' argument.
6255 (value_cast): Update.
6256 (update_search_result): New function.
6257 (do_search_struct_field): New, from search_struct_field. Check
6258 for ambiguous results.
6259 (search_struct_field): Rewrite.
6260 * infcall.c (value_arg_coerce): Update.
6261 * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
6262 value_cast_pointers.
6263 * ada-lang.c (ada_convert_actual): Update.
6267 * macroexp.c (macro_stringify): Terminate the string.
6271 * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
6273 * auto-load.c (auto_load_expand_dir_vars): New function.
6274 (auto_load_safe_path_vec_update): Use it, remove the
6275 substitute_path_component call thanks to it.
6276 (auto_load_objfile_script): Remove the debug_file_directory processing.
6277 Use auto_load_expand_dir_vars, remove the substitute_path_component
6279 * configure: Regenerate.
6280 * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
6281 path. Escape $ also for $debugdir.
6282 (--with_auto_load_safe_path): Escape $ also for $debugdir.
6283 * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
6287 * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
6288 before use. Check for symtab->includes == NULL before scanning it.
6292 * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
6296 * NEWS: Add microMIPS support and "set mips compression",
6297 "show mips compression" commands.
6298 * mips-tdep.h (mips_isa): New enum.
6299 (gdbarch_tdep): Add mips_isa.
6300 (mips_pc_is_mips16): Update prototype.
6301 (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
6302 * mips-tdep.c (mips_compression_mips16): New variable.
6303 (mips_compression_micromips): Likewise.
6304 (mips_compression_strings): Likewise.
6305 (mips_compression_string): Likewise.
6306 (is_mips16_isa, is_micromips_isa): New functions.
6307 (is_mips16_addr): Rename to...
6308 (is_compact_addr): ... this.
6309 (unmake_mips16_addr): Likewise to...
6310 (unmake_compact_addr): ... this.
6311 (make_mips16_addr): Likewise to...
6312 (make_compact_addr): ... this.
6313 (is_mips_addr, is_mips16_addr, is_micromips_addr): New
6315 (mips_elf_make_msymbol_special): Handle microMIPS code.
6316 (msymbol_is_special): Rename to...
6317 (msymbol_is_mips16): ... this.
6318 (mips_make_symbol_special, mips_pc_is_mips16): Update
6320 (msymbol_is_mips, msymbol_is_micromips): New functions.
6321 (mips16_to_32_reg): Rename to...
6322 (mips_reg3_to_reg): ... this.
6323 (mips_pc_is_mips, mips_pc_is_micromips): New functions.
6324 (mips_pc_isa): Likewise.
6325 (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
6327 (mips_fetch_instruction): Pass return status instead of printing
6328 an error message if requested. Handle microMIPS code. Bail out
6330 (micromips_op): New macro.
6331 (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
6332 (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
6333 (b6s4_op, b7s3_reg): Likewise.
6334 (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
6335 (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
6336 (mips_insn_size): New function.
6337 (mips32_next_pc): Update mips_fetch_instruction call.
6338 (micromips_relative_offset7): New function.
6339 (micromips_relative_offset10): Likewise.
6340 (micromips_relative_offset16): Likewise.
6341 (micromips_pc_insn_size): Likewise.
6342 (micromips_bc1_pc): Likewise.
6343 (micromips_next_pc): Likewise.
6344 (unpack_mips16): Update mips_fetch_instruction call.
6345 (extended_mips16_next_pc): Update according to change to
6347 (mips_next_pc): Update mips_pc_is_mips16 call. Handle microMIPS
6349 (mips16_scan_prologue): Update mips_fetch_instruction call.
6350 Update according to change to mips16_to_32_reg.
6351 (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
6352 (mips_insn16_frame_base_sniffer): Likewise.
6353 (micromips_decode_imm9): New function.
6354 (micromips_scan_prologue): Likewise.
6355 (mips_micro_frame_cache): Likewise.
6356 (mips_micro_frame_this_id): Likewise.
6357 (mips_micro_frame_prev_register): Likewise.
6358 (mips_micro_frame_sniffer): Likewise.
6359 (mips_micro_frame_unwind): New variable.
6360 (mips_micro_frame_base_address): New function.
6361 (mips_micro_frame_base): New variable.
6362 (mips_micro_frame_base_sniffer): New function.
6363 (mips32_scan_prologue): Update mips_fetch_instruction call.
6364 (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
6365 rather than for MIPS16.
6366 (mips_insn32_frame_base_sniffer): Likewise.
6367 (mips_addr_bits_remove): Handle microMIPS code.
6368 (deal_with_atomic_sequence): Rename to...
6369 (mips_deal_with_atomic_sequence): ... this. Update the type
6370 of the variable used to hold an instruction. Remove the ISA bit
6371 check. Update mips_fetch_instruction call.
6372 (micromips_deal_with_atomic_sequence): New function.
6373 (deal_with_atomic_sequence): Likewise.
6374 (mips_about_to_return): Handle microMIPS code. Update
6375 mips_fetch_instruction call.
6376 (heuristic_proc_start): Check for the standard MIPS ISA rather
6377 than for MIPS16. Update mips_pc_is_mips16 and
6378 mips_fetch_instruction calls. Handle microMIPS code.
6379 (mips_push_dummy_code): Handle microMIPS code.
6380 (mips_eabi_push_dummy_call): Likewise.
6381 (mips_o32_return_value): Update mips_pc_is_mips16 call.
6382 (mips_o64_push_dummy_call): Handle microMIPS code.
6383 (mips_o64_return_value): Update mips_pc_is_mips16 call.
6384 (is_delayed): Remove function.
6385 (mips_single_step_through_delay): Replace the call to is_delayed
6386 with mips32_instruction_has_delay_slot. Correct MIPS16 handling.
6387 Handle microMIPS code.
6388 (mips_skip_prologue): Update mips_pc_is_mips16 call. Handle
6390 (mips32_in_function_epilogue_p): Update mips_fetch_instruction
6392 (micromips_in_function_epilogue_p): New function.
6393 (mips16_in_function_epilogue_p): Update mips_fetch_instruction
6395 (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
6397 (gdb_print_insn_mips): Likewise.
6398 (mips_breakpoint_from_pc): Likewise.
6399 (mips_remote_breakpoint_from_pc): New function.
6400 (mips32_instruction_has_delay_slot): Simplify making use of the
6401 updated mips_fetch_instruction interface.
6402 (micromips_instruction_has_delay_slot): New function.
6403 (mips16_instruction_has_delay_slot): Simplify making use of the
6404 updated mips_fetch_instruction interface.
6405 (mips_adjust_breakpoint_address): Check for the standard MIPS
6406 ISA rather than for MIPS16 ISA. Update for unmake_compact_addr
6407 calls. Handle microMIPS code.
6408 (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
6409 (mips_skip_trampoline_code): Handle microMIPS code.
6410 (global_mips_compression): New function.
6411 (mips_gdbarch_init): Handle the compressed ISA setting from ELF
6412 file flags. Register the microMIPS remote breakpoint handler
6413 and heuristic frame unwinder.
6414 (show_mips_compression): New function.
6415 (_initialize_mips_tdep): Add the "set mips compression" and
6416 "show mips compression" commands.
6423 * amd64-darwin-tdep.c:
6424 * arm-symbian-tdep.c:
6428 * bfin-linux-tdep.c:
6435 * dwarf2-frame-tailcall.c:
6464 * microblaze-tdep.c:
6465 * mips-linux-tdep.c:
6473 * python/py-finishbreakpoint.c:
6474 * python/py-inferior.c:
6475 * python/py-infthread.c:
6479 * remote-m32r-sdi.c:
6483 * rs6000-aix-tdep.c:
6509 * amd64-darwin-tdep.c:
6510 * arm-symbian-tdep.c:
6511 * arm-tdep.c: Delete unused variables.
6515 Rename $ddir to $datadir.
6516 * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
6517 * auto-load.c (auto_load_safe_path_vec_update)
6518 (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
6519 * configure: Regenerate.
6520 * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
6521 Likewise. Remove the 'use $ddir' help string.
6525 * auto-load.c (show_auto_load_safe_path): Accept any combination of
6526 DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
6531 * valprint.h (struct value_print_options) <symbol_print>: New
6533 * valprint.c (user_print_options): Add default for symbol_print.
6534 (show_symbol_print): New function.
6535 (generic_val_print): Respect symbol_print.
6536 (_initialize_valprint): Add "print symbol" setting.
6537 * f-valprint.c (f_val_print): Respect symbol_print.
6538 * c-valprint.c (c_val_print): Respect symbol_print.
6540 * printcmd.c (print_address_symbolic): Return int. Ignore some
6542 (print_address_demangle): Return int.
6543 * defs.h: (print_address_symbolic): Return int.
6544 * value.h (print_address_demangle): Return int.
6548 * valprint.c (val_print_string): Don't print leading space.
6549 * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
6550 print space before string or vtbl.
6551 * m2-valprint.c (print_unpacked_pointer): Optionally print space
6553 * jv-valprint.c (java_value_print): Print space before string.
6554 * go-valprint.c (print_go_string): Print space before string.
6555 * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
6556 space before string.
6557 * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
6558 space before string or vtbl.
6559 * auxv.c (fprint_target_auxv): Print space after address.
6563 * printcmd.c (print_address_demangle): Remove special case for 0.
6567 * printcmd.c (print_address_demangle): Add 'opts' argument.
6568 * p-valprint.c (pascal_val_print): Update.
6569 * jv-valprint.c (java_val_print): Update.
6571 * valprint.c (generic_val_print): Update.
6572 (print_function_pointer_address): Add 'options' argument. Remove
6573 'addressprint' argument. Update.
6574 * m2-valprint.c (print_unpacked_pointer): Update.
6575 * gnu-v3-abi.c (print_one_vtable): Update.
6576 (gnuv3_print_method_ptr): Update.
6577 * f-valprint.c (f_val_print): Update.
6578 * cp-valprint.c (cp_print_value_fields): Update.
6579 * valprint.h (print_function_pointer_address): Update.
6580 * c-valprint.c (c_val_print): Update.
6584 * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
6585 directly corresponding to the found psymtab.
6586 * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
6587 (dw2_find_pc_sect_symtab): Use it.
6588 * block.h (blockvector_contains_pc): Declare.
6589 * block.c (find_block_in_blockvector): New function.
6590 (blockvector_for_pc_sect): Use it.
6591 (blockvector_contains_pc): New function.
6595 * mips-tdep.h (mips_write_pc): New prototype.
6596 * mips-tdep.c (mips_write_pc): Make external, add description.
6597 * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
6602 * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
6604 (mips_unwind_pc, mips_write_pc): Likewise.
6605 (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
6610 * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
6611 proc_warn, proc_error, proc_get_status, proc_flags,
6612 proc_why, proc_what, proc_nsysarg, proc_sysargs,
6613 proc_set_run_on_last_close, proc_unset_run_on_last_close,
6614 proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
6615 proc_stop_process, proc_wait_for_stop, proc_run_process,
6616 proc_set_traced_signals, proc_set_traced_faults,
6617 proc_set_traced_sysentry, proc_set_traced_sysexit,
6618 proc_set_held_signals, proc_get_held_signals,
6619 proc_get_traced_signals, proc_get_traced_faults,
6620 proc_get_traced_sysentry, proc_get_traced_sysexit,
6621 proc_clear_current_fault, proc_set_current_signal,
6622 proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
6623 proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
6624 proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
6625 proc_get_current_thread, proc_get_current_thread,
6626 proc_get_current_thread, proc_update_threads,
6627 proc_update_threads, proc_update_threads, proc_update_threads,
6628 proc_iterate_over_threads, procfs_find_new_threads,
6629 procfs_pid_to_str): Make static. Remove advance declaration.
6630 (proc_cursig): Make static. Conditionalized defintion on
6631 PROCFS_DONT_PIOCSSIG_CURSIG being defined.
6632 (proc_syscall, proc_set_kill_on_last_close,
6633 proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
6634 proc_get_pending_signals, proc_get_signal_actions,
6635 proc_trace_signal, proc_ignore_signal): Delete.
6639 * coffread.c (cs_section_address): Passing proper argument for
6640 `bfd_get_section_vma'.
6641 * dwarf2read.c (dwarf2_locate_sections): Likewise, for
6642 `bfd_get_section_flags'.
6643 * remote.c (remote_trace_set_readonly_regions): Likewise, for
6644 `bfd_get_section_vma'.
6649 * macrotab.h: (macro_define_special): Declare.
6650 (enum macro_special_kind): New.
6651 (struct macro_definition) <argc, replacement>: Update comments.
6652 * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
6653 (macro_define_object_internal): New function.
6654 (macro_define_object): Use it.
6655 (macro_define_special): New function.
6656 (fixup_definition): New function.
6657 (macro_lookup_definition, foreach_macro_in_scope)
6658 (foreach_macro): Use fixup_definition.
6659 * macroexp.h (macro_stringify): Declare.
6660 * macroexp.c (free_buffer_return_text): New function.
6661 (stringify): Constify "arg".
6662 (macro_stringify): New function.
6663 * dwarf2read.c (macro_start_file): Call macro_define_special.
6668 * breakpoint.h (bp_location): Add related_address member.
6669 * inferior.h (get_return_value): Take a pointer to struct value
6670 instead of struct type for the function requested.
6671 * value.h (using_struct_return): Likewise.
6672 * gdbarch.sh (return_value): Take a pointer to struct value
6673 instead of struct type for the function requested.
6674 * breakpoint.c (set_breakpoint_location_function): Initialize
6675 related_address for bp_gnu_ifunc_resolver breakpoints.
6676 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
6677 requested function's address to gdbarch_return_value.
6678 * eval.c (evaluate_subexp_standard): Pass the requested
6679 function's address to using_struct_return.
6680 * infcall.c (call_function_by_hand): Pass the requested
6681 function's address to using_struct_return and
6682 gdbarch_return_value.
6683 * infcmd.c (get_return_value): Take a pointer to struct value
6684 instead of struct type for the function requested.
6685 (print_return_value): Update accordingly.
6686 (finish_command_continuation): Likewise.
6687 * stack.c (return_command): Pass the requested function's
6688 address to using_struct_return and gdbarch_return_value.
6689 * value.c (using_struct_return): Take a pointer to struct value
6690 instead of struct type for the function requested. Pass the
6691 requested function's address to gdbarch_return_value.
6692 * python/py-finishbreakpoint.c (finish_breakpoint_object):
6693 New function_value member, replacing function_type.
6694 (bpfinishpy_dealloc): Update accordingly.
6695 (bpfinishpy_pre_stop_hook): Likewise.
6696 (bpfinishpy_init): Likewise. Record the requested function's
6698 * mips-tdep.c (mips_fval_reg): New enum.
6699 (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
6700 words put in GP registers.
6701 (mips_o64_push_dummy_call): Update a comment.
6702 (mips_o32_return_value): Take a pointer to struct value instead
6703 of struct type for the function requested and use it to check if
6704 using the MIPS16 calling convention. Return the designated
6705 general purpose registers for floating-point values returned in
6707 (mips_o64_return_value): Likewise.
6708 * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
6709 (ppc_sysv_abi_broken_return_value): Likewise.
6710 (ppc64_sysv_abi_return_value): Likewise.
6711 * alpha-tdep.c (alpha_return_value): Take a pointer to struct
6712 value instead of struct type for the function requested.
6713 * amd64-tdep.c (amd64_return_value): Likewise.
6714 * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
6715 * arm-tdep.c (arm_return_value): Likewise.
6716 * avr-tdep.c (avr_return_value): Likewise.
6717 * bfin-tdep.c (bfin_return_value): Likewise.
6718 * cris-tdep.c (cris_return_value): Likewise.
6719 * frv-tdep.c (frv_return_value): Likewise.
6720 * h8300-tdep.c (h8300_return_value): Likewise.
6721 (h8300h_return_value): Likewise.
6722 * hppa-tdep.c (hppa32_return_value): Likewise.
6723 (hppa64_return_value): Likewise.
6724 * i386-tdep.c (i386_return_value): Likewise.
6725 * ia64-tdep.c (ia64_return_value): Likewise.
6726 * iq2000-tdep.c (iq2000_return_value): Likewise.
6727 * lm32-tdep.c (lm32_return_value): Likewise.
6728 * m32c-tdep.c (m32c_return_value): Likewise.
6729 * m32r-tdep.c (m32r_return_value): Likewise.
6730 * m68hc11-tdep.c (m68hc11_return_value): Likewise.
6731 * m68k-tdep.c (m68k_return_value): Likewise.
6732 (m68k_svr4_return_value): Likewise.
6733 * m88k-tdep.c (m88k_return_value): Likewise.
6734 * mep-tdep.c (mep_return_value): Likewise.
6735 * microblaze-tdep.c (microblaze_return_value): Likewise.
6736 * mn10300-tdep.c (mn10300_return_value): Likewise.
6737 * moxie-tdep.c (moxie_return_value): Likewise.
6738 * mt-tdep.c (mt_return_value): Likewise.
6739 * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
6740 * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
6741 (ppc_sysv_abi_broken_return_value): Likewise.
6742 (ppc64_sysv_abi_return_value): Likewise.
6743 * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
6744 * rl78-tdep.c (rl78_return_value): Likewise.
6745 * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
6746 * rx-tdep.c (rx_return_value): Likewise.
6747 * s390-tdep.c (s390_return_value): Likewise.
6748 * score-tdep.c (score_return_value): Likewise.
6749 * sh-tdep.c (sh_return_value_nofpu): Likewise.
6750 (sh_return_value_fpu): Likewise.
6751 * sh64-tdep.c (sh64_return_value): Likewise.
6752 * sparc-tdep.c (sparc32_return_value): Likewise.
6753 * sparc64-tdep.c (sparc64_return_value): Likewise.
6754 * spu-tdep.c (spu_return_value): Likewise.
6755 * tic6x-tdep.c (tic6x_return_value): Likewise.
6756 * v850-tdep.c (v850_return_value): Likewise.
6757 * vax-tdep.c (vax_return_value): Likewise.
6758 * xstormy16-tdep.c (xstormy16_return_value): Likewise.
6759 * xtensa-tdep.c (xtensa_return_value): Likewise.
6760 * gdbarch.c: Regenerate.
6761 * gdbarch.h: Regenerate.
6765 * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
6769 * breakpoint.c (init_breakpoint_sal): Add quotes around part
6770 of command in two error message.
6774 * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
6778 * breakpoint.c (find_condition_and_thread): Minor reformatting.
6782 * NEWS (show auto-load scripts-directory): Add forgotten command.
6786 * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
6791 * amd64-tdep.c: Include features/i386/x32.c and
6792 features/i386/x32-avx.c.
6793 (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
6794 initialize_tdesc_x32_avx.
6799 * breakpoint.h (enum bptype): New type bp_dprintf.
6800 (struct breakpoint): New field extra_string.
6801 (struct breakpoint_ops): Add arg to create_breakpoints_sal.
6802 (create_breakpoint): Add extra_string arg.
6803 * breakpoint.c (dprintf_breakpoint_ops): New.
6804 (is_breakpoint): Add bp_dprintf.
6805 (bpstat_what): Add dprintf case.
6806 (bptype_string): Ditto.
6807 (print_one_breakpoint_location): Ditto.
6808 (init_bp_location): Ditto.
6809 (bkpt_print_mention): Ditto.
6810 (dprintf_style_enums): New array.
6811 (dprintf_style): New global.
6812 (dprintf_function): New global.
6813 (dprintf_channel): New global.
6814 (update_dprintf_command_list): New function.
6815 (update_dprintf_commands): New function.
6816 (init_breakpoint_sal): Add extra_string argument, handle it.
6817 (create_breakpoint_sal): Add extra_string argument.
6818 (create_breakpoints_sal): Add extra_string argument, update callers.
6819 (find_condition_and_thread): Add extra argument.
6820 (create_breakpoint): Add extra_string argument, record it.
6821 (dprintf_command): New function.
6822 (break_command_1): Add arg to create_breakpoint call.
6823 (handle_gnu_v3_exceptions): Ditto.
6824 (trace_command): Ditto.
6825 (ftrace_command): Ditto.
6826 (strace_command): Ditto.
6827 (bkpt_print_mention): Add dprintf case.
6828 (create_breakpoint_sal_default): Add extra_string argument.
6829 (_initialize_breakpoint): Add new commands.
6830 * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
6831 * python/py-breakpoint.c (bppy_init): Ditto.
6832 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
6836 * mips-tdep.c (mips_push_dummy_code): Correct description typo.
6840 * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
6845 Add a new function gdb.find_pc_line to the Python API.
6846 * NEWS (Python Scripting): Add entry about the new function.
6847 * python/python.c (gdbpy_find_pc_line): New function which
6848 implements gdb.find_pc_line.
6849 (GdbMethods): Add entry for the new function.
6853 * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
6854 initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
6858 * inferior.c: Include completer.h
6859 (initialize_inferiors): Set completer of add-inferior to
6864 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
6865 gdbarch_ptr_bit for x32 core dump.
6869 * amd64-linux-tdep.c: Include features/i386/x32-linux.c
6870 and features/i386/x32-avx-linux.c.
6875 * NEWS: Describe new info os commands.
6876 * common/linux-osdata.c (PID_T, TIME_T): Define.
6877 (MAX_PID_T_STRLEN): New.
6878 (linux_common_core_of_thread): Add comment. Change to use PID_T and
6880 (command_from_pid): Add comment. Change to use PID_T.
6881 (commandline_from_pid): Change to use PID_T.
6882 (user_from_pid): Add comment.
6883 (get_process_owner): Add comment. Change to use PID_T and
6885 (get_number_of_cpu_cores): Add comment.
6886 (get_cores_used_by_process): Add comment. Change to use PID_T and
6888 (linux_xfer_osdata_processes): Change to use PID_T and
6890 (compare_processes): New function.
6891 (linux_xfer_osdata_processgroups): New function.
6892 (linux_xfer_osdata_threads): Change to use PID_T.
6893 (linux_xfer_osdata_fds): New function.
6894 (format_socket_state, print_sockets): New functions.
6895 (union socket_addr): New union.
6896 (linux_xfer_osdata_isockets): New function.
6897 (time_from_time_t, group_from_gid): New functions.
6898 (linux_xfer_osdata_shm): New function.
6899 (linux_xfer_osdata_sem): New function.
6900 (linux_xfer_osdata_msg): New function.
6901 (linux_xfer_osdata_modules): New function.
6902 (osdata_table): Add new entries.
6903 * common/buffer.c (buffer_xml_printf): Add support for long and
6904 long long format specifiers.
6908 * amd64-linux-tdep.h (tdesc_x32_linux): New.
6909 (tdesc_x32_avx_linux): Likewise.
6913 Implement multi-component --with-auto-load-dir.
6914 * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
6916 (--with-auto-load-safe-path): Update the default value description.
6917 * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
6919 (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output. Remove
6920 GDB_DATADIR NULL check. Replace GDB_DATADIR/auto-load by
6921 AUTO_LOAD_DIR. Support $ddir and multiple components in it.
6922 (_initialize_auto_load): Initialize also auto_load_dir. Install new
6923 "set auto-load scripts-directory".
6924 * config.in: Regenerate.
6925 * configure: Regenerate.
6926 * configure.ac (--with-auto-load-dir): New configure option.
6927 (--auto-load-safe-path): Change the default to --with-auto-load-dir.
6931 Provide $ddir substitution for --with-auto-load-safe-path.
6932 * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
6934 * auto-load.c: Include observer.h.
6935 (auto_load_safe_path_vec_update): Call substitute_path_component for
6936 each component. New variable ddir_subst.
6937 (auto_load_gdb_datadir_changed): New function.
6938 (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
6939 AUTO_LOAD_SAFE_PATH. New comment.
6940 (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
6941 AUTO_LOAD_SAFE_PATH. Install auto_load_gdb_datadir_changed.
6942 * config.in: Regenerate.
6943 * configure: Regenerate.
6944 * configure.ac (--auto-load-safe-path): Rename
6945 DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH. Default to
6946 GDB_DATADIR/auto-load.
6947 * defs.h (substitute_path_component): New declaration.
6948 * top.c: Include observer.h.
6949 (set_gdb_datadir): New function.
6950 (init_main): Install it for "set data-directory".
6951 * utils.c (substitute_path_component): New function.
6955 Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
6956 * auto-load.c (auto_load_objfile_script): Remove check for NULL
6957 DEBUG_FILE_DIRECTORY. Handle multiple components of
6958 DEBUG_FILE_DIRECTORY.
6962 * dwarf2read.c (recursively_write_psymbols): New function.
6963 (write_psymtabs_to_index): Use it.
6965 * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
6967 (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
6968 (load_partial_comp_unit): Update.
6969 (queue_comp_unit): Add argument 'pretend_language'.
6970 (process_queue): Update.
6971 (psymtab_to_symtab_1): Skip dependencies that have a user.
6972 (load_partial_comp_unit_reader): Give meaning to the 'data'
6974 (load_full_comp_unit): Add 'pretend_language' argument.
6975 (process_full_comp_unit): Add 'pretend_language' argument. Set
6977 (process_imported_unit_die, read_file_scope, read_type_unit_scope):
6979 (maybe_queue_comp_unit): Add 'pretend_language' argument.
6980 (follow_die_offset, follow_die_sig, read_signatured_type_reader):
6982 (prepare_one_comp_unit): Add 'pretend_language' argument.
6984 * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
6985 (struct dwarf2_per_objfile) <just_read_cus>: New field.
6986 (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
6987 (dw2_do_instantiate_symtab): Check whether symtab was read in
6989 (dw2_instantiate_symtab): Add assertion. Call
6990 process_cu_includes.
6991 (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
6992 (partial_symtab_p): New typedef.
6993 (set_partial_user): New function.
6994 (dwarf2_build_psymtabs_hard): Use set_partial_user.
6995 (scan_partial_symbols): Add imported CU to imported_symtabs.
6996 (dwarf2_psymtab_to_symtab): Call process_cu_includes.
6997 (psymtab_to_symtab_1): Do nothing if psymtab is readin.
6998 (get_symtab, recursively_compute_inclusions)
6999 (compute_symtab_includes, process_cu_includes)
7000 (process_imported_unit_die): New functions.
7001 (process_die) <DW_TAG_imported_unit>: New case.
7002 (dwarf2_per_objfile_free): Free 'imported_symtabs'.
7004 * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
7006 (struct partial_die_info) <locdesc>: Remove.
7008 (process_psymtab_comp_unit): Add 'read_partial' argument.
7010 (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
7011 (scan_partial_symbols): Handle DW_TAG_imported_unit.
7012 (add_partial_symbol): Update.
7013 (process_die): Handle DW_TAG_partial_unit.
7014 (read_file_scope): Update comment.
7015 (load_partial_dies): Handle DW_TAG_imported_unit.
7016 (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
7017 (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
7021 * cc-with-dwz.sh: New file.
7025 * symtab.h (struct symtab) <includes, user>: New fields.
7026 * block.h (struct block_iterator) <d, idx, which>: New fields.
7027 * block.c (initialize_block_iterator, find_iterator_symtab)
7028 (block_iterator_step, block_iter_name_step)
7029 (block_iter_match_step): New functions.
7030 (block_iterator_first, block_iterator_next)
7031 (block_iter_name_first, block_iter_name_next)
7032 (block_iter_match_first, block_iter_match_next): Rewrite.
7033 (get_block_symtab): New function.
7037 * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
7039 * jit.c (finalize_symtab): Use allocate_global_block,
7041 * buildsym.c (finish_block_internal): New function, from old
7043 (finish_block): Rewrite.
7044 (end_symtab): Use finish_block_internal, set_block_symtab.
7045 * block.h (struct global_block): New.
7046 (allocate_global_block, set_block_symtab): Declare.
7047 * block.c (allocate_global_block, set_block_symtab): New
7052 * psymtab.c (partial_map_expand_apply): Add assertion.
7053 (partial_map_symtabs_matching_filename): Skip included psymtabs.
7054 (psymtab_to_symtab): Find unshared psymtab.
7055 (dump_psymtab): Print including psymtabs.
7056 (recursively_search_psymtabs): New function.
7057 (expand_symtabs_matching_via_partial): Use it.
7058 * psympriv.h (struct partial_symtab) <user, searched_flag>: New
7060 (enum psymtab_search_status): New.
7064 * tracepoint.c (scope_info): Update.
7065 * symtab.c (lookup_block_symbol, iterate_over_symbols)
7066 (find_pc_sect_symtab, search_symbols)
7067 (default_make_symbol_completion_list_break_on)
7068 (make_file_symbol_completion_list): Update.
7069 * symmisc.c (dump_symtab_1): Update.
7070 * stack.c (print_frame_args, iterate_over_block_locals)
7071 (print_frame_labels, iterate_over_block_arg_vars): Update.
7072 * python/py-block.c (block_object) <dict>: Remove.
7074 <iter>: Change type.
7075 (blpy_iter): Update.
7076 (blpy_block_syms_iternext): Update.
7077 * psymtab.c (map_block): Use block iterators.
7078 * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
7079 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
7080 * mdebugread.c (parse_symbol, mylookup_symbol): Update.
7081 * infrun.c (check_exception_resume): Update.
7082 * cp-support.c (make_symbol_overload_list_block): Update.
7083 * coffread.c (patch_opaque_types): Update.
7084 * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
7085 * block.h (struct block_iterator): New.
7086 (block_iterator_first, block_iterator_next, block_iter_name_first)
7087 (block_iter_name_next, block_iter_match_first)
7088 (block_iter_match_next): Declare.
7089 (ALL_BLOCK_SYMBOLS): Redefine.
7090 * block.c (block_iterator_first, block_iterator_next)
7091 (block_iter_name_first, block_iter_name_next)
7092 (block_iter_match_first, block_iter_match_next): New functions.
7093 * ada-lang.c (ada_add_block_symbols)
7094 (ada_make_symbol_completion_list): Use block iterator.
7098 * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
7099 (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
7100 (lookup_partial_symbol, find_last_source_symtab_from_partial)
7101 (read_psymtabs_with_filename, map_matching_symbols_psymtab)
7102 (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
7107 * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
7108 print-file-var-lib2.c, print-file-var-main.c and
7109 print-file-var.exp (located in gdb/testsuite/gdb.base).
7113 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
7114 try locating the symbol in the symbol's own objfile first, before
7115 extending the search to all objfiles.
7116 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
7117 out of lookup_symbol_aux_symtabs.
7118 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
7119 Replace extracted-out code by call to lookup_symbol_aux_objfile.
7120 Do not search EXCLUDE_OBJFILE.
7121 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
7122 (lookup_symbol_global): Search for matches in the block's objfile
7123 first, before searching all other objfiles.
7127 * printcmd.c (set_command): Add pre/post inc/dec.
7131 * gdb.1: Document -ex option.
7135 * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
7136 * inferior.h (AT_SYMBOL): Delete.
7140 * mips-tdep.c (mips_push_dummy_code): New function.
7141 (mips_gdbarch_init): Set the gdbarch call_dummy_location to
7142 ON_STACK and install mips_push_dummy_code as our gdbarch
7143 push_dummy_code routine.
7147 * target.c (set_maintenance_target_async_permitted): Rename to ...
7148 (set_target_async_command): ... this.
7149 (show_maintenance_target_async_permitted): Rename to ...
7150 (show_target_async_command): ... this.
7151 (initialize_targets): Adjust.
7155 * go-exp.y (classify_name): Add missing assignment of fields of
7160 Display the ">" prompt in interactive mode while reading canned
7161 commands, even when the current interpreter is MI.
7163 * interps.c (interp_set_temp): New function.
7165 * interps.h (interp_set_temp): Add prototype.
7167 * cli/cli-script.c (restore_interp): New cleanup function.
7168 (read_command_lines): Temporarily override the current interpreter
7169 with CLI and arrange for restoring the original one.
7173 * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
7177 * probe.c (parse_probes): Move conditional to check for
7178 debuginfo files from here...
7179 * stap-probe.c (stap_get_probes): ... to here.
7184 * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
7185 `movl %esp, %ebp' for the X32 ABI.
7189 * dwarf2read.c (dwarf_tag_name): Return const char *. Use
7191 (dwarf_attr_name): Return const char *. Use get_DW_AT_name.
7192 (dwarf_form_name): Return const char *. Use get_DW_FORM_name.
7193 (dwarf_stack_op_name): Remove.
7194 (dwarf_cfi_name): Return const char *. Use get_DW_ATE_name.
7195 (decode_locdesc): Use get_DW_OP_name.
7196 * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
7197 (dwarf2_compile_expr_to_ax): Likewise.
7198 (disassemble_dwarf_expression): Likewise.
7199 * dwarf2expr.h: (dwarf_stack_op_name): Remove.
7203 * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
7204 (sh_linux_sigtramp_cache): New function.
7205 (sh_linux_sigreturn_init): New function.
7206 (sh_linux_rt_sigreturn_init): New function.
7207 (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
7209 (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
7211 (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
7212 (sh_linux_rt_sigreturn_tramp_frame): Likewise.
7213 (sh_linux_init_abi): Add init calls to register new tramp_frame
7214 definitions under 32-bit SH, update comments.
7220 * amd64-linux-tdep.c: Include glibc-tdep.h.
7221 (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
7222 gdbarch_skip_solib_resolver callback.
7226 * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
7227 back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
7228 (show_auto_load_safe_path): Check any-directory by comparison with "/".
7229 (add_auto_load_safe_path): Change the error message.
7230 (_initialize_auto_load): Change the "safe-path" help text.
7231 * configure: Regenerate
7232 * configure.ac (--without-auto-load-safe-path): Set
7233 WITH_AUTO_LOAD_SAFE_PATH to /.
7237 * stap-probe.h: Do not include unecessary `probe.h'.
7241 * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
7242 bfd_und_section_ptr.
7243 * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
7244 and bfd_com_section_ptr.
7248 * MAINTAINERS (Past Maintainers): Add Chris Faylor.
7252 * windows-nat.h (segment_register_p_ftype): New typedef.
7253 (windows_set_segment_register_p): Add declaration.
7254 * windows-nat.c (segment_register_p): New static global.
7255 (windows_set_segment_register_p): New function.
7256 (do_windows_fetch_inferior_registers): Add special handling
7257 for segment registers.
7258 * amd64-windows-nat.c: #include "amd64-tdep.h".
7259 (amd64_windows_segment_register_p): New function.
7260 (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
7261 * i386-windows-nat.c: #include "i386-tdep.h".
7262 (i386_windows_segment_register_p): New function.
7263 (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
7267 * printcmd.c (set_command): Emit a warning if the expression is not
7272 * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
7277 * stap-probe.c (stap_is_operator): Change declaration.
7278 (stap_get_opcode): Change return value.
7279 (stap_parse_argument_1): Update calls to `stap_get_opcode' and
7280 `stap_parse_argument_1'.
7284 * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
7289 Add two new methods global_block and static_block to gdb.Symtab
7291 * NEWS (Python scripting): Add entry about the new methods.
7292 * python/py-symtab.c (stpy_global_block): New function which
7293 implements the gdb.Symtab.global_block() method.
7294 (stpy_static_block): New function which implements the
7295 gdb.Symtab.static_block() method.
7296 (symtab_object_methods): Add entries for the two new methods.
7300 * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
7305 * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
7307 (i386_process_record): Ditto.
7311 * infcall.c (unwind_on_signal_p): Make static.
7315 * sol-thread.c (solaris_pid_to_str): Make static.
7316 (_initialize_sol_thread): Add prototype.
7320 * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
7324 * MAINTAINERS: Remove myself.
7328 Fix --without-auto-load-safe-path for MS-Windows host platform.
7329 * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
7333 * gdb_curses.h: Undefine KEY_EVENT before including curses
7334 headers. Move "#undef MOUSE_MOVED" before any curses header
7339 * features/i386/i386-mmx-linux.c: Regenerate.
7340 * features/rs6000/powerpc-32.c: Likewise.
7341 * features/rs6000/powerpc-32l.c: Likewise.
7342 * features/rs6000/powerpc-403.c: Likewise.
7343 * features/rs6000/powerpc-403gc.c: Likewise.
7344 * features/rs6000/powerpc-405.c: Likewise.
7345 * features/rs6000/powerpc-505.c: Likewise.
7346 * features/rs6000/powerpc-601.c: Likewise.
7347 * features/rs6000/powerpc-602.c: Likewise.
7348 * features/rs6000/powerpc-603.c: Likewise.
7349 * features/rs6000/powerpc-604.c: Likewise.
7350 * features/rs6000/powerpc-64.c: Likewise.
7351 * features/rs6000/powerpc-64l.c: Likewise.
7352 * features/rs6000/powerpc-750.c: Likewise.
7353 * features/rs6000/powerpc-860.c: Likewise.
7354 * features/rs6000/powerpc-e500.c: Likewise.
7355 * features/rs6000/powerpc-e500l.c: Likewise.
7356 * features/rs6000/powerpc-isa205-32l.c: Likewise.
7357 * features/rs6000/powerpc-isa205-64l.c: Likewise.
7358 * features/rs6000/rs6000.c: Likewise.
7362 * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
7364 * stap-probe.c (stap_parse_single_operand) <reg_suffix,
7365 reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
7366 (stap_parse_argument) <e>: Likewise.
7367 (handle_stap_probe) <byte_order>: Likewise.
7371 * dwarf2read.c (init_cutu_and_read_dies): Renamed from
7372 init_and_read_dies_worker. All callers updated.
7373 (init_cu_and_read_dies, init_tu_and_read_dies): Delete. All calls
7374 replaced with init_cutu_and_read_dies.
7375 (load_partial_comp_unit): Pass 1 for use_existing_cu.
7376 (find_partial_die): Remove FIXME. Don't free current CU.
7380 * contrib: New directory.
7381 * contrib/test_pubnames_and_indexes.py: New file.
7385 * dwarf2read.c (dwarf_decode_macros): New arg section_name.
7386 All callers updated.
7387 (init_cu_die_reader): Verify the section is non-empty.
7388 (dwarf_decode_line_header): Don't dereference section->asection
7389 until we know the section is present.
7393 * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
7398 * gdb-code-style.el: New hook gdb-markup-hook
7399 and gdb-comment-hook.
7403 Initial support for Fission. http://gcc.gnu.org/wiki/DebugFission
7404 * symfile.c (default_symfile_relocate): Use sectp->owner instead of
7406 * symfile.h (dwarf2_debug_sections): New member addr.
7407 * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
7408 (ctx_no_get_addr_index): New function.
7409 * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
7410 (ctx_no_get_addr_index): Declare.
7411 * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
7412 * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
7413 (dwarf_expr_ctx_funcs): Update.
7414 (needs_get_addr_index): New function.
7415 (needs_frame_ctx_funcs): Update.
7416 * dwarf2loc.h (dwarf2_read_addr_index): Declare.
7417 * dwarf2read.c: #include "gdbcore.h".
7418 (dwarf2_per_objfile): New members addr, dwo_files.
7419 (dwarf2_elf_names): Add entry for addr.
7420 (struct dwo_section_names): New type.
7421 (dwo_section_names): New static global.
7422 (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
7423 (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
7424 old debug_types_section member updated to use this.
7425 Rename member debug_types_section to info_or_types_section,
7427 (signatured_type): Rename member type_offset to type_offset_in_tu,
7428 all uses updated. New member type_offset_in_section.
7429 (struct dwo_sections): New type.
7430 (struct dwo_unit): New type.
7431 (struct dwo_file): New type.
7432 (die_reader_specs): New member dwo_file.
7433 (dwarf2_locate_sections): Watch for .debug_addr.
7434 (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
7435 (dwarf2_read_section): Get bfd of section from bfd's asection,
7437 (create_cus_from_index): Initialize the_cu->info_or_types_section.
7438 (create_signatured_type_table_from_index): Initialize
7439 sig_type->info_or_types_section.
7440 (dw2_get_file_names): Statement lists for type units with DWO files
7441 live in the DWO file.
7442 (create_debug_types_hash_table): New function.
7443 (create_all_type_units): Rewrite.
7444 (init_cu_die_reader): New arg dwo_file, all callers updated.
7445 (init_and_read_dies_worker): Get section from
7446 this_cu->info_or_types_section. Set sig_type->type_offset_in_section.
7447 Watch for DW_AT_GNU_dwo_name and if present lookup the file and
7448 continue reading the CU/TU from there.
7449 (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
7450 updated. Get section from this_cu->info_or_types_section.
7451 (create_all_comp_units): Initialize this_cu->info_or_types_section.
7452 (skip_one_die): New cases DW_FORM_GNU_addr_index,
7453 DW_FORM_GNU_str_index.
7454 (hash_dwo_file, eq_dwo_file): New functions.
7455 (allocate_dwo_file_hash_table): New function.
7456 (hash_dwo_unit, eq_dwo_unit): New functions.
7457 (allocate_dwo_unit_table): New function.
7458 (dwarf2_locate_dwo_sections): New function.
7459 (struct create_dwo_info_table_data): New type.
7460 (create_debug_info_hash_table_reader): New function.
7461 (create_debug_info_hash_table): New function.
7462 (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
7463 (lookup_dwo_file): New function.
7464 (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
7465 (free_dwo_file, free_dwo_file_cleanup): New functions.
7466 (free_dwo_file_from_slot, free_dwo_files): New functions.
7467 (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
7468 (dwarf2_record_block_ranges): Ditto.
7469 (read_partial_die): Ditto.
7470 (process_enumeration_scope): Update to use type_offset_in_section.
7471 (read_full_die_1): New function.
7472 (read_full_die): Rewrite.
7473 (read_attribute_value): New cases DW_FORM_GNU_addr_index,
7474 DW_FORM_GNU_str_index.
7475 (read_addr_index_1, read_addr_index): New functions.
7476 (read_addr_index_from_leb128): New function.
7477 (struct dwarf2_read_addr_index_data): New type.
7478 (dwarf2_read_addr_index_reader): New function.
7479 (dwarf2_read_addr_index): New function.
7480 (read_str_index): New function.
7481 (leb128_size): New function.
7482 (dwarf_decode_line_header): Delete arg abfd, all callers updated.
7483 If processing a type unit from a DWO file, get the line section
7485 (var_decode_location): Watch for DW_OP_GNU_addr_index.
7486 (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
7487 DW_FORM_GNU_str_index.
7488 (lookup_die_type): Check whether section offset of type's die is
7489 known before looking it up. Remove assert. Condition can
7490 legimately happen for inter-cu type references.
7491 (dwarf_attr_name): Handle Fission attributes.
7492 (dwarf_form_name): Handle Fission forms.
7493 (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
7494 DW_FORM_GNU_str_index.
7495 (follow_die_sig): Update to use type_offset_in_section.
7496 (decode_locdesc): New case DW_OP_GNU_addr_index.
7497 (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
7498 DW_FORM_GNU_str_index.
7499 (cu_debug_loc_section): New function.
7500 (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
7501 (dwarf2_per_objfile_free): Unmap .debug_addr section.
7502 Free DWO files if present.
7503 * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
7505 Refactor DIE reading.
7506 * dwarf2read.c (dwarf2_per_objfile): Replace members
7507 debug_info_type_hash and debug_types_type_hash with die_type_hash.
7508 (die_reader_specs): New member "die_section". Temporarily make
7509 member "buffer" non-const, pending constifying all info_ptr uses.
7510 (die_reader_func_ftype): New typedef.
7511 (dw2_get_file_names_reader): New function.
7512 (dw2_get_file_names): Rewrite.
7513 (read_and_check_type_unit_head): Rename arg type_offset to
7515 (create_all_type_units): Improve debugging message.
7516 Improve dummy type unit check.
7517 (init_cu_die_reader): New arg "section". All callers updated.
7518 (init_and_read_dies_worker): New function.
7519 (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
7520 (init_cutu_and_read_dies_no_follow): New function.
7521 (init_cutu_and_read_dies_simple): New function.
7522 (process_psymtab_comp_unit_reader): New function.
7523 (process_psymtab_comp_unit): Delete args section,
7524 is_debug_types_section. Rewrite. All callers updated.
7525 (process_psymtab_type_unit): Renamed from process_type_comp_unit.
7526 All callers updated. Rewrite.
7527 (load_partial_comp_unit_reader): New function.
7528 (load_partial_comp_unit): Rewrite.
7529 (skip_children): New arg reader. Delete args buffer, cu.
7530 All callers updated.
7531 (skip_one_die): New arg reader. Delete args buffer, cu.
7532 All callers updated.
7533 (locate_pdi_sibling): New arg reader. Delete args buffer, abfd, cu.
7534 All callers updated.
7535 (load_full_comp_unit_reader): New function.
7536 (load_full_comp_unit): Rewrite.
7537 (read_comp_unit): Delete.
7538 (read_die_and_children_1): Delete, contents moved ...
7539 (read_die_and_children): ... here.
7540 (dwarf2_read_abbrevs): New arg abbrev_section. All callers updated.
7541 (load_partial_dies): New arg reader. Delete args abfd, buffer, cu.
7542 All callers updated.
7543 (read_partial_die): New arg reader. Delete args abfd, buffer, cu.
7544 All callers updated.
7545 (find_partial_die): Rewrite load_all_dies support.
7546 (read_attribute_value): New arg reader. Delete args abfd, cu.
7547 All callers updated.
7548 (read_attribute): New arg reader. Delete args abfd, cu.
7549 All callers updated.
7550 (load_full_type_unit): Add assert.
7551 (read_signatured_type_reader): New function.
7552 (read_signatured_type): Rewrite.
7553 (free_stack_comp_unit): Remove call to age_cached_comp_units.
7554 (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
7555 All callers updated. Set per_cu->cu = NULL after freeing it.
7556 (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
7557 (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
7558 (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
7559 (set_die_type): Update.
7560 (get_die_type_at_offset): Update.
7561 (read_file_scope): Call prepare_one_comp_unit.
7562 (read_type_unit_scope): Ditto.
7563 (prepare_one_comp_unit): Set producer if present.
7567 * probe.c (compile_rx_or_error): Silence ARI warning about missing
7568 gettext function on `error'.
7572 * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
7578 * breakpoint.c (struct breakpoint_objfile_data)
7579 <longjmp_searched>,<longjmp_probes>,<exception_searched>,
7580 <exception_probes>: New fields.
7581 (free_breakpoint_probes): New function.
7582 (create_longjmp_master_breakpoint): Prefer SystemTap probe over
7583 `_Unwind_DebugHook'.
7584 (create_exception_master_breakpoint): Likewise.
7585 (_initialize_breakpoint): Registering cleanup for SystemTap probes.
7586 * infrun.c: Including necessary header files for handling SystemTap
7588 (handle_inferior_event): Handling longjmp breakpoint and exceptions
7589 via SystemTap probes.
7590 (check_exception_resume): Remove `func' argument. Handle exception
7591 unwinding breakpoint set via a SystemTap probe.
7592 (insert_exception_resume_from_probe): New function.
7598 * Makefile.in (SFILES): Add `probe' and `stap-probe'.
7599 (COMMON_OBS): Likewise.
7600 (HFILES_NO_SRCDIR): Add `probe'.
7601 * NEWS: Mention support for static and SystemTap probes.
7602 * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
7603 SystemTap probes' arguments parser.
7604 * arm-linux-tdep.c: Including headers needed to perform the parsing
7605 of SystemTap probes' arguments.
7606 (arm_stap_is_single_operand): New function.
7607 (arm_stap_parse_special_token): Likewise.
7608 (arm_linux_init_abi): Initializing proper fields used by SystemTap
7609 probes' arguments parser.
7610 * ax-gdb.c (require_rvalue): Removing static declaration.
7611 (gen_expr): Likewise.
7612 * ax-gdb.h (gen_expr): Declaring function.
7613 (require_rvalue): Likewise.
7614 * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
7615 (bkpt_probe_breakpoint_ops): New variable.
7616 (momentary_breakpoint_from_master): Set the `probe' value.
7617 (add_location_to_breakpoint): Likewise.
7618 (break_command_1): Using proper breakpoint_ops according to the
7619 argument passed by the user in the command line.
7620 (bkpt_probe_insert_location): New function.
7621 (bkpt_probe_remove_location): Likewise.
7622 (bkpt_probe_create_sals_from_address): Likewise.
7623 (bkpt_probe_decode_linespec): Likewise.
7624 (tracepoint_probe_create_sals_from_address): Likewise.
7625 (tracepoint_probe_decode_linespec): Likewise.
7626 (tracepoint_probe_breakpoint_ops): New variable.
7627 (trace_command): Using proper breakpoint_ops according to the
7628 argument passed by the user in the command line.
7629 (initialize_breakpoint_ops): Initializing breakpoint_ops for
7630 static probes on breakpoints and tracepoints.
7631 * breakpoint.h (struct bp_location) <probe>: New field.
7632 * cli-utils.c (skip_spaces_const): New function.
7633 (extract_arg): Likewise.
7634 * cli-utils.h (skip_spaces_const): Likewise.
7635 (extract_arg): Likewise.
7636 * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
7637 * configure.ac: Append `stap-probe.o' to be generated when ELF
7639 * configure: Regenerate.
7640 * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
7641 * elfread.c: Include `probe.h' and `arch-utils.h'.
7642 (probe_key): New variable.
7643 (elf_get_probes): New function.
7644 (elf_get_probe_argument_count): Likewise.
7645 (elf_evaluate_probe_argument): Likewise.
7646 (elf_compile_to_ax): Likewise.
7647 (elf_symfile_relocate_probe): Likewise.
7648 (stap_probe_key_free): Likewise.
7649 (elf_probe_fns): New variable.
7650 (elf_sym_fns): Add `sym_probe_fns' value.
7651 (elf_sym_fns_lazy_psyms): Likewise.
7652 (elf_sym_fns_gdb_index): Likewise.
7653 (_initialize_elfread): Initialize objfile cache for static
7655 * gdb_vecs.h (struct probe): New forward declaration.
7656 (probe_p): New VEC declaration.
7657 * gdbarch.c: Regenerate.
7658 * gdbarch.h: Regenerate.
7659 * gdbarch.sh (stap_integer_prefix): New variable.
7660 (stap_integer_suffix): Likewise.
7661 (stap_register_prefix): Likewise.
7662 (stap_register_suffix): Likewise.
7663 (stap_register_indirection_prefix): Likewise.
7664 (stap_register_indirection_suffix): Likewise.
7665 (stap_gdb_register_prefix): Likewise.
7666 (stap_gdb_register_suffix): Likewise.
7667 (stap_is_single_operand): New function.
7668 (stap_parse_special_token): Likewise.
7669 (struct stap_parse_info): Forward declaration.
7670 * i386-tdep.c: Including headers needed to perform the parsing
7671 of SystemTap probes' arguments.
7672 (i386_stap_is_single_operand): New function.
7673 (i386_stap_parse_special_token): Likewise.
7674 (i386_elf_init_abi): Initializing proper fields used by SystemTap
7675 probes' arguments parser.
7676 * i386-tdep.h (i386_stap_is_single_operand): New function.
7677 (i386_stap_parse_special_token): Likewise.
7678 * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
7679 * mipsread.c (ecoff_sym_fns): Likewise.
7680 * objfiles.c (objfile_relocate1): Support relocation for static
7682 * parse.c (prefixify_expression): Remove static declaration.
7683 (initialize_expout): Likewise.
7684 (reallocate_expout): Likewise.
7685 * parser-defs.h (initialize_expout): Declare function.
7686 (reallocate_expout): Likewise.
7687 (prefixify_expression): Likewise.
7688 * ppc-linux-tdep.c: Including headers needed to perform the parsing
7689 of SystemTap probes' arguments.
7690 (ppc_stap_is_single_operand): New function.
7691 (ppc_stap_parse_special_token): Likewise.
7692 (ppc_linux_init_abi): Initializing proper fields used by SystemTap
7693 probes' arguments parser.
7694 * probe.c: New file, for generic statically defined probe support.
7695 * probe.h: Likewise.
7696 * s390-tdep.c: Including headers needed to perform the parsing of
7697 SystemTap probes' arguments.
7698 (s390_stap_is_single_operand): New function.
7699 (s390_gdbarch_init): Initializing proper fields used by SystemTap
7700 probes' arguments parser.
7701 * somread.c (som_sym_fns): Add `sym_probe_fns' value.
7702 * stap-probe.c: New file, for SystemTap probe support.
7703 * stap-probe.h: Likewise.
7704 * symfile.h: Include `gdb_vecs.h'.
7705 (struct sym_probe_fns): New struct.
7706 (struct sym_fns) <sym_probe_fns>: New field.
7707 * symtab.c (init_sal): Initialize `probe' field.
7708 * symtab.h (struct probe): Forward declaration.
7709 (struct symtab_and_line) <probe>: New field.
7710 * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
7712 (stop_tracing): Likewise.
7713 * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
7718 * ax-gdb.c (gen_expr): Clean up code to handle internal variables
7719 and to compile agent expressions.
7720 * infrun.c (siginfo_make_value): New argument `ignore'.
7721 (siginfo_funcs): New struct.
7722 (_initialize_infrun): New argument when calling
7723 `create_internalvar_type_lazy'.
7724 * thread.c (thread_id_make_value): New argument `ignore'.
7725 (thread_funcs): New struct.
7726 (_initialize_thread): New argument when calling
7727 `create_internalvar_type_lazy'.
7728 * tracepoint.c (sdata_make_value): New argument `ignore'.
7729 (sdata_funcs): New struct.
7730 (_initialize_tracepoint): New argument when calling
7731 `create_internalvar_type_lazy'.
7732 * value.c (make_value): New struct.
7733 (create_internalvar_type_lazy): New argument `data'.
7734 (compile_internalvar_to_ax): New function.
7735 (value_of_internalvar): Properly handling `make_value' case.
7736 (clear_internalvar): Likewise.
7737 (show_convenience): Adding `TRY_CATCH' block.
7738 * value.h (internalvar_make_value): Delete, replace by...
7739 (struct internalvar_funcs): ... this.
7740 (create_internalvar_type_lazy) <fun>: Delete argument.
7741 (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
7742 (compile_internalvar_to_ax): New function.
7743 * windows-tdep.c (tlb_make_value): New argument `ignore'.
7744 (tlb_funcs): New struct.
7745 (_initialize_windows_tdep): New argument when calling
7746 `create_internalvar_type_lazy'.
7750 * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
7751 see whether it is an address or a constant offset from DW_AT_low_pc.
7752 (dwarf2_record_block_ranges): Likewise.
7753 (read_partial_die): Likewise.
7757 * MAINTAINERS (Write After Approval): Add myself to the list.
7761 * proc-utils.h (proc_prettyprint_signalset): New prototype.
7762 (proc_prettyprint_signal): Likewise.
7763 (proc_prettyprint_faultset): Likewise.
7764 (proc_prettyprint_fault): Likewise.
7765 (proc_prettyprint_actionset): Likewise.
7766 (proc_prettyprint_flags): Move to new proc-flags.c section.
7767 (proc_prettyfprint_flags): New prototype.
7768 * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
7769 (proc_syscall, proc_cursig): Likewise.
7770 (proc_set_kill_on_last_close): Likewise.
7771 (proc_unset_kill_on_last_close): Likewise.
7772 (proc_set_watchpoint): Make static.
7773 (proc_delete_dead_threads): Likewise.
7774 (procfs_set_watchpoint): Likewise.
7775 (_initialize_procfs): Add prototype.
7776 * proc-events.c: Include proc-utils.h.
7777 (init_syscall_table): Make static.
7778 * proc-api.c (_initialize_proc_api): Add prototype.
7779 * proc-flags.c: Include proc-utils.h.
7783 * configure.ac: Add AC_ARG_PROGRAM.
7784 * configure: Regenerate.
7788 Fix DW_AT_lower_bound defaults for DWARF-4+.
7789 * dwarf2read.c (read_subrange_type): Remove initialization of low and
7790 high. New variable low_default_is_valid. Implement DWARF-4+
7791 DW_AT_lower_bound defaults. Print complaint for DW_AT_lower_bound with
7792 no default by the DWARF standard.
7797 * infrun.c (handle_inferior_event): Move the check for return
7798 trampolines ahead of the check for function trampolines.
7799 * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
7800 * mips-tdep.c (mips_str_mips16_call_stub): New variable.
7801 (mips_str_mips16_ret_stub): Likewise.
7802 (mips_str_call_fp_stub): Likewise.
7803 (mips_str_call_stub): Likewise.
7804 (mips_str_fn_stub): Likewise.
7805 (mips_str_pic): Likewise.
7806 (mips_in_frame_stub): New function.
7807 (mips_unwind_pc): Return the return address rather than the PC
7808 if the PC of an intermediate frame is inside a call thunk.
7809 (mips_is_stub_suffix): New function.
7810 (mips_is_stub_mode): Likewise.
7811 (mips_get_mips16_fn_stub_pc): Likewise.
7812 (mips_skip_mips16_trampoline_code): Update to handle all the
7813 currently generated stub types. Don't recurse into __fn_stub
7814 thunks. Remove heuristics to handle stubs beyond etext/_etext.
7815 Use cooked register accesses.
7816 (mips_in_return_stub): Reintroduce function.
7817 (mips_skip_trampoline_code): Traverse trampolines recursively.
7818 (mips_gdbarch_init): Handle MIPS16 return trampolines.
7826 * arm-tdep.h (VFP_REGISTER_SIZE): Define.
7827 * features/arm-with-m-vfp-d16.xml: New file. Describes
7828 Cortex-M with VFPv4-sp-d16 FPU register layout.
7829 * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
7830 * features/arm-with-m-vfp-d16.c: New. Generated from above.
7831 * arm-tdep.c: Include arm-with-m-vfp-d16.c.
7832 (arm-register_g_packet_guesses): Add vfp-d16 guess.
7833 (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
7837 * cli/cli-decode.c (print_doc_line): Use stream instead of
7842 * features/arm-with-iwmmxt.c: Regenerate.
7843 * features/arm-with-m-fpa-layout.c: Likewise.
7844 * features/arm-with-m.c: Likewise.
7845 * features/arm-with-neon.c: Likewise.
7846 * features/arm-with-vfpv2.c: Likewise.
7847 * features/arm-with-vfpv3.c: Likewise.
7848 * features/mips-dsp-linux.c: Likewise.
7849 * features/mips-linux.c: Likewise.
7850 * features/mips64-dsp-linux.c: Likewise.
7851 * features/mips64-linux.c: Likewise.
7852 * features/s390-linux32.c: Likewise.
7853 * features/s390-linux32v1.c: Likewise.
7854 * features/s390-linux32v2.c: Likewise.
7855 * features/s390-linux64.c: Likewise.
7856 * features/s390-linux64v1.c: Likewise.
7857 * features/s390-linux64v2.c: Likewise.
7858 * features/s390x-linux64.c: Likewise.
7859 * features/s390x-linux64v1.c: Likewise.
7860 * features/s390x-linux64v2.c: Likewise.
7861 * features/tic6x-c62x-linux.c: Likewise.
7862 * features/tic6x-c62x.c: Likewise.
7863 * features/tic6x-c64x-linux.c: Likewise.
7864 * features/tic6x-c64x.c: Likewise.
7865 * features/tic6x-c64xp-linux.c: Likewise.
7866 * features/tic6x-c64xp.c: Likewise.
7867 * target-descriptions.c: Only generate `field_type' and `type'
7868 variables when needed.
7872 * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
7876 Initial pass at Go language support.
7878 * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
7880 (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
7881 (YYFILES): Add go-exp.c.
7882 (YYOBJ): Add go-exp.o.
7883 (local-maintainer-clean): Delete go-exp.c.
7884 * defs.h (enum language): Add language_go.
7885 * dwarf2read.c: #include "go-lang.h".
7886 (fixup_go_packaging): New function.
7887 (process_full_comp_unit): Call it when processing Go CUs.
7888 (dwarf2_physname): Add Go support.
7889 (read_file_scope): Handle missing language spec for GNU Go.
7890 (set_cu_language): Handle DW_LANG_Go.
7891 * go-exp.y: New file.
7892 * go-lang.h: New file.
7893 * go-lang.c: New file.
7894 * go-typeprint.c: New file.
7895 * go-valprint.c: New file.
7896 * symtab.c: #include "go-lang.h".
7897 (symbol_set_language): Handle language_go.
7898 (symbol_find_demangled_name, symbol_set_names): Ditto.
7899 (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
7903 avoid a few strncpy-induced buffer overruns
7904 * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
7905 fname and psargs before trying to concatenate.
7906 * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
7907 "name" before applying strchr.
7911 * CONTRIBUTE: Use unified diff instead of context diff when
7916 * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
7917 code. Handle JR.HB correctly.
7922 (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
7923 with the other MIPS16 helpers.
7927 * observer.sh: Conditionally declare `args', thus cleaning up
7928 unused instances of this variable.
7932 Revert this patch to allow breakpoint always-inserted
7935 * breakpoint.c: Include record.h.
7936 (breakpoints_always_inserted_mode): Return false when the record
7939 * breakpoint.c (iterate_over_bp_locations): New.
7940 * breakpoint.h: Declare.
7941 New typedef walk_bp_location_callback.
7942 * record.c (record_open): Call record_init_record_breakpoints.
7943 (record_sync_record_breakpoints): New.
7944 (record_init_record_breakpoints): New.
7945 * NEWS: Mention supporting breakpoint always-inserted mode in
7950 * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
7955 * breakpoint.c (ep_is_catchpoint): Renamed to ...
7956 (is_catchpoint): ... it.
7957 (print_one_breakpoint_location): Caller update.
7958 * breakpoint.h: Update declaration.
7962 * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
7966 * buildsym.c (add_free_pendings): Remove.
7967 * buildsym.h (add_free_pendings): Remove.
7971 * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
7972 attr.u.unsnd instead of attr.u.addr.
7973 (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
7974 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
7976 (dump_die_shallow): Update cases DW_FORM_ref_addr,
7977 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4. Add cases DW_FORM_ref8,
7979 (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
7983 * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
7984 (mips_o32_return_value): Likewise.
7985 (mips_o64_return_value): Likewise.
7989 * ada-lang.c (ada_evaluate_subexp): Add cases for
7990 TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
7991 their treatment in eval.c.
7995 * sparc-tdep.c (X_DISP10): Define.
7996 (sparc_analyze_control_transfer): Handle compare-and-branch.
8000 * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
8001 * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
8006 * mips-tdep.c (mips_float_register_p): New function.
8007 (mips_convert_register_float_case_p): Use mips_float_register_p.
8008 (mips_register_type): Likewise.
8009 (mips_print_register): Likewise.
8010 (print_gp_register_row): Likewise.
8011 (mips_print_registers_info): Likewise.
8015 * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
8020 * MAINTAINERS (Write After Approval): Add myself to the list.
8024 * MAINTAINERS: Update my e-mail address.
8028 * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
8030 * configure: Regenerate.
8034 * cp-support.h: Include `gdb_vecs.h'. Delete `const_char_ptr' VEC
8036 * gdb_vecs.h: Declare `const_char_ptr' VEC.
8040 Fix compilation compatibility with python-2.4
8041 * python/py-type.c (convert_field): Cast ADDRSTRING for
8042 PyObject_SetAttrString as non-const. New comment.
8046 * top.c (quit_target): Use all_cleanups.
8047 * main.c (captured_command_loop): Use all_cleanups.
8048 * exceptions.c (throw_exception): Use all_cleanups.
8052 * Makefile.in (GNULIB_BUILDDIR): New.
8053 (LIBGNU, INCGNU, GNULIB_H): Adjust.
8054 (SUBDIRS): Add $(GNULIB_BUILDDIR).
8055 (CLEANDIRS). Remove gnulib/import.
8056 (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
8058 (distclean): Remove the $(GNULIB_BUILDDIR) directory.
8059 (gnulib/import/Makefile): Replace gnulib/import with
8060 $(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
8061 (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
8062 (aclocal_m4_deps): Remove the gnulib dependencies. Add
8063 acx_configure_dir.m4.
8064 * acinclude.m4: Include acx_configure_dir.m4.
8065 * acx_configure_dir.m4: New file.
8066 * aclocal.m4: Regenerate.
8067 * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
8068 calls. Configure gnulib using ACX_CONFIGURE_DIR.
8069 (GNULIB): New variable.
8070 (GNULIB_STDINT_H): Adjust.
8071 (AC_OUTPUT): Don't output gnulib/Makefile.
8072 * gdb/defs.h: Include build-gnulib/config.h.
8073 * aclocal.m4: Regenerate.
8074 * config.in: Regenerate.
8075 * configure: Regenerate.
8077 * gnulib/Makefile.in: New file.
8078 * gnulib/configure.ac: New file.
8079 * gnulib/aclocal.m4: New file.
8080 * gnulib/config.in: New file.
8081 * gnulib/configure: New file.
8082 * gnulib/: Re-run gnulib-tool to adjust.
8086 * cleanups.h (struct cleanup): Move to cleanups.c.
8087 (make_cleanup_dtor_ftype): New typedef.
8088 (make_cleanup_dtor): Use it.
8089 (ALL_CLEANUPS): Replace with ...
8090 (all_cleanups): ... this. Declare. All uses updated.
8091 * cleanups.c: #include "gdb_assert.h".
8092 (sentinel_cleanup): New static global.
8093 (SENTINEL_CLEANUP): Define.
8094 (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
8095 (make_my_cleanup2): Assert result is non-NULL.
8096 (all_cleanups): New function.
8097 (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
8102 * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
8103 Adjust paths to gnulib imported files.
8107 * gnulib/: Move whole directory ...
8108 * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
8109 * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
8110 (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
8111 (aclocal_m4_deps): Adjust.
8112 * aclocal.m4: Regenerate.
8113 * configure: Regenerate.
8114 * configure.ac: Adjust AC_OUTPUT output.
8118 * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
8120 * vec.c: Move it ...
8121 * common/vec.c: ... here.
8122 * vec.h: Move it ...
8123 * common/vec.h: ... here.
8127 * gdb-code-style.el: New.
8131 Update gnulib from latest git.
8132 (639ea5ae15e39fe48d43e04864b2997301e4b969)
8134 * gnulib/Makefile.am: Update.
8135 * gnulib/dummy.c: Update.
8136 * gnulib/extra/arg-nonnull.h: Update.
8137 * gnulib/extra/c++defs.h: Update.
8138 * gnulib/extra/update-copyright: Update.
8139 * gnulib/extra/warn-on-use.h: Update.
8140 * gnulib/inttypes.in.h: Update.
8141 * gnulib/m4/00gnulib.m4: Update.
8142 * gnulib/m4/extensions.m4: Update.
8143 * gnulib/m4/gnulib-cache.m4: Update.
8144 * gnulib/m4/gnulib-common.m4: Update.
8145 * gnulib/m4/gnulib-comp.m4: Update.
8146 * gnulib/m4/gnulib-tool.m4: Update.
8147 * gnulib/m4/include_next.m4: Update.
8148 * gnulib/m4/inttypes-pri.m4: Update.
8149 * gnulib/m4/inttypes.m4: Update.
8150 * gnulib/m4/longlong.m4: Update.
8151 * gnulib/m4/memchr.m4: Update.
8152 * gnulib/m4/memmem.m4: Update.
8153 * gnulib/m4/mmap-anon.m4: Update.
8154 * gnulib/m4/multiarch.m4: Update.
8155 * gnulib/m4/onceonly.m4: Update.
8156 * gnulib/m4/stddef_h.m4: Update.
8157 * gnulib/m4/stdint.m4: Update.
8158 * gnulib/m4/string_h.m4: Update.
8159 * gnulib/m4/warn-on-use.m4: Update.
8160 * gnulib/m4/wchar_h.m4: Update.
8161 * gnulib/m4/wchar_t.m4: Update.
8162 * gnulib/m4/wint_t.m4: Update.
8163 * gnulib/memchr.c: Update.
8164 * gnulib/memmem.c: Update.
8165 * gnulib/stddef.in.h: Update.
8166 * gnulib/stdint.in.h: Update.
8167 * gnulib/str-two-way.h: Update.
8168 * gnulib/string.in.h: Update.
8169 * gnulib/wchar.in.h: Update.
8171 * gnulib/extra/arg-nonnull.h: Delete.
8172 * gnulib/extra/c++defs.h: Delete.
8173 * gnulib/extra/warn-on-use.h: Delete.
8174 * gnulib/m4/wchar_h.m4: Delete.
8175 * gnulib/m4/wint_t.m4: Delete.
8176 * gnulib/wchar.in.h: Delete.
8178 * gnulib/extra/snippets/arg-nonnull.h: New.
8179 * gnulib/extra/snippets/c++defs.h: New.
8180 * gnulib/extra/snippets/warn-on-use.h: New.
8182 * aclocal.m4: Regenerate.
8183 * config.in: Regenerate.
8184 * configure: Regenerate.
8185 * gnulib/Makefile.in: Regenerate.
8189 Reimport the update-copyright module from gnulib
8190 (250b80067c1e1d8faa0c42fb572f721975b929c5).
8192 * configure: Regenerate.
8193 * gnulib/Makefile.am: Update.
8194 * gnulib/Makefile.in: Regenerate.
8195 * gnulib/extra/update-copyright: Update.
8196 * gnulib/m4/gnulib-cache.m4: Update.
8197 * gnulib/m4/gnulib-comp.m4: Update.
8201 * configure.ac (aix): Put -lpthread into libs.
8202 * configure: Regenerate.
8206 * linespec.c (convert_linespec_to_sals): Don't use
8208 (compare_msymbols): Arguments are minsym_and_objfile, not
8209 minimal_symbol*. Don't use SYMBOL_OBJ_SECTION.
8213 Revert gnulib/ part of:
8215 Copyright year update in most files (performed by copyright.sh).
8219 Fix 64-bit constants on 32-bit hosts.
8220 * dwarf2read.c (read_unsigned_leb128): Change declaration return type
8221 from unsigned long to ULONGEST.
8222 (read_signed_leb128): Change declaration return type from long to
8224 (dwarf2_const_value_attr): Change declaration parameter value from long
8226 (dwarf2_compute_name): Change variable value from long to LONGEST.
8227 (read_unsigned_leb128): Change return type, variable result and some
8228 casts from unsigned long to ULONGEST.
8229 (read_signed_leb128): Change return type, variable result and some
8230 casts from long to LONGEST.
8231 (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
8232 value from long to LONGEST.
8233 (dwarf2_const_value): Change variable value from long to LONGEST.
8234 * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
8235 plongest and hex_string.
8236 * symtab.h (struct general_symbol_info): Change ivalue from long to
8237 LONGEST, remove the comment.
8238 * tracepoint.c (validate_actionline, collect_symbol, scope_info):
8239 Change SYMBOL_VALUE format strings to use plongest and hex_string.
8244 * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
8245 * ada-lang.c (ada_discrete_type_high_bound)
8246 (ada_discrete_type_low_bound): Fix function comment. Use
8247 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8248 (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
8249 (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8250 * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
8251 Use TYPE_FIELD_ENUMVAL.
8252 * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
8253 (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8254 * c-typeprint.c (c_type_print_base): Move variable lastval to inner
8255 block, change it to LONGEST. Use TYPE_FIELD_ENUMVAL for
8257 * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
8258 * dwarf2read.c (process_enumeration_scope): Likewise.
8259 * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
8261 (class StructMainTypePrettyPrinter): Support also
8262 FIELD_LOC_KIND_ENUMVAL.
8263 * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
8265 (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8266 (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
8267 * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
8268 (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment. New
8270 (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
8271 accommodate enumval.
8272 (struct call_site): Adjust loc_kind to accommodate enumval.
8273 (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
8274 (TYPE_FIELD_ENUMVAL): New macros.
8275 * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
8276 * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
8278 * p-typeprint.c (pascal_type_print_base): Likewise.
8279 * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
8281 * python/lib/gdb/types.py (make_enum_dict): Likewise.
8282 * python/py-type.c (convert_field): New variable addrstring. Use
8283 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8284 (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
8285 * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
8286 * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
8288 * valprint.c (generic_val_print): Likewise.
8292 * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
8294 * dwarf2read.c: Whitespace fixes.
8295 (lookup_signatured_type): Tweak comment.
8296 (get_die_type_at_offset): Fix comment.
8300 * xcoffread.c (xcoff_secnum_to_sections): New function.
8301 (secnum_to_section, secnum_to_bfd_section): Reimplement
8302 using xcoff_secnum_to_sections. Rename "secnum" parameter
8304 (RECORD_MINIMAL_SYMBOL): Delete.
8305 (record_minimal_symbol): New function.
8306 (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
8307 by call to record_minimal_symbol and set misc_func_recorded
8308 to 1. Set last_csect_sec to the XCOFF section index instead
8309 of GDB's section_offset index. Update calls to
8310 prim_record_minimal_symbol_and_info to pass the BFD section
8315 * xcoffread.c (read_xcoff_symtab): Delete variables
8316 last_csect_val and last_csect_sec and associated code.
8320 * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
8321 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8322 * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
8323 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
8325 * cleanups.h: New file.
8326 * cleanups.c: New file.
8327 * Makefile.in (SFILES): Add cleanups.c.
8328 (HFILES_NO_SRCDIR): Add cleanups.h.
8329 (COMMON_OBS): Add cleanups.o.
8330 * defs.h (struct cleanup): Moved to cleanups.h.
8331 (do_cleanups,do_final_cleanups): Ditto.
8332 (discard_cleanups,discard_final_cleanups): Ditto
8333 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8334 (save_cleanups,save_final_cleanups): Ditto.
8335 (restore_cleanups,restore_final_cleanups): Ditto.
8336 (null_cleanup): Ditto.
8337 (make_my_cleanup,make_my_cleanup2): Ditto.
8338 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8339 * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
8340 (do_cleanups,do_final_cleanups): Ditto.
8341 (discard_cleanups,discard_final_cleanups): Ditto
8342 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8343 (save_cleanups,save_final_cleanups): Ditto.
8344 (restore_cleanups,restore_final_cleanups): Ditto.
8345 (null_cleanup): Ditto.
8346 (make_my_cleanup,make_my_cleanup2): Ditto.
8347 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8349 * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
8351 (make_cleanup_dyn_string_delete): Ditto.
8352 (make_cleanup_ui_file_delete): Ditto.
8353 (make_cleanup_ui_out_redirect_pop): Ditto.
8354 (make_cleanup_free_section_addr_info): Ditto.
8355 (make_cleanup_restore_integer): Ditto.
8356 (make_cleanup_unpush_target): Ditto.
8357 (make_cleanup_value_free_to_mark): Ditto.
8358 (make_cleanup_value_free): Ditto.
8359 (make_cleanup_free_so): Ditto.
8363 New option "set debug auto-load".
8364 * NEWS: New commands "set debug auto-load" and "show debug auto-load".
8365 * auto-load.c (debug_auto_load, show_debug_auto_load: New.
8366 (auto_load_safe_path_vec_update)
8367 (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
8369 (file_is_auto_load_safe): New parameters debug_fmt and ....
8370 Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
8371 (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
8372 caller by explanatory string.
8373 (_initialize_auto_load): Register "set debug auto-load".
8374 * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
8376 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8377 (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
8378 by explanatory string.
8379 * main.c (captured_main): Likewise.
8380 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
8381 (source_section_scripts): Likewise.
8385 New option "set auto-load safe-path".
8386 * NEWS: New commands "set auto-load safe-path"
8387 and "show auto-load safe-path".
8388 * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
8389 (auto_load_safe_path, auto_load_safe_path_vec)
8390 (auto_load_safe_path_vec_update, set_auto_load_safe_path)
8391 (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
8392 (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
8393 (source_gdb_script_for_objfile): New variable is_safe. Call
8394 file_is_auto_load_safe. Return if it is not.
8395 (struct loaded_script): New field loaded.
8396 (maybe_add_script): Add parameter loaded. Initialize SLOT with it.
8397 (print_script): Use LOADED indicator instead of FULL_PATH. Change
8398 output "Missing" to "No".
8399 (_initialize_auto_load): New variable cmd. Initialize
8400 auto_load_safe_path. Register "set auto-load safe-path",
8401 "show auto-load safe-path" and "add-auto-load-safe-path".
8402 * auto-load.h (maybe_add_script): Add parameter loaded.
8403 (file_is_auto_load_safe): New declaration.
8404 * config.in: Regenerate.
8405 * configure: Regenerate.
8406 * configure.ac: New parameters --with-auto-load-safe-path
8407 and --without-auto-load-safe-path.
8408 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8409 (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
8410 * main.c (captured_main): Check file_is_auto_load_safe for
8412 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
8413 variable is_safe. Call file_is_auto_load_safe. Return if it is not.
8414 (source_section_scripts): Call file_is_auto_load_safe. Return if it is
8419 auto-load: Implementation.
8420 * NEWS: New descriptions for "info auto-load",
8421 "info auto-load gdb-scripts", "info auto-load python-scripts",
8422 "info auto-load local-gdbinit" and "info auto-load libthread-db".
8423 Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
8424 and "show auto-load-scripts". New description for "set auto-load",
8425 "show auto-load", "set auto-load gdb-scripts",
8426 "show auto-load gdb-scripts", "set auto-load python-scripts",
8427 "show auto-load python-scripts", "set auto-load local-gdbinit",
8428 "show auto-load local-gdbinit", "set auto-load libthread-db" and
8429 "show auto-load libthread-db".
8430 * auto-load.c: Remove include python/python-internal.h. Add includes
8431 exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
8433 (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
8434 (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
8435 (gdbpy_global_auto_load): Rename to ...
8436 (global_auto_load): ... here.
8437 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8438 (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
8439 (script_language_gdb, source_gdb_script_for_objfile): New.
8440 (struct loaded_script): New field language.
8441 (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
8443 (maybe_add_script): Add parameter language. Drop redundant
8444 entry.full_path initialization. Initialize entry.language and
8446 (auto_load_objfile_script): Change parameter suffix to language.
8447 Remove the call of maybe_add_script.
8448 Call language->source_script_for_objfile.
8449 (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
8451 (collect_matching_scripts): Adjust it for
8452 struct collect_matching_scripts_data.
8453 (auto_load_info_scripts_pattern_nl): New variable.
8454 (info_auto_load_scripts): Rename to ...
8455 (auto_load_info_scripts): ... here, add parameter language. Adjust it
8456 for struct collect_matching_scripts_data.
8457 (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
8458 (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
8459 (auto_load_show_cmdlist_get, info_auto_load_cmd)
8460 (auto_load_info_cmdlist_get): New.
8461 (_initialize_auto_load): Move add_info of "auto-load-scripts" to
8462 python/py-auto-load.c. New installment for "set auto-load gdb-scripts",
8463 "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
8464 "info auto-load local-gdbinit".
8465 * auto-load.h (struct script_language): New.
8466 (gdbpy_global_auto_load): Rename to ...
8467 (global_auto_load): ... here.
8468 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8469 (auto_load_local_gdbinit_loaded): New declarations.
8470 (maybe_add_script): New parameter language.
8471 (auto_load_objfile_script): Change parameter suffix to language.
8472 (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
8473 (auto_load_info_scripts, auto_load_set_cmdlist_get)
8474 (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
8476 * linux-thread-db.c: Include auto-load.h and ctype.h.
8477 (auto_load_thread_db, show_auto_load_thread_db): New.
8478 (struct thread_db_info): New field filename.
8479 (delete_thread_db_info): Call xfree for FILENAME.
8480 (try_thread_db_load): Initialize FILENAME.
8481 (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
8482 if !AUTO_LOAD_THREAD_DB.
8483 (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
8484 (_initialize_thread_db): Install auto_load_thread_db
8485 as "set auto-load libthread-db" and install info_auto_load_libthread_db
8486 as "info auto-load libthread-db".
8487 * main.c (captured_main): Rename gdbpy_global_auto_load to
8488 global_auto_load. Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
8489 AUTO_LOAD_LOCAL_GDBINIT_LOADED.
8490 (print_gdb_help): Extend the help for 'local init file'.
8491 * python/py-auto-load.c: Remove a comment about gdb scripts extension.
8492 (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
8493 (auto_load_scripts): Rename to ...
8494 (auto_load_python_scripts): ... here, update the comment.
8495 (gdbpy_load_auto_script_for_objfile): New declaration.
8496 (show_auto_load_python_scripts, script_language_python)
8497 (gdbpy_load_auto_script_for_objfile): New.
8498 (source_section_scripts): Refactor the code.
8499 (load_auto_scripts_for_objfile): Rename to ...
8500 (gdbpy_load_auto_scripts_for_objfile): ... here, update the
8501 auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
8502 (info_auto_load_python_scripts): New.
8503 (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
8504 Rename "set auto-load-scripts" to "set auto-load python-scripts".
8505 Register "set auto-load-scripts" as its deprecated alias. Register
8506 "info auto-load python-scripts". Register "info auto-load-scripts" as
8507 its deprecated alias.
8508 (load_auto_scripts_for_objfile): Rename to ...
8509 (gdbpy_load_auto_scripts_for_objfile): ... here.
8510 * python/python.h (load_auto_scripts_for_objfile): Rename to ...
8511 (gdbpy_load_auto_scripts_for_objfile): ... here.
8515 auto-load: Move files.
8516 * Makefile.in (SFILES): Add auto-load.c.
8517 (HFILES_NO_SRCDIR): Add auto-load.h.
8518 (COMMON_OBS): Add auto-load.o.
8519 (distclean): Change .gdbinit for gdb-gdb.gdb.
8520 * auto-load.c: New file, with parts from python/py-auto-load.c.
8521 * auto-load.h: New file, with parts from python/python.h.
8522 * configure: Regenerate.
8523 * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
8524 * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
8525 * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
8526 * main.c: Include auto-load.h.
8527 * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
8528 command.h, observer.h and progspace.h to auto-load.c. Add include
8530 (gdbpy_global_auto_load, struct auto_load_pspace_info)
8531 (struct loaded_script, auto_load_pspace_data)
8532 (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
8533 (hash_loaded_script_entry, eq_loaded_script_entry)
8534 (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
8535 (maybe_add_script): Move to auto-load.c.
8536 (source_section_scripts): Change maybe_add_script parameters passing,
8537 use script_not_found_warning_print.
8538 (clear_section_scripts, auto_load_objfile_script)
8539 (auto_load_new_objfile, loaded_script_ptr)
8540 (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
8541 (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
8542 (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
8543 auto_load_new_objfile and info_auto_load_scripts initizations to
8545 * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
8550 * charset.c (find_charset_names): Remove variables ix and elt.
8551 Use free_char_ptr_vec.
8552 * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
8553 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
8554 debugdir_end. New variable debugdir_len.
8555 * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
8556 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
8558 * progspace.c (clear_program_space_solib_cache): Remove variables ix
8559 and elt. Use free_char_ptr_vec.
8560 * source.c (add_path): Remove variables argv, arg and argv_index.
8561 New variables dir_vec, back_to, ix and name.
8562 Use dirnames_to_char_ptr_vec_append. Use freeargv instead of
8563 make_cleanup_freeargv. Remove variable separator. Simplify the code
8564 no longer expecting DIRNAME_SEPARATOR.
8565 (openp): Remove variable p, p1 and len. New variables dir_vec,
8566 back_to, ix and dir. Use dirnames_to_char_ptr_vec. Simplify the code
8567 no longer expecting DIRNAME_SEPARATOR.
8568 * symfile.c (find_separate_debug_file): New variables debugdir_vec,
8569 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
8571 * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
8572 (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
8573 (dirnames_to_char_ptr_vec): New functions.
8578 * source.c (add_path): Remove always true conditional 'p == 0' and
8579 unindent its code block.
8583 * gdbtypes.h (FIELD_BITPOS): Rename to ...
8584 (FIELD_BITPOS_LVAL): ... this.
8585 (FIELD_BITPOS): New.
8586 (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
8587 * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
8588 * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
8590 * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
8592 * stabsread.c (read_cpp_abbrev, read_one_struct_field)
8593 (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
8594 * target-descriptions.c (tdesc_gdb_type): Adjust to use
8599 Do not rely on FIELD_LOC_KIND_BITPOS being zero.
8600 * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
8601 TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
8602 * gdbtypes.c (append_flags_type_flag): Likewise, twice.
8603 * jv-lang.c (java_link_class_type): Likewise, once.
8604 * stabsread.c (read_enum_type): Likewise.
8608 * common/agent.c (agent_run_command): Add one more parameter `len'.
8610 * common/agent.h: Update declaration.
8611 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
8613 (linux_child_static_tracepoint_markers_by_strid): Ditto.
8618 * value.c (value_actual_type): New function.
8619 * value.h (value_actual_type): New declaration.
8620 * varobj.c (update_type_if_necessary): New function.
8621 (varobj_create): Call value_actual_type instead of
8623 (install_dynamic_child): distinct changed and type changed MI variable
8625 (update_dynamic_varobj_children): Updated for install_dynamic_child
8626 change. All callers updated.
8627 (varobj_update): Support for MI variable object type change if
8628 the value changed and RTTI is used to determine the type.
8629 (create_child_with_value): Call value_actual_type instead of
8631 (adjust_value_for_child_access): Extended with a new parameter which
8632 specify whether the given value should be casted to enclosing type.
8633 All callers updated.
8637 Import gnulib module inttypes from git
8638 (250b80067c1e1d8faa0c42fb572f721975b929c5)
8639 * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
8640 (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
8641 gnulib/m4/inttypes-pri.m4
8642 * aclocal.m4, config.in, configure: Regenerated.
8643 * gnulib/Makefile.am: Update.
8644 * gnulib/Makefile.in: Update.
8645 * gnulib/m4/gnulib-cache.m4: Update.
8646 * gnulib/m4/gnulib-comp.m4: Update.
8647 * gnulib/inttypes.in.h: New.
8648 * gnulib/m4/inttypes-pri.m4: New.
8649 * gnulib/m4/inttypes.m4: New.
8653 * infrun.c (resume): Update PC address to the real PC after
8654 preparing to do displaced stepping.
8658 * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
8659 All callers updated.
8663 * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
8667 * dwarf2read.c (create_all_type_units): Renamed from
8668 create_debug_types_hash_table. All callers updated.
8670 * dwarf2read.c (create_signatured_type_table_from_index): Rename
8671 local type_sig to sig_type, type_offset to type_offset_in_tu.
8672 (hash_signatured_type): Renamed from hash_type_signature,
8673 all callers updated.
8674 (eq_signatured_type): Renamed from eq_type_signature,
8675 all callers updated.
8676 (create_debug_types_hash_table): Rename local type_sig to sig_type.
8677 (process_enumeration_scope): Ditto.
8678 (lookup_signatured_type_at_offset): Ditto.
8679 (load_full_type_unit, read_signatured_type): Ditto.
8683 * remote.c (async_remote_interrupt): Correct function name in
8685 (async_remote_interrupt_twice): Ditto.
8689 * source.c (find_and_open_source): Consistently pass resulting
8690 full path through xfullpath.
8694 Provide more specific displaced-stepping memory error message.
8695 * infrun.c (displaced_step_prepare): New variable status. Call
8696 target_read_memory instead of read_memory, provide more specific
8702 * darwin-nat.c (darwin_execvp): Revert previous patch.
8707 * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
8712 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
8717 New command 'explore' which helps explore values and types in
8719 * NEWS: Add an entry about the new 'explore' command.
8720 * data-directory/Makefile.in: Add gdb/command/explore.py
8721 * python/lib/gdb/command/explore.py: Implemention of the 'explore'
8722 command using the GDB Python API.
8726 * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
8727 extension in jump target calculation.
8731 * mips-tdep.c (mips32_next_pc): Handle JALX.
8735 * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
8739 * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
8740 and gnulib/m4/gnulib-tool.m4.
8744 * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
8745 (load_partial_dies): Clarify comment.
8746 (find_partial_die): Support rereading type units.
8747 Clarify CU handling, if we know offset is in CU, don't search for the
8748 containing CU. Add comment regarding memory waste.
8752 * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
8753 i386/x32-avx and i386/x32-avx-linux.
8754 (i386/x32-expedite): New.
8755 (i386/x32-linux-expedite): Likewise.
8756 (i386/x32-avx-expedite): Likewise.
8757 (i386/x32-avx-linux-expedite): Likewise.
8758 ($(outdir)/i386/x32.dat): Likewise.
8759 ($(outdir)/i386/x32-linux.dat): Likewise.
8760 ($(outdir)/i386/x32-avx.dat): Likewise.
8761 ($(outdir)/i386/x32-avx-linux.dat): Likewise.
8763 * features/i386/x32-avx-linux.xml: New file.
8764 * features/i386/x32-avx.xml: Likewise.
8765 * features/i386/x32-core.xml: Likewise.
8766 * features/i386/x32-linux.xml: Likewise.
8767 * features/i386/x32.xml: Likewise.
8769 * features/i386/x32-avx-linux.c: New. Generated.
8770 * features/i386/x32-avx.c: Likewise.
8771 * features/i386/x32-linux.c: Likewise.
8772 * features/i386/x32.c: Likewise.
8773 * regformats/i386/x32-avx-linux.dat: Likewise.
8774 * regformats/i386/x32-avx.dat: Likewise.
8775 * regformats/i386/x32-linux.dat: Likewise.
8776 * regformats/i386/x32.dat: Likewise.
8780 * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
8781 code to kill the inferior.
8785 * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8787 * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8789 * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
8790 (yyvsp): New defines.
8791 * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8793 * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8795 * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8797 * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8799 * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8804 * sparc64-tdep.c (sparc64_store_arguments)
8805 (sparc64_store_arguments): Fix coding style.
8809 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
8810 complex floats, adjust some related comments and tighten a related
8812 (sparc64_extract_return_value): Handle complex floats.
8816 * dwarf2read.c (load_partial_dies): Change condition to assert.
8820 * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
8825 * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
8827 (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
8828 (v850_gdbarch_init): Set `num_regs' as appropriate for the
8833 * linespec.c (decode_compound): Remove.
8834 (enum offset_relative_sign): New enum.
8835 (struct line_offset): New struct.
8836 (struct linespec): New struct.
8837 (struct linespec_state): Move file_symtabs,
8838 user_filename, and user_function into struct linespec.
8839 Make result an anonymous struct holding vectors of
8840 symbolp and minsym_and_objfile_d.
8841 Add language member.
8842 (enum ls_token_type): New enum.
8843 (linespec_keywords): New array.
8844 (struct ls_token): New struct.
8845 (struct ls_parser): New struct.
8846 (linespec_lexer_lex_number): New function.
8847 (linespec_lexer_lex_keyword): New function.
8848 (is_ada_operator): New function.
8849 (skip_quote_char): New function.
8850 (copy_token_string): New function.
8851 (is_closing_quote_enclosed): New function.
8852 (find_parameter_list_end): New function.
8853 (linespec_lexer_lex_string): New function.
8854 (linespec_lexer_lex_one): New function.
8855 (linespec_lexer_consume_token): New function.
8856 (linespec_lexer_peek_token): New function.
8857 (cplusplus_error): Remove unused function.
8858 (find_methods): Update comment.
8859 (find_toplevel_char): Return const.
8860 (is_objc_method_format): Remove unused function.
8861 (find_toplevel_string): New function.
8862 (is_linespec_boundary): Remove.
8863 (symbol_not_found_error): New function.
8864 (find_method_overload_end): Remove function.
8865 (unexpected_linespec_error): New function.
8866 (keep_name_info): Remove.
8867 (linespec_parse_line_offset): New function.
8868 (linespec_parse_basic): New function.
8869 (canonicalize_linespec): New function.
8870 (decode_line_internal): Remove.
8871 (create_sals_line_offset): New function adapted from
8873 (convert_linespec_to_sals): New function.
8874 (parse_linespec): New function.
8875 (linespec_parser_new): New function.
8876 (linespec_state_destructor): Change parameter type to
8877 struct linespec_state *.
8878 Add language parameter.
8879 Remove freeing of moved members.
8880 (linespec_parser_delete): New function.
8881 (decode_line_full): Use parse_linespec and linespec_parser_new.
8882 (decode_line_1): Likewise.
8883 (decode_indirect): Rename to ...
8884 (linespec_expression_to_pc): ... this and rewrite
8885 to simply find CORE_ADDR, storing this result for later
8887 (locate_first_half): Remove.
8888 (deocde_objc): Add parameter LS.
8889 Initialize new struct collect_info members.
8890 Handle minimal symbols, too.
8891 (decode_compound): Delete.
8892 (lookup_prefix_sym): Rewrite.
8893 (compare_msymbols): New function.
8894 (find_method): Rewrite.
8895 Do not call cplusplus_error.
8896 (symtabs_from_filename): Rewrite.
8897 (collect_function_symbols): Delete.
8898 (find_function_symbols): Rewrite without ARGPTR-style
8900 (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
8901 (decode_dollar): Adapted and renamed to ...
8902 (linespec_parse_variable): ... this.
8903 (find_linespec_symbols): New function.
8904 (decode_label): Adapted and renamed to ...
8905 (find_label_symbols): ... this.
8906 (decode_digits_list_mode): Add and use LS argument.
8907 (decode_digits_ordinary): Likewise.
8908 (collect_symbols): Do not collect SALs, just symbols and msymbols.
8909 If in list mode, allow any symbol class. Otherwise, only
8910 permit LOC_BLOCK symbols.
8911 (minsym_found): Update comments.
8912 (search_minsyms_for_name): Do not convert the matching symbol
8913 into a SAL. Simply push the symbol and objfile into the
8915 (decode_variable): Delete. Contents adapted into
8916 find_linespec_symbols.
8918 * cp-support.c (SKIP_SPACE): Remove.
8919 (operator_tokens): Remove unused global.
8920 (cp_validate_operator): Remove.
8921 * cp-support.h (cp_validate_operator): Remove declaration.
8925 * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
8926 for TYPE_VPTR_FIELDNO.
8927 * valprint.c (valprint_check_validity): Make it global, move the
8928 function comment ...
8929 * value.h (valprint_check_validity): ... to this new declaration.
8933 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
8934 the STATE32 api for i386 state.
8935 (i386_darwin_store_inferior_registers): Likewise.
8939 * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
8941 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
8947 * darwin-nat.c (darwin_execvp): Set binary preference.
8951 * NEWS (set breakpoint condition-evaluation): Use imperative mood.
8955 * python/python.c (gdbpy_decode_line): Move cleanup creation out
8956 of TRY_CATCH. Fix error handling.
8957 * python/py-value.c (convert_value_from_python): Move 'old'
8958 declaration to innermost scope.
8963 -Wshadow warning fix.
8964 * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
8965 "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
8966 Adjust code accordingly.
8970 * ada-lang.c (symbol_completion_add): Rename parameter
8971 "encoded" into "encoded_p". Ajust code and documentation
8977 -Wshadow warning fix.
8978 * ada-lang.c (symbol_completion_add): Rename parameter
8979 "wild_match" into wild_match_p. Update code and documentation
8984 * ada-lang.c (symbol_completion_match): Rename parameter
8985 "encoded" into "encoded_p". Ajust code and documentation
8991 -Wshadow warning fix.
8992 * ada-lang.c (symbol_completion_match): Rename parameter
8993 "wild_match" into "wild_match_p". Adjust code and function
8994 documentation accordingly.
8999 -Wshadow warning fix.
9000 * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
9001 "symbol_info" into "info". Adjust code accordingly.
9002 (ada_lookup_symbol): Likewise.
9006 * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
9007 of this function's documentation.
9012 -Wshadow warning fix.
9013 * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
9014 variable into "wild_match_p". Adjust code accordingly.
9019 -Wshadow warning fix.
9020 * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
9021 parameter into "wild_match_p". Adjust code accordingly.
9022 Document this parameter in the function description.
9027 -Wshadow warning fix.
9028 * ada-lang.c (add_symbols_from_enclosing_procs): Rename
9029 "wild_match" parameter to "wild_match_p" (-Wshadow).
9033 * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
9034 in function documentation.
9039 -Wshadow warning fix.
9040 * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
9041 variable into wild_match_p. Adjust code accordingly.
9046 * ada-valprint.c (ada_val_print_1): Move the code handling
9047 TYPE_CODE_ENUM inside its own lexical block. Declare
9048 variables len and val there, instead of in the function's
9049 top level block. Avoid declaring deref_val again in a way
9050 that shadows another variable of the same name declared
9051 in one of the up-level blocks. Just re-use the up-level
9056 * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
9057 Replace block_found argument by symbol_info. Adjust
9058 implementation accordingly. Add function documentation.
9059 (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
9061 * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
9062 * ada-exp.y (write_object_renaming): Adjust to new
9063 ada_lookup_encoded_symbol API.
9067 * ada-lang.h (struct ada_symbol_info): Reformat. Improve
9072 * v850-tdep.c: Add the enum values for mpu and fpu registers.
9073 (v850_register_name): Add the mpu and fpu register names.
9074 (v850e_register_name): Add the mpu and fpu register names.
9075 (v850e2_register_name): New function.
9076 (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
9081 * NEWS: Add entry for Ada varobj support.
9085 * varobj.c (default_value_is_changeable_p): New function,
9086 extracted from varobj_value_is_changeable_p. Add declaration.
9087 (ada_value_is_changeable_p): New function, extracted from
9088 varobj_value_is_changeable_p. Add declaration.
9089 (struct language_specific): New field "value_is_changeable_p".
9090 (languages): Add entries for new field.
9091 (varobj_create): Set language before calling install_new_value.
9092 (varobj_value_is_changeable_p): Reimplement to call the varobj's
9093 "value_is_changeable_p" language callback.
9097 * ada-varobj.h, ada-varobj.c: New files.
9098 * Makefile.in (SFILES): Add ada-varobj.c.
9099 (HFILES_NO_SRCDIR): Add ada-varobj.h.
9100 (COMMON_OBS): Add ada-varobj.o.
9104 * varobj.c (ada_value_has_mutated): Add declaration. New function.
9105 (struct language_specific): New field "value_has_mutated".
9106 (languages): Set field "value_has_mutated" in each entry of array.
9107 (varobj_value_has_mutated): New function.
9108 (varobj_udpdate): Add handling of type mutation.
9109 (value_of_root): Add handling of type mutation.
9110 (ada_value_has_mutated): New function.
9114 * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
9115 Always supply $fr0 as 0.0 and $fr1 as 1.0.
9119 * python/py-inferior.c (infpy_read_memory): Remove cleanups and
9120 explicitly free 'buffer' on exit paths. Decref 'membuf_object'
9125 * .dir-locals.el: New file.
9129 * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
9133 * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
9138 Eliminate struct ui_stream.
9140 * ui-out.h (struct ui_stream): Delete.
9141 (ui_out_field_stream): Adjust prototype.
9142 (ui_out_stream_new, ui_out_stream_delete)
9143 (make_cleanup_ui_out_stream_delete): Delete declarations.
9144 * ui-out.c (ui_out_field_stream): Change prototype to take a
9145 ui_file instead of a ui_stream. Adjust.
9146 (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
9147 (make_cleanup_ui_out_stream_delete): Delete.
9148 * breakpoint.c (print_breakpoint_location)
9149 (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
9150 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9151 * disasm.c (dump_insns): Ditto.
9152 (do_mixed_source_and_assembly, do_assembly_only): Adjust
9154 (gdb_disassembly): Use ui_file/mem_fileopen instead of
9155 ui_stream/ui_out_stream_new.
9156 * infcmd.c (print_return_value): Ditto.
9157 * osdata.c (info_osdata_command): Don't allocate a local
9159 * stack.c (print_frame_arg, print_frame_args, print_frame): Use
9160 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9161 * tracepoint.c (print_one_static_tracepoint_marker): Don't
9162 allocate a local ui_stream.
9163 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
9164 instead of ui_stream/ui_out_stream_new.
9165 (list_args_or_locals): Don't allocate a local ui_stream.
9166 * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
9167 (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
9168 ui_stream/ui_out_stream_new.
9169 * cli/cli-setshow.c (do_setshow_command): Ditto.
9173 * arm-linux-tdep.c (arm_linux_init_abi): Call
9174 set_gdbarch_process_record. Initialize `arm_swi_record' field.
9175 * arm-tdep.c (arm_process_record): New function.
9176 (deallocate_reg_mem): New function.
9177 (decode_insn): New function.
9178 (thumb_record_branch): New function.
9179 (thumb_record_ldm_stm_swi(): New function.
9180 (thumb_record_misc): New function.
9181 (thumb_record_ld_st_stack): New function.
9182 (thumb_record_ld_st_imm_offset): New function.
9183 (thumb_record_ld_st_reg_offset(): New function.
9184 (thumb_record_add_sub_cmp_mov): New function.
9185 (thumb_record_shift_add_sub): New function.
9186 (arm_record_coproc_data_proc): New function.
9187 (arm_record_coproc): New function.
9188 (arm_record_b_bl): New function.
9189 (arm_record_ld_st_multiple): New function.
9190 (arm_record_ld_st_reg_offset): New function.
9191 (arm_record_ld_st_imm_offset): New function.
9192 (arm_record_data_proc_imm): New function.
9193 (arm_record_data_proc_misc_ld_str): New function.
9194 (arm_record_extension_space): New function.
9195 (arm_record_strx): New function.
9196 (sbo_sbz): New function.
9197 (struct insn_decode_record): New structure for arm insn record.
9198 (REG_ALLOC): New macro for reg allocations.
9199 (MEM_ALLOC): New macro for memory allocations.
9200 * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
9204 * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
9205 (store_register): Likewise.
9209 * MAINTAINERS (Write After Approval): Add myself to the list.
9213 * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
9214 Describe also the option "auto".
9218 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
9219 * sparc-nat.c (sparc_xfer_wcookie): Make static.
9223 * jit.c (jit_read_code_entry): Compute alignment and offset of
9224 int64_t member before computing entry_size.
9228 Python scripting: Add new method Value.referenced_value to
9229 gdb.Value which can dereference pointer as well as reference
9231 * NEWS: Add entry under 'Python scripting' about the new method
9232 Value.referenced_value on gdb.Value objects.
9233 * python/py-value.c (valpy_referenced_value): New function
9234 defining a new method on gdb.Value objects which can dereference
9235 pointer and reference values.
9239 * MAINTAINERS (Write After Approval): Add myself to the list.
9243 * symtab.c (skip_prologue_sal): Change test to check for "main()"
9244 in addition to "main".
9248 * expression.h (op_name): Add declaration.
9249 * expprint.c (op_name): Remove declaration. Make non-static.
9250 * ax-gdb.c (gen_expr): Use op_name instead of op_string.
9254 * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
9256 * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
9257 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
9258 * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
9259 (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
9260 (linux_nat_get_siginfo): Likewise.
9261 * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
9262 (linux_nat_get_siginfo): Likewise.
9263 * linux-tdep.c (linux_get_siginfo_type): Likewise.
9264 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
9265 * procfs.c (gdb_siginfo_t): Likewise.
9269 * .gitignore: Ignore more files.
9273 * remote.c (remote_start_remote): Clear `rs->starting_up' on early
9278 * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
9283 Code cleanupp: Use cu_offset and sect_offset compile time type checking.
9284 * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
9285 (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
9287 * dwarf2expr.h (cu_offset, sect_offset): New types.
9288 (struct dwarf_expr_context_funcs) <dwarf_call>
9289 (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
9291 (struct dwarf_expr_context) <len>: Improve the comment.
9292 (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
9293 cu_offset and sect_offset.
9294 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
9295 (dwarf_expr_get_base_type, needs_frame_dwarf_call)
9296 (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
9297 * dwarf2loc.h: Include dwarf2expr.h.
9298 (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
9300 * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
9301 Improve the comment.
9302 (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
9303 (struct signatured_type, struct line_header, struct partial_die_info)
9304 (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
9305 (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
9306 (get_die_type_at_offset, create_cus_from_index)
9307 (create_signatured_type_table_from_index, dw2_get_file_names)
9308 (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
9309 (read_and_check_comp_unit_head, read_and_check_type_unit_head)
9310 (create_debug_types_hash_table, process_psymtab_comp_unit)
9311 (load_partial_comp_unit, create_all_comp_units)
9312 (partial_die_parent_scope, partial_die_full_name, skip_one_die)
9313 (load_full_comp_unit, dwarf2_physname, read_import_statement)
9314 (inherit_abstract_dies, read_func_scope, read_call_site_scope)
9315 (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
9316 (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
9317 (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
9318 (find_partial_die, read_attribute_value, lookup_die_type)
9319 (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
9320 (is_ref_attr): New function comment.
9321 (dwarf2_get_ref_die_offset): New function comment, new variable retval.
9322 Use cu_offset and sect_offset.
9323 (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
9324 (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
9325 (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
9326 (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
9327 (offset_and_type_hash, offset_and_type_eq, set_die_type)
9328 (get_die_type_at_offset, partial_die_hash, partial_die_eq)
9329 (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
9335 * python/py-auto-load.c (source_section_scripts): New variable back_to.
9336 Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
9338 (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
9342 * NEWS: Describe new options --init-command=FILE, -ix and
9343 --init-eval-command=COMMAND, -iex.
9344 * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
9345 CMDARG_INIT_COMMAND.
9346 (captured_main): New enum items OPT_IX and OPT_IEX. Add
9347 "init-command", "init-eval-command", "ix" and "iex" to the variable
9348 long_options. Handle OPT_IX and OPT_IEX. Process them from CMDARG_VEC.
9349 New comment for CMDARG_FILE and CMDARG_COMMAND processing.
9350 (print_gdb_help): Describe --init-command=FILE, -ix and
9351 --init-eval-command=COMMAND, -iex.
9356 * main.c (struct cmdarg): Move it here from main. Add more comments.
9357 (cmdarg_s, VEC (cmdarg_s)): New.
9358 (main): Move struct cmdarg from here. New variables cmdarg_vec and
9359 cmdarg_p. Remove variables cmdsize and ncmd and their initialization.
9360 Install cleanup for cmdarg_vec. Update filling for options 'x' and
9361 'X'. Replace cmdarg processing by cmdarg_vec processing. Remove xfree
9366 * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
9371 * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
9376 * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
9381 * source.c (add_path): Use memmove instead of strcpy because the
9386 * value.h (set_value_parent): Add declaration.
9387 * value.c (set_value_parent): New function.
9388 (value_address): If VALUE->PARENT is not NULL, then use it as
9389 the base address instead of VALUE->LOCATION.address.
9390 * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
9391 the same as OBJ's address. Adjust V's offset accordingly.
9396 PR breakpoints/10738
9397 * dwarf2read.c (use_deprecated_index_sections): New global.
9398 (struct partial_die_info): New member may_be_inlined.
9399 (read_partial_die): Set may_be_inlined where appropriate.
9400 (add_partial_subprogram): Add partial symbols for partial
9401 DIEs that may be inlined.
9402 (new_symbol_full): Add inlined subroutines to the current
9404 (write_psymtabs_to_index): Bump version number.
9405 (dwarf2_read_index): Read only version 6 indices unless
9406 use_deprecated_index_sections is set.
9407 * linespec.c (symbol_and_data_callback): New structure.
9408 (iterate_inline_only): New function.
9409 (iterate_over_all_matching_symtabs): New argument
9410 "include_inline". If nonzero, also call the callback for
9411 symbols representing inlined subroutines.
9412 (lookup_prefix_sym): Pass extra argument to the above.
9413 (find_function_symbols): Likewise.
9414 (add_matching_symbols_to_info): Likewise.
9415 * NEWS: Mention that GDB can now set breakpoints on inlined
9420 * p-typeprint.c (pascal_type_print_method_args):
9421 Fix display of parameter of methods.
9425 * amd64-windows-nat.c (_initialize_amd64_windows_nat):
9426 Add missing prototype.
9431 Fix false compilation warning.
9432 * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
9437 * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
9438 (arm_register_g_packet_guesses): New function.
9439 (arm_gdbarch_init): Don't force a target description with
9440 registers when the executable is detected as M-profile. Instead
9441 set gdbarch->tdep->is_m. Register `g' packet guesses.
9442 (_initialize_arm_tdep): Initialize the new target description.
9443 * features/arm-with-m-fpa-layout.xml: New description.
9444 * features/arm-with-m-fpa-layout.c: New, generated.
9448 * breakpoint.c (breakpoint_xfer_memory): Add assertion.
9449 Update function description.
9450 (insert_bp_location): Do not wipe bl->target_info out.
9451 * mem-break.c: #include "gdb_string.h".
9452 (default_memory_insert_breakpoint): Do not call target_read_memory
9453 with a pointer to the breakpoint's shadow_contents buffer. Use
9454 a local buffer instead.
9455 * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
9459 * NEWS: Mention "info vtbl", not "info vtable".
9460 * cp-support.c (info_vtbl_command): Fix comment.
9461 (_initialize_cp_support): Fix text.
9465 * cp-valprint.c (cp_print_value_fields): Use
9466 print_function_pointer_address for vtable slot.
9470 * gnu-v3-abi.c (struct value_and_voffset): New.
9471 (hash_value_and_voffset, eq_value_and_voffset)
9472 (compare_value_and_voffset, compute_vtable_size)
9473 (print_one_vtable, gnuv3_print_vtable): New functions.
9474 (init_gnuv3_ops): Initialize 'print_vtable' field.
9475 * cp-support.c (info_vtbl_command): New function.
9476 (_initialize_cp_support): Add "info vtbl".
9477 * cp-abi.h (cplus_print_vtable): Declare.
9478 (struct cp_abi_ops) <print_vtable>: New field.
9479 * cp-abi.c (cplus_print_vtable): New function.
9484 * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
9485 iterate_over_symbols.
9489 * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
9490 DW_OP_GNU_parameter_ref.
9494 Fix double prompt of 'interpreter-exec mi'.
9495 * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
9496 (mi_interpreter_resume): use it.
9497 (mi_execute_command_input_handler): New function.
9498 * mi/mi-main.c (mi_execute_command): Move prompt printing to
9499 mi_execute_command_input_handler.
9503 * darwin-nat-info.c (_initialize_darwin_info_commands): Add
9505 (darwin_debug_port_info): Make static.
9506 * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
9507 * machoread.c (_initialize_machoread): Add prototype.
9508 * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
9509 (i386_darwin_set_control, i386_darwin_get_control)
9510 i386_darwin_dr_set_addr, i386_darwin_get_addr)
9511 i386_darwin_get_status, i386_darwin_get_control):
9512 Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
9516 * ax-gdb.c (gen_usual_unary): Remove special handling of
9517 enum and bool types.
9521 * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
9525 * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
9529 * aix-thread.c (fill_sprs): Store the floating point registers
9530 at the correct offsets into vals.
9534 * NEWS: Mention symbol-reloading has been deleted.
9535 * symfile.c (symbol_reloading): Delete.
9536 (show_symbol_reloading): Delete.
9537 (_initialize_symfile): Delete set/show symbol-reloading.
9539 * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
9540 read_in_chain until we have successfully read it in.
9541 (load_full_comp_unit): Ditto.
9542 (read_signatured_type): Add comment.
9546 * stabsread.c (fix_common_block): Change type of valu argument
9551 * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
9556 * common/linux-procfs.c (linux_proc_get_int): New, from
9557 linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
9559 (linux_proc_get_tgid): Only call linux_proc_get_int.
9560 (linux_proc_get_tracerpid): New.
9561 (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
9562 (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
9563 linux_proc_pid_has_state.
9564 * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
9565 * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
9566 (linux_ptrace_attach_warnings): New.
9567 * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
9569 * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
9570 (linux_nat_attach): New variables ex, buffer, message and message_s.
9571 Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
9575 * Makefile.in (linux-ptrace.o): New.
9576 * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
9578 * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
9579 * common/linux-ptrace.c: New file.
9580 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
9581 * config/arm/linux.mh: Likewise.
9582 * config/i386/linux.mh: Likewise.
9583 * config/i386/linux64.mh: Likewise.
9584 * config/ia64/linux.mh: Likewise.
9585 * config/m32r/linux.mh: Likewise.
9586 * config/m68k/linux.mh: Likewise.
9587 * config/mips/linux.mh: Likewise.
9588 * config/pa/linux.mh: Likewise.
9589 * config/powerpc/linux.mh: Likewise.
9590 * config/powerpc/ppc64-linux.mh: Likewise.
9591 * config/powerpc/spu-linux.mh: Likewise.
9592 * config/s390/s390.mh: Likewise.
9593 * config/sparc/linux.mh: Likewise.
9594 * config/sparc/linux64.mh: Likewise.
9595 * config/xtensa/linux.mh: Likewise.
9596 * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
9597 common/linux-procfs.c.
9598 (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
9603 * breakpoint.c (init_breakpoint_sal): New flags parameter. Handle
9604 CREATE_BREAKPOINT_FLAGS_INSERTED.
9605 (create_breakpoint_sal, create_breakpoints_sal)
9606 (base_breakpoint_create_breakpoints_sal)
9607 (tracepoint_create_breakpoints_sal)
9608 (strace_marker_create_breakpoints_sal): New flags parameter. Pass
9610 (break_command_1, handle_gnu_v3_exceptions, trace_command)
9611 (ftrace_command, strace_command): Adjust.
9612 (create_tracepoint_from_upload): Pass
9613 CREATE_BREAKPOINT_FLAGS_INSERTED.
9614 * breakpoint.h (enum breakpoint_create_flags): New.
9615 (create_breakpoint): New flags parameter.
9616 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
9617 * python/py-breakpoint.c (bppy_init): Adjust.
9618 * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
9619 * spu-tdep.c (spu_catch_start): Adjust.
9625 * remote.c (struct remote_state): New field `starting_up'.
9626 (remote_start_remote): Set and clear it.
9627 (remote_can_download_tracepoint): If starting up, return false.
9631 * inferior.h (struct inferior): Remove fields any_syscall_count,
9632 syscalls_counts and total_syscalls_count. Move them to new
9633 struct catch_syscall_inferior_data in breakpoint.c.
9634 * breakpoint.c: Call DEF_VEC_I(int).
9635 (struct catch_syscall_inferior_data): New.
9636 (get_catch_syscall_inferior_data): New.
9637 (catch_syscall_inferior_data_cleanup): New.
9638 (insert_catch_syscall): Update to access data in
9639 struct catch_syscall_inferior_data.
9640 (insert_catch_syscall): Likewise.
9641 (remove_catch_syscall): Likewise.
9642 (remove_catch_syscall): Likewise.
9643 (is_syscall_catchpoint_enabled): Likewise.
9644 (add_catch_command): Likewise.
9645 (_initialize_breakpoint): Register cleanup.
9646 * breakpoint.h: Removed DEF_VEC_I(int).
9647 * dwarf2loc.c: Call DEF_VEC_I(int).
9648 * mi/mi-main.c: Likewise.
9652 * inf-ptrace.c (inf_ptrace_post_attach): Make static.
9656 * aix-thread.c (_initialize_aix_thread): Add prototype.
9657 * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
9658 * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
9662 * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
9663 include of "amd64-nat.h".
9667 * buildsym.c (record_pending_block): Now static.
9668 * buildsym.h: (record_pending_block): Remove.
9672 * amd64bsd-nat.c: Include amd64bsd-nat.h.
9676 * dwarf2read.c (struct dwarf2_cu) <checked_producer,
9677 producer_is_gxx_lt_4_6>: New fields.
9678 (producer_is_gxx_lt_4_6): Use and update producer cache fields.
9682 * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
9686 * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
9691 * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
9695 Fix -Wmissing-prototypes build.
9696 * arm-linux-nat.c (get_thread_id): Make it static.
9697 * xtensa-linux-nat.c (get_thread_id): Likewise.
9701 * server.c (process_point_options): If a conditional expression
9702 is found, only print a message if remote_debug is nonzero.
9706 * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
9707 of internal error for unknown/unsupported types.
9711 Fix CU relative vs. absolute DIE offsets.
9712 * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
9713 offset to offset_in_cu.
9714 * dwarf2read.c (process_enumeration_scope): Add CU offset to
9716 (dwarf2_fetch_die_location_block): Rename parameter offset to
9717 offset_in_cu. New variable offset, add CU offset to OFFSET_IN_CU.
9721 * libunwind-frame.c: Rename to ...
9722 * ia64-libunwind-tdep.c: ... here.
9723 * libunwind-frame.h: Rename to ...
9724 * ia64-libunwind-tdep.h: ... here.
9725 * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
9726 ia64-libunwind-tdep.h.
9727 (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
9728 * README (--with-libunwind): Rename to ...
9729 (--with-libunwind-ia64): ... here, note it is ia64 specific now.
9730 * config.in: Regenerate.
9731 * configure: Regenerate.
9732 * configure.ac: New option --with-libunwind-ia64, make the
9733 AS_HELP_STRING ia64 specific. Deprecate option --with-libunwind.
9734 Remove AC_DEFINE for HAVE_LIBUNWIND.
9735 * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
9736 Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
9737 Rename libunwind-frame in the general comment.
9738 * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
9739 Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
9740 Move forward declarations inside #ifndef. Rename libunwind-frame in
9741 the general comment.
9742 * ia64-tdep.c: Rename libunwind-frame.h #include to
9743 ia64-libunwind-tdep.h.
9744 (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
9745 (ia64_libunwind_descr): Rename libunwind-frame to
9746 ia64-libunwind-tdep in these function comments.
9747 * ia64-tdep.h: Rename libunwind-frame.h #include to
9748 ia64-libunwind-tdep.h.
9749 * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
9750 ia64-libunwind-tdep in that data comment.
9754 * libunwind-frame.h (struct frame_unwind): New declaration.
9758 * breakpoint.c (_initialize_breakpoint): Fix error in help of
9759 "set breakpoint condition-evaluation" command.
9763 * sparc-stub.c: Move to stubs/
9764 * sh-stub.c: Likewise.
9765 * m68k-stub.c: Likewise.
9766 * m32r-stub.c: Likewise.
9767 * i386-stub.c: Likewise.
9771 * m68klinux-tdep.c (m68k_linux_init_abi): Register
9772 linux_get_siginfo_type.
9774 * m68klinux-nat.c: Include "gdb_proc_service.h".
9775 (PTRACE_GET_THREAD_AREA): Define.
9776 (ps_get_thread_area): New function.
9780 * remote.c (remote_get_noisy_reply): Replace `sprintf' with
9782 (remote_query_attached): Likewise.
9783 (remote_static_tracepoint_marker_at): Likewise.
9784 (remote_set_permissions): Likewise.
9785 (remote_detach_1, extended_remote_attach_1): Likewise.
9786 (send_g_packet, remote_vkill): Likewise.
9787 (extended_remote_disable_randomization): Likewise.
9788 (remote_add_target_side_condition): Likewise.
9789 (remote_insert_breakpoint): Likewise.
9790 (remote_remove_breakpoint): Likewise.
9791 (remote_insert_watchpoint): Likewise.
9792 (remote_remove_watchpoint): Likewise.
9793 (remote_insert_hw_breakpoint): Likewise.
9794 (remote_insert_hw_breakpoint): Likewise.
9795 (remote_remove_hw_breakpoint): Likewise.
9796 (remote_download_command_source): Likewise.
9797 (remote_download_tracepoint): Likewise.
9798 (remote_download_trace_state_variable): Likewise.
9799 (remote_disable_tracepoint): Likewise.
9800 (remote_trace_set_readonly_regions): Likewise.
9801 (remote_get_tracepoint_status): Likewise.
9802 (remote_trace_find): Likewise.
9803 (remote_get_trace_state_variable_value): Likewise.
9804 (remote_set_disconnected_tracing): Likewise.
9805 (remote_set_circular_trace_buffer): Likewise.
9806 (remote_get_min_fast_tracepoint_insn_len): Likewise.
9807 (remote_use_agent): Likewise.
9808 (remote_add_target_side_condition): Add one parameter BUF_SIZE.
9813 * NEWS: Mention QProgramSignals.
9814 * inferior.h (update_signals_program_target): Declare.
9815 * infrun.c: (update_signals_program_target): New.
9816 (handle_command): Update the target of the new program signals
9818 * remote.c (PACKET_QProgramSignals): New enum.
9819 (last_program_signals_packet): New global.
9820 (remote_program_signals): New.
9821 (remote_start_remote): Update the target with the program signals
9823 (remote_protocol_features): Add entry for QPassSignals.
9824 (remote_open_1): Free anc clear last_program_signals_packet.
9825 (init_remote_ops): Install remote_program_signals.
9826 * target.c (update_current_target): Adjust.
9827 (target_program_signals): New.
9828 * target.h (struct target_ops) <to_program_signals>: New field.
9829 (target_program_signals): Declare.
9833 * NEWS: Add subtitle for new z0/z1 conditional breakpoint
9838 * m68klinux-nat.c (getregs_supplies): Make static.
9839 (getfpregs_supplies): Likewise.
9840 (have_ptrace_getregs): Likewise.
9844 * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
9845 in call to get_die_type_at_offset.
9849 * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
9850 * mi/mi-cmd-disas.c: Ditto.
9851 * mi/mi-cmd-env.c: Ditto.
9852 * mi/mi-cmd-file.c: Ditto.
9853 * mi/mi-cmd-stack.c: Ditto.
9854 * mi/mi-cmd-target.c: Ditto.
9855 * mi/mi-cmd-var.c: Ditto.
9856 * mi/mi-cmds.c: Ditto.
9857 * mi/mi-cmds.h: Ditto.
9858 * mi/mi-console.c: Ditto.
9859 * mi/mi-getopt.c: Ditto.
9860 * mi/mi-getopt.h: Ditto.
9861 * mi/mi-interp.c: Ditto.
9862 * mi/mi-main.c: Ditto.
9863 * mi/mi-out.c: Ditto.
9864 * mi/mi-parse.c: Ditto.
9865 * mi/mi-parse.h: Ditto.
9866 * mi/mi-symbol-cmds.c: Ditto.
9868 * mi/mi-getopt.h: Move mi_opt struct up.
9869 * mi/mi-main.c (captured_mi_execute_command): Remove redundant
9871 * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
9875 * proc-service.c (ps_pglobal_lookup): Set the current program
9880 * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
9884 * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
9889 * common/linux-osdata.c (linux_common_core_of_thread): New function
9891 * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
9892 call by linux_common_core_of_thread.
9893 (linux_nat_core_of_thread_1): Remove.
9894 * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
9895 * linux-thread-db.c: Include linux-osdata.h.
9896 (update_thread_core): Replace linux_nat_core_of_thread_1 call by
9897 linux_common_core_of_thread.
9901 * value.c (value_primitive_field): Don't fetch contents for
9906 * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
9910 * s390-nat.c: Include "gregset.h".
9914 * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
9915 [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
9916 (libunwind_load): New variable so_error, use it for dlerror. Try to
9917 load also LIBUNWIND_SO_7.
9921 * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
9922 is not NULL, and remove resulting dead code.
9926 * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
9927 prologue to sh_analyze_prologue.
9928 (sh_analyze_prologue): Make better use of such an upper limit, and
9929 generally be more cautious about accessing memory.
9933 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
9934 _initialize_ia64_hpux_tdep.
9940 * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
9941 the register state is clear, supply explicit zero, instead of
9942 marking the register unavailable.
9946 * NEWS: Mention OpenVMS ia64 new target.
9950 * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
9951 (ia64_unw_accessors, ia64_unw_rse_accessors)
9952 (ia64_libunwind_descr): Declare.
9953 * ia64-vms-tdep.c: New file.
9954 * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
9955 (ia64_libunwind_descr): Make them public.
9956 * configure.tgt: Add ia64-*-*vms*.
9957 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
9958 (ALLDEPFILES): Add ia64-vms-tdep.c
9962 * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
9963 * remote.c (PACKET_qXfer_uib): New enum value.
9964 (remote_protocol_features): Add entry for PACKET_qXfer_uib.
9965 (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
9966 (_initialize_remote): Call add_packet_config_cmd for
9971 * osabi.c (gdb_osabi_names): Add OpenVMS.
9972 (generic_elf_osabi_sniffer): Likewise.
9973 * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
9977 Removed unused code.
9978 * libunwind-frame.c (libunwind_frame_unwind)
9979 (libunwind_frame_base_address): Remove.
9980 * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
9984 * common/agent.c (gdb_connect_sync_socket): Add _ markup and
9985 remove trailing new line.
9986 (agent_run_command, agent_run_command): Add _ markup.
9987 (agent_capability_check): Likewise.
9991 * breakpoint.c (set_condition_evaluation_mode): Set
9992 CONDITION_EVALUATION_MODE unconditionally.
9996 * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
9997 * common/agent.h: Update declaration.
9998 * inf-child.c (inf_child_use_agent): New.
9999 (inf_child_can_use_agent): New.
10000 (inf_child_target): Initialize fields `to_use_agent'
10001 and `to_can_use_agent'.
10002 * agent.c (agent_new_objfile): New.
10003 (_initialize_agent): Add agent_new_objfile to new_objfile
10006 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
10008 (linux_target_install_ops): Initialize field
10009 `to_static_tracepoint_markers_by_strid'.
10010 * remote.c (free_current_marker): Move it to ...
10011 * tracepoint.c (free_current_marker): ... here. New.
10012 (cleanup_target_stop): New.
10013 * tracepoint.h: Declare free_current_marker.
10014 * NEWS: Add one entry about `info static-tracepoint-marker'.
10018 * common/agent.c (agent_loaded_p): New.
10019 (agent_look_up_symbols): New global.
10020 * common/agent.h: Declare agent_loaded_p.
10024 * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
10025 (agent_capability_check, agent_capability_invalidate): New.
10026 (symbol_list): New array element.
10027 * common/agent.h (enum agent_capa): New.
10028 * target.c (target_pre_inferior): Call agent_capability_invalidate.
10032 * target.h (struct target_ops) <to_use_agent>: New field.
10033 (struct target_ops) <to_can_use_agent>: New field.
10034 (target_use_agent, target_can_use_agent): New macro.
10035 * target.c (update_current_target): Update.
10036 * remote.c: New enum `PACKET_QAgent'.
10037 (remote_protocol_features): Add a new element.
10038 (remote_use_agent, remote_can_use_agent): New.
10039 (init_remote_ops): Initialize field `can_use_agent' with
10040 remote_can_use_agent. Intiailize field `use_agent' with
10042 * common/agent.c (use_agent): New global.
10043 * common/agent.h: Declare it.
10044 * tracepoint.c (info_static_tracepoint_markers_command): Add
10046 * Makefile.in (SFILES): Add common/agent.c and agent.c.
10047 (COMMON_OBS): Add common/agent.o and agent.o
10048 (common-agent.o): New rule.
10053 * common/agent.c: New.
10054 * common/agent.h: New.
10055 * configure.ac: Add `sys/socket.h' and `sys/un.h' to
10057 * configure, configh.in: Regenerated.
10061 * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
10062 unless it exists for this architecture.
10066 * language.h (struct language_defn): New "method" la_read_var_value.
10067 * findvar.c: #include "language.h".
10068 (default_read_var_value): Renames read_var_value. Rewrite
10069 function description.
10070 (read_var_value): New function.
10071 * value.h (default_read_var_value): Add prototype.
10072 * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
10074 (ada_language_defn): Add entry for la_read_var_value.
10075 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
10076 * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
10077 language_defn structures to add entry for new la_read_var_value
10083 PR breakpoints/13776:
10084 * breakpoint.c (breakpoint_init_inferior): Delete step-resume
10086 (delete_longjmp_breakpoint_at_next_stop): New.
10087 * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
10088 * target.c (generic_mourn_inferior): Call mark_breakpoints_out
10089 before deleting the inferior. Add comments.
10090 * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
10091 breakpoints immediately, but only on next stop. Move that code
10092 next to where we mark other breakpoints for deletion.
10096 * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
10098 * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
10103 * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
10107 Fix -Wmissing-prototypes build.
10108 * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
10109 * remote-sim.c (gdbsim_has_all_memory): Likewise.
10110 (gdbsim_has_memory): Likewise.
10114 Fix -Wmissing-prototypes build.
10115 * charset.c (phony_iconv_open): Make static.
10116 (phony_iconv_close, phony_iconv): Likewise.
10117 * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
10118 * i386-windows-nat.c (_initialize_i386_windows_nat): New
10120 * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
10121 * ser-mingw.c (create_select_thread): Make static.
10122 * windows-termcap.c (tgetent): New prototype.
10123 (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
10127 Fix -Wmissing-prototypes build.
10128 * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
10129 (_initialize_windows_nat, _initialize_check_for_gdb_ini)
10130 (_initialize_loadable): New prototypes.
10134 * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
10135 abbrev table, read_comp_unit will do it.
10139 Fix -Wmissing-prototypes build.
10140 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
10141 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
10142 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
10143 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
10144 (_initialize_arm_symbian_tdep): New prototype.
10145 * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
10146 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
10147 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
10149 * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
10150 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
10152 * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
10153 (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
10154 * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
10156 * moxie-tdep.c (moxie_process_record): Likewise.
10157 * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
10158 (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
10159 * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
10160 (_initialize_rl78_tdep): New prototype.
10161 * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
10162 (_initialize_rx_tdep): New prototype.
10163 * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
10164 (_initialize_darwin_solib): New prototype.
10165 * solib-spu.c: Include solib-spu.h.
10166 (_initialize_spu_solib): New prototype.
10167 * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
10168 * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
10169 (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
10170 (tic6x_software_single_step): Make it static.
10171 (_initialize_tic6x_tdep): New prototype.
10175 Fix -Wmissing-prototypes build.
10176 * cris-tdep.c (cris_can_use_hardware_watchpoint)
10177 (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
10181 Fix -Wmissing-prototypes build.
10182 * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
10183 (frv_have_stopped_data_address): Remove.
10187 Fix -Wmissing-prototypes build.
10188 * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
10189 * sh-tdep.c: Include sh64-tdep.h.
10190 * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
10191 * sh64-tdep.c: Include sh64-tdep.h.
10192 * sh64-tdep.h: New file.
10196 * mips-tdep.c (mips32_scan_prologue): Correct indentation.
10200 * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
10201 sp_regnum once the gdbarch_init_osabi hook has been called.
10205 * mips-tdep.c (mips32_bc1_pc): New function.
10206 (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
10207 BPOSGE32 and BPOSGE64 instructions.
10208 (deal_with_atomic_sequence): Likewise.
10209 (mips32_instruction_has_delay_slot): Likewise.
10216 * features/mips-dsp.xml: New file.
10217 * features/mips64-dsp.xml: New file.
10218 * features/mips-dsp-linux.xml: New file.
10219 * features/mips64-dsp-linux.xml: New file.
10220 * features/Makefile (WHICH): Add mips-dsp-linux and
10222 (mips-dsp-expedite, mips64-dsp-expedite): New variables.
10223 * features/mips-dsp-linux.c: New file.
10224 * features/mips64-dsp-linux.c: New file.
10225 * regformats/mips-dsp-linux.dat: New file.
10226 * regformats/mips64-dsp-linux.dat: New file.
10227 * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
10229 (mips64_linux_register_addr): Likewise.
10230 (mips64_linux_regsets_fetch_registers): Likewise.
10231 (mips64_linux_regsets_store_registers): Likewise.
10232 (mips64_linux_fetch_registers): Update call to
10233 mips64_linux_regsets_fetch_registers.
10234 (mips64_linux_store_registers): Update call to
10235 mips64_linux_regsets_store_registers.
10236 (mips_linux_read_description): Probe for DSP registers.
10237 (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
10238 and initialize_tdesc_mips64_dsp_linux.
10239 * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
10240 Remove padding of no longer used embedded register slots.
10241 * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
10242 (MIPS_RESTART_REGNUM): Redefine enum value.
10243 * mips-tdep.c (mips_generic_reg_names): Remove trailing null
10245 (mips_tx39_reg_names): Likewise.
10246 (mips_linux_reg_names): New array of register names for Linux
10248 (mips_register_name): Check for a null pointer in
10249 mips_processor_reg_names and return an empty string.
10250 (mips_register_type): Exclude embedded registers for the IRIX
10252 (mips_pseudo_register_type): Likewise. Use dynamic numbers to
10253 refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle
10255 (mips_stab_reg_to_regnum): Handle DSP accumulators.
10256 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
10257 (mips_gdbarch_init): Likewise. Initialize internal register
10258 indices for the Linux ABI. Use dynamic numbers to refer to
10259 registers, as applicable, while parsing the target description.
10260 * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
10264 * frame.h (read_frame_register_unsigned): Fix typo in function
10269 * jit-reader.in [!__cplusplus]
10270 (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
10274 * configure.ac (build_warnings): Add -Wmissing-prototypes.
10275 * configure: Regenerate.
10279 * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
10280 * breakpoint.c (create_exception_master_breakpoint, trace_command)
10281 (ftrace_command, strace_command): Make static.
10282 * d-lang.c (_initialize_d_language): Declare.
10283 * dwarf2expr.c (_initialize_dwarf2expr): Declare.
10284 * dwarf2loc.c (_initialize_dwarf2loc):
10285 * dwarf2read.c (process_psymtab_comp_unit): Make static.
10286 * exec.c (exec_get_section_table): Make static.
10287 * i386-linux-tdep.c (i386_linux_record_signal): Make static.
10288 * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
10289 * inferior.c (remove_inferior_command, add_inferior_command)
10290 (clone_inferior_command): Make static.
10291 * linux-nat.c (linux_nat_thread_address_space)
10292 (linux_nat_core_of_thread): Make static.
10293 * linux-tdep.c (_initialize_linux_tdep): Declare.
10294 * objc-lang.c (_initialize_objc_lang): Declare.
10295 * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
10297 (_initialize_opencl_language): Declare.
10298 * record.c (_initialize_record): Declare.
10299 * remote.c (demand_private_info, remote_get_tib_address)
10300 (remote_supports_cond_tracepoints)
10301 (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
10303 * skip.c (_initialize_step_skip): Declare.
10304 * symtab.c (skip_prologue_using_lineinfo): Make static.
10305 * tracepoint.c (delete_trace_state_variable)
10306 (trace_variable_command, delete_trace_variable_command)
10307 (get_uploaded_tsv, find_matching_tracepoint_location)
10308 (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
10310 * value.c (pack_unsigned_long): Make static.
10311 * varobj.c (varobj_ensure_python_env): Make static.
10312 * windows-tdep.c (_initialize_windows_tdep): Declare.
10313 * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
10317 * linux-tdep.c (linux_has_shared_address_space): Make static. Add
10319 (linux_init_abi): Install it as has_shared_address_space gdbarch
10324 * observer.c (observer_test_first_notification_function)
10325 (observer_test_second_notification_function)
10326 (observer_test_third_notification_function): Add declarations.
10330 * common/signals.c (default_target_signal_to_host)
10331 (default_target_signal_from_host): Move ...
10332 * arch-utils.c: ... here.
10333 * arch-utils.h (default_target_signal_to_host)
10334 (default_target_signal_from_host): Declare.
10336 * common/signals.c (target_signal_from_command): Move ...
10337 * infrun.c: ... here.
10338 * inferior.h (target_signal_from_command): Declare.
10339 * target.h (target_signal_from_command)
10340 (default_target_signal_from_host, default_target_signal_to_host):
10341 Delete declarations.
10343 * common/signals.c (_initialize_signals): Delete.
10347 * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
10348 both __cplusplus and !__cplusplus.
10352 * psymtab.c (find_and_open_source): Delete declaration.
10353 * source.c (find_and_open_source): Move comment ...
10354 * source.h (find_and_open_source): ... to this new declaration.
10358 * inline-frame.c: Include inline-frame.h.
10362 * tui/tui-data.c (set_gen_win_origin): Delete.
10363 * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
10364 * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
10368 * remote.c (encode_actions): Delete declaration.
10369 * tracepoint.c (encode_actions): Make extern.
10370 * tracepoint.h (encode_actions): Declare.
10374 * python/py-breakpoint.c: Include python.h.
10375 * python/py-continueevent.c (create_continue_event_object): Make
10377 * python/py-lazy-string.c (stpy_get_type): Make static.
10378 * python/py-newobjfileevent.c (create_new_objfile_event_object):
10380 * python/py-utils.c (unicode_to_target_python_string): Make
10382 * python/py-value.c: Include python.h.
10386 * inferior.c (delete_threads_of_inferior): Delete.
10390 Import fallback definitions from glibc.
10392 * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
10393 ps_prochandle): Forward declare.
10394 (ps_err_e): Use glibc's comments.
10395 [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
10396 (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
10397 (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
10398 (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
10399 (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
10400 (struct ps_prochandle): Adjust comment.
10404 * ada-lang.c (ada_modulus_from_name): Delete.
10405 * ada-lex.l (lexer_init): Make static.
10411 * frame.c (read_frame_register_unsigned): New.
10412 * frame.h (read_frame_register_unsigned): Declare.
10413 * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
10415 (print_i387_control_word): New parameter `control_p'. Handle it.
10416 (i387_print_float_info): Handle unavailable float registers.
10420 * linespec.c (decode_line_2): Sort the list of methods
10421 alphabetically before presenting the user with a selection
10426 * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
10427 has_namespace_info.
10428 (dwarf2_read_abbrevs): Remove corresponding initialization.
10432 * NEWS: Mention new python command class gdb.COMMAND_USER.
10433 * cli/cli-cmds.c (show_user): Print error when used on a python
10435 (init_cli_cmds): Update documentation strings for "show user" and
10436 "set/show max-user-call-depth" to clarify that it does not apply to
10438 * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
10440 (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
10442 * top.c (execute_command): Only execute a user-defined command as a
10443 legacy macro if c->user_commands is set.
10447 * valprint.h (struct generic_val_print_decorations): New.
10448 (generic_val_print): Declare.
10449 * valprint.c (generic_val_print): New function.
10450 * p-valprint.c (p_decorations): New global.
10451 (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
10452 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
10453 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
10454 TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
10455 * m2-valprint.c (m2_decorations): New global.
10456 (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
10457 TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
10458 TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
10459 TYPE_CODE_ERROR>: Call generic_val_print.
10460 * f-valprint.c (f_decorations): New global.
10461 (f_val_print): Use print_function_pointer_address.
10462 <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
10463 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
10464 TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
10466 * c-valprint.c (c_decorations): New global.
10467 (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
10468 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
10469 TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
10470 TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
10471 TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
10472 * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
10477 * valprint.c (val_print): Update.
10478 * p-valprint (pascal_val_print): Return void.
10479 * p-lang.h (pascal_val_print): Return void.
10480 * m2-valprint.c (m2_val_print): Return void.
10481 * m2-lang.h (m2_val_print): Return void.
10482 * language.h (struct language_defn) <la_val_print>: Return void.
10483 * language.c (unk_lang_val_print): Return void.
10484 * jv-valprint.c (java_val_print): Return void.
10485 * jv-lang.h (java_val_print): Return void.
10486 * f-valprint.c (f_val_print): Return void.
10487 * f-lang.h (f_val_print): Return void.
10488 * d-valprint.c (d_val_print): Return void.
10489 (dynamic_array_type): Update.
10490 * d-lang.h (d_val_print): Return void.
10491 * c-valprint.c (c_val_print): Return void.
10492 * c-lang.h (c_val_print): Return void.
10493 * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
10495 * ada-lang.h (ada_val_print): Return void.
10499 * value.h (val_print): Return void.
10500 * valprint.c (val_print): Return void.
10504 * value.h (common_val_print): Return void.
10505 * valprint.c (common_val_print): Return void.
10509 * value.h (value_print): Return void.
10510 * valprint.c (value_print): Return void.
10511 * p-valprint.c (pascal_value_print): Return void.
10512 * p-lang.h (pascal_value_print): Return void.
10513 * language.h (struct language_defn) <la_value_print>: Return
10515 * language.c (unk_lang_value_print): Return void.
10516 * jv-valprint.c (java_value_print): Return void.
10517 * jv-lang.h (java_value_print): Return void.
10518 * f-valprint.c (c_value_print): Don't declare.
10520 * c-valprint.c (c_value_print): Return void.
10521 * c-lang.h (c_value_print): Return void.
10522 * ada-valprint.c (ada_value_print): Return void.
10523 * ada-lang.h (ada_value_print): Return void.
10527 * value.c (value_primitive_field): Handle virtual base classes.
10531 * gdbtypes.h (struct vbase): Remove.
10535 * c-valprint.c (print_function_pointer_address): Move...
10536 * valprint.c: ... here. Make non-static.
10537 * m2-valprint.c (print_function_pointer_address): Remove.
10538 * valprint.h (print_function_pointer_address): Declare.
10542 * NEWS: Document the fact that one can provide a condition when
10543 creating an Ada exception catchpoint.
10547 * valprint.c (val_print_type_code_flags): Fix placement of
10552 * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
10553 (update_files): Do not set MULTILINE_COMMENT_PREFIXES
10554 environment variable before calling update-copyright.
10558 * gnulib/extra/update-copyright: Update to the latest from
10559 gnulib's git repository.
10560 * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
10561 variable to 2 instead of 1.
10565 * varobj.c (c_value_of_variable): Remove dead code.
10569 * ada-lex.p (processId): Do not modify already encoded IDs.
10570 Update function documentation.
10574 * ada-lang.h (ada_find_renaming_symbol): Replace parameter
10575 "name" with "struct symbol *name_sym".
10576 * ada-exp.y (write_var_or_type): Update call to
10577 ada_find_renaming_symbol.
10578 "name" with "struct symbol *name_sym". Adjust Implementation
10579 accordingly. Adjust the function documentation.
10583 * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
10584 * ada-lang.c (ada_find_any_type): Add advance declaration.
10585 Make static. Replace ada_find_any_symbol by
10586 ada_find_any_type_symbol.
10587 (ada_find_any_type_symbol): Renames ada_find_any_symbol.
10588 Improve function description. Make static.
10589 (ada_find_renaming_symbol, find_old_style_renaming_symbol):
10590 Replace ada_find_any_symbol by ada_find_any_type_symbol.
10594 * ada-lang.c (struct tag_args): Delete.
10595 (ada_get_tsd_type): Function body moved up in source file.
10596 (ada_tag_name_1, ada_tag_name_2): Delete.
10597 (ada_get_tsd_from_tag): New function.
10598 (ada_tag_name_from_tsd): New function.
10599 (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
10600 to determine the tag name.
10604 * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
10606 * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
10611 * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
10615 * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
10620 * ada-lang.c (constrained_packed_array_type): If there is a
10621 parallel XA type, use it to determine the array index type.
10625 * ada-valprint.c (ada_val_print_1): If our value is a reference
10626 to an array descriptor, dereference it before converting it
10631 * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
10632 creating fixed value.
10633 (ada_value_ind, ada_coerce_ref, assign_component)
10634 (ada_evaluate_subexp): Remove call to unwrap_value before
10635 call to ada_to_fixed_value.
10639 * ada-lang.c (to_fixed_array_type): Set result's type name.
10643 * ada-lang.c (catch_ada_exception_command_split): Add new
10644 argument cond_string. Add support for condition at end of
10645 "catch exception" commands.
10646 (ada_decode_exception_location): Add new argument cond_string.
10647 Update call to catch_ada_exception_command_split.
10648 (create_ada_exception_catchpoint): Add new argument cond_string.
10649 Set the breakpoint condition if needed.
10650 (catch_ada_exception_command): Update call to
10651 ada_decode_exception_location.
10652 (ada_decode_assert_location): Add function documentation.
10653 Add support for condition at end of "catch assert" command.
10654 (catch_assert_command): Update calls to ada_decode_assert_location
10655 and create_ada_exception_catchpoint.
10659 Fix disp-step-syscall.exp: fork: single step over fork.
10660 * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
10661 (i386_linux_get_syscall_number_from_regcache): ... here, new function
10662 comment, change parameters gdbarch and ptid to regcache. Remove
10663 parameter regcache, initialize gdbarch from regcache here.
10664 (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
10666 (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
10668 * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
10669 'syscall'. Make the 'int' check more strict.
10673 Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
10674 * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
10675 (i386_linux_intx80_sysenter_syscall_record): ... here.
10676 (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
10677 Use the renamed function name.
10681 * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
10682 * breakpoint.c (until_break_command): Likewise.
10683 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
10684 * infcall.c (call_function_by_hand): Likewise.
10685 * infcmd.c (finish_forward): Likewise.
10686 * infrun.c (insert_exception_resume_breakpoint): Likewise.
10690 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
10691 avoid variable assignments inside condition.
10695 Fix static analysis issue found by cppcheck.
10696 * microblaze-tdep.c (microblaze_extract_return_value): Fix
10697 uninitialized BUF for size 2.
10703 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
10704 (mips16_instruction_has_delay_slot): Likewise.
10705 (mips_segment_boundary): Likewise.
10706 (mips_adjust_breakpoint_address): Likewise.
10707 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
10712 * infrun.c (handle_inferior_event): Don't proceed through
10713 shared library trampolines if stepping at the machine
10718 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
10723 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
10724 (sh_stub_unwind_sniffer): New functions.
10725 (sh_stub_unwind): New variable.
10726 (sh_gdbarch_init): Wire everything.
10730 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
10731 (linux_nat_post_attach_wait): Adjust to use
10732 linux_proc_pid_is_stopped.
10733 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
10734 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
10735 based on pid_is_stopped from both linux-nat.c and
10736 gdbserver/linux-low.c, and renamed.
10740 * remote.c (remote_watchpoint_addr_within_range): New function.
10741 (init_remote_ops): Use it.
10745 * target.h (target_watchpoint_addr_within_range): Document macro.
10749 * stack.c (set_last_displayed_sal): Issue internal_error instead
10750 of warning, and issue it after clearing the last displayed sal.
10755 * breakpoint.c (until_break_command): Install breakpoints after
10756 all frame manipulations.
10760 * remote.c (remote_supports_cond_breakpoints): New forward
10762 (remote_add_target_side_condition): New function.
10763 (remote_insert_breakpoint): Add target-side breakpoint
10764 conditional if supported.
10765 (remote_insert_hw_breakpoint): Likewise.
10766 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
10769 * target.c (update_current_target): Inherit
10770 to_supports_evaluation_of_breakpoint_conditions.
10771 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
10773 * target.h (struct target_ops)
10774 <to_supports_evaluation_of_breakpoint_conditions>: New field.
10775 (target_supports_evaluation_of_breakpoint_conditions): New #define.
10777 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
10778 (condition_evaluation_both, condition_evaluation_auto,
10779 condition_evaluation_host, condition_evaluation_target,
10780 condition_evaluation_enums, condition_evaluation_mode_1,
10781 condition_evaluation_mode): New static globals.
10782 (translate_condition_evaluation_mode): New function.
10783 (breakpoint_condition_evaluation_mode): New function.
10784 (gdb_evaluates_breakpoint_condition_p): New function.
10785 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
10786 (mark_breakpoint_modified): New function.
10787 (mark_breakpoint_location_modified): New function.
10788 (set_condition_evaluation_mode): New function.
10789 (show_condition_evaluation_mode): New function.
10790 (bp_location_compare_addrs): New function.
10791 (get_first_location_gte_addr): New helper function.
10792 (set_breakpoint_condition): Free condition bytecode if locations
10793 has become unconditional. Call mark_breakpoint_modified (...).
10794 (condition_command): Call update_global_location_list (1) for
10796 (breakpoint_xfer_memory): Use is_breakpoint (...).
10797 (is_breakpoint): New function.
10798 (parse_cond_to_aexpr): New function.
10799 (build_target_condition_list): New function.
10800 (insert_bp_location): Handle target-side conditional
10801 breakpoints and call build_target_condition_list (...).
10802 (update_inserted_breakpoint_locations): New function.
10803 (insert_breakpoint_locations): Handle target-side conditional
10805 (bpstat_check_breakpoint_conditions): Add comment.
10806 (bp_condition_evaluator): New function.
10807 (bp_location_condition_evaluator): New function.
10808 (print_breakpoint_location): Print information on where the condition
10810 (print_one_breakpoint_location): Likewise.
10811 (init_bp_location): Call mark_breakpoint_location_modified (...) for
10812 breakpoint location.
10813 (force_breakpoint_reinsertion): New functions.
10814 (update_global_location_list): Handle target-side breakpoint
10816 Reinsert locations that are already inserted if conditions have
10818 (bp_location_dtor): Free agent expression bytecode.
10819 (disable_breakpoint): Call mark_breakpoint_modified (...).
10820 Call update_global_location_list (...) with parameter 1 for breakpoints.
10821 (disable_command): Call mark_breakpoint_location_modified (...).
10822 Call update_global_location_list (...) with parameter 1 for breakpoints.
10823 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
10824 (enable_command): mark_breakpoint_location_modified (...).
10825 (_initialize_breakpoint): Update documentation and add
10826 condition-evaluation breakpoint subcommand.
10828 * breakpoint.h: Include ax.h.
10829 (condition_list): New data structure.
10830 (condition_status): New enum.
10831 (bp_target_info) <cond_list>: New field.
10832 (bp_location) <condition_changed, cond_bytecode>: New fields.
10833 (is_breakpoint): New prototype.
10837 * remote.c (remote_state) <cond_breakpoints>: New field.
10838 (PACKET_ConditionalBreakpoints): New enum.
10839 (remote_cond_breakpoint_feature): New function.
10840 (remote_protocol_features): Add new ConditionalBreakpoints entry.
10841 (remote_supports_cond_breakpoints): New function.
10842 (_initialize_remote): Add new packet configuration for
10843 target-side conditional breakpoints.
10847 * NEWS: Mention target-side conditional breakpoint support,
10848 new condition-evaluation breakpoint subcommand and remote
10853 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
10858 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
10859 (after_prologue): Remove.
10863 * jv-valprint.c (java_val_print): Remove dead code.
10867 * ada-tasks.c (struct ada_tasks_inferior_data): Add
10868 known_tasks_element and known_tasks_length fields.
10869 (read_known_tasks_array): Change argument type. Use pointer type
10870 and number of elements from DATA. Adjust.
10871 (read_known_tasks_list): Likewise.
10872 (get_known_tasks_addr): Remove.
10873 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
10874 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
10875 type and array length. Merge former get_known_tasks_addr code.
10880 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
10881 it after set_momentary_breakpoint.
10886 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
10890 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
10891 (find_slot_in_mapped_hash): Likewise.
10896 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
10897 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
10898 * configure: Regenerate.
10903 * ia64-tdep.c: Do not include libunwind-ia64.h.
10904 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
10905 Include libunwind-ia64.h instead of libunwind.h.
10906 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
10907 for libunwind.h existence.
10908 * configure, config.in: Regenerate.
10912 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
10913 instead of value_rtti_target_type.
10914 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
10915 instead of value_rtti_target_type.
10916 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
10917 value_rtti_target_type.
10918 * valops.c (value_ind): Extract function readjust_indirect_value_type.
10919 (value_rtti_target_type): Rename to ...
10920 (value_rtti_indirect_type): ... here and make it indirect. Update
10922 * value.c (readjust_indirect_value_type): New function.
10923 (coerce_ref): Support for enclosing type setting for references
10924 with readjust_indirect_value_type.
10925 * value.h (readjust_value_type): New declaration.
10926 (value_rtti_target_type): Rename to ...
10927 (value_rtti_indirect_type): ... here.
10931 * MAINTAINERS (Write After Approval): Add myself to the list.
10935 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
10936 Rename objfile_p_char parameter to objfilep.
10937 (build_objfile_section_table): Result is now void. All callers
10939 * objfiles.h (struct objfile): Tweak comments, whitespace.
10940 (build_objfile_section_table): Update.
10942 * elfread.c (elf_symfile_segments): Fix warning text.
10947 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
10948 particular set of file names once.
10949 (dw2_map_symbol_filenames): Likewise.
10954 * main.c (write_files): Remove the declaration.
10955 (external_editor_command): Move the declaration ...
10956 [GDBTK] (external_editor_command): ... here. Fix the comment.
10960 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
10965 * darwin-nat.h (enum darwin_msg_state): Add comments.
10969 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
10974 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
10975 between function description and implementation.
10980 * python/py-event.c (event_object_getset): New global.
10981 (event_object_type): Reference it.
10982 * python/py-type.c (field_object_getset): New global.
10983 (field_object_type): Reference it.
10984 * python/python-internal.h (gdb_py_generic_dict): Declare.
10985 * python/py-utils.c (gdb_py_generic_dict): New function.
10989 * solib-darwin.c (darwin_current_sos): Check magic and filetype
10993 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
10994 TYPE_CALLING_CONVENTION annotation.
10998 * MAINTAINERS: Add rx to target ISA section.
10999 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
11000 (ALLDEPFILES): Add rx-tdep.c.
11004 * symfile.c (symbol_file_add_main_1): Use inferior's
11006 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
11007 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
11009 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
11011 (follow_exec): Use inferior's symfile_flags.
11012 * inferior.h (struct inferior) <symfile_flags>: New field.
11017 * remote-sim.c (gdbsim_create_inferior): Call error() when
11018 sim_create_inferior() fails.
11022 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
11027 * thread.c (struct current_thread_cleanup) <was_removable>: New
11029 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
11030 (make_cleanup_restore_current_thread): Initialize new field.
11034 * MAINTAINERS: Add rl78 to target ISA section.
11035 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
11036 (ALLDEPFILES): Add rl78-tdep.c.
11037 * NEWS: Mention rl78 as a new target.
11041 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
11043 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
11048 * infcmd.c (registers_info): Print just the current register's
11053 * python/py-symbol.c (sympy_value): Use _().
11057 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
11058 output to be like native targets'.
11059 (remote_pid_to_str): Special case the null ptid.
11063 * NEWS: Mention enable count command.
11064 * breakpoint.h (struct breakpoint): New field enable_count.
11065 * breakpoint.c (enable_breakpoint_disp): Add count argument.
11066 (enable_breakpoint): Add arg to call.
11067 (struct disp_data): New struct.
11068 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
11069 (do_map_enable_once_breakpoint): Create a struct and pass it.
11070 (do_map_enable_delete_breakpoint): Ditto.
11071 (do_map_enable_count_breakpoint): New function.
11072 (enable_count_command): New function.
11073 (bpstat_stop_status): Decrement enable_count.
11074 (print_one_breakpoint_location): Report enable count.
11075 (_initialize_breakpoint): Add enable count command.
11079 * rl78-tdep.c (reggroups.h): Include.
11080 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
11081 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
11082 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
11083 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
11084 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
11085 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
11086 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
11087 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
11088 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
11089 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
11090 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
11091 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
11092 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
11093 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
11094 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
11095 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
11096 beginning of register list.
11097 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
11098 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
11099 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
11100 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
11101 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
11102 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
11103 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
11104 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
11105 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
11106 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
11107 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
11108 the pseudo registers. Rearrange other pseudo registers too so
11109 that the bank registers appear at the end.
11110 (rl78_register_type): Account for the fact that the byte sized
11111 bank registers are now pseudo-registers.
11112 (rl78_register_name): Rearrange the register name array. Make
11113 initial set of raw banked registers inaccessible.
11114 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
11115 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
11116 case for copying bytes back and forth between raw and pseudo
11117 versions of the banked registers. Update other cases to reflect
11119 (rl78_return_value): Update to account for changed names of
11121 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
11122 rl78_register_sim_regno().
11126 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
11127 the name parameter being passed to find_pc_partial_function().
11131 * MAINTAINERS: Step down from being ia64 target maintainer.
11135 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
11136 compilation warning.
11140 Fix crash on loaded shlibs without loaded exec_bfd.
11141 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
11142 (set_section_command): Replace exec_bfd by p->bfd.
11146 * linespec.c (decode_line_internal): Skip symtabs_from_filename
11147 when we have a C++ qualified name.
11151 * inferior.c (inferior_pid_to_str): New.
11152 (print_inferior, inferior_command): Use it.
11156 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
11158 * configure: Regenerate.
11162 * linespec.c (decode_line_internal): Fix comment correctness.
11167 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
11168 * amd64bsd-nat.c: Add support for debug registers (adapted from
11170 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
11171 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
11172 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
11173 (amd64bsd_dr_get_control): New functions.
11174 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
11175 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
11176 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
11177 watchpoints initialization.
11178 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
11182 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
11184 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
11188 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
11192 * language.h (symbol_name_cmp_ftype): Renames
11193 symbol_name_match_p_ftype.
11194 (struct language_defn)[la_get_symbol_name_cmp]: Renames
11195 la_get_symbol_name_match_p.
11196 * ada-lang.c (ada_get_symbol_name_cmp): Renames
11197 ada_get_symbol_name_match_p. Update comment.
11198 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
11199 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
11200 Renames symbol_name_match_p. Update field type.
11201 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
11202 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11203 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
11204 "la_get_symbol_name_cmp" in comments.
11205 * language.c: Likewise.
11209 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
11211 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
11212 (amd64_sol2_gregset32_reg_offs): Likewise.
11216 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
11217 of the returned BFD is allocated by GDB.
11222 * python/python-internal.h (frame_object_type): Declare.
11223 * python/py-symbol.c (sympy_needs_frame): New function.
11224 (sympy_value): New function.
11225 (symbol_object_getset): Add "needs_frame".
11226 (symbol_object_methods): Add "value".
11227 * python/py-frame.c (frame_object_type): No longer static.
11232 * python/py-symbol.c (sympy_line): New function.
11233 (symbol_object_getset): Add "line".
11237 * charset.c (find_charset_names): Check 'in' against NULL.
11241 * gdbtypes.h (struct main_type): Change type of name,tag_name,
11242 and fields.name members from char * to const char *. All uses updated.
11243 (struct cplus_struct_type): Change type of fn_fieldlists.name member
11244 from char * to const char *. All uses updated.
11245 (type_name_no_tag): Update.
11246 (lookup_unsigned_typename, lookup_signed_typename): Update.
11247 * gdbtypes.c (type_name_no_tag): Change result type
11248 from char * to const char *. All callers updated.
11249 (lookup_unsigned_typename, lookup_signed_typename): Change type of
11250 name parameter from char * to const char *.
11251 * symtab.h (struct cplus_specific): Change type of demangled_name
11252 member from char * to const char *. All uses updated.
11253 (struct general_symbol_info): Change type of name and
11254 mangled_lang.demangled_name members from char * to const char *.
11256 (symbol_get_demangled_name, symbol_natural_name): Update.
11257 (symbol_demangled_name, symbol_search_name): Update.
11258 * symtab.c (symbol_get_demangled_name): Change result type
11259 from char * to const char *. All callers updated.
11260 (symbol_natural_name, symbol_demangled_name): Ditto.
11261 (symbol_search_name): Ditto.
11262 (completion_list_add_name): Change type of symname,sym_text,
11263 text,word parameters from char * to const char *.
11264 (completion_list_objc_symbol): Change type of sym_text,
11265 text,word parameters from char * to const char *.
11266 * ada-lang.c (find_struct_field): Change type of name parameter
11267 from char * to const char *.
11268 (encoded_ordered_before): Similarly for N0,N1 parameters.
11269 (old_renaming_is_invisible): Similarly for function_name parameter.
11270 (ada_type_name): Change result type from char * to const char *.
11271 All callers updated.
11272 * ada-lang.h (ada_type_name): Update.
11273 * buildsym.c (hashname): Change type of name parameter
11274 from char * to const char *.
11275 * buildsym.h (hashname): Update.
11276 * dbxread.c (end_psymtab): Change type of include_list parameter
11277 from char ** to const char **.
11278 * dwarf2read.c (determine_prefix): Change result type
11279 from char * to const char *. All callers updated.
11280 * f-lang.c (find_common_for_function): Change type of name, funcname
11281 parameters from char * to const char *.
11282 * f-lang.c (find_common_for_function): Update.
11283 * f-valprint.c (list_all_visible_commons): Change type of funcname
11284 parameters from char * to const char *.
11285 * gdbarch.sh (static_transform_name): Change type of name parameter
11286 and result from char * to const char *.
11287 * gdbarch.c: Regenerate.
11288 * gdbarch.h: Regenerate.
11289 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
11290 of name parameter from char * to const char *.
11291 * jv-lang.c (java_primitive_type_from_name): Ditto.
11292 (java_demangled_signature_length): Similarly for signature parameter.
11293 (java_demangled_signature_copy): Ditto.
11294 (java_demangle_type_signature): Ditto.
11295 * jv-lang.h (java_primitive_type_from_name): Update.
11296 (java_demangle_type_signature): Update.
11297 * objc-lang.c (specialcmp): Change type of a,b parameters
11298 from char * to const char *.
11299 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
11300 from char * to const char *. All callers updated.
11301 * p-lang.h (is_pascal_string_type): Update.
11302 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
11303 of name parameter from char * to const char *.
11304 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
11305 * utils.c (fprintf_symbol_filtered): Ditto.
11306 * defs.h (fprintf_symbol_filtered): Update.
11307 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
11308 * stabsread.h (end_psymtab): Update.
11309 * stack.c (find_frame_funname): Change type of funname parameter
11310 from char ** to const char **.
11311 * stack.h (find_frame_funname): Update.
11312 * typeprint.c (type_print): Change type of varstring parameter
11313 from char * to const char *.
11314 * value.h (type_print): Update.
11315 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
11316 from char * to const char *. All callers updated.
11317 (xcoff_end_psymtab): Change type of include_list parameter
11318 from char ** to const char **. All callers updated.
11319 (swap_sym): Similarly for name parameter. All callers updated.
11320 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
11322 (process_coff_symbol): Use xstrdup.
11323 * stabsread.c (stabs_method_name_from_physname): Renamed from
11324 update_method_name_from_physname. Change result type from void
11325 to char *. All callers updated.
11326 (read_member_functions): In has_destructor case, store name in objfile
11327 obstack instead of malloc space. In !has_stub case, fix mem leak.
11331 * configure: Rebuild.
11332 * configure.ac: Put -L../bfd and -L../libiberty at the front of
11337 * configure.tgt (rl78-*-elf): New target.
11338 * rl78-tdep.c: New file.
11342 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
11343 and continue the loop. Add QUIT statement.
11348 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
11349 bfd_lookup_symbol_from_symtab.
11350 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
11351 gdb_bfd_lookup_symbol_from_symtab.
11355 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
11356 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
11357 symbol. Add assertion that sym2 is never NULL.
11361 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
11362 "name" parameter to const char ** from char **. All callers updated.
11363 (find_pc_partial_function): Ditto.
11364 (cache_pc_function_name): Change type to const char * from char *.
11365 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
11366 (find_pc_partial_function): Update.
11367 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
11368 type of "name" parameter to const char * from char *.
11370 * arch-utils.c (generic_in_solib_return_trampoline): Change
11371 type of "name" parameter to const char * from char *.
11372 * arch-utils.h (generic_in_solib_return_trampoline): Update.
11373 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
11374 type of "name" parameter to const char * from char *.
11375 * gdbarch.sh (in_solib_return_trampoline): Ditto.
11376 * gdbarch.c: Regenerate.
11377 * gdbarch.h: Regenerate.
11378 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
11379 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
11380 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
11381 type of "name" parameter to const char * from char *.
11382 * skip.c (skip_function_pc): Ditto.
11383 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
11384 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
11385 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
11386 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
11387 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
11388 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
11389 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
11390 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
11391 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
11395 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
11396 the current inferior has no execution. Make sure the current
11397 remote process matches gdb's current inferior.
11402 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
11408 * symtab.c (lookup_language_this): Set block_found.
11413 * jit.c (struct jit_inferior_data): Rewrite.
11414 (struct jit_objfile_data): New.
11415 (get_jit_objfile_data): New function.
11416 (add_objfile_entry): Update.
11417 (jit_read_descriptor): Return int. Replace descriptor_addr
11418 argument with inf_data. Update. Don't call error.
11419 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
11421 (jit_inferior_init): Don't look up descriptor. Don't call error.
11422 (jit_reset_inferior_data_and_breakpoints)
11423 (jit_inferior_created_observer): Remove.
11424 (jit_inferior_exit_hook): Update.
11425 (jit_executable_changed_observer): Remove.
11426 (jit_event_handler): Update.
11427 (free_objfile_data): Reset inferior data if needed.
11428 (_initialize_jit): Update.
11432 * jit.c (bfd_open_from_target_memory): Move higher in file.
11436 * libunwind-frame.c (libunwind_load): Display message if dlopen
11441 * symtab.h (symbol_found_callback_ftype): New typedef.
11442 (iterate_over_symbols): Use the above.
11443 * symtab.c (iterate_over_symbols): Likewise.
11444 * language.h (language_defn->la_iterate_over_symbols): Likewise.
11445 * ada-lang.c (ada_iterate_over_symbols): Likewise.
11446 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
11447 (iterate_name_matcher): Document return values.
11448 (collect_one_symbol): Likewise.
11449 (collect_function_symbols): Likewise.
11450 (collect_symbols): Likewise.
11454 * ada-lang.c (resolve_subexp): Update.
11455 (ada_lookup_symbol_list): Add 'full_search' argument.
11456 (ada_iterate_over_symbols): Pass 0 as full_search argument to
11457 ada_lookup_symbol_list.
11458 (ada_lookup_encoded_symbol): Update.
11459 (get_var_value): Update.
11460 * ada-exp.y (block_lookup): Update.
11461 (write_var_or_type): Update.
11462 (write_name_assoc): Update.
11463 * ada-lang.h (ada_lookup_symbol_list): Update.
11467 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
11472 * symtab.h: Remove outdated comment.
11473 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
11477 Fix build error in Darwin port.
11478 * i386-darwin-nat.c: Include i386-nat.h.
11482 PR breakpoints/13568:
11483 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
11484 argument. Check for recursive includes.
11485 (dwarf_decode_macros): Create an include hash.
11489 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
11490 * ppc-linux-tdep.c: Include glibc-tdep.h.
11491 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
11492 (powerpc_linux_in_plt_stub): New function.
11493 (powerpc_linux_in_dynsym_resolve_code): New function.
11494 (ppc_skip_trampoline_code): New function.
11495 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
11496 Use glibc_skip_solib_resolver.
11500 Code cleanup: Make 1440 bytes of data segment read-only.
11501 * arch-utils.c (endian_enum): Make it const char *const [].
11502 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
11504 * breakpoint.c (always_inserted_enums): Likewise.
11505 * cli/cli-cmds.c (script_ext_enums): Likewise.
11506 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
11507 enumlist parameter const char *const *.
11508 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
11509 const char *const *.
11510 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
11511 parameter const char *const *.
11512 * cris-tdep.c (cris_modes): Make it const char *const [].
11513 * filesystem.c (target_file_system_kinds): Likewise.
11514 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
11515 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
11516 (can_use_displaced_stepping_enum, scheduler_enums)
11517 (exec_direction_names): Likewise.
11518 * language.c (_initialize_language): Make the type_or_range_names and
11519 case_sensitive_names variables const char *const [].
11520 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
11521 * python/python.c (python_excp_enums): Likewise.
11522 * remote.c (interrupt_sequence_modes): Likewise.
11523 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
11524 * serial.c (logbase_enums): Likewise.
11525 * sh-tdep.c (sh_cc_enum): Likewise.
11526 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
11528 * symtab.c (multiple_symbols_modes): Likewise.
11529 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
11531 * utils.c (internal_problem_modes): Likewise.
11535 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
11536 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
11541 * configure.ac (with_python): Fix absolute path handling for win32.
11542 * configure: Regenerate.
11546 * symtab.c: Whitespace cleanup, no code changes.
11548 * symtab.c (lookup_symbol_in_language): Improve comment.
11549 (lookup_symbol_aux): Fix comment.
11551 * psymtab.c (add_psymbol_to_list): Result is now "void".
11552 * psympriv.h (add_psymbol_to_list): Update.
11554 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
11558 Do not open script filenames twice.
11559 * cli/cli-cmds.c (source_script_from_stream): Pass to
11560 source_python_script also STREAM.
11561 * python/py-auto-load.c (source_section_scripts): Pass to
11562 source_python_script_for_objfile also STREAM.
11563 (auto_load_objfile_script): Pass to source_python_script_for_objfile
11565 * python/python-internal.h (source_python_script_for_objfile): New
11566 parameter file, rename parameter file to filename.
11567 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
11568 instead if !_WIN32. Update the function comment.
11569 (source_python_script, source_python_script_for_objfile)
11570 (source_python_script): New parameter file, rename parameter file to
11571 filename. Pass FILENAME to python_run_simple_file.
11572 * python/python.h (source_python_script): New parameter file, rename
11573 parameter file to filename.
11577 * corelow.c (core_has_fake_pid): Delete.
11578 (core_close): Delete references to `core_has_fake_pid'.
11579 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
11580 (core_open): Delete references to `core_has_fake_pid'.
11581 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
11582 the removed global.
11586 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
11587 Remove language parameter from name_matcher. Adjust the comment.
11588 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
11589 Remove language parameter.
11590 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
11591 * linespec.c (iterate_name_matcher): Likewise.
11592 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
11593 name_matcher. Adjust call accordingly.
11594 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
11595 (maintenance_check_symtabs): Adjust type of parameter "fun".
11596 * psymtab.h (maintenance_check_symtabs): Likewise.
11600 * language.h (symbol_name_match_p_ftype): New typedef.
11601 (struct language_defn): Replace field la_symbol_name_compare
11602 by la_get_symbol_name_match_p.
11603 * ada-lang.c (ada_get_symbol_name_match_p): New function.
11604 (ada_language_defn): Use it.
11605 * linespec.c (struct symbol_matcher_data): New type.
11606 (iterate_name_matcher): Rewrite.
11607 (iterate_over_all_matching_symtabs): Pass a pointer to
11608 a symbol_matcher_data struct to expand_symtabs_matching
11609 instead of just the lookup name.
11610 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11611 opencl-lang.c, p-lang.c, language.c: Delete field
11612 la_symbol_name_compare, and replace by NULL for new field
11613 la_get_symbol_name_match_p.
11614 * symfile.h (struct quick_symbol_functions): Update comment.
11618 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
11624 * solib.c (update_solib_list): Update the program space's
11625 added_solibs and deleted_solibs fields.
11626 * progspace.h (struct program_space) <added_solibs,
11627 deleted_solibs>: New fields.
11628 (clear_program_space_solib_cache): Declare.
11629 * progspace.c (release_program_space): Call
11630 clear_program_space_solib_cache.
11631 (clear_program_space_solib_cache): New function.
11632 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
11633 bpstat_stop_status. Use handle_solib_event.
11634 * breakpoint.c: Include gdb_regex.h.
11635 (print_solib_event): New function.
11636 (bpstat_print): Use print_solib_event.
11637 (bpstat_stop_status): Add special case for bp_shlib_event.
11638 (handle_solib_event): New function.
11639 (bpstat_what): Use handle_solib_event.
11640 (struct solib_catchpoint): New.
11641 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
11642 (breakpoint_hit_catch_solib, check_status_catch_solib)
11643 (print_it_catch_solib, print_one_catch_solib)
11644 (print_mention_catch_solib, print_recreate_catch_solib): New
11646 (catch_solib_breakpoint_ops): New global.
11647 (catch_load_or_unload, catch_load_command_1)
11648 (catch_unload_command_1): New functions.
11649 (internal_bkpt_check_status): Add special case for
11651 (internal_bkpt_print_it): Use print_solib_event.
11652 (initialize_breakpoint_ops): Initialize
11653 catch_solib_breakpoint_ops.
11654 (_initialize_breakpoint): Register "catch load" and "catch
11656 * breakpoint.h (handle_solib_event): Declare.
11657 * NEWS: Add entry for "catch load" and "catch unload".
11661 * ada-lang.c: Include gdb_vecs.h.
11662 * charset.c: Include gdb_vecs.h.
11663 * tracepoint.h: Include gdb_vecs.h.
11664 * gdb_vecs.h: New file.
11668 * breakpoint.c (breakpoint_hit_catch_fork)
11669 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
11670 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
11671 * infrun.c (inferior_has_forked, inferior_has_vforked)
11672 (inferior_has_execd, inferior_has_called_syscall): Delete.
11673 (handle_syscall_event): Get syscall_number from the execution
11674 control state's wait status.
11675 (wait_for_inferior): Don't clear syscall_number.
11679 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
11680 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
11681 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
11682 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
11684 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
11685 false for events other than TARGET_SIGNAL_TRAP.
11686 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
11687 Add `ws' parameter.
11688 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
11689 events other than TARGET_SIGNAL_TRAP.
11690 (tracepoint_breakpoint_hit): Add `ws' parameter.
11691 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
11693 (bpstat_stop_status): Same.
11694 (pc_at_non_inline_function): Same.
11695 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
11696 to pass the current event's waitstatus to bpstat_stop_status
11697 and pc_at_non_inline_function.
11702 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
11703 Update the function comment for it.
11704 (source_script_with_search): Call make_cleanup_fclose for STREAM.
11705 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
11710 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
11711 outside `bs->stop' block.
11712 (bpstat_what): Rework bp_shlib_event handling.
11713 (internal_bkpt_check_status): If the breakpoint is a
11714 bp_shlib_event, then set bs->stop and bs->print if
11715 stop_on_solib_events is set.
11719 Delete #if 0'd out code.
11720 * stack.c (print_frame_label_vars): Remove.
11721 (catch_info): Likewise.
11722 (_initialize_stack): Remove "info catch" command.
11723 * NEWS: Mention the above.
11727 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
11729 (remote_notice_new_inferior): If the remote end doesn't support
11730 the multiprocess extensions, then the PID is fake.
11731 (add_current_inferior_and_thread): New.
11732 (remote_start_remote): Use it.
11733 (extended_remote_attach_1): Adjust.
11734 (extended_remote_create_inferior_1): Use
11735 add_current_inferior_and_thread.
11739 Fix watchpoints to be specific for each inferior.
11740 * breakpoint.c (watchpoint_in_thread_scope): Verify also
11741 current_program_space.
11742 * i386-nat.c (i386_inferior_data_cleanup): New.
11743 (i386_inferior_data_get): Replace variable inf_data_local by an
11744 inferior_data call.
11745 (i386_use_watchpoints): Initialize i386_inferior_data.
11746 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
11747 specific iterate_over_lwps.
11751 Fix watchpoints across inferior fork.
11752 * amd64-linux-nat.c (update_debug_registers_callback): Update the
11753 comment for linux_nat_iterate_watchpoint_lwps.
11754 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11755 linux_nat_iterate_watchpoint_lwps.
11756 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
11757 * i386-linux-nat.c (update_debug_registers_callback): Update the
11758 comment for linux_nat_iterate_watchpoint_lwps.
11759 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11760 linux_nat_iterate_watchpoint_lwps.
11761 (i386_linux_prepare_to_resume): New comment on Linux kernel.
11762 * i386-nat.c: Include inferior.h.
11763 (dr_mirror): Remove.
11764 (i386_inferior_data, struct i386_inferior_data)
11765 (i386_inferior_data_get): New.
11766 (i386_debug_reg_state): Use i386_inferior_data_get.
11767 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
11768 (i386_insert_watchpoint, i386_remove_watchpoint)
11769 (i386_stopped_data_address, i386_insert_hw_breakpoint)
11770 (i386_remove_hw_breakpoint): New variable state, use
11771 i386_debug_reg_state instead of DR_MIRROR.
11772 * linux-nat.c (delete_lwp): New declaration.
11773 (num_lwps): Move here from downwards.
11774 (delete_lwp_cleanup): New.
11775 (linux_child_follow_fork): Create new child_lp, call
11776 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
11778 (num_lwps): Move upwards.
11779 (linux_nat_iterate_watchpoint_lwps): New.
11780 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
11781 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
11789 * top.c (caution): Rename to ...
11790 (confirm): ... this.
11791 (show_caution): Rename to ...
11792 (show_confirm): ... this.
11793 (quit_cover): Adjust.
11794 (init_main): Adjust.
11795 * top.h (caution): Rename to ...
11796 (confirm): ... this.
11797 * utils.c (internal_vproblem, defaulted_query): Adjust.
11801 * top.c (caution): Update comment.
11802 (execute_command): Don't consider the current value of `caution'.
11806 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
11810 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
11811 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
11812 * target.c (target_fileio_pwrite): Remove buffer address from
11814 (target_fileio_pread): Likewise.
11818 * NEWS: Document remote "info proc" and "generate-core-file".
11822 * gdbarch.sh (find_memory_regions): New callback.
11823 * gdbarch.c, gdbarch.h: Regenerate.
11825 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
11826 callback before falling back to target method.
11828 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
11829 (linux_target_install_ops): No longer install it.
11831 * linux-tdep.c (linux_find_memory_regions): New function.
11832 (linux_init_abi): Install it.
11836 * gdbarch.sh (make_corefile_notes): New architecture callback.
11837 * gdbarch.c: Regenerate.
11838 * gdbarch.h: Likewise.
11840 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
11841 before target_make_corefile_notes. If NULL is returned, the
11842 target does not support core file generation.
11844 * linux-nat.c: Include "linux-tdep.h".
11845 (find_signalled_thread, find_stop_signal): Remove.
11846 (linux_nat_do_thread_registers): Likewise.
11847 (struct linux_nat_corefile_thread_data): Likewise.
11848 (linux_nat_corefile_thread_callback): Likewise.
11849 (iterate_over_spus): Likewise.
11850 (struct linux_spu_corefile_data): Likewise.
11851 (linux_spu_corefile_callback): Likewise.
11852 (linux_spu_make_corefile_notes): Likewise.
11853 (linux_nat_collect_thread_registers): New function.
11854 (linux_nat_make_corefile_notes): Replace contents by call to
11855 linux_make_corefile_notes passing linux_nat_collect_thread_registers
11856 as native-only callback.
11858 * linux-tdep.h: Include "bfd.h".
11859 (struct regcache): Add forward declaration.
11860 (linux_collect_thread_registers_ftype): New typedef.
11861 (linux_make_corefile_notes): Add prototype.
11862 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
11863 "regset.h", and "elf-bfd.h".
11864 (find_signalled_thread, find_stop_signal): New functions.
11865 (linux_spu_make_corefile_notes): Likewise.
11866 (linux_collect_thread_registers): Likewise.
11867 (struct linux_corefile_thread_data): New data structure.
11868 (linux_corefile_thread_callback): New funcion.
11869 (linux_make_corefile_notes): Likewise.
11870 (linux_make_corefile_notes_1): Likewise.
11871 (linux_init_abi): Install it.
11875 * gdbarch.sh (info_proc): New callback.
11876 * gdbarch.c, gdbarch.h: Regenerate.
11878 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
11879 before falling back to the target info_proc callback.
11881 * linux-nat.c: Do not include "cli/cli-utils.h".
11882 (linux_nat_info_proc): Remove.
11883 (linux_target_install_ops): No longer install it.
11885 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
11886 (read_mapping): New function.
11887 (linux_info_proc): Likewise.
11888 (linux_init_abi): Install it.
11892 * defs.h (enum info_proc_what): Moved here from linux-nat.c
11893 * infcmd.c: (info_proc_cmd_1): New function.
11894 (info_proc_cmd): New function, moved here from equivalent routine
11895 orignally in linux-nat.c.
11896 (info_proc_cmd_mappings): Likewise.
11897 (info_proc_cmd_stat): Likewise.
11898 (info_proc_cmd_status): Likewise.
11899 (info_proc_cmd_cwd): Likewise.
11900 (info_proc_cmd_cmdline): Likewise.
11901 (info_proc_cmd_exe): Likewise.
11902 (info_proc_cmd_all): Likewise.
11903 (_initialize_infcmd): Install "info proc" command and subcommands.
11905 * target.h (struct target_ops): Add to_info_proc.
11906 (target_info_proc): Add prototype.
11907 * target.c (target_info_proc): New function.
11909 * procfs.c (procfs_info_proc): Add prototype.
11910 (info_proc_cmd): Rename into ...
11911 (procfs_info_proc): ... this. Update argument types as appropriate
11912 for a to_info_proc implementation. Handle "what" argument.
11913 (procfs_target): Install procfs_info_proc.
11914 (_initialize_procfs): No longer install "info proc" command.
11916 * linux-nat.c: (enum info_proc_what): Remove.
11917 (linux_nat_info_proc_cmd_1): Rename into ...
11918 (linux_nat_info_proc): ... this. Update argument types as appropriate
11919 for a to_info_proc implementation.
11920 (linux_nat_info_proc_cmd): Remove.
11921 (linux_nat_info_proc_cmd_mappings): Likewise.
11922 (linux_nat_info_proc_cmd_stat): Likewise.
11923 (linux_nat_info_proc_cmd_status): Likewise.
11924 (linux_nat_info_proc_cmd_cwd): Likewise.
11925 (linux_nat_info_proc_cmd_cmdline): Likewise.
11926 (linux_nat_info_proc_cmd_exe): Likewise.
11927 (linux_nat_info_proc_cmd_all): Likewise.
11928 (linux_target_install_ops): Install linux_nat_info_proc.
11929 (_initialize_linux_nat): No longer install "info proc" command
11934 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
11935 * config.in, configure: Regenerate.
11937 * target.h (struct target_ops): Add to_fileio_readlink.
11938 (target_fileio_readlink): Add prototype.
11939 * target.c (target_fileio_readlink): New function.
11941 * inf-child.c: Conditionally include <sys/param.h>.
11942 (inf_child_fileio_readlink): New function.
11943 (inf_child_target): Install it.
11945 * remote.c (PACKET_vFile_readlink): New enum value.
11946 (remote_hostio_readlink): New function.
11947 (init_remote_ops): Install it.
11948 (_initialize_remote): Handle vFile:readlink packet type.
11953 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
11954 * config.in, configure: Regenerate.
11956 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
11957 to_fileio_pread, to_fileio_close, to_fileio_unlink.
11958 (target_fileio_open): Add prototype.
11959 (target_fileio_pwrite): Likewise.
11960 (target_fileio_pread): Likewise.
11961 (target_fileio_close): Likewise.
11962 (target_fileio_unlink): Likewise.
11963 (target_fileio_read_alloc): Likewise.
11964 (target_fileio_read_stralloc): Likewise.
11966 * target.c: Include "gdb/fileio.h".
11967 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
11968 (default_fileio_target): New function.
11969 (target_fileio_open): Likewise.
11970 (target_fileio_pwrite): Likewise.
11971 (target_fileio_pread): Likewise.
11972 (target_fileio_close): Likewise.
11973 (target_fileio_unlink): Likewise.
11974 (target_fileio_close_cleanup): Likewise.
11975 (target_fileio_read_alloc_1): Likewise.
11976 (target_fileio_read_alloc): Likewise.
11977 (target_fileio_read_stralloc): Likewise.
11979 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
11980 <fcntl.h>, and <unistd.h>.
11981 (inf_child_fileio_open_flags_to_host): New function.
11982 (inf_child_errno_to_fileio_error): Likewise.
11983 (inf_child_fileio_open): Likewise.
11984 (inf_child_fileio_pwrite): Likewise.
11985 (inf_child_fileio_pread): Likewise.
11986 (inf_child_fileio_close): Likewise.
11987 (inf_child_fileio_unlink): Likewise.
11988 (inf_child_target): Install to_fileio routines.
11990 * remote.c (init_remote_ops): Install to_fileio routines.
11995 * remote.c (remote_multi_process_p): Only check for multi-process
11996 protocol feature, do not check for extended protocol.
11997 (remote_supports_multi_process): Check for extended protocol here.
11998 (set_general_process): Likewise.
11999 (extended_remote_kill): Likewise.
12000 (remote_pid_to_str): Likewise.
12001 (remote_query_supported): Always query multiprocess mode.
12006 * inferior.h (struct inferior): Add fake_pid_p.
12007 * inferior.c (exit_inferior_1): Clear fake_pid_p.
12008 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
12009 magic_null_ptid since the remote side doesn't provide a real PID.
12013 * NEWS: Combine the two Python sections.
12017 * target.h (target_close): Update comment on the target's unpush state.
12021 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
12022 linux_nat_async directly instead of going through the target
12024 * target.c (unpush_target): Close target after unpushing it, not
12029 * mdebugread.c (sort_blocks): Replace integer constants with ones
12030 derived from FIRST_LOCAL_BLOCK.
12036 * symfile.c (find_separate_debug_file): New function.
12037 (terminate_after_last_dir_separator): Likewise.
12038 (find_separate_debug_file_by_debuglink): Also try realpath.
12039 * configure.ac (AC_CHECK_FUNCS): Add lstat.
12040 * configure: Regenerate.
12041 * config.in: Regenerate.
12045 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
12046 (main.o): Remove rule.
12047 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
12048 (--with-sysroot): Rewrite.
12049 * configure: Regenerate.
12050 * config.in: Regenerate.
12054 * parse.c (initialize_expout): New function.
12055 (reallocate_expout): Likewise.
12056 (parse_exp_in_context): Use `initialize_expout' and
12057 `reallocate_expout' when appropriate.
12061 * record.c (struct record_breakpoint, record_breakpoint_p)
12062 (record_breakpoints): New.
12063 (record_insert_breakpoint, record_remove_breakpoint): Manage
12064 record breakpoints list. Only remove breakpoints from the
12065 inferior if they had been inserted there in the first place.
12069 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
12070 if we know we don't have a file name to look for.
12074 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
12075 the frame's stop reason is UNWIND_UNAVAILABLE.
12079 Fix compilation error.
12080 * m2-exp.y (yyerror): Use ANSI C prototype.
12084 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
12085 (growbuf_by_size): Likewise.
12086 (yyerror): Likewise.
12087 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
12088 (modblock): Remove variable (was #if 0'ed).
12089 (parse_number): Convert prototype from K&R to ANSI C.
12090 (yyerror): Likewise.
12091 * objc-exp.y (parse_number): Likewise.
12092 (yyerror): Likewise.
12093 (yylex): Remove #if 0'ed code.
12094 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
12095 (yyerror): Likewise.
12100 * symtab.h (compare_filenames_for_search): Declare.
12101 * symtab.c (compare_filenames_for_search): New function.
12102 (iterate_over_some_symtabs): Use it.
12103 * symfile.h (struct quick_symbol_functions)
12104 <map_symtabs_matching_filename>: Change spec.
12105 * psymtab.c (partial_map_symtabs_matching_filename): Use
12106 compare_filenames_for_search. Update for new spec.
12107 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
12108 compare_filenames_for_search. Update for new spec.
12109 * breakpoint.c (clear_command): Use compare_filenames_for_search.
12114 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
12115 (struct main_type) <flag_flag_enum>: New field.
12116 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
12117 * NEWS: Add entries.
12118 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
12120 * python/lib/gdb/printing.py (_EnumInstance): New class.
12121 (FlagEnumerationPrinter): Likewise.
12125 * breakpoint.c (create_sals_from_address_default): New function.
12126 (create_breakpoints_sal_default): Likewise.
12127 (decode_linespec_default): Likewise.
12128 (is_marker_spec): Removed.
12129 (strace_marker_p): New function.
12130 (init_breakpoint_sal): Using `strace_marker_p' instead of
12132 (create_breakpoint): Call method `create_sals_from_address' from
12133 breakpoint_ops, replacing code that created SALs conditionally
12134 on the type of the breakpoint. Call method `create_breakpoints_sal',
12135 replacing code that created breakpoints conditionally on the type
12137 (base_breakpoint_create_sals_from_address): New function.
12138 (base_breakpoint_create_breakpoints_sal): Likewise.
12139 (base_breakpoint_decode_linespec): Likewise.
12140 (base_breakpoint_ops): Add methods
12141 `base_breakpoint_create_sals_from_address',
12142 `base_breakpoint_create_breakpoints_sal' and
12143 `base_breakpoint_decode_linespec'.
12144 (bkpt_create_sals_from_address): New function.
12145 (bkpt_create_breakpoints_sal): Likewise.
12146 (bkpt_decode_linespec): Likewise.
12147 (tracepoint_create_sals_from_address): Likewise.
12148 (tracepoint_create_breakpoints_sal): Likewise.
12149 (tracepoint_decode_linespec): Likewise.
12150 (strace_marker_create_sals_from_address): Likewise.
12151 (strace_marker_create_breakpoints_sal): Likewise.
12152 (strace_marker_decode_linespec): Likewise.
12153 (strace_marker_breakpoint_ops): New variable.
12154 (addr_string_to_sals): Remove `marker_spec'. Call method
12155 `decode_linespec' from breakpoint_ops, replacing code that decoded
12156 an address string into a SAL. Use `strace_marker_p' instead of
12158 (strace_command): Decide whether we are dealing with a static
12159 tracepoint with marker or not. Use the appropriate breakpoint_ops.
12160 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
12161 * breakpoint.h (linespec_result, linespec_sals): New forward
12163 (breakpoint_ops) <create_sals_from_address>,
12164 <create_breakpoints_sal>, <decode_linespec>: New methods.
12168 * NEWS: Update text for "maint set python print-stack".
12169 It is deprecated in gdb 7.4 and deleted in 7.5.
12173 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
12174 including curses.h.
12178 * configure: Regenerate.
12179 * config.in: Regenerate.
12184 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
12185 (ANONYMOUS_UNION_NAME): Define.
12186 (is_path_expr_parent): New function.
12187 (get_path_expr_parent): New function.
12188 (is_anonymous_child): New function.
12189 (create_child_with_value): If the child is anonymous and without
12190 a name, assign an object name to it.
12191 (c_describe_child): Use get_path_expr_parent to determine
12192 the parent expression.
12193 If there field represents an anonymous struct or union and
12194 has no name, set an appropriate display name and expression.
12195 (cplus_describe_child): Likewise.
12199 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
12200 available when %ebp is found to be zero (outermost).
12204 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
12205 an internal gdb_static_assert.
12206 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
12211 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
12212 catch" and "catch throw".
12216 * blockframe.c (block_innermost_frame): Start search from selected
12217 frame, if present, or otherwise the current frame.
12219 * c-exp.y (variable): Update innermost_block for
12220 'block COLONCOLON NAME' clause.
12221 * m2-exp.y (variable): Ditto.
12222 * objc-exp.y (variable): Ditto.
12227 * python/python.c (finish_python_initialization): Set sys.argv.
12231 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
12232 "want_line_info". All callers updated.
12233 (dwarf_decode_lines_1): New function.
12234 (handle_DW_AT_stmt_list): Add function comment.
12235 New arg "want_line_info". All callers updated.
12236 (read_file_scope,read_type_unit_scope): Move comment from
12237 handle_DW_AT_stmt_list to here.
12241 Fix regression after libiberty/ update for GCC PR 6057 and others.
12242 * c-exp.y (operator) <OPERATOR DELETE>
12243 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12244 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
12245 (make_builtin_type, make_name): New variable i, add gdb_assert.
12246 (operator) <OPERATOR NEW>: Update ARGS to 3.
12247 (operator) <OPERATOR DELETE>: Add trailing space.
12248 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
12249 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12250 * cp-support.c (cp_canonicalize_string): Check NULL from
12251 cp_comp_to_string, call warning and return.
12255 Fix duplicate .o files after omitting libbfd.a.
12256 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
12257 (SFILES): Add corelow.c.
12258 (COMMON_OBS): Add corelow.o.
12259 (ALLDEPFILES): Remove corelow.c.
12260 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
12261 * config/alpha/alpha-osf3.mh: Likewise.
12262 * config/alpha/fbsd.mh: Likewise.
12263 * config/arm/nbsdaout.mh: Likewise.
12264 * config/arm/nbsdelf.mh: Likewise.
12265 * config/i386/i386gnu.mh: Likewise.
12266 * config/ia64/hpux.mh: Likewise.
12267 * config/ia64/linux.mh: Likewise.
12268 * config/m32r/linux.mh: Likewise.
12269 * config/m68k/linux.mh: Likewise.
12270 * config/mips/irix5.mh: Likewise.
12271 * config/mips/irix6.mh: Likewise.
12272 * config/pa/hpux.mh: Likewise.
12273 * config/pa/linux.mh: Likewise.
12274 * config/powerpc/aix.mh: Likewise.
12275 * config/sparc/linux.mh: Likewise.
12276 * config/sparc/linux64.mh: Likewise.
12277 * config/sparc/sol2.mh: Likewise.
12278 * config/vax/vax.mh: Likewise.
12279 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
12280 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
12281 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
12282 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
12283 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
12284 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
12285 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
12286 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
12287 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
12288 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
12289 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
12290 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
12291 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12292 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
12293 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
12294 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12295 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
12296 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
12297 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
12298 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
12299 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
12300 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
12301 corelow.o from gdb_target_obs.
12302 * corefile.c (core_target): Update the comment on NULL value.
12303 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
12304 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
12305 MATCHES. Drop YUMMY set on NULL.
12306 (core_close): Do not call exit_inferior_silent on zero PID. Do not
12307 reclaim CORE_DATA if it is already NULL.
12311 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
12312 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
12316 * breakpoint.c (wrapper.h): Don't include.
12320 * Makefile.in (SFILES): Remove wrapper.c.
12321 (HFILES_NO_SRCDIR): Remove wrapper.h.
12322 (COMMON_OBS): Remove wrapper.o.
12323 * cli/cli-interp.c: Don't inlude wrapper.h.
12324 * corelow.c: Likewise.
12325 (core_open): Replace gdb_target_find_new_threads with
12326 TRY_CATCH around target_find_new_threads.
12327 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
12328 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
12329 * varobj.c (varobj_create): Likewise for parse_exp_1 and
12330 evaluate_expression.
12331 (varobj_set_value): Likewise for evaluate_expression and
12333 (install_new_variable): Likewise for value_fetch_lazy.
12334 (adjust_value_for_child_access): Likewise for value_ind.
12335 (c_describe_child): Likewise for value_subscript and
12337 (c_value_of_root): Likewise for evaluate_expression.
12338 * wrapper.c: Remove.
12339 * wrapper.h: Remove.
12343 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
12344 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
12345 "abfd" args with "section". All callers updated.
12346 Error checking code moved ...
12347 (error_check_comp_unit_head): ... here. New function.
12348 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
12349 Delete arg "abfd". New arg "type_offset". All callers updated.
12350 (create_debug_types_hash_table): Simplify by using
12351 read_and_check_type_unit_head.
12353 * parser-defs.h (namecopy): Delete.
12354 * parse.c (namecopy, namecopy_size): Move into copy_name.
12358 Partially fix duplicate .o files after omitting libbfd.a.
12359 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
12360 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12361 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
12362 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12363 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
12364 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
12365 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12369 * MAINTAINERS: Update my email address.
12373 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
12374 n_type_units. Rename type_comp_units to all_type_units.
12376 (add_signatured_type_cu_to_table): Renamed from
12377 add_signatured_type_cu_to_list. All callers updated.
12379 * gdbtypes.h (struct cplus_struct_type): Delete member
12380 nfn_fields_total. All uses removed.
12384 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
12386 (dwarf2_find_comp_unit): Delete.
12387 (process_psymtab_comp_unit): Make result "void".
12388 Delete args buffer, info_ptr, buffer_size, and replace with
12389 "section". All callers updated.
12390 (dwarf2_build_psymtabs_hard): Simplify.
12395 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
12396 before `struct gdb_exception'.
12397 * breakpoint.c (update_global_location_list_nothrow)
12398 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
12399 * cp-abi.c (value_rtti_type): Likewise.
12400 * cp-support.c (cp_validate_operator): Likewise.
12401 * infrun.c (insert_exception_resume_breakpoint)
12402 (check_exception_resume, keep_going): Likewise.
12403 * mi-interp.c (mi_breakpoint_created)
12404 (mi_breakpoint_modified): Likewise.
12405 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
12406 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
12407 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
12411 * dwarf2read.c (statement_prologue): Delete, unused.
12413 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
12414 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
12416 * dwarf2read.c (comp_unit_header): Delete, unused.
12420 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
12421 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
12425 * infrun.c (normal_stop): Don't skip calling the normal_stop
12426 observers if the thread was doing a multi-step, but stopped for
12427 some reason other than stepping.
12431 * cli/cli-decode.h: Add comments.
12432 (CMD_LIST_AMBIGUOUS): Moved to command.h
12433 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
12434 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
12435 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
12436 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
12437 (add_com, add_com_alias, add_info, add_info_alias)
12438 (complete_on_cmdlist, complete_on_enum, help_list): Remove
12440 * command.h: Add and adjust comments.
12441 (CMD_LIST_AMBIGUOUS): Moved here.
12442 (help_cmd, help_cmd_list): Delete declarations.
12446 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
12447 All callers updated.
12448 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
12449 Replace all arguments with "per_cu". All callers updated.
12451 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
12453 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
12454 New arg "per_cu". All callers updated.
12456 Delete #if 0'd out code.
12457 * language.c (binop_result_type): Delete.
12458 (simple_type, ordered_type, same_type, integral_type): Delete.
12459 (numeric_type, character_type, string_type, boolean_type): Delete.
12460 (float_type, structured_type): Delete.
12461 * language.h: Update.
12465 * python/py-value.c (valpy_binop): Initialize 'res_val'.
12469 * corefile.c (close_exec_file): Delete.
12470 (reopen_exec_file): Remove commented out code that seems related
12471 to close_exec_file, which is being deleted here.
12472 * inferior.h (close_exec_file): Delete.
12473 * fork-child.c (fork_inferior): Remove call to fork_inferior.
12477 * ada-lang.c: #include "cli/cli-utils.h".
12478 (get_selections): Use skip_spaces.
12479 (ada_get_next_arg): Use skip_spaces and skip_to_space.
12480 (catch_ada_exception_command_split): Use skip_spaces.
12481 (ada_decode_assert_location): Likewise.
12485 * linespec.c (decode_line_internal): Check for C++ or Java
12486 compound constructs only if the current language is C, C++
12494 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12495 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12497 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12498 fall through into AT_ENTRY_POINT.
12499 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
12500 DUMMY_ADDR with it.
12501 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12502 PPC_INSN_SIZE skip to 3 times.
12506 * linespec.c (add_minsym): Preserve function descriptors.
12510 * breakpoint.c (all_locations_are_pending): Consider locations
12511 in program spaces executing during startup pending as well.
12515 Copyright year update in most files of the GDB Project.
12519 * copyright.sh: Delete.
12520 * copyright.py: Rewrite.
12524 * gnulib/extra/update-copyright: New file, imported from gnulib.
12528 * README (Copyright and License Notices): New section.
12533 * python/py-value.c (valpy_dereference, valpy_get_address
12534 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
12535 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
12536 (valpy_absolute, valpy_richcompare): Free intermediate values.
12540 * ada-lang.c: Reformat the copyright notice.
12544 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
12545 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
12546 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
12547 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
12548 Revert this part of:
12550 Build gdb directly from *.o files not using libgdb.a.
12551 * Makefile.in (COMMON_OBS): Remove solib-target.o.
12555 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
12556 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
12557 Reformat the copyright header.
12561 Revert this part of:
12563 Remove the gdbtui binary.
12564 * gdb.c (main): Remove args.interpreter_p initialization.
12565 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12566 * main.h (struct captured_main_args): Remove interpreter_p.
12570 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
12574 * top.c (print_gdb_version): Update copyright year.
12578 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
12583 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12584 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12586 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12587 fall through into AT_ENTRY_POINT.
12588 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
12589 DUMMY_ADDR with it.
12590 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12591 PPC_INSN_SIZE skip to 3 times.
12595 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
12597 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
12601 Build gdb directly from *.o files not using libgdb.a.
12602 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
12603 (COMMON_OBS): Remove solib-target.o.
12604 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
12605 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
12606 (LIBGDB_OBS, libgdb.a): Move it above.
12607 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
12608 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
12609 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
12610 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
12611 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
12612 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
12613 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
12614 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
12615 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
12616 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
12617 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
12618 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
12619 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
12620 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
12621 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12622 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
12623 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
12624 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12625 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
12626 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
12627 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
12628 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
12629 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
12630 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
12631 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
12632 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
12633 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
12637 Remove the gdbtui binary.
12638 * .gitignore (/gdbtui): Remove.
12639 * Makefile.in (TUI): Remove.
12640 (SUBDIR_TUI_OBS): Remove tui-main.o.
12641 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
12642 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
12643 (tui-main.o): Remove.
12644 (all_object_files): Remove tui-main.o.
12645 * NEWS: New note for the gdbtui removal.
12646 * configure: Rebuilt.
12647 * configure.ac: No longer add all-tui, clean-tui, install-tui and
12648 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
12649 CONFIG_UNINSTALL respectively.
12650 * gdb.c (main): Remove args.interpreter_p initialization.
12651 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12652 * main.h (struct captured_main_args): Remove interpreter_p.
12653 * tui/tui-main.c: Remove.
12657 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
12658 (dwarf2_physname, read_import_statement): Ditto.
12659 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
12660 (process_structure_scope read_subroutine_type): Ditto.
12661 (read_typedef, load_partial_dies, read_partial_die): Ditto.
12662 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
12663 (dwarf2_fetch_die_location_block): Ditto.
12664 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
12666 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
12667 All callers updated.
12668 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
12669 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
12670 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
12672 * dwarf2read.c (load_cu): Move assert to more useful location.
12674 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
12675 All callers updated.
12677 * dwarf2read.c (dwarf2_per_objfile): Add comment.
12678 (dwarf2_elf_names): Minor reformat.
12679 (dwarf2_per_cu_data): Tweak comment.
12680 (dwarf2_read_section): Fix comment.
12681 (create_all_comp_units): Fix comment.
12682 (load_full_comp_unit): Fix comment.
12683 (process_full_comp_unit): Fix comment.
12684 (read_signatured_type): Fix comment.
12686 For older changes see ChangeLog-2011.
12692 version-control: never