gdb/
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
722247f1
YQ
12012-12-15 Yao Qi <yao@codesourcery.com>
2
3 * Makefile.in (REMOTE_OBS): Add "remote-notif.o".
4 (SFILES): Add "remote-notif.c".
5 (HFILES_NO_SRCDIR): Add "remote-notif.h" and "common/queue.h".
6 * remote-notif.c: New. Factored out from remote.c.
7 * remote-notif.h: New.
8 * remote.c: Include "remote-notif.h".
9 (stop_reply_xmalloc, do_stop_reply_xfree):
10 (remote_parse_stop_reply, remote_get_pending_stop_replies):
11 (remote_async_get_pending_events_handler): Remove declarations.
12 (remote_parse_stop_reply): Declare.
13 (pending_stop_reply): Remove.
14 (remote_async_get_pending_events_token): Move to
15 remote-notif.c.
16 (remote_close): Replace 'delete_async_event_handler' with
17 remote_notif_unregister_async_event_handler.
18 Don't call discard_pending_stop_replies.
19 (remote_start_remote): Replace code with remote_notif_parse
20 and remote_notif_get_pending_replies.
21 (remote_open_1): Replace 'create_async_event_handler' with
22 remote_notif_register_async_event_handler.
23 (extended_remote_attach_1): Call remote_notif_parse and
24 notif_stop_reply_push.
25 (struct stop_reply) <next>: Remove.
26 <base>: New field.
27 Callers update.
28 (stop_reply_queue): Change its type.
29 (stop_reply_xmalloc, do_stop_reply_xfree): Remove.
30 (remote_notif_remove_all): New.
31 (discard_pending_stop_replies): Update.
32 (remote_notif_stop_ack, stop_reply_dtr): New.
33 (remote_notif_stop_alloc_event): New.
34 (notif_client_stop): New variable.
35 (stop_reply_match_ptid, stop_reply_match_ptid_and_ws: New.
36 (queued_stop_reply, peek_stop_reply): Adjust.
37 (remote_get_pending_stop_replies): Rename to
38 remote_notif_get_pending_events.
39 (handle_notification): Move to remote-notif.c.
40 (remote_async_get_pending_events_handler): Likewise.
41 (remote_wait_as): Adjust to call remote_notif_parse.
42 Call 'getpkt_or_notif_sane' instead of 'getpkt_sane'.
43 Return minus_one_ptid early if gets a notification.
44 (remote_wait): Call QUEUE_is_empty (notif_reply_p).
45 (_initialize_remote): Call QUEUE_alloc. Update caller.
46 (remote_resume): Call 'remote_notif_process' in all-stop mode.
47 * remote.h: Include "remote-notif.h".
48 (remote_notif_get_pending_replies): Declare.
49
5f4cf0bb
YQ
502012-12-15 Yao Qi <yao@codesourcery.com>
51
52 * remote.c (discard_pending_stop_replies): Update declaration.
53 (remote_detach_1, extended_remote_mourn_1): Likewise.
54 (discard_pending_stop_replies): Change parameter from PID to
55 INF.
56 (remote_close): Update caller.
57 (_initialize_remote): Attach discard_pending_stop_replies to
58 inferior_exit observer.
59
fee9eda9
YQ
602012-12-15 Yao Qi <yao@codesourcery.com>
61
62 * remote.c (getpkt_or_notif_sane): Add one more argument in
63 its declaration.
64 (getpkt_or_notif_sane_1): Add one more argument.
65 (getpkt_sane): Update caller.
66 (getpkt_or_notif_sane): Likewise. Update call
67 togetpkt_or_notif_sane_1.
68 (remote_wait_ns): Update caller.
69
dbb0cf06
YQ
702012-12-15 Yao Qi <yao@codesourcery.com>
71 Doug Evans <dje@google.com>
72
73 * common/queue.h: New.
74
f2a8bc8a
YQ
752012-12-15 Yao Qi <yao@codesourcery.com>
76
77 * breakpoint.c (print_one_breakpoint_location): Display the
78 state of 'installed' of each non-pending location of a tracepoint
79 in both CLI and MI.
80 (download_tracepoint_locations): Notify 'breakpoint-modified'
81 observer if any tracepoint location is downloaded.
82 * tracepoint.c (start_tracing): Likewise.
83 (merge_uploaded_tracepoints): Record all modified
84 tracepoints and notify 'breakpoint-modified' observer for them.
85
86 * NEWS: Mention the change for CLI and MI.
87
7ed2c994
YQ
882012-12-15 Yao Qi <yao@codesourcery.com>
89
90 * breakpoint.c (download_tracepoint_locations): Iterate over
91 ALL_TRACEPOINTS first and then iterate over locations of
92 each tracepoint.
93
b25d79d4
PM
942012-12-14 Pierre Muller <muller@sourceware.org>
95 Pedro Alves <palves@redhat.com>
96
97 * solib-target.c (solib_target_current_sos): Remove 'const'
98 qualifier from type of library_document local variable to be
99 able to free it and avoid a memory leak.
100 Use cleanup chain to avoid leak even if exceptino is generated.
101
6592e36f
TT
1022012-12-14 Tom Tromey <tromey@redhat.com>
103
104 PR c++/8888:
105 * symtab.c (lookup_symbol_aux): If constructor is found, consider
106 returning the type instead.
107 * c-exp.y (classify_name): Check STRUCT_DOMAIN if a constructor is
108 found.
109
7d27a96d
TT
1102012-12-14 Tom Tromey <tromey@redhat.com>
111
112 Partial fix for PR c++/14160:
113 * c-typeprint.c (c_type_print_base): Use TYPE_FN_FIELD_CONSTRUCTOR.
114 * dwarf2read.c (dwarf2_is_constructor): New function.
115 (dwarf2_add_member_fn): Use it.
116 * gnu-v3-abi.c (gnuv3_pass_by_reference): Use
117 TYPE_FN_FIELD_CONSTRUCTOR.
118 * jv-typeprint.c (java_type_print_base): Use
119 TYPE_FN_FIELD_CONSTRUCTOR.
120 * gdbtypes.h (struct fn_field) <is_constructor>: New field.
121 <dummy>: Shrink.
122 (TYPE_FN_FIELD_CONSTRUCTOR): New macro.
123
1993b719
TT
1242012-12-14 Tom Tromey <tromey@redhat.com>
125
126 * c-exp.y (block, variable, name_not_typename, lex_one_token,
127 classify_name): Update.
128 * c-valprint.c (c_val_print): Update.
129 * f-exp.y (yylex): Update.
130 * go-exp.y (package_name_p, classify_packaged_name)
131 (classify_name): Update.
132 * jv-exp.y (push_variable): Update.
133 * m2-exp.y (variable): Update.
134 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
135 * p-exp.y (block, variable, yylex): Update.
136 * p-valprint.c (pascal_val_print): Update.
137 * parse.c (write_dollar_variable): Update.
138 * printcmd.c (address_info): Update.
139 * python/py-symbol.c (gdbpy_lookup_symbol): Update.
140 * symtab.c (lookup_symbol_aux, lookup_symbol_in_language)
141 (lookup_symbol): Change type of 'is_a_field_of_this'.
142 (check_field): Add 'is_a_field_of_this' argument.
143 * symtab.h (struct field_of_this_result): New.
144 (lookup_symbol, lookup_symbol_in_language): Update.
145
2dc3df72
TT
1462012-12-14 Tom Tromey <tromey@redhat.com>
147
148 * symtab.c (check_field): Now static. Move from...
149 * valops.c (check_field): ... here. Remove.
150 * value.h (check_field): Don't declare.
151
451b7c33
TT
1522012-12-14 Tom Tromey <tromey@redhat.com>
153
154 * NEWS: Mention "info proc" and core files.
155 * corelow.c (core_info_proc): New function.
156 (init_core_ops): Set to_info_proc.
157 * gdbarch.c, gdbarch.h: Rebuild.
158 * gdbarch.sh (core_info_proc): New method.
159 * infcmd.c (info_proc_cmd_1): Invoke target_info_proc first.
160 * linux-tdep.c (linux_core_info_proc_mappings)
161 (linux_core_info_proc): New functions.
162 (linux_find_memory_region_ftype): New typedef.
163 (linux_find_memory_regions_full): New function, from
164 linux_find_memory_regions.
165 (struct linux_find_memory_regions_data): New.
166 (linux_find_memory_regions_thunk): New function.
167 (linux_find_memory_regions): Rewrite.
168 (struct linux_make_mappings_data): New.
169 (linux_make_mappings_callback)
170 (linux_make_mappings_corefile_notes): New functions.
171 (linux_make_corefile_notes): Call linux_make_mappings_corefile_notes.
172 (linux_init_abi): Call set_gdbarch_core_info_proc.
173 * target.c (target_info_proc): Return 'int'.
174 * target.h (target_info_proc): Update.
175
49dc7f4b
PM
1762012-12-14 Pierre Muller <muller@sourceware.org>
177
178 * windows-nat.c (windows_xfer_shared_libraries): Avoid
179 memory leak when OFFSET >= LEN_AVAIL.
180
e03e6279
TT
1812012-12-13 Tom Tromey <tromey@redhat.com>
182
183 * solib-svr4.c (enable_break): Use SECT_OFF_TEXT.
184
7b9c0bfb
TT
1852012-12-13 Tom Tromey <tromey@redhat.com>
186
187 * acinclude.m4 (CY_AC_C_WORKS): Remove.
188
d8f4a83e
PM
1892012-12-13 Pierre Muller <muller@sourceware.org>
190
191 * coff-pe-read.c (pe_text_section_offset): Increase size of sname
192 local variable and zero terminate it to avoid possible problems
193 in strcmp.
194
aab2f004
PA
1952012-12-13 Pedro Alves <palves@redhat.com>
196
197 * coff-pe-read.c: Include coff/internal.h.
198 (read_pe_exported_syms): Use SCNNMLEN instead of hardcoded 8.
199 Null terminate buffer explicitly instead of memset the whole
200 buffer.
201
78ea0eca
PM
2022012-12-13 Pierre Muller <muller@sourceware.org>
203
204 * coff-pe-read.c (IMAGE_SCN_CNT_TEXT, IMAGE_SCN_CNT_INITIALIZED_DATA)
205 (IMAGE_SCN_CNT_UNINITIALIZED_DATA): Remove useless checks
206 for already defined macros.
207
3999122f
PM
2082012-12-13 Pierre Muller <muller@sourceware.org>
209
210 * coff-pe-read.h (pe_text_section_offset): Declare new function.
211 * coff-pe-read.c (debug_coff_pe_read): New static variable.
212 (struct read_pe_section_data): Add section_name field.
213 (IMAGE_SCN_CNT_CODE): New macro, if not already defined.
214 (IMAGE_SCN_CNT_INITIALIZED_DATA): Ditto.
215 (IMAGE_SCN_CNT_UNINITIALIZED_DATA): Ditto.
216 (get_pe_section_index): New function.
217 (struct pe_sections_info): New type.
218 (get_section_vmas): Use new struct pe_sections_info.
219 (add_pe_exported_sym): Handle unnamed exported function.
220 (add_pe_forwarded_sym): New function.
221 (read_pe_truncate_name): Truncate at last dot.
222 (pe_as16): New function.
223 (read_pe_exported_syms): Use ordinal of function to
224 retrieve correct RVA address of function and handle
225 forwarded symbol.
226 (pe_text_section_offset): New function.
227 (show_debug_coff_pe_read): New function.
228 (_initialize_coff_pe_read): New function adding
229 'set/show debug coff_pe_read' commands.
230
231 * windows-tdep.c (windows_xfer_shared_library): Use
232 pe_text_section_offset function instead of possibly wrong
233 0x1000 constant for .text sextion offset.
234
c9023fb3
PA
2352012-12-13 Pedro Alves <palves@redhat.com>
236
237 * gdbarch.sh (do_read): Set IFS to blank.
238
3fa7bf06
MG
2392012-12-12 Mircea Gherzan <mircea.gherzan@intel.com>
240
241 * NEWS: Mention the -catch-load/-catch-unload MI commands.
242
91985142 2432012-12-12 Mircea Gherzan <mircea.gherzan@intel.com>
f87e3f15 244
91985142
MG
245 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-catch.o.
246 (SUBDIR_MI_SRCS): Add mi/mi-cmd-catch.c.
247 * breakpoint.c (add_solib_catchpoint): New function that
248 can be used by both CLI and MI, factored out from
249 catch_load_or_unload.
250 (catch_load_or_unload): Strip it down and make it use the
251 new add_solib_catchpoint.
252 * breakpoint.h (add_solib_catchpoint): Declare it.
253 * mi/mi-cmd-break.h: New file.
254 * mi/mi-cmd-break.c: Include mi-cmd-break.h.
255 (setup_breakpoint_reporting): New function used for both
256 catchpoints and breakpoints.
257 (mi_cmd_break_insert): Use setup_breakpoint_reporting.
258 * mi/mi-cmd-catch.c: New file.
259 * mi/mi-cmds.c (mi_cmds): Add the handlers for -catch-load
260 and -catch-unload.
261 * mi/mi-cmds.h: Declare the handlers for -catch-load and
262 -catch-unload.
263
5c80ed9d
TT
2642012-11-28 Tom Tromey <tromey@redhat.com>
265
266 * dbxread.c (read_dbx_symtab): Update.
267 (end_psymtab, dbx_psymtab_to_symtab_1, dbx_psymtab_to_symtab)
268 (read_ofile_symtab): Add 'objfile' argument.
269 * dwarf2read.c (process_psymtab_comp_unit_reader)
270 (build_type_psymtabs_reader): Update.
271 (dwarf2_psymtab_to_symtab): Add 'objfile' argument.
272 * mdebugread.c (mdebug_psymtab_to_symtab): Add 'objfile'
273 argument.
274 (parse_procedure, parse_partial_symbols): Update.
275 (psymtab_to_symtab_1): Add 'objfile' argument.
276 * psympriv.h (struct partial_symtab) <objfile>: Remove.
277 <read_symtab>: Add 'objfile' argument.
278 (sort_pst_symbols, discard_psymtab): Update.
279 * psymtab.c (partial_map_expand_apply): Update.
280 (find_pc_sect_psymtab_closer): Add 'objfile' argument.
281 (find_pc_sect_psymtab, find_pc_sect_symtab_from_partial): Update.
282 (find_pc_sect_psymbol): Add 'objfile' argument.
283 (lookup_symbol_aux_psymtabs): Update.
284 (match_partial_symbol, lookup_partial_symbol, psymtab_to_symtab):
285 Add 'objfile' argument.
286 (find_last_source_symtab_from_partial, dump_psymtab)
287 (dump_psymtabs_for_objfile, read_symtabs_for_function)
288 (expand_partial_symbol_tables, read_psymtabs_with_filename)
289 (find_symbol_file_from_partial, map_matching_symbols_psymtab)
290 (expand_symtabs_matching_via_partial): Update.
291 (sort_pst_symbols): Add 'objfile' argument.
292 (allocate_psymtab): Update.
293 (discard_psymtab): Add 'objfile' argument.
294 (maintenance_info_psymtabs, maintenance_check_symtabs): Update.
295 * stabsread.h (end_psymtab): Update.
296 * xcoffread.c (this_symtab_objfile): New global.
297 (process_linenos, enter_line_range, xcoff_next_symbol_text):
298 Update.
299 (read_xcoff_symtab): Add 'objfile' argument.
300 (read_symbol, read_symbol_lineno): Update.
301 (xcoff_psymtab_to_symtab_1, xcoff_psymtab_to_symtab)
302 (xcoff_end_psymtab): Add 'objfile' argument.
303 (scan_xcoff_symtab): Update.
304
9a27f2c6
PK
3052012-12-12 Paul Koning <paul_koning@dell.com>
306
307 Add support for Python 3.
308 * NEWS: Mention Python 3 support.
309 * varobj.c (value_get_print_value): Use
310 python_string_to_target_string.
311 * python/py-block.c: Use PyVarObject_HEAD_INIT in initialization
312 of type objects.
313 * python/py-breakpoint.c: Ditto.
314 * python/py-cmd.c: Ditto.
315 * python/py-event.c: Ditto.
316 * python/py-event.h: Ditto.
317 * python/py-evtregistry.c: Ditto.
318 * python/py-finishbreakpoint.c: Ditto.
319 * python/py-frame.c: Ditto.
320 * python/py-function.c: Ditto.
321 * python/py-infthread.c: Ditto.
322 * python/py-lazy-string.c: Ditto.
323 * python/py-progspace.c: Ditto.
324 * /python/py-symbol.c: Ditto.
325 * python/py-evts.c: (gdbpy_initialize_py_events): Add module
326 initialization for Python 3.
327 * python/py-inferior.c: Use PyVarObject_HEAD_INIT in initialization
328 of type objects.
329 (infpy_read_memory): Return memoryview object if Python 3.
330 (infpy_write_memory): Use "s*" operand parsing code for Python 3.
331 (infpy_search_memory): Ditto.
332 (get_buffer): New function for Python 3.
333 * python/py-objfile.c: Use PyVarObject_HEAD_INIT in initialization
334 of type objects.
335 (objfpy_dealloc): Use Py_TYPE to call tp_free.
336 * python/py-param.c: Use PyVarObject_HEAD_INIT in initialization
337 of type objects.
338 (get_attr): Use PyUnicode_CompareWithASCIIString if Python 3.
339 (set_attr): Ditto.
340 * python/py-prettyprint.c (print_string_repr): use PyBytes methods
341 instead of PyString methods if Python 3.
342 (print_children): Skip push_dummy_python_frame call if Python 3.
343 * python/py-symtab.c: Use PyVarObject_HEAD_INIT in initialization
344 of type objects.
345 (salpy_dealloc): Use Py_TYPE to call tp_free.
346 * python/py-type.c: Use PyVarObject_HEAD_INIT in initialization
347 of type objects.
348 (field_dealloc): Use Py_TYPE to call tp_free.
349 (typy_dealloc): Ditto.
350 (type_object_as_number): Adjust struct initializations for
351 differences in layout for Python 2 vs. Python 3.
352 * python/py-utils.c (python_string_to_unicode): Omit non-Unicode
353 string case for Python 3.
354 (unicode_to_encoded_python_string): Shorten code (no functional
f87e3f15 355 change).
9a27f2c6
PK
356 (python_string_to_target_python_string): Comment that in Python 3
357 returned value is a Python "bytes" type.
358 (gdbpy_is_string): Omit non-Unicode string check in Python 3.
359 (gdb_py_object_from_longest): Omit non-long integer case in Python
360 3.
361 (gdb_py_object_from_ulongest): Ditto.
362 * python/py-value.c: Use PyVarObject_HEAD_INIT in initialization
363 of type objects.
364 (valpy_dealloc): Use Py_TYPE to call tp_free.
365 (valpy_int): Omit function if Python 3.
366 (convert_value_from_python): Use "%S" format (Python object as a
367 string) if Python 3.
368 (value_object_as_number): Adjust struct initializations for
369 differences in layout for Python 2 vs. Python 3.
370 * python/python-config.py: Adjust syntax for Python 3
f87e3f15 371 compatibility.
9a27f2c6
PK
372 Include "sys.abiflags" string as part of python library name, if
373 that attribute exists (Python 3).
374 * python/python-internal.h (IS_PY3): Define if Python 3.
375 (Py_TPFLAGS_HAVE_ITER, Py_TPFLAGS_CHECKTYPES): Define with
376 placeholder value if Python 3.
377 (PyInt_Check, PyInt_FromLong, PyInt_AsLong, PyString_FromString,
378 PyString_Decode, PyString_FromFormat, PyString_Check): Define as
379 analogous Python 3 API function if Python 3.
380 (PyVarObject_HEAD_INIT): Define if not already defined.
381 (Py_TYPE): Ditto.
382 * python/python.c (eval_python_command): Omit Py_FlushLine call if
383 Python 3.
384 Check return values of all Python API calls for error.
385 Supply dummy "python" and "python-interactive" commands if Python
386 initialization failed.
387 (_initialize_python): Convert argc to wchar_t** if Python 3.
388 Add module initialization for Python 3.
389 (finish_python_initialization): Pass wchar_t * argument to
390 PySys_SetPath if Python 3.
391 * python/lib/gdb/__init__.py: Define "reload" if Python 3.
392 (_GdbFile): New class for common output file behavior.
393 (GdbOutFile): Subclass from _GdbFile.
394 (GdbOutputErrorFile): Ditto.
395 (auto_load_packages): Adjust syntax for Python 3 compatibility.
396 * python/lib/gdb/printing.py: Define basestr and int if Python 3.
397 * python/lib/gdb/prompt.py: Use sorted() function rather than
398 sort() method.
399 * python/lib/gdb/command/explore.py: Define raw_input if Python 3.
400 Adjust syntax for Python 3 compatibility.
401 * python/lib/gdb/command/pretty_printers.py: Use sorted() function
402 rather than sort() method.
403 Adjust syntax for Python 3 compatibility.
404 * python/lib/gdb/command/type_printers.py: Ditto.
405 * doc/gdb.texinfo (Inferior.read_memory): Mention that the return
406 value is a memoryview object if Python 3.
407
b8b98ad1
TT
4082012-12-12 Tom Tromey <tromey@redhat.com>
409
410 * coffread.c (coff_objfile_data_key): New global.
411 (coff_symfile_init): Use set_objfile_data.
412 (coff_symfile_read): Use objfile_data.
413 (coff_symfile_finish): Don't free deprecated_sym_private.
414 (coff_free_info): New function.
415 (_initialize_coffread): Initialize coff_objfile_data_key.
416 * mdebugread.c (pending_list): Update comment.
417 * objfiles.h (struct objfile) <deprecated_sym_private>: Remove.
418 * symfile.c (reread_symbols): Don't mention
419 deprecated_sym_private.
420 * xcoffread.c (xcoff_objfile_data_key): New global.
421 (XCOFF_DATA): New macro.
422 (process_linenos, enter_line_range, xcoff_next_symbol_text)
423 (read_xcoff_symtab, coff_getfilename, read_symbol_lineno): Use
424 XCOFF_DATA.
425 (xcoff_new_init) Use set_objfile_data.
426 (xcoff_symfile_finish): Don't free deprecated_sym_private.
427 (init_stringtab, swap_sym, scan_xcoff_symtab)
428 (xcoff_get_toc_offset, xcoff_initial_scan): Use XCOFF_DATA.
429 (xcoff_free_info): New function.
430 (_initialize_xcoffread): Initialize xcoff_objfile_data_key.
431
afedb563
MG
4322012-12-12 Mircea Gherzan <mircea.gherzan@intel.com>
433
434 * MAINTAINERS (Write After Approval): Add "Mircea Gherzan".
435
d2f4b8fe
TT
4362012-12-12 Tom Tromey <tromey@redhat.com>
437
438 * coffread.c (coff_symfile_init): Use set_objfile_data.
439 (coff_symfile_read): Use DBX_SYMFILE_INFO.
440 * dbxread.c (dbx_objfile_data_key): New global.
441 (dbx_symfile_init): Use set_objfile_data.
442 (dbx_symfile_finish): Don't free deprecated_sym_stab_info.
443 (dbx_free_symfile_info): New function.
444 (coffstab_build_psymtabs, elfstab_build_psymtabs): Use
445 DBX_SYMFILE_INFO.
446 (stabsect_build_psymtabs): Use set_objfile_data.
447 (_initialize_dbxreadb): Initialize dbx_objfile_data_key.
448 * elfread.c (elf_symtab_read): Use DBX_SYMFILE_INFO,
449 set_objfile_data.
450 (free_elfinfo): Use DBX_SYMFILE_INFO.
451 (elf_symfile_finish): Don't free deprecated_sym_stab_info.
452 (elfstab_offset_sections): Use DBX_SYMFILE_INFO.
453 * gdb-stabs.h (dbx_objfile_data_key): Declare.
454 (DBX_SYMFILE_INFO): Rewrite to use objfile_data.
455 * objfiles.h (struct objfile) <deprecated_sym_stab_info>: Remove.
456 * somread.c (som_symfile_finish): Don't free
457 deprecated_sym_stab_info.
458
6f112b18
JB
4592012-12-12 Joel Brobecker <brobecker@adacore.com>
460
461 * gdbarch.sh (software_single_step): Remove trailing space in
462 comment (gdbarch.h is already correct).
463
8d2cc612
TT
4642012-12-11 Tom Tromey <tromey@redhat.com>
465
466 * dwarf2read.c (dwarf2_get_dwz_file): Set 'dwz_file'.
467
735522c2
TT
4682012-12-11 Tom Tromey <tromey@redhat.com>
469
470 * dsrec.c (report_transfer_performance): Don't declare.
471 (load_srec): Use gettimeofday, print_transfer_performance.
472 * symfile.c (report_transfer_performance): Remove.
473
3e3420f6
PA
4742012-12-11 Pedro Alves <pedro@codesourcery.com>
475 Pedro Alves <palves@redhat.com>
476
477 * procfs.c (procfs_make_note_section) [NEW_PROC_API]: Output a
478 NT_PSTATUS note.
479 * sol2-tdep.c (sol2_core_pid_to_str): Print process IDs
480 differently from LWP IDs.
481
05b4bd79
PA
4822012-12-11 Pedro Alves <palves@redhat.com>
483
484 * configure.ac (detect type of /proc): Remove Unixware handling.
485 * configure: Regenerate.
486 * proc-api.c (ioctl_table) [PIOCLSTATUS]: Don't mention Unixware.
487 (ioctl_table) [PCRESET]: Remove entry.
488 * proc-events.c (SYS_lwp_create, SYS_lwp_exit, SYS_lwp_wait)
489 (SYS_lwp_self, SYS_lwp_info, SYS_lwp_private, SYS_lwp_kill)
490 (SYS_lwp_suspend, SYS_lwp_continue): Don't define.
491 * proc-why.c (pr_why_table) [PR_SUSPENDED]: Don't mention Unixware.
492 * procfs.c: Remove all UNIXWARE guarded code, and all traces of
493 Unixware in comments throughout.
494 * i386-tdep.c (i386_svr4_sigtramp_p): Don't match _sigacthandler,
495 and remove mention of Unixware.
496
072cabfe
DE
4972012-12-10 Doug Evans <dje@google.com>
498
ab435259
DE
499 * dwarf2read.c (dwarf2_cu): Enhance comment.
500 (dwarf2_get_pc_bounds): Only add ranges_base for DIEs that live in
501 the DWO file.
502 (dwarf2_record_block_ranges): Ditto.
503
c766f7ec
DE
504 * dwarf2read.c (create_dwo_in_dwp): Tweak comment.
505
072cabfe
DE
506 * symtab.c (find_pc_sect_symtab): Add comment.
507
660ff106
TT
5082012-12-10 Tom Tromey <tromey@redhat.com>
509
510 * defs.h: Don't check for definition of LONGEST.
511 (min, max): Remove duplicates.
512
8b9737bf
TT
5132012-12-10 Tom Tromey <tromey@redhat.com>
514
515 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): New function.
516 (dwarf2_fetch_die_loc_cu_off): Rename from
517 dwarf2_fetch_die_location_block. Rewrite to use
518 dwarf2_fetch_die_loc_sect_off.
519 * dwarf2loc.h (dwarf2_fetch_die_loc_sect_off): Declare.
520 (dwarf2_fetch_die_loc_cu_off): Rename.
521 * dwarf2loc.c (indirect_pieced_value): Use
522 dwarf2_fetch_die_loc_sect_off.
523 * dwarf2expr.h (struct dwarf_expr_context) <len, data>: Update
524 comment.
525 (struct dwarf_expr_piece) <v.ptr.die>: Now a sect_offset.
526 * dwarf2expr.c (add_piece): Update.
527 (execute_stack_op) <DW_OP_GNU_implicit_pointer>: Update comment.
528
93eed41f
TT
5292012-12-10 Tom Tromey <tromey@redhat.com>
530
531 * buildsym.c (struct pending_block): Move from buildsym.h.
532 (pending_blocks): Likewise; now static.
533 (pending_block_obstack): New global.
534 (free_pending_blocks): Free blocks.
535 (record_pending_block): Use pending_block_obstack.
536 * buildsym.h (struct pending_block): Move definition to
537 buildsym.c.
538 (pending_blocks): Don't declare.
539
d2e5c99a
PA
5402012-12-10 Pedro Alves <palves@redhat.com>
541
542 * solib-svr4.c (svr4_solib_create_inferior_hook) [_SCO_DS]: Remove
543 dead SCO code, and adjust function description comment.
544
74a0d9f6
JK
5452012-12-09 Jan Kratochvil <jan.kratochvil@redhat.com>
546
547 * configure.ac (CC_HAS_LONG_LONG): Replace by AC_MSG_ERROR.
548 * defs.h (LONGEST, ULONGEST): Remove conditionalization for
549 CC_HAS_LONG_LONG.
550 * dwarf2-frame.c (DW64_CIE_ID): Likewise.
551 * dwarf2read.c (extract_cu_value): Remove the function.
552 (create_cus_from_index_list): Make the return type void, inline the
553 extract_cu_value caller, include new gdb_static_assert.
554 (create_cus_from_index): Make the return type void, update the function
555 comment, update the create_cus_from_index_list caller.
556 (create_signatured_type_table_from_index): Make the return type void,
557 inline the extract_cu_value caller, include new gdb_static_assert.
558 (dwarf2_read_index): Update the create_cus_from_index and
559 create_signatured_type_table_from_index caller.
560 * printcmd.c (ui_printf): Remove conditionalizations for
561 CC_HAS_LONG_LONG.
562 * config.in: Regenerate.
563 * configure: Regenerate.
564
1b80a9fa
JK
5652012-12-09 Jan Kratochvil <jan.kratochvil@redhat.com>
566
567 * dwarf2read.c (struct dwarf2_cu): New field producer_is_gcc_lt_4_3.
568 Update the comment for checked_producer.
569 (check_producer): New forward declaration.
570 (producer_is_gcc_lt_4_3): New function.
571 (find_file_and_directory): Simulate *COMP_DIR only for gcc < 4.3.
572 (check_producer): Initialize also PRODUCER_IS_GCC_LT_4_3.
573
2f68a895
TT
5742012-12-07 Tom Tromey <tromey@redhat.com>
575
576 * ada-lang.c (ada_make_symbol_completion_list): Add 'code'
577 argument, assertion.
578 * c-exp.y (typebase): Add completion productions.
579 * completer.c (expression_completer): Handle tag completion.
580 * expression.h (parse_expression_for_completion): Add argument.
581 * f-lang.c (f_make_symbol_completion_list): Add 'code'
582 argument.
583 * language.h (struct language_defn)
584 <la_make_symbol_completion_list>: Add 'code' argument.
585 * parse.c (expout_tag_completion_type, expout_completion_name):
586 New globals.
587 (mark_struct_expression): Add assertion.
588 (mark_completion_tag): New function.
589 (parse_exp_in_context): Initialize new globals.
590 (parse_expression_for_completion): Add 'code' argument. Handle
591 tag completion.
592 * parser-defs.h (mark_completion_tag): Declare.
593 * symtab.c (default_make_symbol_completion_list_break_on): Add
594 'code' argument. Update.
595 (default_make_symbol_completion_list): Add 'code' argument.
596 (make_symbol_completion_list): Update.
597 (make_symbol_completion_type): New function.
598 * symtab.h (default_make_symbol_completion_list_break_on)
599 (default_make_symbol_completion_list): Update.
600 (make_symbol_completion_type): Declare.
601
155da517
TT
6022012-12-07 Tom Tromey <tromey@redhat.com>
603
604 * expression.h (parse_expression_for_completion): Rename
605 from parse_field_expression.
606 (parse_completion): Rename from in_parse_field.
607 * c-exp.y (lex_one_token): Update.
608 * completer.c (expression_completer): Update.
609 * go-exp.y (lex_one_token): Update.
610 * p-exp.y (yylex): Update.
611 * parse.c (parse_completion): Rename from in_parse_field.
612 (parse_exp_in_context): Update.
613 (parse_expression_for_completion): Rename from
614 parse_field_expression. Update.
615
4fc5d43e
TT
6162012-12-07 Tom Tromey <tromey@redhat.com>
617
618 * typeprint.c (_initialize_typeprint): Set completer
619 for "whatis" and "ptype".
620
ab39020b
JB
6212012-12-07 Joel Brobecker <brobecker@adacore.com>
622
623 * copyright.py (NOT_FSF_LIST): Remove duplicate entry
624 "sim/common/cgen-fpu.h". Remove invalid entries
625 "sim/common/sim-fpu.c" and "sim/mn10300/sim-main.h",
626 which actually have an FSF copyright header.
627
2cb50f9d
JB
6282012-12-07 Joel Brobecker <brobecker@adacore.com>
629
630 * osf-share/AT386/cma_thread_io.h: Delete.
631 * osf-share/HP800/cma_thread_io.h: Delete.
632 * osf-share/README: Delete.
633 * osf-share/RIOS/cma_thread_io.h: Delete.
634 * osf-share/cma_attr.h: Delete.
635 * osf-share/cma_deb_core.h: Delete.
636 * osf-share/cma_debug_client.h: Delete.
637 * osf-share/cma_errors.h: Delete.
638 * osf-share/cma_handle.h: Delete.
639 * osf-share/cma_init.h: Delete.
640 * osf-share/cma_list.h: Delete.
641 * osf-share/cma_mutex.h: Delete.
642 * osf-share/cma_sched.h: Delete.
643 * osf-share/cma_semaphore_defs.h: Delete.
644 * osf-share/cma_sequence.h: Delete.
645 * osf-share/cma_stack.h: Delete.
646 * osf-share/cma_stack_int.h: Delete.
647 * osf-share/cma_tcb_defs.h: Delete.
648 * osf-share/cma_util.h: Delete.
649 * Makefile.in (HFILES_NO_SRCDIR): Remove entries for the files
650 in osf-share.
651 * config/djgpp/fnchange.lst: Remove osf-share/cma_stack_int.h entry.
652 * contrib/ari/gdb_find.sh: Remove handling of osf-share.
653 * copyright.sh (NOT_FSF_LIST): Remove "gdb/osf-share" entry.
654
0ba2eb0f
TT
6552012-12-06 Pedro Alves <palves@redhat.com>
656 Tom Tromey <tromey@redhat.com>
657
658 * valops.c (value_cast): Move TYPE_CODE_VOID case earlier.
659
731145cb
TT
6602012-12-06 Jens Elmenthaler <jens.elmenthaler@advantest.com>
661
662 PR mi/14741:
663 * mi/mi-cmd-var.c (varobj_update_one): Take value of
664 attribute "dynamic" and "displayhint" from printed child,
665 not the root variable.
666
eff44fea
JB
6672012-12-06 Joel Brobecker <brobecker@adacore.com>
668
669 * aix-thread.c (getthrds): Fix type of 4th parameter.
670 (get_signaled_thread): Change type of variable ktid to tid_t.
671
c90a0773
HZ
6722012-12-06 Hui Zhu <hui_zhu@mentor.com>
673
674 * dwarf2loc.c (dwarf_expr_frame_base): Add check for the return
675 value of get_frame_block.
676
5bc81a00
PM
6772012-12-05 Pierre Muller <muller@sourceware.org>
678
679 Avoid memory leaks on struct cmd_list_element.doc field.
680 * cli/cli-decode.c (add_alias_cmd): Make a copy of doc field
681 if flags contains DOC_ALLOCATED.
682 (add_setshow_cmd_full): Add DOC_ALLOCATED to set and show
683 flags.
684 (delete_cmd): Handle DOC_ALLOCATED flag.
685 * cli/cli-decode.h (DOC_ALLOCATED): New macro for use
686 in flags filed of struct cmd_list_element.
687 (struct cmd_list_element): Document new flag item.
688
b5ebcee6
DE
6892012-12-04 Doug Evans <dje@google.com>
690
691 * symmisc.c: Whitespace fixes.
692
56bf0743
KB
6932012-12-04 Karthik Bhat <kv.bhat@samsung.com>
694
695 * i386-tdep.c (i386_skip_prologue): Using symbol table
696 to find the end of prologue for clang compiled binaries.
697 * amd64-tdep.c (amd64_skip_prologue): Using symbol table
698 to find the end of prologue for clang compiled binaries.
699
56e64610
DE
7002012-12-03 Doug Evans <dje@google.com>
701
702 * dwarf2read.c (struct dwarf2_per_objfile): Clarify comment.
703 (dw2_find_symbol_file): Delete unused local file_data.
704
270140bd
TT
7052012-12-03 Tom Tromey <tromey@redhat.com>
706
707 * ada-exp.y (write_object_renaming, write_var_or_type)
708 (write_ambiguous_var, write_var_from_sym): Make blocks const.
709 * ada-lang.c (replace_operator_with_call)
710 (find_old_style_renaming_symbol): Make blocks const.
711 * ada-lang.h (ada_find_renaming_symbol): Update.
712 (struct ada_symbol_info) <block>: Now const.
713 * breakpoint.c (watch_command_1): Update.
714 * breakpoint.h (struct watchpoint) <exp_valid_block,
715 cond_exp_valid_block>: Now const.
716 * c-exp.y (classify_inner_name, classify_name): Make block
717 argument const.
718 * expprint.c (print_subexp_standard) <OP_VAR_VALUE>: Make 'b'
719 const.
720 * expression.h (innermost_block, parse_exp_1): Update.
721 (union exp_element) <block>: Now const.
722 * gdbtypes.c (lookup_template_type, lookup_enum, lookup_union)
723 (lookup_struct): Make block argument const.
724 * gdbtypes.h (lookup_template_type): Update.
725 * go-exp.y (classify_name, classify_packaged_name)
726 (package_name_p): Make block argument const.
727 * objc-lang.c (lookup_struct_typedef): Make block argument const.
728 * objc-lang.h (lookup_struct_typedef): Update.
729 * parse.c (parse_exp_in_context, parse_exp_1)
730 (write_exp_elt_block): Make block arguments const.
731 (expression_context_block, innermost_block): Now const.
732 * parser-defs.h (write_exp_elt_block): Update.
733 (expression_context_block, innermost_block, block_found): Now
734 const.
735 * printcmd.c (struct display) <block>: Now const.
736 * symtab.h (lookup_struct, lookup_union, lookup_enum): Update.
737 * valops.c (address_of_variable): Make block argument const.
738 * value.h (value_of_variable): Update.
739 * varobj.c (struct varobj_root) <valid_block>: Now const.
740
31f56a27
YQ
7412012-11-30 Yao Qi <yao@codesourcery.com>
742
743 * breakpoint.c (print_one_breakpoint_location): Indent code.
744
556ec64d
YQ
7452012-11-30 Yao Qi <yao@codesourcery.com>
746
747 * breakpoint.c (print_one_breakpoint_location): Combine two
748 blocks handling 'hit count' together.
749
3d3fef6b
YQ
7502012-11-30 Yao Qi <yao@codesourcery.com>
751
752 * infrun.c (error_is_running, ensure_not_running): Move them
753 to ...
754 * infcmd.c (error_is_running, ensure_not_running): ... here.
755 Make them 'static'.
756 * inferior.h: Remove declarations of error_is_running and
757 ensure_not_running.
758
7cd12a76
YQ
7592012-11-30 Yao Qi <yao@codesourcery.com>
760
761 * tic6x-linux-tdep.c (tic6x_register_sigcontext_offset): Don't
762 check REGNUM >= 0.
763
7a76f5b8
YQ
7642012-11-30 Yao Qi <yao@codesourcery.com>
765
766 * infrun.c: Make the declaration of 'init_infwait_state'
767 static.
768 (init_infwait_state): Make it 'static'.
769
b1209b03
UW
7702012-11-29 Ulrich Weigand <uweigand@de.ibm.com>
771
772 * python/python.c (finalize_python): Cast unused PyGILState_Ensure
773 return value to void to avoid compiler warning.
774
ea5e6b0e
UW
7752012-11-29 Ulrich Weigand <uweigand@de.ibm.com>
776
777 * opencl-lang.c (opencl_print_type): New function.
778 (opencl_language_arch_info): Install it.
779
a93478ea
TT
7802012-11-29 Tom Tromey <tromey@redhat.com>
781
782 * contrib/ari/gdb_ari.sh: Remove rules for xasprintf and
783 xvasprintf.
784 * common/common-utils.c (xasprintf, xvasprintf): Remove.
785 * common/common-utils.h (xasprintf, xvasprintf): Remove.
786
ac4a2da4
JG
7872012-11-29 Jerome Guitton <guitton@adacore.com>
788
789 * ada-lang.c (ada_is_interface_tag): New function.
790 (ada_is_ignored_field): Add interface tags to the list
791 of ignored fields.
792
b50d69b5
JG
7932012-11-29 Jerome Guitton <guitton@adacore.com>
794
f87e3f15 795 * ada-lang.h (ada_tag_value_at_base_address): New function
b50d69b5
JG
796 declaration.
797 * ada-lang.c (is_ada95_tag, ada_tag_value_at_base_address):
798 New functions.
799 (ada_to_fixed_type_1, ada_evaluate_subexp): Let ada_tag_base_address
800 relocate the class-wide value if need be.
801 (ada_value_struct_elt, ada_value_ind, ada_coerce_ref):
802 Let ada_tag_value_at_base_address relocate the class-wide access/ref
803 before dereferencing it.
804 * ada-valprint.c (ada_val_print_1): Relocate to base address
805 before displaying the content of an interface-wide ref.
806
ca1f964d
JG
8072012-11-29 Jerome Guitton <guitton@adacore.com>
808
809 * ada-lang.c (ada_evaluate_subexp): Unwrap only in EVAL_NORMAL.
810
38d03cf1 8112012-11-29 Joel Brobecker <brobecker@adacore.com>
812
813 GDB 7.5.1 released.
814
f5682501
YQ
8152012-11-29 Yao Qi <yao@codesourcery.com>
816 Tom Tromey <tromey@redhat.com>
817
818 * eval.c (evaluate_subexp_standard): Get the correct pointer
819 type for TYPE_CODE_MEMBERPTR.
820
f359d716
EBM
8212012-11-28 Edjunior Machado <emachado@linux.vnet.ibm.com>
822
823 * rs6000-tdep.c (gdb_print_insn_powerpc): Remove info->mach checking,
824 since now it is being done by binutils' powerpc_init_dialect().
825
0cd61f44
TT
8262012-11-28 Tom Tromey <tromey@redhat.com>
827
828 PR gdb/14290:
829 * solib-darwin.c (gdb_bfd_mach_o_fat_extract): New function.
830 (darwin_solib_get_all_image_info_addr_at_init, darwin_bfd_open):
831 Use it.
832 * gdb_bfd.h (gdb_bfd_mark_parent): Declare.
833 * gdb_bfd.c (gdb_bfd_mark_parent): New function.
834 (gdb_bfd_openr_next_archived_file): Use it.
835
945bf713
MM
8362012-11-28 Markus Metzger <markus.t.metzger@intel.com>
837
838 * configure.ac: Check for linux/perf_event.h.
839 * config.in: Regenerated.
840 * configure: Regenerated.
841
7e20dfcd
YQ
8422012-11-28 Yao Qi <yao@codesourcery.com>
843
844 * breakpoint.c (_initialize_breakpoint): Call add_alias_cmd to
845 abbreviate 'delete tracepoints' to 'delete tr'.
846 * corefile.c (_initialize_core): Call add_alias_cmd to
847 abbreviate 'set gnutarget' to 'set g'.
848 * value.c (_initialize_values): Call add_alias_cmd to abbreviate
849 'show convenience' to 'show conv'.
850
b8293cc8
JB
8512012-11-27 Joel Brobecker <brobecker@adacore.com>
852
853 * sparc-sol2-nat.c (supply_gregset): Fix first parameter in
854 call to sparc_supply_fpregset.
855 (fill_fpregset): Fix first parameter in call to
856 sparc_collect_fpregset.
857
8c2b9656
YQ
8582012-11-27 Daniel Jacobowitz <dan@codesourcery.com>
859 Kazu Hirata <kazu@codesourcery.com>
860 Yao Qi <yao@codesourcery.com>
861
862 * objfiles.c (init_entry_point_info): Call
863 gdbarch_convert_from_func_ptr_addr and
864 gdbarch_addr_bits_remove here ...
865 (entry_point_address_query): ... instead of here.
866 * solib-svr4.c (exec_entry_point): Call
867 gdbarch_addr_bits_remove.
868 * symfile.c (generic_load): Call gdbarch_addr_bits_remove on
869 the entry address.
870
5edf51fe
YQ
8712012-11-27 Daniel Jacobowitz <dan@codesourcery.com>
872 Yao Qi <yao@codesourcery.com>
873
874 * eval.c (evaluate_subexp_standard): Add handling of
875 TYPE_CODE_MEMBERPTR when calling functions. Correct the
876 result of ptype for calling a TYPE_CODE_METHODPTR.
877
ca242aad
YQ
8782012-11-27 Yao Qi <yao@codesourcery.com>
879
880 * symtab.c (symtab_symbol_info): Fix a -Wformat-extra-args
881 warning.
882 Add i18n markup.
883
608e2dbb
TT
8842012-11-26 Alexander Larsson <alexl@redhat.com>
885 Jan Kratochvil <jan.kratochvil@redhat.com>
886 Tom Tromey <tromey@redhat.com>
887
888 * NEWS: Mention mini debuginfo feature.
889 * minidebug.c: New file.
890 * configure.ac: Check for lzma.
891 * configure, config.in: Rebuild.
892 * Makefile.in (LIBLZMA): New variable.
893 (CLIBS): Include LIBLZMA.
894 (SFILES): Mention minidebug.c.
895 (COMMON_OBS): Mention minidebug.o.
896 * symfile.c (read_symbols): New function.
897 (syms_from_objfile, reread_symbols): Call it.
898 * symfile.h (find_separate_debug_file_in_section): Declare.
899
17d6efc4
JB
9002012-11-26 Keith Seitz <keiths@redhat.com>
901
902 * exec.c (exec_file_attach): Move cleanup after verifying that
903 memory has in fact been allocated.
904
210bbc17
TT
9052012-11-26 Tom Tromey <tromey@redhat.com>
906
907 * ada-lang.c (user_select_syms): Use SYMBOL_SYMTAB.
908 * dwarf2read.c (dw2_find_symbol_file, fixup_go_packaging): Use
909 SYMBOL_SYMTAB.
910 * skip.c (skip_info): Use SYMBOL_SYMTAB.
911
0270a750
PA
9122012-11-26 Maxime Villard <rustyBSD@gmx.fr>
913 Pedro Alves <palves@redhat.com>
914
915 * common/linux-osdata.c (linux_xfer_osdata_fds): Decrease buffer
916 size parameter passed to readlink by one byte.
917 * fbsd-nat.c (fbsd_pid_to_exec_file): Ditto.
918 * linux-nat.c (linux_child_pid_to_exec_file): Ditto.
919 * nbsd-nat.c (nbsd_pid_to_exec_file): Ditto.
920 * inf-child.c (inf_child_fileio_readlink): Decrease local buffer's
921 size by one byte.
922
9c16be9a
YQ
9232012-11-26 Yao Qi <yao@codesourcery.com>
924
925 * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
926 extraneous parentheses.
927
e6f3fa52
YQ
9282012-11-26 Yao Qi <yao@codesourcery.com>
929
930 * remote.c (remote_start_remote): Typo fix.
931
db75c717
DM
9322012-11-23 David S. Miller <davem@davemloft.net>
933
934 * sparc-tdep.h (struct sparc_fpregset): New data structure.
935 (sparc32_sunos4_fpregset, sparc32_bsd_fpregset,
936 sparc32_sol2_fpregset): Declare new globals.
937 (sparc32_supply_fpregset, sparc32_collect_fpregset): Add new
938 'fpregset' argument.
939 * sparc64-tdep.h (sparc64_supply_fpregset,
940 sparc64_collect_fpregset): Likewise.
941 (sparc64_sol2_fpregset, sparc64_bsd_fpregset): Declare new
942 globals.
943 * sparc-nat.h (struct sparc_fpregset): Add forward declaration.
944 (sparc_fpregset): Declare new global.
945 (sparc_supply_fpregset, sparc_collect_fpregset): Add new
946 'fpregset' argument.
947 * sparc-linux-nat.c (supply_fpregset): Pass sparc_fpregset down
948 into handler.
949 (fill_fpregset): Likewise.
950 (_initialize_sparc_linux_nat): Set sparc_fpregset to
951 sparc32_bsd_fpregset.
952 * sparc-linux-tdep.c (sparc32_linux_supply_core_fpregset): Pass
953 sparc32_bsd_fpregset down into handler.
954 (sparc32_linux_collect_core_fpregset): Likewise.
955 * sparc-nat.c (sparc_fpregset): Define.
956 (sparc_supply_fpregset): Add 'fpregset' argument.
957 (sparc_collect_fpregset): Likewise.
958 (sparc_fetch_inferior_registers): Pass sparc_fpregset down
959 into fpregset handler.
960 (sparc_store_inferior_registers): Likewise.
961 (_initialize_sparc_nat): Set sparc_fpregset to
962 sparc32_sunos4_fpregset if NULL.
963 * sparc-sol2-nat.c (supply_gregset): Pass sparc_sol2_fpregset
964 down into handler.
965 (fill_fpregset): Likewise.
966 * sparc-sol2-tdep.c (sparc32_sol2_fpregset): Define.
967 * sparc-tdep.c (sparc32_supply_fpregset): Add fpregset arg and
968 use it to compute offsets.
969 (sparc32_collect_fpregset): Likewise.
970 (sparc32_sunos4_fpregset, sparc32_bsd_fpregset): Define.
971 * sparc64-linux-nat.c (supply_fpregset): Pass sparc64_bsd_fpregset
972 down into handler.
973 (fill_fpregset): Likewise.
974 * sparc64-linux-tdep.c (sparc64_linux_supply_core_fpregset):
975 Likewise.
976 (sparc64_linux_collect_core_fpregset): Likewise.
977 * sparc64-sol2-tdep.c (sparc64_sol2_fpregset): Define.
978 * sparc64-tdep.c (sparc64_supply_fpregset): Add fpregset arg and
979 use it to compute offsets.
980 (sparc64_collect_fpregset): Likewise.
981 (sparc64_bsd_fpregset): Define.
982 * sparc64fbsd-tdep.c (sparc64fbsd_supply_fpregset): Padd
983 sparc64_bsd_fpregset down into handler.
984 (sparc64fbsd_collect_fpregset): Likewise.
985 * sparc64nbsd-nat.c (sparc64nbsd_supply_fpregset): Add fpregset arg
986 and pass sparc{32,64}_bsd_fpregset down into handler.
987 (sparc64nbsd_collect_fpregset): Likewise.
988 * sparc64nbsd-tdep.c (sparc64nbsd_supply_fpregset): Pass
989 sparc64_bsd_fpregset down into handler.
990 * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Likewise.
991 * sparcnbsd-nat.c (_initialize_sparcnbsd_nat): Set sparc_fpregset
992 to sparc32_bsd_fpregset.
993 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Pass
994 sparc32_bsd_fpregset down into sparc32_supply_fpregset.
995 (sparc32nbsd_supply_fpregset): Likewise.
996
cfcad218
TT
9972012-11-21 Tom Tromey <tromey@redhat.com>
998
999 * gdbtypes.h (struct cplus_struct_type) <localtype_ptr>: Remove
1000 field.
1001 (TYPE_LOCALTYPE_PTR, TYPE_LOCALTYPE_FILE, TYPE_LOCALTYPE_LINE):
1002 Remove.
1003 * c-typeprint.c (c_type_print_base): Update.
1004
85ddcc70
YQ
10052012-11-21 Yao Qi <yao@codesourcery.com>
1006
1007 PR tdep/7438
1008 * gdbarch.sh (smash_text_address): Remove.
1009 * gdbarch.c, gdbarch.h: Regenerate.
1010 * arm-tdep.c (arm_smash_text_address): Remove.
1011 (arm_gdbarch_init): Don't call set_gdbarch_smash_text_address.
1012 * hppa-tdep.c (hppa_smash_text_address): Remove.
1013 (hppa_addr_bits_remove): Rename from hppa_smash_text_address.
1014 (hppa_gdbarch_init): Don't call set_gdbarch_smash_text_address.
1015 Caller update.
1016 * coffread.c (coff_symtab_read): Caller update.
1017 * dbxread.c (process_one_symbol): Likewise.
1018 * elfread.c (record_minimal_symbol): Likewise.
1019 * somread.c (som_symtab_read): Likewise.
1020
11522069
PM
10212012-11-20 Pierre Muller <muller@sourceware.org>
1022
1023 ARI fixes: sprintf rule.
1024 Replace sprintf function calls for char arrays by
1025 calls to xsnprintf calls.
1026 * arm-tdep.c (arm_push_dummy_call): Replace sprintf by xsnprintf.
1027 (arm_dwarf_reg_to_regnum, arm_return_value): Ditto.
1028 (arm_neon_quad_read, arm_pseudo_read): Ditto.
1029 (arm_neon_quad_write, arm_pseudo_write): Ditto.
1030 * breakpoint.c (condition_completer): Ditto.
1031 (create_tracepoint_from_upload): Ditto.
1032 * dwarf2read.c (file_full_name): Ditto.
1033 * gcore.c (gcore_command): Ditto.
1034 * gnu-nat.c (proc_string, gnu_pid_to_str): Ditto.
1035 * go32-nat.c (go32_sysinfo): Ditto.
1036 * interps.c (interp_set): Ditto.
1037 * m32c-tdep.c (make_types): Ditto.
1038 * ppc-linux-nat.c (fetch_register, store_register): Ditto.
1039 * remote-m32r-sdi.c (m32r_open): Ditto.
1040 * sol-thread.c (td_err_string): Ditto.
1041 (td_state_string, solaris_pid_to_str): Ditto.
1042 * symtab.c (gdb_mangle_name): Ditto.
1043 * cli/cli-script.c (execute_control_command): Ditto.
1044 (define_command, document_command): Ditto.
1045 * tui/tui-io.c (tui_rl_display_match_list): Ditto.
1046 * tui/tui-stack.c (tui_make_status_line): Ditto.
1047 * tui/tui-win.c (tui_update_gdb_sizes): Ditto.
1048
ace21957
MF
10492012-11-20 Mike Frysinger <vapier@gentoo.org>
1050
1051 * cli/cli-decode.c (complete_on_cmdlist): Add a fourth arg and check
1052 it when looking at ptr->func.
1053 * command.h (complete_on_cmdlist): Add a fourth arg.
1054 * completer.c (complete_line_internal): Add local ignore_help_classes,
1055 and set it to 1 when reason is not handle_help. Pass this down to
1056 lookup_cmd_1 and complete_on_cmdlist.
1057
ec6632d7
TT
10582012-11-20 Tom Tromey <tromey@redhat.com>
1059
1060 * completer.c (count_struct_fields): Remove.
1061 (expression_completer): Don't call count_struct_fields.
1062
ef37bb07
PA
10632012-11-20 Pedro Alves <palves@redhat.com>
1064
1065 * annotate.c (breakpoints_changed): Rename to ...
1066 (annotate_breakpoints_changed): ... this.
1067 (annotate_stopped, breakpoint_changed): Adjust caller.
1068 * annotate.h (breakpoints_changed): Rename to ...
1069 (annotate_breakpoints_changed): ... this.
1070 * breakpoint.c (set_breakpoint_condition, breakpoint_set_commands)
1071 (do_map_commands_command, init_raw_breakpoint, clear_command)
1072 (set_ignore_count, enable_breakpoint_disp): Adjust callers.
1073
b245bdfc
DM
10742012-11-20 David S. Miller <davem@davemloft.net>
1075
1076 * common/linux-osdata.c (get_number_of_cpu_cores): Delete.
1077 (linux_xfer_osdata_processes): Fetch _SC_NPROCESSORS_ONLN via
1078 sysconf.
1079 (get_cores_used_by_process): Update comment.
1080
bd0cfc4d
YQ
10812012-11-20 Yao Qi <yao@codesourcery.com>
1082
1083 * objfiles.c (init_entry_point_info): Remove trailing spaces.
1084
de9f1b68
YQ
10852012-11-20 Yao Qi <yao@codesourcery.com>
1086
1087 * infrun.c (handle_inferior_event): Pass 'saved_singlestep_ptid'
1088 to deprecated_context_hook.
1089
8870954f
YQ
10902012-11-19 Yao Qi <yao@codesourcery.com>
1091
1092 * infrun.c (infwait_state): Add static.
1093
8dea366b
KS
10942012-11-16 Keith Seitz <keiths@redhat.com>
1095
1096 PR c++/13615
1097 * cp-namespace.c (cp_lookup_symbol_in_namespace): Add SEARCH
1098 parameter and pass it to lookup_symbol_file.
1099 (cp_lookup_symbol_imports): Tell cp_lookup_symbol_in_namespace
1100 to search base classes.
1101 (cp_lookup_symbol_namespace): Likewise.
1102 (lookup_namespace_scope): Likewise.
1103 (lookup_symbol_file): Add SEARCH parameter.
1104 If SEARCH is non-zero and no symbol is found, lookup the class
1105 and call cp_lookup_nested_symbol.
1106 (find_symbol_in_baseclass): New function.
1107 (cp_lookup_nested_symbol): Do not let
1108 cp_lookup_symbol_in_namespace search through base classes.
1109 Do that later when there is no global symbol match.
1110
e64e0392
DE
11112012-11-16 Doug Evans <dje@google.com>
1112
1113 * main.c (gdb_datadir_provided): New static global.
1114 (get_init_files): If --data-directory is provided,
1115 and SYSTEM_GDBINIT lives in data-directory, look for it there.
1116 * NEWS: Mention it.
1117
8bdce1ff
PM
11182012-11-15 Pierre Muller <muller@sourceware.org>
1119
1120 ARI fixes: move gdb_wait and gdb_stat headers to common subdirectory.
1121 * gdb_stat.h: Delete. Moved to common directory.
1122 * common/gdb_stat.h: New file.
1123 * gdb_wait.h: Delete. Moved to common directory.
1124 * common/gdb_wait.h: New file.
1125 * Makefile.in (H_FILES_NO_SRC): Adapt to new header
1126 location.
1127 * contrib/ari/gdb_ari.sh (wait.h rule): Adapt to new gdb_wait.h
1128 location.
1129 (stat.h rule): Adapt to new gdb_stat.h location.
1130 * common/linux-osdata.c: Include "gdb_stat.h" header instead of
1131 <sys/stat.h> header.
1132 * common/linux-ptrace.c: Include "gdb_wait.h" header instead of
1133 <sys/wait.h> header.
1134
3a731e0f
PM
11352012-11-15 Pierre Muller <muller@sourceware.org>
1136
1137 * configure.ac (AC_HEADER_STAT): Remove.
1138 * gdb_stat.h (STAT_MACROS_BROKEN): Remove macro use
1139 and corresponding code.
1140 * configure: Regenerate.
1141 * config.in: Regenerate.
1142
2792b94d
PM
11432012-11-15 Pierre Muller <muller@sourceware.org>
1144
1145 ARI xasprintf rule fixes.
1146 * dwarf2read.c (create_dwo_in_dwp): Use xstrprintf function
1147 instead of xasprintf.
1148 (open_and_init_dwp_file): Ditto.
1149
5e34c6c3
LM
11502012-11-14 Luis Machado <lgustavo@codesourcery.com>
1151
1152 * value.c (value_actual_type): Check for TYPE_CODE_STRUCT
1153 target types.
1154
e68227b9
TT
11552012-11-14 Tom Tromey <tromey@redhat.com>
1156
1157 * configure, config.in: Rebuild.
1158 * configure.ac: Don't check for ctype.h, time.h.
1159 * expprint.c: Don't use HAVE_CTYPE_H.
1160
aff68abb
TT
11612012-11-13 Tom Tromey <tromey@redhat.com>
1162
1163 * gdbarch.h, gdbarch.c: Rebuild.
1164 * gdbarch.sh (set_target_gdbarch): Rename from
1165 deprecated_target_gdbarch_select_hack.
1166 * arch-utils.c (gdbarch_update_p): Update.
1167 (set_gdbarch_from_file): Update.
1168
84277139 11692012-11-14 Pierre Muller <muller@sourceware.org>
f7c93334
PM
1170
1171 * MAINTAINERS (Responsible Maintainers/misc): Add myself
1172 as responsible of contrib/ari directory.
1173
2ae28aa9
YQ
11742012-11-14 Daniel Jacobowitz <dan@codesourcery.com>
1175 Yao Qi <yao@codesourcery.com>
1176
1177 * arm-tdep.c (arm_addr_bits_remove): Do not adjust the low
1178 bit of EXC_RETURN.
1179 (arm_m_exception_cache, arm_m_exception_this_id)
1180 (arm_m_exception_prev_register, arm_m_exception_unwind_sniffer)
1181 (arm_m_exception_unwind): New.
1182 (arm_gdbarch_init): Register arm_m_exception_unwind.
1183
62747a60
TT
11842012-11-13 Giuseppe Montalto <giuseppe.montalto@st.com>
1185
1186 * mi/mi-main.c (mi_cmd_data_write_memory): Handle additional
1187 parameter COUNT, for pattern filling of memory regions.
1188 * NEWS: Mention it.
1189
4cd29721
MM
11902012-11-13 Markus Metzger <markus.t.metzger@intel.com>
1191
1192 * disasm.h (DISASSEMBLY_FILENAME): New macro.
1193 * disasm.c (do_mixed_source_and_assembly): Pass filename flag on
1194 to print_source_lines ().
1195 * symtab.h (PRINT_SOURCE_LINES_FILENAME): New print source lines
1196 flag.
1197 * source.c (print_source_lines_base): Prefix source line with
1198 filename if PRINT_SOURCE_LINES_FILENAME flag is set.
1199
dfaae886
MM
12002012-11-13 Markus Metzger <markus.t.metzger@intel.com>
1201
1202 * symtab.h (print_source_lines_flags): New enum.
1203 * source.c (print_source_lines_base): Change noerror to flags.
1204 (print_source_lines): Change noerror to flags.
1205
08850b56
PM
12062012-11-13 Pierre Muller <muller@sourceware.org>
1207
1208 ARI fixes: Avoid sprintf function use rule.
1209 * charset.c (convert_between_encodings): Use xsnprintf.
1210 * cli-out.c (cli_field_int): Likewise.
1211 * cp-namespace.c (cp_lookup_nested_symbol): Likewise.
1212 * expprint.c (op_name_standard): Likewise.
1213 * frv-tdep.c (set_variant_num_gprs): Likewise.
1214 (set_variant_num_fprs): Likewise.
1215 * m68hc11-tdep.c (m68hc11_initialize_register_info): Likewise.
1216 * nto-tdep.c (nto_find_and_open_solib): Likewise.
1217 (nto_init_solib_absolute_prefix): Likewise.
1218 * source.c (init_source_path): Likewise.
1219 (print_source_lines_base): Likewise.
1220 * valprint.c (print_wchar): Likewise.
1221 * mi/mi-out.c (mi_field_int): Likewise.
1222 windows-nat.c (windows_pid_to_exec_file): Likewise.
1223 (windows_create_inferior): Likewise.
1224 (_initialize_check_for_gdb_ini): Likewise.
1225
ca9d61b9
JB
12262012-11-12 Joel Brobecker <brobecker@adacore.com>
1227
1228 * frame.h (deprecated_frame_register_read): Renames
1229 frame_register_read.
1230 * frame.c (deprecated_frame_register_read): Renames
1231 frame_register_read. Update all callers.
1232 * i386-tdep.c: Update all callers of frame_register_read.
1233 * infcmd.c: Likewise.
1234 * jit.c: Likewise.
1235 * mips-tdep.c: Likewise.
1236 * mt-tdep.c: Likewise.
1237 * sh64-tdep.c: Likewise.
1238
b2c7d45a
JB
12392012-11-12 Joel Brobecker <brobecker@adacore.com>
1240
1241 * frame.h (frame_register_read): Remove FIXME comment.
1242 * frame.c (frame_register_read): Add suggestion explaining
1243 which function to use in place of this one.
1244
31594462
TT
12452012-11-12 Tom Tromey <tromey@redhat.com>
1246
1247 * python/python.c (start_type_printers): Initialize 'result_obj'.
1248
18a9fc12
TT
12492012-11-12 Tom Tromey <tromey@redhat.com>
1250
1251 * NEWS: Update.
1252 * data-directory/Makefile.in (PYTHON_FILES): Add
1253 type_printers.py.
1254 * python/lib/gdb/command/type_printers.py: New file.
1255 * python/lib/gdb/command/types.py (TypePrinter): New class.
1256 (_get_some_type_recognizers, get_type_recognizers,
1257 apply_type_recognizers, register_type_printer): New
1258 functions.
1259 * python/py-objfile.c (objfile_object) <type_printers>: New
1260 field.
1261 (objfpy_dealloc): Decref new field.
1262 (objfpy_new): Set new field.
1263 (objfpy_get_type_printers, objfpy_set_type_printers): New
1264 functions.
1265 (objfile_to_objfile_object): Set new field.
1266 (objfile_getset): Add "type_printers".
1267 * python/py-progspace.c (pspace_object) <type_printers>: New
1268 field.
1269 (pspy_dealloc): Decref new field.
1270 (pspy_new): Set new field.
1271 (pspy_get_type_printers, pspy_set_type_printers): New functions.
1272 (pspace_to_pspace_object): Set new field.
1273 (pspace_getset): Add "type_printers".
1274 * python/python.c (start_type_printers, apply_type_printers,
1275 free_type_printers): New functions.
1276 (_initialize_python): Set gdb.type_printers.
1277 * python/python.h (start_type_printers, apply_type_printers,
1278 free_type_printers): Declare.
1279 * typeprint.c (type_print_raw_options, default_ptype_flags):
1280 Update for new fields.
1281 (do_free_global_table, create_global_typedef_table,
1282 find_global_typedef): New functions.
1283 (find_typedef_in_hash): Use find_global_typedef.
1284 (whatis_exp): Use create_global_typedef_table. Change cleanup
1285 handling.
1286 * typeprint.h (struct type_print_options) <global_typedefs,
1287 global_printers>: New fields.
1288
bd69fc68
TT
12892012-11-12 Tom Tromey <tromey@redhat.com>
1290
1291 * c-typeprint.c (find_typedef_for_canonicalize,
1292 print_name_maybe_canonical): New functions.
1293 (c_print_type): Look up type name.
1294 (cp_type_print_derivation_info): Add flags argument. Use
1295 print_name_maybe_canonical.
1296 (cp_type_print_method_args): Add wrapping.
1297 (c_type_print_varspec_prefix): Use print_name_maybe_canonical.
1298 (c_type_print_template_args): New function.
1299 (c_type_print_base): Change wrapping. Use
1300 print_name_maybe_canonical.
1301 <TYPE_CODE_STRUCT>: Possibly create a typedef hash, and do
1302 type name lookups.
1303 * gdbtypes.c (types_equal): No longer static.
1304 * gdbtypes.h (types_equal): Declare.
1305 * typeprint.c (type_print_raw_options, default_ptype_flags):
1306 Update.
1307 (struct typedef_hash_table): New.
1308 (hash_typedef_field, eq_typedef_field,
1309 recursively_update_typedef_hash, add_template_parameters,
1310 create_typedef_hash, free_typedef_hash, do_free_typedef_hash,
1311 make_cleanup_free_typedef_hash, copy_typedef_hash_element,
1312 copy_typedef_hash, find_typedef_in_hash): New functions.
1313 * typeprint.h (struct type_print_options) <local_typedefs>:
1314 New field.
1315 (recursively_update_typedef_hash, add_template_parameters,
1316 create_typedef_hash, free_typedef_hash,
1317 make_cleanup_free_typedef_hash, copy_typedef_hash,
1318 find_typedef_in_hash): Declare.
1319
2621e0fd
TT
13202012-11-12 Tom Tromey <tromey@redhat.com>
1321
1322 * cp-support.c (inspect_type,
1323 replace_typedefs_qualified_name, replace_typedefs): Add
1324 finder, data arguments. Call as needed.
1325 (cp_canonicalize_string_full): New function.
1326 (cp_canonicalize_string_no_typedefs): Rewrite.
1327 * cp-support.h (canonicalization_ftype): New typedef.
1328 (cp_canonicalize_string_full): Declare.
1329
53342f27
TT
13302012-11-12 Tom Tromey <tromey@redhat.com>
1331
1332 * NEWS: Update.
1333 * c-typeprint.c (c_type_print_base): Handle print_method and
1334 print_typedefs flags.
1335 * gdbcmd.h (setprinttypelist, showprinttypelist): Declare.
1336 * python/py-type.c (typy_str): Use LA_PRINT_TYPE and raw
1337 options.
1338 * typeprint.c (type_print_raw_options, default_ptype_flags):
1339 Update for new field.s
1340 (whatis_exp): Parse flags. Use LA_PRINT_TYPE.
1341 (setprinttypelist, showprinttypelist, print_methods,
1342 print_typedefs): New globals.
1343 (set_print_type, show_print_type, set_print_type_methods,
1344 show_print_type_methods, set_print_type_typedefs,
1345 show_print_type_typedefs): New functions.
1346 (_initialize_typeprint): Update documentation. Add "print
1347 type methods" and "print type typedefs" parameters.
1348 * typeprint.h (struct type_print_options) <print_methods,
1349 print_typedefs>: New fields.
1350
6c8702eb
TT
13512012-11-12 Tom Tromey <tromey@redhat.com>
1352
1353 * c-typeprint.c (cp_type_print_method_args): Add flags
1354 argument. Call c_print_type, not type_print.
1355 (c_type_print_base): Call c_print_type, not type_print.
1356 Update.
1357
79d43c61
TT
13582012-11-12 Tom Tromey <tromey@redhat.com>
1359
1360 * ada-lang.c (user_select_syms, ada_print_subexp): Pass flags
1361 to type-printing functions.
1362 * ada-lang.h (ada_print_type): Add argument.
1363 * ada-typeprint.c (print_array_type, print_variant_clauses,
1364 print_variant_part, print_selected_record_field_types,
1365 print_record_field_types, print_unchecked_union_type,
1366 print_func_type, ada_print_type): Add flags argument.
1367 (ada_print_typedef): Update.
1368 * c-exp.y (OPERATOR conversion_type_id): Update.
1369 * c-lang.h (c_print_type, c_type_print_base): Update.
1370 * c-typeprint.c (c_print_type, c_type_print_varspec_prefix,
1371 c_type_print_modifier, c_type_print_args,
1372 c_type_print_varspec_suffix, c_type_print_base): Add flags
1373 argument.
1374 * cp-valprint.c (cp_print_class_member): Update.
1375 * dwarf2read.c (dwarf2_compute_name): Update.
1376 * f-lang.h (f_print_type): Add argument.
1377 * f-typeprint.c (f_print_type): Add flags argument.
1378 * gnu-v3-abi.c (gnuv3_print_method_ptr): Update.
1379 * go-lang.h (go_print_type): Add argument.
1380 * go-typeprint.c (go_print_type): Add flags argument.
1381 * jv-lang.h (java_print_type): Add argument.
1382 * jv-typeprint.c (java_type_print_base, java_print_type): Add
1383 flags argument.
1384 * language.c (unk_lang_print_type): Add flags argument.
1385 * language.h (struct language_defn) <la_print_type>: Add flags
1386 argument.
1387 (LA_PRINT_TYPE): Likewise.
1388 * m2-lang.h (m2_print_type): Add argument.
1389 * m2-typeprint.c (m2_print_type, m2_range, m2_typedef,
1390 m2_array, m2_pointer, m2_ref, m2_procedure, m2_long_set,
1391 m2_unbounded_array, m2_record_fields): Add flags argument.
1392 * p-lang.h (pascal_print_type, pascal_type_print_base,
1393 pascal_type_print_varspec_prefix): Add argument.
1394 * p-typeprint.c (pascal_print_type,
1395 pascal_type_print_varspec_prefix, pascal_print_func_args,
1396 pascal_type_print_varspec_suffix, pascal_type_print_base): Add
1397 flags argument.
1398 * symmisc.c (print_symbol): Update.
1399 * typeprint.c (type_print_raw_options, default_ptype_flags):
1400 New globals.
1401 (type_print): Update.
1402 * typeprint.h (struct type_print_options): New.
1403 (type_print_raw_options): Declare.
1404 (c_type_print_varspec_suffix, c_type_print_args): Add argument.
1405
cf4ded82
KS
14062012-11-10 Keith Seitz <keiths@redhat.com>
1407
1408 * breakpoint.c (clear_command): Add cleanup for
1409 sals.sals if an argument is given.
1410
1411 * linespec.c (parse_linespec): Do cleanups after
1412 parsing a convenience variable.
1413
0d63ecda
KS
14142012-11-10 Keith Seitz <keiths@redhat.com>
1415
1416 PR gdb/14288
1417 * c-valprint.c (c_val_print): For character arrays
1418 with "print null" option on, print ellipses if
1419 the output is truncated and the next character is not \000.
1420 * valprint.c (MAX_WCHARS): Define.
1421 (WCHAR_BUFLEN): Likewise.
1422 (WCHAR_BUFLEN_MAX): Likewise.
1423 (struct converted_character): New structure.
1424 (count_next_character): New function.
1425 (print_converted_chars_to_obstack): New function.
1426 (generic_printstr): Rewrite using count_next_character
1427 and print_converted_chars_to_obstack.
1428
9b8d6827
SC
14292012-11-10 Stephane Carrez <Stephane.Carrez@gmail.com>
1430
1431 * tui/tui.c (tui_rl_command_key): Switch to TUI_ONE_COMMAND_MODE
1432 while executing the gdb command.
1433 (tui_rl_startup_hook): Do not switch back to TUI_SINGLE_KEY_MODE if we
1434 are called from prompt_for_continue.
1435 * tui/tui-io.c (tui_redisplay_readline): Likewise.
1436
e840f632
SC
14372012-11-10 Stephane Carrez <Stephane.Carrez@gmail.com>
1438
1439 PR tui/9584
1440
1441 * tui/tui.c (tui_rl_command_key): Do not call execute_command
1442 but insert the command to execute in readline's buffer.
1443
f5656ead
TT
14442012-11-09 Tom Tromey <tromey@redhat.com>
1445
1446 * gdbarch.sh (target_gdbarch): Remove macro.
1447 (get_target_gdbarch): Rename to target_gdbarch.
1448 * gdbarch.c, gdbarch.h: Rebuild.
1449 * ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
1450 arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
1451 darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
1452 filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
1453 ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
1454 linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
1455 mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
1456 mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
1457 nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
1458 procfs.c, progspace.c, ravenscar-thread.c, record.c,
1459 remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
1460 rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
1461 solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
1462 solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
1463 solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
1464 spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
1465 target-descriptions.c, target.c, target.h, tracepoint.c,
1466 windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
1467 common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
1468 python/py-inferior.c, python/python.c: Update.
1469
ed8a1c2d
AB
14702012-11-09 Andrew Burgess <aburgess@broadcom.com>
1471
1472 * source.c (print_source_lines_base): Add fullname field giving
1473 full path to file in mi output.
1474 * NEWS: Mention the new fullname field.
1475
504b36fd
YQ
14762012-11-09 Yao Qi <yao@codesourcery.com>
1477
1478 * NEWS: Mention the fix to the ambiguity of 'fo' command.
1479
9107fc8d
PA
14802012-11-09 Pedro Alves <palves@redhat.com>
1481
1482 PR gdb/14306
1483
1484 * infrun.c: Include target-descriptions.h.
1485 (follow_exec): Fetch new target description.
1486
30f8135b
YQ
14872012-11-09 Yao Qi <yao@codesourcery.com>
1488
1489 * i386-tdep.c (i386_analyze_frame_setup): Handle opcode
1490 0x8d (lea).
1491
558a9d82
YQ
14922012-11-09 Yao Qi <yao@codesourcery.com>
1493
1494 * breakpoint.c: Declare set_tracepoint_count.
1495 (install_breakpoint): Call set_tracepoint_count if B is a
1496 tracepoint.
1497 (trace_command): Don't call set_tracepoint_count. Re-indent.
1498 (strace_command, ftrace_command):
1499 (create_tracepoint_from_upload): Likewise.
1500
6ecd4729
PA
15012012-11-09 Pedro Alves <palves@redhat.com>
1502
1503 * gdbarch.sh (target_gdbarch) <gdbarch.h>: Reimplement as macro.
1504 (get_target_gdbarch) <gdbarch.h>: New function.
1505 (startup_gdbarch) <gdbarch.h>: Declare.
1506 <gdbarch.c> (target_gdbarch): Delete.
1507 <gdbarch.c> (deprecated_target_gdbarch_select_hack): Set the
1508 current inferior's gdbarch.
1509 <gdbarch.c> (get_target_gdbarch): New function.
1510 * inferior.c: Include target-descriptions.h.
1511 (free_inferior): Free target description info.
1512 (add_inferior_with_spaces): Set the inferior's initial
1513 architecture.
1514 (clone_inferior_command): Copy the original inferior's target
1515 description if it was user specified.
1516 (initialize_inferiors): Add comment.
1517 * inferior.h (struct target_desc_info): Forward declare.
1518 (struct inferior) <gdbarch>: New field.
1519 * linux-nat.c: Include target-descriptions.h.
1520 (linux_child_follow_fork): Copy the parent's architecture and
1521 target description to the child.
1522 * target-descriptions.c: Include inferior.h.
1523 (struct target_desc_info): New structure, holding the equivalents
1524 of ...
1525 (target_desc_fetched, current_target_desc)
1526 (target_description_filename): ... these removed globals.
1527 (get_tdesc_info, target_desc_info_from_user_p)
1528 (copy_inferior_target_desc_info, target_desc_info_free): New.
1529 (target_desc_fetched, current_target_desc)
1530 (target_description_filename): Reimplemented as convenience
1531 macros.
1532 (tdesc_filename_cmd_string): New global.
1533 (set_tdesc_filename_cmd): Copy the string manipulated by the "set
1534 tdescs filename ..." commands to the per-inferior equivalent.
1535 (show_tdesc_filename_cmd): Get the value to show from the
1536 per-inferior description filename.
1537 (_initilize_target_descriptions): Change the "set/show tdesc
1538 filename" commands' variable.
1539 * target-descriptions.h (struct target_desc, struct target_desc_info)
1540 (struct inferior): Forward declare.
1541 (target_find_description, target_clear_description)
1542 (target_current_description): Adjust comments.
1543 (copy_inferior_target_desc_info, target_desc_info_free)
1544 (target_desc_info_from_user_p). Declare.
1545
4ca4d161
SC
15462012-11-08 Stephane Carrez <Stephane.Carrez@gmail.com>
1547
1548 * tui/tui-hooks.c (tui_about_to_proceed): New function.
1549 (tui_target_wait_hook): Remove.
1550 (tui_install_hooks): Install the about_to_proceed observer.
1551 (tui_remove_hooks): And remove it here.
1552
9015683b
TT
15532012-11-08 Tom Tromey <tromey@redhat.com>
1554
1555 * linux-tdep.c (linux_make_siginfo_note): New function.
1556 (linux_make_corefile_notes): Use it.
1557 * corelow.c (get_core_siginfo): New function.
1558 (core_xfer_partial) <TARGET_OBJECT_SIGNAL_INFO>: New case.
1559
ea9f10bb
TT
15602012-11-08 Tom Tromey <tromey@redhat.com>
1561
1562 PR gdb/14704:
1563 * gdb_bfd.c (gdb_bfd_ref): Set BFD_DECOMPRESS.
1564 (zlib_decompress_section): Remove.
1565 (gdb_bfd_map_section): Only check for compressed section
1566 in mmap case. Use bfd_get_full_section_contents.
1567 * osabi.c (check_note): Add 'sectsize' argument. Read
1568 section data.
1569 (generic_elf_osabi_sniff_abi_tag_sections): Don't read
1570 section data. Update for check_note change.
1571 * xcoffread.c (xcoff_initial_scan): Use
1572 bfd_get_full_section_contents.
1573 * py-auto-load.c (auto_load_section_scripts): Use
1574 bfd_get_full_section_contents.
1575 * contrib/cc-with-tweaks.sh: Add -Z option.
1576
d071a26b
TT
15772012-11-08 Tom Tromey <tromey@redhat.com>
1578
1579 * python/py-bpevent.c: Include defs.h.
1580 * python/py-continueevent.c: Include defs.h.
1581 * python/py-event.c: Include defs.h.
1582 * python/py-event.h: Don't include defs.h.
1583 * python/py-events.h: Don't include defs.h.
1584 * python/py-evts.c: Include defs.h.
1585 * python/py-exitedevent.c: Include defs.h.
1586 * python/py-newobjfileevent.c: Include defs.h.
1587 * python/py-signalevent.c: Include defs.h.
1588 * python/py-stopevent.c: Include defs.h.
1589 * python/py-threadevent.c: Include defs.h.
1590
4574b35a
PM
15912012-11-08 Pierre Muller <muller@sourceware.org>
1592
1593 * update-web-ari.sh (print_heading): Add number of files
1594 checked.
1595 (nb_files): New variable counting the number of sources
1596 files found by gdb_find.sh script.
1597 (debug_awk): New variable to allow extra debug output.
1598 (indexes): Add more information if DEBUG_AWK is set.
1599
2834ab42
EBM
16002012-11-08 Edjunior Machado <emachado@linux.vnet.ibm.com>
1601
1602 * ppc-linux-tdep.c (ppc64_standard_linkage1, ppc64_standard_linkage2,
1603 ppc64_standard_linkage3): Mark ld r11 instructions as optional,
1604 following the change in PLT call stubs on linker.
1605
84f13595
PM
16062012-11-08 Pierre Muller <muller@sourceware.org>
1607
1608 * contrib/ari/gdb_ari.sh (LANG, LC_ALL): Use 'C' instead of 'c'
1609 as default language.
1610 (AWK): Use = instead of == for sh test to avoid warning.
1611 (Linux rule): Correct [:digit] into [[:digit:]].
1612 (__func__ rule): Adapt to "gdb_assert.h" move to common subdirectory.
1613 (vasprintf rule): Adapt to common subdirectory moves.
1614 (xasprintf rule): Idem.
1615 (xvasprintf rule): Idem.
1616 (var_boolean rule): Accept occurence in == or != test.
1617
1618 * contrib/ari/gdb_find.sh: Also prune gdbtk directory.
1619
d69e6a33
SC
16202012-11-08 Stephane Carrez <Stephane.Carrez@gmail.com>
1621
1622 * tui/tui-hooks.c (tui_inferior_exit): New function.
1623 (tui_detach_hook): Remove.
1624 (tui_install_hooks): Install the inferior exit observer.
1625 (tui_remove_hooks): Remove it.
1626
1e96de83
YQ
16272012-11-08 Yao Qi <yao@codesourcery.com>
1628
1629 PR gdb/14777.
1630 * source.c (_initialize_source): Call add_com_alias to abbreviate
1631 'forward-search' as 'fo'.
1632
0baeab03
PA
16332012-11-07 Pedro Alves <palves@redhat.com>
1634
1635 * arm-tdep.c: Make defs.h be the first include.
1636 * coff-pe-read.c: Ditto.
1637 * gnu-nat.c: Ditto.
1638 * go32-nat.c: Ditto.
1639 * i386-nat.c: Ditto.
1640 * ppcnbsd-nat.c: Ditto.
1641 * ada-varobj.h: Don't include defs.h.
1642 * i386-darwin-tdep.h: Ditto.
1643 * i386-nat.h: Ditto.
1644
892a8570
PA
16452012-11-07 Pedro Alves <palves@redhat.com>
1646
1647 * MAINTAINERS: New FSF-appointed maintainers replace the Steering
1648 Committee.
1649
719502e9
PM
16502012-11-07 Pierre Muller <muller@sourceware.org>
1651
1652 * common/linux-osdata.c (dirent.h): ARI fix: Remove.
1653 File already uses "gdb_dirent.h" header.
1654
ed86b350
YQ
16552012-11-07 Yao Qi <yao@codesourcery.com>
1656
1657 * breakpoint.c (get_tracepoint_by_number): Remove 'extern int
1658 tracepoint_count'.
1659
9a4f1e4f
TT
16602012-11-06 Tom Tromey <tromey@redhat.com>
1661
1662 * target.h (inferior_has_forked, inferior_has_vforked)
1663 (inferior_has_execd, inferior_has_called_syscall): Remove
1664 declarations.
1665
0316657e
PM
16662012-11-06 Pierre Muller <muller@sourceware.org>
1667
1668 * remote.c (remote_insert_hw_breakpoint): ARI fix,
1669 add missing internalization markup.
1670
f6592439
PA
16712012-11-06 Pedro Alves <palves@redhat.com>
1672
1673 PR gdb/14810
1674
1675 * breakpoint.c (bpstat_stop_status): Skip disabled locations.
1676
01f2564a
PM
16772012-11-06 Pierre Muller <muller@sourceware.org>
1678
1679 * contrib/ari/create-web-ari-in-src.sh: Avoid problem if script
1680 is not executable.
1681
f37c4431
JB
16822012-11-05 Joel Brobecker <brobecker@adacore.com>
1683
1684 * gnulib/update-gnulib.sh: New script.
1685
550889c3
JB
16862012-11-05 Stephane Carrez <Stephane.Carrez@gmail.com>
1687
1688 * MAINTAINERS: Update my email address.
1689
954b50b3
TT
16902012-11-05 Tom Tromey <tromey@redhat.com>
1691
1692 * frame.c (put_frame_register): Don't use temporary buffer.
1693
68c9da30
PA
16942012-11-05 Pedro Alves <palves@redhat.com>
1695
1696 * inferior.c (exit_inferior_1): Clear 'vfork_parent' in the vfork
1697 child. Clear 'pending_detach'.
1698 * infrun.c (handle_vfork_child_exec_or_exit): Clear
1699 'pending_detach' in the vfork parent.
1700
80626a55
DE
17012012-11-05 Doug Evans <dje@google.com>
1702
1703 Add support for DWP files. http://gcc.gnu.org/wiki/DebugFissionDWP
1704 * contrib/cc-with-tweaks.sh: Add -p parameter to invoke dwp.
1705 * dwarf2read.c: #include "elf-bfd.h".
1706 (struct dwarf2_per_objfile): New members dwp_checked, dwp_file.
1707 (dwop_section_names): Renamed from dwo_section names. All uses
1708 updated. Add entries for .debug_cu_index, .debug_tu_index.
1709 (struct dwo_file): Rename dwo_name to name, dwo_bfd to dbfd.
1710 All uses updated.
1711 (struct dwp_sections): New type.
1712 (struct virtual_dwo_sections): New type.
1713 (struct dwp_hash_table): New type.
1714 (struct dwp_file): New type.
1715 (init_cutu_and_read_dies): Ensure DWO info/types section has been
1716 read in. Handle DWOs coming from DWP files.
1717 (lookup_dwo_file_slot): New function.
1718 (dwarf2_locate_dwo_sections): Move definition closer to use.
1719 (create_dwo_debug_info_hash_table_reader): Renamed from
1720 create_debug_info_hash_table_reader. All callers updated.
1721 (create_dwo_debug_info_hash_table): Renamed from
1722 create_debug_info_hash_table. All callers updated.
1723 (create_dwp_hash_table): New function.
1724 (locate_virtual_dwo_sections, create_dwo_in_dwp): New functions.
1725 (lookup_dwo_in_dwp): New function.
1726 (try_open_dwop_file): Renamed from try_open_dwo_file. New parameter
1727 is_dwp. All callers updated.
1728 (open_dwop_file): Renamed from open_dwo_file. All callers updated.
1729 (open_and_init_dwo_file): Renamed from init_dwo_file.
1730 All callers updated.
1731 (lookup_dwo_file): Delete.
1732 (dwarf2_locate_dwp_sections): New function.
1733 (hash_dwp_loaded_cutus, eq_dwp_loaded_cutus): New functions.
1734 (allocate_dwp_loaded_cutus_table): New function.
1735 (open_and_init_dwp_file): New function.
1736 (lookup_dwo_cutu): New function.
1737 (lookup_dwo_comp_unit, lookup_dwo_type_unit): Call it.
1738
6f6484cd
YQ
17392012-11-03 Yao Qi <yao@codesourcery.com>
1740
1741 Fix PR gdb/14617.
1742 * breakpoint.c (trace_pass_set_count): Call
1743 observer_notify_breakpoint_modified instead of
1744 observer_notify_tracepoint_modified.
1745 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
1746
b45627a0
TT
17472012-11-02 Tom Tromey <tromey@redhat.com>
1748
1749 * breakpoint.c (catch_syscall_completer): Pass 'word' as second
1750 argument to complete_on_enum.
1751
d4fb63e1
TT
17522012-11-02 Tom Tromey <tromey@redhat.com>
1753
1754 * configure: Rebuild.
1755 * configure.ac (build_warnings): Add -Wempty-body.
1756 * m68k-tdep.c (m68k_gdbarch_init): Remove empty 'if'.
1757 * remote.c (handle_notification): Use braces for empty 'else' body.
1758 * s390-tdep.c (s390_analyze_prologue): Use braces for empty
1759 'else' body.
1760 * sh64-tdep.c (sh64_push_dummy_call): Use braces for empty
1761 'else' body.
1762 * solib-som.c (som_relocate_section_addresses): Use braces
1763 for empty 'else' body.
1764 * ui-file.c (stdio_file_write): Use braces for empty 'if' body.
1765 (stdio_file_write_async_safe, stdio_file_fputs): Likewise.
1766
f50f4e56
PA
17672012-11-02 Pedro Alves <palves@redhat.com>
1768
1769 PR gdb/14766
1770
1771 * infrun.c (handle_inferior_event)
1772 <TARGET_WAITKIND_EXITED/TARGET_WAITKIND_SIGNALLED>: Switch to
1773 null_ptid before handling a vfork child exec or exit. Switch to
1774 the event ptid afterwards.
1775
f0559fff
YQ
17762012-11-02 Yao Qi <yao@codesourcery.com>
1777
1778 * std-operator.def: Remove OP_LABELED.
1779 * eval.c: Remove the declaration of 'get_label'.
1780 (get_label): Remove.
1781 (evaluate_struct_tuple): Remove code handling OP_LABELED.
1782 Update comment.
1783 Remove local variable 'variantno' and related code.
1784 Replace 'substruct_type' with 'struct_type'. Replace 'subfieldno'
1785 with 'fieldno'.
1786 * expprint.c (print_subexp_standard): Likewise.
1787 (dump_subexp_body_standard): Likewise.
1788 * parse.c (operator_length_standard): Likewise.
1789
e5496e3e
PM
17902012-11-01 Pierre Muller <muller@ics.u-strasbg.fr>
1791
1792 Incorporate ARI web page generator into GDB sources.
1793 * contrib/ari/create-web-ari-in-src.sh: New file.
1794 * contrib/ari/gdb_ari.sh: New file.
1795 * contrib/ari/gdb_find.sh: New file.
1796 * contrib/ari/update-web-ari.sh: New file.
1797
c66fb220
TT
17982012-10-31 Tom Tromey <tromey@redhat.com>
1799
1800 * gdbarch.c: Rebuild.
1801 * gdbarch.sh: Remove references to gdbarch_swap.
1802 * corelow.c (core_open): Remove obsolete comment.
1803
2f27adfe
AB
18042012-10-31 Andrew Burgess <aburgess@broadcom.com>
1805
1806 PR cli/14772
1807 * c-typeprint.c (c_print_type): Don't print a space for vector
1808 types, this is handled within the suffix.
1809 (c_type_print_varspec_suffix): Add a space to vector suffix.
1810
144db827
PA
18112012-10-26 Pedro Alves <palves@redhat.com>
1812
1813 * amd64-tdep.c (amd64_relocate_instruction): Use
1814 store_unsigned_integer instead of memcpy.
1815 * i386-tdep.c (i386_relocate_instruction): Ditto.
1816
940c3c06
PA
18172012-10-26 Pedro Alves <palves@redhat.com>
1818
1819 * infrun.c (handle_inferior_event): Merge handling of
1820 TARGET_WAITKIND_EXITED and TARGET_WAITKIND_SIGNALLED into a single
1821 switch case.
1822
47b19065
PA
18232012-10-26 Pedro Alves <palves@redhat.com>
1824
1825 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_SIGNALLED>:
1826 Remove comment.
1827
87d2d2a4
PA
18282012-10-26 Pedro Alves <palves@redhat.com>
1829
1830 * target.c (target_waitstatus_to_string): Handle
1831 TARGET_WAITKIND_VFORK_DONE.
1832
fed708ed
PA
18332012-10-26 Pedro Alves <palves@redhat.com>
1834
1835 * infrun.c (handle_inferior_event): Print TARGET_WAITKIND_VFORKED
1836 as "TARGET_WAITKIND_VFORKED", not "TARGET_WAITKIND_FORKED".
1837
2590b645
JB
18382012-10-24 Tristan Gingold <gingold@adacore.com>
1839
1840 * ravenscar-sparc-thread.c (ravenscar_sparc_fetch_registers):
1841 Add comments.
1842
bed0c243
JB
18432012-10-24 Joel Brobecker <brobecker@adacore.com>
1844
1845 * ravenscar-thread.c (ravenscar_wait): Only update the list
1846 of threads and inferior_ptid if the inferior is still alive.
1847
f69c91ad
JB
18482012-10-24 Joel Brobecker <brobecker@adacore.com>
1849
1850 * ada-lang.c (is_known_support_routine): Use lbasename when
1851 matching the symtab's filename against
1852 known_runtime_file_name_patterns.
1853
d99dcf51
JB
18542012-10-24 Joel Brobecker <brobecker@adacore.com>
1855
1856 * ada-lang.c (ada_same_array_size_p): New function.
1857 (ada_promote_array_of_integrals): New function.
1858 (coerce_for_assign): Add handling of arrays where the elements
1859 are integrals of a smaller size than the size of the target
1860 array element type.
1861
32560274
JB
18622012-10-24 Joel Brobecker <brobecker@adacore.com>
1863
1864 * doublest.c (convert_doublest_to_floatformat): Fix comparison
1865 against maximum exponent value.
1866
5a04cc98
JB
18672012-10-24 Joel Brobecker <brobecker@adacore.com>
1868
1869 * ada-lang.h (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Add entry for
1870 "unwind-seh.c".
1871
5ded5331
JB
18722012-10-24 Joel Brobecker <brobecker@adacore.com>
1873
1874 * ada-lang.c (ada_template_to_fixed_record_type_1): Do not
1875 strip typedef layer when computing the fixed type's field type,
1876 only when computing its size.
1877
2445fd7b
MK
18782012-10-24 Mark Kettenis <kettenis@gnu.org>
1879
1880 PR gdb/12783
1881 * i386-tdep.c (i386_return_value): Handle complex double and long
1882 double.
1883
8f205f9c
JB
18842012-10-24 Joel Brobecker <brobecker@adacore.com>
1885
1886 * windows-nat.c (windows_create_inferior) [!__CYGWIN__]:
1887 New local variable args_len.
1888 Quote the name of the executable when computing the command line.
1889
7f7930dd
MK
18902012-10-23 Mark Kettenis <kettenis@gnu.org>
1891
1892 PR gdb/12796
1893 PR gdb/12798
1894 PR gdb/12800
1895 * amd64-tdep.h (enum amd64_regnum): Add AMD64_ST1_REGNUM and
1896 AMD64_FTAG_REGNUM.
1897 * amd64-tdep.c (amd64_classify): Classify complex types.
1898 (amd64_return_value): Handle the COMPLEX_X87 class.
1899
38a69d0a
JB
19002012-10-23 Joel Brobecker <brobecker@adacore.com>
1901
1902 * rs6000-aix-tdep.c (rs6000_aix_auto_wide_charset): New function.
1903 (rs6000_aix_init_osabi): Set auto_wide_charset gdbarch method.
1904
83ab93c6
JB
19052012-10-23 Joel Brobecker <brobecker@adacore.com>
1906
1907 * amd64-windows-tdep.c (amd64_windows_auto_wide_charset): New
1908 function.
1909 (amd64_windows_init_abi): Set auto_wide_charset gdbarch method
1910 to amd64_windows_auto_wide_charset.
1911
f6fbab7d
YQ
19122012-10-23 Yao Qi <yao@codesourcery.com>
1913
1914 * event-top.c (mark_async_signal_handler_wrapper): Remove.
1915 * event-top.h: Remove its declaration.
1916 (async_request_quit): Call mark_async_signal_handler instead of
1917 mark_async_signal_handler_wrapper.
1918 (async_do_nothing, async_disconnect): Likewise.
1919 (async_stop_sig): Likewise.
1920 * remote.c (handle_remote_sigint): Likewise.
1921 (handle_remote_sigint_twice): Likewise.
1922
05fa9251
YQ
19232012-10-23 Yao Qi <yao@codesourcery.com>
1924
1925 * event-top.c (sigint_token, sighup_token): Replace 'void *'
1926 with 'static struct async_signal_handler *'.
1927 (sighup_token, sigquit_token, sigstp_token): Likewise.
1928
08af7a40
AA
19292012-10-22 Ali Anwar <ali_anwar@codesourcery.com>
1930
1931 * gdbarch.sh (function_list): Use 'pstring' when printing
1932 a variable which could return NULL.
1933 * gdbarch.c: Regenerate.
1934
beb4b03c 19352012-10-10 Joel Brobecker <brobecker@adacore.com>
f87e3f15 1936 Tom Tromey <tromey@redhat.com>
beb4b03c
JB
1937
1938 * rs6000-aix-tdep.c (rs6000_aix_osabi_sniffer): Replace
1939 inneffective if condition by gdb assertion. Add function
1940 description comment.
1941
a5b12627
JB
19422012-10-19 Joel Brobecker <brobecker@adacore.com>
1943
1944 * parser-defs.h (struct exp_descriptor): Document constraint
1945 on return value for "op_name" callbacks.
1946
0b0865da
TT
19472012-10-18 Tom Tromey <tromey@redhat.com>
1948
1949 * tracepoint.c (print_one_static_tracepoint_marker): Constify.
1950 * symtab.c (iterate_over_some_symtabs): Constify.
1951 * source.h (symtab_to_fullname): Return 'const char *'.
1952 * source.c (symtab_to_fullname): Return 'const char *'.
1953 * python/py-symtab.c (stpy_fullname): Constify.
1954 * cli/cli-cmds.c (edit_command): Constify.
1955 * breakpoint.c (print_breakpoint_location)
1956 (update_static_tracepoint): Constify.
1957
94b0e70d
TT
19582012-10-18 Tom Tromey <tromey@redhat.com>
1959
1960 * breakpoint.c (compare_breakpoints): Fix comparison.
1961
fff10684
TT
19622012-10-18 Tom Tromey <tromey@redhat.com>
1963
1964 * valprint.c (generic_emit_char, generic_printstr): Pass size of
1965 gdb_wchar_t to convert_between_encodings.
1966
8de0566d
YQ
19672012-10-17 Yao Qi <yao@codesourcery.com>
1968
1969 * breakpoint.c (invalidate_bp_value_on_memory_change): Add one
1970 more parameter 'inferior'.
1971 * corefile.c (write_memory_with_notification): Caller update.
1972
1973 * mi/mi-cmd-var.c: Include "mi-main.h".
1974 (mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
1975 to 1 and restore it later.
1976 * mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
1977 and "data-write-memory-bytes.
1978 * mi/mi-interp.c: Include objfiles.h.
1979 (mi_interpreter_init): Call observer_attach_memory_changed.
1980 (mi_memory_changed): New.
1981 * mi/mi-main.h (struct mi_suppress_notification) <memory>:
1982 New field.
1983
1984 * NEWS: Mention new MI notification "memory-changed".
1985
6235cdd1
JK
19862012-10-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1987
1988 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Remove comment.
1989
07540c15
DE
19902012-10-15 Doug Evans <dje@google.com>
1991
1992 New option -nh: inhibit loading of ~/.gdbinit.
1993 * NEWS: Mention -nh.
1994 * main.c (captured_main): Recognize and process -nh.
1995 (print_gdb_help): Mention -nh.
1996 * gdb.1: Mention -nh. Remove erroneous docs on -nx behavior.
1997
eab09350
L
19982012-10-15 H.J. Lu <hongjiu.lu@intel.com>
1999
2000 PR backtrace/14646
2001 PR gdb/14647
2002 * i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
2003 pc_regnum_from_eax.
2004 * i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
2005 nor pc_regnum_from_eax.
2006 * amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
2007 nor pc_regnum_from_eax.
2008
9e3a7d65
JK
20092012-10-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2010
2011 Fix entry values resolving in inlined frames.
2012 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
2013 gdbarch and caller_frame initialization later. Skip INLINE_FRAME
2014 entries of FRAME.
2015
c83393b9
JB
20162012-10-15 Joel Brobecker <brobecker@adacore.com>
2017
2018 * configure.ac: Build with -DMS_WIN64 if building with Python
2019 enabled using GCC on amd64-windows.
2020 * configure: Regenerate.
2021
801e4185
TT
20222012-10-15 Tom Tromey <tromey@redhat.com>
2023
2024 PR python/14635:
2025 * python/py-symtab.c (del_objfile_sal): Set 'symtab' field
2026 to Py_None.
2027
74f910c8
TT
20282012-10-15 Tom Tromey <tromey@redhat.com>
2029
2030 PR python/14634:
2031 * python/py-symbol.c (sympy_dealloc): Check for NULL symbol.
2032
2a7c8fd5
AB
20332012-10-11 Andrew Burgess <aburgess@broadcom.com>
2034
2035 * remote-sim.c (gdbsim_create_inferior): Call init_thread_list to
2036 reset thread numbering back to 1.
2037
7c09e5a0
DE
20382012-10-11 Doug Evans <dje@google.com>
2039
2040 PR breakpoints/14643.
2041 * linespec.c (struct ls_parser): New member keyword_ok.
2042 (linespec_lexer_lex_string): Add comment.
2043 (linespec_lexer_lex_one): Ignore keywords if it's the wrong place
2044 for one.
2045 (parse_linespec): Set keyword_ok.
2046
a1855c1d
DE
20472012-10-10 Doug Evans <dje@google.com>
2048
844226d6
DE
2049 * dwarf2read.c (process_psymtab_comp_unit_reader): Remove duplicate
2050 "0x" prefix on address in log message.
2051
a1855c1d
DE
2052 * dwarf2read.c (read_1_byte): Add const to buf parameter.
2053 (read_1_signed_byte, read_2_bytes, read_2_signed_bytes): Ditto.
2054 (read_4_bytes, read_4_signed_bytes, read_8_bytes): Ditto.
2055 (lookup_dwo_file): Add const to dwo_name parameter.
2056 (lookup_dwo_comp_unit, lookup_dwo_type_unit): Ditto.
2057
2e24f4aa
JK
20582012-10-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2059
2060 Fix crash during stepping on ppc32.
2061 * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL
2062 SYM.
2063
aa14df25
DE
20642012-10-03 Doug Evans <dje@google.com>
2065
2066 PR symtab/14601
2067 * buildsym.c (buildsym_init): Reset using_directives to NULL.
2068
3d468296
AB
20692012-10-02 Andrew Burgess <aburgess@broadcom.com>
2070
2071 * remote-sim.c (dump_mem): Always dump buffer contents, zero fill
2072 output and use uint32_t not long to ensure 4 byte size.
2073
8f0ee2eb
JB
20742012-10-02 Joel Brobecker <brobecker@adacore.com>
2075
2076 * rs6000-nat.c (add_vmap): Set "last" to "next" after having
2077 unref'ed it.
2078
b3dc46ff
AB
20792012-10-01 Andrew Burgess <aburgess@broadcom.com>
2080
2081 * target.c (simple_search_memory): Include access length in
2082 warning message.
2083
f712f01f
EBM
20842012-09-28 Nathan Miller <nathanm2@us.ibm.com>
2085 Edjunior Machado <emachado@linux.vnet.ibm.com>
2086
2087 PR gdb/13989
2088 * solib.c (solib_find): Prevent GDB from loading native libraries when
2089 debugging a cross-target corefile.
2090
39181896
PA
20912012-09-28 selven <pcthegreat@gmail.com>
2092
2093 Make definition match declaration.
2094
2095 * regcache.c (regcache_register_status): Change return type to
2096 enum register_status.
2097
4c2786ba
YQ
20982012-09-28 Yao Qi <yao@codesourcery.com>
2099
2100 * mi/mi-main.c (mi_cmd_data_write_memory): Call
2101 write_memory_with_notification instead of write_memory.
2102 (mi_cmd_data_write_memory_bytes): Call write_memory_with_notification
2103 instead of target_write_memory.
2104
1ae0c35e
YQ
21052012-09-28 Yao Qi <yao@codesourcery.com>
2106
2107 * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Emit error
2108 when the length of content is not an even number.
2109
7977e5d2
TT
21102012-09-27 Tom Tromey <tromey@redhat.com>
2111
2112 Fix https://bugzilla.redhat.com/show_bug.cgi?id=849357
2113 * cp-valprint.c (cp_print_value_fields): Use get_vptr_fieldno.
2114
807160da
JB
21152012-09-27 Joel Brobecker <brobecker@adacore.com>
2116
2117 * sol-thread.c (sol_thread_fetch_registers)
2118 (sol_thread_store_registers): Delete commented out code.
2119
43c75337
JB
21202012-09-27 Joel Brobecker <brobecker@adacore.com>
2121
2122 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2123 Move these functions to sparc-sol-thread.c.
2124 * sparc-sol-thread.c: New file.
2125 * configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and
2126 sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native
2127 configurations.
2128 * configure: Regenerate.
2129
d292a972
JB
21302012-09-27 Joel Brobecker <brobecker@adacore.com>
2131
2132 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2133 Remove commented-out code.
2134
8c3da003
JB
21352012-09-27 Joel Brobecker <brobecker@adacore.com>
2136
2137 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2138 Enable this code for sparc hosts only.
2139
f00482b6
JB
21402012-09-27 Joel Brobecker <brobecker@adacore.com>
2141
2142 * procfs.h (procfs_find_LDT_entry): Add declaration.
2143 * sol-thread.c (ps_lgetLDT): Delete local declaration of
2144 function procfs_find_LDT_entry.
2145
337c776f
JB
21462012-09-27 Joel Brobecker <brobecker@adacore.com>
2147
2148 * procfs.c (proc_get_LDT_entry): Make static.
2149
1a04d88f
JB
21502012-09-27 Joel Brobecker <brobecker@adacore.com>
2151
2152 * procfs.c (proc_find_memory_regions): Fix declaration.
2153
bad43aa5
SP
21542012-09-27 Siddhesh Poyarekar <siddhesh@redhat.com>
2155
2156 * amd64-tdep.c (amd64_return_value): Revert previous change
2157 that used TYPE_LENGTH directly.
2158 * bfin-tdep.c (bfin_extract_return_value): Likewise.
2159 (bfin_store_return_value): Likewise.
2160 * cris-tdep.c (cris_store_return_value): Likewise.
2161 (cris_extract_return_value): Likewise.
2162 * h8300-tdep.c (h8300_extract_return_value): Likewise.
2163 * hppa-tdep.c (hppa64_return_value): Likewise.
2164 * lm32-tdep.c (lm32_store_return_value): Likewise.
2165 * microblaze-tdep.c (microblaze_store_return_value): Likewise.
2166 * spu-tdep.c (spu_value_from_register): Likewise.
2167 * vax-tdep.c (vax_return_value): Likewise.
2168
63375b74
SP
21692012-09-27 Siddhesh Poyarekar <siddhesh@redhat.com>
2170
2171 * gdbtypes.c (lookup_array_range_type): Expand parameters
2172 LOW_BOUND and HIGH_BOUND to LONGEST.
2173 (lookup_string_range_type): Likewise.
2174 * gdbtypes.h (lookup_array_range_type): Likewise.
2175 (lookup_string_range_type): Likewise.
2176 * valops.c (value_cstring): Expand parameter LEN to ssize_t.
2177 Expand HIGHBOUND to ssize_t.
2178 (value_string): Likewise.
2179 * value.h (value_cstring): Expand parameter LEN to ssize_t.
2180 (value_string): Likewise.
2181
19ca11c5
YQ
21822012-09-27 Yao Qi <yao@codesourcery.com>
2183
2184 PR breakpoints/13898
2185 * breakpoint.h (tracepoint_breakpoint_ops): Forward declaration.
2186 * mi/mi-cmd-break.c (mi_cmd_break_insert): Set breakpoint_ops
2187 per breakpoint type.
2188
92107356
PM
21892012-09-26 Pierre Muller <muller@ics.u-strasbg.fr>
2190
2191 * procfs.c: Add gdb_bfd header.
2192 * rs6000-nat.c: Likewise.
2193 * solib-pa64.c: Likewise.
2194 * spu-linux-nat.c: Likewise.
2195 * windows-nat.c: Likewise.
2196
9742094a
TT
21972012-09-26 Tom Tromey <tromey@redhat.com>
2198
2199 * f-lang.h (BLANK_COMMON_NAME_LOCAL): Remove.
2200
0971de02
TT
22012012-09-26 Tom Tromey <tromey@redhat.com>
2202
2203 * dwarf2read.c (mark_common_block_symbol_computed): New function.
2204 (read_common_block): Handle child DIEs with
2205 DW_AT_data_member_location.
2206 (new_symbol_full): Add special case for common blocks.
2207
4357ac6c
TT
22082012-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2209 Tom Tromey <tromey@redhat.com>
2210
2211 * dwarf2read.c (read_common_block): Rewrite.
2212 (new_symbol_full): Handle DW_TAG_common_block.
2213 * f-lang.c (head_common_list, find_common_for_function):
2214 Remove.
2215 * f-lang.h (struct common_entry, struct saved_f77_common,
2216 SAVED_F77_COMMON, SAVED_F77_COMMON_PTR, COMMON_ENTRY,
2217 COMMON_ENTRY_PTR, head_common_list, find_common_for_function,
2218 BLANK_COMMON_NAME_LOCAL): Remove.
2219 (struct common_block): New.
2220 * f-valprint.c (list_all_visible_commons): Remove.
2221 (info_common_command_for_block): New function.
2222 (info_common_command): Use it.
2223 * stack.c (iterate_over_block_locals): Special case for
2224 COMMON_BLOCK_DOMAIN.
2225 * symtab.h (enum domain_enum_tag) <COMMON_BLOCK_DOMAIN>: New
2226 constant.
2227 (struct general_symbol_info) <value.common_block>: New field.
2228 (SYMBOL_VALUE_COMMON_BLOCK): New define.
2229
965f07a8
TT
22302012-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2231 Tom Tromey <tromey@redhat.com>
2232
2233 * f-lang.c (allocate_saved_bf_node,
2234 allocate_saved_function_node, allocate_saved_f77_common_node,
2235 allocate_common_entry_node, tail_common_list, current_common,
2236 saved_bf_list, saved_bf_list_end, current_head_bf_list,
2237 tmp_bf_ptr, add_common_block, add_common_entry,
2238 find_first_common_named, patch_common_entries,
2239 patch_all_commons_by_name, ADD_BF_SYMNUM, clear_bf_list,
2240 global_remote_debug, get_bf_for_fcn, saved_function_list,
2241 saved_function_list_end, clear_function_list, struct saved_fcn,
2242 struct saved_bf_symnum, SAVED_FUNCTION, SAVED_FUNCTION_PTR,
2243 SAVED_BF, SAVED_BF_PTR): Remove.
2244 * f-lang.h (tail_common_list, current_common,
2245 UNINITIALIZED_SECNUM, COMMON_NEEDS_PATCHING,
2246 BLANK_COMMON_NAME_ORIGINAL, BLANK_COMMON_NAME_MF77,
2247 DEFAULT_UPPER_BOUND, DEFAULT_LOWER_BOUND, real_main_name,
2248 real_main_c_value): Remove.
2249 * f-valprint.c (there_is_a_visible_common_named): Remove.
2250
6f380991
AB
22512012-09-26 Andrew Burgess <aburgess@broadcom.com>
2252
2253 * breakpoint.c (update_global_location_list): Ignore previous
2254 duplicate status of a breakpoint when starting a new scan for
2255 duplicate breakpoints.
2256
9ead7ae4 22572012-09-26 Karthik Bhat <kv.bhat@samsung.com>
8b3d5494 2258 PR breakpoints/14419
2536b51c
YQ
2259 * arm-tdep.c (arm_skip_prologue): Extending producer check to
2260 support LLVM compiler.
9ead7ae4 2261
8f8a23a2
SP
22622012-09-26 Siddhesh Poyarekar <siddhesh@redhat.com>
2263
2264 * amd64-tdep.c (amd64_return_value): Use TYPE_LENGTH directly.
2265 * bfin-tdep.c (bfin_extract_return_value): Likewise.
2266 (bfin_store_return_value): Likewise.
2267 * cris-tdep.c (cris_store_return_value): Likewise.
2268 (cris_extract_return_value): Likewise.
2269 * h8300-tdep.c (h8300_extract_return_value): Likewise.
2270 * hppa-tdep.c (hppa64_return_value): Likewise.
2271 * lm32-tdep.c (lm32_store_return_value): Likewise.
2272 * microblaze-tdep.c (microblaze_store_return_value): Likewise.
2273 * spu-tdep.c (spu_value_from_register): Likewise.
2274 * vax-tdep.c (vax_return_value): Likewise.
2275
d7019589
SP
22762012-09-26 Siddhesh Poyarekar <siddhesh@redhat.com>
2277
2278 * breakpoint.c (invalidate_bp_value_on_memory_change): Expand
2279 parameter LEN to ssize_t.
2280
744a8059
SP
22812012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
2282
2283 * ada-valprint.c (ada_val_print_1): Eliminate single-use
2284 variable LEN.
2285 * alpha-tdep.c (alpha_extract_return_value): Use TYPE_LENGTH
2286 directly.
2287 (alpha_store_return_value): Likewise.
2288 * amd64-tdep.c (amd64_classify_aggregate): Likewise.
2289 (amd64_push_arguments): Likewise.
2290 * ax-gdb.c (gen_trace_static_fields): Likewise.
2291 (gen_traced_pop): Likewise.
2292 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
2293 * breakpoint.c (update_watchpoint): Likewise.
2294 * findcmd.c (parse_find_args): Use local variable for type
2295 instead of length.
2296 * findvar.c (default_read_var_value): Use TYPE_LENGTH directly.
2297 * h8300-tdep.c (h8300h_extract_return_value): Likewise.
2298 (h8300_store_return_value): Likewise.
2299 * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
2300 Use i386_darwin_arg_type_alignment directly.
2301 * infcall.c (call_function_by_hand): Use TYPE_LENGTH directly.
2302 * lm32-tdep.c (lm32_push_dummy_call): Likewise.
2303 * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
2304 (m68hc11_extract_return_value): Likewise.
2305 * mep-tdep.c (mep_push_dummy_call): Likewise.
2306 * printcmd.c (float_type_from_length): Likewise.
2307 * s390-tdep.c (s390_value_from_register): Likewise.
2308 * stack.c (read_frame_arg): Likewise.
2309 * tracepoint.c (encode_actions_1): Likewise.
2310 * valops.c (value_fetch_lazy): Use local variable for type
2311 instead of length. Use TYPE_LENGTH directly.
2312 * value.c (value_contents_equal): Use TYPE_LENGTH directly.
2313
a4b411d6
JB
23142012-09-25 Joel Brobecker <brobecker@adacore.com>
2315
2316 * symtab.c (skip_prologue_sal): Fix typo in comment.
2317
11dba07a
JB
23182012-09-25 Joel Brobecker <brobecker@adacore.com>
2319
2320 * linespec.c (create_sals_line_offset): Fix typo in comment.
2321
318102b9
SP
23222012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
2323
2324 * c-typeprint.c (c_type_print_varspec_suffix): Remove cast and
2325 use plongest to print the array size.
2326
b4aa388a
SP
23272012-09-24 Siddhesh Poyarekar <siddhesh@redhat.com>
2328
2329 * m2-typeprint.c (m2_enum): Expand LASTVAL to LONGEST.
2330 * p-valprint.c (pascal_type_print_base): Likewise.
2331
84cebc4a
YQ
23322012-09-22 Yao Qi <yao@codesourcery.com>
2333
2334 * remote.c (remote_get_trace_status): Remove setting default
2335 values of fields of 'ts'.
2336
04e7407c
JK
23372012-09-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2338
2339 Fix internal error on canonicalization of clang types.
2340 * cp-name-parser.y (operator): New comment at make_operator call for
2341 new, delete, new[] and delete[].
2342 (exp): Use "sizeof ". Add new comment at make_operator call.
2343
9bf4bce9
JK
23442012-09-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2345
2346 Fix disassemble without parameters in tailcall frame.
2347 * cli/cli-cmds.c (disassemble_current_function): Use
2348 get_frame_address_in_block.
2349
1c5b7826
TT
23502012-09-21 Tom Tromey <tromey@redhat.com>
2351
2352 * c-typeprint.c (c_type_print_base) <TYPE_CODE_STRUCT,
2353 TYPE_CODE_UNION>: Unify, removing a goto.
2354
62a49610
TT
23552012-09-21 Tom Tromey <tromey@redhat.com>
2356
2357 * c-typeprint.c (cp_type_print_derivation_info): Fix comment.
2358
2603f7ee
AB
23592012-09-21 Andrew Burgess <aburgess@broadcom.com>
2360
2361 * findvar.c (read_frame_register_value): Mark the result value as
2362 optimized out if any of the input registers have been optimized out.
2363
810849a3
AS
23642012-09-21 Andreas Schwab <schwab@linux-m68k.org>
2365
2366 * python/python.c (finalize_python): Only define if HAVE_PYTHON.
2367
0953dec1
SP
23682012-09-21 Siddhesh Poyarekar <siddhesh@redhat.com>
2369
2370 * eval.c (evaluate_subexp_standard): Eliminate single-use
2371 variable LOWER.
2372
82a90ccf
YQ
23732012-09-21 Yao Qi <yao@codesourcery.com>
2374
2375 * mi/mi-interp.c: Declare mi_record_changed.
2376 (mi_interpreter_init): Call observer_attach_record_changed.
2377 (mi_record_changed): New.
2378 * record.c (record_open): Call observer_notify_record_changed.
2379 (cmd_record_stop): Call observer_notify_record_changed.
2380 * NEWS: Mention it.
2381
d7de8e3c
TT
23822012-09-20 Tom Tromey <tromey@redhat.com>
2383
2384 * NEWS: Update.
2385 * python/python.c (finalize_python): New function.
2386 (_initialize_python): Make a final cleanup.
2387
43c7c83d
DE
23882012-09-19 Doug Evans <dje@google.com>
2389
2390 * buildsym.h (param_symbols): Delete, unused.
2391 (context_stack): Delete member "params", unused.
2392 * buildsym.c (push_context): Update.
2393 * dwarf2read.c (read_func_scope): Update.
2394
aa9259cc
TS
23952012-09-19 Thomas Schwinge <thomas@codesourcery.com>
2396
a6521d9a
TS
2397 * sh-tdep.c (sh_register_convert_to_virtual)
2398 (sh_register_convert_to_raw): Add a gdbarch parameter. Update
2399 all callers. Just do a memcpy if not the little-endian case.
2400
f92589cb
TS
2401 * h8300-tdep.c (h8300_gdbarch_init): Invoke
2402 set_gdbarch_double_format and set_gdbarch_long_double_format.
2403 * m68hc11-tdep.c (m68hc11_gdbarch_init): Invoke
2404 set_gdbarch_double_format.
2405 * sh-tdep.c (sh_gdbarch_init): Likewise.
2406
aa9259cc
TS
2407 * NEWS: Document the removal of SH's 'regs' command.
2408 * sh-tdep.c (_initialize_sh_tdep): Remove the deprecated 'regs'
2409 command.
2410
c1d780c2
SDJ
24112012-09-18 Sergio Durigan Junior <sergiodj@redhat.com>
2412
2413 * infcmd.c (_initialize_infcmd): Register `j' as an alias for
2414 `jump'.
2415
4ae24af0
JB
24162012-09-18 Joel Brobecker <brobecker@adacore.com>
2417
2418 * linespec.c (iterate_over_all_matching_symtabs): Use the correct
2419 language when iterating over symbols.
2420
bb25a15c
YQ
24212012-09-18 Yao Qi <yao@codesourcery.com>
2422
2423 * mi/mi-interp.c: Declare mi_tsv_created and mi_tsv_deleted.
2424 (mi_interpreter_init): Call observer_attach_tsv_created and
2425 observer_attach_tsv_deleted.
2426 (mi_tsv_created, mi_tsv_deleted): New.
2427 * tracepoint.c (delete_trace_state_variable): Call
2428 observer_notify_tsv_deleted.
2429 (trace_variable_command): Call observer_notify_tsv_created.
2430 (delete_trace_variable_command): Call
2431 observer_notify_tsv_deleted.
2432 (create_tsv_from_upload): Call observer_notify_tsv_created.
2433 * NEWS: Mention it.
2434
201b4506
YQ
24352012-09-18 Yao Qi <yao@codesourcery.com>
2436
2437 * tracepoint.c (tfind_1): Call observer_notify_traceframe_changed
2438 if traceframe changed.
2439 * mi/mi-cmds.c (mi_cmd mi_cmds): Adjust for command
2440 "trace-find".
2441 * mi/mi-interp.c: Declare 'mi_traceframe_changed'.
2442 (mi_interpreter_init): Hook mi_traceframe_changed to observer
2443 'traceframe_changed'.
2444 (mi_traceframe_changed): New.
2445 * mi/mi-main.h (struct mi_suppress_notification) <traceframe>:
2446 New field.
2447 * NEWS: Mention the new MI notification.
2448
eaeb12db
MW
24492012-09-17 Mike Wrighton <wrighton@codesourcery.com>
2450
2451 * MAINTAINERS (Write After Approval): Add "Mike Wrighton".
2452
6e3c039e
JK
24532012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2454
2455 * common/linux-ptrace.c: Change __i386__ to __i386__ || __x86_64__.
2456 (linux_ptrace_test_ret_to_nx): Extend comment for x86_64. Change
2457 __i386__ to __i386__ || __x86_64__. Extend code also for __x86_64__.
2458 Extend code also for PaX support. Convert all gdb_assert to warning
2459 calls.
2460
9a950c7c
JK
24612012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2462
2463 Implement auto-load user conveniences suggested by Doug Evans.
2464 * auto-load.c: Include top.h.
2465 (file_is_auto_load_safe): New variable advice_printed. Print advice.
2466 (_initialize_auto_load): New variable scripts_directory_help. Mention
2467 GDBPY_AUTO_FILE_NAME and GDB_AUTO_FILE_NAME for set auto-load
2468 scripts-directory. Document in online help one can use also files for
2469 set auto-load safe-path.
2470 * python/py-auto-load.c: (GDBPY_AUTO_FILE_NAME): Move it from here ...
2471 * python/python.h (GDBPY_AUTO_FILE_NAME): ... to here.
2472
deec9a9d
SP
24732012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
2474
2475 * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused definition
2476 of LEN.
2477
354ecfd5
SP
24782012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
2479
2480 * m2-valprint.c (m2_print_array_contents): Eliminate variable
2481 ELTLEN and use TYPE_LENGTH directly.
2482 (m2_val_print): Likewise.
2483 * m68k-tdep.c (m68k_svr4_extract_return_value): Eliminate
2484 variable LEN and use TYPE_LENGTH directly.
2485 (m68k_svr4_store_return_value): Likewise.
2486 * mips-tdep.c (mips_o32_push_dummy_call): Eliminate variable
2487 ARGLEN and use TYPE_LENGTH directly.
2488 (mips_o64_push_dummy_call): Likewise.
2489 * s390-tdep (s390_function_arg_pass_by_reference): Eliminate
2490 variable LENGTH and use TYPE_LENGTH directly.
2491 (s390_function_arg_float): Likewise.
2492 (s390_function_arg_integer): Likewise.
2493 (s390_push_dummy_call): Likewise.
2494 (s390_return_value_convention): Likewise.
2495 * spu-tdep.c (spu_push_dummy_call): Eliminate LEN and use
2496 TYPE_LENGTH directly.
2497
6fc1c773
YQ
24982012-09-17 Yao Qi <yao@codesourcery.com>
2499
2500 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
2501 Update comment to add_setshow_integer_cmd.
2502 * cli/cli-setshow.c (do_set_command): Handle case
2503 'var_zuinteger_unlimited'.
2504 (do_show_command): Likewise.
2505 * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
2506 for command 'remotetimeout'.
2507 * command.h (enum var_types): New zuinteger_unlimited. Update comment
2508 to var_integer.
f87e3f15
PA
2509 * source.c (_initialize_source): Call
2510 add_setshow_zuinteger_unlimited_cmd for command 'set listsize'.
6fc1c773 2511
6acef6cd
SP
25122012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
2513
2514 * infrun.c (restore_infcall_suspend_state): Eliminate single-use
2515 variable LEN.
2516
1ab3b62c
JK
25172012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2518
2519 PR 14119
2520 * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames.
2521 (frame_pop): Drop also TAILCALL_FRAME frames.
2522 * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames.
2523
acf9414f
JK
25242012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2525 Pedro Alves <palves@redhat.com>
2526
2527 PR 14548
2528 * infrun.c (handle_inferior_event): Do not reverse-continue back to the
2529 function start if we are already at function start. Both for
2530 reverse-next and for reverse-step into function without line number
2531 info.
2532
193facb3
JK
25332012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2534
2535 Code cleanup - rename 'inline' depth to 'artificial' depth.
2536 * breakpoint.c (set_momentary_breakpoint): Rename at a caller to
2537 frame_id_artificial_p, extend the comment.
2538 * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
2539 * frame.c (fprint_frame_id): Rename at a user, change debug output
2540 text to "artificial=".
2541 (skip_inlined_frames): Rename to ...
2542 (skip_artificial_frames): ... here. Extend the comment.
2543 (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
2544 (frame_id_inlined_p): Rename to ...
2545 (frame_id_artificial_p): ... here. Rename at a user.
2546 (frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
2547 (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
2548 at a user.
2549 * frame.h (struct frame_id): Rename inline_depth to artificial_depth.
2550 Extend the comment.
2551 (frame_id_inlined_p): Rename to ...
2552 (frame_id_artificial_p): ... here.
2553 * inline-frame.c (inline_frame_this_id): Rename at a user.
2554
42056501
AB
25552012-09-14 Andrew Burgess <aburgess@broadcom.com>
2556
2557 * c-typeprint.c (c_type_print_varspec_suffix): Display the size of
2558 vector variables using vector_size syntax rather than array
2559 syntax.
2560
84c47588
SP
25612012-09-14 Siddhesh Poyarekar <siddhesh@redhat.com>
2562
2563 * valarith.c (value_concat): Replace unsafe ALLOCA with
2564 XMALLOC/XFREE.
2565
f4045bcb
PA
25662012-09-14 Pedro Alves <palves@redhat.com>
2567
2568 * gdb.1 (SEE ALSO): Expand pointer to GDB's Texinfo manual.
2569
63b46266
YPK
25702012-09-14 Khoo Yit Phang <khooyp@cs.umd.edu>
2571
2572 Point contrib/cc-with-tweaks.sh to the build-local data-directory.
2573 * contrib/cc-with-tweaks.sh (GDB): Add -data-directory
2574 data-directory as appropriate.
2575
ddd7a8e7
SP
25762012-09-14 Siddhesh Poyarekar <siddhesh@redhat.com>
2577
2578 * printcmd.c (ui_printf): Eliminate single-use variable
2579 PARAM_LEN.
2580
d649a38e
YQ
25812012-09-14 Yao Qi <yao@codesourcery.com>
2582 Pedro Alves <palves@redhat.com>
2583
2584 * valops.c (value_assign): Move observer_notify_target_changed
2585 below to replace reinit_frame_cache.
2586
b9516fa1
YPK
25872012-09-13 Khoo Yit Phang <khooyp@cs.umd.edu>
2588
2589 Refactor Python "gdb" module into a proper Python package, by
2590 introducing a new "_gdb" module for code implemented in C, and
2591 using reload/__import__ instead of exec.
2592 * python/lib/gdb/__init__.py: Import * from _gdb.
2593 (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
2594 prompt_hook, sys.argv): Moved from finish_python_initialization.
2595 (pretty_printers, PYTHONDIR): Moved from _initialize_python.
2596 (packages, auto_load_packages): New list and function replacing
2597 module_dict and auto-loading code, using __file__ instead of
2598 gdb.PYTHONDIR and reload/__import__ instead of exec.
2599 (GdbSetPythonDirectory): Replacing function of the same name
2600 from finish_python_initialization, using reload/__import__ instead
2601 of exec, as well as call auto_load_packages.
2602 * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
2603 gdb_python_module and not gdb_module.
2604 * python/python-internal.h (gdb_python_module): Declare.
2605 * python/python.c (gdb_python_module): New global.
2606 (before_prompt_hook): Check gdb_python_module and not gdb_module.
2607 (_initialize_python): Rename gdb module to _gdb.
2608 Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
2609 (finish_python_initialization): Move Python code to
2610 lib/gdb/__init__.py; instead, set up sys.path and import gdb into
2611 __main__.
2612
aa0fbdd8
PA
26132012-09-13 Pedro Alves <palves@redhat.com>
2614
2615 * Makefile.in (COMMON_OBS): Add registry.o.
2616 * registry.c: New file.
2617 * registry.h (struct registry_container): Declare.
2618 (registry_data_callback): New typedef.
2619 (struct registry_data, struct registry_data_registration, struct
2620 registry_data_registry): New type.
2621 (register_data_with_cleanup, registry_alloc_data)
2622 (registry_callback_adaptor, registry_clear_data)
2623 (registry_container_free_data, registry_set_data, registry_data):
2624 Declare.
2625 (DEFINE_REGISTRY): Refactor structures and functions as shims over
2626 the new common structures and functions.
2627 (DECLARE_REGISTRY): Declare struct TAG ## _data. Use the tagged
2628 callback typedefs.
2629
42b5c53d
MW
26302012-09-12 Mike Wrighton <wrighton@codesourcery.com>
2631
2632 * remote.c (remote_insert_hw_breakpoint): Throw exception if
2633 there is an error inserting hardware breakpoints and use the
2634 error message from the target.
2635
2636 * breakpoint.c (insert_bp_location, insert_breakpoint_locations):
f87e3f15
PA
2637 Catch this exception and print the error message contained within.
2638 Do not print the default hardware error breakpoint message in this
2639 case.
42b5c53d 2640
a1b64ce1
DE
26412012-09-12 Doug Evans <dje@google.com>
2642
2643 * dwarf2read.c (dwarf2_read_addr_index): Fix handling the case where
2644 cu == NULL.
2645
83a788b8
DE
26462012-09-11 Doug Evans <dje@google.com>
2647
2648 * dwarf2read.c (dw2_do_expand_symtabs_matching): Don't examine
2649 .gdb_index symbol attributes if there are none.
2650
d9eaeb59
JB
26512012-09-11 Joel Brobecker <brobecker@adacore.com>
2652
2653 * symtab.h (struct minimal_symbol) [has_size]: New field.
2654 (MSYMBOL_SIZE): Adjust to forbid macro from being used as lvalue.
2655 (SET_MSYMBOL_SIZE, MSYMBOL_HAS_SIZE): New macros.
2656 * printcmd.c (build_address_symbolic): Only filter out zero-sized
2657 minimal symbols if the symbol's size is actually known.
2658 * minsyms.c (prim_record_minimal_symbol_full): Adjust setting
2659 of msymbol's size field. Add comment.
2660 * elfread.c (elf_symtab_read, elf_rel_plt_read): Use
2661 SET_MSYMBOL_SIZE to set the minimal symbol size.
2662
a83e9154
JB
26632012-09-11 Joel Brobecker <brobecker@adacore.com>
2664
2665 * minsyms.c (install_minimal_symbols): Use memset to fill entire
2666 minimal_symbol struct object, rather than setting some of its
2667 fields one by one.
2668
350b1b26
AB
26692012-09-11 Andrew Burgess <aburgess@broadcom.com>
2670
2671 * c-typeprint.c (c_type_print_varspec_prefix): Pass through the
2672 passed_a_ptr flag when displaying typedef types.
2673
2fa15f23
JB
26742012-09-10 Joel Brobecker <brobecker@adacore.com>
2675
2676 * ada-lang.c (coerce_unspec_val_to_type): Make sure that
2677 the optimized_out flag is preserved.
2678
5152ff90
AG
26792012-09-10 Anthony Green <green@moxielogic.com>
2680
2681 * moxie-tdep.c (moxie_analyze_prologue): Update for function
2682 prologue changes in GCC.
2683
5b4f6e25
KS
26842012-09-10 Keith Seitz <keiths@redhat.com>
2685
2686 PR gdb/13483
2687 * gdbtypes.h (BOOL_PTR_CONVERSION_BADNESS): Rename to ...
2688 (BOOL_CONVERSION_BADNESS): ... this.
2689 * gdbtypes.c (BOOL_PTR_CONVERSION_BADNESS): Likewise.
2690 (rank_one_type): Allow all boolean conversions
2691 permitted by the standard.
2692
f1070426
TT
26932012-09-06 Tom Tromey <tromey@redhat.com>
2694
2695 * python/py-newobjfileevent.c (create_new_objfile_event_object):
2696 Don't decref py_objfile.
2697
a8db4212
YPK
26982012-09-02 Khoo Yit Phang <khooyp@cs.umd.edu>
2699
2700 Do not enable -lmcheck by default when Python is enabled with
2701 threading support.
2702 * configure.ac: (python_has_threads) New variable, by testing
2703 if WITH_THREAD is defined in Python.h.
2704 Move --enable-lmcheck after --with-python.
2705 Do not enable -lmcheck by default if python_has_threads=yes.
2706 Warn if --enable-lmcheck and python_has_threads=yes.
2707 * configure: Regenerate.
2708
648beb2b
YQ
27092012-08-31 Yao Qi <yao@codesourcery.com>
2710
2711 * mi/mi-cmds.c (mi_cmds): New macros DEF_MI_CMD_CLI
2712 DEF_MI_CMD_MI DEF_MI_CMD_CLI_1 and DEF_MI_CMD_CLI_1.
2713 Update some commands.
2714 * mi/mi-cmds.h (struct mi_cmd) <suppress_notification>: New field.
f87e3f15
PA
2715 * mi/mi-main.c (mi_cmd_execute): Set
2716 '*parse->cmd->suppress_notification' to 1.
648beb2b 2717
ef07a9f7
YQ
27182012-08-31 Yao Qi <yao@codesourcery.com>
2719
2720 * mi/mi-cmds.c (mi_cmds): Add 'static'.
2721
fda395cf
YPK
27222012-08-30 Khoo Yit Phang <khooyp@cs.umd.edu>
2723
2724 * MAINTAINERS (Write After Approval): Add "Khoo Yit Phang".
2725
8efd8e78
DE
27262012-08-29 Doug Evans <dje@google.com>
2727
2728 * main.c (print_gdb_help): Remove reference to
2729 --use-deprecated-index-sections.
2730
883b9c6c
YQ
27312012-08-28 Yao Qi <yao@codesourcery.com>
2732
2733 * cli/cli-cmds.c (max_user_call_depth): Add 'unsigned'.
2734 (init_cmds): Call add_setshow_uinteger_cmd for command
2735 'max-user-call-depth'.
2736 * cli/cli-script.c (execute_user_command): Add 'unsigned' to the
2737 declaration of 'max_user_call_depth'.
2738 * frame.c (backtrace_limit): Add 'unsigned'.
2739 (_initialize_frame): Call add_setshow_uinteger_cmd for command
2740 'limit'.
2741 * remote.c (remoteaddresssize): Add 'unsigned'.
2742 (remote_address_masked): Change local var 'address_size' to
2743 'unsigned'.
2744 (_initialize_remote): Call add_setshow_uinteger_cmd for
2745 'remoteaddresssize'.
2746 * top.c (history_size): Add 'unsigned'.
2747 (show_commands): Change local variables to 'unsigned'.
2748 (set_history_size_command): Don't check history_size is negative.
2749 Adjust the condition to call unstifle_history and set history_size
2750 to UNIT_MAX.
2751
1292279a
PA
27522012-08-28 Pedro Alves <palves@redhat.com>
2753
2754 PR gdb/14428
2755
2756 * infcmd.c (default_print_one_register_info): New, factored out
2757 from default_print_registers_info.
2758 (default_print_registers_info): Use it. Mark value unavailable if
2759 necessary.
2760 (registers_info): Print user registers with
2761 default_print_one_register_info.
2762
f629cd75
L
27632010-08-27 H.J. Lu <hongjiu.lu@intel.com>
2764
2765 PR tui/14486
2766 * tui/tui-source.c (tui_source_is_displayed): Check if TUI_SRC_WIN
2767 is not NULL before referencing it.
2768
1c8cdcb1
JK
27692012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2770
2771 * breakpoint.c (parse_breakpoint_sals) <(*address) == NULL>: New
2772 variable pc. Call find_pc_line instead of find_pc_overlay, restore
2773 original PC for it.
2774
e9687799
JK
27752012-08-27 Eli Zaretskii <eliz@gnu.org>
2776 Jan Kratochvil <jan.kratochvil@redhat.com>
2777
2778 * auto-load.c (auto_load_objfile_script): Rename to ...
2779 (auto_load_objfile_script_1): ... here, change variable realname to
2780 parameter realname, document it, add return value, add variable retval.
2781 (auto_load_objfile_script): New function.
2782
7afa1642
JK
27832012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2784
2785 * cli/cli-decode.c (print_doc_line): Keep skipping '.' and ',' not
2786 followed by a whitespace.
2787
dc7650b8
JK
27882012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2789
28e66c70 2790 PR gdb/14494.
dc7650b8
JK
2791 * dwarf2read.c (dwarf2_locate_sections): Move variable aflag here.
2792 Move the SEC_HAS_CONTENTS check here - for any NAMES use.
2793 (dwarf2_locate_sections) <eh_frame>: Move the variable and check from
2794 here.
2795
1591a1e8
PA
27962012-08-27 Wei-cheng Wang <cole945@gmail.com>
2797
2798 * memattr.c (create_mem_region): Fix memory region overlapping
2799 checking.
2800
ecfb0d68
SP
28012012-08-24 Siddhesh Poyarekar <siddhesh@redhat.com>
2802
2803 * h8300-tdep.c (h8300_push_dummy_call): Replace unsafe alloca
2804 with xmalloc/cleanup.
2805 * mt-tdep.c (mt_push_dummy_call): Likewise.
2806 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
2807 * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
2808
8c56c1b9
YQ
28092012-08-24 Yao Qi <yao@codesourcery.com>
2810
2811 * jv-exp.y (push_expression_name): Add "." at the end of error
2812 message.
2813
e3480f4a
YPK
28142012-08-23 Khoo Yit Phang <khooyp@cs.umd.edu>
2815
2816 Document how to return from "python-interactive" to GDB.
e3480f4a
YPK
2817 * python/python.c (_initialize_python): Update documentation.
2818
dfbd5e7b
PA
28192012-08-23 Pedro Alves <palves@redhat.com>
2820
2821 * infrun.c (_initialize_infrun) <handle command help text>:
2822 Mention that multiple signals are supported.
2823
2edda2ff
PA
28242012-08-23 Pedro Alves <palves@redhat.com>
2825
2826 * infcmd.c (_initialize_infcmd) <signal command>: Fix typo in help
2827 string.
2828
8d735b87
YQ
28292012-08-23 Yao Qi <yao@codesourcery.com>
2830
2831 * tracepoint.c (disconnect_tracing): Call set_tracepoint_num.
2832 (tfind_1): Don't call registers_changed, set_traceframe_num,
2833 and clear_traceframe_info.
2834 Call set_current_traceframe.
2835 (set_current_traceframe): call set_traceframe_num.
2836
c5d9b215
SDJ
28372012-08-22 Sergio Durigan Junior <sergiodj@redhat.com>
2838
2839 * remote-sim.c (_initialize_remote_sim): Pass NULL argument to
2840 `register_inferior_data_with_cleanup', fixing regression on PowerPC64.
2841
037bbc8e
YPK
28422012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
2843
2844 Enable readline in Python in a GDB-specific way and block the
2845 standard Python readline module to prevent conflicts with GDB.
2846 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
2847 (SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
2848 (py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
2849 * python/py-gdb-readline.c: New file.
2850 * python/python-internal.h (gdbpy_initialize_gdb_readline): New
2851 prototype.
2852 * python/python.c (_initialize_python): Call
2853 gdbpy_initialize_gdb_readline.
2854
406b1477
KS
28552012-08-22 Keith Seitz <keiths@redhat.com>
2856
2857 * defs.h: Include build-gnulib/config.h
2858
6ca1b147
JM
28592012-08-22 Joseph Myers <joseph@codesourcery.com>
2860
2861 * arm-tdep.c (thumb_get_next_pc_raw): Mask off low bits for bx pc
2862 and blx pc.
2863
8315665e
YPK
28642012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
2865
2866 Add a new "python-interactive" command that starts a standard
2867 Python interactive prompt with "pi" as alias, and add "py" as
2868 an alias to "python".
2869 * NEWS: Mention the new commands.
8315665e
YPK
2870 * python/python.c (eval_python_command): New function.
2871 (python_interactive_command): For "python-interactive" with
2872 arguments, call eval_python_command. For "python-interactive"
2873 without arguments, call PyRun_InteractiveLoop.
2874 (_initialize_python): Add "python-interactive" command with
2875 "pi" as alias, and add "py" as an alias to "python".
2876
522002f9
TT
28772012-08-22 Tom Tromey <tromey@redhat.com>
2878
2879 * defs.h (quit_flag): Don't declare.
2880 (clear_quit_flag, check_quit_flag, set_quit_flag): Declare.
2881 (QUIT): Use new functions.
2882 * event-top.c (command_handler): Use clear_quit_flag.
2883 (handle_sigint): Use set_quit_flag.
2884 (async_request_quit): Use check_quit_flag. Don't check
2885 immediate_quit.
2886 * exceptions.c (throw_exception): Use clear_quit_flag.
2887 * main.c (captured_main): Use clear_quit_flag.
2888 * python/python.c (clear_quit_flag, set_quit_flag)
2889 (check_quit_flag): New functions.
2890 * remote-sim.c (gdb_os_poll_quit): Use check_quit_flag,
2891 clear_quit_flag.
2892 * remote.c (remote_wait_as): Use check_quit_flag,
2893 clear_quit_flag.
2894 (remote_start_remote): Call QUIT.
2895 * symfile.c (load_progress): Use check_quit_flag.
2896 * top.c (command_loop): Use clear_quit_flag.
2897 (command_line_input): Call QUIT.
2898 * utils.c (quit_flag): Conditionally define.
2899 (clear_quit_flag, check_quit_flag, set_quit_flag): New
2900 functions.
2901 (prompt_for_continue): Call QUIT. Use quit, not
2902 async_request_quit.
2903 * remote-mips.c (mips_expect_timeout): Call QUIT.
2904 * monitor.c (monitor_expect): Call QUIT.
2905
b583003e
TT
29062012-08-22 Tom Tromey <tromey@redhat.com>
2907
2908 * event-top.c (sigwinch_token, handle_sigwinch): Remove.
2909 (async_init_signals): Update.
2910 * utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
2911 (SIGWINCH_HANDLER_BODY): Remove.
2912
e1507e95
TT
29132012-08-22 Tom Tromey <tromey@redhat.com>
2914
2915 * jit.c (jit_object_close_impl): Don't malloc the objfile
2916 name.
2917 * objfiles.c (allocate_objfile): Don't malloc the objfile
2918 name.
2919 (free_objfile): Don't free the objfile name.
2920 * objfiles.h (struct objfile) <name>: Update comment.
2921 * symfile.c (reread_symbols): Fix reference counting. Don't
2922 malloc objfile name.
2923
1c00ec6b
TT
29242012-08-22 Tom Tromey <tromey@redhat.com>
2925
2926 * windows-nat.c (windows_make_so): Use gdb_bfd_open.
2927 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_open.
2928 (symfile_bfd_open): Likewise.
2929 (generic_load): Likewise.
2930 * solib.c (solib_bfd_fopen): Use gdb_bfd_open.
2931 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
2932 gdb_bfd_open.
2933 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2934 Use gdb_bfd_open.
2935 * rs6000-nat.c (add_vmap): Use gdb_bfd_open.
2936 * remote-mips.c (mips_load_srec): Use gdb_bfd_open.
2937 (pmon_load_fast): Likewise.
2938 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_open.
2939 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_open.
2940 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_open.
2941 (macho_check_dsym): Likewise.
2942 * m32r-rom.c (m32r_load): Use gdb_bfd_open.
2943 (m32r_upload_command): Likewise.
2944 * gdb_bfd.h (gdb_bfd_cache): Declare.
2945 * gdb_bfd.c (struct gdb_bfd_data): New.
2946 (gdb_bfd_cache): New global.
2947 (struct gdb_bfd_cache_search): New.
2948 (hash_bfd): New function.
2949 (eq_bfd): Likewise.
2950 (gdb_bfd_open): Likewise.
2951 (gdb_bfd_ref): Allocate a gdb_bfd_data and attach to the BFD.
2952 (gdb_bfd_unref): Remove closed BFD from cache. Update for
2953 gdb_bfd_data.
2954 * exec.c (exec_file_attach): Use gdb_bfd_open.
2955 * dsrec.c (load_srec): Use gdb_bfd_open.
2956
6532ff36
TT
29572012-08-22 Tom Tromey <tromey@redhat.com>
2958
2959 * dwarf2read.c (macro_start_file): Update.
2960 * objfiles.c (get_objfile_bfd_data): Initialize macro_cache.
2961 (free_objfile_per_bfd_storage): Destroy macro_cache.
2962 (allocate_objfile, free_objfile): Update.
2963 * objfiles.h (struct objfile_per_bfd_storage) <macro_cache>:
2964 New field.
2965 (struct objfile) <macro_cache>: Remove.
2966 * symfile.c (reread_symbols): Update.
2967 * symmisc.c (print_symbol_bcache_statistics): Update.
2968 (print_objfile_statistics): Update.
2969
706e3705
TT
29702012-08-22 Tom Tromey <tromey@redhat.com>
2971
2972 * elfread.c (elf_symtab_read): Update.
2973 * objfiles.c (objfiles_bfd_data): New global.
2974 (get_objfile_bfd_data, free_objfile_per_bfd_storage)
2975 (objfile_bfd_data_free, set_objfile_per_bfd): New functions.
2976 (allocate_objfile, free_objfile): Update.
2977 (_initialize_objfiles): Initialize objfiles_bfd_data.
2978 * objfiles.h (struct objfile_per_bfd_storage): New.
2979 (struct objfile) <per_bfd>: New field.
2980 <filename_cache>: Remove.
2981 (set_objfile_per_bfd): Declare.
2982 * symfile.c (reread_symbols): Update. Call
2983 set_objfile_per_bfd.
2984 (allocate_symtab): Update.
2985 * symmisc.c (print_symbol_bcache_statistics): Update.
2986 (print_objfile_statistics): Print the size of the BFD obstack.
2987
e992eda4
TT
29882012-08-22 Tom Tromey <tromey@redhat.com>
2989
2990 * gdb_bfd.h: Include registry.h. Use DECLARE_REGISTRY.
2991 * gdb_bfd.c: Use DEFINE_REGISTRY.
2992 (struct gdb_bfd_data): Add REGISTRY_FIELDS.
2993 (gdb_bfd_ref): Call bfd_alloc_data.
2994 (gdb_bfd_unref): Call bfd_free_data.
2995
6b81941e
TT
29962012-08-22 Tom Tromey <tromey@redhat.com>
2997
2998 * registry.h (struct registry_fields): New.
2999 (REGISTRY_FIELDS): Redefine.
3000 (REGISTRY_ACCESS_FIELD): New macro.
3001 (DEFINE_REGISTRY): Add ACCESS argument. Update defined
3002 functions.
3003
8e260fc0
TT
30042012-08-22 Tom Tromey <tromey@redhat.com>
3005
3006 * auto-load.c (_initialize_auto_load): Update.
3007 * solib-svr4.c (_initialize_svr4_solib): Update
3008 * solib-dsbt.c (_initialize_dsbt_solib): Update.
3009 * solib-darwin.c (_initialize_darwin_solib): Update.
3010 * registry.h: New file.
3011 * python/py-progspace.c (gdbpy_initialize_pspace): Update.
3012 * python/py-inferior.c (gdbpy_initialize_inferior): Update.
3013 * progspace.h: Include registry.h. Use DECLARE_REGISTRY.
3014 (register_program_space_data_with_cleanup)
3015 (register_program_space_data, program_space_alloc_data)
3016 (clear_program_space_data, set_program_space_data)
3017 (program_space_data): Don't declare.
3018 * progspace.c: Use DEFINE_REGISTRY.
3019 (struct program_space_data, struct
3020 program_space_data_registration, struct
3021 program_space_data_registry, program_space_data_registry)
3022 (register_program_space_data_with_cleanup)
3023 (register_program_space_data, program_space_alloc_data)
3024 (program_space_free_data, clear_program_space_data)
3025 (set_program_space_data, program_space_data): Remove.
3026 * objfiles.h: Include registry.h. Use DECLARE_REGISTRY.
3027 (struct objfile) <data, num_data>: Replace with REGISTRY_FIELDS.
3028 (register_objfile_data_with_cleanup, register_objfile_data)
3029 (clear_objfile_data, set_objfile_data, objfile_data): Don't
3030 declare.
3031 * objfiles.c: Use DEFINE_REGISTRY.
3032 (struct objfile_data, struct objfile_data_registration, struct
3033 objfile_data_registry, objfile_data_registry)
3034 (register_objfile_data_with_cleanup, register_objfile_data)
3035 (objfile_alloc_data, objfile_free_data, clear_objfile_data)
3036 (set_objfile_data, objfile_data): Remove.
3037 (_initialize_objfiles): Update.
3038 * jit.c (_initialize_jit): Update.
3039 * inflow.c (_initialize_inflow): Update.
3040 * inferior.h: Include registry.h. Use DECLARE_REGISTRY.
3041 (struct inferior) <data, num_data>: Replace with REGISTRY_FIELDS.
3042 (register_inferior_data_with_cleanup, register_inferior_data)
3043 (clear_inferior_data, set_inferior_data, inferior_data): Don't
3044 declare.
3045 * inferior.c: Use DEFINE_REGISTRY.
3046 (struct inferior_data, struct inferior_data_registration, struct
3047 inferior_data_registry, inferior_data_registry)
3048 (register_inferior_data_with_cleanup, register_inferior_data)
3049 (inferior_alloc_data, inferior_free_data clear_inferior_data)
3050 (set_inferior_data, inferior_data): Remove.
3051 * auxv.c (_initialize_auxv): Update.
3052 * ada-lang.c (_initialize_ada_language): Update.
3053 * breakpoint.c (_initialize_breakpoint): Update.
3054 * i386-nat.c (i386_use_watchpoints): Update.
3055
ed9eebaf
TT
30562012-08-22 Tom Tromey <tromey@redhat.com>
3057
3058 * exec.c (exec_close, exec_file_attach): Update.
3059 (add_to_section_table): Initialize 'key' field.
3060 (add_target_sections, remove_target_sections): Add 'key' argument.
3061 * exec.h (add_target_sections, remove_target_sections): Add
3062 'key' argument.
3063 * solib.c (solib_map_sections, update_solib_list, clear_solib)
3064 (reload_shared_libraries_1): Update.
3065 * target.h (struct target_section) <key>: New field.
3066
2f2e97fa
TT
30672012-08-22 Tom Tromey <tromey@redhat.com>
3068
3069 * cli/cli-cmds.c (filter_sals): Handle nelts == 0 case.
3070
b3dbbd6f
PM
30712012-08-21 Pierre Muller <muller@ics.u-strasbg.fr>
3072
3073 * symfile.c (allocate_symtab): Use host_address_to_string
3074 function instead of cast of pointer to long which is not
3075 compatible with x86_64-w64-mingw32 build.
3076
f94363d7
AP
30772012-08-19 Andrew Pinski <apinski@cavium.com>
3078
3079 * mips-tdep.c (is_octeon): New function.
3080 (is_octeon_bbit_op): New function.
3081 (mips32_next_pc): Handle Octeon's bbit instructions.
3082 (mips32_instruction_has_delay_slot): Likewise.
3083
78a59c2f
AP
30842012-08-19 Andrew Pinski <apinski@cavium.com>
3085
3086 * mips-tdep.c (mips32_next_pc): Fix line spacing of the comment
3087 before the function.
3088
4f5bcb50
AP
30892012-08-19 Andrew Pinski <apinski@cavium.com>
3090
3091 * mips-tdep.c (mips32_next_pc): Consolidate calls to itype_op.
3092
e5afdbd7
KS
30932012-08-19 Keith Seitz <keiths@redhat.com>
3094
3095 PR c++/14365
3096 * c-typeprint.c (c_type_print_varspec_prefix): Pass
3097 -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
3098
13c9750e
EZ
30992012-08-18 Eli Zaretskii <eliz@gnu.org>
3100
3101 * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
3102 The typo broke "make TAGS".
3103
db761810 31042012-08-17 Joel Brobecker <brobecker@adacore.com>
3105
3106 GDB 7.5 released.
3107
a451cb65
KS
31082012-08-17 Keith Seitz <keiths@redhat.com>
3109
3110 PR c++/13356
3111 * gdbtypes.c (strict_type_checking): New variable.
3112 (show_strict_type_checking): New function.
3113 (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
3114 if strict type checking is disabled.
3115 (_initialize_gdbtypes): Add "check type" subcommand.
3116 * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
3117
31182012-08-17 Keith Seitz <keiths@redhat.com>
3119
3120 * language.h (type_mode): Remove.
3121 (type_check): Remove.
3122 (struct language_defn): Remove la_type_check.
3123 (STRICT_TYPE): Remove unused macro.
3124 (type_error): Remove.
3125 * language.c (set_type_range_case): Renamed to ...
3126 (set_range_case): ... this. Update all callers.
3127 Remove type_mode/type_check.
3128 (type_mode): Remove.
3129 (type_check): Remove.
3130 (show_type_command): Remove.
3131 (set_type_command): Remove.
3132 (language_info): Remove type checking output.
3133 (type_error): Remove unused function.
3134 (range_error): Update comment.
3135 (unknown_language_defn): Remove la_type_check.
3136 (auto_language_defn): Likewise.
3137 (local_language_defn): Likewise.
3138 (_initialize_language): Remove "check type" subcommand.
3139 * ada-lang.c (ada_language_defn): Remove la_type_check.
3140 * c-lang.c (c_language_defn): Likewise.
3141 (cplus_language_defn): Likewise.
3142 (asm_language_defn): Likewise.
3143 (minimal_language_defn): Likewise.
3144 * d-lang.c (d_language_defn): Likewise.
3145 * f-lang.c (f_language_defn): Likewise.
3146 * go-lang.c (go_language_defn): Likewise.
3147 * jv-lang.c (java_language_defn): Likewise.
3148 * m2-lang.c (m2_language_defn): Likewise.
3149 * objc-lang.c (objc_language_defn): Likewise.
3150 * opencl-lang.c (opencl_language_defn): Likewise.
3151 * p-lang.c (pascal_language_defn): Likewise.
3152
dbf6a605
MF
31532012-08-16 Mike Frysinger <vapier@gentoo.org>
3154
3155 * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
3156
973e3cf7
JB
31572012-08-16 Joel Brobecker <brobecker@adacore.com>
3158
3159 * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
3160 New function.
3161 (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
3162 using the regache. Use ia64_hpux_get_register_from_save_state_t
3163 to access the bsp and bspstore registers if not.
3164
d80ee84f
JB
31652012-08-16 Joel Brobecker <brobecker@adacore.com>
3166
3167 * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
3168 * breakpoint.c (detach_breakpoints): Change pid parameter into
3169 a ptid. Adjust code accordingly.
3170 * infrun.c (handle_inferior_event): Delete variable child_pid.
3171 Update call to detach_breakpoints to pass the child ptid for
3172 fork events.
3173 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
3174 assert that inferior_ptid's lwp is zero.
3175 (linux_handle_extended_wait): Update call to detach_breakpoints.
3176 * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
3177 detach_breakpoints.
3178
2dcc6086
JB
31792012-08-16 Joel Brobecker <brobecker@adacore.com>
3180
3181 * inf-ttrace.c (inf_ttrace_follow_fork): When following the
3182 parent, only call detach_breakpoints if tts.tts_event ==
3183 TTEVT_VFORK.
3184
0c92d8c1
JB
31852012-08-16 Joel Brobecker <brobecker@adacore.com>
3186
3187 * dwarf2-frame.c (dwarf2_frame_cache): Use
3188 get_frame_address_in_block instead of get_frame_pc as
3189 the bound for executing the frame's FDE.
3190
6b1755ce
YQ
31912012-08-16 Yao Qi <yao@codesourcery.com>
3192
3193 * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
3194 * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
3195 * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
3196 (c_type_print_varspec_suffix): Likewise.
3197 * eval.c (evaluate_subexp_standard): Likewise.
3198 * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
3199 (f_type_print_varspec_suffix): Likewise.
3200 * gdbtypes.c (is_scalar_type): Likewise.
3201 (recursive_dump_type): Likewise.
3202 * infcall.c (value_arg_coerce): Likewise.
3203 * m2-valprint.c (m2_val_print): Likewise.
3204 * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
3205 (pascal_type_print_varspec_suffix): Likewise.
3206 (pascal_type_print_base): Likewise.
3207 * p-valprint.c (pascal_val_print): Likewise.
3208 (pascal_val_print): Likewise.
3209 * valops.c (value_slice): Likewise.
3210 * valprint.c (scalar_type_p): Likewise.
3211 * valarith.c (value_bitstring_subscript): Remove.
3212 (value_concat): Remove code handling TYPE_CODE_BITSTRING.
3213 Remove comment on TYPE_CODE_BITSTRING.
3214
3215 * stabsread.c (read_type): Don't set TYPE_CODE (type) to
3216 TYPE_CODE_BITSTRING.
3217
3218 * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
3219 slot 0.
3220
8acc4065
YQ
32212012-08-16 Yao Qi <yao@codesourcery.com>
3222
3223 * tracepoint.c (trace_find_none_command): Remove.
3224 (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
3225
8128fd8e
YQ
32262012-08-16 Yao Qi <yao@codesourcery.com>
3227
3228 * remote.c (handle_notification): Remove parameter 'length'.
3229 (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
3230
2873700e
KS
32312012-08-15 Keith Seitz <keiths@redhat.com>
3232
3233 * gdbtypes.c (opaque_type_resolution): Make static.
3234 Add missing comment.
3235 (overload_debug): Add missing comment.
3236 (show_opaque_type_resolution): Likewise.
3237 (show_overload_debug): Likewise.
3238 (print_bit_vector): Remove unnecessary forward declaration.
3239 (print_arg_types): Likewise.
3240 (dump_fn_fieldlists): Likewise.
3241 (print_cplus_stuff): Likewise.
3242
b82d08cd
TT
32432012-08-15 Tom Tromey <tromey@redhat.com>
3244
3245 * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
3246 (gdb_bfd_ref): Initialize new field.
3247 (gdb_bfd_unref): Unref the archive BFD.
3248 (gdb_bfd_openr_next_archived_file): Acquire a reference to the
3249 parent archive.
3250
db6573d6
TT
32512012-08-15 Tom Tromey <tromey@redhat.com>
3252
3253 PR python/14387:
3254 * python/py-bpevent.c (create_breakpoint_event_object): Update
3255 comment.
3256 * python/py-event.c (evpy_add_attribute): Update comment.
3257 * python/py-exitedevent.c (create_exited_event_object): Fix
3258 reference counting and error handling.
3259 * python/py-newobjfileevent.c (create_new_objfile_event_object):
3260 Fix reference counting.
3261 * python/py-signalevent.c (create_signal_event_object): Fix
3262 reference counting and error handling.
3263 * python/py-stopevent.c (emit_stop_event): Fix reference
3264 counting.
3265 * python/py-threadevent.c (get_event_thread): Return a
3266 borrowed reference.
3267 * python/py-type.c (convert_field): Fix reference counting.
3268
a036ba48
TT
32692012-08-15 Tom Tromey <tromey@redhat.com>
3270
3271 * dwarf2read.c (dwarf_decode_macro_bytes)
3272 <DW_MACRO_GNU_transparent_include>: Use pointer to included data
3273 as hash key.
3274
486c7739
MF
32752012-08-14 Mike Frysinger <vapier@gentoo.org>
3276
3277 * infcmd.c (_initialize_infcmd): Update help text for the signal,
3278 stepi, nexti, finish, next, step, jump, and continue commands.
3279 * infrun.c (_initialize_infrun): Update help text for the handle
3280 command.
3281
4cf93a03
DE
32822012-08-14 Doug Evans <dje@google.com>
3283
70b099cf
DE
3284 * gdbtypes.c (struct extra): Delete, unused.
3285
5212577a
DE
3286 * gdbtypes.c: Whitespace cleanup.
3287 (address_space_name_to_int): Remove "extern" from definition.
3288 (_initialize_gdbtypes): Declare with initialize_file_ftype.
3289
4cf93a03
DE
3290 * gdbtypes.c (make_pointer_type): Remove redundant setting of
3291 TYPE_POINTER_TYPE (type).
3292
3756ef7e
GB
32932012-08-14 Gary Benson <gbenson@redhat.com>
3294
3295 * solib-svr4.c (svr4_free_library_list): Use free_so.
3296
40d72643
MF
32972012-08-13 Mike Frysinger <vapier@gentoo.org>
3298
3299 * .gitignore: Add go-exp.c.
3300
f47f77df
DE
33012012-08-13 Doug Evans <dje@google.com>
3302
3303 * value.c (show_convenience): Tweak comment.
3304 (_initialize_values): Mention convenience functions in the help text
3305 for "show convenience".
3306
7507c54a
YQ
33072012-08-13 Yao Qi <yao@codesourcery.com>
3308
3309 * std-operator.def: Remove TERNOP_SLICE_COUNT.
3310 * breakpoint.c (watchpoint_exp_is_const): Remove handling to
3311 TERNOP_SLICE_COUNT.
3312 * eval.c (evaluate_subexp_standard): Likewise.
3313 * expprint.c (print_subexp_standard): Likewise.
3314 (dump_subexp_body_standard): Likewise.
3315 * parse.c (operator_length_standard): Likewise.
3316
5cad9736
YQ
33172012-08-13 Yao Qi <yao@codesourcery.com>
3318
3319 * std-operator.def: Remove OP_BITSTRING.
3320 * breakpoint.c (watchpoint_exp_is_const): Update.
3321 * eval.c (evaluate_subexp_standard): Remove handling to
3322 OP_BITSTRING.
3323 * expprint.c (print_subexp_standard): Likewise.
3324 (dump_subexp_body_standard): Likewise.
3325 * parse.c (operator_length_standard): Likewise.
3326 * valops.c (value_bitstring): Remove.
3327 * value.h: Remove the declaration of 'value_bitstring'.
3328
bad7670a
SDJ
33292012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
3330
3331 * linespec.c (find_methods): Remove unused variables `i1' and
3332 `name_len'.
3333 (decode_line_full): Likewise for `arg_start'.
3334
d9dce7fa
SDJ
33352012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
3336
3337 * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
3338 (zlib_decompress_section): Likewise for `section_data'.
3339 (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
3340
a72c3253
DE
33412012-08-10 Doug Evans <dje@google.com>
3342
3343 Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
3344 * NEWS: Document them.
3345 * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
3346 function/strfns.py.
3347 * python/py-type.c (typy_array_1): New function.
3348 (typy_array): Call it.
3349 (typy_vector): New function.
3350 (type_object_methods): Add "vector".
3351 * python/lib/gdb/function/__init__.py: New file.
3352 * python/lib/gdb/function/strfns.py: New file.
3353
200bc880
SP
33542012-08-10 Siddhesh Poyarekar <siddhesh@redhat.com>
3355
3356 * python/py-type.c (convert_field): Use gdb_py_long_from_longest
3357 for TYPE_FIELD_BITPOS.
3358 (typy_get_sizeof): Likewise for TYPE_LENGTH.
3359
de0bea00
MF
33602012-08-10 Mike Frysinger <vapier@gentoo.org>
3361
3362 PR cli/10436:
3363 * common/vec.h (VEC_merge): Define.
3364 (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
3365 (DEF_VEC_ALLOC_FUNC_P): Likewise.
3366 (DEF_VEC_ALLOC_FUNC_O): Likewise.
3367 * completer.c: Include gdb_signals.h.
3368 (signal_completer): Define.
3369 * completer.h (signal_completer): Add prototype.
3370 * infcmd.c (_initialize_infcmd): Assign the command
3371 completer for "signal" to handle_completer.
3372 * infrun.c: Include completer.h.
3373 (handle_completer): Define.
3374 (_initialize_infrun): Declare a new local variable c. Store the
3375 result of add_com("handle") to it. Assign the command
3376 completer for "handle" to handle_completer.
3377
5b9afe8a
YQ
33782012-08-09 Yao Qi <yao@codesourcery.com>
3379
3380 * cli/cli-decode.c (set_cmd_prefix): New.
3381 (lookup_cmd_for_prefixlist): New.
3382 (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
3383 of each cmd_list_element in *prefixlist.
3384 (add_setshow_cmd_full): set_cmd_prefix.
3385 (add_alias_cmd): Likewise.
3386 * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
3387 Declare 'auto_boolean_enums'.
3388 * cli/cli-setshow.c: Include "observer.h".
3389 (notify_command_param_changed_p): New.
3390 (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
3391 Remove 'static'.
3392 (do_setshow_command): Split it to ...
3393 (do_set_command, do_show_command): ... them. New.
3394 (do_set_command): Call observer_notify_command_param_changed if
3395 notify_command_param_changed_p returns true.
3396 (cmd_show_list): Caller update.
3397 * auto-load.c (set_auto_load_cmd): Likewise.
3398 * remote.c (show_remote_cmd): Likewise.
3399 * cli/cli-setshow.h: Update declarations.
3400 * top.c (execute_command): Call do_set_command and do_show_command.
3401
3402 * NEWS: Mention new MI notification.
3403 * mi/mi-interp.c: Declare mi_command_param_changed.
3404 (mi_interpreter_init): Attach mi_command_param_changed to
3405 observer command_param_changed.
3406 (mi_command_param_changed): New.
3407 Remove mi_suppress_breakpoint_notifications.
3408 Define global variable mi_suppress_notification.
3409 (mi_breakpoint_created): Update.
3410 (mi_breakpoint_deleted): Likewise.
3411 (mi_breakpoint_modified): Likewise.
3412 * mi/mi-main.c (mi_cmd_execute): Likewise. Check command
3413 'gdb-set' and set mi_suppress_notification.
3414 * mi/mi-main.h: (mi_suppress_notification): New struct.
3415
1969df89
JK
34162012-08-09 Andreas Tobler <andreast@fgznet.ch>
3417 Jan Kratochvil <jan.kratochvil@redhat.com>
3418
3419 * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
3420
8bfd80db
YQ
34212012-08-09 Yao Qi <yao@codesourcery.com>
3422
3423 * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
3424 (skiplist): Move it to skip.c.
3425 (init_cmd_lists): Remove code setting enablebreaklist and
3426 skiplist to NULL.
3427 * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
3428 * cli/cli-cmds.h: Remove declaration of enablebreaklist and
3429 skiplist.
3430 * gdbcmd.h: Likewise.
3431 * skip.c (_initialize_step_skip): Move 'skiplist' from
3432 cli/cli-cmds.c.
3433
28578e6b
YQ
34342012-08-09 Yao Qi <yao@codesourcery.com>
3435
3436 * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
3437 * gnu-nat.c, symfile.c: Likewise.
3438
260c0b2a
DE
34392012-08-08 Aaron Gamble <agamble@google.com>
3440
3441 * utils.c (prompt_for_continue_wait_time): New static global.
3442 (make_command_stats_cleanup): Initialize it.
3443 (report_command_stats): Subtract time waiting for user.
3444 (prompt_for_continue): Track time waiting for user.
3445 (defaulted_query): Track time waiting for user.
3446
4f485ebc
DE
34472012-08-08 Doug Evans <dje@google.com>
3448
3449 * eval.c (evaluate_subexp_standard): Fix thinko in handling
3450 UNOP_MEMVAL_TYPE.
3451 * expprint.c (print_subexp_standard, case OP_TYPE): New.
3452 (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
3453 (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
3454 (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
3455 (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
3456 (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
3457 elt.
3458 (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
3459 (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
3460 (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
3461 (dump_prefix_expression): Handle OP_TYPE.
3462
2acf2b39
KS
34632012-08-08 Keith Seitz <keiths@redhat.com>
3464
3465 * breakpoint.c (parse_breakpoint_sals): Remove unused variable
3466 addr_start.
3467
e6712ff1
DE
34682012-08-08 Doug Evans <dje@google.com>
3469
3470 * linux-thread-db.c: #include "gdb_vecs.h".
3471 (try_thread_db_load_from_pdir_1): New arg "subdir". All callers
3472 updated.
3473 (try_thread_db_load_from_pdir): New arg "subdir". All callers updated.
3474 (thread_db_load_search): Use a vector to iterate over path elements.
3475 Handle text appearing after "$pdir".
3476
3477 * gdb_string.h: Moved to ...
3478 * common/gdb_string.h: ... here.
3479 * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
3480 gdb_string.h and gdb_assert.h.
3481
ab854e54
YQ
34822012-08-08 Yao Qi <yao@codesourcery.com>
3483
3484 * tic6x-tdep.c (tic6x_register_to_value): Remove.
3485 (tic6x_value_to_register): Likewise.
3486 (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
3487 and set_gdbarch_value_to_register.
3488
4f69f4c2
JK
34892012-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3490 Jean-Marc Saffroy <saffroy@gmail.com>
3491
3492 PR 11804
3493 * defs.h (find_memory_region_ftype): New comment. New arg modified.
3494 * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
3495 * gcore.c (gcore_create_callback): New function comment. Add modified
3496 parameter. Only write modified regions. Set SEC_READONLY exactly
3497 according to MODIFIED.
3498 (objfile_find_memory_regions): Ignore separate debug info files. Ass
3499 the passed modified value to FUNC.
3500 * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
3501 * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
3502 first. New variables modified and has_anonymous. Parse the lines of
3503 smaps file. Add the passed MODIFIED value to FUNC.
3504 * procfs.c (find_memory_regions_callback): Add the passed modified
3505 value.
3506
78ac5f83
TT
35072012-08-06 Tom Tromey <tromey@redhat.com>
3508
3509 * dwarf2-frame.c (clear_pointer_cleanup): New function.
3510 (dwarf2_frame_cache): Use it.
3511 * frame-unwind.h (frame_sniffer_ftype): Document prologue
3512 cache initialization constraint.
3513
2c12abee
TT
35142012-08-06 Tom Tromey <tromey@redhat.com>
3515
3516 PR python/14386:
3517 * varobj.c (update_dynamic_varobj_children): Don't call
3518 PyIter_Check.
3519
4979d7f0
TT
35202012-08-06 Tom Tromey <tromey@redhat.com>
3521
3522 PR cli/14392:
3523 * cli/cli-cmds.c (list_command): Filter 'sals_end'.
3524
f3c8a52a
JK
35252012-08-06 Nathaniel Flath <flat0103@gmail.com>
3526
3527 * NEWS: New entry for 'cd' default parameters.
3528 * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
3529
5a1cf4d6
TT
35302012-08-03 Tom Tromey <tromey@redhat.com>
3531
3532 * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
3533 return.
3534
7c3270ae
UW
35352012-08-02 Ulrich Weigand <ulrich.weigand@linaro.org>
3536
3537 * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
3538 to attempting lseek/write.
3539 (inf_child_fileio_pread): Likewise for pread.
3540
ccce17b0
YQ
35412012-08-02 Yao Qi <yao@codesourcery.com>
3542
3543 * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
3544 (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
3545 add_setshow_zinteger_cmd.
3546 * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
3547 * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
3548 (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
3549 instead of add_setshow_zinteger_cmd.
3550 * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
3551 (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
3552 instead of add_setshow_zinteger_cmd.
3553 * frame.c (frame_debug): Add 'unsigned'.
3554 (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
3555 add_setshow_zinteger_cmd.
3556 * frame.h: Update the declaration of 'frame_debug'.
3557 * gdbtypes.c (overload_debug): Add 'unsigned'.
3558 (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
3559 add_setshow_zinteger_cmd.
3560 * inferior.h: Update declaration of 'debug_infrun'.
3561 * infrun.c (debug_infrun): Add 'unsigned'.
3562 (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
3563 add_setshow_zinteger_cmd.
3564 * jit.c (jit_debug): Add 'unsigned'.
3565 (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
3566 add_setshow_zinteger_cmd.
3567 * linux-nat.c (debug_linux_nat): Add 'unsigned'.
3568 (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
3569 instead of add_setshow_zinteger_cmd.
3570 * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
3571 (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
3572 add_setshow_zinteger_cmd.
3573 * machoread.c (mach_o_debug_level): Add 'unsigned'.
3574 (_initialize_machoread): Call add_setshow_zuinteger_cmd
3575 instead of add_setshow_zinteger_cmd.
3576 * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
3577 * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
3578 (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
3579 intead of add_setshow_zinteger_cmd.
3580 * mips-tdep.c (mips_debug): Add 'unsigned'.
3581 (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
3582 instead of add_setshow_zinteger_cmd.
3583 * monitor.c (monitor_debug): Add 'unsigned'.
3584 (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
3585 add_setshow_zinteger_cmd.
3586 * observer.c (observer_debug): Add 'unsigned'.
3587 (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
3588 add_setshow_zinteger_cmd.
3589 * parse.c (expressiondebug): Add 'unsigned'.
3590 (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
3591 add_setshow_zinteger_cmd.
3592 * record.c (record_debug): Add 'unsigned'.
3593 (_initialize_record): Call add_setshow_zuinteger_cmd instead of
3594 add_setshow_zinteger_cmd.
3595 * record.h: Update the declaration of 'record_debug'.
3596 * stap-probe.c (stap_expression_debug): Add 'unsigned'.
3597 (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
3598 add_setshow_zinteger_cmd.
3599 * serial.c (global_serial_debug_p): Add 'unsigned'.
3600 (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
3601 add_setshow_zinteger_cmd.
3602 * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
3603 (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
3604 add_setshow_zinteger_cmd.
3605 * solib-frv.c (solib_frv_debug): Add 'unsigned'.
3606 (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
3607 add_setshow_zinteger_cmd.
3608 * target.c (targetdebug): Add 'unsigned'.
3609 (initialize_targets): Call add_setshow_zuinteger_cmd instead of
3610 add_setshow_zinteger_cmd.
3611 * valops.c (overload_debug): Add 'unsigned'.
3612 * varobj.c (varobjdebug): Add 'unsigned'.
3613 (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
3614 add_setshow_zinteger_cmd.
3615 * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
3616 (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
3617 instead of add_setshow_zinteger_cmd.
3618
3619 * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
3620 * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
3621 (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
3622 instead of add_setshow_zinteger_cmd.
3623 * gdbarch.c, gdbarch.h: Re-generated.
3624
95b07c96
YQ
36252012-08-02 Yao Qi <yao@codesourcery.com>
3626
3627 * nto-tdep.c: Don't include cli/cli-decode.h and
3628 cli/cli-cmds.h.
3629 (_initialize_nto_tdep): Remove.
3630 * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
3631 Remove field.
3632 Remove macro nto_internal_debugging.
3633
57295b0b
RH
36342012-08-01 Richard Henderson <rth@redhat.com>
3635
3636 * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
3637 (mep-*-*) [gdb_target_obs]: Likewise.
3638
f782ad9b
AS
36392012-07-31 Andreas Schwab <schwab@linux-m68k.org>
3640
3641 * ppc-linux-tdep.c (ppc_linux_init_abi): Register
3642 linux_get_siginfo_type.
3643
a14dd77e
JK
36442012-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
3645
3646 * infcall.c (call_function_by_hand): Move BP_ADDR comment to
3647 AT_ENTRY_POINT.
3648 (call_function_by_hand) <ON_STACK>: Call write_memory with
3649 gdbarch_breakpoint_from_pc, if possible.
3650 (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
3651 here.
3652
1467929f
YQ
36532012-07-31 Yao Qi <yao@codesourcery.com>
3654
3655 * tracepoint.c: Add 'static' for some variables.
3656
70976b65
YQ
36572012-07-31 Yao Qi <yao@codesourcery.com>
3658
3659 * go32-nat.c: Declare _initialize_go32_nat.
3660 * ser-go32.c: Declare _initialize_ser_dos.
3661 * top.c (do_chdir_cleanup): Add 'static'.
3662
eff9c3e6
KS
36632012-07-30 Keith Seitz <keiths@redhat.com>
3664
3665 * linespec.c (linespec_lex_number): A number followed
3666 by quotes is a valid number, too.
3667
728400d7
TT
36682012-07-30 Tom Tromey <tromey@redhat.com>
3669
3670 * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
3671
fcf303ab
UW
36722012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
3673
3674 * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
3675 attempt to 4-byte-align HW breakpoint addresses for Thumb.
3676
4e969b4f
AB
36772012-07-30 Andrew Burgess <aburgess@broadcom.com>
3678
3679 * varobj.c (varobj_invalidate_iter): All varobj must be marked as
3680 invalid or reevaluated to prevent prevent references to possibly
3681 delete'd type objects being left in the varobj.
3682
c4bfde41
JK
36832012-07-27 Tom Tromey <tromey@redhat.com>
3684 Jan Kratochvil <jan.kratochvil@redhat.com>
3685
3686 * copying.awk: Print buffer-read-only and vi ro markers.
3687 * copying.c: Rebuild.
3688 * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
3689 * gdbarch.c, gdbarch.h: Rebuild.
3690 * target-descriptions.c (maint_print_c_tdesc_cmd): Print
3691 buffer-read-only and vi ro markers.
3692 * features/arm-with-iwmmxt.c: Rebuild.
3693 * features/arm-with-m-fpa-layout.c: Rebuild.
3694 * features/arm-with-m-vfp-d16.c: Rebuild.
3695 * features/arm-with-m.c: Rebuild.
3696 * features/arm-with-neon.c: Rebuild.
3697 * features/arm-with-vfpv2.c: Rebuild.
3698 * features/arm-with-vfpv3.c: Rebuild.
3699 * features/i386/amd64-avx-linux.c: Rebuild.
3700 * features/i386/amd64-avx.c: Rebuild.
3701 * features/i386/amd64-linux.c: Rebuild.
3702 * features/i386/amd64.c: Rebuild.
3703 * features/i386/i386-avx-linux.c: Rebuild.
3704 * features/i386/i386-avx.c: Rebuild.
3705 * features/i386/i386-linux.c: Rebuild.
3706 * features/i386/i386-mmx-linux.c: Rebuild.
3707 * features/i386/i386-mmx.c: Rebuild.
3708 * features/i386/i386.c: Rebuild.
3709 * features/i386/x32-avx-linux.c: Rebuild.
3710 * features/i386/x32-avx.c: Rebuild.
3711 * features/i386/x32-linux.c: Rebuild.
3712 * features/i386/x32.c: Rebuild.
3713 * features/mips-dsp-linux.c: Rebuild.
3714 * features/mips-linux.c: Rebuild.
3715 * features/mips64-dsp-linux.c: Rebuild.
3716 * features/mips64-linux.c: Rebuild.
3717 * features/rs6000/powerpc-32.c: Rebuild.
3718 * features/rs6000/powerpc-32l.c: Rebuild.
3719 * features/rs6000/powerpc-403.c: Rebuild.
3720 * features/rs6000/powerpc-403gc.c: Rebuild.
3721 * features/rs6000/powerpc-405.c: Rebuild.
3722 * features/rs6000/powerpc-505.c: Rebuild.
3723 * features/rs6000/powerpc-601.c: Rebuild.
3724 * features/rs6000/powerpc-602.c: Rebuild.
3725 * features/rs6000/powerpc-603.c: Rebuild.
3726 * features/rs6000/powerpc-604.c: Rebuild.
3727 * features/rs6000/powerpc-64.c: Rebuild.
3728 * features/rs6000/powerpc-64l.c: Rebuild.
3729 * features/rs6000/powerpc-7400.c: Rebuild.
3730 * features/rs6000/powerpc-750.c: Rebuild.
3731 * features/rs6000/powerpc-860.c: Rebuild.
3732 * features/rs6000/powerpc-altivec32.c: Rebuild.
3733 * features/rs6000/powerpc-altivec32l.c: Rebuild.
3734 * features/rs6000/powerpc-altivec64.c: Rebuild.
3735 * features/rs6000/powerpc-altivec64l.c: Rebuild.
3736 * features/rs6000/powerpc-cell32l.c: Rebuild.
3737 * features/rs6000/powerpc-cell64l.c: Rebuild.
3738 * features/rs6000/powerpc-e500.c: Rebuild.
3739 * features/rs6000/powerpc-e500l.c: Rebuild.
3740 * features/rs6000/powerpc-isa205-32l.c: Rebuild.
3741 * features/rs6000/powerpc-isa205-64l.c: Rebuild.
3742 * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
3743 * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
3744 * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
3745 * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
3746 * features/rs6000/powerpc-vsx32.c: Rebuild.
3747 * features/rs6000/powerpc-vsx32l.c: Rebuild.
3748 * features/rs6000/powerpc-vsx64.c: Rebuild.
3749 * features/rs6000/powerpc-vsx64l.c: Rebuild.
3750 * features/rs6000/rs6000.c: Rebuild.
3751 * features/s390-linux32.c: Rebuild.
3752 * features/s390-linux32v1.c: Rebuild.
3753 * features/s390-linux32v2.c: Rebuild.
3754 * features/s390-linux64.c: Rebuild.
3755 * features/s390-linux64v1.c: Rebuild.
3756 * features/s390-linux64v2.c: Rebuild.
3757 * features/s390x-linux64.c: Rebuild.
3758 * features/s390x-linux64v1.c: Rebuild.
3759 * features/s390x-linux64v2.c: Rebuild.
3760 * features/tic6x-c62x-linux.c: Rebuild.
3761 * features/tic6x-c62x.c: Rebuild.
3762 * features/tic6x-c64x-linux.c: Rebuild.
3763 * features/tic6x-c64x.c: Rebuild.
3764 * features/tic6x-c64xp-linux.c: Rebuild.
3765 * features/tic6x-c64xp.c: Rebuild.
3766
826f0041
TT
37672012-07-27 Tom Tromey <tromey@redhat.com>
3768
3769 * c-exp.y (classify_name): Avoid assignment in condition.
3770
84552b16
PA
37712012-07-27 Roland Schwingel <roland.schwingel@onevision.com>
3772
3773 * amd64-windows-tdep.c: Include "frame.h".
3774 (amd64_windows_skip_trampoline_code): New function.
3775 (amd64_windows_init_abi): Add trampoline registration.
3776
a8a64aa8
YQ
37772012-07-27 Yao Qi <yao@codesourcery.com>
3778
3779 * tracepoint.c (cur_traceframe_number): Remove.
3780 (set_tfile_traceframe): Remove.
3781 (tfile_trace_find, tfile_fetch_registers): Update callers.
3782 (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
3783 (tfile_open, tfile_trace_find): Likewise.
3784
d99067cb
YQ
37852012-07-27 Yao Qi <yao@codesourcery.com>
3786
3787 * thread.c (switch_to_thread): Don't call registers_changed.
3788
f2e8016f
TT
37892012-07-26 Tom Tromey <tromey@redhat.com>
3790
f782ad9b
AS
3791 * Makefile.in (SFILES): Remove objc-exp.y.
3792 (YYFILES): Remove objc-exp.c.
3793 (YYOBJ): Remove objc-exp.o.
3794 (local-maintainer-clean): Don't mention objc-exp.c.
3795 * c-exp.y: Include objc-lang.h.
3796 (%union) <class>: New field.
3797 (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
3798 (exp): Clone subscript production for OBJC_LBRAC. Add various
3799 Objective C productions.
3800 (msglist, msgarglist, msgarg): New productions.
3801 (array_mod, func_mod, operator): Clone productions for
3802 OBJC_LBRAC.
3803 (parse_string_or_char): Handle '@' strings.
3804 (lex_one_token): Return OBJC_LBRAC. Recognize @selector.
3805 (classify_name): Check la_name_of_this. Recognize ObjC class
3806 names.
3807 * objc-exp.y: Remove.
3808 * objc-lang.c (objc_language_defn): Use c_parse, c_error.
3809 * objc-lang.h (objc_parse, objc_error): Don't declare.
f2e8016f 3810
f66713d2
JK
38112012-07-26 Markus Metzger <markus.t.metzger@intel.com>
3812
3813 * python/py-inferior.c (infpy_threads): Call update_thread_list ().
3814
7cfe01b4
JK
38152012-07-26 Jan Kratochvil <jan.kratochvil@redhat.com>
3816
3817 * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
3818 and decrement.
3819
5ba19b4c
TT
38202012-07-26 Tom Tromey <tromey@redhat.com>
3821
3822 * copying.c: Rebuild.
3823 * copying.awk: Don't use immediate_quit. Use 'no_set_class', not
3824 'no_class'.
3825
27618ce4
TT
38262012-07-26 Tom Tromey <tromey@redhat.com>
3827
3828 * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
3829 immediate_quit.
3830 (print_objfile_statistics): Likewise.
3831 (maintenance_print_symbols): Likewise.
3832 (maintenance_print_msymbols): Likewise.
3833 (maintenance_print_objfiles): Likewise.
3834 * psymtab.c (print_partial_symbols): Call QUIT.
3835 (maintenance_print_psymbols): Likewise. Don't modify
3836 immediate_quit.
3837 * copying.c (show_copying_command): Don't modify immediate_quit.
3838 (show_warranty_command): Likewise.
3839 * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
3840
dd3818c8
KS
38412012-07-26 Keith Seitz <keiths@redhat.com>
3842
3843 * linespec.c (linespec_lexer_lex_number): The input
3844 is also a valid number if the next character is a comma
3845 or colon.
3846
23a80689
JB
38472012-07-26 Joel Brobecker <brobecker@adacore.com>
3848
3849 * NEWS: Document new --enable-libmcheck/--disable-libmcheck
3850 configure options.
3851
29f77997
TG
38522012-07-26 Tristan Gingold <gingold@adacore.com>
3853
3854 * machoread.c: Include gdb_bfd.h.
3855
a55c1f32
TG
38562012-07-26 Tristan Gingold <gingold@adacore.com>
3857
3858 * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
3859 offset.
3860
56eb65bd
SP
38612012-07-26 Siddhesh Poyarekar <siddhesh@redhat.com>
3862
3863 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
3864 SIZE to size_t.
3865 (dwarf2_evaluate_loc_desc): Likewise.
3866 (dwarf2_loc_desc_needs_frame): Likewise.
3867 (locexpr_describe_location_1): Likewise.
3868 * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
3869 size_t.
3870 (struct dwarf2_loclist_baton): Likewise.
3871 * dwarf2read.c (struct dwarf_block): Likewise.
3872 (dump_die_shallow): Use pulongest to print dwarf_block.size.
3873 (decode_locdesc): Expand SIZE and I to size_t.
3874
aec8845c
JK
38752012-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
3876
3877 * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
3878
33d7655b
JB
38792012-07-25 Joel Brobecker <brobecker@adacore.com>
3880
3881 * doublest.c (convert_doublest_to_floatformat): If the exponent
3882 is too small, treat the value as zero. If the exponent is too
3883 large, treat the value as infinity.
3884
a22d44ff
JB
38852012-07-25 Joel Brobecker <brobecker@adacore.com>
3886
3887 * configure.ac: Add --enable-lmcheck configure option.
3888 * configure: Regenerate.
3889
d6b28940
TT
38902012-07-25 Tom Tromey <tromey@redhat.com>
3891
f782ad9b
AS
3892 * NEWS: Mention maint info bfds.
3893 * gdb_bfd.c (all_bfds): New global.
3894 (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
3895 (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
3896 New functions.
d6b28940 3897
6e73ba20
RC
38982012-07-25 Ralf Corsépius <ralf.corsepius@rtems.org>
3899
3900 * configure.tgt: Add v850*-*-rtems*.
3901
d560eebd
TT
39022012-07-25 Tom Tromey <tromey@redhat.com>
3903
3904 * macrotab.c (macro_bcache_str): Remove cast.
3905
d7cbec71
HZ
39062012-07-25 Hui Zhu <hui_zhu@mentor.com>
3907
3908 * linespec.c (linespec_lexer_lex_number): Update comments,
3909 change the return and add check to make sure the input is
3910 the decimal numbers.
3911 (linespec_lexer_lex_one): If linespec_lexer_lex_number return
3912 false, call linespec_lexer_lex_string.
3913
882f447f
TT
39142012-07-24 Tom Tromey <tromey@redhat.com>
3915
3916 * symfile.c (symbol_file_add): Don't open BFD twice.
3917
53ab4066 39182012-07-24 Marc Khouzam <marc.khouzam@ericsson.com>
e12c7713
MK
3919
3920 * breakpoint.c (create_breakpoint): Store condition for pending
3921 breakpoints.
3922
108fb0f7
AS
39232012-07-24 Andreas Schwab <schwab@linux-m68k.org>
3924
3925 * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
3926 (m68k_return_value): Handle complex types like structures.
3927 (m68k_svr4_return_value): Likewise.
3928
1634dcbe
JK
39292012-07-24 Marcus Shawcroft <marcus.shawcroft@arm.com>
3930
3931 * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
3932 parameters to bfd_get_section_name.
3933
e2d12c21
YQ
39342012-07-24 Yao Qi <yao@codesourcery.com>
3935
3936 * cli/cli-setshow.c: Handle case 'var_uinteger'
3937 and 'var_zuninteger' together. Handle case 'var_integer' and
3938 'var_zinteger' together.
3939
64b92e45
KS
39402012-07-23 Keith Seitz <keiths@redhat.com>
3941
3942 * linespec.c (convert_linespec_to_sal): Don't add
3943 any symbols to the result vector if symbol_to_sal
3944 returns zero.
3945
0f5f4ffe
KS
39462012-07-23 Keith Seitz <keiths@redhat.com>
3947
3948 * linespec.c (decode_objc): Record the function name
3949 in the linespec.
3950
da1cc82f
TT
39512012-07-23 Tom Tromey <tromey@redhat.com>
3952
3953 * rs6000-nat.c (add_vmap): Rewrite archive loop. Fix reference
3954 counting.
3955 * exec.c (exec_close_1): Unconditionally release vmap's BFD.
3956 (map_vmap): Acquire a reference to the BFD.
3957
6c18f3e0
SP
39582012-07-23 Siddhesh Poyarekar <siddhesh@redhat.com>
3959
3960 * p-valprint.c (pascal_object_print_value): Replace potentially
3961 unsafe alloca with xmalloc/xfree.
3962 * valops.c (search_struct_method): Likewise.
3963
695c3173
TT
39642012-07-23 Tom Tromey <tromey@redhat.com>
3965
3966 * solib-svr4.c (enable_break): Update.
3967 * bfd-target.h (target_bfd_reopen): Update documentation.
3968
08d2cd74
TT
39692012-07-23 Tom Tromey <tromey@redhat.com>
3970
3971 * symfile.c (separate_debug_file_exists): Update.
3972 (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
3973 (reread_symbols): Update.
3974 * elfread.c (build_id_verify): Update.
3975 * symfile.h (gdb_bfd_open_maybe_remote): Rename from
3976 bfd_open_maybe_remote.
3977
596f7d67
TT
39782012-07-23 Tom Tromey <tromey@redhat.com>
3979
3980 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
3981
8ac244b4
TT
39822012-07-23 Tom Tromey <tromey@redhat.com>
3983
3984 * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
3985 and 'abfd'.
3986 * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
3987 and 'abfd'.
3988 * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
3989 * machoread.c (macho_add_oso_symfile): Make a cleanup for
3990 'abfd'.
3991 (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
3992 * objfiles.c (allocate_objfile): Acquire a new reference.
3993 * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
3994 * solib.c (solib_read_symbols): Don't acquire a BFD reference.
3995 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
3996 a cleanup for 'nbfd'.
3997 * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
3998 for 'nbfd'.
3999 * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
4000 make a cleanup for 'abfd'.
4001 (symbol_file_add): Make a BFD cleanup.
4002
64c31149
TT
40032012-07-23 Tom Tromey <tromey@redhat.com>
4004
4005 * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
4006 (bfd_openw_with_cleanup): Use gdb_bfd_openw.
4007 * corelow.c (core_open): Use gdb_bfd_fopen.
4008 * dsrec.c (load_srec): Use gdb_bfd_openr.
4009 * exec.c (exec_file_attach): Use gdb_bfd_fopen.
4010 * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
4011 * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
4012 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
4013 (gdb_bfd_fdopenr): New functions.
4014 * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
4015 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
4016 (gdb_bfd_fdopenr): Declare.
4017 * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
4018 * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
4019 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
4020 gdb_bfd_openr_next_archived_file.
4021 (macho_check_dsym): Use gdb_bfd_openr.
4022 (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
4023 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
4024 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
4025 * remote-mips.c (mips_load_srec, pmon_load_fast): Use
4026 gdb_bfd_openr.
4027 * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
4028 * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
4029 gdb_bfd_openr_next_archived_file.
4030 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4031 Use gdb_bfd_openr.
4032 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
4033 gdb_bfd_openr.
4034 * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
4035 * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
4036 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
4037 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
4038 (symfile_bfd_open): Use gdb_bfd_fopen.
4039 (generic_load): Use gdb_bfd_openr.
4040 * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
4041
520b0001
TT
40422012-07-23 Tom Tromey <tromey@redhat.com>
4043
4044 * bfd-target.c (target_bfd_reopen): Update.
4045 * cli/cli-dump.c (bfd_openr_with_cleanup)
4046 (bfd_openw_with_cleanup): Update.
4047 * corelow.c (core_open): Update.
4048 * dsrec.c (load_srec): Update.
4049 * exec.c (exec_file_attach): Update.
4050 * gcore.c (create_gcore_bfd): Update.
4051 * gdb_bfd.c (gdb_bfd_ref): Return void.
4052 (gdb_bfd_open): Update.
4053 * gdb_bfd.h (gdb_bfd_ref): Return void.
4054 Update comments.
4055 * jit.c (jit_bfd_try_read_symtab): Update.
4056 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
4057 * machoread.c (macho_symfile_read_all_oso): Update.
4058 (macho_check_dsym): Update.
4059 * procfs.c (insert_dbx_link_bpt_in_file): Update.
4060 * remote-m32r-sdi.c (m32r_load): Update.
4061 * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
4062 * rs6000-nat.c (add_vmap): Update.
4063 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4064 Update.
4065 * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
4066 * solib-spu.c (spu_bfd_open): Update.
4067 * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
4068 * spu-linux-nat.c (spu_bfd_open): Update.
4069 * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
4070 (generic_load): Update.
4071 * windows-nat.c (windows_make_so): Update.
4072
2322ff16
SP
40732012-07-22 Siddhesh Poyarekar <siddhesh@redhat.com>
4074
4075 * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
4076
3def0b36
PA
40772012-07-20 Jeff Kenton <jkenton@tilera.com>
4078
4079 * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
4080 SIGTRAMP_FRAME unwinding.
4081
e615022a
DE
40822012-07-20 Doug Evans <dje@google.com>
4083
4084 * NEWS: Document new options "set/show use-deprecated-index-sections",
4085 and delete reference to --use-deprecated-index-sections.
4086 * symfile.h (use_deprecated_index_sections): Delete.
4087 * dwarf2read.c (use_deprecated_index_sections): Make static.
4088 (read_index_from_section): Update wording of how to load
4089 deprecated index sections.
4090 (_initialize_dwarf2_read): New options
4091 "set/show use-deprecated-index-sections".
4092 * main.c (captured_main): Delete --use-deprecated-index-sections.
4093
64776a0b
PA
40942012-07-20 Pedro Alves <palves@redhat.com>
4095
4096 PR threads/11692
4097 PR gdb/12203
4098
4099 * infrun.c (handle_inferior_event) <new thread>: Don't special
4100 case minus_one_ptid.
4101 <TARGET_WAITKIND_SPURIOUS>: Ditto.
4102 * linux-thread-db.c (thread_get_info_callback): Don't return early
4103 if the thread is zombie.
4104 (thread_from_lwp): Change return type to void. Rewrite stale
4105 comment.
4106 (attach_thread): Don't return early if the thread is zombie,
4107 instead set its "dying" flag.
4108 (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
4109 (find_new_threads_callback): Don't return early if the thread is
4110 zombie.
4111
09826ec5
PA
41122012-07-20 Pedro Alves <palves@redhat.com>
4113
4114 * linux-nat.c (linux_nat_wait): Dump the passed in target options.
4115 * target.c (target_wait): Likewise.
4116 (str_comma_list_concat_elem, do_option, target_options_to_string):
4117 New functions.
4118 * target.h (target_options_to_string): Declare.
4119
f7a35f02
TT
41202012-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
4121 Tom Tromey <tromey@redhat.com>
4122
4123 * dwarf2read.c (dwarf_decode_macros)
4124 <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
4125 DW_MACRO_GNU_transparent_include_alt>: New cases.
4126 (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
4127 DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
4128
b81e1ee0
TT
41292012-07-20 Tom Tromey <tromey@redhat.com>
4130
4131 * dwarf2read.c (try_open_dwo_file): Don't call
4132 gdb_bfd_stash_filename.
4133
99c1624c
PA
41342012-07-20 Pedro Alves <palves@redhat.com>
4135
4136 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
4137 (i386_record_lea_modrm, i386_record_push, i386_record_floats)
4138 (i386_process_record): Tweak description comments.
4139
4ffa4fc7
PA
41402012-07-20 Pedro Alves <palves@redhat.com>
4141
4142 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
4143 (i386_process_record): Use record_read_memory.
4144 * record.c (record_read_memory): New function.
4145 (record_arch_list_add_mem, record_exec_insn): Use
4146 record_read_memory.
4147 * record.h (record_read_memory): Declare.
4148
c24343e2
YQ
41492012-07-20 Yao Qi <yao@codesourcery.com>
4150
4151 * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
4152 NULL for xfree.
4153
90f47860
PA
41542012-07-19 Pedro Alves <palves@redhat.com>
4155
4156 * record.c (record_resume): Ask the target beneath to report all
4157 signals.
4158
01093045
DE
41592012-07-19 Doug Evans <dje@google.com>
4160
4161 * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
4162 there's no section at address zero.
4163 (dwarf2_record_block_ranges): Ditto.
4164
a7c3d162
YQ
41652012-07-19 Yao Qi <yao@codesourcery.com>
4166
4167 * command.h, remote.c: Fix a typo in comment.
4168
608b4967
TT
41692012-07-19 Tom Tromey <tromey@redhat.com>
4170
4171 PR exp/13206:
4172 * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
4173 * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
4174 OP_DECLTYPE>: New cases.
4175 * c-exp.y (TYPEOF, DECLTYPE): New tokens.
4176 (type_exp): Add new productions.
4177 (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
4178 and decltype.
4179 * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
4180 New case.
4181 * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
4182 OP_DECLTYPE>: New case.
4183 * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
4184 New case.
4185 * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
4186 * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
4187
274b54d7
TT
41882012-07-19 Tom Tromey <tromey@redhat.com>
4189
4190 * c-exp.y (enum token_flags): New.
4191 (struct token) <cxx_only>: Remove.
4192 <flags>: New field.
4193 (tokentab3, tokentab2, ident_tokens): Update.
4194 (lex_one_token): Update. Handle FLAG_SHADOW.
4195
9eaf6705
TT
41962012-07-19 Tom Tromey <tromey@redhat.com>
4197
4198 * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
4199 * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
4200 UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
4201 * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE. Update
4202 for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST. Use
4203 type_exp production where appropriate.
4204 * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
4205 <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
4206 <UNOP_MEMVAL_TYPE>: New case.
4207 (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
4208 (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
4209 * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
4210 <UNOP_MEMVAL_TYPE>: New case.
4211 (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
4212 UNOP_REINTERPRET_CAST>: Update.
4213 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
4214 * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
4215 UNOP_REINTERPRET_CAST>: Update.
4216 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
4217 * stack.c (return_command): Also check for UNOP_CAST_TYPE.
4218 * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
4219 constants.
4220
6ace3df1
YQ
42212012-07-19 Yao Qi <yao@codesourcery.com>
4222 Jan Kratochvil <jan.kratochvil@redhat.com>
4223
4224 * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
4225 and case 'var_optional_filename' together.
4226 * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
4227 instead of add_setshow_optional_filename_cmd for setshow command
4228 'args'. Set completer for 'set args'.
4229
48faced0
DE
42302012-07-18 Doug Evans <dje@google.com>
4231
4232 * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
4233 * common/gdb_vecs.c: New file, contents from utils.c.
4234 * common/host-defs.h: New file, contents from defs.h.
4235 * utils.h: New file, contents from defs.h.
4236 * defs.h: Move all declarations of objects defined in utils.c
4237 to utils.h (except QUIT() and related).
4238 #include "utils.h", "host-defs.h".
4239 * probe.h (probe_p): Move here from gdb_vecs.h.
4240 * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
4241 * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
4242 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
4243 * Makefile.in (SFILES): Add common/gdb_vecs.c.
4244 (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
4245 (COMMON_OBS): Add gdb_vecs.o.
4246 (gdb_vecs.o): New rule.
4247
66f1999b
KS
42482012-07-18 Keith Seitz <keiths@redhat.com>
4249
4250 * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
4251 parameter. If non-zero, use SYMNAME as the canonical name
4252 for the SaL.
4253 Update all callers.
4254 (convert_linespec_to_sals): Use add_sal_to_sals for
4255 expressions, too.
4256 (decode_line_full): No need to "fill in missing canonical names"
4257 anymore. Simply make cleanups for the allocated names.
4258
5d94e27b
KS
42592012-07-18 Keith Seitz <keiths@redhat.com>
4260
4261 * linespec.c (struct linespec): Constify expression,
4262 source_filename, function_name, and label_name.
4263 (symbol_not_found_error): Make all parameters const.
4264 (linespec_parser_delete): No need to check for NULL
4265 when using xfree. Cast const char * to char * for xfree.
4266
af4908ba
KS
42672012-07-18 Keith Seitz <keiths@redhat.com>
4268
4269 * breakpoint.c (invalid_thread_id_error): New function.
4270 (find_condition_and_thread): Use invalid_thread_id_error.
4271 (watch_command_1): Likewise.
4272
853254db
TT
42732012-07-18 Tom Tromey <tromey@redhat.com>
4274
4275 * cc-with-index.sh, cc-with-dwz.sh: Remove.
4276 * contrib/cc-with-tweaks.sh: New file.
4277
2ec9a5e0
TT
42782012-07-18 Tom Tromey <tromey@redhat.com>
4279
4280 * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
4281 (locate_dwz_sections): Recognize .gdb_index.
4282 (create_cus_from_index_list): New function.
4283 (create_cus_from_index): Use it. Handle .dwz data.
4284 (read_index_from_section): New function, extracted from
4285 dwarf2_read_index.
4286 (dwarf2_read_index): Use it. Read .gdb_index from dwz file,
4287 if needed.
4288
36586728
TT
42892012-07-18 Tom Tromey <tromey@redhat.com>
4290
4291 * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
4292 (struct dwarf2_per_cu_data) <length>: No longer bitfield.
4293 <is_dwz>: New field.
4294 (struct dwz_file): New.
4295 (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
4296 (locate_dwz_sections, dwarf2_get_dwz_file)
4297 (get_abbrev_section_for_cu): New functions.
4298 (error_check_comp_unit_head, read_and_check_comp_unit_head)
4299 (read_and_check_type_unit_head): Add abbrev_section argument.
4300 (create_debug_types_hash_table): Update.
4301 (init_cutu_and_read_dies): Use proper abbrev section.
4302 (init_cutu_and_read_dies_no_follow): Likewise.
4303 (set_partial_user): Do nothing if PST==NULL.
4304 (read_comp_units_from_section): New function.
4305 (create_all_comp_units): Use it.
4306 (scan_partial_symbols, partial_die_parent_scope): Update.
4307 (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4308 (process_imported_unit_die, read_partial_die): Handle .dwz files.
4309 (find_partial_die): Add offset_in_dwz argument. Update.
4310 (guess_partial_die_structure_name, fixup_partial_die): Update.
4311 (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
4312 DW_FORM_GNU_strp_alt.
4313 (read_indirect_string_from_dwz): New function.
4314 (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
4315 (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4316 (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
4317 (follow_die_offset): Add offset_in_dwz argument.
4318 (follow_die_ref, dwarf2_fetch_die_location_block): Update.
4319 (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
4320 (dwarf_decode_macro_bytes): Add section_is_dwz argument.
4321 Handle new macro forms.
4322 (dwarf_decode_macros): Update.
4323 (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
4324 (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
4325 (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
4326 (create_debug_types_hash_table): Use correct abbrev section.
4327 (get_debug_line_section): New function.
4328 (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
4329 (process_full_comp_unit): Pass 'required' argument to
4330 end_symtab_get_static_block.
4331 * buildsym.h (end_symtab_get_static_block): Update.
4332 * buildsym.c (end_symtab_get_static_block): Add 'required'
4333 argument.
4334 (end_symtab, end_expandable_symtab): Update.
4335
4bf44c1c
TT
43362012-07-18 Tom Tromey <tromey@redhat.com>
4337
4338 * dwarf2read.c: Don't include zlib.h or sys/mman.h.
4339 (pagesize): Remove.
4340 (struct dwarf2_section_info) <map_addr, map_len>: Remove.
4341 (zlib_decompress_section): Remove.
4342 (dwarf2_read_section): Use gdb_bfd_map_section.
4343 (munmap_section_buffer): Remove.
4344 (free_dwo_file, dwarf2_per_objfile_free): Don't use
4345 munmap_section_buffer.
4346 * gdb_bfd.c: Include zlib.h, sys/mman.h.
4347 (struct gdb_bfd_section_data): New.
4348 (free_one_bfd_section): New function.
4349 (gdb_bfd_close_or_warn): Use free_one_bfd_section.
4350 (get_section_descriptor, zlib_decompress_section)
4351 (gdb_bfd_map_section): New functions.
4352 * gdb_bfd.h (gdb_bfd_map_section): Declare.
4353
bb397797
TT
43542012-07-18 Tom Tromey <tromey@redhat.com>
4355
4356 * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
4357
6ec53d05
TT
43582012-07-18 Tom Tromey <tromey@redhat.com>
4359
4360 * gdb_bfd.c (struct gdb_bfd_data): New.
4361 (gdb_bfd_cache): New global.
4362 (struct gdb_bfd_cache_search): New.
4363 (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
4364 (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
4365 * gdb_bfd.h (gdb_bfd_open): Declare.
4366
f9a062ff
TT
43672012-07-18 Tom Tromey <tromey@redhat.com>
4368
4369 * utils.c (make_cleanup_bfd_unref): Rename from
4370 make_cleanup_bfd_close.
4371 * defs.h (make_cleanup_bfd_unref): Rename from
4372 make_cleanup_bfd_close.
4373 * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
4374 (bfd_openw_with_cleanup): Update.
4375 * corelow.c (core_open): Update.
4376 * dsrec.c (load_srec): Update.
4377 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
4378 * remote-m32r-sdi.c (m32r_load): Update.
4379 * remote-mips.c (mips_load_srec): Update.
4380 (pmon_load_fast): Update.
4381 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4382 Update.
4383 (darwin_bfd_open): Update.
4384 * solib.c (solib_bfd_fopen): Update.
4385 * symfile-mem.c (symbol_file_add_from_memory): Update.
4386 * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
4387 (symfile_bfd_open): Update.
4388 (generic_load): Update.
4389
d6ad71ba
TT
43902012-07-18 Tom Tromey <tromey@redhat.com>
4391
4392 * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
4393 (pmon_load_fast): Likewise.
4394 * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
4395 (m32r_upload_command): Likewise.
4396 * dsrec.c (load_srec): Use make_cleanup_bfd_close.
4397 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4398 Use make_cleanup_bfd_close.
4399
a4453b7e
TT
44002012-07-18 Tom Tromey <tromey@redhat.com>
4401
4402 * symfile.c (symfile_bfd_open): Don't copy name. Call
4403 gdb_bfd_stash_filename.
4404 (load_command): Open the new BFD before freeing the old.
4405 (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
4406 * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
4407 Call gdb_bfd_stash_filename.
4408 * spu-linux-nat.c (spu_bfd_open): Don't copy name.
4409 * solib-spu.c (spu_bfd_fopen): Don't copy name. Call
4410 gdb_bfd_stash_filename.
4411 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4412 Free found_pathname.
4413 * rs6000-nat.c (add_vmap): Don't copy filename. Call
4414 gdb_bfd_stash_filename.
4415 * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
4416 * machoread.c (macho_add_oso_symfile): Call
4417 gdb_bfd_stash_filename.
4418 (macho_symfile_read_all_oso): Arrange to free archive_name. Call
4419 gdb_bfd_stash_filename.
4420 (macho_check_dsym): Don't copy filename. Call
4421 gdb_bfd_stash_filename.
4422 * jit.c (bfd_open_from_target_memory): Don't copy the filename.
4423 * gdb_bfd.c (gdb_bfd_stash_filename): New function.
4424 * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
4425 * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
4426 * exec.c (exec_close): Don't free the BFD's filename.
4427 (exec_file_attach): Don't copy the filename. Call
4428 gdb_bfd_stash_filename.
4429 * corelow.c (core_close): Don't free the BFD's filename.
4430 (core_open): Call gdb_bfd_stash_filename.
4431 * corefile.c (reopen_exec_file): Remove #if 0 code.
4432 * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename. Free
4433 pathname.
4434 * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
4435
cbb099e8
TT
44362012-07-18 Tom Tromey <tromey@redhat.com>
4437
4438 * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
4439 gdb_bfd_unref.
4440 (free_dwo_file): Use gdb_bfd_unref.
4441 * cli/cli-dump.c: Include gdb_bfd.h.
4442 (bfd_openw_with_cleanup): Use gdb_bfd_ref.
4443 (bfd_openr_with_cleanup): Likewise.
4444 * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
4445 gdb_bfd_unref.
4446 * utils.c: Include gdb_bfd.h.
4447 (do_bfd_close_cleanup): Use gdb_bfd_unref.
4448 * symfile.c: Include gdb_bfd.h.
4449 (separate_debug_file_exists): Use gdb_bfd_unref.
4450 (bfd_open_maybe_remote): Use gdb_bfd_ref.
4451 (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4452 (generic_load): Use gdb_bfd_ref.
4453 (reread_symbols): Use gdb_bfd_unref.
4454 * symfile-mem.c: Include gdb_bfd.h.
4455 (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
4456 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4457 * solib.c: Include gdb_bfd.h.
4458 (solib_bfd_fopen): Use gdb_bfd_ref.
4459 (solib_bfd_open): Use gdb_bfd_unref.
4460 (free_so_symbols): Use gdb_bfd_unref.
4461 (reload_shared_libraries_1): Use gdb_bfd_unref.
4462 * solib-spu.c: Include gdb_bfd.h.
4463 (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
4464 * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
4465 gdb_bfd_unref.
4466 * solib-frv.c: Include gdb_bfd.h.
4467 (enable_break2): Use gdb_bfd_unref.
4468 * solib-dsbt.c: Include gdb_bfd.h.
4469 (enable_break2): Use gdb_bfd_unref.
4470 * solib-darwin.c: Include gdb_bfd.h.
4471 (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
4472 gdb_bfd_unref.
4473 (darwin_bfd_open): Use gdb_bfd_unref.
4474 * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
4475 * remote-mips.c: Include gdb_bfd.h.
4476 (mips_load_srec): Use gdb_bfd_ref.
4477 (pmon_load_fast): Use gdb_bfd_ref.
4478 * remote-m32r-sdi.c: Include gdb_bfd.h.
4479 (m32r_load): Use gdb_bfd_ref.
4480 * record.c: Include gdb_bfd.h.
4481 (record_save_cleanups): Use gdb_bfd_unref.
4482 (cmd_record_save): Use gdb_bfd_unref.
4483 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
4484 gdb_bfd_unref.
4485 * objfiles.h (gdb_bfd_close_or_warn): Remove.
4486 (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
4487 * objfiles.c: Include gdb_bfd.h.
4488 (free_objfile): Use gdb_bfd_unref.
4489 (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
4490 gdb_bfd.c.
4491 * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
4492 (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
4493 (macho_check_dsym): Likewise.
4494 * m32r-rom.c: Include gdb_bfd.h.
4495 (m32r_load): Use gdb_bfd_ref.
4496 (m32r_upload_command): Use gdb_bfd_ref.
4497 * jit.c: Include gdb_bfd.h.
4498 (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
4499 * gdb_bfd.h: New file.
4500 * gdb_bfd.c: New file.
4501 * gcore.c: Include gdb_bfd.h.
4502 (create_gcore_bfd): Use gdb_bfd_ref.
4503 (do_bfd_delete_cleanup): Use gdb_bfd_unref.
4504 (gcore_command): Use gdb_bfd_unref.
4505 * exec.c: Include gdb_bfd.h.
4506 (exec_close): Use gdb_bfd_unref.
4507 (exec_close_1): Use gdb_bfd_unref.
4508 (exec_file_attach): Use gdb_bfd_ref.
4509 * elfread.c: Include gdb_bfd.h.
4510 (build_id_verify): Use gdb_bfd_unref.
4511 * dsrec.c: Include gdb_bfd.h.
4512 (load_srec): Use gdb_bfd_ref.
4513 * corelow.c: Include gdb_bfd.h.
4514 (core_close): Use gdb_bfd_unref.
4515 (core_open): Use gdb_bfd_ref.
4516 * bfd-target.c: Include gdb_bfd.h.
4517 (target_bfd_xclose): Use gdb_bfd_unref.
4518 (target_bfd_reopen): Use gdb_bfd_ref.
4519 * Makefile.in (SFILES): Add gdb_bfd.c.
4520 (HFILES_NO_SRCDIR): Add gdb_bfd.h.
4521 (COMMON_OBS): Add gdb_bfd.o.
4522
ed1d1739
KS
45232012-07-18 Keith Seitz <keiths@redhat.com>
4524
4525 * breakpoint.c (find_condition_and_thread): Initialize
4526 TASK and REST.
4527 (create_breakpiont): find_condition_and_thread will now
4528 initialize COND_STRING, THREAD, and REST (and TASK).
4529 (addr_string_to_sals): Likewise.
4530
eab402df
PA
45312012-07-18 Pedro Alves <palves@redhat.com>
4532
4533 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
4534 Pull the single step breakpoints out of the target.
4535
2b963b68
SDJ
45362012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
4537
4538 * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
4539 * stap-probe.c (compile_probe_arg): Likewise.
4540
6bac7473
SDJ
45412012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
4542
4543 * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
4544 (elf_compile_to_ax): Likewise.
4545 * infrun.c (insert_exception_resume_from_probe): Likewise.
4546 (check_exception_resume): Remove `objfile' variable.
4547 * probe.c (find_probe_by_pc): Remove `objfile' argument.
4548 (struct probe_and_objfile, probe_and_objfile_s): Delete.
4549 (collect_probes): Adjust return value to `VEC (probe_p) *'.
4550 (compare_entries): Rename to...
4551 (compare_probes): ...this. Adjust function to work with
4552 `struct probe *'. Rename variables `ea' and `eb' to `pa' and `pb'
4553 respectively.
4554 (gen_ui_out_table_header_info): Adjust `probes' argument to be
4555 `VEC (probe_p) *'.
4556 (print_ui_out_info): Adjust argument to be `struct probe *'.
4557 (info_probes_for_ops): Adjust internal computations to use
4558 `VEC (probe_p) *'.
4559 (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
4560 * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
4561 gen_info_probes_table_values>: Remove `objfile' argument.
4562 (struct probe) <objfile>: New field.
4563 (find_probe_by_pc): Remove `objfile' argument.
4564 * stap-probe.c (stap_parse_probe_arguments): Likewise.
4565 (stap_get_probe_argument_count): Likewise.
4566 (stap_get_arg): Likewise.
4567 (stap_evaluate_probe_argument): Likewise.
4568 (stap_compile_to_ax): Likewise.
4569 (compile_probe_arg): Refactor not to pass `objfile' anymore.
4570 (handle_stap_probe): Fill `objfile' field from `struct probe'.
4571 (stap_gen_info_probes_table_header): Remove `objfile' argument.
4572 * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
4573 sym_compile_to_ax>: Likewise.
4574
3347eb1a 45752012-07-18 Terry Guo <terry.guo@arm.com>
4576
4577 PR 14329
4578 * defs.h (GDB_MI_MSG_WIDTH): New.
4579 * ser_base (ser_base_read_error_fd): New function.
4580 (do_ser_base_readchar): Poll error file descriptor as well as
4581 standard output.
f782ad9b 4582 (generic_readchar): Refactor error handling.
3347eb1a 4583
80c8d323
JB
45842012-07-18 Joel Brobecker <brobecker@adacore.com>
4585
4586 * NEWS: Create a new section for the next release branch.
4587 Rename the section of the current branch, now that it has
4588 been cut.
4589
b45a0664 45902012-07-18 Joel Brobecker <brobecker@adacore.com>
4591
4592 GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
4593 * version.in: Bump version to 7.5.50.20120718-cvs.
4594
09cf2b22
KS
45952012-07-17 Keith Seitz <keiths@redhat.com>
4596
4597 * linespec.c (linespec_parse_line_offset): Make parameter
4598 const.
4599
8f043999
JK
46002012-07-16 Jan Kratochvil <jan.kratochvil@redhat.com>
4601
4602 PR 11914
4603 * f-valprint.c (info_common_command): New variable frame_id.
4604 Reinitialize FI form FRAME_ID after each print_variable_and_value.
4605 * printcmd.c (print_variable_and_value): Extend function comment.
4606 Add comment for invalidated FRAME.
4607 * stack.c (backtrace_command_1): New variable frame_id. Reinitialize
4608 FI form FRAME_ID after each print_frame_local_vars.
4609 (struct print_variable_and_value_data): Change frame to frame_id.
4610 (do_print_variable_and_value): New variable frame, initialize it from
4611 p->frame_id. Add comment for invalidated FRAME.
4612 (print_frame_local_vars, print_frame_arg_vars): New function comment.
4613 Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization. Add comment
4614 for invalidated FRAME.
4615
ae5e0686
MK
46162012-07-16 Marc Khouzam <marc.khouzam@ericsson.com>
4617 Pedro Alves <palves@redhat.com>
4618
4619 * linux-nat.c (linux_nat_detach): Don't unregister from the event
4620 loop.
4621
5049c5be
TT
46222012-07-16 Tom Tromey <tromey@redhat.com>
4623
4624 * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
4625
2908cac6
DE
46262012-07-15 Doug Evans <dje@google.com>
4627
094b34ac
DE
4628 * dwarf2read.c (stmt_list_hash): New struct.
4629 (type_unit_group): Embed "per_cu" member, remove pointer.
4630 New union member "t", move member "tus" into it, all uses updated.
4631 New member "hash", replaces member "line_offset, all uses updated.
4632 (quick_file_names): Replace member "offset" with "hash", all uses
4633 updated.
4634 (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
4635 (hash_file_name_entry, eq_file_name_entry): Call them.
4636 (hash_type_unit_group, eq_type_unit_group): Ditto.
4637 (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
4638 (dw2_get_file_names_reader): Fix file name table calculation for TUs.
4639 (dw2_get_file_names): Update.
4640 (create_type_unit_group): Replace "per_cu" arg with "cu".
4641 All callers updated. Fix "quick" (.gdb_index) handling.
4642 (get_type_unit_group): Replace "per_cu" arg with "cu".
4643 All callers updated.
4644 (build_type_unit_groups): Don't reset tu_stats.
4645
2908cac6
DE
4646 * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
4647 "tab_cur_size". Change member "tab" to be a htab_t.
4648 (create_filename_seen_cache): Update.
4649 (clear_filename_seen_cache, delete_filename_seen_cache): Update.
4650 (filename_seen): Update.
4651
a2b6eff5
DE
46522012-07-13 Doug Evans <dje@google.com>
4653
4654 * symtab.c (filename_seen): Update comment.
4655
4359dff1
JK
46562012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4657 Doug Evans <dje@google.com>
4658
4659 * buildsym.c (end_symtab_1): Split it to ...
4660 (end_symtab_get_static_block): ... this ...
4661 (end_symtab_from_static_block): ... and this function.
4662 (end_symtab, end_expandable_symtab): Call them.
4663 * buildsym.h (end_symtab_get_static_block)
4664 (end_symtab_from_static_block): New declarations.
4665 * dwarf2read.c (process_full_comp_unit): New variable static_block.
4666 Set its valid CU ranges.
4667
a24f71ab
JK
46682012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4669
4670 * dwarf2loc.c (disassemble_dwarf_expression): Handle
4671 DW_OP_GNU_parameter_ref.
4672
d76b7dbc
JK
46732012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4674
4675 * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
4676 read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
4677
9fdc877b
DE
46782012-07-13 Doug Evans <dje@google.com>
4679
4680 * symtab.c (output_source_filename): Delete unnecessary forward decl.
4681 (filename_seen_cache): New struct.
4682 (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
4683 (create_filename_seen_cache): New function.
4684 (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
4685 (filename_seen): Delete arg "first". New arg "cache". All callers
4686 updated.
4687 (output_source_filename_data): New struct.
4688 (output_source_filename): Delete arg "first". New arg "data".
4689 All callers updated.
4690 (sources_info): Delete local "first". New locals "data", "cleanups".
4691 Rewrite to use filename_seen_cache.
4692 (add_partial_filename_data): Delete member "first". New member
4693 "filename_seen_cache". All uses updated.
4694 (make_source_files_completion_list): Rewrite to use
4695 filename_seen_cache.
4696
f80c6f3f
DE
46972012-07-12 Doug Evans <dje@google.com>
4698
4699 * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
4700
0bfa869d
DE
47012012-07-10 Doug Evans <dje@google.com>
4702
f4dc4d17
DE
4703 PR gdb/13498
4704 * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
4705 all_type_unit_groups, type_unit_groups, tu_stats.
4706 (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
4707 All uses updated. Add type_unit_group to union "s".
4708 (type_unit_group): New struct.
4709 (IS_TYPE_UNIT_GROUP): New macro.
4710 (abbrev_table): Delete unused member "section".
4711 (dw2_do_instantiate_symtab): Early exit if type_unit_group.
4712 (dw2_get_cu): Assert not used with type_unit_group.
4713 (dw2_get_primary_cu): New function.
4714 (dw2_build_type_unit_groups_reader): New function.
4715 (dw2_build_type_unit_groups): New function.
4716 (dw2_get_file_names): Assert not called on type units.
4717 (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
4718 Redo loop to iterate over type unit groups instead of type units.
4719 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
4720 (read_abbrev_offset): New function.
4721 (init_cutu_and_read_dies): New arg "abbrev_table". All callers
4722 updated.
4723 (create_partial_symtab): New function.
4724 (process_psymtab_comp_unit_reader): Assert not used with type units.
4725 Call create_partial_symtab.
4726 (process_psymtab_type_unit): Delete.
4727 (hash_type_unit_group, eq_type_unit_group): New functions.
4728 (allocate_type_unit_groups_table): New function.
4729 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
4730 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
4731 (create_type_unit_group, get_type_unit_group): New functions.
4732 (tu_abbrev_offset): New struct.
4733 (sort_tu_by_abbrev_offset): New function.
4734 (add_type_unit_group_to_table): New function.
4735 (build_type_unit_groups): New function.
4736 (build_type_psymtabs_reader): New function.
4737 (build_type_psymtab_dependencies): New function.
4738 (build_type_psymtabs): Rewrite.
4739 (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
4740 is seen in a type unit.
4741 (process_queue): Move symtab expansion debugging printfs here.
4742 Call process_full_type_unit for type units.
4743 (compute_symtab_includes): Assert not called for type units.
4744 (process_cu_includes): Don't call compute_symtab_includes for
4745 type units.
4746 (process_full_type_unit): New function.
4747 (process_imported_unit_die): Flag an error if called for type units.
4748 (handle_DW_AT_stmt_list): Delete arg "want_line_info". All callers
4749 updated. Assert not called for type units.
4750 (read_file_scope): Call dwarf2_start_symtab.
4751 (setup_type_unit_groups): New function.
4752 (read_type_unit_scope): Rewrite.
4753 (abbrev_table_read_table): Initialize abbrev_table->offset.
4754 (abbrev_table_free_cleanup): New function.
4755 (dwarf2_start_symtab): New function.
4756 (load_full_type_unit): Assert not called for type unit groups.
6d30eef8
DE
4757 * buildsym.c (finish_block_internal): New arg "expandable".
4758 All callers updated.
4759 (start_symtab): Move most contents to ...
4760 (restart_symtab): ... here. New function.
4761 (reset_symtab_globals): New function.
4762 (end_symtab_1): Renamed from end_symtab. New arg "expandable".
4763 Call reset_symtab_globals.
4764 (end_symtab, end_expandable_symtab): New functions.
4765 (set_missing_symtab, augment_type_symtab): New functions.
4766 * buildsym.h (end_expandable_symtab): Declare.
4767 (augment_type_symtab, restart_symtab): Declare.
b4c41fc7
DE
4768 * psympriv.h (struct partial_symtab): New member "anonymous".
4769 * psymtab.c (partial_map_symtabs_matching_filename): Ignore
4770 anonymous psymtabs.
4771 (read_psymtabs_with_filename): Ditto.
4772 (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
4773 (expand_symtabs_matching_via_partial): Ditto.
4774 (dump_psymtab): Update.
0bfa869d
DE
4775 * dictionary.c (dict_add_pending): New function.
4776 * dictionary.h (dict_add_pending): Declare.
4777
45e58e77
DE
47782012-07-09 Doug Evans <dje@google.com>
4779
b74db436
DE
4780 * buildsym.c (start_subfile): Remove unnecessary check for
4781 name == NULL.
4782
fd55216c
DE
4783 * psymtab.c (allocate_psymtab): Use host_address_to_string.
4784
6721b2ec
DE
4785 * dwarf2read.c (load_full_type_unit): Simplify.
4786
b4dd5633
DE
4787 * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
4788 to struct signatured_type **. All uses updated.
4789
45e58e77
DE
4790 * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
4791 All callers updated.
4792
e314d629
TT
47932012-07-09 Tom Tromey <tromey@redhat.com>
4794
4795 * c-exp.y (check_parameter_typelist): New function.
4796 (parameter_typelist): Call it.
4797 * eval.c (make_params): Handle '(void)' case.
4798 * gdbtypes.c (lookup_function_type_with_arguments): Handle
4799 '(void)' case.
4800
aa7c7447
JK
48012012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4802
4803 * common/linux-ptrace.c: Include gdb_assert.h.
4804 <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
4805 <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
4806 stdint.h.
4807 (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
4808 functions.
4809 * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
4810 * linux-nat.c (linux_child_post_attach)
4811 (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
4812
889003ed
JK
48132012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4814
4815 * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
4816 nptl <2.7 bug workaround for core files.
4817
da559b09
JK
48182012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4819
4820 * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
4821 clearing.
4822 (save_siginfo): Remove.
4823 (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
4824 call.
4825 (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
4826 (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
4827 * linux-nat.h (struct lwp_info): Remove field siginfo.
4828
f865ee35
JK
48292012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4830
4831 Code cleanup for the next patch.
4832 * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
4833 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4834 call for it.
4835 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
4836 (ia64_linux_stopped_data_address):
4837 * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
4838 the return value.
4839 * linux-nat.h (linux_nat_get_siginfo): Likewise.
4840 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
4841 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4842 call for it.
4843
76b83c51
JK
48442012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4845
4846 PR 14321
4847 * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
4848 Increase buffer sizes to 2x we need, not just 2x of the previous size.
4849
a6fb9c08
TT
48502012-07-06 Tom Tromey <tromey@redhat.com>
4851
4852 * c-exp.y (DOTDOTDOT): New token.
4853 (func_mod, exp): Use parameter_typelist.
4854 (parameter_typelist): New production.
4855 (tokentab3): Add "..." token.
4856 * eval.c (make_params): Handle varargs.
4857 * gdbtypes.c (lookup_function_type_with_arguments): Handle
4858 varargs.
4859
71918a86
TT
48602012-07-06 Tom Tromey <tromey@redhat.com>
4861
4862 PR exp/9608:
4863 * c-exp.y (%union) <tvec>: Change type.
4864 (func_mod): Now uses <tvec> type.
4865 (exp): Update for tvec change.
4866 (direct_abs_decl): Push the typelist.
4867 (func_mod): Return a typelist.
4868 (nonempty_typelist): Update for tvec change.
4869 * gdbtypes.c (lookup_function_type_with_arguments): New function.
4870 * gdbtypes.h (lookup_function_type_with_arguments): Declare.
4871 * parse.c (pop_type_list): New function.
4872 (push_typelist): New function.
4873 (follow_types): Handle tp_function_with_arguments.
4874 * parser-defs.h (type_ptr): New typedef. Define a VEC.
4875 (enum type_pieces) <tp_function_with_arguments>: New constant.
4876 (union type_stack_elt) <typelist_val>: New field.
4877 (push_typelist): Declare.
4878
fcde5961
TT
48792012-07-06 Tom Tromey <tromey@redhat.com>
4880
4881 * c-exp.y (%union) <type_stack>: New field.
4882 (abs_decl, direct_abs_decl): Use <type_stack> type. Update.
4883 (ptr_operator_ts): New production.
4884 (ptype): Update.
4885 * parse.c (type_stack_reserve): New function.
4886 (check_type_stack_depth): Use it.
4887 (pop_type_stack, append_type_stack, push_type_stack)
4888 (get_type_stack, type_stack_cleanup): New functions.
4889 (follow_types): Handle tp_type_stack.
4890 (_initialize_parse): Simplify initialization.
4891 * parser-defs.h (enum type_pieces) <tp_type_stack>: New
4892 constant.
4893 (union type_stack_elt) <stack_val>: New field.
4894 (get_type_stack, append_type_stack, push_type_stack)
4895 (type_stack_cleanup): Declare.
4896
1a7d0ce4
TT
48972012-07-06 Tom Tromey <tromey@redhat.com>
4898
4899 * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
4900 Remove.
4901 (struct type_stack): New.
4902 * parse.c (type_stack, type_stack_size, type_stack_depth):
4903 Remove.
4904 (type_stack): New global.
4905 (parse_exp_in_context, check_type_stack_depth)
4906 (insert_into_type_stack, insert_type, push_type, push_type_int)
4907 (insert_type_address_space, pop_type, pop_type_int)
4908 (_initialize_parse): Update.
4909
16d01384
TT
49102012-07-06 Tom Tromey <tromey@redhat.com>
4911
4912 * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
4913 Remove %type.
4914
9bfc60bf
SP
49152012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
4916
4917 * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
4918
d5161074
SP
49192012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
4920 Jan Kratochvil <jan.kratochvil@redhat.com>
4921
4922 * cp-valprint.c (cp_print_value): Replace potentially unsafe
4923 alloca with xmalloc/xfree.
4924
a74bc576
SP
49252012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
4926
4927 * MAINTAINERS (Write After Approval): Add myself to the list.
4928
667e0a4b
DE
49292012-07-05 Doug Evans <dje@google.com>
4930
4931 * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
4932
34b536a8
HZ
49332012-07-05 Hui Zhu <hui_zhu@mentor.com>
4934
4935 * ax-gdb.c (cli/cli-utils.h): New include.
4936 (linespec.h): Ditto.
4937 (agent_eval_command_one): New function.
4938 (agent_command_1): Ditto.
4939 (agent_command): Call function agent_command_1.
4940 (agent_eval_command): Ditto.
4941 (_initialize_ax_gdb): Change help for "maint agent"
4942 and "maint agent-eval".
4943
e6f0bce7
HZ
49442012-07-05 Hui Zhu <hui_zhu@mentor.com>
4945
4946 * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
4947 * cli/cli-utils.c (check_for_argument): New function.
4948 * cli/cli-utils.h (check_for_argument): Ditto.
4949
1b3371b1
L
49502012-07-04 H.J. Lu <hongjiu.lu@intel.com>
4951
4952 * NEWS: Mention x32 ABI support.
4953
23e2d720
L
49542012-07-04 H.J. Lu <hongjiu.lu@intel.com>
4955
4956 * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
4957 AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
4958
4959 * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
4960 and pc_regnum_from_eax to -1. Update SP regnum from
4961 sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
4962 needed.
4963
4964 * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
4965 pc_regnum_from_eax.
4966
836bf454
JK
49672012-07-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4968
4969 Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
4970 * dwarf2expr.h: Include gdbtypes.h.
4971 (enum call_site_parameter_kind, union call_site_parameter_u): Remove
4972 these forward declarations.
4973 (cu_offset, sect_offset): Move these ...
4974 * gdbtypes.h: Remove include dwarf2expr.h.
4975 (cu_offset, sect_offset): ... here.
4976
1e55e04f
L
49772012-07-03 H.J. Lu <hongjiu.lu@intel.com>
4978
4979 * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
4980 (amd64_linux_sigtramp_code): This.
4981 (amd64_x32_linux_sigtramp_code): New.
4982 (LINUX_SIGTRAMP_LEN): Updated.
4983 (amd64_linux_sigtramp_start): Check x32 sigtramp.
4984
7d0e21ad
JK
49852012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4986
4987 * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
4988
8775fd2d
JK
49892012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4990
4991 * config.in: Regenerate.
4992 * configure: Regenerate.
4993 * configure.ac: Remove check for gnu/libc-version.h.
4994 * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
4995 gnu/libc-version.h.
4996 (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
4997 variables libc_version, libc_major and libc_minor. Replace sscanf by
4998 inferior_has_bug. Extend the comment.
4999
fcb44371
JK
50002012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5001
5002 * linux-thread-db.c (inferior_has_bug): New function.
5003 (thread_db_find_new_threads_silently): Return boolean as checked by
5004 inferior_has_bug, describe it in the comments.
5005 (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
5006 earlier. Abort the initialization if it returned non-zero.
7d0e21ad 5007 (thread_db_new_objfile): Exclude debug files.
fcb44371
JK
5008 (thread_db_find_new_threads_2): Preinitialize ERR. Check errors also
5009 if UNTIL_NO_NEW,
5010
09406207
DE
50112012-07-02 Doug Evans <dje@google.com>
5012
0907af0c
DE
5013 * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
5014 related to queue management.
5015
09406207
DE
5016 * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
5017 instead of "debug dwarf2-die" in debugging printfs.
5018 (create_debug_info_hash_table_reader): Ditto.
5019 (create_debug_info_hash_table): Ditto.
5020 (init_dwo_file): Ditto.
5021 (init_cutu_and_read_dies): Add debugging printf.
5022 (init_cutu_and_read_dies_no_follow): Ditto.
5023 (process_psymtab_comp_unit_reader): Ditto.
5024
d3ce09f5
SS
50252012-07-02 Stan Shebs <stan@codesourcery.com>
5026
5027 Add target-side support for dynamic printf.
5028 * NEWS: Mention the additional style.
5029 * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
5030 (struct bp_location): New field cmd_bytecode.
5031 * breakpoint.c: Include format.h.
5032 (disconnected_dprintf): New global.
5033 (parse_cmd_to_aexpr): New function.
5034 (build_target_command_list): New function.
5035 (insert_bp_location): Call it.
5036 (remove_breakpoints_pid): Skip dprintf breakpoints.
5037 (print_one_breakpoint_location): Ditto.
5038 (dprintf_style_agent): New global.
5039 (dprintf_style_enums): Add dprintf_style_agent.
5040 (update_dprintf_command_list): Add agent case.
5041 (agent_printf_command): New function.
5042 (_initialize_breakpoint): Add new commands.
5043 * common/ax.def (printf): New bytecode.
5044 * ax.h (ax_string): Declare.
5045 * ax-gdb.h (gen_printf): Declare.
5046 * ax-gdb.c: Include cli-utils.h, format.h.
5047 (gen_printf): New function.
5048 (maint_agent_print_command): New function.
5049 (_initialize_ax_gdb): Add maint agent-printf command.
5050 * ax-general.c (ax_string): New function.
5051 (ax_print): Add printf disassembly.
5052 * Makefile.in (SFILES): Add format.c
5053 (COMMON_OBS): Add format.o.
5054 * common/format.h: New file.
5055 * common/format.c: New file.
5056 * printcmd.c: Include format.h.
5057 (ui_printf): Call parse_format_string.
5058 * remote.c (remote_state): New field breakpoint_commands.
5059 (PACKET_BreakpointCommands): New enum.
5060 (remote_breakpoint_commands_feature): New function.
5061 (remote_protocol_features): Add new BreakpointCommands entry.
5062 (remote_can_run_breakpoint_commands): New function.
5063 (remote_add_target_side_commands): New function.
5064 (remote_insert_breakpoint): Call it.
5065 (remote_insert_hw_breakpoint): Ditto.
5066 (_initialize_remote): Add new packet configuration for
5067 target-side breakpoint commands.
5068 * target.h (struct target_ops): New field
5069 to_can_run_breakpoint_commands.
5070 (target_can_run_breakpoint_commands): New macro.
5071 * target.c (update_current_target): Handle
5072 to_can_run_breakpoint_commands.
5073
2d7b58e8
JK
50742012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5075
5076 Execute -ix and -iex only after system and user gdbinit files.
5077 * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
5078 processing down after gdbinit files.
5079
8690e634
JK
50802012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5081
5082 Add fnmatch-gnu module.
5083 * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
5084 * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
5085 * gnulib/aclocal.m4: Regenerate.
5086 * gnulib/config.in: Regenerate.
5087 * gnulib/configure: Regenerate.
5088 * gnulib/import/dummy.c: Remove.
5089 * gnulib/import/Makefile.am: Regenerate.
5090 * gnulib/import/Makefile.in: Likewise.
5091 * gnulib/import/m4/gnulib-cache.m4: Likewise.
5092 * gnulib/import/m4/gnulib-comp.m4: Likewise.
5093 * gnulib/import/alloca.c: New file.
5094 * gnulib/import/alloca.in.h: Likewise.
5095 * gnulib/import/config.charset: Likewise.
5096 * gnulib/import/fnmatch.c: Likewise.
5097 * gnulib/import/fnmatch.in.h: Likewise.
5098 * gnulib/import/fnmatch_loop.c: Likewise.
5099 * gnulib/import/localcharset.c: Likewise.
5100 * gnulib/import/localcharset.h: Likewise.
5101 * gnulib/import/m4/alloca.m4: Likewise.
5102 * gnulib/import/m4/codeset.m4: Likewise.
5103 * gnulib/import/m4/configmake.m4: Likewise.
5104 * gnulib/import/m4/fcntl-o.m4: Likewise.
5105 * gnulib/import/m4/fnmatch.m4: Likewise.
5106 * gnulib/import/m4/glibc21.m4: Likewise.
5107 * gnulib/import/m4/localcharset.m4: Likewise.
5108 * gnulib/import/m4/locale-fr.m4: Likewise.
5109 * gnulib/import/m4/locale-ja.m4: Likewise.
5110 * gnulib/import/m4/locale-zh.m4: Likewise.
5111 * gnulib/import/m4/mbrtowc.m4: Likewise.
5112 * gnulib/import/m4/mbsinit.m4: Likewise.
5113 * gnulib/import/m4/mbsrtowcs.m4: Likewise.
5114 * gnulib/import/m4/mbstate_t.m4: Likewise.
5115 * gnulib/import/m4/stdbool.m4: Likewise.
5116 * gnulib/import/m4/wchar_h.m4: Likewise.
5117 * gnulib/import/m4/wctype_h.m4: Likewise.
5118 * gnulib/import/m4/wint_t.m4: Likewise.
5119 * gnulib/import/mbrtowc.c: Likewise.
5120 * gnulib/import/mbsinit.c: Likewise.
5121 * gnulib/import/mbsrtowcs-impl.h: Likewise.
5122 * gnulib/import/mbsrtowcs-state.c: Likewise.
5123 * gnulib/import/mbsrtowcs.c: Likewise.
5124 * gnulib/import/ref-add.sin: Likewise.
5125 * gnulib/import/ref-del.sin: Likewise.
5126 * gnulib/import/stdbool.in.h: Likewise.
5127 * gnulib/import/streq.h: Likewise.
5128 * gnulib/import/strnlen1.c: Likewise.
5129 * gnulib/import/strnlen1.h: Likewise.
5130 * gnulib/import/verify.h: Likewise.
5131 * gnulib/import/wchar.in.h: Likewise.
5132 * gnulib/import/wctype.in.h: Likewise.
5133
202cbf1c
JK
51342012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5135
5136 Support shell wildcards for 'set auto-load safe-path'.
5137 * auto-load.c: Include fnmatch.h.
5138 (filename_is_in_dir): Rename to ...
5139 (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
5140 it. Update function comment. Rename dir_len to pattern_len. New
5141 variables filename_len, pattern and filename. Add more DEBUG_AUTO_LOAD
5142 messages. Use gdb_filename_fnmatch.
5143 (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
5144 pattern.
5145 (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
5146 * defs.h (gdb_filename_fnmatch): New declaration.
5147 * utils.c: Include fnmatch.h.
5148 (gdb_filename_fnmatch): New function.
5149
fb7b5af4
SDJ
51502012-07-02 Sergio Durigan Junior <sergiodj@redhat.com>
5151
5152 * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
5153 `-probe' and `-probe-stap' options.
5154
72d0e2c5
YQ
51552012-07-01 Yao Qi <yao@codesourcery.com>
5156
5157 * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
5158 always_inserted_off, and always_inserted_enums.
5159 Change always_inserted_mode's type to 'enum auto_boolean'.
5160 (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
5161 callers.
5162 (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
5163 of add_setshow_enum_cmd.
5164 * infrun.c: Remove can_use_displaced_stepping_auto,
5165 can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
5166 can_use_displaced_stepping_enum.
5167 Change can_use_displaced_stepping's type to 'enum auto_boolean'.
f87e3f15
PA
5168 (show_can_use_displaced_stepping, use_displaced_stepping): Update
5169 callers.
72d0e2c5
YQ
5170 (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
5171 add_setshow_enum_cmd.
5172
42e7ad6c
DE
51732012-06-30 Doug Evans <dje@google.com>
5174
5175 * dwarf2read.c (signatured_type): Make "per_cu" member first.
5176 (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
5177 currently being read. Propagate DW_AT_comp_dir to DWO DIE.
5178
39cf75f7
DE
51792012-06-29 Doug Evans <dje@google.com>
5180
5181 * linespec.c: #include "stack.h".
5182 (decode_line_with_current_source): Moved here from symtab.c and
5183 renamed from decode_line_spec. All callers updated.
5184 (decode_line_with_last_displayed): Moved here from breakpoint.c and
5185 renamed from decode_line_spec_1. All callers updated.
5186 * linespec.h (decode_line_with_current_source): Move declaration here
5187 from symtab.h and renamed from decode_line_spec.
5188 (decode_line_with_last_displayed): Move declaration here from symtab.h
5189 and renamed from decode_line_spec_1.
5190 * macrocmd.c: #include "linespec.h".
5191 * symtab.c: Remove #include "linespec.h".
5192
433df2d4
DE
51932012-06-28 Doug Evans <dje@google.com>
5194
1ce1cefd
DE
5195 * dwarf2read.c (get_cu_length): New function.
5196 (offset_in_cu_p, error_check_comp_unit_head): Call it.
5197 (create_debug_types_hash_table): Ditto.
5198 (init_cutu_and_read_dies): Ditto.
5199 (init_cutu_and_read_dies_no_follow): Ditto.
5200
3b80fe9b
DE
5201 * dwarf2read.c (dwarf2_find_base_address): Move definition.
5202
433df2d4
DE
5203 * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
5204 (struct abbrev_table): Define.
5205 (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
5206 abbrev_table.
5207 (init_cutu_and_read_dies): Update.
5208 (abbrev_table_alloc_abbrev): New function. Replaces
5209 dwarf_alloc_abbrev. All callers updated.
5210 (abbrev_table_add_abbrev): New function.
5211 (abbrev_table_lookup_abbrev): New function. Replaces
5212 dwarf2_lookup_abbrev. All callers updated.
5213 (abbrev_table_read_table): New function. Contents moved here from
5214 dwarf2_read_abbrevs.
5215 (dwarf2_read_abbrevs): Call it.
5216 (abbrev_table_free): New function.
5217 (dwarf2_free_abbrev_table): Call it.
5218
71caed83
SS
52192012-06-28 Stan Shebs <stan@codesourcery.com>
5220
5221 * osdata.c (info_osdata_command): Filter out "Title" columns
5222 from non-MI uses.
5223 * common/linux-osdata.c (struct osdata_type): Add title field.
5224 (osdata_table): Add titles to each entry.
5225 (linux_command_xfer_osdata): Add a column for title data.
5226
37ce89eb
SS
52272012-06-28 Stan Shebs <stan@codesourcery.com>
5228
5229 Make logging work for MI.
5230 * NEWS: Mention it.
5231 * interps.h (interp_set_logging_ftype): New typedef.
5232 (struct interp_procs): New field set_logging_proc.
5233 (current_interp_set_logging): Declare.
5234 * interps.c (current_interp_set_logging): New function.
5235 * cli/cli-logging.c: Include interps.h.
5236 (set_logging_redirect): Call current_interp_set_logging.
5237 (pop_output_files): Ditto.
5238 (handle_redirections): Ditto, plus skip ui-out redirect if MI.
5239 * mi/mi-console.h (mi_console_set_raw): Declare.
5240 * mi/mi-console.c (mi_console_set_raw): New function.
5241 * mi/mi-interp.c (saved_raw_stdout): New global.
5242 (mi_set_logging): New function.
5243 (_initialize_mi_interp): Add it to interp procs.
5244
659c9f3a
DE
52452012-06-28 Doug Evans <dje@google.com>
5246
a743abeb
DE
5247 * symtab.c (lookup_symbol_aux_objfile): Use
5248 ALL_OBJFILE_PRIMARY_SYMTABS.
5249
659c9f3a
DE
5250 * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
5251
da2d6d3d
JK
52522012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5253
5254 * common/buffer.c: Include inttypes.h and stdint.h.
5255 (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
5256
e5ef252a
PA
52572012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5258 Pedro Alves <palves@redhat.com>
5259
5260 * gdbthread.h (ALL_THREADS): New macro.
5261 (thread_list): Declare.
5262 * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
5263 going, but instead fall through to the stepping handling.
5264 * linux-nat.c (resume_lwp): New parameter 'signo'. Resume with
5265 the passed in signal. Adjust debug output.
5266 (resume_callback): Rename to ...
5267 (linux_nat_resume_callback): ... this. Pass the thread's last
5268 stop signal, if in "pass" state.
5269 (linux_nat_resume): Adjust to rename.
5270 (stop_wait_callback): New assertion. Don't respawn signals;
5271 instead let the LWP remain with SIGNALLED set.
5272 (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
5273 * remote.c (append_pending_thread_resumptions): New.
5274 (remote_vcont_resume): Call it.
5275 * target.h (target_resume): Extend comment.
5276
1d7975eb
IS
52772012-06-28 Iain Sandoe <iain@codesourcery.com>
5278
5279 * auxv.c (fprint_target_auxv): Handle extended cache data tags.
5280
2e3cf129
DE
52812012-06-27 Doug Evans <dje@google.com>
5282
5283 * dwarf2read.c (dwarf2_cu): Add ranges_base.
5284 Delete have_addr_base, unused. All uses updated.
5285 (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
5286 (dwarf2_get_pc_bounds): Add ranges_base.
5287 (dwarf2_record_block_ranges): Ditto.
5288
1bb9788d
TT
52892012-06-27 Tom Tromey <tromey@redhat.com>
5290
5291 PR macros/7961:
5292 * varobj.c (varobj_create): Update.
5293 (varobj_set_value): Update.
5294 * tracepoint.c (validate_actionline): Update.
5295 (encode_actions_1): Update.
5296 * parse.c (parse_exp_1): Add 'pc' argument.
5297 (parse_exp_in_context): Add 'pc' argument. Change how
5298 expression_context_pc is set.
5299 (parse_expression): Update.
5300 (parse_field_expression): Update.
5301 * expression.h (parse_exp_1): Update.
5302 * eval.c (parse_to_comma_and_eval): Update.
5303 * breakpoint.c (set_breakpoint_condition): Update.
5304 (update_watchpoint): Update.
5305 (init_breakpoint_sal): Update
5306 (find_condition_and_thread): Update.
5307 (watch_command_1): Update.
5308 (update_breakpoint_locations): Update.
5309 * ada-lang.c (ada_read_renaming_var_value): Update.
5310 (create_excep_cond_exprs): Update.
5311
0bc3a05c
DE
53122012-06-27 Doug Evans <dje@google.com>
5313
5314 * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
5315 type units.
5316
4bdcc0c1
DE
53172012-06-26 Doug Evans <dje@google.com>
5318
5319 * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
5320 prototype.
5321 (error_check_comp_unit_head): New arg abbrev_section. All callers
5322 updated.
5323 (read_and_check_comp_unit_head): Ditto.
5324 (read_and_check_type_unit_head): Ditto.
5325
ee0bf529
SCR
53262012-06-26 Siva Chandra Reddy <sivachandra@google.com>
5327
5328 New attribute 'last' for gdb.Symtab_and_line.
5329 * NEWS (Python Scripting): Add entry about the new attribute.
5330 * python/py-symtab.c (salpy_get_last): New function which
5331 implements the get method for the 'last' attribute of
5332 gdb.Symtab_and_line.
5333 (sal_object_getset): Add entry for the 'last' attribute.
5334
1c658ad5
DE
53352012-06-26 Doug Evans <dje@google.com>
5336
09262596
DE
5337 * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
5338 (dwo_sections): Add macinfo, macro.
5339 (dwarf2_locate_dwo_sections): Watch for macro sections.
5340 (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
5341 All callers updated. Handle DWO files.
5342
45cfd468
DE
5343 * NEWS: Mention new options "set debug dwarf2-read" and
5344 "set debug symtab-create".
5345 * dwarf2read.c (dwarf2_read_debug): New static global.
5346 (dwarf2_build_psymtabs_hard): Add debugging printfs.
5347 (process_queue): Ditto.
5348 (process_full_comp_unit): Ditto.
5349 (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
5350 * elfread.c (elf_symfile_read): Add debugging printf.
5351 * minsyms.c (install_minimal_symbols): Ditto.
5352 * psymtab.c (allocate_psymtab): Ditto.
5353 * symfile.c (allocate_symtab): Ditto.
5354 * symtab.c (symtab_create_debug): New global.
5355 (_initialize_symtab): Add new option "set debug symtab-create".
5356 * symtab.h (symtab_create_debug): Declare.
5357
1c658ad5
DE
5358 * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
5359 (lookup_dwo_type_unit): Ditto.
5360
6fea9e18
L
53612012-06-26 Roland McGrath <roland@hack.frob.com>
5362 H.J. Lu <hongjiu.lu@intel.com>
5363
5364 * amd64-linux-nat.c: Include <sys/user.h>.
5365 (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
5366 if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
5367 HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
5368
5369 * configure.ac: Check if the fs_base and gs_base members of
5370 `struct user_regs_struct' exist.
5371 * config.in: Regenerated.
5372 * configure: Likewise.
5373
adb4fe3b
ME
53742012-06-25 Michael Eager <eager@eagercon.com>
5375
5376 PR python/14291
f782ad9b 5377 * python/python.c (gdbpy_write): Check for interrupted output.
adb4fe3b 5378
fc51cce1
MGD
53792012-06-25 Greta Yorsh <greta.yorsh@arm.com>
5380
5381 * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
5382 register as a stack alignment in ARM mode.
5383
40a73391
JK
53842012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
5385
5386 Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
5387 * gnulib/config.in: Regenerate.
5388 * gnulib/configure: Likewise.
5389 * gnulib/import/m4/extensions.m4: Update it.
5390 * gnulib/import/m4/gnulib-common.m4: Likewise.
5391 * gnulib/import/m4/memmem.m4: Likewise.
5392 * gnulib/import/m4/mmap-anon.m4: Likewise.
5393 * gnulib/import/m4/multiarch.m4: Likewise.
5394 * gnulib/import/stdint.in.h: Likewise.
5395
972daa01
YQ
53962012-06-24 Yao Qi <yao@codesourcery.com>
5397
5398 * corefile.c (write_memory_with_notification): New.
5399 * gdbcore.h: Declare write_memory_with_notification.
5400 * ada-lang.c (ada_value_assign): Replace 'write_memory' and
5401 'observer_notify_memory_changed' with 'write_memory_with_notification'.
5402 * valops.c (value_assign): Likewise.
5403 * python/py-inferior.c (infpy_write_memory): Call
5404 'write_memory_with_notification'.
5405
8d6e0714
JK
54062012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
5407
5408 * cc-with-index.sh: Use also -ex "set auto-load no".
5409
156942c7
DE
54102012-06-23 Doug Evans <dje@google.com>
5411
5412 PR 14125
5413 * NEWS: Document additions to .gdb_index.
5414 * dwarf2read.c: #include "gdb/gdb-index.h".
5415 (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
5416 (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
5417 (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
5418 (dwarf2_read_index): Recognize version 7.
5419 (dw2_do_expand_symtabs_matching): New args want_specific_block,
5420 block_kind, domain): All callers updated.
5421 (dw2_find_symbol_file): Handle new index CU values.
5422 (dw2_expand_symtabs_matching): Match symbol kind if requested.
5423 (add_index_entry): New args is_static, kind. All callers updated.
5424 (offset_type_compare, uniquify_cu_indices): New functions
5425 (symbol_kind): New function.
5426 (write_psymtabs_to_index): Remove duplicate CU values.
5427 (write_psymtabs_to_index): Write .gdb_index version 7.
5428
352b3eda
JB
54292012-06-22 Joel Brobecker <brobecker@adacore.com>
5430
5431 * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
5432 * configure: Regenerate.
5433
2678e2af
YQ
54342012-06-20 Yao Qi <yao@codesourcery.com>
5435
5436 * python/py-inferior.c: Update comments of infpy_read_memory
5437 and infpy_write_memory.
5438
95c391b6
TT
54392012-06-19 Tom Tromey <tromey@redhat.com>
5440
5441 PR exp/9514:
5442 * parser-defs.h (insert_type, insert_type_address_space): Declare.
5443 (push_type_address_space): Remove.
5444 * parse.c (insert_into_type_stack): New function.
5445 (insert_type): Likewise.
5446 (insert_type_address_space): Rename from push_type_address_space.
5447 Insert tp_space_identifier.
5448 * c-exp.y (ptr_operator): New production.
5449 (abs_decl): Use ptr_operator.
5450 (space_identifier): Call insert_type_address_space.
5451 (ptype): Don't use const_or_volatile_or_space_identifier.
5452 (const_or_volatile_noopt): Call insert_type.
5453 (conversion_type_id, conversion_declarator): New productions.
5454 (operator): Use conversion_type_id.
5455
6ac9ef80
DE
54562012-06-18 Doug Evans <dje@google.com>
5457
422d65e7
DE
5458 * symtab.h (minimal_symbol): New member created_by_gdb.
5459 * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
5460 created by gdb.
5461 * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
5462 (search_symbols): Call it instead of lookup_symbol.
5463 Skip symbols created by gdb. Only scan minsyms if nfiles == 0.
5464
49f6c839
DE
5465 * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
5466 Adjust address for DW_OP_GNU_addr_index.
5467 * dwarf2expr.h (dwarf_expr_context): Update comment.
5468 * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
5469 all callers updated. Handle TLS vars described with
5470 DW_OP_GNU_const_index.
5471 (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
5472 and DW_OP_GNU_const_index.
5473 * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
5474
6ac9ef80
DE
5475 * block.c (find_block_in_blockvector): Make explicit the fact that we
5476 ignore GLOBAL_BLOCK.
5477
4cd18215
TT
54782012-06-18 Tom Tromey <tromey@redhat.com>
5479
5480 * c-exp.y (operator): Remove trailing space after "delete" and
5481 "delete[]".
5482
a9b8d892
JK
54832012-06-18 Mark Kettenis <kettenis@gnu.org>
5484 Jan Kratochvil <jan.kratochvil@redhat.com>
5485
5486 Switch i386 and derived targets to ON_STACK.
5487 * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
5488 (amd64_dicos_init_abi): Remove its installment.
5489 * dicos-tdep.c (dicos_init_abi): Remove the
5490 set_gdbarch_call_dummy_location call. Update the comment here.
5491 * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
5492 (i386_dicos_init_abi): Remove its installment.
5493 * i386-tdep.c (i386_push_dummy_code): New function.
5494 (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
5495 i386_push_dummy_code.
5496
e2e4d78b
JK
54972012-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
5498
5499 Remove stale dummy frames.
5500 * breakpoint.c: Include dummy-frame.h.
5501 (longjmp_breakpoint_ops): New variable.
5502 (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
5503 bp_longjmp_call_dummy.
5504 (bpstat_what, bptype_string, print_one_breakpoint_location)
5505 (init_bp_location): Support bp_longjmp_call_dummy.
5506 (set_longjmp_breakpoint): Use longjmp_breakpoint_ops. Comment why.
5507 (set_longjmp_breakpoint_for_call_dummy)
5508 (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
5509 functions.
5510 (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
5511 * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy. Delete
5512 FIXME comment and extend the other comment for bp_call_dummy.
5513 (set_longjmp_breakpoint_for_call_dummy)
5514 (check_longjmp_breakpoint_for_call_dummy): New declarations.
5515 * dummy-frame.c: Include gdbthread.h.
5516 (pop_dummy_frame_bpt): New function.
5517 (pop_dummy_frame): Call pop_dummy_frame_bpt.
5518 (dummy_frame_discard): New function.
5519 (cleanup_dummy_frames): Update the comment about longjmps.
5520 * dummy-frame.h (dummy_frame_discard): New declaration.
5521 * gdbthread.h (struct thread_info): Extend initiating_frame comment.
5522 * infcall.c (call_function_by_hand): New variable longjmp_b. Call
5523 set_longjmp_breakpoint_for_call_dummy. Chain its breakpoints with BPT.
5524 * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
5525 Add case 4 comment. Call check_longjmp_breakpoint_for_call_dummy and
5526 keep_going if IS_LONGJMP and there is no other reason to stop.
5527
09d5912c
TT
55282012-06-18 Greta Yorsh <Greta.Yorsh@arm.com>
5529
5530 * remote-sim.c (sim_command_completer): Initialize
5531 variable 'result'.
5532
1788b2d3
JK
55332012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5534
5535 * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
5536 * dwarf2loc.c (call_site_parameter_matches): Support
5537 CALL_SITE_PARAMETER_PARAM_OFFSET.
5538 (needs_dwarf_reg_entry_value): Push stub value.
5539 * dwarf2read.c (read_call_site_scope): New variable origin. Support
5540 CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
5541 * gdbtypes.h (enum call_site_parameter_kind): New item
5542 CALL_SITE_PARAMETER_PARAM_OFFSET.
5543 (struct call_site.parameter.u): New field param_offset.
5544
24c5c679
JK
55452012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5546
5547 Code cleanup: Generalize call_site.parameter key.
5548 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
5549 variable dwarf_reg. New variable kind_u. Update parameters to
5550 push_dwarf_reg_entry_value.
5551 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5552 * dwarf2expr.h (enum call_site_parameter_kind)
5553 (union call_site_parameter_u): Forward declarations.
5554 (struct dwarf_expr_context_funcs): Update parameters and their
5555 description for push_dwarf_reg_entry_value.
5556 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5557 * dwarf2loc.c (call_site_parameter_matches): New function.
5558 (dwarf_expr_reg_to_entry_parameter): Update parameters and their
5559 description. Use call_site_parameter_matches.
5560 (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
5561 Update parameters and their description.
5562 (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
5563 New variable kind_u. Adjust the caller for updated parameters.
5564 (needs_dwarf_reg_entry_value): Update parameters.
5565 * dwarf2read.c (read_call_site_scope): New variable loc. Use it
5566 instead of attr. Update for the changed fields of struct
5567 call_site_parameter.
5568 * gdbtypes.h: Include dwarf2expr.h.
5569 (enum call_site_parameter_kind): New.
5570 (struct call_site.parameter): New field kind. Wrap dwarf_reg and
5571 fb_offset into new union u.
5572
ac142d96
L
55732012-06-16 H.J. Lu <hongjiu.lu@intel.com>
5574
5575 * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
5576 (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
5577 for x32.
5578
ba224c70
L
55792012-06-16 H.J. Lu <hongjiu.lu@intel.com>
5580
5581 * amd64-linux-nat.c (compat_x32_clock_t): New.
5582 (compat_x32_siginfo_t): Likewise.
5583 (compat_x32_siginfo_from_siginfo): Likewise.
5584 (siginfo_from_compat_x32_siginfo): Likewise.
5585 (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
5586 and siginfo_from_compat_x32_siginfo for x32.
5587
7ecbc825
HZ
55882012-06-15 Hui Zhu <hui_zhu@mentor.com>
5589
5590 * tracepoint.c (tfile_xfer_partial): Add a lseek.
5591
233dfcf0
L
55922012-06-15 H.J. Lu <hongjiu.lu@intel.com>
5593
5594 * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
5595 instead of gdbarch_ptr_bit.
5596 * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
5597 (amd64_supply_native_gregset): Likewise.
5598 (amd64_collect_native_gregset): Likewise.
5599 * amd64-tdep.c (amd64_supply_fxsave): Likewise.
5600 (amd64_supply_xsave): Likewise.
5601 (amd64_collect_fxsave): Likewise.
5602 (amd64_collect_xsave): Likewise.
5603
6da38f42
L
56042012-06-15 H.J. Lu <hongjiu.lu@intel.com>
5605
5606 * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
5607 (amd64_linux_read_description): Check DS segment register for
5608 x32 process.
5609
663b969e
TT
56102012-06-15 Tom Tromey <tromey@redhat.com>
5611
5612 * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
5613 init_cutu_and_read_dies.
5614
d6f05027
IS
56152012-06-15 Iain Sandoe <iain@codesourcery.com>
5616
5617 * MAINTAINERS (Write After Approval): Add myself to the list.
5618
6598ed07
TT
56192012-06-15 Tom Tromey <tromey@redhat.com>
5620
5621 * valops.c (value_find_oload_method_list): Now static.
5622 * value.h (value_find_oload_method_list): Don't declare.
5623
2b214ea6
TT
56242012-06-15 Tom Tromey <tromey@redhat.com>
5625
5626 * valops.c (find_overload_match): Use value_ind.
5627
a210c238
MR
56282012-06-15 Maciej W. Rozycki <macro@codesourcery.com>
5629
5630 * infrun.c (handle_inferior_event): Correct indentation.
5631
3771a44c
DE
56322012-06-14 Doug Evans <dje@google.com>
5633
5634 * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
5635 (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
5636 All uses updated.
5637 (decode_debug_loc_dwo_addresses): New arg "byte_order". All callers
5638 updated. Handle DEBUG_LOC_START_LENGTH.
5639 (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
5640 (loclist_describe_location): Ditto.
5641
1c5a993e
MR
56422012-06-14 Maciej W. Rozycki <macro@codesourcery.com>
5643
5644 PR backtrace/13866
5645 * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
5646 after hiding inline functions.
5647
0b155465
JB
56482012-06-13 Joel Brobecker <brobecker@adacore.com>
5649
5650 * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
5651 _initialize_inf_ttrace.
5652
45717bac
JB
56532012-06-13 Joel Brobecker <brobecker@adacore.com>
5654
5655 * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
5656 _initialize_hppa_hpux_nat.
5657
34370865
JB
56582012-06-13 Joel Brobecker <brobecker@adacore.com>
5659
5660 * remote-sim.c (sim_command_completer): Change type of return
5661 value to "VEC (char_ptr) *". Adjust implementation accordingly.
5662
284c5a60
MK
56632012-06-13 Mark Kettenis <kettenis@gnu.org>
5664 Jan Kratochvil <jan.kratochvil@redhat.com>
5665
5666 PR tdep/14222
5667 * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
5668 stack on a 16-byte boundary.
5669
2535757a
TT
56702012-06-13 Kaushik Srenevasan <kaushik@twitter.com>
5671
5672 * jit.c (finalize_symtab): Set function's return type to 'void' by
5673 default.
5674
fff4548b
MK
56752012-06-13 Mark Kettenis <kettenis@gnu.org>
5676 H.J. Lu <hongjiu.lu@intel.com>
5677
5a83521a
MK
5678 * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
5679 Move bits common to both the classic LP64 and the new x32 ILP32
5680 ABI here.
5681 (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
5682 (amd64_x32_linux_init_abi): New function.
5683 (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
5684 subtype.
5685
fff4548b
MK
5686 * i386-tdep.h (i386_pseudo_register_name): New prototype.
5687 * i386-tdep.c (i386_pseudo_register_name): Make public.
5688 * amd64-tdep.h (amd64_x32_init_abi): New prototype.
5689 * amd64-tdep.c (amd64_dword_names): Add "eip".
5690 (amd64_x32_pseudo_register_type): New function
5691 (amd64_x32_init_abi): New function.
5692
dd80ea3c
JK
56932012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5694
5695 PR build/14003
5696 * inferior.h (struct inferior_suspend_state): Comment out.
5697 (struct inferior): Comment out the field suspend.
5698 * infrun.c (struct infcall_suspend_state): Comment out the field
5699 inferior_suspend.
5700 (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
5701 out its assignment.
5702
50af5481
JK
57032012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5704
5705 PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
5706 * c-exp.y (classify_inner_name): Remove caller assumptions in the
5707 function comment. Return ERROR for unresolved cases. Implement
5708 returning proper NAME.
5709 (yylex): Accept also NAME from classify_inner_name.
5710 * cp-namespace.c (cp_lookup_nested_type): Rename to ...
5711 (cp_lookup_nested_symbol): ... here. Return any found symbol, not just
5712 LOC_TYPEDEF type.
5713 * cp-support.h (cp_lookup_nested_type): Update its declaration.
5714
d55637df
TT
57152012-06-13 Tom Tromey <tromey@redhat.com>
5716
5717 * breakpoint.c (condition_completer): New function.
5718 (_initialize_breakpoint): Use it.
5719 * value.c (complete_internalvar): New function.
5720 * value.h (complete_internalvar): Declare.
5721
49c4e619
TT
57222012-06-13 Tom Tromey <tromey@redhat.com>
5723
5724 * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
5725 * breakpoint.c (catch_syscall_completer): Return a VEC.
5726 * cli/cli-cmds.c (complete_command): Update.
5727 * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
5728 (complete_on_enum): Likewise.
5729 * command.h: Include gdb_vecs.h.
5730 (completer_ftype): Change return type.
5731 (complete_on_cmdlist, complete_on_enum): Likewise.
5732 * completer.c (noop_completer, filename_completer)
5733 (location_completer): Return a VEC.
5734 (add_struct_fields): Remove 'nextp' argument. Change 'output'
5735 to a VEC.
5736 (expression_completer, complete_line_internal, complete_line)
5737 (command_completer): Return a VEC.
5738 (gdb_completion_word_break_characters, line_completion_function):
5739 Update.
5740 * completer.h: Include gdb_vecs.h.
5741 (complete_line, noop_completer, filename_completer)
5742 (expression_completer, location_completer, command_completer):
5743 Update.
5744 * f-lang.c (f_word_break_characters): Return a VEC.
5745 * interps.c (interpreter_completer): Return a VEC.
5746 * language.h (struct language_defn)
5747 <la_make_symbol_completion_list>: Return a VEC.
5748 * python/py-cmd.c (cmdpy_completer): Return a VEC.
5749 * symtab.c (free_completion_list): Take a VEC.
5750 (return_val_size, return_val_index): Remove.
5751 (return_val): Now a VEC.
5752 (completion_list_add_name): Update.
5753 (default_make_symbol_completion_list_break_on)
5754 (default_make_symbol_completion_list, make_symbol_completion_list)
5755 (make_symbol_completion_list_fn, make_file_symbol_completion_list):
5756 Return a VEC.
5757 (add_filename_to_list): Update.
5758 (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
5759 <list>: Now a VEC.
5760 (maybe_add_partial_symtab_filename): Update.
5761 (make_source_files_completion_list): Return a VEC.
5762 * symtab.h (default_make_symbol_completion_list_break_on)
5763 (default_make_symbol_completion_list, make_symbol_completion_list)
5764 (make_symbol_completion_list_fn, make_file_symbol_completion_list)
5765 (make_source_files_completion_list): Update.
5766
625e8578
TT
57672012-06-13 Tom Tromey <tromey@redhat.com>
5768
5769 * breakpoint.c (add_catch_command): Use completer_ftype.
5770 * breakpoint.h: Include command.h.
5771 (add_catch_command): Use completer_ftype.
5772 * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
5773 * cli/cli-decode.h (struct cmd_list_element) <completer>:
5774 Use completer_ftype.
5775 * command.h (completer_ftype): New typedef.
5776 (set_cmd_completer): Use it.
5777 * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
5778 completer_ftype.
5779
5eb3b062
PA
57802012-06-13 Pedro Alves <palves@redhat.com>
5781
5782 Partial revert of previous change.
5783
5784 * serial.c (scb_base): New global.
5785 (serial_for_fd): New.
5786 (serial_open, serial_fdopen_ops): Link new serial in open serials
5787 chain.
5788 (do_serial_close): Unlink serial from the open serials chain.
5789
8b3ee56d
PA
57902012-06-12 Pedro Alves <palves@redhat.com>
5791
5792 * infrun.c (infrun_thread_stop_requested_callback): Don't switch
5793 threads here.
5794 (prepare_for_detach): No longer context switch here in non-stop
5795 mode.
5796 (fetch_inferior_event): Ditto.
5797 (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
5798 to the event thread before removing breakpoints. Switch to the
5799 event thread before inserting breakpoints and resuming.
5800 (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
5801 event thread before resuming.
5802 (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
5803 Switch to the event thread before removing breakpoints.
5804
5d60742e
EZ
58052012-06-12 Eli Zaretskii <eliz@gnu.org>
5806
5807 * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
5808 special characters correctly for the Windows shells. See
5809 http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
5810 report.
5811 [!__MINGW32__]: Remove extra double quote character from special
5812 characters.
5813
a6feecf7
SS
58142012-06-11 Stan Shebs <stan@codesourcery.com>
5815
5816 * ui-out.h: Remove #if 0 declarations.
5817 * ui-out.c: Remove #if 0 functions.
5818
ddefb60f
PA
58192012-06-11 Pedro Alves <palves@redhat.com>
5820
5821 * ser-base.c (run_async_handler_and_reschedule): New.
5822 (fd_event, push_event): Use it.
5823 * serial.c (serial_open, serial_fdopen_ops): Set the initial
5824 reference count to 1.
5825 (do_serial_close): Set the bufp field to NULL. Use serial_unref
5826 instead of xfree.
5827 (serial_is_open, serial_ref, serial_unref): New.
5828 * serial.h (serial_open): Adjust comment.
5829 (serial_is_open): Declare.
5830 (serial_close): Adjust comment.
5831 (serial_ref, serial_unref) Declare.
5832 (struct serial): New field 'refcnt'.
5833
d5ad6aa5
PA
58342012-06-11 Pedro Alves <palves@redhat.com>
5835
5836 Remove #if 0'd "connect" command, and unnecessary associated
5837 refcounting and serial reuse bits.
5838
5839 * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
5840 * serial.c (last_serial_opened): Delete.
5841 (scb_base): Delete.
5842 (serial_open): Adjust.
5843 (serial_for_fd): Delete.
5844 (serial_fdopen_ops, do_serial_close): Adjust.
5845 (serial_fdopen_ops): Adjust.
5846
318aa544
PA
58472012-06-11 Pedro Alves <palves@redhat.com>
5848
5849 * serial.c (do_serial_close): Remove early return when SCB is
5850 null.
5851
07261596
TT
58522012-06-11 Tom Tromey <tromey@redhat.com>
5853
5854 * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
5855
cc80f267
JK
58562012-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5857
5858 Fix regression by the "ambiguous linespec" series.
5859 * breakpoint.c (parse_breakpoint_sals): New variable cursal. Use
5860 get_last_displayed_symtab and get_last_displayed_line and depending
5861 on CURSAL.
5862
356d9f9d
TT
58632012-06-11 Tom Tromey <tromey@redhat.com>
5864
5865 * dwarf2read.c (dw2_get_primary_filename_reader): New function.
5866 (dw2_find_symbol_file): Use it.
5867
232b8704
ME
58682012-06-11 Michael Eager <eager@eagercon.com>
5869
5870 * mips-linux-tdep.c (mips_gdb_signal_from_target): New
5871 * mips-linux-tdep.h (mips_signals): New
5872
e81a37f7
TT
58732012-06-11 Tom Tromey <tromey@redhat.com>
5874
5875 * infrun.c (handle_inferior_event)
5876 <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
5877 breakpoint.
5878 <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
5879 exception logic in all cases. Update comments.
5880 (insert_longjmp_resume_breakpoint): Set the exception resume
5881 breakpoint.
5882
2e81047f
MR
58832012-06-11 Maciej W. Rozycki <macro@codesourcery.com>
5884
5885 * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
5886
4e32eda7
SCR
58872012-06-09 Siva Chandra Reddy <sivachandra@google.com>
5888
5889 * valarith.c (binop_types_user_defined_p): Fix a typo.
5890
18648a37 58912012-06-08 Yao Qi <yao@codesourcery.com>
f782ad9b 5892 Chung-Lin Tang <cltang@codesourcery.com>
18648a37
YQ
5893
5894 * arch-utils.c (default_return_in_first_hidden_param_p): New.
5895 * arch-utils.h: Declare.
5896 * gdbarch.sh: Add return_in_first_hidden_param_p.
5897 * gdbarch.c, gdbarch.h: Regenerated.
5898 * infcall.c (call_function_by_hand): Call
5899 gdbarch_return_in_first_hidden_param_p instead of
5900 language_pass_by_reference.
5901
5902 * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
5903 (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
5904 * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
5905 (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
5906 * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
5907 `cplus_return_struct_by_reference'.
5908 (tic6x_return_value): Handle language cplusplus.
5909 (tic6x_return_in_first_hidden_param_p): New.
5910 (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
5911
034e5797
DE
59122012-06-07 Doug Evans <dje@google.com>
5913
5914 * dwarf2read.c (dwarf2_cu): Add comment.
5915
6a00aa1e
MR
59162012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
5917
5918 * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
5919 variable.
5920 (mips_eabi_push_dummy_call): Likewise.
5921 (mips_n32n64_push_dummy_call): Likewise.
5922 (mips_o32_push_dummy_call): Likewise.
5923 (mips_o64_push_dummy_call): Likewise.
5924
eaa05d59
MR
59252012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
5926
5927 * mips-tdep.c (mips_convert_register_p): Correct coding style.
5928
de13fcf2
MR
59292012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
5930
5931 * mips-tdep.c (mips_pseudo_register_type): Use
5932 mips_float_register_p.
5933
c3a01a22
PA
59342012-06-06 Pedro Alves <palves@redhat.com>
5935
5936 * infrun.c (handle_inferior_event): Remove calls to
5937 reinit_frame_cache that follow a context_switch call.
5938
d25f45d9
PA
59392012-06-06 Pedro Alves <palves@redhat.com>
5940
5941 * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
5942 context_switch and remove stale comment.
5943
359f5fe6
PA
59442012-06-06 Pedro Alves <palves@redhat.com>
5945
5946 * infrun.c (struct execution_control_state): Remove
5947 `new_thread_event' field.
5948 (handle_inferior_event): Simplify new threads handling; don't
5949 resume the inferior if we find a new thread.
5950
2d4c29c5
TS
59512012-06-06 Thomas Schwinge <thomas@codesourcery.com>
5952
5953 * NEWS: Document the deprecation of SH's 'regs' command.
5954 * inferior.h (all_registers_info): Add function declaration.
5955 * sh-tdep.c (sh_show_regs): Remove variable.
5956 (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
5957 (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
5958 (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
5959 (sh_show_regs_command): Remove functions.
5960 (sh_gdbarch_init): Don't set sh_show_regs.
5961 (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
5962 'info all-registers'.
5963 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
5964 (sh64_show_regs): Remove functions.
5965 * sh64-tdep.h (sh64_show_regs): Remove function declaration.
5966
f5f1cdb6
JK
59672012-06-06 Jan Kratochvil <jan.kratochvil@redhat.com>
5968
5969 * configure.ac: Move development=true below AC_INIT.
5970 * configure: Regenerate.
5971
bf6309af
SS
59722012-06-05 Stan Shebs <stan@codesourcery.com>
5973
5974 * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
5975 gdb_stdout.
5976
45aa4659
JK
59772012-06-05 Siddhesh Poyarekar <siddhesh@redhat.com>
5978
5979 * corefile.c (read_memory, read_stack, write_memory): Accept LEN
5980 argument as ssize_t.
5981 * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
5982 * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
5983 * target.c (target_read_stack, target_write_memory)
5984 (target_write_raw_memory): Likewise.
5985 * target.h (target_read_stack, target_write_memory)
5986 (target_write_raw_memory): Likewise.
5987
1b162304
JK
59882012-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5989
5990 * symfile-mem.c: Change gdb_static_assert to ssize_t.
5991 (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
5992 * target.c (target_read_memory): Change LEN to ssize_t.
5993 * target.h (target_read_memory): Change LEN to ssize_t.
5994
8556afb4
PA
59952012-06-05 Pedro Alves <palves@redhat.com>
5996
5997 PR backtrace/13866
5998
5999 * breakpoint.c (until_break_command): Only fetch the selected
6000 frame after decode_line_1.
6001
fb139f32
PA
60022012-06-05 Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
6003
6004 * solib-svr4.c (enable_break): Don't fallback to setting the solib
6005 event breakpoint at _start, __start or main if a program
6006 interpreter is not found.
6007
a8e1bb34
JB
60082012-06-05 Joel Brobecker <brobecker@adacore.com>
6009
6010 * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
6011 Add declaration.
6012 * windows-tdep.c: #include "objfiles.h".
6013 (windows_iterate_over_objfiles_in_search_order): New function.
6014 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
6015 iterate_over_objfiles_in_search_order gdbarch method to
6016 windows_iterate_over_objfiles_in_search_order.
6017 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
6018
19630284
JB
60192012-06-05 Joel Brobecker <brobecker@adacore.com>
6020
6021 * gdbarch.sh: Add generation of
6022 "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
6023 gdbarch.h. Add include of "objfiles.h" in gdbarch.c.
6024 (iterate_over_objfiles_in_search_order): New gdbarch method.
6025 * gdbarch.h, gdbarch.c: Regenerate.
6026 * objfiles.h (default_iterate_over_objfiles_in_search_order):
6027 Add declaration.
6028 * objfiles.c (default_iterate_over_objfiles_in_search_order):
6029 New function.
6030 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
6031 out of lookup_symbol_aux_symtabs.
6032 (lookup_symbol_aux_symtabs): Replace extracted-out code by
6033 call to lookup_symbol_aux_objfile.
6034 (struct global_sym_lookup_data): New type.
6035 (lookup_symbol_global_iterator_cb): New function.
6036 (lookup_symbol_global): Search for symbol using
6037 gdbarch_iterate_over_objfiles_in_search_order and
6038 lookup_symbol_global_iterator_cb.
6039 * findvar.c (struct minsym_lookup_data): New type.
6040 (minsym_lookup_iterator_cb): New function.
6041 (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
6042 symbol's address via gdbarch_iterate_over_objfiles_in_search_order
6043 and minsym_lookup_iterator_cb.
6044
67ff19f7
JB
60452012-06-05 Joel Brobecker <brobecker@adacore.com>
6046
6047 Revert the following patch:
6048 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
6049 try locating the symbol in the symbol's own objfile first, before
6050 extending the search to all objfiles.
6051 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
6052 out of lookup_symbol_aux_symtabs.
6053 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
6054 Replace extracted-out code by call to lookup_symbol_aux_objfile.
6055 Do not search EXCLUDE_OBJFILE.
6056 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
6057 (lookup_symbol_global): Search for matches in the block's objfile
6058 first, before searching all other objfiles.
6059
ccab2054
JB
60602012-06-05 Joel Brobecker <brobecker@adacore.com>
6061
6062 * breakpoint.c (find_condition_and_thread): Stop parsing
6063 as soon as the first invalid keyword is found.
6064
e23d4a9c
JB
60652012-06-05 Joel Brobecker <brobecker@adacore.com>
6066
6067 * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
6068
70160166
JB
60692012-06-05 Joel Brobecker <brobecker@adacore.com>
6070
6071 * config/djgpp/djcheck.sh: Add copyright header.
6072
399501a5
JB
60732012-06-05 Joel Brobecker <brobecker@adacore.com>
6074
6075 * copyright.py (update_files, main): Fix path to update-copyright
6076 script.
6077
3770a159
JB
60782012-06-05 Joel Brobecker <brobecker@adacore.com>
6079
6080 * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
6081 (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
6082 for which a reminder to update by hand is printed.
6083
4aad0dfc
DE
60842012-06-04 Doug Evans <dje@google.com>
6085
6086 * buildsym.c (make_blockvector): Add comment.
6087
1f8cf220
PA
60882012-06-04 Pedro Alves <palves@redhat.com>
6089
6090 * arch-utils.c (default_gdb_signal_from_target): Delete.
6091 * arch-utils.h (default_gdb_signal_from_target): Delete.
6092 * corelow.c (core_open) <signal mapping>: Extended comment. Check
6093 gdbarch_gdb_signal_from_target_p.
6094 * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
6095 predicate).
6096 * gdbarch.h: Regenerate.
6097 * gdbarch.c: Regenerate.
6098
86b49880
PA
60992012-06-04 Pedro Alves <palves@redhat.com>
6100
6101 * gdbarch.sh (gdb_signal_from_target): Mention that the
6102 implementation of the method must be host independent.
6103 * gdbarch.h: Regenerate.
6104
fe78531d
JK
61052012-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
6106
6107 * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
6108 parameters.
6109 (target_read_memory_bfd): New function.
6110 (symbol_file_add_from_memory): Use it.
6111
d790cf0a
DE
61122012-06-03 Doug Evans <dje@google.com>
6113
78e5175a
DE
6114 * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
6115 of primary symtab.
6116 (basic_lookup_transparent_type): Ditto.
6117
d790cf0a
DE
6118 * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
6119 (ALL_PRIMARY_SYMTABS): Use it.
6120 (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
6121 * dwarf2read.c (dw2_find_symbol_file): Ditto.
6122 * linespec.c (iterate_over_all_matching_symtabs): Ditto.
6123 * symtab.c (lookup_symbol_aux_objfile): Ditto.
6124 (basic_lookup_transparent_type): Ditto.
6125
c6e5ee5e
SDJ
61262012-06-02 Sergio Durigan Junior <sergiodj@redhat.com>
6127
6128 * symtab.c (symbol_demangled_name): New variable `dem_name'. Use
6129 it to optimize resolution of demangled name.
6130
a68ffae9
JK
61312012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
6132
6133 * configure.ac (development): Define new variable.
6134 Call AC_CHECK_LIB for mcheck if $development.
6135 (ERROR_ON_WARNING): Enable it by default only if $development.
6136 * config.in: Regenerate.
6137 * configure: Regenerate.
6138
5299c1c4
JK
61392012-06-01 Siddhesh Poyarekar <siddhesh@redhat.com>
6140
6141 * target.c (target_read_memory): Make LEN argument as size_t.
6142 * target.h (target_read_memory): Likewise.
6143
61442012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
7c71816c
JK
6145
6146 * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
6147
0c56f59b
EBM
61482012-05-31 Edjunior Machado <emachado@linux.vnet.ibm.com>
6149
6150 * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
6151 BookE interface for PowerPC server processors if not available
6152 in the Linux Kernel.
6153
71bdabee
KS
61542012-05-31 Keith Seitz <keiths@redhat.com>
6155
6156 * linespec.c (decode_objc): Add cleanup to free
6157 INFO.FILE_SYMTABS.
6158 (find_linespec_symbols): Add cleanup to free CLASSES.
6159 * symfile.c (find_separate_debug_file_by_debuglink): Add
6160 cleanup to free DEBUGLINK.
6161 * ui-out.c (clear_header_list): No need to check if
6162 HEADER_NEXT.COLHDR is NULL.
6163 Free HEADER_NEXT.COL_NAME.
6164
acbd605d
MGD
61652012-05-31 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6166
6167 * ada-lang.c (standard_lookup): Prevent uninitialized variable
6168 warning.
6169
65662cde
PA
61702012-05-30 Jeff Kenton <jkenton@tilera.com>
6171
6172 * configure.host (gdb_host_cpu): Handle tilegx*.
6173 (gdb_host): Handle tilegx-*-linux*.
6174 * tilegx-linux-nat.c: New file.
6175 * config/tilegx/linux.mh: New file.
6176
ade64f0e
PA
61772012-05-30 Jeff Kenton <jkenton@tilera.com>
6178
6179 * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
6180 tilegx-linux-tdep.o.
6181 (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
6182 tilegx-linux-tdep.c.
6183 * configure.tgt: Handle tilegx-*-linux*.
6184 * tilegx-tdep.h: New file.
6185 * tilegx-tdep.c: New file.
6186 * tilegx-linux-tdep.c: New file.
6187 * regformats/reg-tilegx.dat: New file.
6188
bb08bdbd
EBM
61892012-05-30 Edjunior Machado <emachado@linux.vnet.ibm.com>
6190
6191 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
6192 accounting of hw watchpoints on ppc.
6193
ebd86fb5
TJB
61942012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
6195
6196 * source.c (openp): Expand tilde in path entries.
6197
0a0edcd5
DE
61982012-05-29 Doug Evans <dje@google.com>
6199
98cc87bd
DE
6200 * buildsym.c (block_compar): Fix comment.
6201 (end_symtab): Fix and clarify some comments.
6202
0a0edcd5
DE
6203 * stabsread.h (cleanup_undefined_stabs_types): Renamed from
6204 cleanup_undefined_types.
6205 * stabsread.c (cleanup_undefined_stabs_types): Ditto.
6206 All callers updated.
6207
6f0c7050
TT
62082012-05-29 Tom Tromey <tromey@redhat.com>
6209
6210 * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
6211 fails.
6212 * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
6213 * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
6214 fails.
6215 * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
6216 fails.
6217
ec95993c
TG
62182012-05-29 Tristan Gingold <gingold@adacore.com>
6219
6220 * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
6221 (struct darwin_info): ... New struct.
6222 (solib_darwin_pspace_data): New variable.
6223 (darwin_pspace_data_cleanup): New function.
6224 (get_darwin_info): Likewise.
6225 (darwin_dyld_version_ok, darwin_load_image_infos)
6226 (darwin_solib_get_all_image_info_addr_at_init)
6227 (darwin_solib_read_all_image_info_addr): Add info argument.
6228 Adjust code.
6229 (darwin_current_sos): Use per pspace structure.
6230 (darwin_solib_create_inferior_hook): Likewise.
6231 (darwin_clear_solib): Likewise.
6232 (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
6233
ae25568b
PA
62342012-05-28 Pedro Alves <palves@redhat.com>
6235
6236 * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
6237 block that uses them. Clear ecss before handling each event.
6238
0c5bf5a9
JK
62392012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
6240
6241 * solib-svr4.c (svr4_current_sos): New comment on
6242 svr4_current_sos_via_xfer_libraries fall back.
6243
bfb05775
JK
62442012-05-24 Jan Kratochvil <jan.kratochvil@redhat.com>
6245
6246 * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best. Use
6247 it as a fallback for TYPE_IS_OPAQUE.
6248 * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
6249 symbols for lookup_symbol.
6250
685b1105
JK
62512012-05-24 John Steele Scott <toojays@toojays.net>
6252
6253 PR symtab/13277: Resolving opaque structures in ICC generated binaries.
6254 * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
6255 (producer_is_gxx_lt_4_6): Move the checking and caching to...
6256 (check_producer): ... this new function, which also checks for ICC
6257 and caches the result.
6258 (producer_is_icc): New function.
6259 (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
6260 producer was ICC.
6261
22203bbf
PA
62622012-05-24 Pedro Alves <palves@redhat.com>
6263
6264 PR gdb/7205
6265
6266 * arch-utils.c (default_gdb_signal_to_host): Rename to ...
6267 (default_gdb_signal_to_target): ... this. Add comment.
6268 (default_gdb_signal_from_host): Rename to ...
6269 (default_gdb_signal_from_target): ... this. Add comment.
6270 * arch-utils.h (default_gdb_signal_to_host): Rename to ...
6271 (default_gdb_signal_to_target): ... this.
6272 (default_gdb_signal_from_host): Rename to ...
6273 (default_gdb_signal_from_target): ... this.
6274 * corelow.c (core_open): Adjust to naming change. Replace comment.
6275 * gdbarch.sh (gdb_signal_from_host): Rename to ...
6276 (gdb_signal_from_target): ... this. Adjust to
6277 default_gdb_signal_from_host naming change. Extend comment.
6278 (gdb_signal_to_host): Rename to ...
6279 (gdb_signal_to_target): ... this. Adjust to
6280 default_gdb_signal_to_host naming change.
6281 * gdbarch.h, gdbarch.c: Renegerate.
6282
a493e3e2
PA
62832012-05-24 Pedro Alves <palves@redhat.com>
6284
6285 PR gdb/7205
6286
f782ad9b 6287 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
a493e3e2 6288
2ea28649
PA
62892012-05-24 Pedro Alves <palves@redhat.com>
6290
6291 PR gdb/7205
6292
6293 Replace target_signal with gdb_signal throughout.
6294
b09846a9
PA
62952012-05-24 Pedro Alves <palves@redhat.com>
6296
6297 PR tui/14159
6298
6299 * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
6300 string, instead of reusing the va_list argument.
6301
e77c107e
TT
63022012-05-24 Tom Tromey <tromey@redhat.com>
6303
6304 * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
6305 Remove.
6306
9fccedf7
DE
63072012-05-23 Doug Evans <dje@google.com>
6308
d50bd42b
DE
6309 * symtab.c (search_symbols): Formatting fixes.
6310 (print_symbol_info): Formatting fixes.
6311
9fccedf7
DE
6312 * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
6313 int64_t change to leb128 API.
6314 (read_encoded_value, decode_frame_entry_1): Ditto.
6315 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
6316 (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
6317 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6318 (execute_stack_op): Ditto.
6319 * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
6320 (safe_read_uleb128, safe_read_sleb128): Ditto.
6321 * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
6322 (dwarf2_compile_expr_to_ax): Ditto.
6323 (locexpr_describe_location_piece): Ditto.
6324 (disassemble_dwarf_expression): Ditto.
6325 (locexpr_describe_location_1): Ditto.
6326
f3e0e960
SS
63272012-05-23 Stan Shebs <stan@codesourcery.com>
6328 Kwok Cheung Yeung <kcy@codesourcery.com>
6329
6330 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
6331 (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
6332 (mi-cmd-info.o): New rule.
6333 * osdata.h (info_osdata_command): New declaration.
6334 * osdata.c (info_osdata_command): Change to non-static.
6335 * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
6336 * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
6337 * mi/mi-cmd-info.c: New file.
6338
c51fe631
DE
63392012-05-23 Doug Evans <dje@google.com>
6340
71cddcc1
DE
6341 * symtab.c (search_symbols): Pass NULL for file_matcher to
6342 expand_symtabs_matching if there are no files to match.
6343
c51fe631
DE
6344 * gdbtypes.c (lookup_typename): Simplify.
6345
a79378d4
PA
63462012-05-23 Pedro Alves <palves@redhat.com>
6347
6348 * arch-utils.h (default_target_signal_to_host): Delete.
6349 * arch-utils.c (default_target_signal_to_host): Delete.
6350 * gdbarch.sh (target_signal_to_host): Remove.
6351 * gdbarch.h, gdbarch.c: Regenerate.
6352
f664829e
DE
63532012-05-22 Doug Evans <dje@google.com>
6354
6355 * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
6356 "const gdb_byte *".
6357 (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
6358 (execute_cfa_program): Update to match API of leb128 functions.
6359 (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
6360 "const gdb_byte *".
6361 (read_unsigned_leb128, read_signed_leb128): Delete.
6362 (read_initial_length): Change type of buf argument to
6363 "const gdb_byte *".
6364 (read_encoded_value): Update to match API of leb128 functions.
6365 (decode_frame_entry): Change result to "const gdb_byte *", and
6366 similarly for "start" parameter.
6367 (decode_frame_entry_1): Ditto. Use new leb128 reader functions.
6368 (dwarf2_build_frame_info): Change local frame_ptr to
6369 "const gdb_byte *".
6370 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
6371 read_uleb128, read_sleb128. All callers updated.
6372 (safe_skip_leb128): New function.
6373 (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
6374 Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
6375 (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
6376 functions. Call gdb_read_uleb128, gdb_read_sleb128 instead of
6377 read_uleb128, read_sleb128.
6378 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6379 (execute_stack_op): Update to match API of leb128 functions.
6380 * dwarf2expr.h: #include "leb128.h".
6381 (read_uleb128, read_sleb128): Delete.
6382 (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
6383 (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
6384 * dwarf2loc.c (debug_loc_kind): New enum.
6385 (decode_debug_loc_addresses): New function.
6386 (decode_debug_loc_dwo_addresses): New function.
6387 (dwarf2_find_location_expression): Rewrite.
6388 (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
6389 (locexpr_describe_location_piece): Ditto.
6390 (disassemble_dwarf_expression): Ditto.
6391 (locexpr_describe_location_1): Ditto.
6392 (loclist_describe_location): Rewrite.
6393 * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
6394 * dwarf2read.c (die_reader_specs): New member "buffer_end".
6395 (dwarf2_section_buffer_overflow_complaint): Renamed from
6396 dwarf2_macros_too_long_complaint. All callers updated.
6397 (skip_leb128): Delete.
6398 (init_cu_die_reader): Initialize reader->buffer_end.
6399 (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
6400 (skip_form_bytes): New arg buffer_end. All callers updated.
6401 Replace call to skip_leb128 with gdb_skip_leb128.
6402 (skip_unknown_opcode): New arg mac_end. All callers updated.
6403 (fill_in_loclist_baton): Initialize baton->from_dwo.
6404
837a1b32
MR
64052012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
6406
6407 * mips-linux-nat.c (mips_linux_read_description): Use a more
6408 verbose error message.
6409
d0e64392
MR
64102012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
6411
6412 * NEWS: Add MIPS/Linux DSP support.
6413 * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
6414 (SIGCONTEXT_DSPCTL): New macro.
6415 (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
6416 (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
6417 (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
6418 (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
6419 (N64_SIGCONTEXT_HI3): Likewise.
6420 (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
6421 (N64_SIGCONTEXT_LO3): Likewise.
6422 (N64_SIGCONTEXT_DSPCTL): Likewise.
6423 (N64_SIGCONTEXT_FPCSR): Clarify definition.
6424 (mips_linux_o32_sigframe_init): Handle DSP registers.
6425 (mips_linux_n32n64_sigframe_init): Likewise.
6426
8bea7ed1
PM
64272012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
6428
6429 * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
6430 call to abort.
6431
dab06dbe
PA
64322012-05-22 Pedro Alves <palves@redhat.com>
6433
6434 * target.h (store_waitstatus): Move declaration ...
6435 * inf-child.h (store_waitstatus): ... here.
6436 * target.c: Move inclusion of gdb_wait.h, and ...
6437 (store_waitstatus): ... this ...
6438 * inf-child.c: ... here.
6439 * linux-nat.c: Include inf-child.h.
6440 * rs6000-nat.c: Include inf-child.h.
6441 * spu-linux-nat.c: Include inf-child.h.
6442
43011e52
PM
64432012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
6444
6445 * tracepoint.c (start_tracing): Add missing i18n markup.
6446 (stop_tracing, set_trace_user): Ditto.
6447 (set_trace_notes, set_trace_stop_notes): Ditto.
6448
b1af9e97
TT
64492012-05-21 Tom Tromey <tromey@redhat.com>
6450
6451 PR c++/7173:
6452 * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
6453 types.
6454 * value.h (value_cast_pointers): Update.
6455 * valops.c (value_cast_pointers): Add 'subclass_check' argument.
6456 (value_cast): Update.
6457 (update_search_result): New function.
6458 (do_search_struct_field): New, from search_struct_field. Check
6459 for ambiguous results.
6460 (search_struct_field): Rewrite.
6461 * infcall.c (value_arg_coerce): Update.
6462 * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
6463 value_cast_pointers.
6464 * ada-lang.c (ada_convert_actual): Update.
6465
e9e5e6b3
TT
64662012-05-21 Tom Tromey <tromey@redhat.com>
6467
6468 * macroexp.c (macro_stringify): Terminate the string.
6469
1564a261
JK
64702012-05-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6471
6472 * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
6473 Describe it.
6474 * auto-load.c (auto_load_expand_dir_vars): New function.
6475 (auto_load_safe_path_vec_update): Use it, remove the
6476 substitute_path_component call thanks to it.
6477 (auto_load_objfile_script): Remove the debug_file_directory processing.
6478 Use auto_load_expand_dir_vars, remove the substitute_path_component
6479 call thanks to it.
6480 * configure: Regenerate.
6481 * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
6482 path. Escape $ also for $debugdir.
6483 (--with_auto_load_safe_path): Escape $ also for $debugdir.
6484 * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
6485
a3ec0bb1
DE
64862012-05-20 Doug Evans <dje@google.com>
6487
6488 * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
6489 before use. Check for symtab->includes == NULL before scanning it.
6490
d467df4e
MR
64912012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6492
6493 * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
6494
4cc0665f
MR
64952012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6496
6497 * NEWS: Add microMIPS support and "set mips compression",
6498 "show mips compression" commands.
6499 * mips-tdep.h (mips_isa): New enum.
6500 (gdbarch_tdep): Add mips_isa.
6501 (mips_pc_is_mips16): Update prototype.
6502 (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
6503 * mips-tdep.c (mips_compression_mips16): New variable.
6504 (mips_compression_micromips): Likewise.
6505 (mips_compression_strings): Likewise.
6506 (mips_compression_string): Likewise.
6507 (is_mips16_isa, is_micromips_isa): New functions.
6508 (is_mips16_addr): Rename to...
6509 (is_compact_addr): ... this.
6510 (unmake_mips16_addr): Likewise to...
6511 (unmake_compact_addr): ... this.
6512 (make_mips16_addr): Likewise to...
6513 (make_compact_addr): ... this.
6514 (is_mips_addr, is_mips16_addr, is_micromips_addr): New
6515 functions.
6516 (mips_elf_make_msymbol_special): Handle microMIPS code.
6517 (msymbol_is_special): Rename to...
6518 (msymbol_is_mips16): ... this.
6519 (mips_make_symbol_special, mips_pc_is_mips16): Update
6520 accordingly.
6521 (msymbol_is_mips, msymbol_is_micromips): New functions.
6522 (mips16_to_32_reg): Rename to...
6523 (mips_reg3_to_reg): ... this.
6524 (mips_pc_is_mips, mips_pc_is_micromips): New functions.
6525 (mips_pc_isa): Likewise.
6526 (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
6527 code.
6528 (mips_fetch_instruction): Pass return status instead of printing
6529 an error message if requested. Handle microMIPS code. Bail out
6530 on an invalid ISA.
6531 (micromips_op): New macro.
6532 (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
6533 (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
6534 (b6s4_op, b7s3_reg): Likewise.
6535 (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
6536 (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
6537 (mips_insn_size): New function.
6538 (mips32_next_pc): Update mips_fetch_instruction call.
6539 (micromips_relative_offset7): New function.
6540 (micromips_relative_offset10): Likewise.
6541 (micromips_relative_offset16): Likewise.
6542 (micromips_pc_insn_size): Likewise.
6543 (micromips_bc1_pc): Likewise.
6544 (micromips_next_pc): Likewise.
6545 (unpack_mips16): Update mips_fetch_instruction call.
6546 (extended_mips16_next_pc): Update according to change to
6547 mips16_to_32_reg.
6548 (mips_next_pc): Update mips_pc_is_mips16 call. Handle microMIPS
6549 code.
6550 (mips16_scan_prologue): Update mips_fetch_instruction call.
6551 Update according to change to mips16_to_32_reg.
6552 (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
6553 (mips_insn16_frame_base_sniffer): Likewise.
6554 (micromips_decode_imm9): New function.
6555 (micromips_scan_prologue): Likewise.
6556 (mips_micro_frame_cache): Likewise.
6557 (mips_micro_frame_this_id): Likewise.
6558 (mips_micro_frame_prev_register): Likewise.
6559 (mips_micro_frame_sniffer): Likewise.
6560 (mips_micro_frame_unwind): New variable.
6561 (mips_micro_frame_base_address): New function.
6562 (mips_micro_frame_base): New variable.
6563 (mips_micro_frame_base_sniffer): New function.
6564 (mips32_scan_prologue): Update mips_fetch_instruction call.
6565 (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
6566 rather than for MIPS16.
6567 (mips_insn32_frame_base_sniffer): Likewise.
6568 (mips_addr_bits_remove): Handle microMIPS code.
6569 (deal_with_atomic_sequence): Rename to...
6570 (mips_deal_with_atomic_sequence): ... this. Update the type
6571 of the variable used to hold an instruction. Remove the ISA bit
6572 check. Update mips_fetch_instruction call.
6573 (micromips_deal_with_atomic_sequence): New function.
6574 (deal_with_atomic_sequence): Likewise.
6575 (mips_about_to_return): Handle microMIPS code. Update
6576 mips_fetch_instruction call.
6577 (heuristic_proc_start): Check for the standard MIPS ISA rather
6578 than for MIPS16. Update mips_pc_is_mips16 and
6579 mips_fetch_instruction calls. Handle microMIPS code.
6580 (mips_push_dummy_code): Handle microMIPS code.
6581 (mips_eabi_push_dummy_call): Likewise.
6582 (mips_o32_return_value): Update mips_pc_is_mips16 call.
6583 (mips_o64_push_dummy_call): Handle microMIPS code.
6584 (mips_o64_return_value): Update mips_pc_is_mips16 call.
6585 (is_delayed): Remove function.
6586 (mips_single_step_through_delay): Replace the call to is_delayed
6587 with mips32_instruction_has_delay_slot. Correct MIPS16 handling.
6588 Handle microMIPS code.
6589 (mips_skip_prologue): Update mips_pc_is_mips16 call. Handle
6590 microMIPS code.
6591 (mips32_in_function_epilogue_p): Update mips_fetch_instruction
6592 call.
6593 (micromips_in_function_epilogue_p): New function.
6594 (mips16_in_function_epilogue_p): Update mips_fetch_instruction
6595 call.
6596 (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
6597 Handle microMIPS.
6598 (gdb_print_insn_mips): Likewise.
6599 (mips_breakpoint_from_pc): Likewise.
6600 (mips_remote_breakpoint_from_pc): New function.
6601 (mips32_instruction_has_delay_slot): Simplify making use of the
6602 updated mips_fetch_instruction interface.
6603 (micromips_instruction_has_delay_slot): New function.
6604 (mips16_instruction_has_delay_slot): Simplify making use of the
6605 updated mips_fetch_instruction interface.
6606 (mips_adjust_breakpoint_address): Check for the standard MIPS
f782ad9b 6607 ISA rather than for MIPS16 ISA. Update for unmake_compact_addr
4cc0665f
MR
6608 calls. Handle microMIPS code.
6609 (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
6610 (mips_skip_trampoline_code): Handle microMIPS code.
6611 (global_mips_compression): New function.
6612 (mips_gdbarch_init): Handle the compressed ISA setting from ELF
6613 file flags. Register the microMIPS remote breakpoint handler
6614 and heuristic frame unwinder.
6615 (show_mips_compression): New function.
6616 (_initialize_mips_tdep): Add the "set mips compression" and
6617 "show mips compression" commands.
6618
22e048c9
SDJ
66192012-05-18 Sergio Durigan Junior <sergiodj@redhat.com>
6620
6621 * ada-lang.c:
6622 * ada-tasks.c:
6623 * ada-varobj.c:
6624 * amd64-darwin-tdep.c:
6625 * arm-symbian-tdep.c:
6626 * arm-tdep.c:
6627 * avr-tdep.c:
6628 * ax-gdb.c:
6629 * bfin-linux-tdep.c:
6630 * breakpoint.c:
6631 * c-valprint.c:
6632 * cli/cli-cmds.c:
6633 * coffread.c:
6634 * cp-support.c:
6635 * cris-tdep.c:
6636 * dwarf2-frame-tailcall.c:
6637 * dwarf2-frame.c:
6638 * dwarf2expr.c:
6639 * dwarf2loc.c:
6640 * dwarf2read.c:
6641 * elfread.c:
6642 * eval.c:
6643 * expprint.c:
6644 * f-valprint.c:
6645 * frv-tdep.c:
6646 * h8300-tdep.c:
6647 * hppa-hpux-tdep.c:
6648 * hppa-tdep.c:
6649 * hppanbsd-tdep.c:
6650 * i386-nto-tdep.c:
6651 * i386-tdep.c:
6652 * i387-tdep.c:
6653 * ia64-tdep.c:
6654 * jit.c:
6655 * linespec.c:
6656 * linux-tdep.c:
6657 * lm32-tdep.c:
6658 * m2-valprint.c:
6659 * m32c-tdep.c:
6660 * m32r-rom.c:
6661 * m32r-tdep.c:
6662 * m68k-tdep.c:
6663 * m68klinux-tdep.c:
6664 * mi/mi-main.c:
6665 * microblaze-tdep.c:
6666 * mips-linux-tdep.c:
6667 * mips-tdep.c:
6668 * mn10300-tdep.c:
6669 * p-valprint.c:
6670 * parse.c:
6671 * ppc-linux-tdep.c:
6672 * ppc-sysv-tdep.c:
6673 * printcmd.c:
6674 * python/py-finishbreakpoint.c:
6675 * python/py-inferior.c:
6676 * python/py-infthread.c:
6677 * python/py-type.c:
6678 * python/python.c:
6679 * remote-fileio.c:
6680 * remote-m32r-sdi.c:
6681 * remote-mips.c:
6682 * reverse.c:
6683 * rl78-tdep.c:
6684 * rs6000-aix-tdep.c:
6685 * rs6000-tdep.c:
6686 * s390-tdep.c:
6687 * score-tdep.c:
6688 * sh64-tdep.c:
6689 * skip.c:
6690 * solib-darwin.c:
6691 * solib-dsbt.c:
6692 * solib-frv.c:
6693 * sparc-tdep.c:
6694 * spu-multiarch.c:
6695 * spu-tdep.c:
6696 * stack.c:
6697 * symfile.c:
6698 * symtab.c:
6699 * tic6x-tdep.c:
6700 * tracepoint.c:
6701 * v850-tdep.c:
6702 * valarith.c:
6703 * valprint.c:
6704 * value.c:
6705 * xcoffread.c:
6706 * xtensa-tdep.c:
6707 * ada-lang.c:
6708 * ada-tasks.c:
6709 * ada-varobj.c:
6710 * amd64-darwin-tdep.c:
6711 * arm-symbian-tdep.c:
6712 * arm-tdep.c: Delete unused variables.
6713
aff139ff
JK
67142012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
6715
6716 Rename $ddir to $datadir.
6717 * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
6718 * auto-load.c (auto_load_safe_path_vec_update)
6719 (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
6720 * configure: Regenerate.
6721 * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
6722 Likewise. Remove the 'use $ddir' help string.
6723
f7bfa992
JK
67242012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
6725
6726 * auto-load.c (show_auto_load_safe_path): Accept any combination of
6727 DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
6728
9cb709b6
TT
67292012-05-18 Tom Tromey <tromey@redhat.com>
6730
6731 PR exp/13907:
6732 * valprint.h (struct value_print_options) <symbol_print>: New
6733 field.
6734 * valprint.c (user_print_options): Add default for symbol_print.
6735 (show_symbol_print): New function.
6736 (generic_val_print): Respect symbol_print.
6737 (_initialize_valprint): Add "print symbol" setting.
6738 * f-valprint.c (f_val_print): Respect symbol_print.
6739 * c-valprint.c (c_val_print): Respect symbol_print.
6740 * NEWS: Update.
6741 * printcmd.c (print_address_symbolic): Return int. Ignore some
6742 zero-size symbols.
6743 (print_address_demangle): Return int.
6744 * defs.h: (print_address_symbolic): Return int.
6745 * value.h (print_address_demangle): Return int.
6746
b012acdd
TT
67472012-05-18 Tom Tromey <tromey@redhat.com>
6748
6749 * valprint.c (val_print_string): Don't print leading space.
6750 * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
6751 print space before string or vtbl.
6752 * m2-valprint.c (print_unpacked_pointer): Optionally print space
6753 before string.
6754 * jv-valprint.c (java_value_print): Print space before string.
6755 * go-valprint.c (print_go_string): Print space before string.
6756 * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
6757 space before string.
6758 * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
6759 space before string or vtbl.
6760 * auxv.c (fprint_target_auxv): Print space after address.
6761
1d51a733
TT
67622012-05-18 Tom Tromey <tromey@redhat.com>
6763
6764 * printcmd.c (print_address_demangle): Remove special case for 0.
6765
edf0c1b7
TT
67662012-05-18 Tom Tromey <tromey@redhat.com>
6767
6768 * printcmd.c (print_address_demangle): Add 'opts' argument.
6769 * p-valprint.c (pascal_val_print): Update.
6770 * jv-valprint.c (java_val_print): Update.
6771 * value.h: Update.
6772 * valprint.c (generic_val_print): Update.
6773 (print_function_pointer_address): Add 'options' argument. Remove
6774 'addressprint' argument. Update.
6775 * m2-valprint.c (print_unpacked_pointer): Update.
6776 * gnu-v3-abi.c (print_one_vtable): Update.
6777 (gnuv3_print_method_ptr): Update.
6778 * f-valprint.c (f_val_print): Update.
6779 * cp-valprint.c (cp_print_value_fields): Update.
6780 * valprint.h (print_function_pointer_address): Update.
6781 * c-valprint.c (c_val_print): Update.
6782
9703b513
TT
67832012-05-18 Tom Tromey <tromey@redhat.com>
6784
6785 * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
6786 directly corresponding to the found psymtab.
6787 * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
6788 (dw2_find_pc_sect_symtab): Use it.
6789 * block.h (blockvector_contains_pc): Declare.
6790 * block.c (find_block_in_blockvector): New function.
6791 (blockvector_for_pc_sect): Use it.
6792 (blockvector_contains_pc): New function.
6793
5a439849
MR
67942012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6795
6796 * mips-tdep.h (mips_write_pc): New prototype.
6797 * mips-tdep.c (mips_write_pc): Make external, add description.
6798 * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
6799 add description.
6800
8376de04
MR
68012012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6802
6803 * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
6804 mips_regnum->pc.
6805 (mips_unwind_pc, mips_write_pc): Likewise.
6806 (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
6807 gdbarch_read_pc.
6808
d3581e61
JB
68092012-05-17 Joel Brobecker <brobecker@adacore.com>
6810
6811 * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
6812 proc_warn, proc_error, proc_get_status, proc_flags,
6813 proc_why, proc_what, proc_nsysarg, proc_sysargs,
6814 proc_set_run_on_last_close, proc_unset_run_on_last_close,
6815 proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
6816 proc_stop_process, proc_wait_for_stop, proc_run_process,
6817 proc_set_traced_signals, proc_set_traced_faults,
6818 proc_set_traced_sysentry, proc_set_traced_sysexit,
6819 proc_set_held_signals, proc_get_held_signals,
6820 proc_get_traced_signals, proc_get_traced_faults,
6821 proc_get_traced_sysentry, proc_get_traced_sysexit,
6822 proc_clear_current_fault, proc_set_current_signal,
6823 proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
6824 proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
6825 proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
6826 proc_get_current_thread, proc_get_current_thread,
6827 proc_get_current_thread, proc_update_threads,
6828 proc_update_threads, proc_update_threads, proc_update_threads,
6829 proc_iterate_over_threads, procfs_find_new_threads,
6830 procfs_pid_to_str): Make static. Remove advance declaration.
6831 (proc_cursig): Make static. Conditionalized defintion on
6832 PROCFS_DONT_PIOCSSIG_CURSIG being defined.
6833 (proc_syscall, proc_set_kill_on_last_close,
6834 proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
6835 proc_get_pending_signals, proc_get_signal_actions,
6836 proc_trace_signal, proc_ignore_signal): Delete.
6837
81b9b86e
SDJ
68382012-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
6839
6840 * coffread.c (cs_section_address): Passing proper argument for
6841 `bfd_get_section_vma'.
6842 * dwarf2read.c (dwarf2_locate_sections): Likewise, for
6843 `bfd_get_section_flags'.
6844 * remote.c (remote_trace_set_readonly_regions): Likewise, for
6845 `bfd_get_section_vma'.
6846
abc9d0dc
TT
68472012-05-16 Tom Tromey <tromey@redhat.com>
6848
6849 PR macros/13205:
6850 * macrotab.h: (macro_define_special): Declare.
6851 (enum macro_special_kind): New.
6852 (struct macro_definition) <argc, replacement>: Update comments.
6853 * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
6854 (macro_define_object_internal): New function.
6855 (macro_define_object): Use it.
6856 (macro_define_special): New function.
6857 (fixup_definition): New function.
6858 (macro_lookup_definition, foreach_macro_in_scope)
6859 (foreach_macro): Use fixup_definition.
6860 * macroexp.h (macro_stringify): Declare.
6861 * macroexp.c (free_buffer_return_text): New function.
6862 (stringify): Constify "arg".
6863 (macro_stringify): New function.
6864 * dwarf2read.c (macro_start_file): Call macro_define_special.
6865
6a3a010b 68662012-05-16 Maciej W. Rozycki <macro@codesourcery.com>
f782ad9b 6867 Maciej W. Rozycki <macro@mips.com>
6a3a010b
MR
6868
6869 * breakpoint.h (bp_location): Add related_address member.
6870 * inferior.h (get_return_value): Take a pointer to struct value
6871 instead of struct type for the function requested.
6872 * value.h (using_struct_return): Likewise.
6873 * gdbarch.sh (return_value): Take a pointer to struct value
6874 instead of struct type for the function requested.
6875 * breakpoint.c (set_breakpoint_location_function): Initialize
6876 related_address for bp_gnu_ifunc_resolver breakpoints.
6877 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
6878 requested function's address to gdbarch_return_value.
6879 * eval.c (evaluate_subexp_standard): Pass the requested
6880 function's address to using_struct_return.
6881 * infcall.c (call_function_by_hand): Pass the requested
6882 function's address to using_struct_return and
6883 gdbarch_return_value.
6884 * infcmd.c (get_return_value): Take a pointer to struct value
6885 instead of struct type for the function requested.
6886 (print_return_value): Update accordingly.
6887 (finish_command_continuation): Likewise.
6888 * stack.c (return_command): Pass the requested function's
6889 address to using_struct_return and gdbarch_return_value.
6890 * value.c (using_struct_return): Take a pointer to struct value
6891 instead of struct type for the function requested. Pass the
6892 requested function's address to gdbarch_return_value.
6893 * python/py-finishbreakpoint.c (finish_breakpoint_object):
6894 New function_value member, replacing function_type.
6895 (bpfinishpy_dealloc): Update accordingly.
6896 (bpfinishpy_pre_stop_hook): Likewise.
6897 (bpfinishpy_init): Likewise. Record the requested function's
6898 address.
6899 * mips-tdep.c (mips_fval_reg): New enum.
6900 (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
6901 words put in GP registers.
6902 (mips_o64_push_dummy_call): Update a comment.
6903 (mips_o32_return_value): Take a pointer to struct value instead
6904 of struct type for the function requested and use it to check if
6905 using the MIPS16 calling convention. Return the designated
6906 general purpose registers for floating-point values returned in
6907 MIPS16 mode.
6908 (mips_o64_return_value): Likewise.
6909 * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
6910 (ppc_sysv_abi_broken_return_value): Likewise.
6911 (ppc64_sysv_abi_return_value): Likewise.
6912 * alpha-tdep.c (alpha_return_value): Take a pointer to struct
6913 value instead of struct type for the function requested.
6914 * amd64-tdep.c (amd64_return_value): Likewise.
6915 * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
6916 * arm-tdep.c (arm_return_value): Likewise.
6917 * avr-tdep.c (avr_return_value): Likewise.
6918 * bfin-tdep.c (bfin_return_value): Likewise.
6919 * cris-tdep.c (cris_return_value): Likewise.
6920 * frv-tdep.c (frv_return_value): Likewise.
6921 * h8300-tdep.c (h8300_return_value): Likewise.
6922 (h8300h_return_value): Likewise.
6923 * hppa-tdep.c (hppa32_return_value): Likewise.
6924 (hppa64_return_value): Likewise.
6925 * i386-tdep.c (i386_return_value): Likewise.
6926 * ia64-tdep.c (ia64_return_value): Likewise.
6927 * iq2000-tdep.c (iq2000_return_value): Likewise.
6928 * lm32-tdep.c (lm32_return_value): Likewise.
6929 * m32c-tdep.c (m32c_return_value): Likewise.
6930 * m32r-tdep.c (m32r_return_value): Likewise.
6931 * m68hc11-tdep.c (m68hc11_return_value): Likewise.
6932 * m68k-tdep.c (m68k_return_value): Likewise.
6933 (m68k_svr4_return_value): Likewise.
6934 * m88k-tdep.c (m88k_return_value): Likewise.
6935 * mep-tdep.c (mep_return_value): Likewise.
6936 * microblaze-tdep.c (microblaze_return_value): Likewise.
6937 * mn10300-tdep.c (mn10300_return_value): Likewise.
6938 * moxie-tdep.c (moxie_return_value): Likewise.
6939 * mt-tdep.c (mt_return_value): Likewise.
6940 * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
6941 * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
6942 (ppc_sysv_abi_broken_return_value): Likewise.
6943 (ppc64_sysv_abi_return_value): Likewise.
6944 * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
6945 * rl78-tdep.c (rl78_return_value): Likewise.
6946 * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
6947 * rx-tdep.c (rx_return_value): Likewise.
6948 * s390-tdep.c (s390_return_value): Likewise.
6949 * score-tdep.c (score_return_value): Likewise.
6950 * sh-tdep.c (sh_return_value_nofpu): Likewise.
6951 (sh_return_value_fpu): Likewise.
6952 * sh64-tdep.c (sh64_return_value): Likewise.
6953 * sparc-tdep.c (sparc32_return_value): Likewise.
6954 * sparc64-tdep.c (sparc64_return_value): Likewise.
6955 * spu-tdep.c (spu_return_value): Likewise.
6956 * tic6x-tdep.c (tic6x_return_value): Likewise.
6957 * v850-tdep.c (v850_return_value): Likewise.
6958 * vax-tdep.c (vax_return_value): Likewise.
6959 * xstormy16-tdep.c (xstormy16_return_value): Likewise.
6960 * xtensa-tdep.c (xtensa_return_value): Likewise.
6961 * gdbarch.c: Regenerate.
6962 * gdbarch.h: Regenerate.
6963
29ca12b3
TT
69642012-05-15 Tom Tromey <tromey@redhat.com>
6965
6966 * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
6967
588ae58c
JB
69682012-05-15 Joel Brobecker <brobecker@adacore.com>
6969
6970 * breakpoint.c (init_breakpoint_sal): Add quotes around part
6971 of command in two error message.
6972
855a6e68
JB
69732012-05-15 Joel Brobecker <brobecker@adacore.com>
6974
6975 * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
6976
d634f2de
JB
69772012-05-15 Joel Brobecker <brobecker@adacore.com>
6978
6979 * breakpoint.c (find_condition_and_thread): Minor reformatting.
6980
9cc815f5
JK
69812012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6982
6983 * NEWS (show auto-load scripts-directory): Add forgotten command.
6984
6a609e58
JK
69852012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6986
6987 * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
6988 parameters.
6989
ac1438b5
L
69902012-05-14 H.J. Lu <hongjiu.lu@intel.com>
6991
6992 * amd64-tdep.c: Include features/i386/x32.c and
6993 features/i386/x32-avx.c.
6994 (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
6995 initialize_tdesc_x32_avx.
6996
e7e0cddf
SS
69972012-05-14 Stan Shebs <stan@codesourcery.com>
6998
6999 Add dynamic printf.
7000 * breakpoint.h (enum bptype): New type bp_dprintf.
7001 (struct breakpoint): New field extra_string.
7002 (struct breakpoint_ops): Add arg to create_breakpoints_sal.
7003 (create_breakpoint): Add extra_string arg.
7004 * breakpoint.c (dprintf_breakpoint_ops): New.
7005 (is_breakpoint): Add bp_dprintf.
7006 (bpstat_what): Add dprintf case.
7007 (bptype_string): Ditto.
7008 (print_one_breakpoint_location): Ditto.
7009 (init_bp_location): Ditto.
7010 (bkpt_print_mention): Ditto.
7011 (dprintf_style_enums): New array.
7012 (dprintf_style): New global.
7013 (dprintf_function): New global.
7014 (dprintf_channel): New global.
7015 (update_dprintf_command_list): New function.
7016 (update_dprintf_commands): New function.
7017 (init_breakpoint_sal): Add extra_string argument, handle it.
7018 (create_breakpoint_sal): Add extra_string argument.
7019 (create_breakpoints_sal): Add extra_string argument, update callers.
7020 (find_condition_and_thread): Add extra argument.
7021 (create_breakpoint): Add extra_string argument, record it.
7022 (dprintf_command): New function.
7023 (break_command_1): Add arg to create_breakpoint call.
7024 (handle_gnu_v3_exceptions): Ditto.
7025 (trace_command): Ditto.
7026 (ftrace_command): Ditto.
7027 (strace_command): Ditto.
7028 (bkpt_print_mention): Add dprintf case.
7029 (create_breakpoint_sal_default): Add extra_string argument.
7030 (_initialize_breakpoint): Add new commands.
7031 * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
7032 * python/py-breakpoint.c (bppy_init): Ditto.
7033 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
7034
8ae38c14
MR
70352012-05-14 Maciej W. Rozycki <macro@codesourcery.com>
7036
7037 * mips-tdep.c (mips_push_dummy_code): Correct description typo.
7038
9f676e66
SCR
70392012-05-14 Siva Chandra Reddy <sivachandra@google.com>
7040
7041 * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
7042 unsigned long long.
7043
7efc75aa
SCR
70442012-05-13 Siva Chandra Reddy <sivachandra@google.com>
7045
7046 Add a new function gdb.find_pc_line to the Python API.
7047 * NEWS (Python Scripting): Add entry about the new function.
7048 * python/python.c (gdbpy_find_pc_line): New function which
7049 implements gdb.find_pc_line.
7050 (GdbMethods): Add entry for the new function.
7051
70af3797
PA
70522012-05-12 Pedro Alves <palves@redhat.com>
7053
7054 * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
7055 initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
7056
06da564e
EZ
70572012-05-12 Eli Zaretskii <eliz@gnu.org>
7058
7059 * inferior.c: Include completer.h
7060 (initialize_inferiors): Set completer of add-inferior to
7061 filename_completer.
7062
0288cee2
L
70632012-05-11 H.J. Lu <hongjiu.lu@intel.com>
7064
7065 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
7066 gdbarch_ptr_bit for x32 core dump.
7067
f6537a2c
L
70682012-05-11 H.J. Lu <hongjiu.lu@intel.com>
7069
7070 * amd64-linux-tdep.c: Include features/i386/x32-linux.c
7071 and features/i386/x32-avx-linux.c.
7072
85d4a676
SS
70732012-05-11 Stan Shebs <stan@codesourcery.com>
7074 Kwok Cheung Yeung <kcy@codesourcery.com>
7075
7076 * NEWS: Describe new info os commands.
7077 * common/linux-osdata.c (PID_T, TIME_T): Define.
7078 (MAX_PID_T_STRLEN): New.
7079 (linux_common_core_of_thread): Add comment. Change to use PID_T and
7080 MAX_PID_T_STRLEN.
7081 (command_from_pid): Add comment. Change to use PID_T.
7082 (commandline_from_pid): Change to use PID_T.
7083 (user_from_pid): Add comment.
7084 (get_process_owner): Add comment. Change to use PID_T and
7085 MAX_PID_T_STRLEN.
7086 (get_number_of_cpu_cores): Add comment.
7087 (get_cores_used_by_process): Add comment. Change to use PID_T and
7088 MAX_PID_T_STRLEN.
7089 (linux_xfer_osdata_processes): Change to use PID_T and
7090 MAX_PID_T_STRLEN.
7091 (compare_processes): New function.
7092 (linux_xfer_osdata_processgroups): New function.
7093 (linux_xfer_osdata_threads): Change to use PID_T.
7094 (linux_xfer_osdata_fds): New function.
7095 (format_socket_state, print_sockets): New functions.
7096 (union socket_addr): New union.
7097 (linux_xfer_osdata_isockets): New function.
7098 (time_from_time_t, group_from_gid): New functions.
7099 (linux_xfer_osdata_shm): New function.
7100 (linux_xfer_osdata_sem): New function.
7101 (linux_xfer_osdata_msg): New function.
7102 (linux_xfer_osdata_modules): New function.
7103 (osdata_table): Add new entries.
7104 * common/buffer.c (buffer_xml_printf): Add support for long and
7105 long long format specifiers.
7106
f24afd6d
L
71072012-05-11 H.J. Lu <hongjiu.lu@intel.com>
7108
7109 * amd64-linux-tdep.h (tdesc_x32_linux): New.
7110 (tdesc_x32_avx_linux): Likewise.
7111
7349ff92
JK
71122012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7113
7114 Implement multi-component --with-auto-load-dir.
7115 * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
7116 entries.
7117 (--with-auto-load-safe-path): Update the default value description.
7118 * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
7119 New.
7120 (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output. Remove
7121 GDB_DATADIR NULL check. Replace GDB_DATADIR/auto-load by
7122 AUTO_LOAD_DIR. Support $ddir and multiple components in it.
7123 (_initialize_auto_load): Initialize also auto_load_dir. Install new
7124 "set auto-load scripts-directory".
7125 * config.in: Regenerate.
7126 * configure: Regenerate.
7127 * configure.ac (--with-auto-load-dir): New configure option.
7128 (--auto-load-safe-path): Change the default to --with-auto-load-dir.
7129
6dea1fbd
JK
71302012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7131
7132 Provide $ddir substitution for --with-auto-load-safe-path.
7133 * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
7134 entries.
7135 * auto-load.c: Include observer.h.
7136 (auto_load_safe_path_vec_update): Call substitute_path_component for
7137 each component. New variable ddir_subst.
7138 (auto_load_gdb_datadir_changed): New function.
7139 (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
7140 AUTO_LOAD_SAFE_PATH. New comment.
7141 (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
7142 AUTO_LOAD_SAFE_PATH. Install auto_load_gdb_datadir_changed.
7143 * config.in: Regenerate.
7144 * configure: Regenerate.
7145 * configure.ac (--auto-load-safe-path): Rename
7146 DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH. Default to
7147 GDB_DATADIR/auto-load.
7148 * defs.h (substitute_path_component): New declaration.
7149 * top.c: Include observer.h.
7150 (set_gdb_datadir): New function.
7151 (init_main): Install it for "set data-directory".
7152 * utils.c (substitute_path_component): New function.
7153
b09aca3a
JK
71542012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7155
7156 Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
7157 * auto-load.c (auto_load_objfile_script): Remove check for NULL
7158 DEBUG_FILE_DIRECTORY. Handle multiple components of
7159 DEBUG_FILE_DIRECTORY.
7160
95554aad
TT
71612012-05-10 Tom Tromey <tromey@redhat.com>
7162
7163 * dwarf2read.c (recursively_write_psymbols): New function.
7164 (write_psymtabs_to_index): Use it.
7165
7166 * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
7167 field.
7168 (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
7169 (load_partial_comp_unit): Update.
7170 (queue_comp_unit): Add argument 'pretend_language'.
7171 (process_queue): Update.
7172 (psymtab_to_symtab_1): Skip dependencies that have a user.
7173 (load_partial_comp_unit_reader): Give meaning to the 'data'
7174 argument.
7175 (load_full_comp_unit): Add 'pretend_language' argument.
7176 (process_full_comp_unit): Add 'pretend_language' argument. Set
7177 language on CU.
7178 (process_imported_unit_die, read_file_scope, read_type_unit_scope):
7179 Update.
7180 (maybe_queue_comp_unit): Add 'pretend_language' argument.
7181 (follow_die_offset, follow_die_sig, read_signatured_type_reader):
7182 Update.
7183 (prepare_one_comp_unit): Add 'pretend_language' argument.
7184
7185 * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
7186 (struct dwarf2_per_objfile) <just_read_cus>: New field.
7187 (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
7188 (dw2_do_instantiate_symtab): Check whether symtab was read in
7189 before queueing.
7190 (dw2_instantiate_symtab): Add assertion. Call
7191 process_cu_includes.
7192 (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
7193 (partial_symtab_p): New typedef.
7194 (set_partial_user): New function.
7195 (dwarf2_build_psymtabs_hard): Use set_partial_user.
7196 (scan_partial_symbols): Add imported CU to imported_symtabs.
7197 (dwarf2_psymtab_to_symtab): Call process_cu_includes.
7198 (psymtab_to_symtab_1): Do nothing if psymtab is readin.
7199 (get_symtab, recursively_compute_inclusions)
7200 (compute_symtab_includes, process_cu_includes)
7201 (process_imported_unit_die): New functions.
7202 (process_die) <DW_TAG_imported_unit>: New case.
7203 (dwarf2_per_objfile_free): Free 'imported_symtabs'.
7204
7205 * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
7206 comment.
7207 (struct partial_die_info) <locdesc>: Remove.
7208 <d>: New field.
7209 (process_psymtab_comp_unit): Add 'read_partial' argument.
7210 Update.
7211 (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
7212 (scan_partial_symbols): Handle DW_TAG_imported_unit.
7213 (add_partial_symbol): Update.
7214 (process_die): Handle DW_TAG_partial_unit.
7215 (read_file_scope): Update comment.
7216 (load_partial_dies): Handle DW_TAG_imported_unit.
7217 (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
7218 (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
7219
e871fbb9
TT
72202012-05-10 Tom Tromey <tromey@redhat.com>
7221
7222 * cc-with-dwz.sh: New file.
7223
b5b04b5b
TT
72242012-05-10 Tom Tromey <tromey@redhat.com>
7225
7226 * symtab.h (struct symtab) <includes, user>: New fields.
7227 * block.h (struct block_iterator) <d, idx, which>: New fields.
7228 * block.c (initialize_block_iterator, find_iterator_symtab)
7229 (block_iterator_step, block_iter_name_step)
7230 (block_iter_match_step): New functions.
7231 (block_iterator_first, block_iterator_next)
7232 (block_iter_name_first, block_iter_name_next)
7233 (block_iter_match_first, block_iter_match_next): Rewrite.
7234 (get_block_symtab): New function.
7235
84a146c9
TT
72362012-05-10 Tom Tromey <tromey@redhat.com>
7237
7238 * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
7239 set_block_symtab.
7240 * jit.c (finalize_symtab): Use allocate_global_block,
7241 set_block_symtab.
7242 * buildsym.c (finish_block_internal): New function, from old
7243 finish_block.
7244 (finish_block): Rewrite.
7245 (end_symtab): Use finish_block_internal, set_block_symtab.
7246 * block.h (struct global_block): New.
7247 (allocate_global_block, set_block_symtab): Declare.
7248 * block.c (allocate_global_block, set_block_symtab): New
7249 functions.
7250
9439a077
TT
72512012-05-10 Tom Tromey <tromey@redhat.com>
7252
7253 * psymtab.c (partial_map_expand_apply): Add assertion.
7254 (partial_map_symtabs_matching_filename): Skip included psymtabs.
7255 (psymtab_to_symtab): Find unshared psymtab.
7256 (dump_psymtab): Print including psymtabs.
7257 (recursively_search_psymtabs): New function.
7258 (expand_symtabs_matching_via_partial): Use it.
7259 * psympriv.h (struct partial_symtab) <user, searched_flag>: New
7260 fields.
7261 (enum psymtab_search_status): New.
7262
8157b174
TT
72632012-05-10 Tom Tromey <tromey@redhat.com>
7264
7265 * tracepoint.c (scope_info): Update.
7266 * symtab.c (lookup_block_symbol, iterate_over_symbols)
7267 (find_pc_sect_symtab, search_symbols)
7268 (default_make_symbol_completion_list_break_on)
7269 (make_file_symbol_completion_list): Update.
7270 * symmisc.c (dump_symtab_1): Update.
7271 * stack.c (print_frame_args, iterate_over_block_locals)
7272 (print_frame_labels, iterate_over_block_arg_vars): Update.
7273 * python/py-block.c (block_object) <dict>: Remove.
7274 <block>: New field.
7275 <iter>: Change type.
7276 (blpy_iter): Update.
7277 (blpy_block_syms_iternext): Update.
7278 * psymtab.c (map_block): Use block iterators.
7279 * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
7280 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
7281 * mdebugread.c (parse_symbol, mylookup_symbol): Update.
7282 * infrun.c (check_exception_resume): Update.
7283 * cp-support.c (make_symbol_overload_list_block): Update.
7284 * coffread.c (patch_opaque_types): Update.
7285 * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
7286 * block.h (struct block_iterator): New.
7287 (block_iterator_first, block_iterator_next, block_iter_name_first)
7288 (block_iter_name_next, block_iter_match_first)
7289 (block_iter_match_next): Declare.
7290 (ALL_BLOCK_SYMBOLS): Redefine.
7291 * block.c (block_iterator_first, block_iterator_next)
7292 (block_iter_name_first, block_iter_name_next)
7293 (block_iter_match_first, block_iter_match_next): New functions.
7294 * ada-lang.c (ada_add_block_symbols)
7295 (ada_make_symbol_completion_list): Use block iterator.
7296
a2ca7a52
TT
72972012-05-10 Tom Tromey <tromey@redhat.com>
7298
7299 * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
7300 (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
7301 (lookup_partial_symbol, find_last_source_symtab_from_partial)
7302 (read_psymtabs_with_filename, map_matching_symbols_psymtab)
7303 (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
7304 Update.
7305
64ea88dc
JB
73062012-05-10 Joel Brobecker <brobecker@adacore.com>
7307
7308 * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
7309 print-file-var-lib2.c, print-file-var-main.c and
7310 print-file-var.exp (located in gdb/testsuite/gdb.base).
7311
99a547d6
JB
73122012-05-10 Joel Brobecker <brobecker@adacore.com>
7313
7314 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
7315 try locating the symbol in the symbol's own objfile first, before
7316 extending the search to all objfiles.
7317 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
7318 out of lookup_symbol_aux_symtabs.
7319 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
7320 Replace extracted-out code by call to lookup_symbol_aux_objfile.
7321 Do not search EXCLUDE_OBJFILE.
7322 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
7323 (lookup_symbol_global): Search for matches in the block's objfile
7324 first, before searching all other objfiles.
7325
0ece64fd
TG
73262012-05-10 Tristan Gingold <gingold@adacore.com>
7327
7328 * printcmd.c (set_command): Add pre/post inc/dec.
7329
3d16a105
FCE
73302012-05-09 Frank Ch. Eigler <fche@redhat.com>
7331
7332 * gdb.1: Document -ex option.
7333
2efbc0f7
JB
73342012-05-09 Joel Brobecker <brobecker@adacore.com>
7335
7336 * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
7337 * inferior.h (AT_SYMBOL): Delete.
7338
2c76a0c7
JB
73392012-05-09 Joel Brobecker <brobecker@adacore.com>
7340
7341 * mips-tdep.c (mips_push_dummy_code): New function.
7342 (mips_gdbarch_init): Set the gdbarch call_dummy_location to
7343 ON_STACK and install mips_push_dummy_code as our gdbarch
7344 push_dummy_code routine.
7345
9401a810
PA
73462012-05-09 Pedro Alves <palves@redhat.com>
7347
7348 * target.c (set_maintenance_target_async_permitted): Rename to ...
7349 (set_target_async_command): ... this.
7350 (show_maintenance_target_async_permitted): Rename to ...
7351 (show_target_async_command): ... this.
7352 (initialize_targets): Adjust.
7353
3929b321
DE
73542012-05-08 Doug Evans <dje@google.com>
7355
7356 * go-exp.y (classify_name): Add missing assignment of fields of
7357 yylval.ssym.
7358
c41535fd
EZ
73592012-05-08 Eli Zaretskii <eliz@gnu.org>
7360
7361 Display the ">" prompt in interactive mode while reading canned
7362 commands, even when the current interpreter is MI.
7363
7364 * interps.c (interp_set_temp): New function.
7365
7366 * interps.h (interp_set_temp): Add prototype.
7367
7368 * cli/cli-script.c (restore_interp): New cleanup function.
7369 (read_command_lines): Temporarily override the current interpreter
7370 with CLI and arrange for restoring the original one.
7371
c0749c4d
JS
73722012-05-12 Joel Sherrill <joel.sherrill@oarcorp.com>
7373
7374 * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
7375
d7333987
SDJ
73762012-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
7377
7378 * probe.c (parse_probes): Move conditional to check for
7379 debuginfo files from here...
7380 * stap-probe.c (stap_get_probes): ... to here.
7381
649e6d92
MK
73822012-05-07 Mark Kettenis <kettenis@gnu.org>
7383 H.J. Lu <hongjiu.lu@intel.com>
7384
7385 * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
7386 `movl %esp, %ebp' for the X32 ABI.
7387
f39c6ffd
TT
73882012-05-07 Tom Tromey <tromey@redhat.com>
7389
7390 * dwarf2read.c (dwarf_tag_name): Return const char *. Use
7391 get_DW_TAG_name.
7392 (dwarf_attr_name): Return const char *. Use get_DW_AT_name.
7393 (dwarf_form_name): Return const char *. Use get_DW_FORM_name.
7394 (dwarf_stack_op_name): Remove.
7395 (dwarf_cfi_name): Return const char *. Use get_DW_ATE_name.
7396 (decode_locdesc): Use get_DW_OP_name.
7397 * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
7398 (dwarf2_compile_expr_to_ax): Likewise.
7399 (disassemble_dwarf_expression): Likewise.
7400 * dwarf2expr.h: (dwarf_stack_op_name): Remove.
7401
1e1f6591
CLT
74022012-05-07 Chung-Lin Tang <cltang@codesourcery.com>
7403
7404 * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
7405 (sh_linux_sigtramp_cache): New function.
7406 (sh_linux_sigreturn_init): New function.
7407 (sh_linux_rt_sigreturn_init): New function.
7408 (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
7409 patterns.
7410 (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
7411 syscall codes.
7412 (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
7413 (sh_linux_rt_sigreturn_tramp_frame): Likewise.
7414 (sh_linux_init_abi): Add init calls to register new tramp_frame
7415 definitions under 32-bit SH, update comments.
7416
545c08b4
PA
74172012-05-07 Pedro Alves <palves@redhat.com>
7418
daac165e
PA
7419 PR gdb/10952
7420
545c08b4
PA
7421 * amd64-linux-tdep.c: Include glibc-tdep.h.
7422 (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
7423 gdbarch_skip_solib_resolver callback.
7424
af2c1515
JK
74252012-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
7426
7427 * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
7428 back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
7429 (show_auto_load_safe_path): Check any-directory by comparison with "/".
7430 (add_auto_load_safe_path): Change the error message.
7431 (_initialize_auto_load): Change the "safe-path" help text.
7432 * configure: Regenerate
7433 * configure.ac (--without-auto-load-safe-path): Set
7434 WITH_AUTO_LOAD_SAFE_PATH to /.
7435
1067f998
SDJ
74362012-05-05 Sergio Durigan Junior <sergiodj@redhat.com>
7437
7438 * stap-probe.h: Do not include unecessary `probe.h'.
7439
45dfa85a
AM
74402012-05-05 Alan Modra <amodra@gmail.com>
7441
7442 * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
7443 bfd_und_section_ptr.
7444 * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
7445 and bfd_com_section_ptr.
7446
cf093994
JB
74472012-05-04 Joel Brobecker <brobecker@adacore.com>
7448
762ebb75 7449 * MAINTAINERS (Past Maintainers): Add Chris Faylor.
cf093994 7450
d40dc7a8
JB
74512012-05-04 Joel Brobecker <brobecker@adacore.com>
7452
7453 * windows-nat.h (segment_register_p_ftype): New typedef.
7454 (windows_set_segment_register_p): Add declaration.
7455 * windows-nat.c (segment_register_p): New static global.
7456 (windows_set_segment_register_p): New function.
7457 (do_windows_fetch_inferior_registers): Add special handling
7458 for segment registers.
7459 * amd64-windows-nat.c: #include "amd64-tdep.h".
7460 (amd64_windows_segment_register_p): New function.
7461 (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
7462 * i386-windows-nat.c: #include "i386-tdep.h".
7463 (i386_windows_segment_register_p): New function.
7464 (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
7465
52b3699b
TG
74662012-05-04 Tristan Gingold <gingold@adacore.com>
7467
7468 * printcmd.c (set_command): Emit a warning if the expression is not
7469 an assignment.
7470
94c74239
JB
74712012-05-03 Joel Brobecker <brobecker@adacore.com>
7472
7473 * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
7474 Make static.
7475
fcf57f19
SDJ
74762012-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
7477
7478 * stap-probe.c (stap_is_operator): Change declaration.
7479 (stap_get_opcode): Change return value.
7480 (stap_parse_argument_1): Update calls to `stap_get_opcode' and
7481 `stap_parse_argument_1'.
7482
27d2932e
PA
74832012-05-03 Pedro Alves <pedro@codesourcery.com>
7484
7485 * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
7486 debug log.
7487
a20ee7a4
SCR
74882012-05-03 Siva Chandra Reddy <sivachandra@google.com>
7489
7490 Add two new methods global_block and static_block to gdb.Symtab
7491 objects.
7492 * NEWS (Python scripting): Add entry about the new methods.
7493 * python/py-symtab.c (stpy_global_block): New function which
7494 implements the gdb.Symtab.global_block() method.
7495 (stpy_static_block): New function which implements the
7496 gdb.Symtab.static_block() method.
7497 (symtab_object_methods): Add entries for the two new methods.
7498
943cb756
DE
74992012-05-03 Doug Evans <dje@google.com>
7500
7501 * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
7502 files.
7503
f4644a3f
YQ
75042012-05-03 Yao Qi <yao@codesourcery.com>
7505
7506 * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
7507 space.
7508 (i386_process_record): Ditto.
7509
ef61f180
JB
75102012-05-02 Joel Brobecker <brobecker@adacore.com>
7511
7512 * infcall.c (unwind_on_signal_p): Make static.
7513
02f1df11
JB
75142012-05-02 Joel Brobecker <brobecker@adacore.com>
7515
7516 * sol-thread.c (solaris_pid_to_str): Make static.
7517 (_initialize_sol_thread): Add prototype.
7518
39023530
JB
75192012-05-02 Joel Brobecker <brobecker@adacore.com>
7520
7521 * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
7522
c6b0c501
CF
75232012-05-02 Christopher Faylor <me.cygwin2012@cgf.cx>
7524
7525 * MAINTAINERS: Remove myself.
7526
1ef71717
JK
75272012-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7528
7529 Fix --without-auto-load-safe-path for MS-Windows host platform.
7530 * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
7531
b31b86a7
EZ
75322012-05-02 Eli Zaretskii <eliz@gnu.org>
7533
7534 * gdb_curses.h: Undefine KEY_EVENT before including curses
7535 headers. Move "#undef MOUSE_MOVED" before any curses header
7536 inclusion.
7537
777532fc
SDJ
75382012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
7539
7540 * features/i386/i386-mmx-linux.c: Regenerate.
7541 * features/rs6000/powerpc-32.c: Likewise.
7542 * features/rs6000/powerpc-32l.c: Likewise.
7543 * features/rs6000/powerpc-403.c: Likewise.
7544 * features/rs6000/powerpc-403gc.c: Likewise.
7545 * features/rs6000/powerpc-405.c: Likewise.
7546 * features/rs6000/powerpc-505.c: Likewise.
7547 * features/rs6000/powerpc-601.c: Likewise.
7548 * features/rs6000/powerpc-602.c: Likewise.
7549 * features/rs6000/powerpc-603.c: Likewise.
7550 * features/rs6000/powerpc-604.c: Likewise.
7551 * features/rs6000/powerpc-64.c: Likewise.
7552 * features/rs6000/powerpc-64l.c: Likewise.
7553 * features/rs6000/powerpc-750.c: Likewise.
7554 * features/rs6000/powerpc-860.c: Likewise.
7555 * features/rs6000/powerpc-e500.c: Likewise.
7556 * features/rs6000/powerpc-e500l.c: Likewise.
7557 * features/rs6000/powerpc-isa205-32l.c: Likewise.
7558 * features/rs6000/powerpc-isa205-64l.c: Likewise.
7559 * features/rs6000/rs6000.c: Likewise.
7560
d71871bc
SDJ
75612012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
7562
7563 * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
7564 variable.
7565 * stap-probe.c (stap_parse_single_operand) <reg_suffix,
7566 reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
7567 (stap_parse_argument) <e>: Likewise.
7568 (handle_stap_probe) <byte_order>: Likewise.
7569
fd820528
DE
75702012-04-30 Doug Evans <dje@google.com>
7571
7572 * dwarf2read.c (init_cutu_and_read_dies): Renamed from
7573 init_and_read_dies_worker. All callers updated.
7574 (init_cu_and_read_dies, init_tu_and_read_dies): Delete. All calls
7575 replaced with init_cutu_and_read_dies.
7576 (load_partial_comp_unit): Pass 1 for use_existing_cu.
7577 (find_partial_die): Remove FIXME. Don't free current CU.
7578
ec3f619d 75792012-04-30 Sterling Augustine <saugustine@google.com>
be36f02d
SA
7580
7581 * contrib: New directory.
7582 * contrib/test_pubnames_and_indexes.py: New file.
7583
fceca515
DE
75842012-04-30 Doug Evans <dje@google.com>
7585
7586 * dwarf2read.c (dwarf_decode_macros): New arg section_name.
7587 All callers updated.
7588 (init_cu_die_reader): Verify the section is non-empty.
7589 (dwarf_decode_line_header): Don't dereference section->asection
7590 until we know the section is present.
7591
311fe7e1
SDJ
75922012-04-29 Sergio Durigan Junior <sergiodj@redhat.com>
7593
7594 * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
7595 probes.
7596
5977971a
YQ
75972012-04-29 Yao Qi <yao@codesourcery.com>
7598
7599 * gdb-code-style.el: New hook gdb-markup-hook
7600 and gdb-comment-hook.
7601
dee91e82
DE
76022012-04-28 Doug Evans <dje@google.com>
7603
3019eac3
DE
7604 Initial support for Fission. http://gcc.gnu.org/wiki/DebugFission
7605 * symfile.c (default_symfile_relocate): Use sectp->owner instead of
7606 objfile->obfd.
7607 * symfile.h (dwarf2_debug_sections): New member addr.
7608 * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
7609 (ctx_no_get_addr_index): New function.
7610 * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
7611 (ctx_no_get_addr_index): Declare.
7612 * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
7613 * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
7614 (dwarf_expr_ctx_funcs): Update.
7615 (needs_get_addr_index): New function.
7616 (needs_frame_ctx_funcs): Update.
7617 * dwarf2loc.h (dwarf2_read_addr_index): Declare.
7618 * dwarf2read.c: #include "gdbcore.h".
7619 (dwarf2_per_objfile): New members addr, dwo_files.
7620 (dwarf2_elf_names): Add entry for addr.
7621 (struct dwo_section_names): New type.
7622 (dwo_section_names): New static global.
7623 (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
7624 (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
7625 old debug_types_section member updated to use this.
7626 Rename member debug_types_section to info_or_types_section,
7627 all uses updated.
7628 (signatured_type): Rename member type_offset to type_offset_in_tu,
7629 all uses updated. New member type_offset_in_section.
7630 (struct dwo_sections): New type.
7631 (struct dwo_unit): New type.
7632 (struct dwo_file): New type.
7633 (die_reader_specs): New member dwo_file.
7634 (dwarf2_locate_sections): Watch for .debug_addr.
7635 (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
7636 (dwarf2_read_section): Get bfd of section from bfd's asection,
7637 instead of objfile.
7638 (create_cus_from_index): Initialize the_cu->info_or_types_section.
7639 (create_signatured_type_table_from_index): Initialize
7640 sig_type->info_or_types_section.
7641 (dw2_get_file_names): Statement lists for type units with DWO files
7642 live in the DWO file.
7643 (create_debug_types_hash_table): New function.
7644 (create_all_type_units): Rewrite.
7645 (init_cu_die_reader): New arg dwo_file, all callers updated.
7646 (init_and_read_dies_worker): Get section from
7647 this_cu->info_or_types_section. Set sig_type->type_offset_in_section.
7648 Watch for DW_AT_GNU_dwo_name and if present lookup the file and
7649 continue reading the CU/TU from there.
7650 (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
7651 updated. Get section from this_cu->info_or_types_section.
7652 (create_all_comp_units): Initialize this_cu->info_or_types_section.
7653 (skip_one_die): New cases DW_FORM_GNU_addr_index,
7654 DW_FORM_GNU_str_index.
7655 (hash_dwo_file, eq_dwo_file): New functions.
7656 (allocate_dwo_file_hash_table): New function.
7657 (hash_dwo_unit, eq_dwo_unit): New functions.
7658 (allocate_dwo_unit_table): New function.
7659 (dwarf2_locate_dwo_sections): New function.
7660 (struct create_dwo_info_table_data): New type.
7661 (create_debug_info_hash_table_reader): New function.
7662 (create_debug_info_hash_table): New function.
7663 (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
7664 (lookup_dwo_file): New function.
7665 (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
7666 (free_dwo_file, free_dwo_file_cleanup): New functions.
7667 (free_dwo_file_from_slot, free_dwo_files): New functions.
7668 (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
7669 (dwarf2_record_block_ranges): Ditto.
7670 (read_partial_die): Ditto.
7671 (process_enumeration_scope): Update to use type_offset_in_section.
7672 (read_full_die_1): New function.
7673 (read_full_die): Rewrite.
7674 (read_attribute_value): New cases DW_FORM_GNU_addr_index,
7675 DW_FORM_GNU_str_index.
7676 (read_addr_index_1, read_addr_index): New functions.
7677 (read_addr_index_from_leb128): New function.
7678 (struct dwarf2_read_addr_index_data): New type.
7679 (dwarf2_read_addr_index_reader): New function.
7680 (dwarf2_read_addr_index): New function.
7681 (read_str_index): New function.
7682 (leb128_size): New function.
7683 (dwarf_decode_line_header): Delete arg abfd, all callers updated.
7684 If processing a type unit from a DWO file, get the line section
7685 from the DWO file.
7686 (var_decode_location): Watch for DW_OP_GNU_addr_index.
7687 (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
7688 DW_FORM_GNU_str_index.
7689 (lookup_die_type): Check whether section offset of type's die is
7690 known before looking it up. Remove assert. Condition can
7691 legimately happen for inter-cu type references.
7692 (dwarf_attr_name): Handle Fission attributes.
7693 (dwarf_form_name): Handle Fission forms.
7694 (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
7695 DW_FORM_GNU_str_index.
7696 (follow_die_sig): Update to use type_offset_in_section.
7697 (decode_locdesc): New case DW_OP_GNU_addr_index.
7698 (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
7699 DW_FORM_GNU_str_index.
7700 (cu_debug_loc_section): New function.
7701 (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
7702 (dwarf2_per_objfile_free): Unmap .debug_addr section.
7703 Free DWO files if present.
7704 * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
7705
dee91e82
DE
7706 Refactor DIE reading.
7707 * dwarf2read.c (dwarf2_per_objfile): Replace members
7708 debug_info_type_hash and debug_types_type_hash with die_type_hash.
7709 (die_reader_specs): New member "die_section". Temporarily make
7710 member "buffer" non-const, pending constifying all info_ptr uses.
7711 (die_reader_func_ftype): New typedef.
7712 (dw2_get_file_names_reader): New function.
7713 (dw2_get_file_names): Rewrite.
7714 (read_and_check_type_unit_head): Rename arg type_offset to
7715 type_offset_in_tu.
7716 (create_all_type_units): Improve debugging message.
7717 Improve dummy type unit check.
7718 (init_cu_die_reader): New arg "section". All callers updated.
7719 (init_and_read_dies_worker): New function.
7720 (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
7721 (init_cutu_and_read_dies_no_follow): New function.
7722 (init_cutu_and_read_dies_simple): New function.
7723 (process_psymtab_comp_unit_reader): New function.
7724 (process_psymtab_comp_unit): Delete args section,
7725 is_debug_types_section. Rewrite. All callers updated.
7726 (process_psymtab_type_unit): Renamed from process_type_comp_unit.
7727 All callers updated. Rewrite.
7728 (load_partial_comp_unit_reader): New function.
7729 (load_partial_comp_unit): Rewrite.
7730 (skip_children): New arg reader. Delete args buffer, cu.
7731 All callers updated.
7732 (skip_one_die): New arg reader. Delete args buffer, cu.
7733 All callers updated.
7734 (locate_pdi_sibling): New arg reader. Delete args buffer, abfd, cu.
7735 All callers updated.
7736 (load_full_comp_unit_reader): New function.
7737 (load_full_comp_unit): Rewrite.
7738 (read_comp_unit): Delete.
7739 (read_die_and_children_1): Delete, contents moved ...
7740 (read_die_and_children): ... here.
7741 (dwarf2_read_abbrevs): New arg abbrev_section. All callers updated.
7742 (load_partial_dies): New arg reader. Delete args abfd, buffer, cu.
7743 All callers updated.
7744 (read_partial_die): New arg reader. Delete args abfd, buffer, cu.
7745 All callers updated.
7746 (find_partial_die): Rewrite load_all_dies support.
7747 (read_attribute_value): New arg reader. Delete args abfd, cu.
7748 All callers updated.
7749 (read_attribute): New arg reader. Delete args abfd, cu.
7750 All callers updated.
7751 (load_full_type_unit): Add assert.
7752 (read_signatured_type_reader): New function.
7753 (read_signatured_type): Rewrite.
7754 (free_stack_comp_unit): Remove call to age_cached_comp_units.
7755 (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
7756 All callers updated. Set per_cu->cu = NULL after freeing it.
7757 (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
7758 (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
7759 (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
7760 (set_die_type): Update.
7761 (get_die_type_at_offset): Update.
7762 (read_file_scope): Call prepare_one_comp_unit.
7763 (read_type_unit_scope): Ditto.
7764 (prepare_one_comp_unit): Set producer if present.
7765
72d59e0d
SDJ
77662012-04-28 Sergio Durigan Junior <sergiodj@redhat.com>
7767
7768 * probe.c (compile_rx_or_error): Silence ARI warning about missing
7769 gettext function on `error'.
7770
0fefef59
DE
77712012-04-27 Doug Evans <dje@google.com>
7772
7773 * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
7774 is empty.
7775
28106bc2
SDJ
77762012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
7777 Tom Tromey <tromey@redhat.com>
7778
7779 * breakpoint.c (struct breakpoint_objfile_data)
7780 <longjmp_searched>,<longjmp_probes>,<exception_searched>,
7781 <exception_probes>: New fields.
7782 (free_breakpoint_probes): New function.
7783 (create_longjmp_master_breakpoint): Prefer SystemTap probe over
7784 `_Unwind_DebugHook'.
7785 (create_exception_master_breakpoint): Likewise.
7786 (_initialize_breakpoint): Registering cleanup for SystemTap probes.
7787 * infrun.c: Including necessary header files for handling SystemTap
7788 probes.
7789 (handle_inferior_event): Handling longjmp breakpoint and exceptions
7790 via SystemTap probes.
7791 (check_exception_resume): Remove `func' argument. Handle exception
7792 unwinding breakpoint set via a SystemTap probe.
7793 (insert_exception_resume_from_probe): New function.
7794
55aa24fb
SDJ
77952012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
7796 Tom Tromey <tromey@redhat.com>
7797 Jan Kratochvil <jan.kratochvil@redhat.com>
7798
7799 * Makefile.in (SFILES): Add `probe' and `stap-probe'.
7800 (COMMON_OBS): Likewise.
7801 (HFILES_NO_SRCDIR): Add `probe'.
7802 * NEWS: Mention support for static and SystemTap probes.
7803 * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
7804 SystemTap probes' arguments parser.
7805 * arm-linux-tdep.c: Including headers needed to perform the parsing
7806 of SystemTap probes' arguments.
7807 (arm_stap_is_single_operand): New function.
7808 (arm_stap_parse_special_token): Likewise.
7809 (arm_linux_init_abi): Initializing proper fields used by SystemTap
7810 probes' arguments parser.
7811 * ax-gdb.c (require_rvalue): Removing static declaration.
7812 (gen_expr): Likewise.
7813 * ax-gdb.h (gen_expr): Declaring function.
7814 (require_rvalue): Likewise.
7815 * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
7816 (bkpt_probe_breakpoint_ops): New variable.
7817 (momentary_breakpoint_from_master): Set the `probe' value.
7818 (add_location_to_breakpoint): Likewise.
7819 (break_command_1): Using proper breakpoint_ops according to the
7820 argument passed by the user in the command line.
7821 (bkpt_probe_insert_location): New function.
7822 (bkpt_probe_remove_location): Likewise.
7823 (bkpt_probe_create_sals_from_address): Likewise.
7824 (bkpt_probe_decode_linespec): Likewise.
7825 (tracepoint_probe_create_sals_from_address): Likewise.
7826 (tracepoint_probe_decode_linespec): Likewise.
7827 (tracepoint_probe_breakpoint_ops): New variable.
7828 (trace_command): Using proper breakpoint_ops according to the
7829 argument passed by the user in the command line.
7830 (initialize_breakpoint_ops): Initializing breakpoint_ops for
7831 static probes on breakpoints and tracepoints.
7832 * breakpoint.h (struct bp_location) <probe>: New field.
7833 * cli-utils.c (skip_spaces_const): New function.
7834 (extract_arg): Likewise.
7835 * cli-utils.h (skip_spaces_const): Likewise.
7836 (extract_arg): Likewise.
7837 * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
7838 * configure.ac: Append `stap-probe.o' to be generated when ELF
7839 support is present.
7840 * configure: Regenerate.
7841 * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
7842 * elfread.c: Include `probe.h' and `arch-utils.h'.
7843 (probe_key): New variable.
7844 (elf_get_probes): New function.
7845 (elf_get_probe_argument_count): Likewise.
7846 (elf_evaluate_probe_argument): Likewise.
7847 (elf_compile_to_ax): Likewise.
7848 (elf_symfile_relocate_probe): Likewise.
7849 (stap_probe_key_free): Likewise.
7850 (elf_probe_fns): New variable.
7851 (elf_sym_fns): Add `sym_probe_fns' value.
7852 (elf_sym_fns_lazy_psyms): Likewise.
7853 (elf_sym_fns_gdb_index): Likewise.
7854 (_initialize_elfread): Initialize objfile cache for static
7855 probes.
7856 * gdb_vecs.h (struct probe): New forward declaration.
7857 (probe_p): New VEC declaration.
7858 * gdbarch.c: Regenerate.
7859 * gdbarch.h: Regenerate.
7860 * gdbarch.sh (stap_integer_prefix): New variable.
7861 (stap_integer_suffix): Likewise.
7862 (stap_register_prefix): Likewise.
7863 (stap_register_suffix): Likewise.
7864 (stap_register_indirection_prefix): Likewise.
7865 (stap_register_indirection_suffix): Likewise.
7866 (stap_gdb_register_prefix): Likewise.
7867 (stap_gdb_register_suffix): Likewise.
7868 (stap_is_single_operand): New function.
7869 (stap_parse_special_token): Likewise.
7870 (struct stap_parse_info): Forward declaration.
7871 * i386-tdep.c: Including headers needed to perform the parsing
7872 of SystemTap probes' arguments.
7873 (i386_stap_is_single_operand): New function.
7874 (i386_stap_parse_special_token): Likewise.
7875 (i386_elf_init_abi): Initializing proper fields used by SystemTap
7876 probes' arguments parser.
7877 * i386-tdep.h (i386_stap_is_single_operand): New function.
7878 (i386_stap_parse_special_token): Likewise.
7879 * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
7880 * mipsread.c (ecoff_sym_fns): Likewise.
7881 * objfiles.c (objfile_relocate1): Support relocation for static
7882 probes.
7883 * parse.c (prefixify_expression): Remove static declaration.
7884 (initialize_expout): Likewise.
7885 (reallocate_expout): Likewise.
7886 * parser-defs.h (initialize_expout): Declare function.
7887 (reallocate_expout): Likewise.
7888 (prefixify_expression): Likewise.
7889 * ppc-linux-tdep.c: Including headers needed to perform the parsing
7890 of SystemTap probes' arguments.
7891 (ppc_stap_is_single_operand): New function.
7892 (ppc_stap_parse_special_token): Likewise.
7893 (ppc_linux_init_abi): Initializing proper fields used by SystemTap
7894 probes' arguments parser.
7895 * probe.c: New file, for generic statically defined probe support.
7896 * probe.h: Likewise.
7897 * s390-tdep.c: Including headers needed to perform the parsing of
7898 SystemTap probes' arguments.
7899 (s390_stap_is_single_operand): New function.
7900 (s390_gdbarch_init): Initializing proper fields used by SystemTap
7901 probes' arguments parser.
7902 * somread.c (som_sym_fns): Add `sym_probe_fns' value.
7903 * stap-probe.c: New file, for SystemTap probe support.
7904 * stap-probe.h: Likewise.
7905 * symfile.h: Include `gdb_vecs.h'.
7906 (struct sym_probe_fns): New struct.
7907 (struct sym_fns) <sym_probe_fns>: New field.
7908 * symtab.c (init_sal): Initialize `probe' field.
7909 * symtab.h (struct probe): Forward declaration.
7910 (struct symtab_and_line) <probe>: New field.
7911 * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
7912 locations.
7913 (stop_tracing): Likewise.
7914 * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
7915
22d2b532
SDJ
79162012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
7917 Tom Tromey <tromey@redhat.com>
7918
7919 * ax-gdb.c (gen_expr): Clean up code to handle internal variables
7920 and to compile agent expressions.
7921 * infrun.c (siginfo_make_value): New argument `ignore'.
7922 (siginfo_funcs): New struct.
7923 (_initialize_infrun): New argument when calling
7924 `create_internalvar_type_lazy'.
7925 * thread.c (thread_id_make_value): New argument `ignore'.
7926 (thread_funcs): New struct.
7927 (_initialize_thread): New argument when calling
7928 `create_internalvar_type_lazy'.
7929 * tracepoint.c (sdata_make_value): New argument `ignore'.
7930 (sdata_funcs): New struct.
7931 (_initialize_tracepoint): New argument when calling
7932 `create_internalvar_type_lazy'.
7933 * value.c (make_value): New struct.
7934 (create_internalvar_type_lazy): New argument `data'.
7935 (compile_internalvar_to_ax): New function.
7936 (value_of_internalvar): Properly handling `make_value' case.
7937 (clear_internalvar): Likewise.
7938 (show_convenience): Adding `TRY_CATCH' block.
7939 * value.h (internalvar_make_value): Delete, replace by...
7940 (struct internalvar_funcs): ... this.
7941 (create_internalvar_type_lazy) <fun>: Delete argument.
7942 (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
7943 (compile_internalvar_to_ax): New function.
7944 * windows-tdep.c (tlb_make_value): New argument `ignore'.
7945 (tlb_funcs): New struct.
7946 (_initialize_windows_tdep): New argument when calling
7947 `create_internalvar_type_lazy'.
7948
91da1414
MW
79492012-04-27 Mark Wielaard <mjw@redhat.com>
7950
7951 * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
7952 see whether it is an address or a constant offset from DW_AT_low_pc.
7953 (dwarf2_record_block_ranges): Likewise.
7954 (read_partial_die): Likewise.
7955
4ab9d8ec
MW
79562012-04-26 Mark Wielaard <mjw@redhat.com>
7957
7958 * MAINTAINERS (Write After Approval): Add myself to the list.
7959
a0911fd0
MR
79602012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
7961
7962 * proc-utils.h (proc_prettyprint_signalset): New prototype.
7963 (proc_prettyprint_signal): Likewise.
7964 (proc_prettyprint_faultset): Likewise.
7965 (proc_prettyprint_fault): Likewise.
7966 (proc_prettyprint_actionset): Likewise.
7967 (proc_prettyprint_flags): Move to new proc-flags.c section.
7968 (proc_prettyfprint_flags): New prototype.
7969 * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
7970 (proc_syscall, proc_cursig): Likewise.
7971 (proc_set_kill_on_last_close): Likewise.
7972 (proc_unset_kill_on_last_close): Likewise.
7973 (proc_set_watchpoint): Make static.
7974 (proc_delete_dead_threads): Likewise.
7975 (procfs_set_watchpoint): Likewise.
7976 (_initialize_procfs): Add prototype.
7977 * proc-events.c: Include proc-utils.h.
7978 (init_syscall_table): Make static.
7979 * proc-api.c (_initialize_proc_api): Add prototype.
7980 * proc-flags.c: Include proc-utils.h.
7981
9009e1ae
MR
79822012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
7983
7984 * configure.ac: Add AC_ARG_PROGRAM.
7985 * configure: Regenerate.
7986
4fae6e18
JK
79872012-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
7988
7989 Fix DW_AT_lower_bound defaults for DWARF-4+.
7990 * dwarf2read.c (read_subrange_type): Remove initialization of low and
7991 high. New variable low_default_is_valid. Implement DWARF-4+
7992 DW_AT_lower_bound defaults. Print complaint for DW_AT_lower_bound with
7993 no default by the DWARF standard.
7994
14132e89 79952012-04-26 Maciej W. Rozycki <macro@mips.com>
f782ad9b 7996 Maciej W. Rozycki <macro@codesourcery.com>
14132e89
MR
7997
7998 * infrun.c (handle_inferior_event): Move the check for return
7999 trampolines ahead of the check for function trampolines.
8000 * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
8001 * mips-tdep.c (mips_str_mips16_call_stub): New variable.
8002 (mips_str_mips16_ret_stub): Likewise.
8003 (mips_str_call_fp_stub): Likewise.
8004 (mips_str_call_stub): Likewise.
8005 (mips_str_fn_stub): Likewise.
8006 (mips_str_pic): Likewise.
8007 (mips_in_frame_stub): New function.
8008 (mips_unwind_pc): Return the return address rather than the PC
8009 if the PC of an intermediate frame is inside a call thunk.
8010 (mips_is_stub_suffix): New function.
8011 (mips_is_stub_mode): Likewise.
8012 (mips_get_mips16_fn_stub_pc): Likewise.
8013 (mips_skip_mips16_trampoline_code): Update to handle all the
8014 currently generated stub types. Don't recurse into __fn_stub
8015 thunks. Remove heuristics to handle stubs beyond etext/_etext.
8016 Use cooked register accesses.
8017 (mips_in_return_stub): Reintroduce function.
8018 (mips_skip_trampoline_code): Traverse trampolines recursively.
8019 (mips_gdbarch_init): Handle MIPS16 return trampolines.
8020
518f0db5 80212012-04-26 Joel Brobecker <brobecker@adacore.com>
8022
8023 GDB 7.4.1 released.
8024
3184d3f9
JL
80252012-04-26 Jonathan Larmour <jifl@eCosCentric.com>
8026
8027 * arm-tdep.h (VFP_REGISTER_SIZE): Define.
8028 * features/arm-with-m-vfp-d16.xml: New file. Describes
8029 Cortex-M with VFPv4-sp-d16 FPU register layout.
8030 * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
8031 * features/arm-with-m-vfp-d16.c: New. Generated from above.
8032 * arm-tdep.c: Include arm-with-m-vfp-d16.c.
8033 (arm-register_g_packet_guesses): Add vfp-d16 guess.
8034 (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
8035
b6201d44
DE
80362012-04-25 Doug Evans <dje@google.com>
8037
8038 * cli/cli-decode.c (print_doc_line): Use stream instead of
8039 current_uiout.
8040
4e2f8df6
SDJ
80412012-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
8042
8043 * features/arm-with-iwmmxt.c: Regenerate.
8044 * features/arm-with-m-fpa-layout.c: Likewise.
8045 * features/arm-with-m.c: Likewise.
8046 * features/arm-with-neon.c: Likewise.
8047 * features/arm-with-vfpv2.c: Likewise.
8048 * features/arm-with-vfpv3.c: Likewise.
8049 * features/mips-dsp-linux.c: Likewise.
8050 * features/mips-linux.c: Likewise.
8051 * features/mips64-dsp-linux.c: Likewise.
8052 * features/mips64-linux.c: Likewise.
8053 * features/s390-linux32.c: Likewise.
8054 * features/s390-linux32v1.c: Likewise.
8055 * features/s390-linux32v2.c: Likewise.
8056 * features/s390-linux64.c: Likewise.
8057 * features/s390-linux64v1.c: Likewise.
8058 * features/s390-linux64v2.c: Likewise.
8059 * features/s390x-linux64.c: Likewise.
8060 * features/s390x-linux64v1.c: Likewise.
8061 * features/s390x-linux64v2.c: Likewise.
8062 * features/tic6x-c62x-linux.c: Likewise.
8063 * features/tic6x-c62x.c: Likewise.
8064 * features/tic6x-c64x-linux.c: Likewise.
8065 * features/tic6x-c64x.c: Likewise.
8066 * features/tic6x-c64xp-linux.c: Likewise.
8067 * features/tic6x-c64xp.c: Likewise.
8068 * target-descriptions.c: Only generate `field_type' and `type'
8069 variables when needed.
8070
2def3e66
JB
80712012-04-25 Fredrik Hederstierna <fredrikh.hederstierna@securitas-direct.com>
8072
8073 * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
8074
a766d390
DE
80752012-04-25 Doug Evans <dje@google.com>
8076
8077 Initial pass at Go language support.
8078 * NEWS: Mention Go.
8079 * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
8080 go-valprint.c.
8081 (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
8082 (YYFILES): Add go-exp.c.
8083 (YYOBJ): Add go-exp.o.
8084 (local-maintainer-clean): Delete go-exp.c.
8085 * defs.h (enum language): Add language_go.
8086 * dwarf2read.c: #include "go-lang.h".
8087 (fixup_go_packaging): New function.
8088 (process_full_comp_unit): Call it when processing Go CUs.
8089 (dwarf2_physname): Add Go support.
8090 (read_file_scope): Handle missing language spec for GNU Go.
8091 (set_cu_language): Handle DW_LANG_Go.
8092 * go-exp.y: New file.
8093 * go-lang.h: New file.
8094 * go-lang.c: New file.
8095 * go-typeprint.c: New file.
8096 * go-valprint.c: New file.
8097 * symtab.c: #include "go-lang.h".
8098 (symbol_set_language): Handle language_go.
8099 (symbol_find_demangled_name, symbol_set_names): Ditto.
8100 (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
8101
4e2af517
JM
81022012-04-24 Jim Meyering <meyering@redhat.com>
8103
8104 avoid a few strncpy-induced buffer overruns
8105 * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
8106 fname and psargs before trying to concatenate.
8107 * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
8108 "name" before applying strchr.
8109
b77b7f52
SCR
81102012-04-25 Siva Chandra Reddy <sivachandra@google.com>
8111
8112 * CONTRIBUTE: Use unified diff instead of context diff when
8113 generating patches.
8114
6321c22a
MR
81152012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
8116
8117 * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
8118 code. Handle JR.HB correctly.
8119
742c84f6
MR
81202012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
8121
8122 * mips-tdep.c
8123 (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
8124 with the other MIPS16 helpers.
8125
7fc7e0c3
SDJ
81262012-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
8127
8128 * observer.sh: Conditionally declare `args', thus cleaning up
8129 unused instances of this variable.
8130
20388dd6
YQ
81312012-04-24 Yao Qi <yao@codesourcery.com>
8132
8133 Revert this patch to allow breakpoint always-inserted
8134 in record target.
8135 2011-12-05 Pedro Alves <pedro@codesourcery.com>
f782ad9b
AS
8136 * breakpoint.c: Include record.h.
8137 (breakpoints_always_inserted_mode): Return false when the record
8138 target is in use.
20388dd6
YQ
8139
8140 * breakpoint.c (iterate_over_bp_locations): New.
8141 * breakpoint.h: Declare.
8142 New typedef walk_bp_location_callback.
8143 * record.c (record_open): Call record_init_record_breakpoints.
8144 (record_sync_record_breakpoints): New.
8145 (record_init_record_breakpoints): New.
8146 * NEWS: Mention supporting breakpoint always-inserted mode in
8147 record target.
8148
4734f50e
MK
81492012-04-24 Marc Khouzam <marc.khouzam@ericsson.com>
8150
8151 * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
8152 any thread.
8153
c326b90e
YQ
81542012-04-24 Yao Qi <yao@codesourcery.com>
8155
8156 * breakpoint.c (ep_is_catchpoint): Renamed to ...
8157 (is_catchpoint): ... it.
8158 (print_one_breakpoint_location): Caller update.
8159 * breakpoint.h: Update declaration.
8160
d8fb5a1e
DM
81612012-04-23 David S. Miller <davem@davemloft.net>
8162
8163 * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
8164
34431a2a
TT
81652012-04-23 Tom Tromey <tromey@redhat.com>
8166
8167 * buildsym.c (add_free_pendings): Remove.
8168 * buildsym.h (add_free_pendings): Remove.
8169
4568ecf9
DE
81702012-04-23 Doug Evans <dje@google.com>
8171
8172 * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
8173 attr.u.unsnd instead of attr.u.addr.
8174 (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
8175 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
8176 DW_FORM_ref_udata.
8177 (dump_die_shallow): Update cases DW_FORM_ref_addr,
8178 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4. Add cases DW_FORM_ref8,
8179 DW_FORM_ref_udata.
8180 (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
8181
dca9aa3a
MR
81822012-04-23 Maciej W. Rozycki <macro@codesourcery.com>
8183
8184 * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
8185 (mips_o32_return_value): Likewise.
8186 (mips_o64_return_value): Likewise.
8187
c8ea1972
PH
81882012-04-21 Paul Hilfinger <hilfinger@adacore.com>
8189
8190 * ada-lang.c (ada_evaluate_subexp): Add cases for
f782ad9b
AS
8191 TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
8192 their treatment in eval.c.
c8ea1972 8193
8d1b3521
DM
81942012-04-21 David S. Miller <davem@davemloft.net>
8195
8196 * sparc-tdep.c (X_DISP10): Define.
8197 (sparc_analyze_control_transfer): Handle compare-and-branch.
8198
03145bf4
JL
81992012-04-21 Jonathan Larmour <jifl@eCosCentric.com>
8200
8201 * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
8202 * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
8203
004159a2 82042012-04-20 Nigel Stephens <nigel@mips.com>
f782ad9b 8205 Maciej W. Rozycki <macro@codesourcery.com>
004159a2
MR
8206
8207 * mips-tdep.c (mips_float_register_p): New function.
8208 (mips_convert_register_float_case_p): Use mips_float_register_p.
8209 (mips_register_type): Likewise.
8210 (mips_print_register): Likewise.
8211 (print_gp_register_row): Likewise.
8212 (mips_print_registers_info): Likewise.
8213
7f0e6aae
MR
82142012-04-20 Shun-Yen Lu <dark.asparagus@gmail.com>
8215
8216 * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
8217 of mips16 symbols.
8218
bc17beea
AP
82192012-04-20 Andrew Pinski <apinski@cavium.com>
8220
8221 * MAINTAINERS (Write After Approval): Add myself to the list.
8222
1730a5a5
SDJ
82232012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
8224
8225 * MAINTAINERS: Update my e-mail address.
8226
38ea300a
PA
82272012-04-20 Pedro Alves <palves@redhat.com>
8228
8229 * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
8230 $srcdir.
8231 * configure: Regenerate.
8232
111dfaae
SDJ
82332012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
8234
8235 * cp-support.h: Include `gdb_vecs.h'. Delete `const_char_ptr' VEC
8236 declaration.
8237 * gdb_vecs.h: Declare `const_char_ptr' VEC.
8238
4fb2c64a
JK
82392012-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8240
8241 Fix compilation compatibility with python-2.4
8242 * python/py-type.c (convert_field): Cast ADDRSTRING for
8243 PyObject_SetAttrString as non-const. New comment.
8244
6328eb38
TT
82452012-04-19 Tom Tromey <tromey@redhat.com>
8246
8247 * top.c (quit_target): Use all_cleanups.
8248 * main.c (captured_command_loop): Use all_cleanups.
8249 * exceptions.c (throw_exception): Use all_cleanups.
8250
c971b7fa
PA
82512012-04-19 Pedro Alves <palves@redhat.com>
8252
8253 * Makefile.in (GNULIB_BUILDDIR): New.
8254 (LIBGNU, INCGNU, GNULIB_H): Adjust.
8255 (SUBDIRS): Add $(GNULIB_BUILDDIR).
8256 (CLEANDIRS). Remove gnulib/import.
8257 (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
8258 (all-lib): Ditto.
8259 (distclean): Remove the $(GNULIB_BUILDDIR) directory.
8260 (gnulib/import/Makefile): Replace gnulib/import with
8261 $(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
8262 (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
8263 (aclocal_m4_deps): Remove the gnulib dependencies. Add
8264 acx_configure_dir.m4.
8265 * acinclude.m4: Include acx_configure_dir.m4.
8266 * acx_configure_dir.m4: New file.
8267 * aclocal.m4: Regenerate.
a09130f9
PA
8268 * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
8269 calls. Configure gnulib using ACX_CONFIGURE_DIR.
8270 (GNULIB): New variable.
8271 (GNULIB_STDINT_H): Adjust.
8272 (AC_OUTPUT): Don't output gnulib/Makefile.
8273 * gdb/defs.h: Include build-gnulib/config.h.
8274 * aclocal.m4: Regenerate.
8275 * config.in: Regenerate.
8276 * configure: Regenerate.
8277
8278 * gnulib/Makefile.in: New file.
8279 * gnulib/configure.ac: New file.
8280 * gnulib/aclocal.m4: New file.
8281 * gnulib/config.in: New file.
8282 * gnulib/configure: New file.
c971b7fa
PA
8283 * gnulib/: Re-run gnulib-tool to adjust.
8284
b10faa68
DE
82852012-04-19 Doug Evans <dje@google.com>
8286
8287 * cleanups.h (struct cleanup): Move to cleanups.c.
8288 (make_cleanup_dtor_ftype): New typedef.
8289 (make_cleanup_dtor): Use it.
8290 (ALL_CLEANUPS): Replace with ...
8291 (all_cleanups): ... this. Declare. All uses updated.
8292 * cleanups.c: #include "gdb_assert.h".
8293 (sentinel_cleanup): New static global.
8294 (SENTINEL_CLEANUP): Define.
8295 (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
8296 (make_my_cleanup2): Assert result is non-NULL.
8297 (all_cleanups): New function.
8298 (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
8299 of NULL.
8300
d8c267cc
PA
83012012-04-19 Pedro Alves <palves@redhat.com>
8302
8303 * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
8304 Adjust paths to gnulib imported files.
8305
809277f8
PA
83062012-04-19 Pedro Alves <palves@redhat.com>
8307
8308 * gnulib/: Move whole directory ...
8309 * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
8310 * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
8311 (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
8312 (aclocal_m4_deps): Adjust.
8313 * aclocal.m4: Regenerate.
8314 * configure: Regenerate.
8315 * configure.ac: Adjust AC_OUTPUT output.
8316
aad9eab9
YQ
83172012-04-19 Yao Qi <yao@codesourcery.com>
8318
8319 * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
8320 (vec.o): New rule.
8321 * vec.c: Move it ...
8322 * common/vec.c: ... here.
8323 * vec.h: Move it ...
8324 * common/vec.h: ... here.
8325
48fe4669
YQ
83262012-04-19 Yao Qi <yao@codesourcery.com>
8327
8328 * gdb-code-style.el: New.
8329
770d76d7
PA
83302012-04-18 Pedro Alves <palves@redhat.com>
8331
8332 Update gnulib from latest git.
8333 (639ea5ae15e39fe48d43e04864b2997301e4b969)
8334
8335 * gnulib/Makefile.am: Update.
8336 * gnulib/dummy.c: Update.
8337 * gnulib/extra/arg-nonnull.h: Update.
8338 * gnulib/extra/c++defs.h: Update.
8339 * gnulib/extra/update-copyright: Update.
8340 * gnulib/extra/warn-on-use.h: Update.
8341 * gnulib/inttypes.in.h: Update.
8342 * gnulib/m4/00gnulib.m4: Update.
8343 * gnulib/m4/extensions.m4: Update.
8344 * gnulib/m4/gnulib-cache.m4: Update.
8345 * gnulib/m4/gnulib-common.m4: Update.
8346 * gnulib/m4/gnulib-comp.m4: Update.
8347 * gnulib/m4/gnulib-tool.m4: Update.
8348 * gnulib/m4/include_next.m4: Update.
8349 * gnulib/m4/inttypes-pri.m4: Update.
8350 * gnulib/m4/inttypes.m4: Update.
8351 * gnulib/m4/longlong.m4: Update.
8352 * gnulib/m4/memchr.m4: Update.
8353 * gnulib/m4/memmem.m4: Update.
8354 * gnulib/m4/mmap-anon.m4: Update.
8355 * gnulib/m4/multiarch.m4: Update.
8356 * gnulib/m4/onceonly.m4: Update.
8357 * gnulib/m4/stddef_h.m4: Update.
8358 * gnulib/m4/stdint.m4: Update.
8359 * gnulib/m4/string_h.m4: Update.
8360 * gnulib/m4/warn-on-use.m4: Update.
8361 * gnulib/m4/wchar_h.m4: Update.
8362 * gnulib/m4/wchar_t.m4: Update.
8363 * gnulib/m4/wint_t.m4: Update.
8364 * gnulib/memchr.c: Update.
8365 * gnulib/memmem.c: Update.
8366 * gnulib/stddef.in.h: Update.
8367 * gnulib/stdint.in.h: Update.
8368 * gnulib/str-two-way.h: Update.
8369 * gnulib/string.in.h: Update.
8370 * gnulib/wchar.in.h: Update.
8371
8372 * gnulib/extra/arg-nonnull.h: Delete.
8373 * gnulib/extra/c++defs.h: Delete.
8374 * gnulib/extra/warn-on-use.h: Delete.
8375 * gnulib/m4/wchar_h.m4: Delete.
8376 * gnulib/m4/wint_t.m4: Delete.
8377 * gnulib/wchar.in.h: Delete.
8378
8379 * gnulib/extra/snippets/arg-nonnull.h: New.
8380 * gnulib/extra/snippets/c++defs.h: New.
8381 * gnulib/extra/snippets/warn-on-use.h: New.
8382
8383 * aclocal.m4: Regenerate.
8384 * config.in: Regenerate.
8385 * configure: Regenerate.
8386 * gnulib/Makefile.in: Regenerate.
8387
174e088e
PA
83882012-04-18 Pedro Alves <palves@redhat.com>
8389
8390 Reimport the update-copyright module from gnulib
8391 (250b80067c1e1d8faa0c42fb572f721975b929c5).
8392
8393 * configure: Regenerate.
8394 * gnulib/Makefile.am: Update.
8395 * gnulib/Makefile.in: Regenerate.
8396 * gnulib/extra/update-copyright: Update.
8397 * gnulib/m4/gnulib-cache.m4: Update.
8398 * gnulib/m4/gnulib-comp.m4: Update.
8399
7f533142
JB
84002012-04-18 Tristan Gingold <gingold@adacore.com>
8401
8402 * configure.ac (aix): Put -lpthread into libs.
8403 * configure: Regenerate.
8404
001822aa
TT
84052012-04-18 Tom Tromey <tromey@redhat.com>
8406
8407 * linespec.c (convert_linespec_to_sals): Don't use
8408 SYMBOL_OBJ_SECTION.
8409 (compare_msymbols): Arguments are minsym_and_objfile, not
8410 minimal_symbol*. Don't use SYMBOL_OBJ_SECTION.
8411
db026a31
PA
84122012-04-18 Pedro Alves <palves@redhat.com>
8413
8414 Revert gnulib/ part of:
8415 2011-01-01 Joel Brobecker <brobecker@adacore.com>
8416 Copyright year update in most files (performed by copyright.sh).
8417
12df843f
JK
84182012-04-18 Jan Kratochvil <jan.kratochvil@redhat.com>
8419
8420 Fix 64-bit constants on 32-bit hosts.
8421 * dwarf2read.c (read_unsigned_leb128): Change declaration return type
8422 from unsigned long to ULONGEST.
8423 (read_signed_leb128): Change declaration return type from long to
8424 LONGEST.
8425 (dwarf2_const_value_attr): Change declaration parameter value from long
8426 to LONGEST.
8427 (dwarf2_compute_name): Change variable value from long to LONGEST.
8428 (read_unsigned_leb128): Change return type, variable result and some
8429 casts from unsigned long to ULONGEST.
8430 (read_signed_leb128): Change return type, variable result and some
8431 casts from long to LONGEST.
8432 (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
8433 value from long to LONGEST.
8434 (dwarf2_const_value): Change variable value from long to LONGEST.
8435 * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
8436 plongest and hex_string.
8437 * symtab.h (struct general_symbol_info): Change ivalue from long to
8438 LONGEST, remove the comment.
8439 * tracepoint.c (validate_actionline, collect_symbol, scope_info):
8440 Change SYMBOL_VALUE format strings to use plongest and hex_string.
8441
14e75d8e
JK
84422012-04-18 Siddhesh Poyarekar <siddhesh@redhat.com>
8443
8444 PR symtab/7259:
8445 * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
8446 * ada-lang.c (ada_discrete_type_high_bound)
ac4ea3c2
JK
8447 (ada_discrete_type_low_bound): Fix function comment. Use
8448 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
14e75d8e
JK
8449 (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
8450 (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8451 * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
8452 Use TYPE_FIELD_ENUMVAL.
8453 * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
8454 (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8455 * c-typeprint.c (c_type_print_base): Move variable lastval to inner
8456 block, change it to LONGEST. Use TYPE_FIELD_ENUMVAL for
8457 TYPE_CODE_ENUM.
8458 * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
8459 * dwarf2read.c (process_enumeration_scope): Likewise.
8460 * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
8461 field.bitpos.
8462 (class StructMainTypePrettyPrinter): Support also
8463 FIELD_LOC_KIND_ENUMVAL.
8464 * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
8465 TYPE_CODE_ENUM.
8466 (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8467 (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
8468 * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
8469 (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment. New
8470 field enumval.
8471 (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
8472 accommodate enumval.
8473 (struct call_site): Adjust loc_kind to accommodate enumval.
8474 (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
8475 (TYPE_FIELD_ENUMVAL): New macros.
8476 * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
8477 * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
8478 TYPE_CODE_ENUM.
8479 * p-typeprint.c (pascal_type_print_base): Likewise.
8480 * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
8481 enumval.
8482 * python/lib/gdb/types.py (make_enum_dict): Likewise.
8483 * python/py-type.c (convert_field): New variable addrstring. Use
8484 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8485 (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
8486 * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
8487 * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
8488 TYPE_CODE_ENUM.
8489 * valprint.c (generic_val_print): Likewise.
8490
380bca97
DE
84912012-04-17 Doug Evans <dje@google.com>
8492
dcc07052
DE
8493 * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
8494
380bca97
DE
8495 * dwarf2read.c: Whitespace fixes.
8496 (lookup_signatured_type): Tweak comment.
8497 (get_die_type_at_offset): Fix comment.
8498
ec92004f
JB
84992012-04-17 Joel Brobecker <brobecker@adacore.com>
8500
8501 * xcoffread.c (xcoff_secnum_to_sections): New function.
8502 (secnum_to_section, secnum_to_bfd_section): Reimplement
8503 using xcoff_secnum_to_sections. Rename "secnum" parameter
8504 into "n_scnum".
8505 (RECORD_MINIMAL_SYMBOL): Delete.
8506 (record_minimal_symbol): New function.
8507 (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
8508 by call to record_minimal_symbol and set misc_func_recorded
8509 to 1. Set last_csect_sec to the XCOFF section index instead
8510 of GDB's section_offset index. Update calls to
8511 prim_record_minimal_symbol_and_info to pass the BFD section
8512 as well.
8513
40301fb7
JB
85142012-04-17 Joel Brobecker <brobecker@adacore.com>
8515
8516 * xcoffread.c (read_xcoff_symtab): Delete variables
8517 last_csect_val and last_csect_sec and associated code.
8518
e0088cfd
DE
85192012-04-17 Doug Evans <dje@google.com>
8520
58d5e2c3
DE
8521 * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
8522 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8523 * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
8524 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
8525
c27f5738
DE
8526 * cleanups.h: New file.
8527 * cleanups.c: New file.
8528 * Makefile.in (SFILES): Add cleanups.c.
8529 (HFILES_NO_SRCDIR): Add cleanups.h.
8530 (COMMON_OBS): Add cleanups.o.
8531 * defs.h (struct cleanup): Moved to cleanups.h.
8532 (do_cleanups,do_final_cleanups): Ditto.
8533 (discard_cleanups,discard_final_cleanups): Ditto
8534 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8535 (save_cleanups,save_final_cleanups): Ditto.
8536 (restore_cleanups,restore_final_cleanups): Ditto.
8537 (null_cleanup): Ditto.
8538 (make_my_cleanup,make_my_cleanup2): Ditto.
8539 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8540 * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
8541 (do_cleanups,do_final_cleanups): Ditto.
8542 (discard_cleanups,discard_final_cleanups): Ditto
8543 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8544 (save_cleanups,save_final_cleanups): Ditto.
8545 (restore_cleanups,restore_final_cleanups): Ditto.
8546 (null_cleanup): Ditto.
8547 (make_my_cleanup,make_my_cleanup2): Ditto.
8548 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8549
e0088cfd
DE
8550 * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
8551 make_my_cleanup.
8552 (make_cleanup_dyn_string_delete): Ditto.
8553 (make_cleanup_ui_file_delete): Ditto.
8554 (make_cleanup_ui_out_redirect_pop): Ditto.
8555 (make_cleanup_free_section_addr_info): Ditto.
8556 (make_cleanup_restore_integer): Ditto.
8557 (make_cleanup_unpush_target): Ditto.
8558 (make_cleanup_value_free_to_mark): Ditto.
8559 (make_cleanup_value_free): Ditto.
8560 (make_cleanup_free_so): Ditto.
8561
4dc84fd1
JK
85622012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8563
8564 New option "set debug auto-load".
8565 * NEWS: New commands "set debug auto-load" and "show debug auto-load".
8566 * auto-load.c (debug_auto_load, show_debug_auto_load: New.
8567 (auto_load_safe_path_vec_update)
8568 (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
8569 if DEBUG_AUTO_LOAD.
8570 (file_is_auto_load_safe): New parameters debug_fmt and ....
8571 Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
8572 (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
8573 caller by explanatory string.
8574 (_initialize_auto_load): Register "set debug auto-load".
8575 * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
8576 and ....
8577 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8578 (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
8579 by explanatory string.
8580 * main.c (captured_main): Likewise.
8581 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
8582 (source_section_scripts): Likewise.
8583
bccbefd2
JK
85842012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8585
8586 New option "set auto-load safe-path".
8587 * NEWS: New commands "set auto-load safe-path"
8588 and "show auto-load safe-path".
8589 * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
8590 (auto_load_safe_path, auto_load_safe_path_vec)
8591 (auto_load_safe_path_vec_update, set_auto_load_safe_path)
8592 (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
8593 (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
8594 (source_gdb_script_for_objfile): New variable is_safe. Call
8595 file_is_auto_load_safe. Return if it is not.
8596 (struct loaded_script): New field loaded.
8597 (maybe_add_script): Add parameter loaded. Initialize SLOT with it.
8598 (print_script): Use LOADED indicator instead of FULL_PATH. Change
8599 output "Missing" to "No".
8600 (_initialize_auto_load): New variable cmd. Initialize
8601 auto_load_safe_path. Register "set auto-load safe-path",
8602 "show auto-load safe-path" and "add-auto-load-safe-path".
8603 * auto-load.h (maybe_add_script): Add parameter loaded.
8604 (file_is_auto_load_safe): New declaration.
8605 * config.in: Regenerate.
8606 * configure: Regenerate.
8607 * configure.ac: New parameters --with-auto-load-safe-path
8608 and --without-auto-load-safe-path.
8609 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8610 (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
8611 * main.c (captured_main): Check file_is_auto_load_safe for
8612 LOCAL_GDBINIT.
8613 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
8614 variable is_safe. Call file_is_auto_load_safe. Return if it is not.
8615 (source_section_scripts): Call file_is_auto_load_safe. Return if it is
8616 not.
8617
bf88dd68
JK
86182012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8619
8620 auto-load: Implementation.
8621 * NEWS: New descriptions for "info auto-load",
8622 "info auto-load gdb-scripts", "info auto-load python-scripts",
8623 "info auto-load local-gdbinit" and "info auto-load libthread-db".
8624 Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
8625 and "show auto-load-scripts". New description for "set auto-load",
8626 "show auto-load", "set auto-load gdb-scripts",
8627 "show auto-load gdb-scripts", "set auto-load python-scripts",
8628 "show auto-load python-scripts", "set auto-load local-gdbinit",
8629 "show auto-load local-gdbinit", "set auto-load libthread-db" and
8630 "show auto-load libthread-db".
8631 * auto-load.c: Remove include python/python-internal.h. Add includes
8632 exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
8633 cli/cli-setshow.h.
8634 (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
8635 (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
8636 (gdbpy_global_auto_load): Rename to ...
8637 (global_auto_load): ... here.
8638 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8639 (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
8640 (script_language_gdb, source_gdb_script_for_objfile): New.
8641 (struct loaded_script): New field language.
8642 (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
8643 LANGUAGE.
8644 (maybe_add_script): Add parameter language. Drop redundant
8645 entry.full_path initialization. Initialize entry.language and
8646 (*slot)->language.
8647 (auto_load_objfile_script): Change parameter suffix to language.
8648 Remove the call of maybe_add_script.
8649 Call language->source_script_for_objfile.
8650 (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
8651 New.
8652 (collect_matching_scripts): Adjust it for
8653 struct collect_matching_scripts_data.
8654 (auto_load_info_scripts_pattern_nl): New variable.
8655 (info_auto_load_scripts): Rename to ...
8656 (auto_load_info_scripts): ... here, add parameter language. Adjust it
8657 for struct collect_matching_scripts_data.
8658 (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
8659 (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
8660 (auto_load_show_cmdlist_get, info_auto_load_cmd)
8661 (auto_load_info_cmdlist_get): New.
8662 (_initialize_auto_load): Move add_info of "auto-load-scripts" to
8663 python/py-auto-load.c. New installment for "set auto-load gdb-scripts",
8664 "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
8665 "info auto-load local-gdbinit".
8666 * auto-load.h (struct script_language): New.
8667 (gdbpy_global_auto_load): Rename to ...
8668 (global_auto_load): ... here.
8669 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8670 (auto_load_local_gdbinit_loaded): New declarations.
8671 (maybe_add_script): New parameter language.
8672 (auto_load_objfile_script): Change parameter suffix to language.
8673 (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
8674 (auto_load_info_scripts, auto_load_set_cmdlist_get)
8675 (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
8676 declarations.
8677 * linux-thread-db.c: Include auto-load.h and ctype.h.
8678 (auto_load_thread_db, show_auto_load_thread_db): New.
8679 (struct thread_db_info): New field filename.
8680 (delete_thread_db_info): Call xfree for FILENAME.
8681 (try_thread_db_load): Initialize FILENAME.
8682 (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
8683 if !AUTO_LOAD_THREAD_DB.
8684 (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
8685 (_initialize_thread_db): Install auto_load_thread_db
8686 as "set auto-load libthread-db" and install info_auto_load_libthread_db
8687 as "info auto-load libthread-db".
8688 * main.c (captured_main): Rename gdbpy_global_auto_load to
8689 global_auto_load. Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
8690 AUTO_LOAD_LOCAL_GDBINIT_LOADED.
8691 (print_gdb_help): Extend the help for 'local init file'.
8692 * python/py-auto-load.c: Remove a comment about gdb scripts extension.
8693 (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
8694 (auto_load_scripts): Rename to ...
8695 (auto_load_python_scripts): ... here, update the comment.
8696 (gdbpy_load_auto_script_for_objfile): New declaration.
8697 (show_auto_load_python_scripts, script_language_python)
8698 (gdbpy_load_auto_script_for_objfile): New.
8699 (source_section_scripts): Refactor the code.
8700 (load_auto_scripts_for_objfile): Rename to ...
8701 (gdbpy_load_auto_scripts_for_objfile): ... here, update the
8702 auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
8703 (info_auto_load_python_scripts): New.
8704 (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
8705 Rename "set auto-load-scripts" to "set auto-load python-scripts".
8706 Register "set auto-load-scripts" as its deprecated alias. Register
8707 "info auto-load python-scripts". Register "info auto-load-scripts" as
8708 its deprecated alias.
8709 (load_auto_scripts_for_objfile): Rename to ...
8710 (gdbpy_load_auto_scripts_for_objfile): ... here.
8711 * python/python.h (load_auto_scripts_for_objfile): Rename to ...
8712 (gdbpy_load_auto_scripts_for_objfile): ... here.
8713
e2207b9a
JK
87142012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8715
8716 auto-load: Move files.
8717 * Makefile.in (SFILES): Add auto-load.c.
8718 (HFILES_NO_SRCDIR): Add auto-load.h.
8719 (COMMON_OBS): Add auto-load.o.
8720 (distclean): Change .gdbinit for gdb-gdb.gdb.
8721 * auto-load.c: New file, with parts from python/py-auto-load.c.
8722 * auto-load.h: New file, with parts from python/python.h.
8723 * configure: Regenerate.
8724 * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
8725 * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
8726 * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
8727 * main.c: Include auto-load.h.
8728 * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
8729 command.h, observer.h and progspace.h to auto-load.c. Add include
8730 auto-load.h.
8731 (gdbpy_global_auto_load, struct auto_load_pspace_info)
8732 (struct loaded_script, auto_load_pspace_data)
8733 (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
8734 (hash_loaded_script_entry, eq_loaded_script_entry)
8735 (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
8736 (maybe_add_script): Move to auto-load.c.
8737 (source_section_scripts): Change maybe_add_script parameters passing,
8738 use script_not_found_warning_print.
8739 (clear_section_scripts, auto_load_objfile_script)
8740 (auto_load_new_objfile, loaded_script_ptr)
8741 (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
8742 (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
8743 (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
8744 auto_load_new_objfile and info_auto_load_scripts initizations to
8745 auto-load.c.
8746 * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
8747
e4ab2fad
JK
87482012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8749
8750 Code cleanup.
8751 * charset.c (find_charset_names): Remove variables ix and elt.
8752 Use free_char_ptr_vec.
8753 * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
8754 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
8755 debugdir_end. New variable debugdir_len.
8756 * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
8757 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
8758 declarations.
8759 * progspace.c (clear_program_space_solib_cache): Remove variables ix
8760 and elt. Use free_char_ptr_vec.
8761 * source.c (add_path): Remove variables argv, arg and argv_index.
8762 New variables dir_vec, back_to, ix and name.
8763 Use dirnames_to_char_ptr_vec_append. Use freeargv instead of
8764 make_cleanup_freeargv. Remove variable separator. Simplify the code
8765 no longer expecting DIRNAME_SEPARATOR.
8766 (openp): Remove variable p, p1 and len. New variables dir_vec,
8767 back_to, ix and dir. Use dirnames_to_char_ptr_vec. Simplify the code
8768 no longer expecting DIRNAME_SEPARATOR.
8769 * symfile.c (find_separate_debug_file): New variables debugdir_vec,
8770 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
8771 debugdir_end.
8772 * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
8773 (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
8774 (dirnames_to_char_ptr_vec): New functions.
8775
5ee4ed9f
JK
87762012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8777
8778 Code cleanup.
8779 * source.c (add_path): Remove always true conditional 'p == 0' and
8780 unindent its code block.
8781
f41f5e61
PA
87822012-04-17 Pedro Alves <palves@redhat.com>
8783
8784 * gdbtypes.h (FIELD_BITPOS): Rename to ...
8785 (FIELD_BITPOS_LVAL): ... this.
8786 (FIELD_BITPOS): New.
8787 (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
8788 * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
8789 * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
8790 SET_FIELD_BITPOS.
8791 * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
8792 SET_FIELD_BITPOS.
8793 * stabsread.c (read_cpp_abbrev, read_one_struct_field)
8794 (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
8795 * target-descriptions.c (tdesc_gdb_type): Adjust to use
8796 SET_FIELD_BITPOS.
8797
945b3a32
JK
87982012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8799
8800 Do not rely on FIELD_LOC_KIND_BITPOS being zero.
8801 * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
8802 TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
8803 * gdbtypes.c (append_flags_type_flag): Likewise, twice.
8804 * jv-lang.c (java_link_class_type): Likewise, once.
8805 * stabsread.c (read_enum_type): Likewise.
8806
42476b70
YQ
88072012-04-16 Yao Qi <yao@codesourcery.com>
8808
8809 * common/agent.c (agent_run_command): Add one more parameter `len'.
8810 Update callers.
8811 * common/agent.h: Update declaration.
8812 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
8813 Update.
8814 (linux_child_static_tracepoint_markers_by_strid): Ditto.
8815
8264ba82
AG
88162012-04-14 Anton Gorenkov <xgsa@yandex.ru>
8817
8818 PR mi/13393
8819 * value.c (value_actual_type): New function.
8820 * value.h (value_actual_type): New declaration.
8821 * varobj.c (update_type_if_necessary): New function.
8822 (varobj_create): Call value_actual_type instead of
8823 value_type.
8824 (install_dynamic_child): distinct changed and type changed MI variable
8825 objects.
8826 (update_dynamic_varobj_children): Updated for install_dynamic_child
8827 change. All callers updated.
a09130f9 8828 (varobj_update): Support for MI variable object type change if
8264ba82
AG
8829 the value changed and RTTI is used to determine the type.
8830 (create_child_with_value): Call value_actual_type instead of
8831 value_type.
a09130f9 8832 (adjust_value_for_child_access): Extended with a new parameter which
8264ba82
AG
8833 specify whether the given value should be casted to enclosing type.
8834 All callers updated.
8835
55a8c076
YQ
88362012-04-14 Yao Qi <yao@codesourcery.com>
8837
8838 Import gnulib module inttypes from git
8839 (250b80067c1e1d8faa0c42fb572f721975b929c5)
8840 * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
a09130f9
PA
8841 (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
8842 gnulib/m4/inttypes-pri.m4
55a8c076
YQ
8843 * aclocal.m4, config.in, configure: Regenerated.
8844 * gnulib/Makefile.am: Update.
8845 * gnulib/Makefile.in: Update.
8846 * gnulib/m4/gnulib-cache.m4: Update.
8847 * gnulib/m4/gnulib-comp.m4: Update.
8848 * gnulib/inttypes.in.h: New.
8849 * gnulib/m4/inttypes-pri.m4: New.
a09130f9 8850 * gnulib/m4/inttypes.m4: New.
55a8c076 8851
ca7781d2
LM
88522012-04-13 Luis Machado <lgustavo@codesourcery.com>
8853
8854 * infrun.c (resume): Update PC address to the real PC after
8855 preparing to do displaced stepping.
8856
e319fa28
DE
88572012-04-12 Doug Evans <dje@google.com>
8858
8859 * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
8860 All callers updated.
8861
15add3f5
MK
88622012-04-12 Mark Kettenis <kettenis@gnu.org>
8863
8864 * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
8865
52dc124a
DE
88662012-04-12 Doug Evans <dje@google.com>
8867
0e50663e
DE
8868 * dwarf2read.c (create_all_type_units): Renamed from
8869 create_debug_types_hash_table. All callers updated.
8870
52dc124a
DE
8871 * dwarf2read.c (create_signatured_type_table_from_index): Rename
8872 local type_sig to sig_type, type_offset to type_offset_in_tu.
8873 (hash_signatured_type): Renamed from hash_type_signature,
8874 all callers updated.
8875 (eq_signatured_type): Renamed from eq_type_signature,
8876 all callers updated.
8877 (create_debug_types_hash_table): Rename local type_sig to sig_type.
8878 (process_enumeration_scope): Ditto.
8879 (lookup_signatured_type_at_offset): Ditto.
8880 (load_full_type_unit, read_signatured_type): Ditto.
8881
248fd3bf
YQ
88822012-04-12 Yao Qi <yao@codesourcery.com>
8883
8884 * remote.c (async_remote_interrupt): Correct function name in
8885 debug message.
8886 (async_remote_interrupt_twice): Ditto.
8887
bc3aa6c3
DE
88882012-04-11 Yuanhui Zhang <asmwarrior@gmail.com>
8889
8890 * source.c (find_and_open_source): Consistently pass resulting
8891 full path through xfullpath.
8892
9e529e1d
JK
88932012-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8894
8895 Provide more specific displaced-stepping memory error message.
8896 * infrun.c (displaced_step_prepare): New variable status. Call
8897 target_read_memory instead of read_memory, provide more specific
8898 error message.
8899
82e0cec1
TG
89002012-04-11 Tristan Gingold <gingold@adacore.com>
8901
8902 PR gdb/13901
8903 * darwin-nat.c (darwin_execvp): Revert previous patch.
8904
d987a266
TG
89052012-04-11 Tristan Gingold <gingold@adacore.com>
8906
8907 PR gdb/13901
8908 * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
8909 in case of change.
8910
016b7430
TG
89112012-04-11 Tristan Gingold <gingold@adacore.com>
8912
8913 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
8914 warning.
8915
06fc020f
SCR
89162012-04-11 Siva Chandra Reddy <sivachandra@google.com>
8917
8918 New command 'explore' which helps explore values and types in
8919 scope.
8920 * NEWS: Add an entry about the new 'explore' command.
8921 * data-directory/Makefile.in: Add gdb/command/explore.py
8922 * python/lib/gdb/command/explore.py: Implemention of the 'explore'
a09130f9 8923 command using the GDB Python API.
06fc020f 8924
de0919f8 89252012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
34b192ce
MR
8926
8927 * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
8928 extension in jump target calculation.
8929
de0919f8 89302012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
9e8da49c
MR
8931
8932 * mips-tdep.c (mips32_next_pc): Handle JALX.
8933
2f26ef89
YQ
89342012-04-10 Yao Qi <yao@codesourcery.com>
8935
8936 * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
8937
2e505b66
YQ
89382012-04-10 Yao Qi <yao@codesourcery.com>
8939
8940 * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
8941 and gnulib/m4/gnulib-tool.m4.
8942
0d99eb77
DE
89432012-04-10 Doug Evans <dje@google.com>
8944
8945 * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
8946 (load_partial_dies): Clarify comment.
8947 (find_partial_die): Support rereading type units.
8948 Clarify CU handling, if we know offset is in CU, don't search for the
8949 containing CU. Add comment regarding memory waste.
8950
9a82b8ff
L
89512012-04-10 H.J. Lu <hongjiu.lu@intel.com>
8952
8953 * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
8954 i386/x32-avx and i386/x32-avx-linux.
8955 (i386/x32-expedite): New.
8956 (i386/x32-linux-expedite): Likewise.
8957 (i386/x32-avx-expedite): Likewise.
8958 (i386/x32-avx-linux-expedite): Likewise.
8959 ($(outdir)/i386/x32.dat): Likewise.
8960 ($(outdir)/i386/x32-linux.dat): Likewise.
8961 ($(outdir)/i386/x32-avx.dat): Likewise.
8962 ($(outdir)/i386/x32-avx-linux.dat): Likewise.
8963
8964 * features/i386/x32-avx-linux.xml: New file.
8965 * features/i386/x32-avx.xml: Likewise.
8966 * features/i386/x32-core.xml: Likewise.
8967 * features/i386/x32-linux.xml: Likewise.
8968 * features/i386/x32.xml: Likewise.
8969
8970 * features/i386/x32-avx-linux.c: New. Generated.
8971 * features/i386/x32-avx.c: Likewise.
8972 * features/i386/x32-linux.c: Likewise.
8973 * features/i386/x32.c: Likewise.
8974 * regformats/i386/x32-avx-linux.dat: Likewise.
8975 * regformats/i386/x32-avx.dat: Likewise.
8976 * regformats/i386/x32-linux.dat: Likewise.
8977 * regformats/i386/x32.dat: Likewise.
8978
ee41036f
TG
89792012-04-10 Tristan Gingold <gingold@adacore.com>
8980
8981 * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
8982 code to kill the inferior.
8983
a7aa5b8a
MK
89842012-04-09 Mark Kettenis <kettenis@gnu.org>
8985
8986 * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8987 defines.
8988 * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8989 defines.
a09130f9 8990 * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
a7aa5b8a
MK
8991 (yyvsp): New defines.
8992 * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8993 defines.
8994 * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8995 defines.
8996 * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8997 defines.
8998 * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8999 defines.
9000 * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
9001 defines.
9002
fb57d452
MK
90032012-04-09 Mark Kettenis <kettenis@gnu.org>
9004
a09130f9 9005 * sparc64-tdep.c (sparc64_store_arguments)
fb57d452
MK
9006 (sparc64_store_arguments): Fix coding style.
9007
cdc7b32f
MK
90082012-04-07 Mark Kettenis <kettenis@gnu.org>
9009
9010 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
9011 complex floats, adjust some related comments and tighten a related
9012 assertion.
9013 (sparc64_extract_return_value): Handle complex floats.
9014
7adf1e79
DE
90152012-04-07 Doug Evans <dje@google.com>
9016
9017 * dwarf2read.c (load_partial_dies): Change condition to assert.
9018
50f1ae7b
DE
90192012-04-06 Doug Evans <dje@google.com>
9020
9021 * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
9022 "mov %rsp,%rbp".
9023
55fa75c3
KB
90242012-04-05 Kevin Buettner <kevinb@redhat.com>
9025
9026 * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
9027 fencepost error.
9028 (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
9029 (v850_gdbarch_init): Set `num_regs' as appropriate for the
9030 architecture.
9031
40e084e1
KS
90322012-04-05 Keith Seitz <keiths@redhat.com>
9033
9034 * linespec.c (decode_compound): Remove.
9035 (enum offset_relative_sign): New enum.
9036 (struct line_offset): New struct.
9037 (struct linespec): New struct.
9038 (struct linespec_state): Move file_symtabs,
9039 user_filename, and user_function into struct linespec.
9040 Make result an anonymous struct holding vectors of
9041 symbolp and minsym_and_objfile_d.
9042 Add language member.
9043 (enum ls_token_type): New enum.
9044 (linespec_keywords): New array.
9045 (struct ls_token): New struct.
9046 (struct ls_parser): New struct.
9047 (linespec_lexer_lex_number): New function.
9048 (linespec_lexer_lex_keyword): New function.
9049 (is_ada_operator): New function.
9050 (skip_quote_char): New function.
9051 (copy_token_string): New function.
9052 (is_closing_quote_enclosed): New function.
9053 (find_parameter_list_end): New function.
9054 (linespec_lexer_lex_string): New function.
9055 (linespec_lexer_lex_one): New function.
9056 (linespec_lexer_consume_token): New function.
9057 (linespec_lexer_peek_token): New function.
9058 (cplusplus_error): Remove unused function.
9059 (find_methods): Update comment.
9060 (find_toplevel_char): Return const.
9061 (is_objc_method_format): Remove unused function.
9062 (find_toplevel_string): New function.
9063 (is_linespec_boundary): Remove.
9064 (symbol_not_found_error): New function.
9065 (find_method_overload_end): Remove function.
9066 (unexpected_linespec_error): New function.
9067 (keep_name_info): Remove.
9068 (linespec_parse_line_offset): New function.
9069 (linespec_parse_basic): New function.
9070 (canonicalize_linespec): New function.
9071 (decode_line_internal): Remove.
9072 (create_sals_line_offset): New function adapted from
9073 decode_all_digits.
9074 (convert_linespec_to_sals): New function.
9075 (parse_linespec): New function.
9076 (linespec_parser_new): New function.
9077 (linespec_state_destructor): Change parameter type to
9078 struct linespec_state *.
9079 Add language parameter.
9080 Remove freeing of moved members.
9081 (linespec_parser_delete): New function.
9082 (decode_line_full): Use parse_linespec and linespec_parser_new.
9083 (decode_line_1): Likewise.
9084 (decode_indirect): Rename to ...
9085 (linespec_expression_to_pc): ... this and rewrite
9086 to simply find CORE_ADDR, storing this result for later
9087 conversion to SALs.
9088 (locate_first_half): Remove.
9089 (deocde_objc): Add parameter LS.
9090 Initialize new struct collect_info members.
9091 Handle minimal symbols, too.
9092 (decode_compound): Delete.
9093 (lookup_prefix_sym): Rewrite.
9094 (compare_msymbols): New function.
9095 (find_method): Rewrite.
9096 Do not call cplusplus_error.
9097 (symtabs_from_filename): Rewrite.
9098 (collect_function_symbols): Delete.
9099 (find_function_symbols): Rewrite without ARGPTR-style
9100 processing.
9101 (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
9102 (decode_dollar): Adapted and renamed to ...
9103 (linespec_parse_variable): ... this.
9104 (find_linespec_symbols): New function.
9105 (decode_label): Adapted and renamed to ...
9106 (find_label_symbols): ... this.
9107 (decode_digits_list_mode): Add and use LS argument.
9108 (decode_digits_ordinary): Likewise.
9109 (collect_symbols): Do not collect SALs, just symbols and msymbols.
9110 If in list mode, allow any symbol class. Otherwise, only
9111 permit LOC_BLOCK symbols.
9112 (minsym_found): Update comments.
9113 (search_minsyms_for_name): Do not convert the matching symbol
9114 into a SAL. Simply push the symbol and objfile into the
9115 result vector.
9116 (decode_variable): Delete. Contents adapted into
9117 find_linespec_symbols.
9118
9119 * cp-support.c (SKIP_SPACE): Remove.
9120 (operator_tokens): Remove unused global.
9121 (cp_validate_operator): Remove.
9122 * cp-support.h (cp_validate_operator): Remove declaration.
9123
a72c8f6a
JK
91242012-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9125
9126 * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
9127 for TYPE_VPTR_FIELDNO.
9128 * valprint.c (valprint_check_validity): Make it global, move the
9129 function comment ...
9130 * value.h (valprint_check_validity): ... to this new declaration.
9131
cf9bb588
TG
91322012-04-02 Tristan Gingold <gingold@adacore.com>
9133
9134 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
9135 the STATE32 api for i386 state.
9136 (i386_darwin_store_inferior_registers): Likewise.
9137
17092398
TG
91382012-04-02 Tristan Gingold <gingold@adacore.com>
9139
9140 * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
9141 SS offset.
9142 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
9143 format_string.
9144
ece0061f
TG
91452012-04-02 Tristan Gingold <gingold@adacore.com>
9146
9147 PR gdb/13901
d987a266 9148 * darwin-nat.c (darwin_execvp): Set binary preference.
ece0061f 9149
cf65ecd3
JK
91502012-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9151
9152 * NEWS (set breakpoint condition-evaluation): Use imperative mood.
9153
9bc3523d
TT
91542012-03-30 Tom Tromey <tromey@redhat.com>
9155
9156 * python/python.c (gdbpy_decode_line): Move cleanup creation out
9157 of TRY_CATCH. Fix error handling.
9158 * python/py-value.c (convert_value_from_python): Move 'old'
9159 declaration to innermost scope.
9160
b1ed564a
JB
91612012-03-29 Joel Brobecker <brobecker@adacore.com>
9162 Andrey Smirnov <andrew.smirnov@gmail.com>
9163
9164 -Wshadow warning fix.
9165 * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
9166 "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
9167 Adjust code accordingly.
9168
cb8e9b97
JB
91692012-03-29 Joel Brobecker <brobecker@adacore.com>
9170
9171 * ada-lang.c (symbol_completion_add): Rename parameter
9172 "encoded" into "encoded_p". Ajust code and documentation
9173 accordingly.
9174
c0af1706
JB
91752012-03-29 Joel Brobecker <brobecker@adacore.com>
9176 Andrey Smirnov <andrew.smirnov@gmail.com>
9177
9178 -Wshadow warning fix.
9179 * ada-lang.c (symbol_completion_add): Rename parameter
9180 "wild_match" into wild_match_p. Update code and documentation
9181 accordingly.
9182
6ea35997
JB
91832012-03-29 Joel Brobecker <brobecker@adacore.com>
9184
9185 * ada-lang.c (symbol_completion_match): Rename parameter
9186 "encoded" into "encoded_p". Ajust code and documentation
9187 accordingly.
9188
e701b3c0
JB
91892012-03-29 Joel Brobecker <brobecker@adacore.com>
9190 Andrey Smirnov <andrew.smirnov@gmail.com>
9191
9192 -Wshadow warning fix.
9193 * ada-lang.c (symbol_completion_match): Rename parameter
9194 "wild_match" into "wild_match_p". Adjust code and function
9195 documentation accordingly.
9196
5e2336be
JB
91972012-03-29 Joel Brobecker <brobecker@adacore.com>
9198 Andrey Smirnov <andrew.smirnov@gmail.com>
9199
9200 -Wshadow warning fix.
9201 * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
9202 "symbol_info" into "info". Adjust code accordingly.
9203 (ada_lookup_symbol): Likewise.
9204
9f88c959
JB
92052012-03-29 Joel Brobecker <brobecker@adacore.com>
9206
9207 * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
9208 of this function's documentation.
9209
82ccd55e
JB
92102012-03-29 Joel Brobecker <brobecker@adacore.com>
9211 Andrey Smirnov <andrew.smirnov@gmail.com>
9212
9213 -Wshadow warning fix.
9214 * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
9215 variable into "wild_match_p". Adjust code accordingly.
9216
d0a8ab18
JB
92172012-03-29 Joel Brobecker <brobecker@adacore.com>
9218 Andrey Smirnov <andrew.smirnov@gmail.com>
9219
9220 -Wshadow warning fix.
9221 * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
9222 parameter into "wild_match_p". Adjust code accordingly.
9223 Document this parameter in the function description.
9224
48b78332
JB
92252012-03-29 Joel Brobecker <brobecker@adacore.com>
9226 Andrey Smirnov <andrew.smirnov@gmail.com>
9227
9228 -Wshadow warning fix.
9229 * ada-lang.c (add_symbols_from_enclosing_procs): Rename
9230 "wild_match" parameter to "wild_match_p" (-Wshadow).
9231
2e6e0353
JB
92322012-03-29 Joel Brobecker <brobecker@adacore.com>
9233
9234 * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
9235 in function documentation.
9236
dc4024cd
JB
92372012-03-29 Joel Brobecker <brobecker@adacore.com>
9238 Andrey Smirnov <andrew.smirnov@gmail.com>
9239
9240 -Wshadow warning fix.
9241 * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
9242 variable into wild_match_p. Adjust code accordingly.
9243
6c88661c
JB
92442012-03-29 Joel Brobecker <brobecker@adacore.com>
9245 Andrey Smirnov <andrew.smirnov@gmail.com>
9246
9247 * ada-valprint.c (ada_val_print_1): Move the code handling
9248 TYPE_CODE_ENUM inside its own lexical block. Declare
9249 variables len and val there, instead of in the function's
9250 top level block. Avoid declaring deref_val again in a way
9251 that shadows another variable of the same name declared
9252 in one of the up-level blocks. Just re-use the up-level
9253 variable instead.
9254
4e5c77fe
JB
92552012-03-29 Joel Brobecker <brobecker@adacore.com>
9256
9257 * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
9258 Replace block_found argument by symbol_info. Adjust
9259 implementation accordingly. Add function documentation.
9260 (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
9261 Fix documentation.
9262 * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
9263 * ada-exp.y (write_object_renaming): Adjust to new
9264 ada_lookup_encoded_symbol API.
9265
1c0ac8c7
JB
92662012-03-29 Joel Brobecker <brobecker@adacore.com>
9267
9268 * ada-lang.h (struct ada_symbol_info): Reformat. Improve
9269 documentation.
9270
2aaed979
KB
92712012-03-28 Rathish C <rathish.c@kpitcummins.com>
9272
9273 * v850-tdep.c: Add the enum values for mpu and fpu registers.
9274 (v850_register_name): Add the mpu and fpu register names.
9275 (v850e_register_name): Add the mpu and fpu register names.
9276 (v850e2_register_name): New function.
a09130f9 9277 (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
2aaed979
KB
9278 bfd_mach_v850e2v3.
9279
927fbba6
JB
92802012-03-28 Joel Brobecker <brobecker@adacore.com>
9281
9282 * NEWS: Add entry for Ada varobj support.
9283
d32cafc7
JB
92842012-03-28 Joel Brobecker <brobecker@adacore.com>
9285
9286 * varobj.c (default_value_is_changeable_p): New function,
9287 extracted from varobj_value_is_changeable_p. Add declaration.
9288 (ada_value_is_changeable_p): New function, extracted from
9289 varobj_value_is_changeable_p. Add declaration.
9290 (struct language_specific): New field "value_is_changeable_p".
9291 (languages): Add entries for new field.
9292 (varobj_create): Set language before calling install_new_value.
9293 (varobj_value_is_changeable_p): Reimplement to call the varobj's
9294 "value_is_changeable_p" language callback.
9295
181875a4
JB
92962012-03-28 Joel Brobecker <brobecker@adacore.com>
9297
9298 * ada-varobj.h, ada-varobj.c: New files.
9299 * Makefile.in (SFILES): Add ada-varobj.c.
9300 (HFILES_NO_SRCDIR): Add ada-varobj.h.
9301 (COMMON_OBS): Add ada-varobj.o.
9302
7a290c40
JB
93032012-03-28 Joel Brobecker <brobecker@adacore.com>
9304
9305 * varobj.c (ada_value_has_mutated): Add declaration. New function.
9306 (struct language_specific): New field "value_has_mutated".
9307 (languages): Set field "value_has_mutated" in each entry of array.
9308 (varobj_value_has_mutated): New function.
9309 (varobj_udpdate): Add handling of type mutation.
9310 (value_of_root): Add handling of type mutation.
9311 (ada_value_has_mutated): New function.
9312
ca9b8b9c
PA
93132012-03-28 Pedro Alves <palves@redhat.com>
9314
9315 * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
9316 Always supply $fr0 as 0.0 and $fr1 as 1.0.
9317
cc0265cd
TT
93182012-03-28 Tom Tromey <tromey@redhat.com>
9319
9320 * python/py-inferior.c (infpy_read_memory): Remove cleanups and
9321 explicitly free 'buffer' on exit paths. Decref 'membuf_object'
9322 before returning.
9323
3ad2ec6f
TT
93242012-03-28 Tom Tromey <tromey@redhat.com>
9325
9326 * .dir-locals.el: New file.
9327
4a6510ba
PA
93282012-03-28 Pedro Alves <palves@redhat.com>
9329
9330 * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
9331
5a75128f
JB
93322012-03-28 Joel Brobecker <brobecker@adacore.com>
9333
9334 * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
9335 handling for r0.
9336
f99d8bf4
PA
93372012-03-27 Pedro Alves <palves@redhat.com>
9338
9339 Eliminate struct ui_stream.
9340
9341 * ui-out.h (struct ui_stream): Delete.
9342 (ui_out_field_stream): Adjust prototype.
9343 (ui_out_stream_new, ui_out_stream_delete)
9344 (make_cleanup_ui_out_stream_delete): Delete declarations.
9345 * ui-out.c (ui_out_field_stream): Change prototype to take a
9346 ui_file instead of a ui_stream. Adjust.
9347 (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
9348 (make_cleanup_ui_out_stream_delete): Delete.
9349 * breakpoint.c (print_breakpoint_location)
9350 (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
9351 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9352 * disasm.c (dump_insns): Ditto.
9353 (do_mixed_source_and_assembly, do_assembly_only): Adjust
9354 prototype.
9355 (gdb_disassembly): Use ui_file/mem_fileopen instead of
9356 ui_stream/ui_out_stream_new.
9357 * infcmd.c (print_return_value): Ditto.
9358 * osdata.c (info_osdata_command): Don't allocate a local
9359 ui_stream.
9360 * stack.c (print_frame_arg, print_frame_args, print_frame): Use
9361 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9362 * tracepoint.c (print_one_static_tracepoint_marker): Don't
9363 allocate a local ui_stream.
9364 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
9365 instead of ui_stream/ui_out_stream_new.
9366 (list_args_or_locals): Don't allocate a local ui_stream.
9367 * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
9368 (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
9369 ui_stream/ui_out_stream_new.
9370 * cli/cli-setshow.c (do_setshow_command): Ditto.
9371
6350a066 93722012-03-27 Oza Pawandeep <oza.pawandeep@gmail.com>
72508ac0 9373
6350a066
PA
9374 * arm-linux-tdep.c (arm_linux_init_abi): Call
9375 set_gdbarch_process_record. Initialize `arm_swi_record' field.
9376 * arm-tdep.c (arm_process_record): New function.
9377 (deallocate_reg_mem): New function.
9378 (decode_insn): New function.
9379 (thumb_record_branch): New function.
9380 (thumb_record_ldm_stm_swi(): New function.
9381 (thumb_record_misc): New function.
9382 (thumb_record_ld_st_stack): New function.
9383 (thumb_record_ld_st_imm_offset): New function.
9384 (thumb_record_ld_st_reg_offset(): New function.
9385 (thumb_record_add_sub_cmp_mov): New function.
9386 (thumb_record_shift_add_sub): New function.
9387 (arm_record_coproc_data_proc): New function.
9388 (arm_record_coproc): New function.
9389 (arm_record_b_bl): New function.
9390 (arm_record_ld_st_multiple): New function.
9391 (arm_record_ld_st_reg_offset): New function.
9392 (arm_record_ld_st_imm_offset): New function.
9393 (arm_record_data_proc_imm): New function.
9394 (arm_record_data_proc_misc_ld_str): New function.
9395 (arm_record_extension_space): New function.
9396 (arm_record_strx): New function.
9397 (sbo_sbz): New function.
9398 (struct insn_decode_record): New structure for arm insn record.
9399 (REG_ALLOC): New macro for reg allocations.
9400 (MEM_ALLOC): New macro for memory allocations.
9401 * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
72508ac0 9402
89e028e2
AS
94032012-03-27 Andreas Schwab <schwab@linux-m68k.org>
9404
9405 * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
9406 (store_register): Likewise.
9407
6350a066 94082012-03-26 Oza Pawandeep <oza.pawandeep@gmail.com>
3d9a9eb0 9409
6350a066 9410 * MAINTAINERS (Write After Approval): Add myself to the list.
3d9a9eb0 9411
5b43fab2
JK
94122012-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
9413
9414 * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
9415 Describe also the option "auto".
9416
b5453b95
RH
94172012-03-22 Richard Henderson <rth@redhat.com>
9418
9419 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
9420 * sparc-nat.c (sparc_xfer_wcookie): Make static.
9421
227ee7fc
RH
94222012-03-22 Richard Henderson <rth@redhat.com>
9423
9424 * jit.c (jit_read_code_entry): Compute alignment and offset of
9425 int64_t member before computing entry_size.
9426
7b282c5a
SCR
94272012-03-22 Siva Chandra Reddy <sivachandra@google.com>
9428
9429 Python scripting: Add new method Value.referenced_value to
9430 gdb.Value which can dereference pointer as well as reference
9431 values.
9432 * NEWS: Add entry under 'Python scripting' about the new method
9433 Value.referenced_value on gdb.Value objects.
9434 * python/py-value.c (valpy_referenced_value): New function
9435 defining a new method on gdb.Value objects which can dereference
9436 pointer and reference values.
9437
0c83539f
SCR
94382012-03-22 Siva Chandra Reddy <sivachandra@google.com>
9439
9440 * MAINTAINERS (Write After Approval): Add myself to the list.
9441
7ccffd7c
KB
94422012-03-21 Kevin Buettner <kevinb@redhat.com>
9443
9444 * symtab.c (skip_prologue_sal): Change test to check for "main()"
9445 in addition to "main".
9446
bd0b9f9e
JB
94472012-03-21 Joel Brobecker <brobecker@adacore.com>
9448
9449 * expression.h (op_name): Add declaration.
9450 * expprint.c (op_name): Remove declaration. Make non-static.
9451 * ax-gdb.c (gen_expr): Use op_name instead of op_string.
9452
a5362b9a
TS
94532012-03-21 Thomas Schwinge <thomas@codesourcery.com>
9454
9455 * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
9456 of struct siginfo.
9457 * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
9458 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
9459 * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
9460 (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
9461 (linux_nat_get_siginfo): Likewise.
9462 * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
9463 (linux_nat_get_siginfo): Likewise.
9464 * linux-tdep.c (linux_get_siginfo_type): Likewise.
9465 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
9466 * procfs.c (gdb_siginfo_t): Likewise.
9467
adcadaab
MF
94682012-03-21 Mike Frysinger <vapier@gentoo.org>
9469
9470 * .gitignore: Ignore more files.
9471
e278ad5b
PA
94722012-03-20 Pedro Alves <palves@redhat.com>
9473
9474 * remote.c (remote_start_remote): Clear `rs->starting_up' on early
9475 returns.
9476
741e63d7
YQ
94772012-03-20 Yao Qi <yao@codesourcery.com>
9478
9479 * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
9480 comment.
9481
b64f50a1
JK
94822012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9483
9484 Code cleanupp: Use cu_offset and sect_offset compile time type checking.
9485 * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
9486 (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
9487 sect_offset.
9488 * dwarf2expr.h (cu_offset, sect_offset): New types.
9489 (struct dwarf_expr_context_funcs) <dwarf_call>
9490 (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
9491 sect_offset.
9492 (struct dwarf_expr_context) <len>: Improve the comment.
9493 (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
9494 cu_offset and sect_offset.
9495 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
9496 (dwarf_expr_get_base_type, needs_frame_dwarf_call)
9497 (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
9498 * dwarf2loc.h: Include dwarf2expr.h.
9499 (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
9500 and sect_offset.
9501 * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
9502 Improve the comment.
9503 (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
9504 (struct signatured_type, struct line_header, struct partial_die_info)
9505 (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
9506 (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
9507 (get_die_type_at_offset, create_cus_from_index)
9508 (create_signatured_type_table_from_index, dw2_get_file_names)
9509 (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
9510 (read_and_check_comp_unit_head, read_and_check_type_unit_head)
9511 (create_debug_types_hash_table, process_psymtab_comp_unit)
9512 (load_partial_comp_unit, create_all_comp_units)
9513 (partial_die_parent_scope, partial_die_full_name, skip_one_die)
9514 (load_full_comp_unit, dwarf2_physname, read_import_statement)
9515 (inherit_abstract_dies, read_func_scope, read_call_site_scope)
9516 (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
9517 (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
9518 (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
9519 (find_partial_die, read_attribute_value, lookup_die_type)
9520 (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
9521 (is_ref_attr): New function comment.
9522 (dwarf2_get_ref_die_offset): New function comment, new variable retval.
9523 Use cu_offset and sect_offset.
9524 (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
9525 (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
9526 (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
9527 (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
9528 (offset_and_type_hash, offset_and_type_eq, set_die_type)
9529 (get_die_type_at_offset, partial_die_hash, partial_die_eq)
9530 (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
9531 sect_offset.
9532
e97a38f7
JK
95332012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9534
9535 Code cleanup.
9536 * python/py-auto-load.c (source_section_scripts): New variable back_to.
9537 Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
9538 with xfree.
9539 (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
9540
8320cc4f
JK
95412012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9542
9543 * NEWS: Describe new options --init-command=FILE, -ix and
9544 --init-eval-command=COMMAND, -iex.
9545 * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
9546 CMDARG_INIT_COMMAND.
9547 (captured_main): New enum items OPT_IX and OPT_IEX. Add
9548 "init-command", "init-eval-command", "ix" and "iex" to the variable
9549 long_options. Handle OPT_IX and OPT_IEX. Process them from CMDARG_VEC.
9550 New comment for CMDARG_FILE and CMDARG_COMMAND processing.
9551 (print_gdb_help): Describe --init-command=FILE, -ix and
9552 --init-eval-command=COMMAND, -iex.
9553
26743505
JK
95542012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9555
9556 Code cleanup.
9557 * main.c (struct cmdarg): Move it here from main. Add more comments.
9558 (cmdarg_s, VEC (cmdarg_s)): New.
9559 (main): Move struct cmdarg from here. New variables cmdarg_vec and
9560 cmdarg_p. Remove variables cmdsize and ncmd and their initialization.
9561 Install cleanup for cmdarg_vec. Update filling for options 'x' and
9562 'X'. Replace cmdarg processing by cmdarg_vec processing. Remove xfree
9563 of CMDARG.
9564
5ff5c7b4
TT
95652012-03-19 Tom Tromey <tromey@redhat.com>
9566
9567 * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
9568
ab260dad
JK
95692012-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
9570
9571 PR symtab/13777
9572 * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
9573 GCC >=4.5.
9574
c366c1f0
TT
95752012-03-16 Chris January <chris.january@allinea.com>
9576
9577 * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
9578 of clear.
9579
e16edb45
TT
95802012-03-16 Chris January <chris.january@allinea.com>
9581
9582 * source.c (add_path): Use memmove instead of strcpy because the
9583 strings overlap.
9584
53ba8333
JB
95852012-03-16 Joel Brobecker <brobecker@adacore.com>
9586
9587 * value.h (set_value_parent): Add declaration.
9588 * value.c (set_value_parent): New function.
9589 (value_address): If VALUE->PARENT is not NULL, then use it as
9590 the base address instead of VALUE->LOCATION.address.
9591 * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
9592 the same as OBJ's address. Adjust V's offset accordingly.
9593 Set V's parent.
9594
481860b3
GB
95952012-03-16 Gary Benson <gbenson@redhat.com>
9596
9597 PR breakpoints/10738
9598 * dwarf2read.c (use_deprecated_index_sections): New global.
9599 (struct partial_die_info): New member may_be_inlined.
9600 (read_partial_die): Set may_be_inlined where appropriate.
9601 (add_partial_subprogram): Add partial symbols for partial
9602 DIEs that may be inlined.
9603 (new_symbol_full): Add inlined subroutines to the current
9604 scope.
9605 (write_psymtabs_to_index): Bump version number.
9606 (dwarf2_read_index): Read only version 6 indices unless
9607 use_deprecated_index_sections is set.
9608 * linespec.c (symbol_and_data_callback): New structure.
9609 (iterate_inline_only): New function.
9610 (iterate_over_all_matching_symtabs): New argument
9611 "include_inline". If nonzero, also call the callback for
9612 symbols representing inlined subroutines.
9613 (lookup_prefix_sym): Pass extra argument to the above.
9614 (find_function_symbols): Likewise.
9615 (add_matching_symbols_to_info): Likewise.
9616 * NEWS: Mention that GDB can now set breakpoints on inlined
9617 functions.
9618
d0e7e15a
PM
96192012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
9620
9621 * p-typeprint.c (pascal_type_print_method_args):
9622 Fix display of parameter of methods.
9623
3d354654
PM
96242012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
9625
9626 * amd64-windows-nat.c (_initialize_amd64_windows_nat):
9627 Add missing prototype.
9628
cafe75b0
JK
96292012-03-16 Yao Qi <yao@codesourcery.com>
9630 Jan Kratochvil <jan.kratochvil@redhat.com>
9631
9632 Fix false compilation warning.
9633 * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
9634
25f8c692
JL
96352012-03-15 Jonathan Larmour <jifl@eCosCentric.com>
9636 Pedro Alves <pedro@codesourcery.com>
9637
9638 * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
9639 (arm_register_g_packet_guesses): New function.
9640 (arm_gdbarch_init): Don't force a target description with
9641 registers when the executable is detected as M-profile. Instead
9642 set gdbarch->tdep->is_m. Register `g' packet guesses.
9643 (_initialize_arm_tdep): Initialize the new target description.
9644 * features/arm-with-m-fpa-layout.xml: New description.
9645 * features/arm-with-m-fpa-layout.c: New, generated.
9646
35c63cd8
JB
96472012-03-15 Joel Brobecker <brobecker@adacore.com>
9648
9649 * breakpoint.c (breakpoint_xfer_memory): Add assertion.
9650 Update function description.
9651 (insert_bp_location): Do not wipe bl->target_info out.
9652 * mem-break.c: #include "gdb_string.h".
9653 (default_memory_insert_breakpoint): Do not call target_read_memory
9654 with a pointer to the breakpoint's shadow_contents buffer. Use
9655 a local buffer instead.
9656 * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
9657
57651221
TT
96582012-03-15 Tom Tromey <tromey@redhat.com>
9659
9660 * NEWS: Mention "info vtbl", not "info vtable".
9661 * cp-support.c (info_vtbl_command): Fix comment.
9662 (_initialize_cp_support): Fix text.
9663
410528f0
TT
96642012-03-15 Tom Tromey <tromey@redhat.com>
9665
9666 * cp-valprint.c (cp_print_value_fields): Use
9667 print_function_pointer_address for vtable slot.
9668
c4aeac85
TT
96692012-03-15 Tom Tromey <tromey@redhat.com>
9670
9671 * gnu-v3-abi.c (struct value_and_voffset): New.
9672 (hash_value_and_voffset, eq_value_and_voffset)
9673 (compare_value_and_voffset, compute_vtable_size)
9674 (print_one_vtable, gnuv3_print_vtable): New functions.
9675 (init_gnuv3_ops): Initialize 'print_vtable' field.
9676 * cp-support.c (info_vtbl_command): New function.
9677 (_initialize_cp_support): Add "info vtbl".
9678 * cp-abi.h (cplus_print_vtable): Declare.
9679 (struct cp_abi_ops) <print_vtable>: New field.
9680 * cp-abi.c (cplus_print_vtable): New function.
9681 * NEWS: Update.
9682
95cbceff
TT
96832012-03-15 Tom Tromey <tromey@redhat.com>
9684
9685 * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
9686 iterate_over_symbols.
9687
589b4a32
DE
96882012-03-14 Doug Evans <dje@google.com>
9689
9690 * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
9691 DW_OP_GNU_parameter_ref.
9692
e837f12a
JK
96932012-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9694
9695 Fix double prompt of 'interpreter-exec mi'.
9696 * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
9697 (mi_interpreter_resume): use it.
9698 (mi_execute_command_input_handler): New function.
9699 * mi/mi-main.c (mi_execute_command): Move prompt printing to
9700 mi_execute_command_input_handler.
9701
ff1e4526 97022012-03-13 Josh Matthews <josh@joshmatthews.net> (tiny change)
c381a3f6
JB
9703
9704 * darwin-nat-info.c (_initialize_darwin_info_commands): Add
9705 prototype.
9706 (darwin_debug_port_info): Make static.
9707 * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
9708 * machoread.c (_initialize_machoread): Add prototype.
9709 * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
9710 (i386_darwin_set_control, i386_darwin_get_control)
9711 i386_darwin_dr_set_addr, i386_darwin_get_addr)
9712 i386_darwin_get_status, i386_darwin_get_control):
9713 Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
9714
d8a5d6ee
JB
97152012-03-13 Joel Brobecker <brobecker@adacore.com>
9716
9717 * ax-gdb.c (gen_usual_unary): Remove special handling of
9718 enum and bool types.
9719
af381b8c
JB
97202012-03-13 Joel Brobecker <brobecker@adacore.com>
9721
9722 * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
9723
786c562f
JB
97242012-03-13 Joel Brobecker <brobecker@adacore.com>
9725
9726 * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
9727
e3ebf1bb
JB
97282012-03-13 Chris January <chris.january@allinea.com>
9729
9730 * aix-thread.c (fill_sprs): Store the floating point registers
9731 at the correct offsets into vals.
9732
c5b7e1cb
DE
97332012-03-13 Doug Evans <dje@google.com>
9734
16899756
DE
9735 * NEWS: Mention symbol-reloading has been deleted.
9736 * symfile.c (symbol_reloading): Delete.
9737 (show_symbol_reloading): Delete.
9738 (_initialize_symfile): Delete set/show symbol-reloading.
9739
c5b7e1cb
DE
9740 * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
9741 read_in_chain until we have successfully read it in.
9742 (load_full_comp_unit): Ditto.
9743 (read_signatured_type): Add comment.
9744
46cb6474
JB
97452012-03-13 Chris January <chris.january@allinea.com>
9746
9747 * stabsread.c (fix_common_block): Change type of valu argument
9748 to CORE_ADDR.
9749
76219d77
JB
97502012-03-13 Chris January <chris.january@allinea.com>
9751
9752 * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
9753 instruction.
9754
87b0bb13
JK
97552012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9756
9757 * common/linux-procfs.c (linux_proc_get_int): New, from
9758 linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
9759 field.
9760 (linux_proc_get_tgid): Only call linux_proc_get_int.
9761 (linux_proc_get_tracerpid): New.
9762 (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
9763 (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
9764 linux_proc_pid_has_state.
9765 * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
9766 * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
9767 (linux_ptrace_attach_warnings): New.
9768 * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
9769 New declaration.
9770 * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
9771 (linux_nat_attach): New variables ex, buffer, message and message_s.
9772 Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
9773
5f572dec
JK
97742012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9775
9776 * Makefile.in (linux-ptrace.o): New.
9777 * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
9778 from linux-nat.c.
9779 * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
9780 * common/linux-ptrace.c: New file.
9781 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
9782 * config/arm/linux.mh: Likewise.
9783 * config/i386/linux.mh: Likewise.
9784 * config/i386/linux64.mh: Likewise.
9785 * config/ia64/linux.mh: Likewise.
9786 * config/m32r/linux.mh: Likewise.
9787 * config/m68k/linux.mh: Likewise.
9788 * config/mips/linux.mh: Likewise.
9789 * config/pa/linux.mh: Likewise.
9790 * config/powerpc/linux.mh: Likewise.
9791 * config/powerpc/ppc64-linux.mh: Likewise.
9792 * config/powerpc/spu-linux.mh: Likewise.
9793 * config/s390/s390.mh: Likewise.
9794 * config/sparc/linux.mh: Likewise.
9795 * config/sparc/linux64.mh: Likewise.
9796 * config/xtensa/linux.mh: Likewise.
9797 * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
9798 common/linux-procfs.c.
9799 (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
9800
44f238bb
PA
98012012-03-13 Hui Zhu <teawater@gmail.com>
9802 Pedro Alves <palves@redhat.com>
9803
9804 * breakpoint.c (init_breakpoint_sal): New flags parameter. Handle
9805 CREATE_BREAKPOINT_FLAGS_INSERTED.
9806 (create_breakpoint_sal, create_breakpoints_sal)
9807 (base_breakpoint_create_breakpoints_sal)
9808 (tracepoint_create_breakpoints_sal)
9809 (strace_marker_create_breakpoints_sal): New flags parameter. Pass
9810 down.
9811 (break_command_1, handle_gnu_v3_exceptions, trace_command)
9812 (ftrace_command, strace_command): Adjust.
9813 (create_tracepoint_from_upload): Pass
9814 CREATE_BREAKPOINT_FLAGS_INSERTED.
9815 * breakpoint.h (enum breakpoint_create_flags): New.
9816 (create_breakpoint): New flags parameter.
9817 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
9818 * python/py-breakpoint.c (bppy_init): Adjust.
9819 * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
9820 * spu-tdep.c (spu_catch_start): Adjust.
9821
1e51243a
PA
98222012-03-13 Pedro Alves <palves@redhat.com>
9823 Hui Zhu <teawater@gmail.com>
9824 Yao Qi <yao@codesourcery.com>
9825
9826 * remote.c (struct remote_state): New field `starting_up'.
9827 (remote_start_remote): Set and clear it.
9828 (remote_can_download_tracepoint): If starting up, return false.
9829
fa3064dd
YQ
98302012-03-13 Yao Qi <yao@codesourcery.com>
9831
9832 * inferior.h (struct inferior): Remove fields any_syscall_count,
9833 syscalls_counts and total_syscalls_count. Move them to new
9834 struct catch_syscall_inferior_data in breakpoint.c.
9835 * breakpoint.c: Call DEF_VEC_I(int).
9836 (struct catch_syscall_inferior_data): New.
9837 (get_catch_syscall_inferior_data): New.
9838 (catch_syscall_inferior_data_cleanup): New.
9839 (insert_catch_syscall): Update to access data in
9840 struct catch_syscall_inferior_data.
9841 (insert_catch_syscall): Likewise.
9842 (remove_catch_syscall): Likewise.
9843 (remove_catch_syscall): Likewise.
9844 (is_syscall_catchpoint_enabled): Likewise.
9845 (add_catch_command): Likewise.
9846 (_initialize_breakpoint): Register cleanup.
9847 * breakpoint.h: Removed DEF_VEC_I(int).
9848 * dwarf2loc.c: Call DEF_VEC_I(int).
9849 * mi/mi-main.c: Likewise.
9850
460fac3c
MK
98512012-03-12 Mark Kettenis <kettenis@gnu.org>
9852
9853 * inf-ptrace.c (inf_ptrace_post_attach): Make static.
9854
e1aca11e
JB
98552012-03-12 Chris January <chris.january@allinea.com>
9856
9857 * aix-thread.c (_initialize_aix_thread): Add prototype.
9858 * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
9859 * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
9860
649c7061
JB
98612012-03-12 Joel Brobecker <brobecker@adacore.com>
9862
9863 * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
9864 include of "amd64-nat.h".
9865
0b49e518
TT
98662012-03-12 Tom Tromey <tromey@redhat.com>
9867
9868 * buildsym.c (record_pending_block): Now static.
9869 * buildsym.h: (record_pending_block): Remove.
9870
fd24fa94
AT
98712012-03-12 Andreas Tobler <andreast@fgznet.ch>
9872
9873 * amd64bsd-nat.c: Include amd64bsd-nat.h.
9874
ba919b58
TT
98752012-03-09 Tom Tromey <tromey@redhat.com>
9876
9877 * dwarf2read.c (struct dwarf2_cu) <checked_producer,
9878 producer_is_gxx_lt_4_6>: New fields.
9879 (producer_is_gxx_lt_4_6): Use and update producer cache fields.
9880
a48e046c
TT
98812012-03-09 Tom Tromey <tromey@redhat.com>
9882
9883 * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
9884
6f5e9362
JB
98852012-03-08 Joel Brobecker <brobecker@adacore.com>
9886
9887 * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
9888 prototype.
9889
8d037db9
JB
98902012-03-08 Joel Brobecker <brobecker@adacore.com>
9891
9892 * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
9893
4e841acf
JK
98942012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9895
9896 Fix -Wmissing-prototypes build.
9897 * arm-linux-nat.c (get_thread_id): Make it static.
9898 * xtensa-linux-nat.c (get_thread_id): Likewise.
9899
c6030312
JB
99002012-03-08 Joel Brobecker <brobecker@adacore.com>
9901
9902 * server.c (process_point_options): If a conditional expression
9903 is found, only print a message if remote_debug is nonzero.
9904
52323be9
LM
99052012-03-08 Luis Machado <lgustavo@codesourcery.com>
9906
9907 * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
9908 of internal error for unknown/unsupported types.
9909
7fe25d9b
JK
99102012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9911
9912 Fix CU relative vs. absolute DIE offsets.
9913 * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
9914 offset to offset_in_cu.
9915 * dwarf2read.c (process_enumeration_scope): Add CU offset to
9916 TYPE_OFFSET.
9917 (dwarf2_fetch_die_location_block): Rename parameter offset to
9918 offset_in_cu. New variable offset, add CU offset to OFFSET_IN_CU.
9919
05e7c244
JK
99202012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9921
9922 * libunwind-frame.c: Rename to ...
9923 * ia64-libunwind-tdep.c: ... here.
9924 * libunwind-frame.h: Rename to ...
9925 * ia64-libunwind-tdep.h: ... here.
9926 * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
9927 ia64-libunwind-tdep.h.
9928 (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
9929 * README (--with-libunwind): Rename to ...
9930 (--with-libunwind-ia64): ... here, note it is ia64 specific now.
9931 * config.in: Regenerate.
9932 * configure: Regenerate.
9933 * configure.ac: New option --with-libunwind-ia64, make the
9934 AS_HELP_STRING ia64 specific. Deprecate option --with-libunwind.
9935 Remove AC_DEFINE for HAVE_LIBUNWIND.
9936 * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
9937 Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
9938 Rename libunwind-frame in the general comment.
9939 * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
9940 Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
9941 Move forward declarations inside #ifndef. Rename libunwind-frame in
9942 the general comment.
9943 * ia64-tdep.c: Rename libunwind-frame.h #include to
9944 ia64-libunwind-tdep.h.
9945 (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
9946 (ia64_libunwind_descr): Rename libunwind-frame to
9947 ia64-libunwind-tdep in these function comments.
9948 * ia64-tdep.h: Rename libunwind-frame.h #include to
9949 ia64-libunwind-tdep.h.
9950 * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
9951 ia64-libunwind-tdep in that data comment.
9952
3755cbfd
JK
99532012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9954
9955 * libunwind-frame.h (struct frame_unwind): New declaration.
9956
d1cda5d9
JB
99572012-03-08 Joel Brobecker <brobecker@adacore.com>
9958
9959 * breakpoint.c (_initialize_breakpoint): Fix error in help of
9960 "set breakpoint condition-evaluation" command.
9961
a0ba0aa2
TG
99622012-03-08 Tristan Gingold <gingold@adacore.com>
9963
9964 * sparc-stub.c: Move to stubs/
9965 * sh-stub.c: Likewise.
9966 * m68k-stub.c: Likewise.
9967 * m32r-stub.c: Likewise.
9968 * i386-stub.c: Likewise.
9969
7b8b6d6d
AS
99702012-03-08 Andreas Schwab <schwab@linux-m68k.org>
9971
007cafee
AS
9972 * m68klinux-tdep.c (m68k_linux_init_abi): Register
9973 linux_get_siginfo_type.
9974
7b8b6d6d
AS
9975 * m68klinux-nat.c: Include "gdb_proc_service.h".
9976 (PTRACE_GET_THREAD_AREA): Define.
9977 (ps_get_thread_area): New function.
9978
bba74b36
YQ
99792012-03-08 Yao Qi <yao@codesourcery.com>
9980
9981 * remote.c (remote_get_noisy_reply): Replace `sprintf' with
9982 `xsnprintf'.
9983 (remote_query_attached): Likewise.
9984 (remote_static_tracepoint_marker_at): Likewise.
9985 (remote_set_permissions): Likewise.
9986 (remote_detach_1, extended_remote_attach_1): Likewise.
9987 (send_g_packet, remote_vkill): Likewise.
9988 (extended_remote_disable_randomization): Likewise.
9989 (remote_add_target_side_condition): Likewise.
9990 (remote_insert_breakpoint): Likewise.
9991 (remote_remove_breakpoint): Likewise.
9992 (remote_insert_watchpoint): Likewise.
9993 (remote_remove_watchpoint): Likewise.
9994 (remote_insert_hw_breakpoint): Likewise.
9995 (remote_insert_hw_breakpoint): Likewise.
9996 (remote_remove_hw_breakpoint): Likewise.
9997 (remote_download_command_source): Likewise.
9998 (remote_download_tracepoint): Likewise.
9999 (remote_download_trace_state_variable): Likewise.
10000 (remote_disable_tracepoint): Likewise.
10001 (remote_trace_set_readonly_regions): Likewise.
10002 (remote_get_tracepoint_status): Likewise.
10003 (remote_trace_find): Likewise.
10004 (remote_get_trace_state_variable_value): Likewise.
10005 (remote_set_disconnected_tracing): Likewise.
10006 (remote_set_circular_trace_buffer): Likewise.
10007 (remote_get_min_fast_tracepoint_insn_len): Likewise.
10008 (remote_use_agent): Likewise.
10009 (remote_add_target_side_condition): Add one parameter BUF_SIZE.
10010 Update callers.
10011
9b224c5e
PA
100122012-03-07 Pedro Alves <palves@redhat.com>
10013
10014 * NEWS: Mention QProgramSignals.
10015 * inferior.h (update_signals_program_target): Declare.
10016 * infrun.c: (update_signals_program_target): New.
10017 (handle_command): Update the target of the new program signals
10018 array changes.
10019 * remote.c (PACKET_QProgramSignals): New enum.
10020 (last_program_signals_packet): New global.
10021 (remote_program_signals): New.
10022 (remote_start_remote): Update the target with the program signals
10023 list.
10024 (remote_protocol_features): Add entry for QPassSignals.
10025 (remote_open_1): Free anc clear last_program_signals_packet.
10026 (init_remote_ops): Install remote_program_signals.
10027 * target.c (update_current_target): Adjust.
10028 (target_program_signals): New.
10029 * target.h (struct target_ops) <to_program_signals>: New field.
10030 (target_program_signals): Declare.
10031
74c48cbb
PA
100322012-03-07 Pedro Alves <palves@redhat.com>
10033
10034 * NEWS: Add subtitle for new z0/z1 conditional breakpoint
10035 extensions.
10036
0c13fc49
AS
100372012-03-07 Andreas Schwab <schwab@linux-m68k.org>
10038
10039 * m68klinux-nat.c (getregs_supplies): Make static.
10040 (getfpregs_supplies): Likewise.
10041 (have_ptrace_getregs): Likewise.
10042
1281d2a3
JB
100432012-03-06 Joel Brobecker <brobecker@adacore.com>
10044
10045 * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
10046 in call to get_die_type_at_offset.
10047
2b03b41d
SS
100482012-03-06 Stan Shebs <stan@codesourcery.com>
10049
10050 * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
10051 * mi/mi-cmd-disas.c: Ditto.
10052 * mi/mi-cmd-env.c: Ditto.
10053 * mi/mi-cmd-file.c: Ditto.
10054 * mi/mi-cmd-stack.c: Ditto.
10055 * mi/mi-cmd-target.c: Ditto.
10056 * mi/mi-cmd-var.c: Ditto.
10057 * mi/mi-cmds.c: Ditto.
10058 * mi/mi-cmds.h: Ditto.
10059 * mi/mi-console.c: Ditto.
10060 * mi/mi-getopt.c: Ditto.
10061 * mi/mi-getopt.h: Ditto.
10062 * mi/mi-interp.c: Ditto.
10063 * mi/mi-main.c: Ditto.
10064 * mi/mi-out.c: Ditto.
10065 * mi/mi-parse.c: Ditto.
10066 * mi/mi-parse.h: Ditto.
10067 * mi/mi-symbol-cmds.c: Ditto.
10068
10069 * mi/mi-getopt.h: Move mi_opt struct up.
10070 * mi/mi-main.c (captured_mi_execute_command): Remove redundant
10071 return.
10072 * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
10073
c988ad87
TT
100742012-03-06 Tom Tromey <tromey@redhat.com>
10075
10076 * proc-service.c (ps_pglobal_lookup): Set the current program
10077 space.
10078
1b7c1b10
PA
100792012-03-06 Pedro Alves <palves@redhat.com>
10080
10081 * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
10082
3c182069
JB
100832012-03-05 Joel Brobecker <brobecker@adacore.com>
10084
10085 * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
10086
2e794194
JK
100872012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
10088
10089 Code cleanup.
10090 * common/linux-osdata.c (linux_common_core_of_thread): New function
10091 comment.
10092 * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
10093 call by linux_common_core_of_thread.
10094 (linux_nat_core_of_thread_1): Remove.
10095 * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
10096 * linux-thread-db.c: Include linux-osdata.h.
10097 (update_thread_core): Replace linux_nat_core_of_thread_1 call by
10098 linux_common_core_of_thread.
10099
9f9f1f31
TT
101002012-03-05 Tom Tromey <tromey@redhat.com>
10101
10102 * value.c (value_primitive_field): Don't fetch contents for
10103 non-virtual bases.
10104
b7b189f3
TT
101052012-03-05 Tom Tromey <tromey@redhat.com>
10106
10107 * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
10108
05b8a789 101092012-03-05 Andreas Arnez <arnez@linux.vnet.ibm.com>
5538f557 10110
5538f557
JB
10111 * s390-nat.c: Include "gregset.h".
10112
75528772
JK
101132012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
10114
10115 * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
10116 [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
10117 (libunwind_load): New variable so_error, use it for dlerror. Try to
10118 load also LIBUNWIND_SO_7.
10119
275418ae
PA
101202012-03-05 Pedro Alves <palves@redhat.com>
10121
10122 * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
10123 is not NULL, and remove resulting dead code.
10124
5cbb9812
TS
101252012-03-05 Thomas Schwinge <thomas@codesourcery.com>
10126
10127 * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
10128 prologue to sh_analyze_prologue.
10129 (sh_analyze_prologue): Make better use of such an upper limit, and
10130 generally be more cautious about accessing memory.
10131
541515ad
TT
101322012-03-05 Tom Tromey <tromey@redhat.com>
10133
10134 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
10135 _initialize_ia64_hpux_tdep.
10136
b4d36fb8
PA
101372012-03-05 Pedro Alves <palves@redhat.com>
10138
24490249
PA
10139 PR gdb/13766
10140
b4d36fb8
PA
10141 * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
10142 the register state is clear, supply explicit zero, instead of
10143 marking the register unavailable.
10144
60c9a3c0
TG
101452012-03-05 Tristan Gingold <gingold@adacore.com>
10146
10147 * NEWS: Mention OpenVMS ia64 new target.
10148
696759ad
TG
101492012-03-05 Tristan Gingold <gingold@adacore.com>
10150
10151 * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
10152 (ia64_unw_accessors, ia64_unw_rse_accessors)
10153 (ia64_libunwind_descr): Declare.
10154 * ia64-vms-tdep.c: New file.
10155 * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
10156 (ia64_libunwind_descr): Make them public.
10157 * configure.tgt: Add ia64-*-*vms*.
10158 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
10159 (ALLDEPFILES): Add ia64-vms-tdep.c
10160
34864976
TG
101612012-03-05 Tristan Gingold <gingold@adacore.com>
10162
169081d0
TG
10163 * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
10164 * remote.c (PACKET_qXfer_uib): New enum value.
10165 (remote_protocol_features): Add entry for PACKET_qXfer_uib.
10166 (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
10167 (_initialize_remote): Call add_packet_config_cmd for
10168 xfer:uib packet.
10169
101702012-03-05 Tristan Gingold <gingold@adacore.com>
10171
10172 * osabi.c (gdb_osabi_names): Add OpenVMS.
10173 (generic_elf_osabi_sniffer): Likewise.
10174 * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
34864976 10175
6597b100
JK
101762012-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
10177
10178 Removed unused code.
10179 * libunwind-frame.c (libunwind_frame_unwind)
10180 (libunwind_frame_base_address): Remove.
10181 * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
10182
87399aa1
YQ
101832012-03-04 Yao Qi <yao@codesourcery.com>
10184
10185 * common/agent.c (gdb_connect_sync_socket): Add _ markup and
10186 remove trailing new line.
10187 (agent_run_command, agent_run_command): Add _ markup.
10188 (agent_capability_check): Likewise.
10189
abf1152a
JK
101902012-03-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10191
10192 * breakpoint.c (set_condition_evaluation_mode): Set
10193 CONDITION_EVALUATION_MODE unconditionally.
10194
5808517f
YQ
101952012-03-03 Yao Qi <yao@codesourcery.com>
10196
10197 * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
10198 * common/agent.h: Update declaration.
10199 * inf-child.c (inf_child_use_agent): New.
10200 (inf_child_can_use_agent): New.
10201 (inf_child_target): Initialize fields `to_use_agent'
10202 and `to_can_use_agent'.
10203 * agent.c (agent_new_objfile): New.
89b7509a 10204 (_initialize_agent): Add agent_new_objfile to new_objfile
5808517f
YQ
10205 observer.
10206
10207 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
10208 New.
89b7509a 10209 (linux_target_install_ops): Initialize field
5808517f
YQ
10210 `to_static_tracepoint_markers_by_strid'.
10211 * remote.c (free_current_marker): Move it to ...
10212 * tracepoint.c (free_current_marker): ... here. New.
10213 (cleanup_target_stop): New.
10214 * tracepoint.h: Declare free_current_marker.
10215 * NEWS: Add one entry about `info static-tracepoint-marker'.
10216
58b4daa5
YQ
102172012-03-03 Yao Qi <yao@codesourcery.com>
10218
10219 * common/agent.c (agent_loaded_p): New.
89b7509a 10220 (agent_look_up_symbols): New global.
58b4daa5
YQ
10221 * common/agent.h: Declare agent_loaded_p.
10222
8ffcbaaf
YQ
102232012-03-03 Yao Qi <yao@codesourcery.com>
10224
10225 * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
10226 (agent_capability_check, agent_capability_invalidate): New.
10227 (symbol_list): New array element.
10228 * common/agent.h (enum agent_capa): New.
10229 * target.c (target_pre_inferior): Call agent_capability_invalidate.
10230
d1feda86
YQ
102312012-03-03 Yao Qi <yao@codesourcery.com>
10232
10233 * target.h (struct target_ops) <to_use_agent>: New field.
10234 (struct target_ops) <to_can_use_agent>: New field.
10235 (target_use_agent, target_can_use_agent): New macro.
10236 * target.c (update_current_target): Update.
10237 * remote.c: New enum `PACKET_QAgent'.
10238 (remote_protocol_features): Add a new element.
10239 (remote_use_agent, remote_can_use_agent): New.
10240 (init_remote_ops): Initialize field `can_use_agent' with
10241 remote_can_use_agent. Intiailize field `use_agent' with
10242 remote_use_agent.
10243 * common/agent.c (use_agent): New global.
10244 * common/agent.h: Declare it.
10245 * tracepoint.c (info_static_tracepoint_markers_command): Add
10246 comment.
10247 * Makefile.in (SFILES): Add common/agent.c and agent.c.
10248 (COMMON_OBS): Add common/agent.o and agent.o
10249 (common-agent.o): New rule.
10250 * agent.c: New.
10251
2fa291ac
YQ
102522012-03-03 Yao Qi <yao@codesourcery.com>
10253
10254 * common/agent.c: New.
10255 * common/agent.h: New.
10256 * configure.ac: Add `sys/socket.h' and `sys/un.h' to
10257 AC_CHECK_HEADERS.
10258 * configure, configh.in: Regenerated.
10259
9fc05685
KB
102602012-03-02 Kevin Buettner <kevinb@redhat.com>
10261
10262 * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
10263 unless it exists for this architecture.
10264
a5ee536b
JB
102652012-03-02 Joel Brobecker <brobecker@adacore.com>
10266
10267 * language.h (struct language_defn): New "method" la_read_var_value.
10268 * findvar.c: #include "language.h".
10269 (default_read_var_value): Renames read_var_value. Rewrite
10270 function description.
10271 (read_var_value): New function.
10272 * value.h (default_read_var_value): Add prototype.
10273 * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
10274 New functions.
10275 (ada_language_defn): Add entry for la_read_var_value.
10276 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
10277 * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
10278 language_defn structures to add entry for new la_read_var_value
10279 field.
10280
f59f708a
PA
102812012-03-02 Tom Tromey <tromey@redhat.com>
10282 Pedro Alves <palves@redhat.com>
10283
10284 PR breakpoints/13776:
10285 * breakpoint.c (breakpoint_init_inferior): Delete step-resume
10286 breakpoints.
10287 (delete_longjmp_breakpoint_at_next_stop): New.
10288 * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
10289 * target.c (generic_mourn_inferior): Call mark_breakpoints_out
10290 before deleting the inferior. Add comments.
10291 * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
10292 breakpoints immediately, but only on next stop. Move that code
10293 next to where we mark other breakpoints for deletion.
10294
44099a67
JB
102952012-03-02 Joel Brobecker <brobecker@adacore.com>
10296
10297 * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
10298 marker.
10299 * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
10300 violation.
10301
2a2ef594
PA
103022012-03-02 Pedro Alves <palves@redhat.com>
10303
10304 * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
10305
b261e0c5
UW
103062012-03-02 Ulrich Weigand <uweigand@de.ibm.com>
10307
10308 Fix -Wmissing-prototypes build.
10309 * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
10310 * remote-sim.c (gdbsim_has_all_memory): Likewise.
10311 (gdbsim_has_memory): Likewise.
10312
a95babbf
YQ
103132012-03-02 Yao Qi <yao@codesourcery.com>
10314
10315 Fix -Wmissing-prototypes build.
10316 * charset.c (phony_iconv_open): Make static.
10317 (phony_iconv_close, phony_iconv): Likewise.
10318 * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
10319 * i386-windows-nat.c (_initialize_i386_windows_nat): New
10320 prototype.
10321 * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
10322 * ser-mingw.c (create_select_thread): Make static.
10323 * windows-termcap.c (tgetent): New prototype.
10324 (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
10325
d603d4b3
JK
103262012-03-02 Zhang Yuanhui <asmwarrior@gmail.com>
10327
10328 Fix -Wmissing-prototypes build.
10329 * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
10330 (_initialize_windows_nat, _initialize_check_for_gdb_ini)
10331 (_initialize_loadable): New prototypes.
10332
7fb3ad1f
DE
103332012-03-02 Doug Evans <dje@google.com>
10334
10335 * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
10336 abbrev table, read_comp_unit will do it.
10337
693be288
JK
103382012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10339
10340 Fix -Wmissing-prototypes build.
10341 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
10342 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
10343 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
10344 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
10345 (_initialize_arm_symbian_tdep): New prototype.
10346 * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
10347 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
10348 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
10349 static.
10350 * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
10351 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
10352 prototype.
10353 * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
10354 (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
10355 * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
10356 static.
10357 * moxie-tdep.c (moxie_process_record): Likewise.
10358 * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
10359 (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
10360 * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
10361 (_initialize_rl78_tdep): New prototype.
10362 * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
10363 (_initialize_rx_tdep): New prototype.
10364 * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
10365 (_initialize_darwin_solib): New prototype.
10366 * solib-spu.c: Include solib-spu.h.
10367 (_initialize_spu_solib): New prototype.
10368 * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
10369 * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
10370 (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
10371 (tic6x_software_single_step): Make it static.
10372 (_initialize_tic6x_tdep): New prototype.
10373
638234e5
JK
103742012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10375
10376 Fix -Wmissing-prototypes build.
10377 * cris-tdep.c (cris_can_use_hardware_watchpoint)
10378 (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
10379
f4a6f16d
JK
103802012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10381
10382 Fix -Wmissing-prototypes build.
10383 * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
10384 (frv_have_stopped_data_address): Remove.
10385
04dcf5fa
JK
103862012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10387
10388 Fix -Wmissing-prototypes build.
10389 * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
10390 * sh-tdep.c: Include sh64-tdep.h.
10391 * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
10392 * sh64-tdep.c: Include sh64-tdep.h.
10393 * sh64-tdep.h: New file.
10394
19080931
MR
103952012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
10396
10397 * mips-tdep.c (mips32_scan_prologue): Correct indentation.
10398
9aac7884
MR
103992012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
10400
10401 * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
10402 sp_regnum once the gdbarch_init_osabi hook has been called.
10403
a385295e
MR
104042012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
10405
10406 * mips-tdep.c (mips32_bc1_pc): New function.
10407 (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
10408 BPOSGE32 and BPOSGE64 instructions.
10409 (deal_with_atomic_sequence): Likewise.
10410 (mips32_instruction_has_delay_slot): Likewise.
10411
1faeff08 104122012-03-01 Maciej W. Rozycki <macro@mips.com>
a09130f9
PA
10413 Chris Dearman <chris@mips.com>
10414 Maciej W. Rozycki <macro@codesourcery.com>
10415 Joseph Myers <joseph@codesourcery.com>
1faeff08
MR
10416
10417 * features/mips-dsp.xml: New file.
10418 * features/mips64-dsp.xml: New file.
10419 * features/mips-dsp-linux.xml: New file.
10420 * features/mips64-dsp-linux.xml: New file.
10421 * features/Makefile (WHICH): Add mips-dsp-linux and
10422 mips64-dsp-linux.
10423 (mips-dsp-expedite, mips64-dsp-expedite): New variables.
10424 * features/mips-dsp-linux.c: New file.
10425 * features/mips64-dsp-linux.c: New file.
10426 * regformats/mips-dsp-linux.dat: New file.
10427 * regformats/mips64-dsp-linux.dat: New file.
10428 * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
10429 registers.
10430 (mips64_linux_register_addr): Likewise.
10431 (mips64_linux_regsets_fetch_registers): Likewise.
10432 (mips64_linux_regsets_store_registers): Likewise.
10433 (mips64_linux_fetch_registers): Update call to
10434 mips64_linux_regsets_fetch_registers.
10435 (mips64_linux_store_registers): Update call to
10436 mips64_linux_regsets_store_registers.
10437 (mips_linux_read_description): Probe for DSP registers.
10438 (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
10439 and initialize_tdesc_mips64_dsp_linux.
10440 * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
10441 Remove padding of no longer used embedded register slots.
10442 * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
10443 (MIPS_RESTART_REGNUM): Redefine enum value.
10444 * mips-tdep.c (mips_generic_reg_names): Remove trailing null
10445 strings.
10446 (mips_tx39_reg_names): Likewise.
10447 (mips_linux_reg_names): New array of register names for Linux
10448 targets.
10449 (mips_register_name): Check for a null pointer in
10450 mips_processor_reg_names and return an empty string.
10451 (mips_register_type): Exclude embedded registers for the IRIX
10452 and Linux ABIs.
10453 (mips_pseudo_register_type): Likewise. Use dynamic numbers to
10454 refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle
10455 DSP registers.
10456 (mips_stab_reg_to_regnum): Handle DSP accumulators.
10457 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
10458 (mips_gdbarch_init): Likewise. Initialize internal register
10459 indices for the Linux ABI. Use dynamic numbers to refer to
10460 registers, as applicable, while parsing the target description.
10461 * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
10462
263689d8
JB
104632012-03-01 Joel Brobecker <brobecker@adacore.com>
10464
10465 * frame.h (read_frame_register_unsigned): Fix typo in function
10466 description.
10467
f3b4f45c
PA
104682012-03-01 Pedro Alves <palves@redhat.com>
10469
10470 * jit-reader.in [!__cplusplus]
10471 (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
10472
b03a2011
PA
104732012-03-01 Pedro Alves <palves@redhat.com>
10474
10475 * configure.ac (build_warnings): Add -Wmissing-prototypes.
10476 * configure: Regenerate.
10477
70221824
PA
104782012-03-01 Pedro Alves <palves@redhat.com>
10479
10480 * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
10481 * breakpoint.c (create_exception_master_breakpoint, trace_command)
10482 (ftrace_command, strace_command): Make static.
10483 * d-lang.c (_initialize_d_language): Declare.
10484 * dwarf2expr.c (_initialize_dwarf2expr): Declare.
10485 * dwarf2loc.c (_initialize_dwarf2loc):
10486 * dwarf2read.c (process_psymtab_comp_unit): Make static.
10487 * exec.c (exec_get_section_table): Make static.
10488 * i386-linux-tdep.c (i386_linux_record_signal): Make static.
10489 * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
10490 * inferior.c (remove_inferior_command, add_inferior_command)
10491 (clone_inferior_command): Make static.
10492 * linux-nat.c (linux_nat_thread_address_space)
10493 (linux_nat_core_of_thread): Make static.
10494 * linux-tdep.c (_initialize_linux_tdep): Declare.
10495 * objc-lang.c (_initialize_objc_lang): Declare.
10496 * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
10497 Make static.
10498 (_initialize_opencl_language): Declare.
10499 * record.c (_initialize_record): Declare.
10500 * remote.c (demand_private_info, remote_get_tib_address)
10501 (remote_supports_cond_tracepoints)
10502 (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
10503 Make static.
10504 * skip.c (_initialize_step_skip): Declare.
10505 * symtab.c (skip_prologue_using_lineinfo): Make static.
10506 * tracepoint.c (delete_trace_state_variable)
10507 (trace_variable_command, delete_trace_variable_command)
10508 (get_uploaded_tsv, find_matching_tracepoint_location)
10509 (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
10510 Make static.
10511 * value.c (pack_unsigned_long): Make static.
10512 * varobj.c (varobj_ensure_python_env): Make static.
10513 * windows-tdep.c (_initialize_windows_tdep): Declare.
10514 * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
10515
33fbcbee
PA
105162012-03-01 Pedro Alves <palves@redhat.com>
10517
10518 * linux-tdep.c (linux_has_shared_address_space): Make static. Add
10519 gdbarch parameter.
10520 (linux_init_abi): Install it as has_shared_address_space gdbarch
10521 callback.
10522
44d0cd3b
PA
105232012-03-01 Pedro Alves <palves@redhat.com>
10524
10525 * observer.c (observer_test_first_notification_function)
10526 (observer_test_second_notification_function)
10527 (observer_test_third_notification_function): Add declarations.
10528
ed01b82c
PA
105292012-03-01 Pedro Alves <palves@redhat.com>
10530
10531 * common/signals.c (default_target_signal_to_host)
10532 (default_target_signal_from_host): Move ...
10533 * arch-utils.c: ... here.
10534 * arch-utils.h (default_target_signal_to_host)
10535 (default_target_signal_from_host): Declare.
10536
10537 * common/signals.c (target_signal_from_command): Move ...
10538 * infrun.c: ... here.
10539 * inferior.h (target_signal_from_command): Declare.
10540 * target.h (target_signal_from_command)
10541 (default_target_signal_from_host, default_target_signal_to_host):
10542 Delete declarations.
10543
10544 * common/signals.c (_initialize_signals): Delete.
10545
c9b87335
PA
105462012-03-01 Pedro Alves <palves@redhat.com>
10547
10548 * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
10549 both __cplusplus and !__cplusplus.
10550
9340a6c0
PA
105512012-03-01 Pedro Alves <palves@redhat.com>
10552
10553 * psymtab.c (find_and_open_source): Delete declaration.
10554 * source.c (find_and_open_source): Move comment ...
10555 * source.h (find_and_open_source): ... to this new declaration.
10556
e451c4a1
PA
105572012-03-01 Pedro Alves <palves@redhat.com>
10558
10559 * inline-frame.c: Include inline-frame.h.
10560
983fb104
PA
105612012-03-01 Pedro Alves <palves@redhat.com>
10562
10563 * tui/tui-data.c (set_gen_win_origin): Delete.
10564 * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
10565 * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
10566
5fbce5df
PA
105672012-03-01 Pedro Alves <palves@redhat.com>
10568
10569 * remote.c (encode_actions): Delete declaration.
10570 * tracepoint.c (encode_actions): Make extern.
10571 * tracepoint.h (encode_actions): Declare.
10572
49a8461d
PA
105732012-03-01 Pedro Alves <palves@redhat.com>
10574
10575 * python/py-breakpoint.c: Include python.h.
10576 * python/py-continueevent.c (create_continue_event_object): Make
10577 static.
10578 * python/py-lazy-string.c (stpy_get_type): Make static.
10579 * python/py-newobjfileevent.c (create_new_objfile_event_object):
10580 Make static.
10581 * python/py-utils.c (unicode_to_target_python_string): Make
10582 static.
10583 * python/py-value.c: Include python.h.
10584
9079102f
PA
105852012-03-01 Pedro Alves <palves@redhat.com>
10586
10587 * inferior.c (delete_threads_of_inferior): Delete.
10588
a298c5e8
PA
105892012-03-01 Pedro Alves <palves@redhat.com>
10590
10591 Import fallback definitions from glibc.
10592
10593 * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
10594 ps_prochandle): Forward declare.
10595 (ps_err_e): Use glibc's comments.
10596 [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
10597 (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
10598 (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
10599 (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
10600 (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
10601 (struct ps_prochandle): Adjust comment.
10602
e3084549
PA
106032012-03-01 Pedro Alves <palves@redhat.com>
10604
10605 * ada-lang.c (ada_modulus_from_name): Delete.
10606 * ada-lex.l (lexer_init): Make static.
10607
ad5f7d6e
PA
106082012-03-01 Pedro Alves <palves@redhat.com>
10609
10610 PR gdb/13767
10611
10612 * frame.c (read_frame_register_unsigned): New.
10613 * frame.h (read_frame_register_unsigned): Declare.
10614 * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
10615 Handle it.
10616 (print_i387_control_word): New parameter `control_p'. Handle it.
10617 (i387_print_float_info): Handle unavailable float registers.
10618
e0a4d108
KS
106192012-03-01 Keith Seitz <keiths@redhat.com>
10620
10621 * linespec.c (decode_line_2): Sort the list of methods
10622 alphabetically before presenting the user with a selection
10623 menu.
10624
122d1940
DE
106252012-03-01 Doug Evans <dje@google.com>
10626
10627 * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
10628 has_namespace_info.
10629 (dwarf2_read_abbrevs): Remove corresponding initialization.
10630
7d74f244
DE
106312012-03-01 Scott J. Goldman <scottjg@vmware.com>
10632
10633 * NEWS: Mention new python command class gdb.COMMAND_USER.
10634 * cli/cli-cmds.c (show_user): Print error when used on a python
10635 command.
10636 (init_cli_cmds): Update documentation strings for "show user" and
10637 "set/show max-user-call-depth" to clarify that it does not apply to
10638 python commands.
10639 * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
10640 error check.
10641 (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
10642 gdb python api.
10643 * top.c (execute_command): Only execute a user-defined command as a
10644 legacy macro if c->user_commands is set.
10645
e88acd96
TT
106462012-03-01 Tom Tromey <tromey@redhat.com>
10647
10648 * valprint.h (struct generic_val_print_decorations): New.
10649 (generic_val_print): Declare.
10650 * valprint.c (generic_val_print): New function.
10651 * p-valprint.c (p_decorations): New global.
10652 (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
10653 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
10654 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
10655 TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
10656 * m2-valprint.c (m2_decorations): New global.
10657 (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
10658 TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
10659 TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
10660 TYPE_CODE_ERROR>: Call generic_val_print.
10661 * f-valprint.c (f_decorations): New global.
10662 (f_val_print): Use print_function_pointer_address.
10663 <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
10664 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
10665 TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
10666 generic_val_print.
10667 * c-valprint.c (c_decorations): New global.
10668 (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
10669 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
10670 TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
10671 TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
10672 TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
10673 * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
10674 case.
10675
d3eab38a
TT
106762012-03-01 Tom Tromey <tromey@redhat.com>
10677
10678 * valprint.c (val_print): Update.
10679 * p-valprint (pascal_val_print): Return void.
10680 * p-lang.h (pascal_val_print): Return void.
10681 * m2-valprint.c (m2_val_print): Return void.
10682 * m2-lang.h (m2_val_print): Return void.
10683 * language.h (struct language_defn) <la_val_print>: Return void.
10684 * language.c (unk_lang_val_print): Return void.
10685 * jv-valprint.c (java_val_print): Return void.
10686 * jv-lang.h (java_val_print): Return void.
10687 * f-valprint.c (f_val_print): Return void.
10688 * f-lang.h (f_val_print): Return void.
10689 * d-valprint.c (d_val_print): Return void.
10690 (dynamic_array_type): Update.
10691 * d-lang.h (d_val_print): Return void.
10692 * c-valprint.c (c_val_print): Return void.
10693 * c-lang.h (c_val_print): Return void.
10694 * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
10695 void.
10696 * ada-lang.h (ada_val_print): Return void.
10697
35c0084b
TT
106982012-03-01 Tom Tromey <tromey@redhat.com>
10699
10700 * value.h (val_print): Return void.
10701 * valprint.c (val_print): Return void.
10702
a1f5dd1b
TT
107032012-03-01 Tom Tromey <tromey@redhat.com>
10704
10705 * value.h (common_val_print): Return void.
10706 * valprint.c (common_val_print): Return void.
10707
8e069a98
TT
107082012-03-01 Tom Tromey <tromey@redhat.com>
10709
10710 * value.h (value_print): Return void.
10711 * valprint.c (value_print): Return void.
10712 * p-valprint.c (pascal_value_print): Return void.
10713 * p-lang.h (pascal_value_print): Return void.
10714 * language.h (struct language_defn) <la_value_print>: Return
10715 void.
10716 * language.c (unk_lang_value_print): Return void.
10717 * jv-valprint.c (java_value_print): Return void.
10718 * jv-lang.h (java_value_print): Return void.
10719 * f-valprint.c (c_value_print): Don't declare.
10720 Include c-lang.h.
10721 * c-valprint.c (c_value_print): Return void.
10722 * c-lang.h (c_value_print): Return void.
10723 * ada-valprint.c (ada_value_print): Return void.
10724 * ada-lang.h (ada_value_print): Return void.
10725
be335936
TT
107262012-03-01 Tom Tromey <tromey@redhat.com>
10727
10728 * value.c (value_primitive_field): Handle virtual base classes.
10729
b0db66a7
TT
107302012-03-01 Tom Tromey <tromey@redhat.com>
10731
10732 * gdbtypes.h (struct vbase): Remove.
10733
132c57b4
TT
107342012-03-01 Tom Tromey <tromey@redhat.com>
10735
10736 * c-valprint.c (print_function_pointer_address): Move...
10737 * valprint.c: ... here. Make non-static.
10738 * m2-valprint.c (print_function_pointer_address): Remove.
10739 * valprint.h (print_function_pointer_address): Declare.
10740
e41eec66
JB
107412012-03-01 Joel Brobecker <brobecker@adacore.com>
10742
10743 * NEWS: Document the fact that one can provide a condition when
10744 creating an Ada exception catchpoint.
10745
19c37f24
TT
107462012-03-01 Tom Tromey <tromey@redhat.com>
10747
10748 * valprint.c (val_print_type_code_flags): Fix placement of
10749 trailing brace.
10750
f0fed3a3
JB
107512012-03-01 Joel Brobecker <brobecker@adacore.com>
10752
10753 * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
10754 (update_files): Do not set MULTILINE_COMMENT_PREFIXES
10755 environment variable before calling update-copyright.
10756
8ba85d85
JB
107572012-03-01 Joel Brobecker <brobecker@adacore.com>
10758
10759 * gnulib/extra/update-copyright: Update to the latest from
10760 gnulib's git repository.
10761 * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
10762 variable to 2 instead of 1.
10763
8219b1e8
JB
107642012-02-29 Joel Brobecker <brobecker@adacore.com>
10765
10766 * varobj.c (c_value_of_variable): Remove dead code.
10767
718cb7da
JB
107682012-02-29 Joel Brobecker <brobecker@adacore.com>
10769
10770 * ada-lex.p (processId): Do not modify already encoded IDs.
10771 Update function documentation.
10772
739593e0
JB
107732012-02-29 Joel Brobecker <brobecker@adacore.com>
10774
10775 * ada-lang.h (ada_find_renaming_symbol): Replace parameter
10776 "name" with "struct symbol *name_sym".
10777 * ada-exp.y (write_var_or_type): Update call to
10778 ada_find_renaming_symbol.
10779 "name" with "struct symbol *name_sym". Adjust Implementation
10780 accordingly. Adjust the function documentation.
10781
852dff6c
JB
107822012-02-29 Joel Brobecker <brobecker@adacore.com>
10783
10784 * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
10785 * ada-lang.c (ada_find_any_type): Add advance declaration.
10786 Make static. Replace ada_find_any_symbol by
10787 ada_find_any_type_symbol.
10788 (ada_find_any_type_symbol): Renames ada_find_any_symbol.
10789 Improve function description. Make static.
10790 (ada_find_renaming_symbol, find_old_style_renaming_symbol):
10791 Replace ada_find_any_symbol by ada_find_any_type_symbol.
10792
1b611343
JB
107932012-02-29 Joel Brobecker <brobecker@adacore.com>
10794
10795 * ada-lang.c (struct tag_args): Delete.
10796 (ada_get_tsd_type): Function body moved up in source file.
10797 (ada_tag_name_1, ada_tag_name_2): Delete.
10798 (ada_get_tsd_from_tag): New function.
10799 (ada_tag_name_from_tsd): New function.
10800 (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
10801 to determine the tag name.
10802
41246937
JB
108032012-02-29 Joel Brobecker <brobecker@adacore.com>
10804
10805 * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
10806 declaration.
10807 * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
10808 function.
10809
ffde82bf
JB
108102012-02-29 Joel Brobecker <brobecker@adacore.com>
10811
10812 * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
10813
2ad01556
JB
108142012-02-29 Joel Brobecker <brobecker@adacore.com>
10815
10816 * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
10817 full searches.
10818
99b1c762
JB
108192012-02-29 Joel Brobecker <brobecker@adacore.com>
10820
10821 * ada-lang.c (constrained_packed_array_type): If there is a
10822 parallel XA type, use it to determine the array index type.
10823
2d4a02ee
JB
108242012-02-29 Joel Brobecker <brobecker@adacore.com>
10825
10826 * ada-valprint.c (ada_val_print_1): If our value is a reference
10827 to an array descriptor, dereference it before converting it
10828 to a simple array.
10829
c48db5ca
JB
108302012-02-29 Joel Brobecker <brobecker@adacore.com>
10831
10832 * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
10833 creating fixed value.
10834 (ada_value_ind, ada_coerce_ref, assign_component)
10835 (ada_evaluate_subexp): Remove call to unwrap_value before
10836 call to ada_to_fixed_value.
10837
2e6fda7d
JB
108382012-02-29 Joel Brobecker <brobecker@adacore.com>
10839
10840 * ada-lang.c (to_fixed_array_type): Set result's type name.
10841
5845583d
JB
108422012-02-29 Joel Brobecker <brobecker@adacore.com>
10843
10844 * ada-lang.c (catch_ada_exception_command_split): Add new
10845 argument cond_string. Add support for condition at end of
10846 "catch exception" commands.
10847 (ada_decode_exception_location): Add new argument cond_string.
10848 Update call to catch_ada_exception_command_split.
10849 (create_ada_exception_catchpoint): Add new argument cond_string.
10850 Set the breakpoint condition if needed.
10851 (catch_ada_exception_command): Update call to
10852 ada_decode_exception_location.
10853 (ada_decode_assert_location): Add function documentation.
10854 Add support for condition at end of "catch assert" command.
10855 (catch_assert_command): Update calls to ada_decode_assert_location
10856 and create_ada_exception_catchpoint.
10857
9a7f938f
JK
108582012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
10859
10860 Fix disp-step-syscall.exp: fork: single step over fork.
10861 * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
10862 (i386_linux_get_syscall_number_from_regcache): ... here, new function
10863 comment, change parameters gdbarch and ptid to regcache. Remove
10864 parameter regcache, initialize gdbarch from regcache here.
10865 (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
10866 New functions.
10867 (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
10868 instead.
10869 * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
10870 'syscall'. Make the 'int' check more strict.
10871
ffdf6de5
JK
108722012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
10873
10874 Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
10875 * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
10876 (i386_linux_intx80_sysenter_syscall_record): ... here.
10877 (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
10878 Use the renamed function name.
10879
c70a6932
JK
108802012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
10881
10882 * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
10883 * breakpoint.c (until_break_command): Likewise.
10884 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
10885 * infcall.c (call_function_by_hand): Likewise.
10886 * infcmd.c (finish_forward): Likewise.
10887 * infrun.c (insert_exception_resume_breakpoint): Likewise.
10888
05b8a789 108892012-02-28 Tristan Gingold <gingold@adacore.com>
d4cd3da9 10890
d4cd3da9
JB
10891 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
10892 avoid variable assignments inside condition.
10893
6425366c
JK
108942012-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
10895
10896 Fix static analysis issue found by cppcheck.
10897 * microblaze-tdep.c (microblaze_extract_return_value): Fix
10898 uninitialized BUF for size 2.
10899
c8cef75f 109002012-02-27 Chris Dearman <chris@mips.com>
a09130f9
PA
10901 Nathan Froyd <froydnj@codesourcery.com>
10902 Maciej W. Rozycki <macro@codesourcery.com>
c8cef75f
MR
10903
10904 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
10905 (mips16_instruction_has_delay_slot): Likewise.
10906 (mips_segment_boundary): Likewise.
10907 (mips_adjust_breakpoint_address): Likewise.
10908 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
10909
473347ad 109102012-02-27 Maciej W. Rozycki <macro@mips.com>
a09130f9 10911 Maciej W. Rozycki <macro@codesourcery.com>
473347ad
MR
10912
10913 * infrun.c (handle_inferior_event): Don't proceed through
10914 shared library trampolines if stepping at the machine
10915 instruction level.
10916
cf233303
MR
109172012-02-27 Maciej W. Rozycki <macro@codesourcery.com>
10918
10919 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
10920 too.
10921
cb2cf4ce
TS
109222012-02-27 Thomas Schwinge <thomas@codesourcery.com>
10923
10924 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
10925 (sh_stub_unwind_sniffer): New functions.
10926 (sh_stub_unwind): New variable.
10927 (sh_gdbarch_init): Wire everything.
10928
644cebc9
PA
109292012-02-27 Pedro Alves <palves@redhat.com>
10930
10931 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
10932 (linux_nat_post_attach_wait): Adjust to use
10933 linux_proc_pid_is_stopped.
10934 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
10935 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
10936 based on pid_is_stopped from both linux-nat.c and
10937 gdbserver/linux-low.c, and renamed.
10938
283002cf
MR
109392012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
10940
10941 * remote.c (remote_watchpoint_addr_within_range): New function.
10942 (init_remote_ops): Use it.
10943
9b3e86b1
MR
109442012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
10945
10946 * target.h (target_watchpoint_addr_within_range): Document macro.
10947
e36930bb
PA
109482012-02-24 Pedro Alves <palves@redhat.com>
10949
10950 * stack.c (set_last_displayed_sal): Issue internal_error instead
10951 of warning, and issue it after clearing the last displayed sal.
10952
883bc8d1
PA
109532012-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
10954 Pedro Alves <palves@redhat.com>
10955
10956 * breakpoint.c (until_break_command): Install breakpoints after
10957 all frame manipulations.
10958
b775012e
LM
109592012-02-24 Luis Machado <lgustavo@codesourcery.com>
10960
10961 * remote.c (remote_supports_cond_breakpoints): New forward
10962 declaration.
10963 (remote_add_target_side_condition): New function.
10964 (remote_insert_breakpoint): Add target-side breakpoint
10965 conditional if supported.
10966 (remote_insert_hw_breakpoint): Likewise.
10967 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
10968 hook.
10969
10970 * target.c (update_current_target): Inherit
10971 to_supports_evaluation_of_breakpoint_conditions.
10972 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
10973
10974 * target.h (struct target_ops)
10975 <to_supports_evaluation_of_breakpoint_conditions>: New field.
10976 (target_supports_evaluation_of_breakpoint_conditions): New #define.
10977
10978 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
10979 (condition_evaluation_both, condition_evaluation_auto,
10980 condition_evaluation_host, condition_evaluation_target,
10981 condition_evaluation_enums, condition_evaluation_mode_1,
10982 condition_evaluation_mode): New static globals.
10983 (translate_condition_evaluation_mode): New function.
10984 (breakpoint_condition_evaluation_mode): New function.
10985 (gdb_evaluates_breakpoint_condition_p): New function.
10986 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
10987 (mark_breakpoint_modified): New function.
10988 (mark_breakpoint_location_modified): New function.
10989 (set_condition_evaluation_mode): New function.
10990 (show_condition_evaluation_mode): New function.
10991 (bp_location_compare_addrs): New function.
10992 (get_first_location_gte_addr): New helper function.
10993 (set_breakpoint_condition): Free condition bytecode if locations
10994 has become unconditional. Call mark_breakpoint_modified (...).
10995 (condition_command): Call update_global_location_list (1) for
10996 breakpoints.
10997 (breakpoint_xfer_memory): Use is_breakpoint (...).
10998 (is_breakpoint): New function.
10999 (parse_cond_to_aexpr): New function.
11000 (build_target_condition_list): New function.
11001 (insert_bp_location): Handle target-side conditional
11002 breakpoints and call build_target_condition_list (...).
11003 (update_inserted_breakpoint_locations): New function.
11004 (insert_breakpoint_locations): Handle target-side conditional
11005 breakpoints.
11006 (bpstat_check_breakpoint_conditions): Add comment.
11007 (bp_condition_evaluator): New function.
11008 (bp_location_condition_evaluator): New function.
11009 (print_breakpoint_location): Print information on where the condition
11010 will be evaluated.
11011 (print_one_breakpoint_location): Likewise.
11012 (init_bp_location): Call mark_breakpoint_location_modified (...) for
11013 breakpoint location.
11014 (force_breakpoint_reinsertion): New functions.
11015 (update_global_location_list): Handle target-side breakpoint
11016 conditions.
11017 Reinsert locations that are already inserted if conditions have
11018 changed.
11019 (bp_location_dtor): Free agent expression bytecode.
11020 (disable_breakpoint): Call mark_breakpoint_modified (...).
11021 Call update_global_location_list (...) with parameter 1 for breakpoints.
11022 (disable_command): Call mark_breakpoint_location_modified (...).
11023 Call update_global_location_list (...) with parameter 1 for breakpoints.
11024 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
11025 (enable_command): mark_breakpoint_location_modified (...).
11026 (_initialize_breakpoint): Update documentation and add
11027 condition-evaluation breakpoint subcommand.
11028
11029 * breakpoint.h: Include ax.h.
11030 (condition_list): New data structure.
11031 (condition_status): New enum.
11032 (bp_target_info) <cond_list>: New field.
11033 (bp_location) <condition_changed, cond_bytecode>: New fields.
11034 (is_breakpoint): New prototype.
11035
3788aec7
LM
110362012-02-24 Luis Machado <lgustavo@codesourcery.com>
11037
11038 * remote.c (remote_state) <cond_breakpoints>: New field.
11039 (PACKET_ConditionalBreakpoints): New enum.
11040 (remote_cond_breakpoint_feature): New function.
11041 (remote_protocol_features): Add new ConditionalBreakpoints entry.
11042 (remote_supports_cond_breakpoints): New function.
11043 (_initialize_remote): Add new packet configuration for
11044 target-side conditional breakpoints.
11045
72895ff6
LM
110462012-02-24 Luis Machado <lgustavo@codesourcery.com>
11047
11048 * NEWS: Mention target-side conditional breakpoint support,
11049 new condition-evaluation breakpoint subcommand and remote
11050 packet extensions.
11051
dea2aa5f
LM
110522012-02-24 Luis Machado <lgustavo@codesourcery.com>
11053
11054 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
11055 number.
11056
8a8bc27f
TS
110572012-02-24 Thomas Schwinge <thomas@codesourcery.com>
11058
11059 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
11060 (after_prologue): Remove.
11061
6b446fdf
TT
110622012-02-23 Tom Tromey <tromey@redhat.com>
11063
11064 * jv-valprint.c (java_val_print): Remove dead code.
11065
ef59abfb
TG
110662012-02-23 Tristan Gingold <gingold@adacore.com>
11067
a09130f9
PA
11068 * ada-tasks.c (struct ada_tasks_inferior_data): Add
11069 known_tasks_element and known_tasks_length fields.
11070 (read_known_tasks_array): Change argument type. Use pointer type
11071 and number of elements from DATA. Adjust.
11072 (read_known_tasks_list): Likewise.
11073 (get_known_tasks_addr): Remove.
11074 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
11075 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
11076 type and array length. Merge former get_known_tasks_addr code.
ef59abfb 11077
def166f6
JK
110782012-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
11079
11080 PR backtrace/13716
11081 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
11082 it after set_momentary_breakpoint.
11083
aeaa2474
SA
110842012-02-22 Sterling Augustine <saugustine@google.com>
11085
11086 PR 13689:
11087 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
11088
feea76c2
GB
110892012-02-22 Gary Benson <gbenson@redhat.com>
11090
11091 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
11092 (find_slot_in_mapped_hash): Likewise.
11093
f06e05e0
JK
110942012-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
11095
11096 PR build/13638
11097 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
11098 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
11099 * configure: Regenerate.
11100
b54a8fd7
PA
111012012-02-21 Tristan Gingold <gingold@adacore.com>
11102 Pedro Alves <palves@redhat.com>
11103
11104 * ia64-tdep.c: Do not include libunwind-ia64.h.
11105 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
11106 Include libunwind-ia64.h instead of libunwind.h.
11107 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
11108 for libunwind.h existence.
11109 * configure, config.in: Regenerate.
11110
dfcee124
AG
111112012-02-21 Anton Gorenkov <xgsa@yandex.ru>
11112
11113 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
11114 instead of value_rtti_target_type.
11115 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
11116 instead of value_rtti_target_type.
11117 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
11118 value_rtti_target_type.
11119 * valops.c (value_ind): Extract function readjust_indirect_value_type.
11120 (value_rtti_target_type): Rename to ...
11121 (value_rtti_indirect_type): ... here and make it indirect. Update
11122 function comment.
11123 * value.c (readjust_indirect_value_type): New function.
11124 (coerce_ref): Support for enclosing type setting for references
11125 with readjust_indirect_value_type.
11126 * value.h (readjust_value_type): New declaration.
11127 (value_rtti_target_type): Rename to ...
11128 (value_rtti_indirect_type): ... here.
11129
02568277
AG
111302012-02-21 Anton Gorenkov <xgsa@yandex.ru>
11131
11132 * MAINTAINERS (Write After Approval): Add myself to the list.
11133
10c07b7e 111342012-02-20 Doug Evans <dje@google.com>
28ee876a 11135
d82ea6a8
DE
11136 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
11137 Rename objfile_p_char parameter to objfilep.
11138 (build_objfile_section_table): Result is now void. All callers
11139 updated.
11140 * objfiles.h (struct objfile): Tweak comments, whitespace.
11141 (build_objfile_section_table): Update.
11142
28ee876a
DE
11143 * elfread.c (elf_symfile_segments): Fix warning text.
11144
24c79950
TT
111452012-02-20 Tom Tromey <tromey@redhat.com>
11146
11147 PR gdb/13498:
11148 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
11149 particular set of file names once.
11150 (dw2_map_symbol_filenames): Likewise.
11151
3a9b40b6
JK
111522012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
11153
11154 Code cleanup.
11155 * main.c (write_files): Remove the declaration.
11156 (external_editor_command): Move the declaration ...
11157 [GDBTK] (external_editor_command): ... here. Fix the comment.
11158
4d0795ca
TT
111592012-02-20 Tom Tromey <tromey@redhat.com>
11160
11161 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
11162 extraneous block.
11163
637fd620
TG
111642012-02-20 Tristan Gingold <gingold@adacore.com>
11165
11166 * darwin-nat.h (enum darwin_msg_state): Add comments.
11167
6f124894
TG
111682012-02-20 Tristan Gingold <gingold@adacore.com>
11169
11170 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
11171 value.
11172
2e6e3d9c
JB
111732012-20-18 Joel Brobecker <brobecker@adacore.com>
11174
11175 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
11176 between function description and implementation.
11177
2e8265fd
TT
111782012-02-17 Tom Tromey <tromey@redhat.com>
11179
11180 PR python/12070:
11181 * python/py-event.c (event_object_getset): New global.
11182 (event_object_type): Reference it.
11183 * python/py-type.c (field_object_getset): New global.
11184 (field_object_type): Reference it.
11185 * python/python-internal.h (gdb_py_generic_dict): Declare.
11186 * python/py-utils.c (gdb_py_generic_dict): New function.
11187
8544a150 111882012-02-17 Tristan Gingold <gingold@adacore.com>
6f124894 11189
8544a150 11190 * solib-darwin.c (darwin_current_sos): Check magic and filetype
6f124894 11191
ca193e27
TS
111922012-02-17 Thomas Schwinge <thomas@codesourcery.com>
11193
11194 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
11195 TYPE_CALLING_CONVENTION annotation.
11196
e5586183
KB
111972012-02-16 Kevin Buettner <kevinb@redhat.com>
11198
11199 * MAINTAINERS: Add rx to target ISA section.
11200 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
11201 (ALLDEPFILES): Add rx-tdep.c.
11202
7dcd53a0
TT
112032012-02-16 Tom Tromey <tromey@redhat.com>
11204
11205 * symfile.c (symbol_file_add_main_1): Use inferior's
11206 symfile_flags.
11207 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
11208 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
11209 inferior.
11210 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
11211 inferior.
11212 (follow_exec): Use inferior's symfile_flags.
11213 * inferior.h (struct inferior) <symfile_flags>: New field.
11214
ddd60447
MF
112152012-02-16 Mike Frysinger <vapier@gentoo.org>
11216
11217 PR gdb/9734:
11218 * remote-sim.c (gdbsim_create_inferior): Call error() when
11219 sim_create_inferior() fails.
11220
b0d32fb6
TG
112212012-02-16 Josh Matthews <josh@joshmatthews.net>
11222
11223 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
11224
9addecb9
TT
112252012-02-16 Tom Tromey <tromey@redhat.com>
11226
11227 PR c++/13653:
11228 * thread.c (struct current_thread_cleanup) <was_removable>: New
11229 field.
11230 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
11231 (make_cleanup_restore_current_thread): Initialize new field.
11232
a58b110a
KB
112332012-02-15 Kevin Buettner <kevinb@redhat.com>
11234
11235 * MAINTAINERS: Add rl78 to target ISA section.
11236 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
11237 (ALLDEPFILES): Add rl78-tdep.c.
11238 * NEWS: Mention rl78 as a new target.
11239
4cb6da1c
AR
112402012-02-15 Aleksandar Ristovski <aristovski@qnx.com>
11241
11242 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
11243 data.
11244 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
11245
3af2590d
TT
112462012-02-15 Tom Tromey <tromey@redhat.com>
11247
11248 PR gdb/12659:
11249 * infcmd.c (registers_info): Print just the current register's
11250 name.
11251
c6910659
TT
112522012-02-15 Tom Tromey <tromey@redhat.com>
11253
11254 * python/py-symbol.c (sympy_value): Use _().
11255
7cee1e54
PA
112562012-02-15 Pedro Alves <palves@redhat.com>
11257
11258 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
11259 output to be like native targets'.
11260 (remote_pid_to_str): Special case the null ptid.
11261
816338b5
SS
112622012-02-14 Stan Shebs <stan@codesourcery.com>
11263
11264 * NEWS: Mention enable count command.
11265 * breakpoint.h (struct breakpoint): New field enable_count.
11266 * breakpoint.c (enable_breakpoint_disp): Add count argument.
11267 (enable_breakpoint): Add arg to call.
11268 (struct disp_data): New struct.
11269 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
11270 (do_map_enable_once_breakpoint): Create a struct and pass it.
11271 (do_map_enable_delete_breakpoint): Ditto.
11272 (do_map_enable_count_breakpoint): New function.
11273 (enable_count_command): New function.
11274 (bpstat_stop_status): Decrement enable_count.
11275 (print_one_breakpoint_location): Report enable count.
11276 (_initialize_breakpoint): Add enable count command.
11277
c47a44f4
KB
112782012-02-14 Kevin Buettner <kevinb@redhat.com>
11279
11280 * rl78-tdep.c (reggroups.h): Include.
11281 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
11282 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
11283 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
11284 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
11285 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
11286 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
11287 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
11288 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
11289 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
11290 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
11291 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
11292 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
11293 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
11294 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
11295 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
11296 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
11297 beginning of register list.
11298 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
11299 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
11300 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
11301 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
11302 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
11303 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
11304 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
11305 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
11306 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
11307 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
11308 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
11309 the pseudo registers. Rearrange other pseudo registers too so
11310 that the bank registers appear at the end.
11311 (rl78_register_type): Account for the fact that the byte sized
11312 bank registers are now pseudo-registers.
11313 (rl78_register_name): Rearrange the register name array. Make
11314 initial set of raw banked registers inaccessible.
11315 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
11316 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
11317 case for copying bytes back and forth between raw and pseudo
11318 versions of the banked registers. Update other cases to reflect
11319 the changed names.
11320 (rl78_return_value): Update to account for changed names of
11321 raw registers.
11322 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
11323 rl78_register_sim_regno().
11324
e4569f1e
KB
113252012-02-14 Kevin Buettner <kevinb@redhat.com>
11326
11327 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
11328 the name parameter being passed to find_pc_partial_function().
11329
7a05aae7
JK
113302012-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
11331
11332 * MAINTAINERS: Step down from being ia64 target maintainer.
11333
11fde611
JK
113342012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
11335
11336 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
11337 compilation warning.
11338
57008375
JK
113392012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
11340
11341 Fix crash on loaded shlibs without loaded exec_bfd.
11342 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
11343 (set_section_command): Replace exec_bfd by p->bfd.
11344
ff3c9849
TT
113452012-02-10 Tom Tromey <tromey@redhat.com>
11346
11347 * linespec.c (decode_line_internal): Skip symtabs_from_filename
11348 when we have a C++ qualified name.
11349
db2b9fdd
PA
113502012-02-10 Pedro Alves <palves@redhat.com>
11351
11352 * inferior.c (inferior_pid_to_str): New.
11353 (print_inferior, inferior_command): Use it.
11354
12cd34f3
PA
113552012-02-10 Pedro Alves <palves@redhat.com>
11356
11357 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
11358 the test CFLAGS.
11359 * configure: Regenerate.
11360
e871429d
JK
113612012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11362
11363 * linespec.c (decode_line_internal): Fix comment correctness.
11364
1916efaf
PA
113652012-02-09 Valery Khromov <valery.khromov@gmail.com>
11366
11367 PR gdb/12953
11368 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
11369 * amd64bsd-nat.c: Add support for debug registers (adapted from
11370 i386bsd-nat.c).
11371 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
11372 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
11373 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
11374 (amd64bsd_dr_get_control): New functions.
11375 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
11376 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
11377 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
11378 watchpoints initialization.
11379 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
11380
f4859d94
JK
113812012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
11382
11383 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
11384 flds_bnds.fields.
11385 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
11386
c56a97f9
JK
113872012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
11388
11389 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
11390
1a119f36
JB
113912012-02-08 Joel Brobecker <brobecker@adacore.com>
11392
11393 * language.h (symbol_name_cmp_ftype): Renames
11394 symbol_name_match_p_ftype.
11395 (struct language_defn)[la_get_symbol_name_cmp]: Renames
11396 la_get_symbol_name_match_p.
11397 * ada-lang.c (ada_get_symbol_name_cmp): Renames
11398 ada_get_symbol_name_match_p. Update comment.
11399 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
11400 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
11401 Renames symbol_name_match_p. Update field type.
11402 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
11403 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11404 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
11405 "la_get_symbol_name_cmp" in comments.
11406 * language.c: Likewise.
11407
c71bb1cf
RO
114082012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11409
11410 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
11411 %eflags offset.
11412 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
11413 (amd64_sol2_gregset32_reg_offs): Likewise.
11414
4b2d20a5
TG
114152012-02-08 Joel Brobecker <brobecker@adacore.com>
11416
11417 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
11418 of the returned BFD is allocated by GDB.
11419
f0823d2c
TT
114202012-02-07 Tom Tromey <tromey@redhat.com>
11421
11422 PR python/12027:
11423 * python/python-internal.h (frame_object_type): Declare.
11424 * python/py-symbol.c (sympy_needs_frame): New function.
11425 (sympy_value): New function.
11426 (symbol_object_getset): Add "needs_frame".
11427 (symbol_object_methods): Add "value".
11428 * python/py-frame.c (frame_object_type): No longer static.
11429
64e7d9dd
TT
114302012-02-07 Tom Tromey <tromey@redhat.com>
11431
11432 PR python/13599:
11433 * python/py-symbol.c (sympy_line): New function.
11434 (symbol_object_getset): Add "line".
11435
1d6b2d2b
TT
114362012-02-07 Tom Tromey <tromey@redhat.com>
11437
11438 * charset.c (find_charset_names): Check 'in' against NULL.
11439
0d5cff50
DE
114402012-02-06 Doug Evans <dje@google.com>
11441
11442 * gdbtypes.h (struct main_type): Change type of name,tag_name,
11443 and fields.name members from char * to const char *. All uses updated.
11444 (struct cplus_struct_type): Change type of fn_fieldlists.name member
11445 from char * to const char *. All uses updated.
11446 (type_name_no_tag): Update.
11447 (lookup_unsigned_typename, lookup_signed_typename): Update.
11448 * gdbtypes.c (type_name_no_tag): Change result type
11449 from char * to const char *. All callers updated.
11450 (lookup_unsigned_typename, lookup_signed_typename): Change type of
11451 name parameter from char * to const char *.
11452 * symtab.h (struct cplus_specific): Change type of demangled_name
11453 member from char * to const char *. All uses updated.
11454 (struct general_symbol_info): Change type of name and
11455 mangled_lang.demangled_name members from char * to const char *.
11456 All uses updated.
11457 (symbol_get_demangled_name, symbol_natural_name): Update.
11458 (symbol_demangled_name, symbol_search_name): Update.
11459 * symtab.c (symbol_get_demangled_name): Change result type
11460 from char * to const char *. All callers updated.
11461 (symbol_natural_name, symbol_demangled_name): Ditto.
11462 (symbol_search_name): Ditto.
11463 (completion_list_add_name): Change type of symname,sym_text,
11464 text,word parameters from char * to const char *.
11465 (completion_list_objc_symbol): Change type of sym_text,
11466 text,word parameters from char * to const char *.
11467 * ada-lang.c (find_struct_field): Change type of name parameter
11468 from char * to const char *.
11469 (encoded_ordered_before): Similarly for N0,N1 parameters.
11470 (old_renaming_is_invisible): Similarly for function_name parameter.
11471 (ada_type_name): Change result type from char * to const char *.
11472 All callers updated.
11473 * ada-lang.h (ada_type_name): Update.
11474 * buildsym.c (hashname): Change type of name parameter
11475 from char * to const char *.
11476 * buildsym.h (hashname): Update.
11477 * dbxread.c (end_psymtab): Change type of include_list parameter
11478 from char ** to const char **.
11479 * dwarf2read.c (determine_prefix): Change result type
11480 from char * to const char *. All callers updated.
11481 * f-lang.c (find_common_for_function): Change type of name, funcname
11482 parameters from char * to const char *.
11483 * f-lang.c (find_common_for_function): Update.
11484 * f-valprint.c (list_all_visible_commons): Change type of funcname
11485 parameters from char * to const char *.
11486 * gdbarch.sh (static_transform_name): Change type of name parameter
11487 and result from char * to const char *.
11488 * gdbarch.c: Regenerate.
11489 * gdbarch.h: Regenerate.
11490 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
11491 of name parameter from char * to const char *.
11492 * jv-lang.c (java_primitive_type_from_name): Ditto.
11493 (java_demangled_signature_length): Similarly for signature parameter.
11494 (java_demangled_signature_copy): Ditto.
11495 (java_demangle_type_signature): Ditto.
11496 * jv-lang.h (java_primitive_type_from_name): Update.
11497 (java_demangle_type_signature): Update.
11498 * objc-lang.c (specialcmp): Change type of a,b parameters
11499 from char * to const char *.
11500 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
11501 from char * to const char *. All callers updated.
11502 * p-lang.h (is_pascal_string_type): Update.
11503 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
11504 of name parameter from char * to const char *.
11505 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
11506 * utils.c (fprintf_symbol_filtered): Ditto.
11507 * defs.h (fprintf_symbol_filtered): Update.
11508 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
11509 * stabsread.h (end_psymtab): Update.
11510 * stack.c (find_frame_funname): Change type of funname parameter
11511 from char ** to const char **.
11512 * stack.h (find_frame_funname): Update.
11513 * typeprint.c (type_print): Change type of varstring parameter
11514 from char * to const char *.
11515 * value.h (type_print): Update.
11516 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
11517 from char * to const char *. All callers updated.
11518 (xcoff_end_psymtab): Change type of include_list parameter
11519 from char ** to const char **. All callers updated.
11520 (swap_sym): Similarly for name parameter. All callers updated.
11521 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
11522 Use xstrdup.
11523 (process_coff_symbol): Use xstrdup.
11524 * stabsread.c (stabs_method_name_from_physname): Renamed from
11525 update_method_name_from_physname. Change result type from void
11526 to char *. All callers updated.
11527 (read_member_functions): In has_destructor case, store name in objfile
11528 obstack instead of malloc space. In !has_stub case, fix mem leak.
11529
5579a92e
TT
115302012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
11531
11532 * configure: Rebuild.
11533 * configure.ac: Put -L../bfd and -L../libiberty at the front of
11534 LDFLAGS.
11535
9058f767
KB
115362012-02-03 Kevin Buettner <kevinb@redhat.com>
11537
11538 * configure.tgt (rl78-*-elf): New target.
11539 * rl78-tdep.c: New file.
11540
5b37825d
PW
115412012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11542
11543 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
11544 and continue the loop. Add QUIT statement.
11545
e009ee71
TT
115462012-02-03 Tom Tromey <tromey@redhat.com>
11547
11548 PR gdb/13596:
11549 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
11550 bfd_lookup_symbol_from_symtab.
11551 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
11552 gdb_bfd_lookup_symbol_from_symtab.
11553
f7e44f65
JB
115542012-02-03 Joel Brobecker <brobecker@adacore.com>
11555
11556 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
11557 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
11558 symbol. Add assertion that sym2 is never NULL.
11559
2c02bd72
DE
115602012-02-02 Doug Evans <dje@google.com>
11561
11562 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
11563 "name" parameter to const char ** from char **. All callers updated.
11564 (find_pc_partial_function): Ditto.
11565 (cache_pc_function_name): Change type to const char * from char *.
11566 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
11567 (find_pc_partial_function): Update.
11568 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
11569 type of "name" parameter to const char * from char *.
11570 All uses updated.
11571 * arch-utils.c (generic_in_solib_return_trampoline): Change
11572 type of "name" parameter to const char * from char *.
11573 * arch-utils.h (generic_in_solib_return_trampoline): Update.
11574 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
11575 type of "name" parameter to const char * from char *.
11576 * gdbarch.sh (in_solib_return_trampoline): Ditto.
11577 * gdbarch.c: Regenerate.
11578 * gdbarch.h: Regenerate.
11579 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
11580 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
11581 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
11582 type of "name" parameter to const char * from char *.
11583 * skip.c (skip_function_pc): Ditto.
11584 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
11585 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
11586 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
11587 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
11588 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
11589 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
11590 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
11591 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
11592 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
11593
e886a173
PA
115942012-02-02 Pedro Alves <palves@redhat.com>
11595
11596 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
11597 the current inferior has no execution. Make sure the current
11598 remote process matches gdb's current inferior.
11599
c709a7c2
TT
116002012-02-02 Tom Tromey <tromey@redhat.com>
11601
11602 PR gdb/13405:
11603 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
11604 read-only memory.
11605
f149aabd
TT
116062012-02-02 Tom Tromey <tromey@redhat.com>
11607
11608 PR gdb/9307:
11609 * symtab.c (lookup_language_this): Set block_found.
11610
03bef283
TT
116112012-02-01 Tom Tromey <tromey@redhat.com>
11612
11613 PR gdb/13431:
11614 * jit.c (struct jit_inferior_data): Rewrite.
11615 (struct jit_objfile_data): New.
11616 (get_jit_objfile_data): New function.
11617 (add_objfile_entry): Update.
11618 (jit_read_descriptor): Return int. Replace descriptor_addr
11619 argument with inf_data. Update. Don't call error.
11620 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
11621 descriptor here.
11622 (jit_inferior_init): Don't look up descriptor. Don't call error.
11623 (jit_reset_inferior_data_and_breakpoints)
11624 (jit_inferior_created_observer): Remove.
11625 (jit_inferior_exit_hook): Update.
11626 (jit_executable_changed_observer): Remove.
11627 (jit_event_handler): Update.
11628 (free_objfile_data): Reset inferior data if needed.
11629 (_initialize_jit): Update.
11630
f0bbc364
TT
116312012-02-01 Tom Tromey <tromey@redhat.com>
11632
11633 * jit.c (bfd_open_from_target_memory): Move higher in file.
11634
47c1316c
TG
116352012-02-01 Tristan Gingold <gingold@adacore.com>
11636
11637 * libunwind-frame.c (libunwind_load): Display message if dlopen
11638 failed.
11639
8e704927
GB
116402012-02-01 Gary Benson <gbenson@redhat.com>
11641
09c7a31f 11642 * symtab.h (symbol_found_callback_ftype): New typedef.
8e704927
GB
11643 (iterate_over_symbols): Use the above.
11644 * symtab.c (iterate_over_symbols): Likewise.
11645 * language.h (language_defn->la_iterate_over_symbols): Likewise.
11646 * ada-lang.c (ada_iterate_over_symbols): Likewise.
11647 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
11648 (iterate_name_matcher): Document return values.
11649 (collect_one_symbol): Likewise.
11650 (collect_function_symbols): Likewise.
11651 (collect_symbols): Likewise.
11652
d9680e73
TT
116532012-02-01 Tom Tromey <tromey@redhat.com>
11654
11655 * ada-lang.c (resolve_subexp): Update.
11656 (ada_lookup_symbol_list): Add 'full_search' argument.
11657 (ada_iterate_over_symbols): Pass 0 as full_search argument to
11658 ada_lookup_symbol_list.
11659 (ada_lookup_encoded_symbol): Update.
11660 (get_var_value): Update.
11661 * ada-exp.y (block_lookup): Update.
11662 (write_var_or_type): Update.
11663 (write_name_assoc): Update.
11664 * ada-lang.h (ada_lookup_symbol_list): Update.
11665
72e1143f
TT
116662012-01-31 Tom Tromey <tromey@redhat.com>
11667
11668 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
11669 comment.
11670
ab2d2ad3
DE
116712012-01-31 Doug Evans <dje@google.com>
11672
11673 * symtab.h: Remove outdated comment.
e9111bf7 11674 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
ab2d2ad3 11675
bc884eba
JB
116762012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
11677
11678 Fix build error in Darwin port.
11679 * i386-darwin-nat.c: Include i386-nat.h.
11680
8fc3fc34
TT
116812012-01-30 Tom Tromey <tromey@redhat.com>
11682
11683 PR breakpoints/13568:
11684 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
11685 argument. Check for recursive includes.
11686 (dwarf_decode_macros): Create an include hash.
11687
5d853008
ME
116882012-01-30 Michael Eager <eager@eagercon.com>
11689
11690 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
11691 * ppc-linux-tdep.c: Include glibc-tdep.h.
ab2d2ad3 11692 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
5d853008
ME
11693 (powerpc_linux_in_plt_stub): New function.
11694 (powerpc_linux_in_dynsym_resolve_code): New function.
11695 (ppc_skip_trampoline_code): New function.
11696 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
11697 Use glibc_skip_solib_resolver.
11698
40478521
JK
116992012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
11700
11701 Code cleanup: Make 1440 bytes of data segment read-only.
11702 * arch-utils.c (endian_enum): Make it const char *const [].
11703 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
11704 Likewise.
11705 * breakpoint.c (always_inserted_enums): Likewise.
11706 * cli/cli-cmds.c (script_ext_enums): Likewise.
11707 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
11708 enumlist parameter const char *const *.
11709 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
11710 const char *const *.
11711 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
11712 parameter const char *const *.
11713 * cris-tdep.c (cris_modes): Make it const char *const [].
11714 * filesystem.c (target_file_system_kinds): Likewise.
11715 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
11716 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
11717 (can_use_displaced_stepping_enum, scheduler_enums)
11718 (exec_direction_names): Likewise.
11719 * language.c (_initialize_language): Make the type_or_range_names and
11720 case_sensitive_names variables const char *const [].
11721 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
11722 * python/python.c (python_excp_enums): Likewise.
11723 * remote.c (interrupt_sequence_modes): Likewise.
11724 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
11725 * serial.c (logbase_enums): Likewise.
11726 * sh-tdep.c (sh_cc_enum): Likewise.
11727 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
11728 Likewise.
11729 * symtab.c (multiple_symbols_modes): Likewise.
11730 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
11731 Likewise.
11732 * utils.c (internal_problem_modes): Likewise.
11733
b3b8b934
JK
117342012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
11735
11736 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
11737 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
11738 result.
11739
8c85a4e2
DE
117402012-01-27 Doug Evans <dje@google.com>
11741
11742 * configure.ac (with_python): Fix absolute path handling for win32.
11743 * configure: Regenerate.
11744
78d8b4d7
DE
117452012-01-26 Doug Evans <dje@google.com>
11746
eca864fe
DE
11747 * symtab.c: Whitespace cleanup, no code changes.
11748
7e082072
DE
11749 * symtab.c (lookup_symbol_in_language): Improve comment.
11750 (lookup_symbol_aux): Fix comment.
11751
7dc25483
DE
11752 * psymtab.c (add_psymbol_to_list): Result is now "void".
11753 * psympriv.h (add_psymbol_to_list): Update.
11754
78d8b4d7
DE
11755 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
11756
4c63965b
JK
117572012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
11758
11759 Do not open script filenames twice.
11760 * cli/cli-cmds.c (source_script_from_stream): Pass to
11761 source_python_script also STREAM.
11762 * python/py-auto-load.c (source_section_scripts): Pass to
11763 source_python_script_for_objfile also STREAM.
11764 (auto_load_objfile_script): Pass to source_python_script_for_objfile
11765 also INPUT.
11766 * python/python-internal.h (source_python_script_for_objfile): New
11767 parameter file, rename parameter file to filename.
11768 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
11769 instead if !_WIN32. Update the function comment.
11770 (source_python_script, source_python_script_for_objfile)
11771 (source_python_script): New parameter file, rename parameter file to
11772 filename. Pass FILENAME to python_run_simple_file.
11773 * python/python.h (source_python_script): New parameter file, rename
11774 parameter file to filename.
11775
88f38a04
PA
117762012-01-26 Pedro Alves <palves@redhat.com>
11777
11778 * corelow.c (core_has_fake_pid): Delete.
11779 (core_close): Delete references to `core_has_fake_pid'.
11780 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
11781 (core_open): Delete references to `core_has_fake_pid'.
11782 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
11783 the removed global.
11784
e078317b
JB
117852012-01-26 Joel Brobecker <brobecker@adacore.com>
11786
11787 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
11788 Remove language parameter from name_matcher. Adjust the comment.
11789 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
11790 Remove language parameter.
11791 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
11792 * linespec.c (iterate_name_matcher): Likewise.
11793 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
11794 name_matcher. Adjust call accordingly.
11795 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
11796 (maintenance_check_symtabs): Adjust type of parameter "fun".
11797 * psymtab.h (maintenance_check_symtabs): Likewise.
11798
74ccd7f5
JB
117992012-01-26 Joel Brobecker <brobecker@adacore.com>
11800
11801 * language.h (symbol_name_match_p_ftype): New typedef.
11802 (struct language_defn): Replace field la_symbol_name_compare
11803 by la_get_symbol_name_match_p.
11804 * ada-lang.c (ada_get_symbol_name_match_p): New function.
11805 (ada_language_defn): Use it.
11806 * linespec.c (struct symbol_matcher_data): New type.
11807 (iterate_name_matcher): Rewrite.
11808 (iterate_over_all_matching_symtabs): Pass a pointer to
11809 a symbol_matcher_data struct to expand_symtabs_matching
11810 instead of just the lookup name.
11811 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11812 opencl-lang.c, p-lang.c, language.c: Delete field
11813 la_symbol_name_compare, and replace by NULL for new field
11814 la_get_symbol_name_match_p.
11815 * symfile.h (struct quick_symbol_functions): Update comment.
11816
5d268276
TT
118172012-01-25 Tom Tromey <tromey@redhat.com>
11818
11819 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
11820 dereferencing.
11821
edcc5120
TT
118222012-01-24 Tom Tromey <tromey@redhat.com>
11823
11824 PR symtab/12406:
11825 * solib.c (update_solib_list): Update the program space's
11826 added_solibs and deleted_solibs fields.
11827 * progspace.h (struct program_space) <added_solibs,
11828 deleted_solibs>: New fields.
11829 (clear_program_space_solib_cache): Declare.
11830 * progspace.c (release_program_space): Call
11831 clear_program_space_solib_cache.
11832 (clear_program_space_solib_cache): New function.
11833 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
11834 bpstat_stop_status. Use handle_solib_event.
11835 * breakpoint.c: Include gdb_regex.h.
11836 (print_solib_event): New function.
11837 (bpstat_print): Use print_solib_event.
11838 (bpstat_stop_status): Add special case for bp_shlib_event.
11839 (handle_solib_event): New function.
11840 (bpstat_what): Use handle_solib_event.
11841 (struct solib_catchpoint): New.
11842 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
11843 (breakpoint_hit_catch_solib, check_status_catch_solib)
11844 (print_it_catch_solib, print_one_catch_solib)
11845 (print_mention_catch_solib, print_recreate_catch_solib): New
11846 functions.
11847 (catch_solib_breakpoint_ops): New global.
11848 (catch_load_or_unload, catch_load_command_1)
11849 (catch_unload_command_1): New functions.
11850 (internal_bkpt_check_status): Add special case for
11851 bp_shlib_event.
11852 (internal_bkpt_print_it): Use print_solib_event.
11853 (initialize_breakpoint_ops): Initialize
11854 catch_solib_breakpoint_ops.
11855 (_initialize_breakpoint): Register "catch load" and "catch
11856 unload".
11857 * breakpoint.h (handle_solib_event): Declare.
11858 * NEWS: Add entry for "catch load" and "catch unload".
11859
fa864999
TT
118602012-01-24 Tom Tromey <tromey@redhat.com>
11861
11862 * ada-lang.c: Include gdb_vecs.h.
11863 * charset.c: Include gdb_vecs.h.
11864 * tracepoint.h: Include gdb_vecs.h.
11865 * gdb_vecs.h: New file.
11866
f90263c1
TT
118672012-01-24 Pedro Alves <pedro@codesourcery.com>
11868
11869 * breakpoint.c (breakpoint_hit_catch_fork)
11870 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
11871 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
11872 * infrun.c (inferior_has_forked, inferior_has_vforked)
11873 (inferior_has_execd, inferior_has_called_syscall): Delete.
11874 (handle_syscall_event): Get syscall_number from the execution
11875 control state's wait status.
11876 (wait_for_inferior): Don't clear syscall_number.
11877
09ac7c10
TT
118782012-01-24 Pedro Alves <palves@redhat.com>
11879
11880 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
11881 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
11882 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
11883 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
11884 `ws' parameter.
11885 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
11886 false for events other than TARGET_SIGNAL_TRAP.
11887 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
11888 Add `ws' parameter.
11889 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
11890 events other than TARGET_SIGNAL_TRAP.
11891 (tracepoint_breakpoint_hit): Add `ws' parameter.
11892 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
11893 parameter.
11894 (bpstat_stop_status): Same.
11895 (pc_at_non_inline_function): Same.
11896 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
11897 to pass the current event's waitstatus to bpstat_stop_status
11898 and pc_at_non_inline_function.
11899
86eb7e95
JK
119002012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
11901
11902 Code cleanup.
11903 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
11904 Update the function comment for it.
11905 (source_script_with_search): Call make_cleanup_fclose for STREAM.
11906 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
11907 for STREAM.
11908
a9b3a50f
PA
119092012-01-24 Pedro Alves <palves@redhat.com>
11910
11911 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
11912 outside `bs->stop' block.
11913 (bpstat_what): Rework bp_shlib_event handling.
11914 (internal_bkpt_check_status): If the breakpoint is a
11915 bp_shlib_event, then set bs->stop and bs->print if
11916 stop_on_solib_events is set.
11917
53fe1783
GB
119182012-01-24 Gary Benson <gbenson@redhat.com>
11919
11920 Delete #if 0'd out code.
11921 * stack.c (print_frame_label_vars): Remove.
11922 (catch_info): Likewise.
11923 (_initialize_stack): Remove "info catch" command.
11924 * NEWS: Mention the above.
11925
49c62f2e
PA
119262012-01-24 Pedro Alves <palves@redhat.com>
11927
11928 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
11929 it.
11930 (remote_notice_new_inferior): If the remote end doesn't support
11931 the multiprocess extensions, then the PID is fake.
11932 (add_current_inferior_and_thread): New.
11933 (remote_start_remote): Use it.
11934 (extended_remote_attach_1): Adjust.
11935 (extended_remote_create_inferior_1): Use
11936 add_current_inferior_and_thread.
11937
d0d8b0c6
JK
119382012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
11939
11940 Fix watchpoints to be specific for each inferior.
11941 * breakpoint.c (watchpoint_in_thread_scope): Verify also
11942 current_program_space.
11943 * i386-nat.c (i386_inferior_data_cleanup): New.
11944 (i386_inferior_data_get): Replace variable inf_data_local by an
11945 inferior_data call.
11946 (i386_use_watchpoints): Initialize i386_inferior_data.
11947 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
11948 specific iterate_over_lwps.
11949
4403d8e9
JK
119502012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
11951
11952 Fix watchpoints across inferior fork.
11953 * amd64-linux-nat.c (update_debug_registers_callback): Update the
11954 comment for linux_nat_iterate_watchpoint_lwps.
11955 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11956 linux_nat_iterate_watchpoint_lwps.
11957 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
11958 * i386-linux-nat.c (update_debug_registers_callback): Update the
11959 comment for linux_nat_iterate_watchpoint_lwps.
11960 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11961 linux_nat_iterate_watchpoint_lwps.
11962 (i386_linux_prepare_to_resume): New comment on Linux kernel.
11963 * i386-nat.c: Include inferior.h.
11964 (dr_mirror): Remove.
11965 (i386_inferior_data, struct i386_inferior_data)
11966 (i386_inferior_data_get): New.
11967 (i386_debug_reg_state): Use i386_inferior_data_get.
11968 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
11969 (i386_insert_watchpoint, i386_remove_watchpoint)
11970 (i386_stopped_data_address, i386_insert_hw_breakpoint)
11971 (i386_remove_hw_breakpoint): New variable state, use
11972 i386_debug_reg_state instead of DR_MIRROR.
11973 * linux-nat.c (delete_lwp): New declaration.
11974 (num_lwps): Move here from downwards.
11975 (delete_lwp_cleanup): New.
11976 (linux_child_follow_fork): Create new child_lp, call
11977 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
11978 PTRACE_DETACH.
11979 (num_lwps): Move upwards.
11980 (linux_nat_iterate_watchpoint_lwps): New.
11981 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
11982 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
11983
2992c9a7 119842012-01-24 Joel Brobecker <brobecker@adacore.com>
11985
11986 GDB 7.4 released.
11987
e360902b
PA
119882012-01-23 Pedro Alves <palves@redhat.com>
11989
11990 * top.c (caution): Rename to ...
11991 (confirm): ... this.
11992 (show_caution): Rename to ...
11993 (show_confirm): ... this.
11994 (quit_cover): Adjust.
11995 (init_main): Adjust.
11996 * top.h (caution): Rename to ...
11997 (confirm): ... this.
11998 * utils.c (internal_vproblem, defaulted_query): Adjust.
11999
050a2e1d
PA
120002012-01-23 Pedro Alves <palves@redhat.com>
12001
12002 * top.c (caution): Update comment.
12003 (execute_command): Don't consider the current value of `caution'.
12004
77a35dd8
JK
120052012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
12006
12007 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
12008
a71b5a38
UW
120092012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
12010
12011 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
12012 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
12013 * target.c (target_fileio_pwrite): Remove buffer address from
12014 debug output.
12015 (target_fileio_pread): Likewise.
12016
d99bd577
UW
120172012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
12018
12019 * NEWS: Document remote "info proc" and "generate-core-file".
12020
35c2fab7
UW
120212012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
12022
12023 * gdbarch.sh (find_memory_regions): New callback.
12024 * gdbarch.c, gdbarch.h: Regenerate.
12025
12026 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
12027 callback before falling back to target method.
12028
12029 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
12030 (linux_target_install_ops): No longer install it.
12031
12032 * linux-tdep.c (linux_find_memory_regions): New function.
12033 (linux_init_abi): Install it.
12034
6432734d
UW
120352012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
12036
12037 * gdbarch.sh (make_corefile_notes): New architecture callback.
12038 * gdbarch.c: Regenerate.
12039 * gdbarch.h: Likewise.
12040
12041 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
12042 before target_make_corefile_notes. If NULL is returned, the
12043 target does not support core file generation.
12044
12045 * linux-nat.c: Include "linux-tdep.h".
12046 (find_signalled_thread, find_stop_signal): Remove.
12047 (linux_nat_do_thread_registers): Likewise.
12048 (struct linux_nat_corefile_thread_data): Likewise.
12049 (linux_nat_corefile_thread_callback): Likewise.
12050 (iterate_over_spus): Likewise.
12051 (struct linux_spu_corefile_data): Likewise.
12052 (linux_spu_corefile_callback): Likewise.
12053 (linux_spu_make_corefile_notes): Likewise.
12054 (linux_nat_collect_thread_registers): New function.
12055 (linux_nat_make_corefile_notes): Replace contents by call to
12056 linux_make_corefile_notes passing linux_nat_collect_thread_registers
12057 as native-only callback.
12058
12059 * linux-tdep.h: Include "bfd.h".
12060 (struct regcache): Add forward declaration.
12061 (linux_collect_thread_registers_ftype): New typedef.
12062 (linux_make_corefile_notes): Add prototype.
12063 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
12064 "regset.h", and "elf-bfd.h".
12065 (find_signalled_thread, find_stop_signal): New functions.
12066 (linux_spu_make_corefile_notes): Likewise.
12067 (linux_collect_thread_registers): Likewise.
12068 (struct linux_corefile_thread_data): New data structure.
12069 (linux_corefile_thread_callback): New funcion.
12070 (linux_make_corefile_notes): Likewise.
12071 (linux_make_corefile_notes_1): Likewise.
12072 (linux_init_abi): Install it.
12073
3030c96e
UW
120742012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
12075
12076 * gdbarch.sh (info_proc): New callback.
12077 * gdbarch.c, gdbarch.h: Regenerate.
12078
12079 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
12080 before falling back to the target info_proc callback.
12081
12082 * linux-nat.c: Do not include "cli/cli-utils.h".
12083 (linux_nat_info_proc): Remove.
12084 (linux_target_install_ops): No longer install it.
12085
12086 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
12087 (read_mapping): New function.
12088 (linux_info_proc): Likewise.
12089 (linux_init_abi): Install it.
12090
145b16a9
UW
120912012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
12092
12093 * defs.h (enum info_proc_what): Moved here from linux-nat.c
12094 * infcmd.c: (info_proc_cmd_1): New function.
12095 (info_proc_cmd): New function, moved here from equivalent routine
12096 orignally in linux-nat.c.
12097 (info_proc_cmd_mappings): Likewise.
12098 (info_proc_cmd_stat): Likewise.
12099 (info_proc_cmd_status): Likewise.
12100 (info_proc_cmd_cwd): Likewise.
12101 (info_proc_cmd_cmdline): Likewise.
12102 (info_proc_cmd_exe): Likewise.
12103 (info_proc_cmd_all): Likewise.
12104 (_initialize_infcmd): Install "info proc" command and subcommands.
12105
12106 * target.h (struct target_ops): Add to_info_proc.
12107 (target_info_proc): Add prototype.
12108 * target.c (target_info_proc): New function.
12109
12110 * procfs.c (procfs_info_proc): Add prototype.
12111 (info_proc_cmd): Rename into ...
12112 (procfs_info_proc): ... this. Update argument types as appropriate
12113 for a to_info_proc implementation. Handle "what" argument.
12114 (procfs_target): Install procfs_info_proc.
12115 (_initialize_procfs): No longer install "info proc" command.
12116
12117 * linux-nat.c: (enum info_proc_what): Remove.
12118 (linux_nat_info_proc_cmd_1): Rename into ...
12119 (linux_nat_info_proc): ... this. Update argument types as appropriate
12120 for a to_info_proc implementation.
12121 (linux_nat_info_proc_cmd): Remove.
12122 (linux_nat_info_proc_cmd_mappings): Likewise.
12123 (linux_nat_info_proc_cmd_stat): Likewise.
12124 (linux_nat_info_proc_cmd_status): Likewise.
12125 (linux_nat_info_proc_cmd_cwd): Likewise.
12126 (linux_nat_info_proc_cmd_cmdline): Likewise.
12127 (linux_nat_info_proc_cmd_exe): Likewise.
12128 (linux_nat_info_proc_cmd_all): Likewise.
12129 (linux_target_install_ops): Install linux_nat_info_proc.
12130 (_initialize_linux_nat): No longer install "info proc" command
12131 and subcommands.
12132
b9e7b9c3
UW
121332012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
12134
12135 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
12136 * config.in, configure: Regenerate.
12137
12138 * target.h (struct target_ops): Add to_fileio_readlink.
12139 (target_fileio_readlink): Add prototype.
12140 * target.c (target_fileio_readlink): New function.
12141
12142 * inf-child.c: Conditionally include <sys/param.h>.
12143 (inf_child_fileio_readlink): New function.
12144 (inf_child_target): Install it.
12145
12146 * remote.c (PACKET_vFile_readlink): New enum value.
12147 (remote_hostio_readlink): New function.
12148 (init_remote_ops): Install it.
12149 (_initialize_remote): Handle vFile:readlink packet type.
12150
7313baad
UW
121512012-01-20 Pedro Alves <palves@redhat.com>
12152 Ulrich Weigand <ulrich.weigand@linaro.org>
12153
12154 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
12155 * config.in, configure: Regenerate.
12156
12157 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
12158 to_fileio_pread, to_fileio_close, to_fileio_unlink.
12159 (target_fileio_open): Add prototype.
12160 (target_fileio_pwrite): Likewise.
12161 (target_fileio_pread): Likewise.
12162 (target_fileio_close): Likewise.
12163 (target_fileio_unlink): Likewise.
12164 (target_fileio_read_alloc): Likewise.
12165 (target_fileio_read_stralloc): Likewise.
12166
12167 * target.c: Include "gdb/fileio.h".
12168 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
12169 (default_fileio_target): New function.
12170 (target_fileio_open): Likewise.
12171 (target_fileio_pwrite): Likewise.
12172 (target_fileio_pread): Likewise.
12173 (target_fileio_close): Likewise.
12174 (target_fileio_unlink): Likewise.
12175 (target_fileio_close_cleanup): Likewise.
12176 (target_fileio_read_alloc_1): Likewise.
12177 (target_fileio_read_alloc): Likewise.
12178 (target_fileio_read_stralloc): Likewise.
12179
12180 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
12181 <fcntl.h>, and <unistd.h>.
12182 (inf_child_fileio_open_flags_to_host): New function.
12183 (inf_child_errno_to_fileio_error): Likewise.
12184 (inf_child_fileio_open): Likewise.
12185 (inf_child_fileio_pwrite): Likewise.
12186 (inf_child_fileio_pread): Likewise.
12187 (inf_child_fileio_close): Likewise.
12188 (inf_child_fileio_unlink): Likewise.
12189 (inf_child_target): Install to_fileio routines.
12190
12191 * remote.c (init_remote_ops): Install to_fileio routines.
12192
901f9912
UW
121932012-01-20 Pedro Alves <palves@redhat.com>
12194 Ulrich Weigand <ulrich.weigand@linaro.org>
12195
12196 * remote.c (remote_multi_process_p): Only check for multi-process
12197 protocol feature, do not check for extended protocol.
12198 (remote_supports_multi_process): Check for extended protocol here.
12199 (set_general_process): Likewise.
12200 (extended_remote_kill): Likewise.
12201 (remote_pid_to_str): Likewise.
12202 (remote_query_supported): Always query multiprocess mode.
12203
e714e1bf
UW
122042012-01-20 Pedro Alves <palves@redhat.com>
12205 Ulrich Weigand <ulrich.weigand@linaro.org>
12206
12207 * inferior.h (struct inferior): Add fake_pid_p.
12208 * inferior.c (exit_inferior_1): Clear fake_pid_p.
12209 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
12210 magic_null_ptid since the remote side doesn't provide a real PID.
12211
50897289
TT
122122012-01-19 Tom Tromey <tromey@redhat.com>
12213
12214 * NEWS: Combine the two Python sections.
12215
1afc2033
JK
122162012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
12217
12218 * target.h (target_close): Update comment on the target's unpush state.
12219
305436e0
PA
122202012-01-19 Pedro Alves <palves@redhat.com>
12221
12222 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
12223 linux_nat_async directly instead of going through the target
12224 vector.
12225 * target.c (unpush_target): Close target after unpushing it, not
12226 before.
12227
49323895
GB
122282012-01-19 Gary Benson <gbenson@redhat.com>
12229
12230 * mdebugread.c (sort_blocks): Replace integer constants with ones
12231 derived from FIRST_LOCAL_BLOCK.
12232
1db33378
PP
122332012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
12234 Jan Kratochvil <jan.kratochvil@redhat.com>
12235
12236 PR gdb/9538
12237 * symfile.c (find_separate_debug_file): New function.
12238 (terminate_after_last_dir_separator): Likewise.
12239 (find_separate_debug_file_by_debuglink): Also try realpath.
12240 * configure.ac (AC_CHECK_FUNCS): Add lstat.
12241 * configure: Regenerate.
12242 * config.in: Regenerate.
12243
f83d8a90
DE
122442012-01-18 Doug Evans <dje@google.com>
12245
12246 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
12247 (main.o): Remove rule.
12248 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
12249 (--with-sysroot): Rewrite.
12250 * configure: Regenerate.
12251 * config.in: Regenerate.
12252
2dbca4d6
SDJ
122532012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
12254
12255 * parse.c (initialize_expout): New function.
12256 (reallocate_expout): Likewise.
12257 (parse_exp_in_context): Use `initialize_expout' and
12258 `reallocate_expout' when appropriate.
12259
0695b514
PA
122602012-01-18 Pedro Alves <palves@redhat.com>
12261
12262 * record.c (struct record_breakpoint, record_breakpoint_p)
12263 (record_breakpoints): New.
12264 (record_insert_breakpoint, record_remove_breakpoint): Manage
12265 record breakpoints list. Only remove breakpoints from the
12266 inferior if they had been inserted there in the first place.
12267
136e1c30
DE
122682012-01-17 Doug Evans <dje@google.com>
12269
12270 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
12271 if we know we don't have a file name to look for.
12272
c0bf857d
PA
122732012-01-17 Pedro Alves <palves@redhat.com>
12274
12275 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
12276 the frame's stop reason is UNWIND_UNAVAILABLE.
12277
b486de60
JK
122782012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
12279
12280 Fix compilation error.
12281 * m2-exp.y (yyerror): Use ANSI C prototype.
12282
d04550a6
SDJ
122832012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
12284
12285 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
12286 (growbuf_by_size): Likewise.
12287 (yyerror): Likewise.
12288 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
12289 (modblock): Remove variable (was #if 0'ed).
12290 (parse_number): Convert prototype from K&R to ANSI C.
12291 (yyerror): Likewise.
12292 * objc-exp.y (parse_number): Likewise.
12293 (yyerror): Likewise.
12294 (yylex): Remove #if 0'ed code.
12295 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
12296 (yyerror): Likewise.
12297
4aac40c8
TT
122982012-01-16 Tom Tromey <tromey@redhat.com>
12299
12300 * NEWS: Add item.
12301 * symtab.h (compare_filenames_for_search): Declare.
12302 * symtab.c (compare_filenames_for_search): New function.
12303 (iterate_over_some_symtabs): Use it.
12304 * symfile.h (struct quick_symbol_functions)
12305 <map_symtabs_matching_filename>: Change spec.
12306 * psymtab.c (partial_map_symtabs_matching_filename): Use
12307 compare_filenames_for_search. Update for new spec.
12308 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
12309 compare_filenames_for_search. Update for new spec.
12310 * breakpoint.c (clear_command): Use compare_filenames_for_search.
12311
cafec441
TT
123122012-01-16 Tom Tromey <tromey@redhat.com>
12313
12314 PR python/13281:
12315 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
12316 (struct main_type) <flag_flag_enum>: New field.
12317 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
12318 * NEWS: Add entries.
12319 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
12320 enums.
12321 * python/lib/gdb/printing.py (_EnumInstance): New class.
12322 (FlagEnumerationPrinter): Likewise.
12323
983af33b
SDJ
123242012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
12325
12326 * breakpoint.c (create_sals_from_address_default): New function.
12327 (create_breakpoints_sal_default): Likewise.
12328 (decode_linespec_default): Likewise.
12329 (is_marker_spec): Removed.
12330 (strace_marker_p): New function.
12331 (init_breakpoint_sal): Using `strace_marker_p' instead of
12332 `is_marker_spec'.
12333 (create_breakpoint): Call method `create_sals_from_address' from
12334 breakpoint_ops, replacing code that created SALs conditionally
12335 on the type of the breakpoint. Call method `create_breakpoints_sal',
12336 replacing code that created breakpoints conditionally on the type
12337 wanted.
12338 (base_breakpoint_create_sals_from_address): New function.
12339 (base_breakpoint_create_breakpoints_sal): Likewise.
12340 (base_breakpoint_decode_linespec): Likewise.
12341 (base_breakpoint_ops): Add methods
12342 `base_breakpoint_create_sals_from_address',
12343 `base_breakpoint_create_breakpoints_sal' and
12344 `base_breakpoint_decode_linespec'.
12345 (bkpt_create_sals_from_address): New function.
12346 (bkpt_create_breakpoints_sal): Likewise.
12347 (bkpt_decode_linespec): Likewise.
12348 (tracepoint_create_sals_from_address): Likewise.
12349 (tracepoint_create_breakpoints_sal): Likewise.
12350 (tracepoint_decode_linespec): Likewise.
12351 (strace_marker_create_sals_from_address): Likewise.
12352 (strace_marker_create_breakpoints_sal): Likewise.
12353 (strace_marker_decode_linespec): Likewise.
12354 (strace_marker_breakpoint_ops): New variable.
12355 (addr_string_to_sals): Remove `marker_spec'. Call method
12356 `decode_linespec' from breakpoint_ops, replacing code that decoded
12357 an address string into a SAL. Use `strace_marker_p' instead of
12358 `marker_spec'.
12359 (strace_command): Decide whether we are dealing with a static
12360 tracepoint with marker or not. Use the appropriate breakpoint_ops.
12361 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
12362 * breakpoint.h (linespec_result, linespec_sals): New forward
12363 declarations.
12364 (breakpoint_ops) <create_sals_from_address>,
12365 <create_breakpoints_sal>, <decode_linespec>: New methods.
12366
4795f398
DE
123672012-01-14 Doug Evans <dje@google.com>
12368
12369 * NEWS: Update text for "maint set python print-stack".
12370 It is deprecated in gdb 7.4 and deleted in 7.5.
12371
ee5106fe
EZ
123722012-01-13 Eli Zaretskii <eliz@gnu.org>
12373
12374 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
12375 including curses.h.
12376
b161e06f
JK
123772012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
12378
12379 * configure: Regenerate.
12380 * config.in: Regenerate.
12381
85254831
KS
123822012-01-12 Keith Seitz <keiths@redhat.com>
12383
12384 PR mi/10586
12385 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
12386 (ANONYMOUS_UNION_NAME): Define.
12387 (is_path_expr_parent): New function.
12388 (get_path_expr_parent): New function.
12389 (is_anonymous_child): New function.
12390 (create_child_with_value): If the child is anonymous and without
12391 a name, assign an object name to it.
12392 (c_describe_child): Use get_path_expr_parent to determine
12393 the parent expression.
12394 If there field represents an anonymous struct or union and
12395 has no name, set an appropriate display name and expression.
12396 (cplus_describe_child): Likewise.
12397
620fa63a
PA
123982012-01-12 Pedro Alves <palves@redhat.com>
12399
12400 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
12401 available when %ebp is found to be zero (outermost).
12402
2efa2c79
AT
124032012-01-11 Andreas Tobler <andreast@fgznet.ch>
12404
12405 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
12406 an internal gdb_static_assert.
12407 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
12408
88e7d25d
TT
124092012-01-11 Tom Tromey <tromey@redhat.com>
12410
12411 PR gdb/9598:
12412 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
12413 catch" and "catch throw".
12414
72384ba3
PH
124152012-01-11 Paul Hilfinger <hilfingr@adacore.com>
12416
12417 * blockframe.c (block_innermost_frame): Start search from selected
12418 frame, if present, or otherwise the current frame.
12419
12420 * c-exp.y (variable): Update innermost_block for
12421 'block COLONCOLON NAME' clause.
12422 * m2-exp.y (variable): Ditto.
12423 * objc-exp.y (variable): Ditto.
12424
065a711f
TT
124252012-01-10 Tom Tromey <tromey@redhat.com>
12426
12427 PR python/13199:
12428 * python/python.c (finish_python_initialization): Set sys.argv.
12429
f3f5162e
DE
124302012-01-10 Doug Evans <dje@google.com>
12431
12432 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
12433 "want_line_info". All callers updated.
12434 (dwarf_decode_lines_1): New function.
12435 (handle_DW_AT_stmt_list): Add function comment.
12436 New arg "want_line_info". All callers updated.
12437 (read_file_scope,read_type_unit_scope): Move comment from
12438 handle_DW_AT_stmt_list to here.
12439
9934703b
JK
124402012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
12441
12442 Fix regression after libiberty/ update for GCC PR 6057 and others.
12443 * c-exp.y (operator) <OPERATOR DELETE>
12444 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12445 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
12446 (make_builtin_type, make_name): New variable i, add gdb_assert.
12447 (operator) <OPERATOR NEW>: Update ARGS to 3.
12448 (operator) <OPERATOR DELETE>: Add trailing space.
12449 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
12450 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12451 * cp-support.c (cp_canonicalize_string): Check NULL from
12452 cp_comp_to_string, call warning and return.
12453
06b9f45f
JK
124542012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
12455
12456 Fix duplicate .o files after omitting libbfd.a.
12457 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
12458 (SFILES): Add corelow.c.
12459 (COMMON_OBS): Add corelow.o.
12460 (ALLDEPFILES): Remove corelow.c.
12461 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
12462 * config/alpha/alpha-osf3.mh: Likewise.
12463 * config/alpha/fbsd.mh: Likewise.
12464 * config/arm/nbsdaout.mh: Likewise.
12465 * config/arm/nbsdelf.mh: Likewise.
12466 * config/i386/i386gnu.mh: Likewise.
12467 * config/ia64/hpux.mh: Likewise.
12468 * config/ia64/linux.mh: Likewise.
12469 * config/m32r/linux.mh: Likewise.
12470 * config/m68k/linux.mh: Likewise.
12471 * config/mips/irix5.mh: Likewise.
12472 * config/mips/irix6.mh: Likewise.
12473 * config/pa/hpux.mh: Likewise.
12474 * config/pa/linux.mh: Likewise.
12475 * config/powerpc/aix.mh: Likewise.
12476 * config/sparc/linux.mh: Likewise.
12477 * config/sparc/linux64.mh: Likewise.
12478 * config/sparc/sol2.mh: Likewise.
12479 * config/vax/vax.mh: Likewise.
12480 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
12481 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
12482 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
12483 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
12484 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
12485 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
12486 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
12487 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
12488 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
12489 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
12490 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
12491 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
12492 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12493 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
12494 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
12495 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12496 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
12497 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
12498 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
12499 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
12500 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
12501 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
12502 corelow.o from gdb_target_obs.
12503 * corefile.c (core_target): Update the comment on NULL value.
12504 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
12505 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
12506 MATCHES. Drop YUMMY set on NULL.
12507 (core_close): Do not call exit_inferior_silent on zero PID. Do not
12508 reclaim CORE_DATA if it is already NULL.
12509
34365054
DE
125102012-01-09 Doug Evans <dje@google.com>
12511
12512 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
12513 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
12514
696166a3
KS
125152012-01-09 Keith Seitz <keiths@redhat.com>
12516
12517 * breakpoint.c (wrapper.h): Don't include.
12518
8e7b59a5
KS
125192012-01-09 Keith Seitz <keiths@redhat.com>
12520
12521 * Makefile.in (SFILES): Remove wrapper.c.
12522 (HFILES_NO_SRCDIR): Remove wrapper.h.
12523 (COMMON_OBS): Remove wrapper.o.
12524 * cli/cli-interp.c: Don't inlude wrapper.h.
12525 * corelow.c: Likewise.
12526 (core_open): Replace gdb_target_find_new_threads with
12527 TRY_CATCH around target_find_new_threads.
12528 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
12529 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
12530 * varobj.c (varobj_create): Likewise for parse_exp_1 and
12531 evaluate_expression.
12532 (varobj_set_value): Likewise for evaluate_expression and
12533 value_assign.
12534 (install_new_variable): Likewise for value_fetch_lazy.
12535 (adjust_value_for_child_access): Likewise for value_ind.
12536 (c_describe_child): Likewise for value_subscript and
12537 value_ind.
12538 (c_value_of_root): Likewise for evaluate_expression.
12539 * wrapper.c: Remove.
12540 * wrapper.h: Remove.
12541
1a4eeb98
DE
125422012-01-09 Doug Evans <dje@google.com>
12543
9ff913ba
DE
12544 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
12545 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
12546 "abfd" args with "section". All callers updated.
12547 Error checking code moved ...
12548 (error_check_comp_unit_head): ... here. New function.
12549 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
12550 Delete arg "abfd". New arg "type_offset". All callers updated.
12551 (create_debug_types_hash_table): Simplify by using
12552 read_and_check_type_unit_head.
12553
1a4eeb98
DE
12554 * parser-defs.h (namecopy): Delete.
12555 * parse.c (namecopy, namecopy_size): Move into copy_name.
12556
2e6af8c0
JK
125572012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
12558
12559 Partially fix duplicate .o files after omitting libbfd.a.
12560 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
12561 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12562 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
12563 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12564 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
12565 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
12566 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12567
9f2f828a
PA
125682012-01-09 Pedro Alves <palves@redhat.com>
12569
12570 * MAINTAINERS: Update my email address.
12571
4d72c0bc
DE
125722012-01-08 Doug Evans <dje@google.com>
12573
d467dd73
DE
12574 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
12575 n_type_units. Rename type_comp_units to all_type_units.
12576 All uses updated.
12577 (add_signatured_type_cu_to_table): Renamed from
12578 add_signatured_type_cu_to_list. All callers updated.
12579
4d72c0bc
DE
12580 * gdbtypes.h (struct cplus_struct_type): Delete member
12581 nfn_fields_total. All uses removed.
12582
21b2bd31
DE
125832012-01-06 Doug Evans <dje@google.com>
12584
12585 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
12586 to top of file.
12587 (dwarf2_find_comp_unit): Delete.
12588 (process_psymtab_comp_unit): Make result "void".
12589 Delete args buffer, info_ptr, buffer_size, and replace with
12590 "section". All callers updated.
12591 (dwarf2_build_psymtabs_hard): Simplify.
12592
bfd189b1
SDJ
125932012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
12594 Thiago Jung Bauermann <bauerman@br.ibm.com>
12595
12596 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
12597 before `struct gdb_exception'.
12598 * breakpoint.c (update_global_location_list_nothrow)
12599 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
12600 * cp-abi.c (value_rtti_type): Likewise.
12601 * cp-support.c (cp_validate_operator): Likewise.
12602 * infrun.c (insert_exception_resume_breakpoint)
12603 (check_exception_resume, keep_going): Likewise.
12604 * mi-interp.c (mi_breakpoint_created)
12605 (mi_breakpoint_modified): Likewise.
12606 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
12607 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
12608 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
12609
6b07635f
DE
126102012-01-05 Doug Evans <dje@google.com>
12611
0b30b85c
DE
12612 * dwarf2read.c (statement_prologue): Delete, unused.
12613
98714339
DE
12614 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
12615 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
12616
6b07635f
DE
12617 * dwarf2read.c (comp_unit_header): Delete, unused.
12618
761f4555
UW
126192012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
12620
12621 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
12622 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
12623
2ca0b532
PA
126242012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
12625
12626 * infrun.c (normal_stop): Don't skip calling the normal_stop
12627 observers if the thread was doing a multi-step, but stopped for
12628 some reason other than stepping.
12629
50aeff07
PA
126302012-01-05 Pedro Alves <alves.ped@gmail.com>
12631
12632 * cli/cli-decode.h: Add comments.
12633 (CMD_LIST_AMBIGUOUS): Moved to command.h
12634 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
12635 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
12636 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
12637 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
12638 (add_com, add_com_alias, add_info, add_info_alias)
12639 (complete_on_cmdlist, complete_on_enum, help_list): Remove
12640 declarations.
12641 * command.h: Add and adjust comments.
12642 (CMD_LIST_AMBIGUOUS): Moved here.
12643 (help_cmd, help_cmd_list): Delete declarations.
12644
5953832c
DE
126452012-01-04 Doug Evans <dje@google.com>
12646
e5fe5e75
DE
12647 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
12648 All callers updated.
12649 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
12650 Replace all arguments with "per_cu". All callers updated.
12651
28dee7f5
DE
12652 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
12653
23745b47
DE
12654 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
12655 New arg "per_cu". All callers updated.
12656
5953832c
DE
12657 Delete #if 0'd out code.
12658 * language.c (binop_result_type): Delete.
12659 (simple_type, ordered_type, same_type, integral_type): Delete.
12660 (numeric_type, character_type, string_type, boolean_type): Delete.
12661 (float_type, structured_type): Delete.
12662 * language.h: Update.
12663
0f5b7562
TT
126642012-01-04 Tom Tromey <tromey@redhat.com>
12665
12666 * python/py-value.c (valpy_binop): Initialize 'res_val'.
12667
78218f56
JB
126682012-01-04 Joel Brobecker <brobecker@adacore.com>
12669
12670 * corefile.c (close_exec_file): Delete.
12671 (reopen_exec_file): Remove commented out code that seems related
12672 to close_exec_file, which is being deleted here.
12673 * inferior.h (close_exec_file): Delete.
12674 * fork-child.c (fork_inferior): Remove call to fork_inferior.
12675
0fcd72ba
JB
126762012-01-04 Joel Brobecker <brobecker@adacore.com>
12677
12678 * ada-lang.c: #include "cli/cli-utils.h".
12679 (get_selections): Use skip_spaces.
12680 (ada_get_next_arg): Use skip_spaces and skip_to_space.
12681 (catch_ada_exception_command_split): Use skip_spaces.
12682 (ada_decode_assert_location): Likewise.
12683
1dabb4c4
JB
126842012-01-04 Joel Brobecker <brobecker@adacore.com>
12685
12686 * linespec.c (decode_line_internal): Check for C++ or Java
12687 compound constructs only if the current language is C, C++
12688 or Java.
12689
5931a2fa
JK
126902012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
12691
12692 Revert:
12693 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12694 Joel Brobecker <brobecker@adacore.com>
12695 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12696 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12697 3 times.
12698 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12699 fall through into AT_ENTRY_POINT.
12700 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
12701 DUMMY_ADDR with it.
12702 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12703 PPC_INSN_SIZE skip to 3 times.
12704
1a2da5ee
JB
127052012-01-04 Joel Brobecker <brobecker@adacore.com>
12706
12707 * linespec.c (add_minsym): Preserve function descriptors.
12708
8645ff69
UW
127092012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
12710
12711 * breakpoint.c (all_locations_are_pending): Consider locations
12712 in program spaces executing during startup pending as well.
12713
0b302171
JB
127142012-01-04 Joel Brobecker <brobecker@adacore.com>
12715
12716 Copyright year update in most files of the GDB Project.
12717
8ba098ad
JB
127182012-01-04 Joel Brobecker <brobecker@adacore.com>
12719
12720 * copyright.sh: Delete.
12721 * copyright.py: Rewrite.
12722
09c01c30
JB
127232012-01-04 Joel Brobecker <brobecker@adacore.com>
12724
12725 * gnulib/extra/update-copyright: New file, imported from gnulib.
12726
3c36c0af
JB
127272012-01-04 Joel Brobecker <brobecker@adacore.com>
12728
12729 * README (Copyright and License Notices): New section.
12730
888fe1e1
TT
127312012-01-03 Tom Tromey <tromey@redhat.com>
12732
12733 PR python/12533:
12734 * python/py-value.c (valpy_dereference, valpy_get_address
12735 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
12736 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
12737 (valpy_absolute, valpy_richcompare): Free intermediate values.
12738
6e681866
JB
127392011-01-03 Joel Brobecker <brobecker@adacore.com>
12740
12741 * ada-lang.c: Reformat the copyright notice.
12742
0cd09acb
JK
127432012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12744
12745 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
12746 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
12747 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
12748 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
12749 Revert this part of:
12750 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12751 Build gdb directly from *.o files not using libgdb.a.
12752 * Makefile.in (COMMON_OBS): Remove solib-target.o.
12753
12c3e59c
JB
127542012-01-02 Joel Brobecker <brobecker@adacore.com>
12755
12756 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
12757 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
12758 Reformat the copyright header.
12759
11bf1490
JK
127602012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12761
12762 Revert this part of:
12763 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12764 Remove the gdbtui binary.
12765 * gdb.c (main): Remove args.interpreter_p initialization.
12766 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12767 * main.h (struct captured_main_args): Remove interpreter_p.
12768
1fef196f
JB
127692012-01-02 Joel Brobecker <brobecker@adacore.com>
12770
12771 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
12772
67827812
JB
127732012-01-02 Joel Brobecker <brobecker@adacore.com>
12774
12775 * top.c (print_gdb_version): Update copyright year.
12776
a4d0b831
YQ
127772012-01-02 Yao Qi <yao@codesourcery.com>
12778
12779 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
12780
b5914469
JK
127812012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12782 Joel Brobecker <brobecker@adacore.com>
12783
12784 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12785 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12786 3 times.
12787 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12788 fall through into AT_ENTRY_POINT.
12789 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
12790 DUMMY_ADDR with it.
12791 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12792 PPC_INSN_SIZE skip to 3 times.
12793
8da828f7
JK
127942012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12795
12796 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
12797 the return value.
12798 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
12799
8574e74b
JK
128002012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12801
12802 Build gdb directly from *.o files not using libgdb.a.
12803 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
12804 (COMMON_OBS): Remove solib-target.o.
12805 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
12806 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
12807 (LIBGDB_OBS, libgdb.a): Move it above.
12808 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
12809 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
12810 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
12811 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
12812 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
12813 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
12814 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
12815 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
12816 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
12817 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
12818 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
12819 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
12820 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
12821 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
12822 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12823 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
12824 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
12825 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12826 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
12827 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
12828 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
12829 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
12830 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
12831 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
12832 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
12833 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
12834 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
12835
217bff3e
JK
128362012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12837
12838 Remove the gdbtui binary.
12839 * .gitignore (/gdbtui): Remove.
12840 * Makefile.in (TUI): Remove.
12841 (SUBDIR_TUI_OBS): Remove tui-main.o.
12842 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
12843 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
12844 (tui-main.o): Remove.
12845 (all_object_files): Remove tui-main.o.
12846 * NEWS: New note for the gdbtui removal.
12847 * configure: Rebuilt.
12848 * configure.ac: No longer add all-tui, clean-tui, install-tui and
12849 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
12850 CONFIG_UNINSTALL respectively.
12851 * gdb.c (main): Remove args.interpreter_p initialization.
12852 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12853 * main.h (struct captured_main_args): Remove interpreter_p.
12854 * tui/tui-main.c: Remove.
12855
9cdd5dbd
DE
128562012-01-01 Doug Evans <dje@google.com>
12857
bb5ed363
DE
12858 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
12859 (dwarf2_physname, read_import_statement): Ditto.
12860 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
12861 (process_structure_scope read_subroutine_type): Ditto.
12862 (read_typedef, load_partial_dies, read_partial_die): Ditto.
12863 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
12864 (dwarf2_fetch_die_location_block): Ditto.
12865 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
12866
a0f42c21
DE
12867 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
12868 All callers updated.
12869 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
12870 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
12871 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
12872
2dc860c0
DE
12873 * dwarf2read.c (load_cu): Move assert to more useful location.
12874
68dc6402
DE
12875 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
12876 All callers updated.
12877
9cdd5dbd
DE
12878 * dwarf2read.c (dwarf2_per_objfile): Add comment.
12879 (dwarf2_elf_names): Minor reformat.
12880 (dwarf2_per_cu_data): Tweak comment.
12881 (dwarf2_read_section): Fix comment.
12882 (create_all_comp_units): Fix comment.
12883 (load_full_comp_unit): Fix comment.
12884 (process_full_comp_unit): Fix comment.
12885 (read_signatured_type): Fix comment.
12886
0c10e53e 12887For older changes see ChangeLog-2011.
c906108c
SS
12888\f
12889Local Variables:
12890mode: change-log
12891left-margin: 8
12892fill-column: 74
12893version-control: never
57da7796 12894coding: utf-8
c906108c 12895End:
This page took 2.126994 seconds and 4 git commands to generate.