gdb/
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2012-12-15 Yao Qi <yao@codesourcery.com>
2
3 * breakpoint.c (download_tracepoint_locations): Iterate over
4 ALL_TRACEPOINTS first and then iterate over locations of
5 each tracepoint.
6
7 2012-12-14 Pierre Muller <muller@sourceware.org>
8 Pedro Alves <palves@redhat.com>
9
10 * solib-target.c (solib_target_current_sos): Remove 'const'
11 qualifier from type of library_document local variable to be
12 able to free it and avoid a memory leak.
13 Use cleanup chain to avoid leak even if exceptino is generated.
14
15 2012-12-14 Tom Tromey <tromey@redhat.com>
16
17 PR c++/8888:
18 * symtab.c (lookup_symbol_aux): If constructor is found, consider
19 returning the type instead.
20 * c-exp.y (classify_name): Check STRUCT_DOMAIN if a constructor is
21 found.
22
23 2012-12-14 Tom Tromey <tromey@redhat.com>
24
25 Partial fix for PR c++/14160:
26 * c-typeprint.c (c_type_print_base): Use TYPE_FN_FIELD_CONSTRUCTOR.
27 * dwarf2read.c (dwarf2_is_constructor): New function.
28 (dwarf2_add_member_fn): Use it.
29 * gnu-v3-abi.c (gnuv3_pass_by_reference): Use
30 TYPE_FN_FIELD_CONSTRUCTOR.
31 * jv-typeprint.c (java_type_print_base): Use
32 TYPE_FN_FIELD_CONSTRUCTOR.
33 * gdbtypes.h (struct fn_field) <is_constructor>: New field.
34 <dummy>: Shrink.
35 (TYPE_FN_FIELD_CONSTRUCTOR): New macro.
36
37 2012-12-14 Tom Tromey <tromey@redhat.com>
38
39 * c-exp.y (block, variable, name_not_typename, lex_one_token,
40 classify_name): Update.
41 * c-valprint.c (c_val_print): Update.
42 * f-exp.y (yylex): Update.
43 * go-exp.y (package_name_p, classify_packaged_name)
44 (classify_name): Update.
45 * jv-exp.y (push_variable): Update.
46 * m2-exp.y (variable): Update.
47 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
48 * p-exp.y (block, variable, yylex): Update.
49 * p-valprint.c (pascal_val_print): Update.
50 * parse.c (write_dollar_variable): Update.
51 * printcmd.c (address_info): Update.
52 * python/py-symbol.c (gdbpy_lookup_symbol): Update.
53 * symtab.c (lookup_symbol_aux, lookup_symbol_in_language)
54 (lookup_symbol): Change type of 'is_a_field_of_this'.
55 (check_field): Add 'is_a_field_of_this' argument.
56 * symtab.h (struct field_of_this_result): New.
57 (lookup_symbol, lookup_symbol_in_language): Update.
58
59 2012-12-14 Tom Tromey <tromey@redhat.com>
60
61 * symtab.c (check_field): Now static. Move from...
62 * valops.c (check_field): ... here. Remove.
63 * value.h (check_field): Don't declare.
64
65 2012-12-14 Tom Tromey <tromey@redhat.com>
66
67 * NEWS: Mention "info proc" and core files.
68 * corelow.c (core_info_proc): New function.
69 (init_core_ops): Set to_info_proc.
70 * gdbarch.c, gdbarch.h: Rebuild.
71 * gdbarch.sh (core_info_proc): New method.
72 * infcmd.c (info_proc_cmd_1): Invoke target_info_proc first.
73 * linux-tdep.c (linux_core_info_proc_mappings)
74 (linux_core_info_proc): New functions.
75 (linux_find_memory_region_ftype): New typedef.
76 (linux_find_memory_regions_full): New function, from
77 linux_find_memory_regions.
78 (struct linux_find_memory_regions_data): New.
79 (linux_find_memory_regions_thunk): New function.
80 (linux_find_memory_regions): Rewrite.
81 (struct linux_make_mappings_data): New.
82 (linux_make_mappings_callback)
83 (linux_make_mappings_corefile_notes): New functions.
84 (linux_make_corefile_notes): Call linux_make_mappings_corefile_notes.
85 (linux_init_abi): Call set_gdbarch_core_info_proc.
86 * target.c (target_info_proc): Return 'int'.
87 * target.h (target_info_proc): Update.
88
89 2012-12-14 Pierre Muller <muller@sourceware.org>
90
91 * windows-nat.c (windows_xfer_shared_libraries): Avoid
92 memory leak when OFFSET >= LEN_AVAIL.
93
94 2012-12-13 Tom Tromey <tromey@redhat.com>
95
96 * solib-svr4.c (enable_break): Use SECT_OFF_TEXT.
97
98 2012-12-13 Tom Tromey <tromey@redhat.com>
99
100 * acinclude.m4 (CY_AC_C_WORKS): Remove.
101
102 2012-12-13 Pierre Muller <muller@sourceware.org>
103
104 * coff-pe-read.c (pe_text_section_offset): Increase size of sname
105 local variable and zero terminate it to avoid possible problems
106 in strcmp.
107
108 2012-12-13 Pedro Alves <palves@redhat.com>
109
110 * coff-pe-read.c: Include coff/internal.h.
111 (read_pe_exported_syms): Use SCNNMLEN instead of hardcoded 8.
112 Null terminate buffer explicitly instead of memset the whole
113 buffer.
114
115 2012-12-13 Pierre Muller <muller@sourceware.org>
116
117 * coff-pe-read.c (IMAGE_SCN_CNT_TEXT, IMAGE_SCN_CNT_INITIALIZED_DATA)
118 (IMAGE_SCN_CNT_UNINITIALIZED_DATA): Remove useless checks
119 for already defined macros.
120
121 2012-12-13 Pierre Muller <muller@sourceware.org>
122
123 * coff-pe-read.h (pe_text_section_offset): Declare new function.
124 * coff-pe-read.c (debug_coff_pe_read): New static variable.
125 (struct read_pe_section_data): Add section_name field.
126 (IMAGE_SCN_CNT_CODE): New macro, if not already defined.
127 (IMAGE_SCN_CNT_INITIALIZED_DATA): Ditto.
128 (IMAGE_SCN_CNT_UNINITIALIZED_DATA): Ditto.
129 (get_pe_section_index): New function.
130 (struct pe_sections_info): New type.
131 (get_section_vmas): Use new struct pe_sections_info.
132 (add_pe_exported_sym): Handle unnamed exported function.
133 (add_pe_forwarded_sym): New function.
134 (read_pe_truncate_name): Truncate at last dot.
135 (pe_as16): New function.
136 (read_pe_exported_syms): Use ordinal of function to
137 retrieve correct RVA address of function and handle
138 forwarded symbol.
139 (pe_text_section_offset): New function.
140 (show_debug_coff_pe_read): New function.
141 (_initialize_coff_pe_read): New function adding
142 'set/show debug coff_pe_read' commands.
143
144 * windows-tdep.c (windows_xfer_shared_library): Use
145 pe_text_section_offset function instead of possibly wrong
146 0x1000 constant for .text sextion offset.
147
148 2012-12-13 Pedro Alves <palves@redhat.com>
149
150 * gdbarch.sh (do_read): Set IFS to blank.
151
152 2012-12-12 Mircea Gherzan <mircea.gherzan@intel.com>
153
154 * NEWS: Mention the -catch-load/-catch-unload MI commands.
155
156 2012-12-12 Mircea Gherzan <mircea.gherzan@intel.com>
157
158 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-catch.o.
159 (SUBDIR_MI_SRCS): Add mi/mi-cmd-catch.c.
160 * breakpoint.c (add_solib_catchpoint): New function that
161 can be used by both CLI and MI, factored out from
162 catch_load_or_unload.
163 (catch_load_or_unload): Strip it down and make it use the
164 new add_solib_catchpoint.
165 * breakpoint.h (add_solib_catchpoint): Declare it.
166 * mi/mi-cmd-break.h: New file.
167 * mi/mi-cmd-break.c: Include mi-cmd-break.h.
168 (setup_breakpoint_reporting): New function used for both
169 catchpoints and breakpoints.
170 (mi_cmd_break_insert): Use setup_breakpoint_reporting.
171 * mi/mi-cmd-catch.c: New file.
172 * mi/mi-cmds.c (mi_cmds): Add the handlers for -catch-load
173 and -catch-unload.
174 * mi/mi-cmds.h: Declare the handlers for -catch-load and
175 -catch-unload.
176
177 2012-11-28 Tom Tromey <tromey@redhat.com>
178
179 * dbxread.c (read_dbx_symtab): Update.
180 (end_psymtab, dbx_psymtab_to_symtab_1, dbx_psymtab_to_symtab)
181 (read_ofile_symtab): Add 'objfile' argument.
182 * dwarf2read.c (process_psymtab_comp_unit_reader)
183 (build_type_psymtabs_reader): Update.
184 (dwarf2_psymtab_to_symtab): Add 'objfile' argument.
185 * mdebugread.c (mdebug_psymtab_to_symtab): Add 'objfile'
186 argument.
187 (parse_procedure, parse_partial_symbols): Update.
188 (psymtab_to_symtab_1): Add 'objfile' argument.
189 * psympriv.h (struct partial_symtab) <objfile>: Remove.
190 <read_symtab>: Add 'objfile' argument.
191 (sort_pst_symbols, discard_psymtab): Update.
192 * psymtab.c (partial_map_expand_apply): Update.
193 (find_pc_sect_psymtab_closer): Add 'objfile' argument.
194 (find_pc_sect_psymtab, find_pc_sect_symtab_from_partial): Update.
195 (find_pc_sect_psymbol): Add 'objfile' argument.
196 (lookup_symbol_aux_psymtabs): Update.
197 (match_partial_symbol, lookup_partial_symbol, psymtab_to_symtab):
198 Add 'objfile' argument.
199 (find_last_source_symtab_from_partial, dump_psymtab)
200 (dump_psymtabs_for_objfile, read_symtabs_for_function)
201 (expand_partial_symbol_tables, read_psymtabs_with_filename)
202 (find_symbol_file_from_partial, map_matching_symbols_psymtab)
203 (expand_symtabs_matching_via_partial): Update.
204 (sort_pst_symbols): Add 'objfile' argument.
205 (allocate_psymtab): Update.
206 (discard_psymtab): Add 'objfile' argument.
207 (maintenance_info_psymtabs, maintenance_check_symtabs): Update.
208 * stabsread.h (end_psymtab): Update.
209 * xcoffread.c (this_symtab_objfile): New global.
210 (process_linenos, enter_line_range, xcoff_next_symbol_text):
211 Update.
212 (read_xcoff_symtab): Add 'objfile' argument.
213 (read_symbol, read_symbol_lineno): Update.
214 (xcoff_psymtab_to_symtab_1, xcoff_psymtab_to_symtab)
215 (xcoff_end_psymtab): Add 'objfile' argument.
216 (scan_xcoff_symtab): Update.
217
218 2012-12-12 Paul Koning <paul_koning@dell.com>
219
220 Add support for Python 3.
221 * NEWS: Mention Python 3 support.
222 * varobj.c (value_get_print_value): Use
223 python_string_to_target_string.
224 * python/py-block.c: Use PyVarObject_HEAD_INIT in initialization
225 of type objects.
226 * python/py-breakpoint.c: Ditto.
227 * python/py-cmd.c: Ditto.
228 * python/py-event.c: Ditto.
229 * python/py-event.h: Ditto.
230 * python/py-evtregistry.c: Ditto.
231 * python/py-finishbreakpoint.c: Ditto.
232 * python/py-frame.c: Ditto.
233 * python/py-function.c: Ditto.
234 * python/py-infthread.c: Ditto.
235 * python/py-lazy-string.c: Ditto.
236 * python/py-progspace.c: Ditto.
237 * /python/py-symbol.c: Ditto.
238 * python/py-evts.c: (gdbpy_initialize_py_events): Add module
239 initialization for Python 3.
240 * python/py-inferior.c: Use PyVarObject_HEAD_INIT in initialization
241 of type objects.
242 (infpy_read_memory): Return memoryview object if Python 3.
243 (infpy_write_memory): Use "s*" operand parsing code for Python 3.
244 (infpy_search_memory): Ditto.
245 (get_buffer): New function for Python 3.
246 * python/py-objfile.c: Use PyVarObject_HEAD_INIT in initialization
247 of type objects.
248 (objfpy_dealloc): Use Py_TYPE to call tp_free.
249 * python/py-param.c: Use PyVarObject_HEAD_INIT in initialization
250 of type objects.
251 (get_attr): Use PyUnicode_CompareWithASCIIString if Python 3.
252 (set_attr): Ditto.
253 * python/py-prettyprint.c (print_string_repr): use PyBytes methods
254 instead of PyString methods if Python 3.
255 (print_children): Skip push_dummy_python_frame call if Python 3.
256 * python/py-symtab.c: Use PyVarObject_HEAD_INIT in initialization
257 of type objects.
258 (salpy_dealloc): Use Py_TYPE to call tp_free.
259 * python/py-type.c: Use PyVarObject_HEAD_INIT in initialization
260 of type objects.
261 (field_dealloc): Use Py_TYPE to call tp_free.
262 (typy_dealloc): Ditto.
263 (type_object_as_number): Adjust struct initializations for
264 differences in layout for Python 2 vs. Python 3.
265 * python/py-utils.c (python_string_to_unicode): Omit non-Unicode
266 string case for Python 3.
267 (unicode_to_encoded_python_string): Shorten code (no functional
268 change).
269 (python_string_to_target_python_string): Comment that in Python 3
270 returned value is a Python "bytes" type.
271 (gdbpy_is_string): Omit non-Unicode string check in Python 3.
272 (gdb_py_object_from_longest): Omit non-long integer case in Python
273 3.
274 (gdb_py_object_from_ulongest): Ditto.
275 * python/py-value.c: Use PyVarObject_HEAD_INIT in initialization
276 of type objects.
277 (valpy_dealloc): Use Py_TYPE to call tp_free.
278 (valpy_int): Omit function if Python 3.
279 (convert_value_from_python): Use "%S" format (Python object as a
280 string) if Python 3.
281 (value_object_as_number): Adjust struct initializations for
282 differences in layout for Python 2 vs. Python 3.
283 * python/python-config.py: Adjust syntax for Python 3
284 compatibility.
285 Include "sys.abiflags" string as part of python library name, if
286 that attribute exists (Python 3).
287 * python/python-internal.h (IS_PY3): Define if Python 3.
288 (Py_TPFLAGS_HAVE_ITER, Py_TPFLAGS_CHECKTYPES): Define with
289 placeholder value if Python 3.
290 (PyInt_Check, PyInt_FromLong, PyInt_AsLong, PyString_FromString,
291 PyString_Decode, PyString_FromFormat, PyString_Check): Define as
292 analogous Python 3 API function if Python 3.
293 (PyVarObject_HEAD_INIT): Define if not already defined.
294 (Py_TYPE): Ditto.
295 * python/python.c (eval_python_command): Omit Py_FlushLine call if
296 Python 3.
297 Check return values of all Python API calls for error.
298 Supply dummy "python" and "python-interactive" commands if Python
299 initialization failed.
300 (_initialize_python): Convert argc to wchar_t** if Python 3.
301 Add module initialization for Python 3.
302 (finish_python_initialization): Pass wchar_t * argument to
303 PySys_SetPath if Python 3.
304 * python/lib/gdb/__init__.py: Define "reload" if Python 3.
305 (_GdbFile): New class for common output file behavior.
306 (GdbOutFile): Subclass from _GdbFile.
307 (GdbOutputErrorFile): Ditto.
308 (auto_load_packages): Adjust syntax for Python 3 compatibility.
309 * python/lib/gdb/printing.py: Define basestr and int if Python 3.
310 * python/lib/gdb/prompt.py: Use sorted() function rather than
311 sort() method.
312 * python/lib/gdb/command/explore.py: Define raw_input if Python 3.
313 Adjust syntax for Python 3 compatibility.
314 * python/lib/gdb/command/pretty_printers.py: Use sorted() function
315 rather than sort() method.
316 Adjust syntax for Python 3 compatibility.
317 * python/lib/gdb/command/type_printers.py: Ditto.
318 * doc/gdb.texinfo (Inferior.read_memory): Mention that the return
319 value is a memoryview object if Python 3.
320
321 2012-12-12 Tom Tromey <tromey@redhat.com>
322
323 * coffread.c (coff_objfile_data_key): New global.
324 (coff_symfile_init): Use set_objfile_data.
325 (coff_symfile_read): Use objfile_data.
326 (coff_symfile_finish): Don't free deprecated_sym_private.
327 (coff_free_info): New function.
328 (_initialize_coffread): Initialize coff_objfile_data_key.
329 * mdebugread.c (pending_list): Update comment.
330 * objfiles.h (struct objfile) <deprecated_sym_private>: Remove.
331 * symfile.c (reread_symbols): Don't mention
332 deprecated_sym_private.
333 * xcoffread.c (xcoff_objfile_data_key): New global.
334 (XCOFF_DATA): New macro.
335 (process_linenos, enter_line_range, xcoff_next_symbol_text)
336 (read_xcoff_symtab, coff_getfilename, read_symbol_lineno): Use
337 XCOFF_DATA.
338 (xcoff_new_init) Use set_objfile_data.
339 (xcoff_symfile_finish): Don't free deprecated_sym_private.
340 (init_stringtab, swap_sym, scan_xcoff_symtab)
341 (xcoff_get_toc_offset, xcoff_initial_scan): Use XCOFF_DATA.
342 (xcoff_free_info): New function.
343 (_initialize_xcoffread): Initialize xcoff_objfile_data_key.
344
345 2012-12-12 Mircea Gherzan <mircea.gherzan@intel.com>
346
347 * MAINTAINERS (Write After Approval): Add "Mircea Gherzan".
348
349 2012-12-12 Tom Tromey <tromey@redhat.com>
350
351 * coffread.c (coff_symfile_init): Use set_objfile_data.
352 (coff_symfile_read): Use DBX_SYMFILE_INFO.
353 * dbxread.c (dbx_objfile_data_key): New global.
354 (dbx_symfile_init): Use set_objfile_data.
355 (dbx_symfile_finish): Don't free deprecated_sym_stab_info.
356 (dbx_free_symfile_info): New function.
357 (coffstab_build_psymtabs, elfstab_build_psymtabs): Use
358 DBX_SYMFILE_INFO.
359 (stabsect_build_psymtabs): Use set_objfile_data.
360 (_initialize_dbxreadb): Initialize dbx_objfile_data_key.
361 * elfread.c (elf_symtab_read): Use DBX_SYMFILE_INFO,
362 set_objfile_data.
363 (free_elfinfo): Use DBX_SYMFILE_INFO.
364 (elf_symfile_finish): Don't free deprecated_sym_stab_info.
365 (elfstab_offset_sections): Use DBX_SYMFILE_INFO.
366 * gdb-stabs.h (dbx_objfile_data_key): Declare.
367 (DBX_SYMFILE_INFO): Rewrite to use objfile_data.
368 * objfiles.h (struct objfile) <deprecated_sym_stab_info>: Remove.
369 * somread.c (som_symfile_finish): Don't free
370 deprecated_sym_stab_info.
371
372 2012-12-12 Joel Brobecker <brobecker@adacore.com>
373
374 * gdbarch.sh (software_single_step): Remove trailing space in
375 comment (gdbarch.h is already correct).
376
377 2012-12-11 Tom Tromey <tromey@redhat.com>
378
379 * dwarf2read.c (dwarf2_get_dwz_file): Set 'dwz_file'.
380
381 2012-12-11 Tom Tromey <tromey@redhat.com>
382
383 * dsrec.c (report_transfer_performance): Don't declare.
384 (load_srec): Use gettimeofday, print_transfer_performance.
385 * symfile.c (report_transfer_performance): Remove.
386
387 2012-12-11 Pedro Alves <pedro@codesourcery.com>
388 Pedro Alves <palves@redhat.com>
389
390 * procfs.c (procfs_make_note_section) [NEW_PROC_API]: Output a
391 NT_PSTATUS note.
392 * sol2-tdep.c (sol2_core_pid_to_str): Print process IDs
393 differently from LWP IDs.
394
395 2012-12-11 Pedro Alves <palves@redhat.com>
396
397 * configure.ac (detect type of /proc): Remove Unixware handling.
398 * configure: Regenerate.
399 * proc-api.c (ioctl_table) [PIOCLSTATUS]: Don't mention Unixware.
400 (ioctl_table) [PCRESET]: Remove entry.
401 * proc-events.c (SYS_lwp_create, SYS_lwp_exit, SYS_lwp_wait)
402 (SYS_lwp_self, SYS_lwp_info, SYS_lwp_private, SYS_lwp_kill)
403 (SYS_lwp_suspend, SYS_lwp_continue): Don't define.
404 * proc-why.c (pr_why_table) [PR_SUSPENDED]: Don't mention Unixware.
405 * procfs.c: Remove all UNIXWARE guarded code, and all traces of
406 Unixware in comments throughout.
407 * i386-tdep.c (i386_svr4_sigtramp_p): Don't match _sigacthandler,
408 and remove mention of Unixware.
409
410 2012-12-10 Doug Evans <dje@google.com>
411
412 * dwarf2read.c (dwarf2_cu): Enhance comment.
413 (dwarf2_get_pc_bounds): Only add ranges_base for DIEs that live in
414 the DWO file.
415 (dwarf2_record_block_ranges): Ditto.
416
417 * dwarf2read.c (create_dwo_in_dwp): Tweak comment.
418
419 * symtab.c (find_pc_sect_symtab): Add comment.
420
421 2012-12-10 Tom Tromey <tromey@redhat.com>
422
423 * defs.h: Don't check for definition of LONGEST.
424 (min, max): Remove duplicates.
425
426 2012-12-10 Tom Tromey <tromey@redhat.com>
427
428 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): New function.
429 (dwarf2_fetch_die_loc_cu_off): Rename from
430 dwarf2_fetch_die_location_block. Rewrite to use
431 dwarf2_fetch_die_loc_sect_off.
432 * dwarf2loc.h (dwarf2_fetch_die_loc_sect_off): Declare.
433 (dwarf2_fetch_die_loc_cu_off): Rename.
434 * dwarf2loc.c (indirect_pieced_value): Use
435 dwarf2_fetch_die_loc_sect_off.
436 * dwarf2expr.h (struct dwarf_expr_context) <len, data>: Update
437 comment.
438 (struct dwarf_expr_piece) <v.ptr.die>: Now a sect_offset.
439 * dwarf2expr.c (add_piece): Update.
440 (execute_stack_op) <DW_OP_GNU_implicit_pointer>: Update comment.
441
442 2012-12-10 Tom Tromey <tromey@redhat.com>
443
444 * buildsym.c (struct pending_block): Move from buildsym.h.
445 (pending_blocks): Likewise; now static.
446 (pending_block_obstack): New global.
447 (free_pending_blocks): Free blocks.
448 (record_pending_block): Use pending_block_obstack.
449 * buildsym.h (struct pending_block): Move definition to
450 buildsym.c.
451 (pending_blocks): Don't declare.
452
453 2012-12-10 Pedro Alves <palves@redhat.com>
454
455 * solib-svr4.c (svr4_solib_create_inferior_hook) [_SCO_DS]: Remove
456 dead SCO code, and adjust function description comment.
457
458 2012-12-09 Jan Kratochvil <jan.kratochvil@redhat.com>
459
460 * configure.ac (CC_HAS_LONG_LONG): Replace by AC_MSG_ERROR.
461 * defs.h (LONGEST, ULONGEST): Remove conditionalization for
462 CC_HAS_LONG_LONG.
463 * dwarf2-frame.c (DW64_CIE_ID): Likewise.
464 * dwarf2read.c (extract_cu_value): Remove the function.
465 (create_cus_from_index_list): Make the return type void, inline the
466 extract_cu_value caller, include new gdb_static_assert.
467 (create_cus_from_index): Make the return type void, update the function
468 comment, update the create_cus_from_index_list caller.
469 (create_signatured_type_table_from_index): Make the return type void,
470 inline the extract_cu_value caller, include new gdb_static_assert.
471 (dwarf2_read_index): Update the create_cus_from_index and
472 create_signatured_type_table_from_index caller.
473 * printcmd.c (ui_printf): Remove conditionalizations for
474 CC_HAS_LONG_LONG.
475 * config.in: Regenerate.
476 * configure: Regenerate.
477
478 2012-12-09 Jan Kratochvil <jan.kratochvil@redhat.com>
479
480 * dwarf2read.c (struct dwarf2_cu): New field producer_is_gcc_lt_4_3.
481 Update the comment for checked_producer.
482 (check_producer): New forward declaration.
483 (producer_is_gcc_lt_4_3): New function.
484 (find_file_and_directory): Simulate *COMP_DIR only for gcc < 4.3.
485 (check_producer): Initialize also PRODUCER_IS_GCC_LT_4_3.
486
487 2012-12-07 Tom Tromey <tromey@redhat.com>
488
489 * ada-lang.c (ada_make_symbol_completion_list): Add 'code'
490 argument, assertion.
491 * c-exp.y (typebase): Add completion productions.
492 * completer.c (expression_completer): Handle tag completion.
493 * expression.h (parse_expression_for_completion): Add argument.
494 * f-lang.c (f_make_symbol_completion_list): Add 'code'
495 argument.
496 * language.h (struct language_defn)
497 <la_make_symbol_completion_list>: Add 'code' argument.
498 * parse.c (expout_tag_completion_type, expout_completion_name):
499 New globals.
500 (mark_struct_expression): Add assertion.
501 (mark_completion_tag): New function.
502 (parse_exp_in_context): Initialize new globals.
503 (parse_expression_for_completion): Add 'code' argument. Handle
504 tag completion.
505 * parser-defs.h (mark_completion_tag): Declare.
506 * symtab.c (default_make_symbol_completion_list_break_on): Add
507 'code' argument. Update.
508 (default_make_symbol_completion_list): Add 'code' argument.
509 (make_symbol_completion_list): Update.
510 (make_symbol_completion_type): New function.
511 * symtab.h (default_make_symbol_completion_list_break_on)
512 (default_make_symbol_completion_list): Update.
513 (make_symbol_completion_type): Declare.
514
515 2012-12-07 Tom Tromey <tromey@redhat.com>
516
517 * expression.h (parse_expression_for_completion): Rename
518 from parse_field_expression.
519 (parse_completion): Rename from in_parse_field.
520 * c-exp.y (lex_one_token): Update.
521 * completer.c (expression_completer): Update.
522 * go-exp.y (lex_one_token): Update.
523 * p-exp.y (yylex): Update.
524 * parse.c (parse_completion): Rename from in_parse_field.
525 (parse_exp_in_context): Update.
526 (parse_expression_for_completion): Rename from
527 parse_field_expression. Update.
528
529 2012-12-07 Tom Tromey <tromey@redhat.com>
530
531 * typeprint.c (_initialize_typeprint): Set completer
532 for "whatis" and "ptype".
533
534 2012-12-07 Joel Brobecker <brobecker@adacore.com>
535
536 * copyright.py (NOT_FSF_LIST): Remove duplicate entry
537 "sim/common/cgen-fpu.h". Remove invalid entries
538 "sim/common/sim-fpu.c" and "sim/mn10300/sim-main.h",
539 which actually have an FSF copyright header.
540
541 2012-12-07 Joel Brobecker <brobecker@adacore.com>
542
543 * osf-share/AT386/cma_thread_io.h: Delete.
544 * osf-share/HP800/cma_thread_io.h: Delete.
545 * osf-share/README: Delete.
546 * osf-share/RIOS/cma_thread_io.h: Delete.
547 * osf-share/cma_attr.h: Delete.
548 * osf-share/cma_deb_core.h: Delete.
549 * osf-share/cma_debug_client.h: Delete.
550 * osf-share/cma_errors.h: Delete.
551 * osf-share/cma_handle.h: Delete.
552 * osf-share/cma_init.h: Delete.
553 * osf-share/cma_list.h: Delete.
554 * osf-share/cma_mutex.h: Delete.
555 * osf-share/cma_sched.h: Delete.
556 * osf-share/cma_semaphore_defs.h: Delete.
557 * osf-share/cma_sequence.h: Delete.
558 * osf-share/cma_stack.h: Delete.
559 * osf-share/cma_stack_int.h: Delete.
560 * osf-share/cma_tcb_defs.h: Delete.
561 * osf-share/cma_util.h: Delete.
562 * Makefile.in (HFILES_NO_SRCDIR): Remove entries for the files
563 in osf-share.
564 * config/djgpp/fnchange.lst: Remove osf-share/cma_stack_int.h entry.
565 * contrib/ari/gdb_find.sh: Remove handling of osf-share.
566 * copyright.sh (NOT_FSF_LIST): Remove "gdb/osf-share" entry.
567
568 2012-12-06 Pedro Alves <palves@redhat.com>
569 Tom Tromey <tromey@redhat.com>
570
571 * valops.c (value_cast): Move TYPE_CODE_VOID case earlier.
572
573 2012-12-06 Jens Elmenthaler <jens.elmenthaler@advantest.com>
574
575 PR mi/14741:
576 * mi/mi-cmd-var.c (varobj_update_one): Take value of
577 attribute "dynamic" and "displayhint" from printed child,
578 not the root variable.
579
580 2012-12-06 Joel Brobecker <brobecker@adacore.com>
581
582 * aix-thread.c (getthrds): Fix type of 4th parameter.
583 (get_signaled_thread): Change type of variable ktid to tid_t.
584
585 2012-12-06 Hui Zhu <hui_zhu@mentor.com>
586
587 * dwarf2loc.c (dwarf_expr_frame_base): Add check for the return
588 value of get_frame_block.
589
590 2012-12-05 Pierre Muller <muller@sourceware.org>
591
592 Avoid memory leaks on struct cmd_list_element.doc field.
593 * cli/cli-decode.c (add_alias_cmd): Make a copy of doc field
594 if flags contains DOC_ALLOCATED.
595 (add_setshow_cmd_full): Add DOC_ALLOCATED to set and show
596 flags.
597 (delete_cmd): Handle DOC_ALLOCATED flag.
598 * cli/cli-decode.h (DOC_ALLOCATED): New macro for use
599 in flags filed of struct cmd_list_element.
600 (struct cmd_list_element): Document new flag item.
601
602 2012-12-04 Doug Evans <dje@google.com>
603
604 * symmisc.c: Whitespace fixes.
605
606 2012-12-04 Karthik Bhat <kv.bhat@samsung.com>
607
608 * i386-tdep.c (i386_skip_prologue): Using symbol table
609 to find the end of prologue for clang compiled binaries.
610 * amd64-tdep.c (amd64_skip_prologue): Using symbol table
611 to find the end of prologue for clang compiled binaries.
612
613 2012-12-03 Doug Evans <dje@google.com>
614
615 * dwarf2read.c (struct dwarf2_per_objfile): Clarify comment.
616 (dw2_find_symbol_file): Delete unused local file_data.
617
618 2012-12-03 Tom Tromey <tromey@redhat.com>
619
620 * ada-exp.y (write_object_renaming, write_var_or_type)
621 (write_ambiguous_var, write_var_from_sym): Make blocks const.
622 * ada-lang.c (replace_operator_with_call)
623 (find_old_style_renaming_symbol): Make blocks const.
624 * ada-lang.h (ada_find_renaming_symbol): Update.
625 (struct ada_symbol_info) <block>: Now const.
626 * breakpoint.c (watch_command_1): Update.
627 * breakpoint.h (struct watchpoint) <exp_valid_block,
628 cond_exp_valid_block>: Now const.
629 * c-exp.y (classify_inner_name, classify_name): Make block
630 argument const.
631 * expprint.c (print_subexp_standard) <OP_VAR_VALUE>: Make 'b'
632 const.
633 * expression.h (innermost_block, parse_exp_1): Update.
634 (union exp_element) <block>: Now const.
635 * gdbtypes.c (lookup_template_type, lookup_enum, lookup_union)
636 (lookup_struct): Make block argument const.
637 * gdbtypes.h (lookup_template_type): Update.
638 * go-exp.y (classify_name, classify_packaged_name)
639 (package_name_p): Make block argument const.
640 * objc-lang.c (lookup_struct_typedef): Make block argument const.
641 * objc-lang.h (lookup_struct_typedef): Update.
642 * parse.c (parse_exp_in_context, parse_exp_1)
643 (write_exp_elt_block): Make block arguments const.
644 (expression_context_block, innermost_block): Now const.
645 * parser-defs.h (write_exp_elt_block): Update.
646 (expression_context_block, innermost_block, block_found): Now
647 const.
648 * printcmd.c (struct display) <block>: Now const.
649 * symtab.h (lookup_struct, lookup_union, lookup_enum): Update.
650 * valops.c (address_of_variable): Make block argument const.
651 * value.h (value_of_variable): Update.
652 * varobj.c (struct varobj_root) <valid_block>: Now const.
653
654 2012-11-30 Yao Qi <yao@codesourcery.com>
655
656 * breakpoint.c (print_one_breakpoint_location): Indent code.
657
658 2012-11-30 Yao Qi <yao@codesourcery.com>
659
660 * breakpoint.c (print_one_breakpoint_location): Combine two
661 blocks handling 'hit count' together.
662
663 2012-11-30 Yao Qi <yao@codesourcery.com>
664
665 * infrun.c (error_is_running, ensure_not_running): Move them
666 to ...
667 * infcmd.c (error_is_running, ensure_not_running): ... here.
668 Make them 'static'.
669 * inferior.h: Remove declarations of error_is_running and
670 ensure_not_running.
671
672 2012-11-30 Yao Qi <yao@codesourcery.com>
673
674 * tic6x-linux-tdep.c (tic6x_register_sigcontext_offset): Don't
675 check REGNUM >= 0.
676
677 2012-11-30 Yao Qi <yao@codesourcery.com>
678
679 * infrun.c: Make the declaration of 'init_infwait_state'
680 static.
681 (init_infwait_state): Make it 'static'.
682
683 2012-11-29 Ulrich Weigand <uweigand@de.ibm.com>
684
685 * python/python.c (finalize_python): Cast unused PyGILState_Ensure
686 return value to void to avoid compiler warning.
687
688 2012-11-29 Ulrich Weigand <uweigand@de.ibm.com>
689
690 * opencl-lang.c (opencl_print_type): New function.
691 (opencl_language_arch_info): Install it.
692
693 2012-11-29 Tom Tromey <tromey@redhat.com>
694
695 * contrib/ari/gdb_ari.sh: Remove rules for xasprintf and
696 xvasprintf.
697 * common/common-utils.c (xasprintf, xvasprintf): Remove.
698 * common/common-utils.h (xasprintf, xvasprintf): Remove.
699
700 2012-11-29 Jerome Guitton <guitton@adacore.com>
701
702 * ada-lang.c (ada_is_interface_tag): New function.
703 (ada_is_ignored_field): Add interface tags to the list
704 of ignored fields.
705
706 2012-11-29 Jerome Guitton <guitton@adacore.com>
707
708 * ada-lang.h (ada_tag_value_at_base_address): New function
709 declaration.
710 * ada-lang.c (is_ada95_tag, ada_tag_value_at_base_address):
711 New functions.
712 (ada_to_fixed_type_1, ada_evaluate_subexp): Let ada_tag_base_address
713 relocate the class-wide value if need be.
714 (ada_value_struct_elt, ada_value_ind, ada_coerce_ref):
715 Let ada_tag_value_at_base_address relocate the class-wide access/ref
716 before dereferencing it.
717 * ada-valprint.c (ada_val_print_1): Relocate to base address
718 before displaying the content of an interface-wide ref.
719
720 2012-11-29 Jerome Guitton <guitton@adacore.com>
721
722 * ada-lang.c (ada_evaluate_subexp): Unwrap only in EVAL_NORMAL.
723
724 2012-11-29 Joel Brobecker <brobecker@adacore.com>
725
726 GDB 7.5.1 released.
727
728 2012-11-29 Yao Qi <yao@codesourcery.com>
729 Tom Tromey <tromey@redhat.com>
730
731 * eval.c (evaluate_subexp_standard): Get the correct pointer
732 type for TYPE_CODE_MEMBERPTR.
733
734 2012-11-28 Edjunior Machado <emachado@linux.vnet.ibm.com>
735
736 * rs6000-tdep.c (gdb_print_insn_powerpc): Remove info->mach checking,
737 since now it is being done by binutils' powerpc_init_dialect().
738
739 2012-11-28 Tom Tromey <tromey@redhat.com>
740
741 PR gdb/14290:
742 * solib-darwin.c (gdb_bfd_mach_o_fat_extract): New function.
743 (darwin_solib_get_all_image_info_addr_at_init, darwin_bfd_open):
744 Use it.
745 * gdb_bfd.h (gdb_bfd_mark_parent): Declare.
746 * gdb_bfd.c (gdb_bfd_mark_parent): New function.
747 (gdb_bfd_openr_next_archived_file): Use it.
748
749 2012-11-28 Markus Metzger <markus.t.metzger@intel.com>
750
751 * configure.ac: Check for linux/perf_event.h.
752 * config.in: Regenerated.
753 * configure: Regenerated.
754
755 2012-11-28 Yao Qi <yao@codesourcery.com>
756
757 * breakpoint.c (_initialize_breakpoint): Call add_alias_cmd to
758 abbreviate 'delete tracepoints' to 'delete tr'.
759 * corefile.c (_initialize_core): Call add_alias_cmd to
760 abbreviate 'set gnutarget' to 'set g'.
761 * value.c (_initialize_values): Call add_alias_cmd to abbreviate
762 'show convenience' to 'show conv'.
763
764 2012-11-27 Joel Brobecker <brobecker@adacore.com>
765
766 * sparc-sol2-nat.c (supply_gregset): Fix first parameter in
767 call to sparc_supply_fpregset.
768 (fill_fpregset): Fix first parameter in call to
769 sparc_collect_fpregset.
770
771 2012-11-27 Daniel Jacobowitz <dan@codesourcery.com>
772 Kazu Hirata <kazu@codesourcery.com>
773 Yao Qi <yao@codesourcery.com>
774
775 * objfiles.c (init_entry_point_info): Call
776 gdbarch_convert_from_func_ptr_addr and
777 gdbarch_addr_bits_remove here ...
778 (entry_point_address_query): ... instead of here.
779 * solib-svr4.c (exec_entry_point): Call
780 gdbarch_addr_bits_remove.
781 * symfile.c (generic_load): Call gdbarch_addr_bits_remove on
782 the entry address.
783
784 2012-11-27 Daniel Jacobowitz <dan@codesourcery.com>
785 Yao Qi <yao@codesourcery.com>
786
787 * eval.c (evaluate_subexp_standard): Add handling of
788 TYPE_CODE_MEMBERPTR when calling functions. Correct the
789 result of ptype for calling a TYPE_CODE_METHODPTR.
790
791 2012-11-27 Yao Qi <yao@codesourcery.com>
792
793 * symtab.c (symtab_symbol_info): Fix a -Wformat-extra-args
794 warning.
795 Add i18n markup.
796
797 2012-11-26 Alexander Larsson <alexl@redhat.com>
798 Jan Kratochvil <jan.kratochvil@redhat.com>
799 Tom Tromey <tromey@redhat.com>
800
801 * NEWS: Mention mini debuginfo feature.
802 * minidebug.c: New file.
803 * configure.ac: Check for lzma.
804 * configure, config.in: Rebuild.
805 * Makefile.in (LIBLZMA): New variable.
806 (CLIBS): Include LIBLZMA.
807 (SFILES): Mention minidebug.c.
808 (COMMON_OBS): Mention minidebug.o.
809 * symfile.c (read_symbols): New function.
810 (syms_from_objfile, reread_symbols): Call it.
811 * symfile.h (find_separate_debug_file_in_section): Declare.
812
813 2012-11-26 Keith Seitz <keiths@redhat.com>
814
815 * exec.c (exec_file_attach): Move cleanup after verifying that
816 memory has in fact been allocated.
817
818 2012-11-26 Tom Tromey <tromey@redhat.com>
819
820 * ada-lang.c (user_select_syms): Use SYMBOL_SYMTAB.
821 * dwarf2read.c (dw2_find_symbol_file, fixup_go_packaging): Use
822 SYMBOL_SYMTAB.
823 * skip.c (skip_info): Use SYMBOL_SYMTAB.
824
825 2012-11-26 Maxime Villard <rustyBSD@gmx.fr>
826 Pedro Alves <palves@redhat.com>
827
828 * common/linux-osdata.c (linux_xfer_osdata_fds): Decrease buffer
829 size parameter passed to readlink by one byte.
830 * fbsd-nat.c (fbsd_pid_to_exec_file): Ditto.
831 * linux-nat.c (linux_child_pid_to_exec_file): Ditto.
832 * nbsd-nat.c (nbsd_pid_to_exec_file): Ditto.
833 * inf-child.c (inf_child_fileio_readlink): Decrease local buffer's
834 size by one byte.
835
836 2012-11-26 Yao Qi <yao@codesourcery.com>
837
838 * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
839 extraneous parentheses.
840
841 2012-11-26 Yao Qi <yao@codesourcery.com>
842
843 * remote.c (remote_start_remote): Typo fix.
844
845 2012-11-23 David S. Miller <davem@davemloft.net>
846
847 * sparc-tdep.h (struct sparc_fpregset): New data structure.
848 (sparc32_sunos4_fpregset, sparc32_bsd_fpregset,
849 sparc32_sol2_fpregset): Declare new globals.
850 (sparc32_supply_fpregset, sparc32_collect_fpregset): Add new
851 'fpregset' argument.
852 * sparc64-tdep.h (sparc64_supply_fpregset,
853 sparc64_collect_fpregset): Likewise.
854 (sparc64_sol2_fpregset, sparc64_bsd_fpregset): Declare new
855 globals.
856 * sparc-nat.h (struct sparc_fpregset): Add forward declaration.
857 (sparc_fpregset): Declare new global.
858 (sparc_supply_fpregset, sparc_collect_fpregset): Add new
859 'fpregset' argument.
860 * sparc-linux-nat.c (supply_fpregset): Pass sparc_fpregset down
861 into handler.
862 (fill_fpregset): Likewise.
863 (_initialize_sparc_linux_nat): Set sparc_fpregset to
864 sparc32_bsd_fpregset.
865 * sparc-linux-tdep.c (sparc32_linux_supply_core_fpregset): Pass
866 sparc32_bsd_fpregset down into handler.
867 (sparc32_linux_collect_core_fpregset): Likewise.
868 * sparc-nat.c (sparc_fpregset): Define.
869 (sparc_supply_fpregset): Add 'fpregset' argument.
870 (sparc_collect_fpregset): Likewise.
871 (sparc_fetch_inferior_registers): Pass sparc_fpregset down
872 into fpregset handler.
873 (sparc_store_inferior_registers): Likewise.
874 (_initialize_sparc_nat): Set sparc_fpregset to
875 sparc32_sunos4_fpregset if NULL.
876 * sparc-sol2-nat.c (supply_gregset): Pass sparc_sol2_fpregset
877 down into handler.
878 (fill_fpregset): Likewise.
879 * sparc-sol2-tdep.c (sparc32_sol2_fpregset): Define.
880 * sparc-tdep.c (sparc32_supply_fpregset): Add fpregset arg and
881 use it to compute offsets.
882 (sparc32_collect_fpregset): Likewise.
883 (sparc32_sunos4_fpregset, sparc32_bsd_fpregset): Define.
884 * sparc64-linux-nat.c (supply_fpregset): Pass sparc64_bsd_fpregset
885 down into handler.
886 (fill_fpregset): Likewise.
887 * sparc64-linux-tdep.c (sparc64_linux_supply_core_fpregset):
888 Likewise.
889 (sparc64_linux_collect_core_fpregset): Likewise.
890 * sparc64-sol2-tdep.c (sparc64_sol2_fpregset): Define.
891 * sparc64-tdep.c (sparc64_supply_fpregset): Add fpregset arg and
892 use it to compute offsets.
893 (sparc64_collect_fpregset): Likewise.
894 (sparc64_bsd_fpregset): Define.
895 * sparc64fbsd-tdep.c (sparc64fbsd_supply_fpregset): Padd
896 sparc64_bsd_fpregset down into handler.
897 (sparc64fbsd_collect_fpregset): Likewise.
898 * sparc64nbsd-nat.c (sparc64nbsd_supply_fpregset): Add fpregset arg
899 and pass sparc{32,64}_bsd_fpregset down into handler.
900 (sparc64nbsd_collect_fpregset): Likewise.
901 * sparc64nbsd-tdep.c (sparc64nbsd_supply_fpregset): Pass
902 sparc64_bsd_fpregset down into handler.
903 * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Likewise.
904 * sparcnbsd-nat.c (_initialize_sparcnbsd_nat): Set sparc_fpregset
905 to sparc32_bsd_fpregset.
906 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Pass
907 sparc32_bsd_fpregset down into sparc32_supply_fpregset.
908 (sparc32nbsd_supply_fpregset): Likewise.
909
910 2012-11-21 Tom Tromey <tromey@redhat.com>
911
912 * gdbtypes.h (struct cplus_struct_type) <localtype_ptr>: Remove
913 field.
914 (TYPE_LOCALTYPE_PTR, TYPE_LOCALTYPE_FILE, TYPE_LOCALTYPE_LINE):
915 Remove.
916 * c-typeprint.c (c_type_print_base): Update.
917
918 2012-11-21 Yao Qi <yao@codesourcery.com>
919
920 PR tdep/7438
921 * gdbarch.sh (smash_text_address): Remove.
922 * gdbarch.c, gdbarch.h: Regenerate.
923 * arm-tdep.c (arm_smash_text_address): Remove.
924 (arm_gdbarch_init): Don't call set_gdbarch_smash_text_address.
925 * hppa-tdep.c (hppa_smash_text_address): Remove.
926 (hppa_addr_bits_remove): Rename from hppa_smash_text_address.
927 (hppa_gdbarch_init): Don't call set_gdbarch_smash_text_address.
928 Caller update.
929 * coffread.c (coff_symtab_read): Caller update.
930 * dbxread.c (process_one_symbol): Likewise.
931 * elfread.c (record_minimal_symbol): Likewise.
932 * somread.c (som_symtab_read): Likewise.
933
934 2012-11-20 Pierre Muller <muller@sourceware.org>
935
936 ARI fixes: sprintf rule.
937 Replace sprintf function calls for char arrays by
938 calls to xsnprintf calls.
939 * arm-tdep.c (arm_push_dummy_call): Replace sprintf by xsnprintf.
940 (arm_dwarf_reg_to_regnum, arm_return_value): Ditto.
941 (arm_neon_quad_read, arm_pseudo_read): Ditto.
942 (arm_neon_quad_write, arm_pseudo_write): Ditto.
943 * breakpoint.c (condition_completer): Ditto.
944 (create_tracepoint_from_upload): Ditto.
945 * dwarf2read.c (file_full_name): Ditto.
946 * gcore.c (gcore_command): Ditto.
947 * gnu-nat.c (proc_string, gnu_pid_to_str): Ditto.
948 * go32-nat.c (go32_sysinfo): Ditto.
949 * interps.c (interp_set): Ditto.
950 * m32c-tdep.c (make_types): Ditto.
951 * ppc-linux-nat.c (fetch_register, store_register): Ditto.
952 * remote-m32r-sdi.c (m32r_open): Ditto.
953 * sol-thread.c (td_err_string): Ditto.
954 (td_state_string, solaris_pid_to_str): Ditto.
955 * symtab.c (gdb_mangle_name): Ditto.
956 * cli/cli-script.c (execute_control_command): Ditto.
957 (define_command, document_command): Ditto.
958 * tui/tui-io.c (tui_rl_display_match_list): Ditto.
959 * tui/tui-stack.c (tui_make_status_line): Ditto.
960 * tui/tui-win.c (tui_update_gdb_sizes): Ditto.
961
962 2012-11-20 Mike Frysinger <vapier@gentoo.org>
963
964 * cli/cli-decode.c (complete_on_cmdlist): Add a fourth arg and check
965 it when looking at ptr->func.
966 * command.h (complete_on_cmdlist): Add a fourth arg.
967 * completer.c (complete_line_internal): Add local ignore_help_classes,
968 and set it to 1 when reason is not handle_help. Pass this down to
969 lookup_cmd_1 and complete_on_cmdlist.
970
971 2012-11-20 Tom Tromey <tromey@redhat.com>
972
973 * completer.c (count_struct_fields): Remove.
974 (expression_completer): Don't call count_struct_fields.
975
976 2012-11-20 Pedro Alves <palves@redhat.com>
977
978 * annotate.c (breakpoints_changed): Rename to ...
979 (annotate_breakpoints_changed): ... this.
980 (annotate_stopped, breakpoint_changed): Adjust caller.
981 * annotate.h (breakpoints_changed): Rename to ...
982 (annotate_breakpoints_changed): ... this.
983 * breakpoint.c (set_breakpoint_condition, breakpoint_set_commands)
984 (do_map_commands_command, init_raw_breakpoint, clear_command)
985 (set_ignore_count, enable_breakpoint_disp): Adjust callers.
986
987 2012-11-20 David S. Miller <davem@davemloft.net>
988
989 * common/linux-osdata.c (get_number_of_cpu_cores): Delete.
990 (linux_xfer_osdata_processes): Fetch _SC_NPROCESSORS_ONLN via
991 sysconf.
992 (get_cores_used_by_process): Update comment.
993
994 2012-11-20 Yao Qi <yao@codesourcery.com>
995
996 * objfiles.c (init_entry_point_info): Remove trailing spaces.
997
998 2012-11-20 Yao Qi <yao@codesourcery.com>
999
1000 * infrun.c (handle_inferior_event): Pass 'saved_singlestep_ptid'
1001 to deprecated_context_hook.
1002
1003 2012-11-19 Yao Qi <yao@codesourcery.com>
1004
1005 * infrun.c (infwait_state): Add static.
1006
1007 2012-11-16 Keith Seitz <keiths@redhat.com>
1008
1009 PR c++/13615
1010 * cp-namespace.c (cp_lookup_symbol_in_namespace): Add SEARCH
1011 parameter and pass it to lookup_symbol_file.
1012 (cp_lookup_symbol_imports): Tell cp_lookup_symbol_in_namespace
1013 to search base classes.
1014 (cp_lookup_symbol_namespace): Likewise.
1015 (lookup_namespace_scope): Likewise.
1016 (lookup_symbol_file): Add SEARCH parameter.
1017 If SEARCH is non-zero and no symbol is found, lookup the class
1018 and call cp_lookup_nested_symbol.
1019 (find_symbol_in_baseclass): New function.
1020 (cp_lookup_nested_symbol): Do not let
1021 cp_lookup_symbol_in_namespace search through base classes.
1022 Do that later when there is no global symbol match.
1023
1024 2012-11-16 Doug Evans <dje@google.com>
1025
1026 * main.c (gdb_datadir_provided): New static global.
1027 (get_init_files): If --data-directory is provided,
1028 and SYSTEM_GDBINIT lives in data-directory, look for it there.
1029 * NEWS: Mention it.
1030
1031 2012-11-15 Pierre Muller <muller@sourceware.org>
1032
1033 ARI fixes: move gdb_wait and gdb_stat headers to common subdirectory.
1034 * gdb_stat.h: Delete. Moved to common directory.
1035 * common/gdb_stat.h: New file.
1036 * gdb_wait.h: Delete. Moved to common directory.
1037 * common/gdb_wait.h: New file.
1038 * Makefile.in (H_FILES_NO_SRC): Adapt to new header
1039 location.
1040 * contrib/ari/gdb_ari.sh (wait.h rule): Adapt to new gdb_wait.h
1041 location.
1042 (stat.h rule): Adapt to new gdb_stat.h location.
1043 * common/linux-osdata.c: Include "gdb_stat.h" header instead of
1044 <sys/stat.h> header.
1045 * common/linux-ptrace.c: Include "gdb_wait.h" header instead of
1046 <sys/wait.h> header.
1047
1048 2012-11-15 Pierre Muller <muller@sourceware.org>
1049
1050 * configure.ac (AC_HEADER_STAT): Remove.
1051 * gdb_stat.h (STAT_MACROS_BROKEN): Remove macro use
1052 and corresponding code.
1053 * configure: Regenerate.
1054 * config.in: Regenerate.
1055
1056 2012-11-15 Pierre Muller <muller@sourceware.org>
1057
1058 ARI xasprintf rule fixes.
1059 * dwarf2read.c (create_dwo_in_dwp): Use xstrprintf function
1060 instead of xasprintf.
1061 (open_and_init_dwp_file): Ditto.
1062
1063 2012-11-14 Luis Machado <lgustavo@codesourcery.com>
1064
1065 * value.c (value_actual_type): Check for TYPE_CODE_STRUCT
1066 target types.
1067
1068 2012-11-14 Tom Tromey <tromey@redhat.com>
1069
1070 * configure, config.in: Rebuild.
1071 * configure.ac: Don't check for ctype.h, time.h.
1072 * expprint.c: Don't use HAVE_CTYPE_H.
1073
1074 2012-11-13 Tom Tromey <tromey@redhat.com>
1075
1076 * gdbarch.h, gdbarch.c: Rebuild.
1077 * gdbarch.sh (set_target_gdbarch): Rename from
1078 deprecated_target_gdbarch_select_hack.
1079 * arch-utils.c (gdbarch_update_p): Update.
1080 (set_gdbarch_from_file): Update.
1081
1082 2012-11-14 Pierre Muller <muller@sourceware.org>
1083
1084 * MAINTAINERS (Responsible Maintainers/misc): Add myself
1085 as responsible of contrib/ari directory.
1086
1087 2012-11-14 Daniel Jacobowitz <dan@codesourcery.com>
1088 Yao Qi <yao@codesourcery.com>
1089
1090 * arm-tdep.c (arm_addr_bits_remove): Do not adjust the low
1091 bit of EXC_RETURN.
1092 (arm_m_exception_cache, arm_m_exception_this_id)
1093 (arm_m_exception_prev_register, arm_m_exception_unwind_sniffer)
1094 (arm_m_exception_unwind): New.
1095 (arm_gdbarch_init): Register arm_m_exception_unwind.
1096
1097 2012-11-13 Giuseppe Montalto <giuseppe.montalto@st.com>
1098
1099 * mi/mi-main.c (mi_cmd_data_write_memory): Handle additional
1100 parameter COUNT, for pattern filling of memory regions.
1101 * NEWS: Mention it.
1102
1103 2012-11-13 Markus Metzger <markus.t.metzger@intel.com>
1104
1105 * disasm.h (DISASSEMBLY_FILENAME): New macro.
1106 * disasm.c (do_mixed_source_and_assembly): Pass filename flag on
1107 to print_source_lines ().
1108 * symtab.h (PRINT_SOURCE_LINES_FILENAME): New print source lines
1109 flag.
1110 * source.c (print_source_lines_base): Prefix source line with
1111 filename if PRINT_SOURCE_LINES_FILENAME flag is set.
1112
1113 2012-11-13 Markus Metzger <markus.t.metzger@intel.com>
1114
1115 * symtab.h (print_source_lines_flags): New enum.
1116 * source.c (print_source_lines_base): Change noerror to flags.
1117 (print_source_lines): Change noerror to flags.
1118
1119 2012-11-13 Pierre Muller <muller@sourceware.org>
1120
1121 ARI fixes: Avoid sprintf function use rule.
1122 * charset.c (convert_between_encodings): Use xsnprintf.
1123 * cli-out.c (cli_field_int): Likewise.
1124 * cp-namespace.c (cp_lookup_nested_symbol): Likewise.
1125 * expprint.c (op_name_standard): Likewise.
1126 * frv-tdep.c (set_variant_num_gprs): Likewise.
1127 (set_variant_num_fprs): Likewise.
1128 * m68hc11-tdep.c (m68hc11_initialize_register_info): Likewise.
1129 * nto-tdep.c (nto_find_and_open_solib): Likewise.
1130 (nto_init_solib_absolute_prefix): Likewise.
1131 * source.c (init_source_path): Likewise.
1132 (print_source_lines_base): Likewise.
1133 * valprint.c (print_wchar): Likewise.
1134 * mi/mi-out.c (mi_field_int): Likewise.
1135 windows-nat.c (windows_pid_to_exec_file): Likewise.
1136 (windows_create_inferior): Likewise.
1137 (_initialize_check_for_gdb_ini): Likewise.
1138
1139 2012-11-12 Joel Brobecker <brobecker@adacore.com>
1140
1141 * frame.h (deprecated_frame_register_read): Renames
1142 frame_register_read.
1143 * frame.c (deprecated_frame_register_read): Renames
1144 frame_register_read. Update all callers.
1145 * i386-tdep.c: Update all callers of frame_register_read.
1146 * infcmd.c: Likewise.
1147 * jit.c: Likewise.
1148 * mips-tdep.c: Likewise.
1149 * mt-tdep.c: Likewise.
1150 * sh64-tdep.c: Likewise.
1151
1152 2012-11-12 Joel Brobecker <brobecker@adacore.com>
1153
1154 * frame.h (frame_register_read): Remove FIXME comment.
1155 * frame.c (frame_register_read): Add suggestion explaining
1156 which function to use in place of this one.
1157
1158 2012-11-12 Tom Tromey <tromey@redhat.com>
1159
1160 * python/python.c (start_type_printers): Initialize 'result_obj'.
1161
1162 2012-11-12 Tom Tromey <tromey@redhat.com>
1163
1164 * NEWS: Update.
1165 * data-directory/Makefile.in (PYTHON_FILES): Add
1166 type_printers.py.
1167 * python/lib/gdb/command/type_printers.py: New file.
1168 * python/lib/gdb/command/types.py (TypePrinter): New class.
1169 (_get_some_type_recognizers, get_type_recognizers,
1170 apply_type_recognizers, register_type_printer): New
1171 functions.
1172 * python/py-objfile.c (objfile_object) <type_printers>: New
1173 field.
1174 (objfpy_dealloc): Decref new field.
1175 (objfpy_new): Set new field.
1176 (objfpy_get_type_printers, objfpy_set_type_printers): New
1177 functions.
1178 (objfile_to_objfile_object): Set new field.
1179 (objfile_getset): Add "type_printers".
1180 * python/py-progspace.c (pspace_object) <type_printers>: New
1181 field.
1182 (pspy_dealloc): Decref new field.
1183 (pspy_new): Set new field.
1184 (pspy_get_type_printers, pspy_set_type_printers): New functions.
1185 (pspace_to_pspace_object): Set new field.
1186 (pspace_getset): Add "type_printers".
1187 * python/python.c (start_type_printers, apply_type_printers,
1188 free_type_printers): New functions.
1189 (_initialize_python): Set gdb.type_printers.
1190 * python/python.h (start_type_printers, apply_type_printers,
1191 free_type_printers): Declare.
1192 * typeprint.c (type_print_raw_options, default_ptype_flags):
1193 Update for new fields.
1194 (do_free_global_table, create_global_typedef_table,
1195 find_global_typedef): New functions.
1196 (find_typedef_in_hash): Use find_global_typedef.
1197 (whatis_exp): Use create_global_typedef_table. Change cleanup
1198 handling.
1199 * typeprint.h (struct type_print_options) <global_typedefs,
1200 global_printers>: New fields.
1201
1202 2012-11-12 Tom Tromey <tromey@redhat.com>
1203
1204 * c-typeprint.c (find_typedef_for_canonicalize,
1205 print_name_maybe_canonical): New functions.
1206 (c_print_type): Look up type name.
1207 (cp_type_print_derivation_info): Add flags argument. Use
1208 print_name_maybe_canonical.
1209 (cp_type_print_method_args): Add wrapping.
1210 (c_type_print_varspec_prefix): Use print_name_maybe_canonical.
1211 (c_type_print_template_args): New function.
1212 (c_type_print_base): Change wrapping. Use
1213 print_name_maybe_canonical.
1214 <TYPE_CODE_STRUCT>: Possibly create a typedef hash, and do
1215 type name lookups.
1216 * gdbtypes.c (types_equal): No longer static.
1217 * gdbtypes.h (types_equal): Declare.
1218 * typeprint.c (type_print_raw_options, default_ptype_flags):
1219 Update.
1220 (struct typedef_hash_table): New.
1221 (hash_typedef_field, eq_typedef_field,
1222 recursively_update_typedef_hash, add_template_parameters,
1223 create_typedef_hash, free_typedef_hash, do_free_typedef_hash,
1224 make_cleanup_free_typedef_hash, copy_typedef_hash_element,
1225 copy_typedef_hash, find_typedef_in_hash): New functions.
1226 * typeprint.h (struct type_print_options) <local_typedefs>:
1227 New field.
1228 (recursively_update_typedef_hash, add_template_parameters,
1229 create_typedef_hash, free_typedef_hash,
1230 make_cleanup_free_typedef_hash, copy_typedef_hash,
1231 find_typedef_in_hash): Declare.
1232
1233 2012-11-12 Tom Tromey <tromey@redhat.com>
1234
1235 * cp-support.c (inspect_type,
1236 replace_typedefs_qualified_name, replace_typedefs): Add
1237 finder, data arguments. Call as needed.
1238 (cp_canonicalize_string_full): New function.
1239 (cp_canonicalize_string_no_typedefs): Rewrite.
1240 * cp-support.h (canonicalization_ftype): New typedef.
1241 (cp_canonicalize_string_full): Declare.
1242
1243 2012-11-12 Tom Tromey <tromey@redhat.com>
1244
1245 * NEWS: Update.
1246 * c-typeprint.c (c_type_print_base): Handle print_method and
1247 print_typedefs flags.
1248 * gdbcmd.h (setprinttypelist, showprinttypelist): Declare.
1249 * python/py-type.c (typy_str): Use LA_PRINT_TYPE and raw
1250 options.
1251 * typeprint.c (type_print_raw_options, default_ptype_flags):
1252 Update for new field.s
1253 (whatis_exp): Parse flags. Use LA_PRINT_TYPE.
1254 (setprinttypelist, showprinttypelist, print_methods,
1255 print_typedefs): New globals.
1256 (set_print_type, show_print_type, set_print_type_methods,
1257 show_print_type_methods, set_print_type_typedefs,
1258 show_print_type_typedefs): New functions.
1259 (_initialize_typeprint): Update documentation. Add "print
1260 type methods" and "print type typedefs" parameters.
1261 * typeprint.h (struct type_print_options) <print_methods,
1262 print_typedefs>: New fields.
1263
1264 2012-11-12 Tom Tromey <tromey@redhat.com>
1265
1266 * c-typeprint.c (cp_type_print_method_args): Add flags
1267 argument. Call c_print_type, not type_print.
1268 (c_type_print_base): Call c_print_type, not type_print.
1269 Update.
1270
1271 2012-11-12 Tom Tromey <tromey@redhat.com>
1272
1273 * ada-lang.c (user_select_syms, ada_print_subexp): Pass flags
1274 to type-printing functions.
1275 * ada-lang.h (ada_print_type): Add argument.
1276 * ada-typeprint.c (print_array_type, print_variant_clauses,
1277 print_variant_part, print_selected_record_field_types,
1278 print_record_field_types, print_unchecked_union_type,
1279 print_func_type, ada_print_type): Add flags argument.
1280 (ada_print_typedef): Update.
1281 * c-exp.y (OPERATOR conversion_type_id): Update.
1282 * c-lang.h (c_print_type, c_type_print_base): Update.
1283 * c-typeprint.c (c_print_type, c_type_print_varspec_prefix,
1284 c_type_print_modifier, c_type_print_args,
1285 c_type_print_varspec_suffix, c_type_print_base): Add flags
1286 argument.
1287 * cp-valprint.c (cp_print_class_member): Update.
1288 * dwarf2read.c (dwarf2_compute_name): Update.
1289 * f-lang.h (f_print_type): Add argument.
1290 * f-typeprint.c (f_print_type): Add flags argument.
1291 * gnu-v3-abi.c (gnuv3_print_method_ptr): Update.
1292 * go-lang.h (go_print_type): Add argument.
1293 * go-typeprint.c (go_print_type): Add flags argument.
1294 * jv-lang.h (java_print_type): Add argument.
1295 * jv-typeprint.c (java_type_print_base, java_print_type): Add
1296 flags argument.
1297 * language.c (unk_lang_print_type): Add flags argument.
1298 * language.h (struct language_defn) <la_print_type>: Add flags
1299 argument.
1300 (LA_PRINT_TYPE): Likewise.
1301 * m2-lang.h (m2_print_type): Add argument.
1302 * m2-typeprint.c (m2_print_type, m2_range, m2_typedef,
1303 m2_array, m2_pointer, m2_ref, m2_procedure, m2_long_set,
1304 m2_unbounded_array, m2_record_fields): Add flags argument.
1305 * p-lang.h (pascal_print_type, pascal_type_print_base,
1306 pascal_type_print_varspec_prefix): Add argument.
1307 * p-typeprint.c (pascal_print_type,
1308 pascal_type_print_varspec_prefix, pascal_print_func_args,
1309 pascal_type_print_varspec_suffix, pascal_type_print_base): Add
1310 flags argument.
1311 * symmisc.c (print_symbol): Update.
1312 * typeprint.c (type_print_raw_options, default_ptype_flags):
1313 New globals.
1314 (type_print): Update.
1315 * typeprint.h (struct type_print_options): New.
1316 (type_print_raw_options): Declare.
1317 (c_type_print_varspec_suffix, c_type_print_args): Add argument.
1318
1319 2012-11-10 Keith Seitz <keiths@redhat.com>
1320
1321 * breakpoint.c (clear_command): Add cleanup for
1322 sals.sals if an argument is given.
1323
1324 * linespec.c (parse_linespec): Do cleanups after
1325 parsing a convenience variable.
1326
1327 2012-11-10 Keith Seitz <keiths@redhat.com>
1328
1329 PR gdb/14288
1330 * c-valprint.c (c_val_print): For character arrays
1331 with "print null" option on, print ellipses if
1332 the output is truncated and the next character is not \000.
1333 * valprint.c (MAX_WCHARS): Define.
1334 (WCHAR_BUFLEN): Likewise.
1335 (WCHAR_BUFLEN_MAX): Likewise.
1336 (struct converted_character): New structure.
1337 (count_next_character): New function.
1338 (print_converted_chars_to_obstack): New function.
1339 (generic_printstr): Rewrite using count_next_character
1340 and print_converted_chars_to_obstack.
1341
1342 2012-11-10 Stephane Carrez <Stephane.Carrez@gmail.com>
1343
1344 * tui/tui.c (tui_rl_command_key): Switch to TUI_ONE_COMMAND_MODE
1345 while executing the gdb command.
1346 (tui_rl_startup_hook): Do not switch back to TUI_SINGLE_KEY_MODE if we
1347 are called from prompt_for_continue.
1348 * tui/tui-io.c (tui_redisplay_readline): Likewise.
1349
1350 2012-11-10 Stephane Carrez <Stephane.Carrez@gmail.com>
1351
1352 PR tui/9584
1353
1354 * tui/tui.c (tui_rl_command_key): Do not call execute_command
1355 but insert the command to execute in readline's buffer.
1356
1357 2012-11-09 Tom Tromey <tromey@redhat.com>
1358
1359 * gdbarch.sh (target_gdbarch): Remove macro.
1360 (get_target_gdbarch): Rename to target_gdbarch.
1361 * gdbarch.c, gdbarch.h: Rebuild.
1362 * ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
1363 arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
1364 darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
1365 filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
1366 ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
1367 linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
1368 mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
1369 mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
1370 nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
1371 procfs.c, progspace.c, ravenscar-thread.c, record.c,
1372 remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
1373 rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
1374 solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
1375 solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
1376 solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
1377 spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
1378 target-descriptions.c, target.c, target.h, tracepoint.c,
1379 windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
1380 common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
1381 python/py-inferior.c, python/python.c: Update.
1382
1383 2012-11-09 Andrew Burgess <aburgess@broadcom.com>
1384
1385 * source.c (print_source_lines_base): Add fullname field giving
1386 full path to file in mi output.
1387 * NEWS: Mention the new fullname field.
1388
1389 2012-11-09 Yao Qi <yao@codesourcery.com>
1390
1391 * NEWS: Mention the fix to the ambiguity of 'fo' command.
1392
1393 2012-11-09 Pedro Alves <palves@redhat.com>
1394
1395 PR gdb/14306
1396
1397 * infrun.c: Include target-descriptions.h.
1398 (follow_exec): Fetch new target description.
1399
1400 2012-11-09 Yao Qi <yao@codesourcery.com>
1401
1402 * i386-tdep.c (i386_analyze_frame_setup): Handle opcode
1403 0x8d (lea).
1404
1405 2012-11-09 Yao Qi <yao@codesourcery.com>
1406
1407 * breakpoint.c: Declare set_tracepoint_count.
1408 (install_breakpoint): Call set_tracepoint_count if B is a
1409 tracepoint.
1410 (trace_command): Don't call set_tracepoint_count. Re-indent.
1411 (strace_command, ftrace_command):
1412 (create_tracepoint_from_upload): Likewise.
1413
1414 2012-11-09 Pedro Alves <palves@redhat.com>
1415
1416 * gdbarch.sh (target_gdbarch) <gdbarch.h>: Reimplement as macro.
1417 (get_target_gdbarch) <gdbarch.h>: New function.
1418 (startup_gdbarch) <gdbarch.h>: Declare.
1419 <gdbarch.c> (target_gdbarch): Delete.
1420 <gdbarch.c> (deprecated_target_gdbarch_select_hack): Set the
1421 current inferior's gdbarch.
1422 <gdbarch.c> (get_target_gdbarch): New function.
1423 * inferior.c: Include target-descriptions.h.
1424 (free_inferior): Free target description info.
1425 (add_inferior_with_spaces): Set the inferior's initial
1426 architecture.
1427 (clone_inferior_command): Copy the original inferior's target
1428 description if it was user specified.
1429 (initialize_inferiors): Add comment.
1430 * inferior.h (struct target_desc_info): Forward declare.
1431 (struct inferior) <gdbarch>: New field.
1432 * linux-nat.c: Include target-descriptions.h.
1433 (linux_child_follow_fork): Copy the parent's architecture and
1434 target description to the child.
1435 * target-descriptions.c: Include inferior.h.
1436 (struct target_desc_info): New structure, holding the equivalents
1437 of ...
1438 (target_desc_fetched, current_target_desc)
1439 (target_description_filename): ... these removed globals.
1440 (get_tdesc_info, target_desc_info_from_user_p)
1441 (copy_inferior_target_desc_info, target_desc_info_free): New.
1442 (target_desc_fetched, current_target_desc)
1443 (target_description_filename): Reimplemented as convenience
1444 macros.
1445 (tdesc_filename_cmd_string): New global.
1446 (set_tdesc_filename_cmd): Copy the string manipulated by the "set
1447 tdescs filename ..." commands to the per-inferior equivalent.
1448 (show_tdesc_filename_cmd): Get the value to show from the
1449 per-inferior description filename.
1450 (_initilize_target_descriptions): Change the "set/show tdesc
1451 filename" commands' variable.
1452 * target-descriptions.h (struct target_desc, struct target_desc_info)
1453 (struct inferior): Forward declare.
1454 (target_find_description, target_clear_description)
1455 (target_current_description): Adjust comments.
1456 (copy_inferior_target_desc_info, target_desc_info_free)
1457 (target_desc_info_from_user_p). Declare.
1458
1459 2012-11-08 Stephane Carrez <Stephane.Carrez@gmail.com>
1460
1461 * tui/tui-hooks.c (tui_about_to_proceed): New function.
1462 (tui_target_wait_hook): Remove.
1463 (tui_install_hooks): Install the about_to_proceed observer.
1464 (tui_remove_hooks): And remove it here.
1465
1466 2012-11-08 Tom Tromey <tromey@redhat.com>
1467
1468 * linux-tdep.c (linux_make_siginfo_note): New function.
1469 (linux_make_corefile_notes): Use it.
1470 * corelow.c (get_core_siginfo): New function.
1471 (core_xfer_partial) <TARGET_OBJECT_SIGNAL_INFO>: New case.
1472
1473 2012-11-08 Tom Tromey <tromey@redhat.com>
1474
1475 PR gdb/14704:
1476 * gdb_bfd.c (gdb_bfd_ref): Set BFD_DECOMPRESS.
1477 (zlib_decompress_section): Remove.
1478 (gdb_bfd_map_section): Only check for compressed section
1479 in mmap case. Use bfd_get_full_section_contents.
1480 * osabi.c (check_note): Add 'sectsize' argument. Read
1481 section data.
1482 (generic_elf_osabi_sniff_abi_tag_sections): Don't read
1483 section data. Update for check_note change.
1484 * xcoffread.c (xcoff_initial_scan): Use
1485 bfd_get_full_section_contents.
1486 * py-auto-load.c (auto_load_section_scripts): Use
1487 bfd_get_full_section_contents.
1488 * contrib/cc-with-tweaks.sh: Add -Z option.
1489
1490 2012-11-08 Tom Tromey <tromey@redhat.com>
1491
1492 * python/py-bpevent.c: Include defs.h.
1493 * python/py-continueevent.c: Include defs.h.
1494 * python/py-event.c: Include defs.h.
1495 * python/py-event.h: Don't include defs.h.
1496 * python/py-events.h: Don't include defs.h.
1497 * python/py-evts.c: Include defs.h.
1498 * python/py-exitedevent.c: Include defs.h.
1499 * python/py-newobjfileevent.c: Include defs.h.
1500 * python/py-signalevent.c: Include defs.h.
1501 * python/py-stopevent.c: Include defs.h.
1502 * python/py-threadevent.c: Include defs.h.
1503
1504 2012-11-08 Pierre Muller <muller@sourceware.org>
1505
1506 * update-web-ari.sh (print_heading): Add number of files
1507 checked.
1508 (nb_files): New variable counting the number of sources
1509 files found by gdb_find.sh script.
1510 (debug_awk): New variable to allow extra debug output.
1511 (indexes): Add more information if DEBUG_AWK is set.
1512
1513 2012-11-08 Edjunior Machado <emachado@linux.vnet.ibm.com>
1514
1515 * ppc-linux-tdep.c (ppc64_standard_linkage1, ppc64_standard_linkage2,
1516 ppc64_standard_linkage3): Mark ld r11 instructions as optional,
1517 following the change in PLT call stubs on linker.
1518
1519 2012-11-08 Pierre Muller <muller@sourceware.org>
1520
1521 * contrib/ari/gdb_ari.sh (LANG, LC_ALL): Use 'C' instead of 'c'
1522 as default language.
1523 (AWK): Use = instead of == for sh test to avoid warning.
1524 (Linux rule): Correct [:digit] into [[:digit:]].
1525 (__func__ rule): Adapt to "gdb_assert.h" move to common subdirectory.
1526 (vasprintf rule): Adapt to common subdirectory moves.
1527 (xasprintf rule): Idem.
1528 (xvasprintf rule): Idem.
1529 (var_boolean rule): Accept occurence in == or != test.
1530
1531 * contrib/ari/gdb_find.sh: Also prune gdbtk directory.
1532
1533 2012-11-08 Stephane Carrez <Stephane.Carrez@gmail.com>
1534
1535 * tui/tui-hooks.c (tui_inferior_exit): New function.
1536 (tui_detach_hook): Remove.
1537 (tui_install_hooks): Install the inferior exit observer.
1538 (tui_remove_hooks): Remove it.
1539
1540 2012-11-08 Yao Qi <yao@codesourcery.com>
1541
1542 PR gdb/14777.
1543 * source.c (_initialize_source): Call add_com_alias to abbreviate
1544 'forward-search' as 'fo'.
1545
1546 2012-11-07 Pedro Alves <palves@redhat.com>
1547
1548 * arm-tdep.c: Make defs.h be the first include.
1549 * coff-pe-read.c: Ditto.
1550 * gnu-nat.c: Ditto.
1551 * go32-nat.c: Ditto.
1552 * i386-nat.c: Ditto.
1553 * ppcnbsd-nat.c: Ditto.
1554 * ada-varobj.h: Don't include defs.h.
1555 * i386-darwin-tdep.h: Ditto.
1556 * i386-nat.h: Ditto.
1557
1558 2012-11-07 Pedro Alves <palves@redhat.com>
1559
1560 * MAINTAINERS: New FSF-appointed maintainers replace the Steering
1561 Committee.
1562
1563 2012-11-07 Pierre Muller <muller@sourceware.org>
1564
1565 * common/linux-osdata.c (dirent.h): ARI fix: Remove.
1566 File already uses "gdb_dirent.h" header.
1567
1568 2012-11-07 Yao Qi <yao@codesourcery.com>
1569
1570 * breakpoint.c (get_tracepoint_by_number): Remove 'extern int
1571 tracepoint_count'.
1572
1573 2012-11-06 Tom Tromey <tromey@redhat.com>
1574
1575 * target.h (inferior_has_forked, inferior_has_vforked)
1576 (inferior_has_execd, inferior_has_called_syscall): Remove
1577 declarations.
1578
1579 2012-11-06 Pierre Muller <muller@sourceware.org>
1580
1581 * remote.c (remote_insert_hw_breakpoint): ARI fix,
1582 add missing internalization markup.
1583
1584 2012-11-06 Pedro Alves <palves@redhat.com>
1585
1586 PR gdb/14810
1587
1588 * breakpoint.c (bpstat_stop_status): Skip disabled locations.
1589
1590 2012-11-06 Pierre Muller <muller@sourceware.org>
1591
1592 * contrib/ari/create-web-ari-in-src.sh: Avoid problem if script
1593 is not executable.
1594
1595 2012-11-05 Joel Brobecker <brobecker@adacore.com>
1596
1597 * gnulib/update-gnulib.sh: New script.
1598
1599 2012-11-05 Stephane Carrez <Stephane.Carrez@gmail.com>
1600
1601 * MAINTAINERS: Update my email address.
1602
1603 2012-11-05 Tom Tromey <tromey@redhat.com>
1604
1605 * frame.c (put_frame_register): Don't use temporary buffer.
1606
1607 2012-11-05 Pedro Alves <palves@redhat.com>
1608
1609 * inferior.c (exit_inferior_1): Clear 'vfork_parent' in the vfork
1610 child. Clear 'pending_detach'.
1611 * infrun.c (handle_vfork_child_exec_or_exit): Clear
1612 'pending_detach' in the vfork parent.
1613
1614 2012-11-05 Doug Evans <dje@google.com>
1615
1616 Add support for DWP files. http://gcc.gnu.org/wiki/DebugFissionDWP
1617 * contrib/cc-with-tweaks.sh: Add -p parameter to invoke dwp.
1618 * dwarf2read.c: #include "elf-bfd.h".
1619 (struct dwarf2_per_objfile): New members dwp_checked, dwp_file.
1620 (dwop_section_names): Renamed from dwo_section names. All uses
1621 updated. Add entries for .debug_cu_index, .debug_tu_index.
1622 (struct dwo_file): Rename dwo_name to name, dwo_bfd to dbfd.
1623 All uses updated.
1624 (struct dwp_sections): New type.
1625 (struct virtual_dwo_sections): New type.
1626 (struct dwp_hash_table): New type.
1627 (struct dwp_file): New type.
1628 (init_cutu_and_read_dies): Ensure DWO info/types section has been
1629 read in. Handle DWOs coming from DWP files.
1630 (lookup_dwo_file_slot): New function.
1631 (dwarf2_locate_dwo_sections): Move definition closer to use.
1632 (create_dwo_debug_info_hash_table_reader): Renamed from
1633 create_debug_info_hash_table_reader. All callers updated.
1634 (create_dwo_debug_info_hash_table): Renamed from
1635 create_debug_info_hash_table. All callers updated.
1636 (create_dwp_hash_table): New function.
1637 (locate_virtual_dwo_sections, create_dwo_in_dwp): New functions.
1638 (lookup_dwo_in_dwp): New function.
1639 (try_open_dwop_file): Renamed from try_open_dwo_file. New parameter
1640 is_dwp. All callers updated.
1641 (open_dwop_file): Renamed from open_dwo_file. All callers updated.
1642 (open_and_init_dwo_file): Renamed from init_dwo_file.
1643 All callers updated.
1644 (lookup_dwo_file): Delete.
1645 (dwarf2_locate_dwp_sections): New function.
1646 (hash_dwp_loaded_cutus, eq_dwp_loaded_cutus): New functions.
1647 (allocate_dwp_loaded_cutus_table): New function.
1648 (open_and_init_dwp_file): New function.
1649 (lookup_dwo_cutu): New function.
1650 (lookup_dwo_comp_unit, lookup_dwo_type_unit): Call it.
1651
1652 2012-11-03 Yao Qi <yao@codesourcery.com>
1653
1654 Fix PR gdb/14617.
1655 * breakpoint.c (trace_pass_set_count): Call
1656 observer_notify_breakpoint_modified instead of
1657 observer_notify_tracepoint_modified.
1658 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
1659
1660 2012-11-02 Tom Tromey <tromey@redhat.com>
1661
1662 * breakpoint.c (catch_syscall_completer): Pass 'word' as second
1663 argument to complete_on_enum.
1664
1665 2012-11-02 Tom Tromey <tromey@redhat.com>
1666
1667 * configure: Rebuild.
1668 * configure.ac (build_warnings): Add -Wempty-body.
1669 * m68k-tdep.c (m68k_gdbarch_init): Remove empty 'if'.
1670 * remote.c (handle_notification): Use braces for empty 'else' body.
1671 * s390-tdep.c (s390_analyze_prologue): Use braces for empty
1672 'else' body.
1673 * sh64-tdep.c (sh64_push_dummy_call): Use braces for empty
1674 'else' body.
1675 * solib-som.c (som_relocate_section_addresses): Use braces
1676 for empty 'else' body.
1677 * ui-file.c (stdio_file_write): Use braces for empty 'if' body.
1678 (stdio_file_write_async_safe, stdio_file_fputs): Likewise.
1679
1680 2012-11-02 Pedro Alves <palves@redhat.com>
1681
1682 PR gdb/14766
1683
1684 * infrun.c (handle_inferior_event)
1685 <TARGET_WAITKIND_EXITED/TARGET_WAITKIND_SIGNALLED>: Switch to
1686 null_ptid before handling a vfork child exec or exit. Switch to
1687 the event ptid afterwards.
1688
1689 2012-11-02 Yao Qi <yao@codesourcery.com>
1690
1691 * std-operator.def: Remove OP_LABELED.
1692 * eval.c: Remove the declaration of 'get_label'.
1693 (get_label): Remove.
1694 (evaluate_struct_tuple): Remove code handling OP_LABELED.
1695 Update comment.
1696 Remove local variable 'variantno' and related code.
1697 Replace 'substruct_type' with 'struct_type'. Replace 'subfieldno'
1698 with 'fieldno'.
1699 * expprint.c (print_subexp_standard): Likewise.
1700 (dump_subexp_body_standard): Likewise.
1701 * parse.c (operator_length_standard): Likewise.
1702
1703 2012-11-01 Pierre Muller <muller@ics.u-strasbg.fr>
1704
1705 Incorporate ARI web page generator into GDB sources.
1706 * contrib/ari/create-web-ari-in-src.sh: New file.
1707 * contrib/ari/gdb_ari.sh: New file.
1708 * contrib/ari/gdb_find.sh: New file.
1709 * contrib/ari/update-web-ari.sh: New file.
1710
1711 2012-10-31 Tom Tromey <tromey@redhat.com>
1712
1713 * gdbarch.c: Rebuild.
1714 * gdbarch.sh: Remove references to gdbarch_swap.
1715 * corelow.c (core_open): Remove obsolete comment.
1716
1717 2012-10-31 Andrew Burgess <aburgess@broadcom.com>
1718
1719 PR cli/14772
1720 * c-typeprint.c (c_print_type): Don't print a space for vector
1721 types, this is handled within the suffix.
1722 (c_type_print_varspec_suffix): Add a space to vector suffix.
1723
1724 2012-10-26 Pedro Alves <palves@redhat.com>
1725
1726 * amd64-tdep.c (amd64_relocate_instruction): Use
1727 store_unsigned_integer instead of memcpy.
1728 * i386-tdep.c (i386_relocate_instruction): Ditto.
1729
1730 2012-10-26 Pedro Alves <palves@redhat.com>
1731
1732 * infrun.c (handle_inferior_event): Merge handling of
1733 TARGET_WAITKIND_EXITED and TARGET_WAITKIND_SIGNALLED into a single
1734 switch case.
1735
1736 2012-10-26 Pedro Alves <palves@redhat.com>
1737
1738 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_SIGNALLED>:
1739 Remove comment.
1740
1741 2012-10-26 Pedro Alves <palves@redhat.com>
1742
1743 * target.c (target_waitstatus_to_string): Handle
1744 TARGET_WAITKIND_VFORK_DONE.
1745
1746 2012-10-26 Pedro Alves <palves@redhat.com>
1747
1748 * infrun.c (handle_inferior_event): Print TARGET_WAITKIND_VFORKED
1749 as "TARGET_WAITKIND_VFORKED", not "TARGET_WAITKIND_FORKED".
1750
1751 2012-10-24 Tristan Gingold <gingold@adacore.com>
1752
1753 * ravenscar-sparc-thread.c (ravenscar_sparc_fetch_registers):
1754 Add comments.
1755
1756 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1757
1758 * ravenscar-thread.c (ravenscar_wait): Only update the list
1759 of threads and inferior_ptid if the inferior is still alive.
1760
1761 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1762
1763 * ada-lang.c (is_known_support_routine): Use lbasename when
1764 matching the symtab's filename against
1765 known_runtime_file_name_patterns.
1766
1767 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1768
1769 * ada-lang.c (ada_same_array_size_p): New function.
1770 (ada_promote_array_of_integrals): New function.
1771 (coerce_for_assign): Add handling of arrays where the elements
1772 are integrals of a smaller size than the size of the target
1773 array element type.
1774
1775 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1776
1777 * doublest.c (convert_doublest_to_floatformat): Fix comparison
1778 against maximum exponent value.
1779
1780 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1781
1782 * ada-lang.h (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Add entry for
1783 "unwind-seh.c".
1784
1785 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1786
1787 * ada-lang.c (ada_template_to_fixed_record_type_1): Do not
1788 strip typedef layer when computing the fixed type's field type,
1789 only when computing its size.
1790
1791 2012-10-24 Mark Kettenis <kettenis@gnu.org>
1792
1793 PR gdb/12783
1794 * i386-tdep.c (i386_return_value): Handle complex double and long
1795 double.
1796
1797 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1798
1799 * windows-nat.c (windows_create_inferior) [!__CYGWIN__]:
1800 New local variable args_len.
1801 Quote the name of the executable when computing the command line.
1802
1803 2012-10-23 Mark Kettenis <kettenis@gnu.org>
1804
1805 PR gdb/12796
1806 PR gdb/12798
1807 PR gdb/12800
1808 * amd64-tdep.h (enum amd64_regnum): Add AMD64_ST1_REGNUM and
1809 AMD64_FTAG_REGNUM.
1810 * amd64-tdep.c (amd64_classify): Classify complex types.
1811 (amd64_return_value): Handle the COMPLEX_X87 class.
1812
1813 2012-10-23 Joel Brobecker <brobecker@adacore.com>
1814
1815 * rs6000-aix-tdep.c (rs6000_aix_auto_wide_charset): New function.
1816 (rs6000_aix_init_osabi): Set auto_wide_charset gdbarch method.
1817
1818 2012-10-23 Joel Brobecker <brobecker@adacore.com>
1819
1820 * amd64-windows-tdep.c (amd64_windows_auto_wide_charset): New
1821 function.
1822 (amd64_windows_init_abi): Set auto_wide_charset gdbarch method
1823 to amd64_windows_auto_wide_charset.
1824
1825 2012-10-23 Yao Qi <yao@codesourcery.com>
1826
1827 * event-top.c (mark_async_signal_handler_wrapper): Remove.
1828 * event-top.h: Remove its declaration.
1829 (async_request_quit): Call mark_async_signal_handler instead of
1830 mark_async_signal_handler_wrapper.
1831 (async_do_nothing, async_disconnect): Likewise.
1832 (async_stop_sig): Likewise.
1833 * remote.c (handle_remote_sigint): Likewise.
1834 (handle_remote_sigint_twice): Likewise.
1835
1836 2012-10-23 Yao Qi <yao@codesourcery.com>
1837
1838 * event-top.c (sigint_token, sighup_token): Replace 'void *'
1839 with 'static struct async_signal_handler *'.
1840 (sighup_token, sigquit_token, sigstp_token): Likewise.
1841
1842 2012-10-22 Ali Anwar <ali_anwar@codesourcery.com>
1843
1844 * gdbarch.sh (function_list): Use 'pstring' when printing
1845 a variable which could return NULL.
1846 * gdbarch.c: Regenerate.
1847
1848 2012-10-10 Joel Brobecker <brobecker@adacore.com>
1849 Tom Tromey <tromey@redhat.com>
1850
1851 * rs6000-aix-tdep.c (rs6000_aix_osabi_sniffer): Replace
1852 inneffective if condition by gdb assertion. Add function
1853 description comment.
1854
1855 2012-10-19 Joel Brobecker <brobecker@adacore.com>
1856
1857 * parser-defs.h (struct exp_descriptor): Document constraint
1858 on return value for "op_name" callbacks.
1859
1860 2012-10-18 Tom Tromey <tromey@redhat.com>
1861
1862 * tracepoint.c (print_one_static_tracepoint_marker): Constify.
1863 * symtab.c (iterate_over_some_symtabs): Constify.
1864 * source.h (symtab_to_fullname): Return 'const char *'.
1865 * source.c (symtab_to_fullname): Return 'const char *'.
1866 * python/py-symtab.c (stpy_fullname): Constify.
1867 * cli/cli-cmds.c (edit_command): Constify.
1868 * breakpoint.c (print_breakpoint_location)
1869 (update_static_tracepoint): Constify.
1870
1871 2012-10-18 Tom Tromey <tromey@redhat.com>
1872
1873 * breakpoint.c (compare_breakpoints): Fix comparison.
1874
1875 2012-10-18 Tom Tromey <tromey@redhat.com>
1876
1877 * valprint.c (generic_emit_char, generic_printstr): Pass size of
1878 gdb_wchar_t to convert_between_encodings.
1879
1880 2012-10-17 Yao Qi <yao@codesourcery.com>
1881
1882 * breakpoint.c (invalidate_bp_value_on_memory_change): Add one
1883 more parameter 'inferior'.
1884 * corefile.c (write_memory_with_notification): Caller update.
1885
1886 * mi/mi-cmd-var.c: Include "mi-main.h".
1887 (mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
1888 to 1 and restore it later.
1889 * mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
1890 and "data-write-memory-bytes.
1891 * mi/mi-interp.c: Include objfiles.h.
1892 (mi_interpreter_init): Call observer_attach_memory_changed.
1893 (mi_memory_changed): New.
1894 * mi/mi-main.h (struct mi_suppress_notification) <memory>:
1895 New field.
1896
1897 * NEWS: Mention new MI notification "memory-changed".
1898
1899 2012-10-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1900
1901 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Remove comment.
1902
1903 2012-10-15 Doug Evans <dje@google.com>
1904
1905 New option -nh: inhibit loading of ~/.gdbinit.
1906 * NEWS: Mention -nh.
1907 * main.c (captured_main): Recognize and process -nh.
1908 (print_gdb_help): Mention -nh.
1909 * gdb.1: Mention -nh. Remove erroneous docs on -nx behavior.
1910
1911 2012-10-15 H.J. Lu <hongjiu.lu@intel.com>
1912
1913 PR backtrace/14646
1914 PR gdb/14647
1915 * i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
1916 pc_regnum_from_eax.
1917 * i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
1918 nor pc_regnum_from_eax.
1919 * amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
1920 nor pc_regnum_from_eax.
1921
1922 2012-10-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1923
1924 Fix entry values resolving in inlined frames.
1925 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
1926 gdbarch and caller_frame initialization later. Skip INLINE_FRAME
1927 entries of FRAME.
1928
1929 2012-10-15 Joel Brobecker <brobecker@adacore.com>
1930
1931 * configure.ac: Build with -DMS_WIN64 if building with Python
1932 enabled using GCC on amd64-windows.
1933 * configure: Regenerate.
1934
1935 2012-10-15 Tom Tromey <tromey@redhat.com>
1936
1937 PR python/14635:
1938 * python/py-symtab.c (del_objfile_sal): Set 'symtab' field
1939 to Py_None.
1940
1941 2012-10-15 Tom Tromey <tromey@redhat.com>
1942
1943 PR python/14634:
1944 * python/py-symbol.c (sympy_dealloc): Check for NULL symbol.
1945
1946 2012-10-11 Andrew Burgess <aburgess@broadcom.com>
1947
1948 * remote-sim.c (gdbsim_create_inferior): Call init_thread_list to
1949 reset thread numbering back to 1.
1950
1951 2012-10-11 Doug Evans <dje@google.com>
1952
1953 PR breakpoints/14643.
1954 * linespec.c (struct ls_parser): New member keyword_ok.
1955 (linespec_lexer_lex_string): Add comment.
1956 (linespec_lexer_lex_one): Ignore keywords if it's the wrong place
1957 for one.
1958 (parse_linespec): Set keyword_ok.
1959
1960 2012-10-10 Doug Evans <dje@google.com>
1961
1962 * dwarf2read.c (process_psymtab_comp_unit_reader): Remove duplicate
1963 "0x" prefix on address in log message.
1964
1965 * dwarf2read.c (read_1_byte): Add const to buf parameter.
1966 (read_1_signed_byte, read_2_bytes, read_2_signed_bytes): Ditto.
1967 (read_4_bytes, read_4_signed_bytes, read_8_bytes): Ditto.
1968 (lookup_dwo_file): Add const to dwo_name parameter.
1969 (lookup_dwo_comp_unit, lookup_dwo_type_unit): Ditto.
1970
1971 2012-10-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1972
1973 Fix crash during stepping on ppc32.
1974 * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL
1975 SYM.
1976
1977 2012-10-03 Doug Evans <dje@google.com>
1978
1979 PR symtab/14601
1980 * buildsym.c (buildsym_init): Reset using_directives to NULL.
1981
1982 2012-10-02 Andrew Burgess <aburgess@broadcom.com>
1983
1984 * remote-sim.c (dump_mem): Always dump buffer contents, zero fill
1985 output and use uint32_t not long to ensure 4 byte size.
1986
1987 2012-10-02 Joel Brobecker <brobecker@adacore.com>
1988
1989 * rs6000-nat.c (add_vmap): Set "last" to "next" after having
1990 unref'ed it.
1991
1992 2012-10-01 Andrew Burgess <aburgess@broadcom.com>
1993
1994 * target.c (simple_search_memory): Include access length in
1995 warning message.
1996
1997 2012-09-28 Nathan Miller <nathanm2@us.ibm.com>
1998 Edjunior Machado <emachado@linux.vnet.ibm.com>
1999
2000 PR gdb/13989
2001 * solib.c (solib_find): Prevent GDB from loading native libraries when
2002 debugging a cross-target corefile.
2003
2004 2012-09-28 selven <pcthegreat@gmail.com>
2005
2006 Make definition match declaration.
2007
2008 * regcache.c (regcache_register_status): Change return type to
2009 enum register_status.
2010
2011 2012-09-28 Yao Qi <yao@codesourcery.com>
2012
2013 * mi/mi-main.c (mi_cmd_data_write_memory): Call
2014 write_memory_with_notification instead of write_memory.
2015 (mi_cmd_data_write_memory_bytes): Call write_memory_with_notification
2016 instead of target_write_memory.
2017
2018 2012-09-28 Yao Qi <yao@codesourcery.com>
2019
2020 * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Emit error
2021 when the length of content is not an even number.
2022
2023 2012-09-27 Tom Tromey <tromey@redhat.com>
2024
2025 Fix https://bugzilla.redhat.com/show_bug.cgi?id=849357
2026 * cp-valprint.c (cp_print_value_fields): Use get_vptr_fieldno.
2027
2028 2012-09-27 Joel Brobecker <brobecker@adacore.com>
2029
2030 * sol-thread.c (sol_thread_fetch_registers)
2031 (sol_thread_store_registers): Delete commented out code.
2032
2033 2012-09-27 Joel Brobecker <brobecker@adacore.com>
2034
2035 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2036 Move these functions to sparc-sol-thread.c.
2037 * sparc-sol-thread.c: New file.
2038 * configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and
2039 sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native
2040 configurations.
2041 * configure: Regenerate.
2042
2043 2012-09-27 Joel Brobecker <brobecker@adacore.com>
2044
2045 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2046 Remove commented-out code.
2047
2048 2012-09-27 Joel Brobecker <brobecker@adacore.com>
2049
2050 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2051 Enable this code for sparc hosts only.
2052
2053 2012-09-27 Joel Brobecker <brobecker@adacore.com>
2054
2055 * procfs.h (procfs_find_LDT_entry): Add declaration.
2056 * sol-thread.c (ps_lgetLDT): Delete local declaration of
2057 function procfs_find_LDT_entry.
2058
2059 2012-09-27 Joel Brobecker <brobecker@adacore.com>
2060
2061 * procfs.c (proc_get_LDT_entry): Make static.
2062
2063 2012-09-27 Joel Brobecker <brobecker@adacore.com>
2064
2065 * procfs.c (proc_find_memory_regions): Fix declaration.
2066
2067 2012-09-27 Siddhesh Poyarekar <siddhesh@redhat.com>
2068
2069 * amd64-tdep.c (amd64_return_value): Revert previous change
2070 that used TYPE_LENGTH directly.
2071 * bfin-tdep.c (bfin_extract_return_value): Likewise.
2072 (bfin_store_return_value): Likewise.
2073 * cris-tdep.c (cris_store_return_value): Likewise.
2074 (cris_extract_return_value): Likewise.
2075 * h8300-tdep.c (h8300_extract_return_value): Likewise.
2076 * hppa-tdep.c (hppa64_return_value): Likewise.
2077 * lm32-tdep.c (lm32_store_return_value): Likewise.
2078 * microblaze-tdep.c (microblaze_store_return_value): Likewise.
2079 * spu-tdep.c (spu_value_from_register): Likewise.
2080 * vax-tdep.c (vax_return_value): Likewise.
2081
2082 2012-09-27 Siddhesh Poyarekar <siddhesh@redhat.com>
2083
2084 * gdbtypes.c (lookup_array_range_type): Expand parameters
2085 LOW_BOUND and HIGH_BOUND to LONGEST.
2086 (lookup_string_range_type): Likewise.
2087 * gdbtypes.h (lookup_array_range_type): Likewise.
2088 (lookup_string_range_type): Likewise.
2089 * valops.c (value_cstring): Expand parameter LEN to ssize_t.
2090 Expand HIGHBOUND to ssize_t.
2091 (value_string): Likewise.
2092 * value.h (value_cstring): Expand parameter LEN to ssize_t.
2093 (value_string): Likewise.
2094
2095 2012-09-27 Yao Qi <yao@codesourcery.com>
2096
2097 PR breakpoints/13898
2098 * breakpoint.h (tracepoint_breakpoint_ops): Forward declaration.
2099 * mi/mi-cmd-break.c (mi_cmd_break_insert): Set breakpoint_ops
2100 per breakpoint type.
2101
2102 2012-09-26 Pierre Muller <muller@ics.u-strasbg.fr>
2103
2104 * procfs.c: Add gdb_bfd header.
2105 * rs6000-nat.c: Likewise.
2106 * solib-pa64.c: Likewise.
2107 * spu-linux-nat.c: Likewise.
2108 * windows-nat.c: Likewise.
2109
2110 2012-09-26 Tom Tromey <tromey@redhat.com>
2111
2112 * f-lang.h (BLANK_COMMON_NAME_LOCAL): Remove.
2113
2114 2012-09-26 Tom Tromey <tromey@redhat.com>
2115
2116 * dwarf2read.c (mark_common_block_symbol_computed): New function.
2117 (read_common_block): Handle child DIEs with
2118 DW_AT_data_member_location.
2119 (new_symbol_full): Add special case for common blocks.
2120
2121 2012-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2122 Tom Tromey <tromey@redhat.com>
2123
2124 * dwarf2read.c (read_common_block): Rewrite.
2125 (new_symbol_full): Handle DW_TAG_common_block.
2126 * f-lang.c (head_common_list, find_common_for_function):
2127 Remove.
2128 * f-lang.h (struct common_entry, struct saved_f77_common,
2129 SAVED_F77_COMMON, SAVED_F77_COMMON_PTR, COMMON_ENTRY,
2130 COMMON_ENTRY_PTR, head_common_list, find_common_for_function,
2131 BLANK_COMMON_NAME_LOCAL): Remove.
2132 (struct common_block): New.
2133 * f-valprint.c (list_all_visible_commons): Remove.
2134 (info_common_command_for_block): New function.
2135 (info_common_command): Use it.
2136 * stack.c (iterate_over_block_locals): Special case for
2137 COMMON_BLOCK_DOMAIN.
2138 * symtab.h (enum domain_enum_tag) <COMMON_BLOCK_DOMAIN>: New
2139 constant.
2140 (struct general_symbol_info) <value.common_block>: New field.
2141 (SYMBOL_VALUE_COMMON_BLOCK): New define.
2142
2143 2012-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2144 Tom Tromey <tromey@redhat.com>
2145
2146 * f-lang.c (allocate_saved_bf_node,
2147 allocate_saved_function_node, allocate_saved_f77_common_node,
2148 allocate_common_entry_node, tail_common_list, current_common,
2149 saved_bf_list, saved_bf_list_end, current_head_bf_list,
2150 tmp_bf_ptr, add_common_block, add_common_entry,
2151 find_first_common_named, patch_common_entries,
2152 patch_all_commons_by_name, ADD_BF_SYMNUM, clear_bf_list,
2153 global_remote_debug, get_bf_for_fcn, saved_function_list,
2154 saved_function_list_end, clear_function_list, struct saved_fcn,
2155 struct saved_bf_symnum, SAVED_FUNCTION, SAVED_FUNCTION_PTR,
2156 SAVED_BF, SAVED_BF_PTR): Remove.
2157 * f-lang.h (tail_common_list, current_common,
2158 UNINITIALIZED_SECNUM, COMMON_NEEDS_PATCHING,
2159 BLANK_COMMON_NAME_ORIGINAL, BLANK_COMMON_NAME_MF77,
2160 DEFAULT_UPPER_BOUND, DEFAULT_LOWER_BOUND, real_main_name,
2161 real_main_c_value): Remove.
2162 * f-valprint.c (there_is_a_visible_common_named): Remove.
2163
2164 2012-09-26 Andrew Burgess <aburgess@broadcom.com>
2165
2166 * breakpoint.c (update_global_location_list): Ignore previous
2167 duplicate status of a breakpoint when starting a new scan for
2168 duplicate breakpoints.
2169
2170 2012-09-26 Karthik Bhat <kv.bhat@samsung.com>
2171 PR breakpoints/14419
2172 * arm-tdep.c (arm_skip_prologue): Extending producer check to
2173 support LLVM compiler.
2174
2175 2012-09-26 Siddhesh Poyarekar <siddhesh@redhat.com>
2176
2177 * amd64-tdep.c (amd64_return_value): Use TYPE_LENGTH directly.
2178 * bfin-tdep.c (bfin_extract_return_value): Likewise.
2179 (bfin_store_return_value): Likewise.
2180 * cris-tdep.c (cris_store_return_value): Likewise.
2181 (cris_extract_return_value): Likewise.
2182 * h8300-tdep.c (h8300_extract_return_value): Likewise.
2183 * hppa-tdep.c (hppa64_return_value): Likewise.
2184 * lm32-tdep.c (lm32_store_return_value): Likewise.
2185 * microblaze-tdep.c (microblaze_store_return_value): Likewise.
2186 * spu-tdep.c (spu_value_from_register): Likewise.
2187 * vax-tdep.c (vax_return_value): Likewise.
2188
2189 2012-09-26 Siddhesh Poyarekar <siddhesh@redhat.com>
2190
2191 * breakpoint.c (invalidate_bp_value_on_memory_change): Expand
2192 parameter LEN to ssize_t.
2193
2194 2012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
2195
2196 * ada-valprint.c (ada_val_print_1): Eliminate single-use
2197 variable LEN.
2198 * alpha-tdep.c (alpha_extract_return_value): Use TYPE_LENGTH
2199 directly.
2200 (alpha_store_return_value): Likewise.
2201 * amd64-tdep.c (amd64_classify_aggregate): Likewise.
2202 (amd64_push_arguments): Likewise.
2203 * ax-gdb.c (gen_trace_static_fields): Likewise.
2204 (gen_traced_pop): Likewise.
2205 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
2206 * breakpoint.c (update_watchpoint): Likewise.
2207 * findcmd.c (parse_find_args): Use local variable for type
2208 instead of length.
2209 * findvar.c (default_read_var_value): Use TYPE_LENGTH directly.
2210 * h8300-tdep.c (h8300h_extract_return_value): Likewise.
2211 (h8300_store_return_value): Likewise.
2212 * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
2213 Use i386_darwin_arg_type_alignment directly.
2214 * infcall.c (call_function_by_hand): Use TYPE_LENGTH directly.
2215 * lm32-tdep.c (lm32_push_dummy_call): Likewise.
2216 * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
2217 (m68hc11_extract_return_value): Likewise.
2218 * mep-tdep.c (mep_push_dummy_call): Likewise.
2219 * printcmd.c (float_type_from_length): Likewise.
2220 * s390-tdep.c (s390_value_from_register): Likewise.
2221 * stack.c (read_frame_arg): Likewise.
2222 * tracepoint.c (encode_actions_1): Likewise.
2223 * valops.c (value_fetch_lazy): Use local variable for type
2224 instead of length. Use TYPE_LENGTH directly.
2225 * value.c (value_contents_equal): Use TYPE_LENGTH directly.
2226
2227 2012-09-25 Joel Brobecker <brobecker@adacore.com>
2228
2229 * symtab.c (skip_prologue_sal): Fix typo in comment.
2230
2231 2012-09-25 Joel Brobecker <brobecker@adacore.com>
2232
2233 * linespec.c (create_sals_line_offset): Fix typo in comment.
2234
2235 2012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
2236
2237 * c-typeprint.c (c_type_print_varspec_suffix): Remove cast and
2238 use plongest to print the array size.
2239
2240 2012-09-24 Siddhesh Poyarekar <siddhesh@redhat.com>
2241
2242 * m2-typeprint.c (m2_enum): Expand LASTVAL to LONGEST.
2243 * p-valprint.c (pascal_type_print_base): Likewise.
2244
2245 2012-09-22 Yao Qi <yao@codesourcery.com>
2246
2247 * remote.c (remote_get_trace_status): Remove setting default
2248 values of fields of 'ts'.
2249
2250 2012-09-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2251
2252 Fix internal error on canonicalization of clang types.
2253 * cp-name-parser.y (operator): New comment at make_operator call for
2254 new, delete, new[] and delete[].
2255 (exp): Use "sizeof ". Add new comment at make_operator call.
2256
2257 2012-09-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2258
2259 Fix disassemble without parameters in tailcall frame.
2260 * cli/cli-cmds.c (disassemble_current_function): Use
2261 get_frame_address_in_block.
2262
2263 2012-09-21 Tom Tromey <tromey@redhat.com>
2264
2265 * c-typeprint.c (c_type_print_base) <TYPE_CODE_STRUCT,
2266 TYPE_CODE_UNION>: Unify, removing a goto.
2267
2268 2012-09-21 Tom Tromey <tromey@redhat.com>
2269
2270 * c-typeprint.c (cp_type_print_derivation_info): Fix comment.
2271
2272 2012-09-21 Andrew Burgess <aburgess@broadcom.com>
2273
2274 * findvar.c (read_frame_register_value): Mark the result value as
2275 optimized out if any of the input registers have been optimized out.
2276
2277 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
2278
2279 * python/python.c (finalize_python): Only define if HAVE_PYTHON.
2280
2281 2012-09-21 Siddhesh Poyarekar <siddhesh@redhat.com>
2282
2283 * eval.c (evaluate_subexp_standard): Eliminate single-use
2284 variable LOWER.
2285
2286 2012-09-21 Yao Qi <yao@codesourcery.com>
2287
2288 * mi/mi-interp.c: Declare mi_record_changed.
2289 (mi_interpreter_init): Call observer_attach_record_changed.
2290 (mi_record_changed): New.
2291 * record.c (record_open): Call observer_notify_record_changed.
2292 (cmd_record_stop): Call observer_notify_record_changed.
2293 * NEWS: Mention it.
2294
2295 2012-09-20 Tom Tromey <tromey@redhat.com>
2296
2297 * NEWS: Update.
2298 * python/python.c (finalize_python): New function.
2299 (_initialize_python): Make a final cleanup.
2300
2301 2012-09-19 Doug Evans <dje@google.com>
2302
2303 * buildsym.h (param_symbols): Delete, unused.
2304 (context_stack): Delete member "params", unused.
2305 * buildsym.c (push_context): Update.
2306 * dwarf2read.c (read_func_scope): Update.
2307
2308 2012-09-19 Thomas Schwinge <thomas@codesourcery.com>
2309
2310 * sh-tdep.c (sh_register_convert_to_virtual)
2311 (sh_register_convert_to_raw): Add a gdbarch parameter. Update
2312 all callers. Just do a memcpy if not the little-endian case.
2313
2314 * h8300-tdep.c (h8300_gdbarch_init): Invoke
2315 set_gdbarch_double_format and set_gdbarch_long_double_format.
2316 * m68hc11-tdep.c (m68hc11_gdbarch_init): Invoke
2317 set_gdbarch_double_format.
2318 * sh-tdep.c (sh_gdbarch_init): Likewise.
2319
2320 * NEWS: Document the removal of SH's 'regs' command.
2321 * sh-tdep.c (_initialize_sh_tdep): Remove the deprecated 'regs'
2322 command.
2323
2324 2012-09-18 Sergio Durigan Junior <sergiodj@redhat.com>
2325
2326 * infcmd.c (_initialize_infcmd): Register `j' as an alias for
2327 `jump'.
2328
2329 2012-09-18 Joel Brobecker <brobecker@adacore.com>
2330
2331 * linespec.c (iterate_over_all_matching_symtabs): Use the correct
2332 language when iterating over symbols.
2333
2334 2012-09-18 Yao Qi <yao@codesourcery.com>
2335
2336 * mi/mi-interp.c: Declare mi_tsv_created and mi_tsv_deleted.
2337 (mi_interpreter_init): Call observer_attach_tsv_created and
2338 observer_attach_tsv_deleted.
2339 (mi_tsv_created, mi_tsv_deleted): New.
2340 * tracepoint.c (delete_trace_state_variable): Call
2341 observer_notify_tsv_deleted.
2342 (trace_variable_command): Call observer_notify_tsv_created.
2343 (delete_trace_variable_command): Call
2344 observer_notify_tsv_deleted.
2345 (create_tsv_from_upload): Call observer_notify_tsv_created.
2346 * NEWS: Mention it.
2347
2348 2012-09-18 Yao Qi <yao@codesourcery.com>
2349
2350 * tracepoint.c (tfind_1): Call observer_notify_traceframe_changed
2351 if traceframe changed.
2352 * mi/mi-cmds.c (mi_cmd mi_cmds): Adjust for command
2353 "trace-find".
2354 * mi/mi-interp.c: Declare 'mi_traceframe_changed'.
2355 (mi_interpreter_init): Hook mi_traceframe_changed to observer
2356 'traceframe_changed'.
2357 (mi_traceframe_changed): New.
2358 * mi/mi-main.h (struct mi_suppress_notification) <traceframe>:
2359 New field.
2360 * NEWS: Mention the new MI notification.
2361
2362 2012-09-17 Mike Wrighton <wrighton@codesourcery.com>
2363
2364 * MAINTAINERS (Write After Approval): Add "Mike Wrighton".
2365
2366 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2367
2368 * common/linux-ptrace.c: Change __i386__ to __i386__ || __x86_64__.
2369 (linux_ptrace_test_ret_to_nx): Extend comment for x86_64. Change
2370 __i386__ to __i386__ || __x86_64__. Extend code also for __x86_64__.
2371 Extend code also for PaX support. Convert all gdb_assert to warning
2372 calls.
2373
2374 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2375
2376 Implement auto-load user conveniences suggested by Doug Evans.
2377 * auto-load.c: Include top.h.
2378 (file_is_auto_load_safe): New variable advice_printed. Print advice.
2379 (_initialize_auto_load): New variable scripts_directory_help. Mention
2380 GDBPY_AUTO_FILE_NAME and GDB_AUTO_FILE_NAME for set auto-load
2381 scripts-directory. Document in online help one can use also files for
2382 set auto-load safe-path.
2383 * python/py-auto-load.c: (GDBPY_AUTO_FILE_NAME): Move it from here ...
2384 * python/python.h (GDBPY_AUTO_FILE_NAME): ... to here.
2385
2386 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
2387
2388 * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused definition
2389 of LEN.
2390
2391 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
2392
2393 * m2-valprint.c (m2_print_array_contents): Eliminate variable
2394 ELTLEN and use TYPE_LENGTH directly.
2395 (m2_val_print): Likewise.
2396 * m68k-tdep.c (m68k_svr4_extract_return_value): Eliminate
2397 variable LEN and use TYPE_LENGTH directly.
2398 (m68k_svr4_store_return_value): Likewise.
2399 * mips-tdep.c (mips_o32_push_dummy_call): Eliminate variable
2400 ARGLEN and use TYPE_LENGTH directly.
2401 (mips_o64_push_dummy_call): Likewise.
2402 * s390-tdep (s390_function_arg_pass_by_reference): Eliminate
2403 variable LENGTH and use TYPE_LENGTH directly.
2404 (s390_function_arg_float): Likewise.
2405 (s390_function_arg_integer): Likewise.
2406 (s390_push_dummy_call): Likewise.
2407 (s390_return_value_convention): Likewise.
2408 * spu-tdep.c (spu_push_dummy_call): Eliminate LEN and use
2409 TYPE_LENGTH directly.
2410
2411 2012-09-17 Yao Qi <yao@codesourcery.com>
2412
2413 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
2414 Update comment to add_setshow_integer_cmd.
2415 * cli/cli-setshow.c (do_set_command): Handle case
2416 'var_zuinteger_unlimited'.
2417 (do_show_command): Likewise.
2418 * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
2419 for command 'remotetimeout'.
2420 * command.h (enum var_types): New zuinteger_unlimited. Update comment
2421 to var_integer.
2422 * source.c (_initialize_source): Call
2423 add_setshow_zuinteger_unlimited_cmd for command 'set listsize'.
2424
2425 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
2426
2427 * infrun.c (restore_infcall_suspend_state): Eliminate single-use
2428 variable LEN.
2429
2430 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2431
2432 PR 14119
2433 * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames.
2434 (frame_pop): Drop also TAILCALL_FRAME frames.
2435 * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames.
2436
2437 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2438 Pedro Alves <palves@redhat.com>
2439
2440 PR 14548
2441 * infrun.c (handle_inferior_event): Do not reverse-continue back to the
2442 function start if we are already at function start. Both for
2443 reverse-next and for reverse-step into function without line number
2444 info.
2445
2446 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2447
2448 Code cleanup - rename 'inline' depth to 'artificial' depth.
2449 * breakpoint.c (set_momentary_breakpoint): Rename at a caller to
2450 frame_id_artificial_p, extend the comment.
2451 * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
2452 * frame.c (fprint_frame_id): Rename at a user, change debug output
2453 text to "artificial=".
2454 (skip_inlined_frames): Rename to ...
2455 (skip_artificial_frames): ... here. Extend the comment.
2456 (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
2457 (frame_id_inlined_p): Rename to ...
2458 (frame_id_artificial_p): ... here. Rename at a user.
2459 (frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
2460 (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
2461 at a user.
2462 * frame.h (struct frame_id): Rename inline_depth to artificial_depth.
2463 Extend the comment.
2464 (frame_id_inlined_p): Rename to ...
2465 (frame_id_artificial_p): ... here.
2466 * inline-frame.c (inline_frame_this_id): Rename at a user.
2467
2468 2012-09-14 Andrew Burgess <aburgess@broadcom.com>
2469
2470 * c-typeprint.c (c_type_print_varspec_suffix): Display the size of
2471 vector variables using vector_size syntax rather than array
2472 syntax.
2473
2474 2012-09-14 Siddhesh Poyarekar <siddhesh@redhat.com>
2475
2476 * valarith.c (value_concat): Replace unsafe ALLOCA with
2477 XMALLOC/XFREE.
2478
2479 2012-09-14 Pedro Alves <palves@redhat.com>
2480
2481 * gdb.1 (SEE ALSO): Expand pointer to GDB's Texinfo manual.
2482
2483 2012-09-14 Khoo Yit Phang <khooyp@cs.umd.edu>
2484
2485 Point contrib/cc-with-tweaks.sh to the build-local data-directory.
2486 * contrib/cc-with-tweaks.sh (GDB): Add -data-directory
2487 data-directory as appropriate.
2488
2489 2012-09-14 Siddhesh Poyarekar <siddhesh@redhat.com>
2490
2491 * printcmd.c (ui_printf): Eliminate single-use variable
2492 PARAM_LEN.
2493
2494 2012-09-14 Yao Qi <yao@codesourcery.com>
2495 Pedro Alves <palves@redhat.com>
2496
2497 * valops.c (value_assign): Move observer_notify_target_changed
2498 below to replace reinit_frame_cache.
2499
2500 2012-09-13 Khoo Yit Phang <khooyp@cs.umd.edu>
2501
2502 Refactor Python "gdb" module into a proper Python package, by
2503 introducing a new "_gdb" module for code implemented in C, and
2504 using reload/__import__ instead of exec.
2505 * python/lib/gdb/__init__.py: Import * from _gdb.
2506 (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
2507 prompt_hook, sys.argv): Moved from finish_python_initialization.
2508 (pretty_printers, PYTHONDIR): Moved from _initialize_python.
2509 (packages, auto_load_packages): New list and function replacing
2510 module_dict and auto-loading code, using __file__ instead of
2511 gdb.PYTHONDIR and reload/__import__ instead of exec.
2512 (GdbSetPythonDirectory): Replacing function of the same name
2513 from finish_python_initialization, using reload/__import__ instead
2514 of exec, as well as call auto_load_packages.
2515 * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
2516 gdb_python_module and not gdb_module.
2517 * python/python-internal.h (gdb_python_module): Declare.
2518 * python/python.c (gdb_python_module): New global.
2519 (before_prompt_hook): Check gdb_python_module and not gdb_module.
2520 (_initialize_python): Rename gdb module to _gdb.
2521 Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
2522 (finish_python_initialization): Move Python code to
2523 lib/gdb/__init__.py; instead, set up sys.path and import gdb into
2524 __main__.
2525
2526 2012-09-13 Pedro Alves <palves@redhat.com>
2527
2528 * Makefile.in (COMMON_OBS): Add registry.o.
2529 * registry.c: New file.
2530 * registry.h (struct registry_container): Declare.
2531 (registry_data_callback): New typedef.
2532 (struct registry_data, struct registry_data_registration, struct
2533 registry_data_registry): New type.
2534 (register_data_with_cleanup, registry_alloc_data)
2535 (registry_callback_adaptor, registry_clear_data)
2536 (registry_container_free_data, registry_set_data, registry_data):
2537 Declare.
2538 (DEFINE_REGISTRY): Refactor structures and functions as shims over
2539 the new common structures and functions.
2540 (DECLARE_REGISTRY): Declare struct TAG ## _data. Use the tagged
2541 callback typedefs.
2542
2543 2012-09-12 Mike Wrighton <wrighton@codesourcery.com>
2544
2545 * remote.c (remote_insert_hw_breakpoint): Throw exception if
2546 there is an error inserting hardware breakpoints and use the
2547 error message from the target.
2548
2549 * breakpoint.c (insert_bp_location, insert_breakpoint_locations):
2550 Catch this exception and print the error message contained within.
2551 Do not print the default hardware error breakpoint message in this
2552 case.
2553
2554 2012-09-12 Doug Evans <dje@google.com>
2555
2556 * dwarf2read.c (dwarf2_read_addr_index): Fix handling the case where
2557 cu == NULL.
2558
2559 2012-09-11 Doug Evans <dje@google.com>
2560
2561 * dwarf2read.c (dw2_do_expand_symtabs_matching): Don't examine
2562 .gdb_index symbol attributes if there are none.
2563
2564 2012-09-11 Joel Brobecker <brobecker@adacore.com>
2565
2566 * symtab.h (struct minimal_symbol) [has_size]: New field.
2567 (MSYMBOL_SIZE): Adjust to forbid macro from being used as lvalue.
2568 (SET_MSYMBOL_SIZE, MSYMBOL_HAS_SIZE): New macros.
2569 * printcmd.c (build_address_symbolic): Only filter out zero-sized
2570 minimal symbols if the symbol's size is actually known.
2571 * minsyms.c (prim_record_minimal_symbol_full): Adjust setting
2572 of msymbol's size field. Add comment.
2573 * elfread.c (elf_symtab_read, elf_rel_plt_read): Use
2574 SET_MSYMBOL_SIZE to set the minimal symbol size.
2575
2576 2012-09-11 Joel Brobecker <brobecker@adacore.com>
2577
2578 * minsyms.c (install_minimal_symbols): Use memset to fill entire
2579 minimal_symbol struct object, rather than setting some of its
2580 fields one by one.
2581
2582 2012-09-11 Andrew Burgess <aburgess@broadcom.com>
2583
2584 * c-typeprint.c (c_type_print_varspec_prefix): Pass through the
2585 passed_a_ptr flag when displaying typedef types.
2586
2587 2012-09-10 Joel Brobecker <brobecker@adacore.com>
2588
2589 * ada-lang.c (coerce_unspec_val_to_type): Make sure that
2590 the optimized_out flag is preserved.
2591
2592 2012-09-10 Anthony Green <green@moxielogic.com>
2593
2594 * moxie-tdep.c (moxie_analyze_prologue): Update for function
2595 prologue changes in GCC.
2596
2597 2012-09-10 Keith Seitz <keiths@redhat.com>
2598
2599 PR gdb/13483
2600 * gdbtypes.h (BOOL_PTR_CONVERSION_BADNESS): Rename to ...
2601 (BOOL_CONVERSION_BADNESS): ... this.
2602 * gdbtypes.c (BOOL_PTR_CONVERSION_BADNESS): Likewise.
2603 (rank_one_type): Allow all boolean conversions
2604 permitted by the standard.
2605
2606 2012-09-06 Tom Tromey <tromey@redhat.com>
2607
2608 * python/py-newobjfileevent.c (create_new_objfile_event_object):
2609 Don't decref py_objfile.
2610
2611 2012-09-02 Khoo Yit Phang <khooyp@cs.umd.edu>
2612
2613 Do not enable -lmcheck by default when Python is enabled with
2614 threading support.
2615 * configure.ac: (python_has_threads) New variable, by testing
2616 if WITH_THREAD is defined in Python.h.
2617 Move --enable-lmcheck after --with-python.
2618 Do not enable -lmcheck by default if python_has_threads=yes.
2619 Warn if --enable-lmcheck and python_has_threads=yes.
2620 * configure: Regenerate.
2621
2622 2012-08-31 Yao Qi <yao@codesourcery.com>
2623
2624 * mi/mi-cmds.c (mi_cmds): New macros DEF_MI_CMD_CLI
2625 DEF_MI_CMD_MI DEF_MI_CMD_CLI_1 and DEF_MI_CMD_CLI_1.
2626 Update some commands.
2627 * mi/mi-cmds.h (struct mi_cmd) <suppress_notification>: New field.
2628 * mi/mi-main.c (mi_cmd_execute): Set
2629 '*parse->cmd->suppress_notification' to 1.
2630
2631 2012-08-31 Yao Qi <yao@codesourcery.com>
2632
2633 * mi/mi-cmds.c (mi_cmds): Add 'static'.
2634
2635 2012-08-30 Khoo Yit Phang <khooyp@cs.umd.edu>
2636
2637 * MAINTAINERS (Write After Approval): Add "Khoo Yit Phang".
2638
2639 2012-08-29 Doug Evans <dje@google.com>
2640
2641 * main.c (print_gdb_help): Remove reference to
2642 --use-deprecated-index-sections.
2643
2644 2012-08-28 Yao Qi <yao@codesourcery.com>
2645
2646 * cli/cli-cmds.c (max_user_call_depth): Add 'unsigned'.
2647 (init_cmds): Call add_setshow_uinteger_cmd for command
2648 'max-user-call-depth'.
2649 * cli/cli-script.c (execute_user_command): Add 'unsigned' to the
2650 declaration of 'max_user_call_depth'.
2651 * frame.c (backtrace_limit): Add 'unsigned'.
2652 (_initialize_frame): Call add_setshow_uinteger_cmd for command
2653 'limit'.
2654 * remote.c (remoteaddresssize): Add 'unsigned'.
2655 (remote_address_masked): Change local var 'address_size' to
2656 'unsigned'.
2657 (_initialize_remote): Call add_setshow_uinteger_cmd for
2658 'remoteaddresssize'.
2659 * top.c (history_size): Add 'unsigned'.
2660 (show_commands): Change local variables to 'unsigned'.
2661 (set_history_size_command): Don't check history_size is negative.
2662 Adjust the condition to call unstifle_history and set history_size
2663 to UNIT_MAX.
2664
2665 2012-08-28 Pedro Alves <palves@redhat.com>
2666
2667 PR gdb/14428
2668
2669 * infcmd.c (default_print_one_register_info): New, factored out
2670 from default_print_registers_info.
2671 (default_print_registers_info): Use it. Mark value unavailable if
2672 necessary.
2673 (registers_info): Print user registers with
2674 default_print_one_register_info.
2675
2676 2010-08-27 H.J. Lu <hongjiu.lu@intel.com>
2677
2678 PR tui/14486
2679 * tui/tui-source.c (tui_source_is_displayed): Check if TUI_SRC_WIN
2680 is not NULL before referencing it.
2681
2682 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2683
2684 * breakpoint.c (parse_breakpoint_sals) <(*address) == NULL>: New
2685 variable pc. Call find_pc_line instead of find_pc_overlay, restore
2686 original PC for it.
2687
2688 2012-08-27 Eli Zaretskii <eliz@gnu.org>
2689 Jan Kratochvil <jan.kratochvil@redhat.com>
2690
2691 * auto-load.c (auto_load_objfile_script): Rename to ...
2692 (auto_load_objfile_script_1): ... here, change variable realname to
2693 parameter realname, document it, add return value, add variable retval.
2694 (auto_load_objfile_script): New function.
2695
2696 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2697
2698 * cli/cli-decode.c (print_doc_line): Keep skipping '.' and ',' not
2699 followed by a whitespace.
2700
2701 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2702
2703 PR gdb/14494.
2704 * dwarf2read.c (dwarf2_locate_sections): Move variable aflag here.
2705 Move the SEC_HAS_CONTENTS check here - for any NAMES use.
2706 (dwarf2_locate_sections) <eh_frame>: Move the variable and check from
2707 here.
2708
2709 2012-08-27 Wei-cheng Wang <cole945@gmail.com>
2710
2711 * memattr.c (create_mem_region): Fix memory region overlapping
2712 checking.
2713
2714 2012-08-24 Siddhesh Poyarekar <siddhesh@redhat.com>
2715
2716 * h8300-tdep.c (h8300_push_dummy_call): Replace unsafe alloca
2717 with xmalloc/cleanup.
2718 * mt-tdep.c (mt_push_dummy_call): Likewise.
2719 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
2720 * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
2721
2722 2012-08-24 Yao Qi <yao@codesourcery.com>
2723
2724 * jv-exp.y (push_expression_name): Add "." at the end of error
2725 message.
2726
2727 2012-08-23 Khoo Yit Phang <khooyp@cs.umd.edu>
2728
2729 Document how to return from "python-interactive" to GDB.
2730 * python/python.c (_initialize_python): Update documentation.
2731
2732 2012-08-23 Pedro Alves <palves@redhat.com>
2733
2734 * infrun.c (_initialize_infrun) <handle command help text>:
2735 Mention that multiple signals are supported.
2736
2737 2012-08-23 Pedro Alves <palves@redhat.com>
2738
2739 * infcmd.c (_initialize_infcmd) <signal command>: Fix typo in help
2740 string.
2741
2742 2012-08-23 Yao Qi <yao@codesourcery.com>
2743
2744 * tracepoint.c (disconnect_tracing): Call set_tracepoint_num.
2745 (tfind_1): Don't call registers_changed, set_traceframe_num,
2746 and clear_traceframe_info.
2747 Call set_current_traceframe.
2748 (set_current_traceframe): call set_traceframe_num.
2749
2750 2012-08-22 Sergio Durigan Junior <sergiodj@redhat.com>
2751
2752 * remote-sim.c (_initialize_remote_sim): Pass NULL argument to
2753 `register_inferior_data_with_cleanup', fixing regression on PowerPC64.
2754
2755 2012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
2756
2757 Enable readline in Python in a GDB-specific way and block the
2758 standard Python readline module to prevent conflicts with GDB.
2759 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
2760 (SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
2761 (py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
2762 * python/py-gdb-readline.c: New file.
2763 * python/python-internal.h (gdbpy_initialize_gdb_readline): New
2764 prototype.
2765 * python/python.c (_initialize_python): Call
2766 gdbpy_initialize_gdb_readline.
2767
2768 2012-08-22 Keith Seitz <keiths@redhat.com>
2769
2770 * defs.h: Include build-gnulib/config.h
2771
2772 2012-08-22 Joseph Myers <joseph@codesourcery.com>
2773
2774 * arm-tdep.c (thumb_get_next_pc_raw): Mask off low bits for bx pc
2775 and blx pc.
2776
2777 2012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
2778
2779 Add a new "python-interactive" command that starts a standard
2780 Python interactive prompt with "pi" as alias, and add "py" as
2781 an alias to "python".
2782 * NEWS: Mention the new commands.
2783 * python/python.c (eval_python_command): New function.
2784 (python_interactive_command): For "python-interactive" with
2785 arguments, call eval_python_command. For "python-interactive"
2786 without arguments, call PyRun_InteractiveLoop.
2787 (_initialize_python): Add "python-interactive" command with
2788 "pi" as alias, and add "py" as an alias to "python".
2789
2790 2012-08-22 Tom Tromey <tromey@redhat.com>
2791
2792 * defs.h (quit_flag): Don't declare.
2793 (clear_quit_flag, check_quit_flag, set_quit_flag): Declare.
2794 (QUIT): Use new functions.
2795 * event-top.c (command_handler): Use clear_quit_flag.
2796 (handle_sigint): Use set_quit_flag.
2797 (async_request_quit): Use check_quit_flag. Don't check
2798 immediate_quit.
2799 * exceptions.c (throw_exception): Use clear_quit_flag.
2800 * main.c (captured_main): Use clear_quit_flag.
2801 * python/python.c (clear_quit_flag, set_quit_flag)
2802 (check_quit_flag): New functions.
2803 * remote-sim.c (gdb_os_poll_quit): Use check_quit_flag,
2804 clear_quit_flag.
2805 * remote.c (remote_wait_as): Use check_quit_flag,
2806 clear_quit_flag.
2807 (remote_start_remote): Call QUIT.
2808 * symfile.c (load_progress): Use check_quit_flag.
2809 * top.c (command_loop): Use clear_quit_flag.
2810 (command_line_input): Call QUIT.
2811 * utils.c (quit_flag): Conditionally define.
2812 (clear_quit_flag, check_quit_flag, set_quit_flag): New
2813 functions.
2814 (prompt_for_continue): Call QUIT. Use quit, not
2815 async_request_quit.
2816 * remote-mips.c (mips_expect_timeout): Call QUIT.
2817 * monitor.c (monitor_expect): Call QUIT.
2818
2819 2012-08-22 Tom Tromey <tromey@redhat.com>
2820
2821 * event-top.c (sigwinch_token, handle_sigwinch): Remove.
2822 (async_init_signals): Update.
2823 * utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
2824 (SIGWINCH_HANDLER_BODY): Remove.
2825
2826 2012-08-22 Tom Tromey <tromey@redhat.com>
2827
2828 * jit.c (jit_object_close_impl): Don't malloc the objfile
2829 name.
2830 * objfiles.c (allocate_objfile): Don't malloc the objfile
2831 name.
2832 (free_objfile): Don't free the objfile name.
2833 * objfiles.h (struct objfile) <name>: Update comment.
2834 * symfile.c (reread_symbols): Fix reference counting. Don't
2835 malloc objfile name.
2836
2837 2012-08-22 Tom Tromey <tromey@redhat.com>
2838
2839 * windows-nat.c (windows_make_so): Use gdb_bfd_open.
2840 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_open.
2841 (symfile_bfd_open): Likewise.
2842 (generic_load): Likewise.
2843 * solib.c (solib_bfd_fopen): Use gdb_bfd_open.
2844 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
2845 gdb_bfd_open.
2846 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2847 Use gdb_bfd_open.
2848 * rs6000-nat.c (add_vmap): Use gdb_bfd_open.
2849 * remote-mips.c (mips_load_srec): Use gdb_bfd_open.
2850 (pmon_load_fast): Likewise.
2851 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_open.
2852 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_open.
2853 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_open.
2854 (macho_check_dsym): Likewise.
2855 * m32r-rom.c (m32r_load): Use gdb_bfd_open.
2856 (m32r_upload_command): Likewise.
2857 * gdb_bfd.h (gdb_bfd_cache): Declare.
2858 * gdb_bfd.c (struct gdb_bfd_data): New.
2859 (gdb_bfd_cache): New global.
2860 (struct gdb_bfd_cache_search): New.
2861 (hash_bfd): New function.
2862 (eq_bfd): Likewise.
2863 (gdb_bfd_open): Likewise.
2864 (gdb_bfd_ref): Allocate a gdb_bfd_data and attach to the BFD.
2865 (gdb_bfd_unref): Remove closed BFD from cache. Update for
2866 gdb_bfd_data.
2867 * exec.c (exec_file_attach): Use gdb_bfd_open.
2868 * dsrec.c (load_srec): Use gdb_bfd_open.
2869
2870 2012-08-22 Tom Tromey <tromey@redhat.com>
2871
2872 * dwarf2read.c (macro_start_file): Update.
2873 * objfiles.c (get_objfile_bfd_data): Initialize macro_cache.
2874 (free_objfile_per_bfd_storage): Destroy macro_cache.
2875 (allocate_objfile, free_objfile): Update.
2876 * objfiles.h (struct objfile_per_bfd_storage) <macro_cache>:
2877 New field.
2878 (struct objfile) <macro_cache>: Remove.
2879 * symfile.c (reread_symbols): Update.
2880 * symmisc.c (print_symbol_bcache_statistics): Update.
2881 (print_objfile_statistics): Update.
2882
2883 2012-08-22 Tom Tromey <tromey@redhat.com>
2884
2885 * elfread.c (elf_symtab_read): Update.
2886 * objfiles.c (objfiles_bfd_data): New global.
2887 (get_objfile_bfd_data, free_objfile_per_bfd_storage)
2888 (objfile_bfd_data_free, set_objfile_per_bfd): New functions.
2889 (allocate_objfile, free_objfile): Update.
2890 (_initialize_objfiles): Initialize objfiles_bfd_data.
2891 * objfiles.h (struct objfile_per_bfd_storage): New.
2892 (struct objfile) <per_bfd>: New field.
2893 <filename_cache>: Remove.
2894 (set_objfile_per_bfd): Declare.
2895 * symfile.c (reread_symbols): Update. Call
2896 set_objfile_per_bfd.
2897 (allocate_symtab): Update.
2898 * symmisc.c (print_symbol_bcache_statistics): Update.
2899 (print_objfile_statistics): Print the size of the BFD obstack.
2900
2901 2012-08-22 Tom Tromey <tromey@redhat.com>
2902
2903 * gdb_bfd.h: Include registry.h. Use DECLARE_REGISTRY.
2904 * gdb_bfd.c: Use DEFINE_REGISTRY.
2905 (struct gdb_bfd_data): Add REGISTRY_FIELDS.
2906 (gdb_bfd_ref): Call bfd_alloc_data.
2907 (gdb_bfd_unref): Call bfd_free_data.
2908
2909 2012-08-22 Tom Tromey <tromey@redhat.com>
2910
2911 * registry.h (struct registry_fields): New.
2912 (REGISTRY_FIELDS): Redefine.
2913 (REGISTRY_ACCESS_FIELD): New macro.
2914 (DEFINE_REGISTRY): Add ACCESS argument. Update defined
2915 functions.
2916
2917 2012-08-22 Tom Tromey <tromey@redhat.com>
2918
2919 * auto-load.c (_initialize_auto_load): Update.
2920 * solib-svr4.c (_initialize_svr4_solib): Update
2921 * solib-dsbt.c (_initialize_dsbt_solib): Update.
2922 * solib-darwin.c (_initialize_darwin_solib): Update.
2923 * registry.h: New file.
2924 * python/py-progspace.c (gdbpy_initialize_pspace): Update.
2925 * python/py-inferior.c (gdbpy_initialize_inferior): Update.
2926 * progspace.h: Include registry.h. Use DECLARE_REGISTRY.
2927 (register_program_space_data_with_cleanup)
2928 (register_program_space_data, program_space_alloc_data)
2929 (clear_program_space_data, set_program_space_data)
2930 (program_space_data): Don't declare.
2931 * progspace.c: Use DEFINE_REGISTRY.
2932 (struct program_space_data, struct
2933 program_space_data_registration, struct
2934 program_space_data_registry, program_space_data_registry)
2935 (register_program_space_data_with_cleanup)
2936 (register_program_space_data, program_space_alloc_data)
2937 (program_space_free_data, clear_program_space_data)
2938 (set_program_space_data, program_space_data): Remove.
2939 * objfiles.h: Include registry.h. Use DECLARE_REGISTRY.
2940 (struct objfile) <data, num_data>: Replace with REGISTRY_FIELDS.
2941 (register_objfile_data_with_cleanup, register_objfile_data)
2942 (clear_objfile_data, set_objfile_data, objfile_data): Don't
2943 declare.
2944 * objfiles.c: Use DEFINE_REGISTRY.
2945 (struct objfile_data, struct objfile_data_registration, struct
2946 objfile_data_registry, objfile_data_registry)
2947 (register_objfile_data_with_cleanup, register_objfile_data)
2948 (objfile_alloc_data, objfile_free_data, clear_objfile_data)
2949 (set_objfile_data, objfile_data): Remove.
2950 (_initialize_objfiles): Update.
2951 * jit.c (_initialize_jit): Update.
2952 * inflow.c (_initialize_inflow): Update.
2953 * inferior.h: Include registry.h. Use DECLARE_REGISTRY.
2954 (struct inferior) <data, num_data>: Replace with REGISTRY_FIELDS.
2955 (register_inferior_data_with_cleanup, register_inferior_data)
2956 (clear_inferior_data, set_inferior_data, inferior_data): Don't
2957 declare.
2958 * inferior.c: Use DEFINE_REGISTRY.
2959 (struct inferior_data, struct inferior_data_registration, struct
2960 inferior_data_registry, inferior_data_registry)
2961 (register_inferior_data_with_cleanup, register_inferior_data)
2962 (inferior_alloc_data, inferior_free_data clear_inferior_data)
2963 (set_inferior_data, inferior_data): Remove.
2964 * auxv.c (_initialize_auxv): Update.
2965 * ada-lang.c (_initialize_ada_language): Update.
2966 * breakpoint.c (_initialize_breakpoint): Update.
2967 * i386-nat.c (i386_use_watchpoints): Update.
2968
2969 2012-08-22 Tom Tromey <tromey@redhat.com>
2970
2971 * exec.c (exec_close, exec_file_attach): Update.
2972 (add_to_section_table): Initialize 'key' field.
2973 (add_target_sections, remove_target_sections): Add 'key' argument.
2974 * exec.h (add_target_sections, remove_target_sections): Add
2975 'key' argument.
2976 * solib.c (solib_map_sections, update_solib_list, clear_solib)
2977 (reload_shared_libraries_1): Update.
2978 * target.h (struct target_section) <key>: New field.
2979
2980 2012-08-22 Tom Tromey <tromey@redhat.com>
2981
2982 * cli/cli-cmds.c (filter_sals): Handle nelts == 0 case.
2983
2984 2012-08-21 Pierre Muller <muller@ics.u-strasbg.fr>
2985
2986 * symfile.c (allocate_symtab): Use host_address_to_string
2987 function instead of cast of pointer to long which is not
2988 compatible with x86_64-w64-mingw32 build.
2989
2990 2012-08-19 Andrew Pinski <apinski@cavium.com>
2991
2992 * mips-tdep.c (is_octeon): New function.
2993 (is_octeon_bbit_op): New function.
2994 (mips32_next_pc): Handle Octeon's bbit instructions.
2995 (mips32_instruction_has_delay_slot): Likewise.
2996
2997 2012-08-19 Andrew Pinski <apinski@cavium.com>
2998
2999 * mips-tdep.c (mips32_next_pc): Fix line spacing of the comment
3000 before the function.
3001
3002 2012-08-19 Andrew Pinski <apinski@cavium.com>
3003
3004 * mips-tdep.c (mips32_next_pc): Consolidate calls to itype_op.
3005
3006 2012-08-19 Keith Seitz <keiths@redhat.com>
3007
3008 PR c++/14365
3009 * c-typeprint.c (c_type_print_varspec_prefix): Pass
3010 -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
3011
3012 2012-08-18 Eli Zaretskii <eliz@gnu.org>
3013
3014 * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
3015 The typo broke "make TAGS".
3016
3017 2012-08-17 Joel Brobecker <brobecker@adacore.com>
3018
3019 GDB 7.5 released.
3020
3021 2012-08-17 Keith Seitz <keiths@redhat.com>
3022
3023 PR c++/13356
3024 * gdbtypes.c (strict_type_checking): New variable.
3025 (show_strict_type_checking): New function.
3026 (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
3027 if strict type checking is disabled.
3028 (_initialize_gdbtypes): Add "check type" subcommand.
3029 * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
3030
3031 2012-08-17 Keith Seitz <keiths@redhat.com>
3032
3033 * language.h (type_mode): Remove.
3034 (type_check): Remove.
3035 (struct language_defn): Remove la_type_check.
3036 (STRICT_TYPE): Remove unused macro.
3037 (type_error): Remove.
3038 * language.c (set_type_range_case): Renamed to ...
3039 (set_range_case): ... this. Update all callers.
3040 Remove type_mode/type_check.
3041 (type_mode): Remove.
3042 (type_check): Remove.
3043 (show_type_command): Remove.
3044 (set_type_command): Remove.
3045 (language_info): Remove type checking output.
3046 (type_error): Remove unused function.
3047 (range_error): Update comment.
3048 (unknown_language_defn): Remove la_type_check.
3049 (auto_language_defn): Likewise.
3050 (local_language_defn): Likewise.
3051 (_initialize_language): Remove "check type" subcommand.
3052 * ada-lang.c (ada_language_defn): Remove la_type_check.
3053 * c-lang.c (c_language_defn): Likewise.
3054 (cplus_language_defn): Likewise.
3055 (asm_language_defn): Likewise.
3056 (minimal_language_defn): Likewise.
3057 * d-lang.c (d_language_defn): Likewise.
3058 * f-lang.c (f_language_defn): Likewise.
3059 * go-lang.c (go_language_defn): Likewise.
3060 * jv-lang.c (java_language_defn): Likewise.
3061 * m2-lang.c (m2_language_defn): Likewise.
3062 * objc-lang.c (objc_language_defn): Likewise.
3063 * opencl-lang.c (opencl_language_defn): Likewise.
3064 * p-lang.c (pascal_language_defn): Likewise.
3065
3066 2012-08-16 Mike Frysinger <vapier@gentoo.org>
3067
3068 * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
3069
3070 2012-08-16 Joel Brobecker <brobecker@adacore.com>
3071
3072 * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
3073 New function.
3074 (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
3075 using the regache. Use ia64_hpux_get_register_from_save_state_t
3076 to access the bsp and bspstore registers if not.
3077
3078 2012-08-16 Joel Brobecker <brobecker@adacore.com>
3079
3080 * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
3081 * breakpoint.c (detach_breakpoints): Change pid parameter into
3082 a ptid. Adjust code accordingly.
3083 * infrun.c (handle_inferior_event): Delete variable child_pid.
3084 Update call to detach_breakpoints to pass the child ptid for
3085 fork events.
3086 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
3087 assert that inferior_ptid's lwp is zero.
3088 (linux_handle_extended_wait): Update call to detach_breakpoints.
3089 * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
3090 detach_breakpoints.
3091
3092 2012-08-16 Joel Brobecker <brobecker@adacore.com>
3093
3094 * inf-ttrace.c (inf_ttrace_follow_fork): When following the
3095 parent, only call detach_breakpoints if tts.tts_event ==
3096 TTEVT_VFORK.
3097
3098 2012-08-16 Joel Brobecker <brobecker@adacore.com>
3099
3100 * dwarf2-frame.c (dwarf2_frame_cache): Use
3101 get_frame_address_in_block instead of get_frame_pc as
3102 the bound for executing the frame's FDE.
3103
3104 2012-08-16 Yao Qi <yao@codesourcery.com>
3105
3106 * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
3107 * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
3108 * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
3109 (c_type_print_varspec_suffix): Likewise.
3110 * eval.c (evaluate_subexp_standard): Likewise.
3111 * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
3112 (f_type_print_varspec_suffix): Likewise.
3113 * gdbtypes.c (is_scalar_type): Likewise.
3114 (recursive_dump_type): Likewise.
3115 * infcall.c (value_arg_coerce): Likewise.
3116 * m2-valprint.c (m2_val_print): Likewise.
3117 * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
3118 (pascal_type_print_varspec_suffix): Likewise.
3119 (pascal_type_print_base): Likewise.
3120 * p-valprint.c (pascal_val_print): Likewise.
3121 (pascal_val_print): Likewise.
3122 * valops.c (value_slice): Likewise.
3123 * valprint.c (scalar_type_p): Likewise.
3124 * valarith.c (value_bitstring_subscript): Remove.
3125 (value_concat): Remove code handling TYPE_CODE_BITSTRING.
3126 Remove comment on TYPE_CODE_BITSTRING.
3127
3128 * stabsread.c (read_type): Don't set TYPE_CODE (type) to
3129 TYPE_CODE_BITSTRING.
3130
3131 * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
3132 slot 0.
3133
3134 2012-08-16 Yao Qi <yao@codesourcery.com>
3135
3136 * tracepoint.c (trace_find_none_command): Remove.
3137 (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
3138
3139 2012-08-16 Yao Qi <yao@codesourcery.com>
3140
3141 * remote.c (handle_notification): Remove parameter 'length'.
3142 (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
3143
3144 2012-08-15 Keith Seitz <keiths@redhat.com>
3145
3146 * gdbtypes.c (opaque_type_resolution): Make static.
3147 Add missing comment.
3148 (overload_debug): Add missing comment.
3149 (show_opaque_type_resolution): Likewise.
3150 (show_overload_debug): Likewise.
3151 (print_bit_vector): Remove unnecessary forward declaration.
3152 (print_arg_types): Likewise.
3153 (dump_fn_fieldlists): Likewise.
3154 (print_cplus_stuff): Likewise.
3155
3156 2012-08-15 Tom Tromey <tromey@redhat.com>
3157
3158 * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
3159 (gdb_bfd_ref): Initialize new field.
3160 (gdb_bfd_unref): Unref the archive BFD.
3161 (gdb_bfd_openr_next_archived_file): Acquire a reference to the
3162 parent archive.
3163
3164 2012-08-15 Tom Tromey <tromey@redhat.com>
3165
3166 PR python/14387:
3167 * python/py-bpevent.c (create_breakpoint_event_object): Update
3168 comment.
3169 * python/py-event.c (evpy_add_attribute): Update comment.
3170 * python/py-exitedevent.c (create_exited_event_object): Fix
3171 reference counting and error handling.
3172 * python/py-newobjfileevent.c (create_new_objfile_event_object):
3173 Fix reference counting.
3174 * python/py-signalevent.c (create_signal_event_object): Fix
3175 reference counting and error handling.
3176 * python/py-stopevent.c (emit_stop_event): Fix reference
3177 counting.
3178 * python/py-threadevent.c (get_event_thread): Return a
3179 borrowed reference.
3180 * python/py-type.c (convert_field): Fix reference counting.
3181
3182 2012-08-15 Tom Tromey <tromey@redhat.com>
3183
3184 * dwarf2read.c (dwarf_decode_macro_bytes)
3185 <DW_MACRO_GNU_transparent_include>: Use pointer to included data
3186 as hash key.
3187
3188 2012-08-14 Mike Frysinger <vapier@gentoo.org>
3189
3190 * infcmd.c (_initialize_infcmd): Update help text for the signal,
3191 stepi, nexti, finish, next, step, jump, and continue commands.
3192 * infrun.c (_initialize_infrun): Update help text for the handle
3193 command.
3194
3195 2012-08-14 Doug Evans <dje@google.com>
3196
3197 * gdbtypes.c (struct extra): Delete, unused.
3198
3199 * gdbtypes.c: Whitespace cleanup.
3200 (address_space_name_to_int): Remove "extern" from definition.
3201 (_initialize_gdbtypes): Declare with initialize_file_ftype.
3202
3203 * gdbtypes.c (make_pointer_type): Remove redundant setting of
3204 TYPE_POINTER_TYPE (type).
3205
3206 2012-08-14 Gary Benson <gbenson@redhat.com>
3207
3208 * solib-svr4.c (svr4_free_library_list): Use free_so.
3209
3210 2012-08-13 Mike Frysinger <vapier@gentoo.org>
3211
3212 * .gitignore: Add go-exp.c.
3213
3214 2012-08-13 Doug Evans <dje@google.com>
3215
3216 * value.c (show_convenience): Tweak comment.
3217 (_initialize_values): Mention convenience functions in the help text
3218 for "show convenience".
3219
3220 2012-08-13 Yao Qi <yao@codesourcery.com>
3221
3222 * std-operator.def: Remove TERNOP_SLICE_COUNT.
3223 * breakpoint.c (watchpoint_exp_is_const): Remove handling to
3224 TERNOP_SLICE_COUNT.
3225 * eval.c (evaluate_subexp_standard): Likewise.
3226 * expprint.c (print_subexp_standard): Likewise.
3227 (dump_subexp_body_standard): Likewise.
3228 * parse.c (operator_length_standard): Likewise.
3229
3230 2012-08-13 Yao Qi <yao@codesourcery.com>
3231
3232 * std-operator.def: Remove OP_BITSTRING.
3233 * breakpoint.c (watchpoint_exp_is_const): Update.
3234 * eval.c (evaluate_subexp_standard): Remove handling to
3235 OP_BITSTRING.
3236 * expprint.c (print_subexp_standard): Likewise.
3237 (dump_subexp_body_standard): Likewise.
3238 * parse.c (operator_length_standard): Likewise.
3239 * valops.c (value_bitstring): Remove.
3240 * value.h: Remove the declaration of 'value_bitstring'.
3241
3242 2012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
3243
3244 * linespec.c (find_methods): Remove unused variables `i1' and
3245 `name_len'.
3246 (decode_line_full): Likewise for `arg_start'.
3247
3248 2012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
3249
3250 * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
3251 (zlib_decompress_section): Likewise for `section_data'.
3252 (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
3253
3254 2012-08-10 Doug Evans <dje@google.com>
3255
3256 Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
3257 * NEWS: Document them.
3258 * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
3259 function/strfns.py.
3260 * python/py-type.c (typy_array_1): New function.
3261 (typy_array): Call it.
3262 (typy_vector): New function.
3263 (type_object_methods): Add "vector".
3264 * python/lib/gdb/function/__init__.py: New file.
3265 * python/lib/gdb/function/strfns.py: New file.
3266
3267 2012-08-10 Siddhesh Poyarekar <siddhesh@redhat.com>
3268
3269 * python/py-type.c (convert_field): Use gdb_py_long_from_longest
3270 for TYPE_FIELD_BITPOS.
3271 (typy_get_sizeof): Likewise for TYPE_LENGTH.
3272
3273 2012-08-10 Mike Frysinger <vapier@gentoo.org>
3274
3275 PR cli/10436:
3276 * common/vec.h (VEC_merge): Define.
3277 (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
3278 (DEF_VEC_ALLOC_FUNC_P): Likewise.
3279 (DEF_VEC_ALLOC_FUNC_O): Likewise.
3280 * completer.c: Include gdb_signals.h.
3281 (signal_completer): Define.
3282 * completer.h (signal_completer): Add prototype.
3283 * infcmd.c (_initialize_infcmd): Assign the command
3284 completer for "signal" to handle_completer.
3285 * infrun.c: Include completer.h.
3286 (handle_completer): Define.
3287 (_initialize_infrun): Declare a new local variable c. Store the
3288 result of add_com("handle") to it. Assign the command
3289 completer for "handle" to handle_completer.
3290
3291 2012-08-09 Yao Qi <yao@codesourcery.com>
3292
3293 * cli/cli-decode.c (set_cmd_prefix): New.
3294 (lookup_cmd_for_prefixlist): New.
3295 (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
3296 of each cmd_list_element in *prefixlist.
3297 (add_setshow_cmd_full): set_cmd_prefix.
3298 (add_alias_cmd): Likewise.
3299 * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
3300 Declare 'auto_boolean_enums'.
3301 * cli/cli-setshow.c: Include "observer.h".
3302 (notify_command_param_changed_p): New.
3303 (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
3304 Remove 'static'.
3305 (do_setshow_command): Split it to ...
3306 (do_set_command, do_show_command): ... them. New.
3307 (do_set_command): Call observer_notify_command_param_changed if
3308 notify_command_param_changed_p returns true.
3309 (cmd_show_list): Caller update.
3310 * auto-load.c (set_auto_load_cmd): Likewise.
3311 * remote.c (show_remote_cmd): Likewise.
3312 * cli/cli-setshow.h: Update declarations.
3313 * top.c (execute_command): Call do_set_command and do_show_command.
3314
3315 * NEWS: Mention new MI notification.
3316 * mi/mi-interp.c: Declare mi_command_param_changed.
3317 (mi_interpreter_init): Attach mi_command_param_changed to
3318 observer command_param_changed.
3319 (mi_command_param_changed): New.
3320 Remove mi_suppress_breakpoint_notifications.
3321 Define global variable mi_suppress_notification.
3322 (mi_breakpoint_created): Update.
3323 (mi_breakpoint_deleted): Likewise.
3324 (mi_breakpoint_modified): Likewise.
3325 * mi/mi-main.c (mi_cmd_execute): Likewise. Check command
3326 'gdb-set' and set mi_suppress_notification.
3327 * mi/mi-main.h: (mi_suppress_notification): New struct.
3328
3329 2012-08-09 Andreas Tobler <andreast@fgznet.ch>
3330 Jan Kratochvil <jan.kratochvil@redhat.com>
3331
3332 * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
3333
3334 2012-08-09 Yao Qi <yao@codesourcery.com>
3335
3336 * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
3337 (skiplist): Move it to skip.c.
3338 (init_cmd_lists): Remove code setting enablebreaklist and
3339 skiplist to NULL.
3340 * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
3341 * cli/cli-cmds.h: Remove declaration of enablebreaklist and
3342 skiplist.
3343 * gdbcmd.h: Likewise.
3344 * skip.c (_initialize_step_skip): Move 'skiplist' from
3345 cli/cli-cmds.c.
3346
3347 2012-08-09 Yao Qi <yao@codesourcery.com>
3348
3349 * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
3350 * gnu-nat.c, symfile.c: Likewise.
3351
3352 2012-08-08 Aaron Gamble <agamble@google.com>
3353
3354 * utils.c (prompt_for_continue_wait_time): New static global.
3355 (make_command_stats_cleanup): Initialize it.
3356 (report_command_stats): Subtract time waiting for user.
3357 (prompt_for_continue): Track time waiting for user.
3358 (defaulted_query): Track time waiting for user.
3359
3360 2012-08-08 Doug Evans <dje@google.com>
3361
3362 * eval.c (evaluate_subexp_standard): Fix thinko in handling
3363 UNOP_MEMVAL_TYPE.
3364 * expprint.c (print_subexp_standard, case OP_TYPE): New.
3365 (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
3366 (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
3367 (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
3368 (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
3369 (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
3370 elt.
3371 (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
3372 (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
3373 (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
3374 (dump_prefix_expression): Handle OP_TYPE.
3375
3376 2012-08-08 Keith Seitz <keiths@redhat.com>
3377
3378 * breakpoint.c (parse_breakpoint_sals): Remove unused variable
3379 addr_start.
3380
3381 2012-08-08 Doug Evans <dje@google.com>
3382
3383 * linux-thread-db.c: #include "gdb_vecs.h".
3384 (try_thread_db_load_from_pdir_1): New arg "subdir". All callers
3385 updated.
3386 (try_thread_db_load_from_pdir): New arg "subdir". All callers updated.
3387 (thread_db_load_search): Use a vector to iterate over path elements.
3388 Handle text appearing after "$pdir".
3389
3390 * gdb_string.h: Moved to ...
3391 * common/gdb_string.h: ... here.
3392 * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
3393 gdb_string.h and gdb_assert.h.
3394
3395 2012-08-08 Yao Qi <yao@codesourcery.com>
3396
3397 * tic6x-tdep.c (tic6x_register_to_value): Remove.
3398 (tic6x_value_to_register): Likewise.
3399 (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
3400 and set_gdbarch_value_to_register.
3401
3402 2012-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3403 Jean-Marc Saffroy <saffroy@gmail.com>
3404
3405 PR 11804
3406 * defs.h (find_memory_region_ftype): New comment. New arg modified.
3407 * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
3408 * gcore.c (gcore_create_callback): New function comment. Add modified
3409 parameter. Only write modified regions. Set SEC_READONLY exactly
3410 according to MODIFIED.
3411 (objfile_find_memory_regions): Ignore separate debug info files. Ass
3412 the passed modified value to FUNC.
3413 * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
3414 * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
3415 first. New variables modified and has_anonymous. Parse the lines of
3416 smaps file. Add the passed MODIFIED value to FUNC.
3417 * procfs.c (find_memory_regions_callback): Add the passed modified
3418 value.
3419
3420 2012-08-06 Tom Tromey <tromey@redhat.com>
3421
3422 * dwarf2-frame.c (clear_pointer_cleanup): New function.
3423 (dwarf2_frame_cache): Use it.
3424 * frame-unwind.h (frame_sniffer_ftype): Document prologue
3425 cache initialization constraint.
3426
3427 2012-08-06 Tom Tromey <tromey@redhat.com>
3428
3429 PR python/14386:
3430 * varobj.c (update_dynamic_varobj_children): Don't call
3431 PyIter_Check.
3432
3433 2012-08-06 Tom Tromey <tromey@redhat.com>
3434
3435 PR cli/14392:
3436 * cli/cli-cmds.c (list_command): Filter 'sals_end'.
3437
3438 2012-08-06 Nathaniel Flath <flat0103@gmail.com>
3439
3440 * NEWS: New entry for 'cd' default parameters.
3441 * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
3442
3443 2012-08-03 Tom Tromey <tromey@redhat.com>
3444
3445 * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
3446 return.
3447
3448 2012-08-02 Ulrich Weigand <ulrich.weigand@linaro.org>
3449
3450 * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
3451 to attempting lseek/write.
3452 (inf_child_fileio_pread): Likewise for pread.
3453
3454 2012-08-02 Yao Qi <yao@codesourcery.com>
3455
3456 * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
3457 (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
3458 add_setshow_zinteger_cmd.
3459 * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
3460 * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
3461 (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
3462 instead of add_setshow_zinteger_cmd.
3463 * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
3464 (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
3465 instead of add_setshow_zinteger_cmd.
3466 * frame.c (frame_debug): Add 'unsigned'.
3467 (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
3468 add_setshow_zinteger_cmd.
3469 * frame.h: Update the declaration of 'frame_debug'.
3470 * gdbtypes.c (overload_debug): Add 'unsigned'.
3471 (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
3472 add_setshow_zinteger_cmd.
3473 * inferior.h: Update declaration of 'debug_infrun'.
3474 * infrun.c (debug_infrun): Add 'unsigned'.
3475 (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
3476 add_setshow_zinteger_cmd.
3477 * jit.c (jit_debug): Add 'unsigned'.
3478 (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
3479 add_setshow_zinteger_cmd.
3480 * linux-nat.c (debug_linux_nat): Add 'unsigned'.
3481 (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
3482 instead of add_setshow_zinteger_cmd.
3483 * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
3484 (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
3485 add_setshow_zinteger_cmd.
3486 * machoread.c (mach_o_debug_level): Add 'unsigned'.
3487 (_initialize_machoread): Call add_setshow_zuinteger_cmd
3488 instead of add_setshow_zinteger_cmd.
3489 * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
3490 * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
3491 (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
3492 intead of add_setshow_zinteger_cmd.
3493 * mips-tdep.c (mips_debug): Add 'unsigned'.
3494 (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
3495 instead of add_setshow_zinteger_cmd.
3496 * monitor.c (monitor_debug): Add 'unsigned'.
3497 (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
3498 add_setshow_zinteger_cmd.
3499 * observer.c (observer_debug): Add 'unsigned'.
3500 (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
3501 add_setshow_zinteger_cmd.
3502 * parse.c (expressiondebug): Add 'unsigned'.
3503 (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
3504 add_setshow_zinteger_cmd.
3505 * record.c (record_debug): Add 'unsigned'.
3506 (_initialize_record): Call add_setshow_zuinteger_cmd instead of
3507 add_setshow_zinteger_cmd.
3508 * record.h: Update the declaration of 'record_debug'.
3509 * stap-probe.c (stap_expression_debug): Add 'unsigned'.
3510 (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
3511 add_setshow_zinteger_cmd.
3512 * serial.c (global_serial_debug_p): Add 'unsigned'.
3513 (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
3514 add_setshow_zinteger_cmd.
3515 * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
3516 (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
3517 add_setshow_zinteger_cmd.
3518 * solib-frv.c (solib_frv_debug): Add 'unsigned'.
3519 (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
3520 add_setshow_zinteger_cmd.
3521 * target.c (targetdebug): Add 'unsigned'.
3522 (initialize_targets): Call add_setshow_zuinteger_cmd instead of
3523 add_setshow_zinteger_cmd.
3524 * valops.c (overload_debug): Add 'unsigned'.
3525 * varobj.c (varobjdebug): Add 'unsigned'.
3526 (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
3527 add_setshow_zinteger_cmd.
3528 * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
3529 (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
3530 instead of add_setshow_zinteger_cmd.
3531
3532 * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
3533 * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
3534 (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
3535 instead of add_setshow_zinteger_cmd.
3536 * gdbarch.c, gdbarch.h: Re-generated.
3537
3538 2012-08-02 Yao Qi <yao@codesourcery.com>
3539
3540 * nto-tdep.c: Don't include cli/cli-decode.h and
3541 cli/cli-cmds.h.
3542 (_initialize_nto_tdep): Remove.
3543 * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
3544 Remove field.
3545 Remove macro nto_internal_debugging.
3546
3547 2012-08-01 Richard Henderson <rth@redhat.com>
3548
3549 * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
3550 (mep-*-*) [gdb_target_obs]: Likewise.
3551
3552 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
3553
3554 * ppc-linux-tdep.c (ppc_linux_init_abi): Register
3555 linux_get_siginfo_type.
3556
3557 2012-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
3558
3559 * infcall.c (call_function_by_hand): Move BP_ADDR comment to
3560 AT_ENTRY_POINT.
3561 (call_function_by_hand) <ON_STACK>: Call write_memory with
3562 gdbarch_breakpoint_from_pc, if possible.
3563 (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
3564 here.
3565
3566 2012-07-31 Yao Qi <yao@codesourcery.com>
3567
3568 * tracepoint.c: Add 'static' for some variables.
3569
3570 2012-07-31 Yao Qi <yao@codesourcery.com>
3571
3572 * go32-nat.c: Declare _initialize_go32_nat.
3573 * ser-go32.c: Declare _initialize_ser_dos.
3574 * top.c (do_chdir_cleanup): Add 'static'.
3575
3576 2012-07-30 Keith Seitz <keiths@redhat.com>
3577
3578 * linespec.c (linespec_lex_number): A number followed
3579 by quotes is a valid number, too.
3580
3581 2012-07-30 Tom Tromey <tromey@redhat.com>
3582
3583 * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
3584
3585 2012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
3586
3587 * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
3588 attempt to 4-byte-align HW breakpoint addresses for Thumb.
3589
3590 2012-07-30 Andrew Burgess <aburgess@broadcom.com>
3591
3592 * varobj.c (varobj_invalidate_iter): All varobj must be marked as
3593 invalid or reevaluated to prevent prevent references to possibly
3594 delete'd type objects being left in the varobj.
3595
3596 2012-07-27 Tom Tromey <tromey@redhat.com>
3597 Jan Kratochvil <jan.kratochvil@redhat.com>
3598
3599 * copying.awk: Print buffer-read-only and vi ro markers.
3600 * copying.c: Rebuild.
3601 * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
3602 * gdbarch.c, gdbarch.h: Rebuild.
3603 * target-descriptions.c (maint_print_c_tdesc_cmd): Print
3604 buffer-read-only and vi ro markers.
3605 * features/arm-with-iwmmxt.c: Rebuild.
3606 * features/arm-with-m-fpa-layout.c: Rebuild.
3607 * features/arm-with-m-vfp-d16.c: Rebuild.
3608 * features/arm-with-m.c: Rebuild.
3609 * features/arm-with-neon.c: Rebuild.
3610 * features/arm-with-vfpv2.c: Rebuild.
3611 * features/arm-with-vfpv3.c: Rebuild.
3612 * features/i386/amd64-avx-linux.c: Rebuild.
3613 * features/i386/amd64-avx.c: Rebuild.
3614 * features/i386/amd64-linux.c: Rebuild.
3615 * features/i386/amd64.c: Rebuild.
3616 * features/i386/i386-avx-linux.c: Rebuild.
3617 * features/i386/i386-avx.c: Rebuild.
3618 * features/i386/i386-linux.c: Rebuild.
3619 * features/i386/i386-mmx-linux.c: Rebuild.
3620 * features/i386/i386-mmx.c: Rebuild.
3621 * features/i386/i386.c: Rebuild.
3622 * features/i386/x32-avx-linux.c: Rebuild.
3623 * features/i386/x32-avx.c: Rebuild.
3624 * features/i386/x32-linux.c: Rebuild.
3625 * features/i386/x32.c: Rebuild.
3626 * features/mips-dsp-linux.c: Rebuild.
3627 * features/mips-linux.c: Rebuild.
3628 * features/mips64-dsp-linux.c: Rebuild.
3629 * features/mips64-linux.c: Rebuild.
3630 * features/rs6000/powerpc-32.c: Rebuild.
3631 * features/rs6000/powerpc-32l.c: Rebuild.
3632 * features/rs6000/powerpc-403.c: Rebuild.
3633 * features/rs6000/powerpc-403gc.c: Rebuild.
3634 * features/rs6000/powerpc-405.c: Rebuild.
3635 * features/rs6000/powerpc-505.c: Rebuild.
3636 * features/rs6000/powerpc-601.c: Rebuild.
3637 * features/rs6000/powerpc-602.c: Rebuild.
3638 * features/rs6000/powerpc-603.c: Rebuild.
3639 * features/rs6000/powerpc-604.c: Rebuild.
3640 * features/rs6000/powerpc-64.c: Rebuild.
3641 * features/rs6000/powerpc-64l.c: Rebuild.
3642 * features/rs6000/powerpc-7400.c: Rebuild.
3643 * features/rs6000/powerpc-750.c: Rebuild.
3644 * features/rs6000/powerpc-860.c: Rebuild.
3645 * features/rs6000/powerpc-altivec32.c: Rebuild.
3646 * features/rs6000/powerpc-altivec32l.c: Rebuild.
3647 * features/rs6000/powerpc-altivec64.c: Rebuild.
3648 * features/rs6000/powerpc-altivec64l.c: Rebuild.
3649 * features/rs6000/powerpc-cell32l.c: Rebuild.
3650 * features/rs6000/powerpc-cell64l.c: Rebuild.
3651 * features/rs6000/powerpc-e500.c: Rebuild.
3652 * features/rs6000/powerpc-e500l.c: Rebuild.
3653 * features/rs6000/powerpc-isa205-32l.c: Rebuild.
3654 * features/rs6000/powerpc-isa205-64l.c: Rebuild.
3655 * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
3656 * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
3657 * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
3658 * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
3659 * features/rs6000/powerpc-vsx32.c: Rebuild.
3660 * features/rs6000/powerpc-vsx32l.c: Rebuild.
3661 * features/rs6000/powerpc-vsx64.c: Rebuild.
3662 * features/rs6000/powerpc-vsx64l.c: Rebuild.
3663 * features/rs6000/rs6000.c: Rebuild.
3664 * features/s390-linux32.c: Rebuild.
3665 * features/s390-linux32v1.c: Rebuild.
3666 * features/s390-linux32v2.c: Rebuild.
3667 * features/s390-linux64.c: Rebuild.
3668 * features/s390-linux64v1.c: Rebuild.
3669 * features/s390-linux64v2.c: Rebuild.
3670 * features/s390x-linux64.c: Rebuild.
3671 * features/s390x-linux64v1.c: Rebuild.
3672 * features/s390x-linux64v2.c: Rebuild.
3673 * features/tic6x-c62x-linux.c: Rebuild.
3674 * features/tic6x-c62x.c: Rebuild.
3675 * features/tic6x-c64x-linux.c: Rebuild.
3676 * features/tic6x-c64x.c: Rebuild.
3677 * features/tic6x-c64xp-linux.c: Rebuild.
3678 * features/tic6x-c64xp.c: Rebuild.
3679
3680 2012-07-27 Tom Tromey <tromey@redhat.com>
3681
3682 * c-exp.y (classify_name): Avoid assignment in condition.
3683
3684 2012-07-27 Roland Schwingel <roland.schwingel@onevision.com>
3685
3686 * amd64-windows-tdep.c: Include "frame.h".
3687 (amd64_windows_skip_trampoline_code): New function.
3688 (amd64_windows_init_abi): Add trampoline registration.
3689
3690 2012-07-27 Yao Qi <yao@codesourcery.com>
3691
3692 * tracepoint.c (cur_traceframe_number): Remove.
3693 (set_tfile_traceframe): Remove.
3694 (tfile_trace_find, tfile_fetch_registers): Update callers.
3695 (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
3696 (tfile_open, tfile_trace_find): Likewise.
3697
3698 2012-07-27 Yao Qi <yao@codesourcery.com>
3699
3700 * thread.c (switch_to_thread): Don't call registers_changed.
3701
3702 2012-07-26 Tom Tromey <tromey@redhat.com>
3703
3704 * Makefile.in (SFILES): Remove objc-exp.y.
3705 (YYFILES): Remove objc-exp.c.
3706 (YYOBJ): Remove objc-exp.o.
3707 (local-maintainer-clean): Don't mention objc-exp.c.
3708 * c-exp.y: Include objc-lang.h.
3709 (%union) <class>: New field.
3710 (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
3711 (exp): Clone subscript production for OBJC_LBRAC. Add various
3712 Objective C productions.
3713 (msglist, msgarglist, msgarg): New productions.
3714 (array_mod, func_mod, operator): Clone productions for
3715 OBJC_LBRAC.
3716 (parse_string_or_char): Handle '@' strings.
3717 (lex_one_token): Return OBJC_LBRAC. Recognize @selector.
3718 (classify_name): Check la_name_of_this. Recognize ObjC class
3719 names.
3720 * objc-exp.y: Remove.
3721 * objc-lang.c (objc_language_defn): Use c_parse, c_error.
3722 * objc-lang.h (objc_parse, objc_error): Don't declare.
3723
3724 2012-07-26 Markus Metzger <markus.t.metzger@intel.com>
3725
3726 * python/py-inferior.c (infpy_threads): Call update_thread_list ().
3727
3728 2012-07-26 Jan Kratochvil <jan.kratochvil@redhat.com>
3729
3730 * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
3731 and decrement.
3732
3733 2012-07-26 Tom Tromey <tromey@redhat.com>
3734
3735 * copying.c: Rebuild.
3736 * copying.awk: Don't use immediate_quit. Use 'no_set_class', not
3737 'no_class'.
3738
3739 2012-07-26 Tom Tromey <tromey@redhat.com>
3740
3741 * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
3742 immediate_quit.
3743 (print_objfile_statistics): Likewise.
3744 (maintenance_print_symbols): Likewise.
3745 (maintenance_print_msymbols): Likewise.
3746 (maintenance_print_objfiles): Likewise.
3747 * psymtab.c (print_partial_symbols): Call QUIT.
3748 (maintenance_print_psymbols): Likewise. Don't modify
3749 immediate_quit.
3750 * copying.c (show_copying_command): Don't modify immediate_quit.
3751 (show_warranty_command): Likewise.
3752 * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
3753
3754 2012-07-26 Keith Seitz <keiths@redhat.com>
3755
3756 * linespec.c (linespec_lexer_lex_number): The input
3757 is also a valid number if the next character is a comma
3758 or colon.
3759
3760 2012-07-26 Joel Brobecker <brobecker@adacore.com>
3761
3762 * NEWS: Document new --enable-libmcheck/--disable-libmcheck
3763 configure options.
3764
3765 2012-07-26 Tristan Gingold <gingold@adacore.com>
3766
3767 * machoread.c: Include gdb_bfd.h.
3768
3769 2012-07-26 Tristan Gingold <gingold@adacore.com>
3770
3771 * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
3772 offset.
3773
3774 2012-07-26 Siddhesh Poyarekar <siddhesh@redhat.com>
3775
3776 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
3777 SIZE to size_t.
3778 (dwarf2_evaluate_loc_desc): Likewise.
3779 (dwarf2_loc_desc_needs_frame): Likewise.
3780 (locexpr_describe_location_1): Likewise.
3781 * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
3782 size_t.
3783 (struct dwarf2_loclist_baton): Likewise.
3784 * dwarf2read.c (struct dwarf_block): Likewise.
3785 (dump_die_shallow): Use pulongest to print dwarf_block.size.
3786 (decode_locdesc): Expand SIZE and I to size_t.
3787
3788 2012-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
3789
3790 * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
3791
3792 2012-07-25 Joel Brobecker <brobecker@adacore.com>
3793
3794 * doublest.c (convert_doublest_to_floatformat): If the exponent
3795 is too small, treat the value as zero. If the exponent is too
3796 large, treat the value as infinity.
3797
3798 2012-07-25 Joel Brobecker <brobecker@adacore.com>
3799
3800 * configure.ac: Add --enable-lmcheck configure option.
3801 * configure: Regenerate.
3802
3803 2012-07-25 Tom Tromey <tromey@redhat.com>
3804
3805 * NEWS: Mention maint info bfds.
3806 * gdb_bfd.c (all_bfds): New global.
3807 (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
3808 (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
3809 New functions.
3810
3811 2012-07-25 Ralf Corsépius <ralf.corsepius@rtems.org>
3812
3813 * configure.tgt: Add v850*-*-rtems*.
3814
3815 2012-07-25 Tom Tromey <tromey@redhat.com>
3816
3817 * macrotab.c (macro_bcache_str): Remove cast.
3818
3819 2012-07-25 Hui Zhu <hui_zhu@mentor.com>
3820
3821 * linespec.c (linespec_lexer_lex_number): Update comments,
3822 change the return and add check to make sure the input is
3823 the decimal numbers.
3824 (linespec_lexer_lex_one): If linespec_lexer_lex_number return
3825 false, call linespec_lexer_lex_string.
3826
3827 2012-07-24 Tom Tromey <tromey@redhat.com>
3828
3829 * symfile.c (symbol_file_add): Don't open BFD twice.
3830
3831 2012-07-24 Marc Khouzam <marc.khouzam@ericsson.com>
3832
3833 * breakpoint.c (create_breakpoint): Store condition for pending
3834 breakpoints.
3835
3836 2012-07-24 Andreas Schwab <schwab@linux-m68k.org>
3837
3838 * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
3839 (m68k_return_value): Handle complex types like structures.
3840 (m68k_svr4_return_value): Likewise.
3841
3842 2012-07-24 Marcus Shawcroft <marcus.shawcroft@arm.com>
3843
3844 * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
3845 parameters to bfd_get_section_name.
3846
3847 2012-07-24 Yao Qi <yao@codesourcery.com>
3848
3849 * cli/cli-setshow.c: Handle case 'var_uinteger'
3850 and 'var_zuninteger' together. Handle case 'var_integer' and
3851 'var_zinteger' together.
3852
3853 2012-07-23 Keith Seitz <keiths@redhat.com>
3854
3855 * linespec.c (convert_linespec_to_sal): Don't add
3856 any symbols to the result vector if symbol_to_sal
3857 returns zero.
3858
3859 2012-07-23 Keith Seitz <keiths@redhat.com>
3860
3861 * linespec.c (decode_objc): Record the function name
3862 in the linespec.
3863
3864 2012-07-23 Tom Tromey <tromey@redhat.com>
3865
3866 * rs6000-nat.c (add_vmap): Rewrite archive loop. Fix reference
3867 counting.
3868 * exec.c (exec_close_1): Unconditionally release vmap's BFD.
3869 (map_vmap): Acquire a reference to the BFD.
3870
3871 2012-07-23 Siddhesh Poyarekar <siddhesh@redhat.com>
3872
3873 * p-valprint.c (pascal_object_print_value): Replace potentially
3874 unsafe alloca with xmalloc/xfree.
3875 * valops.c (search_struct_method): Likewise.
3876
3877 2012-07-23 Tom Tromey <tromey@redhat.com>
3878
3879 * solib-svr4.c (enable_break): Update.
3880 * bfd-target.h (target_bfd_reopen): Update documentation.
3881
3882 2012-07-23 Tom Tromey <tromey@redhat.com>
3883
3884 * symfile.c (separate_debug_file_exists): Update.
3885 (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
3886 (reread_symbols): Update.
3887 * elfread.c (build_id_verify): Update.
3888 * symfile.h (gdb_bfd_open_maybe_remote): Rename from
3889 bfd_open_maybe_remote.
3890
3891 2012-07-23 Tom Tromey <tromey@redhat.com>
3892
3893 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
3894
3895 2012-07-23 Tom Tromey <tromey@redhat.com>
3896
3897 * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
3898 and 'abfd'.
3899 * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
3900 and 'abfd'.
3901 * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
3902 * machoread.c (macho_add_oso_symfile): Make a cleanup for
3903 'abfd'.
3904 (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
3905 * objfiles.c (allocate_objfile): Acquire a new reference.
3906 * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
3907 * solib.c (solib_read_symbols): Don't acquire a BFD reference.
3908 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
3909 a cleanup for 'nbfd'.
3910 * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
3911 for 'nbfd'.
3912 * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
3913 make a cleanup for 'abfd'.
3914 (symbol_file_add): Make a BFD cleanup.
3915
3916 2012-07-23 Tom Tromey <tromey@redhat.com>
3917
3918 * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
3919 (bfd_openw_with_cleanup): Use gdb_bfd_openw.
3920 * corelow.c (core_open): Use gdb_bfd_fopen.
3921 * dsrec.c (load_srec): Use gdb_bfd_openr.
3922 * exec.c (exec_file_attach): Use gdb_bfd_fopen.
3923 * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
3924 * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
3925 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
3926 (gdb_bfd_fdopenr): New functions.
3927 * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
3928 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
3929 (gdb_bfd_fdopenr): Declare.
3930 * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
3931 * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
3932 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
3933 gdb_bfd_openr_next_archived_file.
3934 (macho_check_dsym): Use gdb_bfd_openr.
3935 (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
3936 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
3937 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
3938 * remote-mips.c (mips_load_srec, pmon_load_fast): Use
3939 gdb_bfd_openr.
3940 * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
3941 * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
3942 gdb_bfd_openr_next_archived_file.
3943 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3944 Use gdb_bfd_openr.
3945 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
3946 gdb_bfd_openr.
3947 * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
3948 * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
3949 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
3950 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
3951 (symfile_bfd_open): Use gdb_bfd_fopen.
3952 (generic_load): Use gdb_bfd_openr.
3953 * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
3954
3955 2012-07-23 Tom Tromey <tromey@redhat.com>
3956
3957 * bfd-target.c (target_bfd_reopen): Update.
3958 * cli/cli-dump.c (bfd_openr_with_cleanup)
3959 (bfd_openw_with_cleanup): Update.
3960 * corelow.c (core_open): Update.
3961 * dsrec.c (load_srec): Update.
3962 * exec.c (exec_file_attach): Update.
3963 * gcore.c (create_gcore_bfd): Update.
3964 * gdb_bfd.c (gdb_bfd_ref): Return void.
3965 (gdb_bfd_open): Update.
3966 * gdb_bfd.h (gdb_bfd_ref): Return void.
3967 Update comments.
3968 * jit.c (jit_bfd_try_read_symtab): Update.
3969 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
3970 * machoread.c (macho_symfile_read_all_oso): Update.
3971 (macho_check_dsym): Update.
3972 * procfs.c (insert_dbx_link_bpt_in_file): Update.
3973 * remote-m32r-sdi.c (m32r_load): Update.
3974 * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
3975 * rs6000-nat.c (add_vmap): Update.
3976 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3977 Update.
3978 * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
3979 * solib-spu.c (spu_bfd_open): Update.
3980 * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
3981 * spu-linux-nat.c (spu_bfd_open): Update.
3982 * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
3983 (generic_load): Update.
3984 * windows-nat.c (windows_make_so): Update.
3985
3986 2012-07-22 Siddhesh Poyarekar <siddhesh@redhat.com>
3987
3988 * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
3989
3990 2012-07-20 Jeff Kenton <jkenton@tilera.com>
3991
3992 * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
3993 SIGTRAMP_FRAME unwinding.
3994
3995 2012-07-20 Doug Evans <dje@google.com>
3996
3997 * NEWS: Document new options "set/show use-deprecated-index-sections",
3998 and delete reference to --use-deprecated-index-sections.
3999 * symfile.h (use_deprecated_index_sections): Delete.
4000 * dwarf2read.c (use_deprecated_index_sections): Make static.
4001 (read_index_from_section): Update wording of how to load
4002 deprecated index sections.
4003 (_initialize_dwarf2_read): New options
4004 "set/show use-deprecated-index-sections".
4005 * main.c (captured_main): Delete --use-deprecated-index-sections.
4006
4007 2012-07-20 Pedro Alves <palves@redhat.com>
4008
4009 PR threads/11692
4010 PR gdb/12203
4011
4012 * infrun.c (handle_inferior_event) <new thread>: Don't special
4013 case minus_one_ptid.
4014 <TARGET_WAITKIND_SPURIOUS>: Ditto.
4015 * linux-thread-db.c (thread_get_info_callback): Don't return early
4016 if the thread is zombie.
4017 (thread_from_lwp): Change return type to void. Rewrite stale
4018 comment.
4019 (attach_thread): Don't return early if the thread is zombie,
4020 instead set its "dying" flag.
4021 (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
4022 (find_new_threads_callback): Don't return early if the thread is
4023 zombie.
4024
4025 2012-07-20 Pedro Alves <palves@redhat.com>
4026
4027 * linux-nat.c (linux_nat_wait): Dump the passed in target options.
4028 * target.c (target_wait): Likewise.
4029 (str_comma_list_concat_elem, do_option, target_options_to_string):
4030 New functions.
4031 * target.h (target_options_to_string): Declare.
4032
4033 2012-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
4034 Tom Tromey <tromey@redhat.com>
4035
4036 * dwarf2read.c (dwarf_decode_macros)
4037 <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
4038 DW_MACRO_GNU_transparent_include_alt>: New cases.
4039 (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
4040 DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
4041
4042 2012-07-20 Tom Tromey <tromey@redhat.com>
4043
4044 * dwarf2read.c (try_open_dwo_file): Don't call
4045 gdb_bfd_stash_filename.
4046
4047 2012-07-20 Pedro Alves <palves@redhat.com>
4048
4049 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
4050 (i386_record_lea_modrm, i386_record_push, i386_record_floats)
4051 (i386_process_record): Tweak description comments.
4052
4053 2012-07-20 Pedro Alves <palves@redhat.com>
4054
4055 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
4056 (i386_process_record): Use record_read_memory.
4057 * record.c (record_read_memory): New function.
4058 (record_arch_list_add_mem, record_exec_insn): Use
4059 record_read_memory.
4060 * record.h (record_read_memory): Declare.
4061
4062 2012-07-20 Yao Qi <yao@codesourcery.com>
4063
4064 * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
4065 NULL for xfree.
4066
4067 2012-07-19 Pedro Alves <palves@redhat.com>
4068
4069 * record.c (record_resume): Ask the target beneath to report all
4070 signals.
4071
4072 2012-07-19 Doug Evans <dje@google.com>
4073
4074 * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
4075 there's no section at address zero.
4076 (dwarf2_record_block_ranges): Ditto.
4077
4078 2012-07-19 Yao Qi <yao@codesourcery.com>
4079
4080 * command.h, remote.c: Fix a typo in comment.
4081
4082 2012-07-19 Tom Tromey <tromey@redhat.com>
4083
4084 PR exp/13206:
4085 * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
4086 * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
4087 OP_DECLTYPE>: New cases.
4088 * c-exp.y (TYPEOF, DECLTYPE): New tokens.
4089 (type_exp): Add new productions.
4090 (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
4091 and decltype.
4092 * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
4093 New case.
4094 * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
4095 OP_DECLTYPE>: New case.
4096 * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
4097 New case.
4098 * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
4099 * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
4100
4101 2012-07-19 Tom Tromey <tromey@redhat.com>
4102
4103 * c-exp.y (enum token_flags): New.
4104 (struct token) <cxx_only>: Remove.
4105 <flags>: New field.
4106 (tokentab3, tokentab2, ident_tokens): Update.
4107 (lex_one_token): Update. Handle FLAG_SHADOW.
4108
4109 2012-07-19 Tom Tromey <tromey@redhat.com>
4110
4111 * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
4112 * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
4113 UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
4114 * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE. Update
4115 for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST. Use
4116 type_exp production where appropriate.
4117 * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
4118 <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
4119 <UNOP_MEMVAL_TYPE>: New case.
4120 (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
4121 (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
4122 * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
4123 <UNOP_MEMVAL_TYPE>: New case.
4124 (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
4125 UNOP_REINTERPRET_CAST>: Update.
4126 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
4127 * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
4128 UNOP_REINTERPRET_CAST>: Update.
4129 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
4130 * stack.c (return_command): Also check for UNOP_CAST_TYPE.
4131 * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
4132 constants.
4133
4134 2012-07-19 Yao Qi <yao@codesourcery.com>
4135 Jan Kratochvil <jan.kratochvil@redhat.com>
4136
4137 * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
4138 and case 'var_optional_filename' together.
4139 * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
4140 instead of add_setshow_optional_filename_cmd for setshow command
4141 'args'. Set completer for 'set args'.
4142
4143 2012-07-18 Doug Evans <dje@google.com>
4144
4145 * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
4146 * common/gdb_vecs.c: New file, contents from utils.c.
4147 * common/host-defs.h: New file, contents from defs.h.
4148 * utils.h: New file, contents from defs.h.
4149 * defs.h: Move all declarations of objects defined in utils.c
4150 to utils.h (except QUIT() and related).
4151 #include "utils.h", "host-defs.h".
4152 * probe.h (probe_p): Move here from gdb_vecs.h.
4153 * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
4154 * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
4155 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
4156 * Makefile.in (SFILES): Add common/gdb_vecs.c.
4157 (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
4158 (COMMON_OBS): Add gdb_vecs.o.
4159 (gdb_vecs.o): New rule.
4160
4161 2012-07-18 Keith Seitz <keiths@redhat.com>
4162
4163 * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
4164 parameter. If non-zero, use SYMNAME as the canonical name
4165 for the SaL.
4166 Update all callers.
4167 (convert_linespec_to_sals): Use add_sal_to_sals for
4168 expressions, too.
4169 (decode_line_full): No need to "fill in missing canonical names"
4170 anymore. Simply make cleanups for the allocated names.
4171
4172 2012-07-18 Keith Seitz <keiths@redhat.com>
4173
4174 * linespec.c (struct linespec): Constify expression,
4175 source_filename, function_name, and label_name.
4176 (symbol_not_found_error): Make all parameters const.
4177 (linespec_parser_delete): No need to check for NULL
4178 when using xfree. Cast const char * to char * for xfree.
4179
4180 2012-07-18 Keith Seitz <keiths@redhat.com>
4181
4182 * breakpoint.c (invalid_thread_id_error): New function.
4183 (find_condition_and_thread): Use invalid_thread_id_error.
4184 (watch_command_1): Likewise.
4185
4186 2012-07-18 Tom Tromey <tromey@redhat.com>
4187
4188 * cc-with-index.sh, cc-with-dwz.sh: Remove.
4189 * contrib/cc-with-tweaks.sh: New file.
4190
4191 2012-07-18 Tom Tromey <tromey@redhat.com>
4192
4193 * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
4194 (locate_dwz_sections): Recognize .gdb_index.
4195 (create_cus_from_index_list): New function.
4196 (create_cus_from_index): Use it. Handle .dwz data.
4197 (read_index_from_section): New function, extracted from
4198 dwarf2_read_index.
4199 (dwarf2_read_index): Use it. Read .gdb_index from dwz file,
4200 if needed.
4201
4202 2012-07-18 Tom Tromey <tromey@redhat.com>
4203
4204 * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
4205 (struct dwarf2_per_cu_data) <length>: No longer bitfield.
4206 <is_dwz>: New field.
4207 (struct dwz_file): New.
4208 (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
4209 (locate_dwz_sections, dwarf2_get_dwz_file)
4210 (get_abbrev_section_for_cu): New functions.
4211 (error_check_comp_unit_head, read_and_check_comp_unit_head)
4212 (read_and_check_type_unit_head): Add abbrev_section argument.
4213 (create_debug_types_hash_table): Update.
4214 (init_cutu_and_read_dies): Use proper abbrev section.
4215 (init_cutu_and_read_dies_no_follow): Likewise.
4216 (set_partial_user): Do nothing if PST==NULL.
4217 (read_comp_units_from_section): New function.
4218 (create_all_comp_units): Use it.
4219 (scan_partial_symbols, partial_die_parent_scope): Update.
4220 (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4221 (process_imported_unit_die, read_partial_die): Handle .dwz files.
4222 (find_partial_die): Add offset_in_dwz argument. Update.
4223 (guess_partial_die_structure_name, fixup_partial_die): Update.
4224 (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
4225 DW_FORM_GNU_strp_alt.
4226 (read_indirect_string_from_dwz): New function.
4227 (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
4228 (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4229 (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
4230 (follow_die_offset): Add offset_in_dwz argument.
4231 (follow_die_ref, dwarf2_fetch_die_location_block): Update.
4232 (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
4233 (dwarf_decode_macro_bytes): Add section_is_dwz argument.
4234 Handle new macro forms.
4235 (dwarf_decode_macros): Update.
4236 (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
4237 (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
4238 (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
4239 (create_debug_types_hash_table): Use correct abbrev section.
4240 (get_debug_line_section): New function.
4241 (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
4242 (process_full_comp_unit): Pass 'required' argument to
4243 end_symtab_get_static_block.
4244 * buildsym.h (end_symtab_get_static_block): Update.
4245 * buildsym.c (end_symtab_get_static_block): Add 'required'
4246 argument.
4247 (end_symtab, end_expandable_symtab): Update.
4248
4249 2012-07-18 Tom Tromey <tromey@redhat.com>
4250
4251 * dwarf2read.c: Don't include zlib.h or sys/mman.h.
4252 (pagesize): Remove.
4253 (struct dwarf2_section_info) <map_addr, map_len>: Remove.
4254 (zlib_decompress_section): Remove.
4255 (dwarf2_read_section): Use gdb_bfd_map_section.
4256 (munmap_section_buffer): Remove.
4257 (free_dwo_file, dwarf2_per_objfile_free): Don't use
4258 munmap_section_buffer.
4259 * gdb_bfd.c: Include zlib.h, sys/mman.h.
4260 (struct gdb_bfd_section_data): New.
4261 (free_one_bfd_section): New function.
4262 (gdb_bfd_close_or_warn): Use free_one_bfd_section.
4263 (get_section_descriptor, zlib_decompress_section)
4264 (gdb_bfd_map_section): New functions.
4265 * gdb_bfd.h (gdb_bfd_map_section): Declare.
4266
4267 2012-07-18 Tom Tromey <tromey@redhat.com>
4268
4269 * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
4270
4271 2012-07-18 Tom Tromey <tromey@redhat.com>
4272
4273 * gdb_bfd.c (struct gdb_bfd_data): New.
4274 (gdb_bfd_cache): New global.
4275 (struct gdb_bfd_cache_search): New.
4276 (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
4277 (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
4278 * gdb_bfd.h (gdb_bfd_open): Declare.
4279
4280 2012-07-18 Tom Tromey <tromey@redhat.com>
4281
4282 * utils.c (make_cleanup_bfd_unref): Rename from
4283 make_cleanup_bfd_close.
4284 * defs.h (make_cleanup_bfd_unref): Rename from
4285 make_cleanup_bfd_close.
4286 * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
4287 (bfd_openw_with_cleanup): Update.
4288 * corelow.c (core_open): Update.
4289 * dsrec.c (load_srec): Update.
4290 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
4291 * remote-m32r-sdi.c (m32r_load): Update.
4292 * remote-mips.c (mips_load_srec): Update.
4293 (pmon_load_fast): Update.
4294 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4295 Update.
4296 (darwin_bfd_open): Update.
4297 * solib.c (solib_bfd_fopen): Update.
4298 * symfile-mem.c (symbol_file_add_from_memory): Update.
4299 * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
4300 (symfile_bfd_open): Update.
4301 (generic_load): Update.
4302
4303 2012-07-18 Tom Tromey <tromey@redhat.com>
4304
4305 * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
4306 (pmon_load_fast): Likewise.
4307 * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
4308 (m32r_upload_command): Likewise.
4309 * dsrec.c (load_srec): Use make_cleanup_bfd_close.
4310 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4311 Use make_cleanup_bfd_close.
4312
4313 2012-07-18 Tom Tromey <tromey@redhat.com>
4314
4315 * symfile.c (symfile_bfd_open): Don't copy name. Call
4316 gdb_bfd_stash_filename.
4317 (load_command): Open the new BFD before freeing the old.
4318 (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
4319 * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
4320 Call gdb_bfd_stash_filename.
4321 * spu-linux-nat.c (spu_bfd_open): Don't copy name.
4322 * solib-spu.c (spu_bfd_fopen): Don't copy name. Call
4323 gdb_bfd_stash_filename.
4324 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4325 Free found_pathname.
4326 * rs6000-nat.c (add_vmap): Don't copy filename. Call
4327 gdb_bfd_stash_filename.
4328 * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
4329 * machoread.c (macho_add_oso_symfile): Call
4330 gdb_bfd_stash_filename.
4331 (macho_symfile_read_all_oso): Arrange to free archive_name. Call
4332 gdb_bfd_stash_filename.
4333 (macho_check_dsym): Don't copy filename. Call
4334 gdb_bfd_stash_filename.
4335 * jit.c (bfd_open_from_target_memory): Don't copy the filename.
4336 * gdb_bfd.c (gdb_bfd_stash_filename): New function.
4337 * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
4338 * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
4339 * exec.c (exec_close): Don't free the BFD's filename.
4340 (exec_file_attach): Don't copy the filename. Call
4341 gdb_bfd_stash_filename.
4342 * corelow.c (core_close): Don't free the BFD's filename.
4343 (core_open): Call gdb_bfd_stash_filename.
4344 * corefile.c (reopen_exec_file): Remove #if 0 code.
4345 * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename. Free
4346 pathname.
4347 * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
4348
4349 2012-07-18 Tom Tromey <tromey@redhat.com>
4350
4351 * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
4352 gdb_bfd_unref.
4353 (free_dwo_file): Use gdb_bfd_unref.
4354 * cli/cli-dump.c: Include gdb_bfd.h.
4355 (bfd_openw_with_cleanup): Use gdb_bfd_ref.
4356 (bfd_openr_with_cleanup): Likewise.
4357 * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
4358 gdb_bfd_unref.
4359 * utils.c: Include gdb_bfd.h.
4360 (do_bfd_close_cleanup): Use gdb_bfd_unref.
4361 * symfile.c: Include gdb_bfd.h.
4362 (separate_debug_file_exists): Use gdb_bfd_unref.
4363 (bfd_open_maybe_remote): Use gdb_bfd_ref.
4364 (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4365 (generic_load): Use gdb_bfd_ref.
4366 (reread_symbols): Use gdb_bfd_unref.
4367 * symfile-mem.c: Include gdb_bfd.h.
4368 (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
4369 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4370 * solib.c: Include gdb_bfd.h.
4371 (solib_bfd_fopen): Use gdb_bfd_ref.
4372 (solib_bfd_open): Use gdb_bfd_unref.
4373 (free_so_symbols): Use gdb_bfd_unref.
4374 (reload_shared_libraries_1): Use gdb_bfd_unref.
4375 * solib-spu.c: Include gdb_bfd.h.
4376 (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
4377 * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
4378 gdb_bfd_unref.
4379 * solib-frv.c: Include gdb_bfd.h.
4380 (enable_break2): Use gdb_bfd_unref.
4381 * solib-dsbt.c: Include gdb_bfd.h.
4382 (enable_break2): Use gdb_bfd_unref.
4383 * solib-darwin.c: Include gdb_bfd.h.
4384 (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
4385 gdb_bfd_unref.
4386 (darwin_bfd_open): Use gdb_bfd_unref.
4387 * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
4388 * remote-mips.c: Include gdb_bfd.h.
4389 (mips_load_srec): Use gdb_bfd_ref.
4390 (pmon_load_fast): Use gdb_bfd_ref.
4391 * remote-m32r-sdi.c: Include gdb_bfd.h.
4392 (m32r_load): Use gdb_bfd_ref.
4393 * record.c: Include gdb_bfd.h.
4394 (record_save_cleanups): Use gdb_bfd_unref.
4395 (cmd_record_save): Use gdb_bfd_unref.
4396 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
4397 gdb_bfd_unref.
4398 * objfiles.h (gdb_bfd_close_or_warn): Remove.
4399 (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
4400 * objfiles.c: Include gdb_bfd.h.
4401 (free_objfile): Use gdb_bfd_unref.
4402 (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
4403 gdb_bfd.c.
4404 * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
4405 (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
4406 (macho_check_dsym): Likewise.
4407 * m32r-rom.c: Include gdb_bfd.h.
4408 (m32r_load): Use gdb_bfd_ref.
4409 (m32r_upload_command): Use gdb_bfd_ref.
4410 * jit.c: Include gdb_bfd.h.
4411 (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
4412 * gdb_bfd.h: New file.
4413 * gdb_bfd.c: New file.
4414 * gcore.c: Include gdb_bfd.h.
4415 (create_gcore_bfd): Use gdb_bfd_ref.
4416 (do_bfd_delete_cleanup): Use gdb_bfd_unref.
4417 (gcore_command): Use gdb_bfd_unref.
4418 * exec.c: Include gdb_bfd.h.
4419 (exec_close): Use gdb_bfd_unref.
4420 (exec_close_1): Use gdb_bfd_unref.
4421 (exec_file_attach): Use gdb_bfd_ref.
4422 * elfread.c: Include gdb_bfd.h.
4423 (build_id_verify): Use gdb_bfd_unref.
4424 * dsrec.c: Include gdb_bfd.h.
4425 (load_srec): Use gdb_bfd_ref.
4426 * corelow.c: Include gdb_bfd.h.
4427 (core_close): Use gdb_bfd_unref.
4428 (core_open): Use gdb_bfd_ref.
4429 * bfd-target.c: Include gdb_bfd.h.
4430 (target_bfd_xclose): Use gdb_bfd_unref.
4431 (target_bfd_reopen): Use gdb_bfd_ref.
4432 * Makefile.in (SFILES): Add gdb_bfd.c.
4433 (HFILES_NO_SRCDIR): Add gdb_bfd.h.
4434 (COMMON_OBS): Add gdb_bfd.o.
4435
4436 2012-07-18 Keith Seitz <keiths@redhat.com>
4437
4438 * breakpoint.c (find_condition_and_thread): Initialize
4439 TASK and REST.
4440 (create_breakpiont): find_condition_and_thread will now
4441 initialize COND_STRING, THREAD, and REST (and TASK).
4442 (addr_string_to_sals): Likewise.
4443
4444 2012-07-18 Pedro Alves <palves@redhat.com>
4445
4446 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
4447 Pull the single step breakpoints out of the target.
4448
4449 2012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
4450
4451 * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
4452 * stap-probe.c (compile_probe_arg): Likewise.
4453
4454 2012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
4455
4456 * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
4457 (elf_compile_to_ax): Likewise.
4458 * infrun.c (insert_exception_resume_from_probe): Likewise.
4459 (check_exception_resume): Remove `objfile' variable.
4460 * probe.c (find_probe_by_pc): Remove `objfile' argument.
4461 (struct probe_and_objfile, probe_and_objfile_s): Delete.
4462 (collect_probes): Adjust return value to `VEC (probe_p) *'.
4463 (compare_entries): Rename to...
4464 (compare_probes): ...this. Adjust function to work with
4465 `struct probe *'. Rename variables `ea' and `eb' to `pa' and `pb'
4466 respectively.
4467 (gen_ui_out_table_header_info): Adjust `probes' argument to be
4468 `VEC (probe_p) *'.
4469 (print_ui_out_info): Adjust argument to be `struct probe *'.
4470 (info_probes_for_ops): Adjust internal computations to use
4471 `VEC (probe_p) *'.
4472 (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
4473 * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
4474 gen_info_probes_table_values>: Remove `objfile' argument.
4475 (struct probe) <objfile>: New field.
4476 (find_probe_by_pc): Remove `objfile' argument.
4477 * stap-probe.c (stap_parse_probe_arguments): Likewise.
4478 (stap_get_probe_argument_count): Likewise.
4479 (stap_get_arg): Likewise.
4480 (stap_evaluate_probe_argument): Likewise.
4481 (stap_compile_to_ax): Likewise.
4482 (compile_probe_arg): Refactor not to pass `objfile' anymore.
4483 (handle_stap_probe): Fill `objfile' field from `struct probe'.
4484 (stap_gen_info_probes_table_header): Remove `objfile' argument.
4485 * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
4486 sym_compile_to_ax>: Likewise.
4487
4488 2012-07-18 Terry Guo <terry.guo@arm.com>
4489
4490 PR 14329
4491 * defs.h (GDB_MI_MSG_WIDTH): New.
4492 * ser_base (ser_base_read_error_fd): New function.
4493 (do_ser_base_readchar): Poll error file descriptor as well as
4494 standard output.
4495 (generic_readchar): Refactor error handling.
4496
4497 2012-07-18 Joel Brobecker <brobecker@adacore.com>
4498
4499 * NEWS: Create a new section for the next release branch.
4500 Rename the section of the current branch, now that it has
4501 been cut.
4502
4503 2012-07-18 Joel Brobecker <brobecker@adacore.com>
4504
4505 GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
4506 * version.in: Bump version to 7.5.50.20120718-cvs.
4507
4508 2012-07-17 Keith Seitz <keiths@redhat.com>
4509
4510 * linespec.c (linespec_parse_line_offset): Make parameter
4511 const.
4512
4513 2012-07-16 Jan Kratochvil <jan.kratochvil@redhat.com>
4514
4515 PR 11914
4516 * f-valprint.c (info_common_command): New variable frame_id.
4517 Reinitialize FI form FRAME_ID after each print_variable_and_value.
4518 * printcmd.c (print_variable_and_value): Extend function comment.
4519 Add comment for invalidated FRAME.
4520 * stack.c (backtrace_command_1): New variable frame_id. Reinitialize
4521 FI form FRAME_ID after each print_frame_local_vars.
4522 (struct print_variable_and_value_data): Change frame to frame_id.
4523 (do_print_variable_and_value): New variable frame, initialize it from
4524 p->frame_id. Add comment for invalidated FRAME.
4525 (print_frame_local_vars, print_frame_arg_vars): New function comment.
4526 Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization. Add comment
4527 for invalidated FRAME.
4528
4529 2012-07-16 Marc Khouzam <marc.khouzam@ericsson.com>
4530 Pedro Alves <palves@redhat.com>
4531
4532 * linux-nat.c (linux_nat_detach): Don't unregister from the event
4533 loop.
4534
4535 2012-07-16 Tom Tromey <tromey@redhat.com>
4536
4537 * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
4538
4539 2012-07-15 Doug Evans <dje@google.com>
4540
4541 * dwarf2read.c (stmt_list_hash): New struct.
4542 (type_unit_group): Embed "per_cu" member, remove pointer.
4543 New union member "t", move member "tus" into it, all uses updated.
4544 New member "hash", replaces member "line_offset, all uses updated.
4545 (quick_file_names): Replace member "offset" with "hash", all uses
4546 updated.
4547 (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
4548 (hash_file_name_entry, eq_file_name_entry): Call them.
4549 (hash_type_unit_group, eq_type_unit_group): Ditto.
4550 (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
4551 (dw2_get_file_names_reader): Fix file name table calculation for TUs.
4552 (dw2_get_file_names): Update.
4553 (create_type_unit_group): Replace "per_cu" arg with "cu".
4554 All callers updated. Fix "quick" (.gdb_index) handling.
4555 (get_type_unit_group): Replace "per_cu" arg with "cu".
4556 All callers updated.
4557 (build_type_unit_groups): Don't reset tu_stats.
4558
4559 * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
4560 "tab_cur_size". Change member "tab" to be a htab_t.
4561 (create_filename_seen_cache): Update.
4562 (clear_filename_seen_cache, delete_filename_seen_cache): Update.
4563 (filename_seen): Update.
4564
4565 2012-07-13 Doug Evans <dje@google.com>
4566
4567 * symtab.c (filename_seen): Update comment.
4568
4569 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4570 Doug Evans <dje@google.com>
4571
4572 * buildsym.c (end_symtab_1): Split it to ...
4573 (end_symtab_get_static_block): ... this ...
4574 (end_symtab_from_static_block): ... and this function.
4575 (end_symtab, end_expandable_symtab): Call them.
4576 * buildsym.h (end_symtab_get_static_block)
4577 (end_symtab_from_static_block): New declarations.
4578 * dwarf2read.c (process_full_comp_unit): New variable static_block.
4579 Set its valid CU ranges.
4580
4581 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4582
4583 * dwarf2loc.c (disassemble_dwarf_expression): Handle
4584 DW_OP_GNU_parameter_ref.
4585
4586 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4587
4588 * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
4589 read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
4590
4591 2012-07-13 Doug Evans <dje@google.com>
4592
4593 * symtab.c (output_source_filename): Delete unnecessary forward decl.
4594 (filename_seen_cache): New struct.
4595 (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
4596 (create_filename_seen_cache): New function.
4597 (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
4598 (filename_seen): Delete arg "first". New arg "cache". All callers
4599 updated.
4600 (output_source_filename_data): New struct.
4601 (output_source_filename): Delete arg "first". New arg "data".
4602 All callers updated.
4603 (sources_info): Delete local "first". New locals "data", "cleanups".
4604 Rewrite to use filename_seen_cache.
4605 (add_partial_filename_data): Delete member "first". New member
4606 "filename_seen_cache". All uses updated.
4607 (make_source_files_completion_list): Rewrite to use
4608 filename_seen_cache.
4609
4610 2012-07-12 Doug Evans <dje@google.com>
4611
4612 * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
4613
4614 2012-07-10 Doug Evans <dje@google.com>
4615
4616 PR gdb/13498
4617 * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
4618 all_type_unit_groups, type_unit_groups, tu_stats.
4619 (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
4620 All uses updated. Add type_unit_group to union "s".
4621 (type_unit_group): New struct.
4622 (IS_TYPE_UNIT_GROUP): New macro.
4623 (abbrev_table): Delete unused member "section".
4624 (dw2_do_instantiate_symtab): Early exit if type_unit_group.
4625 (dw2_get_cu): Assert not used with type_unit_group.
4626 (dw2_get_primary_cu): New function.
4627 (dw2_build_type_unit_groups_reader): New function.
4628 (dw2_build_type_unit_groups): New function.
4629 (dw2_get_file_names): Assert not called on type units.
4630 (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
4631 Redo loop to iterate over type unit groups instead of type units.
4632 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
4633 (read_abbrev_offset): New function.
4634 (init_cutu_and_read_dies): New arg "abbrev_table". All callers
4635 updated.
4636 (create_partial_symtab): New function.
4637 (process_psymtab_comp_unit_reader): Assert not used with type units.
4638 Call create_partial_symtab.
4639 (process_psymtab_type_unit): Delete.
4640 (hash_type_unit_group, eq_type_unit_group): New functions.
4641 (allocate_type_unit_groups_table): New function.
4642 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
4643 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
4644 (create_type_unit_group, get_type_unit_group): New functions.
4645 (tu_abbrev_offset): New struct.
4646 (sort_tu_by_abbrev_offset): New function.
4647 (add_type_unit_group_to_table): New function.
4648 (build_type_unit_groups): New function.
4649 (build_type_psymtabs_reader): New function.
4650 (build_type_psymtab_dependencies): New function.
4651 (build_type_psymtabs): Rewrite.
4652 (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
4653 is seen in a type unit.
4654 (process_queue): Move symtab expansion debugging printfs here.
4655 Call process_full_type_unit for type units.
4656 (compute_symtab_includes): Assert not called for type units.
4657 (process_cu_includes): Don't call compute_symtab_includes for
4658 type units.
4659 (process_full_type_unit): New function.
4660 (process_imported_unit_die): Flag an error if called for type units.
4661 (handle_DW_AT_stmt_list): Delete arg "want_line_info". All callers
4662 updated. Assert not called for type units.
4663 (read_file_scope): Call dwarf2_start_symtab.
4664 (setup_type_unit_groups): New function.
4665 (read_type_unit_scope): Rewrite.
4666 (abbrev_table_read_table): Initialize abbrev_table->offset.
4667 (abbrev_table_free_cleanup): New function.
4668 (dwarf2_start_symtab): New function.
4669 (load_full_type_unit): Assert not called for type unit groups.
4670 * buildsym.c (finish_block_internal): New arg "expandable".
4671 All callers updated.
4672 (start_symtab): Move most contents to ...
4673 (restart_symtab): ... here. New function.
4674 (reset_symtab_globals): New function.
4675 (end_symtab_1): Renamed from end_symtab. New arg "expandable".
4676 Call reset_symtab_globals.
4677 (end_symtab, end_expandable_symtab): New functions.
4678 (set_missing_symtab, augment_type_symtab): New functions.
4679 * buildsym.h (end_expandable_symtab): Declare.
4680 (augment_type_symtab, restart_symtab): Declare.
4681 * psympriv.h (struct partial_symtab): New member "anonymous".
4682 * psymtab.c (partial_map_symtabs_matching_filename): Ignore
4683 anonymous psymtabs.
4684 (read_psymtabs_with_filename): Ditto.
4685 (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
4686 (expand_symtabs_matching_via_partial): Ditto.
4687 (dump_psymtab): Update.
4688 * dictionary.c (dict_add_pending): New function.
4689 * dictionary.h (dict_add_pending): Declare.
4690
4691 2012-07-09 Doug Evans <dje@google.com>
4692
4693 * buildsym.c (start_subfile): Remove unnecessary check for
4694 name == NULL.
4695
4696 * psymtab.c (allocate_psymtab): Use host_address_to_string.
4697
4698 * dwarf2read.c (load_full_type_unit): Simplify.
4699
4700 * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
4701 to struct signatured_type **. All uses updated.
4702
4703 * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
4704 All callers updated.
4705
4706 2012-07-09 Tom Tromey <tromey@redhat.com>
4707
4708 * c-exp.y (check_parameter_typelist): New function.
4709 (parameter_typelist): Call it.
4710 * eval.c (make_params): Handle '(void)' case.
4711 * gdbtypes.c (lookup_function_type_with_arguments): Handle
4712 '(void)' case.
4713
4714 2012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4715
4716 * common/linux-ptrace.c: Include gdb_assert.h.
4717 <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
4718 <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
4719 stdint.h.
4720 (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
4721 functions.
4722 * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
4723 * linux-nat.c (linux_child_post_attach)
4724 (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
4725
4726 2012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4727
4728 * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
4729 nptl <2.7 bug workaround for core files.
4730
4731 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4732
4733 * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
4734 clearing.
4735 (save_siginfo): Remove.
4736 (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
4737 call.
4738 (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
4739 (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
4740 * linux-nat.h (struct lwp_info): Remove field siginfo.
4741
4742 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4743
4744 Code cleanup for the next patch.
4745 * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
4746 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4747 call for it.
4748 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
4749 (ia64_linux_stopped_data_address):
4750 * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
4751 the return value.
4752 * linux-nat.h (linux_nat_get_siginfo): Likewise.
4753 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
4754 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4755 call for it.
4756
4757 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4758
4759 PR 14321
4760 * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
4761 Increase buffer sizes to 2x we need, not just 2x of the previous size.
4762
4763 2012-07-06 Tom Tromey <tromey@redhat.com>
4764
4765 * c-exp.y (DOTDOTDOT): New token.
4766 (func_mod, exp): Use parameter_typelist.
4767 (parameter_typelist): New production.
4768 (tokentab3): Add "..." token.
4769 * eval.c (make_params): Handle varargs.
4770 * gdbtypes.c (lookup_function_type_with_arguments): Handle
4771 varargs.
4772
4773 2012-07-06 Tom Tromey <tromey@redhat.com>
4774
4775 PR exp/9608:
4776 * c-exp.y (%union) <tvec>: Change type.
4777 (func_mod): Now uses <tvec> type.
4778 (exp): Update for tvec change.
4779 (direct_abs_decl): Push the typelist.
4780 (func_mod): Return a typelist.
4781 (nonempty_typelist): Update for tvec change.
4782 * gdbtypes.c (lookup_function_type_with_arguments): New function.
4783 * gdbtypes.h (lookup_function_type_with_arguments): Declare.
4784 * parse.c (pop_type_list): New function.
4785 (push_typelist): New function.
4786 (follow_types): Handle tp_function_with_arguments.
4787 * parser-defs.h (type_ptr): New typedef. Define a VEC.
4788 (enum type_pieces) <tp_function_with_arguments>: New constant.
4789 (union type_stack_elt) <typelist_val>: New field.
4790 (push_typelist): Declare.
4791
4792 2012-07-06 Tom Tromey <tromey@redhat.com>
4793
4794 * c-exp.y (%union) <type_stack>: New field.
4795 (abs_decl, direct_abs_decl): Use <type_stack> type. Update.
4796 (ptr_operator_ts): New production.
4797 (ptype): Update.
4798 * parse.c (type_stack_reserve): New function.
4799 (check_type_stack_depth): Use it.
4800 (pop_type_stack, append_type_stack, push_type_stack)
4801 (get_type_stack, type_stack_cleanup): New functions.
4802 (follow_types): Handle tp_type_stack.
4803 (_initialize_parse): Simplify initialization.
4804 * parser-defs.h (enum type_pieces) <tp_type_stack>: New
4805 constant.
4806 (union type_stack_elt) <stack_val>: New field.
4807 (get_type_stack, append_type_stack, push_type_stack)
4808 (type_stack_cleanup): Declare.
4809
4810 2012-07-06 Tom Tromey <tromey@redhat.com>
4811
4812 * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
4813 Remove.
4814 (struct type_stack): New.
4815 * parse.c (type_stack, type_stack_size, type_stack_depth):
4816 Remove.
4817 (type_stack): New global.
4818 (parse_exp_in_context, check_type_stack_depth)
4819 (insert_into_type_stack, insert_type, push_type, push_type_int)
4820 (insert_type_address_space, pop_type, pop_type_int)
4821 (_initialize_parse): Update.
4822
4823 2012-07-06 Tom Tromey <tromey@redhat.com>
4824
4825 * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
4826 Remove %type.
4827
4828 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
4829
4830 * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
4831
4832 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
4833 Jan Kratochvil <jan.kratochvil@redhat.com>
4834
4835 * cp-valprint.c (cp_print_value): Replace potentially unsafe
4836 alloca with xmalloc/xfree.
4837
4838 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
4839
4840 * MAINTAINERS (Write After Approval): Add myself to the list.
4841
4842 2012-07-05 Doug Evans <dje@google.com>
4843
4844 * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
4845
4846 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
4847
4848 * ax-gdb.c (cli/cli-utils.h): New include.
4849 (linespec.h): Ditto.
4850 (agent_eval_command_one): New function.
4851 (agent_command_1): Ditto.
4852 (agent_command): Call function agent_command_1.
4853 (agent_eval_command): Ditto.
4854 (_initialize_ax_gdb): Change help for "maint agent"
4855 and "maint agent-eval".
4856
4857 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
4858
4859 * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
4860 * cli/cli-utils.c (check_for_argument): New function.
4861 * cli/cli-utils.h (check_for_argument): Ditto.
4862
4863 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
4864
4865 * NEWS: Mention x32 ABI support.
4866
4867 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
4868
4869 * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
4870 AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
4871
4872 * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
4873 and pc_regnum_from_eax to -1. Update SP regnum from
4874 sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
4875 needed.
4876
4877 * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
4878 pc_regnum_from_eax.
4879
4880 2012-07-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4881
4882 Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
4883 * dwarf2expr.h: Include gdbtypes.h.
4884 (enum call_site_parameter_kind, union call_site_parameter_u): Remove
4885 these forward declarations.
4886 (cu_offset, sect_offset): Move these ...
4887 * gdbtypes.h: Remove include dwarf2expr.h.
4888 (cu_offset, sect_offset): ... here.
4889
4890 2012-07-03 H.J. Lu <hongjiu.lu@intel.com>
4891
4892 * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
4893 (amd64_linux_sigtramp_code): This.
4894 (amd64_x32_linux_sigtramp_code): New.
4895 (LINUX_SIGTRAMP_LEN): Updated.
4896 (amd64_linux_sigtramp_start): Check x32 sigtramp.
4897
4898 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4899
4900 * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
4901
4902 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4903
4904 * config.in: Regenerate.
4905 * configure: Regenerate.
4906 * configure.ac: Remove check for gnu/libc-version.h.
4907 * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
4908 gnu/libc-version.h.
4909 (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
4910 variables libc_version, libc_major and libc_minor. Replace sscanf by
4911 inferior_has_bug. Extend the comment.
4912
4913 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4914
4915 * linux-thread-db.c (inferior_has_bug): New function.
4916 (thread_db_find_new_threads_silently): Return boolean as checked by
4917 inferior_has_bug, describe it in the comments.
4918 (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
4919 earlier. Abort the initialization if it returned non-zero.
4920 (thread_db_new_objfile): Exclude debug files.
4921 (thread_db_find_new_threads_2): Preinitialize ERR. Check errors also
4922 if UNTIL_NO_NEW,
4923
4924 2012-07-02 Doug Evans <dje@google.com>
4925
4926 * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
4927 related to queue management.
4928
4929 * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
4930 instead of "debug dwarf2-die" in debugging printfs.
4931 (create_debug_info_hash_table_reader): Ditto.
4932 (create_debug_info_hash_table): Ditto.
4933 (init_dwo_file): Ditto.
4934 (init_cutu_and_read_dies): Add debugging printf.
4935 (init_cutu_and_read_dies_no_follow): Ditto.
4936 (process_psymtab_comp_unit_reader): Ditto.
4937
4938 2012-07-02 Stan Shebs <stan@codesourcery.com>
4939
4940 Add target-side support for dynamic printf.
4941 * NEWS: Mention the additional style.
4942 * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
4943 (struct bp_location): New field cmd_bytecode.
4944 * breakpoint.c: Include format.h.
4945 (disconnected_dprintf): New global.
4946 (parse_cmd_to_aexpr): New function.
4947 (build_target_command_list): New function.
4948 (insert_bp_location): Call it.
4949 (remove_breakpoints_pid): Skip dprintf breakpoints.
4950 (print_one_breakpoint_location): Ditto.
4951 (dprintf_style_agent): New global.
4952 (dprintf_style_enums): Add dprintf_style_agent.
4953 (update_dprintf_command_list): Add agent case.
4954 (agent_printf_command): New function.
4955 (_initialize_breakpoint): Add new commands.
4956 * common/ax.def (printf): New bytecode.
4957 * ax.h (ax_string): Declare.
4958 * ax-gdb.h (gen_printf): Declare.
4959 * ax-gdb.c: Include cli-utils.h, format.h.
4960 (gen_printf): New function.
4961 (maint_agent_print_command): New function.
4962 (_initialize_ax_gdb): Add maint agent-printf command.
4963 * ax-general.c (ax_string): New function.
4964 (ax_print): Add printf disassembly.
4965 * Makefile.in (SFILES): Add format.c
4966 (COMMON_OBS): Add format.o.
4967 * common/format.h: New file.
4968 * common/format.c: New file.
4969 * printcmd.c: Include format.h.
4970 (ui_printf): Call parse_format_string.
4971 * remote.c (remote_state): New field breakpoint_commands.
4972 (PACKET_BreakpointCommands): New enum.
4973 (remote_breakpoint_commands_feature): New function.
4974 (remote_protocol_features): Add new BreakpointCommands entry.
4975 (remote_can_run_breakpoint_commands): New function.
4976 (remote_add_target_side_commands): New function.
4977 (remote_insert_breakpoint): Call it.
4978 (remote_insert_hw_breakpoint): Ditto.
4979 (_initialize_remote): Add new packet configuration for
4980 target-side breakpoint commands.
4981 * target.h (struct target_ops): New field
4982 to_can_run_breakpoint_commands.
4983 (target_can_run_breakpoint_commands): New macro.
4984 * target.c (update_current_target): Handle
4985 to_can_run_breakpoint_commands.
4986
4987 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4988
4989 Execute -ix and -iex only after system and user gdbinit files.
4990 * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
4991 processing down after gdbinit files.
4992
4993 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4994
4995 Add fnmatch-gnu module.
4996 * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
4997 * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
4998 * gnulib/aclocal.m4: Regenerate.
4999 * gnulib/config.in: Regenerate.
5000 * gnulib/configure: Regenerate.
5001 * gnulib/import/dummy.c: Remove.
5002 * gnulib/import/Makefile.am: Regenerate.
5003 * gnulib/import/Makefile.in: Likewise.
5004 * gnulib/import/m4/gnulib-cache.m4: Likewise.
5005 * gnulib/import/m4/gnulib-comp.m4: Likewise.
5006 * gnulib/import/alloca.c: New file.
5007 * gnulib/import/alloca.in.h: Likewise.
5008 * gnulib/import/config.charset: Likewise.
5009 * gnulib/import/fnmatch.c: Likewise.
5010 * gnulib/import/fnmatch.in.h: Likewise.
5011 * gnulib/import/fnmatch_loop.c: Likewise.
5012 * gnulib/import/localcharset.c: Likewise.
5013 * gnulib/import/localcharset.h: Likewise.
5014 * gnulib/import/m4/alloca.m4: Likewise.
5015 * gnulib/import/m4/codeset.m4: Likewise.
5016 * gnulib/import/m4/configmake.m4: Likewise.
5017 * gnulib/import/m4/fcntl-o.m4: Likewise.
5018 * gnulib/import/m4/fnmatch.m4: Likewise.
5019 * gnulib/import/m4/glibc21.m4: Likewise.
5020 * gnulib/import/m4/localcharset.m4: Likewise.
5021 * gnulib/import/m4/locale-fr.m4: Likewise.
5022 * gnulib/import/m4/locale-ja.m4: Likewise.
5023 * gnulib/import/m4/locale-zh.m4: Likewise.
5024 * gnulib/import/m4/mbrtowc.m4: Likewise.
5025 * gnulib/import/m4/mbsinit.m4: Likewise.
5026 * gnulib/import/m4/mbsrtowcs.m4: Likewise.
5027 * gnulib/import/m4/mbstate_t.m4: Likewise.
5028 * gnulib/import/m4/stdbool.m4: Likewise.
5029 * gnulib/import/m4/wchar_h.m4: Likewise.
5030 * gnulib/import/m4/wctype_h.m4: Likewise.
5031 * gnulib/import/m4/wint_t.m4: Likewise.
5032 * gnulib/import/mbrtowc.c: Likewise.
5033 * gnulib/import/mbsinit.c: Likewise.
5034 * gnulib/import/mbsrtowcs-impl.h: Likewise.
5035 * gnulib/import/mbsrtowcs-state.c: Likewise.
5036 * gnulib/import/mbsrtowcs.c: Likewise.
5037 * gnulib/import/ref-add.sin: Likewise.
5038 * gnulib/import/ref-del.sin: Likewise.
5039 * gnulib/import/stdbool.in.h: Likewise.
5040 * gnulib/import/streq.h: Likewise.
5041 * gnulib/import/strnlen1.c: Likewise.
5042 * gnulib/import/strnlen1.h: Likewise.
5043 * gnulib/import/verify.h: Likewise.
5044 * gnulib/import/wchar.in.h: Likewise.
5045 * gnulib/import/wctype.in.h: Likewise.
5046
5047 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5048
5049 Support shell wildcards for 'set auto-load safe-path'.
5050 * auto-load.c: Include fnmatch.h.
5051 (filename_is_in_dir): Rename to ...
5052 (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
5053 it. Update function comment. Rename dir_len to pattern_len. New
5054 variables filename_len, pattern and filename. Add more DEBUG_AUTO_LOAD
5055 messages. Use gdb_filename_fnmatch.
5056 (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
5057 pattern.
5058 (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
5059 * defs.h (gdb_filename_fnmatch): New declaration.
5060 * utils.c: Include fnmatch.h.
5061 (gdb_filename_fnmatch): New function.
5062
5063 2012-07-02 Sergio Durigan Junior <sergiodj@redhat.com>
5064
5065 * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
5066 `-probe' and `-probe-stap' options.
5067
5068 2012-07-01 Yao Qi <yao@codesourcery.com>
5069
5070 * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
5071 always_inserted_off, and always_inserted_enums.
5072 Change always_inserted_mode's type to 'enum auto_boolean'.
5073 (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
5074 callers.
5075 (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
5076 of add_setshow_enum_cmd.
5077 * infrun.c: Remove can_use_displaced_stepping_auto,
5078 can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
5079 can_use_displaced_stepping_enum.
5080 Change can_use_displaced_stepping's type to 'enum auto_boolean'.
5081 (show_can_use_displaced_stepping, use_displaced_stepping): Update
5082 callers.
5083 (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
5084 add_setshow_enum_cmd.
5085
5086 2012-06-30 Doug Evans <dje@google.com>
5087
5088 * dwarf2read.c (signatured_type): Make "per_cu" member first.
5089 (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
5090 currently being read. Propagate DW_AT_comp_dir to DWO DIE.
5091
5092 2012-06-29 Doug Evans <dje@google.com>
5093
5094 * linespec.c: #include "stack.h".
5095 (decode_line_with_current_source): Moved here from symtab.c and
5096 renamed from decode_line_spec. All callers updated.
5097 (decode_line_with_last_displayed): Moved here from breakpoint.c and
5098 renamed from decode_line_spec_1. All callers updated.
5099 * linespec.h (decode_line_with_current_source): Move declaration here
5100 from symtab.h and renamed from decode_line_spec.
5101 (decode_line_with_last_displayed): Move declaration here from symtab.h
5102 and renamed from decode_line_spec_1.
5103 * macrocmd.c: #include "linespec.h".
5104 * symtab.c: Remove #include "linespec.h".
5105
5106 2012-06-28 Doug Evans <dje@google.com>
5107
5108 * dwarf2read.c (get_cu_length): New function.
5109 (offset_in_cu_p, error_check_comp_unit_head): Call it.
5110 (create_debug_types_hash_table): Ditto.
5111 (init_cutu_and_read_dies): Ditto.
5112 (init_cutu_and_read_dies_no_follow): Ditto.
5113
5114 * dwarf2read.c (dwarf2_find_base_address): Move definition.
5115
5116 * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
5117 (struct abbrev_table): Define.
5118 (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
5119 abbrev_table.
5120 (init_cutu_and_read_dies): Update.
5121 (abbrev_table_alloc_abbrev): New function. Replaces
5122 dwarf_alloc_abbrev. All callers updated.
5123 (abbrev_table_add_abbrev): New function.
5124 (abbrev_table_lookup_abbrev): New function. Replaces
5125 dwarf2_lookup_abbrev. All callers updated.
5126 (abbrev_table_read_table): New function. Contents moved here from
5127 dwarf2_read_abbrevs.
5128 (dwarf2_read_abbrevs): Call it.
5129 (abbrev_table_free): New function.
5130 (dwarf2_free_abbrev_table): Call it.
5131
5132 2012-06-28 Stan Shebs <stan@codesourcery.com>
5133
5134 * osdata.c (info_osdata_command): Filter out "Title" columns
5135 from non-MI uses.
5136 * common/linux-osdata.c (struct osdata_type): Add title field.
5137 (osdata_table): Add titles to each entry.
5138 (linux_command_xfer_osdata): Add a column for title data.
5139
5140 2012-06-28 Stan Shebs <stan@codesourcery.com>
5141
5142 Make logging work for MI.
5143 * NEWS: Mention it.
5144 * interps.h (interp_set_logging_ftype): New typedef.
5145 (struct interp_procs): New field set_logging_proc.
5146 (current_interp_set_logging): Declare.
5147 * interps.c (current_interp_set_logging): New function.
5148 * cli/cli-logging.c: Include interps.h.
5149 (set_logging_redirect): Call current_interp_set_logging.
5150 (pop_output_files): Ditto.
5151 (handle_redirections): Ditto, plus skip ui-out redirect if MI.
5152 * mi/mi-console.h (mi_console_set_raw): Declare.
5153 * mi/mi-console.c (mi_console_set_raw): New function.
5154 * mi/mi-interp.c (saved_raw_stdout): New global.
5155 (mi_set_logging): New function.
5156 (_initialize_mi_interp): Add it to interp procs.
5157
5158 2012-06-28 Doug Evans <dje@google.com>
5159
5160 * symtab.c (lookup_symbol_aux_objfile): Use
5161 ALL_OBJFILE_PRIMARY_SYMTABS.
5162
5163 * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
5164
5165 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5166
5167 * common/buffer.c: Include inttypes.h and stdint.h.
5168 (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
5169
5170 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5171 Pedro Alves <palves@redhat.com>
5172
5173 * gdbthread.h (ALL_THREADS): New macro.
5174 (thread_list): Declare.
5175 * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
5176 going, but instead fall through to the stepping handling.
5177 * linux-nat.c (resume_lwp): New parameter 'signo'. Resume with
5178 the passed in signal. Adjust debug output.
5179 (resume_callback): Rename to ...
5180 (linux_nat_resume_callback): ... this. Pass the thread's last
5181 stop signal, if in "pass" state.
5182 (linux_nat_resume): Adjust to rename.
5183 (stop_wait_callback): New assertion. Don't respawn signals;
5184 instead let the LWP remain with SIGNALLED set.
5185 (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
5186 * remote.c (append_pending_thread_resumptions): New.
5187 (remote_vcont_resume): Call it.
5188 * target.h (target_resume): Extend comment.
5189
5190 2012-06-28 Iain Sandoe <iain@codesourcery.com>
5191
5192 * auxv.c (fprint_target_auxv): Handle extended cache data tags.
5193
5194 2012-06-27 Doug Evans <dje@google.com>
5195
5196 * dwarf2read.c (dwarf2_cu): Add ranges_base.
5197 Delete have_addr_base, unused. All uses updated.
5198 (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
5199 (dwarf2_get_pc_bounds): Add ranges_base.
5200 (dwarf2_record_block_ranges): Ditto.
5201
5202 2012-06-27 Tom Tromey <tromey@redhat.com>
5203
5204 PR macros/7961:
5205 * varobj.c (varobj_create): Update.
5206 (varobj_set_value): Update.
5207 * tracepoint.c (validate_actionline): Update.
5208 (encode_actions_1): Update.
5209 * parse.c (parse_exp_1): Add 'pc' argument.
5210 (parse_exp_in_context): Add 'pc' argument. Change how
5211 expression_context_pc is set.
5212 (parse_expression): Update.
5213 (parse_field_expression): Update.
5214 * expression.h (parse_exp_1): Update.
5215 * eval.c (parse_to_comma_and_eval): Update.
5216 * breakpoint.c (set_breakpoint_condition): Update.
5217 (update_watchpoint): Update.
5218 (init_breakpoint_sal): Update
5219 (find_condition_and_thread): Update.
5220 (watch_command_1): Update.
5221 (update_breakpoint_locations): Update.
5222 * ada-lang.c (ada_read_renaming_var_value): Update.
5223 (create_excep_cond_exprs): Update.
5224
5225 2012-06-27 Doug Evans <dje@google.com>
5226
5227 * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
5228 type units.
5229
5230 2012-06-26 Doug Evans <dje@google.com>
5231
5232 * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
5233 prototype.
5234 (error_check_comp_unit_head): New arg abbrev_section. All callers
5235 updated.
5236 (read_and_check_comp_unit_head): Ditto.
5237 (read_and_check_type_unit_head): Ditto.
5238
5239 2012-06-26 Siva Chandra Reddy <sivachandra@google.com>
5240
5241 New attribute 'last' for gdb.Symtab_and_line.
5242 * NEWS (Python Scripting): Add entry about the new attribute.
5243 * python/py-symtab.c (salpy_get_last): New function which
5244 implements the get method for the 'last' attribute of
5245 gdb.Symtab_and_line.
5246 (sal_object_getset): Add entry for the 'last' attribute.
5247
5248 2012-06-26 Doug Evans <dje@google.com>
5249
5250 * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
5251 (dwo_sections): Add macinfo, macro.
5252 (dwarf2_locate_dwo_sections): Watch for macro sections.
5253 (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
5254 All callers updated. Handle DWO files.
5255
5256 * NEWS: Mention new options "set debug dwarf2-read" and
5257 "set debug symtab-create".
5258 * dwarf2read.c (dwarf2_read_debug): New static global.
5259 (dwarf2_build_psymtabs_hard): Add debugging printfs.
5260 (process_queue): Ditto.
5261 (process_full_comp_unit): Ditto.
5262 (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
5263 * elfread.c (elf_symfile_read): Add debugging printf.
5264 * minsyms.c (install_minimal_symbols): Ditto.
5265 * psymtab.c (allocate_psymtab): Ditto.
5266 * symfile.c (allocate_symtab): Ditto.
5267 * symtab.c (symtab_create_debug): New global.
5268 (_initialize_symtab): Add new option "set debug symtab-create".
5269 * symtab.h (symtab_create_debug): Declare.
5270
5271 * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
5272 (lookup_dwo_type_unit): Ditto.
5273
5274 2012-06-26 Roland McGrath <roland@hack.frob.com>
5275 H.J. Lu <hongjiu.lu@intel.com>
5276
5277 * amd64-linux-nat.c: Include <sys/user.h>.
5278 (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
5279 if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
5280 HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
5281
5282 * configure.ac: Check if the fs_base and gs_base members of
5283 `struct user_regs_struct' exist.
5284 * config.in: Regenerated.
5285 * configure: Likewise.
5286
5287 2012-06-25 Michael Eager <eager@eagercon.com>
5288
5289 PR python/14291
5290 * python/python.c (gdbpy_write): Check for interrupted output.
5291
5292 2012-06-25 Greta Yorsh <greta.yorsh@arm.com>
5293
5294 * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
5295 register as a stack alignment in ARM mode.
5296
5297 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
5298
5299 Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
5300 * gnulib/config.in: Regenerate.
5301 * gnulib/configure: Likewise.
5302 * gnulib/import/m4/extensions.m4: Update it.
5303 * gnulib/import/m4/gnulib-common.m4: Likewise.
5304 * gnulib/import/m4/memmem.m4: Likewise.
5305 * gnulib/import/m4/mmap-anon.m4: Likewise.
5306 * gnulib/import/m4/multiarch.m4: Likewise.
5307 * gnulib/import/stdint.in.h: Likewise.
5308
5309 2012-06-24 Yao Qi <yao@codesourcery.com>
5310
5311 * corefile.c (write_memory_with_notification): New.
5312 * gdbcore.h: Declare write_memory_with_notification.
5313 * ada-lang.c (ada_value_assign): Replace 'write_memory' and
5314 'observer_notify_memory_changed' with 'write_memory_with_notification'.
5315 * valops.c (value_assign): Likewise.
5316 * python/py-inferior.c (infpy_write_memory): Call
5317 'write_memory_with_notification'.
5318
5319 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
5320
5321 * cc-with-index.sh: Use also -ex "set auto-load no".
5322
5323 2012-06-23 Doug Evans <dje@google.com>
5324
5325 PR 14125
5326 * NEWS: Document additions to .gdb_index.
5327 * dwarf2read.c: #include "gdb/gdb-index.h".
5328 (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
5329 (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
5330 (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
5331 (dwarf2_read_index): Recognize version 7.
5332 (dw2_do_expand_symtabs_matching): New args want_specific_block,
5333 block_kind, domain): All callers updated.
5334 (dw2_find_symbol_file): Handle new index CU values.
5335 (dw2_expand_symtabs_matching): Match symbol kind if requested.
5336 (add_index_entry): New args is_static, kind. All callers updated.
5337 (offset_type_compare, uniquify_cu_indices): New functions
5338 (symbol_kind): New function.
5339 (write_psymtabs_to_index): Remove duplicate CU values.
5340 (write_psymtabs_to_index): Write .gdb_index version 7.
5341
5342 2012-06-22 Joel Brobecker <brobecker@adacore.com>
5343
5344 * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
5345 * configure: Regenerate.
5346
5347 2012-06-20 Yao Qi <yao@codesourcery.com>
5348
5349 * python/py-inferior.c: Update comments of infpy_read_memory
5350 and infpy_write_memory.
5351
5352 2012-06-19 Tom Tromey <tromey@redhat.com>
5353
5354 PR exp/9514:
5355 * parser-defs.h (insert_type, insert_type_address_space): Declare.
5356 (push_type_address_space): Remove.
5357 * parse.c (insert_into_type_stack): New function.
5358 (insert_type): Likewise.
5359 (insert_type_address_space): Rename from push_type_address_space.
5360 Insert tp_space_identifier.
5361 * c-exp.y (ptr_operator): New production.
5362 (abs_decl): Use ptr_operator.
5363 (space_identifier): Call insert_type_address_space.
5364 (ptype): Don't use const_or_volatile_or_space_identifier.
5365 (const_or_volatile_noopt): Call insert_type.
5366 (conversion_type_id, conversion_declarator): New productions.
5367 (operator): Use conversion_type_id.
5368
5369 2012-06-18 Doug Evans <dje@google.com>
5370
5371 * symtab.h (minimal_symbol): New member created_by_gdb.
5372 * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
5373 created by gdb.
5374 * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
5375 (search_symbols): Call it instead of lookup_symbol.
5376 Skip symbols created by gdb. Only scan minsyms if nfiles == 0.
5377
5378 * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
5379 Adjust address for DW_OP_GNU_addr_index.
5380 * dwarf2expr.h (dwarf_expr_context): Update comment.
5381 * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
5382 all callers updated. Handle TLS vars described with
5383 DW_OP_GNU_const_index.
5384 (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
5385 and DW_OP_GNU_const_index.
5386 * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
5387
5388 * block.c (find_block_in_blockvector): Make explicit the fact that we
5389 ignore GLOBAL_BLOCK.
5390
5391 2012-06-18 Tom Tromey <tromey@redhat.com>
5392
5393 * c-exp.y (operator): Remove trailing space after "delete" and
5394 "delete[]".
5395
5396 2012-06-18 Mark Kettenis <kettenis@gnu.org>
5397 Jan Kratochvil <jan.kratochvil@redhat.com>
5398
5399 Switch i386 and derived targets to ON_STACK.
5400 * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
5401 (amd64_dicos_init_abi): Remove its installment.
5402 * dicos-tdep.c (dicos_init_abi): Remove the
5403 set_gdbarch_call_dummy_location call. Update the comment here.
5404 * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
5405 (i386_dicos_init_abi): Remove its installment.
5406 * i386-tdep.c (i386_push_dummy_code): New function.
5407 (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
5408 i386_push_dummy_code.
5409
5410 2012-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
5411
5412 Remove stale dummy frames.
5413 * breakpoint.c: Include dummy-frame.h.
5414 (longjmp_breakpoint_ops): New variable.
5415 (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
5416 bp_longjmp_call_dummy.
5417 (bpstat_what, bptype_string, print_one_breakpoint_location)
5418 (init_bp_location): Support bp_longjmp_call_dummy.
5419 (set_longjmp_breakpoint): Use longjmp_breakpoint_ops. Comment why.
5420 (set_longjmp_breakpoint_for_call_dummy)
5421 (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
5422 functions.
5423 (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
5424 * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy. Delete
5425 FIXME comment and extend the other comment for bp_call_dummy.
5426 (set_longjmp_breakpoint_for_call_dummy)
5427 (check_longjmp_breakpoint_for_call_dummy): New declarations.
5428 * dummy-frame.c: Include gdbthread.h.
5429 (pop_dummy_frame_bpt): New function.
5430 (pop_dummy_frame): Call pop_dummy_frame_bpt.
5431 (dummy_frame_discard): New function.
5432 (cleanup_dummy_frames): Update the comment about longjmps.
5433 * dummy-frame.h (dummy_frame_discard): New declaration.
5434 * gdbthread.h (struct thread_info): Extend initiating_frame comment.
5435 * infcall.c (call_function_by_hand): New variable longjmp_b. Call
5436 set_longjmp_breakpoint_for_call_dummy. Chain its breakpoints with BPT.
5437 * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
5438 Add case 4 comment. Call check_longjmp_breakpoint_for_call_dummy and
5439 keep_going if IS_LONGJMP and there is no other reason to stop.
5440
5441 2012-06-18 Greta Yorsh <Greta.Yorsh@arm.com>
5442
5443 * remote-sim.c (sim_command_completer): Initialize
5444 variable 'result'.
5445
5446 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5447
5448 * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
5449 * dwarf2loc.c (call_site_parameter_matches): Support
5450 CALL_SITE_PARAMETER_PARAM_OFFSET.
5451 (needs_dwarf_reg_entry_value): Push stub value.
5452 * dwarf2read.c (read_call_site_scope): New variable origin. Support
5453 CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
5454 * gdbtypes.h (enum call_site_parameter_kind): New item
5455 CALL_SITE_PARAMETER_PARAM_OFFSET.
5456 (struct call_site.parameter.u): New field param_offset.
5457
5458 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5459
5460 Code cleanup: Generalize call_site.parameter key.
5461 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
5462 variable dwarf_reg. New variable kind_u. Update parameters to
5463 push_dwarf_reg_entry_value.
5464 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5465 * dwarf2expr.h (enum call_site_parameter_kind)
5466 (union call_site_parameter_u): Forward declarations.
5467 (struct dwarf_expr_context_funcs): Update parameters and their
5468 description for push_dwarf_reg_entry_value.
5469 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5470 * dwarf2loc.c (call_site_parameter_matches): New function.
5471 (dwarf_expr_reg_to_entry_parameter): Update parameters and their
5472 description. Use call_site_parameter_matches.
5473 (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
5474 Update parameters and their description.
5475 (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
5476 New variable kind_u. Adjust the caller for updated parameters.
5477 (needs_dwarf_reg_entry_value): Update parameters.
5478 * dwarf2read.c (read_call_site_scope): New variable loc. Use it
5479 instead of attr. Update for the changed fields of struct
5480 call_site_parameter.
5481 * gdbtypes.h: Include dwarf2expr.h.
5482 (enum call_site_parameter_kind): New.
5483 (struct call_site.parameter): New field kind. Wrap dwarf_reg and
5484 fb_offset into new union u.
5485
5486 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
5487
5488 * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
5489 (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
5490 for x32.
5491
5492 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
5493
5494 * amd64-linux-nat.c (compat_x32_clock_t): New.
5495 (compat_x32_siginfo_t): Likewise.
5496 (compat_x32_siginfo_from_siginfo): Likewise.
5497 (siginfo_from_compat_x32_siginfo): Likewise.
5498 (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
5499 and siginfo_from_compat_x32_siginfo for x32.
5500
5501 2012-06-15 Hui Zhu <hui_zhu@mentor.com>
5502
5503 * tracepoint.c (tfile_xfer_partial): Add a lseek.
5504
5505 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
5506
5507 * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
5508 instead of gdbarch_ptr_bit.
5509 * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
5510 (amd64_supply_native_gregset): Likewise.
5511 (amd64_collect_native_gregset): Likewise.
5512 * amd64-tdep.c (amd64_supply_fxsave): Likewise.
5513 (amd64_supply_xsave): Likewise.
5514 (amd64_collect_fxsave): Likewise.
5515 (amd64_collect_xsave): Likewise.
5516
5517 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
5518
5519 * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
5520 (amd64_linux_read_description): Check DS segment register for
5521 x32 process.
5522
5523 2012-06-15 Tom Tromey <tromey@redhat.com>
5524
5525 * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
5526 init_cutu_and_read_dies.
5527
5528 2012-06-15 Iain Sandoe <iain@codesourcery.com>
5529
5530 * MAINTAINERS (Write After Approval): Add myself to the list.
5531
5532 2012-06-15 Tom Tromey <tromey@redhat.com>
5533
5534 * valops.c (value_find_oload_method_list): Now static.
5535 * value.h (value_find_oload_method_list): Don't declare.
5536
5537 2012-06-15 Tom Tromey <tromey@redhat.com>
5538
5539 * valops.c (find_overload_match): Use value_ind.
5540
5541 2012-06-15 Maciej W. Rozycki <macro@codesourcery.com>
5542
5543 * infrun.c (handle_inferior_event): Correct indentation.
5544
5545 2012-06-14 Doug Evans <dje@google.com>
5546
5547 * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
5548 (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
5549 All uses updated.
5550 (decode_debug_loc_dwo_addresses): New arg "byte_order". All callers
5551 updated. Handle DEBUG_LOC_START_LENGTH.
5552 (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
5553 (loclist_describe_location): Ditto.
5554
5555 2012-06-14 Maciej W. Rozycki <macro@codesourcery.com>
5556
5557 PR backtrace/13866
5558 * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
5559 after hiding inline functions.
5560
5561 2012-06-13 Joel Brobecker <brobecker@adacore.com>
5562
5563 * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
5564 _initialize_inf_ttrace.
5565
5566 2012-06-13 Joel Brobecker <brobecker@adacore.com>
5567
5568 * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
5569 _initialize_hppa_hpux_nat.
5570
5571 2012-06-13 Joel Brobecker <brobecker@adacore.com>
5572
5573 * remote-sim.c (sim_command_completer): Change type of return
5574 value to "VEC (char_ptr) *". Adjust implementation accordingly.
5575
5576 2012-06-13 Mark Kettenis <kettenis@gnu.org>
5577 Jan Kratochvil <jan.kratochvil@redhat.com>
5578
5579 PR tdep/14222
5580 * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
5581 stack on a 16-byte boundary.
5582
5583 2012-06-13 Kaushik Srenevasan <kaushik@twitter.com>
5584
5585 * jit.c (finalize_symtab): Set function's return type to 'void' by
5586 default.
5587
5588 2012-06-13 Mark Kettenis <kettenis@gnu.org>
5589 H.J. Lu <hongjiu.lu@intel.com>
5590
5591 * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
5592 Move bits common to both the classic LP64 and the new x32 ILP32
5593 ABI here.
5594 (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
5595 (amd64_x32_linux_init_abi): New function.
5596 (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
5597 subtype.
5598
5599 * i386-tdep.h (i386_pseudo_register_name): New prototype.
5600 * i386-tdep.c (i386_pseudo_register_name): Make public.
5601 * amd64-tdep.h (amd64_x32_init_abi): New prototype.
5602 * amd64-tdep.c (amd64_dword_names): Add "eip".
5603 (amd64_x32_pseudo_register_type): New function
5604 (amd64_x32_init_abi): New function.
5605
5606 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5607
5608 PR build/14003
5609 * inferior.h (struct inferior_suspend_state): Comment out.
5610 (struct inferior): Comment out the field suspend.
5611 * infrun.c (struct infcall_suspend_state): Comment out the field
5612 inferior_suspend.
5613 (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
5614 out its assignment.
5615
5616 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5617
5618 PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
5619 * c-exp.y (classify_inner_name): Remove caller assumptions in the
5620 function comment. Return ERROR for unresolved cases. Implement
5621 returning proper NAME.
5622 (yylex): Accept also NAME from classify_inner_name.
5623 * cp-namespace.c (cp_lookup_nested_type): Rename to ...
5624 (cp_lookup_nested_symbol): ... here. Return any found symbol, not just
5625 LOC_TYPEDEF type.
5626 * cp-support.h (cp_lookup_nested_type): Update its declaration.
5627
5628 2012-06-13 Tom Tromey <tromey@redhat.com>
5629
5630 * breakpoint.c (condition_completer): New function.
5631 (_initialize_breakpoint): Use it.
5632 * value.c (complete_internalvar): New function.
5633 * value.h (complete_internalvar): Declare.
5634
5635 2012-06-13 Tom Tromey <tromey@redhat.com>
5636
5637 * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
5638 * breakpoint.c (catch_syscall_completer): Return a VEC.
5639 * cli/cli-cmds.c (complete_command): Update.
5640 * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
5641 (complete_on_enum): Likewise.
5642 * command.h: Include gdb_vecs.h.
5643 (completer_ftype): Change return type.
5644 (complete_on_cmdlist, complete_on_enum): Likewise.
5645 * completer.c (noop_completer, filename_completer)
5646 (location_completer): Return a VEC.
5647 (add_struct_fields): Remove 'nextp' argument. Change 'output'
5648 to a VEC.
5649 (expression_completer, complete_line_internal, complete_line)
5650 (command_completer): Return a VEC.
5651 (gdb_completion_word_break_characters, line_completion_function):
5652 Update.
5653 * completer.h: Include gdb_vecs.h.
5654 (complete_line, noop_completer, filename_completer)
5655 (expression_completer, location_completer, command_completer):
5656 Update.
5657 * f-lang.c (f_word_break_characters): Return a VEC.
5658 * interps.c (interpreter_completer): Return a VEC.
5659 * language.h (struct language_defn)
5660 <la_make_symbol_completion_list>: Return a VEC.
5661 * python/py-cmd.c (cmdpy_completer): Return a VEC.
5662 * symtab.c (free_completion_list): Take a VEC.
5663 (return_val_size, return_val_index): Remove.
5664 (return_val): Now a VEC.
5665 (completion_list_add_name): Update.
5666 (default_make_symbol_completion_list_break_on)
5667 (default_make_symbol_completion_list, make_symbol_completion_list)
5668 (make_symbol_completion_list_fn, make_file_symbol_completion_list):
5669 Return a VEC.
5670 (add_filename_to_list): Update.
5671 (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
5672 <list>: Now a VEC.
5673 (maybe_add_partial_symtab_filename): Update.
5674 (make_source_files_completion_list): Return a VEC.
5675 * symtab.h (default_make_symbol_completion_list_break_on)
5676 (default_make_symbol_completion_list, make_symbol_completion_list)
5677 (make_symbol_completion_list_fn, make_file_symbol_completion_list)
5678 (make_source_files_completion_list): Update.
5679
5680 2012-06-13 Tom Tromey <tromey@redhat.com>
5681
5682 * breakpoint.c (add_catch_command): Use completer_ftype.
5683 * breakpoint.h: Include command.h.
5684 (add_catch_command): Use completer_ftype.
5685 * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
5686 * cli/cli-decode.h (struct cmd_list_element) <completer>:
5687 Use completer_ftype.
5688 * command.h (completer_ftype): New typedef.
5689 (set_cmd_completer): Use it.
5690 * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
5691 completer_ftype.
5692
5693 2012-06-13 Pedro Alves <palves@redhat.com>
5694
5695 Partial revert of previous change.
5696
5697 * serial.c (scb_base): New global.
5698 (serial_for_fd): New.
5699 (serial_open, serial_fdopen_ops): Link new serial in open serials
5700 chain.
5701 (do_serial_close): Unlink serial from the open serials chain.
5702
5703 2012-06-12 Pedro Alves <palves@redhat.com>
5704
5705 * infrun.c (infrun_thread_stop_requested_callback): Don't switch
5706 threads here.
5707 (prepare_for_detach): No longer context switch here in non-stop
5708 mode.
5709 (fetch_inferior_event): Ditto.
5710 (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
5711 to the event thread before removing breakpoints. Switch to the
5712 event thread before inserting breakpoints and resuming.
5713 (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
5714 event thread before resuming.
5715 (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
5716 Switch to the event thread before removing breakpoints.
5717
5718 2012-06-12 Eli Zaretskii <eliz@gnu.org>
5719
5720 * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
5721 special characters correctly for the Windows shells. See
5722 http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
5723 report.
5724 [!__MINGW32__]: Remove extra double quote character from special
5725 characters.
5726
5727 2012-06-11 Stan Shebs <stan@codesourcery.com>
5728
5729 * ui-out.h: Remove #if 0 declarations.
5730 * ui-out.c: Remove #if 0 functions.
5731
5732 2012-06-11 Pedro Alves <palves@redhat.com>
5733
5734 * ser-base.c (run_async_handler_and_reschedule): New.
5735 (fd_event, push_event): Use it.
5736 * serial.c (serial_open, serial_fdopen_ops): Set the initial
5737 reference count to 1.
5738 (do_serial_close): Set the bufp field to NULL. Use serial_unref
5739 instead of xfree.
5740 (serial_is_open, serial_ref, serial_unref): New.
5741 * serial.h (serial_open): Adjust comment.
5742 (serial_is_open): Declare.
5743 (serial_close): Adjust comment.
5744 (serial_ref, serial_unref) Declare.
5745 (struct serial): New field 'refcnt'.
5746
5747 2012-06-11 Pedro Alves <palves@redhat.com>
5748
5749 Remove #if 0'd "connect" command, and unnecessary associated
5750 refcounting and serial reuse bits.
5751
5752 * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
5753 * serial.c (last_serial_opened): Delete.
5754 (scb_base): Delete.
5755 (serial_open): Adjust.
5756 (serial_for_fd): Delete.
5757 (serial_fdopen_ops, do_serial_close): Adjust.
5758 (serial_fdopen_ops): Adjust.
5759
5760 2012-06-11 Pedro Alves <palves@redhat.com>
5761
5762 * serial.c (do_serial_close): Remove early return when SCB is
5763 null.
5764
5765 2012-06-11 Tom Tromey <tromey@redhat.com>
5766
5767 * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
5768
5769 2012-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5770
5771 Fix regression by the "ambiguous linespec" series.
5772 * breakpoint.c (parse_breakpoint_sals): New variable cursal. Use
5773 get_last_displayed_symtab and get_last_displayed_line and depending
5774 on CURSAL.
5775
5776 2012-06-11 Tom Tromey <tromey@redhat.com>
5777
5778 * dwarf2read.c (dw2_get_primary_filename_reader): New function.
5779 (dw2_find_symbol_file): Use it.
5780
5781 2012-06-11 Michael Eager <eager@eagercon.com>
5782
5783 * mips-linux-tdep.c (mips_gdb_signal_from_target): New
5784 * mips-linux-tdep.h (mips_signals): New
5785
5786 2012-06-11 Tom Tromey <tromey@redhat.com>
5787
5788 * infrun.c (handle_inferior_event)
5789 <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
5790 breakpoint.
5791 <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
5792 exception logic in all cases. Update comments.
5793 (insert_longjmp_resume_breakpoint): Set the exception resume
5794 breakpoint.
5795
5796 2012-06-11 Maciej W. Rozycki <macro@codesourcery.com>
5797
5798 * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
5799
5800 2012-06-09 Siva Chandra Reddy <sivachandra@google.com>
5801
5802 * valarith.c (binop_types_user_defined_p): Fix a typo.
5803
5804 2012-06-08 Yao Qi <yao@codesourcery.com>
5805 Chung-Lin Tang <cltang@codesourcery.com>
5806
5807 * arch-utils.c (default_return_in_first_hidden_param_p): New.
5808 * arch-utils.h: Declare.
5809 * gdbarch.sh: Add return_in_first_hidden_param_p.
5810 * gdbarch.c, gdbarch.h: Regenerated.
5811 * infcall.c (call_function_by_hand): Call
5812 gdbarch_return_in_first_hidden_param_p instead of
5813 language_pass_by_reference.
5814
5815 * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
5816 (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
5817 * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
5818 (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
5819 * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
5820 `cplus_return_struct_by_reference'.
5821 (tic6x_return_value): Handle language cplusplus.
5822 (tic6x_return_in_first_hidden_param_p): New.
5823 (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
5824
5825 2012-06-07 Doug Evans <dje@google.com>
5826
5827 * dwarf2read.c (dwarf2_cu): Add comment.
5828
5829 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
5830
5831 * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
5832 variable.
5833 (mips_eabi_push_dummy_call): Likewise.
5834 (mips_n32n64_push_dummy_call): Likewise.
5835 (mips_o32_push_dummy_call): Likewise.
5836 (mips_o64_push_dummy_call): Likewise.
5837
5838 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
5839
5840 * mips-tdep.c (mips_convert_register_p): Correct coding style.
5841
5842 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
5843
5844 * mips-tdep.c (mips_pseudo_register_type): Use
5845 mips_float_register_p.
5846
5847 2012-06-06 Pedro Alves <palves@redhat.com>
5848
5849 * infrun.c (handle_inferior_event): Remove calls to
5850 reinit_frame_cache that follow a context_switch call.
5851
5852 2012-06-06 Pedro Alves <palves@redhat.com>
5853
5854 * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
5855 context_switch and remove stale comment.
5856
5857 2012-06-06 Pedro Alves <palves@redhat.com>
5858
5859 * infrun.c (struct execution_control_state): Remove
5860 `new_thread_event' field.
5861 (handle_inferior_event): Simplify new threads handling; don't
5862 resume the inferior if we find a new thread.
5863
5864 2012-06-06 Thomas Schwinge <thomas@codesourcery.com>
5865
5866 * NEWS: Document the deprecation of SH's 'regs' command.
5867 * inferior.h (all_registers_info): Add function declaration.
5868 * sh-tdep.c (sh_show_regs): Remove variable.
5869 (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
5870 (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
5871 (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
5872 (sh_show_regs_command): Remove functions.
5873 (sh_gdbarch_init): Don't set sh_show_regs.
5874 (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
5875 'info all-registers'.
5876 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
5877 (sh64_show_regs): Remove functions.
5878 * sh64-tdep.h (sh64_show_regs): Remove function declaration.
5879
5880 2012-06-06 Jan Kratochvil <jan.kratochvil@redhat.com>
5881
5882 * configure.ac: Move development=true below AC_INIT.
5883 * configure: Regenerate.
5884
5885 2012-06-05 Stan Shebs <stan@codesourcery.com>
5886
5887 * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
5888 gdb_stdout.
5889
5890 2012-06-05 Siddhesh Poyarekar <siddhesh@redhat.com>
5891
5892 * corefile.c (read_memory, read_stack, write_memory): Accept LEN
5893 argument as ssize_t.
5894 * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
5895 * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
5896 * target.c (target_read_stack, target_write_memory)
5897 (target_write_raw_memory): Likewise.
5898 * target.h (target_read_stack, target_write_memory)
5899 (target_write_raw_memory): Likewise.
5900
5901 2012-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5902
5903 * symfile-mem.c: Change gdb_static_assert to ssize_t.
5904 (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
5905 * target.c (target_read_memory): Change LEN to ssize_t.
5906 * target.h (target_read_memory): Change LEN to ssize_t.
5907
5908 2012-06-05 Pedro Alves <palves@redhat.com>
5909
5910 PR backtrace/13866
5911
5912 * breakpoint.c (until_break_command): Only fetch the selected
5913 frame after decode_line_1.
5914
5915 2012-06-05 Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
5916
5917 * solib-svr4.c (enable_break): Don't fallback to setting the solib
5918 event breakpoint at _start, __start or main if a program
5919 interpreter is not found.
5920
5921 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5922
5923 * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
5924 Add declaration.
5925 * windows-tdep.c: #include "objfiles.h".
5926 (windows_iterate_over_objfiles_in_search_order): New function.
5927 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
5928 iterate_over_objfiles_in_search_order gdbarch method to
5929 windows_iterate_over_objfiles_in_search_order.
5930 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
5931
5932 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5933
5934 * gdbarch.sh: Add generation of
5935 "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
5936 gdbarch.h. Add include of "objfiles.h" in gdbarch.c.
5937 (iterate_over_objfiles_in_search_order): New gdbarch method.
5938 * gdbarch.h, gdbarch.c: Regenerate.
5939 * objfiles.h (default_iterate_over_objfiles_in_search_order):
5940 Add declaration.
5941 * objfiles.c (default_iterate_over_objfiles_in_search_order):
5942 New function.
5943 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5944 out of lookup_symbol_aux_symtabs.
5945 (lookup_symbol_aux_symtabs): Replace extracted-out code by
5946 call to lookup_symbol_aux_objfile.
5947 (struct global_sym_lookup_data): New type.
5948 (lookup_symbol_global_iterator_cb): New function.
5949 (lookup_symbol_global): Search for symbol using
5950 gdbarch_iterate_over_objfiles_in_search_order and
5951 lookup_symbol_global_iterator_cb.
5952 * findvar.c (struct minsym_lookup_data): New type.
5953 (minsym_lookup_iterator_cb): New function.
5954 (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
5955 symbol's address via gdbarch_iterate_over_objfiles_in_search_order
5956 and minsym_lookup_iterator_cb.
5957
5958 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5959
5960 Revert the following patch:
5961 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
5962 try locating the symbol in the symbol's own objfile first, before
5963 extending the search to all objfiles.
5964 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5965 out of lookup_symbol_aux_symtabs.
5966 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
5967 Replace extracted-out code by call to lookup_symbol_aux_objfile.
5968 Do not search EXCLUDE_OBJFILE.
5969 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
5970 (lookup_symbol_global): Search for matches in the block's objfile
5971 first, before searching all other objfiles.
5972
5973 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5974
5975 * breakpoint.c (find_condition_and_thread): Stop parsing
5976 as soon as the first invalid keyword is found.
5977
5978 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5979
5980 * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
5981
5982 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5983
5984 * config/djgpp/djcheck.sh: Add copyright header.
5985
5986 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5987
5988 * copyright.py (update_files, main): Fix path to update-copyright
5989 script.
5990
5991 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5992
5993 * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
5994 (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
5995 for which a reminder to update by hand is printed.
5996
5997 2012-06-04 Doug Evans <dje@google.com>
5998
5999 * buildsym.c (make_blockvector): Add comment.
6000
6001 2012-06-04 Pedro Alves <palves@redhat.com>
6002
6003 * arch-utils.c (default_gdb_signal_from_target): Delete.
6004 * arch-utils.h (default_gdb_signal_from_target): Delete.
6005 * corelow.c (core_open) <signal mapping>: Extended comment. Check
6006 gdbarch_gdb_signal_from_target_p.
6007 * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
6008 predicate).
6009 * gdbarch.h: Regenerate.
6010 * gdbarch.c: Regenerate.
6011
6012 2012-06-04 Pedro Alves <palves@redhat.com>
6013
6014 * gdbarch.sh (gdb_signal_from_target): Mention that the
6015 implementation of the method must be host independent.
6016 * gdbarch.h: Regenerate.
6017
6018 2012-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
6019
6020 * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
6021 parameters.
6022 (target_read_memory_bfd): New function.
6023 (symbol_file_add_from_memory): Use it.
6024
6025 2012-06-03 Doug Evans <dje@google.com>
6026
6027 * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
6028 of primary symtab.
6029 (basic_lookup_transparent_type): Ditto.
6030
6031 * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
6032 (ALL_PRIMARY_SYMTABS): Use it.
6033 (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
6034 * dwarf2read.c (dw2_find_symbol_file): Ditto.
6035 * linespec.c (iterate_over_all_matching_symtabs): Ditto.
6036 * symtab.c (lookup_symbol_aux_objfile): Ditto.
6037 (basic_lookup_transparent_type): Ditto.
6038
6039 2012-06-02 Sergio Durigan Junior <sergiodj@redhat.com>
6040
6041 * symtab.c (symbol_demangled_name): New variable `dem_name'. Use
6042 it to optimize resolution of demangled name.
6043
6044 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
6045
6046 * configure.ac (development): Define new variable.
6047 Call AC_CHECK_LIB for mcheck if $development.
6048 (ERROR_ON_WARNING): Enable it by default only if $development.
6049 * config.in: Regenerate.
6050 * configure: Regenerate.
6051
6052 2012-06-01 Siddhesh Poyarekar <siddhesh@redhat.com>
6053
6054 * target.c (target_read_memory): Make LEN argument as size_t.
6055 * target.h (target_read_memory): Likewise.
6056
6057 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
6058
6059 * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
6060
6061 2012-05-31 Edjunior Machado <emachado@linux.vnet.ibm.com>
6062
6063 * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
6064 BookE interface for PowerPC server processors if not available
6065 in the Linux Kernel.
6066
6067 2012-05-31 Keith Seitz <keiths@redhat.com>
6068
6069 * linespec.c (decode_objc): Add cleanup to free
6070 INFO.FILE_SYMTABS.
6071 (find_linespec_symbols): Add cleanup to free CLASSES.
6072 * symfile.c (find_separate_debug_file_by_debuglink): Add
6073 cleanup to free DEBUGLINK.
6074 * ui-out.c (clear_header_list): No need to check if
6075 HEADER_NEXT.COLHDR is NULL.
6076 Free HEADER_NEXT.COL_NAME.
6077
6078 2012-05-31 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6079
6080 * ada-lang.c (standard_lookup): Prevent uninitialized variable
6081 warning.
6082
6083 2012-05-30 Jeff Kenton <jkenton@tilera.com>
6084
6085 * configure.host (gdb_host_cpu): Handle tilegx*.
6086 (gdb_host): Handle tilegx-*-linux*.
6087 * tilegx-linux-nat.c: New file.
6088 * config/tilegx/linux.mh: New file.
6089
6090 2012-05-30 Jeff Kenton <jkenton@tilera.com>
6091
6092 * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
6093 tilegx-linux-tdep.o.
6094 (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
6095 tilegx-linux-tdep.c.
6096 * configure.tgt: Handle tilegx-*-linux*.
6097 * tilegx-tdep.h: New file.
6098 * tilegx-tdep.c: New file.
6099 * tilegx-linux-tdep.c: New file.
6100 * regformats/reg-tilegx.dat: New file.
6101
6102 2012-05-30 Edjunior Machado <emachado@linux.vnet.ibm.com>
6103
6104 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
6105 accounting of hw watchpoints on ppc.
6106
6107 2012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
6108
6109 * source.c (openp): Expand tilde in path entries.
6110
6111 2012-05-29 Doug Evans <dje@google.com>
6112
6113 * buildsym.c (block_compar): Fix comment.
6114 (end_symtab): Fix and clarify some comments.
6115
6116 * stabsread.h (cleanup_undefined_stabs_types): Renamed from
6117 cleanup_undefined_types.
6118 * stabsread.c (cleanup_undefined_stabs_types): Ditto.
6119 All callers updated.
6120
6121 2012-05-29 Tom Tromey <tromey@redhat.com>
6122
6123 * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
6124 fails.
6125 * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
6126 * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
6127 fails.
6128 * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
6129 fails.
6130
6131 2012-05-29 Tristan Gingold <gingold@adacore.com>
6132
6133 * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
6134 (struct darwin_info): ... New struct.
6135 (solib_darwin_pspace_data): New variable.
6136 (darwin_pspace_data_cleanup): New function.
6137 (get_darwin_info): Likewise.
6138 (darwin_dyld_version_ok, darwin_load_image_infos)
6139 (darwin_solib_get_all_image_info_addr_at_init)
6140 (darwin_solib_read_all_image_info_addr): Add info argument.
6141 Adjust code.
6142 (darwin_current_sos): Use per pspace structure.
6143 (darwin_solib_create_inferior_hook): Likewise.
6144 (darwin_clear_solib): Likewise.
6145 (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
6146
6147 2012-05-28 Pedro Alves <palves@redhat.com>
6148
6149 * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
6150 block that uses them. Clear ecss before handling each event.
6151
6152 2012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
6153
6154 * solib-svr4.c (svr4_current_sos): New comment on
6155 svr4_current_sos_via_xfer_libraries fall back.
6156
6157 2012-05-24 Jan Kratochvil <jan.kratochvil@redhat.com>
6158
6159 * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best. Use
6160 it as a fallback for TYPE_IS_OPAQUE.
6161 * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
6162 symbols for lookup_symbol.
6163
6164 2012-05-24 John Steele Scott <toojays@toojays.net>
6165
6166 PR symtab/13277: Resolving opaque structures in ICC generated binaries.
6167 * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
6168 (producer_is_gxx_lt_4_6): Move the checking and caching to...
6169 (check_producer): ... this new function, which also checks for ICC
6170 and caches the result.
6171 (producer_is_icc): New function.
6172 (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
6173 producer was ICC.
6174
6175 2012-05-24 Pedro Alves <palves@redhat.com>
6176
6177 PR gdb/7205
6178
6179 * arch-utils.c (default_gdb_signal_to_host): Rename to ...
6180 (default_gdb_signal_to_target): ... this. Add comment.
6181 (default_gdb_signal_from_host): Rename to ...
6182 (default_gdb_signal_from_target): ... this. Add comment.
6183 * arch-utils.h (default_gdb_signal_to_host): Rename to ...
6184 (default_gdb_signal_to_target): ... this.
6185 (default_gdb_signal_from_host): Rename to ...
6186 (default_gdb_signal_from_target): ... this.
6187 * corelow.c (core_open): Adjust to naming change. Replace comment.
6188 * gdbarch.sh (gdb_signal_from_host): Rename to ...
6189 (gdb_signal_from_target): ... this. Adjust to
6190 default_gdb_signal_from_host naming change. Extend comment.
6191 (gdb_signal_to_host): Rename to ...
6192 (gdb_signal_to_target): ... this. Adjust to
6193 default_gdb_signal_to_host naming change.
6194 * gdbarch.h, gdbarch.c: Renegerate.
6195
6196 2012-05-24 Pedro Alves <palves@redhat.com>
6197
6198 PR gdb/7205
6199
6200 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
6201
6202 2012-05-24 Pedro Alves <palves@redhat.com>
6203
6204 PR gdb/7205
6205
6206 Replace target_signal with gdb_signal throughout.
6207
6208 2012-05-24 Pedro Alves <palves@redhat.com>
6209
6210 PR tui/14159
6211
6212 * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
6213 string, instead of reusing the va_list argument.
6214
6215 2012-05-24 Tom Tromey <tromey@redhat.com>
6216
6217 * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
6218 Remove.
6219
6220 2012-05-23 Doug Evans <dje@google.com>
6221
6222 * symtab.c (search_symbols): Formatting fixes.
6223 (print_symbol_info): Formatting fixes.
6224
6225 * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
6226 int64_t change to leb128 API.
6227 (read_encoded_value, decode_frame_entry_1): Ditto.
6228 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
6229 (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
6230 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6231 (execute_stack_op): Ditto.
6232 * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
6233 (safe_read_uleb128, safe_read_sleb128): Ditto.
6234 * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
6235 (dwarf2_compile_expr_to_ax): Ditto.
6236 (locexpr_describe_location_piece): Ditto.
6237 (disassemble_dwarf_expression): Ditto.
6238 (locexpr_describe_location_1): Ditto.
6239
6240 2012-05-23 Stan Shebs <stan@codesourcery.com>
6241 Kwok Cheung Yeung <kcy@codesourcery.com>
6242
6243 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
6244 (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
6245 (mi-cmd-info.o): New rule.
6246 * osdata.h (info_osdata_command): New declaration.
6247 * osdata.c (info_osdata_command): Change to non-static.
6248 * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
6249 * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
6250 * mi/mi-cmd-info.c: New file.
6251
6252 2012-05-23 Doug Evans <dje@google.com>
6253
6254 * symtab.c (search_symbols): Pass NULL for file_matcher to
6255 expand_symtabs_matching if there are no files to match.
6256
6257 * gdbtypes.c (lookup_typename): Simplify.
6258
6259 2012-05-23 Pedro Alves <palves@redhat.com>
6260
6261 * arch-utils.h (default_target_signal_to_host): Delete.
6262 * arch-utils.c (default_target_signal_to_host): Delete.
6263 * gdbarch.sh (target_signal_to_host): Remove.
6264 * gdbarch.h, gdbarch.c: Regenerate.
6265
6266 2012-05-22 Doug Evans <dje@google.com>
6267
6268 * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
6269 "const gdb_byte *".
6270 (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
6271 (execute_cfa_program): Update to match API of leb128 functions.
6272 (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
6273 "const gdb_byte *".
6274 (read_unsigned_leb128, read_signed_leb128): Delete.
6275 (read_initial_length): Change type of buf argument to
6276 "const gdb_byte *".
6277 (read_encoded_value): Update to match API of leb128 functions.
6278 (decode_frame_entry): Change result to "const gdb_byte *", and
6279 similarly for "start" parameter.
6280 (decode_frame_entry_1): Ditto. Use new leb128 reader functions.
6281 (dwarf2_build_frame_info): Change local frame_ptr to
6282 "const gdb_byte *".
6283 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
6284 read_uleb128, read_sleb128. All callers updated.
6285 (safe_skip_leb128): New function.
6286 (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
6287 Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
6288 (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
6289 functions. Call gdb_read_uleb128, gdb_read_sleb128 instead of
6290 read_uleb128, read_sleb128.
6291 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6292 (execute_stack_op): Update to match API of leb128 functions.
6293 * dwarf2expr.h: #include "leb128.h".
6294 (read_uleb128, read_sleb128): Delete.
6295 (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
6296 (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
6297 * dwarf2loc.c (debug_loc_kind): New enum.
6298 (decode_debug_loc_addresses): New function.
6299 (decode_debug_loc_dwo_addresses): New function.
6300 (dwarf2_find_location_expression): Rewrite.
6301 (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
6302 (locexpr_describe_location_piece): Ditto.
6303 (disassemble_dwarf_expression): Ditto.
6304 (locexpr_describe_location_1): Ditto.
6305 (loclist_describe_location): Rewrite.
6306 * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
6307 * dwarf2read.c (die_reader_specs): New member "buffer_end".
6308 (dwarf2_section_buffer_overflow_complaint): Renamed from
6309 dwarf2_macros_too_long_complaint. All callers updated.
6310 (skip_leb128): Delete.
6311 (init_cu_die_reader): Initialize reader->buffer_end.
6312 (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
6313 (skip_form_bytes): New arg buffer_end. All callers updated.
6314 Replace call to skip_leb128 with gdb_skip_leb128.
6315 (skip_unknown_opcode): New arg mac_end. All callers updated.
6316 (fill_in_loclist_baton): Initialize baton->from_dwo.
6317
6318 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
6319
6320 * mips-linux-nat.c (mips_linux_read_description): Use a more
6321 verbose error message.
6322
6323 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
6324
6325 * NEWS: Add MIPS/Linux DSP support.
6326 * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
6327 (SIGCONTEXT_DSPCTL): New macro.
6328 (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
6329 (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
6330 (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
6331 (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
6332 (N64_SIGCONTEXT_HI3): Likewise.
6333 (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
6334 (N64_SIGCONTEXT_LO3): Likewise.
6335 (N64_SIGCONTEXT_DSPCTL): Likewise.
6336 (N64_SIGCONTEXT_FPCSR): Clarify definition.
6337 (mips_linux_o32_sigframe_init): Handle DSP registers.
6338 (mips_linux_n32n64_sigframe_init): Likewise.
6339
6340 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
6341
6342 * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
6343 call to abort.
6344
6345 2012-05-22 Pedro Alves <palves@redhat.com>
6346
6347 * target.h (store_waitstatus): Move declaration ...
6348 * inf-child.h (store_waitstatus): ... here.
6349 * target.c: Move inclusion of gdb_wait.h, and ...
6350 (store_waitstatus): ... this ...
6351 * inf-child.c: ... here.
6352 * linux-nat.c: Include inf-child.h.
6353 * rs6000-nat.c: Include inf-child.h.
6354 * spu-linux-nat.c: Include inf-child.h.
6355
6356 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
6357
6358 * tracepoint.c (start_tracing): Add missing i18n markup.
6359 (stop_tracing, set_trace_user): Ditto.
6360 (set_trace_notes, set_trace_stop_notes): Ditto.
6361
6362 2012-05-21 Tom Tromey <tromey@redhat.com>
6363
6364 PR c++/7173:
6365 * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
6366 types.
6367 * value.h (value_cast_pointers): Update.
6368 * valops.c (value_cast_pointers): Add 'subclass_check' argument.
6369 (value_cast): Update.
6370 (update_search_result): New function.
6371 (do_search_struct_field): New, from search_struct_field. Check
6372 for ambiguous results.
6373 (search_struct_field): Rewrite.
6374 * infcall.c (value_arg_coerce): Update.
6375 * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
6376 value_cast_pointers.
6377 * ada-lang.c (ada_convert_actual): Update.
6378
6379 2012-05-21 Tom Tromey <tromey@redhat.com>
6380
6381 * macroexp.c (macro_stringify): Terminate the string.
6382
6383 2012-05-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6384
6385 * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
6386 Describe it.
6387 * auto-load.c (auto_load_expand_dir_vars): New function.
6388 (auto_load_safe_path_vec_update): Use it, remove the
6389 substitute_path_component call thanks to it.
6390 (auto_load_objfile_script): Remove the debug_file_directory processing.
6391 Use auto_load_expand_dir_vars, remove the substitute_path_component
6392 call thanks to it.
6393 * configure: Regenerate.
6394 * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
6395 path. Escape $ also for $debugdir.
6396 (--with_auto_load_safe_path): Escape $ also for $debugdir.
6397 * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
6398
6399 2012-05-20 Doug Evans <dje@google.com>
6400
6401 * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
6402 before use. Check for symtab->includes == NULL before scanning it.
6403
6404 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6405
6406 * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
6407
6408 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6409
6410 * NEWS: Add microMIPS support and "set mips compression",
6411 "show mips compression" commands.
6412 * mips-tdep.h (mips_isa): New enum.
6413 (gdbarch_tdep): Add mips_isa.
6414 (mips_pc_is_mips16): Update prototype.
6415 (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
6416 * mips-tdep.c (mips_compression_mips16): New variable.
6417 (mips_compression_micromips): Likewise.
6418 (mips_compression_strings): Likewise.
6419 (mips_compression_string): Likewise.
6420 (is_mips16_isa, is_micromips_isa): New functions.
6421 (is_mips16_addr): Rename to...
6422 (is_compact_addr): ... this.
6423 (unmake_mips16_addr): Likewise to...
6424 (unmake_compact_addr): ... this.
6425 (make_mips16_addr): Likewise to...
6426 (make_compact_addr): ... this.
6427 (is_mips_addr, is_mips16_addr, is_micromips_addr): New
6428 functions.
6429 (mips_elf_make_msymbol_special): Handle microMIPS code.
6430 (msymbol_is_special): Rename to...
6431 (msymbol_is_mips16): ... this.
6432 (mips_make_symbol_special, mips_pc_is_mips16): Update
6433 accordingly.
6434 (msymbol_is_mips, msymbol_is_micromips): New functions.
6435 (mips16_to_32_reg): Rename to...
6436 (mips_reg3_to_reg): ... this.
6437 (mips_pc_is_mips, mips_pc_is_micromips): New functions.
6438 (mips_pc_isa): Likewise.
6439 (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
6440 code.
6441 (mips_fetch_instruction): Pass return status instead of printing
6442 an error message if requested. Handle microMIPS code. Bail out
6443 on an invalid ISA.
6444 (micromips_op): New macro.
6445 (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
6446 (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
6447 (b6s4_op, b7s3_reg): Likewise.
6448 (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
6449 (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
6450 (mips_insn_size): New function.
6451 (mips32_next_pc): Update mips_fetch_instruction call.
6452 (micromips_relative_offset7): New function.
6453 (micromips_relative_offset10): Likewise.
6454 (micromips_relative_offset16): Likewise.
6455 (micromips_pc_insn_size): Likewise.
6456 (micromips_bc1_pc): Likewise.
6457 (micromips_next_pc): Likewise.
6458 (unpack_mips16): Update mips_fetch_instruction call.
6459 (extended_mips16_next_pc): Update according to change to
6460 mips16_to_32_reg.
6461 (mips_next_pc): Update mips_pc_is_mips16 call. Handle microMIPS
6462 code.
6463 (mips16_scan_prologue): Update mips_fetch_instruction call.
6464 Update according to change to mips16_to_32_reg.
6465 (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
6466 (mips_insn16_frame_base_sniffer): Likewise.
6467 (micromips_decode_imm9): New function.
6468 (micromips_scan_prologue): Likewise.
6469 (mips_micro_frame_cache): Likewise.
6470 (mips_micro_frame_this_id): Likewise.
6471 (mips_micro_frame_prev_register): Likewise.
6472 (mips_micro_frame_sniffer): Likewise.
6473 (mips_micro_frame_unwind): New variable.
6474 (mips_micro_frame_base_address): New function.
6475 (mips_micro_frame_base): New variable.
6476 (mips_micro_frame_base_sniffer): New function.
6477 (mips32_scan_prologue): Update mips_fetch_instruction call.
6478 (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
6479 rather than for MIPS16.
6480 (mips_insn32_frame_base_sniffer): Likewise.
6481 (mips_addr_bits_remove): Handle microMIPS code.
6482 (deal_with_atomic_sequence): Rename to...
6483 (mips_deal_with_atomic_sequence): ... this. Update the type
6484 of the variable used to hold an instruction. Remove the ISA bit
6485 check. Update mips_fetch_instruction call.
6486 (micromips_deal_with_atomic_sequence): New function.
6487 (deal_with_atomic_sequence): Likewise.
6488 (mips_about_to_return): Handle microMIPS code. Update
6489 mips_fetch_instruction call.
6490 (heuristic_proc_start): Check for the standard MIPS ISA rather
6491 than for MIPS16. Update mips_pc_is_mips16 and
6492 mips_fetch_instruction calls. Handle microMIPS code.
6493 (mips_push_dummy_code): Handle microMIPS code.
6494 (mips_eabi_push_dummy_call): Likewise.
6495 (mips_o32_return_value): Update mips_pc_is_mips16 call.
6496 (mips_o64_push_dummy_call): Handle microMIPS code.
6497 (mips_o64_return_value): Update mips_pc_is_mips16 call.
6498 (is_delayed): Remove function.
6499 (mips_single_step_through_delay): Replace the call to is_delayed
6500 with mips32_instruction_has_delay_slot. Correct MIPS16 handling.
6501 Handle microMIPS code.
6502 (mips_skip_prologue): Update mips_pc_is_mips16 call. Handle
6503 microMIPS code.
6504 (mips32_in_function_epilogue_p): Update mips_fetch_instruction
6505 call.
6506 (micromips_in_function_epilogue_p): New function.
6507 (mips16_in_function_epilogue_p): Update mips_fetch_instruction
6508 call.
6509 (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
6510 Handle microMIPS.
6511 (gdb_print_insn_mips): Likewise.
6512 (mips_breakpoint_from_pc): Likewise.
6513 (mips_remote_breakpoint_from_pc): New function.
6514 (mips32_instruction_has_delay_slot): Simplify making use of the
6515 updated mips_fetch_instruction interface.
6516 (micromips_instruction_has_delay_slot): New function.
6517 (mips16_instruction_has_delay_slot): Simplify making use of the
6518 updated mips_fetch_instruction interface.
6519 (mips_adjust_breakpoint_address): Check for the standard MIPS
6520 ISA rather than for MIPS16 ISA. Update for unmake_compact_addr
6521 calls. Handle microMIPS code.
6522 (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
6523 (mips_skip_trampoline_code): Handle microMIPS code.
6524 (global_mips_compression): New function.
6525 (mips_gdbarch_init): Handle the compressed ISA setting from ELF
6526 file flags. Register the microMIPS remote breakpoint handler
6527 and heuristic frame unwinder.
6528 (show_mips_compression): New function.
6529 (_initialize_mips_tdep): Add the "set mips compression" and
6530 "show mips compression" commands.
6531
6532 2012-05-18 Sergio Durigan Junior <sergiodj@redhat.com>
6533
6534 * ada-lang.c:
6535 * ada-tasks.c:
6536 * ada-varobj.c:
6537 * amd64-darwin-tdep.c:
6538 * arm-symbian-tdep.c:
6539 * arm-tdep.c:
6540 * avr-tdep.c:
6541 * ax-gdb.c:
6542 * bfin-linux-tdep.c:
6543 * breakpoint.c:
6544 * c-valprint.c:
6545 * cli/cli-cmds.c:
6546 * coffread.c:
6547 * cp-support.c:
6548 * cris-tdep.c:
6549 * dwarf2-frame-tailcall.c:
6550 * dwarf2-frame.c:
6551 * dwarf2expr.c:
6552 * dwarf2loc.c:
6553 * dwarf2read.c:
6554 * elfread.c:
6555 * eval.c:
6556 * expprint.c:
6557 * f-valprint.c:
6558 * frv-tdep.c:
6559 * h8300-tdep.c:
6560 * hppa-hpux-tdep.c:
6561 * hppa-tdep.c:
6562 * hppanbsd-tdep.c:
6563 * i386-nto-tdep.c:
6564 * i386-tdep.c:
6565 * i387-tdep.c:
6566 * ia64-tdep.c:
6567 * jit.c:
6568 * linespec.c:
6569 * linux-tdep.c:
6570 * lm32-tdep.c:
6571 * m2-valprint.c:
6572 * m32c-tdep.c:
6573 * m32r-rom.c:
6574 * m32r-tdep.c:
6575 * m68k-tdep.c:
6576 * m68klinux-tdep.c:
6577 * mi/mi-main.c:
6578 * microblaze-tdep.c:
6579 * mips-linux-tdep.c:
6580 * mips-tdep.c:
6581 * mn10300-tdep.c:
6582 * p-valprint.c:
6583 * parse.c:
6584 * ppc-linux-tdep.c:
6585 * ppc-sysv-tdep.c:
6586 * printcmd.c:
6587 * python/py-finishbreakpoint.c:
6588 * python/py-inferior.c:
6589 * python/py-infthread.c:
6590 * python/py-type.c:
6591 * python/python.c:
6592 * remote-fileio.c:
6593 * remote-m32r-sdi.c:
6594 * remote-mips.c:
6595 * reverse.c:
6596 * rl78-tdep.c:
6597 * rs6000-aix-tdep.c:
6598 * rs6000-tdep.c:
6599 * s390-tdep.c:
6600 * score-tdep.c:
6601 * sh64-tdep.c:
6602 * skip.c:
6603 * solib-darwin.c:
6604 * solib-dsbt.c:
6605 * solib-frv.c:
6606 * sparc-tdep.c:
6607 * spu-multiarch.c:
6608 * spu-tdep.c:
6609 * stack.c:
6610 * symfile.c:
6611 * symtab.c:
6612 * tic6x-tdep.c:
6613 * tracepoint.c:
6614 * v850-tdep.c:
6615 * valarith.c:
6616 * valprint.c:
6617 * value.c:
6618 * xcoffread.c:
6619 * xtensa-tdep.c:
6620 * ada-lang.c:
6621 * ada-tasks.c:
6622 * ada-varobj.c:
6623 * amd64-darwin-tdep.c:
6624 * arm-symbian-tdep.c:
6625 * arm-tdep.c: Delete unused variables.
6626
6627 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
6628
6629 Rename $ddir to $datadir.
6630 * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
6631 * auto-load.c (auto_load_safe_path_vec_update)
6632 (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
6633 * configure: Regenerate.
6634 * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
6635 Likewise. Remove the 'use $ddir' help string.
6636
6637 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
6638
6639 * auto-load.c (show_auto_load_safe_path): Accept any combination of
6640 DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
6641
6642 2012-05-18 Tom Tromey <tromey@redhat.com>
6643
6644 PR exp/13907:
6645 * valprint.h (struct value_print_options) <symbol_print>: New
6646 field.
6647 * valprint.c (user_print_options): Add default for symbol_print.
6648 (show_symbol_print): New function.
6649 (generic_val_print): Respect symbol_print.
6650 (_initialize_valprint): Add "print symbol" setting.
6651 * f-valprint.c (f_val_print): Respect symbol_print.
6652 * c-valprint.c (c_val_print): Respect symbol_print.
6653 * NEWS: Update.
6654 * printcmd.c (print_address_symbolic): Return int. Ignore some
6655 zero-size symbols.
6656 (print_address_demangle): Return int.
6657 * defs.h: (print_address_symbolic): Return int.
6658 * value.h (print_address_demangle): Return int.
6659
6660 2012-05-18 Tom Tromey <tromey@redhat.com>
6661
6662 * valprint.c (val_print_string): Don't print leading space.
6663 * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
6664 print space before string or vtbl.
6665 * m2-valprint.c (print_unpacked_pointer): Optionally print space
6666 before string.
6667 * jv-valprint.c (java_value_print): Print space before string.
6668 * go-valprint.c (print_go_string): Print space before string.
6669 * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
6670 space before string.
6671 * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
6672 space before string or vtbl.
6673 * auxv.c (fprint_target_auxv): Print space after address.
6674
6675 2012-05-18 Tom Tromey <tromey@redhat.com>
6676
6677 * printcmd.c (print_address_demangle): Remove special case for 0.
6678
6679 2012-05-18 Tom Tromey <tromey@redhat.com>
6680
6681 * printcmd.c (print_address_demangle): Add 'opts' argument.
6682 * p-valprint.c (pascal_val_print): Update.
6683 * jv-valprint.c (java_val_print): Update.
6684 * value.h: Update.
6685 * valprint.c (generic_val_print): Update.
6686 (print_function_pointer_address): Add 'options' argument. Remove
6687 'addressprint' argument. Update.
6688 * m2-valprint.c (print_unpacked_pointer): Update.
6689 * gnu-v3-abi.c (print_one_vtable): Update.
6690 (gnuv3_print_method_ptr): Update.
6691 * f-valprint.c (f_val_print): Update.
6692 * cp-valprint.c (cp_print_value_fields): Update.
6693 * valprint.h (print_function_pointer_address): Update.
6694 * c-valprint.c (c_val_print): Update.
6695
6696 2012-05-18 Tom Tromey <tromey@redhat.com>
6697
6698 * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
6699 directly corresponding to the found psymtab.
6700 * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
6701 (dw2_find_pc_sect_symtab): Use it.
6702 * block.h (blockvector_contains_pc): Declare.
6703 * block.c (find_block_in_blockvector): New function.
6704 (blockvector_for_pc_sect): Use it.
6705 (blockvector_contains_pc): New function.
6706
6707 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6708
6709 * mips-tdep.h (mips_write_pc): New prototype.
6710 * mips-tdep.c (mips_write_pc): Make external, add description.
6711 * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
6712 add description.
6713
6714 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6715
6716 * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
6717 mips_regnum->pc.
6718 (mips_unwind_pc, mips_write_pc): Likewise.
6719 (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
6720 gdbarch_read_pc.
6721
6722 2012-05-17 Joel Brobecker <brobecker@adacore.com>
6723
6724 * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
6725 proc_warn, proc_error, proc_get_status, proc_flags,
6726 proc_why, proc_what, proc_nsysarg, proc_sysargs,
6727 proc_set_run_on_last_close, proc_unset_run_on_last_close,
6728 proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
6729 proc_stop_process, proc_wait_for_stop, proc_run_process,
6730 proc_set_traced_signals, proc_set_traced_faults,
6731 proc_set_traced_sysentry, proc_set_traced_sysexit,
6732 proc_set_held_signals, proc_get_held_signals,
6733 proc_get_traced_signals, proc_get_traced_faults,
6734 proc_get_traced_sysentry, proc_get_traced_sysexit,
6735 proc_clear_current_fault, proc_set_current_signal,
6736 proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
6737 proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
6738 proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
6739 proc_get_current_thread, proc_get_current_thread,
6740 proc_get_current_thread, proc_update_threads,
6741 proc_update_threads, proc_update_threads, proc_update_threads,
6742 proc_iterate_over_threads, procfs_find_new_threads,
6743 procfs_pid_to_str): Make static. Remove advance declaration.
6744 (proc_cursig): Make static. Conditionalized defintion on
6745 PROCFS_DONT_PIOCSSIG_CURSIG being defined.
6746 (proc_syscall, proc_set_kill_on_last_close,
6747 proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
6748 proc_get_pending_signals, proc_get_signal_actions,
6749 proc_trace_signal, proc_ignore_signal): Delete.
6750
6751 2012-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
6752
6753 * coffread.c (cs_section_address): Passing proper argument for
6754 `bfd_get_section_vma'.
6755 * dwarf2read.c (dwarf2_locate_sections): Likewise, for
6756 `bfd_get_section_flags'.
6757 * remote.c (remote_trace_set_readonly_regions): Likewise, for
6758 `bfd_get_section_vma'.
6759
6760 2012-05-16 Tom Tromey <tromey@redhat.com>
6761
6762 PR macros/13205:
6763 * macrotab.h: (macro_define_special): Declare.
6764 (enum macro_special_kind): New.
6765 (struct macro_definition) <argc, replacement>: Update comments.
6766 * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
6767 (macro_define_object_internal): New function.
6768 (macro_define_object): Use it.
6769 (macro_define_special): New function.
6770 (fixup_definition): New function.
6771 (macro_lookup_definition, foreach_macro_in_scope)
6772 (foreach_macro): Use fixup_definition.
6773 * macroexp.h (macro_stringify): Declare.
6774 * macroexp.c (free_buffer_return_text): New function.
6775 (stringify): Constify "arg".
6776 (macro_stringify): New function.
6777 * dwarf2read.c (macro_start_file): Call macro_define_special.
6778
6779 2012-05-16 Maciej W. Rozycki <macro@codesourcery.com>
6780 Maciej W. Rozycki <macro@mips.com>
6781
6782 * breakpoint.h (bp_location): Add related_address member.
6783 * inferior.h (get_return_value): Take a pointer to struct value
6784 instead of struct type for the function requested.
6785 * value.h (using_struct_return): Likewise.
6786 * gdbarch.sh (return_value): Take a pointer to struct value
6787 instead of struct type for the function requested.
6788 * breakpoint.c (set_breakpoint_location_function): Initialize
6789 related_address for bp_gnu_ifunc_resolver breakpoints.
6790 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
6791 requested function's address to gdbarch_return_value.
6792 * eval.c (evaluate_subexp_standard): Pass the requested
6793 function's address to using_struct_return.
6794 * infcall.c (call_function_by_hand): Pass the requested
6795 function's address to using_struct_return and
6796 gdbarch_return_value.
6797 * infcmd.c (get_return_value): Take a pointer to struct value
6798 instead of struct type for the function requested.
6799 (print_return_value): Update accordingly.
6800 (finish_command_continuation): Likewise.
6801 * stack.c (return_command): Pass the requested function's
6802 address to using_struct_return and gdbarch_return_value.
6803 * value.c (using_struct_return): Take a pointer to struct value
6804 instead of struct type for the function requested. Pass the
6805 requested function's address to gdbarch_return_value.
6806 * python/py-finishbreakpoint.c (finish_breakpoint_object):
6807 New function_value member, replacing function_type.
6808 (bpfinishpy_dealloc): Update accordingly.
6809 (bpfinishpy_pre_stop_hook): Likewise.
6810 (bpfinishpy_init): Likewise. Record the requested function's
6811 address.
6812 * mips-tdep.c (mips_fval_reg): New enum.
6813 (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
6814 words put in GP registers.
6815 (mips_o64_push_dummy_call): Update a comment.
6816 (mips_o32_return_value): Take a pointer to struct value instead
6817 of struct type for the function requested and use it to check if
6818 using the MIPS16 calling convention. Return the designated
6819 general purpose registers for floating-point values returned in
6820 MIPS16 mode.
6821 (mips_o64_return_value): Likewise.
6822 * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
6823 (ppc_sysv_abi_broken_return_value): Likewise.
6824 (ppc64_sysv_abi_return_value): Likewise.
6825 * alpha-tdep.c (alpha_return_value): Take a pointer to struct
6826 value instead of struct type for the function requested.
6827 * amd64-tdep.c (amd64_return_value): Likewise.
6828 * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
6829 * arm-tdep.c (arm_return_value): Likewise.
6830 * avr-tdep.c (avr_return_value): Likewise.
6831 * bfin-tdep.c (bfin_return_value): Likewise.
6832 * cris-tdep.c (cris_return_value): Likewise.
6833 * frv-tdep.c (frv_return_value): Likewise.
6834 * h8300-tdep.c (h8300_return_value): Likewise.
6835 (h8300h_return_value): Likewise.
6836 * hppa-tdep.c (hppa32_return_value): Likewise.
6837 (hppa64_return_value): Likewise.
6838 * i386-tdep.c (i386_return_value): Likewise.
6839 * ia64-tdep.c (ia64_return_value): Likewise.
6840 * iq2000-tdep.c (iq2000_return_value): Likewise.
6841 * lm32-tdep.c (lm32_return_value): Likewise.
6842 * m32c-tdep.c (m32c_return_value): Likewise.
6843 * m32r-tdep.c (m32r_return_value): Likewise.
6844 * m68hc11-tdep.c (m68hc11_return_value): Likewise.
6845 * m68k-tdep.c (m68k_return_value): Likewise.
6846 (m68k_svr4_return_value): Likewise.
6847 * m88k-tdep.c (m88k_return_value): Likewise.
6848 * mep-tdep.c (mep_return_value): Likewise.
6849 * microblaze-tdep.c (microblaze_return_value): Likewise.
6850 * mn10300-tdep.c (mn10300_return_value): Likewise.
6851 * moxie-tdep.c (moxie_return_value): Likewise.
6852 * mt-tdep.c (mt_return_value): Likewise.
6853 * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
6854 * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
6855 (ppc_sysv_abi_broken_return_value): Likewise.
6856 (ppc64_sysv_abi_return_value): Likewise.
6857 * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
6858 * rl78-tdep.c (rl78_return_value): Likewise.
6859 * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
6860 * rx-tdep.c (rx_return_value): Likewise.
6861 * s390-tdep.c (s390_return_value): Likewise.
6862 * score-tdep.c (score_return_value): Likewise.
6863 * sh-tdep.c (sh_return_value_nofpu): Likewise.
6864 (sh_return_value_fpu): Likewise.
6865 * sh64-tdep.c (sh64_return_value): Likewise.
6866 * sparc-tdep.c (sparc32_return_value): Likewise.
6867 * sparc64-tdep.c (sparc64_return_value): Likewise.
6868 * spu-tdep.c (spu_return_value): Likewise.
6869 * tic6x-tdep.c (tic6x_return_value): Likewise.
6870 * v850-tdep.c (v850_return_value): Likewise.
6871 * vax-tdep.c (vax_return_value): Likewise.
6872 * xstormy16-tdep.c (xstormy16_return_value): Likewise.
6873 * xtensa-tdep.c (xtensa_return_value): Likewise.
6874 * gdbarch.c: Regenerate.
6875 * gdbarch.h: Regenerate.
6876
6877 2012-05-15 Tom Tromey <tromey@redhat.com>
6878
6879 * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
6880
6881 2012-05-15 Joel Brobecker <brobecker@adacore.com>
6882
6883 * breakpoint.c (init_breakpoint_sal): Add quotes around part
6884 of command in two error message.
6885
6886 2012-05-15 Joel Brobecker <brobecker@adacore.com>
6887
6888 * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
6889
6890 2012-05-15 Joel Brobecker <brobecker@adacore.com>
6891
6892 * breakpoint.c (find_condition_and_thread): Minor reformatting.
6893
6894 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6895
6896 * NEWS (show auto-load scripts-directory): Add forgotten command.
6897
6898 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6899
6900 * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
6901 parameters.
6902
6903 2012-05-14 H.J. Lu <hongjiu.lu@intel.com>
6904
6905 * amd64-tdep.c: Include features/i386/x32.c and
6906 features/i386/x32-avx.c.
6907 (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
6908 initialize_tdesc_x32_avx.
6909
6910 2012-05-14 Stan Shebs <stan@codesourcery.com>
6911
6912 Add dynamic printf.
6913 * breakpoint.h (enum bptype): New type bp_dprintf.
6914 (struct breakpoint): New field extra_string.
6915 (struct breakpoint_ops): Add arg to create_breakpoints_sal.
6916 (create_breakpoint): Add extra_string arg.
6917 * breakpoint.c (dprintf_breakpoint_ops): New.
6918 (is_breakpoint): Add bp_dprintf.
6919 (bpstat_what): Add dprintf case.
6920 (bptype_string): Ditto.
6921 (print_one_breakpoint_location): Ditto.
6922 (init_bp_location): Ditto.
6923 (bkpt_print_mention): Ditto.
6924 (dprintf_style_enums): New array.
6925 (dprintf_style): New global.
6926 (dprintf_function): New global.
6927 (dprintf_channel): New global.
6928 (update_dprintf_command_list): New function.
6929 (update_dprintf_commands): New function.
6930 (init_breakpoint_sal): Add extra_string argument, handle it.
6931 (create_breakpoint_sal): Add extra_string argument.
6932 (create_breakpoints_sal): Add extra_string argument, update callers.
6933 (find_condition_and_thread): Add extra argument.
6934 (create_breakpoint): Add extra_string argument, record it.
6935 (dprintf_command): New function.
6936 (break_command_1): Add arg to create_breakpoint call.
6937 (handle_gnu_v3_exceptions): Ditto.
6938 (trace_command): Ditto.
6939 (ftrace_command): Ditto.
6940 (strace_command): Ditto.
6941 (bkpt_print_mention): Add dprintf case.
6942 (create_breakpoint_sal_default): Add extra_string argument.
6943 (_initialize_breakpoint): Add new commands.
6944 * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
6945 * python/py-breakpoint.c (bppy_init): Ditto.
6946 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
6947
6948 2012-05-14 Maciej W. Rozycki <macro@codesourcery.com>
6949
6950 * mips-tdep.c (mips_push_dummy_code): Correct description typo.
6951
6952 2012-05-14 Siva Chandra Reddy <sivachandra@google.com>
6953
6954 * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
6955 unsigned long long.
6956
6957 2012-05-13 Siva Chandra Reddy <sivachandra@google.com>
6958
6959 Add a new function gdb.find_pc_line to the Python API.
6960 * NEWS (Python Scripting): Add entry about the new function.
6961 * python/python.c (gdbpy_find_pc_line): New function which
6962 implements gdb.find_pc_line.
6963 (GdbMethods): Add entry for the new function.
6964
6965 2012-05-12 Pedro Alves <palves@redhat.com>
6966
6967 * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
6968 initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
6969
6970 2012-05-12 Eli Zaretskii <eliz@gnu.org>
6971
6972 * inferior.c: Include completer.h
6973 (initialize_inferiors): Set completer of add-inferior to
6974 filename_completer.
6975
6976 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
6977
6978 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
6979 gdbarch_ptr_bit for x32 core dump.
6980
6981 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
6982
6983 * amd64-linux-tdep.c: Include features/i386/x32-linux.c
6984 and features/i386/x32-avx-linux.c.
6985
6986 2012-05-11 Stan Shebs <stan@codesourcery.com>
6987 Kwok Cheung Yeung <kcy@codesourcery.com>
6988
6989 * NEWS: Describe new info os commands.
6990 * common/linux-osdata.c (PID_T, TIME_T): Define.
6991 (MAX_PID_T_STRLEN): New.
6992 (linux_common_core_of_thread): Add comment. Change to use PID_T and
6993 MAX_PID_T_STRLEN.
6994 (command_from_pid): Add comment. Change to use PID_T.
6995 (commandline_from_pid): Change to use PID_T.
6996 (user_from_pid): Add comment.
6997 (get_process_owner): Add comment. Change to use PID_T and
6998 MAX_PID_T_STRLEN.
6999 (get_number_of_cpu_cores): Add comment.
7000 (get_cores_used_by_process): Add comment. Change to use PID_T and
7001 MAX_PID_T_STRLEN.
7002 (linux_xfer_osdata_processes): Change to use PID_T and
7003 MAX_PID_T_STRLEN.
7004 (compare_processes): New function.
7005 (linux_xfer_osdata_processgroups): New function.
7006 (linux_xfer_osdata_threads): Change to use PID_T.
7007 (linux_xfer_osdata_fds): New function.
7008 (format_socket_state, print_sockets): New functions.
7009 (union socket_addr): New union.
7010 (linux_xfer_osdata_isockets): New function.
7011 (time_from_time_t, group_from_gid): New functions.
7012 (linux_xfer_osdata_shm): New function.
7013 (linux_xfer_osdata_sem): New function.
7014 (linux_xfer_osdata_msg): New function.
7015 (linux_xfer_osdata_modules): New function.
7016 (osdata_table): Add new entries.
7017 * common/buffer.c (buffer_xml_printf): Add support for long and
7018 long long format specifiers.
7019
7020 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
7021
7022 * amd64-linux-tdep.h (tdesc_x32_linux): New.
7023 (tdesc_x32_avx_linux): Likewise.
7024
7025 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7026
7027 Implement multi-component --with-auto-load-dir.
7028 * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
7029 entries.
7030 (--with-auto-load-safe-path): Update the default value description.
7031 * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
7032 New.
7033 (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output. Remove
7034 GDB_DATADIR NULL check. Replace GDB_DATADIR/auto-load by
7035 AUTO_LOAD_DIR. Support $ddir and multiple components in it.
7036 (_initialize_auto_load): Initialize also auto_load_dir. Install new
7037 "set auto-load scripts-directory".
7038 * config.in: Regenerate.
7039 * configure: Regenerate.
7040 * configure.ac (--with-auto-load-dir): New configure option.
7041 (--auto-load-safe-path): Change the default to --with-auto-load-dir.
7042
7043 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7044
7045 Provide $ddir substitution for --with-auto-load-safe-path.
7046 * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
7047 entries.
7048 * auto-load.c: Include observer.h.
7049 (auto_load_safe_path_vec_update): Call substitute_path_component for
7050 each component. New variable ddir_subst.
7051 (auto_load_gdb_datadir_changed): New function.
7052 (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
7053 AUTO_LOAD_SAFE_PATH. New comment.
7054 (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
7055 AUTO_LOAD_SAFE_PATH. Install auto_load_gdb_datadir_changed.
7056 * config.in: Regenerate.
7057 * configure: Regenerate.
7058 * configure.ac (--auto-load-safe-path): Rename
7059 DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH. Default to
7060 GDB_DATADIR/auto-load.
7061 * defs.h (substitute_path_component): New declaration.
7062 * top.c: Include observer.h.
7063 (set_gdb_datadir): New function.
7064 (init_main): Install it for "set data-directory".
7065 * utils.c (substitute_path_component): New function.
7066
7067 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7068
7069 Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
7070 * auto-load.c (auto_load_objfile_script): Remove check for NULL
7071 DEBUG_FILE_DIRECTORY. Handle multiple components of
7072 DEBUG_FILE_DIRECTORY.
7073
7074 2012-05-10 Tom Tromey <tromey@redhat.com>
7075
7076 * dwarf2read.c (recursively_write_psymbols): New function.
7077 (write_psymtabs_to_index): Use it.
7078
7079 * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
7080 field.
7081 (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
7082 (load_partial_comp_unit): Update.
7083 (queue_comp_unit): Add argument 'pretend_language'.
7084 (process_queue): Update.
7085 (psymtab_to_symtab_1): Skip dependencies that have a user.
7086 (load_partial_comp_unit_reader): Give meaning to the 'data'
7087 argument.
7088 (load_full_comp_unit): Add 'pretend_language' argument.
7089 (process_full_comp_unit): Add 'pretend_language' argument. Set
7090 language on CU.
7091 (process_imported_unit_die, read_file_scope, read_type_unit_scope):
7092 Update.
7093 (maybe_queue_comp_unit): Add 'pretend_language' argument.
7094 (follow_die_offset, follow_die_sig, read_signatured_type_reader):
7095 Update.
7096 (prepare_one_comp_unit): Add 'pretend_language' argument.
7097
7098 * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
7099 (struct dwarf2_per_objfile) <just_read_cus>: New field.
7100 (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
7101 (dw2_do_instantiate_symtab): Check whether symtab was read in
7102 before queueing.
7103 (dw2_instantiate_symtab): Add assertion. Call
7104 process_cu_includes.
7105 (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
7106 (partial_symtab_p): New typedef.
7107 (set_partial_user): New function.
7108 (dwarf2_build_psymtabs_hard): Use set_partial_user.
7109 (scan_partial_symbols): Add imported CU to imported_symtabs.
7110 (dwarf2_psymtab_to_symtab): Call process_cu_includes.
7111 (psymtab_to_symtab_1): Do nothing if psymtab is readin.
7112 (get_symtab, recursively_compute_inclusions)
7113 (compute_symtab_includes, process_cu_includes)
7114 (process_imported_unit_die): New functions.
7115 (process_die) <DW_TAG_imported_unit>: New case.
7116 (dwarf2_per_objfile_free): Free 'imported_symtabs'.
7117
7118 * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
7119 comment.
7120 (struct partial_die_info) <locdesc>: Remove.
7121 <d>: New field.
7122 (process_psymtab_comp_unit): Add 'read_partial' argument.
7123 Update.
7124 (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
7125 (scan_partial_symbols): Handle DW_TAG_imported_unit.
7126 (add_partial_symbol): Update.
7127 (process_die): Handle DW_TAG_partial_unit.
7128 (read_file_scope): Update comment.
7129 (load_partial_dies): Handle DW_TAG_imported_unit.
7130 (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
7131 (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
7132
7133 2012-05-10 Tom Tromey <tromey@redhat.com>
7134
7135 * cc-with-dwz.sh: New file.
7136
7137 2012-05-10 Tom Tromey <tromey@redhat.com>
7138
7139 * symtab.h (struct symtab) <includes, user>: New fields.
7140 * block.h (struct block_iterator) <d, idx, which>: New fields.
7141 * block.c (initialize_block_iterator, find_iterator_symtab)
7142 (block_iterator_step, block_iter_name_step)
7143 (block_iter_match_step): New functions.
7144 (block_iterator_first, block_iterator_next)
7145 (block_iter_name_first, block_iter_name_next)
7146 (block_iter_match_first, block_iter_match_next): Rewrite.
7147 (get_block_symtab): New function.
7148
7149 2012-05-10 Tom Tromey <tromey@redhat.com>
7150
7151 * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
7152 set_block_symtab.
7153 * jit.c (finalize_symtab): Use allocate_global_block,
7154 set_block_symtab.
7155 * buildsym.c (finish_block_internal): New function, from old
7156 finish_block.
7157 (finish_block): Rewrite.
7158 (end_symtab): Use finish_block_internal, set_block_symtab.
7159 * block.h (struct global_block): New.
7160 (allocate_global_block, set_block_symtab): Declare.
7161 * block.c (allocate_global_block, set_block_symtab): New
7162 functions.
7163
7164 2012-05-10 Tom Tromey <tromey@redhat.com>
7165
7166 * psymtab.c (partial_map_expand_apply): Add assertion.
7167 (partial_map_symtabs_matching_filename): Skip included psymtabs.
7168 (psymtab_to_symtab): Find unshared psymtab.
7169 (dump_psymtab): Print including psymtabs.
7170 (recursively_search_psymtabs): New function.
7171 (expand_symtabs_matching_via_partial): Use it.
7172 * psympriv.h (struct partial_symtab) <user, searched_flag>: New
7173 fields.
7174 (enum psymtab_search_status): New.
7175
7176 2012-05-10 Tom Tromey <tromey@redhat.com>
7177
7178 * tracepoint.c (scope_info): Update.
7179 * symtab.c (lookup_block_symbol, iterate_over_symbols)
7180 (find_pc_sect_symtab, search_symbols)
7181 (default_make_symbol_completion_list_break_on)
7182 (make_file_symbol_completion_list): Update.
7183 * symmisc.c (dump_symtab_1): Update.
7184 * stack.c (print_frame_args, iterate_over_block_locals)
7185 (print_frame_labels, iterate_over_block_arg_vars): Update.
7186 * python/py-block.c (block_object) <dict>: Remove.
7187 <block>: New field.
7188 <iter>: Change type.
7189 (blpy_iter): Update.
7190 (blpy_block_syms_iternext): Update.
7191 * psymtab.c (map_block): Use block iterators.
7192 * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
7193 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
7194 * mdebugread.c (parse_symbol, mylookup_symbol): Update.
7195 * infrun.c (check_exception_resume): Update.
7196 * cp-support.c (make_symbol_overload_list_block): Update.
7197 * coffread.c (patch_opaque_types): Update.
7198 * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
7199 * block.h (struct block_iterator): New.
7200 (block_iterator_first, block_iterator_next, block_iter_name_first)
7201 (block_iter_name_next, block_iter_match_first)
7202 (block_iter_match_next): Declare.
7203 (ALL_BLOCK_SYMBOLS): Redefine.
7204 * block.c (block_iterator_first, block_iterator_next)
7205 (block_iter_name_first, block_iter_name_next)
7206 (block_iter_match_first, block_iter_match_next): New functions.
7207 * ada-lang.c (ada_add_block_symbols)
7208 (ada_make_symbol_completion_list): Use block iterator.
7209
7210 2012-05-10 Tom Tromey <tromey@redhat.com>
7211
7212 * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
7213 (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
7214 (lookup_partial_symbol, find_last_source_symtab_from_partial)
7215 (read_psymtabs_with_filename, map_matching_symbols_psymtab)
7216 (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
7217 Update.
7218
7219 2012-05-10 Joel Brobecker <brobecker@adacore.com>
7220
7221 * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
7222 print-file-var-lib2.c, print-file-var-main.c and
7223 print-file-var.exp (located in gdb/testsuite/gdb.base).
7224
7225 2012-05-10 Joel Brobecker <brobecker@adacore.com>
7226
7227 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
7228 try locating the symbol in the symbol's own objfile first, before
7229 extending the search to all objfiles.
7230 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
7231 out of lookup_symbol_aux_symtabs.
7232 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
7233 Replace extracted-out code by call to lookup_symbol_aux_objfile.
7234 Do not search EXCLUDE_OBJFILE.
7235 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
7236 (lookup_symbol_global): Search for matches in the block's objfile
7237 first, before searching all other objfiles.
7238
7239 2012-05-10 Tristan Gingold <gingold@adacore.com>
7240
7241 * printcmd.c (set_command): Add pre/post inc/dec.
7242
7243 2012-05-09 Frank Ch. Eigler <fche@redhat.com>
7244
7245 * gdb.1: Document -ex option.
7246
7247 2012-05-09 Joel Brobecker <brobecker@adacore.com>
7248
7249 * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
7250 * inferior.h (AT_SYMBOL): Delete.
7251
7252 2012-05-09 Joel Brobecker <brobecker@adacore.com>
7253
7254 * mips-tdep.c (mips_push_dummy_code): New function.
7255 (mips_gdbarch_init): Set the gdbarch call_dummy_location to
7256 ON_STACK and install mips_push_dummy_code as our gdbarch
7257 push_dummy_code routine.
7258
7259 2012-05-09 Pedro Alves <palves@redhat.com>
7260
7261 * target.c (set_maintenance_target_async_permitted): Rename to ...
7262 (set_target_async_command): ... this.
7263 (show_maintenance_target_async_permitted): Rename to ...
7264 (show_target_async_command): ... this.
7265 (initialize_targets): Adjust.
7266
7267 2012-05-08 Doug Evans <dje@google.com>
7268
7269 * go-exp.y (classify_name): Add missing assignment of fields of
7270 yylval.ssym.
7271
7272 2012-05-08 Eli Zaretskii <eliz@gnu.org>
7273
7274 Display the ">" prompt in interactive mode while reading canned
7275 commands, even when the current interpreter is MI.
7276
7277 * interps.c (interp_set_temp): New function.
7278
7279 * interps.h (interp_set_temp): Add prototype.
7280
7281 * cli/cli-script.c (restore_interp): New cleanup function.
7282 (read_command_lines): Temporarily override the current interpreter
7283 with CLI and arrange for restoring the original one.
7284
7285 2012-05-12 Joel Sherrill <joel.sherrill@oarcorp.com>
7286
7287 * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
7288
7289 2012-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
7290
7291 * probe.c (parse_probes): Move conditional to check for
7292 debuginfo files from here...
7293 * stap-probe.c (stap_get_probes): ... to here.
7294
7295 2012-05-07 Mark Kettenis <kettenis@gnu.org>
7296 H.J. Lu <hongjiu.lu@intel.com>
7297
7298 * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
7299 `movl %esp, %ebp' for the X32 ABI.
7300
7301 2012-05-07 Tom Tromey <tromey@redhat.com>
7302
7303 * dwarf2read.c (dwarf_tag_name): Return const char *. Use
7304 get_DW_TAG_name.
7305 (dwarf_attr_name): Return const char *. Use get_DW_AT_name.
7306 (dwarf_form_name): Return const char *. Use get_DW_FORM_name.
7307 (dwarf_stack_op_name): Remove.
7308 (dwarf_cfi_name): Return const char *. Use get_DW_ATE_name.
7309 (decode_locdesc): Use get_DW_OP_name.
7310 * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
7311 (dwarf2_compile_expr_to_ax): Likewise.
7312 (disassemble_dwarf_expression): Likewise.
7313 * dwarf2expr.h: (dwarf_stack_op_name): Remove.
7314
7315 2012-05-07 Chung-Lin Tang <cltang@codesourcery.com>
7316
7317 * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
7318 (sh_linux_sigtramp_cache): New function.
7319 (sh_linux_sigreturn_init): New function.
7320 (sh_linux_rt_sigreturn_init): New function.
7321 (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
7322 patterns.
7323 (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
7324 syscall codes.
7325 (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
7326 (sh_linux_rt_sigreturn_tramp_frame): Likewise.
7327 (sh_linux_init_abi): Add init calls to register new tramp_frame
7328 definitions under 32-bit SH, update comments.
7329
7330 2012-05-07 Pedro Alves <palves@redhat.com>
7331
7332 PR gdb/10952
7333
7334 * amd64-linux-tdep.c: Include glibc-tdep.h.
7335 (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
7336 gdbarch_skip_solib_resolver callback.
7337
7338 2012-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
7339
7340 * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
7341 back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
7342 (show_auto_load_safe_path): Check any-directory by comparison with "/".
7343 (add_auto_load_safe_path): Change the error message.
7344 (_initialize_auto_load): Change the "safe-path" help text.
7345 * configure: Regenerate
7346 * configure.ac (--without-auto-load-safe-path): Set
7347 WITH_AUTO_LOAD_SAFE_PATH to /.
7348
7349 2012-05-05 Sergio Durigan Junior <sergiodj@redhat.com>
7350
7351 * stap-probe.h: Do not include unecessary `probe.h'.
7352
7353 2012-05-05 Alan Modra <amodra@gmail.com>
7354
7355 * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
7356 bfd_und_section_ptr.
7357 * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
7358 and bfd_com_section_ptr.
7359
7360 2012-05-04 Joel Brobecker <brobecker@adacore.com>
7361
7362 * MAINTAINERS (Past Maintainers): Add Chris Faylor.
7363
7364 2012-05-04 Joel Brobecker <brobecker@adacore.com>
7365
7366 * windows-nat.h (segment_register_p_ftype): New typedef.
7367 (windows_set_segment_register_p): Add declaration.
7368 * windows-nat.c (segment_register_p): New static global.
7369 (windows_set_segment_register_p): New function.
7370 (do_windows_fetch_inferior_registers): Add special handling
7371 for segment registers.
7372 * amd64-windows-nat.c: #include "amd64-tdep.h".
7373 (amd64_windows_segment_register_p): New function.
7374 (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
7375 * i386-windows-nat.c: #include "i386-tdep.h".
7376 (i386_windows_segment_register_p): New function.
7377 (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
7378
7379 2012-05-04 Tristan Gingold <gingold@adacore.com>
7380
7381 * printcmd.c (set_command): Emit a warning if the expression is not
7382 an assignment.
7383
7384 2012-05-03 Joel Brobecker <brobecker@adacore.com>
7385
7386 * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
7387 Make static.
7388
7389 2012-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
7390
7391 * stap-probe.c (stap_is_operator): Change declaration.
7392 (stap_get_opcode): Change return value.
7393 (stap_parse_argument_1): Update calls to `stap_get_opcode' and
7394 `stap_parse_argument_1'.
7395
7396 2012-05-03 Pedro Alves <pedro@codesourcery.com>
7397
7398 * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
7399 debug log.
7400
7401 2012-05-03 Siva Chandra Reddy <sivachandra@google.com>
7402
7403 Add two new methods global_block and static_block to gdb.Symtab
7404 objects.
7405 * NEWS (Python scripting): Add entry about the new methods.
7406 * python/py-symtab.c (stpy_global_block): New function which
7407 implements the gdb.Symtab.global_block() method.
7408 (stpy_static_block): New function which implements the
7409 gdb.Symtab.static_block() method.
7410 (symtab_object_methods): Add entries for the two new methods.
7411
7412 2012-05-03 Doug Evans <dje@google.com>
7413
7414 * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
7415 files.
7416
7417 2012-05-03 Yao Qi <yao@codesourcery.com>
7418
7419 * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
7420 space.
7421 (i386_process_record): Ditto.
7422
7423 2012-05-02 Joel Brobecker <brobecker@adacore.com>
7424
7425 * infcall.c (unwind_on_signal_p): Make static.
7426
7427 2012-05-02 Joel Brobecker <brobecker@adacore.com>
7428
7429 * sol-thread.c (solaris_pid_to_str): Make static.
7430 (_initialize_sol_thread): Add prototype.
7431
7432 2012-05-02 Joel Brobecker <brobecker@adacore.com>
7433
7434 * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
7435
7436 2012-05-02 Christopher Faylor <me.cygwin2012@cgf.cx>
7437
7438 * MAINTAINERS: Remove myself.
7439
7440 2012-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7441
7442 Fix --without-auto-load-safe-path for MS-Windows host platform.
7443 * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
7444
7445 2012-05-02 Eli Zaretskii <eliz@gnu.org>
7446
7447 * gdb_curses.h: Undefine KEY_EVENT before including curses
7448 headers. Move "#undef MOUSE_MOVED" before any curses header
7449 inclusion.
7450
7451 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
7452
7453 * features/i386/i386-mmx-linux.c: Regenerate.
7454 * features/rs6000/powerpc-32.c: Likewise.
7455 * features/rs6000/powerpc-32l.c: Likewise.
7456 * features/rs6000/powerpc-403.c: Likewise.
7457 * features/rs6000/powerpc-403gc.c: Likewise.
7458 * features/rs6000/powerpc-405.c: Likewise.
7459 * features/rs6000/powerpc-505.c: Likewise.
7460 * features/rs6000/powerpc-601.c: Likewise.
7461 * features/rs6000/powerpc-602.c: Likewise.
7462 * features/rs6000/powerpc-603.c: Likewise.
7463 * features/rs6000/powerpc-604.c: Likewise.
7464 * features/rs6000/powerpc-64.c: Likewise.
7465 * features/rs6000/powerpc-64l.c: Likewise.
7466 * features/rs6000/powerpc-750.c: Likewise.
7467 * features/rs6000/powerpc-860.c: Likewise.
7468 * features/rs6000/powerpc-e500.c: Likewise.
7469 * features/rs6000/powerpc-e500l.c: Likewise.
7470 * features/rs6000/powerpc-isa205-32l.c: Likewise.
7471 * features/rs6000/powerpc-isa205-64l.c: Likewise.
7472 * features/rs6000/rs6000.c: Likewise.
7473
7474 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
7475
7476 * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
7477 variable.
7478 * stap-probe.c (stap_parse_single_operand) <reg_suffix,
7479 reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
7480 (stap_parse_argument) <e>: Likewise.
7481 (handle_stap_probe) <byte_order>: Likewise.
7482
7483 2012-04-30 Doug Evans <dje@google.com>
7484
7485 * dwarf2read.c (init_cutu_and_read_dies): Renamed from
7486 init_and_read_dies_worker. All callers updated.
7487 (init_cu_and_read_dies, init_tu_and_read_dies): Delete. All calls
7488 replaced with init_cutu_and_read_dies.
7489 (load_partial_comp_unit): Pass 1 for use_existing_cu.
7490 (find_partial_die): Remove FIXME. Don't free current CU.
7491
7492 2012-04-30 Sterling Augustine <saugustine@google.com>
7493
7494 * contrib: New directory.
7495 * contrib/test_pubnames_and_indexes.py: New file.
7496
7497 2012-04-30 Doug Evans <dje@google.com>
7498
7499 * dwarf2read.c (dwarf_decode_macros): New arg section_name.
7500 All callers updated.
7501 (init_cu_die_reader): Verify the section is non-empty.
7502 (dwarf_decode_line_header): Don't dereference section->asection
7503 until we know the section is present.
7504
7505 2012-04-29 Sergio Durigan Junior <sergiodj@redhat.com>
7506
7507 * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
7508 probes.
7509
7510 2012-04-29 Yao Qi <yao@codesourcery.com>
7511
7512 * gdb-code-style.el: New hook gdb-markup-hook
7513 and gdb-comment-hook.
7514
7515 2012-04-28 Doug Evans <dje@google.com>
7516
7517 Initial support for Fission. http://gcc.gnu.org/wiki/DebugFission
7518 * symfile.c (default_symfile_relocate): Use sectp->owner instead of
7519 objfile->obfd.
7520 * symfile.h (dwarf2_debug_sections): New member addr.
7521 * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
7522 (ctx_no_get_addr_index): New function.
7523 * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
7524 (ctx_no_get_addr_index): Declare.
7525 * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
7526 * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
7527 (dwarf_expr_ctx_funcs): Update.
7528 (needs_get_addr_index): New function.
7529 (needs_frame_ctx_funcs): Update.
7530 * dwarf2loc.h (dwarf2_read_addr_index): Declare.
7531 * dwarf2read.c: #include "gdbcore.h".
7532 (dwarf2_per_objfile): New members addr, dwo_files.
7533 (dwarf2_elf_names): Add entry for addr.
7534 (struct dwo_section_names): New type.
7535 (dwo_section_names): New static global.
7536 (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
7537 (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
7538 old debug_types_section member updated to use this.
7539 Rename member debug_types_section to info_or_types_section,
7540 all uses updated.
7541 (signatured_type): Rename member type_offset to type_offset_in_tu,
7542 all uses updated. New member type_offset_in_section.
7543 (struct dwo_sections): New type.
7544 (struct dwo_unit): New type.
7545 (struct dwo_file): New type.
7546 (die_reader_specs): New member dwo_file.
7547 (dwarf2_locate_sections): Watch for .debug_addr.
7548 (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
7549 (dwarf2_read_section): Get bfd of section from bfd's asection,
7550 instead of objfile.
7551 (create_cus_from_index): Initialize the_cu->info_or_types_section.
7552 (create_signatured_type_table_from_index): Initialize
7553 sig_type->info_or_types_section.
7554 (dw2_get_file_names): Statement lists for type units with DWO files
7555 live in the DWO file.
7556 (create_debug_types_hash_table): New function.
7557 (create_all_type_units): Rewrite.
7558 (init_cu_die_reader): New arg dwo_file, all callers updated.
7559 (init_and_read_dies_worker): Get section from
7560 this_cu->info_or_types_section. Set sig_type->type_offset_in_section.
7561 Watch for DW_AT_GNU_dwo_name and if present lookup the file and
7562 continue reading the CU/TU from there.
7563 (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
7564 updated. Get section from this_cu->info_or_types_section.
7565 (create_all_comp_units): Initialize this_cu->info_or_types_section.
7566 (skip_one_die): New cases DW_FORM_GNU_addr_index,
7567 DW_FORM_GNU_str_index.
7568 (hash_dwo_file, eq_dwo_file): New functions.
7569 (allocate_dwo_file_hash_table): New function.
7570 (hash_dwo_unit, eq_dwo_unit): New functions.
7571 (allocate_dwo_unit_table): New function.
7572 (dwarf2_locate_dwo_sections): New function.
7573 (struct create_dwo_info_table_data): New type.
7574 (create_debug_info_hash_table_reader): New function.
7575 (create_debug_info_hash_table): New function.
7576 (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
7577 (lookup_dwo_file): New function.
7578 (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
7579 (free_dwo_file, free_dwo_file_cleanup): New functions.
7580 (free_dwo_file_from_slot, free_dwo_files): New functions.
7581 (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
7582 (dwarf2_record_block_ranges): Ditto.
7583 (read_partial_die): Ditto.
7584 (process_enumeration_scope): Update to use type_offset_in_section.
7585 (read_full_die_1): New function.
7586 (read_full_die): Rewrite.
7587 (read_attribute_value): New cases DW_FORM_GNU_addr_index,
7588 DW_FORM_GNU_str_index.
7589 (read_addr_index_1, read_addr_index): New functions.
7590 (read_addr_index_from_leb128): New function.
7591 (struct dwarf2_read_addr_index_data): New type.
7592 (dwarf2_read_addr_index_reader): New function.
7593 (dwarf2_read_addr_index): New function.
7594 (read_str_index): New function.
7595 (leb128_size): New function.
7596 (dwarf_decode_line_header): Delete arg abfd, all callers updated.
7597 If processing a type unit from a DWO file, get the line section
7598 from the DWO file.
7599 (var_decode_location): Watch for DW_OP_GNU_addr_index.
7600 (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
7601 DW_FORM_GNU_str_index.
7602 (lookup_die_type): Check whether section offset of type's die is
7603 known before looking it up. Remove assert. Condition can
7604 legimately happen for inter-cu type references.
7605 (dwarf_attr_name): Handle Fission attributes.
7606 (dwarf_form_name): Handle Fission forms.
7607 (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
7608 DW_FORM_GNU_str_index.
7609 (follow_die_sig): Update to use type_offset_in_section.
7610 (decode_locdesc): New case DW_OP_GNU_addr_index.
7611 (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
7612 DW_FORM_GNU_str_index.
7613 (cu_debug_loc_section): New function.
7614 (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
7615 (dwarf2_per_objfile_free): Unmap .debug_addr section.
7616 Free DWO files if present.
7617 * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
7618
7619 Refactor DIE reading.
7620 * dwarf2read.c (dwarf2_per_objfile): Replace members
7621 debug_info_type_hash and debug_types_type_hash with die_type_hash.
7622 (die_reader_specs): New member "die_section". Temporarily make
7623 member "buffer" non-const, pending constifying all info_ptr uses.
7624 (die_reader_func_ftype): New typedef.
7625 (dw2_get_file_names_reader): New function.
7626 (dw2_get_file_names): Rewrite.
7627 (read_and_check_type_unit_head): Rename arg type_offset to
7628 type_offset_in_tu.
7629 (create_all_type_units): Improve debugging message.
7630 Improve dummy type unit check.
7631 (init_cu_die_reader): New arg "section". All callers updated.
7632 (init_and_read_dies_worker): New function.
7633 (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
7634 (init_cutu_and_read_dies_no_follow): New function.
7635 (init_cutu_and_read_dies_simple): New function.
7636 (process_psymtab_comp_unit_reader): New function.
7637 (process_psymtab_comp_unit): Delete args section,
7638 is_debug_types_section. Rewrite. All callers updated.
7639 (process_psymtab_type_unit): Renamed from process_type_comp_unit.
7640 All callers updated. Rewrite.
7641 (load_partial_comp_unit_reader): New function.
7642 (load_partial_comp_unit): Rewrite.
7643 (skip_children): New arg reader. Delete args buffer, cu.
7644 All callers updated.
7645 (skip_one_die): New arg reader. Delete args buffer, cu.
7646 All callers updated.
7647 (locate_pdi_sibling): New arg reader. Delete args buffer, abfd, cu.
7648 All callers updated.
7649 (load_full_comp_unit_reader): New function.
7650 (load_full_comp_unit): Rewrite.
7651 (read_comp_unit): Delete.
7652 (read_die_and_children_1): Delete, contents moved ...
7653 (read_die_and_children): ... here.
7654 (dwarf2_read_abbrevs): New arg abbrev_section. All callers updated.
7655 (load_partial_dies): New arg reader. Delete args abfd, buffer, cu.
7656 All callers updated.
7657 (read_partial_die): New arg reader. Delete args abfd, buffer, cu.
7658 All callers updated.
7659 (find_partial_die): Rewrite load_all_dies support.
7660 (read_attribute_value): New arg reader. Delete args abfd, cu.
7661 All callers updated.
7662 (read_attribute): New arg reader. Delete args abfd, cu.
7663 All callers updated.
7664 (load_full_type_unit): Add assert.
7665 (read_signatured_type_reader): New function.
7666 (read_signatured_type): Rewrite.
7667 (free_stack_comp_unit): Remove call to age_cached_comp_units.
7668 (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
7669 All callers updated. Set per_cu->cu = NULL after freeing it.
7670 (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
7671 (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
7672 (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
7673 (set_die_type): Update.
7674 (get_die_type_at_offset): Update.
7675 (read_file_scope): Call prepare_one_comp_unit.
7676 (read_type_unit_scope): Ditto.
7677 (prepare_one_comp_unit): Set producer if present.
7678
7679 2012-04-28 Sergio Durigan Junior <sergiodj@redhat.com>
7680
7681 * probe.c (compile_rx_or_error): Silence ARI warning about missing
7682 gettext function on `error'.
7683
7684 2012-04-27 Doug Evans <dje@google.com>
7685
7686 * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
7687 is empty.
7688
7689 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
7690 Tom Tromey <tromey@redhat.com>
7691
7692 * breakpoint.c (struct breakpoint_objfile_data)
7693 <longjmp_searched>,<longjmp_probes>,<exception_searched>,
7694 <exception_probes>: New fields.
7695 (free_breakpoint_probes): New function.
7696 (create_longjmp_master_breakpoint): Prefer SystemTap probe over
7697 `_Unwind_DebugHook'.
7698 (create_exception_master_breakpoint): Likewise.
7699 (_initialize_breakpoint): Registering cleanup for SystemTap probes.
7700 * infrun.c: Including necessary header files for handling SystemTap
7701 probes.
7702 (handle_inferior_event): Handling longjmp breakpoint and exceptions
7703 via SystemTap probes.
7704 (check_exception_resume): Remove `func' argument. Handle exception
7705 unwinding breakpoint set via a SystemTap probe.
7706 (insert_exception_resume_from_probe): New function.
7707
7708 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
7709 Tom Tromey <tromey@redhat.com>
7710 Jan Kratochvil <jan.kratochvil@redhat.com>
7711
7712 * Makefile.in (SFILES): Add `probe' and `stap-probe'.
7713 (COMMON_OBS): Likewise.
7714 (HFILES_NO_SRCDIR): Add `probe'.
7715 * NEWS: Mention support for static and SystemTap probes.
7716 * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
7717 SystemTap probes' arguments parser.
7718 * arm-linux-tdep.c: Including headers needed to perform the parsing
7719 of SystemTap probes' arguments.
7720 (arm_stap_is_single_operand): New function.
7721 (arm_stap_parse_special_token): Likewise.
7722 (arm_linux_init_abi): Initializing proper fields used by SystemTap
7723 probes' arguments parser.
7724 * ax-gdb.c (require_rvalue): Removing static declaration.
7725 (gen_expr): Likewise.
7726 * ax-gdb.h (gen_expr): Declaring function.
7727 (require_rvalue): Likewise.
7728 * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
7729 (bkpt_probe_breakpoint_ops): New variable.
7730 (momentary_breakpoint_from_master): Set the `probe' value.
7731 (add_location_to_breakpoint): Likewise.
7732 (break_command_1): Using proper breakpoint_ops according to the
7733 argument passed by the user in the command line.
7734 (bkpt_probe_insert_location): New function.
7735 (bkpt_probe_remove_location): Likewise.
7736 (bkpt_probe_create_sals_from_address): Likewise.
7737 (bkpt_probe_decode_linespec): Likewise.
7738 (tracepoint_probe_create_sals_from_address): Likewise.
7739 (tracepoint_probe_decode_linespec): Likewise.
7740 (tracepoint_probe_breakpoint_ops): New variable.
7741 (trace_command): Using proper breakpoint_ops according to the
7742 argument passed by the user in the command line.
7743 (initialize_breakpoint_ops): Initializing breakpoint_ops for
7744 static probes on breakpoints and tracepoints.
7745 * breakpoint.h (struct bp_location) <probe>: New field.
7746 * cli-utils.c (skip_spaces_const): New function.
7747 (extract_arg): Likewise.
7748 * cli-utils.h (skip_spaces_const): Likewise.
7749 (extract_arg): Likewise.
7750 * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
7751 * configure.ac: Append `stap-probe.o' to be generated when ELF
7752 support is present.
7753 * configure: Regenerate.
7754 * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
7755 * elfread.c: Include `probe.h' and `arch-utils.h'.
7756 (probe_key): New variable.
7757 (elf_get_probes): New function.
7758 (elf_get_probe_argument_count): Likewise.
7759 (elf_evaluate_probe_argument): Likewise.
7760 (elf_compile_to_ax): Likewise.
7761 (elf_symfile_relocate_probe): Likewise.
7762 (stap_probe_key_free): Likewise.
7763 (elf_probe_fns): New variable.
7764 (elf_sym_fns): Add `sym_probe_fns' value.
7765 (elf_sym_fns_lazy_psyms): Likewise.
7766 (elf_sym_fns_gdb_index): Likewise.
7767 (_initialize_elfread): Initialize objfile cache for static
7768 probes.
7769 * gdb_vecs.h (struct probe): New forward declaration.
7770 (probe_p): New VEC declaration.
7771 * gdbarch.c: Regenerate.
7772 * gdbarch.h: Regenerate.
7773 * gdbarch.sh (stap_integer_prefix): New variable.
7774 (stap_integer_suffix): Likewise.
7775 (stap_register_prefix): Likewise.
7776 (stap_register_suffix): Likewise.
7777 (stap_register_indirection_prefix): Likewise.
7778 (stap_register_indirection_suffix): Likewise.
7779 (stap_gdb_register_prefix): Likewise.
7780 (stap_gdb_register_suffix): Likewise.
7781 (stap_is_single_operand): New function.
7782 (stap_parse_special_token): Likewise.
7783 (struct stap_parse_info): Forward declaration.
7784 * i386-tdep.c: Including headers needed to perform the parsing
7785 of SystemTap probes' arguments.
7786 (i386_stap_is_single_operand): New function.
7787 (i386_stap_parse_special_token): Likewise.
7788 (i386_elf_init_abi): Initializing proper fields used by SystemTap
7789 probes' arguments parser.
7790 * i386-tdep.h (i386_stap_is_single_operand): New function.
7791 (i386_stap_parse_special_token): Likewise.
7792 * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
7793 * mipsread.c (ecoff_sym_fns): Likewise.
7794 * objfiles.c (objfile_relocate1): Support relocation for static
7795 probes.
7796 * parse.c (prefixify_expression): Remove static declaration.
7797 (initialize_expout): Likewise.
7798 (reallocate_expout): Likewise.
7799 * parser-defs.h (initialize_expout): Declare function.
7800 (reallocate_expout): Likewise.
7801 (prefixify_expression): Likewise.
7802 * ppc-linux-tdep.c: Including headers needed to perform the parsing
7803 of SystemTap probes' arguments.
7804 (ppc_stap_is_single_operand): New function.
7805 (ppc_stap_parse_special_token): Likewise.
7806 (ppc_linux_init_abi): Initializing proper fields used by SystemTap
7807 probes' arguments parser.
7808 * probe.c: New file, for generic statically defined probe support.
7809 * probe.h: Likewise.
7810 * s390-tdep.c: Including headers needed to perform the parsing of
7811 SystemTap probes' arguments.
7812 (s390_stap_is_single_operand): New function.
7813 (s390_gdbarch_init): Initializing proper fields used by SystemTap
7814 probes' arguments parser.
7815 * somread.c (som_sym_fns): Add `sym_probe_fns' value.
7816 * stap-probe.c: New file, for SystemTap probe support.
7817 * stap-probe.h: Likewise.
7818 * symfile.h: Include `gdb_vecs.h'.
7819 (struct sym_probe_fns): New struct.
7820 (struct sym_fns) <sym_probe_fns>: New field.
7821 * symtab.c (init_sal): Initialize `probe' field.
7822 * symtab.h (struct probe): Forward declaration.
7823 (struct symtab_and_line) <probe>: New field.
7824 * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
7825 locations.
7826 (stop_tracing): Likewise.
7827 * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
7828
7829 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
7830 Tom Tromey <tromey@redhat.com>
7831
7832 * ax-gdb.c (gen_expr): Clean up code to handle internal variables
7833 and to compile agent expressions.
7834 * infrun.c (siginfo_make_value): New argument `ignore'.
7835 (siginfo_funcs): New struct.
7836 (_initialize_infrun): New argument when calling
7837 `create_internalvar_type_lazy'.
7838 * thread.c (thread_id_make_value): New argument `ignore'.
7839 (thread_funcs): New struct.
7840 (_initialize_thread): New argument when calling
7841 `create_internalvar_type_lazy'.
7842 * tracepoint.c (sdata_make_value): New argument `ignore'.
7843 (sdata_funcs): New struct.
7844 (_initialize_tracepoint): New argument when calling
7845 `create_internalvar_type_lazy'.
7846 * value.c (make_value): New struct.
7847 (create_internalvar_type_lazy): New argument `data'.
7848 (compile_internalvar_to_ax): New function.
7849 (value_of_internalvar): Properly handling `make_value' case.
7850 (clear_internalvar): Likewise.
7851 (show_convenience): Adding `TRY_CATCH' block.
7852 * value.h (internalvar_make_value): Delete, replace by...
7853 (struct internalvar_funcs): ... this.
7854 (create_internalvar_type_lazy) <fun>: Delete argument.
7855 (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
7856 (compile_internalvar_to_ax): New function.
7857 * windows-tdep.c (tlb_make_value): New argument `ignore'.
7858 (tlb_funcs): New struct.
7859 (_initialize_windows_tdep): New argument when calling
7860 `create_internalvar_type_lazy'.
7861
7862 2012-04-27 Mark Wielaard <mjw@redhat.com>
7863
7864 * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
7865 see whether it is an address or a constant offset from DW_AT_low_pc.
7866 (dwarf2_record_block_ranges): Likewise.
7867 (read_partial_die): Likewise.
7868
7869 2012-04-26 Mark Wielaard <mjw@redhat.com>
7870
7871 * MAINTAINERS (Write After Approval): Add myself to the list.
7872
7873 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
7874
7875 * proc-utils.h (proc_prettyprint_signalset): New prototype.
7876 (proc_prettyprint_signal): Likewise.
7877 (proc_prettyprint_faultset): Likewise.
7878 (proc_prettyprint_fault): Likewise.
7879 (proc_prettyprint_actionset): Likewise.
7880 (proc_prettyprint_flags): Move to new proc-flags.c section.
7881 (proc_prettyfprint_flags): New prototype.
7882 * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
7883 (proc_syscall, proc_cursig): Likewise.
7884 (proc_set_kill_on_last_close): Likewise.
7885 (proc_unset_kill_on_last_close): Likewise.
7886 (proc_set_watchpoint): Make static.
7887 (proc_delete_dead_threads): Likewise.
7888 (procfs_set_watchpoint): Likewise.
7889 (_initialize_procfs): Add prototype.
7890 * proc-events.c: Include proc-utils.h.
7891 (init_syscall_table): Make static.
7892 * proc-api.c (_initialize_proc_api): Add prototype.
7893 * proc-flags.c: Include proc-utils.h.
7894
7895 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
7896
7897 * configure.ac: Add AC_ARG_PROGRAM.
7898 * configure: Regenerate.
7899
7900 2012-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
7901
7902 Fix DW_AT_lower_bound defaults for DWARF-4+.
7903 * dwarf2read.c (read_subrange_type): Remove initialization of low and
7904 high. New variable low_default_is_valid. Implement DWARF-4+
7905 DW_AT_lower_bound defaults. Print complaint for DW_AT_lower_bound with
7906 no default by the DWARF standard.
7907
7908 2012-04-26 Maciej W. Rozycki <macro@mips.com>
7909 Maciej W. Rozycki <macro@codesourcery.com>
7910
7911 * infrun.c (handle_inferior_event): Move the check for return
7912 trampolines ahead of the check for function trampolines.
7913 * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
7914 * mips-tdep.c (mips_str_mips16_call_stub): New variable.
7915 (mips_str_mips16_ret_stub): Likewise.
7916 (mips_str_call_fp_stub): Likewise.
7917 (mips_str_call_stub): Likewise.
7918 (mips_str_fn_stub): Likewise.
7919 (mips_str_pic): Likewise.
7920 (mips_in_frame_stub): New function.
7921 (mips_unwind_pc): Return the return address rather than the PC
7922 if the PC of an intermediate frame is inside a call thunk.
7923 (mips_is_stub_suffix): New function.
7924 (mips_is_stub_mode): Likewise.
7925 (mips_get_mips16_fn_stub_pc): Likewise.
7926 (mips_skip_mips16_trampoline_code): Update to handle all the
7927 currently generated stub types. Don't recurse into __fn_stub
7928 thunks. Remove heuristics to handle stubs beyond etext/_etext.
7929 Use cooked register accesses.
7930 (mips_in_return_stub): Reintroduce function.
7931 (mips_skip_trampoline_code): Traverse trampolines recursively.
7932 (mips_gdbarch_init): Handle MIPS16 return trampolines.
7933
7934 2012-04-26 Joel Brobecker <brobecker@adacore.com>
7935
7936 GDB 7.4.1 released.
7937
7938 2012-04-26 Jonathan Larmour <jifl@eCosCentric.com>
7939
7940 * arm-tdep.h (VFP_REGISTER_SIZE): Define.
7941 * features/arm-with-m-vfp-d16.xml: New file. Describes
7942 Cortex-M with VFPv4-sp-d16 FPU register layout.
7943 * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
7944 * features/arm-with-m-vfp-d16.c: New. Generated from above.
7945 * arm-tdep.c: Include arm-with-m-vfp-d16.c.
7946 (arm-register_g_packet_guesses): Add vfp-d16 guess.
7947 (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
7948
7949 2012-04-25 Doug Evans <dje@google.com>
7950
7951 * cli/cli-decode.c (print_doc_line): Use stream instead of
7952 current_uiout.
7953
7954 2012-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
7955
7956 * features/arm-with-iwmmxt.c: Regenerate.
7957 * features/arm-with-m-fpa-layout.c: Likewise.
7958 * features/arm-with-m.c: Likewise.
7959 * features/arm-with-neon.c: Likewise.
7960 * features/arm-with-vfpv2.c: Likewise.
7961 * features/arm-with-vfpv3.c: Likewise.
7962 * features/mips-dsp-linux.c: Likewise.
7963 * features/mips-linux.c: Likewise.
7964 * features/mips64-dsp-linux.c: Likewise.
7965 * features/mips64-linux.c: Likewise.
7966 * features/s390-linux32.c: Likewise.
7967 * features/s390-linux32v1.c: Likewise.
7968 * features/s390-linux32v2.c: Likewise.
7969 * features/s390-linux64.c: Likewise.
7970 * features/s390-linux64v1.c: Likewise.
7971 * features/s390-linux64v2.c: Likewise.
7972 * features/s390x-linux64.c: Likewise.
7973 * features/s390x-linux64v1.c: Likewise.
7974 * features/s390x-linux64v2.c: Likewise.
7975 * features/tic6x-c62x-linux.c: Likewise.
7976 * features/tic6x-c62x.c: Likewise.
7977 * features/tic6x-c64x-linux.c: Likewise.
7978 * features/tic6x-c64x.c: Likewise.
7979 * features/tic6x-c64xp-linux.c: Likewise.
7980 * features/tic6x-c64xp.c: Likewise.
7981 * target-descriptions.c: Only generate `field_type' and `type'
7982 variables when needed.
7983
7984 2012-04-25 Fredrik Hederstierna <fredrikh.hederstierna@securitas-direct.com>
7985
7986 * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
7987
7988 2012-04-25 Doug Evans <dje@google.com>
7989
7990 Initial pass at Go language support.
7991 * NEWS: Mention Go.
7992 * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
7993 go-valprint.c.
7994 (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
7995 (YYFILES): Add go-exp.c.
7996 (YYOBJ): Add go-exp.o.
7997 (local-maintainer-clean): Delete go-exp.c.
7998 * defs.h (enum language): Add language_go.
7999 * dwarf2read.c: #include "go-lang.h".
8000 (fixup_go_packaging): New function.
8001 (process_full_comp_unit): Call it when processing Go CUs.
8002 (dwarf2_physname): Add Go support.
8003 (read_file_scope): Handle missing language spec for GNU Go.
8004 (set_cu_language): Handle DW_LANG_Go.
8005 * go-exp.y: New file.
8006 * go-lang.h: New file.
8007 * go-lang.c: New file.
8008 * go-typeprint.c: New file.
8009 * go-valprint.c: New file.
8010 * symtab.c: #include "go-lang.h".
8011 (symbol_set_language): Handle language_go.
8012 (symbol_find_demangled_name, symbol_set_names): Ditto.
8013 (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
8014
8015 2012-04-24 Jim Meyering <meyering@redhat.com>
8016
8017 avoid a few strncpy-induced buffer overruns
8018 * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
8019 fname and psargs before trying to concatenate.
8020 * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
8021 "name" before applying strchr.
8022
8023 2012-04-25 Siva Chandra Reddy <sivachandra@google.com>
8024
8025 * CONTRIBUTE: Use unified diff instead of context diff when
8026 generating patches.
8027
8028 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
8029
8030 * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
8031 code. Handle JR.HB correctly.
8032
8033 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
8034
8035 * mips-tdep.c
8036 (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
8037 with the other MIPS16 helpers.
8038
8039 2012-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
8040
8041 * observer.sh: Conditionally declare `args', thus cleaning up
8042 unused instances of this variable.
8043
8044 2012-04-24 Yao Qi <yao@codesourcery.com>
8045
8046 Revert this patch to allow breakpoint always-inserted
8047 in record target.
8048 2011-12-05 Pedro Alves <pedro@codesourcery.com>
8049 * breakpoint.c: Include record.h.
8050 (breakpoints_always_inserted_mode): Return false when the record
8051 target is in use.
8052
8053 * breakpoint.c (iterate_over_bp_locations): New.
8054 * breakpoint.h: Declare.
8055 New typedef walk_bp_location_callback.
8056 * record.c (record_open): Call record_init_record_breakpoints.
8057 (record_sync_record_breakpoints): New.
8058 (record_init_record_breakpoints): New.
8059 * NEWS: Mention supporting breakpoint always-inserted mode in
8060 record target.
8061
8062 2012-04-24 Marc Khouzam <marc.khouzam@ericsson.com>
8063
8064 * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
8065 any thread.
8066
8067 2012-04-24 Yao Qi <yao@codesourcery.com>
8068
8069 * breakpoint.c (ep_is_catchpoint): Renamed to ...
8070 (is_catchpoint): ... it.
8071 (print_one_breakpoint_location): Caller update.
8072 * breakpoint.h: Update declaration.
8073
8074 2012-04-23 David S. Miller <davem@davemloft.net>
8075
8076 * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
8077
8078 2012-04-23 Tom Tromey <tromey@redhat.com>
8079
8080 * buildsym.c (add_free_pendings): Remove.
8081 * buildsym.h (add_free_pendings): Remove.
8082
8083 2012-04-23 Doug Evans <dje@google.com>
8084
8085 * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
8086 attr.u.unsnd instead of attr.u.addr.
8087 (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
8088 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
8089 DW_FORM_ref_udata.
8090 (dump_die_shallow): Update cases DW_FORM_ref_addr,
8091 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4. Add cases DW_FORM_ref8,
8092 DW_FORM_ref_udata.
8093 (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
8094
8095 2012-04-23 Maciej W. Rozycki <macro@codesourcery.com>
8096
8097 * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
8098 (mips_o32_return_value): Likewise.
8099 (mips_o64_return_value): Likewise.
8100
8101 2012-04-21 Paul Hilfinger <hilfinger@adacore.com>
8102
8103 * ada-lang.c (ada_evaluate_subexp): Add cases for
8104 TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
8105 their treatment in eval.c.
8106
8107 2012-04-21 David S. Miller <davem@davemloft.net>
8108
8109 * sparc-tdep.c (X_DISP10): Define.
8110 (sparc_analyze_control_transfer): Handle compare-and-branch.
8111
8112 2012-04-21 Jonathan Larmour <jifl@eCosCentric.com>
8113
8114 * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
8115 * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
8116
8117 2012-04-20 Nigel Stephens <nigel@mips.com>
8118 Maciej W. Rozycki <macro@codesourcery.com>
8119
8120 * mips-tdep.c (mips_float_register_p): New function.
8121 (mips_convert_register_float_case_p): Use mips_float_register_p.
8122 (mips_register_type): Likewise.
8123 (mips_print_register): Likewise.
8124 (print_gp_register_row): Likewise.
8125 (mips_print_registers_info): Likewise.
8126
8127 2012-04-20 Shun-Yen Lu <dark.asparagus@gmail.com>
8128
8129 * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
8130 of mips16 symbols.
8131
8132 2012-04-20 Andrew Pinski <apinski@cavium.com>
8133
8134 * MAINTAINERS (Write After Approval): Add myself to the list.
8135
8136 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
8137
8138 * MAINTAINERS: Update my e-mail address.
8139
8140 2012-04-20 Pedro Alves <palves@redhat.com>
8141
8142 * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
8143 $srcdir.
8144 * configure: Regenerate.
8145
8146 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
8147
8148 * cp-support.h: Include `gdb_vecs.h'. Delete `const_char_ptr' VEC
8149 declaration.
8150 * gdb_vecs.h: Declare `const_char_ptr' VEC.
8151
8152 2012-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8153
8154 Fix compilation compatibility with python-2.4
8155 * python/py-type.c (convert_field): Cast ADDRSTRING for
8156 PyObject_SetAttrString as non-const. New comment.
8157
8158 2012-04-19 Tom Tromey <tromey@redhat.com>
8159
8160 * top.c (quit_target): Use all_cleanups.
8161 * main.c (captured_command_loop): Use all_cleanups.
8162 * exceptions.c (throw_exception): Use all_cleanups.
8163
8164 2012-04-19 Pedro Alves <palves@redhat.com>
8165
8166 * Makefile.in (GNULIB_BUILDDIR): New.
8167 (LIBGNU, INCGNU, GNULIB_H): Adjust.
8168 (SUBDIRS): Add $(GNULIB_BUILDDIR).
8169 (CLEANDIRS). Remove gnulib/import.
8170 (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
8171 (all-lib): Ditto.
8172 (distclean): Remove the $(GNULIB_BUILDDIR) directory.
8173 (gnulib/import/Makefile): Replace gnulib/import with
8174 $(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
8175 (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
8176 (aclocal_m4_deps): Remove the gnulib dependencies. Add
8177 acx_configure_dir.m4.
8178 * acinclude.m4: Include acx_configure_dir.m4.
8179 * acx_configure_dir.m4: New file.
8180 * aclocal.m4: Regenerate.
8181 * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
8182 calls. Configure gnulib using ACX_CONFIGURE_DIR.
8183 (GNULIB): New variable.
8184 (GNULIB_STDINT_H): Adjust.
8185 (AC_OUTPUT): Don't output gnulib/Makefile.
8186 * gdb/defs.h: Include build-gnulib/config.h.
8187 * aclocal.m4: Regenerate.
8188 * config.in: Regenerate.
8189 * configure: Regenerate.
8190
8191 * gnulib/Makefile.in: New file.
8192 * gnulib/configure.ac: New file.
8193 * gnulib/aclocal.m4: New file.
8194 * gnulib/config.in: New file.
8195 * gnulib/configure: New file.
8196 * gnulib/: Re-run gnulib-tool to adjust.
8197
8198 2012-04-19 Doug Evans <dje@google.com>
8199
8200 * cleanups.h (struct cleanup): Move to cleanups.c.
8201 (make_cleanup_dtor_ftype): New typedef.
8202 (make_cleanup_dtor): Use it.
8203 (ALL_CLEANUPS): Replace with ...
8204 (all_cleanups): ... this. Declare. All uses updated.
8205 * cleanups.c: #include "gdb_assert.h".
8206 (sentinel_cleanup): New static global.
8207 (SENTINEL_CLEANUP): Define.
8208 (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
8209 (make_my_cleanup2): Assert result is non-NULL.
8210 (all_cleanups): New function.
8211 (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
8212 of NULL.
8213
8214 2012-04-19 Pedro Alves <palves@redhat.com>
8215
8216 * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
8217 Adjust paths to gnulib imported files.
8218
8219 2012-04-19 Pedro Alves <palves@redhat.com>
8220
8221 * gnulib/: Move whole directory ...
8222 * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
8223 * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
8224 (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
8225 (aclocal_m4_deps): Adjust.
8226 * aclocal.m4: Regenerate.
8227 * configure: Regenerate.
8228 * configure.ac: Adjust AC_OUTPUT output.
8229
8230 2012-04-19 Yao Qi <yao@codesourcery.com>
8231
8232 * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
8233 (vec.o): New rule.
8234 * vec.c: Move it ...
8235 * common/vec.c: ... here.
8236 * vec.h: Move it ...
8237 * common/vec.h: ... here.
8238
8239 2012-04-19 Yao Qi <yao@codesourcery.com>
8240
8241 * gdb-code-style.el: New.
8242
8243 2012-04-18 Pedro Alves <palves@redhat.com>
8244
8245 Update gnulib from latest git.
8246 (639ea5ae15e39fe48d43e04864b2997301e4b969)
8247
8248 * gnulib/Makefile.am: Update.
8249 * gnulib/dummy.c: Update.
8250 * gnulib/extra/arg-nonnull.h: Update.
8251 * gnulib/extra/c++defs.h: Update.
8252 * gnulib/extra/update-copyright: Update.
8253 * gnulib/extra/warn-on-use.h: Update.
8254 * gnulib/inttypes.in.h: Update.
8255 * gnulib/m4/00gnulib.m4: Update.
8256 * gnulib/m4/extensions.m4: Update.
8257 * gnulib/m4/gnulib-cache.m4: Update.
8258 * gnulib/m4/gnulib-common.m4: Update.
8259 * gnulib/m4/gnulib-comp.m4: Update.
8260 * gnulib/m4/gnulib-tool.m4: Update.
8261 * gnulib/m4/include_next.m4: Update.
8262 * gnulib/m4/inttypes-pri.m4: Update.
8263 * gnulib/m4/inttypes.m4: Update.
8264 * gnulib/m4/longlong.m4: Update.
8265 * gnulib/m4/memchr.m4: Update.
8266 * gnulib/m4/memmem.m4: Update.
8267 * gnulib/m4/mmap-anon.m4: Update.
8268 * gnulib/m4/multiarch.m4: Update.
8269 * gnulib/m4/onceonly.m4: Update.
8270 * gnulib/m4/stddef_h.m4: Update.
8271 * gnulib/m4/stdint.m4: Update.
8272 * gnulib/m4/string_h.m4: Update.
8273 * gnulib/m4/warn-on-use.m4: Update.
8274 * gnulib/m4/wchar_h.m4: Update.
8275 * gnulib/m4/wchar_t.m4: Update.
8276 * gnulib/m4/wint_t.m4: Update.
8277 * gnulib/memchr.c: Update.
8278 * gnulib/memmem.c: Update.
8279 * gnulib/stddef.in.h: Update.
8280 * gnulib/stdint.in.h: Update.
8281 * gnulib/str-two-way.h: Update.
8282 * gnulib/string.in.h: Update.
8283 * gnulib/wchar.in.h: Update.
8284
8285 * gnulib/extra/arg-nonnull.h: Delete.
8286 * gnulib/extra/c++defs.h: Delete.
8287 * gnulib/extra/warn-on-use.h: Delete.
8288 * gnulib/m4/wchar_h.m4: Delete.
8289 * gnulib/m4/wint_t.m4: Delete.
8290 * gnulib/wchar.in.h: Delete.
8291
8292 * gnulib/extra/snippets/arg-nonnull.h: New.
8293 * gnulib/extra/snippets/c++defs.h: New.
8294 * gnulib/extra/snippets/warn-on-use.h: New.
8295
8296 * aclocal.m4: Regenerate.
8297 * config.in: Regenerate.
8298 * configure: Regenerate.
8299 * gnulib/Makefile.in: Regenerate.
8300
8301 2012-04-18 Pedro Alves <palves@redhat.com>
8302
8303 Reimport the update-copyright module from gnulib
8304 (250b80067c1e1d8faa0c42fb572f721975b929c5).
8305
8306 * configure: Regenerate.
8307 * gnulib/Makefile.am: Update.
8308 * gnulib/Makefile.in: Regenerate.
8309 * gnulib/extra/update-copyright: Update.
8310 * gnulib/m4/gnulib-cache.m4: Update.
8311 * gnulib/m4/gnulib-comp.m4: Update.
8312
8313 2012-04-18 Tristan Gingold <gingold@adacore.com>
8314
8315 * configure.ac (aix): Put -lpthread into libs.
8316 * configure: Regenerate.
8317
8318 2012-04-18 Tom Tromey <tromey@redhat.com>
8319
8320 * linespec.c (convert_linespec_to_sals): Don't use
8321 SYMBOL_OBJ_SECTION.
8322 (compare_msymbols): Arguments are minsym_and_objfile, not
8323 minimal_symbol*. Don't use SYMBOL_OBJ_SECTION.
8324
8325 2012-04-18 Pedro Alves <palves@redhat.com>
8326
8327 Revert gnulib/ part of:
8328 2011-01-01 Joel Brobecker <brobecker@adacore.com>
8329 Copyright year update in most files (performed by copyright.sh).
8330
8331 2012-04-18 Jan Kratochvil <jan.kratochvil@redhat.com>
8332
8333 Fix 64-bit constants on 32-bit hosts.
8334 * dwarf2read.c (read_unsigned_leb128): Change declaration return type
8335 from unsigned long to ULONGEST.
8336 (read_signed_leb128): Change declaration return type from long to
8337 LONGEST.
8338 (dwarf2_const_value_attr): Change declaration parameter value from long
8339 to LONGEST.
8340 (dwarf2_compute_name): Change variable value from long to LONGEST.
8341 (read_unsigned_leb128): Change return type, variable result and some
8342 casts from unsigned long to ULONGEST.
8343 (read_signed_leb128): Change return type, variable result and some
8344 casts from long to LONGEST.
8345 (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
8346 value from long to LONGEST.
8347 (dwarf2_const_value): Change variable value from long to LONGEST.
8348 * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
8349 plongest and hex_string.
8350 * symtab.h (struct general_symbol_info): Change ivalue from long to
8351 LONGEST, remove the comment.
8352 * tracepoint.c (validate_actionline, collect_symbol, scope_info):
8353 Change SYMBOL_VALUE format strings to use plongest and hex_string.
8354
8355 2012-04-18 Siddhesh Poyarekar <siddhesh@redhat.com>
8356
8357 PR symtab/7259:
8358 * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
8359 * ada-lang.c (ada_discrete_type_high_bound)
8360 (ada_discrete_type_low_bound): Fix function comment. Use
8361 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8362 (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
8363 (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8364 * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
8365 Use TYPE_FIELD_ENUMVAL.
8366 * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
8367 (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8368 * c-typeprint.c (c_type_print_base): Move variable lastval to inner
8369 block, change it to LONGEST. Use TYPE_FIELD_ENUMVAL for
8370 TYPE_CODE_ENUM.
8371 * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
8372 * dwarf2read.c (process_enumeration_scope): Likewise.
8373 * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
8374 field.bitpos.
8375 (class StructMainTypePrettyPrinter): Support also
8376 FIELD_LOC_KIND_ENUMVAL.
8377 * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
8378 TYPE_CODE_ENUM.
8379 (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8380 (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
8381 * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
8382 (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment. New
8383 field enumval.
8384 (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
8385 accommodate enumval.
8386 (struct call_site): Adjust loc_kind to accommodate enumval.
8387 (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
8388 (TYPE_FIELD_ENUMVAL): New macros.
8389 * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
8390 * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
8391 TYPE_CODE_ENUM.
8392 * p-typeprint.c (pascal_type_print_base): Likewise.
8393 * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
8394 enumval.
8395 * python/lib/gdb/types.py (make_enum_dict): Likewise.
8396 * python/py-type.c (convert_field): New variable addrstring. Use
8397 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8398 (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
8399 * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
8400 * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
8401 TYPE_CODE_ENUM.
8402 * valprint.c (generic_val_print): Likewise.
8403
8404 2012-04-17 Doug Evans <dje@google.com>
8405
8406 * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
8407
8408 * dwarf2read.c: Whitespace fixes.
8409 (lookup_signatured_type): Tweak comment.
8410 (get_die_type_at_offset): Fix comment.
8411
8412 2012-04-17 Joel Brobecker <brobecker@adacore.com>
8413
8414 * xcoffread.c (xcoff_secnum_to_sections): New function.
8415 (secnum_to_section, secnum_to_bfd_section): Reimplement
8416 using xcoff_secnum_to_sections. Rename "secnum" parameter
8417 into "n_scnum".
8418 (RECORD_MINIMAL_SYMBOL): Delete.
8419 (record_minimal_symbol): New function.
8420 (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
8421 by call to record_minimal_symbol and set misc_func_recorded
8422 to 1. Set last_csect_sec to the XCOFF section index instead
8423 of GDB's section_offset index. Update calls to
8424 prim_record_minimal_symbol_and_info to pass the BFD section
8425 as well.
8426
8427 2012-04-17 Joel Brobecker <brobecker@adacore.com>
8428
8429 * xcoffread.c (read_xcoff_symtab): Delete variables
8430 last_csect_val and last_csect_sec and associated code.
8431
8432 2012-04-17 Doug Evans <dje@google.com>
8433
8434 * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
8435 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8436 * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
8437 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
8438
8439 * cleanups.h: New file.
8440 * cleanups.c: New file.
8441 * Makefile.in (SFILES): Add cleanups.c.
8442 (HFILES_NO_SRCDIR): Add cleanups.h.
8443 (COMMON_OBS): Add cleanups.o.
8444 * defs.h (struct cleanup): Moved to cleanups.h.
8445 (do_cleanups,do_final_cleanups): Ditto.
8446 (discard_cleanups,discard_final_cleanups): Ditto
8447 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8448 (save_cleanups,save_final_cleanups): Ditto.
8449 (restore_cleanups,restore_final_cleanups): Ditto.
8450 (null_cleanup): Ditto.
8451 (make_my_cleanup,make_my_cleanup2): Ditto.
8452 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8453 * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
8454 (do_cleanups,do_final_cleanups): Ditto.
8455 (discard_cleanups,discard_final_cleanups): Ditto
8456 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8457 (save_cleanups,save_final_cleanups): Ditto.
8458 (restore_cleanups,restore_final_cleanups): Ditto.
8459 (null_cleanup): Ditto.
8460 (make_my_cleanup,make_my_cleanup2): Ditto.
8461 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8462
8463 * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
8464 make_my_cleanup.
8465 (make_cleanup_dyn_string_delete): Ditto.
8466 (make_cleanup_ui_file_delete): Ditto.
8467 (make_cleanup_ui_out_redirect_pop): Ditto.
8468 (make_cleanup_free_section_addr_info): Ditto.
8469 (make_cleanup_restore_integer): Ditto.
8470 (make_cleanup_unpush_target): Ditto.
8471 (make_cleanup_value_free_to_mark): Ditto.
8472 (make_cleanup_value_free): Ditto.
8473 (make_cleanup_free_so): Ditto.
8474
8475 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8476
8477 New option "set debug auto-load".
8478 * NEWS: New commands "set debug auto-load" and "show debug auto-load".
8479 * auto-load.c (debug_auto_load, show_debug_auto_load: New.
8480 (auto_load_safe_path_vec_update)
8481 (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
8482 if DEBUG_AUTO_LOAD.
8483 (file_is_auto_load_safe): New parameters debug_fmt and ....
8484 Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
8485 (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
8486 caller by explanatory string.
8487 (_initialize_auto_load): Register "set debug auto-load".
8488 * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
8489 and ....
8490 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8491 (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
8492 by explanatory string.
8493 * main.c (captured_main): Likewise.
8494 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
8495 (source_section_scripts): Likewise.
8496
8497 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8498
8499 New option "set auto-load safe-path".
8500 * NEWS: New commands "set auto-load safe-path"
8501 and "show auto-load safe-path".
8502 * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
8503 (auto_load_safe_path, auto_load_safe_path_vec)
8504 (auto_load_safe_path_vec_update, set_auto_load_safe_path)
8505 (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
8506 (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
8507 (source_gdb_script_for_objfile): New variable is_safe. Call
8508 file_is_auto_load_safe. Return if it is not.
8509 (struct loaded_script): New field loaded.
8510 (maybe_add_script): Add parameter loaded. Initialize SLOT with it.
8511 (print_script): Use LOADED indicator instead of FULL_PATH. Change
8512 output "Missing" to "No".
8513 (_initialize_auto_load): New variable cmd. Initialize
8514 auto_load_safe_path. Register "set auto-load safe-path",
8515 "show auto-load safe-path" and "add-auto-load-safe-path".
8516 * auto-load.h (maybe_add_script): Add parameter loaded.
8517 (file_is_auto_load_safe): New declaration.
8518 * config.in: Regenerate.
8519 * configure: Regenerate.
8520 * configure.ac: New parameters --with-auto-load-safe-path
8521 and --without-auto-load-safe-path.
8522 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8523 (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
8524 * main.c (captured_main): Check file_is_auto_load_safe for
8525 LOCAL_GDBINIT.
8526 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
8527 variable is_safe. Call file_is_auto_load_safe. Return if it is not.
8528 (source_section_scripts): Call file_is_auto_load_safe. Return if it is
8529 not.
8530
8531 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8532
8533 auto-load: Implementation.
8534 * NEWS: New descriptions for "info auto-load",
8535 "info auto-load gdb-scripts", "info auto-load python-scripts",
8536 "info auto-load local-gdbinit" and "info auto-load libthread-db".
8537 Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
8538 and "show auto-load-scripts". New description for "set auto-load",
8539 "show auto-load", "set auto-load gdb-scripts",
8540 "show auto-load gdb-scripts", "set auto-load python-scripts",
8541 "show auto-load python-scripts", "set auto-load local-gdbinit",
8542 "show auto-load local-gdbinit", "set auto-load libthread-db" and
8543 "show auto-load libthread-db".
8544 * auto-load.c: Remove include python/python-internal.h. Add includes
8545 exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
8546 cli/cli-setshow.h.
8547 (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
8548 (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
8549 (gdbpy_global_auto_load): Rename to ...
8550 (global_auto_load): ... here.
8551 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8552 (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
8553 (script_language_gdb, source_gdb_script_for_objfile): New.
8554 (struct loaded_script): New field language.
8555 (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
8556 LANGUAGE.
8557 (maybe_add_script): Add parameter language. Drop redundant
8558 entry.full_path initialization. Initialize entry.language and
8559 (*slot)->language.
8560 (auto_load_objfile_script): Change parameter suffix to language.
8561 Remove the call of maybe_add_script.
8562 Call language->source_script_for_objfile.
8563 (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
8564 New.
8565 (collect_matching_scripts): Adjust it for
8566 struct collect_matching_scripts_data.
8567 (auto_load_info_scripts_pattern_nl): New variable.
8568 (info_auto_load_scripts): Rename to ...
8569 (auto_load_info_scripts): ... here, add parameter language. Adjust it
8570 for struct collect_matching_scripts_data.
8571 (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
8572 (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
8573 (auto_load_show_cmdlist_get, info_auto_load_cmd)
8574 (auto_load_info_cmdlist_get): New.
8575 (_initialize_auto_load): Move add_info of "auto-load-scripts" to
8576 python/py-auto-load.c. New installment for "set auto-load gdb-scripts",
8577 "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
8578 "info auto-load local-gdbinit".
8579 * auto-load.h (struct script_language): New.
8580 (gdbpy_global_auto_load): Rename to ...
8581 (global_auto_load): ... here.
8582 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8583 (auto_load_local_gdbinit_loaded): New declarations.
8584 (maybe_add_script): New parameter language.
8585 (auto_load_objfile_script): Change parameter suffix to language.
8586 (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
8587 (auto_load_info_scripts, auto_load_set_cmdlist_get)
8588 (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
8589 declarations.
8590 * linux-thread-db.c: Include auto-load.h and ctype.h.
8591 (auto_load_thread_db, show_auto_load_thread_db): New.
8592 (struct thread_db_info): New field filename.
8593 (delete_thread_db_info): Call xfree for FILENAME.
8594 (try_thread_db_load): Initialize FILENAME.
8595 (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
8596 if !AUTO_LOAD_THREAD_DB.
8597 (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
8598 (_initialize_thread_db): Install auto_load_thread_db
8599 as "set auto-load libthread-db" and install info_auto_load_libthread_db
8600 as "info auto-load libthread-db".
8601 * main.c (captured_main): Rename gdbpy_global_auto_load to
8602 global_auto_load. Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
8603 AUTO_LOAD_LOCAL_GDBINIT_LOADED.
8604 (print_gdb_help): Extend the help for 'local init file'.
8605 * python/py-auto-load.c: Remove a comment about gdb scripts extension.
8606 (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
8607 (auto_load_scripts): Rename to ...
8608 (auto_load_python_scripts): ... here, update the comment.
8609 (gdbpy_load_auto_script_for_objfile): New declaration.
8610 (show_auto_load_python_scripts, script_language_python)
8611 (gdbpy_load_auto_script_for_objfile): New.
8612 (source_section_scripts): Refactor the code.
8613 (load_auto_scripts_for_objfile): Rename to ...
8614 (gdbpy_load_auto_scripts_for_objfile): ... here, update the
8615 auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
8616 (info_auto_load_python_scripts): New.
8617 (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
8618 Rename "set auto-load-scripts" to "set auto-load python-scripts".
8619 Register "set auto-load-scripts" as its deprecated alias. Register
8620 "info auto-load python-scripts". Register "info auto-load-scripts" as
8621 its deprecated alias.
8622 (load_auto_scripts_for_objfile): Rename to ...
8623 (gdbpy_load_auto_scripts_for_objfile): ... here.
8624 * python/python.h (load_auto_scripts_for_objfile): Rename to ...
8625 (gdbpy_load_auto_scripts_for_objfile): ... here.
8626
8627 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8628
8629 auto-load: Move files.
8630 * Makefile.in (SFILES): Add auto-load.c.
8631 (HFILES_NO_SRCDIR): Add auto-load.h.
8632 (COMMON_OBS): Add auto-load.o.
8633 (distclean): Change .gdbinit for gdb-gdb.gdb.
8634 * auto-load.c: New file, with parts from python/py-auto-load.c.
8635 * auto-load.h: New file, with parts from python/python.h.
8636 * configure: Regenerate.
8637 * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
8638 * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
8639 * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
8640 * main.c: Include auto-load.h.
8641 * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
8642 command.h, observer.h and progspace.h to auto-load.c. Add include
8643 auto-load.h.
8644 (gdbpy_global_auto_load, struct auto_load_pspace_info)
8645 (struct loaded_script, auto_load_pspace_data)
8646 (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
8647 (hash_loaded_script_entry, eq_loaded_script_entry)
8648 (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
8649 (maybe_add_script): Move to auto-load.c.
8650 (source_section_scripts): Change maybe_add_script parameters passing,
8651 use script_not_found_warning_print.
8652 (clear_section_scripts, auto_load_objfile_script)
8653 (auto_load_new_objfile, loaded_script_ptr)
8654 (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
8655 (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
8656 (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
8657 auto_load_new_objfile and info_auto_load_scripts initizations to
8658 auto-load.c.
8659 * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
8660
8661 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8662
8663 Code cleanup.
8664 * charset.c (find_charset_names): Remove variables ix and elt.
8665 Use free_char_ptr_vec.
8666 * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
8667 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
8668 debugdir_end. New variable debugdir_len.
8669 * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
8670 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
8671 declarations.
8672 * progspace.c (clear_program_space_solib_cache): Remove variables ix
8673 and elt. Use free_char_ptr_vec.
8674 * source.c (add_path): Remove variables argv, arg and argv_index.
8675 New variables dir_vec, back_to, ix and name.
8676 Use dirnames_to_char_ptr_vec_append. Use freeargv instead of
8677 make_cleanup_freeargv. Remove variable separator. Simplify the code
8678 no longer expecting DIRNAME_SEPARATOR.
8679 (openp): Remove variable p, p1 and len. New variables dir_vec,
8680 back_to, ix and dir. Use dirnames_to_char_ptr_vec. Simplify the code
8681 no longer expecting DIRNAME_SEPARATOR.
8682 * symfile.c (find_separate_debug_file): New variables debugdir_vec,
8683 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
8684 debugdir_end.
8685 * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
8686 (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
8687 (dirnames_to_char_ptr_vec): New functions.
8688
8689 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8690
8691 Code cleanup.
8692 * source.c (add_path): Remove always true conditional 'p == 0' and
8693 unindent its code block.
8694
8695 2012-04-17 Pedro Alves <palves@redhat.com>
8696
8697 * gdbtypes.h (FIELD_BITPOS): Rename to ...
8698 (FIELD_BITPOS_LVAL): ... this.
8699 (FIELD_BITPOS): New.
8700 (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
8701 * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
8702 * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
8703 SET_FIELD_BITPOS.
8704 * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
8705 SET_FIELD_BITPOS.
8706 * stabsread.c (read_cpp_abbrev, read_one_struct_field)
8707 (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
8708 * target-descriptions.c (tdesc_gdb_type): Adjust to use
8709 SET_FIELD_BITPOS.
8710
8711 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8712
8713 Do not rely on FIELD_LOC_KIND_BITPOS being zero.
8714 * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
8715 TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
8716 * gdbtypes.c (append_flags_type_flag): Likewise, twice.
8717 * jv-lang.c (java_link_class_type): Likewise, once.
8718 * stabsread.c (read_enum_type): Likewise.
8719
8720 2012-04-16 Yao Qi <yao@codesourcery.com>
8721
8722 * common/agent.c (agent_run_command): Add one more parameter `len'.
8723 Update callers.
8724 * common/agent.h: Update declaration.
8725 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
8726 Update.
8727 (linux_child_static_tracepoint_markers_by_strid): Ditto.
8728
8729 2012-04-14 Anton Gorenkov <xgsa@yandex.ru>
8730
8731 PR mi/13393
8732 * value.c (value_actual_type): New function.
8733 * value.h (value_actual_type): New declaration.
8734 * varobj.c (update_type_if_necessary): New function.
8735 (varobj_create): Call value_actual_type instead of
8736 value_type.
8737 (install_dynamic_child): distinct changed and type changed MI variable
8738 objects.
8739 (update_dynamic_varobj_children): Updated for install_dynamic_child
8740 change. All callers updated.
8741 (varobj_update): Support for MI variable object type change if
8742 the value changed and RTTI is used to determine the type.
8743 (create_child_with_value): Call value_actual_type instead of
8744 value_type.
8745 (adjust_value_for_child_access): Extended with a new parameter which
8746 specify whether the given value should be casted to enclosing type.
8747 All callers updated.
8748
8749 2012-04-14 Yao Qi <yao@codesourcery.com>
8750
8751 Import gnulib module inttypes from git
8752 (250b80067c1e1d8faa0c42fb572f721975b929c5)
8753 * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
8754 (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
8755 gnulib/m4/inttypes-pri.m4
8756 * aclocal.m4, config.in, configure: Regenerated.
8757 * gnulib/Makefile.am: Update.
8758 * gnulib/Makefile.in: Update.
8759 * gnulib/m4/gnulib-cache.m4: Update.
8760 * gnulib/m4/gnulib-comp.m4: Update.
8761 * gnulib/inttypes.in.h: New.
8762 * gnulib/m4/inttypes-pri.m4: New.
8763 * gnulib/m4/inttypes.m4: New.
8764
8765 2012-04-13 Luis Machado <lgustavo@codesourcery.com>
8766
8767 * infrun.c (resume): Update PC address to the real PC after
8768 preparing to do displaced stepping.
8769
8770 2012-04-12 Doug Evans <dje@google.com>
8771
8772 * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
8773 All callers updated.
8774
8775 2012-04-12 Mark Kettenis <kettenis@gnu.org>
8776
8777 * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
8778
8779 2012-04-12 Doug Evans <dje@google.com>
8780
8781 * dwarf2read.c (create_all_type_units): Renamed from
8782 create_debug_types_hash_table. All callers updated.
8783
8784 * dwarf2read.c (create_signatured_type_table_from_index): Rename
8785 local type_sig to sig_type, type_offset to type_offset_in_tu.
8786 (hash_signatured_type): Renamed from hash_type_signature,
8787 all callers updated.
8788 (eq_signatured_type): Renamed from eq_type_signature,
8789 all callers updated.
8790 (create_debug_types_hash_table): Rename local type_sig to sig_type.
8791 (process_enumeration_scope): Ditto.
8792 (lookup_signatured_type_at_offset): Ditto.
8793 (load_full_type_unit, read_signatured_type): Ditto.
8794
8795 2012-04-12 Yao Qi <yao@codesourcery.com>
8796
8797 * remote.c (async_remote_interrupt): Correct function name in
8798 debug message.
8799 (async_remote_interrupt_twice): Ditto.
8800
8801 2012-04-11 Yuanhui Zhang <asmwarrior@gmail.com>
8802
8803 * source.c (find_and_open_source): Consistently pass resulting
8804 full path through xfullpath.
8805
8806 2012-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8807
8808 Provide more specific displaced-stepping memory error message.
8809 * infrun.c (displaced_step_prepare): New variable status. Call
8810 target_read_memory instead of read_memory, provide more specific
8811 error message.
8812
8813 2012-04-11 Tristan Gingold <gingold@adacore.com>
8814
8815 PR gdb/13901
8816 * darwin-nat.c (darwin_execvp): Revert previous patch.
8817
8818 2012-04-11 Tristan Gingold <gingold@adacore.com>
8819
8820 PR gdb/13901
8821 * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
8822 in case of change.
8823
8824 2012-04-11 Tristan Gingold <gingold@adacore.com>
8825
8826 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
8827 warning.
8828
8829 2012-04-11 Siva Chandra Reddy <sivachandra@google.com>
8830
8831 New command 'explore' which helps explore values and types in
8832 scope.
8833 * NEWS: Add an entry about the new 'explore' command.
8834 * data-directory/Makefile.in: Add gdb/command/explore.py
8835 * python/lib/gdb/command/explore.py: Implemention of the 'explore'
8836 command using the GDB Python API.
8837
8838 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
8839
8840 * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
8841 extension in jump target calculation.
8842
8843 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
8844
8845 * mips-tdep.c (mips32_next_pc): Handle JALX.
8846
8847 2012-04-10 Yao Qi <yao@codesourcery.com>
8848
8849 * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
8850
8851 2012-04-10 Yao Qi <yao@codesourcery.com>
8852
8853 * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
8854 and gnulib/m4/gnulib-tool.m4.
8855
8856 2012-04-10 Doug Evans <dje@google.com>
8857
8858 * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
8859 (load_partial_dies): Clarify comment.
8860 (find_partial_die): Support rereading type units.
8861 Clarify CU handling, if we know offset is in CU, don't search for the
8862 containing CU. Add comment regarding memory waste.
8863
8864 2012-04-10 H.J. Lu <hongjiu.lu@intel.com>
8865
8866 * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
8867 i386/x32-avx and i386/x32-avx-linux.
8868 (i386/x32-expedite): New.
8869 (i386/x32-linux-expedite): Likewise.
8870 (i386/x32-avx-expedite): Likewise.
8871 (i386/x32-avx-linux-expedite): Likewise.
8872 ($(outdir)/i386/x32.dat): Likewise.
8873 ($(outdir)/i386/x32-linux.dat): Likewise.
8874 ($(outdir)/i386/x32-avx.dat): Likewise.
8875 ($(outdir)/i386/x32-avx-linux.dat): Likewise.
8876
8877 * features/i386/x32-avx-linux.xml: New file.
8878 * features/i386/x32-avx.xml: Likewise.
8879 * features/i386/x32-core.xml: Likewise.
8880 * features/i386/x32-linux.xml: Likewise.
8881 * features/i386/x32.xml: Likewise.
8882
8883 * features/i386/x32-avx-linux.c: New. Generated.
8884 * features/i386/x32-avx.c: Likewise.
8885 * features/i386/x32-linux.c: Likewise.
8886 * features/i386/x32.c: Likewise.
8887 * regformats/i386/x32-avx-linux.dat: Likewise.
8888 * regformats/i386/x32-avx.dat: Likewise.
8889 * regformats/i386/x32-linux.dat: Likewise.
8890 * regformats/i386/x32.dat: Likewise.
8891
8892 2012-04-10 Tristan Gingold <gingold@adacore.com>
8893
8894 * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
8895 code to kill the inferior.
8896
8897 2012-04-09 Mark Kettenis <kettenis@gnu.org>
8898
8899 * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8900 defines.
8901 * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8902 defines.
8903 * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
8904 (yyvsp): New defines.
8905 * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8906 defines.
8907 * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8908 defines.
8909 * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8910 defines.
8911 * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8912 defines.
8913 * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8914 defines.
8915
8916 2012-04-09 Mark Kettenis <kettenis@gnu.org>
8917
8918 * sparc64-tdep.c (sparc64_store_arguments)
8919 (sparc64_store_arguments): Fix coding style.
8920
8921 2012-04-07 Mark Kettenis <kettenis@gnu.org>
8922
8923 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
8924 complex floats, adjust some related comments and tighten a related
8925 assertion.
8926 (sparc64_extract_return_value): Handle complex floats.
8927
8928 2012-04-07 Doug Evans <dje@google.com>
8929
8930 * dwarf2read.c (load_partial_dies): Change condition to assert.
8931
8932 2012-04-06 Doug Evans <dje@google.com>
8933
8934 * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
8935 "mov %rsp,%rbp".
8936
8937 2012-04-05 Kevin Buettner <kevinb@redhat.com>
8938
8939 * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
8940 fencepost error.
8941 (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
8942 (v850_gdbarch_init): Set `num_regs' as appropriate for the
8943 architecture.
8944
8945 2012-04-05 Keith Seitz <keiths@redhat.com>
8946
8947 * linespec.c (decode_compound): Remove.
8948 (enum offset_relative_sign): New enum.
8949 (struct line_offset): New struct.
8950 (struct linespec): New struct.
8951 (struct linespec_state): Move file_symtabs,
8952 user_filename, and user_function into struct linespec.
8953 Make result an anonymous struct holding vectors of
8954 symbolp and minsym_and_objfile_d.
8955 Add language member.
8956 (enum ls_token_type): New enum.
8957 (linespec_keywords): New array.
8958 (struct ls_token): New struct.
8959 (struct ls_parser): New struct.
8960 (linespec_lexer_lex_number): New function.
8961 (linespec_lexer_lex_keyword): New function.
8962 (is_ada_operator): New function.
8963 (skip_quote_char): New function.
8964 (copy_token_string): New function.
8965 (is_closing_quote_enclosed): New function.
8966 (find_parameter_list_end): New function.
8967 (linespec_lexer_lex_string): New function.
8968 (linespec_lexer_lex_one): New function.
8969 (linespec_lexer_consume_token): New function.
8970 (linespec_lexer_peek_token): New function.
8971 (cplusplus_error): Remove unused function.
8972 (find_methods): Update comment.
8973 (find_toplevel_char): Return const.
8974 (is_objc_method_format): Remove unused function.
8975 (find_toplevel_string): New function.
8976 (is_linespec_boundary): Remove.
8977 (symbol_not_found_error): New function.
8978 (find_method_overload_end): Remove function.
8979 (unexpected_linespec_error): New function.
8980 (keep_name_info): Remove.
8981 (linespec_parse_line_offset): New function.
8982 (linespec_parse_basic): New function.
8983 (canonicalize_linespec): New function.
8984 (decode_line_internal): Remove.
8985 (create_sals_line_offset): New function adapted from
8986 decode_all_digits.
8987 (convert_linespec_to_sals): New function.
8988 (parse_linespec): New function.
8989 (linespec_parser_new): New function.
8990 (linespec_state_destructor): Change parameter type to
8991 struct linespec_state *.
8992 Add language parameter.
8993 Remove freeing of moved members.
8994 (linespec_parser_delete): New function.
8995 (decode_line_full): Use parse_linespec and linespec_parser_new.
8996 (decode_line_1): Likewise.
8997 (decode_indirect): Rename to ...
8998 (linespec_expression_to_pc): ... this and rewrite
8999 to simply find CORE_ADDR, storing this result for later
9000 conversion to SALs.
9001 (locate_first_half): Remove.
9002 (deocde_objc): Add parameter LS.
9003 Initialize new struct collect_info members.
9004 Handle minimal symbols, too.
9005 (decode_compound): Delete.
9006 (lookup_prefix_sym): Rewrite.
9007 (compare_msymbols): New function.
9008 (find_method): Rewrite.
9009 Do not call cplusplus_error.
9010 (symtabs_from_filename): Rewrite.
9011 (collect_function_symbols): Delete.
9012 (find_function_symbols): Rewrite without ARGPTR-style
9013 processing.
9014 (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
9015 (decode_dollar): Adapted and renamed to ...
9016 (linespec_parse_variable): ... this.
9017 (find_linespec_symbols): New function.
9018 (decode_label): Adapted and renamed to ...
9019 (find_label_symbols): ... this.
9020 (decode_digits_list_mode): Add and use LS argument.
9021 (decode_digits_ordinary): Likewise.
9022 (collect_symbols): Do not collect SALs, just symbols and msymbols.
9023 If in list mode, allow any symbol class. Otherwise, only
9024 permit LOC_BLOCK symbols.
9025 (minsym_found): Update comments.
9026 (search_minsyms_for_name): Do not convert the matching symbol
9027 into a SAL. Simply push the symbol and objfile into the
9028 result vector.
9029 (decode_variable): Delete. Contents adapted into
9030 find_linespec_symbols.
9031
9032 * cp-support.c (SKIP_SPACE): Remove.
9033 (operator_tokens): Remove unused global.
9034 (cp_validate_operator): Remove.
9035 * cp-support.h (cp_validate_operator): Remove declaration.
9036
9037 2012-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9038
9039 * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
9040 for TYPE_VPTR_FIELDNO.
9041 * valprint.c (valprint_check_validity): Make it global, move the
9042 function comment ...
9043 * value.h (valprint_check_validity): ... to this new declaration.
9044
9045 2012-04-02 Tristan Gingold <gingold@adacore.com>
9046
9047 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
9048 the STATE32 api for i386 state.
9049 (i386_darwin_store_inferior_registers): Likewise.
9050
9051 2012-04-02 Tristan Gingold <gingold@adacore.com>
9052
9053 * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
9054 SS offset.
9055 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
9056 format_string.
9057
9058 2012-04-02 Tristan Gingold <gingold@adacore.com>
9059
9060 PR gdb/13901
9061 * darwin-nat.c (darwin_execvp): Set binary preference.
9062
9063 2012-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9064
9065 * NEWS (set breakpoint condition-evaluation): Use imperative mood.
9066
9067 2012-03-30 Tom Tromey <tromey@redhat.com>
9068
9069 * python/python.c (gdbpy_decode_line): Move cleanup creation out
9070 of TRY_CATCH. Fix error handling.
9071 * python/py-value.c (convert_value_from_python): Move 'old'
9072 declaration to innermost scope.
9073
9074 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9075 Andrey Smirnov <andrew.smirnov@gmail.com>
9076
9077 -Wshadow warning fix.
9078 * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
9079 "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
9080 Adjust code accordingly.
9081
9082 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9083
9084 * ada-lang.c (symbol_completion_add): Rename parameter
9085 "encoded" into "encoded_p". Ajust code and documentation
9086 accordingly.
9087
9088 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9089 Andrey Smirnov <andrew.smirnov@gmail.com>
9090
9091 -Wshadow warning fix.
9092 * ada-lang.c (symbol_completion_add): Rename parameter
9093 "wild_match" into wild_match_p. Update code and documentation
9094 accordingly.
9095
9096 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9097
9098 * ada-lang.c (symbol_completion_match): Rename parameter
9099 "encoded" into "encoded_p". Ajust code and documentation
9100 accordingly.
9101
9102 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9103 Andrey Smirnov <andrew.smirnov@gmail.com>
9104
9105 -Wshadow warning fix.
9106 * ada-lang.c (symbol_completion_match): Rename parameter
9107 "wild_match" into "wild_match_p". Adjust code and function
9108 documentation accordingly.
9109
9110 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9111 Andrey Smirnov <andrew.smirnov@gmail.com>
9112
9113 -Wshadow warning fix.
9114 * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
9115 "symbol_info" into "info". Adjust code accordingly.
9116 (ada_lookup_symbol): Likewise.
9117
9118 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9119
9120 * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
9121 of this function's documentation.
9122
9123 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9124 Andrey Smirnov <andrew.smirnov@gmail.com>
9125
9126 -Wshadow warning fix.
9127 * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
9128 variable into "wild_match_p". Adjust code accordingly.
9129
9130 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9131 Andrey Smirnov <andrew.smirnov@gmail.com>
9132
9133 -Wshadow warning fix.
9134 * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
9135 parameter into "wild_match_p". Adjust code accordingly.
9136 Document this parameter in the function description.
9137
9138 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9139 Andrey Smirnov <andrew.smirnov@gmail.com>
9140
9141 -Wshadow warning fix.
9142 * ada-lang.c (add_symbols_from_enclosing_procs): Rename
9143 "wild_match" parameter to "wild_match_p" (-Wshadow).
9144
9145 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9146
9147 * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
9148 in function documentation.
9149
9150 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9151 Andrey Smirnov <andrew.smirnov@gmail.com>
9152
9153 -Wshadow warning fix.
9154 * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
9155 variable into wild_match_p. Adjust code accordingly.
9156
9157 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9158 Andrey Smirnov <andrew.smirnov@gmail.com>
9159
9160 * ada-valprint.c (ada_val_print_1): Move the code handling
9161 TYPE_CODE_ENUM inside its own lexical block. Declare
9162 variables len and val there, instead of in the function's
9163 top level block. Avoid declaring deref_val again in a way
9164 that shadows another variable of the same name declared
9165 in one of the up-level blocks. Just re-use the up-level
9166 variable instead.
9167
9168 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9169
9170 * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
9171 Replace block_found argument by symbol_info. Adjust
9172 implementation accordingly. Add function documentation.
9173 (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
9174 Fix documentation.
9175 * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
9176 * ada-exp.y (write_object_renaming): Adjust to new
9177 ada_lookup_encoded_symbol API.
9178
9179 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9180
9181 * ada-lang.h (struct ada_symbol_info): Reformat. Improve
9182 documentation.
9183
9184 2012-03-28 Rathish C <rathish.c@kpitcummins.com>
9185
9186 * v850-tdep.c: Add the enum values for mpu and fpu registers.
9187 (v850_register_name): Add the mpu and fpu register names.
9188 (v850e_register_name): Add the mpu and fpu register names.
9189 (v850e2_register_name): New function.
9190 (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
9191 bfd_mach_v850e2v3.
9192
9193 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9194
9195 * NEWS: Add entry for Ada varobj support.
9196
9197 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9198
9199 * varobj.c (default_value_is_changeable_p): New function,
9200 extracted from varobj_value_is_changeable_p. Add declaration.
9201 (ada_value_is_changeable_p): New function, extracted from
9202 varobj_value_is_changeable_p. Add declaration.
9203 (struct language_specific): New field "value_is_changeable_p".
9204 (languages): Add entries for new field.
9205 (varobj_create): Set language before calling install_new_value.
9206 (varobj_value_is_changeable_p): Reimplement to call the varobj's
9207 "value_is_changeable_p" language callback.
9208
9209 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9210
9211 * ada-varobj.h, ada-varobj.c: New files.
9212 * Makefile.in (SFILES): Add ada-varobj.c.
9213 (HFILES_NO_SRCDIR): Add ada-varobj.h.
9214 (COMMON_OBS): Add ada-varobj.o.
9215
9216 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9217
9218 * varobj.c (ada_value_has_mutated): Add declaration. New function.
9219 (struct language_specific): New field "value_has_mutated".
9220 (languages): Set field "value_has_mutated" in each entry of array.
9221 (varobj_value_has_mutated): New function.
9222 (varobj_udpdate): Add handling of type mutation.
9223 (value_of_root): Add handling of type mutation.
9224 (ada_value_has_mutated): New function.
9225
9226 2012-03-28 Pedro Alves <palves@redhat.com>
9227
9228 * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
9229 Always supply $fr0 as 0.0 and $fr1 as 1.0.
9230
9231 2012-03-28 Tom Tromey <tromey@redhat.com>
9232
9233 * python/py-inferior.c (infpy_read_memory): Remove cleanups and
9234 explicitly free 'buffer' on exit paths. Decref 'membuf_object'
9235 before returning.
9236
9237 2012-03-28 Tom Tromey <tromey@redhat.com>
9238
9239 * .dir-locals.el: New file.
9240
9241 2012-03-28 Pedro Alves <palves@redhat.com>
9242
9243 * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
9244
9245 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9246
9247 * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
9248 handling for r0.
9249
9250 2012-03-27 Pedro Alves <palves@redhat.com>
9251
9252 Eliminate struct ui_stream.
9253
9254 * ui-out.h (struct ui_stream): Delete.
9255 (ui_out_field_stream): Adjust prototype.
9256 (ui_out_stream_new, ui_out_stream_delete)
9257 (make_cleanup_ui_out_stream_delete): Delete declarations.
9258 * ui-out.c (ui_out_field_stream): Change prototype to take a
9259 ui_file instead of a ui_stream. Adjust.
9260 (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
9261 (make_cleanup_ui_out_stream_delete): Delete.
9262 * breakpoint.c (print_breakpoint_location)
9263 (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
9264 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9265 * disasm.c (dump_insns): Ditto.
9266 (do_mixed_source_and_assembly, do_assembly_only): Adjust
9267 prototype.
9268 (gdb_disassembly): Use ui_file/mem_fileopen instead of
9269 ui_stream/ui_out_stream_new.
9270 * infcmd.c (print_return_value): Ditto.
9271 * osdata.c (info_osdata_command): Don't allocate a local
9272 ui_stream.
9273 * stack.c (print_frame_arg, print_frame_args, print_frame): Use
9274 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9275 * tracepoint.c (print_one_static_tracepoint_marker): Don't
9276 allocate a local ui_stream.
9277 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
9278 instead of ui_stream/ui_out_stream_new.
9279 (list_args_or_locals): Don't allocate a local ui_stream.
9280 * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
9281 (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
9282 ui_stream/ui_out_stream_new.
9283 * cli/cli-setshow.c (do_setshow_command): Ditto.
9284
9285 2012-03-27 Oza Pawandeep <oza.pawandeep@gmail.com>
9286
9287 * arm-linux-tdep.c (arm_linux_init_abi): Call
9288 set_gdbarch_process_record. Initialize `arm_swi_record' field.
9289 * arm-tdep.c (arm_process_record): New function.
9290 (deallocate_reg_mem): New function.
9291 (decode_insn): New function.
9292 (thumb_record_branch): New function.
9293 (thumb_record_ldm_stm_swi(): New function.
9294 (thumb_record_misc): New function.
9295 (thumb_record_ld_st_stack): New function.
9296 (thumb_record_ld_st_imm_offset): New function.
9297 (thumb_record_ld_st_reg_offset(): New function.
9298 (thumb_record_add_sub_cmp_mov): New function.
9299 (thumb_record_shift_add_sub): New function.
9300 (arm_record_coproc_data_proc): New function.
9301 (arm_record_coproc): New function.
9302 (arm_record_b_bl): New function.
9303 (arm_record_ld_st_multiple): New function.
9304 (arm_record_ld_st_reg_offset): New function.
9305 (arm_record_ld_st_imm_offset): New function.
9306 (arm_record_data_proc_imm): New function.
9307 (arm_record_data_proc_misc_ld_str): New function.
9308 (arm_record_extension_space): New function.
9309 (arm_record_strx): New function.
9310 (sbo_sbz): New function.
9311 (struct insn_decode_record): New structure for arm insn record.
9312 (REG_ALLOC): New macro for reg allocations.
9313 (MEM_ALLOC): New macro for memory allocations.
9314 * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
9315
9316 2012-03-27 Andreas Schwab <schwab@linux-m68k.org>
9317
9318 * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
9319 (store_register): Likewise.
9320
9321 2012-03-26 Oza Pawandeep <oza.pawandeep@gmail.com>
9322
9323 * MAINTAINERS (Write After Approval): Add myself to the list.
9324
9325 2012-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
9326
9327 * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
9328 Describe also the option "auto".
9329
9330 2012-03-22 Richard Henderson <rth@redhat.com>
9331
9332 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
9333 * sparc-nat.c (sparc_xfer_wcookie): Make static.
9334
9335 2012-03-22 Richard Henderson <rth@redhat.com>
9336
9337 * jit.c (jit_read_code_entry): Compute alignment and offset of
9338 int64_t member before computing entry_size.
9339
9340 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
9341
9342 Python scripting: Add new method Value.referenced_value to
9343 gdb.Value which can dereference pointer as well as reference
9344 values.
9345 * NEWS: Add entry under 'Python scripting' about the new method
9346 Value.referenced_value on gdb.Value objects.
9347 * python/py-value.c (valpy_referenced_value): New function
9348 defining a new method on gdb.Value objects which can dereference
9349 pointer and reference values.
9350
9351 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
9352
9353 * MAINTAINERS (Write After Approval): Add myself to the list.
9354
9355 2012-03-21 Kevin Buettner <kevinb@redhat.com>
9356
9357 * symtab.c (skip_prologue_sal): Change test to check for "main()"
9358 in addition to "main".
9359
9360 2012-03-21 Joel Brobecker <brobecker@adacore.com>
9361
9362 * expression.h (op_name): Add declaration.
9363 * expprint.c (op_name): Remove declaration. Make non-static.
9364 * ax-gdb.c (gen_expr): Use op_name instead of op_string.
9365
9366 2012-03-21 Thomas Schwinge <thomas@codesourcery.com>
9367
9368 * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
9369 of struct siginfo.
9370 * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
9371 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
9372 * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
9373 (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
9374 (linux_nat_get_siginfo): Likewise.
9375 * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
9376 (linux_nat_get_siginfo): Likewise.
9377 * linux-tdep.c (linux_get_siginfo_type): Likewise.
9378 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
9379 * procfs.c (gdb_siginfo_t): Likewise.
9380
9381 2012-03-21 Mike Frysinger <vapier@gentoo.org>
9382
9383 * .gitignore: Ignore more files.
9384
9385 2012-03-20 Pedro Alves <palves@redhat.com>
9386
9387 * remote.c (remote_start_remote): Clear `rs->starting_up' on early
9388 returns.
9389
9390 2012-03-20 Yao Qi <yao@codesourcery.com>
9391
9392 * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
9393 comment.
9394
9395 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9396
9397 Code cleanupp: Use cu_offset and sect_offset compile time type checking.
9398 * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
9399 (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
9400 sect_offset.
9401 * dwarf2expr.h (cu_offset, sect_offset): New types.
9402 (struct dwarf_expr_context_funcs) <dwarf_call>
9403 (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
9404 sect_offset.
9405 (struct dwarf_expr_context) <len>: Improve the comment.
9406 (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
9407 cu_offset and sect_offset.
9408 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
9409 (dwarf_expr_get_base_type, needs_frame_dwarf_call)
9410 (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
9411 * dwarf2loc.h: Include dwarf2expr.h.
9412 (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
9413 and sect_offset.
9414 * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
9415 Improve the comment.
9416 (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
9417 (struct signatured_type, struct line_header, struct partial_die_info)
9418 (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
9419 (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
9420 (get_die_type_at_offset, create_cus_from_index)
9421 (create_signatured_type_table_from_index, dw2_get_file_names)
9422 (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
9423 (read_and_check_comp_unit_head, read_and_check_type_unit_head)
9424 (create_debug_types_hash_table, process_psymtab_comp_unit)
9425 (load_partial_comp_unit, create_all_comp_units)
9426 (partial_die_parent_scope, partial_die_full_name, skip_one_die)
9427 (load_full_comp_unit, dwarf2_physname, read_import_statement)
9428 (inherit_abstract_dies, read_func_scope, read_call_site_scope)
9429 (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
9430 (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
9431 (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
9432 (find_partial_die, read_attribute_value, lookup_die_type)
9433 (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
9434 (is_ref_attr): New function comment.
9435 (dwarf2_get_ref_die_offset): New function comment, new variable retval.
9436 Use cu_offset and sect_offset.
9437 (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
9438 (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
9439 (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
9440 (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
9441 (offset_and_type_hash, offset_and_type_eq, set_die_type)
9442 (get_die_type_at_offset, partial_die_hash, partial_die_eq)
9443 (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
9444 sect_offset.
9445
9446 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9447
9448 Code cleanup.
9449 * python/py-auto-load.c (source_section_scripts): New variable back_to.
9450 Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
9451 with xfree.
9452 (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
9453
9454 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9455
9456 * NEWS: Describe new options --init-command=FILE, -ix and
9457 --init-eval-command=COMMAND, -iex.
9458 * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
9459 CMDARG_INIT_COMMAND.
9460 (captured_main): New enum items OPT_IX and OPT_IEX. Add
9461 "init-command", "init-eval-command", "ix" and "iex" to the variable
9462 long_options. Handle OPT_IX and OPT_IEX. Process them from CMDARG_VEC.
9463 New comment for CMDARG_FILE and CMDARG_COMMAND processing.
9464 (print_gdb_help): Describe --init-command=FILE, -ix and
9465 --init-eval-command=COMMAND, -iex.
9466
9467 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9468
9469 Code cleanup.
9470 * main.c (struct cmdarg): Move it here from main. Add more comments.
9471 (cmdarg_s, VEC (cmdarg_s)): New.
9472 (main): Move struct cmdarg from here. New variables cmdarg_vec and
9473 cmdarg_p. Remove variables cmdsize and ncmd and their initialization.
9474 Install cleanup for cmdarg_vec. Update filling for options 'x' and
9475 'X'. Replace cmdarg processing by cmdarg_vec processing. Remove xfree
9476 of CMDARG.
9477
9478 2012-03-19 Tom Tromey <tromey@redhat.com>
9479
9480 * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
9481
9482 2012-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
9483
9484 PR symtab/13777
9485 * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
9486 GCC >=4.5.
9487
9488 2012-03-16 Chris January <chris.january@allinea.com>
9489
9490 * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
9491 of clear.
9492
9493 2012-03-16 Chris January <chris.january@allinea.com>
9494
9495 * source.c (add_path): Use memmove instead of strcpy because the
9496 strings overlap.
9497
9498 2012-03-16 Joel Brobecker <brobecker@adacore.com>
9499
9500 * value.h (set_value_parent): Add declaration.
9501 * value.c (set_value_parent): New function.
9502 (value_address): If VALUE->PARENT is not NULL, then use it as
9503 the base address instead of VALUE->LOCATION.address.
9504 * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
9505 the same as OBJ's address. Adjust V's offset accordingly.
9506 Set V's parent.
9507
9508 2012-03-16 Gary Benson <gbenson@redhat.com>
9509
9510 PR breakpoints/10738
9511 * dwarf2read.c (use_deprecated_index_sections): New global.
9512 (struct partial_die_info): New member may_be_inlined.
9513 (read_partial_die): Set may_be_inlined where appropriate.
9514 (add_partial_subprogram): Add partial symbols for partial
9515 DIEs that may be inlined.
9516 (new_symbol_full): Add inlined subroutines to the current
9517 scope.
9518 (write_psymtabs_to_index): Bump version number.
9519 (dwarf2_read_index): Read only version 6 indices unless
9520 use_deprecated_index_sections is set.
9521 * linespec.c (symbol_and_data_callback): New structure.
9522 (iterate_inline_only): New function.
9523 (iterate_over_all_matching_symtabs): New argument
9524 "include_inline". If nonzero, also call the callback for
9525 symbols representing inlined subroutines.
9526 (lookup_prefix_sym): Pass extra argument to the above.
9527 (find_function_symbols): Likewise.
9528 (add_matching_symbols_to_info): Likewise.
9529 * NEWS: Mention that GDB can now set breakpoints on inlined
9530 functions.
9531
9532 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
9533
9534 * p-typeprint.c (pascal_type_print_method_args):
9535 Fix display of parameter of methods.
9536
9537 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
9538
9539 * amd64-windows-nat.c (_initialize_amd64_windows_nat):
9540 Add missing prototype.
9541
9542 2012-03-16 Yao Qi <yao@codesourcery.com>
9543 Jan Kratochvil <jan.kratochvil@redhat.com>
9544
9545 Fix false compilation warning.
9546 * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
9547
9548 2012-03-15 Jonathan Larmour <jifl@eCosCentric.com>
9549 Pedro Alves <pedro@codesourcery.com>
9550
9551 * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
9552 (arm_register_g_packet_guesses): New function.
9553 (arm_gdbarch_init): Don't force a target description with
9554 registers when the executable is detected as M-profile. Instead
9555 set gdbarch->tdep->is_m. Register `g' packet guesses.
9556 (_initialize_arm_tdep): Initialize the new target description.
9557 * features/arm-with-m-fpa-layout.xml: New description.
9558 * features/arm-with-m-fpa-layout.c: New, generated.
9559
9560 2012-03-15 Joel Brobecker <brobecker@adacore.com>
9561
9562 * breakpoint.c (breakpoint_xfer_memory): Add assertion.
9563 Update function description.
9564 (insert_bp_location): Do not wipe bl->target_info out.
9565 * mem-break.c: #include "gdb_string.h".
9566 (default_memory_insert_breakpoint): Do not call target_read_memory
9567 with a pointer to the breakpoint's shadow_contents buffer. Use
9568 a local buffer instead.
9569 * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
9570
9571 2012-03-15 Tom Tromey <tromey@redhat.com>
9572
9573 * NEWS: Mention "info vtbl", not "info vtable".
9574 * cp-support.c (info_vtbl_command): Fix comment.
9575 (_initialize_cp_support): Fix text.
9576
9577 2012-03-15 Tom Tromey <tromey@redhat.com>
9578
9579 * cp-valprint.c (cp_print_value_fields): Use
9580 print_function_pointer_address for vtable slot.
9581
9582 2012-03-15 Tom Tromey <tromey@redhat.com>
9583
9584 * gnu-v3-abi.c (struct value_and_voffset): New.
9585 (hash_value_and_voffset, eq_value_and_voffset)
9586 (compare_value_and_voffset, compute_vtable_size)
9587 (print_one_vtable, gnuv3_print_vtable): New functions.
9588 (init_gnuv3_ops): Initialize 'print_vtable' field.
9589 * cp-support.c (info_vtbl_command): New function.
9590 (_initialize_cp_support): Add "info vtbl".
9591 * cp-abi.h (cplus_print_vtable): Declare.
9592 (struct cp_abi_ops) <print_vtable>: New field.
9593 * cp-abi.c (cplus_print_vtable): New function.
9594 * NEWS: Update.
9595
9596 2012-03-15 Tom Tromey <tromey@redhat.com>
9597
9598 * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
9599 iterate_over_symbols.
9600
9601 2012-03-14 Doug Evans <dje@google.com>
9602
9603 * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
9604 DW_OP_GNU_parameter_ref.
9605
9606 2012-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9607
9608 Fix double prompt of 'interpreter-exec mi'.
9609 * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
9610 (mi_interpreter_resume): use it.
9611 (mi_execute_command_input_handler): New function.
9612 * mi/mi-main.c (mi_execute_command): Move prompt printing to
9613 mi_execute_command_input_handler.
9614
9615 2012-03-13 Josh Matthews <josh@joshmatthews.net> (tiny change)
9616
9617 * darwin-nat-info.c (_initialize_darwin_info_commands): Add
9618 prototype.
9619 (darwin_debug_port_info): Make static.
9620 * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
9621 * machoread.c (_initialize_machoread): Add prototype.
9622 * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
9623 (i386_darwin_set_control, i386_darwin_get_control)
9624 i386_darwin_dr_set_addr, i386_darwin_get_addr)
9625 i386_darwin_get_status, i386_darwin_get_control):
9626 Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
9627
9628 2012-03-13 Joel Brobecker <brobecker@adacore.com>
9629
9630 * ax-gdb.c (gen_usual_unary): Remove special handling of
9631 enum and bool types.
9632
9633 2012-03-13 Joel Brobecker <brobecker@adacore.com>
9634
9635 * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
9636
9637 2012-03-13 Joel Brobecker <brobecker@adacore.com>
9638
9639 * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
9640
9641 2012-03-13 Chris January <chris.january@allinea.com>
9642
9643 * aix-thread.c (fill_sprs): Store the floating point registers
9644 at the correct offsets into vals.
9645
9646 2012-03-13 Doug Evans <dje@google.com>
9647
9648 * NEWS: Mention symbol-reloading has been deleted.
9649 * symfile.c (symbol_reloading): Delete.
9650 (show_symbol_reloading): Delete.
9651 (_initialize_symfile): Delete set/show symbol-reloading.
9652
9653 * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
9654 read_in_chain until we have successfully read it in.
9655 (load_full_comp_unit): Ditto.
9656 (read_signatured_type): Add comment.
9657
9658 2012-03-13 Chris January <chris.january@allinea.com>
9659
9660 * stabsread.c (fix_common_block): Change type of valu argument
9661 to CORE_ADDR.
9662
9663 2012-03-13 Chris January <chris.january@allinea.com>
9664
9665 * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
9666 instruction.
9667
9668 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9669
9670 * common/linux-procfs.c (linux_proc_get_int): New, from
9671 linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
9672 field.
9673 (linux_proc_get_tgid): Only call linux_proc_get_int.
9674 (linux_proc_get_tracerpid): New.
9675 (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
9676 (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
9677 linux_proc_pid_has_state.
9678 * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
9679 * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
9680 (linux_ptrace_attach_warnings): New.
9681 * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
9682 New declaration.
9683 * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
9684 (linux_nat_attach): New variables ex, buffer, message and message_s.
9685 Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
9686
9687 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9688
9689 * Makefile.in (linux-ptrace.o): New.
9690 * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
9691 from linux-nat.c.
9692 * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
9693 * common/linux-ptrace.c: New file.
9694 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
9695 * config/arm/linux.mh: Likewise.
9696 * config/i386/linux.mh: Likewise.
9697 * config/i386/linux64.mh: Likewise.
9698 * config/ia64/linux.mh: Likewise.
9699 * config/m32r/linux.mh: Likewise.
9700 * config/m68k/linux.mh: Likewise.
9701 * config/mips/linux.mh: Likewise.
9702 * config/pa/linux.mh: Likewise.
9703 * config/powerpc/linux.mh: Likewise.
9704 * config/powerpc/ppc64-linux.mh: Likewise.
9705 * config/powerpc/spu-linux.mh: Likewise.
9706 * config/s390/s390.mh: Likewise.
9707 * config/sparc/linux.mh: Likewise.
9708 * config/sparc/linux64.mh: Likewise.
9709 * config/xtensa/linux.mh: Likewise.
9710 * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
9711 common/linux-procfs.c.
9712 (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
9713
9714 2012-03-13 Hui Zhu <teawater@gmail.com>
9715 Pedro Alves <palves@redhat.com>
9716
9717 * breakpoint.c (init_breakpoint_sal): New flags parameter. Handle
9718 CREATE_BREAKPOINT_FLAGS_INSERTED.
9719 (create_breakpoint_sal, create_breakpoints_sal)
9720 (base_breakpoint_create_breakpoints_sal)
9721 (tracepoint_create_breakpoints_sal)
9722 (strace_marker_create_breakpoints_sal): New flags parameter. Pass
9723 down.
9724 (break_command_1, handle_gnu_v3_exceptions, trace_command)
9725 (ftrace_command, strace_command): Adjust.
9726 (create_tracepoint_from_upload): Pass
9727 CREATE_BREAKPOINT_FLAGS_INSERTED.
9728 * breakpoint.h (enum breakpoint_create_flags): New.
9729 (create_breakpoint): New flags parameter.
9730 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
9731 * python/py-breakpoint.c (bppy_init): Adjust.
9732 * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
9733 * spu-tdep.c (spu_catch_start): Adjust.
9734
9735 2012-03-13 Pedro Alves <palves@redhat.com>
9736 Hui Zhu <teawater@gmail.com>
9737 Yao Qi <yao@codesourcery.com>
9738
9739 * remote.c (struct remote_state): New field `starting_up'.
9740 (remote_start_remote): Set and clear it.
9741 (remote_can_download_tracepoint): If starting up, return false.
9742
9743 2012-03-13 Yao Qi <yao@codesourcery.com>
9744
9745 * inferior.h (struct inferior): Remove fields any_syscall_count,
9746 syscalls_counts and total_syscalls_count. Move them to new
9747 struct catch_syscall_inferior_data in breakpoint.c.
9748 * breakpoint.c: Call DEF_VEC_I(int).
9749 (struct catch_syscall_inferior_data): New.
9750 (get_catch_syscall_inferior_data): New.
9751 (catch_syscall_inferior_data_cleanup): New.
9752 (insert_catch_syscall): Update to access data in
9753 struct catch_syscall_inferior_data.
9754 (insert_catch_syscall): Likewise.
9755 (remove_catch_syscall): Likewise.
9756 (remove_catch_syscall): Likewise.
9757 (is_syscall_catchpoint_enabled): Likewise.
9758 (add_catch_command): Likewise.
9759 (_initialize_breakpoint): Register cleanup.
9760 * breakpoint.h: Removed DEF_VEC_I(int).
9761 * dwarf2loc.c: Call DEF_VEC_I(int).
9762 * mi/mi-main.c: Likewise.
9763
9764 2012-03-12 Mark Kettenis <kettenis@gnu.org>
9765
9766 * inf-ptrace.c (inf_ptrace_post_attach): Make static.
9767
9768 2012-03-12 Chris January <chris.january@allinea.com>
9769
9770 * aix-thread.c (_initialize_aix_thread): Add prototype.
9771 * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
9772 * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
9773
9774 2012-03-12 Joel Brobecker <brobecker@adacore.com>
9775
9776 * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
9777 include of "amd64-nat.h".
9778
9779 2012-03-12 Tom Tromey <tromey@redhat.com>
9780
9781 * buildsym.c (record_pending_block): Now static.
9782 * buildsym.h: (record_pending_block): Remove.
9783
9784 2012-03-12 Andreas Tobler <andreast@fgznet.ch>
9785
9786 * amd64bsd-nat.c: Include amd64bsd-nat.h.
9787
9788 2012-03-09 Tom Tromey <tromey@redhat.com>
9789
9790 * dwarf2read.c (struct dwarf2_cu) <checked_producer,
9791 producer_is_gxx_lt_4_6>: New fields.
9792 (producer_is_gxx_lt_4_6): Use and update producer cache fields.
9793
9794 2012-03-09 Tom Tromey <tromey@redhat.com>
9795
9796 * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
9797
9798 2012-03-08 Joel Brobecker <brobecker@adacore.com>
9799
9800 * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
9801 prototype.
9802
9803 2012-03-08 Joel Brobecker <brobecker@adacore.com>
9804
9805 * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
9806
9807 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9808
9809 Fix -Wmissing-prototypes build.
9810 * arm-linux-nat.c (get_thread_id): Make it static.
9811 * xtensa-linux-nat.c (get_thread_id): Likewise.
9812
9813 2012-03-08 Joel Brobecker <brobecker@adacore.com>
9814
9815 * server.c (process_point_options): If a conditional expression
9816 is found, only print a message if remote_debug is nonzero.
9817
9818 2012-03-08 Luis Machado <lgustavo@codesourcery.com>
9819
9820 * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
9821 of internal error for unknown/unsupported types.
9822
9823 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9824
9825 Fix CU relative vs. absolute DIE offsets.
9826 * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
9827 offset to offset_in_cu.
9828 * dwarf2read.c (process_enumeration_scope): Add CU offset to
9829 TYPE_OFFSET.
9830 (dwarf2_fetch_die_location_block): Rename parameter offset to
9831 offset_in_cu. New variable offset, add CU offset to OFFSET_IN_CU.
9832
9833 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9834
9835 * libunwind-frame.c: Rename to ...
9836 * ia64-libunwind-tdep.c: ... here.
9837 * libunwind-frame.h: Rename to ...
9838 * ia64-libunwind-tdep.h: ... here.
9839 * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
9840 ia64-libunwind-tdep.h.
9841 (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
9842 * README (--with-libunwind): Rename to ...
9843 (--with-libunwind-ia64): ... here, note it is ia64 specific now.
9844 * config.in: Regenerate.
9845 * configure: Regenerate.
9846 * configure.ac: New option --with-libunwind-ia64, make the
9847 AS_HELP_STRING ia64 specific. Deprecate option --with-libunwind.
9848 Remove AC_DEFINE for HAVE_LIBUNWIND.
9849 * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
9850 Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
9851 Rename libunwind-frame in the general comment.
9852 * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
9853 Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
9854 Move forward declarations inside #ifndef. Rename libunwind-frame in
9855 the general comment.
9856 * ia64-tdep.c: Rename libunwind-frame.h #include to
9857 ia64-libunwind-tdep.h.
9858 (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
9859 (ia64_libunwind_descr): Rename libunwind-frame to
9860 ia64-libunwind-tdep in these function comments.
9861 * ia64-tdep.h: Rename libunwind-frame.h #include to
9862 ia64-libunwind-tdep.h.
9863 * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
9864 ia64-libunwind-tdep in that data comment.
9865
9866 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9867
9868 * libunwind-frame.h (struct frame_unwind): New declaration.
9869
9870 2012-03-08 Joel Brobecker <brobecker@adacore.com>
9871
9872 * breakpoint.c (_initialize_breakpoint): Fix error in help of
9873 "set breakpoint condition-evaluation" command.
9874
9875 2012-03-08 Tristan Gingold <gingold@adacore.com>
9876
9877 * sparc-stub.c: Move to stubs/
9878 * sh-stub.c: Likewise.
9879 * m68k-stub.c: Likewise.
9880 * m32r-stub.c: Likewise.
9881 * i386-stub.c: Likewise.
9882
9883 2012-03-08 Andreas Schwab <schwab@linux-m68k.org>
9884
9885 * m68klinux-tdep.c (m68k_linux_init_abi): Register
9886 linux_get_siginfo_type.
9887
9888 * m68klinux-nat.c: Include "gdb_proc_service.h".
9889 (PTRACE_GET_THREAD_AREA): Define.
9890 (ps_get_thread_area): New function.
9891
9892 2012-03-08 Yao Qi <yao@codesourcery.com>
9893
9894 * remote.c (remote_get_noisy_reply): Replace `sprintf' with
9895 `xsnprintf'.
9896 (remote_query_attached): Likewise.
9897 (remote_static_tracepoint_marker_at): Likewise.
9898 (remote_set_permissions): Likewise.
9899 (remote_detach_1, extended_remote_attach_1): Likewise.
9900 (send_g_packet, remote_vkill): Likewise.
9901 (extended_remote_disable_randomization): Likewise.
9902 (remote_add_target_side_condition): Likewise.
9903 (remote_insert_breakpoint): Likewise.
9904 (remote_remove_breakpoint): Likewise.
9905 (remote_insert_watchpoint): Likewise.
9906 (remote_remove_watchpoint): Likewise.
9907 (remote_insert_hw_breakpoint): Likewise.
9908 (remote_insert_hw_breakpoint): Likewise.
9909 (remote_remove_hw_breakpoint): Likewise.
9910 (remote_download_command_source): Likewise.
9911 (remote_download_tracepoint): Likewise.
9912 (remote_download_trace_state_variable): Likewise.
9913 (remote_disable_tracepoint): Likewise.
9914 (remote_trace_set_readonly_regions): Likewise.
9915 (remote_get_tracepoint_status): Likewise.
9916 (remote_trace_find): Likewise.
9917 (remote_get_trace_state_variable_value): Likewise.
9918 (remote_set_disconnected_tracing): Likewise.
9919 (remote_set_circular_trace_buffer): Likewise.
9920 (remote_get_min_fast_tracepoint_insn_len): Likewise.
9921 (remote_use_agent): Likewise.
9922 (remote_add_target_side_condition): Add one parameter BUF_SIZE.
9923 Update callers.
9924
9925 2012-03-07 Pedro Alves <palves@redhat.com>
9926
9927 * NEWS: Mention QProgramSignals.
9928 * inferior.h (update_signals_program_target): Declare.
9929 * infrun.c: (update_signals_program_target): New.
9930 (handle_command): Update the target of the new program signals
9931 array changes.
9932 * remote.c (PACKET_QProgramSignals): New enum.
9933 (last_program_signals_packet): New global.
9934 (remote_program_signals): New.
9935 (remote_start_remote): Update the target with the program signals
9936 list.
9937 (remote_protocol_features): Add entry for QPassSignals.
9938 (remote_open_1): Free anc clear last_program_signals_packet.
9939 (init_remote_ops): Install remote_program_signals.
9940 * target.c (update_current_target): Adjust.
9941 (target_program_signals): New.
9942 * target.h (struct target_ops) <to_program_signals>: New field.
9943 (target_program_signals): Declare.
9944
9945 2012-03-07 Pedro Alves <palves@redhat.com>
9946
9947 * NEWS: Add subtitle for new z0/z1 conditional breakpoint
9948 extensions.
9949
9950 2012-03-07 Andreas Schwab <schwab@linux-m68k.org>
9951
9952 * m68klinux-nat.c (getregs_supplies): Make static.
9953 (getfpregs_supplies): Likewise.
9954 (have_ptrace_getregs): Likewise.
9955
9956 2012-03-06 Joel Brobecker <brobecker@adacore.com>
9957
9958 * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
9959 in call to get_die_type_at_offset.
9960
9961 2012-03-06 Stan Shebs <stan@codesourcery.com>
9962
9963 * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
9964 * mi/mi-cmd-disas.c: Ditto.
9965 * mi/mi-cmd-env.c: Ditto.
9966 * mi/mi-cmd-file.c: Ditto.
9967 * mi/mi-cmd-stack.c: Ditto.
9968 * mi/mi-cmd-target.c: Ditto.
9969 * mi/mi-cmd-var.c: Ditto.
9970 * mi/mi-cmds.c: Ditto.
9971 * mi/mi-cmds.h: Ditto.
9972 * mi/mi-console.c: Ditto.
9973 * mi/mi-getopt.c: Ditto.
9974 * mi/mi-getopt.h: Ditto.
9975 * mi/mi-interp.c: Ditto.
9976 * mi/mi-main.c: Ditto.
9977 * mi/mi-out.c: Ditto.
9978 * mi/mi-parse.c: Ditto.
9979 * mi/mi-parse.h: Ditto.
9980 * mi/mi-symbol-cmds.c: Ditto.
9981
9982 * mi/mi-getopt.h: Move mi_opt struct up.
9983 * mi/mi-main.c (captured_mi_execute_command): Remove redundant
9984 return.
9985 * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
9986
9987 2012-03-06 Tom Tromey <tromey@redhat.com>
9988
9989 * proc-service.c (ps_pglobal_lookup): Set the current program
9990 space.
9991
9992 2012-03-06 Pedro Alves <palves@redhat.com>
9993
9994 * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
9995
9996 2012-03-05 Joel Brobecker <brobecker@adacore.com>
9997
9998 * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
9999
10000 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
10001
10002 Code cleanup.
10003 * common/linux-osdata.c (linux_common_core_of_thread): New function
10004 comment.
10005 * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
10006 call by linux_common_core_of_thread.
10007 (linux_nat_core_of_thread_1): Remove.
10008 * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
10009 * linux-thread-db.c: Include linux-osdata.h.
10010 (update_thread_core): Replace linux_nat_core_of_thread_1 call by
10011 linux_common_core_of_thread.
10012
10013 2012-03-05 Tom Tromey <tromey@redhat.com>
10014
10015 * value.c (value_primitive_field): Don't fetch contents for
10016 non-virtual bases.
10017
10018 2012-03-05 Tom Tromey <tromey@redhat.com>
10019
10020 * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
10021
10022 2012-03-05 Andreas Arnez <arnez@linux.vnet.ibm.com>
10023
10024 * s390-nat.c: Include "gregset.h".
10025
10026 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
10027
10028 * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
10029 [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
10030 (libunwind_load): New variable so_error, use it for dlerror. Try to
10031 load also LIBUNWIND_SO_7.
10032
10033 2012-03-05 Pedro Alves <palves@redhat.com>
10034
10035 * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
10036 is not NULL, and remove resulting dead code.
10037
10038 2012-03-05 Thomas Schwinge <thomas@codesourcery.com>
10039
10040 * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
10041 prologue to sh_analyze_prologue.
10042 (sh_analyze_prologue): Make better use of such an upper limit, and
10043 generally be more cautious about accessing memory.
10044
10045 2012-03-05 Tom Tromey <tromey@redhat.com>
10046
10047 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
10048 _initialize_ia64_hpux_tdep.
10049
10050 2012-03-05 Pedro Alves <palves@redhat.com>
10051
10052 PR gdb/13766
10053
10054 * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
10055 the register state is clear, supply explicit zero, instead of
10056 marking the register unavailable.
10057
10058 2012-03-05 Tristan Gingold <gingold@adacore.com>
10059
10060 * NEWS: Mention OpenVMS ia64 new target.
10061
10062 2012-03-05 Tristan Gingold <gingold@adacore.com>
10063
10064 * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
10065 (ia64_unw_accessors, ia64_unw_rse_accessors)
10066 (ia64_libunwind_descr): Declare.
10067 * ia64-vms-tdep.c: New file.
10068 * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
10069 (ia64_libunwind_descr): Make them public.
10070 * configure.tgt: Add ia64-*-*vms*.
10071 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
10072 (ALLDEPFILES): Add ia64-vms-tdep.c
10073
10074 2012-03-05 Tristan Gingold <gingold@adacore.com>
10075
10076 * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
10077 * remote.c (PACKET_qXfer_uib): New enum value.
10078 (remote_protocol_features): Add entry for PACKET_qXfer_uib.
10079 (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
10080 (_initialize_remote): Call add_packet_config_cmd for
10081 xfer:uib packet.
10082
10083 2012-03-05 Tristan Gingold <gingold@adacore.com>
10084
10085 * osabi.c (gdb_osabi_names): Add OpenVMS.
10086 (generic_elf_osabi_sniffer): Likewise.
10087 * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
10088
10089 2012-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
10090
10091 Removed unused code.
10092 * libunwind-frame.c (libunwind_frame_unwind)
10093 (libunwind_frame_base_address): Remove.
10094 * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
10095
10096 2012-03-04 Yao Qi <yao@codesourcery.com>
10097
10098 * common/agent.c (gdb_connect_sync_socket): Add _ markup and
10099 remove trailing new line.
10100 (agent_run_command, agent_run_command): Add _ markup.
10101 (agent_capability_check): Likewise.
10102
10103 2012-03-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10104
10105 * breakpoint.c (set_condition_evaluation_mode): Set
10106 CONDITION_EVALUATION_MODE unconditionally.
10107
10108 2012-03-03 Yao Qi <yao@codesourcery.com>
10109
10110 * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
10111 * common/agent.h: Update declaration.
10112 * inf-child.c (inf_child_use_agent): New.
10113 (inf_child_can_use_agent): New.
10114 (inf_child_target): Initialize fields `to_use_agent'
10115 and `to_can_use_agent'.
10116 * agent.c (agent_new_objfile): New.
10117 (_initialize_agent): Add agent_new_objfile to new_objfile
10118 observer.
10119
10120 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
10121 New.
10122 (linux_target_install_ops): Initialize field
10123 `to_static_tracepoint_markers_by_strid'.
10124 * remote.c (free_current_marker): Move it to ...
10125 * tracepoint.c (free_current_marker): ... here. New.
10126 (cleanup_target_stop): New.
10127 * tracepoint.h: Declare free_current_marker.
10128 * NEWS: Add one entry about `info static-tracepoint-marker'.
10129
10130 2012-03-03 Yao Qi <yao@codesourcery.com>
10131
10132 * common/agent.c (agent_loaded_p): New.
10133 (agent_look_up_symbols): New global.
10134 * common/agent.h: Declare agent_loaded_p.
10135
10136 2012-03-03 Yao Qi <yao@codesourcery.com>
10137
10138 * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
10139 (agent_capability_check, agent_capability_invalidate): New.
10140 (symbol_list): New array element.
10141 * common/agent.h (enum agent_capa): New.
10142 * target.c (target_pre_inferior): Call agent_capability_invalidate.
10143
10144 2012-03-03 Yao Qi <yao@codesourcery.com>
10145
10146 * target.h (struct target_ops) <to_use_agent>: New field.
10147 (struct target_ops) <to_can_use_agent>: New field.
10148 (target_use_agent, target_can_use_agent): New macro.
10149 * target.c (update_current_target): Update.
10150 * remote.c: New enum `PACKET_QAgent'.
10151 (remote_protocol_features): Add a new element.
10152 (remote_use_agent, remote_can_use_agent): New.
10153 (init_remote_ops): Initialize field `can_use_agent' with
10154 remote_can_use_agent. Intiailize field `use_agent' with
10155 remote_use_agent.
10156 * common/agent.c (use_agent): New global.
10157 * common/agent.h: Declare it.
10158 * tracepoint.c (info_static_tracepoint_markers_command): Add
10159 comment.
10160 * Makefile.in (SFILES): Add common/agent.c and agent.c.
10161 (COMMON_OBS): Add common/agent.o and agent.o
10162 (common-agent.o): New rule.
10163 * agent.c: New.
10164
10165 2012-03-03 Yao Qi <yao@codesourcery.com>
10166
10167 * common/agent.c: New.
10168 * common/agent.h: New.
10169 * configure.ac: Add `sys/socket.h' and `sys/un.h' to
10170 AC_CHECK_HEADERS.
10171 * configure, configh.in: Regenerated.
10172
10173 2012-03-02 Kevin Buettner <kevinb@redhat.com>
10174
10175 * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
10176 unless it exists for this architecture.
10177
10178 2012-03-02 Joel Brobecker <brobecker@adacore.com>
10179
10180 * language.h (struct language_defn): New "method" la_read_var_value.
10181 * findvar.c: #include "language.h".
10182 (default_read_var_value): Renames read_var_value. Rewrite
10183 function description.
10184 (read_var_value): New function.
10185 * value.h (default_read_var_value): Add prototype.
10186 * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
10187 New functions.
10188 (ada_language_defn): Add entry for la_read_var_value.
10189 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
10190 * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
10191 language_defn structures to add entry for new la_read_var_value
10192 field.
10193
10194 2012-03-02 Tom Tromey <tromey@redhat.com>
10195 Pedro Alves <palves@redhat.com>
10196
10197 PR breakpoints/13776:
10198 * breakpoint.c (breakpoint_init_inferior): Delete step-resume
10199 breakpoints.
10200 (delete_longjmp_breakpoint_at_next_stop): New.
10201 * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
10202 * target.c (generic_mourn_inferior): Call mark_breakpoints_out
10203 before deleting the inferior. Add comments.
10204 * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
10205 breakpoints immediately, but only on next stop. Move that code
10206 next to where we mark other breakpoints for deletion.
10207
10208 2012-03-02 Joel Brobecker <brobecker@adacore.com>
10209
10210 * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
10211 marker.
10212 * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
10213 violation.
10214
10215 2012-03-02 Pedro Alves <palves@redhat.com>
10216
10217 * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
10218
10219 2012-03-02 Ulrich Weigand <uweigand@de.ibm.com>
10220
10221 Fix -Wmissing-prototypes build.
10222 * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
10223 * remote-sim.c (gdbsim_has_all_memory): Likewise.
10224 (gdbsim_has_memory): Likewise.
10225
10226 2012-03-02 Yao Qi <yao@codesourcery.com>
10227
10228 Fix -Wmissing-prototypes build.
10229 * charset.c (phony_iconv_open): Make static.
10230 (phony_iconv_close, phony_iconv): Likewise.
10231 * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
10232 * i386-windows-nat.c (_initialize_i386_windows_nat): New
10233 prototype.
10234 * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
10235 * ser-mingw.c (create_select_thread): Make static.
10236 * windows-termcap.c (tgetent): New prototype.
10237 (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
10238
10239 2012-03-02 Zhang Yuanhui <asmwarrior@gmail.com>
10240
10241 Fix -Wmissing-prototypes build.
10242 * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
10243 (_initialize_windows_nat, _initialize_check_for_gdb_ini)
10244 (_initialize_loadable): New prototypes.
10245
10246 2012-03-02 Doug Evans <dje@google.com>
10247
10248 * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
10249 abbrev table, read_comp_unit will do it.
10250
10251 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10252
10253 Fix -Wmissing-prototypes build.
10254 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
10255 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
10256 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
10257 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
10258 (_initialize_arm_symbian_tdep): New prototype.
10259 * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
10260 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
10261 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
10262 static.
10263 * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
10264 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
10265 prototype.
10266 * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
10267 (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
10268 * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
10269 static.
10270 * moxie-tdep.c (moxie_process_record): Likewise.
10271 * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
10272 (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
10273 * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
10274 (_initialize_rl78_tdep): New prototype.
10275 * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
10276 (_initialize_rx_tdep): New prototype.
10277 * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
10278 (_initialize_darwin_solib): New prototype.
10279 * solib-spu.c: Include solib-spu.h.
10280 (_initialize_spu_solib): New prototype.
10281 * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
10282 * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
10283 (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
10284 (tic6x_software_single_step): Make it static.
10285 (_initialize_tic6x_tdep): New prototype.
10286
10287 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10288
10289 Fix -Wmissing-prototypes build.
10290 * cris-tdep.c (cris_can_use_hardware_watchpoint)
10291 (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
10292
10293 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10294
10295 Fix -Wmissing-prototypes build.
10296 * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
10297 (frv_have_stopped_data_address): Remove.
10298
10299 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10300
10301 Fix -Wmissing-prototypes build.
10302 * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
10303 * sh-tdep.c: Include sh64-tdep.h.
10304 * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
10305 * sh64-tdep.c: Include sh64-tdep.h.
10306 * sh64-tdep.h: New file.
10307
10308 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
10309
10310 * mips-tdep.c (mips32_scan_prologue): Correct indentation.
10311
10312 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
10313
10314 * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
10315 sp_regnum once the gdbarch_init_osabi hook has been called.
10316
10317 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
10318
10319 * mips-tdep.c (mips32_bc1_pc): New function.
10320 (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
10321 BPOSGE32 and BPOSGE64 instructions.
10322 (deal_with_atomic_sequence): Likewise.
10323 (mips32_instruction_has_delay_slot): Likewise.
10324
10325 2012-03-01 Maciej W. Rozycki <macro@mips.com>
10326 Chris Dearman <chris@mips.com>
10327 Maciej W. Rozycki <macro@codesourcery.com>
10328 Joseph Myers <joseph@codesourcery.com>
10329
10330 * features/mips-dsp.xml: New file.
10331 * features/mips64-dsp.xml: New file.
10332 * features/mips-dsp-linux.xml: New file.
10333 * features/mips64-dsp-linux.xml: New file.
10334 * features/Makefile (WHICH): Add mips-dsp-linux and
10335 mips64-dsp-linux.
10336 (mips-dsp-expedite, mips64-dsp-expedite): New variables.
10337 * features/mips-dsp-linux.c: New file.
10338 * features/mips64-dsp-linux.c: New file.
10339 * regformats/mips-dsp-linux.dat: New file.
10340 * regformats/mips64-dsp-linux.dat: New file.
10341 * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
10342 registers.
10343 (mips64_linux_register_addr): Likewise.
10344 (mips64_linux_regsets_fetch_registers): Likewise.
10345 (mips64_linux_regsets_store_registers): Likewise.
10346 (mips64_linux_fetch_registers): Update call to
10347 mips64_linux_regsets_fetch_registers.
10348 (mips64_linux_store_registers): Update call to
10349 mips64_linux_regsets_store_registers.
10350 (mips_linux_read_description): Probe for DSP registers.
10351 (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
10352 and initialize_tdesc_mips64_dsp_linux.
10353 * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
10354 Remove padding of no longer used embedded register slots.
10355 * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
10356 (MIPS_RESTART_REGNUM): Redefine enum value.
10357 * mips-tdep.c (mips_generic_reg_names): Remove trailing null
10358 strings.
10359 (mips_tx39_reg_names): Likewise.
10360 (mips_linux_reg_names): New array of register names for Linux
10361 targets.
10362 (mips_register_name): Check for a null pointer in
10363 mips_processor_reg_names and return an empty string.
10364 (mips_register_type): Exclude embedded registers for the IRIX
10365 and Linux ABIs.
10366 (mips_pseudo_register_type): Likewise. Use dynamic numbers to
10367 refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle
10368 DSP registers.
10369 (mips_stab_reg_to_regnum): Handle DSP accumulators.
10370 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
10371 (mips_gdbarch_init): Likewise. Initialize internal register
10372 indices for the Linux ABI. Use dynamic numbers to refer to
10373 registers, as applicable, while parsing the target description.
10374 * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
10375
10376 2012-03-01 Joel Brobecker <brobecker@adacore.com>
10377
10378 * frame.h (read_frame_register_unsigned): Fix typo in function
10379 description.
10380
10381 2012-03-01 Pedro Alves <palves@redhat.com>
10382
10383 * jit-reader.in [!__cplusplus]
10384 (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
10385
10386 2012-03-01 Pedro Alves <palves@redhat.com>
10387
10388 * configure.ac (build_warnings): Add -Wmissing-prototypes.
10389 * configure: Regenerate.
10390
10391 2012-03-01 Pedro Alves <palves@redhat.com>
10392
10393 * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
10394 * breakpoint.c (create_exception_master_breakpoint, trace_command)
10395 (ftrace_command, strace_command): Make static.
10396 * d-lang.c (_initialize_d_language): Declare.
10397 * dwarf2expr.c (_initialize_dwarf2expr): Declare.
10398 * dwarf2loc.c (_initialize_dwarf2loc):
10399 * dwarf2read.c (process_psymtab_comp_unit): Make static.
10400 * exec.c (exec_get_section_table): Make static.
10401 * i386-linux-tdep.c (i386_linux_record_signal): Make static.
10402 * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
10403 * inferior.c (remove_inferior_command, add_inferior_command)
10404 (clone_inferior_command): Make static.
10405 * linux-nat.c (linux_nat_thread_address_space)
10406 (linux_nat_core_of_thread): Make static.
10407 * linux-tdep.c (_initialize_linux_tdep): Declare.
10408 * objc-lang.c (_initialize_objc_lang): Declare.
10409 * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
10410 Make static.
10411 (_initialize_opencl_language): Declare.
10412 * record.c (_initialize_record): Declare.
10413 * remote.c (demand_private_info, remote_get_tib_address)
10414 (remote_supports_cond_tracepoints)
10415 (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
10416 Make static.
10417 * skip.c (_initialize_step_skip): Declare.
10418 * symtab.c (skip_prologue_using_lineinfo): Make static.
10419 * tracepoint.c (delete_trace_state_variable)
10420 (trace_variable_command, delete_trace_variable_command)
10421 (get_uploaded_tsv, find_matching_tracepoint_location)
10422 (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
10423 Make static.
10424 * value.c (pack_unsigned_long): Make static.
10425 * varobj.c (varobj_ensure_python_env): Make static.
10426 * windows-tdep.c (_initialize_windows_tdep): Declare.
10427 * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
10428
10429 2012-03-01 Pedro Alves <palves@redhat.com>
10430
10431 * linux-tdep.c (linux_has_shared_address_space): Make static. Add
10432 gdbarch parameter.
10433 (linux_init_abi): Install it as has_shared_address_space gdbarch
10434 callback.
10435
10436 2012-03-01 Pedro Alves <palves@redhat.com>
10437
10438 * observer.c (observer_test_first_notification_function)
10439 (observer_test_second_notification_function)
10440 (observer_test_third_notification_function): Add declarations.
10441
10442 2012-03-01 Pedro Alves <palves@redhat.com>
10443
10444 * common/signals.c (default_target_signal_to_host)
10445 (default_target_signal_from_host): Move ...
10446 * arch-utils.c: ... here.
10447 * arch-utils.h (default_target_signal_to_host)
10448 (default_target_signal_from_host): Declare.
10449
10450 * common/signals.c (target_signal_from_command): Move ...
10451 * infrun.c: ... here.
10452 * inferior.h (target_signal_from_command): Declare.
10453 * target.h (target_signal_from_command)
10454 (default_target_signal_from_host, default_target_signal_to_host):
10455 Delete declarations.
10456
10457 * common/signals.c (_initialize_signals): Delete.
10458
10459 2012-03-01 Pedro Alves <palves@redhat.com>
10460
10461 * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
10462 both __cplusplus and !__cplusplus.
10463
10464 2012-03-01 Pedro Alves <palves@redhat.com>
10465
10466 * psymtab.c (find_and_open_source): Delete declaration.
10467 * source.c (find_and_open_source): Move comment ...
10468 * source.h (find_and_open_source): ... to this new declaration.
10469
10470 2012-03-01 Pedro Alves <palves@redhat.com>
10471
10472 * inline-frame.c: Include inline-frame.h.
10473
10474 2012-03-01 Pedro Alves <palves@redhat.com>
10475
10476 * tui/tui-data.c (set_gen_win_origin): Delete.
10477 * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
10478 * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
10479
10480 2012-03-01 Pedro Alves <palves@redhat.com>
10481
10482 * remote.c (encode_actions): Delete declaration.
10483 * tracepoint.c (encode_actions): Make extern.
10484 * tracepoint.h (encode_actions): Declare.
10485
10486 2012-03-01 Pedro Alves <palves@redhat.com>
10487
10488 * python/py-breakpoint.c: Include python.h.
10489 * python/py-continueevent.c (create_continue_event_object): Make
10490 static.
10491 * python/py-lazy-string.c (stpy_get_type): Make static.
10492 * python/py-newobjfileevent.c (create_new_objfile_event_object):
10493 Make static.
10494 * python/py-utils.c (unicode_to_target_python_string): Make
10495 static.
10496 * python/py-value.c: Include python.h.
10497
10498 2012-03-01 Pedro Alves <palves@redhat.com>
10499
10500 * inferior.c (delete_threads_of_inferior): Delete.
10501
10502 2012-03-01 Pedro Alves <palves@redhat.com>
10503
10504 Import fallback definitions from glibc.
10505
10506 * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
10507 ps_prochandle): Forward declare.
10508 (ps_err_e): Use glibc's comments.
10509 [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
10510 (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
10511 (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
10512 (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
10513 (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
10514 (struct ps_prochandle): Adjust comment.
10515
10516 2012-03-01 Pedro Alves <palves@redhat.com>
10517
10518 * ada-lang.c (ada_modulus_from_name): Delete.
10519 * ada-lex.l (lexer_init): Make static.
10520
10521 2012-03-01 Pedro Alves <palves@redhat.com>
10522
10523 PR gdb/13767
10524
10525 * frame.c (read_frame_register_unsigned): New.
10526 * frame.h (read_frame_register_unsigned): Declare.
10527 * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
10528 Handle it.
10529 (print_i387_control_word): New parameter `control_p'. Handle it.
10530 (i387_print_float_info): Handle unavailable float registers.
10531
10532 2012-03-01 Keith Seitz <keiths@redhat.com>
10533
10534 * linespec.c (decode_line_2): Sort the list of methods
10535 alphabetically before presenting the user with a selection
10536 menu.
10537
10538 2012-03-01 Doug Evans <dje@google.com>
10539
10540 * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
10541 has_namespace_info.
10542 (dwarf2_read_abbrevs): Remove corresponding initialization.
10543
10544 2012-03-01 Scott J. Goldman <scottjg@vmware.com>
10545
10546 * NEWS: Mention new python command class gdb.COMMAND_USER.
10547 * cli/cli-cmds.c (show_user): Print error when used on a python
10548 command.
10549 (init_cli_cmds): Update documentation strings for "show user" and
10550 "set/show max-user-call-depth" to clarify that it does not apply to
10551 python commands.
10552 * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
10553 error check.
10554 (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
10555 gdb python api.
10556 * top.c (execute_command): Only execute a user-defined command as a
10557 legacy macro if c->user_commands is set.
10558
10559 2012-03-01 Tom Tromey <tromey@redhat.com>
10560
10561 * valprint.h (struct generic_val_print_decorations): New.
10562 (generic_val_print): Declare.
10563 * valprint.c (generic_val_print): New function.
10564 * p-valprint.c (p_decorations): New global.
10565 (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
10566 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
10567 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
10568 TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
10569 * m2-valprint.c (m2_decorations): New global.
10570 (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
10571 TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
10572 TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
10573 TYPE_CODE_ERROR>: Call generic_val_print.
10574 * f-valprint.c (f_decorations): New global.
10575 (f_val_print): Use print_function_pointer_address.
10576 <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
10577 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
10578 TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
10579 generic_val_print.
10580 * c-valprint.c (c_decorations): New global.
10581 (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
10582 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
10583 TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
10584 TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
10585 TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
10586 * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
10587 case.
10588
10589 2012-03-01 Tom Tromey <tromey@redhat.com>
10590
10591 * valprint.c (val_print): Update.
10592 * p-valprint (pascal_val_print): Return void.
10593 * p-lang.h (pascal_val_print): Return void.
10594 * m2-valprint.c (m2_val_print): Return void.
10595 * m2-lang.h (m2_val_print): Return void.
10596 * language.h (struct language_defn) <la_val_print>: Return void.
10597 * language.c (unk_lang_val_print): Return void.
10598 * jv-valprint.c (java_val_print): Return void.
10599 * jv-lang.h (java_val_print): Return void.
10600 * f-valprint.c (f_val_print): Return void.
10601 * f-lang.h (f_val_print): Return void.
10602 * d-valprint.c (d_val_print): Return void.
10603 (dynamic_array_type): Update.
10604 * d-lang.h (d_val_print): Return void.
10605 * c-valprint.c (c_val_print): Return void.
10606 * c-lang.h (c_val_print): Return void.
10607 * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
10608 void.
10609 * ada-lang.h (ada_val_print): Return void.
10610
10611 2012-03-01 Tom Tromey <tromey@redhat.com>
10612
10613 * value.h (val_print): Return void.
10614 * valprint.c (val_print): Return void.
10615
10616 2012-03-01 Tom Tromey <tromey@redhat.com>
10617
10618 * value.h (common_val_print): Return void.
10619 * valprint.c (common_val_print): Return void.
10620
10621 2012-03-01 Tom Tromey <tromey@redhat.com>
10622
10623 * value.h (value_print): Return void.
10624 * valprint.c (value_print): Return void.
10625 * p-valprint.c (pascal_value_print): Return void.
10626 * p-lang.h (pascal_value_print): Return void.
10627 * language.h (struct language_defn) <la_value_print>: Return
10628 void.
10629 * language.c (unk_lang_value_print): Return void.
10630 * jv-valprint.c (java_value_print): Return void.
10631 * jv-lang.h (java_value_print): Return void.
10632 * f-valprint.c (c_value_print): Don't declare.
10633 Include c-lang.h.
10634 * c-valprint.c (c_value_print): Return void.
10635 * c-lang.h (c_value_print): Return void.
10636 * ada-valprint.c (ada_value_print): Return void.
10637 * ada-lang.h (ada_value_print): Return void.
10638
10639 2012-03-01 Tom Tromey <tromey@redhat.com>
10640
10641 * value.c (value_primitive_field): Handle virtual base classes.
10642
10643 2012-03-01 Tom Tromey <tromey@redhat.com>
10644
10645 * gdbtypes.h (struct vbase): Remove.
10646
10647 2012-03-01 Tom Tromey <tromey@redhat.com>
10648
10649 * c-valprint.c (print_function_pointer_address): Move...
10650 * valprint.c: ... here. Make non-static.
10651 * m2-valprint.c (print_function_pointer_address): Remove.
10652 * valprint.h (print_function_pointer_address): Declare.
10653
10654 2012-03-01 Joel Brobecker <brobecker@adacore.com>
10655
10656 * NEWS: Document the fact that one can provide a condition when
10657 creating an Ada exception catchpoint.
10658
10659 2012-03-01 Tom Tromey <tromey@redhat.com>
10660
10661 * valprint.c (val_print_type_code_flags): Fix placement of
10662 trailing brace.
10663
10664 2012-03-01 Joel Brobecker <brobecker@adacore.com>
10665
10666 * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
10667 (update_files): Do not set MULTILINE_COMMENT_PREFIXES
10668 environment variable before calling update-copyright.
10669
10670 2012-03-01 Joel Brobecker <brobecker@adacore.com>
10671
10672 * gnulib/extra/update-copyright: Update to the latest from
10673 gnulib's git repository.
10674 * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
10675 variable to 2 instead of 1.
10676
10677 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10678
10679 * varobj.c (c_value_of_variable): Remove dead code.
10680
10681 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10682
10683 * ada-lex.p (processId): Do not modify already encoded IDs.
10684 Update function documentation.
10685
10686 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10687
10688 * ada-lang.h (ada_find_renaming_symbol): Replace parameter
10689 "name" with "struct symbol *name_sym".
10690 * ada-exp.y (write_var_or_type): Update call to
10691 ada_find_renaming_symbol.
10692 "name" with "struct symbol *name_sym". Adjust Implementation
10693 accordingly. Adjust the function documentation.
10694
10695 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10696
10697 * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
10698 * ada-lang.c (ada_find_any_type): Add advance declaration.
10699 Make static. Replace ada_find_any_symbol by
10700 ada_find_any_type_symbol.
10701 (ada_find_any_type_symbol): Renames ada_find_any_symbol.
10702 Improve function description. Make static.
10703 (ada_find_renaming_symbol, find_old_style_renaming_symbol):
10704 Replace ada_find_any_symbol by ada_find_any_type_symbol.
10705
10706 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10707
10708 * ada-lang.c (struct tag_args): Delete.
10709 (ada_get_tsd_type): Function body moved up in source file.
10710 (ada_tag_name_1, ada_tag_name_2): Delete.
10711 (ada_get_tsd_from_tag): New function.
10712 (ada_tag_name_from_tsd): New function.
10713 (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
10714 to determine the tag name.
10715
10716 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10717
10718 * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
10719 declaration.
10720 * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
10721 function.
10722
10723 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10724
10725 * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
10726
10727 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10728
10729 * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
10730 full searches.
10731
10732 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10733
10734 * ada-lang.c (constrained_packed_array_type): If there is a
10735 parallel XA type, use it to determine the array index type.
10736
10737 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10738
10739 * ada-valprint.c (ada_val_print_1): If our value is a reference
10740 to an array descriptor, dereference it before converting it
10741 to a simple array.
10742
10743 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10744
10745 * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
10746 creating fixed value.
10747 (ada_value_ind, ada_coerce_ref, assign_component)
10748 (ada_evaluate_subexp): Remove call to unwrap_value before
10749 call to ada_to_fixed_value.
10750
10751 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10752
10753 * ada-lang.c (to_fixed_array_type): Set result's type name.
10754
10755 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10756
10757 * ada-lang.c (catch_ada_exception_command_split): Add new
10758 argument cond_string. Add support for condition at end of
10759 "catch exception" commands.
10760 (ada_decode_exception_location): Add new argument cond_string.
10761 Update call to catch_ada_exception_command_split.
10762 (create_ada_exception_catchpoint): Add new argument cond_string.
10763 Set the breakpoint condition if needed.
10764 (catch_ada_exception_command): Update call to
10765 ada_decode_exception_location.
10766 (ada_decode_assert_location): Add function documentation.
10767 Add support for condition at end of "catch assert" command.
10768 (catch_assert_command): Update calls to ada_decode_assert_location
10769 and create_ada_exception_catchpoint.
10770
10771 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
10772
10773 Fix disp-step-syscall.exp: fork: single step over fork.
10774 * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
10775 (i386_linux_get_syscall_number_from_regcache): ... here, new function
10776 comment, change parameters gdbarch and ptid to regcache. Remove
10777 parameter regcache, initialize gdbarch from regcache here.
10778 (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
10779 New functions.
10780 (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
10781 instead.
10782 * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
10783 'syscall'. Make the 'int' check more strict.
10784
10785 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
10786
10787 Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
10788 * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
10789 (i386_linux_intx80_sysenter_syscall_record): ... here.
10790 (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
10791 Use the renamed function name.
10792
10793 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
10794
10795 * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
10796 * breakpoint.c (until_break_command): Likewise.
10797 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
10798 * infcall.c (call_function_by_hand): Likewise.
10799 * infcmd.c (finish_forward): Likewise.
10800 * infrun.c (insert_exception_resume_breakpoint): Likewise.
10801
10802 2012-02-28 Tristan Gingold <gingold@adacore.com>
10803
10804 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
10805 avoid variable assignments inside condition.
10806
10807 2012-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
10808
10809 Fix static analysis issue found by cppcheck.
10810 * microblaze-tdep.c (microblaze_extract_return_value): Fix
10811 uninitialized BUF for size 2.
10812
10813 2012-02-27 Chris Dearman <chris@mips.com>
10814 Nathan Froyd <froydnj@codesourcery.com>
10815 Maciej W. Rozycki <macro@codesourcery.com>
10816
10817 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
10818 (mips16_instruction_has_delay_slot): Likewise.
10819 (mips_segment_boundary): Likewise.
10820 (mips_adjust_breakpoint_address): Likewise.
10821 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
10822
10823 2012-02-27 Maciej W. Rozycki <macro@mips.com>
10824 Maciej W. Rozycki <macro@codesourcery.com>
10825
10826 * infrun.c (handle_inferior_event): Don't proceed through
10827 shared library trampolines if stepping at the machine
10828 instruction level.
10829
10830 2012-02-27 Maciej W. Rozycki <macro@codesourcery.com>
10831
10832 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
10833 too.
10834
10835 2012-02-27 Thomas Schwinge <thomas@codesourcery.com>
10836
10837 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
10838 (sh_stub_unwind_sniffer): New functions.
10839 (sh_stub_unwind): New variable.
10840 (sh_gdbarch_init): Wire everything.
10841
10842 2012-02-27 Pedro Alves <palves@redhat.com>
10843
10844 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
10845 (linux_nat_post_attach_wait): Adjust to use
10846 linux_proc_pid_is_stopped.
10847 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
10848 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
10849 based on pid_is_stopped from both linux-nat.c and
10850 gdbserver/linux-low.c, and renamed.
10851
10852 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
10853
10854 * remote.c (remote_watchpoint_addr_within_range): New function.
10855 (init_remote_ops): Use it.
10856
10857 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
10858
10859 * target.h (target_watchpoint_addr_within_range): Document macro.
10860
10861 2012-02-24 Pedro Alves <palves@redhat.com>
10862
10863 * stack.c (set_last_displayed_sal): Issue internal_error instead
10864 of warning, and issue it after clearing the last displayed sal.
10865
10866 2012-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
10867 Pedro Alves <palves@redhat.com>
10868
10869 * breakpoint.c (until_break_command): Install breakpoints after
10870 all frame manipulations.
10871
10872 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
10873
10874 * remote.c (remote_supports_cond_breakpoints): New forward
10875 declaration.
10876 (remote_add_target_side_condition): New function.
10877 (remote_insert_breakpoint): Add target-side breakpoint
10878 conditional if supported.
10879 (remote_insert_hw_breakpoint): Likewise.
10880 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
10881 hook.
10882
10883 * target.c (update_current_target): Inherit
10884 to_supports_evaluation_of_breakpoint_conditions.
10885 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
10886
10887 * target.h (struct target_ops)
10888 <to_supports_evaluation_of_breakpoint_conditions>: New field.
10889 (target_supports_evaluation_of_breakpoint_conditions): New #define.
10890
10891 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
10892 (condition_evaluation_both, condition_evaluation_auto,
10893 condition_evaluation_host, condition_evaluation_target,
10894 condition_evaluation_enums, condition_evaluation_mode_1,
10895 condition_evaluation_mode): New static globals.
10896 (translate_condition_evaluation_mode): New function.
10897 (breakpoint_condition_evaluation_mode): New function.
10898 (gdb_evaluates_breakpoint_condition_p): New function.
10899 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
10900 (mark_breakpoint_modified): New function.
10901 (mark_breakpoint_location_modified): New function.
10902 (set_condition_evaluation_mode): New function.
10903 (show_condition_evaluation_mode): New function.
10904 (bp_location_compare_addrs): New function.
10905 (get_first_location_gte_addr): New helper function.
10906 (set_breakpoint_condition): Free condition bytecode if locations
10907 has become unconditional. Call mark_breakpoint_modified (...).
10908 (condition_command): Call update_global_location_list (1) for
10909 breakpoints.
10910 (breakpoint_xfer_memory): Use is_breakpoint (...).
10911 (is_breakpoint): New function.
10912 (parse_cond_to_aexpr): New function.
10913 (build_target_condition_list): New function.
10914 (insert_bp_location): Handle target-side conditional
10915 breakpoints and call build_target_condition_list (...).
10916 (update_inserted_breakpoint_locations): New function.
10917 (insert_breakpoint_locations): Handle target-side conditional
10918 breakpoints.
10919 (bpstat_check_breakpoint_conditions): Add comment.
10920 (bp_condition_evaluator): New function.
10921 (bp_location_condition_evaluator): New function.
10922 (print_breakpoint_location): Print information on where the condition
10923 will be evaluated.
10924 (print_one_breakpoint_location): Likewise.
10925 (init_bp_location): Call mark_breakpoint_location_modified (...) for
10926 breakpoint location.
10927 (force_breakpoint_reinsertion): New functions.
10928 (update_global_location_list): Handle target-side breakpoint
10929 conditions.
10930 Reinsert locations that are already inserted if conditions have
10931 changed.
10932 (bp_location_dtor): Free agent expression bytecode.
10933 (disable_breakpoint): Call mark_breakpoint_modified (...).
10934 Call update_global_location_list (...) with parameter 1 for breakpoints.
10935 (disable_command): Call mark_breakpoint_location_modified (...).
10936 Call update_global_location_list (...) with parameter 1 for breakpoints.
10937 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
10938 (enable_command): mark_breakpoint_location_modified (...).
10939 (_initialize_breakpoint): Update documentation and add
10940 condition-evaluation breakpoint subcommand.
10941
10942 * breakpoint.h: Include ax.h.
10943 (condition_list): New data structure.
10944 (condition_status): New enum.
10945 (bp_target_info) <cond_list>: New field.
10946 (bp_location) <condition_changed, cond_bytecode>: New fields.
10947 (is_breakpoint): New prototype.
10948
10949 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
10950
10951 * remote.c (remote_state) <cond_breakpoints>: New field.
10952 (PACKET_ConditionalBreakpoints): New enum.
10953 (remote_cond_breakpoint_feature): New function.
10954 (remote_protocol_features): Add new ConditionalBreakpoints entry.
10955 (remote_supports_cond_breakpoints): New function.
10956 (_initialize_remote): Add new packet configuration for
10957 target-side conditional breakpoints.
10958
10959 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
10960
10961 * NEWS: Mention target-side conditional breakpoint support,
10962 new condition-evaluation breakpoint subcommand and remote
10963 packet extensions.
10964
10965 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
10966
10967 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
10968 number.
10969
10970 2012-02-24 Thomas Schwinge <thomas@codesourcery.com>
10971
10972 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
10973 (after_prologue): Remove.
10974
10975 2012-02-23 Tom Tromey <tromey@redhat.com>
10976
10977 * jv-valprint.c (java_val_print): Remove dead code.
10978
10979 2012-02-23 Tristan Gingold <gingold@adacore.com>
10980
10981 * ada-tasks.c (struct ada_tasks_inferior_data): Add
10982 known_tasks_element and known_tasks_length fields.
10983 (read_known_tasks_array): Change argument type. Use pointer type
10984 and number of elements from DATA. Adjust.
10985 (read_known_tasks_list): Likewise.
10986 (get_known_tasks_addr): Remove.
10987 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
10988 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
10989 type and array length. Merge former get_known_tasks_addr code.
10990
10991 2012-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
10992
10993 PR backtrace/13716
10994 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
10995 it after set_momentary_breakpoint.
10996
10997 2012-02-22 Sterling Augustine <saugustine@google.com>
10998
10999 PR 13689:
11000 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
11001
11002 2012-02-22 Gary Benson <gbenson@redhat.com>
11003
11004 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
11005 (find_slot_in_mapped_hash): Likewise.
11006
11007 2012-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
11008
11009 PR build/13638
11010 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
11011 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
11012 * configure: Regenerate.
11013
11014 2012-02-21 Tristan Gingold <gingold@adacore.com>
11015 Pedro Alves <palves@redhat.com>
11016
11017 * ia64-tdep.c: Do not include libunwind-ia64.h.
11018 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
11019 Include libunwind-ia64.h instead of libunwind.h.
11020 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
11021 for libunwind.h existence.
11022 * configure, config.in: Regenerate.
11023
11024 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
11025
11026 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
11027 instead of value_rtti_target_type.
11028 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
11029 instead of value_rtti_target_type.
11030 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
11031 value_rtti_target_type.
11032 * valops.c (value_ind): Extract function readjust_indirect_value_type.
11033 (value_rtti_target_type): Rename to ...
11034 (value_rtti_indirect_type): ... here and make it indirect. Update
11035 function comment.
11036 * value.c (readjust_indirect_value_type): New function.
11037 (coerce_ref): Support for enclosing type setting for references
11038 with readjust_indirect_value_type.
11039 * value.h (readjust_value_type): New declaration.
11040 (value_rtti_target_type): Rename to ...
11041 (value_rtti_indirect_type): ... here.
11042
11043 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
11044
11045 * MAINTAINERS (Write After Approval): Add myself to the list.
11046
11047 2012-02-20 Doug Evans <dje@google.com>
11048
11049 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
11050 Rename objfile_p_char parameter to objfilep.
11051 (build_objfile_section_table): Result is now void. All callers
11052 updated.
11053 * objfiles.h (struct objfile): Tweak comments, whitespace.
11054 (build_objfile_section_table): Update.
11055
11056 * elfread.c (elf_symfile_segments): Fix warning text.
11057
11058 2012-02-20 Tom Tromey <tromey@redhat.com>
11059
11060 PR gdb/13498:
11061 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
11062 particular set of file names once.
11063 (dw2_map_symbol_filenames): Likewise.
11064
11065 2012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
11066
11067 Code cleanup.
11068 * main.c (write_files): Remove the declaration.
11069 (external_editor_command): Move the declaration ...
11070 [GDBTK] (external_editor_command): ... here. Fix the comment.
11071
11072 2012-02-20 Tom Tromey <tromey@redhat.com>
11073
11074 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
11075 extraneous block.
11076
11077 2012-02-20 Tristan Gingold <gingold@adacore.com>
11078
11079 * darwin-nat.h (enum darwin_msg_state): Add comments.
11080
11081 2012-02-20 Tristan Gingold <gingold@adacore.com>
11082
11083 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
11084 value.
11085
11086 2012-20-18 Joel Brobecker <brobecker@adacore.com>
11087
11088 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
11089 between function description and implementation.
11090
11091 2012-02-17 Tom Tromey <tromey@redhat.com>
11092
11093 PR python/12070:
11094 * python/py-event.c (event_object_getset): New global.
11095 (event_object_type): Reference it.
11096 * python/py-type.c (field_object_getset): New global.
11097 (field_object_type): Reference it.
11098 * python/python-internal.h (gdb_py_generic_dict): Declare.
11099 * python/py-utils.c (gdb_py_generic_dict): New function.
11100
11101 2012-02-17 Tristan Gingold <gingold@adacore.com>
11102
11103 * solib-darwin.c (darwin_current_sos): Check magic and filetype
11104
11105 2012-02-17 Thomas Schwinge <thomas@codesourcery.com>
11106
11107 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
11108 TYPE_CALLING_CONVENTION annotation.
11109
11110 2012-02-16 Kevin Buettner <kevinb@redhat.com>
11111
11112 * MAINTAINERS: Add rx to target ISA section.
11113 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
11114 (ALLDEPFILES): Add rx-tdep.c.
11115
11116 2012-02-16 Tom Tromey <tromey@redhat.com>
11117
11118 * symfile.c (symbol_file_add_main_1): Use inferior's
11119 symfile_flags.
11120 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
11121 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
11122 inferior.
11123 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
11124 inferior.
11125 (follow_exec): Use inferior's symfile_flags.
11126 * inferior.h (struct inferior) <symfile_flags>: New field.
11127
11128 2012-02-16 Mike Frysinger <vapier@gentoo.org>
11129
11130 PR gdb/9734:
11131 * remote-sim.c (gdbsim_create_inferior): Call error() when
11132 sim_create_inferior() fails.
11133
11134 2012-02-16 Josh Matthews <josh@joshmatthews.net>
11135
11136 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
11137
11138 2012-02-16 Tom Tromey <tromey@redhat.com>
11139
11140 PR c++/13653:
11141 * thread.c (struct current_thread_cleanup) <was_removable>: New
11142 field.
11143 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
11144 (make_cleanup_restore_current_thread): Initialize new field.
11145
11146 2012-02-15 Kevin Buettner <kevinb@redhat.com>
11147
11148 * MAINTAINERS: Add rl78 to target ISA section.
11149 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
11150 (ALLDEPFILES): Add rl78-tdep.c.
11151 * NEWS: Mention rl78 as a new target.
11152
11153 2012-02-15 Aleksandar Ristovski <aristovski@qnx.com>
11154
11155 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
11156 data.
11157 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
11158
11159 2012-02-15 Tom Tromey <tromey@redhat.com>
11160
11161 PR gdb/12659:
11162 * infcmd.c (registers_info): Print just the current register's
11163 name.
11164
11165 2012-02-15 Tom Tromey <tromey@redhat.com>
11166
11167 * python/py-symbol.c (sympy_value): Use _().
11168
11169 2012-02-15 Pedro Alves <palves@redhat.com>
11170
11171 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
11172 output to be like native targets'.
11173 (remote_pid_to_str): Special case the null ptid.
11174
11175 2012-02-14 Stan Shebs <stan@codesourcery.com>
11176
11177 * NEWS: Mention enable count command.
11178 * breakpoint.h (struct breakpoint): New field enable_count.
11179 * breakpoint.c (enable_breakpoint_disp): Add count argument.
11180 (enable_breakpoint): Add arg to call.
11181 (struct disp_data): New struct.
11182 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
11183 (do_map_enable_once_breakpoint): Create a struct and pass it.
11184 (do_map_enable_delete_breakpoint): Ditto.
11185 (do_map_enable_count_breakpoint): New function.
11186 (enable_count_command): New function.
11187 (bpstat_stop_status): Decrement enable_count.
11188 (print_one_breakpoint_location): Report enable count.
11189 (_initialize_breakpoint): Add enable count command.
11190
11191 2012-02-14 Kevin Buettner <kevinb@redhat.com>
11192
11193 * rl78-tdep.c (reggroups.h): Include.
11194 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
11195 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
11196 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
11197 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
11198 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
11199 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
11200 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
11201 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
11202 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
11203 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
11204 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
11205 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
11206 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
11207 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
11208 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
11209 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
11210 beginning of register list.
11211 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
11212 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
11213 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
11214 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
11215 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
11216 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
11217 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
11218 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
11219 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
11220 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
11221 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
11222 the pseudo registers. Rearrange other pseudo registers too so
11223 that the bank registers appear at the end.
11224 (rl78_register_type): Account for the fact that the byte sized
11225 bank registers are now pseudo-registers.
11226 (rl78_register_name): Rearrange the register name array. Make
11227 initial set of raw banked registers inaccessible.
11228 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
11229 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
11230 case for copying bytes back and forth between raw and pseudo
11231 versions of the banked registers. Update other cases to reflect
11232 the changed names.
11233 (rl78_return_value): Update to account for changed names of
11234 raw registers.
11235 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
11236 rl78_register_sim_regno().
11237
11238 2012-02-14 Kevin Buettner <kevinb@redhat.com>
11239
11240 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
11241 the name parameter being passed to find_pc_partial_function().
11242
11243 2012-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
11244
11245 * MAINTAINERS: Step down from being ia64 target maintainer.
11246
11247 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
11248
11249 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
11250 compilation warning.
11251
11252 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
11253
11254 Fix crash on loaded shlibs without loaded exec_bfd.
11255 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
11256 (set_section_command): Replace exec_bfd by p->bfd.
11257
11258 2012-02-10 Tom Tromey <tromey@redhat.com>
11259
11260 * linespec.c (decode_line_internal): Skip symtabs_from_filename
11261 when we have a C++ qualified name.
11262
11263 2012-02-10 Pedro Alves <palves@redhat.com>
11264
11265 * inferior.c (inferior_pid_to_str): New.
11266 (print_inferior, inferior_command): Use it.
11267
11268 2012-02-10 Pedro Alves <palves@redhat.com>
11269
11270 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
11271 the test CFLAGS.
11272 * configure: Regenerate.
11273
11274 2012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11275
11276 * linespec.c (decode_line_internal): Fix comment correctness.
11277
11278 2012-02-09 Valery Khromov <valery.khromov@gmail.com>
11279
11280 PR gdb/12953
11281 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
11282 * amd64bsd-nat.c: Add support for debug registers (adapted from
11283 i386bsd-nat.c).
11284 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
11285 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
11286 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
11287 (amd64bsd_dr_get_control): New functions.
11288 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
11289 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
11290 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
11291 watchpoints initialization.
11292 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
11293
11294 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
11295
11296 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
11297 flds_bnds.fields.
11298 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
11299
11300 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
11301
11302 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
11303
11304 2012-02-08 Joel Brobecker <brobecker@adacore.com>
11305
11306 * language.h (symbol_name_cmp_ftype): Renames
11307 symbol_name_match_p_ftype.
11308 (struct language_defn)[la_get_symbol_name_cmp]: Renames
11309 la_get_symbol_name_match_p.
11310 * ada-lang.c (ada_get_symbol_name_cmp): Renames
11311 ada_get_symbol_name_match_p. Update comment.
11312 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
11313 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
11314 Renames symbol_name_match_p. Update field type.
11315 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
11316 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11317 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
11318 "la_get_symbol_name_cmp" in comments.
11319 * language.c: Likewise.
11320
11321 2012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11322
11323 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
11324 %eflags offset.
11325 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
11326 (amd64_sol2_gregset32_reg_offs): Likewise.
11327
11328 2012-02-08 Joel Brobecker <brobecker@adacore.com>
11329
11330 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
11331 of the returned BFD is allocated by GDB.
11332
11333 2012-02-07 Tom Tromey <tromey@redhat.com>
11334
11335 PR python/12027:
11336 * python/python-internal.h (frame_object_type): Declare.
11337 * python/py-symbol.c (sympy_needs_frame): New function.
11338 (sympy_value): New function.
11339 (symbol_object_getset): Add "needs_frame".
11340 (symbol_object_methods): Add "value".
11341 * python/py-frame.c (frame_object_type): No longer static.
11342
11343 2012-02-07 Tom Tromey <tromey@redhat.com>
11344
11345 PR python/13599:
11346 * python/py-symbol.c (sympy_line): New function.
11347 (symbol_object_getset): Add "line".
11348
11349 2012-02-07 Tom Tromey <tromey@redhat.com>
11350
11351 * charset.c (find_charset_names): Check 'in' against NULL.
11352
11353 2012-02-06 Doug Evans <dje@google.com>
11354
11355 * gdbtypes.h (struct main_type): Change type of name,tag_name,
11356 and fields.name members from char * to const char *. All uses updated.
11357 (struct cplus_struct_type): Change type of fn_fieldlists.name member
11358 from char * to const char *. All uses updated.
11359 (type_name_no_tag): Update.
11360 (lookup_unsigned_typename, lookup_signed_typename): Update.
11361 * gdbtypes.c (type_name_no_tag): Change result type
11362 from char * to const char *. All callers updated.
11363 (lookup_unsigned_typename, lookup_signed_typename): Change type of
11364 name parameter from char * to const char *.
11365 * symtab.h (struct cplus_specific): Change type of demangled_name
11366 member from char * to const char *. All uses updated.
11367 (struct general_symbol_info): Change type of name and
11368 mangled_lang.demangled_name members from char * to const char *.
11369 All uses updated.
11370 (symbol_get_demangled_name, symbol_natural_name): Update.
11371 (symbol_demangled_name, symbol_search_name): Update.
11372 * symtab.c (symbol_get_demangled_name): Change result type
11373 from char * to const char *. All callers updated.
11374 (symbol_natural_name, symbol_demangled_name): Ditto.
11375 (symbol_search_name): Ditto.
11376 (completion_list_add_name): Change type of symname,sym_text,
11377 text,word parameters from char * to const char *.
11378 (completion_list_objc_symbol): Change type of sym_text,
11379 text,word parameters from char * to const char *.
11380 * ada-lang.c (find_struct_field): Change type of name parameter
11381 from char * to const char *.
11382 (encoded_ordered_before): Similarly for N0,N1 parameters.
11383 (old_renaming_is_invisible): Similarly for function_name parameter.
11384 (ada_type_name): Change result type from char * to const char *.
11385 All callers updated.
11386 * ada-lang.h (ada_type_name): Update.
11387 * buildsym.c (hashname): Change type of name parameter
11388 from char * to const char *.
11389 * buildsym.h (hashname): Update.
11390 * dbxread.c (end_psymtab): Change type of include_list parameter
11391 from char ** to const char **.
11392 * dwarf2read.c (determine_prefix): Change result type
11393 from char * to const char *. All callers updated.
11394 * f-lang.c (find_common_for_function): Change type of name, funcname
11395 parameters from char * to const char *.
11396 * f-lang.c (find_common_for_function): Update.
11397 * f-valprint.c (list_all_visible_commons): Change type of funcname
11398 parameters from char * to const char *.
11399 * gdbarch.sh (static_transform_name): Change type of name parameter
11400 and result from char * to const char *.
11401 * gdbarch.c: Regenerate.
11402 * gdbarch.h: Regenerate.
11403 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
11404 of name parameter from char * to const char *.
11405 * jv-lang.c (java_primitive_type_from_name): Ditto.
11406 (java_demangled_signature_length): Similarly for signature parameter.
11407 (java_demangled_signature_copy): Ditto.
11408 (java_demangle_type_signature): Ditto.
11409 * jv-lang.h (java_primitive_type_from_name): Update.
11410 (java_demangle_type_signature): Update.
11411 * objc-lang.c (specialcmp): Change type of a,b parameters
11412 from char * to const char *.
11413 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
11414 from char * to const char *. All callers updated.
11415 * p-lang.h (is_pascal_string_type): Update.
11416 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
11417 of name parameter from char * to const char *.
11418 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
11419 * utils.c (fprintf_symbol_filtered): Ditto.
11420 * defs.h (fprintf_symbol_filtered): Update.
11421 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
11422 * stabsread.h (end_psymtab): Update.
11423 * stack.c (find_frame_funname): Change type of funname parameter
11424 from char ** to const char **.
11425 * stack.h (find_frame_funname): Update.
11426 * typeprint.c (type_print): Change type of varstring parameter
11427 from char * to const char *.
11428 * value.h (type_print): Update.
11429 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
11430 from char * to const char *. All callers updated.
11431 (xcoff_end_psymtab): Change type of include_list parameter
11432 from char ** to const char **. All callers updated.
11433 (swap_sym): Similarly for name parameter. All callers updated.
11434 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
11435 Use xstrdup.
11436 (process_coff_symbol): Use xstrdup.
11437 * stabsread.c (stabs_method_name_from_physname): Renamed from
11438 update_method_name_from_physname. Change result type from void
11439 to char *. All callers updated.
11440 (read_member_functions): In has_destructor case, store name in objfile
11441 obstack instead of malloc space. In !has_stub case, fix mem leak.
11442
11443 2012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
11444
11445 * configure: Rebuild.
11446 * configure.ac: Put -L../bfd and -L../libiberty at the front of
11447 LDFLAGS.
11448
11449 2012-02-03 Kevin Buettner <kevinb@redhat.com>
11450
11451 * configure.tgt (rl78-*-elf): New target.
11452 * rl78-tdep.c: New file.
11453
11454 2012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11455
11456 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
11457 and continue the loop. Add QUIT statement.
11458
11459 2012-02-03 Tom Tromey <tromey@redhat.com>
11460
11461 PR gdb/13596:
11462 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
11463 bfd_lookup_symbol_from_symtab.
11464 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
11465 gdb_bfd_lookup_symbol_from_symtab.
11466
11467 2012-02-03 Joel Brobecker <brobecker@adacore.com>
11468
11469 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
11470 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
11471 symbol. Add assertion that sym2 is never NULL.
11472
11473 2012-02-02 Doug Evans <dje@google.com>
11474
11475 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
11476 "name" parameter to const char ** from char **. All callers updated.
11477 (find_pc_partial_function): Ditto.
11478 (cache_pc_function_name): Change type to const char * from char *.
11479 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
11480 (find_pc_partial_function): Update.
11481 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
11482 type of "name" parameter to const char * from char *.
11483 All uses updated.
11484 * arch-utils.c (generic_in_solib_return_trampoline): Change
11485 type of "name" parameter to const char * from char *.
11486 * arch-utils.h (generic_in_solib_return_trampoline): Update.
11487 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
11488 type of "name" parameter to const char * from char *.
11489 * gdbarch.sh (in_solib_return_trampoline): Ditto.
11490 * gdbarch.c: Regenerate.
11491 * gdbarch.h: Regenerate.
11492 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
11493 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
11494 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
11495 type of "name" parameter to const char * from char *.
11496 * skip.c (skip_function_pc): Ditto.
11497 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
11498 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
11499 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
11500 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
11501 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
11502 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
11503 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
11504 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
11505 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
11506
11507 2012-02-02 Pedro Alves <palves@redhat.com>
11508
11509 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
11510 the current inferior has no execution. Make sure the current
11511 remote process matches gdb's current inferior.
11512
11513 2012-02-02 Tom Tromey <tromey@redhat.com>
11514
11515 PR gdb/13405:
11516 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
11517 read-only memory.
11518
11519 2012-02-02 Tom Tromey <tromey@redhat.com>
11520
11521 PR gdb/9307:
11522 * symtab.c (lookup_language_this): Set block_found.
11523
11524 2012-02-01 Tom Tromey <tromey@redhat.com>
11525
11526 PR gdb/13431:
11527 * jit.c (struct jit_inferior_data): Rewrite.
11528 (struct jit_objfile_data): New.
11529 (get_jit_objfile_data): New function.
11530 (add_objfile_entry): Update.
11531 (jit_read_descriptor): Return int. Replace descriptor_addr
11532 argument with inf_data. Update. Don't call error.
11533 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
11534 descriptor here.
11535 (jit_inferior_init): Don't look up descriptor. Don't call error.
11536 (jit_reset_inferior_data_and_breakpoints)
11537 (jit_inferior_created_observer): Remove.
11538 (jit_inferior_exit_hook): Update.
11539 (jit_executable_changed_observer): Remove.
11540 (jit_event_handler): Update.
11541 (free_objfile_data): Reset inferior data if needed.
11542 (_initialize_jit): Update.
11543
11544 2012-02-01 Tom Tromey <tromey@redhat.com>
11545
11546 * jit.c (bfd_open_from_target_memory): Move higher in file.
11547
11548 2012-02-01 Tristan Gingold <gingold@adacore.com>
11549
11550 * libunwind-frame.c (libunwind_load): Display message if dlopen
11551 failed.
11552
11553 2012-02-01 Gary Benson <gbenson@redhat.com>
11554
11555 * symtab.h (symbol_found_callback_ftype): New typedef.
11556 (iterate_over_symbols): Use the above.
11557 * symtab.c (iterate_over_symbols): Likewise.
11558 * language.h (language_defn->la_iterate_over_symbols): Likewise.
11559 * ada-lang.c (ada_iterate_over_symbols): Likewise.
11560 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
11561 (iterate_name_matcher): Document return values.
11562 (collect_one_symbol): Likewise.
11563 (collect_function_symbols): Likewise.
11564 (collect_symbols): Likewise.
11565
11566 2012-02-01 Tom Tromey <tromey@redhat.com>
11567
11568 * ada-lang.c (resolve_subexp): Update.
11569 (ada_lookup_symbol_list): Add 'full_search' argument.
11570 (ada_iterate_over_symbols): Pass 0 as full_search argument to
11571 ada_lookup_symbol_list.
11572 (ada_lookup_encoded_symbol): Update.
11573 (get_var_value): Update.
11574 * ada-exp.y (block_lookup): Update.
11575 (write_var_or_type): Update.
11576 (write_name_assoc): Update.
11577 * ada-lang.h (ada_lookup_symbol_list): Update.
11578
11579 2012-01-31 Tom Tromey <tromey@redhat.com>
11580
11581 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
11582 comment.
11583
11584 2012-01-31 Doug Evans <dje@google.com>
11585
11586 * symtab.h: Remove outdated comment.
11587 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
11588
11589 2012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
11590
11591 Fix build error in Darwin port.
11592 * i386-darwin-nat.c: Include i386-nat.h.
11593
11594 2012-01-30 Tom Tromey <tromey@redhat.com>
11595
11596 PR breakpoints/13568:
11597 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
11598 argument. Check for recursive includes.
11599 (dwarf_decode_macros): Create an include hash.
11600
11601 2012-01-30 Michael Eager <eager@eagercon.com>
11602
11603 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
11604 * ppc-linux-tdep.c: Include glibc-tdep.h.
11605 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
11606 (powerpc_linux_in_plt_stub): New function.
11607 (powerpc_linux_in_dynsym_resolve_code): New function.
11608 (ppc_skip_trampoline_code): New function.
11609 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
11610 Use glibc_skip_solib_resolver.
11611
11612 2012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
11613
11614 Code cleanup: Make 1440 bytes of data segment read-only.
11615 * arch-utils.c (endian_enum): Make it const char *const [].
11616 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
11617 Likewise.
11618 * breakpoint.c (always_inserted_enums): Likewise.
11619 * cli/cli-cmds.c (script_ext_enums): Likewise.
11620 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
11621 enumlist parameter const char *const *.
11622 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
11623 const char *const *.
11624 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
11625 parameter const char *const *.
11626 * cris-tdep.c (cris_modes): Make it const char *const [].
11627 * filesystem.c (target_file_system_kinds): Likewise.
11628 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
11629 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
11630 (can_use_displaced_stepping_enum, scheduler_enums)
11631 (exec_direction_names): Likewise.
11632 * language.c (_initialize_language): Make the type_or_range_names and
11633 case_sensitive_names variables const char *const [].
11634 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
11635 * python/python.c (python_excp_enums): Likewise.
11636 * remote.c (interrupt_sequence_modes): Likewise.
11637 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
11638 * serial.c (logbase_enums): Likewise.
11639 * sh-tdep.c (sh_cc_enum): Likewise.
11640 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
11641 Likewise.
11642 * symtab.c (multiple_symbols_modes): Likewise.
11643 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
11644 Likewise.
11645 * utils.c (internal_problem_modes): Likewise.
11646
11647 2012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
11648
11649 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
11650 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
11651 result.
11652
11653 2012-01-27 Doug Evans <dje@google.com>
11654
11655 * configure.ac (with_python): Fix absolute path handling for win32.
11656 * configure: Regenerate.
11657
11658 2012-01-26 Doug Evans <dje@google.com>
11659
11660 * symtab.c: Whitespace cleanup, no code changes.
11661
11662 * symtab.c (lookup_symbol_in_language): Improve comment.
11663 (lookup_symbol_aux): Fix comment.
11664
11665 * psymtab.c (add_psymbol_to_list): Result is now "void".
11666 * psympriv.h (add_psymbol_to_list): Update.
11667
11668 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
11669
11670 2012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
11671
11672 Do not open script filenames twice.
11673 * cli/cli-cmds.c (source_script_from_stream): Pass to
11674 source_python_script also STREAM.
11675 * python/py-auto-load.c (source_section_scripts): Pass to
11676 source_python_script_for_objfile also STREAM.
11677 (auto_load_objfile_script): Pass to source_python_script_for_objfile
11678 also INPUT.
11679 * python/python-internal.h (source_python_script_for_objfile): New
11680 parameter file, rename parameter file to filename.
11681 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
11682 instead if !_WIN32. Update the function comment.
11683 (source_python_script, source_python_script_for_objfile)
11684 (source_python_script): New parameter file, rename parameter file to
11685 filename. Pass FILENAME to python_run_simple_file.
11686 * python/python.h (source_python_script): New parameter file, rename
11687 parameter file to filename.
11688
11689 2012-01-26 Pedro Alves <palves@redhat.com>
11690
11691 * corelow.c (core_has_fake_pid): Delete.
11692 (core_close): Delete references to `core_has_fake_pid'.
11693 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
11694 (core_open): Delete references to `core_has_fake_pid'.
11695 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
11696 the removed global.
11697
11698 2012-01-26 Joel Brobecker <brobecker@adacore.com>
11699
11700 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
11701 Remove language parameter from name_matcher. Adjust the comment.
11702 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
11703 Remove language parameter.
11704 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
11705 * linespec.c (iterate_name_matcher): Likewise.
11706 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
11707 name_matcher. Adjust call accordingly.
11708 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
11709 (maintenance_check_symtabs): Adjust type of parameter "fun".
11710 * psymtab.h (maintenance_check_symtabs): Likewise.
11711
11712 2012-01-26 Joel Brobecker <brobecker@adacore.com>
11713
11714 * language.h (symbol_name_match_p_ftype): New typedef.
11715 (struct language_defn): Replace field la_symbol_name_compare
11716 by la_get_symbol_name_match_p.
11717 * ada-lang.c (ada_get_symbol_name_match_p): New function.
11718 (ada_language_defn): Use it.
11719 * linespec.c (struct symbol_matcher_data): New type.
11720 (iterate_name_matcher): Rewrite.
11721 (iterate_over_all_matching_symtabs): Pass a pointer to
11722 a symbol_matcher_data struct to expand_symtabs_matching
11723 instead of just the lookup name.
11724 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11725 opencl-lang.c, p-lang.c, language.c: Delete field
11726 la_symbol_name_compare, and replace by NULL for new field
11727 la_get_symbol_name_match_p.
11728 * symfile.h (struct quick_symbol_functions): Update comment.
11729
11730 2012-01-25 Tom Tromey <tromey@redhat.com>
11731
11732 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
11733 dereferencing.
11734
11735 2012-01-24 Tom Tromey <tromey@redhat.com>
11736
11737 PR symtab/12406:
11738 * solib.c (update_solib_list): Update the program space's
11739 added_solibs and deleted_solibs fields.
11740 * progspace.h (struct program_space) <added_solibs,
11741 deleted_solibs>: New fields.
11742 (clear_program_space_solib_cache): Declare.
11743 * progspace.c (release_program_space): Call
11744 clear_program_space_solib_cache.
11745 (clear_program_space_solib_cache): New function.
11746 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
11747 bpstat_stop_status. Use handle_solib_event.
11748 * breakpoint.c: Include gdb_regex.h.
11749 (print_solib_event): New function.
11750 (bpstat_print): Use print_solib_event.
11751 (bpstat_stop_status): Add special case for bp_shlib_event.
11752 (handle_solib_event): New function.
11753 (bpstat_what): Use handle_solib_event.
11754 (struct solib_catchpoint): New.
11755 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
11756 (breakpoint_hit_catch_solib, check_status_catch_solib)
11757 (print_it_catch_solib, print_one_catch_solib)
11758 (print_mention_catch_solib, print_recreate_catch_solib): New
11759 functions.
11760 (catch_solib_breakpoint_ops): New global.
11761 (catch_load_or_unload, catch_load_command_1)
11762 (catch_unload_command_1): New functions.
11763 (internal_bkpt_check_status): Add special case for
11764 bp_shlib_event.
11765 (internal_bkpt_print_it): Use print_solib_event.
11766 (initialize_breakpoint_ops): Initialize
11767 catch_solib_breakpoint_ops.
11768 (_initialize_breakpoint): Register "catch load" and "catch
11769 unload".
11770 * breakpoint.h (handle_solib_event): Declare.
11771 * NEWS: Add entry for "catch load" and "catch unload".
11772
11773 2012-01-24 Tom Tromey <tromey@redhat.com>
11774
11775 * ada-lang.c: Include gdb_vecs.h.
11776 * charset.c: Include gdb_vecs.h.
11777 * tracepoint.h: Include gdb_vecs.h.
11778 * gdb_vecs.h: New file.
11779
11780 2012-01-24 Pedro Alves <pedro@codesourcery.com>
11781
11782 * breakpoint.c (breakpoint_hit_catch_fork)
11783 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
11784 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
11785 * infrun.c (inferior_has_forked, inferior_has_vforked)
11786 (inferior_has_execd, inferior_has_called_syscall): Delete.
11787 (handle_syscall_event): Get syscall_number from the execution
11788 control state's wait status.
11789 (wait_for_inferior): Don't clear syscall_number.
11790
11791 2012-01-24 Pedro Alves <palves@redhat.com>
11792
11793 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
11794 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
11795 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
11796 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
11797 `ws' parameter.
11798 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
11799 false for events other than TARGET_SIGNAL_TRAP.
11800 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
11801 Add `ws' parameter.
11802 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
11803 events other than TARGET_SIGNAL_TRAP.
11804 (tracepoint_breakpoint_hit): Add `ws' parameter.
11805 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
11806 parameter.
11807 (bpstat_stop_status): Same.
11808 (pc_at_non_inline_function): Same.
11809 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
11810 to pass the current event's waitstatus to bpstat_stop_status
11811 and pc_at_non_inline_function.
11812
11813 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
11814
11815 Code cleanup.
11816 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
11817 Update the function comment for it.
11818 (source_script_with_search): Call make_cleanup_fclose for STREAM.
11819 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
11820 for STREAM.
11821
11822 2012-01-24 Pedro Alves <palves@redhat.com>
11823
11824 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
11825 outside `bs->stop' block.
11826 (bpstat_what): Rework bp_shlib_event handling.
11827 (internal_bkpt_check_status): If the breakpoint is a
11828 bp_shlib_event, then set bs->stop and bs->print if
11829 stop_on_solib_events is set.
11830
11831 2012-01-24 Gary Benson <gbenson@redhat.com>
11832
11833 Delete #if 0'd out code.
11834 * stack.c (print_frame_label_vars): Remove.
11835 (catch_info): Likewise.
11836 (_initialize_stack): Remove "info catch" command.
11837 * NEWS: Mention the above.
11838
11839 2012-01-24 Pedro Alves <palves@redhat.com>
11840
11841 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
11842 it.
11843 (remote_notice_new_inferior): If the remote end doesn't support
11844 the multiprocess extensions, then the PID is fake.
11845 (add_current_inferior_and_thread): New.
11846 (remote_start_remote): Use it.
11847 (extended_remote_attach_1): Adjust.
11848 (extended_remote_create_inferior_1): Use
11849 add_current_inferior_and_thread.
11850
11851 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
11852
11853 Fix watchpoints to be specific for each inferior.
11854 * breakpoint.c (watchpoint_in_thread_scope): Verify also
11855 current_program_space.
11856 * i386-nat.c (i386_inferior_data_cleanup): New.
11857 (i386_inferior_data_get): Replace variable inf_data_local by an
11858 inferior_data call.
11859 (i386_use_watchpoints): Initialize i386_inferior_data.
11860 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
11861 specific iterate_over_lwps.
11862
11863 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
11864
11865 Fix watchpoints across inferior fork.
11866 * amd64-linux-nat.c (update_debug_registers_callback): Update the
11867 comment for linux_nat_iterate_watchpoint_lwps.
11868 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11869 linux_nat_iterate_watchpoint_lwps.
11870 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
11871 * i386-linux-nat.c (update_debug_registers_callback): Update the
11872 comment for linux_nat_iterate_watchpoint_lwps.
11873 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11874 linux_nat_iterate_watchpoint_lwps.
11875 (i386_linux_prepare_to_resume): New comment on Linux kernel.
11876 * i386-nat.c: Include inferior.h.
11877 (dr_mirror): Remove.
11878 (i386_inferior_data, struct i386_inferior_data)
11879 (i386_inferior_data_get): New.
11880 (i386_debug_reg_state): Use i386_inferior_data_get.
11881 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
11882 (i386_insert_watchpoint, i386_remove_watchpoint)
11883 (i386_stopped_data_address, i386_insert_hw_breakpoint)
11884 (i386_remove_hw_breakpoint): New variable state, use
11885 i386_debug_reg_state instead of DR_MIRROR.
11886 * linux-nat.c (delete_lwp): New declaration.
11887 (num_lwps): Move here from downwards.
11888 (delete_lwp_cleanup): New.
11889 (linux_child_follow_fork): Create new child_lp, call
11890 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
11891 PTRACE_DETACH.
11892 (num_lwps): Move upwards.
11893 (linux_nat_iterate_watchpoint_lwps): New.
11894 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
11895 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
11896
11897 2012-01-24 Joel Brobecker <brobecker@adacore.com>
11898
11899 GDB 7.4 released.
11900
11901 2012-01-23 Pedro Alves <palves@redhat.com>
11902
11903 * top.c (caution): Rename to ...
11904 (confirm): ... this.
11905 (show_caution): Rename to ...
11906 (show_confirm): ... this.
11907 (quit_cover): Adjust.
11908 (init_main): Adjust.
11909 * top.h (caution): Rename to ...
11910 (confirm): ... this.
11911 * utils.c (internal_vproblem, defaulted_query): Adjust.
11912
11913 2012-01-23 Pedro Alves <palves@redhat.com>
11914
11915 * top.c (caution): Update comment.
11916 (execute_command): Don't consider the current value of `caution'.
11917
11918 2012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
11919
11920 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
11921
11922 2012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
11923
11924 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
11925 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
11926 * target.c (target_fileio_pwrite): Remove buffer address from
11927 debug output.
11928 (target_fileio_pread): Likewise.
11929
11930 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
11931
11932 * NEWS: Document remote "info proc" and "generate-core-file".
11933
11934 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
11935
11936 * gdbarch.sh (find_memory_regions): New callback.
11937 * gdbarch.c, gdbarch.h: Regenerate.
11938
11939 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
11940 callback before falling back to target method.
11941
11942 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
11943 (linux_target_install_ops): No longer install it.
11944
11945 * linux-tdep.c (linux_find_memory_regions): New function.
11946 (linux_init_abi): Install it.
11947
11948 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
11949
11950 * gdbarch.sh (make_corefile_notes): New architecture callback.
11951 * gdbarch.c: Regenerate.
11952 * gdbarch.h: Likewise.
11953
11954 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
11955 before target_make_corefile_notes. If NULL is returned, the
11956 target does not support core file generation.
11957
11958 * linux-nat.c: Include "linux-tdep.h".
11959 (find_signalled_thread, find_stop_signal): Remove.
11960 (linux_nat_do_thread_registers): Likewise.
11961 (struct linux_nat_corefile_thread_data): Likewise.
11962 (linux_nat_corefile_thread_callback): Likewise.
11963 (iterate_over_spus): Likewise.
11964 (struct linux_spu_corefile_data): Likewise.
11965 (linux_spu_corefile_callback): Likewise.
11966 (linux_spu_make_corefile_notes): Likewise.
11967 (linux_nat_collect_thread_registers): New function.
11968 (linux_nat_make_corefile_notes): Replace contents by call to
11969 linux_make_corefile_notes passing linux_nat_collect_thread_registers
11970 as native-only callback.
11971
11972 * linux-tdep.h: Include "bfd.h".
11973 (struct regcache): Add forward declaration.
11974 (linux_collect_thread_registers_ftype): New typedef.
11975 (linux_make_corefile_notes): Add prototype.
11976 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
11977 "regset.h", and "elf-bfd.h".
11978 (find_signalled_thread, find_stop_signal): New functions.
11979 (linux_spu_make_corefile_notes): Likewise.
11980 (linux_collect_thread_registers): Likewise.
11981 (struct linux_corefile_thread_data): New data structure.
11982 (linux_corefile_thread_callback): New funcion.
11983 (linux_make_corefile_notes): Likewise.
11984 (linux_make_corefile_notes_1): Likewise.
11985 (linux_init_abi): Install it.
11986
11987 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
11988
11989 * gdbarch.sh (info_proc): New callback.
11990 * gdbarch.c, gdbarch.h: Regenerate.
11991
11992 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
11993 before falling back to the target info_proc callback.
11994
11995 * linux-nat.c: Do not include "cli/cli-utils.h".
11996 (linux_nat_info_proc): Remove.
11997 (linux_target_install_ops): No longer install it.
11998
11999 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
12000 (read_mapping): New function.
12001 (linux_info_proc): Likewise.
12002 (linux_init_abi): Install it.
12003
12004 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
12005
12006 * defs.h (enum info_proc_what): Moved here from linux-nat.c
12007 * infcmd.c: (info_proc_cmd_1): New function.
12008 (info_proc_cmd): New function, moved here from equivalent routine
12009 orignally in linux-nat.c.
12010 (info_proc_cmd_mappings): Likewise.
12011 (info_proc_cmd_stat): Likewise.
12012 (info_proc_cmd_status): Likewise.
12013 (info_proc_cmd_cwd): Likewise.
12014 (info_proc_cmd_cmdline): Likewise.
12015 (info_proc_cmd_exe): Likewise.
12016 (info_proc_cmd_all): Likewise.
12017 (_initialize_infcmd): Install "info proc" command and subcommands.
12018
12019 * target.h (struct target_ops): Add to_info_proc.
12020 (target_info_proc): Add prototype.
12021 * target.c (target_info_proc): New function.
12022
12023 * procfs.c (procfs_info_proc): Add prototype.
12024 (info_proc_cmd): Rename into ...
12025 (procfs_info_proc): ... this. Update argument types as appropriate
12026 for a to_info_proc implementation. Handle "what" argument.
12027 (procfs_target): Install procfs_info_proc.
12028 (_initialize_procfs): No longer install "info proc" command.
12029
12030 * linux-nat.c: (enum info_proc_what): Remove.
12031 (linux_nat_info_proc_cmd_1): Rename into ...
12032 (linux_nat_info_proc): ... this. Update argument types as appropriate
12033 for a to_info_proc implementation.
12034 (linux_nat_info_proc_cmd): Remove.
12035 (linux_nat_info_proc_cmd_mappings): Likewise.
12036 (linux_nat_info_proc_cmd_stat): Likewise.
12037 (linux_nat_info_proc_cmd_status): Likewise.
12038 (linux_nat_info_proc_cmd_cwd): Likewise.
12039 (linux_nat_info_proc_cmd_cmdline): Likewise.
12040 (linux_nat_info_proc_cmd_exe): Likewise.
12041 (linux_nat_info_proc_cmd_all): Likewise.
12042 (linux_target_install_ops): Install linux_nat_info_proc.
12043 (_initialize_linux_nat): No longer install "info proc" command
12044 and subcommands.
12045
12046 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
12047
12048 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
12049 * config.in, configure: Regenerate.
12050
12051 * target.h (struct target_ops): Add to_fileio_readlink.
12052 (target_fileio_readlink): Add prototype.
12053 * target.c (target_fileio_readlink): New function.
12054
12055 * inf-child.c: Conditionally include <sys/param.h>.
12056 (inf_child_fileio_readlink): New function.
12057 (inf_child_target): Install it.
12058
12059 * remote.c (PACKET_vFile_readlink): New enum value.
12060 (remote_hostio_readlink): New function.
12061 (init_remote_ops): Install it.
12062 (_initialize_remote): Handle vFile:readlink packet type.
12063
12064 2012-01-20 Pedro Alves <palves@redhat.com>
12065 Ulrich Weigand <ulrich.weigand@linaro.org>
12066
12067 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
12068 * config.in, configure: Regenerate.
12069
12070 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
12071 to_fileio_pread, to_fileio_close, to_fileio_unlink.
12072 (target_fileio_open): Add prototype.
12073 (target_fileio_pwrite): Likewise.
12074 (target_fileio_pread): Likewise.
12075 (target_fileio_close): Likewise.
12076 (target_fileio_unlink): Likewise.
12077 (target_fileio_read_alloc): Likewise.
12078 (target_fileio_read_stralloc): Likewise.
12079
12080 * target.c: Include "gdb/fileio.h".
12081 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
12082 (default_fileio_target): New function.
12083 (target_fileio_open): Likewise.
12084 (target_fileio_pwrite): Likewise.
12085 (target_fileio_pread): Likewise.
12086 (target_fileio_close): Likewise.
12087 (target_fileio_unlink): Likewise.
12088 (target_fileio_close_cleanup): Likewise.
12089 (target_fileio_read_alloc_1): Likewise.
12090 (target_fileio_read_alloc): Likewise.
12091 (target_fileio_read_stralloc): Likewise.
12092
12093 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
12094 <fcntl.h>, and <unistd.h>.
12095 (inf_child_fileio_open_flags_to_host): New function.
12096 (inf_child_errno_to_fileio_error): Likewise.
12097 (inf_child_fileio_open): Likewise.
12098 (inf_child_fileio_pwrite): Likewise.
12099 (inf_child_fileio_pread): Likewise.
12100 (inf_child_fileio_close): Likewise.
12101 (inf_child_fileio_unlink): Likewise.
12102 (inf_child_target): Install to_fileio routines.
12103
12104 * remote.c (init_remote_ops): Install to_fileio routines.
12105
12106 2012-01-20 Pedro Alves <palves@redhat.com>
12107 Ulrich Weigand <ulrich.weigand@linaro.org>
12108
12109 * remote.c (remote_multi_process_p): Only check for multi-process
12110 protocol feature, do not check for extended protocol.
12111 (remote_supports_multi_process): Check for extended protocol here.
12112 (set_general_process): Likewise.
12113 (extended_remote_kill): Likewise.
12114 (remote_pid_to_str): Likewise.
12115 (remote_query_supported): Always query multiprocess mode.
12116
12117 2012-01-20 Pedro Alves <palves@redhat.com>
12118 Ulrich Weigand <ulrich.weigand@linaro.org>
12119
12120 * inferior.h (struct inferior): Add fake_pid_p.
12121 * inferior.c (exit_inferior_1): Clear fake_pid_p.
12122 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
12123 magic_null_ptid since the remote side doesn't provide a real PID.
12124
12125 2012-01-19 Tom Tromey <tromey@redhat.com>
12126
12127 * NEWS: Combine the two Python sections.
12128
12129 2012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
12130
12131 * target.h (target_close): Update comment on the target's unpush state.
12132
12133 2012-01-19 Pedro Alves <palves@redhat.com>
12134
12135 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
12136 linux_nat_async directly instead of going through the target
12137 vector.
12138 * target.c (unpush_target): Close target after unpushing it, not
12139 before.
12140
12141 2012-01-19 Gary Benson <gbenson@redhat.com>
12142
12143 * mdebugread.c (sort_blocks): Replace integer constants with ones
12144 derived from FIRST_LOCAL_BLOCK.
12145
12146 2012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
12147 Jan Kratochvil <jan.kratochvil@redhat.com>
12148
12149 PR gdb/9538
12150 * symfile.c (find_separate_debug_file): New function.
12151 (terminate_after_last_dir_separator): Likewise.
12152 (find_separate_debug_file_by_debuglink): Also try realpath.
12153 * configure.ac (AC_CHECK_FUNCS): Add lstat.
12154 * configure: Regenerate.
12155 * config.in: Regenerate.
12156
12157 2012-01-18 Doug Evans <dje@google.com>
12158
12159 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
12160 (main.o): Remove rule.
12161 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
12162 (--with-sysroot): Rewrite.
12163 * configure: Regenerate.
12164 * config.in: Regenerate.
12165
12166 2012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
12167
12168 * parse.c (initialize_expout): New function.
12169 (reallocate_expout): Likewise.
12170 (parse_exp_in_context): Use `initialize_expout' and
12171 `reallocate_expout' when appropriate.
12172
12173 2012-01-18 Pedro Alves <palves@redhat.com>
12174
12175 * record.c (struct record_breakpoint, record_breakpoint_p)
12176 (record_breakpoints): New.
12177 (record_insert_breakpoint, record_remove_breakpoint): Manage
12178 record breakpoints list. Only remove breakpoints from the
12179 inferior if they had been inserted there in the first place.
12180
12181 2012-01-17 Doug Evans <dje@google.com>
12182
12183 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
12184 if we know we don't have a file name to look for.
12185
12186 2012-01-17 Pedro Alves <palves@redhat.com>
12187
12188 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
12189 the frame's stop reason is UNWIND_UNAVAILABLE.
12190
12191 2012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
12192
12193 Fix compilation error.
12194 * m2-exp.y (yyerror): Use ANSI C prototype.
12195
12196 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
12197
12198 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
12199 (growbuf_by_size): Likewise.
12200 (yyerror): Likewise.
12201 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
12202 (modblock): Remove variable (was #if 0'ed).
12203 (parse_number): Convert prototype from K&R to ANSI C.
12204 (yyerror): Likewise.
12205 * objc-exp.y (parse_number): Likewise.
12206 (yyerror): Likewise.
12207 (yylex): Remove #if 0'ed code.
12208 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
12209 (yyerror): Likewise.
12210
12211 2012-01-16 Tom Tromey <tromey@redhat.com>
12212
12213 * NEWS: Add item.
12214 * symtab.h (compare_filenames_for_search): Declare.
12215 * symtab.c (compare_filenames_for_search): New function.
12216 (iterate_over_some_symtabs): Use it.
12217 * symfile.h (struct quick_symbol_functions)
12218 <map_symtabs_matching_filename>: Change spec.
12219 * psymtab.c (partial_map_symtabs_matching_filename): Use
12220 compare_filenames_for_search. Update for new spec.
12221 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
12222 compare_filenames_for_search. Update for new spec.
12223 * breakpoint.c (clear_command): Use compare_filenames_for_search.
12224
12225 2012-01-16 Tom Tromey <tromey@redhat.com>
12226
12227 PR python/13281:
12228 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
12229 (struct main_type) <flag_flag_enum>: New field.
12230 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
12231 * NEWS: Add entries.
12232 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
12233 enums.
12234 * python/lib/gdb/printing.py (_EnumInstance): New class.
12235 (FlagEnumerationPrinter): Likewise.
12236
12237 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
12238
12239 * breakpoint.c (create_sals_from_address_default): New function.
12240 (create_breakpoints_sal_default): Likewise.
12241 (decode_linespec_default): Likewise.
12242 (is_marker_spec): Removed.
12243 (strace_marker_p): New function.
12244 (init_breakpoint_sal): Using `strace_marker_p' instead of
12245 `is_marker_spec'.
12246 (create_breakpoint): Call method `create_sals_from_address' from
12247 breakpoint_ops, replacing code that created SALs conditionally
12248 on the type of the breakpoint. Call method `create_breakpoints_sal',
12249 replacing code that created breakpoints conditionally on the type
12250 wanted.
12251 (base_breakpoint_create_sals_from_address): New function.
12252 (base_breakpoint_create_breakpoints_sal): Likewise.
12253 (base_breakpoint_decode_linespec): Likewise.
12254 (base_breakpoint_ops): Add methods
12255 `base_breakpoint_create_sals_from_address',
12256 `base_breakpoint_create_breakpoints_sal' and
12257 `base_breakpoint_decode_linespec'.
12258 (bkpt_create_sals_from_address): New function.
12259 (bkpt_create_breakpoints_sal): Likewise.
12260 (bkpt_decode_linespec): Likewise.
12261 (tracepoint_create_sals_from_address): Likewise.
12262 (tracepoint_create_breakpoints_sal): Likewise.
12263 (tracepoint_decode_linespec): Likewise.
12264 (strace_marker_create_sals_from_address): Likewise.
12265 (strace_marker_create_breakpoints_sal): Likewise.
12266 (strace_marker_decode_linespec): Likewise.
12267 (strace_marker_breakpoint_ops): New variable.
12268 (addr_string_to_sals): Remove `marker_spec'. Call method
12269 `decode_linespec' from breakpoint_ops, replacing code that decoded
12270 an address string into a SAL. Use `strace_marker_p' instead of
12271 `marker_spec'.
12272 (strace_command): Decide whether we are dealing with a static
12273 tracepoint with marker or not. Use the appropriate breakpoint_ops.
12274 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
12275 * breakpoint.h (linespec_result, linespec_sals): New forward
12276 declarations.
12277 (breakpoint_ops) <create_sals_from_address>,
12278 <create_breakpoints_sal>, <decode_linespec>: New methods.
12279
12280 2012-01-14 Doug Evans <dje@google.com>
12281
12282 * NEWS: Update text for "maint set python print-stack".
12283 It is deprecated in gdb 7.4 and deleted in 7.5.
12284
12285 2012-01-13 Eli Zaretskii <eliz@gnu.org>
12286
12287 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
12288 including curses.h.
12289
12290 2012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
12291
12292 * configure: Regenerate.
12293 * config.in: Regenerate.
12294
12295 2012-01-12 Keith Seitz <keiths@redhat.com>
12296
12297 PR mi/10586
12298 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
12299 (ANONYMOUS_UNION_NAME): Define.
12300 (is_path_expr_parent): New function.
12301 (get_path_expr_parent): New function.
12302 (is_anonymous_child): New function.
12303 (create_child_with_value): If the child is anonymous and without
12304 a name, assign an object name to it.
12305 (c_describe_child): Use get_path_expr_parent to determine
12306 the parent expression.
12307 If there field represents an anonymous struct or union and
12308 has no name, set an appropriate display name and expression.
12309 (cplus_describe_child): Likewise.
12310
12311 2012-01-12 Pedro Alves <palves@redhat.com>
12312
12313 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
12314 available when %ebp is found to be zero (outermost).
12315
12316 2012-01-11 Andreas Tobler <andreast@fgznet.ch>
12317
12318 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
12319 an internal gdb_static_assert.
12320 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
12321
12322 2012-01-11 Tom Tromey <tromey@redhat.com>
12323
12324 PR gdb/9598:
12325 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
12326 catch" and "catch throw".
12327
12328 2012-01-11 Paul Hilfinger <hilfingr@adacore.com>
12329
12330 * blockframe.c (block_innermost_frame): Start search from selected
12331 frame, if present, or otherwise the current frame.
12332
12333 * c-exp.y (variable): Update innermost_block for
12334 'block COLONCOLON NAME' clause.
12335 * m2-exp.y (variable): Ditto.
12336 * objc-exp.y (variable): Ditto.
12337
12338 2012-01-10 Tom Tromey <tromey@redhat.com>
12339
12340 PR python/13199:
12341 * python/python.c (finish_python_initialization): Set sys.argv.
12342
12343 2012-01-10 Doug Evans <dje@google.com>
12344
12345 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
12346 "want_line_info". All callers updated.
12347 (dwarf_decode_lines_1): New function.
12348 (handle_DW_AT_stmt_list): Add function comment.
12349 New arg "want_line_info". All callers updated.
12350 (read_file_scope,read_type_unit_scope): Move comment from
12351 handle_DW_AT_stmt_list to here.
12352
12353 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
12354
12355 Fix regression after libiberty/ update for GCC PR 6057 and others.
12356 * c-exp.y (operator) <OPERATOR DELETE>
12357 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12358 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
12359 (make_builtin_type, make_name): New variable i, add gdb_assert.
12360 (operator) <OPERATOR NEW>: Update ARGS to 3.
12361 (operator) <OPERATOR DELETE>: Add trailing space.
12362 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
12363 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12364 * cp-support.c (cp_canonicalize_string): Check NULL from
12365 cp_comp_to_string, call warning and return.
12366
12367 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
12368
12369 Fix duplicate .o files after omitting libbfd.a.
12370 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
12371 (SFILES): Add corelow.c.
12372 (COMMON_OBS): Add corelow.o.
12373 (ALLDEPFILES): Remove corelow.c.
12374 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
12375 * config/alpha/alpha-osf3.mh: Likewise.
12376 * config/alpha/fbsd.mh: Likewise.
12377 * config/arm/nbsdaout.mh: Likewise.
12378 * config/arm/nbsdelf.mh: Likewise.
12379 * config/i386/i386gnu.mh: Likewise.
12380 * config/ia64/hpux.mh: Likewise.
12381 * config/ia64/linux.mh: Likewise.
12382 * config/m32r/linux.mh: Likewise.
12383 * config/m68k/linux.mh: Likewise.
12384 * config/mips/irix5.mh: Likewise.
12385 * config/mips/irix6.mh: Likewise.
12386 * config/pa/hpux.mh: Likewise.
12387 * config/pa/linux.mh: Likewise.
12388 * config/powerpc/aix.mh: Likewise.
12389 * config/sparc/linux.mh: Likewise.
12390 * config/sparc/linux64.mh: Likewise.
12391 * config/sparc/sol2.mh: Likewise.
12392 * config/vax/vax.mh: Likewise.
12393 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
12394 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
12395 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
12396 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
12397 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
12398 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
12399 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
12400 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
12401 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
12402 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
12403 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
12404 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
12405 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12406 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
12407 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
12408 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12409 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
12410 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
12411 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
12412 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
12413 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
12414 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
12415 corelow.o from gdb_target_obs.
12416 * corefile.c (core_target): Update the comment on NULL value.
12417 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
12418 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
12419 MATCHES. Drop YUMMY set on NULL.
12420 (core_close): Do not call exit_inferior_silent on zero PID. Do not
12421 reclaim CORE_DATA if it is already NULL.
12422
12423 2012-01-09 Doug Evans <dje@google.com>
12424
12425 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
12426 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
12427
12428 2012-01-09 Keith Seitz <keiths@redhat.com>
12429
12430 * breakpoint.c (wrapper.h): Don't include.
12431
12432 2012-01-09 Keith Seitz <keiths@redhat.com>
12433
12434 * Makefile.in (SFILES): Remove wrapper.c.
12435 (HFILES_NO_SRCDIR): Remove wrapper.h.
12436 (COMMON_OBS): Remove wrapper.o.
12437 * cli/cli-interp.c: Don't inlude wrapper.h.
12438 * corelow.c: Likewise.
12439 (core_open): Replace gdb_target_find_new_threads with
12440 TRY_CATCH around target_find_new_threads.
12441 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
12442 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
12443 * varobj.c (varobj_create): Likewise for parse_exp_1 and
12444 evaluate_expression.
12445 (varobj_set_value): Likewise for evaluate_expression and
12446 value_assign.
12447 (install_new_variable): Likewise for value_fetch_lazy.
12448 (adjust_value_for_child_access): Likewise for value_ind.
12449 (c_describe_child): Likewise for value_subscript and
12450 value_ind.
12451 (c_value_of_root): Likewise for evaluate_expression.
12452 * wrapper.c: Remove.
12453 * wrapper.h: Remove.
12454
12455 2012-01-09 Doug Evans <dje@google.com>
12456
12457 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
12458 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
12459 "abfd" args with "section". All callers updated.
12460 Error checking code moved ...
12461 (error_check_comp_unit_head): ... here. New function.
12462 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
12463 Delete arg "abfd". New arg "type_offset". All callers updated.
12464 (create_debug_types_hash_table): Simplify by using
12465 read_and_check_type_unit_head.
12466
12467 * parser-defs.h (namecopy): Delete.
12468 * parse.c (namecopy, namecopy_size): Move into copy_name.
12469
12470 2012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
12471
12472 Partially fix duplicate .o files after omitting libbfd.a.
12473 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
12474 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12475 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
12476 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12477 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
12478 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
12479 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12480
12481 2012-01-09 Pedro Alves <palves@redhat.com>
12482
12483 * MAINTAINERS: Update my email address.
12484
12485 2012-01-08 Doug Evans <dje@google.com>
12486
12487 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
12488 n_type_units. Rename type_comp_units to all_type_units.
12489 All uses updated.
12490 (add_signatured_type_cu_to_table): Renamed from
12491 add_signatured_type_cu_to_list. All callers updated.
12492
12493 * gdbtypes.h (struct cplus_struct_type): Delete member
12494 nfn_fields_total. All uses removed.
12495
12496 2012-01-06 Doug Evans <dje@google.com>
12497
12498 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
12499 to top of file.
12500 (dwarf2_find_comp_unit): Delete.
12501 (process_psymtab_comp_unit): Make result "void".
12502 Delete args buffer, info_ptr, buffer_size, and replace with
12503 "section". All callers updated.
12504 (dwarf2_build_psymtabs_hard): Simplify.
12505
12506 2012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
12507 Thiago Jung Bauermann <bauerman@br.ibm.com>
12508
12509 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
12510 before `struct gdb_exception'.
12511 * breakpoint.c (update_global_location_list_nothrow)
12512 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
12513 * cp-abi.c (value_rtti_type): Likewise.
12514 * cp-support.c (cp_validate_operator): Likewise.
12515 * infrun.c (insert_exception_resume_breakpoint)
12516 (check_exception_resume, keep_going): Likewise.
12517 * mi-interp.c (mi_breakpoint_created)
12518 (mi_breakpoint_modified): Likewise.
12519 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
12520 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
12521 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
12522
12523 2012-01-05 Doug Evans <dje@google.com>
12524
12525 * dwarf2read.c (statement_prologue): Delete, unused.
12526
12527 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
12528 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
12529
12530 * dwarf2read.c (comp_unit_header): Delete, unused.
12531
12532 2012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
12533
12534 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
12535 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
12536
12537 2012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
12538
12539 * infrun.c (normal_stop): Don't skip calling the normal_stop
12540 observers if the thread was doing a multi-step, but stopped for
12541 some reason other than stepping.
12542
12543 2012-01-05 Pedro Alves <alves.ped@gmail.com>
12544
12545 * cli/cli-decode.h: Add comments.
12546 (CMD_LIST_AMBIGUOUS): Moved to command.h
12547 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
12548 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
12549 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
12550 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
12551 (add_com, add_com_alias, add_info, add_info_alias)
12552 (complete_on_cmdlist, complete_on_enum, help_list): Remove
12553 declarations.
12554 * command.h: Add and adjust comments.
12555 (CMD_LIST_AMBIGUOUS): Moved here.
12556 (help_cmd, help_cmd_list): Delete declarations.
12557
12558 2012-01-04 Doug Evans <dje@google.com>
12559
12560 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
12561 All callers updated.
12562 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
12563 Replace all arguments with "per_cu". All callers updated.
12564
12565 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
12566
12567 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
12568 New arg "per_cu". All callers updated.
12569
12570 Delete #if 0'd out code.
12571 * language.c (binop_result_type): Delete.
12572 (simple_type, ordered_type, same_type, integral_type): Delete.
12573 (numeric_type, character_type, string_type, boolean_type): Delete.
12574 (float_type, structured_type): Delete.
12575 * language.h: Update.
12576
12577 2012-01-04 Tom Tromey <tromey@redhat.com>
12578
12579 * python/py-value.c (valpy_binop): Initialize 'res_val'.
12580
12581 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12582
12583 * corefile.c (close_exec_file): Delete.
12584 (reopen_exec_file): Remove commented out code that seems related
12585 to close_exec_file, which is being deleted here.
12586 * inferior.h (close_exec_file): Delete.
12587 * fork-child.c (fork_inferior): Remove call to fork_inferior.
12588
12589 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12590
12591 * ada-lang.c: #include "cli/cli-utils.h".
12592 (get_selections): Use skip_spaces.
12593 (ada_get_next_arg): Use skip_spaces and skip_to_space.
12594 (catch_ada_exception_command_split): Use skip_spaces.
12595 (ada_decode_assert_location): Likewise.
12596
12597 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12598
12599 * linespec.c (decode_line_internal): Check for C++ or Java
12600 compound constructs only if the current language is C, C++
12601 or Java.
12602
12603 2012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
12604
12605 Revert:
12606 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12607 Joel Brobecker <brobecker@adacore.com>
12608 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12609 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12610 3 times.
12611 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12612 fall through into AT_ENTRY_POINT.
12613 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
12614 DUMMY_ADDR with it.
12615 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12616 PPC_INSN_SIZE skip to 3 times.
12617
12618 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12619
12620 * linespec.c (add_minsym): Preserve function descriptors.
12621
12622 2012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
12623
12624 * breakpoint.c (all_locations_are_pending): Consider locations
12625 in program spaces executing during startup pending as well.
12626
12627 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12628
12629 Copyright year update in most files of the GDB Project.
12630
12631 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12632
12633 * copyright.sh: Delete.
12634 * copyright.py: Rewrite.
12635
12636 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12637
12638 * gnulib/extra/update-copyright: New file, imported from gnulib.
12639
12640 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12641
12642 * README (Copyright and License Notices): New section.
12643
12644 2012-01-03 Tom Tromey <tromey@redhat.com>
12645
12646 PR python/12533:
12647 * python/py-value.c (valpy_dereference, valpy_get_address
12648 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
12649 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
12650 (valpy_absolute, valpy_richcompare): Free intermediate values.
12651
12652 2011-01-03 Joel Brobecker <brobecker@adacore.com>
12653
12654 * ada-lang.c: Reformat the copyright notice.
12655
12656 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12657
12658 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
12659 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
12660 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
12661 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
12662 Revert this part of:
12663 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12664 Build gdb directly from *.o files not using libgdb.a.
12665 * Makefile.in (COMMON_OBS): Remove solib-target.o.
12666
12667 2012-01-02 Joel Brobecker <brobecker@adacore.com>
12668
12669 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
12670 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
12671 Reformat the copyright header.
12672
12673 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12674
12675 Revert this part of:
12676 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12677 Remove the gdbtui binary.
12678 * gdb.c (main): Remove args.interpreter_p initialization.
12679 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12680 * main.h (struct captured_main_args): Remove interpreter_p.
12681
12682 2012-01-02 Joel Brobecker <brobecker@adacore.com>
12683
12684 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
12685
12686 2012-01-02 Joel Brobecker <brobecker@adacore.com>
12687
12688 * top.c (print_gdb_version): Update copyright year.
12689
12690 2012-01-02 Yao Qi <yao@codesourcery.com>
12691
12692 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
12693
12694 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12695 Joel Brobecker <brobecker@adacore.com>
12696
12697 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12698 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12699 3 times.
12700 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12701 fall through into AT_ENTRY_POINT.
12702 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
12703 DUMMY_ADDR with it.
12704 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12705 PPC_INSN_SIZE skip to 3 times.
12706
12707 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12708
12709 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
12710 the return value.
12711 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
12712
12713 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12714
12715 Build gdb directly from *.o files not using libgdb.a.
12716 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
12717 (COMMON_OBS): Remove solib-target.o.
12718 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
12719 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
12720 (LIBGDB_OBS, libgdb.a): Move it above.
12721 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
12722 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
12723 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
12724 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
12725 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
12726 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
12727 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
12728 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
12729 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
12730 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
12731 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
12732 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
12733 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
12734 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
12735 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12736 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
12737 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
12738 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12739 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
12740 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
12741 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
12742 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
12743 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
12744 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
12745 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
12746 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
12747 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
12748
12749 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12750
12751 Remove the gdbtui binary.
12752 * .gitignore (/gdbtui): Remove.
12753 * Makefile.in (TUI): Remove.
12754 (SUBDIR_TUI_OBS): Remove tui-main.o.
12755 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
12756 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
12757 (tui-main.o): Remove.
12758 (all_object_files): Remove tui-main.o.
12759 * NEWS: New note for the gdbtui removal.
12760 * configure: Rebuilt.
12761 * configure.ac: No longer add all-tui, clean-tui, install-tui and
12762 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
12763 CONFIG_UNINSTALL respectively.
12764 * gdb.c (main): Remove args.interpreter_p initialization.
12765 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12766 * main.h (struct captured_main_args): Remove interpreter_p.
12767 * tui/tui-main.c: Remove.
12768
12769 2012-01-01 Doug Evans <dje@google.com>
12770
12771 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
12772 (dwarf2_physname, read_import_statement): Ditto.
12773 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
12774 (process_structure_scope read_subroutine_type): Ditto.
12775 (read_typedef, load_partial_dies, read_partial_die): Ditto.
12776 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
12777 (dwarf2_fetch_die_location_block): Ditto.
12778 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
12779
12780 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
12781 All callers updated.
12782 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
12783 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
12784 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
12785
12786 * dwarf2read.c (load_cu): Move assert to more useful location.
12787
12788 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
12789 All callers updated.
12790
12791 * dwarf2read.c (dwarf2_per_objfile): Add comment.
12792 (dwarf2_elf_names): Minor reformat.
12793 (dwarf2_per_cu_data): Tweak comment.
12794 (dwarf2_read_section): Fix comment.
12795 (create_all_comp_units): Fix comment.
12796 (load_full_comp_unit): Fix comment.
12797 (process_full_comp_unit): Fix comment.
12798 (read_signatured_type): Fix comment.
12799
12800 For older changes see ChangeLog-2011.
12801 \f
12802 Local Variables:
12803 mode: change-log
12804 left-margin: 8
12805 fill-column: 74
12806 version-control: never
12807 coding: utf-8
12808 End:
This page took 0.332843 seconds and 4 git commands to generate.