aeb7b49334c8761e3fe1e8b94d400821e0f0f7a6
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2012-12-15 Joel Brobecker <brobecker@adacore.com>
2
3 * symfile.c (syms_from_objfile_1): Renames syms_from_objfile.
4 Remove call to init_entry_point_info. Add OBJFILE's
5 section_offsets and num_sections initialization. Add note
6 about entry info in the function documentation.
7 (syms_from_objfile): New function.
8 * coffread.c (coff_symfile_init): Remove call to
9 init_entry_point_info.
10 * machoread.c (macho_symfile_init): Likewise.
11 * xcoffread.c(xcoff_symfile_init): Likewise.
12
13 2012-12-15 Yao Qi <yao@codesourcery.com>
14
15 * remote-notif.c (_initialize_notif): Add new commands
16 'set debug notification' and 'show debug notification'.
17 * NEWS: Mention these new commands.
18
19 2012-12-15 Yao Qi <yao@codesourcery.com>
20
21 * Makefile.in (REMOTE_OBS): Add "remote-notif.o".
22 (SFILES): Add "remote-notif.c".
23 (HFILES_NO_SRCDIR): Add "remote-notif.h" and "common/queue.h".
24 * remote-notif.c: New. Factored out from remote.c.
25 * remote-notif.h: New.
26 * remote.c: Include "remote-notif.h".
27 (stop_reply_xmalloc, do_stop_reply_xfree):
28 (remote_parse_stop_reply, remote_get_pending_stop_replies):
29 (remote_async_get_pending_events_handler): Remove declarations.
30 (remote_parse_stop_reply): Declare.
31 (pending_stop_reply): Remove.
32 (remote_async_get_pending_events_token): Move to
33 remote-notif.c.
34 (remote_close): Replace 'delete_async_event_handler' with
35 remote_notif_unregister_async_event_handler.
36 Don't call discard_pending_stop_replies.
37 (remote_start_remote): Replace code with remote_notif_parse
38 and remote_notif_get_pending_replies.
39 (remote_open_1): Replace 'create_async_event_handler' with
40 remote_notif_register_async_event_handler.
41 (extended_remote_attach_1): Call remote_notif_parse and
42 notif_stop_reply_push.
43 (struct stop_reply) <next>: Remove.
44 <base>: New field.
45 Callers update.
46 (stop_reply_queue): Change its type.
47 (stop_reply_xmalloc, do_stop_reply_xfree): Remove.
48 (remote_notif_remove_all): New.
49 (discard_pending_stop_replies): Update.
50 (remote_notif_stop_ack, stop_reply_dtr): New.
51 (remote_notif_stop_alloc_event): New.
52 (notif_client_stop): New variable.
53 (stop_reply_match_ptid, stop_reply_match_ptid_and_ws: New.
54 (queued_stop_reply, peek_stop_reply): Adjust.
55 (remote_get_pending_stop_replies): Rename to
56 remote_notif_get_pending_events.
57 (handle_notification): Move to remote-notif.c.
58 (remote_async_get_pending_events_handler): Likewise.
59 (remote_wait_as): Adjust to call remote_notif_parse.
60 Call 'getpkt_or_notif_sane' instead of 'getpkt_sane'.
61 Return minus_one_ptid early if gets a notification.
62 (remote_wait): Call QUEUE_is_empty (notif_reply_p).
63 (_initialize_remote): Call QUEUE_alloc. Update caller.
64 (remote_resume): Call 'remote_notif_process' in all-stop mode.
65 * remote.h: Include "remote-notif.h".
66 (remote_notif_get_pending_replies): Declare.
67
68 2012-12-15 Yao Qi <yao@codesourcery.com>
69
70 * remote.c (discard_pending_stop_replies): Update declaration.
71 (remote_detach_1, extended_remote_mourn_1): Likewise.
72 (discard_pending_stop_replies): Change parameter from PID to
73 INF.
74 (remote_close): Update caller.
75 (_initialize_remote): Attach discard_pending_stop_replies to
76 inferior_exit observer.
77
78 2012-12-15 Yao Qi <yao@codesourcery.com>
79
80 * remote.c (getpkt_or_notif_sane): Add one more argument in
81 its declaration.
82 (getpkt_or_notif_sane_1): Add one more argument.
83 (getpkt_sane): Update caller.
84 (getpkt_or_notif_sane): Likewise. Update call
85 togetpkt_or_notif_sane_1.
86 (remote_wait_ns): Update caller.
87
88 2012-12-15 Yao Qi <yao@codesourcery.com>
89 Doug Evans <dje@google.com>
90
91 * common/queue.h: New.
92
93 2012-12-15 Yao Qi <yao@codesourcery.com>
94
95 * breakpoint.c (print_one_breakpoint_location): Display the
96 state of 'installed' of each non-pending location of a tracepoint
97 in both CLI and MI.
98 (download_tracepoint_locations): Notify 'breakpoint-modified'
99 observer if any tracepoint location is downloaded.
100 * tracepoint.c (start_tracing): Likewise.
101 (merge_uploaded_tracepoints): Record all modified
102 tracepoints and notify 'breakpoint-modified' observer for them.
103
104 * NEWS: Mention the change for CLI and MI.
105
106 2012-12-15 Yao Qi <yao@codesourcery.com>
107
108 * breakpoint.c (download_tracepoint_locations): Iterate over
109 ALL_TRACEPOINTS first and then iterate over locations of
110 each tracepoint.
111
112 2012-12-14 Pierre Muller <muller@sourceware.org>
113 Pedro Alves <palves@redhat.com>
114
115 * solib-target.c (solib_target_current_sos): Remove 'const'
116 qualifier from type of library_document local variable to be
117 able to free it and avoid a memory leak.
118 Use cleanup chain to avoid leak even if exceptino is generated.
119
120 2012-12-14 Tom Tromey <tromey@redhat.com>
121
122 PR c++/8888:
123 * symtab.c (lookup_symbol_aux): If constructor is found, consider
124 returning the type instead.
125 * c-exp.y (classify_name): Check STRUCT_DOMAIN if a constructor is
126 found.
127
128 2012-12-14 Tom Tromey <tromey@redhat.com>
129
130 Partial fix for PR c++/14160:
131 * c-typeprint.c (c_type_print_base): Use TYPE_FN_FIELD_CONSTRUCTOR.
132 * dwarf2read.c (dwarf2_is_constructor): New function.
133 (dwarf2_add_member_fn): Use it.
134 * gnu-v3-abi.c (gnuv3_pass_by_reference): Use
135 TYPE_FN_FIELD_CONSTRUCTOR.
136 * jv-typeprint.c (java_type_print_base): Use
137 TYPE_FN_FIELD_CONSTRUCTOR.
138 * gdbtypes.h (struct fn_field) <is_constructor>: New field.
139 <dummy>: Shrink.
140 (TYPE_FN_FIELD_CONSTRUCTOR): New macro.
141
142 2012-12-14 Tom Tromey <tromey@redhat.com>
143
144 * c-exp.y (block, variable, name_not_typename, lex_one_token,
145 classify_name): Update.
146 * c-valprint.c (c_val_print): Update.
147 * f-exp.y (yylex): Update.
148 * go-exp.y (package_name_p, classify_packaged_name)
149 (classify_name): Update.
150 * jv-exp.y (push_variable): Update.
151 * m2-exp.y (variable): Update.
152 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
153 * p-exp.y (block, variable, yylex): Update.
154 * p-valprint.c (pascal_val_print): Update.
155 * parse.c (write_dollar_variable): Update.
156 * printcmd.c (address_info): Update.
157 * python/py-symbol.c (gdbpy_lookup_symbol): Update.
158 * symtab.c (lookup_symbol_aux, lookup_symbol_in_language)
159 (lookup_symbol): Change type of 'is_a_field_of_this'.
160 (check_field): Add 'is_a_field_of_this' argument.
161 * symtab.h (struct field_of_this_result): New.
162 (lookup_symbol, lookup_symbol_in_language): Update.
163
164 2012-12-14 Tom Tromey <tromey@redhat.com>
165
166 * symtab.c (check_field): Now static. Move from...
167 * valops.c (check_field): ... here. Remove.
168 * value.h (check_field): Don't declare.
169
170 2012-12-14 Tom Tromey <tromey@redhat.com>
171
172 * NEWS: Mention "info proc" and core files.
173 * corelow.c (core_info_proc): New function.
174 (init_core_ops): Set to_info_proc.
175 * gdbarch.c, gdbarch.h: Rebuild.
176 * gdbarch.sh (core_info_proc): New method.
177 * infcmd.c (info_proc_cmd_1): Invoke target_info_proc first.
178 * linux-tdep.c (linux_core_info_proc_mappings)
179 (linux_core_info_proc): New functions.
180 (linux_find_memory_region_ftype): New typedef.
181 (linux_find_memory_regions_full): New function, from
182 linux_find_memory_regions.
183 (struct linux_find_memory_regions_data): New.
184 (linux_find_memory_regions_thunk): New function.
185 (linux_find_memory_regions): Rewrite.
186 (struct linux_make_mappings_data): New.
187 (linux_make_mappings_callback)
188 (linux_make_mappings_corefile_notes): New functions.
189 (linux_make_corefile_notes): Call linux_make_mappings_corefile_notes.
190 (linux_init_abi): Call set_gdbarch_core_info_proc.
191 * target.c (target_info_proc): Return 'int'.
192 * target.h (target_info_proc): Update.
193
194 2012-12-14 Pierre Muller <muller@sourceware.org>
195
196 * windows-nat.c (windows_xfer_shared_libraries): Avoid
197 memory leak when OFFSET >= LEN_AVAIL.
198
199 2012-12-13 Tom Tromey <tromey@redhat.com>
200
201 * solib-svr4.c (enable_break): Use SECT_OFF_TEXT.
202
203 2012-12-13 Tom Tromey <tromey@redhat.com>
204
205 * acinclude.m4 (CY_AC_C_WORKS): Remove.
206
207 2012-12-13 Pierre Muller <muller@sourceware.org>
208
209 * coff-pe-read.c (pe_text_section_offset): Increase size of sname
210 local variable and zero terminate it to avoid possible problems
211 in strcmp.
212
213 2012-12-13 Pedro Alves <palves@redhat.com>
214
215 * coff-pe-read.c: Include coff/internal.h.
216 (read_pe_exported_syms): Use SCNNMLEN instead of hardcoded 8.
217 Null terminate buffer explicitly instead of memset the whole
218 buffer.
219
220 2012-12-13 Pierre Muller <muller@sourceware.org>
221
222 * coff-pe-read.c (IMAGE_SCN_CNT_TEXT, IMAGE_SCN_CNT_INITIALIZED_DATA)
223 (IMAGE_SCN_CNT_UNINITIALIZED_DATA): Remove useless checks
224 for already defined macros.
225
226 2012-12-13 Pierre Muller <muller@sourceware.org>
227
228 * coff-pe-read.h (pe_text_section_offset): Declare new function.
229 * coff-pe-read.c (debug_coff_pe_read): New static variable.
230 (struct read_pe_section_data): Add section_name field.
231 (IMAGE_SCN_CNT_CODE): New macro, if not already defined.
232 (IMAGE_SCN_CNT_INITIALIZED_DATA): Ditto.
233 (IMAGE_SCN_CNT_UNINITIALIZED_DATA): Ditto.
234 (get_pe_section_index): New function.
235 (struct pe_sections_info): New type.
236 (get_section_vmas): Use new struct pe_sections_info.
237 (add_pe_exported_sym): Handle unnamed exported function.
238 (add_pe_forwarded_sym): New function.
239 (read_pe_truncate_name): Truncate at last dot.
240 (pe_as16): New function.
241 (read_pe_exported_syms): Use ordinal of function to
242 retrieve correct RVA address of function and handle
243 forwarded symbol.
244 (pe_text_section_offset): New function.
245 (show_debug_coff_pe_read): New function.
246 (_initialize_coff_pe_read): New function adding
247 'set/show debug coff_pe_read' commands.
248
249 * windows-tdep.c (windows_xfer_shared_library): Use
250 pe_text_section_offset function instead of possibly wrong
251 0x1000 constant for .text sextion offset.
252
253 2012-12-13 Pedro Alves <palves@redhat.com>
254
255 * gdbarch.sh (do_read): Set IFS to blank.
256
257 2012-12-12 Mircea Gherzan <mircea.gherzan@intel.com>
258
259 * NEWS: Mention the -catch-load/-catch-unload MI commands.
260
261 2012-12-12 Mircea Gherzan <mircea.gherzan@intel.com>
262
263 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-catch.o.
264 (SUBDIR_MI_SRCS): Add mi/mi-cmd-catch.c.
265 * breakpoint.c (add_solib_catchpoint): New function that
266 can be used by both CLI and MI, factored out from
267 catch_load_or_unload.
268 (catch_load_or_unload): Strip it down and make it use the
269 new add_solib_catchpoint.
270 * breakpoint.h (add_solib_catchpoint): Declare it.
271 * mi/mi-cmd-break.h: New file.
272 * mi/mi-cmd-break.c: Include mi-cmd-break.h.
273 (setup_breakpoint_reporting): New function used for both
274 catchpoints and breakpoints.
275 (mi_cmd_break_insert): Use setup_breakpoint_reporting.
276 * mi/mi-cmd-catch.c: New file.
277 * mi/mi-cmds.c (mi_cmds): Add the handlers for -catch-load
278 and -catch-unload.
279 * mi/mi-cmds.h: Declare the handlers for -catch-load and
280 -catch-unload.
281
282 2012-11-28 Tom Tromey <tromey@redhat.com>
283
284 * dbxread.c (read_dbx_symtab): Update.
285 (end_psymtab, dbx_psymtab_to_symtab_1, dbx_psymtab_to_symtab)
286 (read_ofile_symtab): Add 'objfile' argument.
287 * dwarf2read.c (process_psymtab_comp_unit_reader)
288 (build_type_psymtabs_reader): Update.
289 (dwarf2_psymtab_to_symtab): Add 'objfile' argument.
290 * mdebugread.c (mdebug_psymtab_to_symtab): Add 'objfile'
291 argument.
292 (parse_procedure, parse_partial_symbols): Update.
293 (psymtab_to_symtab_1): Add 'objfile' argument.
294 * psympriv.h (struct partial_symtab) <objfile>: Remove.
295 <read_symtab>: Add 'objfile' argument.
296 (sort_pst_symbols, discard_psymtab): Update.
297 * psymtab.c (partial_map_expand_apply): Update.
298 (find_pc_sect_psymtab_closer): Add 'objfile' argument.
299 (find_pc_sect_psymtab, find_pc_sect_symtab_from_partial): Update.
300 (find_pc_sect_psymbol): Add 'objfile' argument.
301 (lookup_symbol_aux_psymtabs): Update.
302 (match_partial_symbol, lookup_partial_symbol, psymtab_to_symtab):
303 Add 'objfile' argument.
304 (find_last_source_symtab_from_partial, dump_psymtab)
305 (dump_psymtabs_for_objfile, read_symtabs_for_function)
306 (expand_partial_symbol_tables, read_psymtabs_with_filename)
307 (find_symbol_file_from_partial, map_matching_symbols_psymtab)
308 (expand_symtabs_matching_via_partial): Update.
309 (sort_pst_symbols): Add 'objfile' argument.
310 (allocate_psymtab): Update.
311 (discard_psymtab): Add 'objfile' argument.
312 (maintenance_info_psymtabs, maintenance_check_symtabs): Update.
313 * stabsread.h (end_psymtab): Update.
314 * xcoffread.c (this_symtab_objfile): New global.
315 (process_linenos, enter_line_range, xcoff_next_symbol_text):
316 Update.
317 (read_xcoff_symtab): Add 'objfile' argument.
318 (read_symbol, read_symbol_lineno): Update.
319 (xcoff_psymtab_to_symtab_1, xcoff_psymtab_to_symtab)
320 (xcoff_end_psymtab): Add 'objfile' argument.
321 (scan_xcoff_symtab): Update.
322
323 2012-12-12 Paul Koning <paul_koning@dell.com>
324
325 Add support for Python 3.
326 * NEWS: Mention Python 3 support.
327 * varobj.c (value_get_print_value): Use
328 python_string_to_target_string.
329 * python/py-block.c: Use PyVarObject_HEAD_INIT in initialization
330 of type objects.
331 * python/py-breakpoint.c: Ditto.
332 * python/py-cmd.c: Ditto.
333 * python/py-event.c: Ditto.
334 * python/py-event.h: Ditto.
335 * python/py-evtregistry.c: Ditto.
336 * python/py-finishbreakpoint.c: Ditto.
337 * python/py-frame.c: Ditto.
338 * python/py-function.c: Ditto.
339 * python/py-infthread.c: Ditto.
340 * python/py-lazy-string.c: Ditto.
341 * python/py-progspace.c: Ditto.
342 * /python/py-symbol.c: Ditto.
343 * python/py-evts.c: (gdbpy_initialize_py_events): Add module
344 initialization for Python 3.
345 * python/py-inferior.c: Use PyVarObject_HEAD_INIT in initialization
346 of type objects.
347 (infpy_read_memory): Return memoryview object if Python 3.
348 (infpy_write_memory): Use "s*" operand parsing code for Python 3.
349 (infpy_search_memory): Ditto.
350 (get_buffer): New function for Python 3.
351 * python/py-objfile.c: Use PyVarObject_HEAD_INIT in initialization
352 of type objects.
353 (objfpy_dealloc): Use Py_TYPE to call tp_free.
354 * python/py-param.c: Use PyVarObject_HEAD_INIT in initialization
355 of type objects.
356 (get_attr): Use PyUnicode_CompareWithASCIIString if Python 3.
357 (set_attr): Ditto.
358 * python/py-prettyprint.c (print_string_repr): use PyBytes methods
359 instead of PyString methods if Python 3.
360 (print_children): Skip push_dummy_python_frame call if Python 3.
361 * python/py-symtab.c: Use PyVarObject_HEAD_INIT in initialization
362 of type objects.
363 (salpy_dealloc): Use Py_TYPE to call tp_free.
364 * python/py-type.c: Use PyVarObject_HEAD_INIT in initialization
365 of type objects.
366 (field_dealloc): Use Py_TYPE to call tp_free.
367 (typy_dealloc): Ditto.
368 (type_object_as_number): Adjust struct initializations for
369 differences in layout for Python 2 vs. Python 3.
370 * python/py-utils.c (python_string_to_unicode): Omit non-Unicode
371 string case for Python 3.
372 (unicode_to_encoded_python_string): Shorten code (no functional
373 change).
374 (python_string_to_target_python_string): Comment that in Python 3
375 returned value is a Python "bytes" type.
376 (gdbpy_is_string): Omit non-Unicode string check in Python 3.
377 (gdb_py_object_from_longest): Omit non-long integer case in Python
378 3.
379 (gdb_py_object_from_ulongest): Ditto.
380 * python/py-value.c: Use PyVarObject_HEAD_INIT in initialization
381 of type objects.
382 (valpy_dealloc): Use Py_TYPE to call tp_free.
383 (valpy_int): Omit function if Python 3.
384 (convert_value_from_python): Use "%S" format (Python object as a
385 string) if Python 3.
386 (value_object_as_number): Adjust struct initializations for
387 differences in layout for Python 2 vs. Python 3.
388 * python/python-config.py: Adjust syntax for Python 3
389 compatibility.
390 Include "sys.abiflags" string as part of python library name, if
391 that attribute exists (Python 3).
392 * python/python-internal.h (IS_PY3): Define if Python 3.
393 (Py_TPFLAGS_HAVE_ITER, Py_TPFLAGS_CHECKTYPES): Define with
394 placeholder value if Python 3.
395 (PyInt_Check, PyInt_FromLong, PyInt_AsLong, PyString_FromString,
396 PyString_Decode, PyString_FromFormat, PyString_Check): Define as
397 analogous Python 3 API function if Python 3.
398 (PyVarObject_HEAD_INIT): Define if not already defined.
399 (Py_TYPE): Ditto.
400 * python/python.c (eval_python_command): Omit Py_FlushLine call if
401 Python 3.
402 Check return values of all Python API calls for error.
403 Supply dummy "python" and "python-interactive" commands if Python
404 initialization failed.
405 (_initialize_python): Convert argc to wchar_t** if Python 3.
406 Add module initialization for Python 3.
407 (finish_python_initialization): Pass wchar_t * argument to
408 PySys_SetPath if Python 3.
409 * python/lib/gdb/__init__.py: Define "reload" if Python 3.
410 (_GdbFile): New class for common output file behavior.
411 (GdbOutFile): Subclass from _GdbFile.
412 (GdbOutputErrorFile): Ditto.
413 (auto_load_packages): Adjust syntax for Python 3 compatibility.
414 * python/lib/gdb/printing.py: Define basestr and int if Python 3.
415 * python/lib/gdb/prompt.py: Use sorted() function rather than
416 sort() method.
417 * python/lib/gdb/command/explore.py: Define raw_input if Python 3.
418 Adjust syntax for Python 3 compatibility.
419 * python/lib/gdb/command/pretty_printers.py: Use sorted() function
420 rather than sort() method.
421 Adjust syntax for Python 3 compatibility.
422 * python/lib/gdb/command/type_printers.py: Ditto.
423 * doc/gdb.texinfo (Inferior.read_memory): Mention that the return
424 value is a memoryview object if Python 3.
425
426 2012-12-12 Tom Tromey <tromey@redhat.com>
427
428 * coffread.c (coff_objfile_data_key): New global.
429 (coff_symfile_init): Use set_objfile_data.
430 (coff_symfile_read): Use objfile_data.
431 (coff_symfile_finish): Don't free deprecated_sym_private.
432 (coff_free_info): New function.
433 (_initialize_coffread): Initialize coff_objfile_data_key.
434 * mdebugread.c (pending_list): Update comment.
435 * objfiles.h (struct objfile) <deprecated_sym_private>: Remove.
436 * symfile.c (reread_symbols): Don't mention
437 deprecated_sym_private.
438 * xcoffread.c (xcoff_objfile_data_key): New global.
439 (XCOFF_DATA): New macro.
440 (process_linenos, enter_line_range, xcoff_next_symbol_text)
441 (read_xcoff_symtab, coff_getfilename, read_symbol_lineno): Use
442 XCOFF_DATA.
443 (xcoff_new_init) Use set_objfile_data.
444 (xcoff_symfile_finish): Don't free deprecated_sym_private.
445 (init_stringtab, swap_sym, scan_xcoff_symtab)
446 (xcoff_get_toc_offset, xcoff_initial_scan): Use XCOFF_DATA.
447 (xcoff_free_info): New function.
448 (_initialize_xcoffread): Initialize xcoff_objfile_data_key.
449
450 2012-12-12 Mircea Gherzan <mircea.gherzan@intel.com>
451
452 * MAINTAINERS (Write After Approval): Add "Mircea Gherzan".
453
454 2012-12-12 Tom Tromey <tromey@redhat.com>
455
456 * coffread.c (coff_symfile_init): Use set_objfile_data.
457 (coff_symfile_read): Use DBX_SYMFILE_INFO.
458 * dbxread.c (dbx_objfile_data_key): New global.
459 (dbx_symfile_init): Use set_objfile_data.
460 (dbx_symfile_finish): Don't free deprecated_sym_stab_info.
461 (dbx_free_symfile_info): New function.
462 (coffstab_build_psymtabs, elfstab_build_psymtabs): Use
463 DBX_SYMFILE_INFO.
464 (stabsect_build_psymtabs): Use set_objfile_data.
465 (_initialize_dbxreadb): Initialize dbx_objfile_data_key.
466 * elfread.c (elf_symtab_read): Use DBX_SYMFILE_INFO,
467 set_objfile_data.
468 (free_elfinfo): Use DBX_SYMFILE_INFO.
469 (elf_symfile_finish): Don't free deprecated_sym_stab_info.
470 (elfstab_offset_sections): Use DBX_SYMFILE_INFO.
471 * gdb-stabs.h (dbx_objfile_data_key): Declare.
472 (DBX_SYMFILE_INFO): Rewrite to use objfile_data.
473 * objfiles.h (struct objfile) <deprecated_sym_stab_info>: Remove.
474 * somread.c (som_symfile_finish): Don't free
475 deprecated_sym_stab_info.
476
477 2012-12-12 Joel Brobecker <brobecker@adacore.com>
478
479 * gdbarch.sh (software_single_step): Remove trailing space in
480 comment (gdbarch.h is already correct).
481
482 2012-12-11 Tom Tromey <tromey@redhat.com>
483
484 * dwarf2read.c (dwarf2_get_dwz_file): Set 'dwz_file'.
485
486 2012-12-11 Tom Tromey <tromey@redhat.com>
487
488 * dsrec.c (report_transfer_performance): Don't declare.
489 (load_srec): Use gettimeofday, print_transfer_performance.
490 * symfile.c (report_transfer_performance): Remove.
491
492 2012-12-11 Pedro Alves <pedro@codesourcery.com>
493 Pedro Alves <palves@redhat.com>
494
495 * procfs.c (procfs_make_note_section) [NEW_PROC_API]: Output a
496 NT_PSTATUS note.
497 * sol2-tdep.c (sol2_core_pid_to_str): Print process IDs
498 differently from LWP IDs.
499
500 2012-12-11 Pedro Alves <palves@redhat.com>
501
502 * configure.ac (detect type of /proc): Remove Unixware handling.
503 * configure: Regenerate.
504 * proc-api.c (ioctl_table) [PIOCLSTATUS]: Don't mention Unixware.
505 (ioctl_table) [PCRESET]: Remove entry.
506 * proc-events.c (SYS_lwp_create, SYS_lwp_exit, SYS_lwp_wait)
507 (SYS_lwp_self, SYS_lwp_info, SYS_lwp_private, SYS_lwp_kill)
508 (SYS_lwp_suspend, SYS_lwp_continue): Don't define.
509 * proc-why.c (pr_why_table) [PR_SUSPENDED]: Don't mention Unixware.
510 * procfs.c: Remove all UNIXWARE guarded code, and all traces of
511 Unixware in comments throughout.
512 * i386-tdep.c (i386_svr4_sigtramp_p): Don't match _sigacthandler,
513 and remove mention of Unixware.
514
515 2012-12-10 Doug Evans <dje@google.com>
516
517 * dwarf2read.c (dwarf2_cu): Enhance comment.
518 (dwarf2_get_pc_bounds): Only add ranges_base for DIEs that live in
519 the DWO file.
520 (dwarf2_record_block_ranges): Ditto.
521
522 * dwarf2read.c (create_dwo_in_dwp): Tweak comment.
523
524 * symtab.c (find_pc_sect_symtab): Add comment.
525
526 2012-12-10 Tom Tromey <tromey@redhat.com>
527
528 * defs.h: Don't check for definition of LONGEST.
529 (min, max): Remove duplicates.
530
531 2012-12-10 Tom Tromey <tromey@redhat.com>
532
533 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): New function.
534 (dwarf2_fetch_die_loc_cu_off): Rename from
535 dwarf2_fetch_die_location_block. Rewrite to use
536 dwarf2_fetch_die_loc_sect_off.
537 * dwarf2loc.h (dwarf2_fetch_die_loc_sect_off): Declare.
538 (dwarf2_fetch_die_loc_cu_off): Rename.
539 * dwarf2loc.c (indirect_pieced_value): Use
540 dwarf2_fetch_die_loc_sect_off.
541 * dwarf2expr.h (struct dwarf_expr_context) <len, data>: Update
542 comment.
543 (struct dwarf_expr_piece) <v.ptr.die>: Now a sect_offset.
544 * dwarf2expr.c (add_piece): Update.
545 (execute_stack_op) <DW_OP_GNU_implicit_pointer>: Update comment.
546
547 2012-12-10 Tom Tromey <tromey@redhat.com>
548
549 * buildsym.c (struct pending_block): Move from buildsym.h.
550 (pending_blocks): Likewise; now static.
551 (pending_block_obstack): New global.
552 (free_pending_blocks): Free blocks.
553 (record_pending_block): Use pending_block_obstack.
554 * buildsym.h (struct pending_block): Move definition to
555 buildsym.c.
556 (pending_blocks): Don't declare.
557
558 2012-12-10 Pedro Alves <palves@redhat.com>
559
560 * solib-svr4.c (svr4_solib_create_inferior_hook) [_SCO_DS]: Remove
561 dead SCO code, and adjust function description comment.
562
563 2012-12-09 Jan Kratochvil <jan.kratochvil@redhat.com>
564
565 * configure.ac (CC_HAS_LONG_LONG): Replace by AC_MSG_ERROR.
566 * defs.h (LONGEST, ULONGEST): Remove conditionalization for
567 CC_HAS_LONG_LONG.
568 * dwarf2-frame.c (DW64_CIE_ID): Likewise.
569 * dwarf2read.c (extract_cu_value): Remove the function.
570 (create_cus_from_index_list): Make the return type void, inline the
571 extract_cu_value caller, include new gdb_static_assert.
572 (create_cus_from_index): Make the return type void, update the function
573 comment, update the create_cus_from_index_list caller.
574 (create_signatured_type_table_from_index): Make the return type void,
575 inline the extract_cu_value caller, include new gdb_static_assert.
576 (dwarf2_read_index): Update the create_cus_from_index and
577 create_signatured_type_table_from_index caller.
578 * printcmd.c (ui_printf): Remove conditionalizations for
579 CC_HAS_LONG_LONG.
580 * config.in: Regenerate.
581 * configure: Regenerate.
582
583 2012-12-09 Jan Kratochvil <jan.kratochvil@redhat.com>
584
585 * dwarf2read.c (struct dwarf2_cu): New field producer_is_gcc_lt_4_3.
586 Update the comment for checked_producer.
587 (check_producer): New forward declaration.
588 (producer_is_gcc_lt_4_3): New function.
589 (find_file_and_directory): Simulate *COMP_DIR only for gcc < 4.3.
590 (check_producer): Initialize also PRODUCER_IS_GCC_LT_4_3.
591
592 2012-12-07 Tom Tromey <tromey@redhat.com>
593
594 * ada-lang.c (ada_make_symbol_completion_list): Add 'code'
595 argument, assertion.
596 * c-exp.y (typebase): Add completion productions.
597 * completer.c (expression_completer): Handle tag completion.
598 * expression.h (parse_expression_for_completion): Add argument.
599 * f-lang.c (f_make_symbol_completion_list): Add 'code'
600 argument.
601 * language.h (struct language_defn)
602 <la_make_symbol_completion_list>: Add 'code' argument.
603 * parse.c (expout_tag_completion_type, expout_completion_name):
604 New globals.
605 (mark_struct_expression): Add assertion.
606 (mark_completion_tag): New function.
607 (parse_exp_in_context): Initialize new globals.
608 (parse_expression_for_completion): Add 'code' argument. Handle
609 tag completion.
610 * parser-defs.h (mark_completion_tag): Declare.
611 * symtab.c (default_make_symbol_completion_list_break_on): Add
612 'code' argument. Update.
613 (default_make_symbol_completion_list): Add 'code' argument.
614 (make_symbol_completion_list): Update.
615 (make_symbol_completion_type): New function.
616 * symtab.h (default_make_symbol_completion_list_break_on)
617 (default_make_symbol_completion_list): Update.
618 (make_symbol_completion_type): Declare.
619
620 2012-12-07 Tom Tromey <tromey@redhat.com>
621
622 * expression.h (parse_expression_for_completion): Rename
623 from parse_field_expression.
624 (parse_completion): Rename from in_parse_field.
625 * c-exp.y (lex_one_token): Update.
626 * completer.c (expression_completer): Update.
627 * go-exp.y (lex_one_token): Update.
628 * p-exp.y (yylex): Update.
629 * parse.c (parse_completion): Rename from in_parse_field.
630 (parse_exp_in_context): Update.
631 (parse_expression_for_completion): Rename from
632 parse_field_expression. Update.
633
634 2012-12-07 Tom Tromey <tromey@redhat.com>
635
636 * typeprint.c (_initialize_typeprint): Set completer
637 for "whatis" and "ptype".
638
639 2012-12-07 Joel Brobecker <brobecker@adacore.com>
640
641 * copyright.py (NOT_FSF_LIST): Remove duplicate entry
642 "sim/common/cgen-fpu.h". Remove invalid entries
643 "sim/common/sim-fpu.c" and "sim/mn10300/sim-main.h",
644 which actually have an FSF copyright header.
645
646 2012-12-07 Joel Brobecker <brobecker@adacore.com>
647
648 * osf-share/AT386/cma_thread_io.h: Delete.
649 * osf-share/HP800/cma_thread_io.h: Delete.
650 * osf-share/README: Delete.
651 * osf-share/RIOS/cma_thread_io.h: Delete.
652 * osf-share/cma_attr.h: Delete.
653 * osf-share/cma_deb_core.h: Delete.
654 * osf-share/cma_debug_client.h: Delete.
655 * osf-share/cma_errors.h: Delete.
656 * osf-share/cma_handle.h: Delete.
657 * osf-share/cma_init.h: Delete.
658 * osf-share/cma_list.h: Delete.
659 * osf-share/cma_mutex.h: Delete.
660 * osf-share/cma_sched.h: Delete.
661 * osf-share/cma_semaphore_defs.h: Delete.
662 * osf-share/cma_sequence.h: Delete.
663 * osf-share/cma_stack.h: Delete.
664 * osf-share/cma_stack_int.h: Delete.
665 * osf-share/cma_tcb_defs.h: Delete.
666 * osf-share/cma_util.h: Delete.
667 * Makefile.in (HFILES_NO_SRCDIR): Remove entries for the files
668 in osf-share.
669 * config/djgpp/fnchange.lst: Remove osf-share/cma_stack_int.h entry.
670 * contrib/ari/gdb_find.sh: Remove handling of osf-share.
671 * copyright.sh (NOT_FSF_LIST): Remove "gdb/osf-share" entry.
672
673 2012-12-06 Pedro Alves <palves@redhat.com>
674 Tom Tromey <tromey@redhat.com>
675
676 * valops.c (value_cast): Move TYPE_CODE_VOID case earlier.
677
678 2012-12-06 Jens Elmenthaler <jens.elmenthaler@advantest.com>
679
680 PR mi/14741:
681 * mi/mi-cmd-var.c (varobj_update_one): Take value of
682 attribute "dynamic" and "displayhint" from printed child,
683 not the root variable.
684
685 2012-12-06 Joel Brobecker <brobecker@adacore.com>
686
687 * aix-thread.c (getthrds): Fix type of 4th parameter.
688 (get_signaled_thread): Change type of variable ktid to tid_t.
689
690 2012-12-06 Hui Zhu <hui_zhu@mentor.com>
691
692 * dwarf2loc.c (dwarf_expr_frame_base): Add check for the return
693 value of get_frame_block.
694
695 2012-12-05 Pierre Muller <muller@sourceware.org>
696
697 Avoid memory leaks on struct cmd_list_element.doc field.
698 * cli/cli-decode.c (add_alias_cmd): Make a copy of doc field
699 if flags contains DOC_ALLOCATED.
700 (add_setshow_cmd_full): Add DOC_ALLOCATED to set and show
701 flags.
702 (delete_cmd): Handle DOC_ALLOCATED flag.
703 * cli/cli-decode.h (DOC_ALLOCATED): New macro for use
704 in flags filed of struct cmd_list_element.
705 (struct cmd_list_element): Document new flag item.
706
707 2012-12-04 Doug Evans <dje@google.com>
708
709 * symmisc.c: Whitespace fixes.
710
711 2012-12-04 Karthik Bhat <kv.bhat@samsung.com>
712
713 * i386-tdep.c (i386_skip_prologue): Using symbol table
714 to find the end of prologue for clang compiled binaries.
715 * amd64-tdep.c (amd64_skip_prologue): Using symbol table
716 to find the end of prologue for clang compiled binaries.
717
718 2012-12-03 Doug Evans <dje@google.com>
719
720 * dwarf2read.c (struct dwarf2_per_objfile): Clarify comment.
721 (dw2_find_symbol_file): Delete unused local file_data.
722
723 2012-12-03 Tom Tromey <tromey@redhat.com>
724
725 * ada-exp.y (write_object_renaming, write_var_or_type)
726 (write_ambiguous_var, write_var_from_sym): Make blocks const.
727 * ada-lang.c (replace_operator_with_call)
728 (find_old_style_renaming_symbol): Make blocks const.
729 * ada-lang.h (ada_find_renaming_symbol): Update.
730 (struct ada_symbol_info) <block>: Now const.
731 * breakpoint.c (watch_command_1): Update.
732 * breakpoint.h (struct watchpoint) <exp_valid_block,
733 cond_exp_valid_block>: Now const.
734 * c-exp.y (classify_inner_name, classify_name): Make block
735 argument const.
736 * expprint.c (print_subexp_standard) <OP_VAR_VALUE>: Make 'b'
737 const.
738 * expression.h (innermost_block, parse_exp_1): Update.
739 (union exp_element) <block>: Now const.
740 * gdbtypes.c (lookup_template_type, lookup_enum, lookup_union)
741 (lookup_struct): Make block argument const.
742 * gdbtypes.h (lookup_template_type): Update.
743 * go-exp.y (classify_name, classify_packaged_name)
744 (package_name_p): Make block argument const.
745 * objc-lang.c (lookup_struct_typedef): Make block argument const.
746 * objc-lang.h (lookup_struct_typedef): Update.
747 * parse.c (parse_exp_in_context, parse_exp_1)
748 (write_exp_elt_block): Make block arguments const.
749 (expression_context_block, innermost_block): Now const.
750 * parser-defs.h (write_exp_elt_block): Update.
751 (expression_context_block, innermost_block, block_found): Now
752 const.
753 * printcmd.c (struct display) <block>: Now const.
754 * symtab.h (lookup_struct, lookup_union, lookup_enum): Update.
755 * valops.c (address_of_variable): Make block argument const.
756 * value.h (value_of_variable): Update.
757 * varobj.c (struct varobj_root) <valid_block>: Now const.
758
759 2012-11-30 Yao Qi <yao@codesourcery.com>
760
761 * breakpoint.c (print_one_breakpoint_location): Indent code.
762
763 2012-11-30 Yao Qi <yao@codesourcery.com>
764
765 * breakpoint.c (print_one_breakpoint_location): Combine two
766 blocks handling 'hit count' together.
767
768 2012-11-30 Yao Qi <yao@codesourcery.com>
769
770 * infrun.c (error_is_running, ensure_not_running): Move them
771 to ...
772 * infcmd.c (error_is_running, ensure_not_running): ... here.
773 Make them 'static'.
774 * inferior.h: Remove declarations of error_is_running and
775 ensure_not_running.
776
777 2012-11-30 Yao Qi <yao@codesourcery.com>
778
779 * tic6x-linux-tdep.c (tic6x_register_sigcontext_offset): Don't
780 check REGNUM >= 0.
781
782 2012-11-30 Yao Qi <yao@codesourcery.com>
783
784 * infrun.c: Make the declaration of 'init_infwait_state'
785 static.
786 (init_infwait_state): Make it 'static'.
787
788 2012-11-29 Ulrich Weigand <uweigand@de.ibm.com>
789
790 * python/python.c (finalize_python): Cast unused PyGILState_Ensure
791 return value to void to avoid compiler warning.
792
793 2012-11-29 Ulrich Weigand <uweigand@de.ibm.com>
794
795 * opencl-lang.c (opencl_print_type): New function.
796 (opencl_language_arch_info): Install it.
797
798 2012-11-29 Tom Tromey <tromey@redhat.com>
799
800 * contrib/ari/gdb_ari.sh: Remove rules for xasprintf and
801 xvasprintf.
802 * common/common-utils.c (xasprintf, xvasprintf): Remove.
803 * common/common-utils.h (xasprintf, xvasprintf): Remove.
804
805 2012-11-29 Jerome Guitton <guitton@adacore.com>
806
807 * ada-lang.c (ada_is_interface_tag): New function.
808 (ada_is_ignored_field): Add interface tags to the list
809 of ignored fields.
810
811 2012-11-29 Jerome Guitton <guitton@adacore.com>
812
813 * ada-lang.h (ada_tag_value_at_base_address): New function
814 declaration.
815 * ada-lang.c (is_ada95_tag, ada_tag_value_at_base_address):
816 New functions.
817 (ada_to_fixed_type_1, ada_evaluate_subexp): Let ada_tag_base_address
818 relocate the class-wide value if need be.
819 (ada_value_struct_elt, ada_value_ind, ada_coerce_ref):
820 Let ada_tag_value_at_base_address relocate the class-wide access/ref
821 before dereferencing it.
822 * ada-valprint.c (ada_val_print_1): Relocate to base address
823 before displaying the content of an interface-wide ref.
824
825 2012-11-29 Jerome Guitton <guitton@adacore.com>
826
827 * ada-lang.c (ada_evaluate_subexp): Unwrap only in EVAL_NORMAL.
828
829 2012-11-29 Joel Brobecker <brobecker@adacore.com>
830
831 GDB 7.5.1 released.
832
833 2012-11-29 Yao Qi <yao@codesourcery.com>
834 Tom Tromey <tromey@redhat.com>
835
836 * eval.c (evaluate_subexp_standard): Get the correct pointer
837 type for TYPE_CODE_MEMBERPTR.
838
839 2012-11-28 Edjunior Machado <emachado@linux.vnet.ibm.com>
840
841 * rs6000-tdep.c (gdb_print_insn_powerpc): Remove info->mach checking,
842 since now it is being done by binutils' powerpc_init_dialect().
843
844 2012-11-28 Tom Tromey <tromey@redhat.com>
845
846 PR gdb/14290:
847 * solib-darwin.c (gdb_bfd_mach_o_fat_extract): New function.
848 (darwin_solib_get_all_image_info_addr_at_init, darwin_bfd_open):
849 Use it.
850 * gdb_bfd.h (gdb_bfd_mark_parent): Declare.
851 * gdb_bfd.c (gdb_bfd_mark_parent): New function.
852 (gdb_bfd_openr_next_archived_file): Use it.
853
854 2012-11-28 Markus Metzger <markus.t.metzger@intel.com>
855
856 * configure.ac: Check for linux/perf_event.h.
857 * config.in: Regenerated.
858 * configure: Regenerated.
859
860 2012-11-28 Yao Qi <yao@codesourcery.com>
861
862 * breakpoint.c (_initialize_breakpoint): Call add_alias_cmd to
863 abbreviate 'delete tracepoints' to 'delete tr'.
864 * corefile.c (_initialize_core): Call add_alias_cmd to
865 abbreviate 'set gnutarget' to 'set g'.
866 * value.c (_initialize_values): Call add_alias_cmd to abbreviate
867 'show convenience' to 'show conv'.
868
869 2012-11-27 Joel Brobecker <brobecker@adacore.com>
870
871 * sparc-sol2-nat.c (supply_gregset): Fix first parameter in
872 call to sparc_supply_fpregset.
873 (fill_fpregset): Fix first parameter in call to
874 sparc_collect_fpregset.
875
876 2012-11-27 Daniel Jacobowitz <dan@codesourcery.com>
877 Kazu Hirata <kazu@codesourcery.com>
878 Yao Qi <yao@codesourcery.com>
879
880 * objfiles.c (init_entry_point_info): Call
881 gdbarch_convert_from_func_ptr_addr and
882 gdbarch_addr_bits_remove here ...
883 (entry_point_address_query): ... instead of here.
884 * solib-svr4.c (exec_entry_point): Call
885 gdbarch_addr_bits_remove.
886 * symfile.c (generic_load): Call gdbarch_addr_bits_remove on
887 the entry address.
888
889 2012-11-27 Daniel Jacobowitz <dan@codesourcery.com>
890 Yao Qi <yao@codesourcery.com>
891
892 * eval.c (evaluate_subexp_standard): Add handling of
893 TYPE_CODE_MEMBERPTR when calling functions. Correct the
894 result of ptype for calling a TYPE_CODE_METHODPTR.
895
896 2012-11-27 Yao Qi <yao@codesourcery.com>
897
898 * symtab.c (symtab_symbol_info): Fix a -Wformat-extra-args
899 warning.
900 Add i18n markup.
901
902 2012-11-26 Alexander Larsson <alexl@redhat.com>
903 Jan Kratochvil <jan.kratochvil@redhat.com>
904 Tom Tromey <tromey@redhat.com>
905
906 * NEWS: Mention mini debuginfo feature.
907 * minidebug.c: New file.
908 * configure.ac: Check for lzma.
909 * configure, config.in: Rebuild.
910 * Makefile.in (LIBLZMA): New variable.
911 (CLIBS): Include LIBLZMA.
912 (SFILES): Mention minidebug.c.
913 (COMMON_OBS): Mention minidebug.o.
914 * symfile.c (read_symbols): New function.
915 (syms_from_objfile, reread_symbols): Call it.
916 * symfile.h (find_separate_debug_file_in_section): Declare.
917
918 2012-11-26 Keith Seitz <keiths@redhat.com>
919
920 * exec.c (exec_file_attach): Move cleanup after verifying that
921 memory has in fact been allocated.
922
923 2012-11-26 Tom Tromey <tromey@redhat.com>
924
925 * ada-lang.c (user_select_syms): Use SYMBOL_SYMTAB.
926 * dwarf2read.c (dw2_find_symbol_file, fixup_go_packaging): Use
927 SYMBOL_SYMTAB.
928 * skip.c (skip_info): Use SYMBOL_SYMTAB.
929
930 2012-11-26 Maxime Villard <rustyBSD@gmx.fr>
931 Pedro Alves <palves@redhat.com>
932
933 * common/linux-osdata.c (linux_xfer_osdata_fds): Decrease buffer
934 size parameter passed to readlink by one byte.
935 * fbsd-nat.c (fbsd_pid_to_exec_file): Ditto.
936 * linux-nat.c (linux_child_pid_to_exec_file): Ditto.
937 * nbsd-nat.c (nbsd_pid_to_exec_file): Ditto.
938 * inf-child.c (inf_child_fileio_readlink): Decrease local buffer's
939 size by one byte.
940
941 2012-11-26 Yao Qi <yao@codesourcery.com>
942
943 * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
944 extraneous parentheses.
945
946 2012-11-26 Yao Qi <yao@codesourcery.com>
947
948 * remote.c (remote_start_remote): Typo fix.
949
950 2012-11-23 David S. Miller <davem@davemloft.net>
951
952 * sparc-tdep.h (struct sparc_fpregset): New data structure.
953 (sparc32_sunos4_fpregset, sparc32_bsd_fpregset,
954 sparc32_sol2_fpregset): Declare new globals.
955 (sparc32_supply_fpregset, sparc32_collect_fpregset): Add new
956 'fpregset' argument.
957 * sparc64-tdep.h (sparc64_supply_fpregset,
958 sparc64_collect_fpregset): Likewise.
959 (sparc64_sol2_fpregset, sparc64_bsd_fpregset): Declare new
960 globals.
961 * sparc-nat.h (struct sparc_fpregset): Add forward declaration.
962 (sparc_fpregset): Declare new global.
963 (sparc_supply_fpregset, sparc_collect_fpregset): Add new
964 'fpregset' argument.
965 * sparc-linux-nat.c (supply_fpregset): Pass sparc_fpregset down
966 into handler.
967 (fill_fpregset): Likewise.
968 (_initialize_sparc_linux_nat): Set sparc_fpregset to
969 sparc32_bsd_fpregset.
970 * sparc-linux-tdep.c (sparc32_linux_supply_core_fpregset): Pass
971 sparc32_bsd_fpregset down into handler.
972 (sparc32_linux_collect_core_fpregset): Likewise.
973 * sparc-nat.c (sparc_fpregset): Define.
974 (sparc_supply_fpregset): Add 'fpregset' argument.
975 (sparc_collect_fpregset): Likewise.
976 (sparc_fetch_inferior_registers): Pass sparc_fpregset down
977 into fpregset handler.
978 (sparc_store_inferior_registers): Likewise.
979 (_initialize_sparc_nat): Set sparc_fpregset to
980 sparc32_sunos4_fpregset if NULL.
981 * sparc-sol2-nat.c (supply_gregset): Pass sparc_sol2_fpregset
982 down into handler.
983 (fill_fpregset): Likewise.
984 * sparc-sol2-tdep.c (sparc32_sol2_fpregset): Define.
985 * sparc-tdep.c (sparc32_supply_fpregset): Add fpregset arg and
986 use it to compute offsets.
987 (sparc32_collect_fpregset): Likewise.
988 (sparc32_sunos4_fpregset, sparc32_bsd_fpregset): Define.
989 * sparc64-linux-nat.c (supply_fpregset): Pass sparc64_bsd_fpregset
990 down into handler.
991 (fill_fpregset): Likewise.
992 * sparc64-linux-tdep.c (sparc64_linux_supply_core_fpregset):
993 Likewise.
994 (sparc64_linux_collect_core_fpregset): Likewise.
995 * sparc64-sol2-tdep.c (sparc64_sol2_fpregset): Define.
996 * sparc64-tdep.c (sparc64_supply_fpregset): Add fpregset arg and
997 use it to compute offsets.
998 (sparc64_collect_fpregset): Likewise.
999 (sparc64_bsd_fpregset): Define.
1000 * sparc64fbsd-tdep.c (sparc64fbsd_supply_fpregset): Padd
1001 sparc64_bsd_fpregset down into handler.
1002 (sparc64fbsd_collect_fpregset): Likewise.
1003 * sparc64nbsd-nat.c (sparc64nbsd_supply_fpregset): Add fpregset arg
1004 and pass sparc{32,64}_bsd_fpregset down into handler.
1005 (sparc64nbsd_collect_fpregset): Likewise.
1006 * sparc64nbsd-tdep.c (sparc64nbsd_supply_fpregset): Pass
1007 sparc64_bsd_fpregset down into handler.
1008 * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Likewise.
1009 * sparcnbsd-nat.c (_initialize_sparcnbsd_nat): Set sparc_fpregset
1010 to sparc32_bsd_fpregset.
1011 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Pass
1012 sparc32_bsd_fpregset down into sparc32_supply_fpregset.
1013 (sparc32nbsd_supply_fpregset): Likewise.
1014
1015 2012-11-21 Tom Tromey <tromey@redhat.com>
1016
1017 * gdbtypes.h (struct cplus_struct_type) <localtype_ptr>: Remove
1018 field.
1019 (TYPE_LOCALTYPE_PTR, TYPE_LOCALTYPE_FILE, TYPE_LOCALTYPE_LINE):
1020 Remove.
1021 * c-typeprint.c (c_type_print_base): Update.
1022
1023 2012-11-21 Yao Qi <yao@codesourcery.com>
1024
1025 PR tdep/7438
1026 * gdbarch.sh (smash_text_address): Remove.
1027 * gdbarch.c, gdbarch.h: Regenerate.
1028 * arm-tdep.c (arm_smash_text_address): Remove.
1029 (arm_gdbarch_init): Don't call set_gdbarch_smash_text_address.
1030 * hppa-tdep.c (hppa_smash_text_address): Remove.
1031 (hppa_addr_bits_remove): Rename from hppa_smash_text_address.
1032 (hppa_gdbarch_init): Don't call set_gdbarch_smash_text_address.
1033 Caller update.
1034 * coffread.c (coff_symtab_read): Caller update.
1035 * dbxread.c (process_one_symbol): Likewise.
1036 * elfread.c (record_minimal_symbol): Likewise.
1037 * somread.c (som_symtab_read): Likewise.
1038
1039 2012-11-20 Pierre Muller <muller@sourceware.org>
1040
1041 ARI fixes: sprintf rule.
1042 Replace sprintf function calls for char arrays by
1043 calls to xsnprintf calls.
1044 * arm-tdep.c (arm_push_dummy_call): Replace sprintf by xsnprintf.
1045 (arm_dwarf_reg_to_regnum, arm_return_value): Ditto.
1046 (arm_neon_quad_read, arm_pseudo_read): Ditto.
1047 (arm_neon_quad_write, arm_pseudo_write): Ditto.
1048 * breakpoint.c (condition_completer): Ditto.
1049 (create_tracepoint_from_upload): Ditto.
1050 * dwarf2read.c (file_full_name): Ditto.
1051 * gcore.c (gcore_command): Ditto.
1052 * gnu-nat.c (proc_string, gnu_pid_to_str): Ditto.
1053 * go32-nat.c (go32_sysinfo): Ditto.
1054 * interps.c (interp_set): Ditto.
1055 * m32c-tdep.c (make_types): Ditto.
1056 * ppc-linux-nat.c (fetch_register, store_register): Ditto.
1057 * remote-m32r-sdi.c (m32r_open): Ditto.
1058 * sol-thread.c (td_err_string): Ditto.
1059 (td_state_string, solaris_pid_to_str): Ditto.
1060 * symtab.c (gdb_mangle_name): Ditto.
1061 * cli/cli-script.c (execute_control_command): Ditto.
1062 (define_command, document_command): Ditto.
1063 * tui/tui-io.c (tui_rl_display_match_list): Ditto.
1064 * tui/tui-stack.c (tui_make_status_line): Ditto.
1065 * tui/tui-win.c (tui_update_gdb_sizes): Ditto.
1066
1067 2012-11-20 Mike Frysinger <vapier@gentoo.org>
1068
1069 * cli/cli-decode.c (complete_on_cmdlist): Add a fourth arg and check
1070 it when looking at ptr->func.
1071 * command.h (complete_on_cmdlist): Add a fourth arg.
1072 * completer.c (complete_line_internal): Add local ignore_help_classes,
1073 and set it to 1 when reason is not handle_help. Pass this down to
1074 lookup_cmd_1 and complete_on_cmdlist.
1075
1076 2012-11-20 Tom Tromey <tromey@redhat.com>
1077
1078 * completer.c (count_struct_fields): Remove.
1079 (expression_completer): Don't call count_struct_fields.
1080
1081 2012-11-20 Pedro Alves <palves@redhat.com>
1082
1083 * annotate.c (breakpoints_changed): Rename to ...
1084 (annotate_breakpoints_changed): ... this.
1085 (annotate_stopped, breakpoint_changed): Adjust caller.
1086 * annotate.h (breakpoints_changed): Rename to ...
1087 (annotate_breakpoints_changed): ... this.
1088 * breakpoint.c (set_breakpoint_condition, breakpoint_set_commands)
1089 (do_map_commands_command, init_raw_breakpoint, clear_command)
1090 (set_ignore_count, enable_breakpoint_disp): Adjust callers.
1091
1092 2012-11-20 David S. Miller <davem@davemloft.net>
1093
1094 * common/linux-osdata.c (get_number_of_cpu_cores): Delete.
1095 (linux_xfer_osdata_processes): Fetch _SC_NPROCESSORS_ONLN via
1096 sysconf.
1097 (get_cores_used_by_process): Update comment.
1098
1099 2012-11-20 Yao Qi <yao@codesourcery.com>
1100
1101 * objfiles.c (init_entry_point_info): Remove trailing spaces.
1102
1103 2012-11-20 Yao Qi <yao@codesourcery.com>
1104
1105 * infrun.c (handle_inferior_event): Pass 'saved_singlestep_ptid'
1106 to deprecated_context_hook.
1107
1108 2012-11-19 Yao Qi <yao@codesourcery.com>
1109
1110 * infrun.c (infwait_state): Add static.
1111
1112 2012-11-16 Keith Seitz <keiths@redhat.com>
1113
1114 PR c++/13615
1115 * cp-namespace.c (cp_lookup_symbol_in_namespace): Add SEARCH
1116 parameter and pass it to lookup_symbol_file.
1117 (cp_lookup_symbol_imports): Tell cp_lookup_symbol_in_namespace
1118 to search base classes.
1119 (cp_lookup_symbol_namespace): Likewise.
1120 (lookup_namespace_scope): Likewise.
1121 (lookup_symbol_file): Add SEARCH parameter.
1122 If SEARCH is non-zero and no symbol is found, lookup the class
1123 and call cp_lookup_nested_symbol.
1124 (find_symbol_in_baseclass): New function.
1125 (cp_lookup_nested_symbol): Do not let
1126 cp_lookup_symbol_in_namespace search through base classes.
1127 Do that later when there is no global symbol match.
1128
1129 2012-11-16 Doug Evans <dje@google.com>
1130
1131 * main.c (gdb_datadir_provided): New static global.
1132 (get_init_files): If --data-directory is provided,
1133 and SYSTEM_GDBINIT lives in data-directory, look for it there.
1134 * NEWS: Mention it.
1135
1136 2012-11-15 Pierre Muller <muller@sourceware.org>
1137
1138 ARI fixes: move gdb_wait and gdb_stat headers to common subdirectory.
1139 * gdb_stat.h: Delete. Moved to common directory.
1140 * common/gdb_stat.h: New file.
1141 * gdb_wait.h: Delete. Moved to common directory.
1142 * common/gdb_wait.h: New file.
1143 * Makefile.in (H_FILES_NO_SRC): Adapt to new header
1144 location.
1145 * contrib/ari/gdb_ari.sh (wait.h rule): Adapt to new gdb_wait.h
1146 location.
1147 (stat.h rule): Adapt to new gdb_stat.h location.
1148 * common/linux-osdata.c: Include "gdb_stat.h" header instead of
1149 <sys/stat.h> header.
1150 * common/linux-ptrace.c: Include "gdb_wait.h" header instead of
1151 <sys/wait.h> header.
1152
1153 2012-11-15 Pierre Muller <muller@sourceware.org>
1154
1155 * configure.ac (AC_HEADER_STAT): Remove.
1156 * gdb_stat.h (STAT_MACROS_BROKEN): Remove macro use
1157 and corresponding code.
1158 * configure: Regenerate.
1159 * config.in: Regenerate.
1160
1161 2012-11-15 Pierre Muller <muller@sourceware.org>
1162
1163 ARI xasprintf rule fixes.
1164 * dwarf2read.c (create_dwo_in_dwp): Use xstrprintf function
1165 instead of xasprintf.
1166 (open_and_init_dwp_file): Ditto.
1167
1168 2012-11-14 Luis Machado <lgustavo@codesourcery.com>
1169
1170 * value.c (value_actual_type): Check for TYPE_CODE_STRUCT
1171 target types.
1172
1173 2012-11-14 Tom Tromey <tromey@redhat.com>
1174
1175 * configure, config.in: Rebuild.
1176 * configure.ac: Don't check for ctype.h, time.h.
1177 * expprint.c: Don't use HAVE_CTYPE_H.
1178
1179 2012-11-13 Tom Tromey <tromey@redhat.com>
1180
1181 * gdbarch.h, gdbarch.c: Rebuild.
1182 * gdbarch.sh (set_target_gdbarch): Rename from
1183 deprecated_target_gdbarch_select_hack.
1184 * arch-utils.c (gdbarch_update_p): Update.
1185 (set_gdbarch_from_file): Update.
1186
1187 2012-11-14 Pierre Muller <muller@sourceware.org>
1188
1189 * MAINTAINERS (Responsible Maintainers/misc): Add myself
1190 as responsible of contrib/ari directory.
1191
1192 2012-11-14 Daniel Jacobowitz <dan@codesourcery.com>
1193 Yao Qi <yao@codesourcery.com>
1194
1195 * arm-tdep.c (arm_addr_bits_remove): Do not adjust the low
1196 bit of EXC_RETURN.
1197 (arm_m_exception_cache, arm_m_exception_this_id)
1198 (arm_m_exception_prev_register, arm_m_exception_unwind_sniffer)
1199 (arm_m_exception_unwind): New.
1200 (arm_gdbarch_init): Register arm_m_exception_unwind.
1201
1202 2012-11-13 Giuseppe Montalto <giuseppe.montalto@st.com>
1203
1204 * mi/mi-main.c (mi_cmd_data_write_memory): Handle additional
1205 parameter COUNT, for pattern filling of memory regions.
1206 * NEWS: Mention it.
1207
1208 2012-11-13 Markus Metzger <markus.t.metzger@intel.com>
1209
1210 * disasm.h (DISASSEMBLY_FILENAME): New macro.
1211 * disasm.c (do_mixed_source_and_assembly): Pass filename flag on
1212 to print_source_lines ().
1213 * symtab.h (PRINT_SOURCE_LINES_FILENAME): New print source lines
1214 flag.
1215 * source.c (print_source_lines_base): Prefix source line with
1216 filename if PRINT_SOURCE_LINES_FILENAME flag is set.
1217
1218 2012-11-13 Markus Metzger <markus.t.metzger@intel.com>
1219
1220 * symtab.h (print_source_lines_flags): New enum.
1221 * source.c (print_source_lines_base): Change noerror to flags.
1222 (print_source_lines): Change noerror to flags.
1223
1224 2012-11-13 Pierre Muller <muller@sourceware.org>
1225
1226 ARI fixes: Avoid sprintf function use rule.
1227 * charset.c (convert_between_encodings): Use xsnprintf.
1228 * cli-out.c (cli_field_int): Likewise.
1229 * cp-namespace.c (cp_lookup_nested_symbol): Likewise.
1230 * expprint.c (op_name_standard): Likewise.
1231 * frv-tdep.c (set_variant_num_gprs): Likewise.
1232 (set_variant_num_fprs): Likewise.
1233 * m68hc11-tdep.c (m68hc11_initialize_register_info): Likewise.
1234 * nto-tdep.c (nto_find_and_open_solib): Likewise.
1235 (nto_init_solib_absolute_prefix): Likewise.
1236 * source.c (init_source_path): Likewise.
1237 (print_source_lines_base): Likewise.
1238 * valprint.c (print_wchar): Likewise.
1239 * mi/mi-out.c (mi_field_int): Likewise.
1240 windows-nat.c (windows_pid_to_exec_file): Likewise.
1241 (windows_create_inferior): Likewise.
1242 (_initialize_check_for_gdb_ini): Likewise.
1243
1244 2012-11-12 Joel Brobecker <brobecker@adacore.com>
1245
1246 * frame.h (deprecated_frame_register_read): Renames
1247 frame_register_read.
1248 * frame.c (deprecated_frame_register_read): Renames
1249 frame_register_read. Update all callers.
1250 * i386-tdep.c: Update all callers of frame_register_read.
1251 * infcmd.c: Likewise.
1252 * jit.c: Likewise.
1253 * mips-tdep.c: Likewise.
1254 * mt-tdep.c: Likewise.
1255 * sh64-tdep.c: Likewise.
1256
1257 2012-11-12 Joel Brobecker <brobecker@adacore.com>
1258
1259 * frame.h (frame_register_read): Remove FIXME comment.
1260 * frame.c (frame_register_read): Add suggestion explaining
1261 which function to use in place of this one.
1262
1263 2012-11-12 Tom Tromey <tromey@redhat.com>
1264
1265 * python/python.c (start_type_printers): Initialize 'result_obj'.
1266
1267 2012-11-12 Tom Tromey <tromey@redhat.com>
1268
1269 * NEWS: Update.
1270 * data-directory/Makefile.in (PYTHON_FILES): Add
1271 type_printers.py.
1272 * python/lib/gdb/command/type_printers.py: New file.
1273 * python/lib/gdb/command/types.py (TypePrinter): New class.
1274 (_get_some_type_recognizers, get_type_recognizers,
1275 apply_type_recognizers, register_type_printer): New
1276 functions.
1277 * python/py-objfile.c (objfile_object) <type_printers>: New
1278 field.
1279 (objfpy_dealloc): Decref new field.
1280 (objfpy_new): Set new field.
1281 (objfpy_get_type_printers, objfpy_set_type_printers): New
1282 functions.
1283 (objfile_to_objfile_object): Set new field.
1284 (objfile_getset): Add "type_printers".
1285 * python/py-progspace.c (pspace_object) <type_printers>: New
1286 field.
1287 (pspy_dealloc): Decref new field.
1288 (pspy_new): Set new field.
1289 (pspy_get_type_printers, pspy_set_type_printers): New functions.
1290 (pspace_to_pspace_object): Set new field.
1291 (pspace_getset): Add "type_printers".
1292 * python/python.c (start_type_printers, apply_type_printers,
1293 free_type_printers): New functions.
1294 (_initialize_python): Set gdb.type_printers.
1295 * python/python.h (start_type_printers, apply_type_printers,
1296 free_type_printers): Declare.
1297 * typeprint.c (type_print_raw_options, default_ptype_flags):
1298 Update for new fields.
1299 (do_free_global_table, create_global_typedef_table,
1300 find_global_typedef): New functions.
1301 (find_typedef_in_hash): Use find_global_typedef.
1302 (whatis_exp): Use create_global_typedef_table. Change cleanup
1303 handling.
1304 * typeprint.h (struct type_print_options) <global_typedefs,
1305 global_printers>: New fields.
1306
1307 2012-11-12 Tom Tromey <tromey@redhat.com>
1308
1309 * c-typeprint.c (find_typedef_for_canonicalize,
1310 print_name_maybe_canonical): New functions.
1311 (c_print_type): Look up type name.
1312 (cp_type_print_derivation_info): Add flags argument. Use
1313 print_name_maybe_canonical.
1314 (cp_type_print_method_args): Add wrapping.
1315 (c_type_print_varspec_prefix): Use print_name_maybe_canonical.
1316 (c_type_print_template_args): New function.
1317 (c_type_print_base): Change wrapping. Use
1318 print_name_maybe_canonical.
1319 <TYPE_CODE_STRUCT>: Possibly create a typedef hash, and do
1320 type name lookups.
1321 * gdbtypes.c (types_equal): No longer static.
1322 * gdbtypes.h (types_equal): Declare.
1323 * typeprint.c (type_print_raw_options, default_ptype_flags):
1324 Update.
1325 (struct typedef_hash_table): New.
1326 (hash_typedef_field, eq_typedef_field,
1327 recursively_update_typedef_hash, add_template_parameters,
1328 create_typedef_hash, free_typedef_hash, do_free_typedef_hash,
1329 make_cleanup_free_typedef_hash, copy_typedef_hash_element,
1330 copy_typedef_hash, find_typedef_in_hash): New functions.
1331 * typeprint.h (struct type_print_options) <local_typedefs>:
1332 New field.
1333 (recursively_update_typedef_hash, add_template_parameters,
1334 create_typedef_hash, free_typedef_hash,
1335 make_cleanup_free_typedef_hash, copy_typedef_hash,
1336 find_typedef_in_hash): Declare.
1337
1338 2012-11-12 Tom Tromey <tromey@redhat.com>
1339
1340 * cp-support.c (inspect_type,
1341 replace_typedefs_qualified_name, replace_typedefs): Add
1342 finder, data arguments. Call as needed.
1343 (cp_canonicalize_string_full): New function.
1344 (cp_canonicalize_string_no_typedefs): Rewrite.
1345 * cp-support.h (canonicalization_ftype): New typedef.
1346 (cp_canonicalize_string_full): Declare.
1347
1348 2012-11-12 Tom Tromey <tromey@redhat.com>
1349
1350 * NEWS: Update.
1351 * c-typeprint.c (c_type_print_base): Handle print_method and
1352 print_typedefs flags.
1353 * gdbcmd.h (setprinttypelist, showprinttypelist): Declare.
1354 * python/py-type.c (typy_str): Use LA_PRINT_TYPE and raw
1355 options.
1356 * typeprint.c (type_print_raw_options, default_ptype_flags):
1357 Update for new field.s
1358 (whatis_exp): Parse flags. Use LA_PRINT_TYPE.
1359 (setprinttypelist, showprinttypelist, print_methods,
1360 print_typedefs): New globals.
1361 (set_print_type, show_print_type, set_print_type_methods,
1362 show_print_type_methods, set_print_type_typedefs,
1363 show_print_type_typedefs): New functions.
1364 (_initialize_typeprint): Update documentation. Add "print
1365 type methods" and "print type typedefs" parameters.
1366 * typeprint.h (struct type_print_options) <print_methods,
1367 print_typedefs>: New fields.
1368
1369 2012-11-12 Tom Tromey <tromey@redhat.com>
1370
1371 * c-typeprint.c (cp_type_print_method_args): Add flags
1372 argument. Call c_print_type, not type_print.
1373 (c_type_print_base): Call c_print_type, not type_print.
1374 Update.
1375
1376 2012-11-12 Tom Tromey <tromey@redhat.com>
1377
1378 * ada-lang.c (user_select_syms, ada_print_subexp): Pass flags
1379 to type-printing functions.
1380 * ada-lang.h (ada_print_type): Add argument.
1381 * ada-typeprint.c (print_array_type, print_variant_clauses,
1382 print_variant_part, print_selected_record_field_types,
1383 print_record_field_types, print_unchecked_union_type,
1384 print_func_type, ada_print_type): Add flags argument.
1385 (ada_print_typedef): Update.
1386 * c-exp.y (OPERATOR conversion_type_id): Update.
1387 * c-lang.h (c_print_type, c_type_print_base): Update.
1388 * c-typeprint.c (c_print_type, c_type_print_varspec_prefix,
1389 c_type_print_modifier, c_type_print_args,
1390 c_type_print_varspec_suffix, c_type_print_base): Add flags
1391 argument.
1392 * cp-valprint.c (cp_print_class_member): Update.
1393 * dwarf2read.c (dwarf2_compute_name): Update.
1394 * f-lang.h (f_print_type): Add argument.
1395 * f-typeprint.c (f_print_type): Add flags argument.
1396 * gnu-v3-abi.c (gnuv3_print_method_ptr): Update.
1397 * go-lang.h (go_print_type): Add argument.
1398 * go-typeprint.c (go_print_type): Add flags argument.
1399 * jv-lang.h (java_print_type): Add argument.
1400 * jv-typeprint.c (java_type_print_base, java_print_type): Add
1401 flags argument.
1402 * language.c (unk_lang_print_type): Add flags argument.
1403 * language.h (struct language_defn) <la_print_type>: Add flags
1404 argument.
1405 (LA_PRINT_TYPE): Likewise.
1406 * m2-lang.h (m2_print_type): Add argument.
1407 * m2-typeprint.c (m2_print_type, m2_range, m2_typedef,
1408 m2_array, m2_pointer, m2_ref, m2_procedure, m2_long_set,
1409 m2_unbounded_array, m2_record_fields): Add flags argument.
1410 * p-lang.h (pascal_print_type, pascal_type_print_base,
1411 pascal_type_print_varspec_prefix): Add argument.
1412 * p-typeprint.c (pascal_print_type,
1413 pascal_type_print_varspec_prefix, pascal_print_func_args,
1414 pascal_type_print_varspec_suffix, pascal_type_print_base): Add
1415 flags argument.
1416 * symmisc.c (print_symbol): Update.
1417 * typeprint.c (type_print_raw_options, default_ptype_flags):
1418 New globals.
1419 (type_print): Update.
1420 * typeprint.h (struct type_print_options): New.
1421 (type_print_raw_options): Declare.
1422 (c_type_print_varspec_suffix, c_type_print_args): Add argument.
1423
1424 2012-11-10 Keith Seitz <keiths@redhat.com>
1425
1426 * breakpoint.c (clear_command): Add cleanup for
1427 sals.sals if an argument is given.
1428
1429 * linespec.c (parse_linespec): Do cleanups after
1430 parsing a convenience variable.
1431
1432 2012-11-10 Keith Seitz <keiths@redhat.com>
1433
1434 PR gdb/14288
1435 * c-valprint.c (c_val_print): For character arrays
1436 with "print null" option on, print ellipses if
1437 the output is truncated and the next character is not \000.
1438 * valprint.c (MAX_WCHARS): Define.
1439 (WCHAR_BUFLEN): Likewise.
1440 (WCHAR_BUFLEN_MAX): Likewise.
1441 (struct converted_character): New structure.
1442 (count_next_character): New function.
1443 (print_converted_chars_to_obstack): New function.
1444 (generic_printstr): Rewrite using count_next_character
1445 and print_converted_chars_to_obstack.
1446
1447 2012-11-10 Stephane Carrez <Stephane.Carrez@gmail.com>
1448
1449 * tui/tui.c (tui_rl_command_key): Switch to TUI_ONE_COMMAND_MODE
1450 while executing the gdb command.
1451 (tui_rl_startup_hook): Do not switch back to TUI_SINGLE_KEY_MODE if we
1452 are called from prompt_for_continue.
1453 * tui/tui-io.c (tui_redisplay_readline): Likewise.
1454
1455 2012-11-10 Stephane Carrez <Stephane.Carrez@gmail.com>
1456
1457 PR tui/9584
1458
1459 * tui/tui.c (tui_rl_command_key): Do not call execute_command
1460 but insert the command to execute in readline's buffer.
1461
1462 2012-11-09 Tom Tromey <tromey@redhat.com>
1463
1464 * gdbarch.sh (target_gdbarch): Remove macro.
1465 (get_target_gdbarch): Rename to target_gdbarch.
1466 * gdbarch.c, gdbarch.h: Rebuild.
1467 * ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
1468 arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
1469 darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
1470 filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
1471 ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
1472 linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
1473 mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
1474 mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
1475 nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
1476 procfs.c, progspace.c, ravenscar-thread.c, record.c,
1477 remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
1478 rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
1479 solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
1480 solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
1481 solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
1482 spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
1483 target-descriptions.c, target.c, target.h, tracepoint.c,
1484 windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
1485 common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
1486 python/py-inferior.c, python/python.c: Update.
1487
1488 2012-11-09 Andrew Burgess <aburgess@broadcom.com>
1489
1490 * source.c (print_source_lines_base): Add fullname field giving
1491 full path to file in mi output.
1492 * NEWS: Mention the new fullname field.
1493
1494 2012-11-09 Yao Qi <yao@codesourcery.com>
1495
1496 * NEWS: Mention the fix to the ambiguity of 'fo' command.
1497
1498 2012-11-09 Pedro Alves <palves@redhat.com>
1499
1500 PR gdb/14306
1501
1502 * infrun.c: Include target-descriptions.h.
1503 (follow_exec): Fetch new target description.
1504
1505 2012-11-09 Yao Qi <yao@codesourcery.com>
1506
1507 * i386-tdep.c (i386_analyze_frame_setup): Handle opcode
1508 0x8d (lea).
1509
1510 2012-11-09 Yao Qi <yao@codesourcery.com>
1511
1512 * breakpoint.c: Declare set_tracepoint_count.
1513 (install_breakpoint): Call set_tracepoint_count if B is a
1514 tracepoint.
1515 (trace_command): Don't call set_tracepoint_count. Re-indent.
1516 (strace_command, ftrace_command):
1517 (create_tracepoint_from_upload): Likewise.
1518
1519 2012-11-09 Pedro Alves <palves@redhat.com>
1520
1521 * gdbarch.sh (target_gdbarch) <gdbarch.h>: Reimplement as macro.
1522 (get_target_gdbarch) <gdbarch.h>: New function.
1523 (startup_gdbarch) <gdbarch.h>: Declare.
1524 <gdbarch.c> (target_gdbarch): Delete.
1525 <gdbarch.c> (deprecated_target_gdbarch_select_hack): Set the
1526 current inferior's gdbarch.
1527 <gdbarch.c> (get_target_gdbarch): New function.
1528 * inferior.c: Include target-descriptions.h.
1529 (free_inferior): Free target description info.
1530 (add_inferior_with_spaces): Set the inferior's initial
1531 architecture.
1532 (clone_inferior_command): Copy the original inferior's target
1533 description if it was user specified.
1534 (initialize_inferiors): Add comment.
1535 * inferior.h (struct target_desc_info): Forward declare.
1536 (struct inferior) <gdbarch>: New field.
1537 * linux-nat.c: Include target-descriptions.h.
1538 (linux_child_follow_fork): Copy the parent's architecture and
1539 target description to the child.
1540 * target-descriptions.c: Include inferior.h.
1541 (struct target_desc_info): New structure, holding the equivalents
1542 of ...
1543 (target_desc_fetched, current_target_desc)
1544 (target_description_filename): ... these removed globals.
1545 (get_tdesc_info, target_desc_info_from_user_p)
1546 (copy_inferior_target_desc_info, target_desc_info_free): New.
1547 (target_desc_fetched, current_target_desc)
1548 (target_description_filename): Reimplemented as convenience
1549 macros.
1550 (tdesc_filename_cmd_string): New global.
1551 (set_tdesc_filename_cmd): Copy the string manipulated by the "set
1552 tdescs filename ..." commands to the per-inferior equivalent.
1553 (show_tdesc_filename_cmd): Get the value to show from the
1554 per-inferior description filename.
1555 (_initilize_target_descriptions): Change the "set/show tdesc
1556 filename" commands' variable.
1557 * target-descriptions.h (struct target_desc, struct target_desc_info)
1558 (struct inferior): Forward declare.
1559 (target_find_description, target_clear_description)
1560 (target_current_description): Adjust comments.
1561 (copy_inferior_target_desc_info, target_desc_info_free)
1562 (target_desc_info_from_user_p). Declare.
1563
1564 2012-11-08 Stephane Carrez <Stephane.Carrez@gmail.com>
1565
1566 * tui/tui-hooks.c (tui_about_to_proceed): New function.
1567 (tui_target_wait_hook): Remove.
1568 (tui_install_hooks): Install the about_to_proceed observer.
1569 (tui_remove_hooks): And remove it here.
1570
1571 2012-11-08 Tom Tromey <tromey@redhat.com>
1572
1573 * linux-tdep.c (linux_make_siginfo_note): New function.
1574 (linux_make_corefile_notes): Use it.
1575 * corelow.c (get_core_siginfo): New function.
1576 (core_xfer_partial) <TARGET_OBJECT_SIGNAL_INFO>: New case.
1577
1578 2012-11-08 Tom Tromey <tromey@redhat.com>
1579
1580 PR gdb/14704:
1581 * gdb_bfd.c (gdb_bfd_ref): Set BFD_DECOMPRESS.
1582 (zlib_decompress_section): Remove.
1583 (gdb_bfd_map_section): Only check for compressed section
1584 in mmap case. Use bfd_get_full_section_contents.
1585 * osabi.c (check_note): Add 'sectsize' argument. Read
1586 section data.
1587 (generic_elf_osabi_sniff_abi_tag_sections): Don't read
1588 section data. Update for check_note change.
1589 * xcoffread.c (xcoff_initial_scan): Use
1590 bfd_get_full_section_contents.
1591 * py-auto-load.c (auto_load_section_scripts): Use
1592 bfd_get_full_section_contents.
1593 * contrib/cc-with-tweaks.sh: Add -Z option.
1594
1595 2012-11-08 Tom Tromey <tromey@redhat.com>
1596
1597 * python/py-bpevent.c: Include defs.h.
1598 * python/py-continueevent.c: Include defs.h.
1599 * python/py-event.c: Include defs.h.
1600 * python/py-event.h: Don't include defs.h.
1601 * python/py-events.h: Don't include defs.h.
1602 * python/py-evts.c: Include defs.h.
1603 * python/py-exitedevent.c: Include defs.h.
1604 * python/py-newobjfileevent.c: Include defs.h.
1605 * python/py-signalevent.c: Include defs.h.
1606 * python/py-stopevent.c: Include defs.h.
1607 * python/py-threadevent.c: Include defs.h.
1608
1609 2012-11-08 Pierre Muller <muller@sourceware.org>
1610
1611 * update-web-ari.sh (print_heading): Add number of files
1612 checked.
1613 (nb_files): New variable counting the number of sources
1614 files found by gdb_find.sh script.
1615 (debug_awk): New variable to allow extra debug output.
1616 (indexes): Add more information if DEBUG_AWK is set.
1617
1618 2012-11-08 Edjunior Machado <emachado@linux.vnet.ibm.com>
1619
1620 * ppc-linux-tdep.c (ppc64_standard_linkage1, ppc64_standard_linkage2,
1621 ppc64_standard_linkage3): Mark ld r11 instructions as optional,
1622 following the change in PLT call stubs on linker.
1623
1624 2012-11-08 Pierre Muller <muller@sourceware.org>
1625
1626 * contrib/ari/gdb_ari.sh (LANG, LC_ALL): Use 'C' instead of 'c'
1627 as default language.
1628 (AWK): Use = instead of == for sh test to avoid warning.
1629 (Linux rule): Correct [:digit] into [[:digit:]].
1630 (__func__ rule): Adapt to "gdb_assert.h" move to common subdirectory.
1631 (vasprintf rule): Adapt to common subdirectory moves.
1632 (xasprintf rule): Idem.
1633 (xvasprintf rule): Idem.
1634 (var_boolean rule): Accept occurence in == or != test.
1635
1636 * contrib/ari/gdb_find.sh: Also prune gdbtk directory.
1637
1638 2012-11-08 Stephane Carrez <Stephane.Carrez@gmail.com>
1639
1640 * tui/tui-hooks.c (tui_inferior_exit): New function.
1641 (tui_detach_hook): Remove.
1642 (tui_install_hooks): Install the inferior exit observer.
1643 (tui_remove_hooks): Remove it.
1644
1645 2012-11-08 Yao Qi <yao@codesourcery.com>
1646
1647 PR gdb/14777.
1648 * source.c (_initialize_source): Call add_com_alias to abbreviate
1649 'forward-search' as 'fo'.
1650
1651 2012-11-07 Pedro Alves <palves@redhat.com>
1652
1653 * arm-tdep.c: Make defs.h be the first include.
1654 * coff-pe-read.c: Ditto.
1655 * gnu-nat.c: Ditto.
1656 * go32-nat.c: Ditto.
1657 * i386-nat.c: Ditto.
1658 * ppcnbsd-nat.c: Ditto.
1659 * ada-varobj.h: Don't include defs.h.
1660 * i386-darwin-tdep.h: Ditto.
1661 * i386-nat.h: Ditto.
1662
1663 2012-11-07 Pedro Alves <palves@redhat.com>
1664
1665 * MAINTAINERS: New FSF-appointed maintainers replace the Steering
1666 Committee.
1667
1668 2012-11-07 Pierre Muller <muller@sourceware.org>
1669
1670 * common/linux-osdata.c (dirent.h): ARI fix: Remove.
1671 File already uses "gdb_dirent.h" header.
1672
1673 2012-11-07 Yao Qi <yao@codesourcery.com>
1674
1675 * breakpoint.c (get_tracepoint_by_number): Remove 'extern int
1676 tracepoint_count'.
1677
1678 2012-11-06 Tom Tromey <tromey@redhat.com>
1679
1680 * target.h (inferior_has_forked, inferior_has_vforked)
1681 (inferior_has_execd, inferior_has_called_syscall): Remove
1682 declarations.
1683
1684 2012-11-06 Pierre Muller <muller@sourceware.org>
1685
1686 * remote.c (remote_insert_hw_breakpoint): ARI fix,
1687 add missing internalization markup.
1688
1689 2012-11-06 Pedro Alves <palves@redhat.com>
1690
1691 PR gdb/14810
1692
1693 * breakpoint.c (bpstat_stop_status): Skip disabled locations.
1694
1695 2012-11-06 Pierre Muller <muller@sourceware.org>
1696
1697 * contrib/ari/create-web-ari-in-src.sh: Avoid problem if script
1698 is not executable.
1699
1700 2012-11-05 Joel Brobecker <brobecker@adacore.com>
1701
1702 * gnulib/update-gnulib.sh: New script.
1703
1704 2012-11-05 Stephane Carrez <Stephane.Carrez@gmail.com>
1705
1706 * MAINTAINERS: Update my email address.
1707
1708 2012-11-05 Tom Tromey <tromey@redhat.com>
1709
1710 * frame.c (put_frame_register): Don't use temporary buffer.
1711
1712 2012-11-05 Pedro Alves <palves@redhat.com>
1713
1714 * inferior.c (exit_inferior_1): Clear 'vfork_parent' in the vfork
1715 child. Clear 'pending_detach'.
1716 * infrun.c (handle_vfork_child_exec_or_exit): Clear
1717 'pending_detach' in the vfork parent.
1718
1719 2012-11-05 Doug Evans <dje@google.com>
1720
1721 Add support for DWP files. http://gcc.gnu.org/wiki/DebugFissionDWP
1722 * contrib/cc-with-tweaks.sh: Add -p parameter to invoke dwp.
1723 * dwarf2read.c: #include "elf-bfd.h".
1724 (struct dwarf2_per_objfile): New members dwp_checked, dwp_file.
1725 (dwop_section_names): Renamed from dwo_section names. All uses
1726 updated. Add entries for .debug_cu_index, .debug_tu_index.
1727 (struct dwo_file): Rename dwo_name to name, dwo_bfd to dbfd.
1728 All uses updated.
1729 (struct dwp_sections): New type.
1730 (struct virtual_dwo_sections): New type.
1731 (struct dwp_hash_table): New type.
1732 (struct dwp_file): New type.
1733 (init_cutu_and_read_dies): Ensure DWO info/types section has been
1734 read in. Handle DWOs coming from DWP files.
1735 (lookup_dwo_file_slot): New function.
1736 (dwarf2_locate_dwo_sections): Move definition closer to use.
1737 (create_dwo_debug_info_hash_table_reader): Renamed from
1738 create_debug_info_hash_table_reader. All callers updated.
1739 (create_dwo_debug_info_hash_table): Renamed from
1740 create_debug_info_hash_table. All callers updated.
1741 (create_dwp_hash_table): New function.
1742 (locate_virtual_dwo_sections, create_dwo_in_dwp): New functions.
1743 (lookup_dwo_in_dwp): New function.
1744 (try_open_dwop_file): Renamed from try_open_dwo_file. New parameter
1745 is_dwp. All callers updated.
1746 (open_dwop_file): Renamed from open_dwo_file. All callers updated.
1747 (open_and_init_dwo_file): Renamed from init_dwo_file.
1748 All callers updated.
1749 (lookup_dwo_file): Delete.
1750 (dwarf2_locate_dwp_sections): New function.
1751 (hash_dwp_loaded_cutus, eq_dwp_loaded_cutus): New functions.
1752 (allocate_dwp_loaded_cutus_table): New function.
1753 (open_and_init_dwp_file): New function.
1754 (lookup_dwo_cutu): New function.
1755 (lookup_dwo_comp_unit, lookup_dwo_type_unit): Call it.
1756
1757 2012-11-03 Yao Qi <yao@codesourcery.com>
1758
1759 Fix PR gdb/14617.
1760 * breakpoint.c (trace_pass_set_count): Call
1761 observer_notify_breakpoint_modified instead of
1762 observer_notify_tracepoint_modified.
1763 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
1764
1765 2012-11-02 Tom Tromey <tromey@redhat.com>
1766
1767 * breakpoint.c (catch_syscall_completer): Pass 'word' as second
1768 argument to complete_on_enum.
1769
1770 2012-11-02 Tom Tromey <tromey@redhat.com>
1771
1772 * configure: Rebuild.
1773 * configure.ac (build_warnings): Add -Wempty-body.
1774 * m68k-tdep.c (m68k_gdbarch_init): Remove empty 'if'.
1775 * remote.c (handle_notification): Use braces for empty 'else' body.
1776 * s390-tdep.c (s390_analyze_prologue): Use braces for empty
1777 'else' body.
1778 * sh64-tdep.c (sh64_push_dummy_call): Use braces for empty
1779 'else' body.
1780 * solib-som.c (som_relocate_section_addresses): Use braces
1781 for empty 'else' body.
1782 * ui-file.c (stdio_file_write): Use braces for empty 'if' body.
1783 (stdio_file_write_async_safe, stdio_file_fputs): Likewise.
1784
1785 2012-11-02 Pedro Alves <palves@redhat.com>
1786
1787 PR gdb/14766
1788
1789 * infrun.c (handle_inferior_event)
1790 <TARGET_WAITKIND_EXITED/TARGET_WAITKIND_SIGNALLED>: Switch to
1791 null_ptid before handling a vfork child exec or exit. Switch to
1792 the event ptid afterwards.
1793
1794 2012-11-02 Yao Qi <yao@codesourcery.com>
1795
1796 * std-operator.def: Remove OP_LABELED.
1797 * eval.c: Remove the declaration of 'get_label'.
1798 (get_label): Remove.
1799 (evaluate_struct_tuple): Remove code handling OP_LABELED.
1800 Update comment.
1801 Remove local variable 'variantno' and related code.
1802 Replace 'substruct_type' with 'struct_type'. Replace 'subfieldno'
1803 with 'fieldno'.
1804 * expprint.c (print_subexp_standard): Likewise.
1805 (dump_subexp_body_standard): Likewise.
1806 * parse.c (operator_length_standard): Likewise.
1807
1808 2012-11-01 Pierre Muller <muller@ics.u-strasbg.fr>
1809
1810 Incorporate ARI web page generator into GDB sources.
1811 * contrib/ari/create-web-ari-in-src.sh: New file.
1812 * contrib/ari/gdb_ari.sh: New file.
1813 * contrib/ari/gdb_find.sh: New file.
1814 * contrib/ari/update-web-ari.sh: New file.
1815
1816 2012-10-31 Tom Tromey <tromey@redhat.com>
1817
1818 * gdbarch.c: Rebuild.
1819 * gdbarch.sh: Remove references to gdbarch_swap.
1820 * corelow.c (core_open): Remove obsolete comment.
1821
1822 2012-10-31 Andrew Burgess <aburgess@broadcom.com>
1823
1824 PR cli/14772
1825 * c-typeprint.c (c_print_type): Don't print a space for vector
1826 types, this is handled within the suffix.
1827 (c_type_print_varspec_suffix): Add a space to vector suffix.
1828
1829 2012-10-26 Pedro Alves <palves@redhat.com>
1830
1831 * amd64-tdep.c (amd64_relocate_instruction): Use
1832 store_unsigned_integer instead of memcpy.
1833 * i386-tdep.c (i386_relocate_instruction): Ditto.
1834
1835 2012-10-26 Pedro Alves <palves@redhat.com>
1836
1837 * infrun.c (handle_inferior_event): Merge handling of
1838 TARGET_WAITKIND_EXITED and TARGET_WAITKIND_SIGNALLED into a single
1839 switch case.
1840
1841 2012-10-26 Pedro Alves <palves@redhat.com>
1842
1843 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_SIGNALLED>:
1844 Remove comment.
1845
1846 2012-10-26 Pedro Alves <palves@redhat.com>
1847
1848 * target.c (target_waitstatus_to_string): Handle
1849 TARGET_WAITKIND_VFORK_DONE.
1850
1851 2012-10-26 Pedro Alves <palves@redhat.com>
1852
1853 * infrun.c (handle_inferior_event): Print TARGET_WAITKIND_VFORKED
1854 as "TARGET_WAITKIND_VFORKED", not "TARGET_WAITKIND_FORKED".
1855
1856 2012-10-24 Tristan Gingold <gingold@adacore.com>
1857
1858 * ravenscar-sparc-thread.c (ravenscar_sparc_fetch_registers):
1859 Add comments.
1860
1861 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1862
1863 * ravenscar-thread.c (ravenscar_wait): Only update the list
1864 of threads and inferior_ptid if the inferior is still alive.
1865
1866 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1867
1868 * ada-lang.c (is_known_support_routine): Use lbasename when
1869 matching the symtab's filename against
1870 known_runtime_file_name_patterns.
1871
1872 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1873
1874 * ada-lang.c (ada_same_array_size_p): New function.
1875 (ada_promote_array_of_integrals): New function.
1876 (coerce_for_assign): Add handling of arrays where the elements
1877 are integrals of a smaller size than the size of the target
1878 array element type.
1879
1880 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1881
1882 * doublest.c (convert_doublest_to_floatformat): Fix comparison
1883 against maximum exponent value.
1884
1885 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1886
1887 * ada-lang.h (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Add entry for
1888 "unwind-seh.c".
1889
1890 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1891
1892 * ada-lang.c (ada_template_to_fixed_record_type_1): Do not
1893 strip typedef layer when computing the fixed type's field type,
1894 only when computing its size.
1895
1896 2012-10-24 Mark Kettenis <kettenis@gnu.org>
1897
1898 PR gdb/12783
1899 * i386-tdep.c (i386_return_value): Handle complex double and long
1900 double.
1901
1902 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1903
1904 * windows-nat.c (windows_create_inferior) [!__CYGWIN__]:
1905 New local variable args_len.
1906 Quote the name of the executable when computing the command line.
1907
1908 2012-10-23 Mark Kettenis <kettenis@gnu.org>
1909
1910 PR gdb/12796
1911 PR gdb/12798
1912 PR gdb/12800
1913 * amd64-tdep.h (enum amd64_regnum): Add AMD64_ST1_REGNUM and
1914 AMD64_FTAG_REGNUM.
1915 * amd64-tdep.c (amd64_classify): Classify complex types.
1916 (amd64_return_value): Handle the COMPLEX_X87 class.
1917
1918 2012-10-23 Joel Brobecker <brobecker@adacore.com>
1919
1920 * rs6000-aix-tdep.c (rs6000_aix_auto_wide_charset): New function.
1921 (rs6000_aix_init_osabi): Set auto_wide_charset gdbarch method.
1922
1923 2012-10-23 Joel Brobecker <brobecker@adacore.com>
1924
1925 * amd64-windows-tdep.c (amd64_windows_auto_wide_charset): New
1926 function.
1927 (amd64_windows_init_abi): Set auto_wide_charset gdbarch method
1928 to amd64_windows_auto_wide_charset.
1929
1930 2012-10-23 Yao Qi <yao@codesourcery.com>
1931
1932 * event-top.c (mark_async_signal_handler_wrapper): Remove.
1933 * event-top.h: Remove its declaration.
1934 (async_request_quit): Call mark_async_signal_handler instead of
1935 mark_async_signal_handler_wrapper.
1936 (async_do_nothing, async_disconnect): Likewise.
1937 (async_stop_sig): Likewise.
1938 * remote.c (handle_remote_sigint): Likewise.
1939 (handle_remote_sigint_twice): Likewise.
1940
1941 2012-10-23 Yao Qi <yao@codesourcery.com>
1942
1943 * event-top.c (sigint_token, sighup_token): Replace 'void *'
1944 with 'static struct async_signal_handler *'.
1945 (sighup_token, sigquit_token, sigstp_token): Likewise.
1946
1947 2012-10-22 Ali Anwar <ali_anwar@codesourcery.com>
1948
1949 * gdbarch.sh (function_list): Use 'pstring' when printing
1950 a variable which could return NULL.
1951 * gdbarch.c: Regenerate.
1952
1953 2012-10-10 Joel Brobecker <brobecker@adacore.com>
1954 Tom Tromey <tromey@redhat.com>
1955
1956 * rs6000-aix-tdep.c (rs6000_aix_osabi_sniffer): Replace
1957 inneffective if condition by gdb assertion. Add function
1958 description comment.
1959
1960 2012-10-19 Joel Brobecker <brobecker@adacore.com>
1961
1962 * parser-defs.h (struct exp_descriptor): Document constraint
1963 on return value for "op_name" callbacks.
1964
1965 2012-10-18 Tom Tromey <tromey@redhat.com>
1966
1967 * tracepoint.c (print_one_static_tracepoint_marker): Constify.
1968 * symtab.c (iterate_over_some_symtabs): Constify.
1969 * source.h (symtab_to_fullname): Return 'const char *'.
1970 * source.c (symtab_to_fullname): Return 'const char *'.
1971 * python/py-symtab.c (stpy_fullname): Constify.
1972 * cli/cli-cmds.c (edit_command): Constify.
1973 * breakpoint.c (print_breakpoint_location)
1974 (update_static_tracepoint): Constify.
1975
1976 2012-10-18 Tom Tromey <tromey@redhat.com>
1977
1978 * breakpoint.c (compare_breakpoints): Fix comparison.
1979
1980 2012-10-18 Tom Tromey <tromey@redhat.com>
1981
1982 * valprint.c (generic_emit_char, generic_printstr): Pass size of
1983 gdb_wchar_t to convert_between_encodings.
1984
1985 2012-10-17 Yao Qi <yao@codesourcery.com>
1986
1987 * breakpoint.c (invalidate_bp_value_on_memory_change): Add one
1988 more parameter 'inferior'.
1989 * corefile.c (write_memory_with_notification): Caller update.
1990
1991 * mi/mi-cmd-var.c: Include "mi-main.h".
1992 (mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
1993 to 1 and restore it later.
1994 * mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
1995 and "data-write-memory-bytes.
1996 * mi/mi-interp.c: Include objfiles.h.
1997 (mi_interpreter_init): Call observer_attach_memory_changed.
1998 (mi_memory_changed): New.
1999 * mi/mi-main.h (struct mi_suppress_notification) <memory>:
2000 New field.
2001
2002 * NEWS: Mention new MI notification "memory-changed".
2003
2004 2012-10-16 Jan Kratochvil <jan.kratochvil@redhat.com>
2005
2006 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Remove comment.
2007
2008 2012-10-15 Doug Evans <dje@google.com>
2009
2010 New option -nh: inhibit loading of ~/.gdbinit.
2011 * NEWS: Mention -nh.
2012 * main.c (captured_main): Recognize and process -nh.
2013 (print_gdb_help): Mention -nh.
2014 * gdb.1: Mention -nh. Remove erroneous docs on -nx behavior.
2015
2016 2012-10-15 H.J. Lu <hongjiu.lu@intel.com>
2017
2018 PR backtrace/14646
2019 PR gdb/14647
2020 * i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
2021 pc_regnum_from_eax.
2022 * i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
2023 nor pc_regnum_from_eax.
2024 * amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
2025 nor pc_regnum_from_eax.
2026
2027 2012-10-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2028
2029 Fix entry values resolving in inlined frames.
2030 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
2031 gdbarch and caller_frame initialization later. Skip INLINE_FRAME
2032 entries of FRAME.
2033
2034 2012-10-15 Joel Brobecker <brobecker@adacore.com>
2035
2036 * configure.ac: Build with -DMS_WIN64 if building with Python
2037 enabled using GCC on amd64-windows.
2038 * configure: Regenerate.
2039
2040 2012-10-15 Tom Tromey <tromey@redhat.com>
2041
2042 PR python/14635:
2043 * python/py-symtab.c (del_objfile_sal): Set 'symtab' field
2044 to Py_None.
2045
2046 2012-10-15 Tom Tromey <tromey@redhat.com>
2047
2048 PR python/14634:
2049 * python/py-symbol.c (sympy_dealloc): Check for NULL symbol.
2050
2051 2012-10-11 Andrew Burgess <aburgess@broadcom.com>
2052
2053 * remote-sim.c (gdbsim_create_inferior): Call init_thread_list to
2054 reset thread numbering back to 1.
2055
2056 2012-10-11 Doug Evans <dje@google.com>
2057
2058 PR breakpoints/14643.
2059 * linespec.c (struct ls_parser): New member keyword_ok.
2060 (linespec_lexer_lex_string): Add comment.
2061 (linespec_lexer_lex_one): Ignore keywords if it's the wrong place
2062 for one.
2063 (parse_linespec): Set keyword_ok.
2064
2065 2012-10-10 Doug Evans <dje@google.com>
2066
2067 * dwarf2read.c (process_psymtab_comp_unit_reader): Remove duplicate
2068 "0x" prefix on address in log message.
2069
2070 * dwarf2read.c (read_1_byte): Add const to buf parameter.
2071 (read_1_signed_byte, read_2_bytes, read_2_signed_bytes): Ditto.
2072 (read_4_bytes, read_4_signed_bytes, read_8_bytes): Ditto.
2073 (lookup_dwo_file): Add const to dwo_name parameter.
2074 (lookup_dwo_comp_unit, lookup_dwo_type_unit): Ditto.
2075
2076 2012-10-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2077
2078 Fix crash during stepping on ppc32.
2079 * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL
2080 SYM.
2081
2082 2012-10-03 Doug Evans <dje@google.com>
2083
2084 PR symtab/14601
2085 * buildsym.c (buildsym_init): Reset using_directives to NULL.
2086
2087 2012-10-02 Andrew Burgess <aburgess@broadcom.com>
2088
2089 * remote-sim.c (dump_mem): Always dump buffer contents, zero fill
2090 output and use uint32_t not long to ensure 4 byte size.
2091
2092 2012-10-02 Joel Brobecker <brobecker@adacore.com>
2093
2094 * rs6000-nat.c (add_vmap): Set "last" to "next" after having
2095 unref'ed it.
2096
2097 2012-10-01 Andrew Burgess <aburgess@broadcom.com>
2098
2099 * target.c (simple_search_memory): Include access length in
2100 warning message.
2101
2102 2012-09-28 Nathan Miller <nathanm2@us.ibm.com>
2103 Edjunior Machado <emachado@linux.vnet.ibm.com>
2104
2105 PR gdb/13989
2106 * solib.c (solib_find): Prevent GDB from loading native libraries when
2107 debugging a cross-target corefile.
2108
2109 2012-09-28 selven <pcthegreat@gmail.com>
2110
2111 Make definition match declaration.
2112
2113 * regcache.c (regcache_register_status): Change return type to
2114 enum register_status.
2115
2116 2012-09-28 Yao Qi <yao@codesourcery.com>
2117
2118 * mi/mi-main.c (mi_cmd_data_write_memory): Call
2119 write_memory_with_notification instead of write_memory.
2120 (mi_cmd_data_write_memory_bytes): Call write_memory_with_notification
2121 instead of target_write_memory.
2122
2123 2012-09-28 Yao Qi <yao@codesourcery.com>
2124
2125 * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Emit error
2126 when the length of content is not an even number.
2127
2128 2012-09-27 Tom Tromey <tromey@redhat.com>
2129
2130 Fix https://bugzilla.redhat.com/show_bug.cgi?id=849357
2131 * cp-valprint.c (cp_print_value_fields): Use get_vptr_fieldno.
2132
2133 2012-09-27 Joel Brobecker <brobecker@adacore.com>
2134
2135 * sol-thread.c (sol_thread_fetch_registers)
2136 (sol_thread_store_registers): Delete commented out code.
2137
2138 2012-09-27 Joel Brobecker <brobecker@adacore.com>
2139
2140 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2141 Move these functions to sparc-sol-thread.c.
2142 * sparc-sol-thread.c: New file.
2143 * configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and
2144 sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native
2145 configurations.
2146 * configure: Regenerate.
2147
2148 2012-09-27 Joel Brobecker <brobecker@adacore.com>
2149
2150 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2151 Remove commented-out code.
2152
2153 2012-09-27 Joel Brobecker <brobecker@adacore.com>
2154
2155 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2156 Enable this code for sparc hosts only.
2157
2158 2012-09-27 Joel Brobecker <brobecker@adacore.com>
2159
2160 * procfs.h (procfs_find_LDT_entry): Add declaration.
2161 * sol-thread.c (ps_lgetLDT): Delete local declaration of
2162 function procfs_find_LDT_entry.
2163
2164 2012-09-27 Joel Brobecker <brobecker@adacore.com>
2165
2166 * procfs.c (proc_get_LDT_entry): Make static.
2167
2168 2012-09-27 Joel Brobecker <brobecker@adacore.com>
2169
2170 * procfs.c (proc_find_memory_regions): Fix declaration.
2171
2172 2012-09-27 Siddhesh Poyarekar <siddhesh@redhat.com>
2173
2174 * amd64-tdep.c (amd64_return_value): Revert previous change
2175 that used TYPE_LENGTH directly.
2176 * bfin-tdep.c (bfin_extract_return_value): Likewise.
2177 (bfin_store_return_value): Likewise.
2178 * cris-tdep.c (cris_store_return_value): Likewise.
2179 (cris_extract_return_value): Likewise.
2180 * h8300-tdep.c (h8300_extract_return_value): Likewise.
2181 * hppa-tdep.c (hppa64_return_value): Likewise.
2182 * lm32-tdep.c (lm32_store_return_value): Likewise.
2183 * microblaze-tdep.c (microblaze_store_return_value): Likewise.
2184 * spu-tdep.c (spu_value_from_register): Likewise.
2185 * vax-tdep.c (vax_return_value): Likewise.
2186
2187 2012-09-27 Siddhesh Poyarekar <siddhesh@redhat.com>
2188
2189 * gdbtypes.c (lookup_array_range_type): Expand parameters
2190 LOW_BOUND and HIGH_BOUND to LONGEST.
2191 (lookup_string_range_type): Likewise.
2192 * gdbtypes.h (lookup_array_range_type): Likewise.
2193 (lookup_string_range_type): Likewise.
2194 * valops.c (value_cstring): Expand parameter LEN to ssize_t.
2195 Expand HIGHBOUND to ssize_t.
2196 (value_string): Likewise.
2197 * value.h (value_cstring): Expand parameter LEN to ssize_t.
2198 (value_string): Likewise.
2199
2200 2012-09-27 Yao Qi <yao@codesourcery.com>
2201
2202 PR breakpoints/13898
2203 * breakpoint.h (tracepoint_breakpoint_ops): Forward declaration.
2204 * mi/mi-cmd-break.c (mi_cmd_break_insert): Set breakpoint_ops
2205 per breakpoint type.
2206
2207 2012-09-26 Pierre Muller <muller@ics.u-strasbg.fr>
2208
2209 * procfs.c: Add gdb_bfd header.
2210 * rs6000-nat.c: Likewise.
2211 * solib-pa64.c: Likewise.
2212 * spu-linux-nat.c: Likewise.
2213 * windows-nat.c: Likewise.
2214
2215 2012-09-26 Tom Tromey <tromey@redhat.com>
2216
2217 * f-lang.h (BLANK_COMMON_NAME_LOCAL): Remove.
2218
2219 2012-09-26 Tom Tromey <tromey@redhat.com>
2220
2221 * dwarf2read.c (mark_common_block_symbol_computed): New function.
2222 (read_common_block): Handle child DIEs with
2223 DW_AT_data_member_location.
2224 (new_symbol_full): Add special case for common blocks.
2225
2226 2012-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2227 Tom Tromey <tromey@redhat.com>
2228
2229 * dwarf2read.c (read_common_block): Rewrite.
2230 (new_symbol_full): Handle DW_TAG_common_block.
2231 * f-lang.c (head_common_list, find_common_for_function):
2232 Remove.
2233 * f-lang.h (struct common_entry, struct saved_f77_common,
2234 SAVED_F77_COMMON, SAVED_F77_COMMON_PTR, COMMON_ENTRY,
2235 COMMON_ENTRY_PTR, head_common_list, find_common_for_function,
2236 BLANK_COMMON_NAME_LOCAL): Remove.
2237 (struct common_block): New.
2238 * f-valprint.c (list_all_visible_commons): Remove.
2239 (info_common_command_for_block): New function.
2240 (info_common_command): Use it.
2241 * stack.c (iterate_over_block_locals): Special case for
2242 COMMON_BLOCK_DOMAIN.
2243 * symtab.h (enum domain_enum_tag) <COMMON_BLOCK_DOMAIN>: New
2244 constant.
2245 (struct general_symbol_info) <value.common_block>: New field.
2246 (SYMBOL_VALUE_COMMON_BLOCK): New define.
2247
2248 2012-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2249 Tom Tromey <tromey@redhat.com>
2250
2251 * f-lang.c (allocate_saved_bf_node,
2252 allocate_saved_function_node, allocate_saved_f77_common_node,
2253 allocate_common_entry_node, tail_common_list, current_common,
2254 saved_bf_list, saved_bf_list_end, current_head_bf_list,
2255 tmp_bf_ptr, add_common_block, add_common_entry,
2256 find_first_common_named, patch_common_entries,
2257 patch_all_commons_by_name, ADD_BF_SYMNUM, clear_bf_list,
2258 global_remote_debug, get_bf_for_fcn, saved_function_list,
2259 saved_function_list_end, clear_function_list, struct saved_fcn,
2260 struct saved_bf_symnum, SAVED_FUNCTION, SAVED_FUNCTION_PTR,
2261 SAVED_BF, SAVED_BF_PTR): Remove.
2262 * f-lang.h (tail_common_list, current_common,
2263 UNINITIALIZED_SECNUM, COMMON_NEEDS_PATCHING,
2264 BLANK_COMMON_NAME_ORIGINAL, BLANK_COMMON_NAME_MF77,
2265 DEFAULT_UPPER_BOUND, DEFAULT_LOWER_BOUND, real_main_name,
2266 real_main_c_value): Remove.
2267 * f-valprint.c (there_is_a_visible_common_named): Remove.
2268
2269 2012-09-26 Andrew Burgess <aburgess@broadcom.com>
2270
2271 * breakpoint.c (update_global_location_list): Ignore previous
2272 duplicate status of a breakpoint when starting a new scan for
2273 duplicate breakpoints.
2274
2275 2012-09-26 Karthik Bhat <kv.bhat@samsung.com>
2276 PR breakpoints/14419
2277 * arm-tdep.c (arm_skip_prologue): Extending producer check to
2278 support LLVM compiler.
2279
2280 2012-09-26 Siddhesh Poyarekar <siddhesh@redhat.com>
2281
2282 * amd64-tdep.c (amd64_return_value): Use TYPE_LENGTH directly.
2283 * bfin-tdep.c (bfin_extract_return_value): Likewise.
2284 (bfin_store_return_value): Likewise.
2285 * cris-tdep.c (cris_store_return_value): Likewise.
2286 (cris_extract_return_value): Likewise.
2287 * h8300-tdep.c (h8300_extract_return_value): Likewise.
2288 * hppa-tdep.c (hppa64_return_value): Likewise.
2289 * lm32-tdep.c (lm32_store_return_value): Likewise.
2290 * microblaze-tdep.c (microblaze_store_return_value): Likewise.
2291 * spu-tdep.c (spu_value_from_register): Likewise.
2292 * vax-tdep.c (vax_return_value): Likewise.
2293
2294 2012-09-26 Siddhesh Poyarekar <siddhesh@redhat.com>
2295
2296 * breakpoint.c (invalidate_bp_value_on_memory_change): Expand
2297 parameter LEN to ssize_t.
2298
2299 2012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
2300
2301 * ada-valprint.c (ada_val_print_1): Eliminate single-use
2302 variable LEN.
2303 * alpha-tdep.c (alpha_extract_return_value): Use TYPE_LENGTH
2304 directly.
2305 (alpha_store_return_value): Likewise.
2306 * amd64-tdep.c (amd64_classify_aggregate): Likewise.
2307 (amd64_push_arguments): Likewise.
2308 * ax-gdb.c (gen_trace_static_fields): Likewise.
2309 (gen_traced_pop): Likewise.
2310 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
2311 * breakpoint.c (update_watchpoint): Likewise.
2312 * findcmd.c (parse_find_args): Use local variable for type
2313 instead of length.
2314 * findvar.c (default_read_var_value): Use TYPE_LENGTH directly.
2315 * h8300-tdep.c (h8300h_extract_return_value): Likewise.
2316 (h8300_store_return_value): Likewise.
2317 * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
2318 Use i386_darwin_arg_type_alignment directly.
2319 * infcall.c (call_function_by_hand): Use TYPE_LENGTH directly.
2320 * lm32-tdep.c (lm32_push_dummy_call): Likewise.
2321 * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
2322 (m68hc11_extract_return_value): Likewise.
2323 * mep-tdep.c (mep_push_dummy_call): Likewise.
2324 * printcmd.c (float_type_from_length): Likewise.
2325 * s390-tdep.c (s390_value_from_register): Likewise.
2326 * stack.c (read_frame_arg): Likewise.
2327 * tracepoint.c (encode_actions_1): Likewise.
2328 * valops.c (value_fetch_lazy): Use local variable for type
2329 instead of length. Use TYPE_LENGTH directly.
2330 * value.c (value_contents_equal): Use TYPE_LENGTH directly.
2331
2332 2012-09-25 Joel Brobecker <brobecker@adacore.com>
2333
2334 * symtab.c (skip_prologue_sal): Fix typo in comment.
2335
2336 2012-09-25 Joel Brobecker <brobecker@adacore.com>
2337
2338 * linespec.c (create_sals_line_offset): Fix typo in comment.
2339
2340 2012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
2341
2342 * c-typeprint.c (c_type_print_varspec_suffix): Remove cast and
2343 use plongest to print the array size.
2344
2345 2012-09-24 Siddhesh Poyarekar <siddhesh@redhat.com>
2346
2347 * m2-typeprint.c (m2_enum): Expand LASTVAL to LONGEST.
2348 * p-valprint.c (pascal_type_print_base): Likewise.
2349
2350 2012-09-22 Yao Qi <yao@codesourcery.com>
2351
2352 * remote.c (remote_get_trace_status): Remove setting default
2353 values of fields of 'ts'.
2354
2355 2012-09-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2356
2357 Fix internal error on canonicalization of clang types.
2358 * cp-name-parser.y (operator): New comment at make_operator call for
2359 new, delete, new[] and delete[].
2360 (exp): Use "sizeof ". Add new comment at make_operator call.
2361
2362 2012-09-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2363
2364 Fix disassemble without parameters in tailcall frame.
2365 * cli/cli-cmds.c (disassemble_current_function): Use
2366 get_frame_address_in_block.
2367
2368 2012-09-21 Tom Tromey <tromey@redhat.com>
2369
2370 * c-typeprint.c (c_type_print_base) <TYPE_CODE_STRUCT,
2371 TYPE_CODE_UNION>: Unify, removing a goto.
2372
2373 2012-09-21 Tom Tromey <tromey@redhat.com>
2374
2375 * c-typeprint.c (cp_type_print_derivation_info): Fix comment.
2376
2377 2012-09-21 Andrew Burgess <aburgess@broadcom.com>
2378
2379 * findvar.c (read_frame_register_value): Mark the result value as
2380 optimized out if any of the input registers have been optimized out.
2381
2382 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
2383
2384 * python/python.c (finalize_python): Only define if HAVE_PYTHON.
2385
2386 2012-09-21 Siddhesh Poyarekar <siddhesh@redhat.com>
2387
2388 * eval.c (evaluate_subexp_standard): Eliminate single-use
2389 variable LOWER.
2390
2391 2012-09-21 Yao Qi <yao@codesourcery.com>
2392
2393 * mi/mi-interp.c: Declare mi_record_changed.
2394 (mi_interpreter_init): Call observer_attach_record_changed.
2395 (mi_record_changed): New.
2396 * record.c (record_open): Call observer_notify_record_changed.
2397 (cmd_record_stop): Call observer_notify_record_changed.
2398 * NEWS: Mention it.
2399
2400 2012-09-20 Tom Tromey <tromey@redhat.com>
2401
2402 * NEWS: Update.
2403 * python/python.c (finalize_python): New function.
2404 (_initialize_python): Make a final cleanup.
2405
2406 2012-09-19 Doug Evans <dje@google.com>
2407
2408 * buildsym.h (param_symbols): Delete, unused.
2409 (context_stack): Delete member "params", unused.
2410 * buildsym.c (push_context): Update.
2411 * dwarf2read.c (read_func_scope): Update.
2412
2413 2012-09-19 Thomas Schwinge <thomas@codesourcery.com>
2414
2415 * sh-tdep.c (sh_register_convert_to_virtual)
2416 (sh_register_convert_to_raw): Add a gdbarch parameter. Update
2417 all callers. Just do a memcpy if not the little-endian case.
2418
2419 * h8300-tdep.c (h8300_gdbarch_init): Invoke
2420 set_gdbarch_double_format and set_gdbarch_long_double_format.
2421 * m68hc11-tdep.c (m68hc11_gdbarch_init): Invoke
2422 set_gdbarch_double_format.
2423 * sh-tdep.c (sh_gdbarch_init): Likewise.
2424
2425 * NEWS: Document the removal of SH's 'regs' command.
2426 * sh-tdep.c (_initialize_sh_tdep): Remove the deprecated 'regs'
2427 command.
2428
2429 2012-09-18 Sergio Durigan Junior <sergiodj@redhat.com>
2430
2431 * infcmd.c (_initialize_infcmd): Register `j' as an alias for
2432 `jump'.
2433
2434 2012-09-18 Joel Brobecker <brobecker@adacore.com>
2435
2436 * linespec.c (iterate_over_all_matching_symtabs): Use the correct
2437 language when iterating over symbols.
2438
2439 2012-09-18 Yao Qi <yao@codesourcery.com>
2440
2441 * mi/mi-interp.c: Declare mi_tsv_created and mi_tsv_deleted.
2442 (mi_interpreter_init): Call observer_attach_tsv_created and
2443 observer_attach_tsv_deleted.
2444 (mi_tsv_created, mi_tsv_deleted): New.
2445 * tracepoint.c (delete_trace_state_variable): Call
2446 observer_notify_tsv_deleted.
2447 (trace_variable_command): Call observer_notify_tsv_created.
2448 (delete_trace_variable_command): Call
2449 observer_notify_tsv_deleted.
2450 (create_tsv_from_upload): Call observer_notify_tsv_created.
2451 * NEWS: Mention it.
2452
2453 2012-09-18 Yao Qi <yao@codesourcery.com>
2454
2455 * tracepoint.c (tfind_1): Call observer_notify_traceframe_changed
2456 if traceframe changed.
2457 * mi/mi-cmds.c (mi_cmd mi_cmds): Adjust for command
2458 "trace-find".
2459 * mi/mi-interp.c: Declare 'mi_traceframe_changed'.
2460 (mi_interpreter_init): Hook mi_traceframe_changed to observer
2461 'traceframe_changed'.
2462 (mi_traceframe_changed): New.
2463 * mi/mi-main.h (struct mi_suppress_notification) <traceframe>:
2464 New field.
2465 * NEWS: Mention the new MI notification.
2466
2467 2012-09-17 Mike Wrighton <wrighton@codesourcery.com>
2468
2469 * MAINTAINERS (Write After Approval): Add "Mike Wrighton".
2470
2471 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2472
2473 * common/linux-ptrace.c: Change __i386__ to __i386__ || __x86_64__.
2474 (linux_ptrace_test_ret_to_nx): Extend comment for x86_64. Change
2475 __i386__ to __i386__ || __x86_64__. Extend code also for __x86_64__.
2476 Extend code also for PaX support. Convert all gdb_assert to warning
2477 calls.
2478
2479 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2480
2481 Implement auto-load user conveniences suggested by Doug Evans.
2482 * auto-load.c: Include top.h.
2483 (file_is_auto_load_safe): New variable advice_printed. Print advice.
2484 (_initialize_auto_load): New variable scripts_directory_help. Mention
2485 GDBPY_AUTO_FILE_NAME and GDB_AUTO_FILE_NAME for set auto-load
2486 scripts-directory. Document in online help one can use also files for
2487 set auto-load safe-path.
2488 * python/py-auto-load.c: (GDBPY_AUTO_FILE_NAME): Move it from here ...
2489 * python/python.h (GDBPY_AUTO_FILE_NAME): ... to here.
2490
2491 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
2492
2493 * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused definition
2494 of LEN.
2495
2496 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
2497
2498 * m2-valprint.c (m2_print_array_contents): Eliminate variable
2499 ELTLEN and use TYPE_LENGTH directly.
2500 (m2_val_print): Likewise.
2501 * m68k-tdep.c (m68k_svr4_extract_return_value): Eliminate
2502 variable LEN and use TYPE_LENGTH directly.
2503 (m68k_svr4_store_return_value): Likewise.
2504 * mips-tdep.c (mips_o32_push_dummy_call): Eliminate variable
2505 ARGLEN and use TYPE_LENGTH directly.
2506 (mips_o64_push_dummy_call): Likewise.
2507 * s390-tdep (s390_function_arg_pass_by_reference): Eliminate
2508 variable LENGTH and use TYPE_LENGTH directly.
2509 (s390_function_arg_float): Likewise.
2510 (s390_function_arg_integer): Likewise.
2511 (s390_push_dummy_call): Likewise.
2512 (s390_return_value_convention): Likewise.
2513 * spu-tdep.c (spu_push_dummy_call): Eliminate LEN and use
2514 TYPE_LENGTH directly.
2515
2516 2012-09-17 Yao Qi <yao@codesourcery.com>
2517
2518 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
2519 Update comment to add_setshow_integer_cmd.
2520 * cli/cli-setshow.c (do_set_command): Handle case
2521 'var_zuinteger_unlimited'.
2522 (do_show_command): Likewise.
2523 * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
2524 for command 'remotetimeout'.
2525 * command.h (enum var_types): New zuinteger_unlimited. Update comment
2526 to var_integer.
2527 * source.c (_initialize_source): Call
2528 add_setshow_zuinteger_unlimited_cmd for command 'set listsize'.
2529
2530 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
2531
2532 * infrun.c (restore_infcall_suspend_state): Eliminate single-use
2533 variable LEN.
2534
2535 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2536
2537 PR 14119
2538 * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames.
2539 (frame_pop): Drop also TAILCALL_FRAME frames.
2540 * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames.
2541
2542 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2543 Pedro Alves <palves@redhat.com>
2544
2545 PR 14548
2546 * infrun.c (handle_inferior_event): Do not reverse-continue back to the
2547 function start if we are already at function start. Both for
2548 reverse-next and for reverse-step into function without line number
2549 info.
2550
2551 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2552
2553 Code cleanup - rename 'inline' depth to 'artificial' depth.
2554 * breakpoint.c (set_momentary_breakpoint): Rename at a caller to
2555 frame_id_artificial_p, extend the comment.
2556 * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
2557 * frame.c (fprint_frame_id): Rename at a user, change debug output
2558 text to "artificial=".
2559 (skip_inlined_frames): Rename to ...
2560 (skip_artificial_frames): ... here. Extend the comment.
2561 (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
2562 (frame_id_inlined_p): Rename to ...
2563 (frame_id_artificial_p): ... here. Rename at a user.
2564 (frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
2565 (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
2566 at a user.
2567 * frame.h (struct frame_id): Rename inline_depth to artificial_depth.
2568 Extend the comment.
2569 (frame_id_inlined_p): Rename to ...
2570 (frame_id_artificial_p): ... here.
2571 * inline-frame.c (inline_frame_this_id): Rename at a user.
2572
2573 2012-09-14 Andrew Burgess <aburgess@broadcom.com>
2574
2575 * c-typeprint.c (c_type_print_varspec_suffix): Display the size of
2576 vector variables using vector_size syntax rather than array
2577 syntax.
2578
2579 2012-09-14 Siddhesh Poyarekar <siddhesh@redhat.com>
2580
2581 * valarith.c (value_concat): Replace unsafe ALLOCA with
2582 XMALLOC/XFREE.
2583
2584 2012-09-14 Pedro Alves <palves@redhat.com>
2585
2586 * gdb.1 (SEE ALSO): Expand pointer to GDB's Texinfo manual.
2587
2588 2012-09-14 Khoo Yit Phang <khooyp@cs.umd.edu>
2589
2590 Point contrib/cc-with-tweaks.sh to the build-local data-directory.
2591 * contrib/cc-with-tweaks.sh (GDB): Add -data-directory
2592 data-directory as appropriate.
2593
2594 2012-09-14 Siddhesh Poyarekar <siddhesh@redhat.com>
2595
2596 * printcmd.c (ui_printf): Eliminate single-use variable
2597 PARAM_LEN.
2598
2599 2012-09-14 Yao Qi <yao@codesourcery.com>
2600 Pedro Alves <palves@redhat.com>
2601
2602 * valops.c (value_assign): Move observer_notify_target_changed
2603 below to replace reinit_frame_cache.
2604
2605 2012-09-13 Khoo Yit Phang <khooyp@cs.umd.edu>
2606
2607 Refactor Python "gdb" module into a proper Python package, by
2608 introducing a new "_gdb" module for code implemented in C, and
2609 using reload/__import__ instead of exec.
2610 * python/lib/gdb/__init__.py: Import * from _gdb.
2611 (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
2612 prompt_hook, sys.argv): Moved from finish_python_initialization.
2613 (pretty_printers, PYTHONDIR): Moved from _initialize_python.
2614 (packages, auto_load_packages): New list and function replacing
2615 module_dict and auto-loading code, using __file__ instead of
2616 gdb.PYTHONDIR and reload/__import__ instead of exec.
2617 (GdbSetPythonDirectory): Replacing function of the same name
2618 from finish_python_initialization, using reload/__import__ instead
2619 of exec, as well as call auto_load_packages.
2620 * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
2621 gdb_python_module and not gdb_module.
2622 * python/python-internal.h (gdb_python_module): Declare.
2623 * python/python.c (gdb_python_module): New global.
2624 (before_prompt_hook): Check gdb_python_module and not gdb_module.
2625 (_initialize_python): Rename gdb module to _gdb.
2626 Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
2627 (finish_python_initialization): Move Python code to
2628 lib/gdb/__init__.py; instead, set up sys.path and import gdb into
2629 __main__.
2630
2631 2012-09-13 Pedro Alves <palves@redhat.com>
2632
2633 * Makefile.in (COMMON_OBS): Add registry.o.
2634 * registry.c: New file.
2635 * registry.h (struct registry_container): Declare.
2636 (registry_data_callback): New typedef.
2637 (struct registry_data, struct registry_data_registration, struct
2638 registry_data_registry): New type.
2639 (register_data_with_cleanup, registry_alloc_data)
2640 (registry_callback_adaptor, registry_clear_data)
2641 (registry_container_free_data, registry_set_data, registry_data):
2642 Declare.
2643 (DEFINE_REGISTRY): Refactor structures and functions as shims over
2644 the new common structures and functions.
2645 (DECLARE_REGISTRY): Declare struct TAG ## _data. Use the tagged
2646 callback typedefs.
2647
2648 2012-09-12 Mike Wrighton <wrighton@codesourcery.com>
2649
2650 * remote.c (remote_insert_hw_breakpoint): Throw exception if
2651 there is an error inserting hardware breakpoints and use the
2652 error message from the target.
2653
2654 * breakpoint.c (insert_bp_location, insert_breakpoint_locations):
2655 Catch this exception and print the error message contained within.
2656 Do not print the default hardware error breakpoint message in this
2657 case.
2658
2659 2012-09-12 Doug Evans <dje@google.com>
2660
2661 * dwarf2read.c (dwarf2_read_addr_index): Fix handling the case where
2662 cu == NULL.
2663
2664 2012-09-11 Doug Evans <dje@google.com>
2665
2666 * dwarf2read.c (dw2_do_expand_symtabs_matching): Don't examine
2667 .gdb_index symbol attributes if there are none.
2668
2669 2012-09-11 Joel Brobecker <brobecker@adacore.com>
2670
2671 * symtab.h (struct minimal_symbol) [has_size]: New field.
2672 (MSYMBOL_SIZE): Adjust to forbid macro from being used as lvalue.
2673 (SET_MSYMBOL_SIZE, MSYMBOL_HAS_SIZE): New macros.
2674 * printcmd.c (build_address_symbolic): Only filter out zero-sized
2675 minimal symbols if the symbol's size is actually known.
2676 * minsyms.c (prim_record_minimal_symbol_full): Adjust setting
2677 of msymbol's size field. Add comment.
2678 * elfread.c (elf_symtab_read, elf_rel_plt_read): Use
2679 SET_MSYMBOL_SIZE to set the minimal symbol size.
2680
2681 2012-09-11 Joel Brobecker <brobecker@adacore.com>
2682
2683 * minsyms.c (install_minimal_symbols): Use memset to fill entire
2684 minimal_symbol struct object, rather than setting some of its
2685 fields one by one.
2686
2687 2012-09-11 Andrew Burgess <aburgess@broadcom.com>
2688
2689 * c-typeprint.c (c_type_print_varspec_prefix): Pass through the
2690 passed_a_ptr flag when displaying typedef types.
2691
2692 2012-09-10 Joel Brobecker <brobecker@adacore.com>
2693
2694 * ada-lang.c (coerce_unspec_val_to_type): Make sure that
2695 the optimized_out flag is preserved.
2696
2697 2012-09-10 Anthony Green <green@moxielogic.com>
2698
2699 * moxie-tdep.c (moxie_analyze_prologue): Update for function
2700 prologue changes in GCC.
2701
2702 2012-09-10 Keith Seitz <keiths@redhat.com>
2703
2704 PR gdb/13483
2705 * gdbtypes.h (BOOL_PTR_CONVERSION_BADNESS): Rename to ...
2706 (BOOL_CONVERSION_BADNESS): ... this.
2707 * gdbtypes.c (BOOL_PTR_CONVERSION_BADNESS): Likewise.
2708 (rank_one_type): Allow all boolean conversions
2709 permitted by the standard.
2710
2711 2012-09-06 Tom Tromey <tromey@redhat.com>
2712
2713 * python/py-newobjfileevent.c (create_new_objfile_event_object):
2714 Don't decref py_objfile.
2715
2716 2012-09-02 Khoo Yit Phang <khooyp@cs.umd.edu>
2717
2718 Do not enable -lmcheck by default when Python is enabled with
2719 threading support.
2720 * configure.ac: (python_has_threads) New variable, by testing
2721 if WITH_THREAD is defined in Python.h.
2722 Move --enable-lmcheck after --with-python.
2723 Do not enable -lmcheck by default if python_has_threads=yes.
2724 Warn if --enable-lmcheck and python_has_threads=yes.
2725 * configure: Regenerate.
2726
2727 2012-08-31 Yao Qi <yao@codesourcery.com>
2728
2729 * mi/mi-cmds.c (mi_cmds): New macros DEF_MI_CMD_CLI
2730 DEF_MI_CMD_MI DEF_MI_CMD_CLI_1 and DEF_MI_CMD_CLI_1.
2731 Update some commands.
2732 * mi/mi-cmds.h (struct mi_cmd) <suppress_notification>: New field.
2733 * mi/mi-main.c (mi_cmd_execute): Set
2734 '*parse->cmd->suppress_notification' to 1.
2735
2736 2012-08-31 Yao Qi <yao@codesourcery.com>
2737
2738 * mi/mi-cmds.c (mi_cmds): Add 'static'.
2739
2740 2012-08-30 Khoo Yit Phang <khooyp@cs.umd.edu>
2741
2742 * MAINTAINERS (Write After Approval): Add "Khoo Yit Phang".
2743
2744 2012-08-29 Doug Evans <dje@google.com>
2745
2746 * main.c (print_gdb_help): Remove reference to
2747 --use-deprecated-index-sections.
2748
2749 2012-08-28 Yao Qi <yao@codesourcery.com>
2750
2751 * cli/cli-cmds.c (max_user_call_depth): Add 'unsigned'.
2752 (init_cmds): Call add_setshow_uinteger_cmd for command
2753 'max-user-call-depth'.
2754 * cli/cli-script.c (execute_user_command): Add 'unsigned' to the
2755 declaration of 'max_user_call_depth'.
2756 * frame.c (backtrace_limit): Add 'unsigned'.
2757 (_initialize_frame): Call add_setshow_uinteger_cmd for command
2758 'limit'.
2759 * remote.c (remoteaddresssize): Add 'unsigned'.
2760 (remote_address_masked): Change local var 'address_size' to
2761 'unsigned'.
2762 (_initialize_remote): Call add_setshow_uinteger_cmd for
2763 'remoteaddresssize'.
2764 * top.c (history_size): Add 'unsigned'.
2765 (show_commands): Change local variables to 'unsigned'.
2766 (set_history_size_command): Don't check history_size is negative.
2767 Adjust the condition to call unstifle_history and set history_size
2768 to UNIT_MAX.
2769
2770 2012-08-28 Pedro Alves <palves@redhat.com>
2771
2772 PR gdb/14428
2773
2774 * infcmd.c (default_print_one_register_info): New, factored out
2775 from default_print_registers_info.
2776 (default_print_registers_info): Use it. Mark value unavailable if
2777 necessary.
2778 (registers_info): Print user registers with
2779 default_print_one_register_info.
2780
2781 2010-08-27 H.J. Lu <hongjiu.lu@intel.com>
2782
2783 PR tui/14486
2784 * tui/tui-source.c (tui_source_is_displayed): Check if TUI_SRC_WIN
2785 is not NULL before referencing it.
2786
2787 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2788
2789 * breakpoint.c (parse_breakpoint_sals) <(*address) == NULL>: New
2790 variable pc. Call find_pc_line instead of find_pc_overlay, restore
2791 original PC for it.
2792
2793 2012-08-27 Eli Zaretskii <eliz@gnu.org>
2794 Jan Kratochvil <jan.kratochvil@redhat.com>
2795
2796 * auto-load.c (auto_load_objfile_script): Rename to ...
2797 (auto_load_objfile_script_1): ... here, change variable realname to
2798 parameter realname, document it, add return value, add variable retval.
2799 (auto_load_objfile_script): New function.
2800
2801 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2802
2803 * cli/cli-decode.c (print_doc_line): Keep skipping '.' and ',' not
2804 followed by a whitespace.
2805
2806 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2807
2808 PR gdb/14494.
2809 * dwarf2read.c (dwarf2_locate_sections): Move variable aflag here.
2810 Move the SEC_HAS_CONTENTS check here - for any NAMES use.
2811 (dwarf2_locate_sections) <eh_frame>: Move the variable and check from
2812 here.
2813
2814 2012-08-27 Wei-cheng Wang <cole945@gmail.com>
2815
2816 * memattr.c (create_mem_region): Fix memory region overlapping
2817 checking.
2818
2819 2012-08-24 Siddhesh Poyarekar <siddhesh@redhat.com>
2820
2821 * h8300-tdep.c (h8300_push_dummy_call): Replace unsafe alloca
2822 with xmalloc/cleanup.
2823 * mt-tdep.c (mt_push_dummy_call): Likewise.
2824 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
2825 * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
2826
2827 2012-08-24 Yao Qi <yao@codesourcery.com>
2828
2829 * jv-exp.y (push_expression_name): Add "." at the end of error
2830 message.
2831
2832 2012-08-23 Khoo Yit Phang <khooyp@cs.umd.edu>
2833
2834 Document how to return from "python-interactive" to GDB.
2835 * python/python.c (_initialize_python): Update documentation.
2836
2837 2012-08-23 Pedro Alves <palves@redhat.com>
2838
2839 * infrun.c (_initialize_infrun) <handle command help text>:
2840 Mention that multiple signals are supported.
2841
2842 2012-08-23 Pedro Alves <palves@redhat.com>
2843
2844 * infcmd.c (_initialize_infcmd) <signal command>: Fix typo in help
2845 string.
2846
2847 2012-08-23 Yao Qi <yao@codesourcery.com>
2848
2849 * tracepoint.c (disconnect_tracing): Call set_tracepoint_num.
2850 (tfind_1): Don't call registers_changed, set_traceframe_num,
2851 and clear_traceframe_info.
2852 Call set_current_traceframe.
2853 (set_current_traceframe): call set_traceframe_num.
2854
2855 2012-08-22 Sergio Durigan Junior <sergiodj@redhat.com>
2856
2857 * remote-sim.c (_initialize_remote_sim): Pass NULL argument to
2858 `register_inferior_data_with_cleanup', fixing regression on PowerPC64.
2859
2860 2012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
2861
2862 Enable readline in Python in a GDB-specific way and block the
2863 standard Python readline module to prevent conflicts with GDB.
2864 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
2865 (SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
2866 (py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
2867 * python/py-gdb-readline.c: New file.
2868 * python/python-internal.h (gdbpy_initialize_gdb_readline): New
2869 prototype.
2870 * python/python.c (_initialize_python): Call
2871 gdbpy_initialize_gdb_readline.
2872
2873 2012-08-22 Keith Seitz <keiths@redhat.com>
2874
2875 * defs.h: Include build-gnulib/config.h
2876
2877 2012-08-22 Joseph Myers <joseph@codesourcery.com>
2878
2879 * arm-tdep.c (thumb_get_next_pc_raw): Mask off low bits for bx pc
2880 and blx pc.
2881
2882 2012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
2883
2884 Add a new "python-interactive" command that starts a standard
2885 Python interactive prompt with "pi" as alias, and add "py" as
2886 an alias to "python".
2887 * NEWS: Mention the new commands.
2888 * python/python.c (eval_python_command): New function.
2889 (python_interactive_command): For "python-interactive" with
2890 arguments, call eval_python_command. For "python-interactive"
2891 without arguments, call PyRun_InteractiveLoop.
2892 (_initialize_python): Add "python-interactive" command with
2893 "pi" as alias, and add "py" as an alias to "python".
2894
2895 2012-08-22 Tom Tromey <tromey@redhat.com>
2896
2897 * defs.h (quit_flag): Don't declare.
2898 (clear_quit_flag, check_quit_flag, set_quit_flag): Declare.
2899 (QUIT): Use new functions.
2900 * event-top.c (command_handler): Use clear_quit_flag.
2901 (handle_sigint): Use set_quit_flag.
2902 (async_request_quit): Use check_quit_flag. Don't check
2903 immediate_quit.
2904 * exceptions.c (throw_exception): Use clear_quit_flag.
2905 * main.c (captured_main): Use clear_quit_flag.
2906 * python/python.c (clear_quit_flag, set_quit_flag)
2907 (check_quit_flag): New functions.
2908 * remote-sim.c (gdb_os_poll_quit): Use check_quit_flag,
2909 clear_quit_flag.
2910 * remote.c (remote_wait_as): Use check_quit_flag,
2911 clear_quit_flag.
2912 (remote_start_remote): Call QUIT.
2913 * symfile.c (load_progress): Use check_quit_flag.
2914 * top.c (command_loop): Use clear_quit_flag.
2915 (command_line_input): Call QUIT.
2916 * utils.c (quit_flag): Conditionally define.
2917 (clear_quit_flag, check_quit_flag, set_quit_flag): New
2918 functions.
2919 (prompt_for_continue): Call QUIT. Use quit, not
2920 async_request_quit.
2921 * remote-mips.c (mips_expect_timeout): Call QUIT.
2922 * monitor.c (monitor_expect): Call QUIT.
2923
2924 2012-08-22 Tom Tromey <tromey@redhat.com>
2925
2926 * event-top.c (sigwinch_token, handle_sigwinch): Remove.
2927 (async_init_signals): Update.
2928 * utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
2929 (SIGWINCH_HANDLER_BODY): Remove.
2930
2931 2012-08-22 Tom Tromey <tromey@redhat.com>
2932
2933 * jit.c (jit_object_close_impl): Don't malloc the objfile
2934 name.
2935 * objfiles.c (allocate_objfile): Don't malloc the objfile
2936 name.
2937 (free_objfile): Don't free the objfile name.
2938 * objfiles.h (struct objfile) <name>: Update comment.
2939 * symfile.c (reread_symbols): Fix reference counting. Don't
2940 malloc objfile name.
2941
2942 2012-08-22 Tom Tromey <tromey@redhat.com>
2943
2944 * windows-nat.c (windows_make_so): Use gdb_bfd_open.
2945 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_open.
2946 (symfile_bfd_open): Likewise.
2947 (generic_load): Likewise.
2948 * solib.c (solib_bfd_fopen): Use gdb_bfd_open.
2949 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
2950 gdb_bfd_open.
2951 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2952 Use gdb_bfd_open.
2953 * rs6000-nat.c (add_vmap): Use gdb_bfd_open.
2954 * remote-mips.c (mips_load_srec): Use gdb_bfd_open.
2955 (pmon_load_fast): Likewise.
2956 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_open.
2957 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_open.
2958 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_open.
2959 (macho_check_dsym): Likewise.
2960 * m32r-rom.c (m32r_load): Use gdb_bfd_open.
2961 (m32r_upload_command): Likewise.
2962 * gdb_bfd.h (gdb_bfd_cache): Declare.
2963 * gdb_bfd.c (struct gdb_bfd_data): New.
2964 (gdb_bfd_cache): New global.
2965 (struct gdb_bfd_cache_search): New.
2966 (hash_bfd): New function.
2967 (eq_bfd): Likewise.
2968 (gdb_bfd_open): Likewise.
2969 (gdb_bfd_ref): Allocate a gdb_bfd_data and attach to the BFD.
2970 (gdb_bfd_unref): Remove closed BFD from cache. Update for
2971 gdb_bfd_data.
2972 * exec.c (exec_file_attach): Use gdb_bfd_open.
2973 * dsrec.c (load_srec): Use gdb_bfd_open.
2974
2975 2012-08-22 Tom Tromey <tromey@redhat.com>
2976
2977 * dwarf2read.c (macro_start_file): Update.
2978 * objfiles.c (get_objfile_bfd_data): Initialize macro_cache.
2979 (free_objfile_per_bfd_storage): Destroy macro_cache.
2980 (allocate_objfile, free_objfile): Update.
2981 * objfiles.h (struct objfile_per_bfd_storage) <macro_cache>:
2982 New field.
2983 (struct objfile) <macro_cache>: Remove.
2984 * symfile.c (reread_symbols): Update.
2985 * symmisc.c (print_symbol_bcache_statistics): Update.
2986 (print_objfile_statistics): Update.
2987
2988 2012-08-22 Tom Tromey <tromey@redhat.com>
2989
2990 * elfread.c (elf_symtab_read): Update.
2991 * objfiles.c (objfiles_bfd_data): New global.
2992 (get_objfile_bfd_data, free_objfile_per_bfd_storage)
2993 (objfile_bfd_data_free, set_objfile_per_bfd): New functions.
2994 (allocate_objfile, free_objfile): Update.
2995 (_initialize_objfiles): Initialize objfiles_bfd_data.
2996 * objfiles.h (struct objfile_per_bfd_storage): New.
2997 (struct objfile) <per_bfd>: New field.
2998 <filename_cache>: Remove.
2999 (set_objfile_per_bfd): Declare.
3000 * symfile.c (reread_symbols): Update. Call
3001 set_objfile_per_bfd.
3002 (allocate_symtab): Update.
3003 * symmisc.c (print_symbol_bcache_statistics): Update.
3004 (print_objfile_statistics): Print the size of the BFD obstack.
3005
3006 2012-08-22 Tom Tromey <tromey@redhat.com>
3007
3008 * gdb_bfd.h: Include registry.h. Use DECLARE_REGISTRY.
3009 * gdb_bfd.c: Use DEFINE_REGISTRY.
3010 (struct gdb_bfd_data): Add REGISTRY_FIELDS.
3011 (gdb_bfd_ref): Call bfd_alloc_data.
3012 (gdb_bfd_unref): Call bfd_free_data.
3013
3014 2012-08-22 Tom Tromey <tromey@redhat.com>
3015
3016 * registry.h (struct registry_fields): New.
3017 (REGISTRY_FIELDS): Redefine.
3018 (REGISTRY_ACCESS_FIELD): New macro.
3019 (DEFINE_REGISTRY): Add ACCESS argument. Update defined
3020 functions.
3021
3022 2012-08-22 Tom Tromey <tromey@redhat.com>
3023
3024 * auto-load.c (_initialize_auto_load): Update.
3025 * solib-svr4.c (_initialize_svr4_solib): Update
3026 * solib-dsbt.c (_initialize_dsbt_solib): Update.
3027 * solib-darwin.c (_initialize_darwin_solib): Update.
3028 * registry.h: New file.
3029 * python/py-progspace.c (gdbpy_initialize_pspace): Update.
3030 * python/py-inferior.c (gdbpy_initialize_inferior): Update.
3031 * progspace.h: Include registry.h. Use DECLARE_REGISTRY.
3032 (register_program_space_data_with_cleanup)
3033 (register_program_space_data, program_space_alloc_data)
3034 (clear_program_space_data, set_program_space_data)
3035 (program_space_data): Don't declare.
3036 * progspace.c: Use DEFINE_REGISTRY.
3037 (struct program_space_data, struct
3038 program_space_data_registration, struct
3039 program_space_data_registry, program_space_data_registry)
3040 (register_program_space_data_with_cleanup)
3041 (register_program_space_data, program_space_alloc_data)
3042 (program_space_free_data, clear_program_space_data)
3043 (set_program_space_data, program_space_data): Remove.
3044 * objfiles.h: Include registry.h. Use DECLARE_REGISTRY.
3045 (struct objfile) <data, num_data>: Replace with REGISTRY_FIELDS.
3046 (register_objfile_data_with_cleanup, register_objfile_data)
3047 (clear_objfile_data, set_objfile_data, objfile_data): Don't
3048 declare.
3049 * objfiles.c: Use DEFINE_REGISTRY.
3050 (struct objfile_data, struct objfile_data_registration, struct
3051 objfile_data_registry, objfile_data_registry)
3052 (register_objfile_data_with_cleanup, register_objfile_data)
3053 (objfile_alloc_data, objfile_free_data, clear_objfile_data)
3054 (set_objfile_data, objfile_data): Remove.
3055 (_initialize_objfiles): Update.
3056 * jit.c (_initialize_jit): Update.
3057 * inflow.c (_initialize_inflow): Update.
3058 * inferior.h: Include registry.h. Use DECLARE_REGISTRY.
3059 (struct inferior) <data, num_data>: Replace with REGISTRY_FIELDS.
3060 (register_inferior_data_with_cleanup, register_inferior_data)
3061 (clear_inferior_data, set_inferior_data, inferior_data): Don't
3062 declare.
3063 * inferior.c: Use DEFINE_REGISTRY.
3064 (struct inferior_data, struct inferior_data_registration, struct
3065 inferior_data_registry, inferior_data_registry)
3066 (register_inferior_data_with_cleanup, register_inferior_data)
3067 (inferior_alloc_data, inferior_free_data clear_inferior_data)
3068 (set_inferior_data, inferior_data): Remove.
3069 * auxv.c (_initialize_auxv): Update.
3070 * ada-lang.c (_initialize_ada_language): Update.
3071 * breakpoint.c (_initialize_breakpoint): Update.
3072 * i386-nat.c (i386_use_watchpoints): Update.
3073
3074 2012-08-22 Tom Tromey <tromey@redhat.com>
3075
3076 * exec.c (exec_close, exec_file_attach): Update.
3077 (add_to_section_table): Initialize 'key' field.
3078 (add_target_sections, remove_target_sections): Add 'key' argument.
3079 * exec.h (add_target_sections, remove_target_sections): Add
3080 'key' argument.
3081 * solib.c (solib_map_sections, update_solib_list, clear_solib)
3082 (reload_shared_libraries_1): Update.
3083 * target.h (struct target_section) <key>: New field.
3084
3085 2012-08-22 Tom Tromey <tromey@redhat.com>
3086
3087 * cli/cli-cmds.c (filter_sals): Handle nelts == 0 case.
3088
3089 2012-08-21 Pierre Muller <muller@ics.u-strasbg.fr>
3090
3091 * symfile.c (allocate_symtab): Use host_address_to_string
3092 function instead of cast of pointer to long which is not
3093 compatible with x86_64-w64-mingw32 build.
3094
3095 2012-08-19 Andrew Pinski <apinski@cavium.com>
3096
3097 * mips-tdep.c (is_octeon): New function.
3098 (is_octeon_bbit_op): New function.
3099 (mips32_next_pc): Handle Octeon's bbit instructions.
3100 (mips32_instruction_has_delay_slot): Likewise.
3101
3102 2012-08-19 Andrew Pinski <apinski@cavium.com>
3103
3104 * mips-tdep.c (mips32_next_pc): Fix line spacing of the comment
3105 before the function.
3106
3107 2012-08-19 Andrew Pinski <apinski@cavium.com>
3108
3109 * mips-tdep.c (mips32_next_pc): Consolidate calls to itype_op.
3110
3111 2012-08-19 Keith Seitz <keiths@redhat.com>
3112
3113 PR c++/14365
3114 * c-typeprint.c (c_type_print_varspec_prefix): Pass
3115 -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
3116
3117 2012-08-18 Eli Zaretskii <eliz@gnu.org>
3118
3119 * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
3120 The typo broke "make TAGS".
3121
3122 2012-08-17 Joel Brobecker <brobecker@adacore.com>
3123
3124 GDB 7.5 released.
3125
3126 2012-08-17 Keith Seitz <keiths@redhat.com>
3127
3128 PR c++/13356
3129 * gdbtypes.c (strict_type_checking): New variable.
3130 (show_strict_type_checking): New function.
3131 (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
3132 if strict type checking is disabled.
3133 (_initialize_gdbtypes): Add "check type" subcommand.
3134 * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
3135
3136 2012-08-17 Keith Seitz <keiths@redhat.com>
3137
3138 * language.h (type_mode): Remove.
3139 (type_check): Remove.
3140 (struct language_defn): Remove la_type_check.
3141 (STRICT_TYPE): Remove unused macro.
3142 (type_error): Remove.
3143 * language.c (set_type_range_case): Renamed to ...
3144 (set_range_case): ... this. Update all callers.
3145 Remove type_mode/type_check.
3146 (type_mode): Remove.
3147 (type_check): Remove.
3148 (show_type_command): Remove.
3149 (set_type_command): Remove.
3150 (language_info): Remove type checking output.
3151 (type_error): Remove unused function.
3152 (range_error): Update comment.
3153 (unknown_language_defn): Remove la_type_check.
3154 (auto_language_defn): Likewise.
3155 (local_language_defn): Likewise.
3156 (_initialize_language): Remove "check type" subcommand.
3157 * ada-lang.c (ada_language_defn): Remove la_type_check.
3158 * c-lang.c (c_language_defn): Likewise.
3159 (cplus_language_defn): Likewise.
3160 (asm_language_defn): Likewise.
3161 (minimal_language_defn): Likewise.
3162 * d-lang.c (d_language_defn): Likewise.
3163 * f-lang.c (f_language_defn): Likewise.
3164 * go-lang.c (go_language_defn): Likewise.
3165 * jv-lang.c (java_language_defn): Likewise.
3166 * m2-lang.c (m2_language_defn): Likewise.
3167 * objc-lang.c (objc_language_defn): Likewise.
3168 * opencl-lang.c (opencl_language_defn): Likewise.
3169 * p-lang.c (pascal_language_defn): Likewise.
3170
3171 2012-08-16 Mike Frysinger <vapier@gentoo.org>
3172
3173 * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
3174
3175 2012-08-16 Joel Brobecker <brobecker@adacore.com>
3176
3177 * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
3178 New function.
3179 (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
3180 using the regache. Use ia64_hpux_get_register_from_save_state_t
3181 to access the bsp and bspstore registers if not.
3182
3183 2012-08-16 Joel Brobecker <brobecker@adacore.com>
3184
3185 * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
3186 * breakpoint.c (detach_breakpoints): Change pid parameter into
3187 a ptid. Adjust code accordingly.
3188 * infrun.c (handle_inferior_event): Delete variable child_pid.
3189 Update call to detach_breakpoints to pass the child ptid for
3190 fork events.
3191 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
3192 assert that inferior_ptid's lwp is zero.
3193 (linux_handle_extended_wait): Update call to detach_breakpoints.
3194 * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
3195 detach_breakpoints.
3196
3197 2012-08-16 Joel Brobecker <brobecker@adacore.com>
3198
3199 * inf-ttrace.c (inf_ttrace_follow_fork): When following the
3200 parent, only call detach_breakpoints if tts.tts_event ==
3201 TTEVT_VFORK.
3202
3203 2012-08-16 Joel Brobecker <brobecker@adacore.com>
3204
3205 * dwarf2-frame.c (dwarf2_frame_cache): Use
3206 get_frame_address_in_block instead of get_frame_pc as
3207 the bound for executing the frame's FDE.
3208
3209 2012-08-16 Yao Qi <yao@codesourcery.com>
3210
3211 * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
3212 * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
3213 * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
3214 (c_type_print_varspec_suffix): Likewise.
3215 * eval.c (evaluate_subexp_standard): Likewise.
3216 * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
3217 (f_type_print_varspec_suffix): Likewise.
3218 * gdbtypes.c (is_scalar_type): Likewise.
3219 (recursive_dump_type): Likewise.
3220 * infcall.c (value_arg_coerce): Likewise.
3221 * m2-valprint.c (m2_val_print): Likewise.
3222 * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
3223 (pascal_type_print_varspec_suffix): Likewise.
3224 (pascal_type_print_base): Likewise.
3225 * p-valprint.c (pascal_val_print): Likewise.
3226 (pascal_val_print): Likewise.
3227 * valops.c (value_slice): Likewise.
3228 * valprint.c (scalar_type_p): Likewise.
3229 * valarith.c (value_bitstring_subscript): Remove.
3230 (value_concat): Remove code handling TYPE_CODE_BITSTRING.
3231 Remove comment on TYPE_CODE_BITSTRING.
3232
3233 * stabsread.c (read_type): Don't set TYPE_CODE (type) to
3234 TYPE_CODE_BITSTRING.
3235
3236 * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
3237 slot 0.
3238
3239 2012-08-16 Yao Qi <yao@codesourcery.com>
3240
3241 * tracepoint.c (trace_find_none_command): Remove.
3242 (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
3243
3244 2012-08-16 Yao Qi <yao@codesourcery.com>
3245
3246 * remote.c (handle_notification): Remove parameter 'length'.
3247 (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
3248
3249 2012-08-15 Keith Seitz <keiths@redhat.com>
3250
3251 * gdbtypes.c (opaque_type_resolution): Make static.
3252 Add missing comment.
3253 (overload_debug): Add missing comment.
3254 (show_opaque_type_resolution): Likewise.
3255 (show_overload_debug): Likewise.
3256 (print_bit_vector): Remove unnecessary forward declaration.
3257 (print_arg_types): Likewise.
3258 (dump_fn_fieldlists): Likewise.
3259 (print_cplus_stuff): Likewise.
3260
3261 2012-08-15 Tom Tromey <tromey@redhat.com>
3262
3263 * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
3264 (gdb_bfd_ref): Initialize new field.
3265 (gdb_bfd_unref): Unref the archive BFD.
3266 (gdb_bfd_openr_next_archived_file): Acquire a reference to the
3267 parent archive.
3268
3269 2012-08-15 Tom Tromey <tromey@redhat.com>
3270
3271 PR python/14387:
3272 * python/py-bpevent.c (create_breakpoint_event_object): Update
3273 comment.
3274 * python/py-event.c (evpy_add_attribute): Update comment.
3275 * python/py-exitedevent.c (create_exited_event_object): Fix
3276 reference counting and error handling.
3277 * python/py-newobjfileevent.c (create_new_objfile_event_object):
3278 Fix reference counting.
3279 * python/py-signalevent.c (create_signal_event_object): Fix
3280 reference counting and error handling.
3281 * python/py-stopevent.c (emit_stop_event): Fix reference
3282 counting.
3283 * python/py-threadevent.c (get_event_thread): Return a
3284 borrowed reference.
3285 * python/py-type.c (convert_field): Fix reference counting.
3286
3287 2012-08-15 Tom Tromey <tromey@redhat.com>
3288
3289 * dwarf2read.c (dwarf_decode_macro_bytes)
3290 <DW_MACRO_GNU_transparent_include>: Use pointer to included data
3291 as hash key.
3292
3293 2012-08-14 Mike Frysinger <vapier@gentoo.org>
3294
3295 * infcmd.c (_initialize_infcmd): Update help text for the signal,
3296 stepi, nexti, finish, next, step, jump, and continue commands.
3297 * infrun.c (_initialize_infrun): Update help text for the handle
3298 command.
3299
3300 2012-08-14 Doug Evans <dje@google.com>
3301
3302 * gdbtypes.c (struct extra): Delete, unused.
3303
3304 * gdbtypes.c: Whitespace cleanup.
3305 (address_space_name_to_int): Remove "extern" from definition.
3306 (_initialize_gdbtypes): Declare with initialize_file_ftype.
3307
3308 * gdbtypes.c (make_pointer_type): Remove redundant setting of
3309 TYPE_POINTER_TYPE (type).
3310
3311 2012-08-14 Gary Benson <gbenson@redhat.com>
3312
3313 * solib-svr4.c (svr4_free_library_list): Use free_so.
3314
3315 2012-08-13 Mike Frysinger <vapier@gentoo.org>
3316
3317 * .gitignore: Add go-exp.c.
3318
3319 2012-08-13 Doug Evans <dje@google.com>
3320
3321 * value.c (show_convenience): Tweak comment.
3322 (_initialize_values): Mention convenience functions in the help text
3323 for "show convenience".
3324
3325 2012-08-13 Yao Qi <yao@codesourcery.com>
3326
3327 * std-operator.def: Remove TERNOP_SLICE_COUNT.
3328 * breakpoint.c (watchpoint_exp_is_const): Remove handling to
3329 TERNOP_SLICE_COUNT.
3330 * eval.c (evaluate_subexp_standard): Likewise.
3331 * expprint.c (print_subexp_standard): Likewise.
3332 (dump_subexp_body_standard): Likewise.
3333 * parse.c (operator_length_standard): Likewise.
3334
3335 2012-08-13 Yao Qi <yao@codesourcery.com>
3336
3337 * std-operator.def: Remove OP_BITSTRING.
3338 * breakpoint.c (watchpoint_exp_is_const): Update.
3339 * eval.c (evaluate_subexp_standard): Remove handling to
3340 OP_BITSTRING.
3341 * expprint.c (print_subexp_standard): Likewise.
3342 (dump_subexp_body_standard): Likewise.
3343 * parse.c (operator_length_standard): Likewise.
3344 * valops.c (value_bitstring): Remove.
3345 * value.h: Remove the declaration of 'value_bitstring'.
3346
3347 2012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
3348
3349 * linespec.c (find_methods): Remove unused variables `i1' and
3350 `name_len'.
3351 (decode_line_full): Likewise for `arg_start'.
3352
3353 2012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
3354
3355 * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
3356 (zlib_decompress_section): Likewise for `section_data'.
3357 (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
3358
3359 2012-08-10 Doug Evans <dje@google.com>
3360
3361 Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
3362 * NEWS: Document them.
3363 * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
3364 function/strfns.py.
3365 * python/py-type.c (typy_array_1): New function.
3366 (typy_array): Call it.
3367 (typy_vector): New function.
3368 (type_object_methods): Add "vector".
3369 * python/lib/gdb/function/__init__.py: New file.
3370 * python/lib/gdb/function/strfns.py: New file.
3371
3372 2012-08-10 Siddhesh Poyarekar <siddhesh@redhat.com>
3373
3374 * python/py-type.c (convert_field): Use gdb_py_long_from_longest
3375 for TYPE_FIELD_BITPOS.
3376 (typy_get_sizeof): Likewise for TYPE_LENGTH.
3377
3378 2012-08-10 Mike Frysinger <vapier@gentoo.org>
3379
3380 PR cli/10436:
3381 * common/vec.h (VEC_merge): Define.
3382 (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
3383 (DEF_VEC_ALLOC_FUNC_P): Likewise.
3384 (DEF_VEC_ALLOC_FUNC_O): Likewise.
3385 * completer.c: Include gdb_signals.h.
3386 (signal_completer): Define.
3387 * completer.h (signal_completer): Add prototype.
3388 * infcmd.c (_initialize_infcmd): Assign the command
3389 completer for "signal" to handle_completer.
3390 * infrun.c: Include completer.h.
3391 (handle_completer): Define.
3392 (_initialize_infrun): Declare a new local variable c. Store the
3393 result of add_com("handle") to it. Assign the command
3394 completer for "handle" to handle_completer.
3395
3396 2012-08-09 Yao Qi <yao@codesourcery.com>
3397
3398 * cli/cli-decode.c (set_cmd_prefix): New.
3399 (lookup_cmd_for_prefixlist): New.
3400 (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
3401 of each cmd_list_element in *prefixlist.
3402 (add_setshow_cmd_full): set_cmd_prefix.
3403 (add_alias_cmd): Likewise.
3404 * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
3405 Declare 'auto_boolean_enums'.
3406 * cli/cli-setshow.c: Include "observer.h".
3407 (notify_command_param_changed_p): New.
3408 (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
3409 Remove 'static'.
3410 (do_setshow_command): Split it to ...
3411 (do_set_command, do_show_command): ... them. New.
3412 (do_set_command): Call observer_notify_command_param_changed if
3413 notify_command_param_changed_p returns true.
3414 (cmd_show_list): Caller update.
3415 * auto-load.c (set_auto_load_cmd): Likewise.
3416 * remote.c (show_remote_cmd): Likewise.
3417 * cli/cli-setshow.h: Update declarations.
3418 * top.c (execute_command): Call do_set_command and do_show_command.
3419
3420 * NEWS: Mention new MI notification.
3421 * mi/mi-interp.c: Declare mi_command_param_changed.
3422 (mi_interpreter_init): Attach mi_command_param_changed to
3423 observer command_param_changed.
3424 (mi_command_param_changed): New.
3425 Remove mi_suppress_breakpoint_notifications.
3426 Define global variable mi_suppress_notification.
3427 (mi_breakpoint_created): Update.
3428 (mi_breakpoint_deleted): Likewise.
3429 (mi_breakpoint_modified): Likewise.
3430 * mi/mi-main.c (mi_cmd_execute): Likewise. Check command
3431 'gdb-set' and set mi_suppress_notification.
3432 * mi/mi-main.h: (mi_suppress_notification): New struct.
3433
3434 2012-08-09 Andreas Tobler <andreast@fgznet.ch>
3435 Jan Kratochvil <jan.kratochvil@redhat.com>
3436
3437 * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
3438
3439 2012-08-09 Yao Qi <yao@codesourcery.com>
3440
3441 * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
3442 (skiplist): Move it to skip.c.
3443 (init_cmd_lists): Remove code setting enablebreaklist and
3444 skiplist to NULL.
3445 * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
3446 * cli/cli-cmds.h: Remove declaration of enablebreaklist and
3447 skiplist.
3448 * gdbcmd.h: Likewise.
3449 * skip.c (_initialize_step_skip): Move 'skiplist' from
3450 cli/cli-cmds.c.
3451
3452 2012-08-09 Yao Qi <yao@codesourcery.com>
3453
3454 * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
3455 * gnu-nat.c, symfile.c: Likewise.
3456
3457 2012-08-08 Aaron Gamble <agamble@google.com>
3458
3459 * utils.c (prompt_for_continue_wait_time): New static global.
3460 (make_command_stats_cleanup): Initialize it.
3461 (report_command_stats): Subtract time waiting for user.
3462 (prompt_for_continue): Track time waiting for user.
3463 (defaulted_query): Track time waiting for user.
3464
3465 2012-08-08 Doug Evans <dje@google.com>
3466
3467 * eval.c (evaluate_subexp_standard): Fix thinko in handling
3468 UNOP_MEMVAL_TYPE.
3469 * expprint.c (print_subexp_standard, case OP_TYPE): New.
3470 (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
3471 (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
3472 (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
3473 (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
3474 (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
3475 elt.
3476 (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
3477 (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
3478 (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
3479 (dump_prefix_expression): Handle OP_TYPE.
3480
3481 2012-08-08 Keith Seitz <keiths@redhat.com>
3482
3483 * breakpoint.c (parse_breakpoint_sals): Remove unused variable
3484 addr_start.
3485
3486 2012-08-08 Doug Evans <dje@google.com>
3487
3488 * linux-thread-db.c: #include "gdb_vecs.h".
3489 (try_thread_db_load_from_pdir_1): New arg "subdir". All callers
3490 updated.
3491 (try_thread_db_load_from_pdir): New arg "subdir". All callers updated.
3492 (thread_db_load_search): Use a vector to iterate over path elements.
3493 Handle text appearing after "$pdir".
3494
3495 * gdb_string.h: Moved to ...
3496 * common/gdb_string.h: ... here.
3497 * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
3498 gdb_string.h and gdb_assert.h.
3499
3500 2012-08-08 Yao Qi <yao@codesourcery.com>
3501
3502 * tic6x-tdep.c (tic6x_register_to_value): Remove.
3503 (tic6x_value_to_register): Likewise.
3504 (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
3505 and set_gdbarch_value_to_register.
3506
3507 2012-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3508 Jean-Marc Saffroy <saffroy@gmail.com>
3509
3510 PR 11804
3511 * defs.h (find_memory_region_ftype): New comment. New arg modified.
3512 * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
3513 * gcore.c (gcore_create_callback): New function comment. Add modified
3514 parameter. Only write modified regions. Set SEC_READONLY exactly
3515 according to MODIFIED.
3516 (objfile_find_memory_regions): Ignore separate debug info files. Ass
3517 the passed modified value to FUNC.
3518 * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
3519 * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
3520 first. New variables modified and has_anonymous. Parse the lines of
3521 smaps file. Add the passed MODIFIED value to FUNC.
3522 * procfs.c (find_memory_regions_callback): Add the passed modified
3523 value.
3524
3525 2012-08-06 Tom Tromey <tromey@redhat.com>
3526
3527 * dwarf2-frame.c (clear_pointer_cleanup): New function.
3528 (dwarf2_frame_cache): Use it.
3529 * frame-unwind.h (frame_sniffer_ftype): Document prologue
3530 cache initialization constraint.
3531
3532 2012-08-06 Tom Tromey <tromey@redhat.com>
3533
3534 PR python/14386:
3535 * varobj.c (update_dynamic_varobj_children): Don't call
3536 PyIter_Check.
3537
3538 2012-08-06 Tom Tromey <tromey@redhat.com>
3539
3540 PR cli/14392:
3541 * cli/cli-cmds.c (list_command): Filter 'sals_end'.
3542
3543 2012-08-06 Nathaniel Flath <flat0103@gmail.com>
3544
3545 * NEWS: New entry for 'cd' default parameters.
3546 * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
3547
3548 2012-08-03 Tom Tromey <tromey@redhat.com>
3549
3550 * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
3551 return.
3552
3553 2012-08-02 Ulrich Weigand <ulrich.weigand@linaro.org>
3554
3555 * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
3556 to attempting lseek/write.
3557 (inf_child_fileio_pread): Likewise for pread.
3558
3559 2012-08-02 Yao Qi <yao@codesourcery.com>
3560
3561 * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
3562 (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
3563 add_setshow_zinteger_cmd.
3564 * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
3565 * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
3566 (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
3567 instead of add_setshow_zinteger_cmd.
3568 * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
3569 (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
3570 instead of add_setshow_zinteger_cmd.
3571 * frame.c (frame_debug): Add 'unsigned'.
3572 (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
3573 add_setshow_zinteger_cmd.
3574 * frame.h: Update the declaration of 'frame_debug'.
3575 * gdbtypes.c (overload_debug): Add 'unsigned'.
3576 (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
3577 add_setshow_zinteger_cmd.
3578 * inferior.h: Update declaration of 'debug_infrun'.
3579 * infrun.c (debug_infrun): Add 'unsigned'.
3580 (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
3581 add_setshow_zinteger_cmd.
3582 * jit.c (jit_debug): Add 'unsigned'.
3583 (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
3584 add_setshow_zinteger_cmd.
3585 * linux-nat.c (debug_linux_nat): Add 'unsigned'.
3586 (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
3587 instead of add_setshow_zinteger_cmd.
3588 * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
3589 (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
3590 add_setshow_zinteger_cmd.
3591 * machoread.c (mach_o_debug_level): Add 'unsigned'.
3592 (_initialize_machoread): Call add_setshow_zuinteger_cmd
3593 instead of add_setshow_zinteger_cmd.
3594 * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
3595 * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
3596 (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
3597 intead of add_setshow_zinteger_cmd.
3598 * mips-tdep.c (mips_debug): Add 'unsigned'.
3599 (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
3600 instead of add_setshow_zinteger_cmd.
3601 * monitor.c (monitor_debug): Add 'unsigned'.
3602 (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
3603 add_setshow_zinteger_cmd.
3604 * observer.c (observer_debug): Add 'unsigned'.
3605 (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
3606 add_setshow_zinteger_cmd.
3607 * parse.c (expressiondebug): Add 'unsigned'.
3608 (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
3609 add_setshow_zinteger_cmd.
3610 * record.c (record_debug): Add 'unsigned'.
3611 (_initialize_record): Call add_setshow_zuinteger_cmd instead of
3612 add_setshow_zinteger_cmd.
3613 * record.h: Update the declaration of 'record_debug'.
3614 * stap-probe.c (stap_expression_debug): Add 'unsigned'.
3615 (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
3616 add_setshow_zinteger_cmd.
3617 * serial.c (global_serial_debug_p): Add 'unsigned'.
3618 (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
3619 add_setshow_zinteger_cmd.
3620 * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
3621 (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
3622 add_setshow_zinteger_cmd.
3623 * solib-frv.c (solib_frv_debug): Add 'unsigned'.
3624 (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
3625 add_setshow_zinteger_cmd.
3626 * target.c (targetdebug): Add 'unsigned'.
3627 (initialize_targets): Call add_setshow_zuinteger_cmd instead of
3628 add_setshow_zinteger_cmd.
3629 * valops.c (overload_debug): Add 'unsigned'.
3630 * varobj.c (varobjdebug): Add 'unsigned'.
3631 (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
3632 add_setshow_zinteger_cmd.
3633 * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
3634 (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
3635 instead of add_setshow_zinteger_cmd.
3636
3637 * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
3638 * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
3639 (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
3640 instead of add_setshow_zinteger_cmd.
3641 * gdbarch.c, gdbarch.h: Re-generated.
3642
3643 2012-08-02 Yao Qi <yao@codesourcery.com>
3644
3645 * nto-tdep.c: Don't include cli/cli-decode.h and
3646 cli/cli-cmds.h.
3647 (_initialize_nto_tdep): Remove.
3648 * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
3649 Remove field.
3650 Remove macro nto_internal_debugging.
3651
3652 2012-08-01 Richard Henderson <rth@redhat.com>
3653
3654 * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
3655 (mep-*-*) [gdb_target_obs]: Likewise.
3656
3657 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
3658
3659 * ppc-linux-tdep.c (ppc_linux_init_abi): Register
3660 linux_get_siginfo_type.
3661
3662 2012-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
3663
3664 * infcall.c (call_function_by_hand): Move BP_ADDR comment to
3665 AT_ENTRY_POINT.
3666 (call_function_by_hand) <ON_STACK>: Call write_memory with
3667 gdbarch_breakpoint_from_pc, if possible.
3668 (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
3669 here.
3670
3671 2012-07-31 Yao Qi <yao@codesourcery.com>
3672
3673 * tracepoint.c: Add 'static' for some variables.
3674
3675 2012-07-31 Yao Qi <yao@codesourcery.com>
3676
3677 * go32-nat.c: Declare _initialize_go32_nat.
3678 * ser-go32.c: Declare _initialize_ser_dos.
3679 * top.c (do_chdir_cleanup): Add 'static'.
3680
3681 2012-07-30 Keith Seitz <keiths@redhat.com>
3682
3683 * linespec.c (linespec_lex_number): A number followed
3684 by quotes is a valid number, too.
3685
3686 2012-07-30 Tom Tromey <tromey@redhat.com>
3687
3688 * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
3689
3690 2012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
3691
3692 * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
3693 attempt to 4-byte-align HW breakpoint addresses for Thumb.
3694
3695 2012-07-30 Andrew Burgess <aburgess@broadcom.com>
3696
3697 * varobj.c (varobj_invalidate_iter): All varobj must be marked as
3698 invalid or reevaluated to prevent prevent references to possibly
3699 delete'd type objects being left in the varobj.
3700
3701 2012-07-27 Tom Tromey <tromey@redhat.com>
3702 Jan Kratochvil <jan.kratochvil@redhat.com>
3703
3704 * copying.awk: Print buffer-read-only and vi ro markers.
3705 * copying.c: Rebuild.
3706 * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
3707 * gdbarch.c, gdbarch.h: Rebuild.
3708 * target-descriptions.c (maint_print_c_tdesc_cmd): Print
3709 buffer-read-only and vi ro markers.
3710 * features/arm-with-iwmmxt.c: Rebuild.
3711 * features/arm-with-m-fpa-layout.c: Rebuild.
3712 * features/arm-with-m-vfp-d16.c: Rebuild.
3713 * features/arm-with-m.c: Rebuild.
3714 * features/arm-with-neon.c: Rebuild.
3715 * features/arm-with-vfpv2.c: Rebuild.
3716 * features/arm-with-vfpv3.c: Rebuild.
3717 * features/i386/amd64-avx-linux.c: Rebuild.
3718 * features/i386/amd64-avx.c: Rebuild.
3719 * features/i386/amd64-linux.c: Rebuild.
3720 * features/i386/amd64.c: Rebuild.
3721 * features/i386/i386-avx-linux.c: Rebuild.
3722 * features/i386/i386-avx.c: Rebuild.
3723 * features/i386/i386-linux.c: Rebuild.
3724 * features/i386/i386-mmx-linux.c: Rebuild.
3725 * features/i386/i386-mmx.c: Rebuild.
3726 * features/i386/i386.c: Rebuild.
3727 * features/i386/x32-avx-linux.c: Rebuild.
3728 * features/i386/x32-avx.c: Rebuild.
3729 * features/i386/x32-linux.c: Rebuild.
3730 * features/i386/x32.c: Rebuild.
3731 * features/mips-dsp-linux.c: Rebuild.
3732 * features/mips-linux.c: Rebuild.
3733 * features/mips64-dsp-linux.c: Rebuild.
3734 * features/mips64-linux.c: Rebuild.
3735 * features/rs6000/powerpc-32.c: Rebuild.
3736 * features/rs6000/powerpc-32l.c: Rebuild.
3737 * features/rs6000/powerpc-403.c: Rebuild.
3738 * features/rs6000/powerpc-403gc.c: Rebuild.
3739 * features/rs6000/powerpc-405.c: Rebuild.
3740 * features/rs6000/powerpc-505.c: Rebuild.
3741 * features/rs6000/powerpc-601.c: Rebuild.
3742 * features/rs6000/powerpc-602.c: Rebuild.
3743 * features/rs6000/powerpc-603.c: Rebuild.
3744 * features/rs6000/powerpc-604.c: Rebuild.
3745 * features/rs6000/powerpc-64.c: Rebuild.
3746 * features/rs6000/powerpc-64l.c: Rebuild.
3747 * features/rs6000/powerpc-7400.c: Rebuild.
3748 * features/rs6000/powerpc-750.c: Rebuild.
3749 * features/rs6000/powerpc-860.c: Rebuild.
3750 * features/rs6000/powerpc-altivec32.c: Rebuild.
3751 * features/rs6000/powerpc-altivec32l.c: Rebuild.
3752 * features/rs6000/powerpc-altivec64.c: Rebuild.
3753 * features/rs6000/powerpc-altivec64l.c: Rebuild.
3754 * features/rs6000/powerpc-cell32l.c: Rebuild.
3755 * features/rs6000/powerpc-cell64l.c: Rebuild.
3756 * features/rs6000/powerpc-e500.c: Rebuild.
3757 * features/rs6000/powerpc-e500l.c: Rebuild.
3758 * features/rs6000/powerpc-isa205-32l.c: Rebuild.
3759 * features/rs6000/powerpc-isa205-64l.c: Rebuild.
3760 * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
3761 * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
3762 * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
3763 * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
3764 * features/rs6000/powerpc-vsx32.c: Rebuild.
3765 * features/rs6000/powerpc-vsx32l.c: Rebuild.
3766 * features/rs6000/powerpc-vsx64.c: Rebuild.
3767 * features/rs6000/powerpc-vsx64l.c: Rebuild.
3768 * features/rs6000/rs6000.c: Rebuild.
3769 * features/s390-linux32.c: Rebuild.
3770 * features/s390-linux32v1.c: Rebuild.
3771 * features/s390-linux32v2.c: Rebuild.
3772 * features/s390-linux64.c: Rebuild.
3773 * features/s390-linux64v1.c: Rebuild.
3774 * features/s390-linux64v2.c: Rebuild.
3775 * features/s390x-linux64.c: Rebuild.
3776 * features/s390x-linux64v1.c: Rebuild.
3777 * features/s390x-linux64v2.c: Rebuild.
3778 * features/tic6x-c62x-linux.c: Rebuild.
3779 * features/tic6x-c62x.c: Rebuild.
3780 * features/tic6x-c64x-linux.c: Rebuild.
3781 * features/tic6x-c64x.c: Rebuild.
3782 * features/tic6x-c64xp-linux.c: Rebuild.
3783 * features/tic6x-c64xp.c: Rebuild.
3784
3785 2012-07-27 Tom Tromey <tromey@redhat.com>
3786
3787 * c-exp.y (classify_name): Avoid assignment in condition.
3788
3789 2012-07-27 Roland Schwingel <roland.schwingel@onevision.com>
3790
3791 * amd64-windows-tdep.c: Include "frame.h".
3792 (amd64_windows_skip_trampoline_code): New function.
3793 (amd64_windows_init_abi): Add trampoline registration.
3794
3795 2012-07-27 Yao Qi <yao@codesourcery.com>
3796
3797 * tracepoint.c (cur_traceframe_number): Remove.
3798 (set_tfile_traceframe): Remove.
3799 (tfile_trace_find, tfile_fetch_registers): Update callers.
3800 (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
3801 (tfile_open, tfile_trace_find): Likewise.
3802
3803 2012-07-27 Yao Qi <yao@codesourcery.com>
3804
3805 * thread.c (switch_to_thread): Don't call registers_changed.
3806
3807 2012-07-26 Tom Tromey <tromey@redhat.com>
3808
3809 * Makefile.in (SFILES): Remove objc-exp.y.
3810 (YYFILES): Remove objc-exp.c.
3811 (YYOBJ): Remove objc-exp.o.
3812 (local-maintainer-clean): Don't mention objc-exp.c.
3813 * c-exp.y: Include objc-lang.h.
3814 (%union) <class>: New field.
3815 (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
3816 (exp): Clone subscript production for OBJC_LBRAC. Add various
3817 Objective C productions.
3818 (msglist, msgarglist, msgarg): New productions.
3819 (array_mod, func_mod, operator): Clone productions for
3820 OBJC_LBRAC.
3821 (parse_string_or_char): Handle '@' strings.
3822 (lex_one_token): Return OBJC_LBRAC. Recognize @selector.
3823 (classify_name): Check la_name_of_this. Recognize ObjC class
3824 names.
3825 * objc-exp.y: Remove.
3826 * objc-lang.c (objc_language_defn): Use c_parse, c_error.
3827 * objc-lang.h (objc_parse, objc_error): Don't declare.
3828
3829 2012-07-26 Markus Metzger <markus.t.metzger@intel.com>
3830
3831 * python/py-inferior.c (infpy_threads): Call update_thread_list ().
3832
3833 2012-07-26 Jan Kratochvil <jan.kratochvil@redhat.com>
3834
3835 * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
3836 and decrement.
3837
3838 2012-07-26 Tom Tromey <tromey@redhat.com>
3839
3840 * copying.c: Rebuild.
3841 * copying.awk: Don't use immediate_quit. Use 'no_set_class', not
3842 'no_class'.
3843
3844 2012-07-26 Tom Tromey <tromey@redhat.com>
3845
3846 * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
3847 immediate_quit.
3848 (print_objfile_statistics): Likewise.
3849 (maintenance_print_symbols): Likewise.
3850 (maintenance_print_msymbols): Likewise.
3851 (maintenance_print_objfiles): Likewise.
3852 * psymtab.c (print_partial_symbols): Call QUIT.
3853 (maintenance_print_psymbols): Likewise. Don't modify
3854 immediate_quit.
3855 * copying.c (show_copying_command): Don't modify immediate_quit.
3856 (show_warranty_command): Likewise.
3857 * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
3858
3859 2012-07-26 Keith Seitz <keiths@redhat.com>
3860
3861 * linespec.c (linespec_lexer_lex_number): The input
3862 is also a valid number if the next character is a comma
3863 or colon.
3864
3865 2012-07-26 Joel Brobecker <brobecker@adacore.com>
3866
3867 * NEWS: Document new --enable-libmcheck/--disable-libmcheck
3868 configure options.
3869
3870 2012-07-26 Tristan Gingold <gingold@adacore.com>
3871
3872 * machoread.c: Include gdb_bfd.h.
3873
3874 2012-07-26 Tristan Gingold <gingold@adacore.com>
3875
3876 * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
3877 offset.
3878
3879 2012-07-26 Siddhesh Poyarekar <siddhesh@redhat.com>
3880
3881 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
3882 SIZE to size_t.
3883 (dwarf2_evaluate_loc_desc): Likewise.
3884 (dwarf2_loc_desc_needs_frame): Likewise.
3885 (locexpr_describe_location_1): Likewise.
3886 * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
3887 size_t.
3888 (struct dwarf2_loclist_baton): Likewise.
3889 * dwarf2read.c (struct dwarf_block): Likewise.
3890 (dump_die_shallow): Use pulongest to print dwarf_block.size.
3891 (decode_locdesc): Expand SIZE and I to size_t.
3892
3893 2012-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
3894
3895 * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
3896
3897 2012-07-25 Joel Brobecker <brobecker@adacore.com>
3898
3899 * doublest.c (convert_doublest_to_floatformat): If the exponent
3900 is too small, treat the value as zero. If the exponent is too
3901 large, treat the value as infinity.
3902
3903 2012-07-25 Joel Brobecker <brobecker@adacore.com>
3904
3905 * configure.ac: Add --enable-lmcheck configure option.
3906 * configure: Regenerate.
3907
3908 2012-07-25 Tom Tromey <tromey@redhat.com>
3909
3910 * NEWS: Mention maint info bfds.
3911 * gdb_bfd.c (all_bfds): New global.
3912 (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
3913 (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
3914 New functions.
3915
3916 2012-07-25 Ralf Corsépius <ralf.corsepius@rtems.org>
3917
3918 * configure.tgt: Add v850*-*-rtems*.
3919
3920 2012-07-25 Tom Tromey <tromey@redhat.com>
3921
3922 * macrotab.c (macro_bcache_str): Remove cast.
3923
3924 2012-07-25 Hui Zhu <hui_zhu@mentor.com>
3925
3926 * linespec.c (linespec_lexer_lex_number): Update comments,
3927 change the return and add check to make sure the input is
3928 the decimal numbers.
3929 (linespec_lexer_lex_one): If linespec_lexer_lex_number return
3930 false, call linespec_lexer_lex_string.
3931
3932 2012-07-24 Tom Tromey <tromey@redhat.com>
3933
3934 * symfile.c (symbol_file_add): Don't open BFD twice.
3935
3936 2012-07-24 Marc Khouzam <marc.khouzam@ericsson.com>
3937
3938 * breakpoint.c (create_breakpoint): Store condition for pending
3939 breakpoints.
3940
3941 2012-07-24 Andreas Schwab <schwab@linux-m68k.org>
3942
3943 * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
3944 (m68k_return_value): Handle complex types like structures.
3945 (m68k_svr4_return_value): Likewise.
3946
3947 2012-07-24 Marcus Shawcroft <marcus.shawcroft@arm.com>
3948
3949 * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
3950 parameters to bfd_get_section_name.
3951
3952 2012-07-24 Yao Qi <yao@codesourcery.com>
3953
3954 * cli/cli-setshow.c: Handle case 'var_uinteger'
3955 and 'var_zuninteger' together. Handle case 'var_integer' and
3956 'var_zinteger' together.
3957
3958 2012-07-23 Keith Seitz <keiths@redhat.com>
3959
3960 * linespec.c (convert_linespec_to_sal): Don't add
3961 any symbols to the result vector if symbol_to_sal
3962 returns zero.
3963
3964 2012-07-23 Keith Seitz <keiths@redhat.com>
3965
3966 * linespec.c (decode_objc): Record the function name
3967 in the linespec.
3968
3969 2012-07-23 Tom Tromey <tromey@redhat.com>
3970
3971 * rs6000-nat.c (add_vmap): Rewrite archive loop. Fix reference
3972 counting.
3973 * exec.c (exec_close_1): Unconditionally release vmap's BFD.
3974 (map_vmap): Acquire a reference to the BFD.
3975
3976 2012-07-23 Siddhesh Poyarekar <siddhesh@redhat.com>
3977
3978 * p-valprint.c (pascal_object_print_value): Replace potentially
3979 unsafe alloca with xmalloc/xfree.
3980 * valops.c (search_struct_method): Likewise.
3981
3982 2012-07-23 Tom Tromey <tromey@redhat.com>
3983
3984 * solib-svr4.c (enable_break): Update.
3985 * bfd-target.h (target_bfd_reopen): Update documentation.
3986
3987 2012-07-23 Tom Tromey <tromey@redhat.com>
3988
3989 * symfile.c (separate_debug_file_exists): Update.
3990 (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
3991 (reread_symbols): Update.
3992 * elfread.c (build_id_verify): Update.
3993 * symfile.h (gdb_bfd_open_maybe_remote): Rename from
3994 bfd_open_maybe_remote.
3995
3996 2012-07-23 Tom Tromey <tromey@redhat.com>
3997
3998 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
3999
4000 2012-07-23 Tom Tromey <tromey@redhat.com>
4001
4002 * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
4003 and 'abfd'.
4004 * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
4005 and 'abfd'.
4006 * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
4007 * machoread.c (macho_add_oso_symfile): Make a cleanup for
4008 'abfd'.
4009 (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
4010 * objfiles.c (allocate_objfile): Acquire a new reference.
4011 * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
4012 * solib.c (solib_read_symbols): Don't acquire a BFD reference.
4013 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
4014 a cleanup for 'nbfd'.
4015 * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
4016 for 'nbfd'.
4017 * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
4018 make a cleanup for 'abfd'.
4019 (symbol_file_add): Make a BFD cleanup.
4020
4021 2012-07-23 Tom Tromey <tromey@redhat.com>
4022
4023 * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
4024 (bfd_openw_with_cleanup): Use gdb_bfd_openw.
4025 * corelow.c (core_open): Use gdb_bfd_fopen.
4026 * dsrec.c (load_srec): Use gdb_bfd_openr.
4027 * exec.c (exec_file_attach): Use gdb_bfd_fopen.
4028 * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
4029 * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
4030 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
4031 (gdb_bfd_fdopenr): New functions.
4032 * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
4033 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
4034 (gdb_bfd_fdopenr): Declare.
4035 * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
4036 * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
4037 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
4038 gdb_bfd_openr_next_archived_file.
4039 (macho_check_dsym): Use gdb_bfd_openr.
4040 (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
4041 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
4042 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
4043 * remote-mips.c (mips_load_srec, pmon_load_fast): Use
4044 gdb_bfd_openr.
4045 * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
4046 * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
4047 gdb_bfd_openr_next_archived_file.
4048 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4049 Use gdb_bfd_openr.
4050 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
4051 gdb_bfd_openr.
4052 * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
4053 * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
4054 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
4055 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
4056 (symfile_bfd_open): Use gdb_bfd_fopen.
4057 (generic_load): Use gdb_bfd_openr.
4058 * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
4059
4060 2012-07-23 Tom Tromey <tromey@redhat.com>
4061
4062 * bfd-target.c (target_bfd_reopen): Update.
4063 * cli/cli-dump.c (bfd_openr_with_cleanup)
4064 (bfd_openw_with_cleanup): Update.
4065 * corelow.c (core_open): Update.
4066 * dsrec.c (load_srec): Update.
4067 * exec.c (exec_file_attach): Update.
4068 * gcore.c (create_gcore_bfd): Update.
4069 * gdb_bfd.c (gdb_bfd_ref): Return void.
4070 (gdb_bfd_open): Update.
4071 * gdb_bfd.h (gdb_bfd_ref): Return void.
4072 Update comments.
4073 * jit.c (jit_bfd_try_read_symtab): Update.
4074 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
4075 * machoread.c (macho_symfile_read_all_oso): Update.
4076 (macho_check_dsym): Update.
4077 * procfs.c (insert_dbx_link_bpt_in_file): Update.
4078 * remote-m32r-sdi.c (m32r_load): Update.
4079 * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
4080 * rs6000-nat.c (add_vmap): Update.
4081 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4082 Update.
4083 * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
4084 * solib-spu.c (spu_bfd_open): Update.
4085 * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
4086 * spu-linux-nat.c (spu_bfd_open): Update.
4087 * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
4088 (generic_load): Update.
4089 * windows-nat.c (windows_make_so): Update.
4090
4091 2012-07-22 Siddhesh Poyarekar <siddhesh@redhat.com>
4092
4093 * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
4094
4095 2012-07-20 Jeff Kenton <jkenton@tilera.com>
4096
4097 * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
4098 SIGTRAMP_FRAME unwinding.
4099
4100 2012-07-20 Doug Evans <dje@google.com>
4101
4102 * NEWS: Document new options "set/show use-deprecated-index-sections",
4103 and delete reference to --use-deprecated-index-sections.
4104 * symfile.h (use_deprecated_index_sections): Delete.
4105 * dwarf2read.c (use_deprecated_index_sections): Make static.
4106 (read_index_from_section): Update wording of how to load
4107 deprecated index sections.
4108 (_initialize_dwarf2_read): New options
4109 "set/show use-deprecated-index-sections".
4110 * main.c (captured_main): Delete --use-deprecated-index-sections.
4111
4112 2012-07-20 Pedro Alves <palves@redhat.com>
4113
4114 PR threads/11692
4115 PR gdb/12203
4116
4117 * infrun.c (handle_inferior_event) <new thread>: Don't special
4118 case minus_one_ptid.
4119 <TARGET_WAITKIND_SPURIOUS>: Ditto.
4120 * linux-thread-db.c (thread_get_info_callback): Don't return early
4121 if the thread is zombie.
4122 (thread_from_lwp): Change return type to void. Rewrite stale
4123 comment.
4124 (attach_thread): Don't return early if the thread is zombie,
4125 instead set its "dying" flag.
4126 (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
4127 (find_new_threads_callback): Don't return early if the thread is
4128 zombie.
4129
4130 2012-07-20 Pedro Alves <palves@redhat.com>
4131
4132 * linux-nat.c (linux_nat_wait): Dump the passed in target options.
4133 * target.c (target_wait): Likewise.
4134 (str_comma_list_concat_elem, do_option, target_options_to_string):
4135 New functions.
4136 * target.h (target_options_to_string): Declare.
4137
4138 2012-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
4139 Tom Tromey <tromey@redhat.com>
4140
4141 * dwarf2read.c (dwarf_decode_macros)
4142 <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
4143 DW_MACRO_GNU_transparent_include_alt>: New cases.
4144 (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
4145 DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
4146
4147 2012-07-20 Tom Tromey <tromey@redhat.com>
4148
4149 * dwarf2read.c (try_open_dwo_file): Don't call
4150 gdb_bfd_stash_filename.
4151
4152 2012-07-20 Pedro Alves <palves@redhat.com>
4153
4154 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
4155 (i386_record_lea_modrm, i386_record_push, i386_record_floats)
4156 (i386_process_record): Tweak description comments.
4157
4158 2012-07-20 Pedro Alves <palves@redhat.com>
4159
4160 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
4161 (i386_process_record): Use record_read_memory.
4162 * record.c (record_read_memory): New function.
4163 (record_arch_list_add_mem, record_exec_insn): Use
4164 record_read_memory.
4165 * record.h (record_read_memory): Declare.
4166
4167 2012-07-20 Yao Qi <yao@codesourcery.com>
4168
4169 * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
4170 NULL for xfree.
4171
4172 2012-07-19 Pedro Alves <palves@redhat.com>
4173
4174 * record.c (record_resume): Ask the target beneath to report all
4175 signals.
4176
4177 2012-07-19 Doug Evans <dje@google.com>
4178
4179 * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
4180 there's no section at address zero.
4181 (dwarf2_record_block_ranges): Ditto.
4182
4183 2012-07-19 Yao Qi <yao@codesourcery.com>
4184
4185 * command.h, remote.c: Fix a typo in comment.
4186
4187 2012-07-19 Tom Tromey <tromey@redhat.com>
4188
4189 PR exp/13206:
4190 * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
4191 * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
4192 OP_DECLTYPE>: New cases.
4193 * c-exp.y (TYPEOF, DECLTYPE): New tokens.
4194 (type_exp): Add new productions.
4195 (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
4196 and decltype.
4197 * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
4198 New case.
4199 * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
4200 OP_DECLTYPE>: New case.
4201 * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
4202 New case.
4203 * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
4204 * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
4205
4206 2012-07-19 Tom Tromey <tromey@redhat.com>
4207
4208 * c-exp.y (enum token_flags): New.
4209 (struct token) <cxx_only>: Remove.
4210 <flags>: New field.
4211 (tokentab3, tokentab2, ident_tokens): Update.
4212 (lex_one_token): Update. Handle FLAG_SHADOW.
4213
4214 2012-07-19 Tom Tromey <tromey@redhat.com>
4215
4216 * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
4217 * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
4218 UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
4219 * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE. Update
4220 for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST. Use
4221 type_exp production where appropriate.
4222 * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
4223 <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
4224 <UNOP_MEMVAL_TYPE>: New case.
4225 (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
4226 (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
4227 * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
4228 <UNOP_MEMVAL_TYPE>: New case.
4229 (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
4230 UNOP_REINTERPRET_CAST>: Update.
4231 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
4232 * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
4233 UNOP_REINTERPRET_CAST>: Update.
4234 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
4235 * stack.c (return_command): Also check for UNOP_CAST_TYPE.
4236 * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
4237 constants.
4238
4239 2012-07-19 Yao Qi <yao@codesourcery.com>
4240 Jan Kratochvil <jan.kratochvil@redhat.com>
4241
4242 * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
4243 and case 'var_optional_filename' together.
4244 * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
4245 instead of add_setshow_optional_filename_cmd for setshow command
4246 'args'. Set completer for 'set args'.
4247
4248 2012-07-18 Doug Evans <dje@google.com>
4249
4250 * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
4251 * common/gdb_vecs.c: New file, contents from utils.c.
4252 * common/host-defs.h: New file, contents from defs.h.
4253 * utils.h: New file, contents from defs.h.
4254 * defs.h: Move all declarations of objects defined in utils.c
4255 to utils.h (except QUIT() and related).
4256 #include "utils.h", "host-defs.h".
4257 * probe.h (probe_p): Move here from gdb_vecs.h.
4258 * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
4259 * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
4260 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
4261 * Makefile.in (SFILES): Add common/gdb_vecs.c.
4262 (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
4263 (COMMON_OBS): Add gdb_vecs.o.
4264 (gdb_vecs.o): New rule.
4265
4266 2012-07-18 Keith Seitz <keiths@redhat.com>
4267
4268 * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
4269 parameter. If non-zero, use SYMNAME as the canonical name
4270 for the SaL.
4271 Update all callers.
4272 (convert_linespec_to_sals): Use add_sal_to_sals for
4273 expressions, too.
4274 (decode_line_full): No need to "fill in missing canonical names"
4275 anymore. Simply make cleanups for the allocated names.
4276
4277 2012-07-18 Keith Seitz <keiths@redhat.com>
4278
4279 * linespec.c (struct linespec): Constify expression,
4280 source_filename, function_name, and label_name.
4281 (symbol_not_found_error): Make all parameters const.
4282 (linespec_parser_delete): No need to check for NULL
4283 when using xfree. Cast const char * to char * for xfree.
4284
4285 2012-07-18 Keith Seitz <keiths@redhat.com>
4286
4287 * breakpoint.c (invalid_thread_id_error): New function.
4288 (find_condition_and_thread): Use invalid_thread_id_error.
4289 (watch_command_1): Likewise.
4290
4291 2012-07-18 Tom Tromey <tromey@redhat.com>
4292
4293 * cc-with-index.sh, cc-with-dwz.sh: Remove.
4294 * contrib/cc-with-tweaks.sh: New file.
4295
4296 2012-07-18 Tom Tromey <tromey@redhat.com>
4297
4298 * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
4299 (locate_dwz_sections): Recognize .gdb_index.
4300 (create_cus_from_index_list): New function.
4301 (create_cus_from_index): Use it. Handle .dwz data.
4302 (read_index_from_section): New function, extracted from
4303 dwarf2_read_index.
4304 (dwarf2_read_index): Use it. Read .gdb_index from dwz file,
4305 if needed.
4306
4307 2012-07-18 Tom Tromey <tromey@redhat.com>
4308
4309 * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
4310 (struct dwarf2_per_cu_data) <length>: No longer bitfield.
4311 <is_dwz>: New field.
4312 (struct dwz_file): New.
4313 (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
4314 (locate_dwz_sections, dwarf2_get_dwz_file)
4315 (get_abbrev_section_for_cu): New functions.
4316 (error_check_comp_unit_head, read_and_check_comp_unit_head)
4317 (read_and_check_type_unit_head): Add abbrev_section argument.
4318 (create_debug_types_hash_table): Update.
4319 (init_cutu_and_read_dies): Use proper abbrev section.
4320 (init_cutu_and_read_dies_no_follow): Likewise.
4321 (set_partial_user): Do nothing if PST==NULL.
4322 (read_comp_units_from_section): New function.
4323 (create_all_comp_units): Use it.
4324 (scan_partial_symbols, partial_die_parent_scope): Update.
4325 (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4326 (process_imported_unit_die, read_partial_die): Handle .dwz files.
4327 (find_partial_die): Add offset_in_dwz argument. Update.
4328 (guess_partial_die_structure_name, fixup_partial_die): Update.
4329 (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
4330 DW_FORM_GNU_strp_alt.
4331 (read_indirect_string_from_dwz): New function.
4332 (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
4333 (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4334 (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
4335 (follow_die_offset): Add offset_in_dwz argument.
4336 (follow_die_ref, dwarf2_fetch_die_location_block): Update.
4337 (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
4338 (dwarf_decode_macro_bytes): Add section_is_dwz argument.
4339 Handle new macro forms.
4340 (dwarf_decode_macros): Update.
4341 (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
4342 (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
4343 (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
4344 (create_debug_types_hash_table): Use correct abbrev section.
4345 (get_debug_line_section): New function.
4346 (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
4347 (process_full_comp_unit): Pass 'required' argument to
4348 end_symtab_get_static_block.
4349 * buildsym.h (end_symtab_get_static_block): Update.
4350 * buildsym.c (end_symtab_get_static_block): Add 'required'
4351 argument.
4352 (end_symtab, end_expandable_symtab): Update.
4353
4354 2012-07-18 Tom Tromey <tromey@redhat.com>
4355
4356 * dwarf2read.c: Don't include zlib.h or sys/mman.h.
4357 (pagesize): Remove.
4358 (struct dwarf2_section_info) <map_addr, map_len>: Remove.
4359 (zlib_decompress_section): Remove.
4360 (dwarf2_read_section): Use gdb_bfd_map_section.
4361 (munmap_section_buffer): Remove.
4362 (free_dwo_file, dwarf2_per_objfile_free): Don't use
4363 munmap_section_buffer.
4364 * gdb_bfd.c: Include zlib.h, sys/mman.h.
4365 (struct gdb_bfd_section_data): New.
4366 (free_one_bfd_section): New function.
4367 (gdb_bfd_close_or_warn): Use free_one_bfd_section.
4368 (get_section_descriptor, zlib_decompress_section)
4369 (gdb_bfd_map_section): New functions.
4370 * gdb_bfd.h (gdb_bfd_map_section): Declare.
4371
4372 2012-07-18 Tom Tromey <tromey@redhat.com>
4373
4374 * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
4375
4376 2012-07-18 Tom Tromey <tromey@redhat.com>
4377
4378 * gdb_bfd.c (struct gdb_bfd_data): New.
4379 (gdb_bfd_cache): New global.
4380 (struct gdb_bfd_cache_search): New.
4381 (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
4382 (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
4383 * gdb_bfd.h (gdb_bfd_open): Declare.
4384
4385 2012-07-18 Tom Tromey <tromey@redhat.com>
4386
4387 * utils.c (make_cleanup_bfd_unref): Rename from
4388 make_cleanup_bfd_close.
4389 * defs.h (make_cleanup_bfd_unref): Rename from
4390 make_cleanup_bfd_close.
4391 * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
4392 (bfd_openw_with_cleanup): Update.
4393 * corelow.c (core_open): Update.
4394 * dsrec.c (load_srec): Update.
4395 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
4396 * remote-m32r-sdi.c (m32r_load): Update.
4397 * remote-mips.c (mips_load_srec): Update.
4398 (pmon_load_fast): Update.
4399 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4400 Update.
4401 (darwin_bfd_open): Update.
4402 * solib.c (solib_bfd_fopen): Update.
4403 * symfile-mem.c (symbol_file_add_from_memory): Update.
4404 * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
4405 (symfile_bfd_open): Update.
4406 (generic_load): Update.
4407
4408 2012-07-18 Tom Tromey <tromey@redhat.com>
4409
4410 * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
4411 (pmon_load_fast): Likewise.
4412 * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
4413 (m32r_upload_command): Likewise.
4414 * dsrec.c (load_srec): Use make_cleanup_bfd_close.
4415 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4416 Use make_cleanup_bfd_close.
4417
4418 2012-07-18 Tom Tromey <tromey@redhat.com>
4419
4420 * symfile.c (symfile_bfd_open): Don't copy name. Call
4421 gdb_bfd_stash_filename.
4422 (load_command): Open the new BFD before freeing the old.
4423 (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
4424 * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
4425 Call gdb_bfd_stash_filename.
4426 * spu-linux-nat.c (spu_bfd_open): Don't copy name.
4427 * solib-spu.c (spu_bfd_fopen): Don't copy name. Call
4428 gdb_bfd_stash_filename.
4429 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4430 Free found_pathname.
4431 * rs6000-nat.c (add_vmap): Don't copy filename. Call
4432 gdb_bfd_stash_filename.
4433 * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
4434 * machoread.c (macho_add_oso_symfile): Call
4435 gdb_bfd_stash_filename.
4436 (macho_symfile_read_all_oso): Arrange to free archive_name. Call
4437 gdb_bfd_stash_filename.
4438 (macho_check_dsym): Don't copy filename. Call
4439 gdb_bfd_stash_filename.
4440 * jit.c (bfd_open_from_target_memory): Don't copy the filename.
4441 * gdb_bfd.c (gdb_bfd_stash_filename): New function.
4442 * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
4443 * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
4444 * exec.c (exec_close): Don't free the BFD's filename.
4445 (exec_file_attach): Don't copy the filename. Call
4446 gdb_bfd_stash_filename.
4447 * corelow.c (core_close): Don't free the BFD's filename.
4448 (core_open): Call gdb_bfd_stash_filename.
4449 * corefile.c (reopen_exec_file): Remove #if 0 code.
4450 * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename. Free
4451 pathname.
4452 * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
4453
4454 2012-07-18 Tom Tromey <tromey@redhat.com>
4455
4456 * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
4457 gdb_bfd_unref.
4458 (free_dwo_file): Use gdb_bfd_unref.
4459 * cli/cli-dump.c: Include gdb_bfd.h.
4460 (bfd_openw_with_cleanup): Use gdb_bfd_ref.
4461 (bfd_openr_with_cleanup): Likewise.
4462 * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
4463 gdb_bfd_unref.
4464 * utils.c: Include gdb_bfd.h.
4465 (do_bfd_close_cleanup): Use gdb_bfd_unref.
4466 * symfile.c: Include gdb_bfd.h.
4467 (separate_debug_file_exists): Use gdb_bfd_unref.
4468 (bfd_open_maybe_remote): Use gdb_bfd_ref.
4469 (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4470 (generic_load): Use gdb_bfd_ref.
4471 (reread_symbols): Use gdb_bfd_unref.
4472 * symfile-mem.c: Include gdb_bfd.h.
4473 (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
4474 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4475 * solib.c: Include gdb_bfd.h.
4476 (solib_bfd_fopen): Use gdb_bfd_ref.
4477 (solib_bfd_open): Use gdb_bfd_unref.
4478 (free_so_symbols): Use gdb_bfd_unref.
4479 (reload_shared_libraries_1): Use gdb_bfd_unref.
4480 * solib-spu.c: Include gdb_bfd.h.
4481 (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
4482 * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
4483 gdb_bfd_unref.
4484 * solib-frv.c: Include gdb_bfd.h.
4485 (enable_break2): Use gdb_bfd_unref.
4486 * solib-dsbt.c: Include gdb_bfd.h.
4487 (enable_break2): Use gdb_bfd_unref.
4488 * solib-darwin.c: Include gdb_bfd.h.
4489 (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
4490 gdb_bfd_unref.
4491 (darwin_bfd_open): Use gdb_bfd_unref.
4492 * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
4493 * remote-mips.c: Include gdb_bfd.h.
4494 (mips_load_srec): Use gdb_bfd_ref.
4495 (pmon_load_fast): Use gdb_bfd_ref.
4496 * remote-m32r-sdi.c: Include gdb_bfd.h.
4497 (m32r_load): Use gdb_bfd_ref.
4498 * record.c: Include gdb_bfd.h.
4499 (record_save_cleanups): Use gdb_bfd_unref.
4500 (cmd_record_save): Use gdb_bfd_unref.
4501 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
4502 gdb_bfd_unref.
4503 * objfiles.h (gdb_bfd_close_or_warn): Remove.
4504 (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
4505 * objfiles.c: Include gdb_bfd.h.
4506 (free_objfile): Use gdb_bfd_unref.
4507 (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
4508 gdb_bfd.c.
4509 * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
4510 (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
4511 (macho_check_dsym): Likewise.
4512 * m32r-rom.c: Include gdb_bfd.h.
4513 (m32r_load): Use gdb_bfd_ref.
4514 (m32r_upload_command): Use gdb_bfd_ref.
4515 * jit.c: Include gdb_bfd.h.
4516 (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
4517 * gdb_bfd.h: New file.
4518 * gdb_bfd.c: New file.
4519 * gcore.c: Include gdb_bfd.h.
4520 (create_gcore_bfd): Use gdb_bfd_ref.
4521 (do_bfd_delete_cleanup): Use gdb_bfd_unref.
4522 (gcore_command): Use gdb_bfd_unref.
4523 * exec.c: Include gdb_bfd.h.
4524 (exec_close): Use gdb_bfd_unref.
4525 (exec_close_1): Use gdb_bfd_unref.
4526 (exec_file_attach): Use gdb_bfd_ref.
4527 * elfread.c: Include gdb_bfd.h.
4528 (build_id_verify): Use gdb_bfd_unref.
4529 * dsrec.c: Include gdb_bfd.h.
4530 (load_srec): Use gdb_bfd_ref.
4531 * corelow.c: Include gdb_bfd.h.
4532 (core_close): Use gdb_bfd_unref.
4533 (core_open): Use gdb_bfd_ref.
4534 * bfd-target.c: Include gdb_bfd.h.
4535 (target_bfd_xclose): Use gdb_bfd_unref.
4536 (target_bfd_reopen): Use gdb_bfd_ref.
4537 * Makefile.in (SFILES): Add gdb_bfd.c.
4538 (HFILES_NO_SRCDIR): Add gdb_bfd.h.
4539 (COMMON_OBS): Add gdb_bfd.o.
4540
4541 2012-07-18 Keith Seitz <keiths@redhat.com>
4542
4543 * breakpoint.c (find_condition_and_thread): Initialize
4544 TASK and REST.
4545 (create_breakpiont): find_condition_and_thread will now
4546 initialize COND_STRING, THREAD, and REST (and TASK).
4547 (addr_string_to_sals): Likewise.
4548
4549 2012-07-18 Pedro Alves <palves@redhat.com>
4550
4551 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
4552 Pull the single step breakpoints out of the target.
4553
4554 2012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
4555
4556 * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
4557 * stap-probe.c (compile_probe_arg): Likewise.
4558
4559 2012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
4560
4561 * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
4562 (elf_compile_to_ax): Likewise.
4563 * infrun.c (insert_exception_resume_from_probe): Likewise.
4564 (check_exception_resume): Remove `objfile' variable.
4565 * probe.c (find_probe_by_pc): Remove `objfile' argument.
4566 (struct probe_and_objfile, probe_and_objfile_s): Delete.
4567 (collect_probes): Adjust return value to `VEC (probe_p) *'.
4568 (compare_entries): Rename to...
4569 (compare_probes): ...this. Adjust function to work with
4570 `struct probe *'. Rename variables `ea' and `eb' to `pa' and `pb'
4571 respectively.
4572 (gen_ui_out_table_header_info): Adjust `probes' argument to be
4573 `VEC (probe_p) *'.
4574 (print_ui_out_info): Adjust argument to be `struct probe *'.
4575 (info_probes_for_ops): Adjust internal computations to use
4576 `VEC (probe_p) *'.
4577 (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
4578 * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
4579 gen_info_probes_table_values>: Remove `objfile' argument.
4580 (struct probe) <objfile>: New field.
4581 (find_probe_by_pc): Remove `objfile' argument.
4582 * stap-probe.c (stap_parse_probe_arguments): Likewise.
4583 (stap_get_probe_argument_count): Likewise.
4584 (stap_get_arg): Likewise.
4585 (stap_evaluate_probe_argument): Likewise.
4586 (stap_compile_to_ax): Likewise.
4587 (compile_probe_arg): Refactor not to pass `objfile' anymore.
4588 (handle_stap_probe): Fill `objfile' field from `struct probe'.
4589 (stap_gen_info_probes_table_header): Remove `objfile' argument.
4590 * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
4591 sym_compile_to_ax>: Likewise.
4592
4593 2012-07-18 Terry Guo <terry.guo@arm.com>
4594
4595 PR 14329
4596 * defs.h (GDB_MI_MSG_WIDTH): New.
4597 * ser_base (ser_base_read_error_fd): New function.
4598 (do_ser_base_readchar): Poll error file descriptor as well as
4599 standard output.
4600 (generic_readchar): Refactor error handling.
4601
4602 2012-07-18 Joel Brobecker <brobecker@adacore.com>
4603
4604 * NEWS: Create a new section for the next release branch.
4605 Rename the section of the current branch, now that it has
4606 been cut.
4607
4608 2012-07-18 Joel Brobecker <brobecker@adacore.com>
4609
4610 GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
4611 * version.in: Bump version to 7.5.50.20120718-cvs.
4612
4613 2012-07-17 Keith Seitz <keiths@redhat.com>
4614
4615 * linespec.c (linespec_parse_line_offset): Make parameter
4616 const.
4617
4618 2012-07-16 Jan Kratochvil <jan.kratochvil@redhat.com>
4619
4620 PR 11914
4621 * f-valprint.c (info_common_command): New variable frame_id.
4622 Reinitialize FI form FRAME_ID after each print_variable_and_value.
4623 * printcmd.c (print_variable_and_value): Extend function comment.
4624 Add comment for invalidated FRAME.
4625 * stack.c (backtrace_command_1): New variable frame_id. Reinitialize
4626 FI form FRAME_ID after each print_frame_local_vars.
4627 (struct print_variable_and_value_data): Change frame to frame_id.
4628 (do_print_variable_and_value): New variable frame, initialize it from
4629 p->frame_id. Add comment for invalidated FRAME.
4630 (print_frame_local_vars, print_frame_arg_vars): New function comment.
4631 Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization. Add comment
4632 for invalidated FRAME.
4633
4634 2012-07-16 Marc Khouzam <marc.khouzam@ericsson.com>
4635 Pedro Alves <palves@redhat.com>
4636
4637 * linux-nat.c (linux_nat_detach): Don't unregister from the event
4638 loop.
4639
4640 2012-07-16 Tom Tromey <tromey@redhat.com>
4641
4642 * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
4643
4644 2012-07-15 Doug Evans <dje@google.com>
4645
4646 * dwarf2read.c (stmt_list_hash): New struct.
4647 (type_unit_group): Embed "per_cu" member, remove pointer.
4648 New union member "t", move member "tus" into it, all uses updated.
4649 New member "hash", replaces member "line_offset, all uses updated.
4650 (quick_file_names): Replace member "offset" with "hash", all uses
4651 updated.
4652 (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
4653 (hash_file_name_entry, eq_file_name_entry): Call them.
4654 (hash_type_unit_group, eq_type_unit_group): Ditto.
4655 (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
4656 (dw2_get_file_names_reader): Fix file name table calculation for TUs.
4657 (dw2_get_file_names): Update.
4658 (create_type_unit_group): Replace "per_cu" arg with "cu".
4659 All callers updated. Fix "quick" (.gdb_index) handling.
4660 (get_type_unit_group): Replace "per_cu" arg with "cu".
4661 All callers updated.
4662 (build_type_unit_groups): Don't reset tu_stats.
4663
4664 * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
4665 "tab_cur_size". Change member "tab" to be a htab_t.
4666 (create_filename_seen_cache): Update.
4667 (clear_filename_seen_cache, delete_filename_seen_cache): Update.
4668 (filename_seen): Update.
4669
4670 2012-07-13 Doug Evans <dje@google.com>
4671
4672 * symtab.c (filename_seen): Update comment.
4673
4674 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4675 Doug Evans <dje@google.com>
4676
4677 * buildsym.c (end_symtab_1): Split it to ...
4678 (end_symtab_get_static_block): ... this ...
4679 (end_symtab_from_static_block): ... and this function.
4680 (end_symtab, end_expandable_symtab): Call them.
4681 * buildsym.h (end_symtab_get_static_block)
4682 (end_symtab_from_static_block): New declarations.
4683 * dwarf2read.c (process_full_comp_unit): New variable static_block.
4684 Set its valid CU ranges.
4685
4686 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4687
4688 * dwarf2loc.c (disassemble_dwarf_expression): Handle
4689 DW_OP_GNU_parameter_ref.
4690
4691 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4692
4693 * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
4694 read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
4695
4696 2012-07-13 Doug Evans <dje@google.com>
4697
4698 * symtab.c (output_source_filename): Delete unnecessary forward decl.
4699 (filename_seen_cache): New struct.
4700 (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
4701 (create_filename_seen_cache): New function.
4702 (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
4703 (filename_seen): Delete arg "first". New arg "cache". All callers
4704 updated.
4705 (output_source_filename_data): New struct.
4706 (output_source_filename): Delete arg "first". New arg "data".
4707 All callers updated.
4708 (sources_info): Delete local "first". New locals "data", "cleanups".
4709 Rewrite to use filename_seen_cache.
4710 (add_partial_filename_data): Delete member "first". New member
4711 "filename_seen_cache". All uses updated.
4712 (make_source_files_completion_list): Rewrite to use
4713 filename_seen_cache.
4714
4715 2012-07-12 Doug Evans <dje@google.com>
4716
4717 * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
4718
4719 2012-07-10 Doug Evans <dje@google.com>
4720
4721 PR gdb/13498
4722 * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
4723 all_type_unit_groups, type_unit_groups, tu_stats.
4724 (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
4725 All uses updated. Add type_unit_group to union "s".
4726 (type_unit_group): New struct.
4727 (IS_TYPE_UNIT_GROUP): New macro.
4728 (abbrev_table): Delete unused member "section".
4729 (dw2_do_instantiate_symtab): Early exit if type_unit_group.
4730 (dw2_get_cu): Assert not used with type_unit_group.
4731 (dw2_get_primary_cu): New function.
4732 (dw2_build_type_unit_groups_reader): New function.
4733 (dw2_build_type_unit_groups): New function.
4734 (dw2_get_file_names): Assert not called on type units.
4735 (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
4736 Redo loop to iterate over type unit groups instead of type units.
4737 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
4738 (read_abbrev_offset): New function.
4739 (init_cutu_and_read_dies): New arg "abbrev_table". All callers
4740 updated.
4741 (create_partial_symtab): New function.
4742 (process_psymtab_comp_unit_reader): Assert not used with type units.
4743 Call create_partial_symtab.
4744 (process_psymtab_type_unit): Delete.
4745 (hash_type_unit_group, eq_type_unit_group): New functions.
4746 (allocate_type_unit_groups_table): New function.
4747 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
4748 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
4749 (create_type_unit_group, get_type_unit_group): New functions.
4750 (tu_abbrev_offset): New struct.
4751 (sort_tu_by_abbrev_offset): New function.
4752 (add_type_unit_group_to_table): New function.
4753 (build_type_unit_groups): New function.
4754 (build_type_psymtabs_reader): New function.
4755 (build_type_psymtab_dependencies): New function.
4756 (build_type_psymtabs): Rewrite.
4757 (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
4758 is seen in a type unit.
4759 (process_queue): Move symtab expansion debugging printfs here.
4760 Call process_full_type_unit for type units.
4761 (compute_symtab_includes): Assert not called for type units.
4762 (process_cu_includes): Don't call compute_symtab_includes for
4763 type units.
4764 (process_full_type_unit): New function.
4765 (process_imported_unit_die): Flag an error if called for type units.
4766 (handle_DW_AT_stmt_list): Delete arg "want_line_info". All callers
4767 updated. Assert not called for type units.
4768 (read_file_scope): Call dwarf2_start_symtab.
4769 (setup_type_unit_groups): New function.
4770 (read_type_unit_scope): Rewrite.
4771 (abbrev_table_read_table): Initialize abbrev_table->offset.
4772 (abbrev_table_free_cleanup): New function.
4773 (dwarf2_start_symtab): New function.
4774 (load_full_type_unit): Assert not called for type unit groups.
4775 * buildsym.c (finish_block_internal): New arg "expandable".
4776 All callers updated.
4777 (start_symtab): Move most contents to ...
4778 (restart_symtab): ... here. New function.
4779 (reset_symtab_globals): New function.
4780 (end_symtab_1): Renamed from end_symtab. New arg "expandable".
4781 Call reset_symtab_globals.
4782 (end_symtab, end_expandable_symtab): New functions.
4783 (set_missing_symtab, augment_type_symtab): New functions.
4784 * buildsym.h (end_expandable_symtab): Declare.
4785 (augment_type_symtab, restart_symtab): Declare.
4786 * psympriv.h (struct partial_symtab): New member "anonymous".
4787 * psymtab.c (partial_map_symtabs_matching_filename): Ignore
4788 anonymous psymtabs.
4789 (read_psymtabs_with_filename): Ditto.
4790 (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
4791 (expand_symtabs_matching_via_partial): Ditto.
4792 (dump_psymtab): Update.
4793 * dictionary.c (dict_add_pending): New function.
4794 * dictionary.h (dict_add_pending): Declare.
4795
4796 2012-07-09 Doug Evans <dje@google.com>
4797
4798 * buildsym.c (start_subfile): Remove unnecessary check for
4799 name == NULL.
4800
4801 * psymtab.c (allocate_psymtab): Use host_address_to_string.
4802
4803 * dwarf2read.c (load_full_type_unit): Simplify.
4804
4805 * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
4806 to struct signatured_type **. All uses updated.
4807
4808 * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
4809 All callers updated.
4810
4811 2012-07-09 Tom Tromey <tromey@redhat.com>
4812
4813 * c-exp.y (check_parameter_typelist): New function.
4814 (parameter_typelist): Call it.
4815 * eval.c (make_params): Handle '(void)' case.
4816 * gdbtypes.c (lookup_function_type_with_arguments): Handle
4817 '(void)' case.
4818
4819 2012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4820
4821 * common/linux-ptrace.c: Include gdb_assert.h.
4822 <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
4823 <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
4824 stdint.h.
4825 (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
4826 functions.
4827 * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
4828 * linux-nat.c (linux_child_post_attach)
4829 (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
4830
4831 2012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4832
4833 * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
4834 nptl <2.7 bug workaround for core files.
4835
4836 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4837
4838 * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
4839 clearing.
4840 (save_siginfo): Remove.
4841 (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
4842 call.
4843 (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
4844 (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
4845 * linux-nat.h (struct lwp_info): Remove field siginfo.
4846
4847 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4848
4849 Code cleanup for the next patch.
4850 * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
4851 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4852 call for it.
4853 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
4854 (ia64_linux_stopped_data_address):
4855 * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
4856 the return value.
4857 * linux-nat.h (linux_nat_get_siginfo): Likewise.
4858 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
4859 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4860 call for it.
4861
4862 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4863
4864 PR 14321
4865 * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
4866 Increase buffer sizes to 2x we need, not just 2x of the previous size.
4867
4868 2012-07-06 Tom Tromey <tromey@redhat.com>
4869
4870 * c-exp.y (DOTDOTDOT): New token.
4871 (func_mod, exp): Use parameter_typelist.
4872 (parameter_typelist): New production.
4873 (tokentab3): Add "..." token.
4874 * eval.c (make_params): Handle varargs.
4875 * gdbtypes.c (lookup_function_type_with_arguments): Handle
4876 varargs.
4877
4878 2012-07-06 Tom Tromey <tromey@redhat.com>
4879
4880 PR exp/9608:
4881 * c-exp.y (%union) <tvec>: Change type.
4882 (func_mod): Now uses <tvec> type.
4883 (exp): Update for tvec change.
4884 (direct_abs_decl): Push the typelist.
4885 (func_mod): Return a typelist.
4886 (nonempty_typelist): Update for tvec change.
4887 * gdbtypes.c (lookup_function_type_with_arguments): New function.
4888 * gdbtypes.h (lookup_function_type_with_arguments): Declare.
4889 * parse.c (pop_type_list): New function.
4890 (push_typelist): New function.
4891 (follow_types): Handle tp_function_with_arguments.
4892 * parser-defs.h (type_ptr): New typedef. Define a VEC.
4893 (enum type_pieces) <tp_function_with_arguments>: New constant.
4894 (union type_stack_elt) <typelist_val>: New field.
4895 (push_typelist): Declare.
4896
4897 2012-07-06 Tom Tromey <tromey@redhat.com>
4898
4899 * c-exp.y (%union) <type_stack>: New field.
4900 (abs_decl, direct_abs_decl): Use <type_stack> type. Update.
4901 (ptr_operator_ts): New production.
4902 (ptype): Update.
4903 * parse.c (type_stack_reserve): New function.
4904 (check_type_stack_depth): Use it.
4905 (pop_type_stack, append_type_stack, push_type_stack)
4906 (get_type_stack, type_stack_cleanup): New functions.
4907 (follow_types): Handle tp_type_stack.
4908 (_initialize_parse): Simplify initialization.
4909 * parser-defs.h (enum type_pieces) <tp_type_stack>: New
4910 constant.
4911 (union type_stack_elt) <stack_val>: New field.
4912 (get_type_stack, append_type_stack, push_type_stack)
4913 (type_stack_cleanup): Declare.
4914
4915 2012-07-06 Tom Tromey <tromey@redhat.com>
4916
4917 * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
4918 Remove.
4919 (struct type_stack): New.
4920 * parse.c (type_stack, type_stack_size, type_stack_depth):
4921 Remove.
4922 (type_stack): New global.
4923 (parse_exp_in_context, check_type_stack_depth)
4924 (insert_into_type_stack, insert_type, push_type, push_type_int)
4925 (insert_type_address_space, pop_type, pop_type_int)
4926 (_initialize_parse): Update.
4927
4928 2012-07-06 Tom Tromey <tromey@redhat.com>
4929
4930 * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
4931 Remove %type.
4932
4933 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
4934
4935 * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
4936
4937 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
4938 Jan Kratochvil <jan.kratochvil@redhat.com>
4939
4940 * cp-valprint.c (cp_print_value): Replace potentially unsafe
4941 alloca with xmalloc/xfree.
4942
4943 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
4944
4945 * MAINTAINERS (Write After Approval): Add myself to the list.
4946
4947 2012-07-05 Doug Evans <dje@google.com>
4948
4949 * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
4950
4951 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
4952
4953 * ax-gdb.c (cli/cli-utils.h): New include.
4954 (linespec.h): Ditto.
4955 (agent_eval_command_one): New function.
4956 (agent_command_1): Ditto.
4957 (agent_command): Call function agent_command_1.
4958 (agent_eval_command): Ditto.
4959 (_initialize_ax_gdb): Change help for "maint agent"
4960 and "maint agent-eval".
4961
4962 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
4963
4964 * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
4965 * cli/cli-utils.c (check_for_argument): New function.
4966 * cli/cli-utils.h (check_for_argument): Ditto.
4967
4968 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
4969
4970 * NEWS: Mention x32 ABI support.
4971
4972 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
4973
4974 * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
4975 AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
4976
4977 * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
4978 and pc_regnum_from_eax to -1. Update SP regnum from
4979 sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
4980 needed.
4981
4982 * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
4983 pc_regnum_from_eax.
4984
4985 2012-07-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4986
4987 Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
4988 * dwarf2expr.h: Include gdbtypes.h.
4989 (enum call_site_parameter_kind, union call_site_parameter_u): Remove
4990 these forward declarations.
4991 (cu_offset, sect_offset): Move these ...
4992 * gdbtypes.h: Remove include dwarf2expr.h.
4993 (cu_offset, sect_offset): ... here.
4994
4995 2012-07-03 H.J. Lu <hongjiu.lu@intel.com>
4996
4997 * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
4998 (amd64_linux_sigtramp_code): This.
4999 (amd64_x32_linux_sigtramp_code): New.
5000 (LINUX_SIGTRAMP_LEN): Updated.
5001 (amd64_linux_sigtramp_start): Check x32 sigtramp.
5002
5003 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5004
5005 * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
5006
5007 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5008
5009 * config.in: Regenerate.
5010 * configure: Regenerate.
5011 * configure.ac: Remove check for gnu/libc-version.h.
5012 * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
5013 gnu/libc-version.h.
5014 (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
5015 variables libc_version, libc_major and libc_minor. Replace sscanf by
5016 inferior_has_bug. Extend the comment.
5017
5018 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5019
5020 * linux-thread-db.c (inferior_has_bug): New function.
5021 (thread_db_find_new_threads_silently): Return boolean as checked by
5022 inferior_has_bug, describe it in the comments.
5023 (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
5024 earlier. Abort the initialization if it returned non-zero.
5025 (thread_db_new_objfile): Exclude debug files.
5026 (thread_db_find_new_threads_2): Preinitialize ERR. Check errors also
5027 if UNTIL_NO_NEW,
5028
5029 2012-07-02 Doug Evans <dje@google.com>
5030
5031 * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
5032 related to queue management.
5033
5034 * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
5035 instead of "debug dwarf2-die" in debugging printfs.
5036 (create_debug_info_hash_table_reader): Ditto.
5037 (create_debug_info_hash_table): Ditto.
5038 (init_dwo_file): Ditto.
5039 (init_cutu_and_read_dies): Add debugging printf.
5040 (init_cutu_and_read_dies_no_follow): Ditto.
5041 (process_psymtab_comp_unit_reader): Ditto.
5042
5043 2012-07-02 Stan Shebs <stan@codesourcery.com>
5044
5045 Add target-side support for dynamic printf.
5046 * NEWS: Mention the additional style.
5047 * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
5048 (struct bp_location): New field cmd_bytecode.
5049 * breakpoint.c: Include format.h.
5050 (disconnected_dprintf): New global.
5051 (parse_cmd_to_aexpr): New function.
5052 (build_target_command_list): New function.
5053 (insert_bp_location): Call it.
5054 (remove_breakpoints_pid): Skip dprintf breakpoints.
5055 (print_one_breakpoint_location): Ditto.
5056 (dprintf_style_agent): New global.
5057 (dprintf_style_enums): Add dprintf_style_agent.
5058 (update_dprintf_command_list): Add agent case.
5059 (agent_printf_command): New function.
5060 (_initialize_breakpoint): Add new commands.
5061 * common/ax.def (printf): New bytecode.
5062 * ax.h (ax_string): Declare.
5063 * ax-gdb.h (gen_printf): Declare.
5064 * ax-gdb.c: Include cli-utils.h, format.h.
5065 (gen_printf): New function.
5066 (maint_agent_print_command): New function.
5067 (_initialize_ax_gdb): Add maint agent-printf command.
5068 * ax-general.c (ax_string): New function.
5069 (ax_print): Add printf disassembly.
5070 * Makefile.in (SFILES): Add format.c
5071 (COMMON_OBS): Add format.o.
5072 * common/format.h: New file.
5073 * common/format.c: New file.
5074 * printcmd.c: Include format.h.
5075 (ui_printf): Call parse_format_string.
5076 * remote.c (remote_state): New field breakpoint_commands.
5077 (PACKET_BreakpointCommands): New enum.
5078 (remote_breakpoint_commands_feature): New function.
5079 (remote_protocol_features): Add new BreakpointCommands entry.
5080 (remote_can_run_breakpoint_commands): New function.
5081 (remote_add_target_side_commands): New function.
5082 (remote_insert_breakpoint): Call it.
5083 (remote_insert_hw_breakpoint): Ditto.
5084 (_initialize_remote): Add new packet configuration for
5085 target-side breakpoint commands.
5086 * target.h (struct target_ops): New field
5087 to_can_run_breakpoint_commands.
5088 (target_can_run_breakpoint_commands): New macro.
5089 * target.c (update_current_target): Handle
5090 to_can_run_breakpoint_commands.
5091
5092 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5093
5094 Execute -ix and -iex only after system and user gdbinit files.
5095 * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
5096 processing down after gdbinit files.
5097
5098 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5099
5100 Add fnmatch-gnu module.
5101 * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
5102 * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
5103 * gnulib/aclocal.m4: Regenerate.
5104 * gnulib/config.in: Regenerate.
5105 * gnulib/configure: Regenerate.
5106 * gnulib/import/dummy.c: Remove.
5107 * gnulib/import/Makefile.am: Regenerate.
5108 * gnulib/import/Makefile.in: Likewise.
5109 * gnulib/import/m4/gnulib-cache.m4: Likewise.
5110 * gnulib/import/m4/gnulib-comp.m4: Likewise.
5111 * gnulib/import/alloca.c: New file.
5112 * gnulib/import/alloca.in.h: Likewise.
5113 * gnulib/import/config.charset: Likewise.
5114 * gnulib/import/fnmatch.c: Likewise.
5115 * gnulib/import/fnmatch.in.h: Likewise.
5116 * gnulib/import/fnmatch_loop.c: Likewise.
5117 * gnulib/import/localcharset.c: Likewise.
5118 * gnulib/import/localcharset.h: Likewise.
5119 * gnulib/import/m4/alloca.m4: Likewise.
5120 * gnulib/import/m4/codeset.m4: Likewise.
5121 * gnulib/import/m4/configmake.m4: Likewise.
5122 * gnulib/import/m4/fcntl-o.m4: Likewise.
5123 * gnulib/import/m4/fnmatch.m4: Likewise.
5124 * gnulib/import/m4/glibc21.m4: Likewise.
5125 * gnulib/import/m4/localcharset.m4: Likewise.
5126 * gnulib/import/m4/locale-fr.m4: Likewise.
5127 * gnulib/import/m4/locale-ja.m4: Likewise.
5128 * gnulib/import/m4/locale-zh.m4: Likewise.
5129 * gnulib/import/m4/mbrtowc.m4: Likewise.
5130 * gnulib/import/m4/mbsinit.m4: Likewise.
5131 * gnulib/import/m4/mbsrtowcs.m4: Likewise.
5132 * gnulib/import/m4/mbstate_t.m4: Likewise.
5133 * gnulib/import/m4/stdbool.m4: Likewise.
5134 * gnulib/import/m4/wchar_h.m4: Likewise.
5135 * gnulib/import/m4/wctype_h.m4: Likewise.
5136 * gnulib/import/m4/wint_t.m4: Likewise.
5137 * gnulib/import/mbrtowc.c: Likewise.
5138 * gnulib/import/mbsinit.c: Likewise.
5139 * gnulib/import/mbsrtowcs-impl.h: Likewise.
5140 * gnulib/import/mbsrtowcs-state.c: Likewise.
5141 * gnulib/import/mbsrtowcs.c: Likewise.
5142 * gnulib/import/ref-add.sin: Likewise.
5143 * gnulib/import/ref-del.sin: Likewise.
5144 * gnulib/import/stdbool.in.h: Likewise.
5145 * gnulib/import/streq.h: Likewise.
5146 * gnulib/import/strnlen1.c: Likewise.
5147 * gnulib/import/strnlen1.h: Likewise.
5148 * gnulib/import/verify.h: Likewise.
5149 * gnulib/import/wchar.in.h: Likewise.
5150 * gnulib/import/wctype.in.h: Likewise.
5151
5152 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5153
5154 Support shell wildcards for 'set auto-load safe-path'.
5155 * auto-load.c: Include fnmatch.h.
5156 (filename_is_in_dir): Rename to ...
5157 (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
5158 it. Update function comment. Rename dir_len to pattern_len. New
5159 variables filename_len, pattern and filename. Add more DEBUG_AUTO_LOAD
5160 messages. Use gdb_filename_fnmatch.
5161 (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
5162 pattern.
5163 (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
5164 * defs.h (gdb_filename_fnmatch): New declaration.
5165 * utils.c: Include fnmatch.h.
5166 (gdb_filename_fnmatch): New function.
5167
5168 2012-07-02 Sergio Durigan Junior <sergiodj@redhat.com>
5169
5170 * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
5171 `-probe' and `-probe-stap' options.
5172
5173 2012-07-01 Yao Qi <yao@codesourcery.com>
5174
5175 * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
5176 always_inserted_off, and always_inserted_enums.
5177 Change always_inserted_mode's type to 'enum auto_boolean'.
5178 (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
5179 callers.
5180 (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
5181 of add_setshow_enum_cmd.
5182 * infrun.c: Remove can_use_displaced_stepping_auto,
5183 can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
5184 can_use_displaced_stepping_enum.
5185 Change can_use_displaced_stepping's type to 'enum auto_boolean'.
5186 (show_can_use_displaced_stepping, use_displaced_stepping): Update
5187 callers.
5188 (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
5189 add_setshow_enum_cmd.
5190
5191 2012-06-30 Doug Evans <dje@google.com>
5192
5193 * dwarf2read.c (signatured_type): Make "per_cu" member first.
5194 (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
5195 currently being read. Propagate DW_AT_comp_dir to DWO DIE.
5196
5197 2012-06-29 Doug Evans <dje@google.com>
5198
5199 * linespec.c: #include "stack.h".
5200 (decode_line_with_current_source): Moved here from symtab.c and
5201 renamed from decode_line_spec. All callers updated.
5202 (decode_line_with_last_displayed): Moved here from breakpoint.c and
5203 renamed from decode_line_spec_1. All callers updated.
5204 * linespec.h (decode_line_with_current_source): Move declaration here
5205 from symtab.h and renamed from decode_line_spec.
5206 (decode_line_with_last_displayed): Move declaration here from symtab.h
5207 and renamed from decode_line_spec_1.
5208 * macrocmd.c: #include "linespec.h".
5209 * symtab.c: Remove #include "linespec.h".
5210
5211 2012-06-28 Doug Evans <dje@google.com>
5212
5213 * dwarf2read.c (get_cu_length): New function.
5214 (offset_in_cu_p, error_check_comp_unit_head): Call it.
5215 (create_debug_types_hash_table): Ditto.
5216 (init_cutu_and_read_dies): Ditto.
5217 (init_cutu_and_read_dies_no_follow): Ditto.
5218
5219 * dwarf2read.c (dwarf2_find_base_address): Move definition.
5220
5221 * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
5222 (struct abbrev_table): Define.
5223 (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
5224 abbrev_table.
5225 (init_cutu_and_read_dies): Update.
5226 (abbrev_table_alloc_abbrev): New function. Replaces
5227 dwarf_alloc_abbrev. All callers updated.
5228 (abbrev_table_add_abbrev): New function.
5229 (abbrev_table_lookup_abbrev): New function. Replaces
5230 dwarf2_lookup_abbrev. All callers updated.
5231 (abbrev_table_read_table): New function. Contents moved here from
5232 dwarf2_read_abbrevs.
5233 (dwarf2_read_abbrevs): Call it.
5234 (abbrev_table_free): New function.
5235 (dwarf2_free_abbrev_table): Call it.
5236
5237 2012-06-28 Stan Shebs <stan@codesourcery.com>
5238
5239 * osdata.c (info_osdata_command): Filter out "Title" columns
5240 from non-MI uses.
5241 * common/linux-osdata.c (struct osdata_type): Add title field.
5242 (osdata_table): Add titles to each entry.
5243 (linux_command_xfer_osdata): Add a column for title data.
5244
5245 2012-06-28 Stan Shebs <stan@codesourcery.com>
5246
5247 Make logging work for MI.
5248 * NEWS: Mention it.
5249 * interps.h (interp_set_logging_ftype): New typedef.
5250 (struct interp_procs): New field set_logging_proc.
5251 (current_interp_set_logging): Declare.
5252 * interps.c (current_interp_set_logging): New function.
5253 * cli/cli-logging.c: Include interps.h.
5254 (set_logging_redirect): Call current_interp_set_logging.
5255 (pop_output_files): Ditto.
5256 (handle_redirections): Ditto, plus skip ui-out redirect if MI.
5257 * mi/mi-console.h (mi_console_set_raw): Declare.
5258 * mi/mi-console.c (mi_console_set_raw): New function.
5259 * mi/mi-interp.c (saved_raw_stdout): New global.
5260 (mi_set_logging): New function.
5261 (_initialize_mi_interp): Add it to interp procs.
5262
5263 2012-06-28 Doug Evans <dje@google.com>
5264
5265 * symtab.c (lookup_symbol_aux_objfile): Use
5266 ALL_OBJFILE_PRIMARY_SYMTABS.
5267
5268 * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
5269
5270 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5271
5272 * common/buffer.c: Include inttypes.h and stdint.h.
5273 (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
5274
5275 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5276 Pedro Alves <palves@redhat.com>
5277
5278 * gdbthread.h (ALL_THREADS): New macro.
5279 (thread_list): Declare.
5280 * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
5281 going, but instead fall through to the stepping handling.
5282 * linux-nat.c (resume_lwp): New parameter 'signo'. Resume with
5283 the passed in signal. Adjust debug output.
5284 (resume_callback): Rename to ...
5285 (linux_nat_resume_callback): ... this. Pass the thread's last
5286 stop signal, if in "pass" state.
5287 (linux_nat_resume): Adjust to rename.
5288 (stop_wait_callback): New assertion. Don't respawn signals;
5289 instead let the LWP remain with SIGNALLED set.
5290 (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
5291 * remote.c (append_pending_thread_resumptions): New.
5292 (remote_vcont_resume): Call it.
5293 * target.h (target_resume): Extend comment.
5294
5295 2012-06-28 Iain Sandoe <iain@codesourcery.com>
5296
5297 * auxv.c (fprint_target_auxv): Handle extended cache data tags.
5298
5299 2012-06-27 Doug Evans <dje@google.com>
5300
5301 * dwarf2read.c (dwarf2_cu): Add ranges_base.
5302 Delete have_addr_base, unused. All uses updated.
5303 (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
5304 (dwarf2_get_pc_bounds): Add ranges_base.
5305 (dwarf2_record_block_ranges): Ditto.
5306
5307 2012-06-27 Tom Tromey <tromey@redhat.com>
5308
5309 PR macros/7961:
5310 * varobj.c (varobj_create): Update.
5311 (varobj_set_value): Update.
5312 * tracepoint.c (validate_actionline): Update.
5313 (encode_actions_1): Update.
5314 * parse.c (parse_exp_1): Add 'pc' argument.
5315 (parse_exp_in_context): Add 'pc' argument. Change how
5316 expression_context_pc is set.
5317 (parse_expression): Update.
5318 (parse_field_expression): Update.
5319 * expression.h (parse_exp_1): Update.
5320 * eval.c (parse_to_comma_and_eval): Update.
5321 * breakpoint.c (set_breakpoint_condition): Update.
5322 (update_watchpoint): Update.
5323 (init_breakpoint_sal): Update
5324 (find_condition_and_thread): Update.
5325 (watch_command_1): Update.
5326 (update_breakpoint_locations): Update.
5327 * ada-lang.c (ada_read_renaming_var_value): Update.
5328 (create_excep_cond_exprs): Update.
5329
5330 2012-06-27 Doug Evans <dje@google.com>
5331
5332 * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
5333 type units.
5334
5335 2012-06-26 Doug Evans <dje@google.com>
5336
5337 * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
5338 prototype.
5339 (error_check_comp_unit_head): New arg abbrev_section. All callers
5340 updated.
5341 (read_and_check_comp_unit_head): Ditto.
5342 (read_and_check_type_unit_head): Ditto.
5343
5344 2012-06-26 Siva Chandra Reddy <sivachandra@google.com>
5345
5346 New attribute 'last' for gdb.Symtab_and_line.
5347 * NEWS (Python Scripting): Add entry about the new attribute.
5348 * python/py-symtab.c (salpy_get_last): New function which
5349 implements the get method for the 'last' attribute of
5350 gdb.Symtab_and_line.
5351 (sal_object_getset): Add entry for the 'last' attribute.
5352
5353 2012-06-26 Doug Evans <dje@google.com>
5354
5355 * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
5356 (dwo_sections): Add macinfo, macro.
5357 (dwarf2_locate_dwo_sections): Watch for macro sections.
5358 (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
5359 All callers updated. Handle DWO files.
5360
5361 * NEWS: Mention new options "set debug dwarf2-read" and
5362 "set debug symtab-create".
5363 * dwarf2read.c (dwarf2_read_debug): New static global.
5364 (dwarf2_build_psymtabs_hard): Add debugging printfs.
5365 (process_queue): Ditto.
5366 (process_full_comp_unit): Ditto.
5367 (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
5368 * elfread.c (elf_symfile_read): Add debugging printf.
5369 * minsyms.c (install_minimal_symbols): Ditto.
5370 * psymtab.c (allocate_psymtab): Ditto.
5371 * symfile.c (allocate_symtab): Ditto.
5372 * symtab.c (symtab_create_debug): New global.
5373 (_initialize_symtab): Add new option "set debug symtab-create".
5374 * symtab.h (symtab_create_debug): Declare.
5375
5376 * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
5377 (lookup_dwo_type_unit): Ditto.
5378
5379 2012-06-26 Roland McGrath <roland@hack.frob.com>
5380 H.J. Lu <hongjiu.lu@intel.com>
5381
5382 * amd64-linux-nat.c: Include <sys/user.h>.
5383 (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
5384 if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
5385 HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
5386
5387 * configure.ac: Check if the fs_base and gs_base members of
5388 `struct user_regs_struct' exist.
5389 * config.in: Regenerated.
5390 * configure: Likewise.
5391
5392 2012-06-25 Michael Eager <eager@eagercon.com>
5393
5394 PR python/14291
5395 * python/python.c (gdbpy_write): Check for interrupted output.
5396
5397 2012-06-25 Greta Yorsh <greta.yorsh@arm.com>
5398
5399 * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
5400 register as a stack alignment in ARM mode.
5401
5402 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
5403
5404 Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
5405 * gnulib/config.in: Regenerate.
5406 * gnulib/configure: Likewise.
5407 * gnulib/import/m4/extensions.m4: Update it.
5408 * gnulib/import/m4/gnulib-common.m4: Likewise.
5409 * gnulib/import/m4/memmem.m4: Likewise.
5410 * gnulib/import/m4/mmap-anon.m4: Likewise.
5411 * gnulib/import/m4/multiarch.m4: Likewise.
5412 * gnulib/import/stdint.in.h: Likewise.
5413
5414 2012-06-24 Yao Qi <yao@codesourcery.com>
5415
5416 * corefile.c (write_memory_with_notification): New.
5417 * gdbcore.h: Declare write_memory_with_notification.
5418 * ada-lang.c (ada_value_assign): Replace 'write_memory' and
5419 'observer_notify_memory_changed' with 'write_memory_with_notification'.
5420 * valops.c (value_assign): Likewise.
5421 * python/py-inferior.c (infpy_write_memory): Call
5422 'write_memory_with_notification'.
5423
5424 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
5425
5426 * cc-with-index.sh: Use also -ex "set auto-load no".
5427
5428 2012-06-23 Doug Evans <dje@google.com>
5429
5430 PR 14125
5431 * NEWS: Document additions to .gdb_index.
5432 * dwarf2read.c: #include "gdb/gdb-index.h".
5433 (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
5434 (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
5435 (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
5436 (dwarf2_read_index): Recognize version 7.
5437 (dw2_do_expand_symtabs_matching): New args want_specific_block,
5438 block_kind, domain): All callers updated.
5439 (dw2_find_symbol_file): Handle new index CU values.
5440 (dw2_expand_symtabs_matching): Match symbol kind if requested.
5441 (add_index_entry): New args is_static, kind. All callers updated.
5442 (offset_type_compare, uniquify_cu_indices): New functions
5443 (symbol_kind): New function.
5444 (write_psymtabs_to_index): Remove duplicate CU values.
5445 (write_psymtabs_to_index): Write .gdb_index version 7.
5446
5447 2012-06-22 Joel Brobecker <brobecker@adacore.com>
5448
5449 * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
5450 * configure: Regenerate.
5451
5452 2012-06-20 Yao Qi <yao@codesourcery.com>
5453
5454 * python/py-inferior.c: Update comments of infpy_read_memory
5455 and infpy_write_memory.
5456
5457 2012-06-19 Tom Tromey <tromey@redhat.com>
5458
5459 PR exp/9514:
5460 * parser-defs.h (insert_type, insert_type_address_space): Declare.
5461 (push_type_address_space): Remove.
5462 * parse.c (insert_into_type_stack): New function.
5463 (insert_type): Likewise.
5464 (insert_type_address_space): Rename from push_type_address_space.
5465 Insert tp_space_identifier.
5466 * c-exp.y (ptr_operator): New production.
5467 (abs_decl): Use ptr_operator.
5468 (space_identifier): Call insert_type_address_space.
5469 (ptype): Don't use const_or_volatile_or_space_identifier.
5470 (const_or_volatile_noopt): Call insert_type.
5471 (conversion_type_id, conversion_declarator): New productions.
5472 (operator): Use conversion_type_id.
5473
5474 2012-06-18 Doug Evans <dje@google.com>
5475
5476 * symtab.h (minimal_symbol): New member created_by_gdb.
5477 * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
5478 created by gdb.
5479 * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
5480 (search_symbols): Call it instead of lookup_symbol.
5481 Skip symbols created by gdb. Only scan minsyms if nfiles == 0.
5482
5483 * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
5484 Adjust address for DW_OP_GNU_addr_index.
5485 * dwarf2expr.h (dwarf_expr_context): Update comment.
5486 * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
5487 all callers updated. Handle TLS vars described with
5488 DW_OP_GNU_const_index.
5489 (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
5490 and DW_OP_GNU_const_index.
5491 * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
5492
5493 * block.c (find_block_in_blockvector): Make explicit the fact that we
5494 ignore GLOBAL_BLOCK.
5495
5496 2012-06-18 Tom Tromey <tromey@redhat.com>
5497
5498 * c-exp.y (operator): Remove trailing space after "delete" and
5499 "delete[]".
5500
5501 2012-06-18 Mark Kettenis <kettenis@gnu.org>
5502 Jan Kratochvil <jan.kratochvil@redhat.com>
5503
5504 Switch i386 and derived targets to ON_STACK.
5505 * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
5506 (amd64_dicos_init_abi): Remove its installment.
5507 * dicos-tdep.c (dicos_init_abi): Remove the
5508 set_gdbarch_call_dummy_location call. Update the comment here.
5509 * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
5510 (i386_dicos_init_abi): Remove its installment.
5511 * i386-tdep.c (i386_push_dummy_code): New function.
5512 (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
5513 i386_push_dummy_code.
5514
5515 2012-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
5516
5517 Remove stale dummy frames.
5518 * breakpoint.c: Include dummy-frame.h.
5519 (longjmp_breakpoint_ops): New variable.
5520 (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
5521 bp_longjmp_call_dummy.
5522 (bpstat_what, bptype_string, print_one_breakpoint_location)
5523 (init_bp_location): Support bp_longjmp_call_dummy.
5524 (set_longjmp_breakpoint): Use longjmp_breakpoint_ops. Comment why.
5525 (set_longjmp_breakpoint_for_call_dummy)
5526 (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
5527 functions.
5528 (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
5529 * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy. Delete
5530 FIXME comment and extend the other comment for bp_call_dummy.
5531 (set_longjmp_breakpoint_for_call_dummy)
5532 (check_longjmp_breakpoint_for_call_dummy): New declarations.
5533 * dummy-frame.c: Include gdbthread.h.
5534 (pop_dummy_frame_bpt): New function.
5535 (pop_dummy_frame): Call pop_dummy_frame_bpt.
5536 (dummy_frame_discard): New function.
5537 (cleanup_dummy_frames): Update the comment about longjmps.
5538 * dummy-frame.h (dummy_frame_discard): New declaration.
5539 * gdbthread.h (struct thread_info): Extend initiating_frame comment.
5540 * infcall.c (call_function_by_hand): New variable longjmp_b. Call
5541 set_longjmp_breakpoint_for_call_dummy. Chain its breakpoints with BPT.
5542 * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
5543 Add case 4 comment. Call check_longjmp_breakpoint_for_call_dummy and
5544 keep_going if IS_LONGJMP and there is no other reason to stop.
5545
5546 2012-06-18 Greta Yorsh <Greta.Yorsh@arm.com>
5547
5548 * remote-sim.c (sim_command_completer): Initialize
5549 variable 'result'.
5550
5551 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5552
5553 * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
5554 * dwarf2loc.c (call_site_parameter_matches): Support
5555 CALL_SITE_PARAMETER_PARAM_OFFSET.
5556 (needs_dwarf_reg_entry_value): Push stub value.
5557 * dwarf2read.c (read_call_site_scope): New variable origin. Support
5558 CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
5559 * gdbtypes.h (enum call_site_parameter_kind): New item
5560 CALL_SITE_PARAMETER_PARAM_OFFSET.
5561 (struct call_site.parameter.u): New field param_offset.
5562
5563 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5564
5565 Code cleanup: Generalize call_site.parameter key.
5566 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
5567 variable dwarf_reg. New variable kind_u. Update parameters to
5568 push_dwarf_reg_entry_value.
5569 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5570 * dwarf2expr.h (enum call_site_parameter_kind)
5571 (union call_site_parameter_u): Forward declarations.
5572 (struct dwarf_expr_context_funcs): Update parameters and their
5573 description for push_dwarf_reg_entry_value.
5574 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5575 * dwarf2loc.c (call_site_parameter_matches): New function.
5576 (dwarf_expr_reg_to_entry_parameter): Update parameters and their
5577 description. Use call_site_parameter_matches.
5578 (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
5579 Update parameters and their description.
5580 (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
5581 New variable kind_u. Adjust the caller for updated parameters.
5582 (needs_dwarf_reg_entry_value): Update parameters.
5583 * dwarf2read.c (read_call_site_scope): New variable loc. Use it
5584 instead of attr. Update for the changed fields of struct
5585 call_site_parameter.
5586 * gdbtypes.h: Include dwarf2expr.h.
5587 (enum call_site_parameter_kind): New.
5588 (struct call_site.parameter): New field kind. Wrap dwarf_reg and
5589 fb_offset into new union u.
5590
5591 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
5592
5593 * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
5594 (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
5595 for x32.
5596
5597 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
5598
5599 * amd64-linux-nat.c (compat_x32_clock_t): New.
5600 (compat_x32_siginfo_t): Likewise.
5601 (compat_x32_siginfo_from_siginfo): Likewise.
5602 (siginfo_from_compat_x32_siginfo): Likewise.
5603 (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
5604 and siginfo_from_compat_x32_siginfo for x32.
5605
5606 2012-06-15 Hui Zhu <hui_zhu@mentor.com>
5607
5608 * tracepoint.c (tfile_xfer_partial): Add a lseek.
5609
5610 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
5611
5612 * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
5613 instead of gdbarch_ptr_bit.
5614 * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
5615 (amd64_supply_native_gregset): Likewise.
5616 (amd64_collect_native_gregset): Likewise.
5617 * amd64-tdep.c (amd64_supply_fxsave): Likewise.
5618 (amd64_supply_xsave): Likewise.
5619 (amd64_collect_fxsave): Likewise.
5620 (amd64_collect_xsave): Likewise.
5621
5622 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
5623
5624 * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
5625 (amd64_linux_read_description): Check DS segment register for
5626 x32 process.
5627
5628 2012-06-15 Tom Tromey <tromey@redhat.com>
5629
5630 * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
5631 init_cutu_and_read_dies.
5632
5633 2012-06-15 Iain Sandoe <iain@codesourcery.com>
5634
5635 * MAINTAINERS (Write After Approval): Add myself to the list.
5636
5637 2012-06-15 Tom Tromey <tromey@redhat.com>
5638
5639 * valops.c (value_find_oload_method_list): Now static.
5640 * value.h (value_find_oload_method_list): Don't declare.
5641
5642 2012-06-15 Tom Tromey <tromey@redhat.com>
5643
5644 * valops.c (find_overload_match): Use value_ind.
5645
5646 2012-06-15 Maciej W. Rozycki <macro@codesourcery.com>
5647
5648 * infrun.c (handle_inferior_event): Correct indentation.
5649
5650 2012-06-14 Doug Evans <dje@google.com>
5651
5652 * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
5653 (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
5654 All uses updated.
5655 (decode_debug_loc_dwo_addresses): New arg "byte_order". All callers
5656 updated. Handle DEBUG_LOC_START_LENGTH.
5657 (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
5658 (loclist_describe_location): Ditto.
5659
5660 2012-06-14 Maciej W. Rozycki <macro@codesourcery.com>
5661
5662 PR backtrace/13866
5663 * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
5664 after hiding inline functions.
5665
5666 2012-06-13 Joel Brobecker <brobecker@adacore.com>
5667
5668 * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
5669 _initialize_inf_ttrace.
5670
5671 2012-06-13 Joel Brobecker <brobecker@adacore.com>
5672
5673 * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
5674 _initialize_hppa_hpux_nat.
5675
5676 2012-06-13 Joel Brobecker <brobecker@adacore.com>
5677
5678 * remote-sim.c (sim_command_completer): Change type of return
5679 value to "VEC (char_ptr) *". Adjust implementation accordingly.
5680
5681 2012-06-13 Mark Kettenis <kettenis@gnu.org>
5682 Jan Kratochvil <jan.kratochvil@redhat.com>
5683
5684 PR tdep/14222
5685 * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
5686 stack on a 16-byte boundary.
5687
5688 2012-06-13 Kaushik Srenevasan <kaushik@twitter.com>
5689
5690 * jit.c (finalize_symtab): Set function's return type to 'void' by
5691 default.
5692
5693 2012-06-13 Mark Kettenis <kettenis@gnu.org>
5694 H.J. Lu <hongjiu.lu@intel.com>
5695
5696 * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
5697 Move bits common to both the classic LP64 and the new x32 ILP32
5698 ABI here.
5699 (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
5700 (amd64_x32_linux_init_abi): New function.
5701 (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
5702 subtype.
5703
5704 * i386-tdep.h (i386_pseudo_register_name): New prototype.
5705 * i386-tdep.c (i386_pseudo_register_name): Make public.
5706 * amd64-tdep.h (amd64_x32_init_abi): New prototype.
5707 * amd64-tdep.c (amd64_dword_names): Add "eip".
5708 (amd64_x32_pseudo_register_type): New function
5709 (amd64_x32_init_abi): New function.
5710
5711 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5712
5713 PR build/14003
5714 * inferior.h (struct inferior_suspend_state): Comment out.
5715 (struct inferior): Comment out the field suspend.
5716 * infrun.c (struct infcall_suspend_state): Comment out the field
5717 inferior_suspend.
5718 (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
5719 out its assignment.
5720
5721 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5722
5723 PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
5724 * c-exp.y (classify_inner_name): Remove caller assumptions in the
5725 function comment. Return ERROR for unresolved cases. Implement
5726 returning proper NAME.
5727 (yylex): Accept also NAME from classify_inner_name.
5728 * cp-namespace.c (cp_lookup_nested_type): Rename to ...
5729 (cp_lookup_nested_symbol): ... here. Return any found symbol, not just
5730 LOC_TYPEDEF type.
5731 * cp-support.h (cp_lookup_nested_type): Update its declaration.
5732
5733 2012-06-13 Tom Tromey <tromey@redhat.com>
5734
5735 * breakpoint.c (condition_completer): New function.
5736 (_initialize_breakpoint): Use it.
5737 * value.c (complete_internalvar): New function.
5738 * value.h (complete_internalvar): Declare.
5739
5740 2012-06-13 Tom Tromey <tromey@redhat.com>
5741
5742 * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
5743 * breakpoint.c (catch_syscall_completer): Return a VEC.
5744 * cli/cli-cmds.c (complete_command): Update.
5745 * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
5746 (complete_on_enum): Likewise.
5747 * command.h: Include gdb_vecs.h.
5748 (completer_ftype): Change return type.
5749 (complete_on_cmdlist, complete_on_enum): Likewise.
5750 * completer.c (noop_completer, filename_completer)
5751 (location_completer): Return a VEC.
5752 (add_struct_fields): Remove 'nextp' argument. Change 'output'
5753 to a VEC.
5754 (expression_completer, complete_line_internal, complete_line)
5755 (command_completer): Return a VEC.
5756 (gdb_completion_word_break_characters, line_completion_function):
5757 Update.
5758 * completer.h: Include gdb_vecs.h.
5759 (complete_line, noop_completer, filename_completer)
5760 (expression_completer, location_completer, command_completer):
5761 Update.
5762 * f-lang.c (f_word_break_characters): Return a VEC.
5763 * interps.c (interpreter_completer): Return a VEC.
5764 * language.h (struct language_defn)
5765 <la_make_symbol_completion_list>: Return a VEC.
5766 * python/py-cmd.c (cmdpy_completer): Return a VEC.
5767 * symtab.c (free_completion_list): Take a VEC.
5768 (return_val_size, return_val_index): Remove.
5769 (return_val): Now a VEC.
5770 (completion_list_add_name): Update.
5771 (default_make_symbol_completion_list_break_on)
5772 (default_make_symbol_completion_list, make_symbol_completion_list)
5773 (make_symbol_completion_list_fn, make_file_symbol_completion_list):
5774 Return a VEC.
5775 (add_filename_to_list): Update.
5776 (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
5777 <list>: Now a VEC.
5778 (maybe_add_partial_symtab_filename): Update.
5779 (make_source_files_completion_list): Return a VEC.
5780 * symtab.h (default_make_symbol_completion_list_break_on)
5781 (default_make_symbol_completion_list, make_symbol_completion_list)
5782 (make_symbol_completion_list_fn, make_file_symbol_completion_list)
5783 (make_source_files_completion_list): Update.
5784
5785 2012-06-13 Tom Tromey <tromey@redhat.com>
5786
5787 * breakpoint.c (add_catch_command): Use completer_ftype.
5788 * breakpoint.h: Include command.h.
5789 (add_catch_command): Use completer_ftype.
5790 * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
5791 * cli/cli-decode.h (struct cmd_list_element) <completer>:
5792 Use completer_ftype.
5793 * command.h (completer_ftype): New typedef.
5794 (set_cmd_completer): Use it.
5795 * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
5796 completer_ftype.
5797
5798 2012-06-13 Pedro Alves <palves@redhat.com>
5799
5800 Partial revert of previous change.
5801
5802 * serial.c (scb_base): New global.
5803 (serial_for_fd): New.
5804 (serial_open, serial_fdopen_ops): Link new serial in open serials
5805 chain.
5806 (do_serial_close): Unlink serial from the open serials chain.
5807
5808 2012-06-12 Pedro Alves <palves@redhat.com>
5809
5810 * infrun.c (infrun_thread_stop_requested_callback): Don't switch
5811 threads here.
5812 (prepare_for_detach): No longer context switch here in non-stop
5813 mode.
5814 (fetch_inferior_event): Ditto.
5815 (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
5816 to the event thread before removing breakpoints. Switch to the
5817 event thread before inserting breakpoints and resuming.
5818 (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
5819 event thread before resuming.
5820 (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
5821 Switch to the event thread before removing breakpoints.
5822
5823 2012-06-12 Eli Zaretskii <eliz@gnu.org>
5824
5825 * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
5826 special characters correctly for the Windows shells. See
5827 http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
5828 report.
5829 [!__MINGW32__]: Remove extra double quote character from special
5830 characters.
5831
5832 2012-06-11 Stan Shebs <stan@codesourcery.com>
5833
5834 * ui-out.h: Remove #if 0 declarations.
5835 * ui-out.c: Remove #if 0 functions.
5836
5837 2012-06-11 Pedro Alves <palves@redhat.com>
5838
5839 * ser-base.c (run_async_handler_and_reschedule): New.
5840 (fd_event, push_event): Use it.
5841 * serial.c (serial_open, serial_fdopen_ops): Set the initial
5842 reference count to 1.
5843 (do_serial_close): Set the bufp field to NULL. Use serial_unref
5844 instead of xfree.
5845 (serial_is_open, serial_ref, serial_unref): New.
5846 * serial.h (serial_open): Adjust comment.
5847 (serial_is_open): Declare.
5848 (serial_close): Adjust comment.
5849 (serial_ref, serial_unref) Declare.
5850 (struct serial): New field 'refcnt'.
5851
5852 2012-06-11 Pedro Alves <palves@redhat.com>
5853
5854 Remove #if 0'd "connect" command, and unnecessary associated
5855 refcounting and serial reuse bits.
5856
5857 * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
5858 * serial.c (last_serial_opened): Delete.
5859 (scb_base): Delete.
5860 (serial_open): Adjust.
5861 (serial_for_fd): Delete.
5862 (serial_fdopen_ops, do_serial_close): Adjust.
5863 (serial_fdopen_ops): Adjust.
5864
5865 2012-06-11 Pedro Alves <palves@redhat.com>
5866
5867 * serial.c (do_serial_close): Remove early return when SCB is
5868 null.
5869
5870 2012-06-11 Tom Tromey <tromey@redhat.com>
5871
5872 * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
5873
5874 2012-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5875
5876 Fix regression by the "ambiguous linespec" series.
5877 * breakpoint.c (parse_breakpoint_sals): New variable cursal. Use
5878 get_last_displayed_symtab and get_last_displayed_line and depending
5879 on CURSAL.
5880
5881 2012-06-11 Tom Tromey <tromey@redhat.com>
5882
5883 * dwarf2read.c (dw2_get_primary_filename_reader): New function.
5884 (dw2_find_symbol_file): Use it.
5885
5886 2012-06-11 Michael Eager <eager@eagercon.com>
5887
5888 * mips-linux-tdep.c (mips_gdb_signal_from_target): New
5889 * mips-linux-tdep.h (mips_signals): New
5890
5891 2012-06-11 Tom Tromey <tromey@redhat.com>
5892
5893 * infrun.c (handle_inferior_event)
5894 <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
5895 breakpoint.
5896 <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
5897 exception logic in all cases. Update comments.
5898 (insert_longjmp_resume_breakpoint): Set the exception resume
5899 breakpoint.
5900
5901 2012-06-11 Maciej W. Rozycki <macro@codesourcery.com>
5902
5903 * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
5904
5905 2012-06-09 Siva Chandra Reddy <sivachandra@google.com>
5906
5907 * valarith.c (binop_types_user_defined_p): Fix a typo.
5908
5909 2012-06-08 Yao Qi <yao@codesourcery.com>
5910 Chung-Lin Tang <cltang@codesourcery.com>
5911
5912 * arch-utils.c (default_return_in_first_hidden_param_p): New.
5913 * arch-utils.h: Declare.
5914 * gdbarch.sh: Add return_in_first_hidden_param_p.
5915 * gdbarch.c, gdbarch.h: Regenerated.
5916 * infcall.c (call_function_by_hand): Call
5917 gdbarch_return_in_first_hidden_param_p instead of
5918 language_pass_by_reference.
5919
5920 * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
5921 (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
5922 * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
5923 (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
5924 * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
5925 `cplus_return_struct_by_reference'.
5926 (tic6x_return_value): Handle language cplusplus.
5927 (tic6x_return_in_first_hidden_param_p): New.
5928 (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
5929
5930 2012-06-07 Doug Evans <dje@google.com>
5931
5932 * dwarf2read.c (dwarf2_cu): Add comment.
5933
5934 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
5935
5936 * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
5937 variable.
5938 (mips_eabi_push_dummy_call): Likewise.
5939 (mips_n32n64_push_dummy_call): Likewise.
5940 (mips_o32_push_dummy_call): Likewise.
5941 (mips_o64_push_dummy_call): Likewise.
5942
5943 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
5944
5945 * mips-tdep.c (mips_convert_register_p): Correct coding style.
5946
5947 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
5948
5949 * mips-tdep.c (mips_pseudo_register_type): Use
5950 mips_float_register_p.
5951
5952 2012-06-06 Pedro Alves <palves@redhat.com>
5953
5954 * infrun.c (handle_inferior_event): Remove calls to
5955 reinit_frame_cache that follow a context_switch call.
5956
5957 2012-06-06 Pedro Alves <palves@redhat.com>
5958
5959 * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
5960 context_switch and remove stale comment.
5961
5962 2012-06-06 Pedro Alves <palves@redhat.com>
5963
5964 * infrun.c (struct execution_control_state): Remove
5965 `new_thread_event' field.
5966 (handle_inferior_event): Simplify new threads handling; don't
5967 resume the inferior if we find a new thread.
5968
5969 2012-06-06 Thomas Schwinge <thomas@codesourcery.com>
5970
5971 * NEWS: Document the deprecation of SH's 'regs' command.
5972 * inferior.h (all_registers_info): Add function declaration.
5973 * sh-tdep.c (sh_show_regs): Remove variable.
5974 (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
5975 (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
5976 (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
5977 (sh_show_regs_command): Remove functions.
5978 (sh_gdbarch_init): Don't set sh_show_regs.
5979 (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
5980 'info all-registers'.
5981 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
5982 (sh64_show_regs): Remove functions.
5983 * sh64-tdep.h (sh64_show_regs): Remove function declaration.
5984
5985 2012-06-06 Jan Kratochvil <jan.kratochvil@redhat.com>
5986
5987 * configure.ac: Move development=true below AC_INIT.
5988 * configure: Regenerate.
5989
5990 2012-06-05 Stan Shebs <stan@codesourcery.com>
5991
5992 * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
5993 gdb_stdout.
5994
5995 2012-06-05 Siddhesh Poyarekar <siddhesh@redhat.com>
5996
5997 * corefile.c (read_memory, read_stack, write_memory): Accept LEN
5998 argument as ssize_t.
5999 * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
6000 * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
6001 * target.c (target_read_stack, target_write_memory)
6002 (target_write_raw_memory): Likewise.
6003 * target.h (target_read_stack, target_write_memory)
6004 (target_write_raw_memory): Likewise.
6005
6006 2012-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6007
6008 * symfile-mem.c: Change gdb_static_assert to ssize_t.
6009 (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
6010 * target.c (target_read_memory): Change LEN to ssize_t.
6011 * target.h (target_read_memory): Change LEN to ssize_t.
6012
6013 2012-06-05 Pedro Alves <palves@redhat.com>
6014
6015 PR backtrace/13866
6016
6017 * breakpoint.c (until_break_command): Only fetch the selected
6018 frame after decode_line_1.
6019
6020 2012-06-05 Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
6021
6022 * solib-svr4.c (enable_break): Don't fallback to setting the solib
6023 event breakpoint at _start, __start or main if a program
6024 interpreter is not found.
6025
6026 2012-06-05 Joel Brobecker <brobecker@adacore.com>
6027
6028 * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
6029 Add declaration.
6030 * windows-tdep.c: #include "objfiles.h".
6031 (windows_iterate_over_objfiles_in_search_order): New function.
6032 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
6033 iterate_over_objfiles_in_search_order gdbarch method to
6034 windows_iterate_over_objfiles_in_search_order.
6035 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
6036
6037 2012-06-05 Joel Brobecker <brobecker@adacore.com>
6038
6039 * gdbarch.sh: Add generation of
6040 "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
6041 gdbarch.h. Add include of "objfiles.h" in gdbarch.c.
6042 (iterate_over_objfiles_in_search_order): New gdbarch method.
6043 * gdbarch.h, gdbarch.c: Regenerate.
6044 * objfiles.h (default_iterate_over_objfiles_in_search_order):
6045 Add declaration.
6046 * objfiles.c (default_iterate_over_objfiles_in_search_order):
6047 New function.
6048 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
6049 out of lookup_symbol_aux_symtabs.
6050 (lookup_symbol_aux_symtabs): Replace extracted-out code by
6051 call to lookup_symbol_aux_objfile.
6052 (struct global_sym_lookup_data): New type.
6053 (lookup_symbol_global_iterator_cb): New function.
6054 (lookup_symbol_global): Search for symbol using
6055 gdbarch_iterate_over_objfiles_in_search_order and
6056 lookup_symbol_global_iterator_cb.
6057 * findvar.c (struct minsym_lookup_data): New type.
6058 (minsym_lookup_iterator_cb): New function.
6059 (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
6060 symbol's address via gdbarch_iterate_over_objfiles_in_search_order
6061 and minsym_lookup_iterator_cb.
6062
6063 2012-06-05 Joel Brobecker <brobecker@adacore.com>
6064
6065 Revert the following patch:
6066 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
6067 try locating the symbol in the symbol's own objfile first, before
6068 extending the search to all objfiles.
6069 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
6070 out of lookup_symbol_aux_symtabs.
6071 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
6072 Replace extracted-out code by call to lookup_symbol_aux_objfile.
6073 Do not search EXCLUDE_OBJFILE.
6074 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
6075 (lookup_symbol_global): Search for matches in the block's objfile
6076 first, before searching all other objfiles.
6077
6078 2012-06-05 Joel Brobecker <brobecker@adacore.com>
6079
6080 * breakpoint.c (find_condition_and_thread): Stop parsing
6081 as soon as the first invalid keyword is found.
6082
6083 2012-06-05 Joel Brobecker <brobecker@adacore.com>
6084
6085 * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
6086
6087 2012-06-05 Joel Brobecker <brobecker@adacore.com>
6088
6089 * config/djgpp/djcheck.sh: Add copyright header.
6090
6091 2012-06-05 Joel Brobecker <brobecker@adacore.com>
6092
6093 * copyright.py (update_files, main): Fix path to update-copyright
6094 script.
6095
6096 2012-06-05 Joel Brobecker <brobecker@adacore.com>
6097
6098 * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
6099 (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
6100 for which a reminder to update by hand is printed.
6101
6102 2012-06-04 Doug Evans <dje@google.com>
6103
6104 * buildsym.c (make_blockvector): Add comment.
6105
6106 2012-06-04 Pedro Alves <palves@redhat.com>
6107
6108 * arch-utils.c (default_gdb_signal_from_target): Delete.
6109 * arch-utils.h (default_gdb_signal_from_target): Delete.
6110 * corelow.c (core_open) <signal mapping>: Extended comment. Check
6111 gdbarch_gdb_signal_from_target_p.
6112 * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
6113 predicate).
6114 * gdbarch.h: Regenerate.
6115 * gdbarch.c: Regenerate.
6116
6117 2012-06-04 Pedro Alves <palves@redhat.com>
6118
6119 * gdbarch.sh (gdb_signal_from_target): Mention that the
6120 implementation of the method must be host independent.
6121 * gdbarch.h: Regenerate.
6122
6123 2012-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
6124
6125 * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
6126 parameters.
6127 (target_read_memory_bfd): New function.
6128 (symbol_file_add_from_memory): Use it.
6129
6130 2012-06-03 Doug Evans <dje@google.com>
6131
6132 * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
6133 of primary symtab.
6134 (basic_lookup_transparent_type): Ditto.
6135
6136 * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
6137 (ALL_PRIMARY_SYMTABS): Use it.
6138 (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
6139 * dwarf2read.c (dw2_find_symbol_file): Ditto.
6140 * linespec.c (iterate_over_all_matching_symtabs): Ditto.
6141 * symtab.c (lookup_symbol_aux_objfile): Ditto.
6142 (basic_lookup_transparent_type): Ditto.
6143
6144 2012-06-02 Sergio Durigan Junior <sergiodj@redhat.com>
6145
6146 * symtab.c (symbol_demangled_name): New variable `dem_name'. Use
6147 it to optimize resolution of demangled name.
6148
6149 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
6150
6151 * configure.ac (development): Define new variable.
6152 Call AC_CHECK_LIB for mcheck if $development.
6153 (ERROR_ON_WARNING): Enable it by default only if $development.
6154 * config.in: Regenerate.
6155 * configure: Regenerate.
6156
6157 2012-06-01 Siddhesh Poyarekar <siddhesh@redhat.com>
6158
6159 * target.c (target_read_memory): Make LEN argument as size_t.
6160 * target.h (target_read_memory): Likewise.
6161
6162 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
6163
6164 * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
6165
6166 2012-05-31 Edjunior Machado <emachado@linux.vnet.ibm.com>
6167
6168 * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
6169 BookE interface for PowerPC server processors if not available
6170 in the Linux Kernel.
6171
6172 2012-05-31 Keith Seitz <keiths@redhat.com>
6173
6174 * linespec.c (decode_objc): Add cleanup to free
6175 INFO.FILE_SYMTABS.
6176 (find_linespec_symbols): Add cleanup to free CLASSES.
6177 * symfile.c (find_separate_debug_file_by_debuglink): Add
6178 cleanup to free DEBUGLINK.
6179 * ui-out.c (clear_header_list): No need to check if
6180 HEADER_NEXT.COLHDR is NULL.
6181 Free HEADER_NEXT.COL_NAME.
6182
6183 2012-05-31 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6184
6185 * ada-lang.c (standard_lookup): Prevent uninitialized variable
6186 warning.
6187
6188 2012-05-30 Jeff Kenton <jkenton@tilera.com>
6189
6190 * configure.host (gdb_host_cpu): Handle tilegx*.
6191 (gdb_host): Handle tilegx-*-linux*.
6192 * tilegx-linux-nat.c: New file.
6193 * config/tilegx/linux.mh: New file.
6194
6195 2012-05-30 Jeff Kenton <jkenton@tilera.com>
6196
6197 * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
6198 tilegx-linux-tdep.o.
6199 (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
6200 tilegx-linux-tdep.c.
6201 * configure.tgt: Handle tilegx-*-linux*.
6202 * tilegx-tdep.h: New file.
6203 * tilegx-tdep.c: New file.
6204 * tilegx-linux-tdep.c: New file.
6205 * regformats/reg-tilegx.dat: New file.
6206
6207 2012-05-30 Edjunior Machado <emachado@linux.vnet.ibm.com>
6208
6209 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
6210 accounting of hw watchpoints on ppc.
6211
6212 2012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
6213
6214 * source.c (openp): Expand tilde in path entries.
6215
6216 2012-05-29 Doug Evans <dje@google.com>
6217
6218 * buildsym.c (block_compar): Fix comment.
6219 (end_symtab): Fix and clarify some comments.
6220
6221 * stabsread.h (cleanup_undefined_stabs_types): Renamed from
6222 cleanup_undefined_types.
6223 * stabsread.c (cleanup_undefined_stabs_types): Ditto.
6224 All callers updated.
6225
6226 2012-05-29 Tom Tromey <tromey@redhat.com>
6227
6228 * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
6229 fails.
6230 * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
6231 * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
6232 fails.
6233 * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
6234 fails.
6235
6236 2012-05-29 Tristan Gingold <gingold@adacore.com>
6237
6238 * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
6239 (struct darwin_info): ... New struct.
6240 (solib_darwin_pspace_data): New variable.
6241 (darwin_pspace_data_cleanup): New function.
6242 (get_darwin_info): Likewise.
6243 (darwin_dyld_version_ok, darwin_load_image_infos)
6244 (darwin_solib_get_all_image_info_addr_at_init)
6245 (darwin_solib_read_all_image_info_addr): Add info argument.
6246 Adjust code.
6247 (darwin_current_sos): Use per pspace structure.
6248 (darwin_solib_create_inferior_hook): Likewise.
6249 (darwin_clear_solib): Likewise.
6250 (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
6251
6252 2012-05-28 Pedro Alves <palves@redhat.com>
6253
6254 * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
6255 block that uses them. Clear ecss before handling each event.
6256
6257 2012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
6258
6259 * solib-svr4.c (svr4_current_sos): New comment on
6260 svr4_current_sos_via_xfer_libraries fall back.
6261
6262 2012-05-24 Jan Kratochvil <jan.kratochvil@redhat.com>
6263
6264 * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best. Use
6265 it as a fallback for TYPE_IS_OPAQUE.
6266 * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
6267 symbols for lookup_symbol.
6268
6269 2012-05-24 John Steele Scott <toojays@toojays.net>
6270
6271 PR symtab/13277: Resolving opaque structures in ICC generated binaries.
6272 * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
6273 (producer_is_gxx_lt_4_6): Move the checking and caching to...
6274 (check_producer): ... this new function, which also checks for ICC
6275 and caches the result.
6276 (producer_is_icc): New function.
6277 (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
6278 producer was ICC.
6279
6280 2012-05-24 Pedro Alves <palves@redhat.com>
6281
6282 PR gdb/7205
6283
6284 * arch-utils.c (default_gdb_signal_to_host): Rename to ...
6285 (default_gdb_signal_to_target): ... this. Add comment.
6286 (default_gdb_signal_from_host): Rename to ...
6287 (default_gdb_signal_from_target): ... this. Add comment.
6288 * arch-utils.h (default_gdb_signal_to_host): Rename to ...
6289 (default_gdb_signal_to_target): ... this.
6290 (default_gdb_signal_from_host): Rename to ...
6291 (default_gdb_signal_from_target): ... this.
6292 * corelow.c (core_open): Adjust to naming change. Replace comment.
6293 * gdbarch.sh (gdb_signal_from_host): Rename to ...
6294 (gdb_signal_from_target): ... this. Adjust to
6295 default_gdb_signal_from_host naming change. Extend comment.
6296 (gdb_signal_to_host): Rename to ...
6297 (gdb_signal_to_target): ... this. Adjust to
6298 default_gdb_signal_to_host naming change.
6299 * gdbarch.h, gdbarch.c: Renegerate.
6300
6301 2012-05-24 Pedro Alves <palves@redhat.com>
6302
6303 PR gdb/7205
6304
6305 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
6306
6307 2012-05-24 Pedro Alves <palves@redhat.com>
6308
6309 PR gdb/7205
6310
6311 Replace target_signal with gdb_signal throughout.
6312
6313 2012-05-24 Pedro Alves <palves@redhat.com>
6314
6315 PR tui/14159
6316
6317 * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
6318 string, instead of reusing the va_list argument.
6319
6320 2012-05-24 Tom Tromey <tromey@redhat.com>
6321
6322 * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
6323 Remove.
6324
6325 2012-05-23 Doug Evans <dje@google.com>
6326
6327 * symtab.c (search_symbols): Formatting fixes.
6328 (print_symbol_info): Formatting fixes.
6329
6330 * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
6331 int64_t change to leb128 API.
6332 (read_encoded_value, decode_frame_entry_1): Ditto.
6333 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
6334 (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
6335 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6336 (execute_stack_op): Ditto.
6337 * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
6338 (safe_read_uleb128, safe_read_sleb128): Ditto.
6339 * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
6340 (dwarf2_compile_expr_to_ax): Ditto.
6341 (locexpr_describe_location_piece): Ditto.
6342 (disassemble_dwarf_expression): Ditto.
6343 (locexpr_describe_location_1): Ditto.
6344
6345 2012-05-23 Stan Shebs <stan@codesourcery.com>
6346 Kwok Cheung Yeung <kcy@codesourcery.com>
6347
6348 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
6349 (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
6350 (mi-cmd-info.o): New rule.
6351 * osdata.h (info_osdata_command): New declaration.
6352 * osdata.c (info_osdata_command): Change to non-static.
6353 * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
6354 * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
6355 * mi/mi-cmd-info.c: New file.
6356
6357 2012-05-23 Doug Evans <dje@google.com>
6358
6359 * symtab.c (search_symbols): Pass NULL for file_matcher to
6360 expand_symtabs_matching if there are no files to match.
6361
6362 * gdbtypes.c (lookup_typename): Simplify.
6363
6364 2012-05-23 Pedro Alves <palves@redhat.com>
6365
6366 * arch-utils.h (default_target_signal_to_host): Delete.
6367 * arch-utils.c (default_target_signal_to_host): Delete.
6368 * gdbarch.sh (target_signal_to_host): Remove.
6369 * gdbarch.h, gdbarch.c: Regenerate.
6370
6371 2012-05-22 Doug Evans <dje@google.com>
6372
6373 * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
6374 "const gdb_byte *".
6375 (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
6376 (execute_cfa_program): Update to match API of leb128 functions.
6377 (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
6378 "const gdb_byte *".
6379 (read_unsigned_leb128, read_signed_leb128): Delete.
6380 (read_initial_length): Change type of buf argument to
6381 "const gdb_byte *".
6382 (read_encoded_value): Update to match API of leb128 functions.
6383 (decode_frame_entry): Change result to "const gdb_byte *", and
6384 similarly for "start" parameter.
6385 (decode_frame_entry_1): Ditto. Use new leb128 reader functions.
6386 (dwarf2_build_frame_info): Change local frame_ptr to
6387 "const gdb_byte *".
6388 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
6389 read_uleb128, read_sleb128. All callers updated.
6390 (safe_skip_leb128): New function.
6391 (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
6392 Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
6393 (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
6394 functions. Call gdb_read_uleb128, gdb_read_sleb128 instead of
6395 read_uleb128, read_sleb128.
6396 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6397 (execute_stack_op): Update to match API of leb128 functions.
6398 * dwarf2expr.h: #include "leb128.h".
6399 (read_uleb128, read_sleb128): Delete.
6400 (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
6401 (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
6402 * dwarf2loc.c (debug_loc_kind): New enum.
6403 (decode_debug_loc_addresses): New function.
6404 (decode_debug_loc_dwo_addresses): New function.
6405 (dwarf2_find_location_expression): Rewrite.
6406 (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
6407 (locexpr_describe_location_piece): Ditto.
6408 (disassemble_dwarf_expression): Ditto.
6409 (locexpr_describe_location_1): Ditto.
6410 (loclist_describe_location): Rewrite.
6411 * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
6412 * dwarf2read.c (die_reader_specs): New member "buffer_end".
6413 (dwarf2_section_buffer_overflow_complaint): Renamed from
6414 dwarf2_macros_too_long_complaint. All callers updated.
6415 (skip_leb128): Delete.
6416 (init_cu_die_reader): Initialize reader->buffer_end.
6417 (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
6418 (skip_form_bytes): New arg buffer_end. All callers updated.
6419 Replace call to skip_leb128 with gdb_skip_leb128.
6420 (skip_unknown_opcode): New arg mac_end. All callers updated.
6421 (fill_in_loclist_baton): Initialize baton->from_dwo.
6422
6423 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
6424
6425 * mips-linux-nat.c (mips_linux_read_description): Use a more
6426 verbose error message.
6427
6428 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
6429
6430 * NEWS: Add MIPS/Linux DSP support.
6431 * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
6432 (SIGCONTEXT_DSPCTL): New macro.
6433 (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
6434 (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
6435 (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
6436 (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
6437 (N64_SIGCONTEXT_HI3): Likewise.
6438 (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
6439 (N64_SIGCONTEXT_LO3): Likewise.
6440 (N64_SIGCONTEXT_DSPCTL): Likewise.
6441 (N64_SIGCONTEXT_FPCSR): Clarify definition.
6442 (mips_linux_o32_sigframe_init): Handle DSP registers.
6443 (mips_linux_n32n64_sigframe_init): Likewise.
6444
6445 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
6446
6447 * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
6448 call to abort.
6449
6450 2012-05-22 Pedro Alves <palves@redhat.com>
6451
6452 * target.h (store_waitstatus): Move declaration ...
6453 * inf-child.h (store_waitstatus): ... here.
6454 * target.c: Move inclusion of gdb_wait.h, and ...
6455 (store_waitstatus): ... this ...
6456 * inf-child.c: ... here.
6457 * linux-nat.c: Include inf-child.h.
6458 * rs6000-nat.c: Include inf-child.h.
6459 * spu-linux-nat.c: Include inf-child.h.
6460
6461 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
6462
6463 * tracepoint.c (start_tracing): Add missing i18n markup.
6464 (stop_tracing, set_trace_user): Ditto.
6465 (set_trace_notes, set_trace_stop_notes): Ditto.
6466
6467 2012-05-21 Tom Tromey <tromey@redhat.com>
6468
6469 PR c++/7173:
6470 * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
6471 types.
6472 * value.h (value_cast_pointers): Update.
6473 * valops.c (value_cast_pointers): Add 'subclass_check' argument.
6474 (value_cast): Update.
6475 (update_search_result): New function.
6476 (do_search_struct_field): New, from search_struct_field. Check
6477 for ambiguous results.
6478 (search_struct_field): Rewrite.
6479 * infcall.c (value_arg_coerce): Update.
6480 * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
6481 value_cast_pointers.
6482 * ada-lang.c (ada_convert_actual): Update.
6483
6484 2012-05-21 Tom Tromey <tromey@redhat.com>
6485
6486 * macroexp.c (macro_stringify): Terminate the string.
6487
6488 2012-05-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6489
6490 * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
6491 Describe it.
6492 * auto-load.c (auto_load_expand_dir_vars): New function.
6493 (auto_load_safe_path_vec_update): Use it, remove the
6494 substitute_path_component call thanks to it.
6495 (auto_load_objfile_script): Remove the debug_file_directory processing.
6496 Use auto_load_expand_dir_vars, remove the substitute_path_component
6497 call thanks to it.
6498 * configure: Regenerate.
6499 * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
6500 path. Escape $ also for $debugdir.
6501 (--with_auto_load_safe_path): Escape $ also for $debugdir.
6502 * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
6503
6504 2012-05-20 Doug Evans <dje@google.com>
6505
6506 * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
6507 before use. Check for symtab->includes == NULL before scanning it.
6508
6509 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6510
6511 * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
6512
6513 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6514
6515 * NEWS: Add microMIPS support and "set mips compression",
6516 "show mips compression" commands.
6517 * mips-tdep.h (mips_isa): New enum.
6518 (gdbarch_tdep): Add mips_isa.
6519 (mips_pc_is_mips16): Update prototype.
6520 (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
6521 * mips-tdep.c (mips_compression_mips16): New variable.
6522 (mips_compression_micromips): Likewise.
6523 (mips_compression_strings): Likewise.
6524 (mips_compression_string): Likewise.
6525 (is_mips16_isa, is_micromips_isa): New functions.
6526 (is_mips16_addr): Rename to...
6527 (is_compact_addr): ... this.
6528 (unmake_mips16_addr): Likewise to...
6529 (unmake_compact_addr): ... this.
6530 (make_mips16_addr): Likewise to...
6531 (make_compact_addr): ... this.
6532 (is_mips_addr, is_mips16_addr, is_micromips_addr): New
6533 functions.
6534 (mips_elf_make_msymbol_special): Handle microMIPS code.
6535 (msymbol_is_special): Rename to...
6536 (msymbol_is_mips16): ... this.
6537 (mips_make_symbol_special, mips_pc_is_mips16): Update
6538 accordingly.
6539 (msymbol_is_mips, msymbol_is_micromips): New functions.
6540 (mips16_to_32_reg): Rename to...
6541 (mips_reg3_to_reg): ... this.
6542 (mips_pc_is_mips, mips_pc_is_micromips): New functions.
6543 (mips_pc_isa): Likewise.
6544 (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
6545 code.
6546 (mips_fetch_instruction): Pass return status instead of printing
6547 an error message if requested. Handle microMIPS code. Bail out
6548 on an invalid ISA.
6549 (micromips_op): New macro.
6550 (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
6551 (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
6552 (b6s4_op, b7s3_reg): Likewise.
6553 (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
6554 (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
6555 (mips_insn_size): New function.
6556 (mips32_next_pc): Update mips_fetch_instruction call.
6557 (micromips_relative_offset7): New function.
6558 (micromips_relative_offset10): Likewise.
6559 (micromips_relative_offset16): Likewise.
6560 (micromips_pc_insn_size): Likewise.
6561 (micromips_bc1_pc): Likewise.
6562 (micromips_next_pc): Likewise.
6563 (unpack_mips16): Update mips_fetch_instruction call.
6564 (extended_mips16_next_pc): Update according to change to
6565 mips16_to_32_reg.
6566 (mips_next_pc): Update mips_pc_is_mips16 call. Handle microMIPS
6567 code.
6568 (mips16_scan_prologue): Update mips_fetch_instruction call.
6569 Update according to change to mips16_to_32_reg.
6570 (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
6571 (mips_insn16_frame_base_sniffer): Likewise.
6572 (micromips_decode_imm9): New function.
6573 (micromips_scan_prologue): Likewise.
6574 (mips_micro_frame_cache): Likewise.
6575 (mips_micro_frame_this_id): Likewise.
6576 (mips_micro_frame_prev_register): Likewise.
6577 (mips_micro_frame_sniffer): Likewise.
6578 (mips_micro_frame_unwind): New variable.
6579 (mips_micro_frame_base_address): New function.
6580 (mips_micro_frame_base): New variable.
6581 (mips_micro_frame_base_sniffer): New function.
6582 (mips32_scan_prologue): Update mips_fetch_instruction call.
6583 (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
6584 rather than for MIPS16.
6585 (mips_insn32_frame_base_sniffer): Likewise.
6586 (mips_addr_bits_remove): Handle microMIPS code.
6587 (deal_with_atomic_sequence): Rename to...
6588 (mips_deal_with_atomic_sequence): ... this. Update the type
6589 of the variable used to hold an instruction. Remove the ISA bit
6590 check. Update mips_fetch_instruction call.
6591 (micromips_deal_with_atomic_sequence): New function.
6592 (deal_with_atomic_sequence): Likewise.
6593 (mips_about_to_return): Handle microMIPS code. Update
6594 mips_fetch_instruction call.
6595 (heuristic_proc_start): Check for the standard MIPS ISA rather
6596 than for MIPS16. Update mips_pc_is_mips16 and
6597 mips_fetch_instruction calls. Handle microMIPS code.
6598 (mips_push_dummy_code): Handle microMIPS code.
6599 (mips_eabi_push_dummy_call): Likewise.
6600 (mips_o32_return_value): Update mips_pc_is_mips16 call.
6601 (mips_o64_push_dummy_call): Handle microMIPS code.
6602 (mips_o64_return_value): Update mips_pc_is_mips16 call.
6603 (is_delayed): Remove function.
6604 (mips_single_step_through_delay): Replace the call to is_delayed
6605 with mips32_instruction_has_delay_slot. Correct MIPS16 handling.
6606 Handle microMIPS code.
6607 (mips_skip_prologue): Update mips_pc_is_mips16 call. Handle
6608 microMIPS code.
6609 (mips32_in_function_epilogue_p): Update mips_fetch_instruction
6610 call.
6611 (micromips_in_function_epilogue_p): New function.
6612 (mips16_in_function_epilogue_p): Update mips_fetch_instruction
6613 call.
6614 (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
6615 Handle microMIPS.
6616 (gdb_print_insn_mips): Likewise.
6617 (mips_breakpoint_from_pc): Likewise.
6618 (mips_remote_breakpoint_from_pc): New function.
6619 (mips32_instruction_has_delay_slot): Simplify making use of the
6620 updated mips_fetch_instruction interface.
6621 (micromips_instruction_has_delay_slot): New function.
6622 (mips16_instruction_has_delay_slot): Simplify making use of the
6623 updated mips_fetch_instruction interface.
6624 (mips_adjust_breakpoint_address): Check for the standard MIPS
6625 ISA rather than for MIPS16 ISA. Update for unmake_compact_addr
6626 calls. Handle microMIPS code.
6627 (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
6628 (mips_skip_trampoline_code): Handle microMIPS code.
6629 (global_mips_compression): New function.
6630 (mips_gdbarch_init): Handle the compressed ISA setting from ELF
6631 file flags. Register the microMIPS remote breakpoint handler
6632 and heuristic frame unwinder.
6633 (show_mips_compression): New function.
6634 (_initialize_mips_tdep): Add the "set mips compression" and
6635 "show mips compression" commands.
6636
6637 2012-05-18 Sergio Durigan Junior <sergiodj@redhat.com>
6638
6639 * ada-lang.c:
6640 * ada-tasks.c:
6641 * ada-varobj.c:
6642 * amd64-darwin-tdep.c:
6643 * arm-symbian-tdep.c:
6644 * arm-tdep.c:
6645 * avr-tdep.c:
6646 * ax-gdb.c:
6647 * bfin-linux-tdep.c:
6648 * breakpoint.c:
6649 * c-valprint.c:
6650 * cli/cli-cmds.c:
6651 * coffread.c:
6652 * cp-support.c:
6653 * cris-tdep.c:
6654 * dwarf2-frame-tailcall.c:
6655 * dwarf2-frame.c:
6656 * dwarf2expr.c:
6657 * dwarf2loc.c:
6658 * dwarf2read.c:
6659 * elfread.c:
6660 * eval.c:
6661 * expprint.c:
6662 * f-valprint.c:
6663 * frv-tdep.c:
6664 * h8300-tdep.c:
6665 * hppa-hpux-tdep.c:
6666 * hppa-tdep.c:
6667 * hppanbsd-tdep.c:
6668 * i386-nto-tdep.c:
6669 * i386-tdep.c:
6670 * i387-tdep.c:
6671 * ia64-tdep.c:
6672 * jit.c:
6673 * linespec.c:
6674 * linux-tdep.c:
6675 * lm32-tdep.c:
6676 * m2-valprint.c:
6677 * m32c-tdep.c:
6678 * m32r-rom.c:
6679 * m32r-tdep.c:
6680 * m68k-tdep.c:
6681 * m68klinux-tdep.c:
6682 * mi/mi-main.c:
6683 * microblaze-tdep.c:
6684 * mips-linux-tdep.c:
6685 * mips-tdep.c:
6686 * mn10300-tdep.c:
6687 * p-valprint.c:
6688 * parse.c:
6689 * ppc-linux-tdep.c:
6690 * ppc-sysv-tdep.c:
6691 * printcmd.c:
6692 * python/py-finishbreakpoint.c:
6693 * python/py-inferior.c:
6694 * python/py-infthread.c:
6695 * python/py-type.c:
6696 * python/python.c:
6697 * remote-fileio.c:
6698 * remote-m32r-sdi.c:
6699 * remote-mips.c:
6700 * reverse.c:
6701 * rl78-tdep.c:
6702 * rs6000-aix-tdep.c:
6703 * rs6000-tdep.c:
6704 * s390-tdep.c:
6705 * score-tdep.c:
6706 * sh64-tdep.c:
6707 * skip.c:
6708 * solib-darwin.c:
6709 * solib-dsbt.c:
6710 * solib-frv.c:
6711 * sparc-tdep.c:
6712 * spu-multiarch.c:
6713 * spu-tdep.c:
6714 * stack.c:
6715 * symfile.c:
6716 * symtab.c:
6717 * tic6x-tdep.c:
6718 * tracepoint.c:
6719 * v850-tdep.c:
6720 * valarith.c:
6721 * valprint.c:
6722 * value.c:
6723 * xcoffread.c:
6724 * xtensa-tdep.c:
6725 * ada-lang.c:
6726 * ada-tasks.c:
6727 * ada-varobj.c:
6728 * amd64-darwin-tdep.c:
6729 * arm-symbian-tdep.c:
6730 * arm-tdep.c: Delete unused variables.
6731
6732 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
6733
6734 Rename $ddir to $datadir.
6735 * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
6736 * auto-load.c (auto_load_safe_path_vec_update)
6737 (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
6738 * configure: Regenerate.
6739 * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
6740 Likewise. Remove the 'use $ddir' help string.
6741
6742 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
6743
6744 * auto-load.c (show_auto_load_safe_path): Accept any combination of
6745 DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
6746
6747 2012-05-18 Tom Tromey <tromey@redhat.com>
6748
6749 PR exp/13907:
6750 * valprint.h (struct value_print_options) <symbol_print>: New
6751 field.
6752 * valprint.c (user_print_options): Add default for symbol_print.
6753 (show_symbol_print): New function.
6754 (generic_val_print): Respect symbol_print.
6755 (_initialize_valprint): Add "print symbol" setting.
6756 * f-valprint.c (f_val_print): Respect symbol_print.
6757 * c-valprint.c (c_val_print): Respect symbol_print.
6758 * NEWS: Update.
6759 * printcmd.c (print_address_symbolic): Return int. Ignore some
6760 zero-size symbols.
6761 (print_address_demangle): Return int.
6762 * defs.h: (print_address_symbolic): Return int.
6763 * value.h (print_address_demangle): Return int.
6764
6765 2012-05-18 Tom Tromey <tromey@redhat.com>
6766
6767 * valprint.c (val_print_string): Don't print leading space.
6768 * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
6769 print space before string or vtbl.
6770 * m2-valprint.c (print_unpacked_pointer): Optionally print space
6771 before string.
6772 * jv-valprint.c (java_value_print): Print space before string.
6773 * go-valprint.c (print_go_string): Print space before string.
6774 * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
6775 space before string.
6776 * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
6777 space before string or vtbl.
6778 * auxv.c (fprint_target_auxv): Print space after address.
6779
6780 2012-05-18 Tom Tromey <tromey@redhat.com>
6781
6782 * printcmd.c (print_address_demangle): Remove special case for 0.
6783
6784 2012-05-18 Tom Tromey <tromey@redhat.com>
6785
6786 * printcmd.c (print_address_demangle): Add 'opts' argument.
6787 * p-valprint.c (pascal_val_print): Update.
6788 * jv-valprint.c (java_val_print): Update.
6789 * value.h: Update.
6790 * valprint.c (generic_val_print): Update.
6791 (print_function_pointer_address): Add 'options' argument. Remove
6792 'addressprint' argument. Update.
6793 * m2-valprint.c (print_unpacked_pointer): Update.
6794 * gnu-v3-abi.c (print_one_vtable): Update.
6795 (gnuv3_print_method_ptr): Update.
6796 * f-valprint.c (f_val_print): Update.
6797 * cp-valprint.c (cp_print_value_fields): Update.
6798 * valprint.h (print_function_pointer_address): Update.
6799 * c-valprint.c (c_val_print): Update.
6800
6801 2012-05-18 Tom Tromey <tromey@redhat.com>
6802
6803 * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
6804 directly corresponding to the found psymtab.
6805 * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
6806 (dw2_find_pc_sect_symtab): Use it.
6807 * block.h (blockvector_contains_pc): Declare.
6808 * block.c (find_block_in_blockvector): New function.
6809 (blockvector_for_pc_sect): Use it.
6810 (blockvector_contains_pc): New function.
6811
6812 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6813
6814 * mips-tdep.h (mips_write_pc): New prototype.
6815 * mips-tdep.c (mips_write_pc): Make external, add description.
6816 * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
6817 add description.
6818
6819 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6820
6821 * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
6822 mips_regnum->pc.
6823 (mips_unwind_pc, mips_write_pc): Likewise.
6824 (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
6825 gdbarch_read_pc.
6826
6827 2012-05-17 Joel Brobecker <brobecker@adacore.com>
6828
6829 * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
6830 proc_warn, proc_error, proc_get_status, proc_flags,
6831 proc_why, proc_what, proc_nsysarg, proc_sysargs,
6832 proc_set_run_on_last_close, proc_unset_run_on_last_close,
6833 proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
6834 proc_stop_process, proc_wait_for_stop, proc_run_process,
6835 proc_set_traced_signals, proc_set_traced_faults,
6836 proc_set_traced_sysentry, proc_set_traced_sysexit,
6837 proc_set_held_signals, proc_get_held_signals,
6838 proc_get_traced_signals, proc_get_traced_faults,
6839 proc_get_traced_sysentry, proc_get_traced_sysexit,
6840 proc_clear_current_fault, proc_set_current_signal,
6841 proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
6842 proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
6843 proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
6844 proc_get_current_thread, proc_get_current_thread,
6845 proc_get_current_thread, proc_update_threads,
6846 proc_update_threads, proc_update_threads, proc_update_threads,
6847 proc_iterate_over_threads, procfs_find_new_threads,
6848 procfs_pid_to_str): Make static. Remove advance declaration.
6849 (proc_cursig): Make static. Conditionalized defintion on
6850 PROCFS_DONT_PIOCSSIG_CURSIG being defined.
6851 (proc_syscall, proc_set_kill_on_last_close,
6852 proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
6853 proc_get_pending_signals, proc_get_signal_actions,
6854 proc_trace_signal, proc_ignore_signal): Delete.
6855
6856 2012-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
6857
6858 * coffread.c (cs_section_address): Passing proper argument for
6859 `bfd_get_section_vma'.
6860 * dwarf2read.c (dwarf2_locate_sections): Likewise, for
6861 `bfd_get_section_flags'.
6862 * remote.c (remote_trace_set_readonly_regions): Likewise, for
6863 `bfd_get_section_vma'.
6864
6865 2012-05-16 Tom Tromey <tromey@redhat.com>
6866
6867 PR macros/13205:
6868 * macrotab.h: (macro_define_special): Declare.
6869 (enum macro_special_kind): New.
6870 (struct macro_definition) <argc, replacement>: Update comments.
6871 * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
6872 (macro_define_object_internal): New function.
6873 (macro_define_object): Use it.
6874 (macro_define_special): New function.
6875 (fixup_definition): New function.
6876 (macro_lookup_definition, foreach_macro_in_scope)
6877 (foreach_macro): Use fixup_definition.
6878 * macroexp.h (macro_stringify): Declare.
6879 * macroexp.c (free_buffer_return_text): New function.
6880 (stringify): Constify "arg".
6881 (macro_stringify): New function.
6882 * dwarf2read.c (macro_start_file): Call macro_define_special.
6883
6884 2012-05-16 Maciej W. Rozycki <macro@codesourcery.com>
6885 Maciej W. Rozycki <macro@mips.com>
6886
6887 * breakpoint.h (bp_location): Add related_address member.
6888 * inferior.h (get_return_value): Take a pointer to struct value
6889 instead of struct type for the function requested.
6890 * value.h (using_struct_return): Likewise.
6891 * gdbarch.sh (return_value): Take a pointer to struct value
6892 instead of struct type for the function requested.
6893 * breakpoint.c (set_breakpoint_location_function): Initialize
6894 related_address for bp_gnu_ifunc_resolver breakpoints.
6895 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
6896 requested function's address to gdbarch_return_value.
6897 * eval.c (evaluate_subexp_standard): Pass the requested
6898 function's address to using_struct_return.
6899 * infcall.c (call_function_by_hand): Pass the requested
6900 function's address to using_struct_return and
6901 gdbarch_return_value.
6902 * infcmd.c (get_return_value): Take a pointer to struct value
6903 instead of struct type for the function requested.
6904 (print_return_value): Update accordingly.
6905 (finish_command_continuation): Likewise.
6906 * stack.c (return_command): Pass the requested function's
6907 address to using_struct_return and gdbarch_return_value.
6908 * value.c (using_struct_return): Take a pointer to struct value
6909 instead of struct type for the function requested. Pass the
6910 requested function's address to gdbarch_return_value.
6911 * python/py-finishbreakpoint.c (finish_breakpoint_object):
6912 New function_value member, replacing function_type.
6913 (bpfinishpy_dealloc): Update accordingly.
6914 (bpfinishpy_pre_stop_hook): Likewise.
6915 (bpfinishpy_init): Likewise. Record the requested function's
6916 address.
6917 * mips-tdep.c (mips_fval_reg): New enum.
6918 (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
6919 words put in GP registers.
6920 (mips_o64_push_dummy_call): Update a comment.
6921 (mips_o32_return_value): Take a pointer to struct value instead
6922 of struct type for the function requested and use it to check if
6923 using the MIPS16 calling convention. Return the designated
6924 general purpose registers for floating-point values returned in
6925 MIPS16 mode.
6926 (mips_o64_return_value): Likewise.
6927 * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
6928 (ppc_sysv_abi_broken_return_value): Likewise.
6929 (ppc64_sysv_abi_return_value): Likewise.
6930 * alpha-tdep.c (alpha_return_value): Take a pointer to struct
6931 value instead of struct type for the function requested.
6932 * amd64-tdep.c (amd64_return_value): Likewise.
6933 * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
6934 * arm-tdep.c (arm_return_value): Likewise.
6935 * avr-tdep.c (avr_return_value): Likewise.
6936 * bfin-tdep.c (bfin_return_value): Likewise.
6937 * cris-tdep.c (cris_return_value): Likewise.
6938 * frv-tdep.c (frv_return_value): Likewise.
6939 * h8300-tdep.c (h8300_return_value): Likewise.
6940 (h8300h_return_value): Likewise.
6941 * hppa-tdep.c (hppa32_return_value): Likewise.
6942 (hppa64_return_value): Likewise.
6943 * i386-tdep.c (i386_return_value): Likewise.
6944 * ia64-tdep.c (ia64_return_value): Likewise.
6945 * iq2000-tdep.c (iq2000_return_value): Likewise.
6946 * lm32-tdep.c (lm32_return_value): Likewise.
6947 * m32c-tdep.c (m32c_return_value): Likewise.
6948 * m32r-tdep.c (m32r_return_value): Likewise.
6949 * m68hc11-tdep.c (m68hc11_return_value): Likewise.
6950 * m68k-tdep.c (m68k_return_value): Likewise.
6951 (m68k_svr4_return_value): Likewise.
6952 * m88k-tdep.c (m88k_return_value): Likewise.
6953 * mep-tdep.c (mep_return_value): Likewise.
6954 * microblaze-tdep.c (microblaze_return_value): Likewise.
6955 * mn10300-tdep.c (mn10300_return_value): Likewise.
6956 * moxie-tdep.c (moxie_return_value): Likewise.
6957 * mt-tdep.c (mt_return_value): Likewise.
6958 * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
6959 * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
6960 (ppc_sysv_abi_broken_return_value): Likewise.
6961 (ppc64_sysv_abi_return_value): Likewise.
6962 * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
6963 * rl78-tdep.c (rl78_return_value): Likewise.
6964 * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
6965 * rx-tdep.c (rx_return_value): Likewise.
6966 * s390-tdep.c (s390_return_value): Likewise.
6967 * score-tdep.c (score_return_value): Likewise.
6968 * sh-tdep.c (sh_return_value_nofpu): Likewise.
6969 (sh_return_value_fpu): Likewise.
6970 * sh64-tdep.c (sh64_return_value): Likewise.
6971 * sparc-tdep.c (sparc32_return_value): Likewise.
6972 * sparc64-tdep.c (sparc64_return_value): Likewise.
6973 * spu-tdep.c (spu_return_value): Likewise.
6974 * tic6x-tdep.c (tic6x_return_value): Likewise.
6975 * v850-tdep.c (v850_return_value): Likewise.
6976 * vax-tdep.c (vax_return_value): Likewise.
6977 * xstormy16-tdep.c (xstormy16_return_value): Likewise.
6978 * xtensa-tdep.c (xtensa_return_value): Likewise.
6979 * gdbarch.c: Regenerate.
6980 * gdbarch.h: Regenerate.
6981
6982 2012-05-15 Tom Tromey <tromey@redhat.com>
6983
6984 * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
6985
6986 2012-05-15 Joel Brobecker <brobecker@adacore.com>
6987
6988 * breakpoint.c (init_breakpoint_sal): Add quotes around part
6989 of command in two error message.
6990
6991 2012-05-15 Joel Brobecker <brobecker@adacore.com>
6992
6993 * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
6994
6995 2012-05-15 Joel Brobecker <brobecker@adacore.com>
6996
6997 * breakpoint.c (find_condition_and_thread): Minor reformatting.
6998
6999 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
7000
7001 * NEWS (show auto-load scripts-directory): Add forgotten command.
7002
7003 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
7004
7005 * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
7006 parameters.
7007
7008 2012-05-14 H.J. Lu <hongjiu.lu@intel.com>
7009
7010 * amd64-tdep.c: Include features/i386/x32.c and
7011 features/i386/x32-avx.c.
7012 (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
7013 initialize_tdesc_x32_avx.
7014
7015 2012-05-14 Stan Shebs <stan@codesourcery.com>
7016
7017 Add dynamic printf.
7018 * breakpoint.h (enum bptype): New type bp_dprintf.
7019 (struct breakpoint): New field extra_string.
7020 (struct breakpoint_ops): Add arg to create_breakpoints_sal.
7021 (create_breakpoint): Add extra_string arg.
7022 * breakpoint.c (dprintf_breakpoint_ops): New.
7023 (is_breakpoint): Add bp_dprintf.
7024 (bpstat_what): Add dprintf case.
7025 (bptype_string): Ditto.
7026 (print_one_breakpoint_location): Ditto.
7027 (init_bp_location): Ditto.
7028 (bkpt_print_mention): Ditto.
7029 (dprintf_style_enums): New array.
7030 (dprintf_style): New global.
7031 (dprintf_function): New global.
7032 (dprintf_channel): New global.
7033 (update_dprintf_command_list): New function.
7034 (update_dprintf_commands): New function.
7035 (init_breakpoint_sal): Add extra_string argument, handle it.
7036 (create_breakpoint_sal): Add extra_string argument.
7037 (create_breakpoints_sal): Add extra_string argument, update callers.
7038 (find_condition_and_thread): Add extra argument.
7039 (create_breakpoint): Add extra_string argument, record it.
7040 (dprintf_command): New function.
7041 (break_command_1): Add arg to create_breakpoint call.
7042 (handle_gnu_v3_exceptions): Ditto.
7043 (trace_command): Ditto.
7044 (ftrace_command): Ditto.
7045 (strace_command): Ditto.
7046 (bkpt_print_mention): Add dprintf case.
7047 (create_breakpoint_sal_default): Add extra_string argument.
7048 (_initialize_breakpoint): Add new commands.
7049 * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
7050 * python/py-breakpoint.c (bppy_init): Ditto.
7051 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
7052
7053 2012-05-14 Maciej W. Rozycki <macro@codesourcery.com>
7054
7055 * mips-tdep.c (mips_push_dummy_code): Correct description typo.
7056
7057 2012-05-14 Siva Chandra Reddy <sivachandra@google.com>
7058
7059 * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
7060 unsigned long long.
7061
7062 2012-05-13 Siva Chandra Reddy <sivachandra@google.com>
7063
7064 Add a new function gdb.find_pc_line to the Python API.
7065 * NEWS (Python Scripting): Add entry about the new function.
7066 * python/python.c (gdbpy_find_pc_line): New function which
7067 implements gdb.find_pc_line.
7068 (GdbMethods): Add entry for the new function.
7069
7070 2012-05-12 Pedro Alves <palves@redhat.com>
7071
7072 * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
7073 initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
7074
7075 2012-05-12 Eli Zaretskii <eliz@gnu.org>
7076
7077 * inferior.c: Include completer.h
7078 (initialize_inferiors): Set completer of add-inferior to
7079 filename_completer.
7080
7081 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
7082
7083 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
7084 gdbarch_ptr_bit for x32 core dump.
7085
7086 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
7087
7088 * amd64-linux-tdep.c: Include features/i386/x32-linux.c
7089 and features/i386/x32-avx-linux.c.
7090
7091 2012-05-11 Stan Shebs <stan@codesourcery.com>
7092 Kwok Cheung Yeung <kcy@codesourcery.com>
7093
7094 * NEWS: Describe new info os commands.
7095 * common/linux-osdata.c (PID_T, TIME_T): Define.
7096 (MAX_PID_T_STRLEN): New.
7097 (linux_common_core_of_thread): Add comment. Change to use PID_T and
7098 MAX_PID_T_STRLEN.
7099 (command_from_pid): Add comment. Change to use PID_T.
7100 (commandline_from_pid): Change to use PID_T.
7101 (user_from_pid): Add comment.
7102 (get_process_owner): Add comment. Change to use PID_T and
7103 MAX_PID_T_STRLEN.
7104 (get_number_of_cpu_cores): Add comment.
7105 (get_cores_used_by_process): Add comment. Change to use PID_T and
7106 MAX_PID_T_STRLEN.
7107 (linux_xfer_osdata_processes): Change to use PID_T and
7108 MAX_PID_T_STRLEN.
7109 (compare_processes): New function.
7110 (linux_xfer_osdata_processgroups): New function.
7111 (linux_xfer_osdata_threads): Change to use PID_T.
7112 (linux_xfer_osdata_fds): New function.
7113 (format_socket_state, print_sockets): New functions.
7114 (union socket_addr): New union.
7115 (linux_xfer_osdata_isockets): New function.
7116 (time_from_time_t, group_from_gid): New functions.
7117 (linux_xfer_osdata_shm): New function.
7118 (linux_xfer_osdata_sem): New function.
7119 (linux_xfer_osdata_msg): New function.
7120 (linux_xfer_osdata_modules): New function.
7121 (osdata_table): Add new entries.
7122 * common/buffer.c (buffer_xml_printf): Add support for long and
7123 long long format specifiers.
7124
7125 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
7126
7127 * amd64-linux-tdep.h (tdesc_x32_linux): New.
7128 (tdesc_x32_avx_linux): Likewise.
7129
7130 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7131
7132 Implement multi-component --with-auto-load-dir.
7133 * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
7134 entries.
7135 (--with-auto-load-safe-path): Update the default value description.
7136 * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
7137 New.
7138 (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output. Remove
7139 GDB_DATADIR NULL check. Replace GDB_DATADIR/auto-load by
7140 AUTO_LOAD_DIR. Support $ddir and multiple components in it.
7141 (_initialize_auto_load): Initialize also auto_load_dir. Install new
7142 "set auto-load scripts-directory".
7143 * config.in: Regenerate.
7144 * configure: Regenerate.
7145 * configure.ac (--with-auto-load-dir): New configure option.
7146 (--auto-load-safe-path): Change the default to --with-auto-load-dir.
7147
7148 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7149
7150 Provide $ddir substitution for --with-auto-load-safe-path.
7151 * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
7152 entries.
7153 * auto-load.c: Include observer.h.
7154 (auto_load_safe_path_vec_update): Call substitute_path_component for
7155 each component. New variable ddir_subst.
7156 (auto_load_gdb_datadir_changed): New function.
7157 (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
7158 AUTO_LOAD_SAFE_PATH. New comment.
7159 (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
7160 AUTO_LOAD_SAFE_PATH. Install auto_load_gdb_datadir_changed.
7161 * config.in: Regenerate.
7162 * configure: Regenerate.
7163 * configure.ac (--auto-load-safe-path): Rename
7164 DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH. Default to
7165 GDB_DATADIR/auto-load.
7166 * defs.h (substitute_path_component): New declaration.
7167 * top.c: Include observer.h.
7168 (set_gdb_datadir): New function.
7169 (init_main): Install it for "set data-directory".
7170 * utils.c (substitute_path_component): New function.
7171
7172 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7173
7174 Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
7175 * auto-load.c (auto_load_objfile_script): Remove check for NULL
7176 DEBUG_FILE_DIRECTORY. Handle multiple components of
7177 DEBUG_FILE_DIRECTORY.
7178
7179 2012-05-10 Tom Tromey <tromey@redhat.com>
7180
7181 * dwarf2read.c (recursively_write_psymbols): New function.
7182 (write_psymtabs_to_index): Use it.
7183
7184 * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
7185 field.
7186 (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
7187 (load_partial_comp_unit): Update.
7188 (queue_comp_unit): Add argument 'pretend_language'.
7189 (process_queue): Update.
7190 (psymtab_to_symtab_1): Skip dependencies that have a user.
7191 (load_partial_comp_unit_reader): Give meaning to the 'data'
7192 argument.
7193 (load_full_comp_unit): Add 'pretend_language' argument.
7194 (process_full_comp_unit): Add 'pretend_language' argument. Set
7195 language on CU.
7196 (process_imported_unit_die, read_file_scope, read_type_unit_scope):
7197 Update.
7198 (maybe_queue_comp_unit): Add 'pretend_language' argument.
7199 (follow_die_offset, follow_die_sig, read_signatured_type_reader):
7200 Update.
7201 (prepare_one_comp_unit): Add 'pretend_language' argument.
7202
7203 * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
7204 (struct dwarf2_per_objfile) <just_read_cus>: New field.
7205 (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
7206 (dw2_do_instantiate_symtab): Check whether symtab was read in
7207 before queueing.
7208 (dw2_instantiate_symtab): Add assertion. Call
7209 process_cu_includes.
7210 (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
7211 (partial_symtab_p): New typedef.
7212 (set_partial_user): New function.
7213 (dwarf2_build_psymtabs_hard): Use set_partial_user.
7214 (scan_partial_symbols): Add imported CU to imported_symtabs.
7215 (dwarf2_psymtab_to_symtab): Call process_cu_includes.
7216 (psymtab_to_symtab_1): Do nothing if psymtab is readin.
7217 (get_symtab, recursively_compute_inclusions)
7218 (compute_symtab_includes, process_cu_includes)
7219 (process_imported_unit_die): New functions.
7220 (process_die) <DW_TAG_imported_unit>: New case.
7221 (dwarf2_per_objfile_free): Free 'imported_symtabs'.
7222
7223 * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
7224 comment.
7225 (struct partial_die_info) <locdesc>: Remove.
7226 <d>: New field.
7227 (process_psymtab_comp_unit): Add 'read_partial' argument.
7228 Update.
7229 (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
7230 (scan_partial_symbols): Handle DW_TAG_imported_unit.
7231 (add_partial_symbol): Update.
7232 (process_die): Handle DW_TAG_partial_unit.
7233 (read_file_scope): Update comment.
7234 (load_partial_dies): Handle DW_TAG_imported_unit.
7235 (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
7236 (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
7237
7238 2012-05-10 Tom Tromey <tromey@redhat.com>
7239
7240 * cc-with-dwz.sh: New file.
7241
7242 2012-05-10 Tom Tromey <tromey@redhat.com>
7243
7244 * symtab.h (struct symtab) <includes, user>: New fields.
7245 * block.h (struct block_iterator) <d, idx, which>: New fields.
7246 * block.c (initialize_block_iterator, find_iterator_symtab)
7247 (block_iterator_step, block_iter_name_step)
7248 (block_iter_match_step): New functions.
7249 (block_iterator_first, block_iterator_next)
7250 (block_iter_name_first, block_iter_name_next)
7251 (block_iter_match_first, block_iter_match_next): Rewrite.
7252 (get_block_symtab): New function.
7253
7254 2012-05-10 Tom Tromey <tromey@redhat.com>
7255
7256 * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
7257 set_block_symtab.
7258 * jit.c (finalize_symtab): Use allocate_global_block,
7259 set_block_symtab.
7260 * buildsym.c (finish_block_internal): New function, from old
7261 finish_block.
7262 (finish_block): Rewrite.
7263 (end_symtab): Use finish_block_internal, set_block_symtab.
7264 * block.h (struct global_block): New.
7265 (allocate_global_block, set_block_symtab): Declare.
7266 * block.c (allocate_global_block, set_block_symtab): New
7267 functions.
7268
7269 2012-05-10 Tom Tromey <tromey@redhat.com>
7270
7271 * psymtab.c (partial_map_expand_apply): Add assertion.
7272 (partial_map_symtabs_matching_filename): Skip included psymtabs.
7273 (psymtab_to_symtab): Find unshared psymtab.
7274 (dump_psymtab): Print including psymtabs.
7275 (recursively_search_psymtabs): New function.
7276 (expand_symtabs_matching_via_partial): Use it.
7277 * psympriv.h (struct partial_symtab) <user, searched_flag>: New
7278 fields.
7279 (enum psymtab_search_status): New.
7280
7281 2012-05-10 Tom Tromey <tromey@redhat.com>
7282
7283 * tracepoint.c (scope_info): Update.
7284 * symtab.c (lookup_block_symbol, iterate_over_symbols)
7285 (find_pc_sect_symtab, search_symbols)
7286 (default_make_symbol_completion_list_break_on)
7287 (make_file_symbol_completion_list): Update.
7288 * symmisc.c (dump_symtab_1): Update.
7289 * stack.c (print_frame_args, iterate_over_block_locals)
7290 (print_frame_labels, iterate_over_block_arg_vars): Update.
7291 * python/py-block.c (block_object) <dict>: Remove.
7292 <block>: New field.
7293 <iter>: Change type.
7294 (blpy_iter): Update.
7295 (blpy_block_syms_iternext): Update.
7296 * psymtab.c (map_block): Use block iterators.
7297 * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
7298 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
7299 * mdebugread.c (parse_symbol, mylookup_symbol): Update.
7300 * infrun.c (check_exception_resume): Update.
7301 * cp-support.c (make_symbol_overload_list_block): Update.
7302 * coffread.c (patch_opaque_types): Update.
7303 * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
7304 * block.h (struct block_iterator): New.
7305 (block_iterator_first, block_iterator_next, block_iter_name_first)
7306 (block_iter_name_next, block_iter_match_first)
7307 (block_iter_match_next): Declare.
7308 (ALL_BLOCK_SYMBOLS): Redefine.
7309 * block.c (block_iterator_first, block_iterator_next)
7310 (block_iter_name_first, block_iter_name_next)
7311 (block_iter_match_first, block_iter_match_next): New functions.
7312 * ada-lang.c (ada_add_block_symbols)
7313 (ada_make_symbol_completion_list): Use block iterator.
7314
7315 2012-05-10 Tom Tromey <tromey@redhat.com>
7316
7317 * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
7318 (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
7319 (lookup_partial_symbol, find_last_source_symtab_from_partial)
7320 (read_psymtabs_with_filename, map_matching_symbols_psymtab)
7321 (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
7322 Update.
7323
7324 2012-05-10 Joel Brobecker <brobecker@adacore.com>
7325
7326 * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
7327 print-file-var-lib2.c, print-file-var-main.c and
7328 print-file-var.exp (located in gdb/testsuite/gdb.base).
7329
7330 2012-05-10 Joel Brobecker <brobecker@adacore.com>
7331
7332 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
7333 try locating the symbol in the symbol's own objfile first, before
7334 extending the search to all objfiles.
7335 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
7336 out of lookup_symbol_aux_symtabs.
7337 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
7338 Replace extracted-out code by call to lookup_symbol_aux_objfile.
7339 Do not search EXCLUDE_OBJFILE.
7340 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
7341 (lookup_symbol_global): Search for matches in the block's objfile
7342 first, before searching all other objfiles.
7343
7344 2012-05-10 Tristan Gingold <gingold@adacore.com>
7345
7346 * printcmd.c (set_command): Add pre/post inc/dec.
7347
7348 2012-05-09 Frank Ch. Eigler <fche@redhat.com>
7349
7350 * gdb.1: Document -ex option.
7351
7352 2012-05-09 Joel Brobecker <brobecker@adacore.com>
7353
7354 * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
7355 * inferior.h (AT_SYMBOL): Delete.
7356
7357 2012-05-09 Joel Brobecker <brobecker@adacore.com>
7358
7359 * mips-tdep.c (mips_push_dummy_code): New function.
7360 (mips_gdbarch_init): Set the gdbarch call_dummy_location to
7361 ON_STACK and install mips_push_dummy_code as our gdbarch
7362 push_dummy_code routine.
7363
7364 2012-05-09 Pedro Alves <palves@redhat.com>
7365
7366 * target.c (set_maintenance_target_async_permitted): Rename to ...
7367 (set_target_async_command): ... this.
7368 (show_maintenance_target_async_permitted): Rename to ...
7369 (show_target_async_command): ... this.
7370 (initialize_targets): Adjust.
7371
7372 2012-05-08 Doug Evans <dje@google.com>
7373
7374 * go-exp.y (classify_name): Add missing assignment of fields of
7375 yylval.ssym.
7376
7377 2012-05-08 Eli Zaretskii <eliz@gnu.org>
7378
7379 Display the ">" prompt in interactive mode while reading canned
7380 commands, even when the current interpreter is MI.
7381
7382 * interps.c (interp_set_temp): New function.
7383
7384 * interps.h (interp_set_temp): Add prototype.
7385
7386 * cli/cli-script.c (restore_interp): New cleanup function.
7387 (read_command_lines): Temporarily override the current interpreter
7388 with CLI and arrange for restoring the original one.
7389
7390 2012-05-12 Joel Sherrill <joel.sherrill@oarcorp.com>
7391
7392 * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
7393
7394 2012-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
7395
7396 * probe.c (parse_probes): Move conditional to check for
7397 debuginfo files from here...
7398 * stap-probe.c (stap_get_probes): ... to here.
7399
7400 2012-05-07 Mark Kettenis <kettenis@gnu.org>
7401 H.J. Lu <hongjiu.lu@intel.com>
7402
7403 * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
7404 `movl %esp, %ebp' for the X32 ABI.
7405
7406 2012-05-07 Tom Tromey <tromey@redhat.com>
7407
7408 * dwarf2read.c (dwarf_tag_name): Return const char *. Use
7409 get_DW_TAG_name.
7410 (dwarf_attr_name): Return const char *. Use get_DW_AT_name.
7411 (dwarf_form_name): Return const char *. Use get_DW_FORM_name.
7412 (dwarf_stack_op_name): Remove.
7413 (dwarf_cfi_name): Return const char *. Use get_DW_ATE_name.
7414 (decode_locdesc): Use get_DW_OP_name.
7415 * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
7416 (dwarf2_compile_expr_to_ax): Likewise.
7417 (disassemble_dwarf_expression): Likewise.
7418 * dwarf2expr.h: (dwarf_stack_op_name): Remove.
7419
7420 2012-05-07 Chung-Lin Tang <cltang@codesourcery.com>
7421
7422 * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
7423 (sh_linux_sigtramp_cache): New function.
7424 (sh_linux_sigreturn_init): New function.
7425 (sh_linux_rt_sigreturn_init): New function.
7426 (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
7427 patterns.
7428 (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
7429 syscall codes.
7430 (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
7431 (sh_linux_rt_sigreturn_tramp_frame): Likewise.
7432 (sh_linux_init_abi): Add init calls to register new tramp_frame
7433 definitions under 32-bit SH, update comments.
7434
7435 2012-05-07 Pedro Alves <palves@redhat.com>
7436
7437 PR gdb/10952
7438
7439 * amd64-linux-tdep.c: Include glibc-tdep.h.
7440 (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
7441 gdbarch_skip_solib_resolver callback.
7442
7443 2012-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
7444
7445 * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
7446 back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
7447 (show_auto_load_safe_path): Check any-directory by comparison with "/".
7448 (add_auto_load_safe_path): Change the error message.
7449 (_initialize_auto_load): Change the "safe-path" help text.
7450 * configure: Regenerate
7451 * configure.ac (--without-auto-load-safe-path): Set
7452 WITH_AUTO_LOAD_SAFE_PATH to /.
7453
7454 2012-05-05 Sergio Durigan Junior <sergiodj@redhat.com>
7455
7456 * stap-probe.h: Do not include unecessary `probe.h'.
7457
7458 2012-05-05 Alan Modra <amodra@gmail.com>
7459
7460 * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
7461 bfd_und_section_ptr.
7462 * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
7463 and bfd_com_section_ptr.
7464
7465 2012-05-04 Joel Brobecker <brobecker@adacore.com>
7466
7467 * MAINTAINERS (Past Maintainers): Add Chris Faylor.
7468
7469 2012-05-04 Joel Brobecker <brobecker@adacore.com>
7470
7471 * windows-nat.h (segment_register_p_ftype): New typedef.
7472 (windows_set_segment_register_p): Add declaration.
7473 * windows-nat.c (segment_register_p): New static global.
7474 (windows_set_segment_register_p): New function.
7475 (do_windows_fetch_inferior_registers): Add special handling
7476 for segment registers.
7477 * amd64-windows-nat.c: #include "amd64-tdep.h".
7478 (amd64_windows_segment_register_p): New function.
7479 (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
7480 * i386-windows-nat.c: #include "i386-tdep.h".
7481 (i386_windows_segment_register_p): New function.
7482 (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
7483
7484 2012-05-04 Tristan Gingold <gingold@adacore.com>
7485
7486 * printcmd.c (set_command): Emit a warning if the expression is not
7487 an assignment.
7488
7489 2012-05-03 Joel Brobecker <brobecker@adacore.com>
7490
7491 * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
7492 Make static.
7493
7494 2012-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
7495
7496 * stap-probe.c (stap_is_operator): Change declaration.
7497 (stap_get_opcode): Change return value.
7498 (stap_parse_argument_1): Update calls to `stap_get_opcode' and
7499 `stap_parse_argument_1'.
7500
7501 2012-05-03 Pedro Alves <pedro@codesourcery.com>
7502
7503 * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
7504 debug log.
7505
7506 2012-05-03 Siva Chandra Reddy <sivachandra@google.com>
7507
7508 Add two new methods global_block and static_block to gdb.Symtab
7509 objects.
7510 * NEWS (Python scripting): Add entry about the new methods.
7511 * python/py-symtab.c (stpy_global_block): New function which
7512 implements the gdb.Symtab.global_block() method.
7513 (stpy_static_block): New function which implements the
7514 gdb.Symtab.static_block() method.
7515 (symtab_object_methods): Add entries for the two new methods.
7516
7517 2012-05-03 Doug Evans <dje@google.com>
7518
7519 * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
7520 files.
7521
7522 2012-05-03 Yao Qi <yao@codesourcery.com>
7523
7524 * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
7525 space.
7526 (i386_process_record): Ditto.
7527
7528 2012-05-02 Joel Brobecker <brobecker@adacore.com>
7529
7530 * infcall.c (unwind_on_signal_p): Make static.
7531
7532 2012-05-02 Joel Brobecker <brobecker@adacore.com>
7533
7534 * sol-thread.c (solaris_pid_to_str): Make static.
7535 (_initialize_sol_thread): Add prototype.
7536
7537 2012-05-02 Joel Brobecker <brobecker@adacore.com>
7538
7539 * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
7540
7541 2012-05-02 Christopher Faylor <me.cygwin2012@cgf.cx>
7542
7543 * MAINTAINERS: Remove myself.
7544
7545 2012-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7546
7547 Fix --without-auto-load-safe-path for MS-Windows host platform.
7548 * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
7549
7550 2012-05-02 Eli Zaretskii <eliz@gnu.org>
7551
7552 * gdb_curses.h: Undefine KEY_EVENT before including curses
7553 headers. Move "#undef MOUSE_MOVED" before any curses header
7554 inclusion.
7555
7556 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
7557
7558 * features/i386/i386-mmx-linux.c: Regenerate.
7559 * features/rs6000/powerpc-32.c: Likewise.
7560 * features/rs6000/powerpc-32l.c: Likewise.
7561 * features/rs6000/powerpc-403.c: Likewise.
7562 * features/rs6000/powerpc-403gc.c: Likewise.
7563 * features/rs6000/powerpc-405.c: Likewise.
7564 * features/rs6000/powerpc-505.c: Likewise.
7565 * features/rs6000/powerpc-601.c: Likewise.
7566 * features/rs6000/powerpc-602.c: Likewise.
7567 * features/rs6000/powerpc-603.c: Likewise.
7568 * features/rs6000/powerpc-604.c: Likewise.
7569 * features/rs6000/powerpc-64.c: Likewise.
7570 * features/rs6000/powerpc-64l.c: Likewise.
7571 * features/rs6000/powerpc-750.c: Likewise.
7572 * features/rs6000/powerpc-860.c: Likewise.
7573 * features/rs6000/powerpc-e500.c: Likewise.
7574 * features/rs6000/powerpc-e500l.c: Likewise.
7575 * features/rs6000/powerpc-isa205-32l.c: Likewise.
7576 * features/rs6000/powerpc-isa205-64l.c: Likewise.
7577 * features/rs6000/rs6000.c: Likewise.
7578
7579 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
7580
7581 * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
7582 variable.
7583 * stap-probe.c (stap_parse_single_operand) <reg_suffix,
7584 reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
7585 (stap_parse_argument) <e>: Likewise.
7586 (handle_stap_probe) <byte_order>: Likewise.
7587
7588 2012-04-30 Doug Evans <dje@google.com>
7589
7590 * dwarf2read.c (init_cutu_and_read_dies): Renamed from
7591 init_and_read_dies_worker. All callers updated.
7592 (init_cu_and_read_dies, init_tu_and_read_dies): Delete. All calls
7593 replaced with init_cutu_and_read_dies.
7594 (load_partial_comp_unit): Pass 1 for use_existing_cu.
7595 (find_partial_die): Remove FIXME. Don't free current CU.
7596
7597 2012-04-30 Sterling Augustine <saugustine@google.com>
7598
7599 * contrib: New directory.
7600 * contrib/test_pubnames_and_indexes.py: New file.
7601
7602 2012-04-30 Doug Evans <dje@google.com>
7603
7604 * dwarf2read.c (dwarf_decode_macros): New arg section_name.
7605 All callers updated.
7606 (init_cu_die_reader): Verify the section is non-empty.
7607 (dwarf_decode_line_header): Don't dereference section->asection
7608 until we know the section is present.
7609
7610 2012-04-29 Sergio Durigan Junior <sergiodj@redhat.com>
7611
7612 * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
7613 probes.
7614
7615 2012-04-29 Yao Qi <yao@codesourcery.com>
7616
7617 * gdb-code-style.el: New hook gdb-markup-hook
7618 and gdb-comment-hook.
7619
7620 2012-04-28 Doug Evans <dje@google.com>
7621
7622 Initial support for Fission. http://gcc.gnu.org/wiki/DebugFission
7623 * symfile.c (default_symfile_relocate): Use sectp->owner instead of
7624 objfile->obfd.
7625 * symfile.h (dwarf2_debug_sections): New member addr.
7626 * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
7627 (ctx_no_get_addr_index): New function.
7628 * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
7629 (ctx_no_get_addr_index): Declare.
7630 * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
7631 * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
7632 (dwarf_expr_ctx_funcs): Update.
7633 (needs_get_addr_index): New function.
7634 (needs_frame_ctx_funcs): Update.
7635 * dwarf2loc.h (dwarf2_read_addr_index): Declare.
7636 * dwarf2read.c: #include "gdbcore.h".
7637 (dwarf2_per_objfile): New members addr, dwo_files.
7638 (dwarf2_elf_names): Add entry for addr.
7639 (struct dwo_section_names): New type.
7640 (dwo_section_names): New static global.
7641 (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
7642 (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
7643 old debug_types_section member updated to use this.
7644 Rename member debug_types_section to info_or_types_section,
7645 all uses updated.
7646 (signatured_type): Rename member type_offset to type_offset_in_tu,
7647 all uses updated. New member type_offset_in_section.
7648 (struct dwo_sections): New type.
7649 (struct dwo_unit): New type.
7650 (struct dwo_file): New type.
7651 (die_reader_specs): New member dwo_file.
7652 (dwarf2_locate_sections): Watch for .debug_addr.
7653 (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
7654 (dwarf2_read_section): Get bfd of section from bfd's asection,
7655 instead of objfile.
7656 (create_cus_from_index): Initialize the_cu->info_or_types_section.
7657 (create_signatured_type_table_from_index): Initialize
7658 sig_type->info_or_types_section.
7659 (dw2_get_file_names): Statement lists for type units with DWO files
7660 live in the DWO file.
7661 (create_debug_types_hash_table): New function.
7662 (create_all_type_units): Rewrite.
7663 (init_cu_die_reader): New arg dwo_file, all callers updated.
7664 (init_and_read_dies_worker): Get section from
7665 this_cu->info_or_types_section. Set sig_type->type_offset_in_section.
7666 Watch for DW_AT_GNU_dwo_name and if present lookup the file and
7667 continue reading the CU/TU from there.
7668 (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
7669 updated. Get section from this_cu->info_or_types_section.
7670 (create_all_comp_units): Initialize this_cu->info_or_types_section.
7671 (skip_one_die): New cases DW_FORM_GNU_addr_index,
7672 DW_FORM_GNU_str_index.
7673 (hash_dwo_file, eq_dwo_file): New functions.
7674 (allocate_dwo_file_hash_table): New function.
7675 (hash_dwo_unit, eq_dwo_unit): New functions.
7676 (allocate_dwo_unit_table): New function.
7677 (dwarf2_locate_dwo_sections): New function.
7678 (struct create_dwo_info_table_data): New type.
7679 (create_debug_info_hash_table_reader): New function.
7680 (create_debug_info_hash_table): New function.
7681 (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
7682 (lookup_dwo_file): New function.
7683 (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
7684 (free_dwo_file, free_dwo_file_cleanup): New functions.
7685 (free_dwo_file_from_slot, free_dwo_files): New functions.
7686 (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
7687 (dwarf2_record_block_ranges): Ditto.
7688 (read_partial_die): Ditto.
7689 (process_enumeration_scope): Update to use type_offset_in_section.
7690 (read_full_die_1): New function.
7691 (read_full_die): Rewrite.
7692 (read_attribute_value): New cases DW_FORM_GNU_addr_index,
7693 DW_FORM_GNU_str_index.
7694 (read_addr_index_1, read_addr_index): New functions.
7695 (read_addr_index_from_leb128): New function.
7696 (struct dwarf2_read_addr_index_data): New type.
7697 (dwarf2_read_addr_index_reader): New function.
7698 (dwarf2_read_addr_index): New function.
7699 (read_str_index): New function.
7700 (leb128_size): New function.
7701 (dwarf_decode_line_header): Delete arg abfd, all callers updated.
7702 If processing a type unit from a DWO file, get the line section
7703 from the DWO file.
7704 (var_decode_location): Watch for DW_OP_GNU_addr_index.
7705 (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
7706 DW_FORM_GNU_str_index.
7707 (lookup_die_type): Check whether section offset of type's die is
7708 known before looking it up. Remove assert. Condition can
7709 legimately happen for inter-cu type references.
7710 (dwarf_attr_name): Handle Fission attributes.
7711 (dwarf_form_name): Handle Fission forms.
7712 (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
7713 DW_FORM_GNU_str_index.
7714 (follow_die_sig): Update to use type_offset_in_section.
7715 (decode_locdesc): New case DW_OP_GNU_addr_index.
7716 (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
7717 DW_FORM_GNU_str_index.
7718 (cu_debug_loc_section): New function.
7719 (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
7720 (dwarf2_per_objfile_free): Unmap .debug_addr section.
7721 Free DWO files if present.
7722 * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
7723
7724 Refactor DIE reading.
7725 * dwarf2read.c (dwarf2_per_objfile): Replace members
7726 debug_info_type_hash and debug_types_type_hash with die_type_hash.
7727 (die_reader_specs): New member "die_section". Temporarily make
7728 member "buffer" non-const, pending constifying all info_ptr uses.
7729 (die_reader_func_ftype): New typedef.
7730 (dw2_get_file_names_reader): New function.
7731 (dw2_get_file_names): Rewrite.
7732 (read_and_check_type_unit_head): Rename arg type_offset to
7733 type_offset_in_tu.
7734 (create_all_type_units): Improve debugging message.
7735 Improve dummy type unit check.
7736 (init_cu_die_reader): New arg "section". All callers updated.
7737 (init_and_read_dies_worker): New function.
7738 (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
7739 (init_cutu_and_read_dies_no_follow): New function.
7740 (init_cutu_and_read_dies_simple): New function.
7741 (process_psymtab_comp_unit_reader): New function.
7742 (process_psymtab_comp_unit): Delete args section,
7743 is_debug_types_section. Rewrite. All callers updated.
7744 (process_psymtab_type_unit): Renamed from process_type_comp_unit.
7745 All callers updated. Rewrite.
7746 (load_partial_comp_unit_reader): New function.
7747 (load_partial_comp_unit): Rewrite.
7748 (skip_children): New arg reader. Delete args buffer, cu.
7749 All callers updated.
7750 (skip_one_die): New arg reader. Delete args buffer, cu.
7751 All callers updated.
7752 (locate_pdi_sibling): New arg reader. Delete args buffer, abfd, cu.
7753 All callers updated.
7754 (load_full_comp_unit_reader): New function.
7755 (load_full_comp_unit): Rewrite.
7756 (read_comp_unit): Delete.
7757 (read_die_and_children_1): Delete, contents moved ...
7758 (read_die_and_children): ... here.
7759 (dwarf2_read_abbrevs): New arg abbrev_section. All callers updated.
7760 (load_partial_dies): New arg reader. Delete args abfd, buffer, cu.
7761 All callers updated.
7762 (read_partial_die): New arg reader. Delete args abfd, buffer, cu.
7763 All callers updated.
7764 (find_partial_die): Rewrite load_all_dies support.
7765 (read_attribute_value): New arg reader. Delete args abfd, cu.
7766 All callers updated.
7767 (read_attribute): New arg reader. Delete args abfd, cu.
7768 All callers updated.
7769 (load_full_type_unit): Add assert.
7770 (read_signatured_type_reader): New function.
7771 (read_signatured_type): Rewrite.
7772 (free_stack_comp_unit): Remove call to age_cached_comp_units.
7773 (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
7774 All callers updated. Set per_cu->cu = NULL after freeing it.
7775 (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
7776 (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
7777 (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
7778 (set_die_type): Update.
7779 (get_die_type_at_offset): Update.
7780 (read_file_scope): Call prepare_one_comp_unit.
7781 (read_type_unit_scope): Ditto.
7782 (prepare_one_comp_unit): Set producer if present.
7783
7784 2012-04-28 Sergio Durigan Junior <sergiodj@redhat.com>
7785
7786 * probe.c (compile_rx_or_error): Silence ARI warning about missing
7787 gettext function on `error'.
7788
7789 2012-04-27 Doug Evans <dje@google.com>
7790
7791 * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
7792 is empty.
7793
7794 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
7795 Tom Tromey <tromey@redhat.com>
7796
7797 * breakpoint.c (struct breakpoint_objfile_data)
7798 <longjmp_searched>,<longjmp_probes>,<exception_searched>,
7799 <exception_probes>: New fields.
7800 (free_breakpoint_probes): New function.
7801 (create_longjmp_master_breakpoint): Prefer SystemTap probe over
7802 `_Unwind_DebugHook'.
7803 (create_exception_master_breakpoint): Likewise.
7804 (_initialize_breakpoint): Registering cleanup for SystemTap probes.
7805 * infrun.c: Including necessary header files for handling SystemTap
7806 probes.
7807 (handle_inferior_event): Handling longjmp breakpoint and exceptions
7808 via SystemTap probes.
7809 (check_exception_resume): Remove `func' argument. Handle exception
7810 unwinding breakpoint set via a SystemTap probe.
7811 (insert_exception_resume_from_probe): New function.
7812
7813 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
7814 Tom Tromey <tromey@redhat.com>
7815 Jan Kratochvil <jan.kratochvil@redhat.com>
7816
7817 * Makefile.in (SFILES): Add `probe' and `stap-probe'.
7818 (COMMON_OBS): Likewise.
7819 (HFILES_NO_SRCDIR): Add `probe'.
7820 * NEWS: Mention support for static and SystemTap probes.
7821 * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
7822 SystemTap probes' arguments parser.
7823 * arm-linux-tdep.c: Including headers needed to perform the parsing
7824 of SystemTap probes' arguments.
7825 (arm_stap_is_single_operand): New function.
7826 (arm_stap_parse_special_token): Likewise.
7827 (arm_linux_init_abi): Initializing proper fields used by SystemTap
7828 probes' arguments parser.
7829 * ax-gdb.c (require_rvalue): Removing static declaration.
7830 (gen_expr): Likewise.
7831 * ax-gdb.h (gen_expr): Declaring function.
7832 (require_rvalue): Likewise.
7833 * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
7834 (bkpt_probe_breakpoint_ops): New variable.
7835 (momentary_breakpoint_from_master): Set the `probe' value.
7836 (add_location_to_breakpoint): Likewise.
7837 (break_command_1): Using proper breakpoint_ops according to the
7838 argument passed by the user in the command line.
7839 (bkpt_probe_insert_location): New function.
7840 (bkpt_probe_remove_location): Likewise.
7841 (bkpt_probe_create_sals_from_address): Likewise.
7842 (bkpt_probe_decode_linespec): Likewise.
7843 (tracepoint_probe_create_sals_from_address): Likewise.
7844 (tracepoint_probe_decode_linespec): Likewise.
7845 (tracepoint_probe_breakpoint_ops): New variable.
7846 (trace_command): Using proper breakpoint_ops according to the
7847 argument passed by the user in the command line.
7848 (initialize_breakpoint_ops): Initializing breakpoint_ops for
7849 static probes on breakpoints and tracepoints.
7850 * breakpoint.h (struct bp_location) <probe>: New field.
7851 * cli-utils.c (skip_spaces_const): New function.
7852 (extract_arg): Likewise.
7853 * cli-utils.h (skip_spaces_const): Likewise.
7854 (extract_arg): Likewise.
7855 * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
7856 * configure.ac: Append `stap-probe.o' to be generated when ELF
7857 support is present.
7858 * configure: Regenerate.
7859 * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
7860 * elfread.c: Include `probe.h' and `arch-utils.h'.
7861 (probe_key): New variable.
7862 (elf_get_probes): New function.
7863 (elf_get_probe_argument_count): Likewise.
7864 (elf_evaluate_probe_argument): Likewise.
7865 (elf_compile_to_ax): Likewise.
7866 (elf_symfile_relocate_probe): Likewise.
7867 (stap_probe_key_free): Likewise.
7868 (elf_probe_fns): New variable.
7869 (elf_sym_fns): Add `sym_probe_fns' value.
7870 (elf_sym_fns_lazy_psyms): Likewise.
7871 (elf_sym_fns_gdb_index): Likewise.
7872 (_initialize_elfread): Initialize objfile cache for static
7873 probes.
7874 * gdb_vecs.h (struct probe): New forward declaration.
7875 (probe_p): New VEC declaration.
7876 * gdbarch.c: Regenerate.
7877 * gdbarch.h: Regenerate.
7878 * gdbarch.sh (stap_integer_prefix): New variable.
7879 (stap_integer_suffix): Likewise.
7880 (stap_register_prefix): Likewise.
7881 (stap_register_suffix): Likewise.
7882 (stap_register_indirection_prefix): Likewise.
7883 (stap_register_indirection_suffix): Likewise.
7884 (stap_gdb_register_prefix): Likewise.
7885 (stap_gdb_register_suffix): Likewise.
7886 (stap_is_single_operand): New function.
7887 (stap_parse_special_token): Likewise.
7888 (struct stap_parse_info): Forward declaration.
7889 * i386-tdep.c: Including headers needed to perform the parsing
7890 of SystemTap probes' arguments.
7891 (i386_stap_is_single_operand): New function.
7892 (i386_stap_parse_special_token): Likewise.
7893 (i386_elf_init_abi): Initializing proper fields used by SystemTap
7894 probes' arguments parser.
7895 * i386-tdep.h (i386_stap_is_single_operand): New function.
7896 (i386_stap_parse_special_token): Likewise.
7897 * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
7898 * mipsread.c (ecoff_sym_fns): Likewise.
7899 * objfiles.c (objfile_relocate1): Support relocation for static
7900 probes.
7901 * parse.c (prefixify_expression): Remove static declaration.
7902 (initialize_expout): Likewise.
7903 (reallocate_expout): Likewise.
7904 * parser-defs.h (initialize_expout): Declare function.
7905 (reallocate_expout): Likewise.
7906 (prefixify_expression): Likewise.
7907 * ppc-linux-tdep.c: Including headers needed to perform the parsing
7908 of SystemTap probes' arguments.
7909 (ppc_stap_is_single_operand): New function.
7910 (ppc_stap_parse_special_token): Likewise.
7911 (ppc_linux_init_abi): Initializing proper fields used by SystemTap
7912 probes' arguments parser.
7913 * probe.c: New file, for generic statically defined probe support.
7914 * probe.h: Likewise.
7915 * s390-tdep.c: Including headers needed to perform the parsing of
7916 SystemTap probes' arguments.
7917 (s390_stap_is_single_operand): New function.
7918 (s390_gdbarch_init): Initializing proper fields used by SystemTap
7919 probes' arguments parser.
7920 * somread.c (som_sym_fns): Add `sym_probe_fns' value.
7921 * stap-probe.c: New file, for SystemTap probe support.
7922 * stap-probe.h: Likewise.
7923 * symfile.h: Include `gdb_vecs.h'.
7924 (struct sym_probe_fns): New struct.
7925 (struct sym_fns) <sym_probe_fns>: New field.
7926 * symtab.c (init_sal): Initialize `probe' field.
7927 * symtab.h (struct probe): Forward declaration.
7928 (struct symtab_and_line) <probe>: New field.
7929 * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
7930 locations.
7931 (stop_tracing): Likewise.
7932 * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
7933
7934 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
7935 Tom Tromey <tromey@redhat.com>
7936
7937 * ax-gdb.c (gen_expr): Clean up code to handle internal variables
7938 and to compile agent expressions.
7939 * infrun.c (siginfo_make_value): New argument `ignore'.
7940 (siginfo_funcs): New struct.
7941 (_initialize_infrun): New argument when calling
7942 `create_internalvar_type_lazy'.
7943 * thread.c (thread_id_make_value): New argument `ignore'.
7944 (thread_funcs): New struct.
7945 (_initialize_thread): New argument when calling
7946 `create_internalvar_type_lazy'.
7947 * tracepoint.c (sdata_make_value): New argument `ignore'.
7948 (sdata_funcs): New struct.
7949 (_initialize_tracepoint): New argument when calling
7950 `create_internalvar_type_lazy'.
7951 * value.c (make_value): New struct.
7952 (create_internalvar_type_lazy): New argument `data'.
7953 (compile_internalvar_to_ax): New function.
7954 (value_of_internalvar): Properly handling `make_value' case.
7955 (clear_internalvar): Likewise.
7956 (show_convenience): Adding `TRY_CATCH' block.
7957 * value.h (internalvar_make_value): Delete, replace by...
7958 (struct internalvar_funcs): ... this.
7959 (create_internalvar_type_lazy) <fun>: Delete argument.
7960 (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
7961 (compile_internalvar_to_ax): New function.
7962 * windows-tdep.c (tlb_make_value): New argument `ignore'.
7963 (tlb_funcs): New struct.
7964 (_initialize_windows_tdep): New argument when calling
7965 `create_internalvar_type_lazy'.
7966
7967 2012-04-27 Mark Wielaard <mjw@redhat.com>
7968
7969 * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
7970 see whether it is an address or a constant offset from DW_AT_low_pc.
7971 (dwarf2_record_block_ranges): Likewise.
7972 (read_partial_die): Likewise.
7973
7974 2012-04-26 Mark Wielaard <mjw@redhat.com>
7975
7976 * MAINTAINERS (Write After Approval): Add myself to the list.
7977
7978 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
7979
7980 * proc-utils.h (proc_prettyprint_signalset): New prototype.
7981 (proc_prettyprint_signal): Likewise.
7982 (proc_prettyprint_faultset): Likewise.
7983 (proc_prettyprint_fault): Likewise.
7984 (proc_prettyprint_actionset): Likewise.
7985 (proc_prettyprint_flags): Move to new proc-flags.c section.
7986 (proc_prettyfprint_flags): New prototype.
7987 * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
7988 (proc_syscall, proc_cursig): Likewise.
7989 (proc_set_kill_on_last_close): Likewise.
7990 (proc_unset_kill_on_last_close): Likewise.
7991 (proc_set_watchpoint): Make static.
7992 (proc_delete_dead_threads): Likewise.
7993 (procfs_set_watchpoint): Likewise.
7994 (_initialize_procfs): Add prototype.
7995 * proc-events.c: Include proc-utils.h.
7996 (init_syscall_table): Make static.
7997 * proc-api.c (_initialize_proc_api): Add prototype.
7998 * proc-flags.c: Include proc-utils.h.
7999
8000 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
8001
8002 * configure.ac: Add AC_ARG_PROGRAM.
8003 * configure: Regenerate.
8004
8005 2012-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
8006
8007 Fix DW_AT_lower_bound defaults for DWARF-4+.
8008 * dwarf2read.c (read_subrange_type): Remove initialization of low and
8009 high. New variable low_default_is_valid. Implement DWARF-4+
8010 DW_AT_lower_bound defaults. Print complaint for DW_AT_lower_bound with
8011 no default by the DWARF standard.
8012
8013 2012-04-26 Maciej W. Rozycki <macro@mips.com>
8014 Maciej W. Rozycki <macro@codesourcery.com>
8015
8016 * infrun.c (handle_inferior_event): Move the check for return
8017 trampolines ahead of the check for function trampolines.
8018 * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
8019 * mips-tdep.c (mips_str_mips16_call_stub): New variable.
8020 (mips_str_mips16_ret_stub): Likewise.
8021 (mips_str_call_fp_stub): Likewise.
8022 (mips_str_call_stub): Likewise.
8023 (mips_str_fn_stub): Likewise.
8024 (mips_str_pic): Likewise.
8025 (mips_in_frame_stub): New function.
8026 (mips_unwind_pc): Return the return address rather than the PC
8027 if the PC of an intermediate frame is inside a call thunk.
8028 (mips_is_stub_suffix): New function.
8029 (mips_is_stub_mode): Likewise.
8030 (mips_get_mips16_fn_stub_pc): Likewise.
8031 (mips_skip_mips16_trampoline_code): Update to handle all the
8032 currently generated stub types. Don't recurse into __fn_stub
8033 thunks. Remove heuristics to handle stubs beyond etext/_etext.
8034 Use cooked register accesses.
8035 (mips_in_return_stub): Reintroduce function.
8036 (mips_skip_trampoline_code): Traverse trampolines recursively.
8037 (mips_gdbarch_init): Handle MIPS16 return trampolines.
8038
8039 2012-04-26 Joel Brobecker <brobecker@adacore.com>
8040
8041 GDB 7.4.1 released.
8042
8043 2012-04-26 Jonathan Larmour <jifl@eCosCentric.com>
8044
8045 * arm-tdep.h (VFP_REGISTER_SIZE): Define.
8046 * features/arm-with-m-vfp-d16.xml: New file. Describes
8047 Cortex-M with VFPv4-sp-d16 FPU register layout.
8048 * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
8049 * features/arm-with-m-vfp-d16.c: New. Generated from above.
8050 * arm-tdep.c: Include arm-with-m-vfp-d16.c.
8051 (arm-register_g_packet_guesses): Add vfp-d16 guess.
8052 (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
8053
8054 2012-04-25 Doug Evans <dje@google.com>
8055
8056 * cli/cli-decode.c (print_doc_line): Use stream instead of
8057 current_uiout.
8058
8059 2012-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
8060
8061 * features/arm-with-iwmmxt.c: Regenerate.
8062 * features/arm-with-m-fpa-layout.c: Likewise.
8063 * features/arm-with-m.c: Likewise.
8064 * features/arm-with-neon.c: Likewise.
8065 * features/arm-with-vfpv2.c: Likewise.
8066 * features/arm-with-vfpv3.c: Likewise.
8067 * features/mips-dsp-linux.c: Likewise.
8068 * features/mips-linux.c: Likewise.
8069 * features/mips64-dsp-linux.c: Likewise.
8070 * features/mips64-linux.c: Likewise.
8071 * features/s390-linux32.c: Likewise.
8072 * features/s390-linux32v1.c: Likewise.
8073 * features/s390-linux32v2.c: Likewise.
8074 * features/s390-linux64.c: Likewise.
8075 * features/s390-linux64v1.c: Likewise.
8076 * features/s390-linux64v2.c: Likewise.
8077 * features/s390x-linux64.c: Likewise.
8078 * features/s390x-linux64v1.c: Likewise.
8079 * features/s390x-linux64v2.c: Likewise.
8080 * features/tic6x-c62x-linux.c: Likewise.
8081 * features/tic6x-c62x.c: Likewise.
8082 * features/tic6x-c64x-linux.c: Likewise.
8083 * features/tic6x-c64x.c: Likewise.
8084 * features/tic6x-c64xp-linux.c: Likewise.
8085 * features/tic6x-c64xp.c: Likewise.
8086 * target-descriptions.c: Only generate `field_type' and `type'
8087 variables when needed.
8088
8089 2012-04-25 Fredrik Hederstierna <fredrikh.hederstierna@securitas-direct.com>
8090
8091 * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
8092
8093 2012-04-25 Doug Evans <dje@google.com>
8094
8095 Initial pass at Go language support.
8096 * NEWS: Mention Go.
8097 * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
8098 go-valprint.c.
8099 (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
8100 (YYFILES): Add go-exp.c.
8101 (YYOBJ): Add go-exp.o.
8102 (local-maintainer-clean): Delete go-exp.c.
8103 * defs.h (enum language): Add language_go.
8104 * dwarf2read.c: #include "go-lang.h".
8105 (fixup_go_packaging): New function.
8106 (process_full_comp_unit): Call it when processing Go CUs.
8107 (dwarf2_physname): Add Go support.
8108 (read_file_scope): Handle missing language spec for GNU Go.
8109 (set_cu_language): Handle DW_LANG_Go.
8110 * go-exp.y: New file.
8111 * go-lang.h: New file.
8112 * go-lang.c: New file.
8113 * go-typeprint.c: New file.
8114 * go-valprint.c: New file.
8115 * symtab.c: #include "go-lang.h".
8116 (symbol_set_language): Handle language_go.
8117 (symbol_find_demangled_name, symbol_set_names): Ditto.
8118 (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
8119
8120 2012-04-24 Jim Meyering <meyering@redhat.com>
8121
8122 avoid a few strncpy-induced buffer overruns
8123 * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
8124 fname and psargs before trying to concatenate.
8125 * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
8126 "name" before applying strchr.
8127
8128 2012-04-25 Siva Chandra Reddy <sivachandra@google.com>
8129
8130 * CONTRIBUTE: Use unified diff instead of context diff when
8131 generating patches.
8132
8133 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
8134
8135 * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
8136 code. Handle JR.HB correctly.
8137
8138 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
8139
8140 * mips-tdep.c
8141 (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
8142 with the other MIPS16 helpers.
8143
8144 2012-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
8145
8146 * observer.sh: Conditionally declare `args', thus cleaning up
8147 unused instances of this variable.
8148
8149 2012-04-24 Yao Qi <yao@codesourcery.com>
8150
8151 Revert this patch to allow breakpoint always-inserted
8152 in record target.
8153 2011-12-05 Pedro Alves <pedro@codesourcery.com>
8154 * breakpoint.c: Include record.h.
8155 (breakpoints_always_inserted_mode): Return false when the record
8156 target is in use.
8157
8158 * breakpoint.c (iterate_over_bp_locations): New.
8159 * breakpoint.h: Declare.
8160 New typedef walk_bp_location_callback.
8161 * record.c (record_open): Call record_init_record_breakpoints.
8162 (record_sync_record_breakpoints): New.
8163 (record_init_record_breakpoints): New.
8164 * NEWS: Mention supporting breakpoint always-inserted mode in
8165 record target.
8166
8167 2012-04-24 Marc Khouzam <marc.khouzam@ericsson.com>
8168
8169 * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
8170 any thread.
8171
8172 2012-04-24 Yao Qi <yao@codesourcery.com>
8173
8174 * breakpoint.c (ep_is_catchpoint): Renamed to ...
8175 (is_catchpoint): ... it.
8176 (print_one_breakpoint_location): Caller update.
8177 * breakpoint.h: Update declaration.
8178
8179 2012-04-23 David S. Miller <davem@davemloft.net>
8180
8181 * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
8182
8183 2012-04-23 Tom Tromey <tromey@redhat.com>
8184
8185 * buildsym.c (add_free_pendings): Remove.
8186 * buildsym.h (add_free_pendings): Remove.
8187
8188 2012-04-23 Doug Evans <dje@google.com>
8189
8190 * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
8191 attr.u.unsnd instead of attr.u.addr.
8192 (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
8193 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
8194 DW_FORM_ref_udata.
8195 (dump_die_shallow): Update cases DW_FORM_ref_addr,
8196 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4. Add cases DW_FORM_ref8,
8197 DW_FORM_ref_udata.
8198 (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
8199
8200 2012-04-23 Maciej W. Rozycki <macro@codesourcery.com>
8201
8202 * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
8203 (mips_o32_return_value): Likewise.
8204 (mips_o64_return_value): Likewise.
8205
8206 2012-04-21 Paul Hilfinger <hilfinger@adacore.com>
8207
8208 * ada-lang.c (ada_evaluate_subexp): Add cases for
8209 TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
8210 their treatment in eval.c.
8211
8212 2012-04-21 David S. Miller <davem@davemloft.net>
8213
8214 * sparc-tdep.c (X_DISP10): Define.
8215 (sparc_analyze_control_transfer): Handle compare-and-branch.
8216
8217 2012-04-21 Jonathan Larmour <jifl@eCosCentric.com>
8218
8219 * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
8220 * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
8221
8222 2012-04-20 Nigel Stephens <nigel@mips.com>
8223 Maciej W. Rozycki <macro@codesourcery.com>
8224
8225 * mips-tdep.c (mips_float_register_p): New function.
8226 (mips_convert_register_float_case_p): Use mips_float_register_p.
8227 (mips_register_type): Likewise.
8228 (mips_print_register): Likewise.
8229 (print_gp_register_row): Likewise.
8230 (mips_print_registers_info): Likewise.
8231
8232 2012-04-20 Shun-Yen Lu <dark.asparagus@gmail.com>
8233
8234 * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
8235 of mips16 symbols.
8236
8237 2012-04-20 Andrew Pinski <apinski@cavium.com>
8238
8239 * MAINTAINERS (Write After Approval): Add myself to the list.
8240
8241 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
8242
8243 * MAINTAINERS: Update my e-mail address.
8244
8245 2012-04-20 Pedro Alves <palves@redhat.com>
8246
8247 * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
8248 $srcdir.
8249 * configure: Regenerate.
8250
8251 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
8252
8253 * cp-support.h: Include `gdb_vecs.h'. Delete `const_char_ptr' VEC
8254 declaration.
8255 * gdb_vecs.h: Declare `const_char_ptr' VEC.
8256
8257 2012-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8258
8259 Fix compilation compatibility with python-2.4
8260 * python/py-type.c (convert_field): Cast ADDRSTRING for
8261 PyObject_SetAttrString as non-const. New comment.
8262
8263 2012-04-19 Tom Tromey <tromey@redhat.com>
8264
8265 * top.c (quit_target): Use all_cleanups.
8266 * main.c (captured_command_loop): Use all_cleanups.
8267 * exceptions.c (throw_exception): Use all_cleanups.
8268
8269 2012-04-19 Pedro Alves <palves@redhat.com>
8270
8271 * Makefile.in (GNULIB_BUILDDIR): New.
8272 (LIBGNU, INCGNU, GNULIB_H): Adjust.
8273 (SUBDIRS): Add $(GNULIB_BUILDDIR).
8274 (CLEANDIRS). Remove gnulib/import.
8275 (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
8276 (all-lib): Ditto.
8277 (distclean): Remove the $(GNULIB_BUILDDIR) directory.
8278 (gnulib/import/Makefile): Replace gnulib/import with
8279 $(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
8280 (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
8281 (aclocal_m4_deps): Remove the gnulib dependencies. Add
8282 acx_configure_dir.m4.
8283 * acinclude.m4: Include acx_configure_dir.m4.
8284 * acx_configure_dir.m4: New file.
8285 * aclocal.m4: Regenerate.
8286 * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
8287 calls. Configure gnulib using ACX_CONFIGURE_DIR.
8288 (GNULIB): New variable.
8289 (GNULIB_STDINT_H): Adjust.
8290 (AC_OUTPUT): Don't output gnulib/Makefile.
8291 * gdb/defs.h: Include build-gnulib/config.h.
8292 * aclocal.m4: Regenerate.
8293 * config.in: Regenerate.
8294 * configure: Regenerate.
8295
8296 * gnulib/Makefile.in: New file.
8297 * gnulib/configure.ac: New file.
8298 * gnulib/aclocal.m4: New file.
8299 * gnulib/config.in: New file.
8300 * gnulib/configure: New file.
8301 * gnulib/: Re-run gnulib-tool to adjust.
8302
8303 2012-04-19 Doug Evans <dje@google.com>
8304
8305 * cleanups.h (struct cleanup): Move to cleanups.c.
8306 (make_cleanup_dtor_ftype): New typedef.
8307 (make_cleanup_dtor): Use it.
8308 (ALL_CLEANUPS): Replace with ...
8309 (all_cleanups): ... this. Declare. All uses updated.
8310 * cleanups.c: #include "gdb_assert.h".
8311 (sentinel_cleanup): New static global.
8312 (SENTINEL_CLEANUP): Define.
8313 (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
8314 (make_my_cleanup2): Assert result is non-NULL.
8315 (all_cleanups): New function.
8316 (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
8317 of NULL.
8318
8319 2012-04-19 Pedro Alves <palves@redhat.com>
8320
8321 * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
8322 Adjust paths to gnulib imported files.
8323
8324 2012-04-19 Pedro Alves <palves@redhat.com>
8325
8326 * gnulib/: Move whole directory ...
8327 * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
8328 * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
8329 (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
8330 (aclocal_m4_deps): Adjust.
8331 * aclocal.m4: Regenerate.
8332 * configure: Regenerate.
8333 * configure.ac: Adjust AC_OUTPUT output.
8334
8335 2012-04-19 Yao Qi <yao@codesourcery.com>
8336
8337 * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
8338 (vec.o): New rule.
8339 * vec.c: Move it ...
8340 * common/vec.c: ... here.
8341 * vec.h: Move it ...
8342 * common/vec.h: ... here.
8343
8344 2012-04-19 Yao Qi <yao@codesourcery.com>
8345
8346 * gdb-code-style.el: New.
8347
8348 2012-04-18 Pedro Alves <palves@redhat.com>
8349
8350 Update gnulib from latest git.
8351 (639ea5ae15e39fe48d43e04864b2997301e4b969)
8352
8353 * gnulib/Makefile.am: Update.
8354 * gnulib/dummy.c: Update.
8355 * gnulib/extra/arg-nonnull.h: Update.
8356 * gnulib/extra/c++defs.h: Update.
8357 * gnulib/extra/update-copyright: Update.
8358 * gnulib/extra/warn-on-use.h: Update.
8359 * gnulib/inttypes.in.h: Update.
8360 * gnulib/m4/00gnulib.m4: Update.
8361 * gnulib/m4/extensions.m4: Update.
8362 * gnulib/m4/gnulib-cache.m4: Update.
8363 * gnulib/m4/gnulib-common.m4: Update.
8364 * gnulib/m4/gnulib-comp.m4: Update.
8365 * gnulib/m4/gnulib-tool.m4: Update.
8366 * gnulib/m4/include_next.m4: Update.
8367 * gnulib/m4/inttypes-pri.m4: Update.
8368 * gnulib/m4/inttypes.m4: Update.
8369 * gnulib/m4/longlong.m4: Update.
8370 * gnulib/m4/memchr.m4: Update.
8371 * gnulib/m4/memmem.m4: Update.
8372 * gnulib/m4/mmap-anon.m4: Update.
8373 * gnulib/m4/multiarch.m4: Update.
8374 * gnulib/m4/onceonly.m4: Update.
8375 * gnulib/m4/stddef_h.m4: Update.
8376 * gnulib/m4/stdint.m4: Update.
8377 * gnulib/m4/string_h.m4: Update.
8378 * gnulib/m4/warn-on-use.m4: Update.
8379 * gnulib/m4/wchar_h.m4: Update.
8380 * gnulib/m4/wchar_t.m4: Update.
8381 * gnulib/m4/wint_t.m4: Update.
8382 * gnulib/memchr.c: Update.
8383 * gnulib/memmem.c: Update.
8384 * gnulib/stddef.in.h: Update.
8385 * gnulib/stdint.in.h: Update.
8386 * gnulib/str-two-way.h: Update.
8387 * gnulib/string.in.h: Update.
8388 * gnulib/wchar.in.h: Update.
8389
8390 * gnulib/extra/arg-nonnull.h: Delete.
8391 * gnulib/extra/c++defs.h: Delete.
8392 * gnulib/extra/warn-on-use.h: Delete.
8393 * gnulib/m4/wchar_h.m4: Delete.
8394 * gnulib/m4/wint_t.m4: Delete.
8395 * gnulib/wchar.in.h: Delete.
8396
8397 * gnulib/extra/snippets/arg-nonnull.h: New.
8398 * gnulib/extra/snippets/c++defs.h: New.
8399 * gnulib/extra/snippets/warn-on-use.h: New.
8400
8401 * aclocal.m4: Regenerate.
8402 * config.in: Regenerate.
8403 * configure: Regenerate.
8404 * gnulib/Makefile.in: Regenerate.
8405
8406 2012-04-18 Pedro Alves <palves@redhat.com>
8407
8408 Reimport the update-copyright module from gnulib
8409 (250b80067c1e1d8faa0c42fb572f721975b929c5).
8410
8411 * configure: Regenerate.
8412 * gnulib/Makefile.am: Update.
8413 * gnulib/Makefile.in: Regenerate.
8414 * gnulib/extra/update-copyright: Update.
8415 * gnulib/m4/gnulib-cache.m4: Update.
8416 * gnulib/m4/gnulib-comp.m4: Update.
8417
8418 2012-04-18 Tristan Gingold <gingold@adacore.com>
8419
8420 * configure.ac (aix): Put -lpthread into libs.
8421 * configure: Regenerate.
8422
8423 2012-04-18 Tom Tromey <tromey@redhat.com>
8424
8425 * linespec.c (convert_linespec_to_sals): Don't use
8426 SYMBOL_OBJ_SECTION.
8427 (compare_msymbols): Arguments are minsym_and_objfile, not
8428 minimal_symbol*. Don't use SYMBOL_OBJ_SECTION.
8429
8430 2012-04-18 Pedro Alves <palves@redhat.com>
8431
8432 Revert gnulib/ part of:
8433 2011-01-01 Joel Brobecker <brobecker@adacore.com>
8434 Copyright year update in most files (performed by copyright.sh).
8435
8436 2012-04-18 Jan Kratochvil <jan.kratochvil@redhat.com>
8437
8438 Fix 64-bit constants on 32-bit hosts.
8439 * dwarf2read.c (read_unsigned_leb128): Change declaration return type
8440 from unsigned long to ULONGEST.
8441 (read_signed_leb128): Change declaration return type from long to
8442 LONGEST.
8443 (dwarf2_const_value_attr): Change declaration parameter value from long
8444 to LONGEST.
8445 (dwarf2_compute_name): Change variable value from long to LONGEST.
8446 (read_unsigned_leb128): Change return type, variable result and some
8447 casts from unsigned long to ULONGEST.
8448 (read_signed_leb128): Change return type, variable result and some
8449 casts from long to LONGEST.
8450 (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
8451 value from long to LONGEST.
8452 (dwarf2_const_value): Change variable value from long to LONGEST.
8453 * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
8454 plongest and hex_string.
8455 * symtab.h (struct general_symbol_info): Change ivalue from long to
8456 LONGEST, remove the comment.
8457 * tracepoint.c (validate_actionline, collect_symbol, scope_info):
8458 Change SYMBOL_VALUE format strings to use plongest and hex_string.
8459
8460 2012-04-18 Siddhesh Poyarekar <siddhesh@redhat.com>
8461
8462 PR symtab/7259:
8463 * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
8464 * ada-lang.c (ada_discrete_type_high_bound)
8465 (ada_discrete_type_low_bound): Fix function comment. Use
8466 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8467 (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
8468 (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8469 * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
8470 Use TYPE_FIELD_ENUMVAL.
8471 * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
8472 (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8473 * c-typeprint.c (c_type_print_base): Move variable lastval to inner
8474 block, change it to LONGEST. Use TYPE_FIELD_ENUMVAL for
8475 TYPE_CODE_ENUM.
8476 * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
8477 * dwarf2read.c (process_enumeration_scope): Likewise.
8478 * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
8479 field.bitpos.
8480 (class StructMainTypePrettyPrinter): Support also
8481 FIELD_LOC_KIND_ENUMVAL.
8482 * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
8483 TYPE_CODE_ENUM.
8484 (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8485 (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
8486 * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
8487 (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment. New
8488 field enumval.
8489 (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
8490 accommodate enumval.
8491 (struct call_site): Adjust loc_kind to accommodate enumval.
8492 (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
8493 (TYPE_FIELD_ENUMVAL): New macros.
8494 * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
8495 * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
8496 TYPE_CODE_ENUM.
8497 * p-typeprint.c (pascal_type_print_base): Likewise.
8498 * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
8499 enumval.
8500 * python/lib/gdb/types.py (make_enum_dict): Likewise.
8501 * python/py-type.c (convert_field): New variable addrstring. Use
8502 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8503 (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
8504 * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
8505 * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
8506 TYPE_CODE_ENUM.
8507 * valprint.c (generic_val_print): Likewise.
8508
8509 2012-04-17 Doug Evans <dje@google.com>
8510
8511 * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
8512
8513 * dwarf2read.c: Whitespace fixes.
8514 (lookup_signatured_type): Tweak comment.
8515 (get_die_type_at_offset): Fix comment.
8516
8517 2012-04-17 Joel Brobecker <brobecker@adacore.com>
8518
8519 * xcoffread.c (xcoff_secnum_to_sections): New function.
8520 (secnum_to_section, secnum_to_bfd_section): Reimplement
8521 using xcoff_secnum_to_sections. Rename "secnum" parameter
8522 into "n_scnum".
8523 (RECORD_MINIMAL_SYMBOL): Delete.
8524 (record_minimal_symbol): New function.
8525 (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
8526 by call to record_minimal_symbol and set misc_func_recorded
8527 to 1. Set last_csect_sec to the XCOFF section index instead
8528 of GDB's section_offset index. Update calls to
8529 prim_record_minimal_symbol_and_info to pass the BFD section
8530 as well.
8531
8532 2012-04-17 Joel Brobecker <brobecker@adacore.com>
8533
8534 * xcoffread.c (read_xcoff_symtab): Delete variables
8535 last_csect_val and last_csect_sec and associated code.
8536
8537 2012-04-17 Doug Evans <dje@google.com>
8538
8539 * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
8540 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8541 * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
8542 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
8543
8544 * cleanups.h: New file.
8545 * cleanups.c: New file.
8546 * Makefile.in (SFILES): Add cleanups.c.
8547 (HFILES_NO_SRCDIR): Add cleanups.h.
8548 (COMMON_OBS): Add cleanups.o.
8549 * defs.h (struct cleanup): Moved to cleanups.h.
8550 (do_cleanups,do_final_cleanups): Ditto.
8551 (discard_cleanups,discard_final_cleanups): Ditto
8552 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8553 (save_cleanups,save_final_cleanups): Ditto.
8554 (restore_cleanups,restore_final_cleanups): Ditto.
8555 (null_cleanup): Ditto.
8556 (make_my_cleanup,make_my_cleanup2): Ditto.
8557 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8558 * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
8559 (do_cleanups,do_final_cleanups): Ditto.
8560 (discard_cleanups,discard_final_cleanups): Ditto
8561 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8562 (save_cleanups,save_final_cleanups): Ditto.
8563 (restore_cleanups,restore_final_cleanups): Ditto.
8564 (null_cleanup): Ditto.
8565 (make_my_cleanup,make_my_cleanup2): Ditto.
8566 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8567
8568 * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
8569 make_my_cleanup.
8570 (make_cleanup_dyn_string_delete): Ditto.
8571 (make_cleanup_ui_file_delete): Ditto.
8572 (make_cleanup_ui_out_redirect_pop): Ditto.
8573 (make_cleanup_free_section_addr_info): Ditto.
8574 (make_cleanup_restore_integer): Ditto.
8575 (make_cleanup_unpush_target): Ditto.
8576 (make_cleanup_value_free_to_mark): Ditto.
8577 (make_cleanup_value_free): Ditto.
8578 (make_cleanup_free_so): Ditto.
8579
8580 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8581
8582 New option "set debug auto-load".
8583 * NEWS: New commands "set debug auto-load" and "show debug auto-load".
8584 * auto-load.c (debug_auto_load, show_debug_auto_load: New.
8585 (auto_load_safe_path_vec_update)
8586 (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
8587 if DEBUG_AUTO_LOAD.
8588 (file_is_auto_load_safe): New parameters debug_fmt and ....
8589 Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
8590 (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
8591 caller by explanatory string.
8592 (_initialize_auto_load): Register "set debug auto-load".
8593 * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
8594 and ....
8595 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8596 (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
8597 by explanatory string.
8598 * main.c (captured_main): Likewise.
8599 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
8600 (source_section_scripts): Likewise.
8601
8602 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8603
8604 New option "set auto-load safe-path".
8605 * NEWS: New commands "set auto-load safe-path"
8606 and "show auto-load safe-path".
8607 * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
8608 (auto_load_safe_path, auto_load_safe_path_vec)
8609 (auto_load_safe_path_vec_update, set_auto_load_safe_path)
8610 (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
8611 (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
8612 (source_gdb_script_for_objfile): New variable is_safe. Call
8613 file_is_auto_load_safe. Return if it is not.
8614 (struct loaded_script): New field loaded.
8615 (maybe_add_script): Add parameter loaded. Initialize SLOT with it.
8616 (print_script): Use LOADED indicator instead of FULL_PATH. Change
8617 output "Missing" to "No".
8618 (_initialize_auto_load): New variable cmd. Initialize
8619 auto_load_safe_path. Register "set auto-load safe-path",
8620 "show auto-load safe-path" and "add-auto-load-safe-path".
8621 * auto-load.h (maybe_add_script): Add parameter loaded.
8622 (file_is_auto_load_safe): New declaration.
8623 * config.in: Regenerate.
8624 * configure: Regenerate.
8625 * configure.ac: New parameters --with-auto-load-safe-path
8626 and --without-auto-load-safe-path.
8627 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8628 (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
8629 * main.c (captured_main): Check file_is_auto_load_safe for
8630 LOCAL_GDBINIT.
8631 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
8632 variable is_safe. Call file_is_auto_load_safe. Return if it is not.
8633 (source_section_scripts): Call file_is_auto_load_safe. Return if it is
8634 not.
8635
8636 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8637
8638 auto-load: Implementation.
8639 * NEWS: New descriptions for "info auto-load",
8640 "info auto-load gdb-scripts", "info auto-load python-scripts",
8641 "info auto-load local-gdbinit" and "info auto-load libthread-db".
8642 Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
8643 and "show auto-load-scripts". New description for "set auto-load",
8644 "show auto-load", "set auto-load gdb-scripts",
8645 "show auto-load gdb-scripts", "set auto-load python-scripts",
8646 "show auto-load python-scripts", "set auto-load local-gdbinit",
8647 "show auto-load local-gdbinit", "set auto-load libthread-db" and
8648 "show auto-load libthread-db".
8649 * auto-load.c: Remove include python/python-internal.h. Add includes
8650 exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
8651 cli/cli-setshow.h.
8652 (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
8653 (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
8654 (gdbpy_global_auto_load): Rename to ...
8655 (global_auto_load): ... here.
8656 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8657 (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
8658 (script_language_gdb, source_gdb_script_for_objfile): New.
8659 (struct loaded_script): New field language.
8660 (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
8661 LANGUAGE.
8662 (maybe_add_script): Add parameter language. Drop redundant
8663 entry.full_path initialization. Initialize entry.language and
8664 (*slot)->language.
8665 (auto_load_objfile_script): Change parameter suffix to language.
8666 Remove the call of maybe_add_script.
8667 Call language->source_script_for_objfile.
8668 (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
8669 New.
8670 (collect_matching_scripts): Adjust it for
8671 struct collect_matching_scripts_data.
8672 (auto_load_info_scripts_pattern_nl): New variable.
8673 (info_auto_load_scripts): Rename to ...
8674 (auto_load_info_scripts): ... here, add parameter language. Adjust it
8675 for struct collect_matching_scripts_data.
8676 (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
8677 (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
8678 (auto_load_show_cmdlist_get, info_auto_load_cmd)
8679 (auto_load_info_cmdlist_get): New.
8680 (_initialize_auto_load): Move add_info of "auto-load-scripts" to
8681 python/py-auto-load.c. New installment for "set auto-load gdb-scripts",
8682 "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
8683 "info auto-load local-gdbinit".
8684 * auto-load.h (struct script_language): New.
8685 (gdbpy_global_auto_load): Rename to ...
8686 (global_auto_load): ... here.
8687 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8688 (auto_load_local_gdbinit_loaded): New declarations.
8689 (maybe_add_script): New parameter language.
8690 (auto_load_objfile_script): Change parameter suffix to language.
8691 (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
8692 (auto_load_info_scripts, auto_load_set_cmdlist_get)
8693 (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
8694 declarations.
8695 * linux-thread-db.c: Include auto-load.h and ctype.h.
8696 (auto_load_thread_db, show_auto_load_thread_db): New.
8697 (struct thread_db_info): New field filename.
8698 (delete_thread_db_info): Call xfree for FILENAME.
8699 (try_thread_db_load): Initialize FILENAME.
8700 (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
8701 if !AUTO_LOAD_THREAD_DB.
8702 (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
8703 (_initialize_thread_db): Install auto_load_thread_db
8704 as "set auto-load libthread-db" and install info_auto_load_libthread_db
8705 as "info auto-load libthread-db".
8706 * main.c (captured_main): Rename gdbpy_global_auto_load to
8707 global_auto_load. Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
8708 AUTO_LOAD_LOCAL_GDBINIT_LOADED.
8709 (print_gdb_help): Extend the help for 'local init file'.
8710 * python/py-auto-load.c: Remove a comment about gdb scripts extension.
8711 (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
8712 (auto_load_scripts): Rename to ...
8713 (auto_load_python_scripts): ... here, update the comment.
8714 (gdbpy_load_auto_script_for_objfile): New declaration.
8715 (show_auto_load_python_scripts, script_language_python)
8716 (gdbpy_load_auto_script_for_objfile): New.
8717 (source_section_scripts): Refactor the code.
8718 (load_auto_scripts_for_objfile): Rename to ...
8719 (gdbpy_load_auto_scripts_for_objfile): ... here, update the
8720 auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
8721 (info_auto_load_python_scripts): New.
8722 (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
8723 Rename "set auto-load-scripts" to "set auto-load python-scripts".
8724 Register "set auto-load-scripts" as its deprecated alias. Register
8725 "info auto-load python-scripts". Register "info auto-load-scripts" as
8726 its deprecated alias.
8727 (load_auto_scripts_for_objfile): Rename to ...
8728 (gdbpy_load_auto_scripts_for_objfile): ... here.
8729 * python/python.h (load_auto_scripts_for_objfile): Rename to ...
8730 (gdbpy_load_auto_scripts_for_objfile): ... here.
8731
8732 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8733
8734 auto-load: Move files.
8735 * Makefile.in (SFILES): Add auto-load.c.
8736 (HFILES_NO_SRCDIR): Add auto-load.h.
8737 (COMMON_OBS): Add auto-load.o.
8738 (distclean): Change .gdbinit for gdb-gdb.gdb.
8739 * auto-load.c: New file, with parts from python/py-auto-load.c.
8740 * auto-load.h: New file, with parts from python/python.h.
8741 * configure: Regenerate.
8742 * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
8743 * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
8744 * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
8745 * main.c: Include auto-load.h.
8746 * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
8747 command.h, observer.h and progspace.h to auto-load.c. Add include
8748 auto-load.h.
8749 (gdbpy_global_auto_load, struct auto_load_pspace_info)
8750 (struct loaded_script, auto_load_pspace_data)
8751 (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
8752 (hash_loaded_script_entry, eq_loaded_script_entry)
8753 (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
8754 (maybe_add_script): Move to auto-load.c.
8755 (source_section_scripts): Change maybe_add_script parameters passing,
8756 use script_not_found_warning_print.
8757 (clear_section_scripts, auto_load_objfile_script)
8758 (auto_load_new_objfile, loaded_script_ptr)
8759 (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
8760 (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
8761 (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
8762 auto_load_new_objfile and info_auto_load_scripts initizations to
8763 auto-load.c.
8764 * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
8765
8766 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8767
8768 Code cleanup.
8769 * charset.c (find_charset_names): Remove variables ix and elt.
8770 Use free_char_ptr_vec.
8771 * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
8772 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
8773 debugdir_end. New variable debugdir_len.
8774 * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
8775 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
8776 declarations.
8777 * progspace.c (clear_program_space_solib_cache): Remove variables ix
8778 and elt. Use free_char_ptr_vec.
8779 * source.c (add_path): Remove variables argv, arg and argv_index.
8780 New variables dir_vec, back_to, ix and name.
8781 Use dirnames_to_char_ptr_vec_append. Use freeargv instead of
8782 make_cleanup_freeargv. Remove variable separator. Simplify the code
8783 no longer expecting DIRNAME_SEPARATOR.
8784 (openp): Remove variable p, p1 and len. New variables dir_vec,
8785 back_to, ix and dir. Use dirnames_to_char_ptr_vec. Simplify the code
8786 no longer expecting DIRNAME_SEPARATOR.
8787 * symfile.c (find_separate_debug_file): New variables debugdir_vec,
8788 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
8789 debugdir_end.
8790 * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
8791 (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
8792 (dirnames_to_char_ptr_vec): New functions.
8793
8794 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8795
8796 Code cleanup.
8797 * source.c (add_path): Remove always true conditional 'p == 0' and
8798 unindent its code block.
8799
8800 2012-04-17 Pedro Alves <palves@redhat.com>
8801
8802 * gdbtypes.h (FIELD_BITPOS): Rename to ...
8803 (FIELD_BITPOS_LVAL): ... this.
8804 (FIELD_BITPOS): New.
8805 (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
8806 * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
8807 * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
8808 SET_FIELD_BITPOS.
8809 * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
8810 SET_FIELD_BITPOS.
8811 * stabsread.c (read_cpp_abbrev, read_one_struct_field)
8812 (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
8813 * target-descriptions.c (tdesc_gdb_type): Adjust to use
8814 SET_FIELD_BITPOS.
8815
8816 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8817
8818 Do not rely on FIELD_LOC_KIND_BITPOS being zero.
8819 * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
8820 TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
8821 * gdbtypes.c (append_flags_type_flag): Likewise, twice.
8822 * jv-lang.c (java_link_class_type): Likewise, once.
8823 * stabsread.c (read_enum_type): Likewise.
8824
8825 2012-04-16 Yao Qi <yao@codesourcery.com>
8826
8827 * common/agent.c (agent_run_command): Add one more parameter `len'.
8828 Update callers.
8829 * common/agent.h: Update declaration.
8830 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
8831 Update.
8832 (linux_child_static_tracepoint_markers_by_strid): Ditto.
8833
8834 2012-04-14 Anton Gorenkov <xgsa@yandex.ru>
8835
8836 PR mi/13393
8837 * value.c (value_actual_type): New function.
8838 * value.h (value_actual_type): New declaration.
8839 * varobj.c (update_type_if_necessary): New function.
8840 (varobj_create): Call value_actual_type instead of
8841 value_type.
8842 (install_dynamic_child): distinct changed and type changed MI variable
8843 objects.
8844 (update_dynamic_varobj_children): Updated for install_dynamic_child
8845 change. All callers updated.
8846 (varobj_update): Support for MI variable object type change if
8847 the value changed and RTTI is used to determine the type.
8848 (create_child_with_value): Call value_actual_type instead of
8849 value_type.
8850 (adjust_value_for_child_access): Extended with a new parameter which
8851 specify whether the given value should be casted to enclosing type.
8852 All callers updated.
8853
8854 2012-04-14 Yao Qi <yao@codesourcery.com>
8855
8856 Import gnulib module inttypes from git
8857 (250b80067c1e1d8faa0c42fb572f721975b929c5)
8858 * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
8859 (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
8860 gnulib/m4/inttypes-pri.m4
8861 * aclocal.m4, config.in, configure: Regenerated.
8862 * gnulib/Makefile.am: Update.
8863 * gnulib/Makefile.in: Update.
8864 * gnulib/m4/gnulib-cache.m4: Update.
8865 * gnulib/m4/gnulib-comp.m4: Update.
8866 * gnulib/inttypes.in.h: New.
8867 * gnulib/m4/inttypes-pri.m4: New.
8868 * gnulib/m4/inttypes.m4: New.
8869
8870 2012-04-13 Luis Machado <lgustavo@codesourcery.com>
8871
8872 * infrun.c (resume): Update PC address to the real PC after
8873 preparing to do displaced stepping.
8874
8875 2012-04-12 Doug Evans <dje@google.com>
8876
8877 * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
8878 All callers updated.
8879
8880 2012-04-12 Mark Kettenis <kettenis@gnu.org>
8881
8882 * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
8883
8884 2012-04-12 Doug Evans <dje@google.com>
8885
8886 * dwarf2read.c (create_all_type_units): Renamed from
8887 create_debug_types_hash_table. All callers updated.
8888
8889 * dwarf2read.c (create_signatured_type_table_from_index): Rename
8890 local type_sig to sig_type, type_offset to type_offset_in_tu.
8891 (hash_signatured_type): Renamed from hash_type_signature,
8892 all callers updated.
8893 (eq_signatured_type): Renamed from eq_type_signature,
8894 all callers updated.
8895 (create_debug_types_hash_table): Rename local type_sig to sig_type.
8896 (process_enumeration_scope): Ditto.
8897 (lookup_signatured_type_at_offset): Ditto.
8898 (load_full_type_unit, read_signatured_type): Ditto.
8899
8900 2012-04-12 Yao Qi <yao@codesourcery.com>
8901
8902 * remote.c (async_remote_interrupt): Correct function name in
8903 debug message.
8904 (async_remote_interrupt_twice): Ditto.
8905
8906 2012-04-11 Yuanhui Zhang <asmwarrior@gmail.com>
8907
8908 * source.c (find_and_open_source): Consistently pass resulting
8909 full path through xfullpath.
8910
8911 2012-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8912
8913 Provide more specific displaced-stepping memory error message.
8914 * infrun.c (displaced_step_prepare): New variable status. Call
8915 target_read_memory instead of read_memory, provide more specific
8916 error message.
8917
8918 2012-04-11 Tristan Gingold <gingold@adacore.com>
8919
8920 PR gdb/13901
8921 * darwin-nat.c (darwin_execvp): Revert previous patch.
8922
8923 2012-04-11 Tristan Gingold <gingold@adacore.com>
8924
8925 PR gdb/13901
8926 * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
8927 in case of change.
8928
8929 2012-04-11 Tristan Gingold <gingold@adacore.com>
8930
8931 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
8932 warning.
8933
8934 2012-04-11 Siva Chandra Reddy <sivachandra@google.com>
8935
8936 New command 'explore' which helps explore values and types in
8937 scope.
8938 * NEWS: Add an entry about the new 'explore' command.
8939 * data-directory/Makefile.in: Add gdb/command/explore.py
8940 * python/lib/gdb/command/explore.py: Implemention of the 'explore'
8941 command using the GDB Python API.
8942
8943 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
8944
8945 * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
8946 extension in jump target calculation.
8947
8948 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
8949
8950 * mips-tdep.c (mips32_next_pc): Handle JALX.
8951
8952 2012-04-10 Yao Qi <yao@codesourcery.com>
8953
8954 * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
8955
8956 2012-04-10 Yao Qi <yao@codesourcery.com>
8957
8958 * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
8959 and gnulib/m4/gnulib-tool.m4.
8960
8961 2012-04-10 Doug Evans <dje@google.com>
8962
8963 * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
8964 (load_partial_dies): Clarify comment.
8965 (find_partial_die): Support rereading type units.
8966 Clarify CU handling, if we know offset is in CU, don't search for the
8967 containing CU. Add comment regarding memory waste.
8968
8969 2012-04-10 H.J. Lu <hongjiu.lu@intel.com>
8970
8971 * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
8972 i386/x32-avx and i386/x32-avx-linux.
8973 (i386/x32-expedite): New.
8974 (i386/x32-linux-expedite): Likewise.
8975 (i386/x32-avx-expedite): Likewise.
8976 (i386/x32-avx-linux-expedite): Likewise.
8977 ($(outdir)/i386/x32.dat): Likewise.
8978 ($(outdir)/i386/x32-linux.dat): Likewise.
8979 ($(outdir)/i386/x32-avx.dat): Likewise.
8980 ($(outdir)/i386/x32-avx-linux.dat): Likewise.
8981
8982 * features/i386/x32-avx-linux.xml: New file.
8983 * features/i386/x32-avx.xml: Likewise.
8984 * features/i386/x32-core.xml: Likewise.
8985 * features/i386/x32-linux.xml: Likewise.
8986 * features/i386/x32.xml: Likewise.
8987
8988 * features/i386/x32-avx-linux.c: New. Generated.
8989 * features/i386/x32-avx.c: Likewise.
8990 * features/i386/x32-linux.c: Likewise.
8991 * features/i386/x32.c: Likewise.
8992 * regformats/i386/x32-avx-linux.dat: Likewise.
8993 * regformats/i386/x32-avx.dat: Likewise.
8994 * regformats/i386/x32-linux.dat: Likewise.
8995 * regformats/i386/x32.dat: Likewise.
8996
8997 2012-04-10 Tristan Gingold <gingold@adacore.com>
8998
8999 * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
9000 code to kill the inferior.
9001
9002 2012-04-09 Mark Kettenis <kettenis@gnu.org>
9003
9004 * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
9005 defines.
9006 * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
9007 defines.
9008 * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
9009 (yyvsp): New defines.
9010 * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
9011 defines.
9012 * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
9013 defines.
9014 * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
9015 defines.
9016 * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
9017 defines.
9018 * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
9019 defines.
9020
9021 2012-04-09 Mark Kettenis <kettenis@gnu.org>
9022
9023 * sparc64-tdep.c (sparc64_store_arguments)
9024 (sparc64_store_arguments): Fix coding style.
9025
9026 2012-04-07 Mark Kettenis <kettenis@gnu.org>
9027
9028 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
9029 complex floats, adjust some related comments and tighten a related
9030 assertion.
9031 (sparc64_extract_return_value): Handle complex floats.
9032
9033 2012-04-07 Doug Evans <dje@google.com>
9034
9035 * dwarf2read.c (load_partial_dies): Change condition to assert.
9036
9037 2012-04-06 Doug Evans <dje@google.com>
9038
9039 * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
9040 "mov %rsp,%rbp".
9041
9042 2012-04-05 Kevin Buettner <kevinb@redhat.com>
9043
9044 * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
9045 fencepost error.
9046 (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
9047 (v850_gdbarch_init): Set `num_regs' as appropriate for the
9048 architecture.
9049
9050 2012-04-05 Keith Seitz <keiths@redhat.com>
9051
9052 * linespec.c (decode_compound): Remove.
9053 (enum offset_relative_sign): New enum.
9054 (struct line_offset): New struct.
9055 (struct linespec): New struct.
9056 (struct linespec_state): Move file_symtabs,
9057 user_filename, and user_function into struct linespec.
9058 Make result an anonymous struct holding vectors of
9059 symbolp and minsym_and_objfile_d.
9060 Add language member.
9061 (enum ls_token_type): New enum.
9062 (linespec_keywords): New array.
9063 (struct ls_token): New struct.
9064 (struct ls_parser): New struct.
9065 (linespec_lexer_lex_number): New function.
9066 (linespec_lexer_lex_keyword): New function.
9067 (is_ada_operator): New function.
9068 (skip_quote_char): New function.
9069 (copy_token_string): New function.
9070 (is_closing_quote_enclosed): New function.
9071 (find_parameter_list_end): New function.
9072 (linespec_lexer_lex_string): New function.
9073 (linespec_lexer_lex_one): New function.
9074 (linespec_lexer_consume_token): New function.
9075 (linespec_lexer_peek_token): New function.
9076 (cplusplus_error): Remove unused function.
9077 (find_methods): Update comment.
9078 (find_toplevel_char): Return const.
9079 (is_objc_method_format): Remove unused function.
9080 (find_toplevel_string): New function.
9081 (is_linespec_boundary): Remove.
9082 (symbol_not_found_error): New function.
9083 (find_method_overload_end): Remove function.
9084 (unexpected_linespec_error): New function.
9085 (keep_name_info): Remove.
9086 (linespec_parse_line_offset): New function.
9087 (linespec_parse_basic): New function.
9088 (canonicalize_linespec): New function.
9089 (decode_line_internal): Remove.
9090 (create_sals_line_offset): New function adapted from
9091 decode_all_digits.
9092 (convert_linespec_to_sals): New function.
9093 (parse_linespec): New function.
9094 (linespec_parser_new): New function.
9095 (linespec_state_destructor): Change parameter type to
9096 struct linespec_state *.
9097 Add language parameter.
9098 Remove freeing of moved members.
9099 (linespec_parser_delete): New function.
9100 (decode_line_full): Use parse_linespec and linespec_parser_new.
9101 (decode_line_1): Likewise.
9102 (decode_indirect): Rename to ...
9103 (linespec_expression_to_pc): ... this and rewrite
9104 to simply find CORE_ADDR, storing this result for later
9105 conversion to SALs.
9106 (locate_first_half): Remove.
9107 (deocde_objc): Add parameter LS.
9108 Initialize new struct collect_info members.
9109 Handle minimal symbols, too.
9110 (decode_compound): Delete.
9111 (lookup_prefix_sym): Rewrite.
9112 (compare_msymbols): New function.
9113 (find_method): Rewrite.
9114 Do not call cplusplus_error.
9115 (symtabs_from_filename): Rewrite.
9116 (collect_function_symbols): Delete.
9117 (find_function_symbols): Rewrite without ARGPTR-style
9118 processing.
9119 (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
9120 (decode_dollar): Adapted and renamed to ...
9121 (linespec_parse_variable): ... this.
9122 (find_linespec_symbols): New function.
9123 (decode_label): Adapted and renamed to ...
9124 (find_label_symbols): ... this.
9125 (decode_digits_list_mode): Add and use LS argument.
9126 (decode_digits_ordinary): Likewise.
9127 (collect_symbols): Do not collect SALs, just symbols and msymbols.
9128 If in list mode, allow any symbol class. Otherwise, only
9129 permit LOC_BLOCK symbols.
9130 (minsym_found): Update comments.
9131 (search_minsyms_for_name): Do not convert the matching symbol
9132 into a SAL. Simply push the symbol and objfile into the
9133 result vector.
9134 (decode_variable): Delete. Contents adapted into
9135 find_linespec_symbols.
9136
9137 * cp-support.c (SKIP_SPACE): Remove.
9138 (operator_tokens): Remove unused global.
9139 (cp_validate_operator): Remove.
9140 * cp-support.h (cp_validate_operator): Remove declaration.
9141
9142 2012-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9143
9144 * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
9145 for TYPE_VPTR_FIELDNO.
9146 * valprint.c (valprint_check_validity): Make it global, move the
9147 function comment ...
9148 * value.h (valprint_check_validity): ... to this new declaration.
9149
9150 2012-04-02 Tristan Gingold <gingold@adacore.com>
9151
9152 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
9153 the STATE32 api for i386 state.
9154 (i386_darwin_store_inferior_registers): Likewise.
9155
9156 2012-04-02 Tristan Gingold <gingold@adacore.com>
9157
9158 * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
9159 SS offset.
9160 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
9161 format_string.
9162
9163 2012-04-02 Tristan Gingold <gingold@adacore.com>
9164
9165 PR gdb/13901
9166 * darwin-nat.c (darwin_execvp): Set binary preference.
9167
9168 2012-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9169
9170 * NEWS (set breakpoint condition-evaluation): Use imperative mood.
9171
9172 2012-03-30 Tom Tromey <tromey@redhat.com>
9173
9174 * python/python.c (gdbpy_decode_line): Move cleanup creation out
9175 of TRY_CATCH. Fix error handling.
9176 * python/py-value.c (convert_value_from_python): Move 'old'
9177 declaration to innermost scope.
9178
9179 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9180 Andrey Smirnov <andrew.smirnov@gmail.com>
9181
9182 -Wshadow warning fix.
9183 * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
9184 "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
9185 Adjust code accordingly.
9186
9187 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9188
9189 * ada-lang.c (symbol_completion_add): Rename parameter
9190 "encoded" into "encoded_p". Ajust code and documentation
9191 accordingly.
9192
9193 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9194 Andrey Smirnov <andrew.smirnov@gmail.com>
9195
9196 -Wshadow warning fix.
9197 * ada-lang.c (symbol_completion_add): Rename parameter
9198 "wild_match" into wild_match_p. Update code and documentation
9199 accordingly.
9200
9201 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9202
9203 * ada-lang.c (symbol_completion_match): Rename parameter
9204 "encoded" into "encoded_p". Ajust code and documentation
9205 accordingly.
9206
9207 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9208 Andrey Smirnov <andrew.smirnov@gmail.com>
9209
9210 -Wshadow warning fix.
9211 * ada-lang.c (symbol_completion_match): Rename parameter
9212 "wild_match" into "wild_match_p". Adjust code and function
9213 documentation accordingly.
9214
9215 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9216 Andrey Smirnov <andrew.smirnov@gmail.com>
9217
9218 -Wshadow warning fix.
9219 * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
9220 "symbol_info" into "info". Adjust code accordingly.
9221 (ada_lookup_symbol): Likewise.
9222
9223 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9224
9225 * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
9226 of this function's documentation.
9227
9228 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9229 Andrey Smirnov <andrew.smirnov@gmail.com>
9230
9231 -Wshadow warning fix.
9232 * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
9233 variable into "wild_match_p". Adjust code accordingly.
9234
9235 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9236 Andrey Smirnov <andrew.smirnov@gmail.com>
9237
9238 -Wshadow warning fix.
9239 * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
9240 parameter into "wild_match_p". Adjust code accordingly.
9241 Document this parameter in the function description.
9242
9243 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9244 Andrey Smirnov <andrew.smirnov@gmail.com>
9245
9246 -Wshadow warning fix.
9247 * ada-lang.c (add_symbols_from_enclosing_procs): Rename
9248 "wild_match" parameter to "wild_match_p" (-Wshadow).
9249
9250 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9251
9252 * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
9253 in function documentation.
9254
9255 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9256 Andrey Smirnov <andrew.smirnov@gmail.com>
9257
9258 -Wshadow warning fix.
9259 * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
9260 variable into wild_match_p. Adjust code accordingly.
9261
9262 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9263 Andrey Smirnov <andrew.smirnov@gmail.com>
9264
9265 * ada-valprint.c (ada_val_print_1): Move the code handling
9266 TYPE_CODE_ENUM inside its own lexical block. Declare
9267 variables len and val there, instead of in the function's
9268 top level block. Avoid declaring deref_val again in a way
9269 that shadows another variable of the same name declared
9270 in one of the up-level blocks. Just re-use the up-level
9271 variable instead.
9272
9273 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9274
9275 * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
9276 Replace block_found argument by symbol_info. Adjust
9277 implementation accordingly. Add function documentation.
9278 (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
9279 Fix documentation.
9280 * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
9281 * ada-exp.y (write_object_renaming): Adjust to new
9282 ada_lookup_encoded_symbol API.
9283
9284 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9285
9286 * ada-lang.h (struct ada_symbol_info): Reformat. Improve
9287 documentation.
9288
9289 2012-03-28 Rathish C <rathish.c@kpitcummins.com>
9290
9291 * v850-tdep.c: Add the enum values for mpu and fpu registers.
9292 (v850_register_name): Add the mpu and fpu register names.
9293 (v850e_register_name): Add the mpu and fpu register names.
9294 (v850e2_register_name): New function.
9295 (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
9296 bfd_mach_v850e2v3.
9297
9298 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9299
9300 * NEWS: Add entry for Ada varobj support.
9301
9302 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9303
9304 * varobj.c (default_value_is_changeable_p): New function,
9305 extracted from varobj_value_is_changeable_p. Add declaration.
9306 (ada_value_is_changeable_p): New function, extracted from
9307 varobj_value_is_changeable_p. Add declaration.
9308 (struct language_specific): New field "value_is_changeable_p".
9309 (languages): Add entries for new field.
9310 (varobj_create): Set language before calling install_new_value.
9311 (varobj_value_is_changeable_p): Reimplement to call the varobj's
9312 "value_is_changeable_p" language callback.
9313
9314 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9315
9316 * ada-varobj.h, ada-varobj.c: New files.
9317 * Makefile.in (SFILES): Add ada-varobj.c.
9318 (HFILES_NO_SRCDIR): Add ada-varobj.h.
9319 (COMMON_OBS): Add ada-varobj.o.
9320
9321 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9322
9323 * varobj.c (ada_value_has_mutated): Add declaration. New function.
9324 (struct language_specific): New field "value_has_mutated".
9325 (languages): Set field "value_has_mutated" in each entry of array.
9326 (varobj_value_has_mutated): New function.
9327 (varobj_udpdate): Add handling of type mutation.
9328 (value_of_root): Add handling of type mutation.
9329 (ada_value_has_mutated): New function.
9330
9331 2012-03-28 Pedro Alves <palves@redhat.com>
9332
9333 * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
9334 Always supply $fr0 as 0.0 and $fr1 as 1.0.
9335
9336 2012-03-28 Tom Tromey <tromey@redhat.com>
9337
9338 * python/py-inferior.c (infpy_read_memory): Remove cleanups and
9339 explicitly free 'buffer' on exit paths. Decref 'membuf_object'
9340 before returning.
9341
9342 2012-03-28 Tom Tromey <tromey@redhat.com>
9343
9344 * .dir-locals.el: New file.
9345
9346 2012-03-28 Pedro Alves <palves@redhat.com>
9347
9348 * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
9349
9350 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9351
9352 * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
9353 handling for r0.
9354
9355 2012-03-27 Pedro Alves <palves@redhat.com>
9356
9357 Eliminate struct ui_stream.
9358
9359 * ui-out.h (struct ui_stream): Delete.
9360 (ui_out_field_stream): Adjust prototype.
9361 (ui_out_stream_new, ui_out_stream_delete)
9362 (make_cleanup_ui_out_stream_delete): Delete declarations.
9363 * ui-out.c (ui_out_field_stream): Change prototype to take a
9364 ui_file instead of a ui_stream. Adjust.
9365 (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
9366 (make_cleanup_ui_out_stream_delete): Delete.
9367 * breakpoint.c (print_breakpoint_location)
9368 (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
9369 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9370 * disasm.c (dump_insns): Ditto.
9371 (do_mixed_source_and_assembly, do_assembly_only): Adjust
9372 prototype.
9373 (gdb_disassembly): Use ui_file/mem_fileopen instead of
9374 ui_stream/ui_out_stream_new.
9375 * infcmd.c (print_return_value): Ditto.
9376 * osdata.c (info_osdata_command): Don't allocate a local
9377 ui_stream.
9378 * stack.c (print_frame_arg, print_frame_args, print_frame): Use
9379 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9380 * tracepoint.c (print_one_static_tracepoint_marker): Don't
9381 allocate a local ui_stream.
9382 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
9383 instead of ui_stream/ui_out_stream_new.
9384 (list_args_or_locals): Don't allocate a local ui_stream.
9385 * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
9386 (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
9387 ui_stream/ui_out_stream_new.
9388 * cli/cli-setshow.c (do_setshow_command): Ditto.
9389
9390 2012-03-27 Oza Pawandeep <oza.pawandeep@gmail.com>
9391
9392 * arm-linux-tdep.c (arm_linux_init_abi): Call
9393 set_gdbarch_process_record. Initialize `arm_swi_record' field.
9394 * arm-tdep.c (arm_process_record): New function.
9395 (deallocate_reg_mem): New function.
9396 (decode_insn): New function.
9397 (thumb_record_branch): New function.
9398 (thumb_record_ldm_stm_swi(): New function.
9399 (thumb_record_misc): New function.
9400 (thumb_record_ld_st_stack): New function.
9401 (thumb_record_ld_st_imm_offset): New function.
9402 (thumb_record_ld_st_reg_offset(): New function.
9403 (thumb_record_add_sub_cmp_mov): New function.
9404 (thumb_record_shift_add_sub): New function.
9405 (arm_record_coproc_data_proc): New function.
9406 (arm_record_coproc): New function.
9407 (arm_record_b_bl): New function.
9408 (arm_record_ld_st_multiple): New function.
9409 (arm_record_ld_st_reg_offset): New function.
9410 (arm_record_ld_st_imm_offset): New function.
9411 (arm_record_data_proc_imm): New function.
9412 (arm_record_data_proc_misc_ld_str): New function.
9413 (arm_record_extension_space): New function.
9414 (arm_record_strx): New function.
9415 (sbo_sbz): New function.
9416 (struct insn_decode_record): New structure for arm insn record.
9417 (REG_ALLOC): New macro for reg allocations.
9418 (MEM_ALLOC): New macro for memory allocations.
9419 * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
9420
9421 2012-03-27 Andreas Schwab <schwab@linux-m68k.org>
9422
9423 * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
9424 (store_register): Likewise.
9425
9426 2012-03-26 Oza Pawandeep <oza.pawandeep@gmail.com>
9427
9428 * MAINTAINERS (Write After Approval): Add myself to the list.
9429
9430 2012-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
9431
9432 * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
9433 Describe also the option "auto".
9434
9435 2012-03-22 Richard Henderson <rth@redhat.com>
9436
9437 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
9438 * sparc-nat.c (sparc_xfer_wcookie): Make static.
9439
9440 2012-03-22 Richard Henderson <rth@redhat.com>
9441
9442 * jit.c (jit_read_code_entry): Compute alignment and offset of
9443 int64_t member before computing entry_size.
9444
9445 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
9446
9447 Python scripting: Add new method Value.referenced_value to
9448 gdb.Value which can dereference pointer as well as reference
9449 values.
9450 * NEWS: Add entry under 'Python scripting' about the new method
9451 Value.referenced_value on gdb.Value objects.
9452 * python/py-value.c (valpy_referenced_value): New function
9453 defining a new method on gdb.Value objects which can dereference
9454 pointer and reference values.
9455
9456 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
9457
9458 * MAINTAINERS (Write After Approval): Add myself to the list.
9459
9460 2012-03-21 Kevin Buettner <kevinb@redhat.com>
9461
9462 * symtab.c (skip_prologue_sal): Change test to check for "main()"
9463 in addition to "main".
9464
9465 2012-03-21 Joel Brobecker <brobecker@adacore.com>
9466
9467 * expression.h (op_name): Add declaration.
9468 * expprint.c (op_name): Remove declaration. Make non-static.
9469 * ax-gdb.c (gen_expr): Use op_name instead of op_string.
9470
9471 2012-03-21 Thomas Schwinge <thomas@codesourcery.com>
9472
9473 * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
9474 of struct siginfo.
9475 * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
9476 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
9477 * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
9478 (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
9479 (linux_nat_get_siginfo): Likewise.
9480 * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
9481 (linux_nat_get_siginfo): Likewise.
9482 * linux-tdep.c (linux_get_siginfo_type): Likewise.
9483 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
9484 * procfs.c (gdb_siginfo_t): Likewise.
9485
9486 2012-03-21 Mike Frysinger <vapier@gentoo.org>
9487
9488 * .gitignore: Ignore more files.
9489
9490 2012-03-20 Pedro Alves <palves@redhat.com>
9491
9492 * remote.c (remote_start_remote): Clear `rs->starting_up' on early
9493 returns.
9494
9495 2012-03-20 Yao Qi <yao@codesourcery.com>
9496
9497 * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
9498 comment.
9499
9500 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9501
9502 Code cleanupp: Use cu_offset and sect_offset compile time type checking.
9503 * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
9504 (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
9505 sect_offset.
9506 * dwarf2expr.h (cu_offset, sect_offset): New types.
9507 (struct dwarf_expr_context_funcs) <dwarf_call>
9508 (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
9509 sect_offset.
9510 (struct dwarf_expr_context) <len>: Improve the comment.
9511 (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
9512 cu_offset and sect_offset.
9513 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
9514 (dwarf_expr_get_base_type, needs_frame_dwarf_call)
9515 (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
9516 * dwarf2loc.h: Include dwarf2expr.h.
9517 (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
9518 and sect_offset.
9519 * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
9520 Improve the comment.
9521 (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
9522 (struct signatured_type, struct line_header, struct partial_die_info)
9523 (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
9524 (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
9525 (get_die_type_at_offset, create_cus_from_index)
9526 (create_signatured_type_table_from_index, dw2_get_file_names)
9527 (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
9528 (read_and_check_comp_unit_head, read_and_check_type_unit_head)
9529 (create_debug_types_hash_table, process_psymtab_comp_unit)
9530 (load_partial_comp_unit, create_all_comp_units)
9531 (partial_die_parent_scope, partial_die_full_name, skip_one_die)
9532 (load_full_comp_unit, dwarf2_physname, read_import_statement)
9533 (inherit_abstract_dies, read_func_scope, read_call_site_scope)
9534 (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
9535 (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
9536 (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
9537 (find_partial_die, read_attribute_value, lookup_die_type)
9538 (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
9539 (is_ref_attr): New function comment.
9540 (dwarf2_get_ref_die_offset): New function comment, new variable retval.
9541 Use cu_offset and sect_offset.
9542 (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
9543 (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
9544 (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
9545 (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
9546 (offset_and_type_hash, offset_and_type_eq, set_die_type)
9547 (get_die_type_at_offset, partial_die_hash, partial_die_eq)
9548 (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
9549 sect_offset.
9550
9551 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9552
9553 Code cleanup.
9554 * python/py-auto-load.c (source_section_scripts): New variable back_to.
9555 Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
9556 with xfree.
9557 (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
9558
9559 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9560
9561 * NEWS: Describe new options --init-command=FILE, -ix and
9562 --init-eval-command=COMMAND, -iex.
9563 * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
9564 CMDARG_INIT_COMMAND.
9565 (captured_main): New enum items OPT_IX and OPT_IEX. Add
9566 "init-command", "init-eval-command", "ix" and "iex" to the variable
9567 long_options. Handle OPT_IX and OPT_IEX. Process them from CMDARG_VEC.
9568 New comment for CMDARG_FILE and CMDARG_COMMAND processing.
9569 (print_gdb_help): Describe --init-command=FILE, -ix and
9570 --init-eval-command=COMMAND, -iex.
9571
9572 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9573
9574 Code cleanup.
9575 * main.c (struct cmdarg): Move it here from main. Add more comments.
9576 (cmdarg_s, VEC (cmdarg_s)): New.
9577 (main): Move struct cmdarg from here. New variables cmdarg_vec and
9578 cmdarg_p. Remove variables cmdsize and ncmd and their initialization.
9579 Install cleanup for cmdarg_vec. Update filling for options 'x' and
9580 'X'. Replace cmdarg processing by cmdarg_vec processing. Remove xfree
9581 of CMDARG.
9582
9583 2012-03-19 Tom Tromey <tromey@redhat.com>
9584
9585 * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
9586
9587 2012-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
9588
9589 PR symtab/13777
9590 * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
9591 GCC >=4.5.
9592
9593 2012-03-16 Chris January <chris.january@allinea.com>
9594
9595 * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
9596 of clear.
9597
9598 2012-03-16 Chris January <chris.january@allinea.com>
9599
9600 * source.c (add_path): Use memmove instead of strcpy because the
9601 strings overlap.
9602
9603 2012-03-16 Joel Brobecker <brobecker@adacore.com>
9604
9605 * value.h (set_value_parent): Add declaration.
9606 * value.c (set_value_parent): New function.
9607 (value_address): If VALUE->PARENT is not NULL, then use it as
9608 the base address instead of VALUE->LOCATION.address.
9609 * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
9610 the same as OBJ's address. Adjust V's offset accordingly.
9611 Set V's parent.
9612
9613 2012-03-16 Gary Benson <gbenson@redhat.com>
9614
9615 PR breakpoints/10738
9616 * dwarf2read.c (use_deprecated_index_sections): New global.
9617 (struct partial_die_info): New member may_be_inlined.
9618 (read_partial_die): Set may_be_inlined where appropriate.
9619 (add_partial_subprogram): Add partial symbols for partial
9620 DIEs that may be inlined.
9621 (new_symbol_full): Add inlined subroutines to the current
9622 scope.
9623 (write_psymtabs_to_index): Bump version number.
9624 (dwarf2_read_index): Read only version 6 indices unless
9625 use_deprecated_index_sections is set.
9626 * linespec.c (symbol_and_data_callback): New structure.
9627 (iterate_inline_only): New function.
9628 (iterate_over_all_matching_symtabs): New argument
9629 "include_inline". If nonzero, also call the callback for
9630 symbols representing inlined subroutines.
9631 (lookup_prefix_sym): Pass extra argument to the above.
9632 (find_function_symbols): Likewise.
9633 (add_matching_symbols_to_info): Likewise.
9634 * NEWS: Mention that GDB can now set breakpoints on inlined
9635 functions.
9636
9637 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
9638
9639 * p-typeprint.c (pascal_type_print_method_args):
9640 Fix display of parameter of methods.
9641
9642 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
9643
9644 * amd64-windows-nat.c (_initialize_amd64_windows_nat):
9645 Add missing prototype.
9646
9647 2012-03-16 Yao Qi <yao@codesourcery.com>
9648 Jan Kratochvil <jan.kratochvil@redhat.com>
9649
9650 Fix false compilation warning.
9651 * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
9652
9653 2012-03-15 Jonathan Larmour <jifl@eCosCentric.com>
9654 Pedro Alves <pedro@codesourcery.com>
9655
9656 * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
9657 (arm_register_g_packet_guesses): New function.
9658 (arm_gdbarch_init): Don't force a target description with
9659 registers when the executable is detected as M-profile. Instead
9660 set gdbarch->tdep->is_m. Register `g' packet guesses.
9661 (_initialize_arm_tdep): Initialize the new target description.
9662 * features/arm-with-m-fpa-layout.xml: New description.
9663 * features/arm-with-m-fpa-layout.c: New, generated.
9664
9665 2012-03-15 Joel Brobecker <brobecker@adacore.com>
9666
9667 * breakpoint.c (breakpoint_xfer_memory): Add assertion.
9668 Update function description.
9669 (insert_bp_location): Do not wipe bl->target_info out.
9670 * mem-break.c: #include "gdb_string.h".
9671 (default_memory_insert_breakpoint): Do not call target_read_memory
9672 with a pointer to the breakpoint's shadow_contents buffer. Use
9673 a local buffer instead.
9674 * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
9675
9676 2012-03-15 Tom Tromey <tromey@redhat.com>
9677
9678 * NEWS: Mention "info vtbl", not "info vtable".
9679 * cp-support.c (info_vtbl_command): Fix comment.
9680 (_initialize_cp_support): Fix text.
9681
9682 2012-03-15 Tom Tromey <tromey@redhat.com>
9683
9684 * cp-valprint.c (cp_print_value_fields): Use
9685 print_function_pointer_address for vtable slot.
9686
9687 2012-03-15 Tom Tromey <tromey@redhat.com>
9688
9689 * gnu-v3-abi.c (struct value_and_voffset): New.
9690 (hash_value_and_voffset, eq_value_and_voffset)
9691 (compare_value_and_voffset, compute_vtable_size)
9692 (print_one_vtable, gnuv3_print_vtable): New functions.
9693 (init_gnuv3_ops): Initialize 'print_vtable' field.
9694 * cp-support.c (info_vtbl_command): New function.
9695 (_initialize_cp_support): Add "info vtbl".
9696 * cp-abi.h (cplus_print_vtable): Declare.
9697 (struct cp_abi_ops) <print_vtable>: New field.
9698 * cp-abi.c (cplus_print_vtable): New function.
9699 * NEWS: Update.
9700
9701 2012-03-15 Tom Tromey <tromey@redhat.com>
9702
9703 * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
9704 iterate_over_symbols.
9705
9706 2012-03-14 Doug Evans <dje@google.com>
9707
9708 * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
9709 DW_OP_GNU_parameter_ref.
9710
9711 2012-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9712
9713 Fix double prompt of 'interpreter-exec mi'.
9714 * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
9715 (mi_interpreter_resume): use it.
9716 (mi_execute_command_input_handler): New function.
9717 * mi/mi-main.c (mi_execute_command): Move prompt printing to
9718 mi_execute_command_input_handler.
9719
9720 2012-03-13 Josh Matthews <josh@joshmatthews.net> (tiny change)
9721
9722 * darwin-nat-info.c (_initialize_darwin_info_commands): Add
9723 prototype.
9724 (darwin_debug_port_info): Make static.
9725 * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
9726 * machoread.c (_initialize_machoread): Add prototype.
9727 * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
9728 (i386_darwin_set_control, i386_darwin_get_control)
9729 i386_darwin_dr_set_addr, i386_darwin_get_addr)
9730 i386_darwin_get_status, i386_darwin_get_control):
9731 Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
9732
9733 2012-03-13 Joel Brobecker <brobecker@adacore.com>
9734
9735 * ax-gdb.c (gen_usual_unary): Remove special handling of
9736 enum and bool types.
9737
9738 2012-03-13 Joel Brobecker <brobecker@adacore.com>
9739
9740 * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
9741
9742 2012-03-13 Joel Brobecker <brobecker@adacore.com>
9743
9744 * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
9745
9746 2012-03-13 Chris January <chris.january@allinea.com>
9747
9748 * aix-thread.c (fill_sprs): Store the floating point registers
9749 at the correct offsets into vals.
9750
9751 2012-03-13 Doug Evans <dje@google.com>
9752
9753 * NEWS: Mention symbol-reloading has been deleted.
9754 * symfile.c (symbol_reloading): Delete.
9755 (show_symbol_reloading): Delete.
9756 (_initialize_symfile): Delete set/show symbol-reloading.
9757
9758 * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
9759 read_in_chain until we have successfully read it in.
9760 (load_full_comp_unit): Ditto.
9761 (read_signatured_type): Add comment.
9762
9763 2012-03-13 Chris January <chris.january@allinea.com>
9764
9765 * stabsread.c (fix_common_block): Change type of valu argument
9766 to CORE_ADDR.
9767
9768 2012-03-13 Chris January <chris.january@allinea.com>
9769
9770 * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
9771 instruction.
9772
9773 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9774
9775 * common/linux-procfs.c (linux_proc_get_int): New, from
9776 linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
9777 field.
9778 (linux_proc_get_tgid): Only call linux_proc_get_int.
9779 (linux_proc_get_tracerpid): New.
9780 (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
9781 (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
9782 linux_proc_pid_has_state.
9783 * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
9784 * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
9785 (linux_ptrace_attach_warnings): New.
9786 * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
9787 New declaration.
9788 * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
9789 (linux_nat_attach): New variables ex, buffer, message and message_s.
9790 Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
9791
9792 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9793
9794 * Makefile.in (linux-ptrace.o): New.
9795 * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
9796 from linux-nat.c.
9797 * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
9798 * common/linux-ptrace.c: New file.
9799 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
9800 * config/arm/linux.mh: Likewise.
9801 * config/i386/linux.mh: Likewise.
9802 * config/i386/linux64.mh: Likewise.
9803 * config/ia64/linux.mh: Likewise.
9804 * config/m32r/linux.mh: Likewise.
9805 * config/m68k/linux.mh: Likewise.
9806 * config/mips/linux.mh: Likewise.
9807 * config/pa/linux.mh: Likewise.
9808 * config/powerpc/linux.mh: Likewise.
9809 * config/powerpc/ppc64-linux.mh: Likewise.
9810 * config/powerpc/spu-linux.mh: Likewise.
9811 * config/s390/s390.mh: Likewise.
9812 * config/sparc/linux.mh: Likewise.
9813 * config/sparc/linux64.mh: Likewise.
9814 * config/xtensa/linux.mh: Likewise.
9815 * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
9816 common/linux-procfs.c.
9817 (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
9818
9819 2012-03-13 Hui Zhu <teawater@gmail.com>
9820 Pedro Alves <palves@redhat.com>
9821
9822 * breakpoint.c (init_breakpoint_sal): New flags parameter. Handle
9823 CREATE_BREAKPOINT_FLAGS_INSERTED.
9824 (create_breakpoint_sal, create_breakpoints_sal)
9825 (base_breakpoint_create_breakpoints_sal)
9826 (tracepoint_create_breakpoints_sal)
9827 (strace_marker_create_breakpoints_sal): New flags parameter. Pass
9828 down.
9829 (break_command_1, handle_gnu_v3_exceptions, trace_command)
9830 (ftrace_command, strace_command): Adjust.
9831 (create_tracepoint_from_upload): Pass
9832 CREATE_BREAKPOINT_FLAGS_INSERTED.
9833 * breakpoint.h (enum breakpoint_create_flags): New.
9834 (create_breakpoint): New flags parameter.
9835 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
9836 * python/py-breakpoint.c (bppy_init): Adjust.
9837 * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
9838 * spu-tdep.c (spu_catch_start): Adjust.
9839
9840 2012-03-13 Pedro Alves <palves@redhat.com>
9841 Hui Zhu <teawater@gmail.com>
9842 Yao Qi <yao@codesourcery.com>
9843
9844 * remote.c (struct remote_state): New field `starting_up'.
9845 (remote_start_remote): Set and clear it.
9846 (remote_can_download_tracepoint): If starting up, return false.
9847
9848 2012-03-13 Yao Qi <yao@codesourcery.com>
9849
9850 * inferior.h (struct inferior): Remove fields any_syscall_count,
9851 syscalls_counts and total_syscalls_count. Move them to new
9852 struct catch_syscall_inferior_data in breakpoint.c.
9853 * breakpoint.c: Call DEF_VEC_I(int).
9854 (struct catch_syscall_inferior_data): New.
9855 (get_catch_syscall_inferior_data): New.
9856 (catch_syscall_inferior_data_cleanup): New.
9857 (insert_catch_syscall): Update to access data in
9858 struct catch_syscall_inferior_data.
9859 (insert_catch_syscall): Likewise.
9860 (remove_catch_syscall): Likewise.
9861 (remove_catch_syscall): Likewise.
9862 (is_syscall_catchpoint_enabled): Likewise.
9863 (add_catch_command): Likewise.
9864 (_initialize_breakpoint): Register cleanup.
9865 * breakpoint.h: Removed DEF_VEC_I(int).
9866 * dwarf2loc.c: Call DEF_VEC_I(int).
9867 * mi/mi-main.c: Likewise.
9868
9869 2012-03-12 Mark Kettenis <kettenis@gnu.org>
9870
9871 * inf-ptrace.c (inf_ptrace_post_attach): Make static.
9872
9873 2012-03-12 Chris January <chris.january@allinea.com>
9874
9875 * aix-thread.c (_initialize_aix_thread): Add prototype.
9876 * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
9877 * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
9878
9879 2012-03-12 Joel Brobecker <brobecker@adacore.com>
9880
9881 * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
9882 include of "amd64-nat.h".
9883
9884 2012-03-12 Tom Tromey <tromey@redhat.com>
9885
9886 * buildsym.c (record_pending_block): Now static.
9887 * buildsym.h: (record_pending_block): Remove.
9888
9889 2012-03-12 Andreas Tobler <andreast@fgznet.ch>
9890
9891 * amd64bsd-nat.c: Include amd64bsd-nat.h.
9892
9893 2012-03-09 Tom Tromey <tromey@redhat.com>
9894
9895 * dwarf2read.c (struct dwarf2_cu) <checked_producer,
9896 producer_is_gxx_lt_4_6>: New fields.
9897 (producer_is_gxx_lt_4_6): Use and update producer cache fields.
9898
9899 2012-03-09 Tom Tromey <tromey@redhat.com>
9900
9901 * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
9902
9903 2012-03-08 Joel Brobecker <brobecker@adacore.com>
9904
9905 * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
9906 prototype.
9907
9908 2012-03-08 Joel Brobecker <brobecker@adacore.com>
9909
9910 * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
9911
9912 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9913
9914 Fix -Wmissing-prototypes build.
9915 * arm-linux-nat.c (get_thread_id): Make it static.
9916 * xtensa-linux-nat.c (get_thread_id): Likewise.
9917
9918 2012-03-08 Joel Brobecker <brobecker@adacore.com>
9919
9920 * server.c (process_point_options): If a conditional expression
9921 is found, only print a message if remote_debug is nonzero.
9922
9923 2012-03-08 Luis Machado <lgustavo@codesourcery.com>
9924
9925 * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
9926 of internal error for unknown/unsupported types.
9927
9928 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9929
9930 Fix CU relative vs. absolute DIE offsets.
9931 * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
9932 offset to offset_in_cu.
9933 * dwarf2read.c (process_enumeration_scope): Add CU offset to
9934 TYPE_OFFSET.
9935 (dwarf2_fetch_die_location_block): Rename parameter offset to
9936 offset_in_cu. New variable offset, add CU offset to OFFSET_IN_CU.
9937
9938 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9939
9940 * libunwind-frame.c: Rename to ...
9941 * ia64-libunwind-tdep.c: ... here.
9942 * libunwind-frame.h: Rename to ...
9943 * ia64-libunwind-tdep.h: ... here.
9944 * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
9945 ia64-libunwind-tdep.h.
9946 (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
9947 * README (--with-libunwind): Rename to ...
9948 (--with-libunwind-ia64): ... here, note it is ia64 specific now.
9949 * config.in: Regenerate.
9950 * configure: Regenerate.
9951 * configure.ac: New option --with-libunwind-ia64, make the
9952 AS_HELP_STRING ia64 specific. Deprecate option --with-libunwind.
9953 Remove AC_DEFINE for HAVE_LIBUNWIND.
9954 * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
9955 Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
9956 Rename libunwind-frame in the general comment.
9957 * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
9958 Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
9959 Move forward declarations inside #ifndef. Rename libunwind-frame in
9960 the general comment.
9961 * ia64-tdep.c: Rename libunwind-frame.h #include to
9962 ia64-libunwind-tdep.h.
9963 (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
9964 (ia64_libunwind_descr): Rename libunwind-frame to
9965 ia64-libunwind-tdep in these function comments.
9966 * ia64-tdep.h: Rename libunwind-frame.h #include to
9967 ia64-libunwind-tdep.h.
9968 * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
9969 ia64-libunwind-tdep in that data comment.
9970
9971 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9972
9973 * libunwind-frame.h (struct frame_unwind): New declaration.
9974
9975 2012-03-08 Joel Brobecker <brobecker@adacore.com>
9976
9977 * breakpoint.c (_initialize_breakpoint): Fix error in help of
9978 "set breakpoint condition-evaluation" command.
9979
9980 2012-03-08 Tristan Gingold <gingold@adacore.com>
9981
9982 * sparc-stub.c: Move to stubs/
9983 * sh-stub.c: Likewise.
9984 * m68k-stub.c: Likewise.
9985 * m32r-stub.c: Likewise.
9986 * i386-stub.c: Likewise.
9987
9988 2012-03-08 Andreas Schwab <schwab@linux-m68k.org>
9989
9990 * m68klinux-tdep.c (m68k_linux_init_abi): Register
9991 linux_get_siginfo_type.
9992
9993 * m68klinux-nat.c: Include "gdb_proc_service.h".
9994 (PTRACE_GET_THREAD_AREA): Define.
9995 (ps_get_thread_area): New function.
9996
9997 2012-03-08 Yao Qi <yao@codesourcery.com>
9998
9999 * remote.c (remote_get_noisy_reply): Replace `sprintf' with
10000 `xsnprintf'.
10001 (remote_query_attached): Likewise.
10002 (remote_static_tracepoint_marker_at): Likewise.
10003 (remote_set_permissions): Likewise.
10004 (remote_detach_1, extended_remote_attach_1): Likewise.
10005 (send_g_packet, remote_vkill): Likewise.
10006 (extended_remote_disable_randomization): Likewise.
10007 (remote_add_target_side_condition): Likewise.
10008 (remote_insert_breakpoint): Likewise.
10009 (remote_remove_breakpoint): Likewise.
10010 (remote_insert_watchpoint): Likewise.
10011 (remote_remove_watchpoint): Likewise.
10012 (remote_insert_hw_breakpoint): Likewise.
10013 (remote_insert_hw_breakpoint): Likewise.
10014 (remote_remove_hw_breakpoint): Likewise.
10015 (remote_download_command_source): Likewise.
10016 (remote_download_tracepoint): Likewise.
10017 (remote_download_trace_state_variable): Likewise.
10018 (remote_disable_tracepoint): Likewise.
10019 (remote_trace_set_readonly_regions): Likewise.
10020 (remote_get_tracepoint_status): Likewise.
10021 (remote_trace_find): Likewise.
10022 (remote_get_trace_state_variable_value): Likewise.
10023 (remote_set_disconnected_tracing): Likewise.
10024 (remote_set_circular_trace_buffer): Likewise.
10025 (remote_get_min_fast_tracepoint_insn_len): Likewise.
10026 (remote_use_agent): Likewise.
10027 (remote_add_target_side_condition): Add one parameter BUF_SIZE.
10028 Update callers.
10029
10030 2012-03-07 Pedro Alves <palves@redhat.com>
10031
10032 * NEWS: Mention QProgramSignals.
10033 * inferior.h (update_signals_program_target): Declare.
10034 * infrun.c: (update_signals_program_target): New.
10035 (handle_command): Update the target of the new program signals
10036 array changes.
10037 * remote.c (PACKET_QProgramSignals): New enum.
10038 (last_program_signals_packet): New global.
10039 (remote_program_signals): New.
10040 (remote_start_remote): Update the target with the program signals
10041 list.
10042 (remote_protocol_features): Add entry for QPassSignals.
10043 (remote_open_1): Free anc clear last_program_signals_packet.
10044 (init_remote_ops): Install remote_program_signals.
10045 * target.c (update_current_target): Adjust.
10046 (target_program_signals): New.
10047 * target.h (struct target_ops) <to_program_signals>: New field.
10048 (target_program_signals): Declare.
10049
10050 2012-03-07 Pedro Alves <palves@redhat.com>
10051
10052 * NEWS: Add subtitle for new z0/z1 conditional breakpoint
10053 extensions.
10054
10055 2012-03-07 Andreas Schwab <schwab@linux-m68k.org>
10056
10057 * m68klinux-nat.c (getregs_supplies): Make static.
10058 (getfpregs_supplies): Likewise.
10059 (have_ptrace_getregs): Likewise.
10060
10061 2012-03-06 Joel Brobecker <brobecker@adacore.com>
10062
10063 * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
10064 in call to get_die_type_at_offset.
10065
10066 2012-03-06 Stan Shebs <stan@codesourcery.com>
10067
10068 * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
10069 * mi/mi-cmd-disas.c: Ditto.
10070 * mi/mi-cmd-env.c: Ditto.
10071 * mi/mi-cmd-file.c: Ditto.
10072 * mi/mi-cmd-stack.c: Ditto.
10073 * mi/mi-cmd-target.c: Ditto.
10074 * mi/mi-cmd-var.c: Ditto.
10075 * mi/mi-cmds.c: Ditto.
10076 * mi/mi-cmds.h: Ditto.
10077 * mi/mi-console.c: Ditto.
10078 * mi/mi-getopt.c: Ditto.
10079 * mi/mi-getopt.h: Ditto.
10080 * mi/mi-interp.c: Ditto.
10081 * mi/mi-main.c: Ditto.
10082 * mi/mi-out.c: Ditto.
10083 * mi/mi-parse.c: Ditto.
10084 * mi/mi-parse.h: Ditto.
10085 * mi/mi-symbol-cmds.c: Ditto.
10086
10087 * mi/mi-getopt.h: Move mi_opt struct up.
10088 * mi/mi-main.c (captured_mi_execute_command): Remove redundant
10089 return.
10090 * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
10091
10092 2012-03-06 Tom Tromey <tromey@redhat.com>
10093
10094 * proc-service.c (ps_pglobal_lookup): Set the current program
10095 space.
10096
10097 2012-03-06 Pedro Alves <palves@redhat.com>
10098
10099 * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
10100
10101 2012-03-05 Joel Brobecker <brobecker@adacore.com>
10102
10103 * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
10104
10105 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
10106
10107 Code cleanup.
10108 * common/linux-osdata.c (linux_common_core_of_thread): New function
10109 comment.
10110 * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
10111 call by linux_common_core_of_thread.
10112 (linux_nat_core_of_thread_1): Remove.
10113 * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
10114 * linux-thread-db.c: Include linux-osdata.h.
10115 (update_thread_core): Replace linux_nat_core_of_thread_1 call by
10116 linux_common_core_of_thread.
10117
10118 2012-03-05 Tom Tromey <tromey@redhat.com>
10119
10120 * value.c (value_primitive_field): Don't fetch contents for
10121 non-virtual bases.
10122
10123 2012-03-05 Tom Tromey <tromey@redhat.com>
10124
10125 * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
10126
10127 2012-03-05 Andreas Arnez <arnez@linux.vnet.ibm.com>
10128
10129 * s390-nat.c: Include "gregset.h".
10130
10131 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
10132
10133 * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
10134 [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
10135 (libunwind_load): New variable so_error, use it for dlerror. Try to
10136 load also LIBUNWIND_SO_7.
10137
10138 2012-03-05 Pedro Alves <palves@redhat.com>
10139
10140 * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
10141 is not NULL, and remove resulting dead code.
10142
10143 2012-03-05 Thomas Schwinge <thomas@codesourcery.com>
10144
10145 * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
10146 prologue to sh_analyze_prologue.
10147 (sh_analyze_prologue): Make better use of such an upper limit, and
10148 generally be more cautious about accessing memory.
10149
10150 2012-03-05 Tom Tromey <tromey@redhat.com>
10151
10152 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
10153 _initialize_ia64_hpux_tdep.
10154
10155 2012-03-05 Pedro Alves <palves@redhat.com>
10156
10157 PR gdb/13766
10158
10159 * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
10160 the register state is clear, supply explicit zero, instead of
10161 marking the register unavailable.
10162
10163 2012-03-05 Tristan Gingold <gingold@adacore.com>
10164
10165 * NEWS: Mention OpenVMS ia64 new target.
10166
10167 2012-03-05 Tristan Gingold <gingold@adacore.com>
10168
10169 * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
10170 (ia64_unw_accessors, ia64_unw_rse_accessors)
10171 (ia64_libunwind_descr): Declare.
10172 * ia64-vms-tdep.c: New file.
10173 * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
10174 (ia64_libunwind_descr): Make them public.
10175 * configure.tgt: Add ia64-*-*vms*.
10176 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
10177 (ALLDEPFILES): Add ia64-vms-tdep.c
10178
10179 2012-03-05 Tristan Gingold <gingold@adacore.com>
10180
10181 * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
10182 * remote.c (PACKET_qXfer_uib): New enum value.
10183 (remote_protocol_features): Add entry for PACKET_qXfer_uib.
10184 (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
10185 (_initialize_remote): Call add_packet_config_cmd for
10186 xfer:uib packet.
10187
10188 2012-03-05 Tristan Gingold <gingold@adacore.com>
10189
10190 * osabi.c (gdb_osabi_names): Add OpenVMS.
10191 (generic_elf_osabi_sniffer): Likewise.
10192 * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
10193
10194 2012-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
10195
10196 Removed unused code.
10197 * libunwind-frame.c (libunwind_frame_unwind)
10198 (libunwind_frame_base_address): Remove.
10199 * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
10200
10201 2012-03-04 Yao Qi <yao@codesourcery.com>
10202
10203 * common/agent.c (gdb_connect_sync_socket): Add _ markup and
10204 remove trailing new line.
10205 (agent_run_command, agent_run_command): Add _ markup.
10206 (agent_capability_check): Likewise.
10207
10208 2012-03-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10209
10210 * breakpoint.c (set_condition_evaluation_mode): Set
10211 CONDITION_EVALUATION_MODE unconditionally.
10212
10213 2012-03-03 Yao Qi <yao@codesourcery.com>
10214
10215 * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
10216 * common/agent.h: Update declaration.
10217 * inf-child.c (inf_child_use_agent): New.
10218 (inf_child_can_use_agent): New.
10219 (inf_child_target): Initialize fields `to_use_agent'
10220 and `to_can_use_agent'.
10221 * agent.c (agent_new_objfile): New.
10222 (_initialize_agent): Add agent_new_objfile to new_objfile
10223 observer.
10224
10225 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
10226 New.
10227 (linux_target_install_ops): Initialize field
10228 `to_static_tracepoint_markers_by_strid'.
10229 * remote.c (free_current_marker): Move it to ...
10230 * tracepoint.c (free_current_marker): ... here. New.
10231 (cleanup_target_stop): New.
10232 * tracepoint.h: Declare free_current_marker.
10233 * NEWS: Add one entry about `info static-tracepoint-marker'.
10234
10235 2012-03-03 Yao Qi <yao@codesourcery.com>
10236
10237 * common/agent.c (agent_loaded_p): New.
10238 (agent_look_up_symbols): New global.
10239 * common/agent.h: Declare agent_loaded_p.
10240
10241 2012-03-03 Yao Qi <yao@codesourcery.com>
10242
10243 * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
10244 (agent_capability_check, agent_capability_invalidate): New.
10245 (symbol_list): New array element.
10246 * common/agent.h (enum agent_capa): New.
10247 * target.c (target_pre_inferior): Call agent_capability_invalidate.
10248
10249 2012-03-03 Yao Qi <yao@codesourcery.com>
10250
10251 * target.h (struct target_ops) <to_use_agent>: New field.
10252 (struct target_ops) <to_can_use_agent>: New field.
10253 (target_use_agent, target_can_use_agent): New macro.
10254 * target.c (update_current_target): Update.
10255 * remote.c: New enum `PACKET_QAgent'.
10256 (remote_protocol_features): Add a new element.
10257 (remote_use_agent, remote_can_use_agent): New.
10258 (init_remote_ops): Initialize field `can_use_agent' with
10259 remote_can_use_agent. Intiailize field `use_agent' with
10260 remote_use_agent.
10261 * common/agent.c (use_agent): New global.
10262 * common/agent.h: Declare it.
10263 * tracepoint.c (info_static_tracepoint_markers_command): Add
10264 comment.
10265 * Makefile.in (SFILES): Add common/agent.c and agent.c.
10266 (COMMON_OBS): Add common/agent.o and agent.o
10267 (common-agent.o): New rule.
10268 * agent.c: New.
10269
10270 2012-03-03 Yao Qi <yao@codesourcery.com>
10271
10272 * common/agent.c: New.
10273 * common/agent.h: New.
10274 * configure.ac: Add `sys/socket.h' and `sys/un.h' to
10275 AC_CHECK_HEADERS.
10276 * configure, configh.in: Regenerated.
10277
10278 2012-03-02 Kevin Buettner <kevinb@redhat.com>
10279
10280 * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
10281 unless it exists for this architecture.
10282
10283 2012-03-02 Joel Brobecker <brobecker@adacore.com>
10284
10285 * language.h (struct language_defn): New "method" la_read_var_value.
10286 * findvar.c: #include "language.h".
10287 (default_read_var_value): Renames read_var_value. Rewrite
10288 function description.
10289 (read_var_value): New function.
10290 * value.h (default_read_var_value): Add prototype.
10291 * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
10292 New functions.
10293 (ada_language_defn): Add entry for la_read_var_value.
10294 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
10295 * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
10296 language_defn structures to add entry for new la_read_var_value
10297 field.
10298
10299 2012-03-02 Tom Tromey <tromey@redhat.com>
10300 Pedro Alves <palves@redhat.com>
10301
10302 PR breakpoints/13776:
10303 * breakpoint.c (breakpoint_init_inferior): Delete step-resume
10304 breakpoints.
10305 (delete_longjmp_breakpoint_at_next_stop): New.
10306 * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
10307 * target.c (generic_mourn_inferior): Call mark_breakpoints_out
10308 before deleting the inferior. Add comments.
10309 * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
10310 breakpoints immediately, but only on next stop. Move that code
10311 next to where we mark other breakpoints for deletion.
10312
10313 2012-03-02 Joel Brobecker <brobecker@adacore.com>
10314
10315 * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
10316 marker.
10317 * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
10318 violation.
10319
10320 2012-03-02 Pedro Alves <palves@redhat.com>
10321
10322 * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
10323
10324 2012-03-02 Ulrich Weigand <uweigand@de.ibm.com>
10325
10326 Fix -Wmissing-prototypes build.
10327 * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
10328 * remote-sim.c (gdbsim_has_all_memory): Likewise.
10329 (gdbsim_has_memory): Likewise.
10330
10331 2012-03-02 Yao Qi <yao@codesourcery.com>
10332
10333 Fix -Wmissing-prototypes build.
10334 * charset.c (phony_iconv_open): Make static.
10335 (phony_iconv_close, phony_iconv): Likewise.
10336 * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
10337 * i386-windows-nat.c (_initialize_i386_windows_nat): New
10338 prototype.
10339 * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
10340 * ser-mingw.c (create_select_thread): Make static.
10341 * windows-termcap.c (tgetent): New prototype.
10342 (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
10343
10344 2012-03-02 Zhang Yuanhui <asmwarrior@gmail.com>
10345
10346 Fix -Wmissing-prototypes build.
10347 * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
10348 (_initialize_windows_nat, _initialize_check_for_gdb_ini)
10349 (_initialize_loadable): New prototypes.
10350
10351 2012-03-02 Doug Evans <dje@google.com>
10352
10353 * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
10354 abbrev table, read_comp_unit will do it.
10355
10356 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10357
10358 Fix -Wmissing-prototypes build.
10359 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
10360 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
10361 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
10362 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
10363 (_initialize_arm_symbian_tdep): New prototype.
10364 * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
10365 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
10366 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
10367 static.
10368 * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
10369 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
10370 prototype.
10371 * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
10372 (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
10373 * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
10374 static.
10375 * moxie-tdep.c (moxie_process_record): Likewise.
10376 * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
10377 (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
10378 * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
10379 (_initialize_rl78_tdep): New prototype.
10380 * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
10381 (_initialize_rx_tdep): New prototype.
10382 * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
10383 (_initialize_darwin_solib): New prototype.
10384 * solib-spu.c: Include solib-spu.h.
10385 (_initialize_spu_solib): New prototype.
10386 * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
10387 * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
10388 (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
10389 (tic6x_software_single_step): Make it static.
10390 (_initialize_tic6x_tdep): New prototype.
10391
10392 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10393
10394 Fix -Wmissing-prototypes build.
10395 * cris-tdep.c (cris_can_use_hardware_watchpoint)
10396 (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
10397
10398 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10399
10400 Fix -Wmissing-prototypes build.
10401 * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
10402 (frv_have_stopped_data_address): Remove.
10403
10404 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10405
10406 Fix -Wmissing-prototypes build.
10407 * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
10408 * sh-tdep.c: Include sh64-tdep.h.
10409 * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
10410 * sh64-tdep.c: Include sh64-tdep.h.
10411 * sh64-tdep.h: New file.
10412
10413 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
10414
10415 * mips-tdep.c (mips32_scan_prologue): Correct indentation.
10416
10417 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
10418
10419 * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
10420 sp_regnum once the gdbarch_init_osabi hook has been called.
10421
10422 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
10423
10424 * mips-tdep.c (mips32_bc1_pc): New function.
10425 (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
10426 BPOSGE32 and BPOSGE64 instructions.
10427 (deal_with_atomic_sequence): Likewise.
10428 (mips32_instruction_has_delay_slot): Likewise.
10429
10430 2012-03-01 Maciej W. Rozycki <macro@mips.com>
10431 Chris Dearman <chris@mips.com>
10432 Maciej W. Rozycki <macro@codesourcery.com>
10433 Joseph Myers <joseph@codesourcery.com>
10434
10435 * features/mips-dsp.xml: New file.
10436 * features/mips64-dsp.xml: New file.
10437 * features/mips-dsp-linux.xml: New file.
10438 * features/mips64-dsp-linux.xml: New file.
10439 * features/Makefile (WHICH): Add mips-dsp-linux and
10440 mips64-dsp-linux.
10441 (mips-dsp-expedite, mips64-dsp-expedite): New variables.
10442 * features/mips-dsp-linux.c: New file.
10443 * features/mips64-dsp-linux.c: New file.
10444 * regformats/mips-dsp-linux.dat: New file.
10445 * regformats/mips64-dsp-linux.dat: New file.
10446 * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
10447 registers.
10448 (mips64_linux_register_addr): Likewise.
10449 (mips64_linux_regsets_fetch_registers): Likewise.
10450 (mips64_linux_regsets_store_registers): Likewise.
10451 (mips64_linux_fetch_registers): Update call to
10452 mips64_linux_regsets_fetch_registers.
10453 (mips64_linux_store_registers): Update call to
10454 mips64_linux_regsets_store_registers.
10455 (mips_linux_read_description): Probe for DSP registers.
10456 (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
10457 and initialize_tdesc_mips64_dsp_linux.
10458 * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
10459 Remove padding of no longer used embedded register slots.
10460 * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
10461 (MIPS_RESTART_REGNUM): Redefine enum value.
10462 * mips-tdep.c (mips_generic_reg_names): Remove trailing null
10463 strings.
10464 (mips_tx39_reg_names): Likewise.
10465 (mips_linux_reg_names): New array of register names for Linux
10466 targets.
10467 (mips_register_name): Check for a null pointer in
10468 mips_processor_reg_names and return an empty string.
10469 (mips_register_type): Exclude embedded registers for the IRIX
10470 and Linux ABIs.
10471 (mips_pseudo_register_type): Likewise. Use dynamic numbers to
10472 refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle
10473 DSP registers.
10474 (mips_stab_reg_to_regnum): Handle DSP accumulators.
10475 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
10476 (mips_gdbarch_init): Likewise. Initialize internal register
10477 indices for the Linux ABI. Use dynamic numbers to refer to
10478 registers, as applicable, while parsing the target description.
10479 * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
10480
10481 2012-03-01 Joel Brobecker <brobecker@adacore.com>
10482
10483 * frame.h (read_frame_register_unsigned): Fix typo in function
10484 description.
10485
10486 2012-03-01 Pedro Alves <palves@redhat.com>
10487
10488 * jit-reader.in [!__cplusplus]
10489 (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
10490
10491 2012-03-01 Pedro Alves <palves@redhat.com>
10492
10493 * configure.ac (build_warnings): Add -Wmissing-prototypes.
10494 * configure: Regenerate.
10495
10496 2012-03-01 Pedro Alves <palves@redhat.com>
10497
10498 * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
10499 * breakpoint.c (create_exception_master_breakpoint, trace_command)
10500 (ftrace_command, strace_command): Make static.
10501 * d-lang.c (_initialize_d_language): Declare.
10502 * dwarf2expr.c (_initialize_dwarf2expr): Declare.
10503 * dwarf2loc.c (_initialize_dwarf2loc):
10504 * dwarf2read.c (process_psymtab_comp_unit): Make static.
10505 * exec.c (exec_get_section_table): Make static.
10506 * i386-linux-tdep.c (i386_linux_record_signal): Make static.
10507 * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
10508 * inferior.c (remove_inferior_command, add_inferior_command)
10509 (clone_inferior_command): Make static.
10510 * linux-nat.c (linux_nat_thread_address_space)
10511 (linux_nat_core_of_thread): Make static.
10512 * linux-tdep.c (_initialize_linux_tdep): Declare.
10513 * objc-lang.c (_initialize_objc_lang): Declare.
10514 * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
10515 Make static.
10516 (_initialize_opencl_language): Declare.
10517 * record.c (_initialize_record): Declare.
10518 * remote.c (demand_private_info, remote_get_tib_address)
10519 (remote_supports_cond_tracepoints)
10520 (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
10521 Make static.
10522 * skip.c (_initialize_step_skip): Declare.
10523 * symtab.c (skip_prologue_using_lineinfo): Make static.
10524 * tracepoint.c (delete_trace_state_variable)
10525 (trace_variable_command, delete_trace_variable_command)
10526 (get_uploaded_tsv, find_matching_tracepoint_location)
10527 (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
10528 Make static.
10529 * value.c (pack_unsigned_long): Make static.
10530 * varobj.c (varobj_ensure_python_env): Make static.
10531 * windows-tdep.c (_initialize_windows_tdep): Declare.
10532 * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
10533
10534 2012-03-01 Pedro Alves <palves@redhat.com>
10535
10536 * linux-tdep.c (linux_has_shared_address_space): Make static. Add
10537 gdbarch parameter.
10538 (linux_init_abi): Install it as has_shared_address_space gdbarch
10539 callback.
10540
10541 2012-03-01 Pedro Alves <palves@redhat.com>
10542
10543 * observer.c (observer_test_first_notification_function)
10544 (observer_test_second_notification_function)
10545 (observer_test_third_notification_function): Add declarations.
10546
10547 2012-03-01 Pedro Alves <palves@redhat.com>
10548
10549 * common/signals.c (default_target_signal_to_host)
10550 (default_target_signal_from_host): Move ...
10551 * arch-utils.c: ... here.
10552 * arch-utils.h (default_target_signal_to_host)
10553 (default_target_signal_from_host): Declare.
10554
10555 * common/signals.c (target_signal_from_command): Move ...
10556 * infrun.c: ... here.
10557 * inferior.h (target_signal_from_command): Declare.
10558 * target.h (target_signal_from_command)
10559 (default_target_signal_from_host, default_target_signal_to_host):
10560 Delete declarations.
10561
10562 * common/signals.c (_initialize_signals): Delete.
10563
10564 2012-03-01 Pedro Alves <palves@redhat.com>
10565
10566 * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
10567 both __cplusplus and !__cplusplus.
10568
10569 2012-03-01 Pedro Alves <palves@redhat.com>
10570
10571 * psymtab.c (find_and_open_source): Delete declaration.
10572 * source.c (find_and_open_source): Move comment ...
10573 * source.h (find_and_open_source): ... to this new declaration.
10574
10575 2012-03-01 Pedro Alves <palves@redhat.com>
10576
10577 * inline-frame.c: Include inline-frame.h.
10578
10579 2012-03-01 Pedro Alves <palves@redhat.com>
10580
10581 * tui/tui-data.c (set_gen_win_origin): Delete.
10582 * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
10583 * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
10584
10585 2012-03-01 Pedro Alves <palves@redhat.com>
10586
10587 * remote.c (encode_actions): Delete declaration.
10588 * tracepoint.c (encode_actions): Make extern.
10589 * tracepoint.h (encode_actions): Declare.
10590
10591 2012-03-01 Pedro Alves <palves@redhat.com>
10592
10593 * python/py-breakpoint.c: Include python.h.
10594 * python/py-continueevent.c (create_continue_event_object): Make
10595 static.
10596 * python/py-lazy-string.c (stpy_get_type): Make static.
10597 * python/py-newobjfileevent.c (create_new_objfile_event_object):
10598 Make static.
10599 * python/py-utils.c (unicode_to_target_python_string): Make
10600 static.
10601 * python/py-value.c: Include python.h.
10602
10603 2012-03-01 Pedro Alves <palves@redhat.com>
10604
10605 * inferior.c (delete_threads_of_inferior): Delete.
10606
10607 2012-03-01 Pedro Alves <palves@redhat.com>
10608
10609 Import fallback definitions from glibc.
10610
10611 * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
10612 ps_prochandle): Forward declare.
10613 (ps_err_e): Use glibc's comments.
10614 [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
10615 (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
10616 (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
10617 (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
10618 (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
10619 (struct ps_prochandle): Adjust comment.
10620
10621 2012-03-01 Pedro Alves <palves@redhat.com>
10622
10623 * ada-lang.c (ada_modulus_from_name): Delete.
10624 * ada-lex.l (lexer_init): Make static.
10625
10626 2012-03-01 Pedro Alves <palves@redhat.com>
10627
10628 PR gdb/13767
10629
10630 * frame.c (read_frame_register_unsigned): New.
10631 * frame.h (read_frame_register_unsigned): Declare.
10632 * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
10633 Handle it.
10634 (print_i387_control_word): New parameter `control_p'. Handle it.
10635 (i387_print_float_info): Handle unavailable float registers.
10636
10637 2012-03-01 Keith Seitz <keiths@redhat.com>
10638
10639 * linespec.c (decode_line_2): Sort the list of methods
10640 alphabetically before presenting the user with a selection
10641 menu.
10642
10643 2012-03-01 Doug Evans <dje@google.com>
10644
10645 * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
10646 has_namespace_info.
10647 (dwarf2_read_abbrevs): Remove corresponding initialization.
10648
10649 2012-03-01 Scott J. Goldman <scottjg@vmware.com>
10650
10651 * NEWS: Mention new python command class gdb.COMMAND_USER.
10652 * cli/cli-cmds.c (show_user): Print error when used on a python
10653 command.
10654 (init_cli_cmds): Update documentation strings for "show user" and
10655 "set/show max-user-call-depth" to clarify that it does not apply to
10656 python commands.
10657 * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
10658 error check.
10659 (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
10660 gdb python api.
10661 * top.c (execute_command): Only execute a user-defined command as a
10662 legacy macro if c->user_commands is set.
10663
10664 2012-03-01 Tom Tromey <tromey@redhat.com>
10665
10666 * valprint.h (struct generic_val_print_decorations): New.
10667 (generic_val_print): Declare.
10668 * valprint.c (generic_val_print): New function.
10669 * p-valprint.c (p_decorations): New global.
10670 (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
10671 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
10672 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
10673 TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
10674 * m2-valprint.c (m2_decorations): New global.
10675 (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
10676 TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
10677 TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
10678 TYPE_CODE_ERROR>: Call generic_val_print.
10679 * f-valprint.c (f_decorations): New global.
10680 (f_val_print): Use print_function_pointer_address.
10681 <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
10682 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
10683 TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
10684 generic_val_print.
10685 * c-valprint.c (c_decorations): New global.
10686 (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
10687 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
10688 TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
10689 TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
10690 TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
10691 * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
10692 case.
10693
10694 2012-03-01 Tom Tromey <tromey@redhat.com>
10695
10696 * valprint.c (val_print): Update.
10697 * p-valprint (pascal_val_print): Return void.
10698 * p-lang.h (pascal_val_print): Return void.
10699 * m2-valprint.c (m2_val_print): Return void.
10700 * m2-lang.h (m2_val_print): Return void.
10701 * language.h (struct language_defn) <la_val_print>: Return void.
10702 * language.c (unk_lang_val_print): Return void.
10703 * jv-valprint.c (java_val_print): Return void.
10704 * jv-lang.h (java_val_print): Return void.
10705 * f-valprint.c (f_val_print): Return void.
10706 * f-lang.h (f_val_print): Return void.
10707 * d-valprint.c (d_val_print): Return void.
10708 (dynamic_array_type): Update.
10709 * d-lang.h (d_val_print): Return void.
10710 * c-valprint.c (c_val_print): Return void.
10711 * c-lang.h (c_val_print): Return void.
10712 * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
10713 void.
10714 * ada-lang.h (ada_val_print): Return void.
10715
10716 2012-03-01 Tom Tromey <tromey@redhat.com>
10717
10718 * value.h (val_print): Return void.
10719 * valprint.c (val_print): Return void.
10720
10721 2012-03-01 Tom Tromey <tromey@redhat.com>
10722
10723 * value.h (common_val_print): Return void.
10724 * valprint.c (common_val_print): Return void.
10725
10726 2012-03-01 Tom Tromey <tromey@redhat.com>
10727
10728 * value.h (value_print): Return void.
10729 * valprint.c (value_print): Return void.
10730 * p-valprint.c (pascal_value_print): Return void.
10731 * p-lang.h (pascal_value_print): Return void.
10732 * language.h (struct language_defn) <la_value_print>: Return
10733 void.
10734 * language.c (unk_lang_value_print): Return void.
10735 * jv-valprint.c (java_value_print): Return void.
10736 * jv-lang.h (java_value_print): Return void.
10737 * f-valprint.c (c_value_print): Don't declare.
10738 Include c-lang.h.
10739 * c-valprint.c (c_value_print): Return void.
10740 * c-lang.h (c_value_print): Return void.
10741 * ada-valprint.c (ada_value_print): Return void.
10742 * ada-lang.h (ada_value_print): Return void.
10743
10744 2012-03-01 Tom Tromey <tromey@redhat.com>
10745
10746 * value.c (value_primitive_field): Handle virtual base classes.
10747
10748 2012-03-01 Tom Tromey <tromey@redhat.com>
10749
10750 * gdbtypes.h (struct vbase): Remove.
10751
10752 2012-03-01 Tom Tromey <tromey@redhat.com>
10753
10754 * c-valprint.c (print_function_pointer_address): Move...
10755 * valprint.c: ... here. Make non-static.
10756 * m2-valprint.c (print_function_pointer_address): Remove.
10757 * valprint.h (print_function_pointer_address): Declare.
10758
10759 2012-03-01 Joel Brobecker <brobecker@adacore.com>
10760
10761 * NEWS: Document the fact that one can provide a condition when
10762 creating an Ada exception catchpoint.
10763
10764 2012-03-01 Tom Tromey <tromey@redhat.com>
10765
10766 * valprint.c (val_print_type_code_flags): Fix placement of
10767 trailing brace.
10768
10769 2012-03-01 Joel Brobecker <brobecker@adacore.com>
10770
10771 * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
10772 (update_files): Do not set MULTILINE_COMMENT_PREFIXES
10773 environment variable before calling update-copyright.
10774
10775 2012-03-01 Joel Brobecker <brobecker@adacore.com>
10776
10777 * gnulib/extra/update-copyright: Update to the latest from
10778 gnulib's git repository.
10779 * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
10780 variable to 2 instead of 1.
10781
10782 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10783
10784 * varobj.c (c_value_of_variable): Remove dead code.
10785
10786 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10787
10788 * ada-lex.p (processId): Do not modify already encoded IDs.
10789 Update function documentation.
10790
10791 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10792
10793 * ada-lang.h (ada_find_renaming_symbol): Replace parameter
10794 "name" with "struct symbol *name_sym".
10795 * ada-exp.y (write_var_or_type): Update call to
10796 ada_find_renaming_symbol.
10797 "name" with "struct symbol *name_sym". Adjust Implementation
10798 accordingly. Adjust the function documentation.
10799
10800 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10801
10802 * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
10803 * ada-lang.c (ada_find_any_type): Add advance declaration.
10804 Make static. Replace ada_find_any_symbol by
10805 ada_find_any_type_symbol.
10806 (ada_find_any_type_symbol): Renames ada_find_any_symbol.
10807 Improve function description. Make static.
10808 (ada_find_renaming_symbol, find_old_style_renaming_symbol):
10809 Replace ada_find_any_symbol by ada_find_any_type_symbol.
10810
10811 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10812
10813 * ada-lang.c (struct tag_args): Delete.
10814 (ada_get_tsd_type): Function body moved up in source file.
10815 (ada_tag_name_1, ada_tag_name_2): Delete.
10816 (ada_get_tsd_from_tag): New function.
10817 (ada_tag_name_from_tsd): New function.
10818 (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
10819 to determine the tag name.
10820
10821 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10822
10823 * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
10824 declaration.
10825 * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
10826 function.
10827
10828 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10829
10830 * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
10831
10832 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10833
10834 * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
10835 full searches.
10836
10837 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10838
10839 * ada-lang.c (constrained_packed_array_type): If there is a
10840 parallel XA type, use it to determine the array index type.
10841
10842 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10843
10844 * ada-valprint.c (ada_val_print_1): If our value is a reference
10845 to an array descriptor, dereference it before converting it
10846 to a simple array.
10847
10848 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10849
10850 * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
10851 creating fixed value.
10852 (ada_value_ind, ada_coerce_ref, assign_component)
10853 (ada_evaluate_subexp): Remove call to unwrap_value before
10854 call to ada_to_fixed_value.
10855
10856 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10857
10858 * ada-lang.c (to_fixed_array_type): Set result's type name.
10859
10860 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10861
10862 * ada-lang.c (catch_ada_exception_command_split): Add new
10863 argument cond_string. Add support for condition at end of
10864 "catch exception" commands.
10865 (ada_decode_exception_location): Add new argument cond_string.
10866 Update call to catch_ada_exception_command_split.
10867 (create_ada_exception_catchpoint): Add new argument cond_string.
10868 Set the breakpoint condition if needed.
10869 (catch_ada_exception_command): Update call to
10870 ada_decode_exception_location.
10871 (ada_decode_assert_location): Add function documentation.
10872 Add support for condition at end of "catch assert" command.
10873 (catch_assert_command): Update calls to ada_decode_assert_location
10874 and create_ada_exception_catchpoint.
10875
10876 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
10877
10878 Fix disp-step-syscall.exp: fork: single step over fork.
10879 * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
10880 (i386_linux_get_syscall_number_from_regcache): ... here, new function
10881 comment, change parameters gdbarch and ptid to regcache. Remove
10882 parameter regcache, initialize gdbarch from regcache here.
10883 (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
10884 New functions.
10885 (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
10886 instead.
10887 * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
10888 'syscall'. Make the 'int' check more strict.
10889
10890 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
10891
10892 Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
10893 * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
10894 (i386_linux_intx80_sysenter_syscall_record): ... here.
10895 (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
10896 Use the renamed function name.
10897
10898 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
10899
10900 * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
10901 * breakpoint.c (until_break_command): Likewise.
10902 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
10903 * infcall.c (call_function_by_hand): Likewise.
10904 * infcmd.c (finish_forward): Likewise.
10905 * infrun.c (insert_exception_resume_breakpoint): Likewise.
10906
10907 2012-02-28 Tristan Gingold <gingold@adacore.com>
10908
10909 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
10910 avoid variable assignments inside condition.
10911
10912 2012-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
10913
10914 Fix static analysis issue found by cppcheck.
10915 * microblaze-tdep.c (microblaze_extract_return_value): Fix
10916 uninitialized BUF for size 2.
10917
10918 2012-02-27 Chris Dearman <chris@mips.com>
10919 Nathan Froyd <froydnj@codesourcery.com>
10920 Maciej W. Rozycki <macro@codesourcery.com>
10921
10922 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
10923 (mips16_instruction_has_delay_slot): Likewise.
10924 (mips_segment_boundary): Likewise.
10925 (mips_adjust_breakpoint_address): Likewise.
10926 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
10927
10928 2012-02-27 Maciej W. Rozycki <macro@mips.com>
10929 Maciej W. Rozycki <macro@codesourcery.com>
10930
10931 * infrun.c (handle_inferior_event): Don't proceed through
10932 shared library trampolines if stepping at the machine
10933 instruction level.
10934
10935 2012-02-27 Maciej W. Rozycki <macro@codesourcery.com>
10936
10937 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
10938 too.
10939
10940 2012-02-27 Thomas Schwinge <thomas@codesourcery.com>
10941
10942 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
10943 (sh_stub_unwind_sniffer): New functions.
10944 (sh_stub_unwind): New variable.
10945 (sh_gdbarch_init): Wire everything.
10946
10947 2012-02-27 Pedro Alves <palves@redhat.com>
10948
10949 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
10950 (linux_nat_post_attach_wait): Adjust to use
10951 linux_proc_pid_is_stopped.
10952 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
10953 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
10954 based on pid_is_stopped from both linux-nat.c and
10955 gdbserver/linux-low.c, and renamed.
10956
10957 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
10958
10959 * remote.c (remote_watchpoint_addr_within_range): New function.
10960 (init_remote_ops): Use it.
10961
10962 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
10963
10964 * target.h (target_watchpoint_addr_within_range): Document macro.
10965
10966 2012-02-24 Pedro Alves <palves@redhat.com>
10967
10968 * stack.c (set_last_displayed_sal): Issue internal_error instead
10969 of warning, and issue it after clearing the last displayed sal.
10970
10971 2012-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
10972 Pedro Alves <palves@redhat.com>
10973
10974 * breakpoint.c (until_break_command): Install breakpoints after
10975 all frame manipulations.
10976
10977 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
10978
10979 * remote.c (remote_supports_cond_breakpoints): New forward
10980 declaration.
10981 (remote_add_target_side_condition): New function.
10982 (remote_insert_breakpoint): Add target-side breakpoint
10983 conditional if supported.
10984 (remote_insert_hw_breakpoint): Likewise.
10985 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
10986 hook.
10987
10988 * target.c (update_current_target): Inherit
10989 to_supports_evaluation_of_breakpoint_conditions.
10990 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
10991
10992 * target.h (struct target_ops)
10993 <to_supports_evaluation_of_breakpoint_conditions>: New field.
10994 (target_supports_evaluation_of_breakpoint_conditions): New #define.
10995
10996 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
10997 (condition_evaluation_both, condition_evaluation_auto,
10998 condition_evaluation_host, condition_evaluation_target,
10999 condition_evaluation_enums, condition_evaluation_mode_1,
11000 condition_evaluation_mode): New static globals.
11001 (translate_condition_evaluation_mode): New function.
11002 (breakpoint_condition_evaluation_mode): New function.
11003 (gdb_evaluates_breakpoint_condition_p): New function.
11004 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
11005 (mark_breakpoint_modified): New function.
11006 (mark_breakpoint_location_modified): New function.
11007 (set_condition_evaluation_mode): New function.
11008 (show_condition_evaluation_mode): New function.
11009 (bp_location_compare_addrs): New function.
11010 (get_first_location_gte_addr): New helper function.
11011 (set_breakpoint_condition): Free condition bytecode if locations
11012 has become unconditional. Call mark_breakpoint_modified (...).
11013 (condition_command): Call update_global_location_list (1) for
11014 breakpoints.
11015 (breakpoint_xfer_memory): Use is_breakpoint (...).
11016 (is_breakpoint): New function.
11017 (parse_cond_to_aexpr): New function.
11018 (build_target_condition_list): New function.
11019 (insert_bp_location): Handle target-side conditional
11020 breakpoints and call build_target_condition_list (...).
11021 (update_inserted_breakpoint_locations): New function.
11022 (insert_breakpoint_locations): Handle target-side conditional
11023 breakpoints.
11024 (bpstat_check_breakpoint_conditions): Add comment.
11025 (bp_condition_evaluator): New function.
11026 (bp_location_condition_evaluator): New function.
11027 (print_breakpoint_location): Print information on where the condition
11028 will be evaluated.
11029 (print_one_breakpoint_location): Likewise.
11030 (init_bp_location): Call mark_breakpoint_location_modified (...) for
11031 breakpoint location.
11032 (force_breakpoint_reinsertion): New functions.
11033 (update_global_location_list): Handle target-side breakpoint
11034 conditions.
11035 Reinsert locations that are already inserted if conditions have
11036 changed.
11037 (bp_location_dtor): Free agent expression bytecode.
11038 (disable_breakpoint): Call mark_breakpoint_modified (...).
11039 Call update_global_location_list (...) with parameter 1 for breakpoints.
11040 (disable_command): Call mark_breakpoint_location_modified (...).
11041 Call update_global_location_list (...) with parameter 1 for breakpoints.
11042 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
11043 (enable_command): mark_breakpoint_location_modified (...).
11044 (_initialize_breakpoint): Update documentation and add
11045 condition-evaluation breakpoint subcommand.
11046
11047 * breakpoint.h: Include ax.h.
11048 (condition_list): New data structure.
11049 (condition_status): New enum.
11050 (bp_target_info) <cond_list>: New field.
11051 (bp_location) <condition_changed, cond_bytecode>: New fields.
11052 (is_breakpoint): New prototype.
11053
11054 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
11055
11056 * remote.c (remote_state) <cond_breakpoints>: New field.
11057 (PACKET_ConditionalBreakpoints): New enum.
11058 (remote_cond_breakpoint_feature): New function.
11059 (remote_protocol_features): Add new ConditionalBreakpoints entry.
11060 (remote_supports_cond_breakpoints): New function.
11061 (_initialize_remote): Add new packet configuration for
11062 target-side conditional breakpoints.
11063
11064 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
11065
11066 * NEWS: Mention target-side conditional breakpoint support,
11067 new condition-evaluation breakpoint subcommand and remote
11068 packet extensions.
11069
11070 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
11071
11072 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
11073 number.
11074
11075 2012-02-24 Thomas Schwinge <thomas@codesourcery.com>
11076
11077 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
11078 (after_prologue): Remove.
11079
11080 2012-02-23 Tom Tromey <tromey@redhat.com>
11081
11082 * jv-valprint.c (java_val_print): Remove dead code.
11083
11084 2012-02-23 Tristan Gingold <gingold@adacore.com>
11085
11086 * ada-tasks.c (struct ada_tasks_inferior_data): Add
11087 known_tasks_element and known_tasks_length fields.
11088 (read_known_tasks_array): Change argument type. Use pointer type
11089 and number of elements from DATA. Adjust.
11090 (read_known_tasks_list): Likewise.
11091 (get_known_tasks_addr): Remove.
11092 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
11093 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
11094 type and array length. Merge former get_known_tasks_addr code.
11095
11096 2012-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
11097
11098 PR backtrace/13716
11099 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
11100 it after set_momentary_breakpoint.
11101
11102 2012-02-22 Sterling Augustine <saugustine@google.com>
11103
11104 PR 13689:
11105 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
11106
11107 2012-02-22 Gary Benson <gbenson@redhat.com>
11108
11109 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
11110 (find_slot_in_mapped_hash): Likewise.
11111
11112 2012-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
11113
11114 PR build/13638
11115 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
11116 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
11117 * configure: Regenerate.
11118
11119 2012-02-21 Tristan Gingold <gingold@adacore.com>
11120 Pedro Alves <palves@redhat.com>
11121
11122 * ia64-tdep.c: Do not include libunwind-ia64.h.
11123 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
11124 Include libunwind-ia64.h instead of libunwind.h.
11125 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
11126 for libunwind.h existence.
11127 * configure, config.in: Regenerate.
11128
11129 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
11130
11131 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
11132 instead of value_rtti_target_type.
11133 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
11134 instead of value_rtti_target_type.
11135 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
11136 value_rtti_target_type.
11137 * valops.c (value_ind): Extract function readjust_indirect_value_type.
11138 (value_rtti_target_type): Rename to ...
11139 (value_rtti_indirect_type): ... here and make it indirect. Update
11140 function comment.
11141 * value.c (readjust_indirect_value_type): New function.
11142 (coerce_ref): Support for enclosing type setting for references
11143 with readjust_indirect_value_type.
11144 * value.h (readjust_value_type): New declaration.
11145 (value_rtti_target_type): Rename to ...
11146 (value_rtti_indirect_type): ... here.
11147
11148 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
11149
11150 * MAINTAINERS (Write After Approval): Add myself to the list.
11151
11152 2012-02-20 Doug Evans <dje@google.com>
11153
11154 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
11155 Rename objfile_p_char parameter to objfilep.
11156 (build_objfile_section_table): Result is now void. All callers
11157 updated.
11158 * objfiles.h (struct objfile): Tweak comments, whitespace.
11159 (build_objfile_section_table): Update.
11160
11161 * elfread.c (elf_symfile_segments): Fix warning text.
11162
11163 2012-02-20 Tom Tromey <tromey@redhat.com>
11164
11165 PR gdb/13498:
11166 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
11167 particular set of file names once.
11168 (dw2_map_symbol_filenames): Likewise.
11169
11170 2012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
11171
11172 Code cleanup.
11173 * main.c (write_files): Remove the declaration.
11174 (external_editor_command): Move the declaration ...
11175 [GDBTK] (external_editor_command): ... here. Fix the comment.
11176
11177 2012-02-20 Tom Tromey <tromey@redhat.com>
11178
11179 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
11180 extraneous block.
11181
11182 2012-02-20 Tristan Gingold <gingold@adacore.com>
11183
11184 * darwin-nat.h (enum darwin_msg_state): Add comments.
11185
11186 2012-02-20 Tristan Gingold <gingold@adacore.com>
11187
11188 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
11189 value.
11190
11191 2012-20-18 Joel Brobecker <brobecker@adacore.com>
11192
11193 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
11194 between function description and implementation.
11195
11196 2012-02-17 Tom Tromey <tromey@redhat.com>
11197
11198 PR python/12070:
11199 * python/py-event.c (event_object_getset): New global.
11200 (event_object_type): Reference it.
11201 * python/py-type.c (field_object_getset): New global.
11202 (field_object_type): Reference it.
11203 * python/python-internal.h (gdb_py_generic_dict): Declare.
11204 * python/py-utils.c (gdb_py_generic_dict): New function.
11205
11206 2012-02-17 Tristan Gingold <gingold@adacore.com>
11207
11208 * solib-darwin.c (darwin_current_sos): Check magic and filetype
11209
11210 2012-02-17 Thomas Schwinge <thomas@codesourcery.com>
11211
11212 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
11213 TYPE_CALLING_CONVENTION annotation.
11214
11215 2012-02-16 Kevin Buettner <kevinb@redhat.com>
11216
11217 * MAINTAINERS: Add rx to target ISA section.
11218 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
11219 (ALLDEPFILES): Add rx-tdep.c.
11220
11221 2012-02-16 Tom Tromey <tromey@redhat.com>
11222
11223 * symfile.c (symbol_file_add_main_1): Use inferior's
11224 symfile_flags.
11225 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
11226 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
11227 inferior.
11228 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
11229 inferior.
11230 (follow_exec): Use inferior's symfile_flags.
11231 * inferior.h (struct inferior) <symfile_flags>: New field.
11232
11233 2012-02-16 Mike Frysinger <vapier@gentoo.org>
11234
11235 PR gdb/9734:
11236 * remote-sim.c (gdbsim_create_inferior): Call error() when
11237 sim_create_inferior() fails.
11238
11239 2012-02-16 Josh Matthews <josh@joshmatthews.net>
11240
11241 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
11242
11243 2012-02-16 Tom Tromey <tromey@redhat.com>
11244
11245 PR c++/13653:
11246 * thread.c (struct current_thread_cleanup) <was_removable>: New
11247 field.
11248 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
11249 (make_cleanup_restore_current_thread): Initialize new field.
11250
11251 2012-02-15 Kevin Buettner <kevinb@redhat.com>
11252
11253 * MAINTAINERS: Add rl78 to target ISA section.
11254 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
11255 (ALLDEPFILES): Add rl78-tdep.c.
11256 * NEWS: Mention rl78 as a new target.
11257
11258 2012-02-15 Aleksandar Ristovski <aristovski@qnx.com>
11259
11260 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
11261 data.
11262 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
11263
11264 2012-02-15 Tom Tromey <tromey@redhat.com>
11265
11266 PR gdb/12659:
11267 * infcmd.c (registers_info): Print just the current register's
11268 name.
11269
11270 2012-02-15 Tom Tromey <tromey@redhat.com>
11271
11272 * python/py-symbol.c (sympy_value): Use _().
11273
11274 2012-02-15 Pedro Alves <palves@redhat.com>
11275
11276 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
11277 output to be like native targets'.
11278 (remote_pid_to_str): Special case the null ptid.
11279
11280 2012-02-14 Stan Shebs <stan@codesourcery.com>
11281
11282 * NEWS: Mention enable count command.
11283 * breakpoint.h (struct breakpoint): New field enable_count.
11284 * breakpoint.c (enable_breakpoint_disp): Add count argument.
11285 (enable_breakpoint): Add arg to call.
11286 (struct disp_data): New struct.
11287 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
11288 (do_map_enable_once_breakpoint): Create a struct and pass it.
11289 (do_map_enable_delete_breakpoint): Ditto.
11290 (do_map_enable_count_breakpoint): New function.
11291 (enable_count_command): New function.
11292 (bpstat_stop_status): Decrement enable_count.
11293 (print_one_breakpoint_location): Report enable count.
11294 (_initialize_breakpoint): Add enable count command.
11295
11296 2012-02-14 Kevin Buettner <kevinb@redhat.com>
11297
11298 * rl78-tdep.c (reggroups.h): Include.
11299 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
11300 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
11301 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
11302 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
11303 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
11304 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
11305 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
11306 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
11307 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
11308 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
11309 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
11310 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
11311 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
11312 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
11313 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
11314 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
11315 beginning of register list.
11316 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
11317 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
11318 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
11319 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
11320 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
11321 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
11322 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
11323 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
11324 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
11325 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
11326 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
11327 the pseudo registers. Rearrange other pseudo registers too so
11328 that the bank registers appear at the end.
11329 (rl78_register_type): Account for the fact that the byte sized
11330 bank registers are now pseudo-registers.
11331 (rl78_register_name): Rearrange the register name array. Make
11332 initial set of raw banked registers inaccessible.
11333 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
11334 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
11335 case for copying bytes back and forth between raw and pseudo
11336 versions of the banked registers. Update other cases to reflect
11337 the changed names.
11338 (rl78_return_value): Update to account for changed names of
11339 raw registers.
11340 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
11341 rl78_register_sim_regno().
11342
11343 2012-02-14 Kevin Buettner <kevinb@redhat.com>
11344
11345 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
11346 the name parameter being passed to find_pc_partial_function().
11347
11348 2012-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
11349
11350 * MAINTAINERS: Step down from being ia64 target maintainer.
11351
11352 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
11353
11354 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
11355 compilation warning.
11356
11357 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
11358
11359 Fix crash on loaded shlibs without loaded exec_bfd.
11360 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
11361 (set_section_command): Replace exec_bfd by p->bfd.
11362
11363 2012-02-10 Tom Tromey <tromey@redhat.com>
11364
11365 * linespec.c (decode_line_internal): Skip symtabs_from_filename
11366 when we have a C++ qualified name.
11367
11368 2012-02-10 Pedro Alves <palves@redhat.com>
11369
11370 * inferior.c (inferior_pid_to_str): New.
11371 (print_inferior, inferior_command): Use it.
11372
11373 2012-02-10 Pedro Alves <palves@redhat.com>
11374
11375 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
11376 the test CFLAGS.
11377 * configure: Regenerate.
11378
11379 2012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11380
11381 * linespec.c (decode_line_internal): Fix comment correctness.
11382
11383 2012-02-09 Valery Khromov <valery.khromov@gmail.com>
11384
11385 PR gdb/12953
11386 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
11387 * amd64bsd-nat.c: Add support for debug registers (adapted from
11388 i386bsd-nat.c).
11389 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
11390 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
11391 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
11392 (amd64bsd_dr_get_control): New functions.
11393 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
11394 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
11395 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
11396 watchpoints initialization.
11397 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
11398
11399 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
11400
11401 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
11402 flds_bnds.fields.
11403 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
11404
11405 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
11406
11407 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
11408
11409 2012-02-08 Joel Brobecker <brobecker@adacore.com>
11410
11411 * language.h (symbol_name_cmp_ftype): Renames
11412 symbol_name_match_p_ftype.
11413 (struct language_defn)[la_get_symbol_name_cmp]: Renames
11414 la_get_symbol_name_match_p.
11415 * ada-lang.c (ada_get_symbol_name_cmp): Renames
11416 ada_get_symbol_name_match_p. Update comment.
11417 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
11418 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
11419 Renames symbol_name_match_p. Update field type.
11420 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
11421 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11422 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
11423 "la_get_symbol_name_cmp" in comments.
11424 * language.c: Likewise.
11425
11426 2012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11427
11428 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
11429 %eflags offset.
11430 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
11431 (amd64_sol2_gregset32_reg_offs): Likewise.
11432
11433 2012-02-08 Joel Brobecker <brobecker@adacore.com>
11434
11435 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
11436 of the returned BFD is allocated by GDB.
11437
11438 2012-02-07 Tom Tromey <tromey@redhat.com>
11439
11440 PR python/12027:
11441 * python/python-internal.h (frame_object_type): Declare.
11442 * python/py-symbol.c (sympy_needs_frame): New function.
11443 (sympy_value): New function.
11444 (symbol_object_getset): Add "needs_frame".
11445 (symbol_object_methods): Add "value".
11446 * python/py-frame.c (frame_object_type): No longer static.
11447
11448 2012-02-07 Tom Tromey <tromey@redhat.com>
11449
11450 PR python/13599:
11451 * python/py-symbol.c (sympy_line): New function.
11452 (symbol_object_getset): Add "line".
11453
11454 2012-02-07 Tom Tromey <tromey@redhat.com>
11455
11456 * charset.c (find_charset_names): Check 'in' against NULL.
11457
11458 2012-02-06 Doug Evans <dje@google.com>
11459
11460 * gdbtypes.h (struct main_type): Change type of name,tag_name,
11461 and fields.name members from char * to const char *. All uses updated.
11462 (struct cplus_struct_type): Change type of fn_fieldlists.name member
11463 from char * to const char *. All uses updated.
11464 (type_name_no_tag): Update.
11465 (lookup_unsigned_typename, lookup_signed_typename): Update.
11466 * gdbtypes.c (type_name_no_tag): Change result type
11467 from char * to const char *. All callers updated.
11468 (lookup_unsigned_typename, lookup_signed_typename): Change type of
11469 name parameter from char * to const char *.
11470 * symtab.h (struct cplus_specific): Change type of demangled_name
11471 member from char * to const char *. All uses updated.
11472 (struct general_symbol_info): Change type of name and
11473 mangled_lang.demangled_name members from char * to const char *.
11474 All uses updated.
11475 (symbol_get_demangled_name, symbol_natural_name): Update.
11476 (symbol_demangled_name, symbol_search_name): Update.
11477 * symtab.c (symbol_get_demangled_name): Change result type
11478 from char * to const char *. All callers updated.
11479 (symbol_natural_name, symbol_demangled_name): Ditto.
11480 (symbol_search_name): Ditto.
11481 (completion_list_add_name): Change type of symname,sym_text,
11482 text,word parameters from char * to const char *.
11483 (completion_list_objc_symbol): Change type of sym_text,
11484 text,word parameters from char * to const char *.
11485 * ada-lang.c (find_struct_field): Change type of name parameter
11486 from char * to const char *.
11487 (encoded_ordered_before): Similarly for N0,N1 parameters.
11488 (old_renaming_is_invisible): Similarly for function_name parameter.
11489 (ada_type_name): Change result type from char * to const char *.
11490 All callers updated.
11491 * ada-lang.h (ada_type_name): Update.
11492 * buildsym.c (hashname): Change type of name parameter
11493 from char * to const char *.
11494 * buildsym.h (hashname): Update.
11495 * dbxread.c (end_psymtab): Change type of include_list parameter
11496 from char ** to const char **.
11497 * dwarf2read.c (determine_prefix): Change result type
11498 from char * to const char *. All callers updated.
11499 * f-lang.c (find_common_for_function): Change type of name, funcname
11500 parameters from char * to const char *.
11501 * f-lang.c (find_common_for_function): Update.
11502 * f-valprint.c (list_all_visible_commons): Change type of funcname
11503 parameters from char * to const char *.
11504 * gdbarch.sh (static_transform_name): Change type of name parameter
11505 and result from char * to const char *.
11506 * gdbarch.c: Regenerate.
11507 * gdbarch.h: Regenerate.
11508 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
11509 of name parameter from char * to const char *.
11510 * jv-lang.c (java_primitive_type_from_name): Ditto.
11511 (java_demangled_signature_length): Similarly for signature parameter.
11512 (java_demangled_signature_copy): Ditto.
11513 (java_demangle_type_signature): Ditto.
11514 * jv-lang.h (java_primitive_type_from_name): Update.
11515 (java_demangle_type_signature): Update.
11516 * objc-lang.c (specialcmp): Change type of a,b parameters
11517 from char * to const char *.
11518 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
11519 from char * to const char *. All callers updated.
11520 * p-lang.h (is_pascal_string_type): Update.
11521 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
11522 of name parameter from char * to const char *.
11523 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
11524 * utils.c (fprintf_symbol_filtered): Ditto.
11525 * defs.h (fprintf_symbol_filtered): Update.
11526 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
11527 * stabsread.h (end_psymtab): Update.
11528 * stack.c (find_frame_funname): Change type of funname parameter
11529 from char ** to const char **.
11530 * stack.h (find_frame_funname): Update.
11531 * typeprint.c (type_print): Change type of varstring parameter
11532 from char * to const char *.
11533 * value.h (type_print): Update.
11534 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
11535 from char * to const char *. All callers updated.
11536 (xcoff_end_psymtab): Change type of include_list parameter
11537 from char ** to const char **. All callers updated.
11538 (swap_sym): Similarly for name parameter. All callers updated.
11539 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
11540 Use xstrdup.
11541 (process_coff_symbol): Use xstrdup.
11542 * stabsread.c (stabs_method_name_from_physname): Renamed from
11543 update_method_name_from_physname. Change result type from void
11544 to char *. All callers updated.
11545 (read_member_functions): In has_destructor case, store name in objfile
11546 obstack instead of malloc space. In !has_stub case, fix mem leak.
11547
11548 2012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
11549
11550 * configure: Rebuild.
11551 * configure.ac: Put -L../bfd and -L../libiberty at the front of
11552 LDFLAGS.
11553
11554 2012-02-03 Kevin Buettner <kevinb@redhat.com>
11555
11556 * configure.tgt (rl78-*-elf): New target.
11557 * rl78-tdep.c: New file.
11558
11559 2012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11560
11561 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
11562 and continue the loop. Add QUIT statement.
11563
11564 2012-02-03 Tom Tromey <tromey@redhat.com>
11565
11566 PR gdb/13596:
11567 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
11568 bfd_lookup_symbol_from_symtab.
11569 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
11570 gdb_bfd_lookup_symbol_from_symtab.
11571
11572 2012-02-03 Joel Brobecker <brobecker@adacore.com>
11573
11574 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
11575 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
11576 symbol. Add assertion that sym2 is never NULL.
11577
11578 2012-02-02 Doug Evans <dje@google.com>
11579
11580 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
11581 "name" parameter to const char ** from char **. All callers updated.
11582 (find_pc_partial_function): Ditto.
11583 (cache_pc_function_name): Change type to const char * from char *.
11584 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
11585 (find_pc_partial_function): Update.
11586 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
11587 type of "name" parameter to const char * from char *.
11588 All uses updated.
11589 * arch-utils.c (generic_in_solib_return_trampoline): Change
11590 type of "name" parameter to const char * from char *.
11591 * arch-utils.h (generic_in_solib_return_trampoline): Update.
11592 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
11593 type of "name" parameter to const char * from char *.
11594 * gdbarch.sh (in_solib_return_trampoline): Ditto.
11595 * gdbarch.c: Regenerate.
11596 * gdbarch.h: Regenerate.
11597 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
11598 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
11599 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
11600 type of "name" parameter to const char * from char *.
11601 * skip.c (skip_function_pc): Ditto.
11602 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
11603 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
11604 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
11605 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
11606 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
11607 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
11608 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
11609 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
11610 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
11611
11612 2012-02-02 Pedro Alves <palves@redhat.com>
11613
11614 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
11615 the current inferior has no execution. Make sure the current
11616 remote process matches gdb's current inferior.
11617
11618 2012-02-02 Tom Tromey <tromey@redhat.com>
11619
11620 PR gdb/13405:
11621 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
11622 read-only memory.
11623
11624 2012-02-02 Tom Tromey <tromey@redhat.com>
11625
11626 PR gdb/9307:
11627 * symtab.c (lookup_language_this): Set block_found.
11628
11629 2012-02-01 Tom Tromey <tromey@redhat.com>
11630
11631 PR gdb/13431:
11632 * jit.c (struct jit_inferior_data): Rewrite.
11633 (struct jit_objfile_data): New.
11634 (get_jit_objfile_data): New function.
11635 (add_objfile_entry): Update.
11636 (jit_read_descriptor): Return int. Replace descriptor_addr
11637 argument with inf_data. Update. Don't call error.
11638 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
11639 descriptor here.
11640 (jit_inferior_init): Don't look up descriptor. Don't call error.
11641 (jit_reset_inferior_data_and_breakpoints)
11642 (jit_inferior_created_observer): Remove.
11643 (jit_inferior_exit_hook): Update.
11644 (jit_executable_changed_observer): Remove.
11645 (jit_event_handler): Update.
11646 (free_objfile_data): Reset inferior data if needed.
11647 (_initialize_jit): Update.
11648
11649 2012-02-01 Tom Tromey <tromey@redhat.com>
11650
11651 * jit.c (bfd_open_from_target_memory): Move higher in file.
11652
11653 2012-02-01 Tristan Gingold <gingold@adacore.com>
11654
11655 * libunwind-frame.c (libunwind_load): Display message if dlopen
11656 failed.
11657
11658 2012-02-01 Gary Benson <gbenson@redhat.com>
11659
11660 * symtab.h (symbol_found_callback_ftype): New typedef.
11661 (iterate_over_symbols): Use the above.
11662 * symtab.c (iterate_over_symbols): Likewise.
11663 * language.h (language_defn->la_iterate_over_symbols): Likewise.
11664 * ada-lang.c (ada_iterate_over_symbols): Likewise.
11665 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
11666 (iterate_name_matcher): Document return values.
11667 (collect_one_symbol): Likewise.
11668 (collect_function_symbols): Likewise.
11669 (collect_symbols): Likewise.
11670
11671 2012-02-01 Tom Tromey <tromey@redhat.com>
11672
11673 * ada-lang.c (resolve_subexp): Update.
11674 (ada_lookup_symbol_list): Add 'full_search' argument.
11675 (ada_iterate_over_symbols): Pass 0 as full_search argument to
11676 ada_lookup_symbol_list.
11677 (ada_lookup_encoded_symbol): Update.
11678 (get_var_value): Update.
11679 * ada-exp.y (block_lookup): Update.
11680 (write_var_or_type): Update.
11681 (write_name_assoc): Update.
11682 * ada-lang.h (ada_lookup_symbol_list): Update.
11683
11684 2012-01-31 Tom Tromey <tromey@redhat.com>
11685
11686 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
11687 comment.
11688
11689 2012-01-31 Doug Evans <dje@google.com>
11690
11691 * symtab.h: Remove outdated comment.
11692 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
11693
11694 2012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
11695
11696 Fix build error in Darwin port.
11697 * i386-darwin-nat.c: Include i386-nat.h.
11698
11699 2012-01-30 Tom Tromey <tromey@redhat.com>
11700
11701 PR breakpoints/13568:
11702 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
11703 argument. Check for recursive includes.
11704 (dwarf_decode_macros): Create an include hash.
11705
11706 2012-01-30 Michael Eager <eager@eagercon.com>
11707
11708 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
11709 * ppc-linux-tdep.c: Include glibc-tdep.h.
11710 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
11711 (powerpc_linux_in_plt_stub): New function.
11712 (powerpc_linux_in_dynsym_resolve_code): New function.
11713 (ppc_skip_trampoline_code): New function.
11714 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
11715 Use glibc_skip_solib_resolver.
11716
11717 2012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
11718
11719 Code cleanup: Make 1440 bytes of data segment read-only.
11720 * arch-utils.c (endian_enum): Make it const char *const [].
11721 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
11722 Likewise.
11723 * breakpoint.c (always_inserted_enums): Likewise.
11724 * cli/cli-cmds.c (script_ext_enums): Likewise.
11725 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
11726 enumlist parameter const char *const *.
11727 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
11728 const char *const *.
11729 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
11730 parameter const char *const *.
11731 * cris-tdep.c (cris_modes): Make it const char *const [].
11732 * filesystem.c (target_file_system_kinds): Likewise.
11733 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
11734 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
11735 (can_use_displaced_stepping_enum, scheduler_enums)
11736 (exec_direction_names): Likewise.
11737 * language.c (_initialize_language): Make the type_or_range_names and
11738 case_sensitive_names variables const char *const [].
11739 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
11740 * python/python.c (python_excp_enums): Likewise.
11741 * remote.c (interrupt_sequence_modes): Likewise.
11742 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
11743 * serial.c (logbase_enums): Likewise.
11744 * sh-tdep.c (sh_cc_enum): Likewise.
11745 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
11746 Likewise.
11747 * symtab.c (multiple_symbols_modes): Likewise.
11748 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
11749 Likewise.
11750 * utils.c (internal_problem_modes): Likewise.
11751
11752 2012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
11753
11754 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
11755 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
11756 result.
11757
11758 2012-01-27 Doug Evans <dje@google.com>
11759
11760 * configure.ac (with_python): Fix absolute path handling for win32.
11761 * configure: Regenerate.
11762
11763 2012-01-26 Doug Evans <dje@google.com>
11764
11765 * symtab.c: Whitespace cleanup, no code changes.
11766
11767 * symtab.c (lookup_symbol_in_language): Improve comment.
11768 (lookup_symbol_aux): Fix comment.
11769
11770 * psymtab.c (add_psymbol_to_list): Result is now "void".
11771 * psympriv.h (add_psymbol_to_list): Update.
11772
11773 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
11774
11775 2012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
11776
11777 Do not open script filenames twice.
11778 * cli/cli-cmds.c (source_script_from_stream): Pass to
11779 source_python_script also STREAM.
11780 * python/py-auto-load.c (source_section_scripts): Pass to
11781 source_python_script_for_objfile also STREAM.
11782 (auto_load_objfile_script): Pass to source_python_script_for_objfile
11783 also INPUT.
11784 * python/python-internal.h (source_python_script_for_objfile): New
11785 parameter file, rename parameter file to filename.
11786 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
11787 instead if !_WIN32. Update the function comment.
11788 (source_python_script, source_python_script_for_objfile)
11789 (source_python_script): New parameter file, rename parameter file to
11790 filename. Pass FILENAME to python_run_simple_file.
11791 * python/python.h (source_python_script): New parameter file, rename
11792 parameter file to filename.
11793
11794 2012-01-26 Pedro Alves <palves@redhat.com>
11795
11796 * corelow.c (core_has_fake_pid): Delete.
11797 (core_close): Delete references to `core_has_fake_pid'.
11798 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
11799 (core_open): Delete references to `core_has_fake_pid'.
11800 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
11801 the removed global.
11802
11803 2012-01-26 Joel Brobecker <brobecker@adacore.com>
11804
11805 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
11806 Remove language parameter from name_matcher. Adjust the comment.
11807 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
11808 Remove language parameter.
11809 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
11810 * linespec.c (iterate_name_matcher): Likewise.
11811 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
11812 name_matcher. Adjust call accordingly.
11813 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
11814 (maintenance_check_symtabs): Adjust type of parameter "fun".
11815 * psymtab.h (maintenance_check_symtabs): Likewise.
11816
11817 2012-01-26 Joel Brobecker <brobecker@adacore.com>
11818
11819 * language.h (symbol_name_match_p_ftype): New typedef.
11820 (struct language_defn): Replace field la_symbol_name_compare
11821 by la_get_symbol_name_match_p.
11822 * ada-lang.c (ada_get_symbol_name_match_p): New function.
11823 (ada_language_defn): Use it.
11824 * linespec.c (struct symbol_matcher_data): New type.
11825 (iterate_name_matcher): Rewrite.
11826 (iterate_over_all_matching_symtabs): Pass a pointer to
11827 a symbol_matcher_data struct to expand_symtabs_matching
11828 instead of just the lookup name.
11829 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11830 opencl-lang.c, p-lang.c, language.c: Delete field
11831 la_symbol_name_compare, and replace by NULL for new field
11832 la_get_symbol_name_match_p.
11833 * symfile.h (struct quick_symbol_functions): Update comment.
11834
11835 2012-01-25 Tom Tromey <tromey@redhat.com>
11836
11837 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
11838 dereferencing.
11839
11840 2012-01-24 Tom Tromey <tromey@redhat.com>
11841
11842 PR symtab/12406:
11843 * solib.c (update_solib_list): Update the program space's
11844 added_solibs and deleted_solibs fields.
11845 * progspace.h (struct program_space) <added_solibs,
11846 deleted_solibs>: New fields.
11847 (clear_program_space_solib_cache): Declare.
11848 * progspace.c (release_program_space): Call
11849 clear_program_space_solib_cache.
11850 (clear_program_space_solib_cache): New function.
11851 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
11852 bpstat_stop_status. Use handle_solib_event.
11853 * breakpoint.c: Include gdb_regex.h.
11854 (print_solib_event): New function.
11855 (bpstat_print): Use print_solib_event.
11856 (bpstat_stop_status): Add special case for bp_shlib_event.
11857 (handle_solib_event): New function.
11858 (bpstat_what): Use handle_solib_event.
11859 (struct solib_catchpoint): New.
11860 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
11861 (breakpoint_hit_catch_solib, check_status_catch_solib)
11862 (print_it_catch_solib, print_one_catch_solib)
11863 (print_mention_catch_solib, print_recreate_catch_solib): New
11864 functions.
11865 (catch_solib_breakpoint_ops): New global.
11866 (catch_load_or_unload, catch_load_command_1)
11867 (catch_unload_command_1): New functions.
11868 (internal_bkpt_check_status): Add special case for
11869 bp_shlib_event.
11870 (internal_bkpt_print_it): Use print_solib_event.
11871 (initialize_breakpoint_ops): Initialize
11872 catch_solib_breakpoint_ops.
11873 (_initialize_breakpoint): Register "catch load" and "catch
11874 unload".
11875 * breakpoint.h (handle_solib_event): Declare.
11876 * NEWS: Add entry for "catch load" and "catch unload".
11877
11878 2012-01-24 Tom Tromey <tromey@redhat.com>
11879
11880 * ada-lang.c: Include gdb_vecs.h.
11881 * charset.c: Include gdb_vecs.h.
11882 * tracepoint.h: Include gdb_vecs.h.
11883 * gdb_vecs.h: New file.
11884
11885 2012-01-24 Pedro Alves <pedro@codesourcery.com>
11886
11887 * breakpoint.c (breakpoint_hit_catch_fork)
11888 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
11889 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
11890 * infrun.c (inferior_has_forked, inferior_has_vforked)
11891 (inferior_has_execd, inferior_has_called_syscall): Delete.
11892 (handle_syscall_event): Get syscall_number from the execution
11893 control state's wait status.
11894 (wait_for_inferior): Don't clear syscall_number.
11895
11896 2012-01-24 Pedro Alves <palves@redhat.com>
11897
11898 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
11899 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
11900 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
11901 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
11902 `ws' parameter.
11903 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
11904 false for events other than TARGET_SIGNAL_TRAP.
11905 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
11906 Add `ws' parameter.
11907 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
11908 events other than TARGET_SIGNAL_TRAP.
11909 (tracepoint_breakpoint_hit): Add `ws' parameter.
11910 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
11911 parameter.
11912 (bpstat_stop_status): Same.
11913 (pc_at_non_inline_function): Same.
11914 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
11915 to pass the current event's waitstatus to bpstat_stop_status
11916 and pc_at_non_inline_function.
11917
11918 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
11919
11920 Code cleanup.
11921 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
11922 Update the function comment for it.
11923 (source_script_with_search): Call make_cleanup_fclose for STREAM.
11924 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
11925 for STREAM.
11926
11927 2012-01-24 Pedro Alves <palves@redhat.com>
11928
11929 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
11930 outside `bs->stop' block.
11931 (bpstat_what): Rework bp_shlib_event handling.
11932 (internal_bkpt_check_status): If the breakpoint is a
11933 bp_shlib_event, then set bs->stop and bs->print if
11934 stop_on_solib_events is set.
11935
11936 2012-01-24 Gary Benson <gbenson@redhat.com>
11937
11938 Delete #if 0'd out code.
11939 * stack.c (print_frame_label_vars): Remove.
11940 (catch_info): Likewise.
11941 (_initialize_stack): Remove "info catch" command.
11942 * NEWS: Mention the above.
11943
11944 2012-01-24 Pedro Alves <palves@redhat.com>
11945
11946 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
11947 it.
11948 (remote_notice_new_inferior): If the remote end doesn't support
11949 the multiprocess extensions, then the PID is fake.
11950 (add_current_inferior_and_thread): New.
11951 (remote_start_remote): Use it.
11952 (extended_remote_attach_1): Adjust.
11953 (extended_remote_create_inferior_1): Use
11954 add_current_inferior_and_thread.
11955
11956 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
11957
11958 Fix watchpoints to be specific for each inferior.
11959 * breakpoint.c (watchpoint_in_thread_scope): Verify also
11960 current_program_space.
11961 * i386-nat.c (i386_inferior_data_cleanup): New.
11962 (i386_inferior_data_get): Replace variable inf_data_local by an
11963 inferior_data call.
11964 (i386_use_watchpoints): Initialize i386_inferior_data.
11965 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
11966 specific iterate_over_lwps.
11967
11968 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
11969
11970 Fix watchpoints across inferior fork.
11971 * amd64-linux-nat.c (update_debug_registers_callback): Update the
11972 comment for linux_nat_iterate_watchpoint_lwps.
11973 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11974 linux_nat_iterate_watchpoint_lwps.
11975 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
11976 * i386-linux-nat.c (update_debug_registers_callback): Update the
11977 comment for linux_nat_iterate_watchpoint_lwps.
11978 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11979 linux_nat_iterate_watchpoint_lwps.
11980 (i386_linux_prepare_to_resume): New comment on Linux kernel.
11981 * i386-nat.c: Include inferior.h.
11982 (dr_mirror): Remove.
11983 (i386_inferior_data, struct i386_inferior_data)
11984 (i386_inferior_data_get): New.
11985 (i386_debug_reg_state): Use i386_inferior_data_get.
11986 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
11987 (i386_insert_watchpoint, i386_remove_watchpoint)
11988 (i386_stopped_data_address, i386_insert_hw_breakpoint)
11989 (i386_remove_hw_breakpoint): New variable state, use
11990 i386_debug_reg_state instead of DR_MIRROR.
11991 * linux-nat.c (delete_lwp): New declaration.
11992 (num_lwps): Move here from downwards.
11993 (delete_lwp_cleanup): New.
11994 (linux_child_follow_fork): Create new child_lp, call
11995 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
11996 PTRACE_DETACH.
11997 (num_lwps): Move upwards.
11998 (linux_nat_iterate_watchpoint_lwps): New.
11999 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
12000 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
12001
12002 2012-01-24 Joel Brobecker <brobecker@adacore.com>
12003
12004 GDB 7.4 released.
12005
12006 2012-01-23 Pedro Alves <palves@redhat.com>
12007
12008 * top.c (caution): Rename to ...
12009 (confirm): ... this.
12010 (show_caution): Rename to ...
12011 (show_confirm): ... this.
12012 (quit_cover): Adjust.
12013 (init_main): Adjust.
12014 * top.h (caution): Rename to ...
12015 (confirm): ... this.
12016 * utils.c (internal_vproblem, defaulted_query): Adjust.
12017
12018 2012-01-23 Pedro Alves <palves@redhat.com>
12019
12020 * top.c (caution): Update comment.
12021 (execute_command): Don't consider the current value of `caution'.
12022
12023 2012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
12024
12025 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
12026
12027 2012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
12028
12029 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
12030 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
12031 * target.c (target_fileio_pwrite): Remove buffer address from
12032 debug output.
12033 (target_fileio_pread): Likewise.
12034
12035 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
12036
12037 * NEWS: Document remote "info proc" and "generate-core-file".
12038
12039 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
12040
12041 * gdbarch.sh (find_memory_regions): New callback.
12042 * gdbarch.c, gdbarch.h: Regenerate.
12043
12044 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
12045 callback before falling back to target method.
12046
12047 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
12048 (linux_target_install_ops): No longer install it.
12049
12050 * linux-tdep.c (linux_find_memory_regions): New function.
12051 (linux_init_abi): Install it.
12052
12053 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
12054
12055 * gdbarch.sh (make_corefile_notes): New architecture callback.
12056 * gdbarch.c: Regenerate.
12057 * gdbarch.h: Likewise.
12058
12059 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
12060 before target_make_corefile_notes. If NULL is returned, the
12061 target does not support core file generation.
12062
12063 * linux-nat.c: Include "linux-tdep.h".
12064 (find_signalled_thread, find_stop_signal): Remove.
12065 (linux_nat_do_thread_registers): Likewise.
12066 (struct linux_nat_corefile_thread_data): Likewise.
12067 (linux_nat_corefile_thread_callback): Likewise.
12068 (iterate_over_spus): Likewise.
12069 (struct linux_spu_corefile_data): Likewise.
12070 (linux_spu_corefile_callback): Likewise.
12071 (linux_spu_make_corefile_notes): Likewise.
12072 (linux_nat_collect_thread_registers): New function.
12073 (linux_nat_make_corefile_notes): Replace contents by call to
12074 linux_make_corefile_notes passing linux_nat_collect_thread_registers
12075 as native-only callback.
12076
12077 * linux-tdep.h: Include "bfd.h".
12078 (struct regcache): Add forward declaration.
12079 (linux_collect_thread_registers_ftype): New typedef.
12080 (linux_make_corefile_notes): Add prototype.
12081 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
12082 "regset.h", and "elf-bfd.h".
12083 (find_signalled_thread, find_stop_signal): New functions.
12084 (linux_spu_make_corefile_notes): Likewise.
12085 (linux_collect_thread_registers): Likewise.
12086 (struct linux_corefile_thread_data): New data structure.
12087 (linux_corefile_thread_callback): New funcion.
12088 (linux_make_corefile_notes): Likewise.
12089 (linux_make_corefile_notes_1): Likewise.
12090 (linux_init_abi): Install it.
12091
12092 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
12093
12094 * gdbarch.sh (info_proc): New callback.
12095 * gdbarch.c, gdbarch.h: Regenerate.
12096
12097 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
12098 before falling back to the target info_proc callback.
12099
12100 * linux-nat.c: Do not include "cli/cli-utils.h".
12101 (linux_nat_info_proc): Remove.
12102 (linux_target_install_ops): No longer install it.
12103
12104 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
12105 (read_mapping): New function.
12106 (linux_info_proc): Likewise.
12107 (linux_init_abi): Install it.
12108
12109 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
12110
12111 * defs.h (enum info_proc_what): Moved here from linux-nat.c
12112 * infcmd.c: (info_proc_cmd_1): New function.
12113 (info_proc_cmd): New function, moved here from equivalent routine
12114 orignally in linux-nat.c.
12115 (info_proc_cmd_mappings): Likewise.
12116 (info_proc_cmd_stat): Likewise.
12117 (info_proc_cmd_status): Likewise.
12118 (info_proc_cmd_cwd): Likewise.
12119 (info_proc_cmd_cmdline): Likewise.
12120 (info_proc_cmd_exe): Likewise.
12121 (info_proc_cmd_all): Likewise.
12122 (_initialize_infcmd): Install "info proc" command and subcommands.
12123
12124 * target.h (struct target_ops): Add to_info_proc.
12125 (target_info_proc): Add prototype.
12126 * target.c (target_info_proc): New function.
12127
12128 * procfs.c (procfs_info_proc): Add prototype.
12129 (info_proc_cmd): Rename into ...
12130 (procfs_info_proc): ... this. Update argument types as appropriate
12131 for a to_info_proc implementation. Handle "what" argument.
12132 (procfs_target): Install procfs_info_proc.
12133 (_initialize_procfs): No longer install "info proc" command.
12134
12135 * linux-nat.c: (enum info_proc_what): Remove.
12136 (linux_nat_info_proc_cmd_1): Rename into ...
12137 (linux_nat_info_proc): ... this. Update argument types as appropriate
12138 for a to_info_proc implementation.
12139 (linux_nat_info_proc_cmd): Remove.
12140 (linux_nat_info_proc_cmd_mappings): Likewise.
12141 (linux_nat_info_proc_cmd_stat): Likewise.
12142 (linux_nat_info_proc_cmd_status): Likewise.
12143 (linux_nat_info_proc_cmd_cwd): Likewise.
12144 (linux_nat_info_proc_cmd_cmdline): Likewise.
12145 (linux_nat_info_proc_cmd_exe): Likewise.
12146 (linux_nat_info_proc_cmd_all): Likewise.
12147 (linux_target_install_ops): Install linux_nat_info_proc.
12148 (_initialize_linux_nat): No longer install "info proc" command
12149 and subcommands.
12150
12151 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
12152
12153 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
12154 * config.in, configure: Regenerate.
12155
12156 * target.h (struct target_ops): Add to_fileio_readlink.
12157 (target_fileio_readlink): Add prototype.
12158 * target.c (target_fileio_readlink): New function.
12159
12160 * inf-child.c: Conditionally include <sys/param.h>.
12161 (inf_child_fileio_readlink): New function.
12162 (inf_child_target): Install it.
12163
12164 * remote.c (PACKET_vFile_readlink): New enum value.
12165 (remote_hostio_readlink): New function.
12166 (init_remote_ops): Install it.
12167 (_initialize_remote): Handle vFile:readlink packet type.
12168
12169 2012-01-20 Pedro Alves <palves@redhat.com>
12170 Ulrich Weigand <ulrich.weigand@linaro.org>
12171
12172 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
12173 * config.in, configure: Regenerate.
12174
12175 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
12176 to_fileio_pread, to_fileio_close, to_fileio_unlink.
12177 (target_fileio_open): Add prototype.
12178 (target_fileio_pwrite): Likewise.
12179 (target_fileio_pread): Likewise.
12180 (target_fileio_close): Likewise.
12181 (target_fileio_unlink): Likewise.
12182 (target_fileio_read_alloc): Likewise.
12183 (target_fileio_read_stralloc): Likewise.
12184
12185 * target.c: Include "gdb/fileio.h".
12186 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
12187 (default_fileio_target): New function.
12188 (target_fileio_open): Likewise.
12189 (target_fileio_pwrite): Likewise.
12190 (target_fileio_pread): Likewise.
12191 (target_fileio_close): Likewise.
12192 (target_fileio_unlink): Likewise.
12193 (target_fileio_close_cleanup): Likewise.
12194 (target_fileio_read_alloc_1): Likewise.
12195 (target_fileio_read_alloc): Likewise.
12196 (target_fileio_read_stralloc): Likewise.
12197
12198 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
12199 <fcntl.h>, and <unistd.h>.
12200 (inf_child_fileio_open_flags_to_host): New function.
12201 (inf_child_errno_to_fileio_error): Likewise.
12202 (inf_child_fileio_open): Likewise.
12203 (inf_child_fileio_pwrite): Likewise.
12204 (inf_child_fileio_pread): Likewise.
12205 (inf_child_fileio_close): Likewise.
12206 (inf_child_fileio_unlink): Likewise.
12207 (inf_child_target): Install to_fileio routines.
12208
12209 * remote.c (init_remote_ops): Install to_fileio routines.
12210
12211 2012-01-20 Pedro Alves <palves@redhat.com>
12212 Ulrich Weigand <ulrich.weigand@linaro.org>
12213
12214 * remote.c (remote_multi_process_p): Only check for multi-process
12215 protocol feature, do not check for extended protocol.
12216 (remote_supports_multi_process): Check for extended protocol here.
12217 (set_general_process): Likewise.
12218 (extended_remote_kill): Likewise.
12219 (remote_pid_to_str): Likewise.
12220 (remote_query_supported): Always query multiprocess mode.
12221
12222 2012-01-20 Pedro Alves <palves@redhat.com>
12223 Ulrich Weigand <ulrich.weigand@linaro.org>
12224
12225 * inferior.h (struct inferior): Add fake_pid_p.
12226 * inferior.c (exit_inferior_1): Clear fake_pid_p.
12227 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
12228 magic_null_ptid since the remote side doesn't provide a real PID.
12229
12230 2012-01-19 Tom Tromey <tromey@redhat.com>
12231
12232 * NEWS: Combine the two Python sections.
12233
12234 2012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
12235
12236 * target.h (target_close): Update comment on the target's unpush state.
12237
12238 2012-01-19 Pedro Alves <palves@redhat.com>
12239
12240 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
12241 linux_nat_async directly instead of going through the target
12242 vector.
12243 * target.c (unpush_target): Close target after unpushing it, not
12244 before.
12245
12246 2012-01-19 Gary Benson <gbenson@redhat.com>
12247
12248 * mdebugread.c (sort_blocks): Replace integer constants with ones
12249 derived from FIRST_LOCAL_BLOCK.
12250
12251 2012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
12252 Jan Kratochvil <jan.kratochvil@redhat.com>
12253
12254 PR gdb/9538
12255 * symfile.c (find_separate_debug_file): New function.
12256 (terminate_after_last_dir_separator): Likewise.
12257 (find_separate_debug_file_by_debuglink): Also try realpath.
12258 * configure.ac (AC_CHECK_FUNCS): Add lstat.
12259 * configure: Regenerate.
12260 * config.in: Regenerate.
12261
12262 2012-01-18 Doug Evans <dje@google.com>
12263
12264 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
12265 (main.o): Remove rule.
12266 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
12267 (--with-sysroot): Rewrite.
12268 * configure: Regenerate.
12269 * config.in: Regenerate.
12270
12271 2012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
12272
12273 * parse.c (initialize_expout): New function.
12274 (reallocate_expout): Likewise.
12275 (parse_exp_in_context): Use `initialize_expout' and
12276 `reallocate_expout' when appropriate.
12277
12278 2012-01-18 Pedro Alves <palves@redhat.com>
12279
12280 * record.c (struct record_breakpoint, record_breakpoint_p)
12281 (record_breakpoints): New.
12282 (record_insert_breakpoint, record_remove_breakpoint): Manage
12283 record breakpoints list. Only remove breakpoints from the
12284 inferior if they had been inserted there in the first place.
12285
12286 2012-01-17 Doug Evans <dje@google.com>
12287
12288 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
12289 if we know we don't have a file name to look for.
12290
12291 2012-01-17 Pedro Alves <palves@redhat.com>
12292
12293 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
12294 the frame's stop reason is UNWIND_UNAVAILABLE.
12295
12296 2012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
12297
12298 Fix compilation error.
12299 * m2-exp.y (yyerror): Use ANSI C prototype.
12300
12301 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
12302
12303 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
12304 (growbuf_by_size): Likewise.
12305 (yyerror): Likewise.
12306 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
12307 (modblock): Remove variable (was #if 0'ed).
12308 (parse_number): Convert prototype from K&R to ANSI C.
12309 (yyerror): Likewise.
12310 * objc-exp.y (parse_number): Likewise.
12311 (yyerror): Likewise.
12312 (yylex): Remove #if 0'ed code.
12313 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
12314 (yyerror): Likewise.
12315
12316 2012-01-16 Tom Tromey <tromey@redhat.com>
12317
12318 * NEWS: Add item.
12319 * symtab.h (compare_filenames_for_search): Declare.
12320 * symtab.c (compare_filenames_for_search): New function.
12321 (iterate_over_some_symtabs): Use it.
12322 * symfile.h (struct quick_symbol_functions)
12323 <map_symtabs_matching_filename>: Change spec.
12324 * psymtab.c (partial_map_symtabs_matching_filename): Use
12325 compare_filenames_for_search. Update for new spec.
12326 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
12327 compare_filenames_for_search. Update for new spec.
12328 * breakpoint.c (clear_command): Use compare_filenames_for_search.
12329
12330 2012-01-16 Tom Tromey <tromey@redhat.com>
12331
12332 PR python/13281:
12333 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
12334 (struct main_type) <flag_flag_enum>: New field.
12335 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
12336 * NEWS: Add entries.
12337 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
12338 enums.
12339 * python/lib/gdb/printing.py (_EnumInstance): New class.
12340 (FlagEnumerationPrinter): Likewise.
12341
12342 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
12343
12344 * breakpoint.c (create_sals_from_address_default): New function.
12345 (create_breakpoints_sal_default): Likewise.
12346 (decode_linespec_default): Likewise.
12347 (is_marker_spec): Removed.
12348 (strace_marker_p): New function.
12349 (init_breakpoint_sal): Using `strace_marker_p' instead of
12350 `is_marker_spec'.
12351 (create_breakpoint): Call method `create_sals_from_address' from
12352 breakpoint_ops, replacing code that created SALs conditionally
12353 on the type of the breakpoint. Call method `create_breakpoints_sal',
12354 replacing code that created breakpoints conditionally on the type
12355 wanted.
12356 (base_breakpoint_create_sals_from_address): New function.
12357 (base_breakpoint_create_breakpoints_sal): Likewise.
12358 (base_breakpoint_decode_linespec): Likewise.
12359 (base_breakpoint_ops): Add methods
12360 `base_breakpoint_create_sals_from_address',
12361 `base_breakpoint_create_breakpoints_sal' and
12362 `base_breakpoint_decode_linespec'.
12363 (bkpt_create_sals_from_address): New function.
12364 (bkpt_create_breakpoints_sal): Likewise.
12365 (bkpt_decode_linespec): Likewise.
12366 (tracepoint_create_sals_from_address): Likewise.
12367 (tracepoint_create_breakpoints_sal): Likewise.
12368 (tracepoint_decode_linespec): Likewise.
12369 (strace_marker_create_sals_from_address): Likewise.
12370 (strace_marker_create_breakpoints_sal): Likewise.
12371 (strace_marker_decode_linespec): Likewise.
12372 (strace_marker_breakpoint_ops): New variable.
12373 (addr_string_to_sals): Remove `marker_spec'. Call method
12374 `decode_linespec' from breakpoint_ops, replacing code that decoded
12375 an address string into a SAL. Use `strace_marker_p' instead of
12376 `marker_spec'.
12377 (strace_command): Decide whether we are dealing with a static
12378 tracepoint with marker or not. Use the appropriate breakpoint_ops.
12379 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
12380 * breakpoint.h (linespec_result, linespec_sals): New forward
12381 declarations.
12382 (breakpoint_ops) <create_sals_from_address>,
12383 <create_breakpoints_sal>, <decode_linespec>: New methods.
12384
12385 2012-01-14 Doug Evans <dje@google.com>
12386
12387 * NEWS: Update text for "maint set python print-stack".
12388 It is deprecated in gdb 7.4 and deleted in 7.5.
12389
12390 2012-01-13 Eli Zaretskii <eliz@gnu.org>
12391
12392 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
12393 including curses.h.
12394
12395 2012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
12396
12397 * configure: Regenerate.
12398 * config.in: Regenerate.
12399
12400 2012-01-12 Keith Seitz <keiths@redhat.com>
12401
12402 PR mi/10586
12403 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
12404 (ANONYMOUS_UNION_NAME): Define.
12405 (is_path_expr_parent): New function.
12406 (get_path_expr_parent): New function.
12407 (is_anonymous_child): New function.
12408 (create_child_with_value): If the child is anonymous and without
12409 a name, assign an object name to it.
12410 (c_describe_child): Use get_path_expr_parent to determine
12411 the parent expression.
12412 If there field represents an anonymous struct or union and
12413 has no name, set an appropriate display name and expression.
12414 (cplus_describe_child): Likewise.
12415
12416 2012-01-12 Pedro Alves <palves@redhat.com>
12417
12418 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
12419 available when %ebp is found to be zero (outermost).
12420
12421 2012-01-11 Andreas Tobler <andreast@fgznet.ch>
12422
12423 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
12424 an internal gdb_static_assert.
12425 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
12426
12427 2012-01-11 Tom Tromey <tromey@redhat.com>
12428
12429 PR gdb/9598:
12430 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
12431 catch" and "catch throw".
12432
12433 2012-01-11 Paul Hilfinger <hilfingr@adacore.com>
12434
12435 * blockframe.c (block_innermost_frame): Start search from selected
12436 frame, if present, or otherwise the current frame.
12437
12438 * c-exp.y (variable): Update innermost_block for
12439 'block COLONCOLON NAME' clause.
12440 * m2-exp.y (variable): Ditto.
12441 * objc-exp.y (variable): Ditto.
12442
12443 2012-01-10 Tom Tromey <tromey@redhat.com>
12444
12445 PR python/13199:
12446 * python/python.c (finish_python_initialization): Set sys.argv.
12447
12448 2012-01-10 Doug Evans <dje@google.com>
12449
12450 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
12451 "want_line_info". All callers updated.
12452 (dwarf_decode_lines_1): New function.
12453 (handle_DW_AT_stmt_list): Add function comment.
12454 New arg "want_line_info". All callers updated.
12455 (read_file_scope,read_type_unit_scope): Move comment from
12456 handle_DW_AT_stmt_list to here.
12457
12458 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
12459
12460 Fix regression after libiberty/ update for GCC PR 6057 and others.
12461 * c-exp.y (operator) <OPERATOR DELETE>
12462 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12463 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
12464 (make_builtin_type, make_name): New variable i, add gdb_assert.
12465 (operator) <OPERATOR NEW>: Update ARGS to 3.
12466 (operator) <OPERATOR DELETE>: Add trailing space.
12467 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
12468 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12469 * cp-support.c (cp_canonicalize_string): Check NULL from
12470 cp_comp_to_string, call warning and return.
12471
12472 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
12473
12474 Fix duplicate .o files after omitting libbfd.a.
12475 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
12476 (SFILES): Add corelow.c.
12477 (COMMON_OBS): Add corelow.o.
12478 (ALLDEPFILES): Remove corelow.c.
12479 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
12480 * config/alpha/alpha-osf3.mh: Likewise.
12481 * config/alpha/fbsd.mh: Likewise.
12482 * config/arm/nbsdaout.mh: Likewise.
12483 * config/arm/nbsdelf.mh: Likewise.
12484 * config/i386/i386gnu.mh: Likewise.
12485 * config/ia64/hpux.mh: Likewise.
12486 * config/ia64/linux.mh: Likewise.
12487 * config/m32r/linux.mh: Likewise.
12488 * config/m68k/linux.mh: Likewise.
12489 * config/mips/irix5.mh: Likewise.
12490 * config/mips/irix6.mh: Likewise.
12491 * config/pa/hpux.mh: Likewise.
12492 * config/pa/linux.mh: Likewise.
12493 * config/powerpc/aix.mh: Likewise.
12494 * config/sparc/linux.mh: Likewise.
12495 * config/sparc/linux64.mh: Likewise.
12496 * config/sparc/sol2.mh: Likewise.
12497 * config/vax/vax.mh: Likewise.
12498 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
12499 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
12500 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
12501 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
12502 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
12503 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
12504 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
12505 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
12506 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
12507 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
12508 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
12509 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
12510 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12511 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
12512 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
12513 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12514 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
12515 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
12516 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
12517 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
12518 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
12519 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
12520 corelow.o from gdb_target_obs.
12521 * corefile.c (core_target): Update the comment on NULL value.
12522 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
12523 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
12524 MATCHES. Drop YUMMY set on NULL.
12525 (core_close): Do not call exit_inferior_silent on zero PID. Do not
12526 reclaim CORE_DATA if it is already NULL.
12527
12528 2012-01-09 Doug Evans <dje@google.com>
12529
12530 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
12531 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
12532
12533 2012-01-09 Keith Seitz <keiths@redhat.com>
12534
12535 * breakpoint.c (wrapper.h): Don't include.
12536
12537 2012-01-09 Keith Seitz <keiths@redhat.com>
12538
12539 * Makefile.in (SFILES): Remove wrapper.c.
12540 (HFILES_NO_SRCDIR): Remove wrapper.h.
12541 (COMMON_OBS): Remove wrapper.o.
12542 * cli/cli-interp.c: Don't inlude wrapper.h.
12543 * corelow.c: Likewise.
12544 (core_open): Replace gdb_target_find_new_threads with
12545 TRY_CATCH around target_find_new_threads.
12546 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
12547 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
12548 * varobj.c (varobj_create): Likewise for parse_exp_1 and
12549 evaluate_expression.
12550 (varobj_set_value): Likewise for evaluate_expression and
12551 value_assign.
12552 (install_new_variable): Likewise for value_fetch_lazy.
12553 (adjust_value_for_child_access): Likewise for value_ind.
12554 (c_describe_child): Likewise for value_subscript and
12555 value_ind.
12556 (c_value_of_root): Likewise for evaluate_expression.
12557 * wrapper.c: Remove.
12558 * wrapper.h: Remove.
12559
12560 2012-01-09 Doug Evans <dje@google.com>
12561
12562 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
12563 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
12564 "abfd" args with "section". All callers updated.
12565 Error checking code moved ...
12566 (error_check_comp_unit_head): ... here. New function.
12567 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
12568 Delete arg "abfd". New arg "type_offset". All callers updated.
12569 (create_debug_types_hash_table): Simplify by using
12570 read_and_check_type_unit_head.
12571
12572 * parser-defs.h (namecopy): Delete.
12573 * parse.c (namecopy, namecopy_size): Move into copy_name.
12574
12575 2012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
12576
12577 Partially fix duplicate .o files after omitting libbfd.a.
12578 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
12579 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12580 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
12581 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12582 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
12583 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
12584 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12585
12586 2012-01-09 Pedro Alves <palves@redhat.com>
12587
12588 * MAINTAINERS: Update my email address.
12589
12590 2012-01-08 Doug Evans <dje@google.com>
12591
12592 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
12593 n_type_units. Rename type_comp_units to all_type_units.
12594 All uses updated.
12595 (add_signatured_type_cu_to_table): Renamed from
12596 add_signatured_type_cu_to_list. All callers updated.
12597
12598 * gdbtypes.h (struct cplus_struct_type): Delete member
12599 nfn_fields_total. All uses removed.
12600
12601 2012-01-06 Doug Evans <dje@google.com>
12602
12603 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
12604 to top of file.
12605 (dwarf2_find_comp_unit): Delete.
12606 (process_psymtab_comp_unit): Make result "void".
12607 Delete args buffer, info_ptr, buffer_size, and replace with
12608 "section". All callers updated.
12609 (dwarf2_build_psymtabs_hard): Simplify.
12610
12611 2012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
12612 Thiago Jung Bauermann <bauerman@br.ibm.com>
12613
12614 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
12615 before `struct gdb_exception'.
12616 * breakpoint.c (update_global_location_list_nothrow)
12617 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
12618 * cp-abi.c (value_rtti_type): Likewise.
12619 * cp-support.c (cp_validate_operator): Likewise.
12620 * infrun.c (insert_exception_resume_breakpoint)
12621 (check_exception_resume, keep_going): Likewise.
12622 * mi-interp.c (mi_breakpoint_created)
12623 (mi_breakpoint_modified): Likewise.
12624 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
12625 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
12626 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
12627
12628 2012-01-05 Doug Evans <dje@google.com>
12629
12630 * dwarf2read.c (statement_prologue): Delete, unused.
12631
12632 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
12633 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
12634
12635 * dwarf2read.c (comp_unit_header): Delete, unused.
12636
12637 2012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
12638
12639 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
12640 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
12641
12642 2012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
12643
12644 * infrun.c (normal_stop): Don't skip calling the normal_stop
12645 observers if the thread was doing a multi-step, but stopped for
12646 some reason other than stepping.
12647
12648 2012-01-05 Pedro Alves <alves.ped@gmail.com>
12649
12650 * cli/cli-decode.h: Add comments.
12651 (CMD_LIST_AMBIGUOUS): Moved to command.h
12652 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
12653 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
12654 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
12655 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
12656 (add_com, add_com_alias, add_info, add_info_alias)
12657 (complete_on_cmdlist, complete_on_enum, help_list): Remove
12658 declarations.
12659 * command.h: Add and adjust comments.
12660 (CMD_LIST_AMBIGUOUS): Moved here.
12661 (help_cmd, help_cmd_list): Delete declarations.
12662
12663 2012-01-04 Doug Evans <dje@google.com>
12664
12665 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
12666 All callers updated.
12667 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
12668 Replace all arguments with "per_cu". All callers updated.
12669
12670 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
12671
12672 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
12673 New arg "per_cu". All callers updated.
12674
12675 Delete #if 0'd out code.
12676 * language.c (binop_result_type): Delete.
12677 (simple_type, ordered_type, same_type, integral_type): Delete.
12678 (numeric_type, character_type, string_type, boolean_type): Delete.
12679 (float_type, structured_type): Delete.
12680 * language.h: Update.
12681
12682 2012-01-04 Tom Tromey <tromey@redhat.com>
12683
12684 * python/py-value.c (valpy_binop): Initialize 'res_val'.
12685
12686 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12687
12688 * corefile.c (close_exec_file): Delete.
12689 (reopen_exec_file): Remove commented out code that seems related
12690 to close_exec_file, which is being deleted here.
12691 * inferior.h (close_exec_file): Delete.
12692 * fork-child.c (fork_inferior): Remove call to fork_inferior.
12693
12694 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12695
12696 * ada-lang.c: #include "cli/cli-utils.h".
12697 (get_selections): Use skip_spaces.
12698 (ada_get_next_arg): Use skip_spaces and skip_to_space.
12699 (catch_ada_exception_command_split): Use skip_spaces.
12700 (ada_decode_assert_location): Likewise.
12701
12702 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12703
12704 * linespec.c (decode_line_internal): Check for C++ or Java
12705 compound constructs only if the current language is C, C++
12706 or Java.
12707
12708 2012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
12709
12710 Revert:
12711 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12712 Joel Brobecker <brobecker@adacore.com>
12713 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12714 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12715 3 times.
12716 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12717 fall through into AT_ENTRY_POINT.
12718 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
12719 DUMMY_ADDR with it.
12720 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12721 PPC_INSN_SIZE skip to 3 times.
12722
12723 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12724
12725 * linespec.c (add_minsym): Preserve function descriptors.
12726
12727 2012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
12728
12729 * breakpoint.c (all_locations_are_pending): Consider locations
12730 in program spaces executing during startup pending as well.
12731
12732 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12733
12734 Copyright year update in most files of the GDB Project.
12735
12736 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12737
12738 * copyright.sh: Delete.
12739 * copyright.py: Rewrite.
12740
12741 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12742
12743 * gnulib/extra/update-copyright: New file, imported from gnulib.
12744
12745 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12746
12747 * README (Copyright and License Notices): New section.
12748
12749 2012-01-03 Tom Tromey <tromey@redhat.com>
12750
12751 PR python/12533:
12752 * python/py-value.c (valpy_dereference, valpy_get_address
12753 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
12754 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
12755 (valpy_absolute, valpy_richcompare): Free intermediate values.
12756
12757 2011-01-03 Joel Brobecker <brobecker@adacore.com>
12758
12759 * ada-lang.c: Reformat the copyright notice.
12760
12761 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12762
12763 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
12764 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
12765 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
12766 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
12767 Revert this part of:
12768 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12769 Build gdb directly from *.o files not using libgdb.a.
12770 * Makefile.in (COMMON_OBS): Remove solib-target.o.
12771
12772 2012-01-02 Joel Brobecker <brobecker@adacore.com>
12773
12774 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
12775 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
12776 Reformat the copyright header.
12777
12778 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12779
12780 Revert this part of:
12781 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12782 Remove the gdbtui binary.
12783 * gdb.c (main): Remove args.interpreter_p initialization.
12784 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12785 * main.h (struct captured_main_args): Remove interpreter_p.
12786
12787 2012-01-02 Joel Brobecker <brobecker@adacore.com>
12788
12789 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
12790
12791 2012-01-02 Joel Brobecker <brobecker@adacore.com>
12792
12793 * top.c (print_gdb_version): Update copyright year.
12794
12795 2012-01-02 Yao Qi <yao@codesourcery.com>
12796
12797 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
12798
12799 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12800 Joel Brobecker <brobecker@adacore.com>
12801
12802 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12803 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12804 3 times.
12805 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12806 fall through into AT_ENTRY_POINT.
12807 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
12808 DUMMY_ADDR with it.
12809 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12810 PPC_INSN_SIZE skip to 3 times.
12811
12812 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12813
12814 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
12815 the return value.
12816 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
12817
12818 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12819
12820 Build gdb directly from *.o files not using libgdb.a.
12821 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
12822 (COMMON_OBS): Remove solib-target.o.
12823 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
12824 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
12825 (LIBGDB_OBS, libgdb.a): Move it above.
12826 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
12827 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
12828 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
12829 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
12830 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
12831 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
12832 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
12833 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
12834 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
12835 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
12836 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
12837 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
12838 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
12839 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
12840 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12841 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
12842 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
12843 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12844 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
12845 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
12846 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
12847 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
12848 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
12849 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
12850 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
12851 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
12852 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
12853
12854 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12855
12856 Remove the gdbtui binary.
12857 * .gitignore (/gdbtui): Remove.
12858 * Makefile.in (TUI): Remove.
12859 (SUBDIR_TUI_OBS): Remove tui-main.o.
12860 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
12861 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
12862 (tui-main.o): Remove.
12863 (all_object_files): Remove tui-main.o.
12864 * NEWS: New note for the gdbtui removal.
12865 * configure: Rebuilt.
12866 * configure.ac: No longer add all-tui, clean-tui, install-tui and
12867 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
12868 CONFIG_UNINSTALL respectively.
12869 * gdb.c (main): Remove args.interpreter_p initialization.
12870 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12871 * main.h (struct captured_main_args): Remove interpreter_p.
12872 * tui/tui-main.c: Remove.
12873
12874 2012-01-01 Doug Evans <dje@google.com>
12875
12876 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
12877 (dwarf2_physname, read_import_statement): Ditto.
12878 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
12879 (process_structure_scope read_subroutine_type): Ditto.
12880 (read_typedef, load_partial_dies, read_partial_die): Ditto.
12881 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
12882 (dwarf2_fetch_die_location_block): Ditto.
12883 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
12884
12885 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
12886 All callers updated.
12887 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
12888 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
12889 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
12890
12891 * dwarf2read.c (load_cu): Move assert to more useful location.
12892
12893 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
12894 All callers updated.
12895
12896 * dwarf2read.c (dwarf2_per_objfile): Add comment.
12897 (dwarf2_elf_names): Minor reformat.
12898 (dwarf2_per_cu_data): Tweak comment.
12899 (dwarf2_read_section): Fix comment.
12900 (create_all_comp_units): Fix comment.
12901 (load_full_comp_unit): Fix comment.
12902 (process_full_comp_unit): Fix comment.
12903 (read_signatured_type): Fix comment.
12904
12905 For older changes see ChangeLog-2011.
12906 \f
12907 Local Variables:
12908 mode: change-log
12909 left-margin: 8
12910 fill-column: 74
12911 version-control: never
12912 coding: utf-8
12913 End:
This page took 0.477726 seconds and 3 git commands to generate.