* coff-pe-read.h (pe_text_section_offset): Declare new function.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2012-12-13 Pierre Muller <muller@sourceware.org>
2
3 * coff-pe-read.h (pe_text_section_offset): Declare new function.
4 * coff-pe-read.c (debug_coff_pe_read): New static variable.
5 (struct read_pe_section_data): Add section_name field.
6 (IMAGE_SCN_CNT_CODE): New macro, if not already defined.
7 (IMAGE_SCN_CNT_INITIALIZED_DATA): Ditto.
8 (IMAGE_SCN_CNT_UNINITIALIZED_DATA): Ditto.
9 (get_pe_section_index): New function.
10 (struct pe_sections_info): New type.
11 (get_section_vmas): Use new struct pe_sections_info.
12 (add_pe_exported_sym): Handle unnamed exported function.
13 (add_pe_forwarded_sym): New function.
14 (read_pe_truncate_name): Truncate at last dot.
15 (pe_as16): New function.
16 (read_pe_exported_syms): Use ordinal of function to
17 retrieve correct RVA address of function and handle
18 forwarded symbol.
19 (pe_text_section_offset): New function.
20 (show_debug_coff_pe_read): New function.
21 (_initialize_coff_pe_read): New function adding
22 'set/show debug coff_pe_read' commands.
23
24 * windows-tdep.c (windows_xfer_shared_library): Use
25 pe_text_section_offset function instead of possibly wrong
26 0x1000 constant for .text sextion offset.
27
28 2012-12-13 Pedro Alves <palves@redhat.com>
29
30 * gdbarch.sh (do_read): Set IFS to blank.
31
32 2012-12-12 Mircea Gherzan <mircea.gherzan@intel.com>
33
34 * NEWS: Mention the -catch-load/-catch-unload MI commands.
35
36 2012-12-12 Mircea Gherzan <mircea.gherzan@intel.com>
37
38 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-catch.o.
39 (SUBDIR_MI_SRCS): Add mi/mi-cmd-catch.c.
40 * breakpoint.c (add_solib_catchpoint): New function that
41 can be used by both CLI and MI, factored out from
42 catch_load_or_unload.
43 (catch_load_or_unload): Strip it down and make it use the
44 new add_solib_catchpoint.
45 * breakpoint.h (add_solib_catchpoint): Declare it.
46 * mi/mi-cmd-break.h: New file.
47 * mi/mi-cmd-break.c: Include mi-cmd-break.h.
48 (setup_breakpoint_reporting): New function used for both
49 catchpoints and breakpoints.
50 (mi_cmd_break_insert): Use setup_breakpoint_reporting.
51 * mi/mi-cmd-catch.c: New file.
52 * mi/mi-cmds.c (mi_cmds): Add the handlers for -catch-load
53 and -catch-unload.
54 * mi/mi-cmds.h: Declare the handlers for -catch-load and
55 -catch-unload.
56
57 2012-11-28 Tom Tromey <tromey@redhat.com>
58
59 * dbxread.c (read_dbx_symtab): Update.
60 (end_psymtab, dbx_psymtab_to_symtab_1, dbx_psymtab_to_symtab)
61 (read_ofile_symtab): Add 'objfile' argument.
62 * dwarf2read.c (process_psymtab_comp_unit_reader)
63 (build_type_psymtabs_reader): Update.
64 (dwarf2_psymtab_to_symtab): Add 'objfile' argument.
65 * mdebugread.c (mdebug_psymtab_to_symtab): Add 'objfile'
66 argument.
67 (parse_procedure, parse_partial_symbols): Update.
68 (psymtab_to_symtab_1): Add 'objfile' argument.
69 * psympriv.h (struct partial_symtab) <objfile>: Remove.
70 <read_symtab>: Add 'objfile' argument.
71 (sort_pst_symbols, discard_psymtab): Update.
72 * psymtab.c (partial_map_expand_apply): Update.
73 (find_pc_sect_psymtab_closer): Add 'objfile' argument.
74 (find_pc_sect_psymtab, find_pc_sect_symtab_from_partial): Update.
75 (find_pc_sect_psymbol): Add 'objfile' argument.
76 (lookup_symbol_aux_psymtabs): Update.
77 (match_partial_symbol, lookup_partial_symbol, psymtab_to_symtab):
78 Add 'objfile' argument.
79 (find_last_source_symtab_from_partial, dump_psymtab)
80 (dump_psymtabs_for_objfile, read_symtabs_for_function)
81 (expand_partial_symbol_tables, read_psymtabs_with_filename)
82 (find_symbol_file_from_partial, map_matching_symbols_psymtab)
83 (expand_symtabs_matching_via_partial): Update.
84 (sort_pst_symbols): Add 'objfile' argument.
85 (allocate_psymtab): Update.
86 (discard_psymtab): Add 'objfile' argument.
87 (maintenance_info_psymtabs, maintenance_check_symtabs): Update.
88 * stabsread.h (end_psymtab): Update.
89 * xcoffread.c (this_symtab_objfile): New global.
90 (process_linenos, enter_line_range, xcoff_next_symbol_text):
91 Update.
92 (read_xcoff_symtab): Add 'objfile' argument.
93 (read_symbol, read_symbol_lineno): Update.
94 (xcoff_psymtab_to_symtab_1, xcoff_psymtab_to_symtab)
95 (xcoff_end_psymtab): Add 'objfile' argument.
96 (scan_xcoff_symtab): Update.
97
98 2012-12-12 Paul Koning <paul_koning@dell.com>
99
100 Add support for Python 3.
101 * NEWS: Mention Python 3 support.
102 * varobj.c (value_get_print_value): Use
103 python_string_to_target_string.
104 * python/py-block.c: Use PyVarObject_HEAD_INIT in initialization
105 of type objects.
106 * python/py-breakpoint.c: Ditto.
107 * python/py-cmd.c: Ditto.
108 * python/py-event.c: Ditto.
109 * python/py-event.h: Ditto.
110 * python/py-evtregistry.c: Ditto.
111 * python/py-finishbreakpoint.c: Ditto.
112 * python/py-frame.c: Ditto.
113 * python/py-function.c: Ditto.
114 * python/py-infthread.c: Ditto.
115 * python/py-lazy-string.c: Ditto.
116 * python/py-progspace.c: Ditto.
117 * /python/py-symbol.c: Ditto.
118 * python/py-evts.c: (gdbpy_initialize_py_events): Add module
119 initialization for Python 3.
120 * python/py-inferior.c: Use PyVarObject_HEAD_INIT in initialization
121 of type objects.
122 (infpy_read_memory): Return memoryview object if Python 3.
123 (infpy_write_memory): Use "s*" operand parsing code for Python 3.
124 (infpy_search_memory): Ditto.
125 (get_buffer): New function for Python 3.
126 * python/py-objfile.c: Use PyVarObject_HEAD_INIT in initialization
127 of type objects.
128 (objfpy_dealloc): Use Py_TYPE to call tp_free.
129 * python/py-param.c: Use PyVarObject_HEAD_INIT in initialization
130 of type objects.
131 (get_attr): Use PyUnicode_CompareWithASCIIString if Python 3.
132 (set_attr): Ditto.
133 * python/py-prettyprint.c (print_string_repr): use PyBytes methods
134 instead of PyString methods if Python 3.
135 (print_children): Skip push_dummy_python_frame call if Python 3.
136 * python/py-symtab.c: Use PyVarObject_HEAD_INIT in initialization
137 of type objects.
138 (salpy_dealloc): Use Py_TYPE to call tp_free.
139 * python/py-type.c: Use PyVarObject_HEAD_INIT in initialization
140 of type objects.
141 (field_dealloc): Use Py_TYPE to call tp_free.
142 (typy_dealloc): Ditto.
143 (type_object_as_number): Adjust struct initializations for
144 differences in layout for Python 2 vs. Python 3.
145 * python/py-utils.c (python_string_to_unicode): Omit non-Unicode
146 string case for Python 3.
147 (unicode_to_encoded_python_string): Shorten code (no functional
148 change).
149 (python_string_to_target_python_string): Comment that in Python 3
150 returned value is a Python "bytes" type.
151 (gdbpy_is_string): Omit non-Unicode string check in Python 3.
152 (gdb_py_object_from_longest): Omit non-long integer case in Python
153 3.
154 (gdb_py_object_from_ulongest): Ditto.
155 * python/py-value.c: Use PyVarObject_HEAD_INIT in initialization
156 of type objects.
157 (valpy_dealloc): Use Py_TYPE to call tp_free.
158 (valpy_int): Omit function if Python 3.
159 (convert_value_from_python): Use "%S" format (Python object as a
160 string) if Python 3.
161 (value_object_as_number): Adjust struct initializations for
162 differences in layout for Python 2 vs. Python 3.
163 * python/python-config.py: Adjust syntax for Python 3
164 compatibility.
165 Include "sys.abiflags" string as part of python library name, if
166 that attribute exists (Python 3).
167 * python/python-internal.h (IS_PY3): Define if Python 3.
168 (Py_TPFLAGS_HAVE_ITER, Py_TPFLAGS_CHECKTYPES): Define with
169 placeholder value if Python 3.
170 (PyInt_Check, PyInt_FromLong, PyInt_AsLong, PyString_FromString,
171 PyString_Decode, PyString_FromFormat, PyString_Check): Define as
172 analogous Python 3 API function if Python 3.
173 (PyVarObject_HEAD_INIT): Define if not already defined.
174 (Py_TYPE): Ditto.
175 * python/python.c (eval_python_command): Omit Py_FlushLine call if
176 Python 3.
177 Check return values of all Python API calls for error.
178 Supply dummy "python" and "python-interactive" commands if Python
179 initialization failed.
180 (_initialize_python): Convert argc to wchar_t** if Python 3.
181 Add module initialization for Python 3.
182 (finish_python_initialization): Pass wchar_t * argument to
183 PySys_SetPath if Python 3.
184 * python/lib/gdb/__init__.py: Define "reload" if Python 3.
185 (_GdbFile): New class for common output file behavior.
186 (GdbOutFile): Subclass from _GdbFile.
187 (GdbOutputErrorFile): Ditto.
188 (auto_load_packages): Adjust syntax for Python 3 compatibility.
189 * python/lib/gdb/printing.py: Define basestr and int if Python 3.
190 * python/lib/gdb/prompt.py: Use sorted() function rather than
191 sort() method.
192 * python/lib/gdb/command/explore.py: Define raw_input if Python 3.
193 Adjust syntax for Python 3 compatibility.
194 * python/lib/gdb/command/pretty_printers.py: Use sorted() function
195 rather than sort() method.
196 Adjust syntax for Python 3 compatibility.
197 * python/lib/gdb/command/type_printers.py: Ditto.
198 * doc/gdb.texinfo (Inferior.read_memory): Mention that the return
199 value is a memoryview object if Python 3.
200
201 2012-12-12 Tom Tromey <tromey@redhat.com>
202
203 * coffread.c (coff_objfile_data_key): New global.
204 (coff_symfile_init): Use set_objfile_data.
205 (coff_symfile_read): Use objfile_data.
206 (coff_symfile_finish): Don't free deprecated_sym_private.
207 (coff_free_info): New function.
208 (_initialize_coffread): Initialize coff_objfile_data_key.
209 * mdebugread.c (pending_list): Update comment.
210 * objfiles.h (struct objfile) <deprecated_sym_private>: Remove.
211 * symfile.c (reread_symbols): Don't mention
212 deprecated_sym_private.
213 * xcoffread.c (xcoff_objfile_data_key): New global.
214 (XCOFF_DATA): New macro.
215 (process_linenos, enter_line_range, xcoff_next_symbol_text)
216 (read_xcoff_symtab, coff_getfilename, read_symbol_lineno): Use
217 XCOFF_DATA.
218 (xcoff_new_init) Use set_objfile_data.
219 (xcoff_symfile_finish): Don't free deprecated_sym_private.
220 (init_stringtab, swap_sym, scan_xcoff_symtab)
221 (xcoff_get_toc_offset, xcoff_initial_scan): Use XCOFF_DATA.
222 (xcoff_free_info): New function.
223 (_initialize_xcoffread): Initialize xcoff_objfile_data_key.
224
225 2012-12-12 Mircea Gherzan <mircea.gherzan@intel.com>
226
227 * MAINTAINERS (Write After Approval): Add "Mircea Gherzan".
228
229 2012-12-12 Tom Tromey <tromey@redhat.com>
230
231 * coffread.c (coff_symfile_init): Use set_objfile_data.
232 (coff_symfile_read): Use DBX_SYMFILE_INFO.
233 * dbxread.c (dbx_objfile_data_key): New global.
234 (dbx_symfile_init): Use set_objfile_data.
235 (dbx_symfile_finish): Don't free deprecated_sym_stab_info.
236 (dbx_free_symfile_info): New function.
237 (coffstab_build_psymtabs, elfstab_build_psymtabs): Use
238 DBX_SYMFILE_INFO.
239 (stabsect_build_psymtabs): Use set_objfile_data.
240 (_initialize_dbxreadb): Initialize dbx_objfile_data_key.
241 * elfread.c (elf_symtab_read): Use DBX_SYMFILE_INFO,
242 set_objfile_data.
243 (free_elfinfo): Use DBX_SYMFILE_INFO.
244 (elf_symfile_finish): Don't free deprecated_sym_stab_info.
245 (elfstab_offset_sections): Use DBX_SYMFILE_INFO.
246 * gdb-stabs.h (dbx_objfile_data_key): Declare.
247 (DBX_SYMFILE_INFO): Rewrite to use objfile_data.
248 * objfiles.h (struct objfile) <deprecated_sym_stab_info>: Remove.
249 * somread.c (som_symfile_finish): Don't free
250 deprecated_sym_stab_info.
251
252 2012-12-12 Joel Brobecker <brobecker@adacore.com>
253
254 * gdbarch.sh (software_single_step): Remove trailing space in
255 comment (gdbarch.h is already correct).
256
257 2012-12-11 Tom Tromey <tromey@redhat.com>
258
259 * dwarf2read.c (dwarf2_get_dwz_file): Set 'dwz_file'.
260
261 2012-12-11 Tom Tromey <tromey@redhat.com>
262
263 * dsrec.c (report_transfer_performance): Don't declare.
264 (load_srec): Use gettimeofday, print_transfer_performance.
265 * symfile.c (report_transfer_performance): Remove.
266
267 2012-12-11 Pedro Alves <pedro@codesourcery.com>
268 Pedro Alves <palves@redhat.com>
269
270 * procfs.c (procfs_make_note_section) [NEW_PROC_API]: Output a
271 NT_PSTATUS note.
272 * sol2-tdep.c (sol2_core_pid_to_str): Print process IDs
273 differently from LWP IDs.
274
275 2012-12-11 Pedro Alves <palves@redhat.com>
276
277 * configure.ac (detect type of /proc): Remove Unixware handling.
278 * configure: Regenerate.
279 * proc-api.c (ioctl_table) [PIOCLSTATUS]: Don't mention Unixware.
280 (ioctl_table) [PCRESET]: Remove entry.
281 * proc-events.c (SYS_lwp_create, SYS_lwp_exit, SYS_lwp_wait)
282 (SYS_lwp_self, SYS_lwp_info, SYS_lwp_private, SYS_lwp_kill)
283 (SYS_lwp_suspend, SYS_lwp_continue): Don't define.
284 * proc-why.c (pr_why_table) [PR_SUSPENDED]: Don't mention Unixware.
285 * procfs.c: Remove all UNIXWARE guarded code, and all traces of
286 Unixware in comments throughout.
287 * i386-tdep.c (i386_svr4_sigtramp_p): Don't match _sigacthandler,
288 and remove mention of Unixware.
289
290 2012-12-10 Doug Evans <dje@google.com>
291
292 * dwarf2read.c (dwarf2_cu): Enhance comment.
293 (dwarf2_get_pc_bounds): Only add ranges_base for DIEs that live in
294 the DWO file.
295 (dwarf2_record_block_ranges): Ditto.
296
297 * dwarf2read.c (create_dwo_in_dwp): Tweak comment.
298
299 * symtab.c (find_pc_sect_symtab): Add comment.
300
301 2012-12-10 Tom Tromey <tromey@redhat.com>
302
303 * defs.h: Don't check for definition of LONGEST.
304 (min, max): Remove duplicates.
305
306 2012-12-10 Tom Tromey <tromey@redhat.com>
307
308 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): New function.
309 (dwarf2_fetch_die_loc_cu_off): Rename from
310 dwarf2_fetch_die_location_block. Rewrite to use
311 dwarf2_fetch_die_loc_sect_off.
312 * dwarf2loc.h (dwarf2_fetch_die_loc_sect_off): Declare.
313 (dwarf2_fetch_die_loc_cu_off): Rename.
314 * dwarf2loc.c (indirect_pieced_value): Use
315 dwarf2_fetch_die_loc_sect_off.
316 * dwarf2expr.h (struct dwarf_expr_context) <len, data>: Update
317 comment.
318 (struct dwarf_expr_piece) <v.ptr.die>: Now a sect_offset.
319 * dwarf2expr.c (add_piece): Update.
320 (execute_stack_op) <DW_OP_GNU_implicit_pointer>: Update comment.
321
322 2012-12-10 Tom Tromey <tromey@redhat.com>
323
324 * buildsym.c (struct pending_block): Move from buildsym.h.
325 (pending_blocks): Likewise; now static.
326 (pending_block_obstack): New global.
327 (free_pending_blocks): Free blocks.
328 (record_pending_block): Use pending_block_obstack.
329 * buildsym.h (struct pending_block): Move definition to
330 buildsym.c.
331 (pending_blocks): Don't declare.
332
333 2012-12-10 Pedro Alves <palves@redhat.com>
334
335 * solib-svr4.c (svr4_solib_create_inferior_hook) [_SCO_DS]: Remove
336 dead SCO code, and adjust function description comment.
337
338 2012-12-09 Jan Kratochvil <jan.kratochvil@redhat.com>
339
340 * configure.ac (CC_HAS_LONG_LONG): Replace by AC_MSG_ERROR.
341 * defs.h (LONGEST, ULONGEST): Remove conditionalization for
342 CC_HAS_LONG_LONG.
343 * dwarf2-frame.c (DW64_CIE_ID): Likewise.
344 * dwarf2read.c (extract_cu_value): Remove the function.
345 (create_cus_from_index_list): Make the return type void, inline the
346 extract_cu_value caller, include new gdb_static_assert.
347 (create_cus_from_index): Make the return type void, update the function
348 comment, update the create_cus_from_index_list caller.
349 (create_signatured_type_table_from_index): Make the return type void,
350 inline the extract_cu_value caller, include new gdb_static_assert.
351 (dwarf2_read_index): Update the create_cus_from_index and
352 create_signatured_type_table_from_index caller.
353 * printcmd.c (ui_printf): Remove conditionalizations for
354 CC_HAS_LONG_LONG.
355 * config.in: Regenerate.
356 * configure: Regenerate.
357
358 2012-12-09 Jan Kratochvil <jan.kratochvil@redhat.com>
359
360 * dwarf2read.c (struct dwarf2_cu): New field producer_is_gcc_lt_4_3.
361 Update the comment for checked_producer.
362 (check_producer): New forward declaration.
363 (producer_is_gcc_lt_4_3): New function.
364 (find_file_and_directory): Simulate *COMP_DIR only for gcc < 4.3.
365 (check_producer): Initialize also PRODUCER_IS_GCC_LT_4_3.
366
367 2012-12-07 Tom Tromey <tromey@redhat.com>
368
369 * ada-lang.c (ada_make_symbol_completion_list): Add 'code'
370 argument, assertion.
371 * c-exp.y (typebase): Add completion productions.
372 * completer.c (expression_completer): Handle tag completion.
373 * expression.h (parse_expression_for_completion): Add argument.
374 * f-lang.c (f_make_symbol_completion_list): Add 'code'
375 argument.
376 * language.h (struct language_defn)
377 <la_make_symbol_completion_list>: Add 'code' argument.
378 * parse.c (expout_tag_completion_type, expout_completion_name):
379 New globals.
380 (mark_struct_expression): Add assertion.
381 (mark_completion_tag): New function.
382 (parse_exp_in_context): Initialize new globals.
383 (parse_expression_for_completion): Add 'code' argument. Handle
384 tag completion.
385 * parser-defs.h (mark_completion_tag): Declare.
386 * symtab.c (default_make_symbol_completion_list_break_on): Add
387 'code' argument. Update.
388 (default_make_symbol_completion_list): Add 'code' argument.
389 (make_symbol_completion_list): Update.
390 (make_symbol_completion_type): New function.
391 * symtab.h (default_make_symbol_completion_list_break_on)
392 (default_make_symbol_completion_list): Update.
393 (make_symbol_completion_type): Declare.
394
395 2012-12-07 Tom Tromey <tromey@redhat.com>
396
397 * expression.h (parse_expression_for_completion): Rename
398 from parse_field_expression.
399 (parse_completion): Rename from in_parse_field.
400 * c-exp.y (lex_one_token): Update.
401 * completer.c (expression_completer): Update.
402 * go-exp.y (lex_one_token): Update.
403 * p-exp.y (yylex): Update.
404 * parse.c (parse_completion): Rename from in_parse_field.
405 (parse_exp_in_context): Update.
406 (parse_expression_for_completion): Rename from
407 parse_field_expression. Update.
408
409 2012-12-07 Tom Tromey <tromey@redhat.com>
410
411 * typeprint.c (_initialize_typeprint): Set completer
412 for "whatis" and "ptype".
413
414 2012-12-07 Joel Brobecker <brobecker@adacore.com>
415
416 * copyright.py (NOT_FSF_LIST): Remove duplicate entry
417 "sim/common/cgen-fpu.h". Remove invalid entries
418 "sim/common/sim-fpu.c" and "sim/mn10300/sim-main.h",
419 which actually have an FSF copyright header.
420
421 2012-12-07 Joel Brobecker <brobecker@adacore.com>
422
423 * osf-share/AT386/cma_thread_io.h: Delete.
424 * osf-share/HP800/cma_thread_io.h: Delete.
425 * osf-share/README: Delete.
426 * osf-share/RIOS/cma_thread_io.h: Delete.
427 * osf-share/cma_attr.h: Delete.
428 * osf-share/cma_deb_core.h: Delete.
429 * osf-share/cma_debug_client.h: Delete.
430 * osf-share/cma_errors.h: Delete.
431 * osf-share/cma_handle.h: Delete.
432 * osf-share/cma_init.h: Delete.
433 * osf-share/cma_list.h: Delete.
434 * osf-share/cma_mutex.h: Delete.
435 * osf-share/cma_sched.h: Delete.
436 * osf-share/cma_semaphore_defs.h: Delete.
437 * osf-share/cma_sequence.h: Delete.
438 * osf-share/cma_stack.h: Delete.
439 * osf-share/cma_stack_int.h: Delete.
440 * osf-share/cma_tcb_defs.h: Delete.
441 * osf-share/cma_util.h: Delete.
442 * Makefile.in (HFILES_NO_SRCDIR): Remove entries for the files
443 in osf-share.
444 * config/djgpp/fnchange.lst: Remove osf-share/cma_stack_int.h entry.
445 * contrib/ari/gdb_find.sh: Remove handling of osf-share.
446 * copyright.sh (NOT_FSF_LIST): Remove "gdb/osf-share" entry.
447
448 2012-12-06 Pedro Alves <palves@redhat.com>
449 Tom Tromey <tromey@redhat.com>
450
451 * valops.c (value_cast): Move TYPE_CODE_VOID case earlier.
452
453 2012-12-06 Jens Elmenthaler <jens.elmenthaler@advantest.com>
454
455 PR mi/14741:
456 * mi/mi-cmd-var.c (varobj_update_one): Take value of
457 attribute "dynamic" and "displayhint" from printed child,
458 not the root variable.
459
460 2012-12-06 Joel Brobecker <brobecker@adacore.com>
461
462 * aix-thread.c (getthrds): Fix type of 4th parameter.
463 (get_signaled_thread): Change type of variable ktid to tid_t.
464
465 2012-12-06 Hui Zhu <hui_zhu@mentor.com>
466
467 * dwarf2loc.c (dwarf_expr_frame_base): Add check for the return
468 value of get_frame_block.
469
470 2012-12-05 Pierre Muller <muller@sourceware.org>
471
472 Avoid memory leaks on struct cmd_list_element.doc field.
473 * cli/cli-decode.c (add_alias_cmd): Make a copy of doc field
474 if flags contains DOC_ALLOCATED.
475 (add_setshow_cmd_full): Add DOC_ALLOCATED to set and show
476 flags.
477 (delete_cmd): Handle DOC_ALLOCATED flag.
478 * cli/cli-decode.h (DOC_ALLOCATED): New macro for use
479 in flags filed of struct cmd_list_element.
480 (struct cmd_list_element): Document new flag item.
481
482 2012-12-04 Doug Evans <dje@google.com>
483
484 * symmisc.c: Whitespace fixes.
485
486 2012-12-04 Karthik Bhat <kv.bhat@samsung.com>
487
488 * i386-tdep.c (i386_skip_prologue): Using symbol table
489 to find the end of prologue for clang compiled binaries.
490 * amd64-tdep.c (amd64_skip_prologue): Using symbol table
491 to find the end of prologue for clang compiled binaries.
492
493 2012-12-03 Doug Evans <dje@google.com>
494
495 * dwarf2read.c (struct dwarf2_per_objfile): Clarify comment.
496 (dw2_find_symbol_file): Delete unused local file_data.
497
498 2012-12-03 Tom Tromey <tromey@redhat.com>
499
500 * ada-exp.y (write_object_renaming, write_var_or_type)
501 (write_ambiguous_var, write_var_from_sym): Make blocks const.
502 * ada-lang.c (replace_operator_with_call)
503 (find_old_style_renaming_symbol): Make blocks const.
504 * ada-lang.h (ada_find_renaming_symbol): Update.
505 (struct ada_symbol_info) <block>: Now const.
506 * breakpoint.c (watch_command_1): Update.
507 * breakpoint.h (struct watchpoint) <exp_valid_block,
508 cond_exp_valid_block>: Now const.
509 * c-exp.y (classify_inner_name, classify_name): Make block
510 argument const.
511 * expprint.c (print_subexp_standard) <OP_VAR_VALUE>: Make 'b'
512 const.
513 * expression.h (innermost_block, parse_exp_1): Update.
514 (union exp_element) <block>: Now const.
515 * gdbtypes.c (lookup_template_type, lookup_enum, lookup_union)
516 (lookup_struct): Make block argument const.
517 * gdbtypes.h (lookup_template_type): Update.
518 * go-exp.y (classify_name, classify_packaged_name)
519 (package_name_p): Make block argument const.
520 * objc-lang.c (lookup_struct_typedef): Make block argument const.
521 * objc-lang.h (lookup_struct_typedef): Update.
522 * parse.c (parse_exp_in_context, parse_exp_1)
523 (write_exp_elt_block): Make block arguments const.
524 (expression_context_block, innermost_block): Now const.
525 * parser-defs.h (write_exp_elt_block): Update.
526 (expression_context_block, innermost_block, block_found): Now
527 const.
528 * printcmd.c (struct display) <block>: Now const.
529 * symtab.h (lookup_struct, lookup_union, lookup_enum): Update.
530 * valops.c (address_of_variable): Make block argument const.
531 * value.h (value_of_variable): Update.
532 * varobj.c (struct varobj_root) <valid_block>: Now const.
533
534 2012-11-30 Yao Qi <yao@codesourcery.com>
535
536 * breakpoint.c (print_one_breakpoint_location): Indent code.
537
538 2012-11-30 Yao Qi <yao@codesourcery.com>
539
540 * breakpoint.c (print_one_breakpoint_location): Combine two
541 blocks handling 'hit count' together.
542
543 2012-11-30 Yao Qi <yao@codesourcery.com>
544
545 * infrun.c (error_is_running, ensure_not_running): Move them
546 to ...
547 * infcmd.c (error_is_running, ensure_not_running): ... here.
548 Make them 'static'.
549 * inferior.h: Remove declarations of error_is_running and
550 ensure_not_running.
551
552 2012-11-30 Yao Qi <yao@codesourcery.com>
553
554 * tic6x-linux-tdep.c (tic6x_register_sigcontext_offset): Don't
555 check REGNUM >= 0.
556
557 2012-11-30 Yao Qi <yao@codesourcery.com>
558
559 * infrun.c: Make the declaration of 'init_infwait_state'
560 static.
561 (init_infwait_state): Make it 'static'.
562
563 2012-11-29 Ulrich Weigand <uweigand@de.ibm.com>
564
565 * python/python.c (finalize_python): Cast unused PyGILState_Ensure
566 return value to void to avoid compiler warning.
567
568 2012-11-29 Ulrich Weigand <uweigand@de.ibm.com>
569
570 * opencl-lang.c (opencl_print_type): New function.
571 (opencl_language_arch_info): Install it.
572
573 2012-11-29 Tom Tromey <tromey@redhat.com>
574
575 * contrib/ari/gdb_ari.sh: Remove rules for xasprintf and
576 xvasprintf.
577 * common/common-utils.c (xasprintf, xvasprintf): Remove.
578 * common/common-utils.h (xasprintf, xvasprintf): Remove.
579
580 2012-11-29 Jerome Guitton <guitton@adacore.com>
581
582 * ada-lang.c (ada_is_interface_tag): New function.
583 (ada_is_ignored_field): Add interface tags to the list
584 of ignored fields.
585
586 2012-11-29 Jerome Guitton <guitton@adacore.com>
587
588 * ada-lang.h (ada_tag_value_at_base_address): New function
589 declaration.
590 * ada-lang.c (is_ada95_tag, ada_tag_value_at_base_address):
591 New functions.
592 (ada_to_fixed_type_1, ada_evaluate_subexp): Let ada_tag_base_address
593 relocate the class-wide value if need be.
594 (ada_value_struct_elt, ada_value_ind, ada_coerce_ref):
595 Let ada_tag_value_at_base_address relocate the class-wide access/ref
596 before dereferencing it.
597 * ada-valprint.c (ada_val_print_1): Relocate to base address
598 before displaying the content of an interface-wide ref.
599
600 2012-11-29 Jerome Guitton <guitton@adacore.com>
601
602 * ada-lang.c (ada_evaluate_subexp): Unwrap only in EVAL_NORMAL.
603
604 2012-11-29 Joel Brobecker <brobecker@adacore.com>
605
606 GDB 7.5.1 released.
607
608 2012-11-29 Yao Qi <yao@codesourcery.com>
609 Tom Tromey <tromey@redhat.com>
610
611 * eval.c (evaluate_subexp_standard): Get the correct pointer
612 type for TYPE_CODE_MEMBERPTR.
613
614 2012-11-28 Edjunior Machado <emachado@linux.vnet.ibm.com>
615
616 * rs6000-tdep.c (gdb_print_insn_powerpc): Remove info->mach checking,
617 since now it is being done by binutils' powerpc_init_dialect().
618
619 2012-11-28 Tom Tromey <tromey@redhat.com>
620
621 PR gdb/14290:
622 * solib-darwin.c (gdb_bfd_mach_o_fat_extract): New function.
623 (darwin_solib_get_all_image_info_addr_at_init, darwin_bfd_open):
624 Use it.
625 * gdb_bfd.h (gdb_bfd_mark_parent): Declare.
626 * gdb_bfd.c (gdb_bfd_mark_parent): New function.
627 (gdb_bfd_openr_next_archived_file): Use it.
628
629 2012-11-28 Markus Metzger <markus.t.metzger@intel.com>
630
631 * configure.ac: Check for linux/perf_event.h.
632 * config.in: Regenerated.
633 * configure: Regenerated.
634
635 2012-11-28 Yao Qi <yao@codesourcery.com>
636
637 * breakpoint.c (_initialize_breakpoint): Call add_alias_cmd to
638 abbreviate 'delete tracepoints' to 'delete tr'.
639 * corefile.c (_initialize_core): Call add_alias_cmd to
640 abbreviate 'set gnutarget' to 'set g'.
641 * value.c (_initialize_values): Call add_alias_cmd to abbreviate
642 'show convenience' to 'show conv'.
643
644 2012-11-27 Joel Brobecker <brobecker@adacore.com>
645
646 * sparc-sol2-nat.c (supply_gregset): Fix first parameter in
647 call to sparc_supply_fpregset.
648 (fill_fpregset): Fix first parameter in call to
649 sparc_collect_fpregset.
650
651 2012-11-27 Daniel Jacobowitz <dan@codesourcery.com>
652 Kazu Hirata <kazu@codesourcery.com>
653 Yao Qi <yao@codesourcery.com>
654
655 * objfiles.c (init_entry_point_info): Call
656 gdbarch_convert_from_func_ptr_addr and
657 gdbarch_addr_bits_remove here ...
658 (entry_point_address_query): ... instead of here.
659 * solib-svr4.c (exec_entry_point): Call
660 gdbarch_addr_bits_remove.
661 * symfile.c (generic_load): Call gdbarch_addr_bits_remove on
662 the entry address.
663
664 2012-11-27 Daniel Jacobowitz <dan@codesourcery.com>
665 Yao Qi <yao@codesourcery.com>
666
667 * eval.c (evaluate_subexp_standard): Add handling of
668 TYPE_CODE_MEMBERPTR when calling functions. Correct the
669 result of ptype for calling a TYPE_CODE_METHODPTR.
670
671 2012-11-27 Yao Qi <yao@codesourcery.com>
672
673 * symtab.c (symtab_symbol_info): Fix a -Wformat-extra-args
674 warning.
675 Add i18n markup.
676
677 2012-11-26 Alexander Larsson <alexl@redhat.com>
678 Jan Kratochvil <jan.kratochvil@redhat.com>
679 Tom Tromey <tromey@redhat.com>
680
681 * NEWS: Mention mini debuginfo feature.
682 * minidebug.c: New file.
683 * configure.ac: Check for lzma.
684 * configure, config.in: Rebuild.
685 * Makefile.in (LIBLZMA): New variable.
686 (CLIBS): Include LIBLZMA.
687 (SFILES): Mention minidebug.c.
688 (COMMON_OBS): Mention minidebug.o.
689 * symfile.c (read_symbols): New function.
690 (syms_from_objfile, reread_symbols): Call it.
691 * symfile.h (find_separate_debug_file_in_section): Declare.
692
693 2012-11-26 Keith Seitz <keiths@redhat.com>
694
695 * exec.c (exec_file_attach): Move cleanup after verifying that
696 memory has in fact been allocated.
697
698 2012-11-26 Tom Tromey <tromey@redhat.com>
699
700 * ada-lang.c (user_select_syms): Use SYMBOL_SYMTAB.
701 * dwarf2read.c (dw2_find_symbol_file, fixup_go_packaging): Use
702 SYMBOL_SYMTAB.
703 * skip.c (skip_info): Use SYMBOL_SYMTAB.
704
705 2012-11-26 Maxime Villard <rustyBSD@gmx.fr>
706 Pedro Alves <palves@redhat.com>
707
708 * common/linux-osdata.c (linux_xfer_osdata_fds): Decrease buffer
709 size parameter passed to readlink by one byte.
710 * fbsd-nat.c (fbsd_pid_to_exec_file): Ditto.
711 * linux-nat.c (linux_child_pid_to_exec_file): Ditto.
712 * nbsd-nat.c (nbsd_pid_to_exec_file): Ditto.
713 * inf-child.c (inf_child_fileio_readlink): Decrease local buffer's
714 size by one byte.
715
716 2012-11-26 Yao Qi <yao@codesourcery.com>
717
718 * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
719 extraneous parentheses.
720
721 2012-11-26 Yao Qi <yao@codesourcery.com>
722
723 * remote.c (remote_start_remote): Typo fix.
724
725 2012-11-23 David S. Miller <davem@davemloft.net>
726
727 * sparc-tdep.h (struct sparc_fpregset): New data structure.
728 (sparc32_sunos4_fpregset, sparc32_bsd_fpregset,
729 sparc32_sol2_fpregset): Declare new globals.
730 (sparc32_supply_fpregset, sparc32_collect_fpregset): Add new
731 'fpregset' argument.
732 * sparc64-tdep.h (sparc64_supply_fpregset,
733 sparc64_collect_fpregset): Likewise.
734 (sparc64_sol2_fpregset, sparc64_bsd_fpregset): Declare new
735 globals.
736 * sparc-nat.h (struct sparc_fpregset): Add forward declaration.
737 (sparc_fpregset): Declare new global.
738 (sparc_supply_fpregset, sparc_collect_fpregset): Add new
739 'fpregset' argument.
740 * sparc-linux-nat.c (supply_fpregset): Pass sparc_fpregset down
741 into handler.
742 (fill_fpregset): Likewise.
743 (_initialize_sparc_linux_nat): Set sparc_fpregset to
744 sparc32_bsd_fpregset.
745 * sparc-linux-tdep.c (sparc32_linux_supply_core_fpregset): Pass
746 sparc32_bsd_fpregset down into handler.
747 (sparc32_linux_collect_core_fpregset): Likewise.
748 * sparc-nat.c (sparc_fpregset): Define.
749 (sparc_supply_fpregset): Add 'fpregset' argument.
750 (sparc_collect_fpregset): Likewise.
751 (sparc_fetch_inferior_registers): Pass sparc_fpregset down
752 into fpregset handler.
753 (sparc_store_inferior_registers): Likewise.
754 (_initialize_sparc_nat): Set sparc_fpregset to
755 sparc32_sunos4_fpregset if NULL.
756 * sparc-sol2-nat.c (supply_gregset): Pass sparc_sol2_fpregset
757 down into handler.
758 (fill_fpregset): Likewise.
759 * sparc-sol2-tdep.c (sparc32_sol2_fpregset): Define.
760 * sparc-tdep.c (sparc32_supply_fpregset): Add fpregset arg and
761 use it to compute offsets.
762 (sparc32_collect_fpregset): Likewise.
763 (sparc32_sunos4_fpregset, sparc32_bsd_fpregset): Define.
764 * sparc64-linux-nat.c (supply_fpregset): Pass sparc64_bsd_fpregset
765 down into handler.
766 (fill_fpregset): Likewise.
767 * sparc64-linux-tdep.c (sparc64_linux_supply_core_fpregset):
768 Likewise.
769 (sparc64_linux_collect_core_fpregset): Likewise.
770 * sparc64-sol2-tdep.c (sparc64_sol2_fpregset): Define.
771 * sparc64-tdep.c (sparc64_supply_fpregset): Add fpregset arg and
772 use it to compute offsets.
773 (sparc64_collect_fpregset): Likewise.
774 (sparc64_bsd_fpregset): Define.
775 * sparc64fbsd-tdep.c (sparc64fbsd_supply_fpregset): Padd
776 sparc64_bsd_fpregset down into handler.
777 (sparc64fbsd_collect_fpregset): Likewise.
778 * sparc64nbsd-nat.c (sparc64nbsd_supply_fpregset): Add fpregset arg
779 and pass sparc{32,64}_bsd_fpregset down into handler.
780 (sparc64nbsd_collect_fpregset): Likewise.
781 * sparc64nbsd-tdep.c (sparc64nbsd_supply_fpregset): Pass
782 sparc64_bsd_fpregset down into handler.
783 * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Likewise.
784 * sparcnbsd-nat.c (_initialize_sparcnbsd_nat): Set sparc_fpregset
785 to sparc32_bsd_fpregset.
786 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Pass
787 sparc32_bsd_fpregset down into sparc32_supply_fpregset.
788 (sparc32nbsd_supply_fpregset): Likewise.
789
790 2012-11-21 Tom Tromey <tromey@redhat.com>
791
792 * gdbtypes.h (struct cplus_struct_type) <localtype_ptr>: Remove
793 field.
794 (TYPE_LOCALTYPE_PTR, TYPE_LOCALTYPE_FILE, TYPE_LOCALTYPE_LINE):
795 Remove.
796 * c-typeprint.c (c_type_print_base): Update.
797
798 2012-11-21 Yao Qi <yao@codesourcery.com>
799
800 PR tdep/7438
801 * gdbarch.sh (smash_text_address): Remove.
802 * gdbarch.c, gdbarch.h: Regenerate.
803 * arm-tdep.c (arm_smash_text_address): Remove.
804 (arm_gdbarch_init): Don't call set_gdbarch_smash_text_address.
805 * hppa-tdep.c (hppa_smash_text_address): Remove.
806 (hppa_addr_bits_remove): Rename from hppa_smash_text_address.
807 (hppa_gdbarch_init): Don't call set_gdbarch_smash_text_address.
808 Caller update.
809 * coffread.c (coff_symtab_read): Caller update.
810 * dbxread.c (process_one_symbol): Likewise.
811 * elfread.c (record_minimal_symbol): Likewise.
812 * somread.c (som_symtab_read): Likewise.
813
814 2012-11-20 Pierre Muller <muller@sourceware.org>
815
816 ARI fixes: sprintf rule.
817 Replace sprintf function calls for char arrays by
818 calls to xsnprintf calls.
819 * arm-tdep.c (arm_push_dummy_call): Replace sprintf by xsnprintf.
820 (arm_dwarf_reg_to_regnum, arm_return_value): Ditto.
821 (arm_neon_quad_read, arm_pseudo_read): Ditto.
822 (arm_neon_quad_write, arm_pseudo_write): Ditto.
823 * breakpoint.c (condition_completer): Ditto.
824 (create_tracepoint_from_upload): Ditto.
825 * dwarf2read.c (file_full_name): Ditto.
826 * gcore.c (gcore_command): Ditto.
827 * gnu-nat.c (proc_string, gnu_pid_to_str): Ditto.
828 * go32-nat.c (go32_sysinfo): Ditto.
829 * interps.c (interp_set): Ditto.
830 * m32c-tdep.c (make_types): Ditto.
831 * ppc-linux-nat.c (fetch_register, store_register): Ditto.
832 * remote-m32r-sdi.c (m32r_open): Ditto.
833 * sol-thread.c (td_err_string): Ditto.
834 (td_state_string, solaris_pid_to_str): Ditto.
835 * symtab.c (gdb_mangle_name): Ditto.
836 * cli/cli-script.c (execute_control_command): Ditto.
837 (define_command, document_command): Ditto.
838 * tui/tui-io.c (tui_rl_display_match_list): Ditto.
839 * tui/tui-stack.c (tui_make_status_line): Ditto.
840 * tui/tui-win.c (tui_update_gdb_sizes): Ditto.
841
842 2012-11-20 Mike Frysinger <vapier@gentoo.org>
843
844 * cli/cli-decode.c (complete_on_cmdlist): Add a fourth arg and check
845 it when looking at ptr->func.
846 * command.h (complete_on_cmdlist): Add a fourth arg.
847 * completer.c (complete_line_internal): Add local ignore_help_classes,
848 and set it to 1 when reason is not handle_help. Pass this down to
849 lookup_cmd_1 and complete_on_cmdlist.
850
851 2012-11-20 Tom Tromey <tromey@redhat.com>
852
853 * completer.c (count_struct_fields): Remove.
854 (expression_completer): Don't call count_struct_fields.
855
856 2012-11-20 Pedro Alves <palves@redhat.com>
857
858 * annotate.c (breakpoints_changed): Rename to ...
859 (annotate_breakpoints_changed): ... this.
860 (annotate_stopped, breakpoint_changed): Adjust caller.
861 * annotate.h (breakpoints_changed): Rename to ...
862 (annotate_breakpoints_changed): ... this.
863 * breakpoint.c (set_breakpoint_condition, breakpoint_set_commands)
864 (do_map_commands_command, init_raw_breakpoint, clear_command)
865 (set_ignore_count, enable_breakpoint_disp): Adjust callers.
866
867 2012-11-20 David S. Miller <davem@davemloft.net>
868
869 * common/linux-osdata.c (get_number_of_cpu_cores): Delete.
870 (linux_xfer_osdata_processes): Fetch _SC_NPROCESSORS_ONLN via
871 sysconf.
872 (get_cores_used_by_process): Update comment.
873
874 2012-11-20 Yao Qi <yao@codesourcery.com>
875
876 * objfiles.c (init_entry_point_info): Remove trailing spaces.
877
878 2012-11-20 Yao Qi <yao@codesourcery.com>
879
880 * infrun.c (handle_inferior_event): Pass 'saved_singlestep_ptid'
881 to deprecated_context_hook.
882
883 2012-11-19 Yao Qi <yao@codesourcery.com>
884
885 * infrun.c (infwait_state): Add static.
886
887 2012-11-16 Keith Seitz <keiths@redhat.com>
888
889 PR c++/13615
890 * cp-namespace.c (cp_lookup_symbol_in_namespace): Add SEARCH
891 parameter and pass it to lookup_symbol_file.
892 (cp_lookup_symbol_imports): Tell cp_lookup_symbol_in_namespace
893 to search base classes.
894 (cp_lookup_symbol_namespace): Likewise.
895 (lookup_namespace_scope): Likewise.
896 (lookup_symbol_file): Add SEARCH parameter.
897 If SEARCH is non-zero and no symbol is found, lookup the class
898 and call cp_lookup_nested_symbol.
899 (find_symbol_in_baseclass): New function.
900 (cp_lookup_nested_symbol): Do not let
901 cp_lookup_symbol_in_namespace search through base classes.
902 Do that later when there is no global symbol match.
903
904 2012-11-16 Doug Evans <dje@google.com>
905
906 * main.c (gdb_datadir_provided): New static global.
907 (get_init_files): If --data-directory is provided,
908 and SYSTEM_GDBINIT lives in data-directory, look for it there.
909 * NEWS: Mention it.
910
911 2012-11-15 Pierre Muller <muller@sourceware.org>
912
913 ARI fixes: move gdb_wait and gdb_stat headers to common subdirectory.
914 * gdb_stat.h: Delete. Moved to common directory.
915 * common/gdb_stat.h: New file.
916 * gdb_wait.h: Delete. Moved to common directory.
917 * common/gdb_wait.h: New file.
918 * Makefile.in (H_FILES_NO_SRC): Adapt to new header
919 location.
920 * contrib/ari/gdb_ari.sh (wait.h rule): Adapt to new gdb_wait.h
921 location.
922 (stat.h rule): Adapt to new gdb_stat.h location.
923 * common/linux-osdata.c: Include "gdb_stat.h" header instead of
924 <sys/stat.h> header.
925 * common/linux-ptrace.c: Include "gdb_wait.h" header instead of
926 <sys/wait.h> header.
927
928 2012-11-15 Pierre Muller <muller@sourceware.org>
929
930 * configure.ac (AC_HEADER_STAT): Remove.
931 * gdb_stat.h (STAT_MACROS_BROKEN): Remove macro use
932 and corresponding code.
933 * configure: Regenerate.
934 * config.in: Regenerate.
935
936 2012-11-15 Pierre Muller <muller@sourceware.org>
937
938 ARI xasprintf rule fixes.
939 * dwarf2read.c (create_dwo_in_dwp): Use xstrprintf function
940 instead of xasprintf.
941 (open_and_init_dwp_file): Ditto.
942
943 2012-11-14 Luis Machado <lgustavo@codesourcery.com>
944
945 * value.c (value_actual_type): Check for TYPE_CODE_STRUCT
946 target types.
947
948 2012-11-14 Tom Tromey <tromey@redhat.com>
949
950 * configure, config.in: Rebuild.
951 * configure.ac: Don't check for ctype.h, time.h.
952 * expprint.c: Don't use HAVE_CTYPE_H.
953
954 2012-11-13 Tom Tromey <tromey@redhat.com>
955
956 * gdbarch.h, gdbarch.c: Rebuild.
957 * gdbarch.sh (set_target_gdbarch): Rename from
958 deprecated_target_gdbarch_select_hack.
959 * arch-utils.c (gdbarch_update_p): Update.
960 (set_gdbarch_from_file): Update.
961
962 2012-11-14 Pierre Muller <muller@sourceware.org>
963
964 * MAINTAINERS (Responsible Maintainers/misc): Add myself
965 as responsible of contrib/ari directory.
966
967 2012-11-14 Daniel Jacobowitz <dan@codesourcery.com>
968 Yao Qi <yao@codesourcery.com>
969
970 * arm-tdep.c (arm_addr_bits_remove): Do not adjust the low
971 bit of EXC_RETURN.
972 (arm_m_exception_cache, arm_m_exception_this_id)
973 (arm_m_exception_prev_register, arm_m_exception_unwind_sniffer)
974 (arm_m_exception_unwind): New.
975 (arm_gdbarch_init): Register arm_m_exception_unwind.
976
977 2012-11-13 Giuseppe Montalto <giuseppe.montalto@st.com>
978
979 * mi/mi-main.c (mi_cmd_data_write_memory): Handle additional
980 parameter COUNT, for pattern filling of memory regions.
981 * NEWS: Mention it.
982
983 2012-11-13 Markus Metzger <markus.t.metzger@intel.com>
984
985 * disasm.h (DISASSEMBLY_FILENAME): New macro.
986 * disasm.c (do_mixed_source_and_assembly): Pass filename flag on
987 to print_source_lines ().
988 * symtab.h (PRINT_SOURCE_LINES_FILENAME): New print source lines
989 flag.
990 * source.c (print_source_lines_base): Prefix source line with
991 filename if PRINT_SOURCE_LINES_FILENAME flag is set.
992
993 2012-11-13 Markus Metzger <markus.t.metzger@intel.com>
994
995 * symtab.h (print_source_lines_flags): New enum.
996 * source.c (print_source_lines_base): Change noerror to flags.
997 (print_source_lines): Change noerror to flags.
998
999 2012-11-13 Pierre Muller <muller@sourceware.org>
1000
1001 ARI fixes: Avoid sprintf function use rule.
1002 * charset.c (convert_between_encodings): Use xsnprintf.
1003 * cli-out.c (cli_field_int): Likewise.
1004 * cp-namespace.c (cp_lookup_nested_symbol): Likewise.
1005 * expprint.c (op_name_standard): Likewise.
1006 * frv-tdep.c (set_variant_num_gprs): Likewise.
1007 (set_variant_num_fprs): Likewise.
1008 * m68hc11-tdep.c (m68hc11_initialize_register_info): Likewise.
1009 * nto-tdep.c (nto_find_and_open_solib): Likewise.
1010 (nto_init_solib_absolute_prefix): Likewise.
1011 * source.c (init_source_path): Likewise.
1012 (print_source_lines_base): Likewise.
1013 * valprint.c (print_wchar): Likewise.
1014 * mi/mi-out.c (mi_field_int): Likewise.
1015 windows-nat.c (windows_pid_to_exec_file): Likewise.
1016 (windows_create_inferior): Likewise.
1017 (_initialize_check_for_gdb_ini): Likewise.
1018
1019 2012-11-12 Joel Brobecker <brobecker@adacore.com>
1020
1021 * frame.h (deprecated_frame_register_read): Renames
1022 frame_register_read.
1023 * frame.c (deprecated_frame_register_read): Renames
1024 frame_register_read. Update all callers.
1025 * i386-tdep.c: Update all callers of frame_register_read.
1026 * infcmd.c: Likewise.
1027 * jit.c: Likewise.
1028 * mips-tdep.c: Likewise.
1029 * mt-tdep.c: Likewise.
1030 * sh64-tdep.c: Likewise.
1031
1032 2012-11-12 Joel Brobecker <brobecker@adacore.com>
1033
1034 * frame.h (frame_register_read): Remove FIXME comment.
1035 * frame.c (frame_register_read): Add suggestion explaining
1036 which function to use in place of this one.
1037
1038 2012-11-12 Tom Tromey <tromey@redhat.com>
1039
1040 * python/python.c (start_type_printers): Initialize 'result_obj'.
1041
1042 2012-11-12 Tom Tromey <tromey@redhat.com>
1043
1044 * NEWS: Update.
1045 * data-directory/Makefile.in (PYTHON_FILES): Add
1046 type_printers.py.
1047 * python/lib/gdb/command/type_printers.py: New file.
1048 * python/lib/gdb/command/types.py (TypePrinter): New class.
1049 (_get_some_type_recognizers, get_type_recognizers,
1050 apply_type_recognizers, register_type_printer): New
1051 functions.
1052 * python/py-objfile.c (objfile_object) <type_printers>: New
1053 field.
1054 (objfpy_dealloc): Decref new field.
1055 (objfpy_new): Set new field.
1056 (objfpy_get_type_printers, objfpy_set_type_printers): New
1057 functions.
1058 (objfile_to_objfile_object): Set new field.
1059 (objfile_getset): Add "type_printers".
1060 * python/py-progspace.c (pspace_object) <type_printers>: New
1061 field.
1062 (pspy_dealloc): Decref new field.
1063 (pspy_new): Set new field.
1064 (pspy_get_type_printers, pspy_set_type_printers): New functions.
1065 (pspace_to_pspace_object): Set new field.
1066 (pspace_getset): Add "type_printers".
1067 * python/python.c (start_type_printers, apply_type_printers,
1068 free_type_printers): New functions.
1069 (_initialize_python): Set gdb.type_printers.
1070 * python/python.h (start_type_printers, apply_type_printers,
1071 free_type_printers): Declare.
1072 * typeprint.c (type_print_raw_options, default_ptype_flags):
1073 Update for new fields.
1074 (do_free_global_table, create_global_typedef_table,
1075 find_global_typedef): New functions.
1076 (find_typedef_in_hash): Use find_global_typedef.
1077 (whatis_exp): Use create_global_typedef_table. Change cleanup
1078 handling.
1079 * typeprint.h (struct type_print_options) <global_typedefs,
1080 global_printers>: New fields.
1081
1082 2012-11-12 Tom Tromey <tromey@redhat.com>
1083
1084 * c-typeprint.c (find_typedef_for_canonicalize,
1085 print_name_maybe_canonical): New functions.
1086 (c_print_type): Look up type name.
1087 (cp_type_print_derivation_info): Add flags argument. Use
1088 print_name_maybe_canonical.
1089 (cp_type_print_method_args): Add wrapping.
1090 (c_type_print_varspec_prefix): Use print_name_maybe_canonical.
1091 (c_type_print_template_args): New function.
1092 (c_type_print_base): Change wrapping. Use
1093 print_name_maybe_canonical.
1094 <TYPE_CODE_STRUCT>: Possibly create a typedef hash, and do
1095 type name lookups.
1096 * gdbtypes.c (types_equal): No longer static.
1097 * gdbtypes.h (types_equal): Declare.
1098 * typeprint.c (type_print_raw_options, default_ptype_flags):
1099 Update.
1100 (struct typedef_hash_table): New.
1101 (hash_typedef_field, eq_typedef_field,
1102 recursively_update_typedef_hash, add_template_parameters,
1103 create_typedef_hash, free_typedef_hash, do_free_typedef_hash,
1104 make_cleanup_free_typedef_hash, copy_typedef_hash_element,
1105 copy_typedef_hash, find_typedef_in_hash): New functions.
1106 * typeprint.h (struct type_print_options) <local_typedefs>:
1107 New field.
1108 (recursively_update_typedef_hash, add_template_parameters,
1109 create_typedef_hash, free_typedef_hash,
1110 make_cleanup_free_typedef_hash, copy_typedef_hash,
1111 find_typedef_in_hash): Declare.
1112
1113 2012-11-12 Tom Tromey <tromey@redhat.com>
1114
1115 * cp-support.c (inspect_type,
1116 replace_typedefs_qualified_name, replace_typedefs): Add
1117 finder, data arguments. Call as needed.
1118 (cp_canonicalize_string_full): New function.
1119 (cp_canonicalize_string_no_typedefs): Rewrite.
1120 * cp-support.h (canonicalization_ftype): New typedef.
1121 (cp_canonicalize_string_full): Declare.
1122
1123 2012-11-12 Tom Tromey <tromey@redhat.com>
1124
1125 * NEWS: Update.
1126 * c-typeprint.c (c_type_print_base): Handle print_method and
1127 print_typedefs flags.
1128 * gdbcmd.h (setprinttypelist, showprinttypelist): Declare.
1129 * python/py-type.c (typy_str): Use LA_PRINT_TYPE and raw
1130 options.
1131 * typeprint.c (type_print_raw_options, default_ptype_flags):
1132 Update for new field.s
1133 (whatis_exp): Parse flags. Use LA_PRINT_TYPE.
1134 (setprinttypelist, showprinttypelist, print_methods,
1135 print_typedefs): New globals.
1136 (set_print_type, show_print_type, set_print_type_methods,
1137 show_print_type_methods, set_print_type_typedefs,
1138 show_print_type_typedefs): New functions.
1139 (_initialize_typeprint): Update documentation. Add "print
1140 type methods" and "print type typedefs" parameters.
1141 * typeprint.h (struct type_print_options) <print_methods,
1142 print_typedefs>: New fields.
1143
1144 2012-11-12 Tom Tromey <tromey@redhat.com>
1145
1146 * c-typeprint.c (cp_type_print_method_args): Add flags
1147 argument. Call c_print_type, not type_print.
1148 (c_type_print_base): Call c_print_type, not type_print.
1149 Update.
1150
1151 2012-11-12 Tom Tromey <tromey@redhat.com>
1152
1153 * ada-lang.c (user_select_syms, ada_print_subexp): Pass flags
1154 to type-printing functions.
1155 * ada-lang.h (ada_print_type): Add argument.
1156 * ada-typeprint.c (print_array_type, print_variant_clauses,
1157 print_variant_part, print_selected_record_field_types,
1158 print_record_field_types, print_unchecked_union_type,
1159 print_func_type, ada_print_type): Add flags argument.
1160 (ada_print_typedef): Update.
1161 * c-exp.y (OPERATOR conversion_type_id): Update.
1162 * c-lang.h (c_print_type, c_type_print_base): Update.
1163 * c-typeprint.c (c_print_type, c_type_print_varspec_prefix,
1164 c_type_print_modifier, c_type_print_args,
1165 c_type_print_varspec_suffix, c_type_print_base): Add flags
1166 argument.
1167 * cp-valprint.c (cp_print_class_member): Update.
1168 * dwarf2read.c (dwarf2_compute_name): Update.
1169 * f-lang.h (f_print_type): Add argument.
1170 * f-typeprint.c (f_print_type): Add flags argument.
1171 * gnu-v3-abi.c (gnuv3_print_method_ptr): Update.
1172 * go-lang.h (go_print_type): Add argument.
1173 * go-typeprint.c (go_print_type): Add flags argument.
1174 * jv-lang.h (java_print_type): Add argument.
1175 * jv-typeprint.c (java_type_print_base, java_print_type): Add
1176 flags argument.
1177 * language.c (unk_lang_print_type): Add flags argument.
1178 * language.h (struct language_defn) <la_print_type>: Add flags
1179 argument.
1180 (LA_PRINT_TYPE): Likewise.
1181 * m2-lang.h (m2_print_type): Add argument.
1182 * m2-typeprint.c (m2_print_type, m2_range, m2_typedef,
1183 m2_array, m2_pointer, m2_ref, m2_procedure, m2_long_set,
1184 m2_unbounded_array, m2_record_fields): Add flags argument.
1185 * p-lang.h (pascal_print_type, pascal_type_print_base,
1186 pascal_type_print_varspec_prefix): Add argument.
1187 * p-typeprint.c (pascal_print_type,
1188 pascal_type_print_varspec_prefix, pascal_print_func_args,
1189 pascal_type_print_varspec_suffix, pascal_type_print_base): Add
1190 flags argument.
1191 * symmisc.c (print_symbol): Update.
1192 * typeprint.c (type_print_raw_options, default_ptype_flags):
1193 New globals.
1194 (type_print): Update.
1195 * typeprint.h (struct type_print_options): New.
1196 (type_print_raw_options): Declare.
1197 (c_type_print_varspec_suffix, c_type_print_args): Add argument.
1198
1199 2012-11-10 Keith Seitz <keiths@redhat.com>
1200
1201 * breakpoint.c (clear_command): Add cleanup for
1202 sals.sals if an argument is given.
1203
1204 * linespec.c (parse_linespec): Do cleanups after
1205 parsing a convenience variable.
1206
1207 2012-11-10 Keith Seitz <keiths@redhat.com>
1208
1209 PR gdb/14288
1210 * c-valprint.c (c_val_print): For character arrays
1211 with "print null" option on, print ellipses if
1212 the output is truncated and the next character is not \000.
1213 * valprint.c (MAX_WCHARS): Define.
1214 (WCHAR_BUFLEN): Likewise.
1215 (WCHAR_BUFLEN_MAX): Likewise.
1216 (struct converted_character): New structure.
1217 (count_next_character): New function.
1218 (print_converted_chars_to_obstack): New function.
1219 (generic_printstr): Rewrite using count_next_character
1220 and print_converted_chars_to_obstack.
1221
1222 2012-11-10 Stephane Carrez <Stephane.Carrez@gmail.com>
1223
1224 * tui/tui.c (tui_rl_command_key): Switch to TUI_ONE_COMMAND_MODE
1225 while executing the gdb command.
1226 (tui_rl_startup_hook): Do not switch back to TUI_SINGLE_KEY_MODE if we
1227 are called from prompt_for_continue.
1228 * tui/tui-io.c (tui_redisplay_readline): Likewise.
1229
1230 2012-11-10 Stephane Carrez <Stephane.Carrez@gmail.com>
1231
1232 PR tui/9584
1233
1234 * tui/tui.c (tui_rl_command_key): Do not call execute_command
1235 but insert the command to execute in readline's buffer.
1236
1237 2012-11-09 Tom Tromey <tromey@redhat.com>
1238
1239 * gdbarch.sh (target_gdbarch): Remove macro.
1240 (get_target_gdbarch): Rename to target_gdbarch.
1241 * gdbarch.c, gdbarch.h: Rebuild.
1242 * ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
1243 arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
1244 darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
1245 filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
1246 ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
1247 linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
1248 mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
1249 mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
1250 nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
1251 procfs.c, progspace.c, ravenscar-thread.c, record.c,
1252 remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
1253 rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
1254 solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
1255 solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
1256 solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
1257 spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
1258 target-descriptions.c, target.c, target.h, tracepoint.c,
1259 windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
1260 common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
1261 python/py-inferior.c, python/python.c: Update.
1262
1263 2012-11-09 Andrew Burgess <aburgess@broadcom.com>
1264
1265 * source.c (print_source_lines_base): Add fullname field giving
1266 full path to file in mi output.
1267 * NEWS: Mention the new fullname field.
1268
1269 2012-11-09 Yao Qi <yao@codesourcery.com>
1270
1271 * NEWS: Mention the fix to the ambiguity of 'fo' command.
1272
1273 2012-11-09 Pedro Alves <palves@redhat.com>
1274
1275 PR gdb/14306
1276
1277 * infrun.c: Include target-descriptions.h.
1278 (follow_exec): Fetch new target description.
1279
1280 2012-11-09 Yao Qi <yao@codesourcery.com>
1281
1282 * i386-tdep.c (i386_analyze_frame_setup): Handle opcode
1283 0x8d (lea).
1284
1285 2012-11-09 Yao Qi <yao@codesourcery.com>
1286
1287 * breakpoint.c: Declare set_tracepoint_count.
1288 (install_breakpoint): Call set_tracepoint_count if B is a
1289 tracepoint.
1290 (trace_command): Don't call set_tracepoint_count. Re-indent.
1291 (strace_command, ftrace_command):
1292 (create_tracepoint_from_upload): Likewise.
1293
1294 2012-11-09 Pedro Alves <palves@redhat.com>
1295
1296 * gdbarch.sh (target_gdbarch) <gdbarch.h>: Reimplement as macro.
1297 (get_target_gdbarch) <gdbarch.h>: New function.
1298 (startup_gdbarch) <gdbarch.h>: Declare.
1299 <gdbarch.c> (target_gdbarch): Delete.
1300 <gdbarch.c> (deprecated_target_gdbarch_select_hack): Set the
1301 current inferior's gdbarch.
1302 <gdbarch.c> (get_target_gdbarch): New function.
1303 * inferior.c: Include target-descriptions.h.
1304 (free_inferior): Free target description info.
1305 (add_inferior_with_spaces): Set the inferior's initial
1306 architecture.
1307 (clone_inferior_command): Copy the original inferior's target
1308 description if it was user specified.
1309 (initialize_inferiors): Add comment.
1310 * inferior.h (struct target_desc_info): Forward declare.
1311 (struct inferior) <gdbarch>: New field.
1312 * linux-nat.c: Include target-descriptions.h.
1313 (linux_child_follow_fork): Copy the parent's architecture and
1314 target description to the child.
1315 * target-descriptions.c: Include inferior.h.
1316 (struct target_desc_info): New structure, holding the equivalents
1317 of ...
1318 (target_desc_fetched, current_target_desc)
1319 (target_description_filename): ... these removed globals.
1320 (get_tdesc_info, target_desc_info_from_user_p)
1321 (copy_inferior_target_desc_info, target_desc_info_free): New.
1322 (target_desc_fetched, current_target_desc)
1323 (target_description_filename): Reimplemented as convenience
1324 macros.
1325 (tdesc_filename_cmd_string): New global.
1326 (set_tdesc_filename_cmd): Copy the string manipulated by the "set
1327 tdescs filename ..." commands to the per-inferior equivalent.
1328 (show_tdesc_filename_cmd): Get the value to show from the
1329 per-inferior description filename.
1330 (_initilize_target_descriptions): Change the "set/show tdesc
1331 filename" commands' variable.
1332 * target-descriptions.h (struct target_desc, struct target_desc_info)
1333 (struct inferior): Forward declare.
1334 (target_find_description, target_clear_description)
1335 (target_current_description): Adjust comments.
1336 (copy_inferior_target_desc_info, target_desc_info_free)
1337 (target_desc_info_from_user_p). Declare.
1338
1339 2012-11-08 Stephane Carrez <Stephane.Carrez@gmail.com>
1340
1341 * tui/tui-hooks.c (tui_about_to_proceed): New function.
1342 (tui_target_wait_hook): Remove.
1343 (tui_install_hooks): Install the about_to_proceed observer.
1344 (tui_remove_hooks): And remove it here.
1345
1346 2012-11-08 Tom Tromey <tromey@redhat.com>
1347
1348 * linux-tdep.c (linux_make_siginfo_note): New function.
1349 (linux_make_corefile_notes): Use it.
1350 * corelow.c (get_core_siginfo): New function.
1351 (core_xfer_partial) <TARGET_OBJECT_SIGNAL_INFO>: New case.
1352
1353 2012-11-08 Tom Tromey <tromey@redhat.com>
1354
1355 PR gdb/14704:
1356 * gdb_bfd.c (gdb_bfd_ref): Set BFD_DECOMPRESS.
1357 (zlib_decompress_section): Remove.
1358 (gdb_bfd_map_section): Only check for compressed section
1359 in mmap case. Use bfd_get_full_section_contents.
1360 * osabi.c (check_note): Add 'sectsize' argument. Read
1361 section data.
1362 (generic_elf_osabi_sniff_abi_tag_sections): Don't read
1363 section data. Update for check_note change.
1364 * xcoffread.c (xcoff_initial_scan): Use
1365 bfd_get_full_section_contents.
1366 * py-auto-load.c (auto_load_section_scripts): Use
1367 bfd_get_full_section_contents.
1368 * contrib/cc-with-tweaks.sh: Add -Z option.
1369
1370 2012-11-08 Tom Tromey <tromey@redhat.com>
1371
1372 * python/py-bpevent.c: Include defs.h.
1373 * python/py-continueevent.c: Include defs.h.
1374 * python/py-event.c: Include defs.h.
1375 * python/py-event.h: Don't include defs.h.
1376 * python/py-events.h: Don't include defs.h.
1377 * python/py-evts.c: Include defs.h.
1378 * python/py-exitedevent.c: Include defs.h.
1379 * python/py-newobjfileevent.c: Include defs.h.
1380 * python/py-signalevent.c: Include defs.h.
1381 * python/py-stopevent.c: Include defs.h.
1382 * python/py-threadevent.c: Include defs.h.
1383
1384 2012-11-08 Pierre Muller <muller@sourceware.org>
1385
1386 * update-web-ari.sh (print_heading): Add number of files
1387 checked.
1388 (nb_files): New variable counting the number of sources
1389 files found by gdb_find.sh script.
1390 (debug_awk): New variable to allow extra debug output.
1391 (indexes): Add more information if DEBUG_AWK is set.
1392
1393 2012-11-08 Edjunior Machado <emachado@linux.vnet.ibm.com>
1394
1395 * ppc-linux-tdep.c (ppc64_standard_linkage1, ppc64_standard_linkage2,
1396 ppc64_standard_linkage3): Mark ld r11 instructions as optional,
1397 following the change in PLT call stubs on linker.
1398
1399 2012-11-08 Pierre Muller <muller@sourceware.org>
1400
1401 * contrib/ari/gdb_ari.sh (LANG, LC_ALL): Use 'C' instead of 'c'
1402 as default language.
1403 (AWK): Use = instead of == for sh test to avoid warning.
1404 (Linux rule): Correct [:digit] into [[:digit:]].
1405 (__func__ rule): Adapt to "gdb_assert.h" move to common subdirectory.
1406 (vasprintf rule): Adapt to common subdirectory moves.
1407 (xasprintf rule): Idem.
1408 (xvasprintf rule): Idem.
1409 (var_boolean rule): Accept occurence in == or != test.
1410
1411 * contrib/ari/gdb_find.sh: Also prune gdbtk directory.
1412
1413 2012-11-08 Stephane Carrez <Stephane.Carrez@gmail.com>
1414
1415 * tui/tui-hooks.c (tui_inferior_exit): New function.
1416 (tui_detach_hook): Remove.
1417 (tui_install_hooks): Install the inferior exit observer.
1418 (tui_remove_hooks): Remove it.
1419
1420 2012-11-08 Yao Qi <yao@codesourcery.com>
1421
1422 PR gdb/14777.
1423 * source.c (_initialize_source): Call add_com_alias to abbreviate
1424 'forward-search' as 'fo'.
1425
1426 2012-11-07 Pedro Alves <palves@redhat.com>
1427
1428 * arm-tdep.c: Make defs.h be the first include.
1429 * coff-pe-read.c: Ditto.
1430 * gnu-nat.c: Ditto.
1431 * go32-nat.c: Ditto.
1432 * i386-nat.c: Ditto.
1433 * ppcnbsd-nat.c: Ditto.
1434 * ada-varobj.h: Don't include defs.h.
1435 * i386-darwin-tdep.h: Ditto.
1436 * i386-nat.h: Ditto.
1437
1438 2012-11-07 Pedro Alves <palves@redhat.com>
1439
1440 * MAINTAINERS: New FSF-appointed maintainers replace the Steering
1441 Committee.
1442
1443 2012-11-07 Pierre Muller <muller@sourceware.org>
1444
1445 * common/linux-osdata.c (dirent.h): ARI fix: Remove.
1446 File already uses "gdb_dirent.h" header.
1447
1448 2012-11-07 Yao Qi <yao@codesourcery.com>
1449
1450 * breakpoint.c (get_tracepoint_by_number): Remove 'extern int
1451 tracepoint_count'.
1452
1453 2012-11-06 Tom Tromey <tromey@redhat.com>
1454
1455 * target.h (inferior_has_forked, inferior_has_vforked)
1456 (inferior_has_execd, inferior_has_called_syscall): Remove
1457 declarations.
1458
1459 2012-11-06 Pierre Muller <muller@sourceware.org>
1460
1461 * remote.c (remote_insert_hw_breakpoint): ARI fix,
1462 add missing internalization markup.
1463
1464 2012-11-06 Pedro Alves <palves@redhat.com>
1465
1466 PR gdb/14810
1467
1468 * breakpoint.c (bpstat_stop_status): Skip disabled locations.
1469
1470 2012-11-06 Pierre Muller <muller@sourceware.org>
1471
1472 * contrib/ari/create-web-ari-in-src.sh: Avoid problem if script
1473 is not executable.
1474
1475 2012-11-05 Joel Brobecker <brobecker@adacore.com>
1476
1477 * gnulib/update-gnulib.sh: New script.
1478
1479 2012-11-05 Stephane Carrez <Stephane.Carrez@gmail.com>
1480
1481 * MAINTAINERS: Update my email address.
1482
1483 2012-11-05 Tom Tromey <tromey@redhat.com>
1484
1485 * frame.c (put_frame_register): Don't use temporary buffer.
1486
1487 2012-11-05 Pedro Alves <palves@redhat.com>
1488
1489 * inferior.c (exit_inferior_1): Clear 'vfork_parent' in the vfork
1490 child. Clear 'pending_detach'.
1491 * infrun.c (handle_vfork_child_exec_or_exit): Clear
1492 'pending_detach' in the vfork parent.
1493
1494 2012-11-05 Doug Evans <dje@google.com>
1495
1496 Add support for DWP files. http://gcc.gnu.org/wiki/DebugFissionDWP
1497 * contrib/cc-with-tweaks.sh: Add -p parameter to invoke dwp.
1498 * dwarf2read.c: #include "elf-bfd.h".
1499 (struct dwarf2_per_objfile): New members dwp_checked, dwp_file.
1500 (dwop_section_names): Renamed from dwo_section names. All uses
1501 updated. Add entries for .debug_cu_index, .debug_tu_index.
1502 (struct dwo_file): Rename dwo_name to name, dwo_bfd to dbfd.
1503 All uses updated.
1504 (struct dwp_sections): New type.
1505 (struct virtual_dwo_sections): New type.
1506 (struct dwp_hash_table): New type.
1507 (struct dwp_file): New type.
1508 (init_cutu_and_read_dies): Ensure DWO info/types section has been
1509 read in. Handle DWOs coming from DWP files.
1510 (lookup_dwo_file_slot): New function.
1511 (dwarf2_locate_dwo_sections): Move definition closer to use.
1512 (create_dwo_debug_info_hash_table_reader): Renamed from
1513 create_debug_info_hash_table_reader. All callers updated.
1514 (create_dwo_debug_info_hash_table): Renamed from
1515 create_debug_info_hash_table. All callers updated.
1516 (create_dwp_hash_table): New function.
1517 (locate_virtual_dwo_sections, create_dwo_in_dwp): New functions.
1518 (lookup_dwo_in_dwp): New function.
1519 (try_open_dwop_file): Renamed from try_open_dwo_file. New parameter
1520 is_dwp. All callers updated.
1521 (open_dwop_file): Renamed from open_dwo_file. All callers updated.
1522 (open_and_init_dwo_file): Renamed from init_dwo_file.
1523 All callers updated.
1524 (lookup_dwo_file): Delete.
1525 (dwarf2_locate_dwp_sections): New function.
1526 (hash_dwp_loaded_cutus, eq_dwp_loaded_cutus): New functions.
1527 (allocate_dwp_loaded_cutus_table): New function.
1528 (open_and_init_dwp_file): New function.
1529 (lookup_dwo_cutu): New function.
1530 (lookup_dwo_comp_unit, lookup_dwo_type_unit): Call it.
1531
1532 2012-11-03 Yao Qi <yao@codesourcery.com>
1533
1534 Fix PR gdb/14617.
1535 * breakpoint.c (trace_pass_set_count): Call
1536 observer_notify_breakpoint_modified instead of
1537 observer_notify_tracepoint_modified.
1538 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
1539
1540 2012-11-02 Tom Tromey <tromey@redhat.com>
1541
1542 * breakpoint.c (catch_syscall_completer): Pass 'word' as second
1543 argument to complete_on_enum.
1544
1545 2012-11-02 Tom Tromey <tromey@redhat.com>
1546
1547 * configure: Rebuild.
1548 * configure.ac (build_warnings): Add -Wempty-body.
1549 * m68k-tdep.c (m68k_gdbarch_init): Remove empty 'if'.
1550 * remote.c (handle_notification): Use braces for empty 'else' body.
1551 * s390-tdep.c (s390_analyze_prologue): Use braces for empty
1552 'else' body.
1553 * sh64-tdep.c (sh64_push_dummy_call): Use braces for empty
1554 'else' body.
1555 * solib-som.c (som_relocate_section_addresses): Use braces
1556 for empty 'else' body.
1557 * ui-file.c (stdio_file_write): Use braces for empty 'if' body.
1558 (stdio_file_write_async_safe, stdio_file_fputs): Likewise.
1559
1560 2012-11-02 Pedro Alves <palves@redhat.com>
1561
1562 PR gdb/14766
1563
1564 * infrun.c (handle_inferior_event)
1565 <TARGET_WAITKIND_EXITED/TARGET_WAITKIND_SIGNALLED>: Switch to
1566 null_ptid before handling a vfork child exec or exit. Switch to
1567 the event ptid afterwards.
1568
1569 2012-11-02 Yao Qi <yao@codesourcery.com>
1570
1571 * std-operator.def: Remove OP_LABELED.
1572 * eval.c: Remove the declaration of 'get_label'.
1573 (get_label): Remove.
1574 (evaluate_struct_tuple): Remove code handling OP_LABELED.
1575 Update comment.
1576 Remove local variable 'variantno' and related code.
1577 Replace 'substruct_type' with 'struct_type'. Replace 'subfieldno'
1578 with 'fieldno'.
1579 * expprint.c (print_subexp_standard): Likewise.
1580 (dump_subexp_body_standard): Likewise.
1581 * parse.c (operator_length_standard): Likewise.
1582
1583 2012-11-01 Pierre Muller <muller@ics.u-strasbg.fr>
1584
1585 Incorporate ARI web page generator into GDB sources.
1586 * contrib/ari/create-web-ari-in-src.sh: New file.
1587 * contrib/ari/gdb_ari.sh: New file.
1588 * contrib/ari/gdb_find.sh: New file.
1589 * contrib/ari/update-web-ari.sh: New file.
1590
1591 2012-10-31 Tom Tromey <tromey@redhat.com>
1592
1593 * gdbarch.c: Rebuild.
1594 * gdbarch.sh: Remove references to gdbarch_swap.
1595 * corelow.c (core_open): Remove obsolete comment.
1596
1597 2012-10-31 Andrew Burgess <aburgess@broadcom.com>
1598
1599 PR cli/14772
1600 * c-typeprint.c (c_print_type): Don't print a space for vector
1601 types, this is handled within the suffix.
1602 (c_type_print_varspec_suffix): Add a space to vector suffix.
1603
1604 2012-10-26 Pedro Alves <palves@redhat.com>
1605
1606 * amd64-tdep.c (amd64_relocate_instruction): Use
1607 store_unsigned_integer instead of memcpy.
1608 * i386-tdep.c (i386_relocate_instruction): Ditto.
1609
1610 2012-10-26 Pedro Alves <palves@redhat.com>
1611
1612 * infrun.c (handle_inferior_event): Merge handling of
1613 TARGET_WAITKIND_EXITED and TARGET_WAITKIND_SIGNALLED into a single
1614 switch case.
1615
1616 2012-10-26 Pedro Alves <palves@redhat.com>
1617
1618 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_SIGNALLED>:
1619 Remove comment.
1620
1621 2012-10-26 Pedro Alves <palves@redhat.com>
1622
1623 * target.c (target_waitstatus_to_string): Handle
1624 TARGET_WAITKIND_VFORK_DONE.
1625
1626 2012-10-26 Pedro Alves <palves@redhat.com>
1627
1628 * infrun.c (handle_inferior_event): Print TARGET_WAITKIND_VFORKED
1629 as "TARGET_WAITKIND_VFORKED", not "TARGET_WAITKIND_FORKED".
1630
1631 2012-10-24 Tristan Gingold <gingold@adacore.com>
1632
1633 * ravenscar-sparc-thread.c (ravenscar_sparc_fetch_registers):
1634 Add comments.
1635
1636 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1637
1638 * ravenscar-thread.c (ravenscar_wait): Only update the list
1639 of threads and inferior_ptid if the inferior is still alive.
1640
1641 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1642
1643 * ada-lang.c (is_known_support_routine): Use lbasename when
1644 matching the symtab's filename against
1645 known_runtime_file_name_patterns.
1646
1647 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1648
1649 * ada-lang.c (ada_same_array_size_p): New function.
1650 (ada_promote_array_of_integrals): New function.
1651 (coerce_for_assign): Add handling of arrays where the elements
1652 are integrals of a smaller size than the size of the target
1653 array element type.
1654
1655 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1656
1657 * doublest.c (convert_doublest_to_floatformat): Fix comparison
1658 against maximum exponent value.
1659
1660 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1661
1662 * ada-lang.h (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Add entry for
1663 "unwind-seh.c".
1664
1665 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1666
1667 * ada-lang.c (ada_template_to_fixed_record_type_1): Do not
1668 strip typedef layer when computing the fixed type's field type,
1669 only when computing its size.
1670
1671 2012-10-24 Mark Kettenis <kettenis@gnu.org>
1672
1673 PR gdb/12783
1674 * i386-tdep.c (i386_return_value): Handle complex double and long
1675 double.
1676
1677 2012-10-24 Joel Brobecker <brobecker@adacore.com>
1678
1679 * windows-nat.c (windows_create_inferior) [!__CYGWIN__]:
1680 New local variable args_len.
1681 Quote the name of the executable when computing the command line.
1682
1683 2012-10-23 Mark Kettenis <kettenis@gnu.org>
1684
1685 PR gdb/12796
1686 PR gdb/12798
1687 PR gdb/12800
1688 * amd64-tdep.h (enum amd64_regnum): Add AMD64_ST1_REGNUM and
1689 AMD64_FTAG_REGNUM.
1690 * amd64-tdep.c (amd64_classify): Classify complex types.
1691 (amd64_return_value): Handle the COMPLEX_X87 class.
1692
1693 2012-10-23 Joel Brobecker <brobecker@adacore.com>
1694
1695 * rs6000-aix-tdep.c (rs6000_aix_auto_wide_charset): New function.
1696 (rs6000_aix_init_osabi): Set auto_wide_charset gdbarch method.
1697
1698 2012-10-23 Joel Brobecker <brobecker@adacore.com>
1699
1700 * amd64-windows-tdep.c (amd64_windows_auto_wide_charset): New
1701 function.
1702 (amd64_windows_init_abi): Set auto_wide_charset gdbarch method
1703 to amd64_windows_auto_wide_charset.
1704
1705 2012-10-23 Yao Qi <yao@codesourcery.com>
1706
1707 * event-top.c (mark_async_signal_handler_wrapper): Remove.
1708 * event-top.h: Remove its declaration.
1709 (async_request_quit): Call mark_async_signal_handler instead of
1710 mark_async_signal_handler_wrapper.
1711 (async_do_nothing, async_disconnect): Likewise.
1712 (async_stop_sig): Likewise.
1713 * remote.c (handle_remote_sigint): Likewise.
1714 (handle_remote_sigint_twice): Likewise.
1715
1716 2012-10-23 Yao Qi <yao@codesourcery.com>
1717
1718 * event-top.c (sigint_token, sighup_token): Replace 'void *'
1719 with 'static struct async_signal_handler *'.
1720 (sighup_token, sigquit_token, sigstp_token): Likewise.
1721
1722 2012-10-22 Ali Anwar <ali_anwar@codesourcery.com>
1723
1724 * gdbarch.sh (function_list): Use 'pstring' when printing
1725 a variable which could return NULL.
1726 * gdbarch.c: Regenerate.
1727
1728 2012-10-10 Joel Brobecker <brobecker@adacore.com>
1729 Tom Tromey <tromey@redhat.com>
1730
1731 * rs6000-aix-tdep.c (rs6000_aix_osabi_sniffer): Replace
1732 inneffective if condition by gdb assertion. Add function
1733 description comment.
1734
1735 2012-10-19 Joel Brobecker <brobecker@adacore.com>
1736
1737 * parser-defs.h (struct exp_descriptor): Document constraint
1738 on return value for "op_name" callbacks.
1739
1740 2012-10-18 Tom Tromey <tromey@redhat.com>
1741
1742 * tracepoint.c (print_one_static_tracepoint_marker): Constify.
1743 * symtab.c (iterate_over_some_symtabs): Constify.
1744 * source.h (symtab_to_fullname): Return 'const char *'.
1745 * source.c (symtab_to_fullname): Return 'const char *'.
1746 * python/py-symtab.c (stpy_fullname): Constify.
1747 * cli/cli-cmds.c (edit_command): Constify.
1748 * breakpoint.c (print_breakpoint_location)
1749 (update_static_tracepoint): Constify.
1750
1751 2012-10-18 Tom Tromey <tromey@redhat.com>
1752
1753 * breakpoint.c (compare_breakpoints): Fix comparison.
1754
1755 2012-10-18 Tom Tromey <tromey@redhat.com>
1756
1757 * valprint.c (generic_emit_char, generic_printstr): Pass size of
1758 gdb_wchar_t to convert_between_encodings.
1759
1760 2012-10-17 Yao Qi <yao@codesourcery.com>
1761
1762 * breakpoint.c (invalidate_bp_value_on_memory_change): Add one
1763 more parameter 'inferior'.
1764 * corefile.c (write_memory_with_notification): Caller update.
1765
1766 * mi/mi-cmd-var.c: Include "mi-main.h".
1767 (mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
1768 to 1 and restore it later.
1769 * mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
1770 and "data-write-memory-bytes.
1771 * mi/mi-interp.c: Include objfiles.h.
1772 (mi_interpreter_init): Call observer_attach_memory_changed.
1773 (mi_memory_changed): New.
1774 * mi/mi-main.h (struct mi_suppress_notification) <memory>:
1775 New field.
1776
1777 * NEWS: Mention new MI notification "memory-changed".
1778
1779 2012-10-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1780
1781 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Remove comment.
1782
1783 2012-10-15 Doug Evans <dje@google.com>
1784
1785 New option -nh: inhibit loading of ~/.gdbinit.
1786 * NEWS: Mention -nh.
1787 * main.c (captured_main): Recognize and process -nh.
1788 (print_gdb_help): Mention -nh.
1789 * gdb.1: Mention -nh. Remove erroneous docs on -nx behavior.
1790
1791 2012-10-15 H.J. Lu <hongjiu.lu@intel.com>
1792
1793 PR backtrace/14646
1794 PR gdb/14647
1795 * i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
1796 pc_regnum_from_eax.
1797 * i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
1798 nor pc_regnum_from_eax.
1799 * amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
1800 nor pc_regnum_from_eax.
1801
1802 2012-10-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1803
1804 Fix entry values resolving in inlined frames.
1805 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
1806 gdbarch and caller_frame initialization later. Skip INLINE_FRAME
1807 entries of FRAME.
1808
1809 2012-10-15 Joel Brobecker <brobecker@adacore.com>
1810
1811 * configure.ac: Build with -DMS_WIN64 if building with Python
1812 enabled using GCC on amd64-windows.
1813 * configure: Regenerate.
1814
1815 2012-10-15 Tom Tromey <tromey@redhat.com>
1816
1817 PR python/14635:
1818 * python/py-symtab.c (del_objfile_sal): Set 'symtab' field
1819 to Py_None.
1820
1821 2012-10-15 Tom Tromey <tromey@redhat.com>
1822
1823 PR python/14634:
1824 * python/py-symbol.c (sympy_dealloc): Check for NULL symbol.
1825
1826 2012-10-11 Andrew Burgess <aburgess@broadcom.com>
1827
1828 * remote-sim.c (gdbsim_create_inferior): Call init_thread_list to
1829 reset thread numbering back to 1.
1830
1831 2012-10-11 Doug Evans <dje@google.com>
1832
1833 PR breakpoints/14643.
1834 * linespec.c (struct ls_parser): New member keyword_ok.
1835 (linespec_lexer_lex_string): Add comment.
1836 (linespec_lexer_lex_one): Ignore keywords if it's the wrong place
1837 for one.
1838 (parse_linespec): Set keyword_ok.
1839
1840 2012-10-10 Doug Evans <dje@google.com>
1841
1842 * dwarf2read.c (process_psymtab_comp_unit_reader): Remove duplicate
1843 "0x" prefix on address in log message.
1844
1845 * dwarf2read.c (read_1_byte): Add const to buf parameter.
1846 (read_1_signed_byte, read_2_bytes, read_2_signed_bytes): Ditto.
1847 (read_4_bytes, read_4_signed_bytes, read_8_bytes): Ditto.
1848 (lookup_dwo_file): Add const to dwo_name parameter.
1849 (lookup_dwo_comp_unit, lookup_dwo_type_unit): Ditto.
1850
1851 2012-10-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1852
1853 Fix crash during stepping on ppc32.
1854 * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL
1855 SYM.
1856
1857 2012-10-03 Doug Evans <dje@google.com>
1858
1859 PR symtab/14601
1860 * buildsym.c (buildsym_init): Reset using_directives to NULL.
1861
1862 2012-10-02 Andrew Burgess <aburgess@broadcom.com>
1863
1864 * remote-sim.c (dump_mem): Always dump buffer contents, zero fill
1865 output and use uint32_t not long to ensure 4 byte size.
1866
1867 2012-10-02 Joel Brobecker <brobecker@adacore.com>
1868
1869 * rs6000-nat.c (add_vmap): Set "last" to "next" after having
1870 unref'ed it.
1871
1872 2012-10-01 Andrew Burgess <aburgess@broadcom.com>
1873
1874 * target.c (simple_search_memory): Include access length in
1875 warning message.
1876
1877 2012-09-28 Nathan Miller <nathanm2@us.ibm.com>
1878 Edjunior Machado <emachado@linux.vnet.ibm.com>
1879
1880 PR gdb/13989
1881 * solib.c (solib_find): Prevent GDB from loading native libraries when
1882 debugging a cross-target corefile.
1883
1884 2012-09-28 selven <pcthegreat@gmail.com>
1885
1886 Make definition match declaration.
1887
1888 * regcache.c (regcache_register_status): Change return type to
1889 enum register_status.
1890
1891 2012-09-28 Yao Qi <yao@codesourcery.com>
1892
1893 * mi/mi-main.c (mi_cmd_data_write_memory): Call
1894 write_memory_with_notification instead of write_memory.
1895 (mi_cmd_data_write_memory_bytes): Call write_memory_with_notification
1896 instead of target_write_memory.
1897
1898 2012-09-28 Yao Qi <yao@codesourcery.com>
1899
1900 * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Emit error
1901 when the length of content is not an even number.
1902
1903 2012-09-27 Tom Tromey <tromey@redhat.com>
1904
1905 Fix https://bugzilla.redhat.com/show_bug.cgi?id=849357
1906 * cp-valprint.c (cp_print_value_fields): Use get_vptr_fieldno.
1907
1908 2012-09-27 Joel Brobecker <brobecker@adacore.com>
1909
1910 * sol-thread.c (sol_thread_fetch_registers)
1911 (sol_thread_store_registers): Delete commented out code.
1912
1913 2012-09-27 Joel Brobecker <brobecker@adacore.com>
1914
1915 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
1916 Move these functions to sparc-sol-thread.c.
1917 * sparc-sol-thread.c: New file.
1918 * configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and
1919 sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native
1920 configurations.
1921 * configure: Regenerate.
1922
1923 2012-09-27 Joel Brobecker <brobecker@adacore.com>
1924
1925 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
1926 Remove commented-out code.
1927
1928 2012-09-27 Joel Brobecker <brobecker@adacore.com>
1929
1930 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
1931 Enable this code for sparc hosts only.
1932
1933 2012-09-27 Joel Brobecker <brobecker@adacore.com>
1934
1935 * procfs.h (procfs_find_LDT_entry): Add declaration.
1936 * sol-thread.c (ps_lgetLDT): Delete local declaration of
1937 function procfs_find_LDT_entry.
1938
1939 2012-09-27 Joel Brobecker <brobecker@adacore.com>
1940
1941 * procfs.c (proc_get_LDT_entry): Make static.
1942
1943 2012-09-27 Joel Brobecker <brobecker@adacore.com>
1944
1945 * procfs.c (proc_find_memory_regions): Fix declaration.
1946
1947 2012-09-27 Siddhesh Poyarekar <siddhesh@redhat.com>
1948
1949 * amd64-tdep.c (amd64_return_value): Revert previous change
1950 that used TYPE_LENGTH directly.
1951 * bfin-tdep.c (bfin_extract_return_value): Likewise.
1952 (bfin_store_return_value): Likewise.
1953 * cris-tdep.c (cris_store_return_value): Likewise.
1954 (cris_extract_return_value): Likewise.
1955 * h8300-tdep.c (h8300_extract_return_value): Likewise.
1956 * hppa-tdep.c (hppa64_return_value): Likewise.
1957 * lm32-tdep.c (lm32_store_return_value): Likewise.
1958 * microblaze-tdep.c (microblaze_store_return_value): Likewise.
1959 * spu-tdep.c (spu_value_from_register): Likewise.
1960 * vax-tdep.c (vax_return_value): Likewise.
1961
1962 2012-09-27 Siddhesh Poyarekar <siddhesh@redhat.com>
1963
1964 * gdbtypes.c (lookup_array_range_type): Expand parameters
1965 LOW_BOUND and HIGH_BOUND to LONGEST.
1966 (lookup_string_range_type): Likewise.
1967 * gdbtypes.h (lookup_array_range_type): Likewise.
1968 (lookup_string_range_type): Likewise.
1969 * valops.c (value_cstring): Expand parameter LEN to ssize_t.
1970 Expand HIGHBOUND to ssize_t.
1971 (value_string): Likewise.
1972 * value.h (value_cstring): Expand parameter LEN to ssize_t.
1973 (value_string): Likewise.
1974
1975 2012-09-27 Yao Qi <yao@codesourcery.com>
1976
1977 PR breakpoints/13898
1978 * breakpoint.h (tracepoint_breakpoint_ops): Forward declaration.
1979 * mi/mi-cmd-break.c (mi_cmd_break_insert): Set breakpoint_ops
1980 per breakpoint type.
1981
1982 2012-09-26 Pierre Muller <muller@ics.u-strasbg.fr>
1983
1984 * procfs.c: Add gdb_bfd header.
1985 * rs6000-nat.c: Likewise.
1986 * solib-pa64.c: Likewise.
1987 * spu-linux-nat.c: Likewise.
1988 * windows-nat.c: Likewise.
1989
1990 2012-09-26 Tom Tromey <tromey@redhat.com>
1991
1992 * f-lang.h (BLANK_COMMON_NAME_LOCAL): Remove.
1993
1994 2012-09-26 Tom Tromey <tromey@redhat.com>
1995
1996 * dwarf2read.c (mark_common_block_symbol_computed): New function.
1997 (read_common_block): Handle child DIEs with
1998 DW_AT_data_member_location.
1999 (new_symbol_full): Add special case for common blocks.
2000
2001 2012-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2002 Tom Tromey <tromey@redhat.com>
2003
2004 * dwarf2read.c (read_common_block): Rewrite.
2005 (new_symbol_full): Handle DW_TAG_common_block.
2006 * f-lang.c (head_common_list, find_common_for_function):
2007 Remove.
2008 * f-lang.h (struct common_entry, struct saved_f77_common,
2009 SAVED_F77_COMMON, SAVED_F77_COMMON_PTR, COMMON_ENTRY,
2010 COMMON_ENTRY_PTR, head_common_list, find_common_for_function,
2011 BLANK_COMMON_NAME_LOCAL): Remove.
2012 (struct common_block): New.
2013 * f-valprint.c (list_all_visible_commons): Remove.
2014 (info_common_command_for_block): New function.
2015 (info_common_command): Use it.
2016 * stack.c (iterate_over_block_locals): Special case for
2017 COMMON_BLOCK_DOMAIN.
2018 * symtab.h (enum domain_enum_tag) <COMMON_BLOCK_DOMAIN>: New
2019 constant.
2020 (struct general_symbol_info) <value.common_block>: New field.
2021 (SYMBOL_VALUE_COMMON_BLOCK): New define.
2022
2023 2012-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2024 Tom Tromey <tromey@redhat.com>
2025
2026 * f-lang.c (allocate_saved_bf_node,
2027 allocate_saved_function_node, allocate_saved_f77_common_node,
2028 allocate_common_entry_node, tail_common_list, current_common,
2029 saved_bf_list, saved_bf_list_end, current_head_bf_list,
2030 tmp_bf_ptr, add_common_block, add_common_entry,
2031 find_first_common_named, patch_common_entries,
2032 patch_all_commons_by_name, ADD_BF_SYMNUM, clear_bf_list,
2033 global_remote_debug, get_bf_for_fcn, saved_function_list,
2034 saved_function_list_end, clear_function_list, struct saved_fcn,
2035 struct saved_bf_symnum, SAVED_FUNCTION, SAVED_FUNCTION_PTR,
2036 SAVED_BF, SAVED_BF_PTR): Remove.
2037 * f-lang.h (tail_common_list, current_common,
2038 UNINITIALIZED_SECNUM, COMMON_NEEDS_PATCHING,
2039 BLANK_COMMON_NAME_ORIGINAL, BLANK_COMMON_NAME_MF77,
2040 DEFAULT_UPPER_BOUND, DEFAULT_LOWER_BOUND, real_main_name,
2041 real_main_c_value): Remove.
2042 * f-valprint.c (there_is_a_visible_common_named): Remove.
2043
2044 2012-09-26 Andrew Burgess <aburgess@broadcom.com>
2045
2046 * breakpoint.c (update_global_location_list): Ignore previous
2047 duplicate status of a breakpoint when starting a new scan for
2048 duplicate breakpoints.
2049
2050 2012-09-26 Karthik Bhat <kv.bhat@samsung.com>
2051 PR breakpoints/14419
2052 * arm-tdep.c (arm_skip_prologue): Extending producer check to
2053 support LLVM compiler.
2054
2055 2012-09-26 Siddhesh Poyarekar <siddhesh@redhat.com>
2056
2057 * amd64-tdep.c (amd64_return_value): Use TYPE_LENGTH directly.
2058 * bfin-tdep.c (bfin_extract_return_value): Likewise.
2059 (bfin_store_return_value): Likewise.
2060 * cris-tdep.c (cris_store_return_value): Likewise.
2061 (cris_extract_return_value): Likewise.
2062 * h8300-tdep.c (h8300_extract_return_value): Likewise.
2063 * hppa-tdep.c (hppa64_return_value): Likewise.
2064 * lm32-tdep.c (lm32_store_return_value): Likewise.
2065 * microblaze-tdep.c (microblaze_store_return_value): Likewise.
2066 * spu-tdep.c (spu_value_from_register): Likewise.
2067 * vax-tdep.c (vax_return_value): Likewise.
2068
2069 2012-09-26 Siddhesh Poyarekar <siddhesh@redhat.com>
2070
2071 * breakpoint.c (invalidate_bp_value_on_memory_change): Expand
2072 parameter LEN to ssize_t.
2073
2074 2012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
2075
2076 * ada-valprint.c (ada_val_print_1): Eliminate single-use
2077 variable LEN.
2078 * alpha-tdep.c (alpha_extract_return_value): Use TYPE_LENGTH
2079 directly.
2080 (alpha_store_return_value): Likewise.
2081 * amd64-tdep.c (amd64_classify_aggregate): Likewise.
2082 (amd64_push_arguments): Likewise.
2083 * ax-gdb.c (gen_trace_static_fields): Likewise.
2084 (gen_traced_pop): Likewise.
2085 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
2086 * breakpoint.c (update_watchpoint): Likewise.
2087 * findcmd.c (parse_find_args): Use local variable for type
2088 instead of length.
2089 * findvar.c (default_read_var_value): Use TYPE_LENGTH directly.
2090 * h8300-tdep.c (h8300h_extract_return_value): Likewise.
2091 (h8300_store_return_value): Likewise.
2092 * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
2093 Use i386_darwin_arg_type_alignment directly.
2094 * infcall.c (call_function_by_hand): Use TYPE_LENGTH directly.
2095 * lm32-tdep.c (lm32_push_dummy_call): Likewise.
2096 * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
2097 (m68hc11_extract_return_value): Likewise.
2098 * mep-tdep.c (mep_push_dummy_call): Likewise.
2099 * printcmd.c (float_type_from_length): Likewise.
2100 * s390-tdep.c (s390_value_from_register): Likewise.
2101 * stack.c (read_frame_arg): Likewise.
2102 * tracepoint.c (encode_actions_1): Likewise.
2103 * valops.c (value_fetch_lazy): Use local variable for type
2104 instead of length. Use TYPE_LENGTH directly.
2105 * value.c (value_contents_equal): Use TYPE_LENGTH directly.
2106
2107 2012-09-25 Joel Brobecker <brobecker@adacore.com>
2108
2109 * symtab.c (skip_prologue_sal): Fix typo in comment.
2110
2111 2012-09-25 Joel Brobecker <brobecker@adacore.com>
2112
2113 * linespec.c (create_sals_line_offset): Fix typo in comment.
2114
2115 2012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
2116
2117 * c-typeprint.c (c_type_print_varspec_suffix): Remove cast and
2118 use plongest to print the array size.
2119
2120 2012-09-24 Siddhesh Poyarekar <siddhesh@redhat.com>
2121
2122 * m2-typeprint.c (m2_enum): Expand LASTVAL to LONGEST.
2123 * p-valprint.c (pascal_type_print_base): Likewise.
2124
2125 2012-09-22 Yao Qi <yao@codesourcery.com>
2126
2127 * remote.c (remote_get_trace_status): Remove setting default
2128 values of fields of 'ts'.
2129
2130 2012-09-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2131
2132 Fix internal error on canonicalization of clang types.
2133 * cp-name-parser.y (operator): New comment at make_operator call for
2134 new, delete, new[] and delete[].
2135 (exp): Use "sizeof ". Add new comment at make_operator call.
2136
2137 2012-09-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2138
2139 Fix disassemble without parameters in tailcall frame.
2140 * cli/cli-cmds.c (disassemble_current_function): Use
2141 get_frame_address_in_block.
2142
2143 2012-09-21 Tom Tromey <tromey@redhat.com>
2144
2145 * c-typeprint.c (c_type_print_base) <TYPE_CODE_STRUCT,
2146 TYPE_CODE_UNION>: Unify, removing a goto.
2147
2148 2012-09-21 Tom Tromey <tromey@redhat.com>
2149
2150 * c-typeprint.c (cp_type_print_derivation_info): Fix comment.
2151
2152 2012-09-21 Andrew Burgess <aburgess@broadcom.com>
2153
2154 * findvar.c (read_frame_register_value): Mark the result value as
2155 optimized out if any of the input registers have been optimized out.
2156
2157 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
2158
2159 * python/python.c (finalize_python): Only define if HAVE_PYTHON.
2160
2161 2012-09-21 Siddhesh Poyarekar <siddhesh@redhat.com>
2162
2163 * eval.c (evaluate_subexp_standard): Eliminate single-use
2164 variable LOWER.
2165
2166 2012-09-21 Yao Qi <yao@codesourcery.com>
2167
2168 * mi/mi-interp.c: Declare mi_record_changed.
2169 (mi_interpreter_init): Call observer_attach_record_changed.
2170 (mi_record_changed): New.
2171 * record.c (record_open): Call observer_notify_record_changed.
2172 (cmd_record_stop): Call observer_notify_record_changed.
2173 * NEWS: Mention it.
2174
2175 2012-09-20 Tom Tromey <tromey@redhat.com>
2176
2177 * NEWS: Update.
2178 * python/python.c (finalize_python): New function.
2179 (_initialize_python): Make a final cleanup.
2180
2181 2012-09-19 Doug Evans <dje@google.com>
2182
2183 * buildsym.h (param_symbols): Delete, unused.
2184 (context_stack): Delete member "params", unused.
2185 * buildsym.c (push_context): Update.
2186 * dwarf2read.c (read_func_scope): Update.
2187
2188 2012-09-19 Thomas Schwinge <thomas@codesourcery.com>
2189
2190 * sh-tdep.c (sh_register_convert_to_virtual)
2191 (sh_register_convert_to_raw): Add a gdbarch parameter. Update
2192 all callers. Just do a memcpy if not the little-endian case.
2193
2194 * h8300-tdep.c (h8300_gdbarch_init): Invoke
2195 set_gdbarch_double_format and set_gdbarch_long_double_format.
2196 * m68hc11-tdep.c (m68hc11_gdbarch_init): Invoke
2197 set_gdbarch_double_format.
2198 * sh-tdep.c (sh_gdbarch_init): Likewise.
2199
2200 * NEWS: Document the removal of SH's 'regs' command.
2201 * sh-tdep.c (_initialize_sh_tdep): Remove the deprecated 'regs'
2202 command.
2203
2204 2012-09-18 Sergio Durigan Junior <sergiodj@redhat.com>
2205
2206 * infcmd.c (_initialize_infcmd): Register `j' as an alias for
2207 `jump'.
2208
2209 2012-09-18 Joel Brobecker <brobecker@adacore.com>
2210
2211 * linespec.c (iterate_over_all_matching_symtabs): Use the correct
2212 language when iterating over symbols.
2213
2214 2012-09-18 Yao Qi <yao@codesourcery.com>
2215
2216 * mi/mi-interp.c: Declare mi_tsv_created and mi_tsv_deleted.
2217 (mi_interpreter_init): Call observer_attach_tsv_created and
2218 observer_attach_tsv_deleted.
2219 (mi_tsv_created, mi_tsv_deleted): New.
2220 * tracepoint.c (delete_trace_state_variable): Call
2221 observer_notify_tsv_deleted.
2222 (trace_variable_command): Call observer_notify_tsv_created.
2223 (delete_trace_variable_command): Call
2224 observer_notify_tsv_deleted.
2225 (create_tsv_from_upload): Call observer_notify_tsv_created.
2226 * NEWS: Mention it.
2227
2228 2012-09-18 Yao Qi <yao@codesourcery.com>
2229
2230 * tracepoint.c (tfind_1): Call observer_notify_traceframe_changed
2231 if traceframe changed.
2232 * mi/mi-cmds.c (mi_cmd mi_cmds): Adjust for command
2233 "trace-find".
2234 * mi/mi-interp.c: Declare 'mi_traceframe_changed'.
2235 (mi_interpreter_init): Hook mi_traceframe_changed to observer
2236 'traceframe_changed'.
2237 (mi_traceframe_changed): New.
2238 * mi/mi-main.h (struct mi_suppress_notification) <traceframe>:
2239 New field.
2240 * NEWS: Mention the new MI notification.
2241
2242 2012-09-17 Mike Wrighton <wrighton@codesourcery.com>
2243
2244 * MAINTAINERS (Write After Approval): Add "Mike Wrighton".
2245
2246 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2247
2248 * common/linux-ptrace.c: Change __i386__ to __i386__ || __x86_64__.
2249 (linux_ptrace_test_ret_to_nx): Extend comment for x86_64. Change
2250 __i386__ to __i386__ || __x86_64__. Extend code also for __x86_64__.
2251 Extend code also for PaX support. Convert all gdb_assert to warning
2252 calls.
2253
2254 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2255
2256 Implement auto-load user conveniences suggested by Doug Evans.
2257 * auto-load.c: Include top.h.
2258 (file_is_auto_load_safe): New variable advice_printed. Print advice.
2259 (_initialize_auto_load): New variable scripts_directory_help. Mention
2260 GDBPY_AUTO_FILE_NAME and GDB_AUTO_FILE_NAME for set auto-load
2261 scripts-directory. Document in online help one can use also files for
2262 set auto-load safe-path.
2263 * python/py-auto-load.c: (GDBPY_AUTO_FILE_NAME): Move it from here ...
2264 * python/python.h (GDBPY_AUTO_FILE_NAME): ... to here.
2265
2266 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
2267
2268 * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused definition
2269 of LEN.
2270
2271 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
2272
2273 * m2-valprint.c (m2_print_array_contents): Eliminate variable
2274 ELTLEN and use TYPE_LENGTH directly.
2275 (m2_val_print): Likewise.
2276 * m68k-tdep.c (m68k_svr4_extract_return_value): Eliminate
2277 variable LEN and use TYPE_LENGTH directly.
2278 (m68k_svr4_store_return_value): Likewise.
2279 * mips-tdep.c (mips_o32_push_dummy_call): Eliminate variable
2280 ARGLEN and use TYPE_LENGTH directly.
2281 (mips_o64_push_dummy_call): Likewise.
2282 * s390-tdep (s390_function_arg_pass_by_reference): Eliminate
2283 variable LENGTH and use TYPE_LENGTH directly.
2284 (s390_function_arg_float): Likewise.
2285 (s390_function_arg_integer): Likewise.
2286 (s390_push_dummy_call): Likewise.
2287 (s390_return_value_convention): Likewise.
2288 * spu-tdep.c (spu_push_dummy_call): Eliminate LEN and use
2289 TYPE_LENGTH directly.
2290
2291 2012-09-17 Yao Qi <yao@codesourcery.com>
2292
2293 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
2294 Update comment to add_setshow_integer_cmd.
2295 * cli/cli-setshow.c (do_set_command): Handle case
2296 'var_zuinteger_unlimited'.
2297 (do_show_command): Likewise.
2298 * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
2299 for command 'remotetimeout'.
2300 * command.h (enum var_types): New zuinteger_unlimited. Update comment
2301 to var_integer.
2302 * source.c (_initialize_source): Call
2303 add_setshow_zuinteger_unlimited_cmd for command 'set listsize'.
2304
2305 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
2306
2307 * infrun.c (restore_infcall_suspend_state): Eliminate single-use
2308 variable LEN.
2309
2310 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2311
2312 PR 14119
2313 * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames.
2314 (frame_pop): Drop also TAILCALL_FRAME frames.
2315 * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames.
2316
2317 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2318 Pedro Alves <palves@redhat.com>
2319
2320 PR 14548
2321 * infrun.c (handle_inferior_event): Do not reverse-continue back to the
2322 function start if we are already at function start. Both for
2323 reverse-next and for reverse-step into function without line number
2324 info.
2325
2326 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2327
2328 Code cleanup - rename 'inline' depth to 'artificial' depth.
2329 * breakpoint.c (set_momentary_breakpoint): Rename at a caller to
2330 frame_id_artificial_p, extend the comment.
2331 * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
2332 * frame.c (fprint_frame_id): Rename at a user, change debug output
2333 text to "artificial=".
2334 (skip_inlined_frames): Rename to ...
2335 (skip_artificial_frames): ... here. Extend the comment.
2336 (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
2337 (frame_id_inlined_p): Rename to ...
2338 (frame_id_artificial_p): ... here. Rename at a user.
2339 (frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
2340 (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
2341 at a user.
2342 * frame.h (struct frame_id): Rename inline_depth to artificial_depth.
2343 Extend the comment.
2344 (frame_id_inlined_p): Rename to ...
2345 (frame_id_artificial_p): ... here.
2346 * inline-frame.c (inline_frame_this_id): Rename at a user.
2347
2348 2012-09-14 Andrew Burgess <aburgess@broadcom.com>
2349
2350 * c-typeprint.c (c_type_print_varspec_suffix): Display the size of
2351 vector variables using vector_size syntax rather than array
2352 syntax.
2353
2354 2012-09-14 Siddhesh Poyarekar <siddhesh@redhat.com>
2355
2356 * valarith.c (value_concat): Replace unsafe ALLOCA with
2357 XMALLOC/XFREE.
2358
2359 2012-09-14 Pedro Alves <palves@redhat.com>
2360
2361 * gdb.1 (SEE ALSO): Expand pointer to GDB's Texinfo manual.
2362
2363 2012-09-14 Khoo Yit Phang <khooyp@cs.umd.edu>
2364
2365 Point contrib/cc-with-tweaks.sh to the build-local data-directory.
2366 * contrib/cc-with-tweaks.sh (GDB): Add -data-directory
2367 data-directory as appropriate.
2368
2369 2012-09-14 Siddhesh Poyarekar <siddhesh@redhat.com>
2370
2371 * printcmd.c (ui_printf): Eliminate single-use variable
2372 PARAM_LEN.
2373
2374 2012-09-14 Yao Qi <yao@codesourcery.com>
2375 Pedro Alves <palves@redhat.com>
2376
2377 * valops.c (value_assign): Move observer_notify_target_changed
2378 below to replace reinit_frame_cache.
2379
2380 2012-09-13 Khoo Yit Phang <khooyp@cs.umd.edu>
2381
2382 Refactor Python "gdb" module into a proper Python package, by
2383 introducing a new "_gdb" module for code implemented in C, and
2384 using reload/__import__ instead of exec.
2385 * python/lib/gdb/__init__.py: Import * from _gdb.
2386 (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
2387 prompt_hook, sys.argv): Moved from finish_python_initialization.
2388 (pretty_printers, PYTHONDIR): Moved from _initialize_python.
2389 (packages, auto_load_packages): New list and function replacing
2390 module_dict and auto-loading code, using __file__ instead of
2391 gdb.PYTHONDIR and reload/__import__ instead of exec.
2392 (GdbSetPythonDirectory): Replacing function of the same name
2393 from finish_python_initialization, using reload/__import__ instead
2394 of exec, as well as call auto_load_packages.
2395 * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
2396 gdb_python_module and not gdb_module.
2397 * python/python-internal.h (gdb_python_module): Declare.
2398 * python/python.c (gdb_python_module): New global.
2399 (before_prompt_hook): Check gdb_python_module and not gdb_module.
2400 (_initialize_python): Rename gdb module to _gdb.
2401 Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
2402 (finish_python_initialization): Move Python code to
2403 lib/gdb/__init__.py; instead, set up sys.path and import gdb into
2404 __main__.
2405
2406 2012-09-13 Pedro Alves <palves@redhat.com>
2407
2408 * Makefile.in (COMMON_OBS): Add registry.o.
2409 * registry.c: New file.
2410 * registry.h (struct registry_container): Declare.
2411 (registry_data_callback): New typedef.
2412 (struct registry_data, struct registry_data_registration, struct
2413 registry_data_registry): New type.
2414 (register_data_with_cleanup, registry_alloc_data)
2415 (registry_callback_adaptor, registry_clear_data)
2416 (registry_container_free_data, registry_set_data, registry_data):
2417 Declare.
2418 (DEFINE_REGISTRY): Refactor structures and functions as shims over
2419 the new common structures and functions.
2420 (DECLARE_REGISTRY): Declare struct TAG ## _data. Use the tagged
2421 callback typedefs.
2422
2423 2012-09-12 Mike Wrighton <wrighton@codesourcery.com>
2424
2425 * remote.c (remote_insert_hw_breakpoint): Throw exception if
2426 there is an error inserting hardware breakpoints and use the
2427 error message from the target.
2428
2429 * breakpoint.c (insert_bp_location, insert_breakpoint_locations):
2430 Catch this exception and print the error message contained within.
2431 Do not print the default hardware error breakpoint message in this
2432 case.
2433
2434 2012-09-12 Doug Evans <dje@google.com>
2435
2436 * dwarf2read.c (dwarf2_read_addr_index): Fix handling the case where
2437 cu == NULL.
2438
2439 2012-09-11 Doug Evans <dje@google.com>
2440
2441 * dwarf2read.c (dw2_do_expand_symtabs_matching): Don't examine
2442 .gdb_index symbol attributes if there are none.
2443
2444 2012-09-11 Joel Brobecker <brobecker@adacore.com>
2445
2446 * symtab.h (struct minimal_symbol) [has_size]: New field.
2447 (MSYMBOL_SIZE): Adjust to forbid macro from being used as lvalue.
2448 (SET_MSYMBOL_SIZE, MSYMBOL_HAS_SIZE): New macros.
2449 * printcmd.c (build_address_symbolic): Only filter out zero-sized
2450 minimal symbols if the symbol's size is actually known.
2451 * minsyms.c (prim_record_minimal_symbol_full): Adjust setting
2452 of msymbol's size field. Add comment.
2453 * elfread.c (elf_symtab_read, elf_rel_plt_read): Use
2454 SET_MSYMBOL_SIZE to set the minimal symbol size.
2455
2456 2012-09-11 Joel Brobecker <brobecker@adacore.com>
2457
2458 * minsyms.c (install_minimal_symbols): Use memset to fill entire
2459 minimal_symbol struct object, rather than setting some of its
2460 fields one by one.
2461
2462 2012-09-11 Andrew Burgess <aburgess@broadcom.com>
2463
2464 * c-typeprint.c (c_type_print_varspec_prefix): Pass through the
2465 passed_a_ptr flag when displaying typedef types.
2466
2467 2012-09-10 Joel Brobecker <brobecker@adacore.com>
2468
2469 * ada-lang.c (coerce_unspec_val_to_type): Make sure that
2470 the optimized_out flag is preserved.
2471
2472 2012-09-10 Anthony Green <green@moxielogic.com>
2473
2474 * moxie-tdep.c (moxie_analyze_prologue): Update for function
2475 prologue changes in GCC.
2476
2477 2012-09-10 Keith Seitz <keiths@redhat.com>
2478
2479 PR gdb/13483
2480 * gdbtypes.h (BOOL_PTR_CONVERSION_BADNESS): Rename to ...
2481 (BOOL_CONVERSION_BADNESS): ... this.
2482 * gdbtypes.c (BOOL_PTR_CONVERSION_BADNESS): Likewise.
2483 (rank_one_type): Allow all boolean conversions
2484 permitted by the standard.
2485
2486 2012-09-06 Tom Tromey <tromey@redhat.com>
2487
2488 * python/py-newobjfileevent.c (create_new_objfile_event_object):
2489 Don't decref py_objfile.
2490
2491 2012-09-02 Khoo Yit Phang <khooyp@cs.umd.edu>
2492
2493 Do not enable -lmcheck by default when Python is enabled with
2494 threading support.
2495 * configure.ac: (python_has_threads) New variable, by testing
2496 if WITH_THREAD is defined in Python.h.
2497 Move --enable-lmcheck after --with-python.
2498 Do not enable -lmcheck by default if python_has_threads=yes.
2499 Warn if --enable-lmcheck and python_has_threads=yes.
2500 * configure: Regenerate.
2501
2502 2012-08-31 Yao Qi <yao@codesourcery.com>
2503
2504 * mi/mi-cmds.c (mi_cmds): New macros DEF_MI_CMD_CLI
2505 DEF_MI_CMD_MI DEF_MI_CMD_CLI_1 and DEF_MI_CMD_CLI_1.
2506 Update some commands.
2507 * mi/mi-cmds.h (struct mi_cmd) <suppress_notification>: New field.
2508 * mi/mi-main.c (mi_cmd_execute): Set
2509 '*parse->cmd->suppress_notification' to 1.
2510
2511 2012-08-31 Yao Qi <yao@codesourcery.com>
2512
2513 * mi/mi-cmds.c (mi_cmds): Add 'static'.
2514
2515 2012-08-30 Khoo Yit Phang <khooyp@cs.umd.edu>
2516
2517 * MAINTAINERS (Write After Approval): Add "Khoo Yit Phang".
2518
2519 2012-08-29 Doug Evans <dje@google.com>
2520
2521 * main.c (print_gdb_help): Remove reference to
2522 --use-deprecated-index-sections.
2523
2524 2012-08-28 Yao Qi <yao@codesourcery.com>
2525
2526 * cli/cli-cmds.c (max_user_call_depth): Add 'unsigned'.
2527 (init_cmds): Call add_setshow_uinteger_cmd for command
2528 'max-user-call-depth'.
2529 * cli/cli-script.c (execute_user_command): Add 'unsigned' to the
2530 declaration of 'max_user_call_depth'.
2531 * frame.c (backtrace_limit): Add 'unsigned'.
2532 (_initialize_frame): Call add_setshow_uinteger_cmd for command
2533 'limit'.
2534 * remote.c (remoteaddresssize): Add 'unsigned'.
2535 (remote_address_masked): Change local var 'address_size' to
2536 'unsigned'.
2537 (_initialize_remote): Call add_setshow_uinteger_cmd for
2538 'remoteaddresssize'.
2539 * top.c (history_size): Add 'unsigned'.
2540 (show_commands): Change local variables to 'unsigned'.
2541 (set_history_size_command): Don't check history_size is negative.
2542 Adjust the condition to call unstifle_history and set history_size
2543 to UNIT_MAX.
2544
2545 2012-08-28 Pedro Alves <palves@redhat.com>
2546
2547 PR gdb/14428
2548
2549 * infcmd.c (default_print_one_register_info): New, factored out
2550 from default_print_registers_info.
2551 (default_print_registers_info): Use it. Mark value unavailable if
2552 necessary.
2553 (registers_info): Print user registers with
2554 default_print_one_register_info.
2555
2556 2010-08-27 H.J. Lu <hongjiu.lu@intel.com>
2557
2558 PR tui/14486
2559 * tui/tui-source.c (tui_source_is_displayed): Check if TUI_SRC_WIN
2560 is not NULL before referencing it.
2561
2562 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2563
2564 * breakpoint.c (parse_breakpoint_sals) <(*address) == NULL>: New
2565 variable pc. Call find_pc_line instead of find_pc_overlay, restore
2566 original PC for it.
2567
2568 2012-08-27 Eli Zaretskii <eliz@gnu.org>
2569 Jan Kratochvil <jan.kratochvil@redhat.com>
2570
2571 * auto-load.c (auto_load_objfile_script): Rename to ...
2572 (auto_load_objfile_script_1): ... here, change variable realname to
2573 parameter realname, document it, add return value, add variable retval.
2574 (auto_load_objfile_script): New function.
2575
2576 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2577
2578 * cli/cli-decode.c (print_doc_line): Keep skipping '.' and ',' not
2579 followed by a whitespace.
2580
2581 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2582
2583 PR gdb/14494.
2584 * dwarf2read.c (dwarf2_locate_sections): Move variable aflag here.
2585 Move the SEC_HAS_CONTENTS check here - for any NAMES use.
2586 (dwarf2_locate_sections) <eh_frame>: Move the variable and check from
2587 here.
2588
2589 2012-08-27 Wei-cheng Wang <cole945@gmail.com>
2590
2591 * memattr.c (create_mem_region): Fix memory region overlapping
2592 checking.
2593
2594 2012-08-24 Siddhesh Poyarekar <siddhesh@redhat.com>
2595
2596 * h8300-tdep.c (h8300_push_dummy_call): Replace unsafe alloca
2597 with xmalloc/cleanup.
2598 * mt-tdep.c (mt_push_dummy_call): Likewise.
2599 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
2600 * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
2601
2602 2012-08-24 Yao Qi <yao@codesourcery.com>
2603
2604 * jv-exp.y (push_expression_name): Add "." at the end of error
2605 message.
2606
2607 2012-08-23 Khoo Yit Phang <khooyp@cs.umd.edu>
2608
2609 Document how to return from "python-interactive" to GDB.
2610 * python/python.c (_initialize_python): Update documentation.
2611
2612 2012-08-23 Pedro Alves <palves@redhat.com>
2613
2614 * infrun.c (_initialize_infrun) <handle command help text>:
2615 Mention that multiple signals are supported.
2616
2617 2012-08-23 Pedro Alves <palves@redhat.com>
2618
2619 * infcmd.c (_initialize_infcmd) <signal command>: Fix typo in help
2620 string.
2621
2622 2012-08-23 Yao Qi <yao@codesourcery.com>
2623
2624 * tracepoint.c (disconnect_tracing): Call set_tracepoint_num.
2625 (tfind_1): Don't call registers_changed, set_traceframe_num,
2626 and clear_traceframe_info.
2627 Call set_current_traceframe.
2628 (set_current_traceframe): call set_traceframe_num.
2629
2630 2012-08-22 Sergio Durigan Junior <sergiodj@redhat.com>
2631
2632 * remote-sim.c (_initialize_remote_sim): Pass NULL argument to
2633 `register_inferior_data_with_cleanup', fixing regression on PowerPC64.
2634
2635 2012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
2636
2637 Enable readline in Python in a GDB-specific way and block the
2638 standard Python readline module to prevent conflicts with GDB.
2639 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
2640 (SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
2641 (py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
2642 * python/py-gdb-readline.c: New file.
2643 * python/python-internal.h (gdbpy_initialize_gdb_readline): New
2644 prototype.
2645 * python/python.c (_initialize_python): Call
2646 gdbpy_initialize_gdb_readline.
2647
2648 2012-08-22 Keith Seitz <keiths@redhat.com>
2649
2650 * defs.h: Include build-gnulib/config.h
2651
2652 2012-08-22 Joseph Myers <joseph@codesourcery.com>
2653
2654 * arm-tdep.c (thumb_get_next_pc_raw): Mask off low bits for bx pc
2655 and blx pc.
2656
2657 2012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
2658
2659 Add a new "python-interactive" command that starts a standard
2660 Python interactive prompt with "pi" as alias, and add "py" as
2661 an alias to "python".
2662 * NEWS: Mention the new commands.
2663 * python/python.c (eval_python_command): New function.
2664 (python_interactive_command): For "python-interactive" with
2665 arguments, call eval_python_command. For "python-interactive"
2666 without arguments, call PyRun_InteractiveLoop.
2667 (_initialize_python): Add "python-interactive" command with
2668 "pi" as alias, and add "py" as an alias to "python".
2669
2670 2012-08-22 Tom Tromey <tromey@redhat.com>
2671
2672 * defs.h (quit_flag): Don't declare.
2673 (clear_quit_flag, check_quit_flag, set_quit_flag): Declare.
2674 (QUIT): Use new functions.
2675 * event-top.c (command_handler): Use clear_quit_flag.
2676 (handle_sigint): Use set_quit_flag.
2677 (async_request_quit): Use check_quit_flag. Don't check
2678 immediate_quit.
2679 * exceptions.c (throw_exception): Use clear_quit_flag.
2680 * main.c (captured_main): Use clear_quit_flag.
2681 * python/python.c (clear_quit_flag, set_quit_flag)
2682 (check_quit_flag): New functions.
2683 * remote-sim.c (gdb_os_poll_quit): Use check_quit_flag,
2684 clear_quit_flag.
2685 * remote.c (remote_wait_as): Use check_quit_flag,
2686 clear_quit_flag.
2687 (remote_start_remote): Call QUIT.
2688 * symfile.c (load_progress): Use check_quit_flag.
2689 * top.c (command_loop): Use clear_quit_flag.
2690 (command_line_input): Call QUIT.
2691 * utils.c (quit_flag): Conditionally define.
2692 (clear_quit_flag, check_quit_flag, set_quit_flag): New
2693 functions.
2694 (prompt_for_continue): Call QUIT. Use quit, not
2695 async_request_quit.
2696 * remote-mips.c (mips_expect_timeout): Call QUIT.
2697 * monitor.c (monitor_expect): Call QUIT.
2698
2699 2012-08-22 Tom Tromey <tromey@redhat.com>
2700
2701 * event-top.c (sigwinch_token, handle_sigwinch): Remove.
2702 (async_init_signals): Update.
2703 * utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
2704 (SIGWINCH_HANDLER_BODY): Remove.
2705
2706 2012-08-22 Tom Tromey <tromey@redhat.com>
2707
2708 * jit.c (jit_object_close_impl): Don't malloc the objfile
2709 name.
2710 * objfiles.c (allocate_objfile): Don't malloc the objfile
2711 name.
2712 (free_objfile): Don't free the objfile name.
2713 * objfiles.h (struct objfile) <name>: Update comment.
2714 * symfile.c (reread_symbols): Fix reference counting. Don't
2715 malloc objfile name.
2716
2717 2012-08-22 Tom Tromey <tromey@redhat.com>
2718
2719 * windows-nat.c (windows_make_so): Use gdb_bfd_open.
2720 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_open.
2721 (symfile_bfd_open): Likewise.
2722 (generic_load): Likewise.
2723 * solib.c (solib_bfd_fopen): Use gdb_bfd_open.
2724 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
2725 gdb_bfd_open.
2726 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2727 Use gdb_bfd_open.
2728 * rs6000-nat.c (add_vmap): Use gdb_bfd_open.
2729 * remote-mips.c (mips_load_srec): Use gdb_bfd_open.
2730 (pmon_load_fast): Likewise.
2731 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_open.
2732 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_open.
2733 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_open.
2734 (macho_check_dsym): Likewise.
2735 * m32r-rom.c (m32r_load): Use gdb_bfd_open.
2736 (m32r_upload_command): Likewise.
2737 * gdb_bfd.h (gdb_bfd_cache): Declare.
2738 * gdb_bfd.c (struct gdb_bfd_data): New.
2739 (gdb_bfd_cache): New global.
2740 (struct gdb_bfd_cache_search): New.
2741 (hash_bfd): New function.
2742 (eq_bfd): Likewise.
2743 (gdb_bfd_open): Likewise.
2744 (gdb_bfd_ref): Allocate a gdb_bfd_data and attach to the BFD.
2745 (gdb_bfd_unref): Remove closed BFD from cache. Update for
2746 gdb_bfd_data.
2747 * exec.c (exec_file_attach): Use gdb_bfd_open.
2748 * dsrec.c (load_srec): Use gdb_bfd_open.
2749
2750 2012-08-22 Tom Tromey <tromey@redhat.com>
2751
2752 * dwarf2read.c (macro_start_file): Update.
2753 * objfiles.c (get_objfile_bfd_data): Initialize macro_cache.
2754 (free_objfile_per_bfd_storage): Destroy macro_cache.
2755 (allocate_objfile, free_objfile): Update.
2756 * objfiles.h (struct objfile_per_bfd_storage) <macro_cache>:
2757 New field.
2758 (struct objfile) <macro_cache>: Remove.
2759 * symfile.c (reread_symbols): Update.
2760 * symmisc.c (print_symbol_bcache_statistics): Update.
2761 (print_objfile_statistics): Update.
2762
2763 2012-08-22 Tom Tromey <tromey@redhat.com>
2764
2765 * elfread.c (elf_symtab_read): Update.
2766 * objfiles.c (objfiles_bfd_data): New global.
2767 (get_objfile_bfd_data, free_objfile_per_bfd_storage)
2768 (objfile_bfd_data_free, set_objfile_per_bfd): New functions.
2769 (allocate_objfile, free_objfile): Update.
2770 (_initialize_objfiles): Initialize objfiles_bfd_data.
2771 * objfiles.h (struct objfile_per_bfd_storage): New.
2772 (struct objfile) <per_bfd>: New field.
2773 <filename_cache>: Remove.
2774 (set_objfile_per_bfd): Declare.
2775 * symfile.c (reread_symbols): Update. Call
2776 set_objfile_per_bfd.
2777 (allocate_symtab): Update.
2778 * symmisc.c (print_symbol_bcache_statistics): Update.
2779 (print_objfile_statistics): Print the size of the BFD obstack.
2780
2781 2012-08-22 Tom Tromey <tromey@redhat.com>
2782
2783 * gdb_bfd.h: Include registry.h. Use DECLARE_REGISTRY.
2784 * gdb_bfd.c: Use DEFINE_REGISTRY.
2785 (struct gdb_bfd_data): Add REGISTRY_FIELDS.
2786 (gdb_bfd_ref): Call bfd_alloc_data.
2787 (gdb_bfd_unref): Call bfd_free_data.
2788
2789 2012-08-22 Tom Tromey <tromey@redhat.com>
2790
2791 * registry.h (struct registry_fields): New.
2792 (REGISTRY_FIELDS): Redefine.
2793 (REGISTRY_ACCESS_FIELD): New macro.
2794 (DEFINE_REGISTRY): Add ACCESS argument. Update defined
2795 functions.
2796
2797 2012-08-22 Tom Tromey <tromey@redhat.com>
2798
2799 * auto-load.c (_initialize_auto_load): Update.
2800 * solib-svr4.c (_initialize_svr4_solib): Update
2801 * solib-dsbt.c (_initialize_dsbt_solib): Update.
2802 * solib-darwin.c (_initialize_darwin_solib): Update.
2803 * registry.h: New file.
2804 * python/py-progspace.c (gdbpy_initialize_pspace): Update.
2805 * python/py-inferior.c (gdbpy_initialize_inferior): Update.
2806 * progspace.h: Include registry.h. Use DECLARE_REGISTRY.
2807 (register_program_space_data_with_cleanup)
2808 (register_program_space_data, program_space_alloc_data)
2809 (clear_program_space_data, set_program_space_data)
2810 (program_space_data): Don't declare.
2811 * progspace.c: Use DEFINE_REGISTRY.
2812 (struct program_space_data, struct
2813 program_space_data_registration, struct
2814 program_space_data_registry, program_space_data_registry)
2815 (register_program_space_data_with_cleanup)
2816 (register_program_space_data, program_space_alloc_data)
2817 (program_space_free_data, clear_program_space_data)
2818 (set_program_space_data, program_space_data): Remove.
2819 * objfiles.h: Include registry.h. Use DECLARE_REGISTRY.
2820 (struct objfile) <data, num_data>: Replace with REGISTRY_FIELDS.
2821 (register_objfile_data_with_cleanup, register_objfile_data)
2822 (clear_objfile_data, set_objfile_data, objfile_data): Don't
2823 declare.
2824 * objfiles.c: Use DEFINE_REGISTRY.
2825 (struct objfile_data, struct objfile_data_registration, struct
2826 objfile_data_registry, objfile_data_registry)
2827 (register_objfile_data_with_cleanup, register_objfile_data)
2828 (objfile_alloc_data, objfile_free_data, clear_objfile_data)
2829 (set_objfile_data, objfile_data): Remove.
2830 (_initialize_objfiles): Update.
2831 * jit.c (_initialize_jit): Update.
2832 * inflow.c (_initialize_inflow): Update.
2833 * inferior.h: Include registry.h. Use DECLARE_REGISTRY.
2834 (struct inferior) <data, num_data>: Replace with REGISTRY_FIELDS.
2835 (register_inferior_data_with_cleanup, register_inferior_data)
2836 (clear_inferior_data, set_inferior_data, inferior_data): Don't
2837 declare.
2838 * inferior.c: Use DEFINE_REGISTRY.
2839 (struct inferior_data, struct inferior_data_registration, struct
2840 inferior_data_registry, inferior_data_registry)
2841 (register_inferior_data_with_cleanup, register_inferior_data)
2842 (inferior_alloc_data, inferior_free_data clear_inferior_data)
2843 (set_inferior_data, inferior_data): Remove.
2844 * auxv.c (_initialize_auxv): Update.
2845 * ada-lang.c (_initialize_ada_language): Update.
2846 * breakpoint.c (_initialize_breakpoint): Update.
2847 * i386-nat.c (i386_use_watchpoints): Update.
2848
2849 2012-08-22 Tom Tromey <tromey@redhat.com>
2850
2851 * exec.c (exec_close, exec_file_attach): Update.
2852 (add_to_section_table): Initialize 'key' field.
2853 (add_target_sections, remove_target_sections): Add 'key' argument.
2854 * exec.h (add_target_sections, remove_target_sections): Add
2855 'key' argument.
2856 * solib.c (solib_map_sections, update_solib_list, clear_solib)
2857 (reload_shared_libraries_1): Update.
2858 * target.h (struct target_section) <key>: New field.
2859
2860 2012-08-22 Tom Tromey <tromey@redhat.com>
2861
2862 * cli/cli-cmds.c (filter_sals): Handle nelts == 0 case.
2863
2864 2012-08-21 Pierre Muller <muller@ics.u-strasbg.fr>
2865
2866 * symfile.c (allocate_symtab): Use host_address_to_string
2867 function instead of cast of pointer to long which is not
2868 compatible with x86_64-w64-mingw32 build.
2869
2870 2012-08-19 Andrew Pinski <apinski@cavium.com>
2871
2872 * mips-tdep.c (is_octeon): New function.
2873 (is_octeon_bbit_op): New function.
2874 (mips32_next_pc): Handle Octeon's bbit instructions.
2875 (mips32_instruction_has_delay_slot): Likewise.
2876
2877 2012-08-19 Andrew Pinski <apinski@cavium.com>
2878
2879 * mips-tdep.c (mips32_next_pc): Fix line spacing of the comment
2880 before the function.
2881
2882 2012-08-19 Andrew Pinski <apinski@cavium.com>
2883
2884 * mips-tdep.c (mips32_next_pc): Consolidate calls to itype_op.
2885
2886 2012-08-19 Keith Seitz <keiths@redhat.com>
2887
2888 PR c++/14365
2889 * c-typeprint.c (c_type_print_varspec_prefix): Pass
2890 -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
2891
2892 2012-08-18 Eli Zaretskii <eliz@gnu.org>
2893
2894 * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
2895 The typo broke "make TAGS".
2896
2897 2012-08-17 Joel Brobecker <brobecker@adacore.com>
2898
2899 GDB 7.5 released.
2900
2901 2012-08-17 Keith Seitz <keiths@redhat.com>
2902
2903 PR c++/13356
2904 * gdbtypes.c (strict_type_checking): New variable.
2905 (show_strict_type_checking): New function.
2906 (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
2907 if strict type checking is disabled.
2908 (_initialize_gdbtypes): Add "check type" subcommand.
2909 * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
2910
2911 2012-08-17 Keith Seitz <keiths@redhat.com>
2912
2913 * language.h (type_mode): Remove.
2914 (type_check): Remove.
2915 (struct language_defn): Remove la_type_check.
2916 (STRICT_TYPE): Remove unused macro.
2917 (type_error): Remove.
2918 * language.c (set_type_range_case): Renamed to ...
2919 (set_range_case): ... this. Update all callers.
2920 Remove type_mode/type_check.
2921 (type_mode): Remove.
2922 (type_check): Remove.
2923 (show_type_command): Remove.
2924 (set_type_command): Remove.
2925 (language_info): Remove type checking output.
2926 (type_error): Remove unused function.
2927 (range_error): Update comment.
2928 (unknown_language_defn): Remove la_type_check.
2929 (auto_language_defn): Likewise.
2930 (local_language_defn): Likewise.
2931 (_initialize_language): Remove "check type" subcommand.
2932 * ada-lang.c (ada_language_defn): Remove la_type_check.
2933 * c-lang.c (c_language_defn): Likewise.
2934 (cplus_language_defn): Likewise.
2935 (asm_language_defn): Likewise.
2936 (minimal_language_defn): Likewise.
2937 * d-lang.c (d_language_defn): Likewise.
2938 * f-lang.c (f_language_defn): Likewise.
2939 * go-lang.c (go_language_defn): Likewise.
2940 * jv-lang.c (java_language_defn): Likewise.
2941 * m2-lang.c (m2_language_defn): Likewise.
2942 * objc-lang.c (objc_language_defn): Likewise.
2943 * opencl-lang.c (opencl_language_defn): Likewise.
2944 * p-lang.c (pascal_language_defn): Likewise.
2945
2946 2012-08-16 Mike Frysinger <vapier@gentoo.org>
2947
2948 * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
2949
2950 2012-08-16 Joel Brobecker <brobecker@adacore.com>
2951
2952 * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
2953 New function.
2954 (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
2955 using the regache. Use ia64_hpux_get_register_from_save_state_t
2956 to access the bsp and bspstore registers if not.
2957
2958 2012-08-16 Joel Brobecker <brobecker@adacore.com>
2959
2960 * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
2961 * breakpoint.c (detach_breakpoints): Change pid parameter into
2962 a ptid. Adjust code accordingly.
2963 * infrun.c (handle_inferior_event): Delete variable child_pid.
2964 Update call to detach_breakpoints to pass the child ptid for
2965 fork events.
2966 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
2967 assert that inferior_ptid's lwp is zero.
2968 (linux_handle_extended_wait): Update call to detach_breakpoints.
2969 * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
2970 detach_breakpoints.
2971
2972 2012-08-16 Joel Brobecker <brobecker@adacore.com>
2973
2974 * inf-ttrace.c (inf_ttrace_follow_fork): When following the
2975 parent, only call detach_breakpoints if tts.tts_event ==
2976 TTEVT_VFORK.
2977
2978 2012-08-16 Joel Brobecker <brobecker@adacore.com>
2979
2980 * dwarf2-frame.c (dwarf2_frame_cache): Use
2981 get_frame_address_in_block instead of get_frame_pc as
2982 the bound for executing the frame's FDE.
2983
2984 2012-08-16 Yao Qi <yao@codesourcery.com>
2985
2986 * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
2987 * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
2988 * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
2989 (c_type_print_varspec_suffix): Likewise.
2990 * eval.c (evaluate_subexp_standard): Likewise.
2991 * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
2992 (f_type_print_varspec_suffix): Likewise.
2993 * gdbtypes.c (is_scalar_type): Likewise.
2994 (recursive_dump_type): Likewise.
2995 * infcall.c (value_arg_coerce): Likewise.
2996 * m2-valprint.c (m2_val_print): Likewise.
2997 * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
2998 (pascal_type_print_varspec_suffix): Likewise.
2999 (pascal_type_print_base): Likewise.
3000 * p-valprint.c (pascal_val_print): Likewise.
3001 (pascal_val_print): Likewise.
3002 * valops.c (value_slice): Likewise.
3003 * valprint.c (scalar_type_p): Likewise.
3004 * valarith.c (value_bitstring_subscript): Remove.
3005 (value_concat): Remove code handling TYPE_CODE_BITSTRING.
3006 Remove comment on TYPE_CODE_BITSTRING.
3007
3008 * stabsread.c (read_type): Don't set TYPE_CODE (type) to
3009 TYPE_CODE_BITSTRING.
3010
3011 * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
3012 slot 0.
3013
3014 2012-08-16 Yao Qi <yao@codesourcery.com>
3015
3016 * tracepoint.c (trace_find_none_command): Remove.
3017 (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
3018
3019 2012-08-16 Yao Qi <yao@codesourcery.com>
3020
3021 * remote.c (handle_notification): Remove parameter 'length'.
3022 (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
3023
3024 2012-08-15 Keith Seitz <keiths@redhat.com>
3025
3026 * gdbtypes.c (opaque_type_resolution): Make static.
3027 Add missing comment.
3028 (overload_debug): Add missing comment.
3029 (show_opaque_type_resolution): Likewise.
3030 (show_overload_debug): Likewise.
3031 (print_bit_vector): Remove unnecessary forward declaration.
3032 (print_arg_types): Likewise.
3033 (dump_fn_fieldlists): Likewise.
3034 (print_cplus_stuff): Likewise.
3035
3036 2012-08-15 Tom Tromey <tromey@redhat.com>
3037
3038 * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
3039 (gdb_bfd_ref): Initialize new field.
3040 (gdb_bfd_unref): Unref the archive BFD.
3041 (gdb_bfd_openr_next_archived_file): Acquire a reference to the
3042 parent archive.
3043
3044 2012-08-15 Tom Tromey <tromey@redhat.com>
3045
3046 PR python/14387:
3047 * python/py-bpevent.c (create_breakpoint_event_object): Update
3048 comment.
3049 * python/py-event.c (evpy_add_attribute): Update comment.
3050 * python/py-exitedevent.c (create_exited_event_object): Fix
3051 reference counting and error handling.
3052 * python/py-newobjfileevent.c (create_new_objfile_event_object):
3053 Fix reference counting.
3054 * python/py-signalevent.c (create_signal_event_object): Fix
3055 reference counting and error handling.
3056 * python/py-stopevent.c (emit_stop_event): Fix reference
3057 counting.
3058 * python/py-threadevent.c (get_event_thread): Return a
3059 borrowed reference.
3060 * python/py-type.c (convert_field): Fix reference counting.
3061
3062 2012-08-15 Tom Tromey <tromey@redhat.com>
3063
3064 * dwarf2read.c (dwarf_decode_macro_bytes)
3065 <DW_MACRO_GNU_transparent_include>: Use pointer to included data
3066 as hash key.
3067
3068 2012-08-14 Mike Frysinger <vapier@gentoo.org>
3069
3070 * infcmd.c (_initialize_infcmd): Update help text for the signal,
3071 stepi, nexti, finish, next, step, jump, and continue commands.
3072 * infrun.c (_initialize_infrun): Update help text for the handle
3073 command.
3074
3075 2012-08-14 Doug Evans <dje@google.com>
3076
3077 * gdbtypes.c (struct extra): Delete, unused.
3078
3079 * gdbtypes.c: Whitespace cleanup.
3080 (address_space_name_to_int): Remove "extern" from definition.
3081 (_initialize_gdbtypes): Declare with initialize_file_ftype.
3082
3083 * gdbtypes.c (make_pointer_type): Remove redundant setting of
3084 TYPE_POINTER_TYPE (type).
3085
3086 2012-08-14 Gary Benson <gbenson@redhat.com>
3087
3088 * solib-svr4.c (svr4_free_library_list): Use free_so.
3089
3090 2012-08-13 Mike Frysinger <vapier@gentoo.org>
3091
3092 * .gitignore: Add go-exp.c.
3093
3094 2012-08-13 Doug Evans <dje@google.com>
3095
3096 * value.c (show_convenience): Tweak comment.
3097 (_initialize_values): Mention convenience functions in the help text
3098 for "show convenience".
3099
3100 2012-08-13 Yao Qi <yao@codesourcery.com>
3101
3102 * std-operator.def: Remove TERNOP_SLICE_COUNT.
3103 * breakpoint.c (watchpoint_exp_is_const): Remove handling to
3104 TERNOP_SLICE_COUNT.
3105 * eval.c (evaluate_subexp_standard): Likewise.
3106 * expprint.c (print_subexp_standard): Likewise.
3107 (dump_subexp_body_standard): Likewise.
3108 * parse.c (operator_length_standard): Likewise.
3109
3110 2012-08-13 Yao Qi <yao@codesourcery.com>
3111
3112 * std-operator.def: Remove OP_BITSTRING.
3113 * breakpoint.c (watchpoint_exp_is_const): Update.
3114 * eval.c (evaluate_subexp_standard): Remove handling to
3115 OP_BITSTRING.
3116 * expprint.c (print_subexp_standard): Likewise.
3117 (dump_subexp_body_standard): Likewise.
3118 * parse.c (operator_length_standard): Likewise.
3119 * valops.c (value_bitstring): Remove.
3120 * value.h: Remove the declaration of 'value_bitstring'.
3121
3122 2012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
3123
3124 * linespec.c (find_methods): Remove unused variables `i1' and
3125 `name_len'.
3126 (decode_line_full): Likewise for `arg_start'.
3127
3128 2012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
3129
3130 * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
3131 (zlib_decompress_section): Likewise for `section_data'.
3132 (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
3133
3134 2012-08-10 Doug Evans <dje@google.com>
3135
3136 Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
3137 * NEWS: Document them.
3138 * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
3139 function/strfns.py.
3140 * python/py-type.c (typy_array_1): New function.
3141 (typy_array): Call it.
3142 (typy_vector): New function.
3143 (type_object_methods): Add "vector".
3144 * python/lib/gdb/function/__init__.py: New file.
3145 * python/lib/gdb/function/strfns.py: New file.
3146
3147 2012-08-10 Siddhesh Poyarekar <siddhesh@redhat.com>
3148
3149 * python/py-type.c (convert_field): Use gdb_py_long_from_longest
3150 for TYPE_FIELD_BITPOS.
3151 (typy_get_sizeof): Likewise for TYPE_LENGTH.
3152
3153 2012-08-10 Mike Frysinger <vapier@gentoo.org>
3154
3155 PR cli/10436:
3156 * common/vec.h (VEC_merge): Define.
3157 (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
3158 (DEF_VEC_ALLOC_FUNC_P): Likewise.
3159 (DEF_VEC_ALLOC_FUNC_O): Likewise.
3160 * completer.c: Include gdb_signals.h.
3161 (signal_completer): Define.
3162 * completer.h (signal_completer): Add prototype.
3163 * infcmd.c (_initialize_infcmd): Assign the command
3164 completer for "signal" to handle_completer.
3165 * infrun.c: Include completer.h.
3166 (handle_completer): Define.
3167 (_initialize_infrun): Declare a new local variable c. Store the
3168 result of add_com("handle") to it. Assign the command
3169 completer for "handle" to handle_completer.
3170
3171 2012-08-09 Yao Qi <yao@codesourcery.com>
3172
3173 * cli/cli-decode.c (set_cmd_prefix): New.
3174 (lookup_cmd_for_prefixlist): New.
3175 (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
3176 of each cmd_list_element in *prefixlist.
3177 (add_setshow_cmd_full): set_cmd_prefix.
3178 (add_alias_cmd): Likewise.
3179 * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
3180 Declare 'auto_boolean_enums'.
3181 * cli/cli-setshow.c: Include "observer.h".
3182 (notify_command_param_changed_p): New.
3183 (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
3184 Remove 'static'.
3185 (do_setshow_command): Split it to ...
3186 (do_set_command, do_show_command): ... them. New.
3187 (do_set_command): Call observer_notify_command_param_changed if
3188 notify_command_param_changed_p returns true.
3189 (cmd_show_list): Caller update.
3190 * auto-load.c (set_auto_load_cmd): Likewise.
3191 * remote.c (show_remote_cmd): Likewise.
3192 * cli/cli-setshow.h: Update declarations.
3193 * top.c (execute_command): Call do_set_command and do_show_command.
3194
3195 * NEWS: Mention new MI notification.
3196 * mi/mi-interp.c: Declare mi_command_param_changed.
3197 (mi_interpreter_init): Attach mi_command_param_changed to
3198 observer command_param_changed.
3199 (mi_command_param_changed): New.
3200 Remove mi_suppress_breakpoint_notifications.
3201 Define global variable mi_suppress_notification.
3202 (mi_breakpoint_created): Update.
3203 (mi_breakpoint_deleted): Likewise.
3204 (mi_breakpoint_modified): Likewise.
3205 * mi/mi-main.c (mi_cmd_execute): Likewise. Check command
3206 'gdb-set' and set mi_suppress_notification.
3207 * mi/mi-main.h: (mi_suppress_notification): New struct.
3208
3209 2012-08-09 Andreas Tobler <andreast@fgznet.ch>
3210 Jan Kratochvil <jan.kratochvil@redhat.com>
3211
3212 * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
3213
3214 2012-08-09 Yao Qi <yao@codesourcery.com>
3215
3216 * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
3217 (skiplist): Move it to skip.c.
3218 (init_cmd_lists): Remove code setting enablebreaklist and
3219 skiplist to NULL.
3220 * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
3221 * cli/cli-cmds.h: Remove declaration of enablebreaklist and
3222 skiplist.
3223 * gdbcmd.h: Likewise.
3224 * skip.c (_initialize_step_skip): Move 'skiplist' from
3225 cli/cli-cmds.c.
3226
3227 2012-08-09 Yao Qi <yao@codesourcery.com>
3228
3229 * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
3230 * gnu-nat.c, symfile.c: Likewise.
3231
3232 2012-08-08 Aaron Gamble <agamble@google.com>
3233
3234 * utils.c (prompt_for_continue_wait_time): New static global.
3235 (make_command_stats_cleanup): Initialize it.
3236 (report_command_stats): Subtract time waiting for user.
3237 (prompt_for_continue): Track time waiting for user.
3238 (defaulted_query): Track time waiting for user.
3239
3240 2012-08-08 Doug Evans <dje@google.com>
3241
3242 * eval.c (evaluate_subexp_standard): Fix thinko in handling
3243 UNOP_MEMVAL_TYPE.
3244 * expprint.c (print_subexp_standard, case OP_TYPE): New.
3245 (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
3246 (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
3247 (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
3248 (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
3249 (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
3250 elt.
3251 (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
3252 (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
3253 (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
3254 (dump_prefix_expression): Handle OP_TYPE.
3255
3256 2012-08-08 Keith Seitz <keiths@redhat.com>
3257
3258 * breakpoint.c (parse_breakpoint_sals): Remove unused variable
3259 addr_start.
3260
3261 2012-08-08 Doug Evans <dje@google.com>
3262
3263 * linux-thread-db.c: #include "gdb_vecs.h".
3264 (try_thread_db_load_from_pdir_1): New arg "subdir". All callers
3265 updated.
3266 (try_thread_db_load_from_pdir): New arg "subdir". All callers updated.
3267 (thread_db_load_search): Use a vector to iterate over path elements.
3268 Handle text appearing after "$pdir".
3269
3270 * gdb_string.h: Moved to ...
3271 * common/gdb_string.h: ... here.
3272 * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
3273 gdb_string.h and gdb_assert.h.
3274
3275 2012-08-08 Yao Qi <yao@codesourcery.com>
3276
3277 * tic6x-tdep.c (tic6x_register_to_value): Remove.
3278 (tic6x_value_to_register): Likewise.
3279 (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
3280 and set_gdbarch_value_to_register.
3281
3282 2012-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3283 Jean-Marc Saffroy <saffroy@gmail.com>
3284
3285 PR 11804
3286 * defs.h (find_memory_region_ftype): New comment. New arg modified.
3287 * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
3288 * gcore.c (gcore_create_callback): New function comment. Add modified
3289 parameter. Only write modified regions. Set SEC_READONLY exactly
3290 according to MODIFIED.
3291 (objfile_find_memory_regions): Ignore separate debug info files. Ass
3292 the passed modified value to FUNC.
3293 * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
3294 * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
3295 first. New variables modified and has_anonymous. Parse the lines of
3296 smaps file. Add the passed MODIFIED value to FUNC.
3297 * procfs.c (find_memory_regions_callback): Add the passed modified
3298 value.
3299
3300 2012-08-06 Tom Tromey <tromey@redhat.com>
3301
3302 * dwarf2-frame.c (clear_pointer_cleanup): New function.
3303 (dwarf2_frame_cache): Use it.
3304 * frame-unwind.h (frame_sniffer_ftype): Document prologue
3305 cache initialization constraint.
3306
3307 2012-08-06 Tom Tromey <tromey@redhat.com>
3308
3309 PR python/14386:
3310 * varobj.c (update_dynamic_varobj_children): Don't call
3311 PyIter_Check.
3312
3313 2012-08-06 Tom Tromey <tromey@redhat.com>
3314
3315 PR cli/14392:
3316 * cli/cli-cmds.c (list_command): Filter 'sals_end'.
3317
3318 2012-08-06 Nathaniel Flath <flat0103@gmail.com>
3319
3320 * NEWS: New entry for 'cd' default parameters.
3321 * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
3322
3323 2012-08-03 Tom Tromey <tromey@redhat.com>
3324
3325 * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
3326 return.
3327
3328 2012-08-02 Ulrich Weigand <ulrich.weigand@linaro.org>
3329
3330 * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
3331 to attempting lseek/write.
3332 (inf_child_fileio_pread): Likewise for pread.
3333
3334 2012-08-02 Yao Qi <yao@codesourcery.com>
3335
3336 * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
3337 (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
3338 add_setshow_zinteger_cmd.
3339 * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
3340 * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
3341 (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
3342 instead of add_setshow_zinteger_cmd.
3343 * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
3344 (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
3345 instead of add_setshow_zinteger_cmd.
3346 * frame.c (frame_debug): Add 'unsigned'.
3347 (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
3348 add_setshow_zinteger_cmd.
3349 * frame.h: Update the declaration of 'frame_debug'.
3350 * gdbtypes.c (overload_debug): Add 'unsigned'.
3351 (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
3352 add_setshow_zinteger_cmd.
3353 * inferior.h: Update declaration of 'debug_infrun'.
3354 * infrun.c (debug_infrun): Add 'unsigned'.
3355 (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
3356 add_setshow_zinteger_cmd.
3357 * jit.c (jit_debug): Add 'unsigned'.
3358 (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
3359 add_setshow_zinteger_cmd.
3360 * linux-nat.c (debug_linux_nat): Add 'unsigned'.
3361 (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
3362 instead of add_setshow_zinteger_cmd.
3363 * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
3364 (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
3365 add_setshow_zinteger_cmd.
3366 * machoread.c (mach_o_debug_level): Add 'unsigned'.
3367 (_initialize_machoread): Call add_setshow_zuinteger_cmd
3368 instead of add_setshow_zinteger_cmd.
3369 * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
3370 * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
3371 (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
3372 intead of add_setshow_zinteger_cmd.
3373 * mips-tdep.c (mips_debug): Add 'unsigned'.
3374 (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
3375 instead of add_setshow_zinteger_cmd.
3376 * monitor.c (monitor_debug): Add 'unsigned'.
3377 (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
3378 add_setshow_zinteger_cmd.
3379 * observer.c (observer_debug): Add 'unsigned'.
3380 (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
3381 add_setshow_zinteger_cmd.
3382 * parse.c (expressiondebug): Add 'unsigned'.
3383 (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
3384 add_setshow_zinteger_cmd.
3385 * record.c (record_debug): Add 'unsigned'.
3386 (_initialize_record): Call add_setshow_zuinteger_cmd instead of
3387 add_setshow_zinteger_cmd.
3388 * record.h: Update the declaration of 'record_debug'.
3389 * stap-probe.c (stap_expression_debug): Add 'unsigned'.
3390 (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
3391 add_setshow_zinteger_cmd.
3392 * serial.c (global_serial_debug_p): Add 'unsigned'.
3393 (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
3394 add_setshow_zinteger_cmd.
3395 * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
3396 (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
3397 add_setshow_zinteger_cmd.
3398 * solib-frv.c (solib_frv_debug): Add 'unsigned'.
3399 (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
3400 add_setshow_zinteger_cmd.
3401 * target.c (targetdebug): Add 'unsigned'.
3402 (initialize_targets): Call add_setshow_zuinteger_cmd instead of
3403 add_setshow_zinteger_cmd.
3404 * valops.c (overload_debug): Add 'unsigned'.
3405 * varobj.c (varobjdebug): Add 'unsigned'.
3406 (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
3407 add_setshow_zinteger_cmd.
3408 * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
3409 (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
3410 instead of add_setshow_zinteger_cmd.
3411
3412 * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
3413 * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
3414 (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
3415 instead of add_setshow_zinteger_cmd.
3416 * gdbarch.c, gdbarch.h: Re-generated.
3417
3418 2012-08-02 Yao Qi <yao@codesourcery.com>
3419
3420 * nto-tdep.c: Don't include cli/cli-decode.h and
3421 cli/cli-cmds.h.
3422 (_initialize_nto_tdep): Remove.
3423 * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
3424 Remove field.
3425 Remove macro nto_internal_debugging.
3426
3427 2012-08-01 Richard Henderson <rth@redhat.com>
3428
3429 * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
3430 (mep-*-*) [gdb_target_obs]: Likewise.
3431
3432 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
3433
3434 * ppc-linux-tdep.c (ppc_linux_init_abi): Register
3435 linux_get_siginfo_type.
3436
3437 2012-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
3438
3439 * infcall.c (call_function_by_hand): Move BP_ADDR comment to
3440 AT_ENTRY_POINT.
3441 (call_function_by_hand) <ON_STACK>: Call write_memory with
3442 gdbarch_breakpoint_from_pc, if possible.
3443 (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
3444 here.
3445
3446 2012-07-31 Yao Qi <yao@codesourcery.com>
3447
3448 * tracepoint.c: Add 'static' for some variables.
3449
3450 2012-07-31 Yao Qi <yao@codesourcery.com>
3451
3452 * go32-nat.c: Declare _initialize_go32_nat.
3453 * ser-go32.c: Declare _initialize_ser_dos.
3454 * top.c (do_chdir_cleanup): Add 'static'.
3455
3456 2012-07-30 Keith Seitz <keiths@redhat.com>
3457
3458 * linespec.c (linespec_lex_number): A number followed
3459 by quotes is a valid number, too.
3460
3461 2012-07-30 Tom Tromey <tromey@redhat.com>
3462
3463 * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
3464
3465 2012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
3466
3467 * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
3468 attempt to 4-byte-align HW breakpoint addresses for Thumb.
3469
3470 2012-07-30 Andrew Burgess <aburgess@broadcom.com>
3471
3472 * varobj.c (varobj_invalidate_iter): All varobj must be marked as
3473 invalid or reevaluated to prevent prevent references to possibly
3474 delete'd type objects being left in the varobj.
3475
3476 2012-07-27 Tom Tromey <tromey@redhat.com>
3477 Jan Kratochvil <jan.kratochvil@redhat.com>
3478
3479 * copying.awk: Print buffer-read-only and vi ro markers.
3480 * copying.c: Rebuild.
3481 * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
3482 * gdbarch.c, gdbarch.h: Rebuild.
3483 * target-descriptions.c (maint_print_c_tdesc_cmd): Print
3484 buffer-read-only and vi ro markers.
3485 * features/arm-with-iwmmxt.c: Rebuild.
3486 * features/arm-with-m-fpa-layout.c: Rebuild.
3487 * features/arm-with-m-vfp-d16.c: Rebuild.
3488 * features/arm-with-m.c: Rebuild.
3489 * features/arm-with-neon.c: Rebuild.
3490 * features/arm-with-vfpv2.c: Rebuild.
3491 * features/arm-with-vfpv3.c: Rebuild.
3492 * features/i386/amd64-avx-linux.c: Rebuild.
3493 * features/i386/amd64-avx.c: Rebuild.
3494 * features/i386/amd64-linux.c: Rebuild.
3495 * features/i386/amd64.c: Rebuild.
3496 * features/i386/i386-avx-linux.c: Rebuild.
3497 * features/i386/i386-avx.c: Rebuild.
3498 * features/i386/i386-linux.c: Rebuild.
3499 * features/i386/i386-mmx-linux.c: Rebuild.
3500 * features/i386/i386-mmx.c: Rebuild.
3501 * features/i386/i386.c: Rebuild.
3502 * features/i386/x32-avx-linux.c: Rebuild.
3503 * features/i386/x32-avx.c: Rebuild.
3504 * features/i386/x32-linux.c: Rebuild.
3505 * features/i386/x32.c: Rebuild.
3506 * features/mips-dsp-linux.c: Rebuild.
3507 * features/mips-linux.c: Rebuild.
3508 * features/mips64-dsp-linux.c: Rebuild.
3509 * features/mips64-linux.c: Rebuild.
3510 * features/rs6000/powerpc-32.c: Rebuild.
3511 * features/rs6000/powerpc-32l.c: Rebuild.
3512 * features/rs6000/powerpc-403.c: Rebuild.
3513 * features/rs6000/powerpc-403gc.c: Rebuild.
3514 * features/rs6000/powerpc-405.c: Rebuild.
3515 * features/rs6000/powerpc-505.c: Rebuild.
3516 * features/rs6000/powerpc-601.c: Rebuild.
3517 * features/rs6000/powerpc-602.c: Rebuild.
3518 * features/rs6000/powerpc-603.c: Rebuild.
3519 * features/rs6000/powerpc-604.c: Rebuild.
3520 * features/rs6000/powerpc-64.c: Rebuild.
3521 * features/rs6000/powerpc-64l.c: Rebuild.
3522 * features/rs6000/powerpc-7400.c: Rebuild.
3523 * features/rs6000/powerpc-750.c: Rebuild.
3524 * features/rs6000/powerpc-860.c: Rebuild.
3525 * features/rs6000/powerpc-altivec32.c: Rebuild.
3526 * features/rs6000/powerpc-altivec32l.c: Rebuild.
3527 * features/rs6000/powerpc-altivec64.c: Rebuild.
3528 * features/rs6000/powerpc-altivec64l.c: Rebuild.
3529 * features/rs6000/powerpc-cell32l.c: Rebuild.
3530 * features/rs6000/powerpc-cell64l.c: Rebuild.
3531 * features/rs6000/powerpc-e500.c: Rebuild.
3532 * features/rs6000/powerpc-e500l.c: Rebuild.
3533 * features/rs6000/powerpc-isa205-32l.c: Rebuild.
3534 * features/rs6000/powerpc-isa205-64l.c: Rebuild.
3535 * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
3536 * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
3537 * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
3538 * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
3539 * features/rs6000/powerpc-vsx32.c: Rebuild.
3540 * features/rs6000/powerpc-vsx32l.c: Rebuild.
3541 * features/rs6000/powerpc-vsx64.c: Rebuild.
3542 * features/rs6000/powerpc-vsx64l.c: Rebuild.
3543 * features/rs6000/rs6000.c: Rebuild.
3544 * features/s390-linux32.c: Rebuild.
3545 * features/s390-linux32v1.c: Rebuild.
3546 * features/s390-linux32v2.c: Rebuild.
3547 * features/s390-linux64.c: Rebuild.
3548 * features/s390-linux64v1.c: Rebuild.
3549 * features/s390-linux64v2.c: Rebuild.
3550 * features/s390x-linux64.c: Rebuild.
3551 * features/s390x-linux64v1.c: Rebuild.
3552 * features/s390x-linux64v2.c: Rebuild.
3553 * features/tic6x-c62x-linux.c: Rebuild.
3554 * features/tic6x-c62x.c: Rebuild.
3555 * features/tic6x-c64x-linux.c: Rebuild.
3556 * features/tic6x-c64x.c: Rebuild.
3557 * features/tic6x-c64xp-linux.c: Rebuild.
3558 * features/tic6x-c64xp.c: Rebuild.
3559
3560 2012-07-27 Tom Tromey <tromey@redhat.com>
3561
3562 * c-exp.y (classify_name): Avoid assignment in condition.
3563
3564 2012-07-27 Roland Schwingel <roland.schwingel@onevision.com>
3565
3566 * amd64-windows-tdep.c: Include "frame.h".
3567 (amd64_windows_skip_trampoline_code): New function.
3568 (amd64_windows_init_abi): Add trampoline registration.
3569
3570 2012-07-27 Yao Qi <yao@codesourcery.com>
3571
3572 * tracepoint.c (cur_traceframe_number): Remove.
3573 (set_tfile_traceframe): Remove.
3574 (tfile_trace_find, tfile_fetch_registers): Update callers.
3575 (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
3576 (tfile_open, tfile_trace_find): Likewise.
3577
3578 2012-07-27 Yao Qi <yao@codesourcery.com>
3579
3580 * thread.c (switch_to_thread): Don't call registers_changed.
3581
3582 2012-07-26 Tom Tromey <tromey@redhat.com>
3583
3584 * Makefile.in (SFILES): Remove objc-exp.y.
3585 (YYFILES): Remove objc-exp.c.
3586 (YYOBJ): Remove objc-exp.o.
3587 (local-maintainer-clean): Don't mention objc-exp.c.
3588 * c-exp.y: Include objc-lang.h.
3589 (%union) <class>: New field.
3590 (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
3591 (exp): Clone subscript production for OBJC_LBRAC. Add various
3592 Objective C productions.
3593 (msglist, msgarglist, msgarg): New productions.
3594 (array_mod, func_mod, operator): Clone productions for
3595 OBJC_LBRAC.
3596 (parse_string_or_char): Handle '@' strings.
3597 (lex_one_token): Return OBJC_LBRAC. Recognize @selector.
3598 (classify_name): Check la_name_of_this. Recognize ObjC class
3599 names.
3600 * objc-exp.y: Remove.
3601 * objc-lang.c (objc_language_defn): Use c_parse, c_error.
3602 * objc-lang.h (objc_parse, objc_error): Don't declare.
3603
3604 2012-07-26 Markus Metzger <markus.t.metzger@intel.com>
3605
3606 * python/py-inferior.c (infpy_threads): Call update_thread_list ().
3607
3608 2012-07-26 Jan Kratochvil <jan.kratochvil@redhat.com>
3609
3610 * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
3611 and decrement.
3612
3613 2012-07-26 Tom Tromey <tromey@redhat.com>
3614
3615 * copying.c: Rebuild.
3616 * copying.awk: Don't use immediate_quit. Use 'no_set_class', not
3617 'no_class'.
3618
3619 2012-07-26 Tom Tromey <tromey@redhat.com>
3620
3621 * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
3622 immediate_quit.
3623 (print_objfile_statistics): Likewise.
3624 (maintenance_print_symbols): Likewise.
3625 (maintenance_print_msymbols): Likewise.
3626 (maintenance_print_objfiles): Likewise.
3627 * psymtab.c (print_partial_symbols): Call QUIT.
3628 (maintenance_print_psymbols): Likewise. Don't modify
3629 immediate_quit.
3630 * copying.c (show_copying_command): Don't modify immediate_quit.
3631 (show_warranty_command): Likewise.
3632 * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
3633
3634 2012-07-26 Keith Seitz <keiths@redhat.com>
3635
3636 * linespec.c (linespec_lexer_lex_number): The input
3637 is also a valid number if the next character is a comma
3638 or colon.
3639
3640 2012-07-26 Joel Brobecker <brobecker@adacore.com>
3641
3642 * NEWS: Document new --enable-libmcheck/--disable-libmcheck
3643 configure options.
3644
3645 2012-07-26 Tristan Gingold <gingold@adacore.com>
3646
3647 * machoread.c: Include gdb_bfd.h.
3648
3649 2012-07-26 Tristan Gingold <gingold@adacore.com>
3650
3651 * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
3652 offset.
3653
3654 2012-07-26 Siddhesh Poyarekar <siddhesh@redhat.com>
3655
3656 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
3657 SIZE to size_t.
3658 (dwarf2_evaluate_loc_desc): Likewise.
3659 (dwarf2_loc_desc_needs_frame): Likewise.
3660 (locexpr_describe_location_1): Likewise.
3661 * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
3662 size_t.
3663 (struct dwarf2_loclist_baton): Likewise.
3664 * dwarf2read.c (struct dwarf_block): Likewise.
3665 (dump_die_shallow): Use pulongest to print dwarf_block.size.
3666 (decode_locdesc): Expand SIZE and I to size_t.
3667
3668 2012-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
3669
3670 * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
3671
3672 2012-07-25 Joel Brobecker <brobecker@adacore.com>
3673
3674 * doublest.c (convert_doublest_to_floatformat): If the exponent
3675 is too small, treat the value as zero. If the exponent is too
3676 large, treat the value as infinity.
3677
3678 2012-07-25 Joel Brobecker <brobecker@adacore.com>
3679
3680 * configure.ac: Add --enable-lmcheck configure option.
3681 * configure: Regenerate.
3682
3683 2012-07-25 Tom Tromey <tromey@redhat.com>
3684
3685 * NEWS: Mention maint info bfds.
3686 * gdb_bfd.c (all_bfds): New global.
3687 (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
3688 (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
3689 New functions.
3690
3691 2012-07-25 Ralf Corsépius <ralf.corsepius@rtems.org>
3692
3693 * configure.tgt: Add v850*-*-rtems*.
3694
3695 2012-07-25 Tom Tromey <tromey@redhat.com>
3696
3697 * macrotab.c (macro_bcache_str): Remove cast.
3698
3699 2012-07-25 Hui Zhu <hui_zhu@mentor.com>
3700
3701 * linespec.c (linespec_lexer_lex_number): Update comments,
3702 change the return and add check to make sure the input is
3703 the decimal numbers.
3704 (linespec_lexer_lex_one): If linespec_lexer_lex_number return
3705 false, call linespec_lexer_lex_string.
3706
3707 2012-07-24 Tom Tromey <tromey@redhat.com>
3708
3709 * symfile.c (symbol_file_add): Don't open BFD twice.
3710
3711 2012-07-24 Marc Khouzam <marc.khouzam@ericsson.com>
3712
3713 * breakpoint.c (create_breakpoint): Store condition for pending
3714 breakpoints.
3715
3716 2012-07-24 Andreas Schwab <schwab@linux-m68k.org>
3717
3718 * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
3719 (m68k_return_value): Handle complex types like structures.
3720 (m68k_svr4_return_value): Likewise.
3721
3722 2012-07-24 Marcus Shawcroft <marcus.shawcroft@arm.com>
3723
3724 * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
3725 parameters to bfd_get_section_name.
3726
3727 2012-07-24 Yao Qi <yao@codesourcery.com>
3728
3729 * cli/cli-setshow.c: Handle case 'var_uinteger'
3730 and 'var_zuninteger' together. Handle case 'var_integer' and
3731 'var_zinteger' together.
3732
3733 2012-07-23 Keith Seitz <keiths@redhat.com>
3734
3735 * linespec.c (convert_linespec_to_sal): Don't add
3736 any symbols to the result vector if symbol_to_sal
3737 returns zero.
3738
3739 2012-07-23 Keith Seitz <keiths@redhat.com>
3740
3741 * linespec.c (decode_objc): Record the function name
3742 in the linespec.
3743
3744 2012-07-23 Tom Tromey <tromey@redhat.com>
3745
3746 * rs6000-nat.c (add_vmap): Rewrite archive loop. Fix reference
3747 counting.
3748 * exec.c (exec_close_1): Unconditionally release vmap's BFD.
3749 (map_vmap): Acquire a reference to the BFD.
3750
3751 2012-07-23 Siddhesh Poyarekar <siddhesh@redhat.com>
3752
3753 * p-valprint.c (pascal_object_print_value): Replace potentially
3754 unsafe alloca with xmalloc/xfree.
3755 * valops.c (search_struct_method): Likewise.
3756
3757 2012-07-23 Tom Tromey <tromey@redhat.com>
3758
3759 * solib-svr4.c (enable_break): Update.
3760 * bfd-target.h (target_bfd_reopen): Update documentation.
3761
3762 2012-07-23 Tom Tromey <tromey@redhat.com>
3763
3764 * symfile.c (separate_debug_file_exists): Update.
3765 (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
3766 (reread_symbols): Update.
3767 * elfread.c (build_id_verify): Update.
3768 * symfile.h (gdb_bfd_open_maybe_remote): Rename from
3769 bfd_open_maybe_remote.
3770
3771 2012-07-23 Tom Tromey <tromey@redhat.com>
3772
3773 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
3774
3775 2012-07-23 Tom Tromey <tromey@redhat.com>
3776
3777 * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
3778 and 'abfd'.
3779 * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
3780 and 'abfd'.
3781 * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
3782 * machoread.c (macho_add_oso_symfile): Make a cleanup for
3783 'abfd'.
3784 (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
3785 * objfiles.c (allocate_objfile): Acquire a new reference.
3786 * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
3787 * solib.c (solib_read_symbols): Don't acquire a BFD reference.
3788 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
3789 a cleanup for 'nbfd'.
3790 * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
3791 for 'nbfd'.
3792 * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
3793 make a cleanup for 'abfd'.
3794 (symbol_file_add): Make a BFD cleanup.
3795
3796 2012-07-23 Tom Tromey <tromey@redhat.com>
3797
3798 * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
3799 (bfd_openw_with_cleanup): Use gdb_bfd_openw.
3800 * corelow.c (core_open): Use gdb_bfd_fopen.
3801 * dsrec.c (load_srec): Use gdb_bfd_openr.
3802 * exec.c (exec_file_attach): Use gdb_bfd_fopen.
3803 * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
3804 * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
3805 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
3806 (gdb_bfd_fdopenr): New functions.
3807 * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
3808 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
3809 (gdb_bfd_fdopenr): Declare.
3810 * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
3811 * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
3812 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
3813 gdb_bfd_openr_next_archived_file.
3814 (macho_check_dsym): Use gdb_bfd_openr.
3815 (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
3816 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
3817 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
3818 * remote-mips.c (mips_load_srec, pmon_load_fast): Use
3819 gdb_bfd_openr.
3820 * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
3821 * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
3822 gdb_bfd_openr_next_archived_file.
3823 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3824 Use gdb_bfd_openr.
3825 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
3826 gdb_bfd_openr.
3827 * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
3828 * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
3829 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
3830 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
3831 (symfile_bfd_open): Use gdb_bfd_fopen.
3832 (generic_load): Use gdb_bfd_openr.
3833 * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
3834
3835 2012-07-23 Tom Tromey <tromey@redhat.com>
3836
3837 * bfd-target.c (target_bfd_reopen): Update.
3838 * cli/cli-dump.c (bfd_openr_with_cleanup)
3839 (bfd_openw_with_cleanup): Update.
3840 * corelow.c (core_open): Update.
3841 * dsrec.c (load_srec): Update.
3842 * exec.c (exec_file_attach): Update.
3843 * gcore.c (create_gcore_bfd): Update.
3844 * gdb_bfd.c (gdb_bfd_ref): Return void.
3845 (gdb_bfd_open): Update.
3846 * gdb_bfd.h (gdb_bfd_ref): Return void.
3847 Update comments.
3848 * jit.c (jit_bfd_try_read_symtab): Update.
3849 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
3850 * machoread.c (macho_symfile_read_all_oso): Update.
3851 (macho_check_dsym): Update.
3852 * procfs.c (insert_dbx_link_bpt_in_file): Update.
3853 * remote-m32r-sdi.c (m32r_load): Update.
3854 * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
3855 * rs6000-nat.c (add_vmap): Update.
3856 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3857 Update.
3858 * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
3859 * solib-spu.c (spu_bfd_open): Update.
3860 * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
3861 * spu-linux-nat.c (spu_bfd_open): Update.
3862 * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
3863 (generic_load): Update.
3864 * windows-nat.c (windows_make_so): Update.
3865
3866 2012-07-22 Siddhesh Poyarekar <siddhesh@redhat.com>
3867
3868 * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
3869
3870 2012-07-20 Jeff Kenton <jkenton@tilera.com>
3871
3872 * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
3873 SIGTRAMP_FRAME unwinding.
3874
3875 2012-07-20 Doug Evans <dje@google.com>
3876
3877 * NEWS: Document new options "set/show use-deprecated-index-sections",
3878 and delete reference to --use-deprecated-index-sections.
3879 * symfile.h (use_deprecated_index_sections): Delete.
3880 * dwarf2read.c (use_deprecated_index_sections): Make static.
3881 (read_index_from_section): Update wording of how to load
3882 deprecated index sections.
3883 (_initialize_dwarf2_read): New options
3884 "set/show use-deprecated-index-sections".
3885 * main.c (captured_main): Delete --use-deprecated-index-sections.
3886
3887 2012-07-20 Pedro Alves <palves@redhat.com>
3888
3889 PR threads/11692
3890 PR gdb/12203
3891
3892 * infrun.c (handle_inferior_event) <new thread>: Don't special
3893 case minus_one_ptid.
3894 <TARGET_WAITKIND_SPURIOUS>: Ditto.
3895 * linux-thread-db.c (thread_get_info_callback): Don't return early
3896 if the thread is zombie.
3897 (thread_from_lwp): Change return type to void. Rewrite stale
3898 comment.
3899 (attach_thread): Don't return early if the thread is zombie,
3900 instead set its "dying" flag.
3901 (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
3902 (find_new_threads_callback): Don't return early if the thread is
3903 zombie.
3904
3905 2012-07-20 Pedro Alves <palves@redhat.com>
3906
3907 * linux-nat.c (linux_nat_wait): Dump the passed in target options.
3908 * target.c (target_wait): Likewise.
3909 (str_comma_list_concat_elem, do_option, target_options_to_string):
3910 New functions.
3911 * target.h (target_options_to_string): Declare.
3912
3913 2012-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
3914 Tom Tromey <tromey@redhat.com>
3915
3916 * dwarf2read.c (dwarf_decode_macros)
3917 <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
3918 DW_MACRO_GNU_transparent_include_alt>: New cases.
3919 (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
3920 DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
3921
3922 2012-07-20 Tom Tromey <tromey@redhat.com>
3923
3924 * dwarf2read.c (try_open_dwo_file): Don't call
3925 gdb_bfd_stash_filename.
3926
3927 2012-07-20 Pedro Alves <palves@redhat.com>
3928
3929 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
3930 (i386_record_lea_modrm, i386_record_push, i386_record_floats)
3931 (i386_process_record): Tweak description comments.
3932
3933 2012-07-20 Pedro Alves <palves@redhat.com>
3934
3935 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
3936 (i386_process_record): Use record_read_memory.
3937 * record.c (record_read_memory): New function.
3938 (record_arch_list_add_mem, record_exec_insn): Use
3939 record_read_memory.
3940 * record.h (record_read_memory): Declare.
3941
3942 2012-07-20 Yao Qi <yao@codesourcery.com>
3943
3944 * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
3945 NULL for xfree.
3946
3947 2012-07-19 Pedro Alves <palves@redhat.com>
3948
3949 * record.c (record_resume): Ask the target beneath to report all
3950 signals.
3951
3952 2012-07-19 Doug Evans <dje@google.com>
3953
3954 * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
3955 there's no section at address zero.
3956 (dwarf2_record_block_ranges): Ditto.
3957
3958 2012-07-19 Yao Qi <yao@codesourcery.com>
3959
3960 * command.h, remote.c: Fix a typo in comment.
3961
3962 2012-07-19 Tom Tromey <tromey@redhat.com>
3963
3964 PR exp/13206:
3965 * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
3966 * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
3967 OP_DECLTYPE>: New cases.
3968 * c-exp.y (TYPEOF, DECLTYPE): New tokens.
3969 (type_exp): Add new productions.
3970 (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
3971 and decltype.
3972 * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
3973 New case.
3974 * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
3975 OP_DECLTYPE>: New case.
3976 * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
3977 New case.
3978 * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
3979 * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
3980
3981 2012-07-19 Tom Tromey <tromey@redhat.com>
3982
3983 * c-exp.y (enum token_flags): New.
3984 (struct token) <cxx_only>: Remove.
3985 <flags>: New field.
3986 (tokentab3, tokentab2, ident_tokens): Update.
3987 (lex_one_token): Update. Handle FLAG_SHADOW.
3988
3989 2012-07-19 Tom Tromey <tromey@redhat.com>
3990
3991 * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
3992 * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
3993 UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
3994 * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE. Update
3995 for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST. Use
3996 type_exp production where appropriate.
3997 * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
3998 <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
3999 <UNOP_MEMVAL_TYPE>: New case.
4000 (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
4001 (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
4002 * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
4003 <UNOP_MEMVAL_TYPE>: New case.
4004 (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
4005 UNOP_REINTERPRET_CAST>: Update.
4006 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
4007 * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
4008 UNOP_REINTERPRET_CAST>: Update.
4009 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
4010 * stack.c (return_command): Also check for UNOP_CAST_TYPE.
4011 * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
4012 constants.
4013
4014 2012-07-19 Yao Qi <yao@codesourcery.com>
4015 Jan Kratochvil <jan.kratochvil@redhat.com>
4016
4017 * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
4018 and case 'var_optional_filename' together.
4019 * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
4020 instead of add_setshow_optional_filename_cmd for setshow command
4021 'args'. Set completer for 'set args'.
4022
4023 2012-07-18 Doug Evans <dje@google.com>
4024
4025 * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
4026 * common/gdb_vecs.c: New file, contents from utils.c.
4027 * common/host-defs.h: New file, contents from defs.h.
4028 * utils.h: New file, contents from defs.h.
4029 * defs.h: Move all declarations of objects defined in utils.c
4030 to utils.h (except QUIT() and related).
4031 #include "utils.h", "host-defs.h".
4032 * probe.h (probe_p): Move here from gdb_vecs.h.
4033 * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
4034 * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
4035 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
4036 * Makefile.in (SFILES): Add common/gdb_vecs.c.
4037 (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
4038 (COMMON_OBS): Add gdb_vecs.o.
4039 (gdb_vecs.o): New rule.
4040
4041 2012-07-18 Keith Seitz <keiths@redhat.com>
4042
4043 * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
4044 parameter. If non-zero, use SYMNAME as the canonical name
4045 for the SaL.
4046 Update all callers.
4047 (convert_linespec_to_sals): Use add_sal_to_sals for
4048 expressions, too.
4049 (decode_line_full): No need to "fill in missing canonical names"
4050 anymore. Simply make cleanups for the allocated names.
4051
4052 2012-07-18 Keith Seitz <keiths@redhat.com>
4053
4054 * linespec.c (struct linespec): Constify expression,
4055 source_filename, function_name, and label_name.
4056 (symbol_not_found_error): Make all parameters const.
4057 (linespec_parser_delete): No need to check for NULL
4058 when using xfree. Cast const char * to char * for xfree.
4059
4060 2012-07-18 Keith Seitz <keiths@redhat.com>
4061
4062 * breakpoint.c (invalid_thread_id_error): New function.
4063 (find_condition_and_thread): Use invalid_thread_id_error.
4064 (watch_command_1): Likewise.
4065
4066 2012-07-18 Tom Tromey <tromey@redhat.com>
4067
4068 * cc-with-index.sh, cc-with-dwz.sh: Remove.
4069 * contrib/cc-with-tweaks.sh: New file.
4070
4071 2012-07-18 Tom Tromey <tromey@redhat.com>
4072
4073 * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
4074 (locate_dwz_sections): Recognize .gdb_index.
4075 (create_cus_from_index_list): New function.
4076 (create_cus_from_index): Use it. Handle .dwz data.
4077 (read_index_from_section): New function, extracted from
4078 dwarf2_read_index.
4079 (dwarf2_read_index): Use it. Read .gdb_index from dwz file,
4080 if needed.
4081
4082 2012-07-18 Tom Tromey <tromey@redhat.com>
4083
4084 * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
4085 (struct dwarf2_per_cu_data) <length>: No longer bitfield.
4086 <is_dwz>: New field.
4087 (struct dwz_file): New.
4088 (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
4089 (locate_dwz_sections, dwarf2_get_dwz_file)
4090 (get_abbrev_section_for_cu): New functions.
4091 (error_check_comp_unit_head, read_and_check_comp_unit_head)
4092 (read_and_check_type_unit_head): Add abbrev_section argument.
4093 (create_debug_types_hash_table): Update.
4094 (init_cutu_and_read_dies): Use proper abbrev section.
4095 (init_cutu_and_read_dies_no_follow): Likewise.
4096 (set_partial_user): Do nothing if PST==NULL.
4097 (read_comp_units_from_section): New function.
4098 (create_all_comp_units): Use it.
4099 (scan_partial_symbols, partial_die_parent_scope): Update.
4100 (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4101 (process_imported_unit_die, read_partial_die): Handle .dwz files.
4102 (find_partial_die): Add offset_in_dwz argument. Update.
4103 (guess_partial_die_structure_name, fixup_partial_die): Update.
4104 (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
4105 DW_FORM_GNU_strp_alt.
4106 (read_indirect_string_from_dwz): New function.
4107 (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
4108 (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4109 (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
4110 (follow_die_offset): Add offset_in_dwz argument.
4111 (follow_die_ref, dwarf2_fetch_die_location_block): Update.
4112 (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
4113 (dwarf_decode_macro_bytes): Add section_is_dwz argument.
4114 Handle new macro forms.
4115 (dwarf_decode_macros): Update.
4116 (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
4117 (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
4118 (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
4119 (create_debug_types_hash_table): Use correct abbrev section.
4120 (get_debug_line_section): New function.
4121 (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
4122 (process_full_comp_unit): Pass 'required' argument to
4123 end_symtab_get_static_block.
4124 * buildsym.h (end_symtab_get_static_block): Update.
4125 * buildsym.c (end_symtab_get_static_block): Add 'required'
4126 argument.
4127 (end_symtab, end_expandable_symtab): Update.
4128
4129 2012-07-18 Tom Tromey <tromey@redhat.com>
4130
4131 * dwarf2read.c: Don't include zlib.h or sys/mman.h.
4132 (pagesize): Remove.
4133 (struct dwarf2_section_info) <map_addr, map_len>: Remove.
4134 (zlib_decompress_section): Remove.
4135 (dwarf2_read_section): Use gdb_bfd_map_section.
4136 (munmap_section_buffer): Remove.
4137 (free_dwo_file, dwarf2_per_objfile_free): Don't use
4138 munmap_section_buffer.
4139 * gdb_bfd.c: Include zlib.h, sys/mman.h.
4140 (struct gdb_bfd_section_data): New.
4141 (free_one_bfd_section): New function.
4142 (gdb_bfd_close_or_warn): Use free_one_bfd_section.
4143 (get_section_descriptor, zlib_decompress_section)
4144 (gdb_bfd_map_section): New functions.
4145 * gdb_bfd.h (gdb_bfd_map_section): Declare.
4146
4147 2012-07-18 Tom Tromey <tromey@redhat.com>
4148
4149 * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
4150
4151 2012-07-18 Tom Tromey <tromey@redhat.com>
4152
4153 * gdb_bfd.c (struct gdb_bfd_data): New.
4154 (gdb_bfd_cache): New global.
4155 (struct gdb_bfd_cache_search): New.
4156 (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
4157 (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
4158 * gdb_bfd.h (gdb_bfd_open): Declare.
4159
4160 2012-07-18 Tom Tromey <tromey@redhat.com>
4161
4162 * utils.c (make_cleanup_bfd_unref): Rename from
4163 make_cleanup_bfd_close.
4164 * defs.h (make_cleanup_bfd_unref): Rename from
4165 make_cleanup_bfd_close.
4166 * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
4167 (bfd_openw_with_cleanup): Update.
4168 * corelow.c (core_open): Update.
4169 * dsrec.c (load_srec): Update.
4170 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
4171 * remote-m32r-sdi.c (m32r_load): Update.
4172 * remote-mips.c (mips_load_srec): Update.
4173 (pmon_load_fast): Update.
4174 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4175 Update.
4176 (darwin_bfd_open): Update.
4177 * solib.c (solib_bfd_fopen): Update.
4178 * symfile-mem.c (symbol_file_add_from_memory): Update.
4179 * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
4180 (symfile_bfd_open): Update.
4181 (generic_load): Update.
4182
4183 2012-07-18 Tom Tromey <tromey@redhat.com>
4184
4185 * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
4186 (pmon_load_fast): Likewise.
4187 * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
4188 (m32r_upload_command): Likewise.
4189 * dsrec.c (load_srec): Use make_cleanup_bfd_close.
4190 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4191 Use make_cleanup_bfd_close.
4192
4193 2012-07-18 Tom Tromey <tromey@redhat.com>
4194
4195 * symfile.c (symfile_bfd_open): Don't copy name. Call
4196 gdb_bfd_stash_filename.
4197 (load_command): Open the new BFD before freeing the old.
4198 (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
4199 * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
4200 Call gdb_bfd_stash_filename.
4201 * spu-linux-nat.c (spu_bfd_open): Don't copy name.
4202 * solib-spu.c (spu_bfd_fopen): Don't copy name. Call
4203 gdb_bfd_stash_filename.
4204 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4205 Free found_pathname.
4206 * rs6000-nat.c (add_vmap): Don't copy filename. Call
4207 gdb_bfd_stash_filename.
4208 * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
4209 * machoread.c (macho_add_oso_symfile): Call
4210 gdb_bfd_stash_filename.
4211 (macho_symfile_read_all_oso): Arrange to free archive_name. Call
4212 gdb_bfd_stash_filename.
4213 (macho_check_dsym): Don't copy filename. Call
4214 gdb_bfd_stash_filename.
4215 * jit.c (bfd_open_from_target_memory): Don't copy the filename.
4216 * gdb_bfd.c (gdb_bfd_stash_filename): New function.
4217 * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
4218 * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
4219 * exec.c (exec_close): Don't free the BFD's filename.
4220 (exec_file_attach): Don't copy the filename. Call
4221 gdb_bfd_stash_filename.
4222 * corelow.c (core_close): Don't free the BFD's filename.
4223 (core_open): Call gdb_bfd_stash_filename.
4224 * corefile.c (reopen_exec_file): Remove #if 0 code.
4225 * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename. Free
4226 pathname.
4227 * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
4228
4229 2012-07-18 Tom Tromey <tromey@redhat.com>
4230
4231 * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
4232 gdb_bfd_unref.
4233 (free_dwo_file): Use gdb_bfd_unref.
4234 * cli/cli-dump.c: Include gdb_bfd.h.
4235 (bfd_openw_with_cleanup): Use gdb_bfd_ref.
4236 (bfd_openr_with_cleanup): Likewise.
4237 * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
4238 gdb_bfd_unref.
4239 * utils.c: Include gdb_bfd.h.
4240 (do_bfd_close_cleanup): Use gdb_bfd_unref.
4241 * symfile.c: Include gdb_bfd.h.
4242 (separate_debug_file_exists): Use gdb_bfd_unref.
4243 (bfd_open_maybe_remote): Use gdb_bfd_ref.
4244 (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4245 (generic_load): Use gdb_bfd_ref.
4246 (reread_symbols): Use gdb_bfd_unref.
4247 * symfile-mem.c: Include gdb_bfd.h.
4248 (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
4249 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4250 * solib.c: Include gdb_bfd.h.
4251 (solib_bfd_fopen): Use gdb_bfd_ref.
4252 (solib_bfd_open): Use gdb_bfd_unref.
4253 (free_so_symbols): Use gdb_bfd_unref.
4254 (reload_shared_libraries_1): Use gdb_bfd_unref.
4255 * solib-spu.c: Include gdb_bfd.h.
4256 (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
4257 * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
4258 gdb_bfd_unref.
4259 * solib-frv.c: Include gdb_bfd.h.
4260 (enable_break2): Use gdb_bfd_unref.
4261 * solib-dsbt.c: Include gdb_bfd.h.
4262 (enable_break2): Use gdb_bfd_unref.
4263 * solib-darwin.c: Include gdb_bfd.h.
4264 (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
4265 gdb_bfd_unref.
4266 (darwin_bfd_open): Use gdb_bfd_unref.
4267 * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
4268 * remote-mips.c: Include gdb_bfd.h.
4269 (mips_load_srec): Use gdb_bfd_ref.
4270 (pmon_load_fast): Use gdb_bfd_ref.
4271 * remote-m32r-sdi.c: Include gdb_bfd.h.
4272 (m32r_load): Use gdb_bfd_ref.
4273 * record.c: Include gdb_bfd.h.
4274 (record_save_cleanups): Use gdb_bfd_unref.
4275 (cmd_record_save): Use gdb_bfd_unref.
4276 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
4277 gdb_bfd_unref.
4278 * objfiles.h (gdb_bfd_close_or_warn): Remove.
4279 (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
4280 * objfiles.c: Include gdb_bfd.h.
4281 (free_objfile): Use gdb_bfd_unref.
4282 (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
4283 gdb_bfd.c.
4284 * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
4285 (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
4286 (macho_check_dsym): Likewise.
4287 * m32r-rom.c: Include gdb_bfd.h.
4288 (m32r_load): Use gdb_bfd_ref.
4289 (m32r_upload_command): Use gdb_bfd_ref.
4290 * jit.c: Include gdb_bfd.h.
4291 (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
4292 * gdb_bfd.h: New file.
4293 * gdb_bfd.c: New file.
4294 * gcore.c: Include gdb_bfd.h.
4295 (create_gcore_bfd): Use gdb_bfd_ref.
4296 (do_bfd_delete_cleanup): Use gdb_bfd_unref.
4297 (gcore_command): Use gdb_bfd_unref.
4298 * exec.c: Include gdb_bfd.h.
4299 (exec_close): Use gdb_bfd_unref.
4300 (exec_close_1): Use gdb_bfd_unref.
4301 (exec_file_attach): Use gdb_bfd_ref.
4302 * elfread.c: Include gdb_bfd.h.
4303 (build_id_verify): Use gdb_bfd_unref.
4304 * dsrec.c: Include gdb_bfd.h.
4305 (load_srec): Use gdb_bfd_ref.
4306 * corelow.c: Include gdb_bfd.h.
4307 (core_close): Use gdb_bfd_unref.
4308 (core_open): Use gdb_bfd_ref.
4309 * bfd-target.c: Include gdb_bfd.h.
4310 (target_bfd_xclose): Use gdb_bfd_unref.
4311 (target_bfd_reopen): Use gdb_bfd_ref.
4312 * Makefile.in (SFILES): Add gdb_bfd.c.
4313 (HFILES_NO_SRCDIR): Add gdb_bfd.h.
4314 (COMMON_OBS): Add gdb_bfd.o.
4315
4316 2012-07-18 Keith Seitz <keiths@redhat.com>
4317
4318 * breakpoint.c (find_condition_and_thread): Initialize
4319 TASK and REST.
4320 (create_breakpiont): find_condition_and_thread will now
4321 initialize COND_STRING, THREAD, and REST (and TASK).
4322 (addr_string_to_sals): Likewise.
4323
4324 2012-07-18 Pedro Alves <palves@redhat.com>
4325
4326 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
4327 Pull the single step breakpoints out of the target.
4328
4329 2012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
4330
4331 * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
4332 * stap-probe.c (compile_probe_arg): Likewise.
4333
4334 2012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
4335
4336 * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
4337 (elf_compile_to_ax): Likewise.
4338 * infrun.c (insert_exception_resume_from_probe): Likewise.
4339 (check_exception_resume): Remove `objfile' variable.
4340 * probe.c (find_probe_by_pc): Remove `objfile' argument.
4341 (struct probe_and_objfile, probe_and_objfile_s): Delete.
4342 (collect_probes): Adjust return value to `VEC (probe_p) *'.
4343 (compare_entries): Rename to...
4344 (compare_probes): ...this. Adjust function to work with
4345 `struct probe *'. Rename variables `ea' and `eb' to `pa' and `pb'
4346 respectively.
4347 (gen_ui_out_table_header_info): Adjust `probes' argument to be
4348 `VEC (probe_p) *'.
4349 (print_ui_out_info): Adjust argument to be `struct probe *'.
4350 (info_probes_for_ops): Adjust internal computations to use
4351 `VEC (probe_p) *'.
4352 (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
4353 * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
4354 gen_info_probes_table_values>: Remove `objfile' argument.
4355 (struct probe) <objfile>: New field.
4356 (find_probe_by_pc): Remove `objfile' argument.
4357 * stap-probe.c (stap_parse_probe_arguments): Likewise.
4358 (stap_get_probe_argument_count): Likewise.
4359 (stap_get_arg): Likewise.
4360 (stap_evaluate_probe_argument): Likewise.
4361 (stap_compile_to_ax): Likewise.
4362 (compile_probe_arg): Refactor not to pass `objfile' anymore.
4363 (handle_stap_probe): Fill `objfile' field from `struct probe'.
4364 (stap_gen_info_probes_table_header): Remove `objfile' argument.
4365 * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
4366 sym_compile_to_ax>: Likewise.
4367
4368 2012-07-18 Terry Guo <terry.guo@arm.com>
4369
4370 PR 14329
4371 * defs.h (GDB_MI_MSG_WIDTH): New.
4372 * ser_base (ser_base_read_error_fd): New function.
4373 (do_ser_base_readchar): Poll error file descriptor as well as
4374 standard output.
4375 (generic_readchar): Refactor error handling.
4376
4377 2012-07-18 Joel Brobecker <brobecker@adacore.com>
4378
4379 * NEWS: Create a new section for the next release branch.
4380 Rename the section of the current branch, now that it has
4381 been cut.
4382
4383 2012-07-18 Joel Brobecker <brobecker@adacore.com>
4384
4385 GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
4386 * version.in: Bump version to 7.5.50.20120718-cvs.
4387
4388 2012-07-17 Keith Seitz <keiths@redhat.com>
4389
4390 * linespec.c (linespec_parse_line_offset): Make parameter
4391 const.
4392
4393 2012-07-16 Jan Kratochvil <jan.kratochvil@redhat.com>
4394
4395 PR 11914
4396 * f-valprint.c (info_common_command): New variable frame_id.
4397 Reinitialize FI form FRAME_ID after each print_variable_and_value.
4398 * printcmd.c (print_variable_and_value): Extend function comment.
4399 Add comment for invalidated FRAME.
4400 * stack.c (backtrace_command_1): New variable frame_id. Reinitialize
4401 FI form FRAME_ID after each print_frame_local_vars.
4402 (struct print_variable_and_value_data): Change frame to frame_id.
4403 (do_print_variable_and_value): New variable frame, initialize it from
4404 p->frame_id. Add comment for invalidated FRAME.
4405 (print_frame_local_vars, print_frame_arg_vars): New function comment.
4406 Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization. Add comment
4407 for invalidated FRAME.
4408
4409 2012-07-16 Marc Khouzam <marc.khouzam@ericsson.com>
4410 Pedro Alves <palves@redhat.com>
4411
4412 * linux-nat.c (linux_nat_detach): Don't unregister from the event
4413 loop.
4414
4415 2012-07-16 Tom Tromey <tromey@redhat.com>
4416
4417 * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
4418
4419 2012-07-15 Doug Evans <dje@google.com>
4420
4421 * dwarf2read.c (stmt_list_hash): New struct.
4422 (type_unit_group): Embed "per_cu" member, remove pointer.
4423 New union member "t", move member "tus" into it, all uses updated.
4424 New member "hash", replaces member "line_offset, all uses updated.
4425 (quick_file_names): Replace member "offset" with "hash", all uses
4426 updated.
4427 (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
4428 (hash_file_name_entry, eq_file_name_entry): Call them.
4429 (hash_type_unit_group, eq_type_unit_group): Ditto.
4430 (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
4431 (dw2_get_file_names_reader): Fix file name table calculation for TUs.
4432 (dw2_get_file_names): Update.
4433 (create_type_unit_group): Replace "per_cu" arg with "cu".
4434 All callers updated. Fix "quick" (.gdb_index) handling.
4435 (get_type_unit_group): Replace "per_cu" arg with "cu".
4436 All callers updated.
4437 (build_type_unit_groups): Don't reset tu_stats.
4438
4439 * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
4440 "tab_cur_size". Change member "tab" to be a htab_t.
4441 (create_filename_seen_cache): Update.
4442 (clear_filename_seen_cache, delete_filename_seen_cache): Update.
4443 (filename_seen): Update.
4444
4445 2012-07-13 Doug Evans <dje@google.com>
4446
4447 * symtab.c (filename_seen): Update comment.
4448
4449 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4450 Doug Evans <dje@google.com>
4451
4452 * buildsym.c (end_symtab_1): Split it to ...
4453 (end_symtab_get_static_block): ... this ...
4454 (end_symtab_from_static_block): ... and this function.
4455 (end_symtab, end_expandable_symtab): Call them.
4456 * buildsym.h (end_symtab_get_static_block)
4457 (end_symtab_from_static_block): New declarations.
4458 * dwarf2read.c (process_full_comp_unit): New variable static_block.
4459 Set its valid CU ranges.
4460
4461 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4462
4463 * dwarf2loc.c (disassemble_dwarf_expression): Handle
4464 DW_OP_GNU_parameter_ref.
4465
4466 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4467
4468 * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
4469 read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
4470
4471 2012-07-13 Doug Evans <dje@google.com>
4472
4473 * symtab.c (output_source_filename): Delete unnecessary forward decl.
4474 (filename_seen_cache): New struct.
4475 (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
4476 (create_filename_seen_cache): New function.
4477 (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
4478 (filename_seen): Delete arg "first". New arg "cache". All callers
4479 updated.
4480 (output_source_filename_data): New struct.
4481 (output_source_filename): Delete arg "first". New arg "data".
4482 All callers updated.
4483 (sources_info): Delete local "first". New locals "data", "cleanups".
4484 Rewrite to use filename_seen_cache.
4485 (add_partial_filename_data): Delete member "first". New member
4486 "filename_seen_cache". All uses updated.
4487 (make_source_files_completion_list): Rewrite to use
4488 filename_seen_cache.
4489
4490 2012-07-12 Doug Evans <dje@google.com>
4491
4492 * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
4493
4494 2012-07-10 Doug Evans <dje@google.com>
4495
4496 PR gdb/13498
4497 * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
4498 all_type_unit_groups, type_unit_groups, tu_stats.
4499 (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
4500 All uses updated. Add type_unit_group to union "s".
4501 (type_unit_group): New struct.
4502 (IS_TYPE_UNIT_GROUP): New macro.
4503 (abbrev_table): Delete unused member "section".
4504 (dw2_do_instantiate_symtab): Early exit if type_unit_group.
4505 (dw2_get_cu): Assert not used with type_unit_group.
4506 (dw2_get_primary_cu): New function.
4507 (dw2_build_type_unit_groups_reader): New function.
4508 (dw2_build_type_unit_groups): New function.
4509 (dw2_get_file_names): Assert not called on type units.
4510 (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
4511 Redo loop to iterate over type unit groups instead of type units.
4512 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
4513 (read_abbrev_offset): New function.
4514 (init_cutu_and_read_dies): New arg "abbrev_table". All callers
4515 updated.
4516 (create_partial_symtab): New function.
4517 (process_psymtab_comp_unit_reader): Assert not used with type units.
4518 Call create_partial_symtab.
4519 (process_psymtab_type_unit): Delete.
4520 (hash_type_unit_group, eq_type_unit_group): New functions.
4521 (allocate_type_unit_groups_table): New function.
4522 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
4523 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
4524 (create_type_unit_group, get_type_unit_group): New functions.
4525 (tu_abbrev_offset): New struct.
4526 (sort_tu_by_abbrev_offset): New function.
4527 (add_type_unit_group_to_table): New function.
4528 (build_type_unit_groups): New function.
4529 (build_type_psymtabs_reader): New function.
4530 (build_type_psymtab_dependencies): New function.
4531 (build_type_psymtabs): Rewrite.
4532 (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
4533 is seen in a type unit.
4534 (process_queue): Move symtab expansion debugging printfs here.
4535 Call process_full_type_unit for type units.
4536 (compute_symtab_includes): Assert not called for type units.
4537 (process_cu_includes): Don't call compute_symtab_includes for
4538 type units.
4539 (process_full_type_unit): New function.
4540 (process_imported_unit_die): Flag an error if called for type units.
4541 (handle_DW_AT_stmt_list): Delete arg "want_line_info". All callers
4542 updated. Assert not called for type units.
4543 (read_file_scope): Call dwarf2_start_symtab.
4544 (setup_type_unit_groups): New function.
4545 (read_type_unit_scope): Rewrite.
4546 (abbrev_table_read_table): Initialize abbrev_table->offset.
4547 (abbrev_table_free_cleanup): New function.
4548 (dwarf2_start_symtab): New function.
4549 (load_full_type_unit): Assert not called for type unit groups.
4550 * buildsym.c (finish_block_internal): New arg "expandable".
4551 All callers updated.
4552 (start_symtab): Move most contents to ...
4553 (restart_symtab): ... here. New function.
4554 (reset_symtab_globals): New function.
4555 (end_symtab_1): Renamed from end_symtab. New arg "expandable".
4556 Call reset_symtab_globals.
4557 (end_symtab, end_expandable_symtab): New functions.
4558 (set_missing_symtab, augment_type_symtab): New functions.
4559 * buildsym.h (end_expandable_symtab): Declare.
4560 (augment_type_symtab, restart_symtab): Declare.
4561 * psympriv.h (struct partial_symtab): New member "anonymous".
4562 * psymtab.c (partial_map_symtabs_matching_filename): Ignore
4563 anonymous psymtabs.
4564 (read_psymtabs_with_filename): Ditto.
4565 (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
4566 (expand_symtabs_matching_via_partial): Ditto.
4567 (dump_psymtab): Update.
4568 * dictionary.c (dict_add_pending): New function.
4569 * dictionary.h (dict_add_pending): Declare.
4570
4571 2012-07-09 Doug Evans <dje@google.com>
4572
4573 * buildsym.c (start_subfile): Remove unnecessary check for
4574 name == NULL.
4575
4576 * psymtab.c (allocate_psymtab): Use host_address_to_string.
4577
4578 * dwarf2read.c (load_full_type_unit): Simplify.
4579
4580 * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
4581 to struct signatured_type **. All uses updated.
4582
4583 * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
4584 All callers updated.
4585
4586 2012-07-09 Tom Tromey <tromey@redhat.com>
4587
4588 * c-exp.y (check_parameter_typelist): New function.
4589 (parameter_typelist): Call it.
4590 * eval.c (make_params): Handle '(void)' case.
4591 * gdbtypes.c (lookup_function_type_with_arguments): Handle
4592 '(void)' case.
4593
4594 2012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4595
4596 * common/linux-ptrace.c: Include gdb_assert.h.
4597 <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
4598 <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
4599 stdint.h.
4600 (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
4601 functions.
4602 * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
4603 * linux-nat.c (linux_child_post_attach)
4604 (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
4605
4606 2012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4607
4608 * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
4609 nptl <2.7 bug workaround for core files.
4610
4611 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4612
4613 * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
4614 clearing.
4615 (save_siginfo): Remove.
4616 (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
4617 call.
4618 (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
4619 (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
4620 * linux-nat.h (struct lwp_info): Remove field siginfo.
4621
4622 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4623
4624 Code cleanup for the next patch.
4625 * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
4626 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4627 call for it.
4628 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
4629 (ia64_linux_stopped_data_address):
4630 * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
4631 the return value.
4632 * linux-nat.h (linux_nat_get_siginfo): Likewise.
4633 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
4634 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4635 call for it.
4636
4637 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4638
4639 PR 14321
4640 * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
4641 Increase buffer sizes to 2x we need, not just 2x of the previous size.
4642
4643 2012-07-06 Tom Tromey <tromey@redhat.com>
4644
4645 * c-exp.y (DOTDOTDOT): New token.
4646 (func_mod, exp): Use parameter_typelist.
4647 (parameter_typelist): New production.
4648 (tokentab3): Add "..." token.
4649 * eval.c (make_params): Handle varargs.
4650 * gdbtypes.c (lookup_function_type_with_arguments): Handle
4651 varargs.
4652
4653 2012-07-06 Tom Tromey <tromey@redhat.com>
4654
4655 PR exp/9608:
4656 * c-exp.y (%union) <tvec>: Change type.
4657 (func_mod): Now uses <tvec> type.
4658 (exp): Update for tvec change.
4659 (direct_abs_decl): Push the typelist.
4660 (func_mod): Return a typelist.
4661 (nonempty_typelist): Update for tvec change.
4662 * gdbtypes.c (lookup_function_type_with_arguments): New function.
4663 * gdbtypes.h (lookup_function_type_with_arguments): Declare.
4664 * parse.c (pop_type_list): New function.
4665 (push_typelist): New function.
4666 (follow_types): Handle tp_function_with_arguments.
4667 * parser-defs.h (type_ptr): New typedef. Define a VEC.
4668 (enum type_pieces) <tp_function_with_arguments>: New constant.
4669 (union type_stack_elt) <typelist_val>: New field.
4670 (push_typelist): Declare.
4671
4672 2012-07-06 Tom Tromey <tromey@redhat.com>
4673
4674 * c-exp.y (%union) <type_stack>: New field.
4675 (abs_decl, direct_abs_decl): Use <type_stack> type. Update.
4676 (ptr_operator_ts): New production.
4677 (ptype): Update.
4678 * parse.c (type_stack_reserve): New function.
4679 (check_type_stack_depth): Use it.
4680 (pop_type_stack, append_type_stack, push_type_stack)
4681 (get_type_stack, type_stack_cleanup): New functions.
4682 (follow_types): Handle tp_type_stack.
4683 (_initialize_parse): Simplify initialization.
4684 * parser-defs.h (enum type_pieces) <tp_type_stack>: New
4685 constant.
4686 (union type_stack_elt) <stack_val>: New field.
4687 (get_type_stack, append_type_stack, push_type_stack)
4688 (type_stack_cleanup): Declare.
4689
4690 2012-07-06 Tom Tromey <tromey@redhat.com>
4691
4692 * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
4693 Remove.
4694 (struct type_stack): New.
4695 * parse.c (type_stack, type_stack_size, type_stack_depth):
4696 Remove.
4697 (type_stack): New global.
4698 (parse_exp_in_context, check_type_stack_depth)
4699 (insert_into_type_stack, insert_type, push_type, push_type_int)
4700 (insert_type_address_space, pop_type, pop_type_int)
4701 (_initialize_parse): Update.
4702
4703 2012-07-06 Tom Tromey <tromey@redhat.com>
4704
4705 * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
4706 Remove %type.
4707
4708 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
4709
4710 * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
4711
4712 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
4713 Jan Kratochvil <jan.kratochvil@redhat.com>
4714
4715 * cp-valprint.c (cp_print_value): Replace potentially unsafe
4716 alloca with xmalloc/xfree.
4717
4718 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
4719
4720 * MAINTAINERS (Write After Approval): Add myself to the list.
4721
4722 2012-07-05 Doug Evans <dje@google.com>
4723
4724 * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
4725
4726 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
4727
4728 * ax-gdb.c (cli/cli-utils.h): New include.
4729 (linespec.h): Ditto.
4730 (agent_eval_command_one): New function.
4731 (agent_command_1): Ditto.
4732 (agent_command): Call function agent_command_1.
4733 (agent_eval_command): Ditto.
4734 (_initialize_ax_gdb): Change help for "maint agent"
4735 and "maint agent-eval".
4736
4737 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
4738
4739 * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
4740 * cli/cli-utils.c (check_for_argument): New function.
4741 * cli/cli-utils.h (check_for_argument): Ditto.
4742
4743 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
4744
4745 * NEWS: Mention x32 ABI support.
4746
4747 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
4748
4749 * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
4750 AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
4751
4752 * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
4753 and pc_regnum_from_eax to -1. Update SP regnum from
4754 sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
4755 needed.
4756
4757 * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
4758 pc_regnum_from_eax.
4759
4760 2012-07-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4761
4762 Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
4763 * dwarf2expr.h: Include gdbtypes.h.
4764 (enum call_site_parameter_kind, union call_site_parameter_u): Remove
4765 these forward declarations.
4766 (cu_offset, sect_offset): Move these ...
4767 * gdbtypes.h: Remove include dwarf2expr.h.
4768 (cu_offset, sect_offset): ... here.
4769
4770 2012-07-03 H.J. Lu <hongjiu.lu@intel.com>
4771
4772 * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
4773 (amd64_linux_sigtramp_code): This.
4774 (amd64_x32_linux_sigtramp_code): New.
4775 (LINUX_SIGTRAMP_LEN): Updated.
4776 (amd64_linux_sigtramp_start): Check x32 sigtramp.
4777
4778 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4779
4780 * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
4781
4782 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4783
4784 * config.in: Regenerate.
4785 * configure: Regenerate.
4786 * configure.ac: Remove check for gnu/libc-version.h.
4787 * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
4788 gnu/libc-version.h.
4789 (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
4790 variables libc_version, libc_major and libc_minor. Replace sscanf by
4791 inferior_has_bug. Extend the comment.
4792
4793 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4794
4795 * linux-thread-db.c (inferior_has_bug): New function.
4796 (thread_db_find_new_threads_silently): Return boolean as checked by
4797 inferior_has_bug, describe it in the comments.
4798 (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
4799 earlier. Abort the initialization if it returned non-zero.
4800 (thread_db_new_objfile): Exclude debug files.
4801 (thread_db_find_new_threads_2): Preinitialize ERR. Check errors also
4802 if UNTIL_NO_NEW,
4803
4804 2012-07-02 Doug Evans <dje@google.com>
4805
4806 * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
4807 related to queue management.
4808
4809 * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
4810 instead of "debug dwarf2-die" in debugging printfs.
4811 (create_debug_info_hash_table_reader): Ditto.
4812 (create_debug_info_hash_table): Ditto.
4813 (init_dwo_file): Ditto.
4814 (init_cutu_and_read_dies): Add debugging printf.
4815 (init_cutu_and_read_dies_no_follow): Ditto.
4816 (process_psymtab_comp_unit_reader): Ditto.
4817
4818 2012-07-02 Stan Shebs <stan@codesourcery.com>
4819
4820 Add target-side support for dynamic printf.
4821 * NEWS: Mention the additional style.
4822 * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
4823 (struct bp_location): New field cmd_bytecode.
4824 * breakpoint.c: Include format.h.
4825 (disconnected_dprintf): New global.
4826 (parse_cmd_to_aexpr): New function.
4827 (build_target_command_list): New function.
4828 (insert_bp_location): Call it.
4829 (remove_breakpoints_pid): Skip dprintf breakpoints.
4830 (print_one_breakpoint_location): Ditto.
4831 (dprintf_style_agent): New global.
4832 (dprintf_style_enums): Add dprintf_style_agent.
4833 (update_dprintf_command_list): Add agent case.
4834 (agent_printf_command): New function.
4835 (_initialize_breakpoint): Add new commands.
4836 * common/ax.def (printf): New bytecode.
4837 * ax.h (ax_string): Declare.
4838 * ax-gdb.h (gen_printf): Declare.
4839 * ax-gdb.c: Include cli-utils.h, format.h.
4840 (gen_printf): New function.
4841 (maint_agent_print_command): New function.
4842 (_initialize_ax_gdb): Add maint agent-printf command.
4843 * ax-general.c (ax_string): New function.
4844 (ax_print): Add printf disassembly.
4845 * Makefile.in (SFILES): Add format.c
4846 (COMMON_OBS): Add format.o.
4847 * common/format.h: New file.
4848 * common/format.c: New file.
4849 * printcmd.c: Include format.h.
4850 (ui_printf): Call parse_format_string.
4851 * remote.c (remote_state): New field breakpoint_commands.
4852 (PACKET_BreakpointCommands): New enum.
4853 (remote_breakpoint_commands_feature): New function.
4854 (remote_protocol_features): Add new BreakpointCommands entry.
4855 (remote_can_run_breakpoint_commands): New function.
4856 (remote_add_target_side_commands): New function.
4857 (remote_insert_breakpoint): Call it.
4858 (remote_insert_hw_breakpoint): Ditto.
4859 (_initialize_remote): Add new packet configuration for
4860 target-side breakpoint commands.
4861 * target.h (struct target_ops): New field
4862 to_can_run_breakpoint_commands.
4863 (target_can_run_breakpoint_commands): New macro.
4864 * target.c (update_current_target): Handle
4865 to_can_run_breakpoint_commands.
4866
4867 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4868
4869 Execute -ix and -iex only after system and user gdbinit files.
4870 * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
4871 processing down after gdbinit files.
4872
4873 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4874
4875 Add fnmatch-gnu module.
4876 * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
4877 * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
4878 * gnulib/aclocal.m4: Regenerate.
4879 * gnulib/config.in: Regenerate.
4880 * gnulib/configure: Regenerate.
4881 * gnulib/import/dummy.c: Remove.
4882 * gnulib/import/Makefile.am: Regenerate.
4883 * gnulib/import/Makefile.in: Likewise.
4884 * gnulib/import/m4/gnulib-cache.m4: Likewise.
4885 * gnulib/import/m4/gnulib-comp.m4: Likewise.
4886 * gnulib/import/alloca.c: New file.
4887 * gnulib/import/alloca.in.h: Likewise.
4888 * gnulib/import/config.charset: Likewise.
4889 * gnulib/import/fnmatch.c: Likewise.
4890 * gnulib/import/fnmatch.in.h: Likewise.
4891 * gnulib/import/fnmatch_loop.c: Likewise.
4892 * gnulib/import/localcharset.c: Likewise.
4893 * gnulib/import/localcharset.h: Likewise.
4894 * gnulib/import/m4/alloca.m4: Likewise.
4895 * gnulib/import/m4/codeset.m4: Likewise.
4896 * gnulib/import/m4/configmake.m4: Likewise.
4897 * gnulib/import/m4/fcntl-o.m4: Likewise.
4898 * gnulib/import/m4/fnmatch.m4: Likewise.
4899 * gnulib/import/m4/glibc21.m4: Likewise.
4900 * gnulib/import/m4/localcharset.m4: Likewise.
4901 * gnulib/import/m4/locale-fr.m4: Likewise.
4902 * gnulib/import/m4/locale-ja.m4: Likewise.
4903 * gnulib/import/m4/locale-zh.m4: Likewise.
4904 * gnulib/import/m4/mbrtowc.m4: Likewise.
4905 * gnulib/import/m4/mbsinit.m4: Likewise.
4906 * gnulib/import/m4/mbsrtowcs.m4: Likewise.
4907 * gnulib/import/m4/mbstate_t.m4: Likewise.
4908 * gnulib/import/m4/stdbool.m4: Likewise.
4909 * gnulib/import/m4/wchar_h.m4: Likewise.
4910 * gnulib/import/m4/wctype_h.m4: Likewise.
4911 * gnulib/import/m4/wint_t.m4: Likewise.
4912 * gnulib/import/mbrtowc.c: Likewise.
4913 * gnulib/import/mbsinit.c: Likewise.
4914 * gnulib/import/mbsrtowcs-impl.h: Likewise.
4915 * gnulib/import/mbsrtowcs-state.c: Likewise.
4916 * gnulib/import/mbsrtowcs.c: Likewise.
4917 * gnulib/import/ref-add.sin: Likewise.
4918 * gnulib/import/ref-del.sin: Likewise.
4919 * gnulib/import/stdbool.in.h: Likewise.
4920 * gnulib/import/streq.h: Likewise.
4921 * gnulib/import/strnlen1.c: Likewise.
4922 * gnulib/import/strnlen1.h: Likewise.
4923 * gnulib/import/verify.h: Likewise.
4924 * gnulib/import/wchar.in.h: Likewise.
4925 * gnulib/import/wctype.in.h: Likewise.
4926
4927 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4928
4929 Support shell wildcards for 'set auto-load safe-path'.
4930 * auto-load.c: Include fnmatch.h.
4931 (filename_is_in_dir): Rename to ...
4932 (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
4933 it. Update function comment. Rename dir_len to pattern_len. New
4934 variables filename_len, pattern and filename. Add more DEBUG_AUTO_LOAD
4935 messages. Use gdb_filename_fnmatch.
4936 (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
4937 pattern.
4938 (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
4939 * defs.h (gdb_filename_fnmatch): New declaration.
4940 * utils.c: Include fnmatch.h.
4941 (gdb_filename_fnmatch): New function.
4942
4943 2012-07-02 Sergio Durigan Junior <sergiodj@redhat.com>
4944
4945 * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
4946 `-probe' and `-probe-stap' options.
4947
4948 2012-07-01 Yao Qi <yao@codesourcery.com>
4949
4950 * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
4951 always_inserted_off, and always_inserted_enums.
4952 Change always_inserted_mode's type to 'enum auto_boolean'.
4953 (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
4954 callers.
4955 (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
4956 of add_setshow_enum_cmd.
4957 * infrun.c: Remove can_use_displaced_stepping_auto,
4958 can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
4959 can_use_displaced_stepping_enum.
4960 Change can_use_displaced_stepping's type to 'enum auto_boolean'.
4961 (show_can_use_displaced_stepping, use_displaced_stepping): Update
4962 callers.
4963 (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
4964 add_setshow_enum_cmd.
4965
4966 2012-06-30 Doug Evans <dje@google.com>
4967
4968 * dwarf2read.c (signatured_type): Make "per_cu" member first.
4969 (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
4970 currently being read. Propagate DW_AT_comp_dir to DWO DIE.
4971
4972 2012-06-29 Doug Evans <dje@google.com>
4973
4974 * linespec.c: #include "stack.h".
4975 (decode_line_with_current_source): Moved here from symtab.c and
4976 renamed from decode_line_spec. All callers updated.
4977 (decode_line_with_last_displayed): Moved here from breakpoint.c and
4978 renamed from decode_line_spec_1. All callers updated.
4979 * linespec.h (decode_line_with_current_source): Move declaration here
4980 from symtab.h and renamed from decode_line_spec.
4981 (decode_line_with_last_displayed): Move declaration here from symtab.h
4982 and renamed from decode_line_spec_1.
4983 * macrocmd.c: #include "linespec.h".
4984 * symtab.c: Remove #include "linespec.h".
4985
4986 2012-06-28 Doug Evans <dje@google.com>
4987
4988 * dwarf2read.c (get_cu_length): New function.
4989 (offset_in_cu_p, error_check_comp_unit_head): Call it.
4990 (create_debug_types_hash_table): Ditto.
4991 (init_cutu_and_read_dies): Ditto.
4992 (init_cutu_and_read_dies_no_follow): Ditto.
4993
4994 * dwarf2read.c (dwarf2_find_base_address): Move definition.
4995
4996 * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
4997 (struct abbrev_table): Define.
4998 (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
4999 abbrev_table.
5000 (init_cutu_and_read_dies): Update.
5001 (abbrev_table_alloc_abbrev): New function. Replaces
5002 dwarf_alloc_abbrev. All callers updated.
5003 (abbrev_table_add_abbrev): New function.
5004 (abbrev_table_lookup_abbrev): New function. Replaces
5005 dwarf2_lookup_abbrev. All callers updated.
5006 (abbrev_table_read_table): New function. Contents moved here from
5007 dwarf2_read_abbrevs.
5008 (dwarf2_read_abbrevs): Call it.
5009 (abbrev_table_free): New function.
5010 (dwarf2_free_abbrev_table): Call it.
5011
5012 2012-06-28 Stan Shebs <stan@codesourcery.com>
5013
5014 * osdata.c (info_osdata_command): Filter out "Title" columns
5015 from non-MI uses.
5016 * common/linux-osdata.c (struct osdata_type): Add title field.
5017 (osdata_table): Add titles to each entry.
5018 (linux_command_xfer_osdata): Add a column for title data.
5019
5020 2012-06-28 Stan Shebs <stan@codesourcery.com>
5021
5022 Make logging work for MI.
5023 * NEWS: Mention it.
5024 * interps.h (interp_set_logging_ftype): New typedef.
5025 (struct interp_procs): New field set_logging_proc.
5026 (current_interp_set_logging): Declare.
5027 * interps.c (current_interp_set_logging): New function.
5028 * cli/cli-logging.c: Include interps.h.
5029 (set_logging_redirect): Call current_interp_set_logging.
5030 (pop_output_files): Ditto.
5031 (handle_redirections): Ditto, plus skip ui-out redirect if MI.
5032 * mi/mi-console.h (mi_console_set_raw): Declare.
5033 * mi/mi-console.c (mi_console_set_raw): New function.
5034 * mi/mi-interp.c (saved_raw_stdout): New global.
5035 (mi_set_logging): New function.
5036 (_initialize_mi_interp): Add it to interp procs.
5037
5038 2012-06-28 Doug Evans <dje@google.com>
5039
5040 * symtab.c (lookup_symbol_aux_objfile): Use
5041 ALL_OBJFILE_PRIMARY_SYMTABS.
5042
5043 * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
5044
5045 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5046
5047 * common/buffer.c: Include inttypes.h and stdint.h.
5048 (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
5049
5050 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5051 Pedro Alves <palves@redhat.com>
5052
5053 * gdbthread.h (ALL_THREADS): New macro.
5054 (thread_list): Declare.
5055 * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
5056 going, but instead fall through to the stepping handling.
5057 * linux-nat.c (resume_lwp): New parameter 'signo'. Resume with
5058 the passed in signal. Adjust debug output.
5059 (resume_callback): Rename to ...
5060 (linux_nat_resume_callback): ... this. Pass the thread's last
5061 stop signal, if in "pass" state.
5062 (linux_nat_resume): Adjust to rename.
5063 (stop_wait_callback): New assertion. Don't respawn signals;
5064 instead let the LWP remain with SIGNALLED set.
5065 (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
5066 * remote.c (append_pending_thread_resumptions): New.
5067 (remote_vcont_resume): Call it.
5068 * target.h (target_resume): Extend comment.
5069
5070 2012-06-28 Iain Sandoe <iain@codesourcery.com>
5071
5072 * auxv.c (fprint_target_auxv): Handle extended cache data tags.
5073
5074 2012-06-27 Doug Evans <dje@google.com>
5075
5076 * dwarf2read.c (dwarf2_cu): Add ranges_base.
5077 Delete have_addr_base, unused. All uses updated.
5078 (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
5079 (dwarf2_get_pc_bounds): Add ranges_base.
5080 (dwarf2_record_block_ranges): Ditto.
5081
5082 2012-06-27 Tom Tromey <tromey@redhat.com>
5083
5084 PR macros/7961:
5085 * varobj.c (varobj_create): Update.
5086 (varobj_set_value): Update.
5087 * tracepoint.c (validate_actionline): Update.
5088 (encode_actions_1): Update.
5089 * parse.c (parse_exp_1): Add 'pc' argument.
5090 (parse_exp_in_context): Add 'pc' argument. Change how
5091 expression_context_pc is set.
5092 (parse_expression): Update.
5093 (parse_field_expression): Update.
5094 * expression.h (parse_exp_1): Update.
5095 * eval.c (parse_to_comma_and_eval): Update.
5096 * breakpoint.c (set_breakpoint_condition): Update.
5097 (update_watchpoint): Update.
5098 (init_breakpoint_sal): Update
5099 (find_condition_and_thread): Update.
5100 (watch_command_1): Update.
5101 (update_breakpoint_locations): Update.
5102 * ada-lang.c (ada_read_renaming_var_value): Update.
5103 (create_excep_cond_exprs): Update.
5104
5105 2012-06-27 Doug Evans <dje@google.com>
5106
5107 * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
5108 type units.
5109
5110 2012-06-26 Doug Evans <dje@google.com>
5111
5112 * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
5113 prototype.
5114 (error_check_comp_unit_head): New arg abbrev_section. All callers
5115 updated.
5116 (read_and_check_comp_unit_head): Ditto.
5117 (read_and_check_type_unit_head): Ditto.
5118
5119 2012-06-26 Siva Chandra Reddy <sivachandra@google.com>
5120
5121 New attribute 'last' for gdb.Symtab_and_line.
5122 * NEWS (Python Scripting): Add entry about the new attribute.
5123 * python/py-symtab.c (salpy_get_last): New function which
5124 implements the get method for the 'last' attribute of
5125 gdb.Symtab_and_line.
5126 (sal_object_getset): Add entry for the 'last' attribute.
5127
5128 2012-06-26 Doug Evans <dje@google.com>
5129
5130 * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
5131 (dwo_sections): Add macinfo, macro.
5132 (dwarf2_locate_dwo_sections): Watch for macro sections.
5133 (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
5134 All callers updated. Handle DWO files.
5135
5136 * NEWS: Mention new options "set debug dwarf2-read" and
5137 "set debug symtab-create".
5138 * dwarf2read.c (dwarf2_read_debug): New static global.
5139 (dwarf2_build_psymtabs_hard): Add debugging printfs.
5140 (process_queue): Ditto.
5141 (process_full_comp_unit): Ditto.
5142 (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
5143 * elfread.c (elf_symfile_read): Add debugging printf.
5144 * minsyms.c (install_minimal_symbols): Ditto.
5145 * psymtab.c (allocate_psymtab): Ditto.
5146 * symfile.c (allocate_symtab): Ditto.
5147 * symtab.c (symtab_create_debug): New global.
5148 (_initialize_symtab): Add new option "set debug symtab-create".
5149 * symtab.h (symtab_create_debug): Declare.
5150
5151 * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
5152 (lookup_dwo_type_unit): Ditto.
5153
5154 2012-06-26 Roland McGrath <roland@hack.frob.com>
5155 H.J. Lu <hongjiu.lu@intel.com>
5156
5157 * amd64-linux-nat.c: Include <sys/user.h>.
5158 (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
5159 if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
5160 HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
5161
5162 * configure.ac: Check if the fs_base and gs_base members of
5163 `struct user_regs_struct' exist.
5164 * config.in: Regenerated.
5165 * configure: Likewise.
5166
5167 2012-06-25 Michael Eager <eager@eagercon.com>
5168
5169 PR python/14291
5170 * python/python.c (gdbpy_write): Check for interrupted output.
5171
5172 2012-06-25 Greta Yorsh <greta.yorsh@arm.com>
5173
5174 * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
5175 register as a stack alignment in ARM mode.
5176
5177 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
5178
5179 Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
5180 * gnulib/config.in: Regenerate.
5181 * gnulib/configure: Likewise.
5182 * gnulib/import/m4/extensions.m4: Update it.
5183 * gnulib/import/m4/gnulib-common.m4: Likewise.
5184 * gnulib/import/m4/memmem.m4: Likewise.
5185 * gnulib/import/m4/mmap-anon.m4: Likewise.
5186 * gnulib/import/m4/multiarch.m4: Likewise.
5187 * gnulib/import/stdint.in.h: Likewise.
5188
5189 2012-06-24 Yao Qi <yao@codesourcery.com>
5190
5191 * corefile.c (write_memory_with_notification): New.
5192 * gdbcore.h: Declare write_memory_with_notification.
5193 * ada-lang.c (ada_value_assign): Replace 'write_memory' and
5194 'observer_notify_memory_changed' with 'write_memory_with_notification'.
5195 * valops.c (value_assign): Likewise.
5196 * python/py-inferior.c (infpy_write_memory): Call
5197 'write_memory_with_notification'.
5198
5199 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
5200
5201 * cc-with-index.sh: Use also -ex "set auto-load no".
5202
5203 2012-06-23 Doug Evans <dje@google.com>
5204
5205 PR 14125
5206 * NEWS: Document additions to .gdb_index.
5207 * dwarf2read.c: #include "gdb/gdb-index.h".
5208 (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
5209 (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
5210 (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
5211 (dwarf2_read_index): Recognize version 7.
5212 (dw2_do_expand_symtabs_matching): New args want_specific_block,
5213 block_kind, domain): All callers updated.
5214 (dw2_find_symbol_file): Handle new index CU values.
5215 (dw2_expand_symtabs_matching): Match symbol kind if requested.
5216 (add_index_entry): New args is_static, kind. All callers updated.
5217 (offset_type_compare, uniquify_cu_indices): New functions
5218 (symbol_kind): New function.
5219 (write_psymtabs_to_index): Remove duplicate CU values.
5220 (write_psymtabs_to_index): Write .gdb_index version 7.
5221
5222 2012-06-22 Joel Brobecker <brobecker@adacore.com>
5223
5224 * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
5225 * configure: Regenerate.
5226
5227 2012-06-20 Yao Qi <yao@codesourcery.com>
5228
5229 * python/py-inferior.c: Update comments of infpy_read_memory
5230 and infpy_write_memory.
5231
5232 2012-06-19 Tom Tromey <tromey@redhat.com>
5233
5234 PR exp/9514:
5235 * parser-defs.h (insert_type, insert_type_address_space): Declare.
5236 (push_type_address_space): Remove.
5237 * parse.c (insert_into_type_stack): New function.
5238 (insert_type): Likewise.
5239 (insert_type_address_space): Rename from push_type_address_space.
5240 Insert tp_space_identifier.
5241 * c-exp.y (ptr_operator): New production.
5242 (abs_decl): Use ptr_operator.
5243 (space_identifier): Call insert_type_address_space.
5244 (ptype): Don't use const_or_volatile_or_space_identifier.
5245 (const_or_volatile_noopt): Call insert_type.
5246 (conversion_type_id, conversion_declarator): New productions.
5247 (operator): Use conversion_type_id.
5248
5249 2012-06-18 Doug Evans <dje@google.com>
5250
5251 * symtab.h (minimal_symbol): New member created_by_gdb.
5252 * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
5253 created by gdb.
5254 * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
5255 (search_symbols): Call it instead of lookup_symbol.
5256 Skip symbols created by gdb. Only scan minsyms if nfiles == 0.
5257
5258 * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
5259 Adjust address for DW_OP_GNU_addr_index.
5260 * dwarf2expr.h (dwarf_expr_context): Update comment.
5261 * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
5262 all callers updated. Handle TLS vars described with
5263 DW_OP_GNU_const_index.
5264 (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
5265 and DW_OP_GNU_const_index.
5266 * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
5267
5268 * block.c (find_block_in_blockvector): Make explicit the fact that we
5269 ignore GLOBAL_BLOCK.
5270
5271 2012-06-18 Tom Tromey <tromey@redhat.com>
5272
5273 * c-exp.y (operator): Remove trailing space after "delete" and
5274 "delete[]".
5275
5276 2012-06-18 Mark Kettenis <kettenis@gnu.org>
5277 Jan Kratochvil <jan.kratochvil@redhat.com>
5278
5279 Switch i386 and derived targets to ON_STACK.
5280 * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
5281 (amd64_dicos_init_abi): Remove its installment.
5282 * dicos-tdep.c (dicos_init_abi): Remove the
5283 set_gdbarch_call_dummy_location call. Update the comment here.
5284 * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
5285 (i386_dicos_init_abi): Remove its installment.
5286 * i386-tdep.c (i386_push_dummy_code): New function.
5287 (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
5288 i386_push_dummy_code.
5289
5290 2012-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
5291
5292 Remove stale dummy frames.
5293 * breakpoint.c: Include dummy-frame.h.
5294 (longjmp_breakpoint_ops): New variable.
5295 (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
5296 bp_longjmp_call_dummy.
5297 (bpstat_what, bptype_string, print_one_breakpoint_location)
5298 (init_bp_location): Support bp_longjmp_call_dummy.
5299 (set_longjmp_breakpoint): Use longjmp_breakpoint_ops. Comment why.
5300 (set_longjmp_breakpoint_for_call_dummy)
5301 (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
5302 functions.
5303 (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
5304 * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy. Delete
5305 FIXME comment and extend the other comment for bp_call_dummy.
5306 (set_longjmp_breakpoint_for_call_dummy)
5307 (check_longjmp_breakpoint_for_call_dummy): New declarations.
5308 * dummy-frame.c: Include gdbthread.h.
5309 (pop_dummy_frame_bpt): New function.
5310 (pop_dummy_frame): Call pop_dummy_frame_bpt.
5311 (dummy_frame_discard): New function.
5312 (cleanup_dummy_frames): Update the comment about longjmps.
5313 * dummy-frame.h (dummy_frame_discard): New declaration.
5314 * gdbthread.h (struct thread_info): Extend initiating_frame comment.
5315 * infcall.c (call_function_by_hand): New variable longjmp_b. Call
5316 set_longjmp_breakpoint_for_call_dummy. Chain its breakpoints with BPT.
5317 * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
5318 Add case 4 comment. Call check_longjmp_breakpoint_for_call_dummy and
5319 keep_going if IS_LONGJMP and there is no other reason to stop.
5320
5321 2012-06-18 Greta Yorsh <Greta.Yorsh@arm.com>
5322
5323 * remote-sim.c (sim_command_completer): Initialize
5324 variable 'result'.
5325
5326 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5327
5328 * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
5329 * dwarf2loc.c (call_site_parameter_matches): Support
5330 CALL_SITE_PARAMETER_PARAM_OFFSET.
5331 (needs_dwarf_reg_entry_value): Push stub value.
5332 * dwarf2read.c (read_call_site_scope): New variable origin. Support
5333 CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
5334 * gdbtypes.h (enum call_site_parameter_kind): New item
5335 CALL_SITE_PARAMETER_PARAM_OFFSET.
5336 (struct call_site.parameter.u): New field param_offset.
5337
5338 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5339
5340 Code cleanup: Generalize call_site.parameter key.
5341 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
5342 variable dwarf_reg. New variable kind_u. Update parameters to
5343 push_dwarf_reg_entry_value.
5344 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5345 * dwarf2expr.h (enum call_site_parameter_kind)
5346 (union call_site_parameter_u): Forward declarations.
5347 (struct dwarf_expr_context_funcs): Update parameters and their
5348 description for push_dwarf_reg_entry_value.
5349 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5350 * dwarf2loc.c (call_site_parameter_matches): New function.
5351 (dwarf_expr_reg_to_entry_parameter): Update parameters and their
5352 description. Use call_site_parameter_matches.
5353 (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
5354 Update parameters and their description.
5355 (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
5356 New variable kind_u. Adjust the caller for updated parameters.
5357 (needs_dwarf_reg_entry_value): Update parameters.
5358 * dwarf2read.c (read_call_site_scope): New variable loc. Use it
5359 instead of attr. Update for the changed fields of struct
5360 call_site_parameter.
5361 * gdbtypes.h: Include dwarf2expr.h.
5362 (enum call_site_parameter_kind): New.
5363 (struct call_site.parameter): New field kind. Wrap dwarf_reg and
5364 fb_offset into new union u.
5365
5366 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
5367
5368 * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
5369 (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
5370 for x32.
5371
5372 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
5373
5374 * amd64-linux-nat.c (compat_x32_clock_t): New.
5375 (compat_x32_siginfo_t): Likewise.
5376 (compat_x32_siginfo_from_siginfo): Likewise.
5377 (siginfo_from_compat_x32_siginfo): Likewise.
5378 (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
5379 and siginfo_from_compat_x32_siginfo for x32.
5380
5381 2012-06-15 Hui Zhu <hui_zhu@mentor.com>
5382
5383 * tracepoint.c (tfile_xfer_partial): Add a lseek.
5384
5385 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
5386
5387 * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
5388 instead of gdbarch_ptr_bit.
5389 * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
5390 (amd64_supply_native_gregset): Likewise.
5391 (amd64_collect_native_gregset): Likewise.
5392 * amd64-tdep.c (amd64_supply_fxsave): Likewise.
5393 (amd64_supply_xsave): Likewise.
5394 (amd64_collect_fxsave): Likewise.
5395 (amd64_collect_xsave): Likewise.
5396
5397 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
5398
5399 * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
5400 (amd64_linux_read_description): Check DS segment register for
5401 x32 process.
5402
5403 2012-06-15 Tom Tromey <tromey@redhat.com>
5404
5405 * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
5406 init_cutu_and_read_dies.
5407
5408 2012-06-15 Iain Sandoe <iain@codesourcery.com>
5409
5410 * MAINTAINERS (Write After Approval): Add myself to the list.
5411
5412 2012-06-15 Tom Tromey <tromey@redhat.com>
5413
5414 * valops.c (value_find_oload_method_list): Now static.
5415 * value.h (value_find_oload_method_list): Don't declare.
5416
5417 2012-06-15 Tom Tromey <tromey@redhat.com>
5418
5419 * valops.c (find_overload_match): Use value_ind.
5420
5421 2012-06-15 Maciej W. Rozycki <macro@codesourcery.com>
5422
5423 * infrun.c (handle_inferior_event): Correct indentation.
5424
5425 2012-06-14 Doug Evans <dje@google.com>
5426
5427 * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
5428 (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
5429 All uses updated.
5430 (decode_debug_loc_dwo_addresses): New arg "byte_order". All callers
5431 updated. Handle DEBUG_LOC_START_LENGTH.
5432 (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
5433 (loclist_describe_location): Ditto.
5434
5435 2012-06-14 Maciej W. Rozycki <macro@codesourcery.com>
5436
5437 PR backtrace/13866
5438 * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
5439 after hiding inline functions.
5440
5441 2012-06-13 Joel Brobecker <brobecker@adacore.com>
5442
5443 * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
5444 _initialize_inf_ttrace.
5445
5446 2012-06-13 Joel Brobecker <brobecker@adacore.com>
5447
5448 * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
5449 _initialize_hppa_hpux_nat.
5450
5451 2012-06-13 Joel Brobecker <brobecker@adacore.com>
5452
5453 * remote-sim.c (sim_command_completer): Change type of return
5454 value to "VEC (char_ptr) *". Adjust implementation accordingly.
5455
5456 2012-06-13 Mark Kettenis <kettenis@gnu.org>
5457 Jan Kratochvil <jan.kratochvil@redhat.com>
5458
5459 PR tdep/14222
5460 * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
5461 stack on a 16-byte boundary.
5462
5463 2012-06-13 Kaushik Srenevasan <kaushik@twitter.com>
5464
5465 * jit.c (finalize_symtab): Set function's return type to 'void' by
5466 default.
5467
5468 2012-06-13 Mark Kettenis <kettenis@gnu.org>
5469 H.J. Lu <hongjiu.lu@intel.com>
5470
5471 * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
5472 Move bits common to both the classic LP64 and the new x32 ILP32
5473 ABI here.
5474 (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
5475 (amd64_x32_linux_init_abi): New function.
5476 (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
5477 subtype.
5478
5479 * i386-tdep.h (i386_pseudo_register_name): New prototype.
5480 * i386-tdep.c (i386_pseudo_register_name): Make public.
5481 * amd64-tdep.h (amd64_x32_init_abi): New prototype.
5482 * amd64-tdep.c (amd64_dword_names): Add "eip".
5483 (amd64_x32_pseudo_register_type): New function
5484 (amd64_x32_init_abi): New function.
5485
5486 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5487
5488 PR build/14003
5489 * inferior.h (struct inferior_suspend_state): Comment out.
5490 (struct inferior): Comment out the field suspend.
5491 * infrun.c (struct infcall_suspend_state): Comment out the field
5492 inferior_suspend.
5493 (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
5494 out its assignment.
5495
5496 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5497
5498 PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
5499 * c-exp.y (classify_inner_name): Remove caller assumptions in the
5500 function comment. Return ERROR for unresolved cases. Implement
5501 returning proper NAME.
5502 (yylex): Accept also NAME from classify_inner_name.
5503 * cp-namespace.c (cp_lookup_nested_type): Rename to ...
5504 (cp_lookup_nested_symbol): ... here. Return any found symbol, not just
5505 LOC_TYPEDEF type.
5506 * cp-support.h (cp_lookup_nested_type): Update its declaration.
5507
5508 2012-06-13 Tom Tromey <tromey@redhat.com>
5509
5510 * breakpoint.c (condition_completer): New function.
5511 (_initialize_breakpoint): Use it.
5512 * value.c (complete_internalvar): New function.
5513 * value.h (complete_internalvar): Declare.
5514
5515 2012-06-13 Tom Tromey <tromey@redhat.com>
5516
5517 * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
5518 * breakpoint.c (catch_syscall_completer): Return a VEC.
5519 * cli/cli-cmds.c (complete_command): Update.
5520 * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
5521 (complete_on_enum): Likewise.
5522 * command.h: Include gdb_vecs.h.
5523 (completer_ftype): Change return type.
5524 (complete_on_cmdlist, complete_on_enum): Likewise.
5525 * completer.c (noop_completer, filename_completer)
5526 (location_completer): Return a VEC.
5527 (add_struct_fields): Remove 'nextp' argument. Change 'output'
5528 to a VEC.
5529 (expression_completer, complete_line_internal, complete_line)
5530 (command_completer): Return a VEC.
5531 (gdb_completion_word_break_characters, line_completion_function):
5532 Update.
5533 * completer.h: Include gdb_vecs.h.
5534 (complete_line, noop_completer, filename_completer)
5535 (expression_completer, location_completer, command_completer):
5536 Update.
5537 * f-lang.c (f_word_break_characters): Return a VEC.
5538 * interps.c (interpreter_completer): Return a VEC.
5539 * language.h (struct language_defn)
5540 <la_make_symbol_completion_list>: Return a VEC.
5541 * python/py-cmd.c (cmdpy_completer): Return a VEC.
5542 * symtab.c (free_completion_list): Take a VEC.
5543 (return_val_size, return_val_index): Remove.
5544 (return_val): Now a VEC.
5545 (completion_list_add_name): Update.
5546 (default_make_symbol_completion_list_break_on)
5547 (default_make_symbol_completion_list, make_symbol_completion_list)
5548 (make_symbol_completion_list_fn, make_file_symbol_completion_list):
5549 Return a VEC.
5550 (add_filename_to_list): Update.
5551 (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
5552 <list>: Now a VEC.
5553 (maybe_add_partial_symtab_filename): Update.
5554 (make_source_files_completion_list): Return a VEC.
5555 * symtab.h (default_make_symbol_completion_list_break_on)
5556 (default_make_symbol_completion_list, make_symbol_completion_list)
5557 (make_symbol_completion_list_fn, make_file_symbol_completion_list)
5558 (make_source_files_completion_list): Update.
5559
5560 2012-06-13 Tom Tromey <tromey@redhat.com>
5561
5562 * breakpoint.c (add_catch_command): Use completer_ftype.
5563 * breakpoint.h: Include command.h.
5564 (add_catch_command): Use completer_ftype.
5565 * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
5566 * cli/cli-decode.h (struct cmd_list_element) <completer>:
5567 Use completer_ftype.
5568 * command.h (completer_ftype): New typedef.
5569 (set_cmd_completer): Use it.
5570 * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
5571 completer_ftype.
5572
5573 2012-06-13 Pedro Alves <palves@redhat.com>
5574
5575 Partial revert of previous change.
5576
5577 * serial.c (scb_base): New global.
5578 (serial_for_fd): New.
5579 (serial_open, serial_fdopen_ops): Link new serial in open serials
5580 chain.
5581 (do_serial_close): Unlink serial from the open serials chain.
5582
5583 2012-06-12 Pedro Alves <palves@redhat.com>
5584
5585 * infrun.c (infrun_thread_stop_requested_callback): Don't switch
5586 threads here.
5587 (prepare_for_detach): No longer context switch here in non-stop
5588 mode.
5589 (fetch_inferior_event): Ditto.
5590 (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
5591 to the event thread before removing breakpoints. Switch to the
5592 event thread before inserting breakpoints and resuming.
5593 (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
5594 event thread before resuming.
5595 (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
5596 Switch to the event thread before removing breakpoints.
5597
5598 2012-06-12 Eli Zaretskii <eliz@gnu.org>
5599
5600 * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
5601 special characters correctly for the Windows shells. See
5602 http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
5603 report.
5604 [!__MINGW32__]: Remove extra double quote character from special
5605 characters.
5606
5607 2012-06-11 Stan Shebs <stan@codesourcery.com>
5608
5609 * ui-out.h: Remove #if 0 declarations.
5610 * ui-out.c: Remove #if 0 functions.
5611
5612 2012-06-11 Pedro Alves <palves@redhat.com>
5613
5614 * ser-base.c (run_async_handler_and_reschedule): New.
5615 (fd_event, push_event): Use it.
5616 * serial.c (serial_open, serial_fdopen_ops): Set the initial
5617 reference count to 1.
5618 (do_serial_close): Set the bufp field to NULL. Use serial_unref
5619 instead of xfree.
5620 (serial_is_open, serial_ref, serial_unref): New.
5621 * serial.h (serial_open): Adjust comment.
5622 (serial_is_open): Declare.
5623 (serial_close): Adjust comment.
5624 (serial_ref, serial_unref) Declare.
5625 (struct serial): New field 'refcnt'.
5626
5627 2012-06-11 Pedro Alves <palves@redhat.com>
5628
5629 Remove #if 0'd "connect" command, and unnecessary associated
5630 refcounting and serial reuse bits.
5631
5632 * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
5633 * serial.c (last_serial_opened): Delete.
5634 (scb_base): Delete.
5635 (serial_open): Adjust.
5636 (serial_for_fd): Delete.
5637 (serial_fdopen_ops, do_serial_close): Adjust.
5638 (serial_fdopen_ops): Adjust.
5639
5640 2012-06-11 Pedro Alves <palves@redhat.com>
5641
5642 * serial.c (do_serial_close): Remove early return when SCB is
5643 null.
5644
5645 2012-06-11 Tom Tromey <tromey@redhat.com>
5646
5647 * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
5648
5649 2012-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5650
5651 Fix regression by the "ambiguous linespec" series.
5652 * breakpoint.c (parse_breakpoint_sals): New variable cursal. Use
5653 get_last_displayed_symtab and get_last_displayed_line and depending
5654 on CURSAL.
5655
5656 2012-06-11 Tom Tromey <tromey@redhat.com>
5657
5658 * dwarf2read.c (dw2_get_primary_filename_reader): New function.
5659 (dw2_find_symbol_file): Use it.
5660
5661 2012-06-11 Michael Eager <eager@eagercon.com>
5662
5663 * mips-linux-tdep.c (mips_gdb_signal_from_target): New
5664 * mips-linux-tdep.h (mips_signals): New
5665
5666 2012-06-11 Tom Tromey <tromey@redhat.com>
5667
5668 * infrun.c (handle_inferior_event)
5669 <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
5670 breakpoint.
5671 <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
5672 exception logic in all cases. Update comments.
5673 (insert_longjmp_resume_breakpoint): Set the exception resume
5674 breakpoint.
5675
5676 2012-06-11 Maciej W. Rozycki <macro@codesourcery.com>
5677
5678 * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
5679
5680 2012-06-09 Siva Chandra Reddy <sivachandra@google.com>
5681
5682 * valarith.c (binop_types_user_defined_p): Fix a typo.
5683
5684 2012-06-08 Yao Qi <yao@codesourcery.com>
5685 Chung-Lin Tang <cltang@codesourcery.com>
5686
5687 * arch-utils.c (default_return_in_first_hidden_param_p): New.
5688 * arch-utils.h: Declare.
5689 * gdbarch.sh: Add return_in_first_hidden_param_p.
5690 * gdbarch.c, gdbarch.h: Regenerated.
5691 * infcall.c (call_function_by_hand): Call
5692 gdbarch_return_in_first_hidden_param_p instead of
5693 language_pass_by_reference.
5694
5695 * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
5696 (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
5697 * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
5698 (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
5699 * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
5700 `cplus_return_struct_by_reference'.
5701 (tic6x_return_value): Handle language cplusplus.
5702 (tic6x_return_in_first_hidden_param_p): New.
5703 (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
5704
5705 2012-06-07 Doug Evans <dje@google.com>
5706
5707 * dwarf2read.c (dwarf2_cu): Add comment.
5708
5709 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
5710
5711 * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
5712 variable.
5713 (mips_eabi_push_dummy_call): Likewise.
5714 (mips_n32n64_push_dummy_call): Likewise.
5715 (mips_o32_push_dummy_call): Likewise.
5716 (mips_o64_push_dummy_call): Likewise.
5717
5718 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
5719
5720 * mips-tdep.c (mips_convert_register_p): Correct coding style.
5721
5722 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
5723
5724 * mips-tdep.c (mips_pseudo_register_type): Use
5725 mips_float_register_p.
5726
5727 2012-06-06 Pedro Alves <palves@redhat.com>
5728
5729 * infrun.c (handle_inferior_event): Remove calls to
5730 reinit_frame_cache that follow a context_switch call.
5731
5732 2012-06-06 Pedro Alves <palves@redhat.com>
5733
5734 * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
5735 context_switch and remove stale comment.
5736
5737 2012-06-06 Pedro Alves <palves@redhat.com>
5738
5739 * infrun.c (struct execution_control_state): Remove
5740 `new_thread_event' field.
5741 (handle_inferior_event): Simplify new threads handling; don't
5742 resume the inferior if we find a new thread.
5743
5744 2012-06-06 Thomas Schwinge <thomas@codesourcery.com>
5745
5746 * NEWS: Document the deprecation of SH's 'regs' command.
5747 * inferior.h (all_registers_info): Add function declaration.
5748 * sh-tdep.c (sh_show_regs): Remove variable.
5749 (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
5750 (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
5751 (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
5752 (sh_show_regs_command): Remove functions.
5753 (sh_gdbarch_init): Don't set sh_show_regs.
5754 (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
5755 'info all-registers'.
5756 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
5757 (sh64_show_regs): Remove functions.
5758 * sh64-tdep.h (sh64_show_regs): Remove function declaration.
5759
5760 2012-06-06 Jan Kratochvil <jan.kratochvil@redhat.com>
5761
5762 * configure.ac: Move development=true below AC_INIT.
5763 * configure: Regenerate.
5764
5765 2012-06-05 Stan Shebs <stan@codesourcery.com>
5766
5767 * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
5768 gdb_stdout.
5769
5770 2012-06-05 Siddhesh Poyarekar <siddhesh@redhat.com>
5771
5772 * corefile.c (read_memory, read_stack, write_memory): Accept LEN
5773 argument as ssize_t.
5774 * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
5775 * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
5776 * target.c (target_read_stack, target_write_memory)
5777 (target_write_raw_memory): Likewise.
5778 * target.h (target_read_stack, target_write_memory)
5779 (target_write_raw_memory): Likewise.
5780
5781 2012-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5782
5783 * symfile-mem.c: Change gdb_static_assert to ssize_t.
5784 (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
5785 * target.c (target_read_memory): Change LEN to ssize_t.
5786 * target.h (target_read_memory): Change LEN to ssize_t.
5787
5788 2012-06-05 Pedro Alves <palves@redhat.com>
5789
5790 PR backtrace/13866
5791
5792 * breakpoint.c (until_break_command): Only fetch the selected
5793 frame after decode_line_1.
5794
5795 2012-06-05 Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
5796
5797 * solib-svr4.c (enable_break): Don't fallback to setting the solib
5798 event breakpoint at _start, __start or main if a program
5799 interpreter is not found.
5800
5801 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5802
5803 * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
5804 Add declaration.
5805 * windows-tdep.c: #include "objfiles.h".
5806 (windows_iterate_over_objfiles_in_search_order): New function.
5807 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
5808 iterate_over_objfiles_in_search_order gdbarch method to
5809 windows_iterate_over_objfiles_in_search_order.
5810 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
5811
5812 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5813
5814 * gdbarch.sh: Add generation of
5815 "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
5816 gdbarch.h. Add include of "objfiles.h" in gdbarch.c.
5817 (iterate_over_objfiles_in_search_order): New gdbarch method.
5818 * gdbarch.h, gdbarch.c: Regenerate.
5819 * objfiles.h (default_iterate_over_objfiles_in_search_order):
5820 Add declaration.
5821 * objfiles.c (default_iterate_over_objfiles_in_search_order):
5822 New function.
5823 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5824 out of lookup_symbol_aux_symtabs.
5825 (lookup_symbol_aux_symtabs): Replace extracted-out code by
5826 call to lookup_symbol_aux_objfile.
5827 (struct global_sym_lookup_data): New type.
5828 (lookup_symbol_global_iterator_cb): New function.
5829 (lookup_symbol_global): Search for symbol using
5830 gdbarch_iterate_over_objfiles_in_search_order and
5831 lookup_symbol_global_iterator_cb.
5832 * findvar.c (struct minsym_lookup_data): New type.
5833 (minsym_lookup_iterator_cb): New function.
5834 (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
5835 symbol's address via gdbarch_iterate_over_objfiles_in_search_order
5836 and minsym_lookup_iterator_cb.
5837
5838 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5839
5840 Revert the following patch:
5841 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
5842 try locating the symbol in the symbol's own objfile first, before
5843 extending the search to all objfiles.
5844 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5845 out of lookup_symbol_aux_symtabs.
5846 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
5847 Replace extracted-out code by call to lookup_symbol_aux_objfile.
5848 Do not search EXCLUDE_OBJFILE.
5849 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
5850 (lookup_symbol_global): Search for matches in the block's objfile
5851 first, before searching all other objfiles.
5852
5853 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5854
5855 * breakpoint.c (find_condition_and_thread): Stop parsing
5856 as soon as the first invalid keyword is found.
5857
5858 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5859
5860 * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
5861
5862 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5863
5864 * config/djgpp/djcheck.sh: Add copyright header.
5865
5866 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5867
5868 * copyright.py (update_files, main): Fix path to update-copyright
5869 script.
5870
5871 2012-06-05 Joel Brobecker <brobecker@adacore.com>
5872
5873 * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
5874 (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
5875 for which a reminder to update by hand is printed.
5876
5877 2012-06-04 Doug Evans <dje@google.com>
5878
5879 * buildsym.c (make_blockvector): Add comment.
5880
5881 2012-06-04 Pedro Alves <palves@redhat.com>
5882
5883 * arch-utils.c (default_gdb_signal_from_target): Delete.
5884 * arch-utils.h (default_gdb_signal_from_target): Delete.
5885 * corelow.c (core_open) <signal mapping>: Extended comment. Check
5886 gdbarch_gdb_signal_from_target_p.
5887 * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
5888 predicate).
5889 * gdbarch.h: Regenerate.
5890 * gdbarch.c: Regenerate.
5891
5892 2012-06-04 Pedro Alves <palves@redhat.com>
5893
5894 * gdbarch.sh (gdb_signal_from_target): Mention that the
5895 implementation of the method must be host independent.
5896 * gdbarch.h: Regenerate.
5897
5898 2012-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
5899
5900 * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
5901 parameters.
5902 (target_read_memory_bfd): New function.
5903 (symbol_file_add_from_memory): Use it.
5904
5905 2012-06-03 Doug Evans <dje@google.com>
5906
5907 * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
5908 of primary symtab.
5909 (basic_lookup_transparent_type): Ditto.
5910
5911 * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
5912 (ALL_PRIMARY_SYMTABS): Use it.
5913 (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
5914 * dwarf2read.c (dw2_find_symbol_file): Ditto.
5915 * linespec.c (iterate_over_all_matching_symtabs): Ditto.
5916 * symtab.c (lookup_symbol_aux_objfile): Ditto.
5917 (basic_lookup_transparent_type): Ditto.
5918
5919 2012-06-02 Sergio Durigan Junior <sergiodj@redhat.com>
5920
5921 * symtab.c (symbol_demangled_name): New variable `dem_name'. Use
5922 it to optimize resolution of demangled name.
5923
5924 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
5925
5926 * configure.ac (development): Define new variable.
5927 Call AC_CHECK_LIB for mcheck if $development.
5928 (ERROR_ON_WARNING): Enable it by default only if $development.
5929 * config.in: Regenerate.
5930 * configure: Regenerate.
5931
5932 2012-06-01 Siddhesh Poyarekar <siddhesh@redhat.com>
5933
5934 * target.c (target_read_memory): Make LEN argument as size_t.
5935 * target.h (target_read_memory): Likewise.
5936
5937 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
5938
5939 * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
5940
5941 2012-05-31 Edjunior Machado <emachado@linux.vnet.ibm.com>
5942
5943 * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
5944 BookE interface for PowerPC server processors if not available
5945 in the Linux Kernel.
5946
5947 2012-05-31 Keith Seitz <keiths@redhat.com>
5948
5949 * linespec.c (decode_objc): Add cleanup to free
5950 INFO.FILE_SYMTABS.
5951 (find_linespec_symbols): Add cleanup to free CLASSES.
5952 * symfile.c (find_separate_debug_file_by_debuglink): Add
5953 cleanup to free DEBUGLINK.
5954 * ui-out.c (clear_header_list): No need to check if
5955 HEADER_NEXT.COLHDR is NULL.
5956 Free HEADER_NEXT.COL_NAME.
5957
5958 2012-05-31 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5959
5960 * ada-lang.c (standard_lookup): Prevent uninitialized variable
5961 warning.
5962
5963 2012-05-30 Jeff Kenton <jkenton@tilera.com>
5964
5965 * configure.host (gdb_host_cpu): Handle tilegx*.
5966 (gdb_host): Handle tilegx-*-linux*.
5967 * tilegx-linux-nat.c: New file.
5968 * config/tilegx/linux.mh: New file.
5969
5970 2012-05-30 Jeff Kenton <jkenton@tilera.com>
5971
5972 * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
5973 tilegx-linux-tdep.o.
5974 (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
5975 tilegx-linux-tdep.c.
5976 * configure.tgt: Handle tilegx-*-linux*.
5977 * tilegx-tdep.h: New file.
5978 * tilegx-tdep.c: New file.
5979 * tilegx-linux-tdep.c: New file.
5980 * regformats/reg-tilegx.dat: New file.
5981
5982 2012-05-30 Edjunior Machado <emachado@linux.vnet.ibm.com>
5983
5984 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
5985 accounting of hw watchpoints on ppc.
5986
5987 2012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
5988
5989 * source.c (openp): Expand tilde in path entries.
5990
5991 2012-05-29 Doug Evans <dje@google.com>
5992
5993 * buildsym.c (block_compar): Fix comment.
5994 (end_symtab): Fix and clarify some comments.
5995
5996 * stabsread.h (cleanup_undefined_stabs_types): Renamed from
5997 cleanup_undefined_types.
5998 * stabsread.c (cleanup_undefined_stabs_types): Ditto.
5999 All callers updated.
6000
6001 2012-05-29 Tom Tromey <tromey@redhat.com>
6002
6003 * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
6004 fails.
6005 * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
6006 * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
6007 fails.
6008 * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
6009 fails.
6010
6011 2012-05-29 Tristan Gingold <gingold@adacore.com>
6012
6013 * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
6014 (struct darwin_info): ... New struct.
6015 (solib_darwin_pspace_data): New variable.
6016 (darwin_pspace_data_cleanup): New function.
6017 (get_darwin_info): Likewise.
6018 (darwin_dyld_version_ok, darwin_load_image_infos)
6019 (darwin_solib_get_all_image_info_addr_at_init)
6020 (darwin_solib_read_all_image_info_addr): Add info argument.
6021 Adjust code.
6022 (darwin_current_sos): Use per pspace structure.
6023 (darwin_solib_create_inferior_hook): Likewise.
6024 (darwin_clear_solib): Likewise.
6025 (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
6026
6027 2012-05-28 Pedro Alves <palves@redhat.com>
6028
6029 * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
6030 block that uses them. Clear ecss before handling each event.
6031
6032 2012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
6033
6034 * solib-svr4.c (svr4_current_sos): New comment on
6035 svr4_current_sos_via_xfer_libraries fall back.
6036
6037 2012-05-24 Jan Kratochvil <jan.kratochvil@redhat.com>
6038
6039 * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best. Use
6040 it as a fallback for TYPE_IS_OPAQUE.
6041 * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
6042 symbols for lookup_symbol.
6043
6044 2012-05-24 John Steele Scott <toojays@toojays.net>
6045
6046 PR symtab/13277: Resolving opaque structures in ICC generated binaries.
6047 * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
6048 (producer_is_gxx_lt_4_6): Move the checking and caching to...
6049 (check_producer): ... this new function, which also checks for ICC
6050 and caches the result.
6051 (producer_is_icc): New function.
6052 (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
6053 producer was ICC.
6054
6055 2012-05-24 Pedro Alves <palves@redhat.com>
6056
6057 PR gdb/7205
6058
6059 * arch-utils.c (default_gdb_signal_to_host): Rename to ...
6060 (default_gdb_signal_to_target): ... this. Add comment.
6061 (default_gdb_signal_from_host): Rename to ...
6062 (default_gdb_signal_from_target): ... this. Add comment.
6063 * arch-utils.h (default_gdb_signal_to_host): Rename to ...
6064 (default_gdb_signal_to_target): ... this.
6065 (default_gdb_signal_from_host): Rename to ...
6066 (default_gdb_signal_from_target): ... this.
6067 * corelow.c (core_open): Adjust to naming change. Replace comment.
6068 * gdbarch.sh (gdb_signal_from_host): Rename to ...
6069 (gdb_signal_from_target): ... this. Adjust to
6070 default_gdb_signal_from_host naming change. Extend comment.
6071 (gdb_signal_to_host): Rename to ...
6072 (gdb_signal_to_target): ... this. Adjust to
6073 default_gdb_signal_to_host naming change.
6074 * gdbarch.h, gdbarch.c: Renegerate.
6075
6076 2012-05-24 Pedro Alves <palves@redhat.com>
6077
6078 PR gdb/7205
6079
6080 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
6081
6082 2012-05-24 Pedro Alves <palves@redhat.com>
6083
6084 PR gdb/7205
6085
6086 Replace target_signal with gdb_signal throughout.
6087
6088 2012-05-24 Pedro Alves <palves@redhat.com>
6089
6090 PR tui/14159
6091
6092 * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
6093 string, instead of reusing the va_list argument.
6094
6095 2012-05-24 Tom Tromey <tromey@redhat.com>
6096
6097 * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
6098 Remove.
6099
6100 2012-05-23 Doug Evans <dje@google.com>
6101
6102 * symtab.c (search_symbols): Formatting fixes.
6103 (print_symbol_info): Formatting fixes.
6104
6105 * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
6106 int64_t change to leb128 API.
6107 (read_encoded_value, decode_frame_entry_1): Ditto.
6108 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
6109 (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
6110 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6111 (execute_stack_op): Ditto.
6112 * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
6113 (safe_read_uleb128, safe_read_sleb128): Ditto.
6114 * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
6115 (dwarf2_compile_expr_to_ax): Ditto.
6116 (locexpr_describe_location_piece): Ditto.
6117 (disassemble_dwarf_expression): Ditto.
6118 (locexpr_describe_location_1): Ditto.
6119
6120 2012-05-23 Stan Shebs <stan@codesourcery.com>
6121 Kwok Cheung Yeung <kcy@codesourcery.com>
6122
6123 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
6124 (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
6125 (mi-cmd-info.o): New rule.
6126 * osdata.h (info_osdata_command): New declaration.
6127 * osdata.c (info_osdata_command): Change to non-static.
6128 * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
6129 * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
6130 * mi/mi-cmd-info.c: New file.
6131
6132 2012-05-23 Doug Evans <dje@google.com>
6133
6134 * symtab.c (search_symbols): Pass NULL for file_matcher to
6135 expand_symtabs_matching if there are no files to match.
6136
6137 * gdbtypes.c (lookup_typename): Simplify.
6138
6139 2012-05-23 Pedro Alves <palves@redhat.com>
6140
6141 * arch-utils.h (default_target_signal_to_host): Delete.
6142 * arch-utils.c (default_target_signal_to_host): Delete.
6143 * gdbarch.sh (target_signal_to_host): Remove.
6144 * gdbarch.h, gdbarch.c: Regenerate.
6145
6146 2012-05-22 Doug Evans <dje@google.com>
6147
6148 * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
6149 "const gdb_byte *".
6150 (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
6151 (execute_cfa_program): Update to match API of leb128 functions.
6152 (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
6153 "const gdb_byte *".
6154 (read_unsigned_leb128, read_signed_leb128): Delete.
6155 (read_initial_length): Change type of buf argument to
6156 "const gdb_byte *".
6157 (read_encoded_value): Update to match API of leb128 functions.
6158 (decode_frame_entry): Change result to "const gdb_byte *", and
6159 similarly for "start" parameter.
6160 (decode_frame_entry_1): Ditto. Use new leb128 reader functions.
6161 (dwarf2_build_frame_info): Change local frame_ptr to
6162 "const gdb_byte *".
6163 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
6164 read_uleb128, read_sleb128. All callers updated.
6165 (safe_skip_leb128): New function.
6166 (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
6167 Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
6168 (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
6169 functions. Call gdb_read_uleb128, gdb_read_sleb128 instead of
6170 read_uleb128, read_sleb128.
6171 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6172 (execute_stack_op): Update to match API of leb128 functions.
6173 * dwarf2expr.h: #include "leb128.h".
6174 (read_uleb128, read_sleb128): Delete.
6175 (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
6176 (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
6177 * dwarf2loc.c (debug_loc_kind): New enum.
6178 (decode_debug_loc_addresses): New function.
6179 (decode_debug_loc_dwo_addresses): New function.
6180 (dwarf2_find_location_expression): Rewrite.
6181 (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
6182 (locexpr_describe_location_piece): Ditto.
6183 (disassemble_dwarf_expression): Ditto.
6184 (locexpr_describe_location_1): Ditto.
6185 (loclist_describe_location): Rewrite.
6186 * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
6187 * dwarf2read.c (die_reader_specs): New member "buffer_end".
6188 (dwarf2_section_buffer_overflow_complaint): Renamed from
6189 dwarf2_macros_too_long_complaint. All callers updated.
6190 (skip_leb128): Delete.
6191 (init_cu_die_reader): Initialize reader->buffer_end.
6192 (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
6193 (skip_form_bytes): New arg buffer_end. All callers updated.
6194 Replace call to skip_leb128 with gdb_skip_leb128.
6195 (skip_unknown_opcode): New arg mac_end. All callers updated.
6196 (fill_in_loclist_baton): Initialize baton->from_dwo.
6197
6198 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
6199
6200 * mips-linux-nat.c (mips_linux_read_description): Use a more
6201 verbose error message.
6202
6203 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
6204
6205 * NEWS: Add MIPS/Linux DSP support.
6206 * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
6207 (SIGCONTEXT_DSPCTL): New macro.
6208 (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
6209 (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
6210 (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
6211 (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
6212 (N64_SIGCONTEXT_HI3): Likewise.
6213 (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
6214 (N64_SIGCONTEXT_LO3): Likewise.
6215 (N64_SIGCONTEXT_DSPCTL): Likewise.
6216 (N64_SIGCONTEXT_FPCSR): Clarify definition.
6217 (mips_linux_o32_sigframe_init): Handle DSP registers.
6218 (mips_linux_n32n64_sigframe_init): Likewise.
6219
6220 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
6221
6222 * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
6223 call to abort.
6224
6225 2012-05-22 Pedro Alves <palves@redhat.com>
6226
6227 * target.h (store_waitstatus): Move declaration ...
6228 * inf-child.h (store_waitstatus): ... here.
6229 * target.c: Move inclusion of gdb_wait.h, and ...
6230 (store_waitstatus): ... this ...
6231 * inf-child.c: ... here.
6232 * linux-nat.c: Include inf-child.h.
6233 * rs6000-nat.c: Include inf-child.h.
6234 * spu-linux-nat.c: Include inf-child.h.
6235
6236 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
6237
6238 * tracepoint.c (start_tracing): Add missing i18n markup.
6239 (stop_tracing, set_trace_user): Ditto.
6240 (set_trace_notes, set_trace_stop_notes): Ditto.
6241
6242 2012-05-21 Tom Tromey <tromey@redhat.com>
6243
6244 PR c++/7173:
6245 * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
6246 types.
6247 * value.h (value_cast_pointers): Update.
6248 * valops.c (value_cast_pointers): Add 'subclass_check' argument.
6249 (value_cast): Update.
6250 (update_search_result): New function.
6251 (do_search_struct_field): New, from search_struct_field. Check
6252 for ambiguous results.
6253 (search_struct_field): Rewrite.
6254 * infcall.c (value_arg_coerce): Update.
6255 * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
6256 value_cast_pointers.
6257 * ada-lang.c (ada_convert_actual): Update.
6258
6259 2012-05-21 Tom Tromey <tromey@redhat.com>
6260
6261 * macroexp.c (macro_stringify): Terminate the string.
6262
6263 2012-05-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6264
6265 * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
6266 Describe it.
6267 * auto-load.c (auto_load_expand_dir_vars): New function.
6268 (auto_load_safe_path_vec_update): Use it, remove the
6269 substitute_path_component call thanks to it.
6270 (auto_load_objfile_script): Remove the debug_file_directory processing.
6271 Use auto_load_expand_dir_vars, remove the substitute_path_component
6272 call thanks to it.
6273 * configure: Regenerate.
6274 * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
6275 path. Escape $ also for $debugdir.
6276 (--with_auto_load_safe_path): Escape $ also for $debugdir.
6277 * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
6278
6279 2012-05-20 Doug Evans <dje@google.com>
6280
6281 * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
6282 before use. Check for symtab->includes == NULL before scanning it.
6283
6284 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6285
6286 * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
6287
6288 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6289
6290 * NEWS: Add microMIPS support and "set mips compression",
6291 "show mips compression" commands.
6292 * mips-tdep.h (mips_isa): New enum.
6293 (gdbarch_tdep): Add mips_isa.
6294 (mips_pc_is_mips16): Update prototype.
6295 (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
6296 * mips-tdep.c (mips_compression_mips16): New variable.
6297 (mips_compression_micromips): Likewise.
6298 (mips_compression_strings): Likewise.
6299 (mips_compression_string): Likewise.
6300 (is_mips16_isa, is_micromips_isa): New functions.
6301 (is_mips16_addr): Rename to...
6302 (is_compact_addr): ... this.
6303 (unmake_mips16_addr): Likewise to...
6304 (unmake_compact_addr): ... this.
6305 (make_mips16_addr): Likewise to...
6306 (make_compact_addr): ... this.
6307 (is_mips_addr, is_mips16_addr, is_micromips_addr): New
6308 functions.
6309 (mips_elf_make_msymbol_special): Handle microMIPS code.
6310 (msymbol_is_special): Rename to...
6311 (msymbol_is_mips16): ... this.
6312 (mips_make_symbol_special, mips_pc_is_mips16): Update
6313 accordingly.
6314 (msymbol_is_mips, msymbol_is_micromips): New functions.
6315 (mips16_to_32_reg): Rename to...
6316 (mips_reg3_to_reg): ... this.
6317 (mips_pc_is_mips, mips_pc_is_micromips): New functions.
6318 (mips_pc_isa): Likewise.
6319 (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
6320 code.
6321 (mips_fetch_instruction): Pass return status instead of printing
6322 an error message if requested. Handle microMIPS code. Bail out
6323 on an invalid ISA.
6324 (micromips_op): New macro.
6325 (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
6326 (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
6327 (b6s4_op, b7s3_reg): Likewise.
6328 (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
6329 (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
6330 (mips_insn_size): New function.
6331 (mips32_next_pc): Update mips_fetch_instruction call.
6332 (micromips_relative_offset7): New function.
6333 (micromips_relative_offset10): Likewise.
6334 (micromips_relative_offset16): Likewise.
6335 (micromips_pc_insn_size): Likewise.
6336 (micromips_bc1_pc): Likewise.
6337 (micromips_next_pc): Likewise.
6338 (unpack_mips16): Update mips_fetch_instruction call.
6339 (extended_mips16_next_pc): Update according to change to
6340 mips16_to_32_reg.
6341 (mips_next_pc): Update mips_pc_is_mips16 call. Handle microMIPS
6342 code.
6343 (mips16_scan_prologue): Update mips_fetch_instruction call.
6344 Update according to change to mips16_to_32_reg.
6345 (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
6346 (mips_insn16_frame_base_sniffer): Likewise.
6347 (micromips_decode_imm9): New function.
6348 (micromips_scan_prologue): Likewise.
6349 (mips_micro_frame_cache): Likewise.
6350 (mips_micro_frame_this_id): Likewise.
6351 (mips_micro_frame_prev_register): Likewise.
6352 (mips_micro_frame_sniffer): Likewise.
6353 (mips_micro_frame_unwind): New variable.
6354 (mips_micro_frame_base_address): New function.
6355 (mips_micro_frame_base): New variable.
6356 (mips_micro_frame_base_sniffer): New function.
6357 (mips32_scan_prologue): Update mips_fetch_instruction call.
6358 (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
6359 rather than for MIPS16.
6360 (mips_insn32_frame_base_sniffer): Likewise.
6361 (mips_addr_bits_remove): Handle microMIPS code.
6362 (deal_with_atomic_sequence): Rename to...
6363 (mips_deal_with_atomic_sequence): ... this. Update the type
6364 of the variable used to hold an instruction. Remove the ISA bit
6365 check. Update mips_fetch_instruction call.
6366 (micromips_deal_with_atomic_sequence): New function.
6367 (deal_with_atomic_sequence): Likewise.
6368 (mips_about_to_return): Handle microMIPS code. Update
6369 mips_fetch_instruction call.
6370 (heuristic_proc_start): Check for the standard MIPS ISA rather
6371 than for MIPS16. Update mips_pc_is_mips16 and
6372 mips_fetch_instruction calls. Handle microMIPS code.
6373 (mips_push_dummy_code): Handle microMIPS code.
6374 (mips_eabi_push_dummy_call): Likewise.
6375 (mips_o32_return_value): Update mips_pc_is_mips16 call.
6376 (mips_o64_push_dummy_call): Handle microMIPS code.
6377 (mips_o64_return_value): Update mips_pc_is_mips16 call.
6378 (is_delayed): Remove function.
6379 (mips_single_step_through_delay): Replace the call to is_delayed
6380 with mips32_instruction_has_delay_slot. Correct MIPS16 handling.
6381 Handle microMIPS code.
6382 (mips_skip_prologue): Update mips_pc_is_mips16 call. Handle
6383 microMIPS code.
6384 (mips32_in_function_epilogue_p): Update mips_fetch_instruction
6385 call.
6386 (micromips_in_function_epilogue_p): New function.
6387 (mips16_in_function_epilogue_p): Update mips_fetch_instruction
6388 call.
6389 (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
6390 Handle microMIPS.
6391 (gdb_print_insn_mips): Likewise.
6392 (mips_breakpoint_from_pc): Likewise.
6393 (mips_remote_breakpoint_from_pc): New function.
6394 (mips32_instruction_has_delay_slot): Simplify making use of the
6395 updated mips_fetch_instruction interface.
6396 (micromips_instruction_has_delay_slot): New function.
6397 (mips16_instruction_has_delay_slot): Simplify making use of the
6398 updated mips_fetch_instruction interface.
6399 (mips_adjust_breakpoint_address): Check for the standard MIPS
6400 ISA rather than for MIPS16 ISA. Update for unmake_compact_addr
6401 calls. Handle microMIPS code.
6402 (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
6403 (mips_skip_trampoline_code): Handle microMIPS code.
6404 (global_mips_compression): New function.
6405 (mips_gdbarch_init): Handle the compressed ISA setting from ELF
6406 file flags. Register the microMIPS remote breakpoint handler
6407 and heuristic frame unwinder.
6408 (show_mips_compression): New function.
6409 (_initialize_mips_tdep): Add the "set mips compression" and
6410 "show mips compression" commands.
6411
6412 2012-05-18 Sergio Durigan Junior <sergiodj@redhat.com>
6413
6414 * ada-lang.c:
6415 * ada-tasks.c:
6416 * ada-varobj.c:
6417 * amd64-darwin-tdep.c:
6418 * arm-symbian-tdep.c:
6419 * arm-tdep.c:
6420 * avr-tdep.c:
6421 * ax-gdb.c:
6422 * bfin-linux-tdep.c:
6423 * breakpoint.c:
6424 * c-valprint.c:
6425 * cli/cli-cmds.c:
6426 * coffread.c:
6427 * cp-support.c:
6428 * cris-tdep.c:
6429 * dwarf2-frame-tailcall.c:
6430 * dwarf2-frame.c:
6431 * dwarf2expr.c:
6432 * dwarf2loc.c:
6433 * dwarf2read.c:
6434 * elfread.c:
6435 * eval.c:
6436 * expprint.c:
6437 * f-valprint.c:
6438 * frv-tdep.c:
6439 * h8300-tdep.c:
6440 * hppa-hpux-tdep.c:
6441 * hppa-tdep.c:
6442 * hppanbsd-tdep.c:
6443 * i386-nto-tdep.c:
6444 * i386-tdep.c:
6445 * i387-tdep.c:
6446 * ia64-tdep.c:
6447 * jit.c:
6448 * linespec.c:
6449 * linux-tdep.c:
6450 * lm32-tdep.c:
6451 * m2-valprint.c:
6452 * m32c-tdep.c:
6453 * m32r-rom.c:
6454 * m32r-tdep.c:
6455 * m68k-tdep.c:
6456 * m68klinux-tdep.c:
6457 * mi/mi-main.c:
6458 * microblaze-tdep.c:
6459 * mips-linux-tdep.c:
6460 * mips-tdep.c:
6461 * mn10300-tdep.c:
6462 * p-valprint.c:
6463 * parse.c:
6464 * ppc-linux-tdep.c:
6465 * ppc-sysv-tdep.c:
6466 * printcmd.c:
6467 * python/py-finishbreakpoint.c:
6468 * python/py-inferior.c:
6469 * python/py-infthread.c:
6470 * python/py-type.c:
6471 * python/python.c:
6472 * remote-fileio.c:
6473 * remote-m32r-sdi.c:
6474 * remote-mips.c:
6475 * reverse.c:
6476 * rl78-tdep.c:
6477 * rs6000-aix-tdep.c:
6478 * rs6000-tdep.c:
6479 * s390-tdep.c:
6480 * score-tdep.c:
6481 * sh64-tdep.c:
6482 * skip.c:
6483 * solib-darwin.c:
6484 * solib-dsbt.c:
6485 * solib-frv.c:
6486 * sparc-tdep.c:
6487 * spu-multiarch.c:
6488 * spu-tdep.c:
6489 * stack.c:
6490 * symfile.c:
6491 * symtab.c:
6492 * tic6x-tdep.c:
6493 * tracepoint.c:
6494 * v850-tdep.c:
6495 * valarith.c:
6496 * valprint.c:
6497 * value.c:
6498 * xcoffread.c:
6499 * xtensa-tdep.c:
6500 * ada-lang.c:
6501 * ada-tasks.c:
6502 * ada-varobj.c:
6503 * amd64-darwin-tdep.c:
6504 * arm-symbian-tdep.c:
6505 * arm-tdep.c: Delete unused variables.
6506
6507 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
6508
6509 Rename $ddir to $datadir.
6510 * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
6511 * auto-load.c (auto_load_safe_path_vec_update)
6512 (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
6513 * configure: Regenerate.
6514 * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
6515 Likewise. Remove the 'use $ddir' help string.
6516
6517 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
6518
6519 * auto-load.c (show_auto_load_safe_path): Accept any combination of
6520 DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
6521
6522 2012-05-18 Tom Tromey <tromey@redhat.com>
6523
6524 PR exp/13907:
6525 * valprint.h (struct value_print_options) <symbol_print>: New
6526 field.
6527 * valprint.c (user_print_options): Add default for symbol_print.
6528 (show_symbol_print): New function.
6529 (generic_val_print): Respect symbol_print.
6530 (_initialize_valprint): Add "print symbol" setting.
6531 * f-valprint.c (f_val_print): Respect symbol_print.
6532 * c-valprint.c (c_val_print): Respect symbol_print.
6533 * NEWS: Update.
6534 * printcmd.c (print_address_symbolic): Return int. Ignore some
6535 zero-size symbols.
6536 (print_address_demangle): Return int.
6537 * defs.h: (print_address_symbolic): Return int.
6538 * value.h (print_address_demangle): Return int.
6539
6540 2012-05-18 Tom Tromey <tromey@redhat.com>
6541
6542 * valprint.c (val_print_string): Don't print leading space.
6543 * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
6544 print space before string or vtbl.
6545 * m2-valprint.c (print_unpacked_pointer): Optionally print space
6546 before string.
6547 * jv-valprint.c (java_value_print): Print space before string.
6548 * go-valprint.c (print_go_string): Print space before string.
6549 * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
6550 space before string.
6551 * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
6552 space before string or vtbl.
6553 * auxv.c (fprint_target_auxv): Print space after address.
6554
6555 2012-05-18 Tom Tromey <tromey@redhat.com>
6556
6557 * printcmd.c (print_address_demangle): Remove special case for 0.
6558
6559 2012-05-18 Tom Tromey <tromey@redhat.com>
6560
6561 * printcmd.c (print_address_demangle): Add 'opts' argument.
6562 * p-valprint.c (pascal_val_print): Update.
6563 * jv-valprint.c (java_val_print): Update.
6564 * value.h: Update.
6565 * valprint.c (generic_val_print): Update.
6566 (print_function_pointer_address): Add 'options' argument. Remove
6567 'addressprint' argument. Update.
6568 * m2-valprint.c (print_unpacked_pointer): Update.
6569 * gnu-v3-abi.c (print_one_vtable): Update.
6570 (gnuv3_print_method_ptr): Update.
6571 * f-valprint.c (f_val_print): Update.
6572 * cp-valprint.c (cp_print_value_fields): Update.
6573 * valprint.h (print_function_pointer_address): Update.
6574 * c-valprint.c (c_val_print): Update.
6575
6576 2012-05-18 Tom Tromey <tromey@redhat.com>
6577
6578 * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
6579 directly corresponding to the found psymtab.
6580 * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
6581 (dw2_find_pc_sect_symtab): Use it.
6582 * block.h (blockvector_contains_pc): Declare.
6583 * block.c (find_block_in_blockvector): New function.
6584 (blockvector_for_pc_sect): Use it.
6585 (blockvector_contains_pc): New function.
6586
6587 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6588
6589 * mips-tdep.h (mips_write_pc): New prototype.
6590 * mips-tdep.c (mips_write_pc): Make external, add description.
6591 * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
6592 add description.
6593
6594 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
6595
6596 * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
6597 mips_regnum->pc.
6598 (mips_unwind_pc, mips_write_pc): Likewise.
6599 (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
6600 gdbarch_read_pc.
6601
6602 2012-05-17 Joel Brobecker <brobecker@adacore.com>
6603
6604 * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
6605 proc_warn, proc_error, proc_get_status, proc_flags,
6606 proc_why, proc_what, proc_nsysarg, proc_sysargs,
6607 proc_set_run_on_last_close, proc_unset_run_on_last_close,
6608 proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
6609 proc_stop_process, proc_wait_for_stop, proc_run_process,
6610 proc_set_traced_signals, proc_set_traced_faults,
6611 proc_set_traced_sysentry, proc_set_traced_sysexit,
6612 proc_set_held_signals, proc_get_held_signals,
6613 proc_get_traced_signals, proc_get_traced_faults,
6614 proc_get_traced_sysentry, proc_get_traced_sysexit,
6615 proc_clear_current_fault, proc_set_current_signal,
6616 proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
6617 proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
6618 proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
6619 proc_get_current_thread, proc_get_current_thread,
6620 proc_get_current_thread, proc_update_threads,
6621 proc_update_threads, proc_update_threads, proc_update_threads,
6622 proc_iterate_over_threads, procfs_find_new_threads,
6623 procfs_pid_to_str): Make static. Remove advance declaration.
6624 (proc_cursig): Make static. Conditionalized defintion on
6625 PROCFS_DONT_PIOCSSIG_CURSIG being defined.
6626 (proc_syscall, proc_set_kill_on_last_close,
6627 proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
6628 proc_get_pending_signals, proc_get_signal_actions,
6629 proc_trace_signal, proc_ignore_signal): Delete.
6630
6631 2012-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
6632
6633 * coffread.c (cs_section_address): Passing proper argument for
6634 `bfd_get_section_vma'.
6635 * dwarf2read.c (dwarf2_locate_sections): Likewise, for
6636 `bfd_get_section_flags'.
6637 * remote.c (remote_trace_set_readonly_regions): Likewise, for
6638 `bfd_get_section_vma'.
6639
6640 2012-05-16 Tom Tromey <tromey@redhat.com>
6641
6642 PR macros/13205:
6643 * macrotab.h: (macro_define_special): Declare.
6644 (enum macro_special_kind): New.
6645 (struct macro_definition) <argc, replacement>: Update comments.
6646 * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
6647 (macro_define_object_internal): New function.
6648 (macro_define_object): Use it.
6649 (macro_define_special): New function.
6650 (fixup_definition): New function.
6651 (macro_lookup_definition, foreach_macro_in_scope)
6652 (foreach_macro): Use fixup_definition.
6653 * macroexp.h (macro_stringify): Declare.
6654 * macroexp.c (free_buffer_return_text): New function.
6655 (stringify): Constify "arg".
6656 (macro_stringify): New function.
6657 * dwarf2read.c (macro_start_file): Call macro_define_special.
6658
6659 2012-05-16 Maciej W. Rozycki <macro@codesourcery.com>
6660 Maciej W. Rozycki <macro@mips.com>
6661
6662 * breakpoint.h (bp_location): Add related_address member.
6663 * inferior.h (get_return_value): Take a pointer to struct value
6664 instead of struct type for the function requested.
6665 * value.h (using_struct_return): Likewise.
6666 * gdbarch.sh (return_value): Take a pointer to struct value
6667 instead of struct type for the function requested.
6668 * breakpoint.c (set_breakpoint_location_function): Initialize
6669 related_address for bp_gnu_ifunc_resolver breakpoints.
6670 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
6671 requested function's address to gdbarch_return_value.
6672 * eval.c (evaluate_subexp_standard): Pass the requested
6673 function's address to using_struct_return.
6674 * infcall.c (call_function_by_hand): Pass the requested
6675 function's address to using_struct_return and
6676 gdbarch_return_value.
6677 * infcmd.c (get_return_value): Take a pointer to struct value
6678 instead of struct type for the function requested.
6679 (print_return_value): Update accordingly.
6680 (finish_command_continuation): Likewise.
6681 * stack.c (return_command): Pass the requested function's
6682 address to using_struct_return and gdbarch_return_value.
6683 * value.c (using_struct_return): Take a pointer to struct value
6684 instead of struct type for the function requested. Pass the
6685 requested function's address to gdbarch_return_value.
6686 * python/py-finishbreakpoint.c (finish_breakpoint_object):
6687 New function_value member, replacing function_type.
6688 (bpfinishpy_dealloc): Update accordingly.
6689 (bpfinishpy_pre_stop_hook): Likewise.
6690 (bpfinishpy_init): Likewise. Record the requested function's
6691 address.
6692 * mips-tdep.c (mips_fval_reg): New enum.
6693 (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
6694 words put in GP registers.
6695 (mips_o64_push_dummy_call): Update a comment.
6696 (mips_o32_return_value): Take a pointer to struct value instead
6697 of struct type for the function requested and use it to check if
6698 using the MIPS16 calling convention. Return the designated
6699 general purpose registers for floating-point values returned in
6700 MIPS16 mode.
6701 (mips_o64_return_value): Likewise.
6702 * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
6703 (ppc_sysv_abi_broken_return_value): Likewise.
6704 (ppc64_sysv_abi_return_value): Likewise.
6705 * alpha-tdep.c (alpha_return_value): Take a pointer to struct
6706 value instead of struct type for the function requested.
6707 * amd64-tdep.c (amd64_return_value): Likewise.
6708 * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
6709 * arm-tdep.c (arm_return_value): Likewise.
6710 * avr-tdep.c (avr_return_value): Likewise.
6711 * bfin-tdep.c (bfin_return_value): Likewise.
6712 * cris-tdep.c (cris_return_value): Likewise.
6713 * frv-tdep.c (frv_return_value): Likewise.
6714 * h8300-tdep.c (h8300_return_value): Likewise.
6715 (h8300h_return_value): Likewise.
6716 * hppa-tdep.c (hppa32_return_value): Likewise.
6717 (hppa64_return_value): Likewise.
6718 * i386-tdep.c (i386_return_value): Likewise.
6719 * ia64-tdep.c (ia64_return_value): Likewise.
6720 * iq2000-tdep.c (iq2000_return_value): Likewise.
6721 * lm32-tdep.c (lm32_return_value): Likewise.
6722 * m32c-tdep.c (m32c_return_value): Likewise.
6723 * m32r-tdep.c (m32r_return_value): Likewise.
6724 * m68hc11-tdep.c (m68hc11_return_value): Likewise.
6725 * m68k-tdep.c (m68k_return_value): Likewise.
6726 (m68k_svr4_return_value): Likewise.
6727 * m88k-tdep.c (m88k_return_value): Likewise.
6728 * mep-tdep.c (mep_return_value): Likewise.
6729 * microblaze-tdep.c (microblaze_return_value): Likewise.
6730 * mn10300-tdep.c (mn10300_return_value): Likewise.
6731 * moxie-tdep.c (moxie_return_value): Likewise.
6732 * mt-tdep.c (mt_return_value): Likewise.
6733 * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
6734 * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
6735 (ppc_sysv_abi_broken_return_value): Likewise.
6736 (ppc64_sysv_abi_return_value): Likewise.
6737 * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
6738 * rl78-tdep.c (rl78_return_value): Likewise.
6739 * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
6740 * rx-tdep.c (rx_return_value): Likewise.
6741 * s390-tdep.c (s390_return_value): Likewise.
6742 * score-tdep.c (score_return_value): Likewise.
6743 * sh-tdep.c (sh_return_value_nofpu): Likewise.
6744 (sh_return_value_fpu): Likewise.
6745 * sh64-tdep.c (sh64_return_value): Likewise.
6746 * sparc-tdep.c (sparc32_return_value): Likewise.
6747 * sparc64-tdep.c (sparc64_return_value): Likewise.
6748 * spu-tdep.c (spu_return_value): Likewise.
6749 * tic6x-tdep.c (tic6x_return_value): Likewise.
6750 * v850-tdep.c (v850_return_value): Likewise.
6751 * vax-tdep.c (vax_return_value): Likewise.
6752 * xstormy16-tdep.c (xstormy16_return_value): Likewise.
6753 * xtensa-tdep.c (xtensa_return_value): Likewise.
6754 * gdbarch.c: Regenerate.
6755 * gdbarch.h: Regenerate.
6756
6757 2012-05-15 Tom Tromey <tromey@redhat.com>
6758
6759 * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
6760
6761 2012-05-15 Joel Brobecker <brobecker@adacore.com>
6762
6763 * breakpoint.c (init_breakpoint_sal): Add quotes around part
6764 of command in two error message.
6765
6766 2012-05-15 Joel Brobecker <brobecker@adacore.com>
6767
6768 * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
6769
6770 2012-05-15 Joel Brobecker <brobecker@adacore.com>
6771
6772 * breakpoint.c (find_condition_and_thread): Minor reformatting.
6773
6774 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6775
6776 * NEWS (show auto-load scripts-directory): Add forgotten command.
6777
6778 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6779
6780 * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
6781 parameters.
6782
6783 2012-05-14 H.J. Lu <hongjiu.lu@intel.com>
6784
6785 * amd64-tdep.c: Include features/i386/x32.c and
6786 features/i386/x32-avx.c.
6787 (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
6788 initialize_tdesc_x32_avx.
6789
6790 2012-05-14 Stan Shebs <stan@codesourcery.com>
6791
6792 Add dynamic printf.
6793 * breakpoint.h (enum bptype): New type bp_dprintf.
6794 (struct breakpoint): New field extra_string.
6795 (struct breakpoint_ops): Add arg to create_breakpoints_sal.
6796 (create_breakpoint): Add extra_string arg.
6797 * breakpoint.c (dprintf_breakpoint_ops): New.
6798 (is_breakpoint): Add bp_dprintf.
6799 (bpstat_what): Add dprintf case.
6800 (bptype_string): Ditto.
6801 (print_one_breakpoint_location): Ditto.
6802 (init_bp_location): Ditto.
6803 (bkpt_print_mention): Ditto.
6804 (dprintf_style_enums): New array.
6805 (dprintf_style): New global.
6806 (dprintf_function): New global.
6807 (dprintf_channel): New global.
6808 (update_dprintf_command_list): New function.
6809 (update_dprintf_commands): New function.
6810 (init_breakpoint_sal): Add extra_string argument, handle it.
6811 (create_breakpoint_sal): Add extra_string argument.
6812 (create_breakpoints_sal): Add extra_string argument, update callers.
6813 (find_condition_and_thread): Add extra argument.
6814 (create_breakpoint): Add extra_string argument, record it.
6815 (dprintf_command): New function.
6816 (break_command_1): Add arg to create_breakpoint call.
6817 (handle_gnu_v3_exceptions): Ditto.
6818 (trace_command): Ditto.
6819 (ftrace_command): Ditto.
6820 (strace_command): Ditto.
6821 (bkpt_print_mention): Add dprintf case.
6822 (create_breakpoint_sal_default): Add extra_string argument.
6823 (_initialize_breakpoint): Add new commands.
6824 * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
6825 * python/py-breakpoint.c (bppy_init): Ditto.
6826 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
6827
6828 2012-05-14 Maciej W. Rozycki <macro@codesourcery.com>
6829
6830 * mips-tdep.c (mips_push_dummy_code): Correct description typo.
6831
6832 2012-05-14 Siva Chandra Reddy <sivachandra@google.com>
6833
6834 * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
6835 unsigned long long.
6836
6837 2012-05-13 Siva Chandra Reddy <sivachandra@google.com>
6838
6839 Add a new function gdb.find_pc_line to the Python API.
6840 * NEWS (Python Scripting): Add entry about the new function.
6841 * python/python.c (gdbpy_find_pc_line): New function which
6842 implements gdb.find_pc_line.
6843 (GdbMethods): Add entry for the new function.
6844
6845 2012-05-12 Pedro Alves <palves@redhat.com>
6846
6847 * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
6848 initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
6849
6850 2012-05-12 Eli Zaretskii <eliz@gnu.org>
6851
6852 * inferior.c: Include completer.h
6853 (initialize_inferiors): Set completer of add-inferior to
6854 filename_completer.
6855
6856 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
6857
6858 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
6859 gdbarch_ptr_bit for x32 core dump.
6860
6861 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
6862
6863 * amd64-linux-tdep.c: Include features/i386/x32-linux.c
6864 and features/i386/x32-avx-linux.c.
6865
6866 2012-05-11 Stan Shebs <stan@codesourcery.com>
6867 Kwok Cheung Yeung <kcy@codesourcery.com>
6868
6869 * NEWS: Describe new info os commands.
6870 * common/linux-osdata.c (PID_T, TIME_T): Define.
6871 (MAX_PID_T_STRLEN): New.
6872 (linux_common_core_of_thread): Add comment. Change to use PID_T and
6873 MAX_PID_T_STRLEN.
6874 (command_from_pid): Add comment. Change to use PID_T.
6875 (commandline_from_pid): Change to use PID_T.
6876 (user_from_pid): Add comment.
6877 (get_process_owner): Add comment. Change to use PID_T and
6878 MAX_PID_T_STRLEN.
6879 (get_number_of_cpu_cores): Add comment.
6880 (get_cores_used_by_process): Add comment. Change to use PID_T and
6881 MAX_PID_T_STRLEN.
6882 (linux_xfer_osdata_processes): Change to use PID_T and
6883 MAX_PID_T_STRLEN.
6884 (compare_processes): New function.
6885 (linux_xfer_osdata_processgroups): New function.
6886 (linux_xfer_osdata_threads): Change to use PID_T.
6887 (linux_xfer_osdata_fds): New function.
6888 (format_socket_state, print_sockets): New functions.
6889 (union socket_addr): New union.
6890 (linux_xfer_osdata_isockets): New function.
6891 (time_from_time_t, group_from_gid): New functions.
6892 (linux_xfer_osdata_shm): New function.
6893 (linux_xfer_osdata_sem): New function.
6894 (linux_xfer_osdata_msg): New function.
6895 (linux_xfer_osdata_modules): New function.
6896 (osdata_table): Add new entries.
6897 * common/buffer.c (buffer_xml_printf): Add support for long and
6898 long long format specifiers.
6899
6900 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
6901
6902 * amd64-linux-tdep.h (tdesc_x32_linux): New.
6903 (tdesc_x32_avx_linux): Likewise.
6904
6905 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6906
6907 Implement multi-component --with-auto-load-dir.
6908 * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
6909 entries.
6910 (--with-auto-load-safe-path): Update the default value description.
6911 * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
6912 New.
6913 (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output. Remove
6914 GDB_DATADIR NULL check. Replace GDB_DATADIR/auto-load by
6915 AUTO_LOAD_DIR. Support $ddir and multiple components in it.
6916 (_initialize_auto_load): Initialize also auto_load_dir. Install new
6917 "set auto-load scripts-directory".
6918 * config.in: Regenerate.
6919 * configure: Regenerate.
6920 * configure.ac (--with-auto-load-dir): New configure option.
6921 (--auto-load-safe-path): Change the default to --with-auto-load-dir.
6922
6923 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6924
6925 Provide $ddir substitution for --with-auto-load-safe-path.
6926 * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
6927 entries.
6928 * auto-load.c: Include observer.h.
6929 (auto_load_safe_path_vec_update): Call substitute_path_component for
6930 each component. New variable ddir_subst.
6931 (auto_load_gdb_datadir_changed): New function.
6932 (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
6933 AUTO_LOAD_SAFE_PATH. New comment.
6934 (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
6935 AUTO_LOAD_SAFE_PATH. Install auto_load_gdb_datadir_changed.
6936 * config.in: Regenerate.
6937 * configure: Regenerate.
6938 * configure.ac (--auto-load-safe-path): Rename
6939 DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH. Default to
6940 GDB_DATADIR/auto-load.
6941 * defs.h (substitute_path_component): New declaration.
6942 * top.c: Include observer.h.
6943 (set_gdb_datadir): New function.
6944 (init_main): Install it for "set data-directory".
6945 * utils.c (substitute_path_component): New function.
6946
6947 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6948
6949 Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
6950 * auto-load.c (auto_load_objfile_script): Remove check for NULL
6951 DEBUG_FILE_DIRECTORY. Handle multiple components of
6952 DEBUG_FILE_DIRECTORY.
6953
6954 2012-05-10 Tom Tromey <tromey@redhat.com>
6955
6956 * dwarf2read.c (recursively_write_psymbols): New function.
6957 (write_psymtabs_to_index): Use it.
6958
6959 * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
6960 field.
6961 (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
6962 (load_partial_comp_unit): Update.
6963 (queue_comp_unit): Add argument 'pretend_language'.
6964 (process_queue): Update.
6965 (psymtab_to_symtab_1): Skip dependencies that have a user.
6966 (load_partial_comp_unit_reader): Give meaning to the 'data'
6967 argument.
6968 (load_full_comp_unit): Add 'pretend_language' argument.
6969 (process_full_comp_unit): Add 'pretend_language' argument. Set
6970 language on CU.
6971 (process_imported_unit_die, read_file_scope, read_type_unit_scope):
6972 Update.
6973 (maybe_queue_comp_unit): Add 'pretend_language' argument.
6974 (follow_die_offset, follow_die_sig, read_signatured_type_reader):
6975 Update.
6976 (prepare_one_comp_unit): Add 'pretend_language' argument.
6977
6978 * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
6979 (struct dwarf2_per_objfile) <just_read_cus>: New field.
6980 (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
6981 (dw2_do_instantiate_symtab): Check whether symtab was read in
6982 before queueing.
6983 (dw2_instantiate_symtab): Add assertion. Call
6984 process_cu_includes.
6985 (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
6986 (partial_symtab_p): New typedef.
6987 (set_partial_user): New function.
6988 (dwarf2_build_psymtabs_hard): Use set_partial_user.
6989 (scan_partial_symbols): Add imported CU to imported_symtabs.
6990 (dwarf2_psymtab_to_symtab): Call process_cu_includes.
6991 (psymtab_to_symtab_1): Do nothing if psymtab is readin.
6992 (get_symtab, recursively_compute_inclusions)
6993 (compute_symtab_includes, process_cu_includes)
6994 (process_imported_unit_die): New functions.
6995 (process_die) <DW_TAG_imported_unit>: New case.
6996 (dwarf2_per_objfile_free): Free 'imported_symtabs'.
6997
6998 * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
6999 comment.
7000 (struct partial_die_info) <locdesc>: Remove.
7001 <d>: New field.
7002 (process_psymtab_comp_unit): Add 'read_partial' argument.
7003 Update.
7004 (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
7005 (scan_partial_symbols): Handle DW_TAG_imported_unit.
7006 (add_partial_symbol): Update.
7007 (process_die): Handle DW_TAG_partial_unit.
7008 (read_file_scope): Update comment.
7009 (load_partial_dies): Handle DW_TAG_imported_unit.
7010 (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
7011 (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
7012
7013 2012-05-10 Tom Tromey <tromey@redhat.com>
7014
7015 * cc-with-dwz.sh: New file.
7016
7017 2012-05-10 Tom Tromey <tromey@redhat.com>
7018
7019 * symtab.h (struct symtab) <includes, user>: New fields.
7020 * block.h (struct block_iterator) <d, idx, which>: New fields.
7021 * block.c (initialize_block_iterator, find_iterator_symtab)
7022 (block_iterator_step, block_iter_name_step)
7023 (block_iter_match_step): New functions.
7024 (block_iterator_first, block_iterator_next)
7025 (block_iter_name_first, block_iter_name_next)
7026 (block_iter_match_first, block_iter_match_next): Rewrite.
7027 (get_block_symtab): New function.
7028
7029 2012-05-10 Tom Tromey <tromey@redhat.com>
7030
7031 * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
7032 set_block_symtab.
7033 * jit.c (finalize_symtab): Use allocate_global_block,
7034 set_block_symtab.
7035 * buildsym.c (finish_block_internal): New function, from old
7036 finish_block.
7037 (finish_block): Rewrite.
7038 (end_symtab): Use finish_block_internal, set_block_symtab.
7039 * block.h (struct global_block): New.
7040 (allocate_global_block, set_block_symtab): Declare.
7041 * block.c (allocate_global_block, set_block_symtab): New
7042 functions.
7043
7044 2012-05-10 Tom Tromey <tromey@redhat.com>
7045
7046 * psymtab.c (partial_map_expand_apply): Add assertion.
7047 (partial_map_symtabs_matching_filename): Skip included psymtabs.
7048 (psymtab_to_symtab): Find unshared psymtab.
7049 (dump_psymtab): Print including psymtabs.
7050 (recursively_search_psymtabs): New function.
7051 (expand_symtabs_matching_via_partial): Use it.
7052 * psympriv.h (struct partial_symtab) <user, searched_flag>: New
7053 fields.
7054 (enum psymtab_search_status): New.
7055
7056 2012-05-10 Tom Tromey <tromey@redhat.com>
7057
7058 * tracepoint.c (scope_info): Update.
7059 * symtab.c (lookup_block_symbol, iterate_over_symbols)
7060 (find_pc_sect_symtab, search_symbols)
7061 (default_make_symbol_completion_list_break_on)
7062 (make_file_symbol_completion_list): Update.
7063 * symmisc.c (dump_symtab_1): Update.
7064 * stack.c (print_frame_args, iterate_over_block_locals)
7065 (print_frame_labels, iterate_over_block_arg_vars): Update.
7066 * python/py-block.c (block_object) <dict>: Remove.
7067 <block>: New field.
7068 <iter>: Change type.
7069 (blpy_iter): Update.
7070 (blpy_block_syms_iternext): Update.
7071 * psymtab.c (map_block): Use block iterators.
7072 * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
7073 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
7074 * mdebugread.c (parse_symbol, mylookup_symbol): Update.
7075 * infrun.c (check_exception_resume): Update.
7076 * cp-support.c (make_symbol_overload_list_block): Update.
7077 * coffread.c (patch_opaque_types): Update.
7078 * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
7079 * block.h (struct block_iterator): New.
7080 (block_iterator_first, block_iterator_next, block_iter_name_first)
7081 (block_iter_name_next, block_iter_match_first)
7082 (block_iter_match_next): Declare.
7083 (ALL_BLOCK_SYMBOLS): Redefine.
7084 * block.c (block_iterator_first, block_iterator_next)
7085 (block_iter_name_first, block_iter_name_next)
7086 (block_iter_match_first, block_iter_match_next): New functions.
7087 * ada-lang.c (ada_add_block_symbols)
7088 (ada_make_symbol_completion_list): Use block iterator.
7089
7090 2012-05-10 Tom Tromey <tromey@redhat.com>
7091
7092 * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
7093 (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
7094 (lookup_partial_symbol, find_last_source_symtab_from_partial)
7095 (read_psymtabs_with_filename, map_matching_symbols_psymtab)
7096 (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
7097 Update.
7098
7099 2012-05-10 Joel Brobecker <brobecker@adacore.com>
7100
7101 * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
7102 print-file-var-lib2.c, print-file-var-main.c and
7103 print-file-var.exp (located in gdb/testsuite/gdb.base).
7104
7105 2012-05-10 Joel Brobecker <brobecker@adacore.com>
7106
7107 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
7108 try locating the symbol in the symbol's own objfile first, before
7109 extending the search to all objfiles.
7110 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
7111 out of lookup_symbol_aux_symtabs.
7112 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
7113 Replace extracted-out code by call to lookup_symbol_aux_objfile.
7114 Do not search EXCLUDE_OBJFILE.
7115 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
7116 (lookup_symbol_global): Search for matches in the block's objfile
7117 first, before searching all other objfiles.
7118
7119 2012-05-10 Tristan Gingold <gingold@adacore.com>
7120
7121 * printcmd.c (set_command): Add pre/post inc/dec.
7122
7123 2012-05-09 Frank Ch. Eigler <fche@redhat.com>
7124
7125 * gdb.1: Document -ex option.
7126
7127 2012-05-09 Joel Brobecker <brobecker@adacore.com>
7128
7129 * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
7130 * inferior.h (AT_SYMBOL): Delete.
7131
7132 2012-05-09 Joel Brobecker <brobecker@adacore.com>
7133
7134 * mips-tdep.c (mips_push_dummy_code): New function.
7135 (mips_gdbarch_init): Set the gdbarch call_dummy_location to
7136 ON_STACK and install mips_push_dummy_code as our gdbarch
7137 push_dummy_code routine.
7138
7139 2012-05-09 Pedro Alves <palves@redhat.com>
7140
7141 * target.c (set_maintenance_target_async_permitted): Rename to ...
7142 (set_target_async_command): ... this.
7143 (show_maintenance_target_async_permitted): Rename to ...
7144 (show_target_async_command): ... this.
7145 (initialize_targets): Adjust.
7146
7147 2012-05-08 Doug Evans <dje@google.com>
7148
7149 * go-exp.y (classify_name): Add missing assignment of fields of
7150 yylval.ssym.
7151
7152 2012-05-08 Eli Zaretskii <eliz@gnu.org>
7153
7154 Display the ">" prompt in interactive mode while reading canned
7155 commands, even when the current interpreter is MI.
7156
7157 * interps.c (interp_set_temp): New function.
7158
7159 * interps.h (interp_set_temp): Add prototype.
7160
7161 * cli/cli-script.c (restore_interp): New cleanup function.
7162 (read_command_lines): Temporarily override the current interpreter
7163 with CLI and arrange for restoring the original one.
7164
7165 2012-05-12 Joel Sherrill <joel.sherrill@oarcorp.com>
7166
7167 * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
7168
7169 2012-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
7170
7171 * probe.c (parse_probes): Move conditional to check for
7172 debuginfo files from here...
7173 * stap-probe.c (stap_get_probes): ... to here.
7174
7175 2012-05-07 Mark Kettenis <kettenis@gnu.org>
7176 H.J. Lu <hongjiu.lu@intel.com>
7177
7178 * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
7179 `movl %esp, %ebp' for the X32 ABI.
7180
7181 2012-05-07 Tom Tromey <tromey@redhat.com>
7182
7183 * dwarf2read.c (dwarf_tag_name): Return const char *. Use
7184 get_DW_TAG_name.
7185 (dwarf_attr_name): Return const char *. Use get_DW_AT_name.
7186 (dwarf_form_name): Return const char *. Use get_DW_FORM_name.
7187 (dwarf_stack_op_name): Remove.
7188 (dwarf_cfi_name): Return const char *. Use get_DW_ATE_name.
7189 (decode_locdesc): Use get_DW_OP_name.
7190 * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
7191 (dwarf2_compile_expr_to_ax): Likewise.
7192 (disassemble_dwarf_expression): Likewise.
7193 * dwarf2expr.h: (dwarf_stack_op_name): Remove.
7194
7195 2012-05-07 Chung-Lin Tang <cltang@codesourcery.com>
7196
7197 * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
7198 (sh_linux_sigtramp_cache): New function.
7199 (sh_linux_sigreturn_init): New function.
7200 (sh_linux_rt_sigreturn_init): New function.
7201 (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
7202 patterns.
7203 (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
7204 syscall codes.
7205 (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
7206 (sh_linux_rt_sigreturn_tramp_frame): Likewise.
7207 (sh_linux_init_abi): Add init calls to register new tramp_frame
7208 definitions under 32-bit SH, update comments.
7209
7210 2012-05-07 Pedro Alves <palves@redhat.com>
7211
7212 PR gdb/10952
7213
7214 * amd64-linux-tdep.c: Include glibc-tdep.h.
7215 (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
7216 gdbarch_skip_solib_resolver callback.
7217
7218 2012-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
7219
7220 * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
7221 back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
7222 (show_auto_load_safe_path): Check any-directory by comparison with "/".
7223 (add_auto_load_safe_path): Change the error message.
7224 (_initialize_auto_load): Change the "safe-path" help text.
7225 * configure: Regenerate
7226 * configure.ac (--without-auto-load-safe-path): Set
7227 WITH_AUTO_LOAD_SAFE_PATH to /.
7228
7229 2012-05-05 Sergio Durigan Junior <sergiodj@redhat.com>
7230
7231 * stap-probe.h: Do not include unecessary `probe.h'.
7232
7233 2012-05-05 Alan Modra <amodra@gmail.com>
7234
7235 * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
7236 bfd_und_section_ptr.
7237 * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
7238 and bfd_com_section_ptr.
7239
7240 2012-05-04 Joel Brobecker <brobecker@adacore.com>
7241
7242 * MAINTAINERS (Past Maintainers): Add Chris Faylor.
7243
7244 2012-05-04 Joel Brobecker <brobecker@adacore.com>
7245
7246 * windows-nat.h (segment_register_p_ftype): New typedef.
7247 (windows_set_segment_register_p): Add declaration.
7248 * windows-nat.c (segment_register_p): New static global.
7249 (windows_set_segment_register_p): New function.
7250 (do_windows_fetch_inferior_registers): Add special handling
7251 for segment registers.
7252 * amd64-windows-nat.c: #include "amd64-tdep.h".
7253 (amd64_windows_segment_register_p): New function.
7254 (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
7255 * i386-windows-nat.c: #include "i386-tdep.h".
7256 (i386_windows_segment_register_p): New function.
7257 (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
7258
7259 2012-05-04 Tristan Gingold <gingold@adacore.com>
7260
7261 * printcmd.c (set_command): Emit a warning if the expression is not
7262 an assignment.
7263
7264 2012-05-03 Joel Brobecker <brobecker@adacore.com>
7265
7266 * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
7267 Make static.
7268
7269 2012-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
7270
7271 * stap-probe.c (stap_is_operator): Change declaration.
7272 (stap_get_opcode): Change return value.
7273 (stap_parse_argument_1): Update calls to `stap_get_opcode' and
7274 `stap_parse_argument_1'.
7275
7276 2012-05-03 Pedro Alves <pedro@codesourcery.com>
7277
7278 * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
7279 debug log.
7280
7281 2012-05-03 Siva Chandra Reddy <sivachandra@google.com>
7282
7283 Add two new methods global_block and static_block to gdb.Symtab
7284 objects.
7285 * NEWS (Python scripting): Add entry about the new methods.
7286 * python/py-symtab.c (stpy_global_block): New function which
7287 implements the gdb.Symtab.global_block() method.
7288 (stpy_static_block): New function which implements the
7289 gdb.Symtab.static_block() method.
7290 (symtab_object_methods): Add entries for the two new methods.
7291
7292 2012-05-03 Doug Evans <dje@google.com>
7293
7294 * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
7295 files.
7296
7297 2012-05-03 Yao Qi <yao@codesourcery.com>
7298
7299 * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
7300 space.
7301 (i386_process_record): Ditto.
7302
7303 2012-05-02 Joel Brobecker <brobecker@adacore.com>
7304
7305 * infcall.c (unwind_on_signal_p): Make static.
7306
7307 2012-05-02 Joel Brobecker <brobecker@adacore.com>
7308
7309 * sol-thread.c (solaris_pid_to_str): Make static.
7310 (_initialize_sol_thread): Add prototype.
7311
7312 2012-05-02 Joel Brobecker <brobecker@adacore.com>
7313
7314 * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
7315
7316 2012-05-02 Christopher Faylor <me.cygwin2012@cgf.cx>
7317
7318 * MAINTAINERS: Remove myself.
7319
7320 2012-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7321
7322 Fix --without-auto-load-safe-path for MS-Windows host platform.
7323 * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
7324
7325 2012-05-02 Eli Zaretskii <eliz@gnu.org>
7326
7327 * gdb_curses.h: Undefine KEY_EVENT before including curses
7328 headers. Move "#undef MOUSE_MOVED" before any curses header
7329 inclusion.
7330
7331 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
7332
7333 * features/i386/i386-mmx-linux.c: Regenerate.
7334 * features/rs6000/powerpc-32.c: Likewise.
7335 * features/rs6000/powerpc-32l.c: Likewise.
7336 * features/rs6000/powerpc-403.c: Likewise.
7337 * features/rs6000/powerpc-403gc.c: Likewise.
7338 * features/rs6000/powerpc-405.c: Likewise.
7339 * features/rs6000/powerpc-505.c: Likewise.
7340 * features/rs6000/powerpc-601.c: Likewise.
7341 * features/rs6000/powerpc-602.c: Likewise.
7342 * features/rs6000/powerpc-603.c: Likewise.
7343 * features/rs6000/powerpc-604.c: Likewise.
7344 * features/rs6000/powerpc-64.c: Likewise.
7345 * features/rs6000/powerpc-64l.c: Likewise.
7346 * features/rs6000/powerpc-750.c: Likewise.
7347 * features/rs6000/powerpc-860.c: Likewise.
7348 * features/rs6000/powerpc-e500.c: Likewise.
7349 * features/rs6000/powerpc-e500l.c: Likewise.
7350 * features/rs6000/powerpc-isa205-32l.c: Likewise.
7351 * features/rs6000/powerpc-isa205-64l.c: Likewise.
7352 * features/rs6000/rs6000.c: Likewise.
7353
7354 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
7355
7356 * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
7357 variable.
7358 * stap-probe.c (stap_parse_single_operand) <reg_suffix,
7359 reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
7360 (stap_parse_argument) <e>: Likewise.
7361 (handle_stap_probe) <byte_order>: Likewise.
7362
7363 2012-04-30 Doug Evans <dje@google.com>
7364
7365 * dwarf2read.c (init_cutu_and_read_dies): Renamed from
7366 init_and_read_dies_worker. All callers updated.
7367 (init_cu_and_read_dies, init_tu_and_read_dies): Delete. All calls
7368 replaced with init_cutu_and_read_dies.
7369 (load_partial_comp_unit): Pass 1 for use_existing_cu.
7370 (find_partial_die): Remove FIXME. Don't free current CU.
7371
7372 2012-04-30 Sterling Augustine <saugustine@google.com>
7373
7374 * contrib: New directory.
7375 * contrib/test_pubnames_and_indexes.py: New file.
7376
7377 2012-04-30 Doug Evans <dje@google.com>
7378
7379 * dwarf2read.c (dwarf_decode_macros): New arg section_name.
7380 All callers updated.
7381 (init_cu_die_reader): Verify the section is non-empty.
7382 (dwarf_decode_line_header): Don't dereference section->asection
7383 until we know the section is present.
7384
7385 2012-04-29 Sergio Durigan Junior <sergiodj@redhat.com>
7386
7387 * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
7388 probes.
7389
7390 2012-04-29 Yao Qi <yao@codesourcery.com>
7391
7392 * gdb-code-style.el: New hook gdb-markup-hook
7393 and gdb-comment-hook.
7394
7395 2012-04-28 Doug Evans <dje@google.com>
7396
7397 Initial support for Fission. http://gcc.gnu.org/wiki/DebugFission
7398 * symfile.c (default_symfile_relocate): Use sectp->owner instead of
7399 objfile->obfd.
7400 * symfile.h (dwarf2_debug_sections): New member addr.
7401 * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
7402 (ctx_no_get_addr_index): New function.
7403 * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
7404 (ctx_no_get_addr_index): Declare.
7405 * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
7406 * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
7407 (dwarf_expr_ctx_funcs): Update.
7408 (needs_get_addr_index): New function.
7409 (needs_frame_ctx_funcs): Update.
7410 * dwarf2loc.h (dwarf2_read_addr_index): Declare.
7411 * dwarf2read.c: #include "gdbcore.h".
7412 (dwarf2_per_objfile): New members addr, dwo_files.
7413 (dwarf2_elf_names): Add entry for addr.
7414 (struct dwo_section_names): New type.
7415 (dwo_section_names): New static global.
7416 (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
7417 (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
7418 old debug_types_section member updated to use this.
7419 Rename member debug_types_section to info_or_types_section,
7420 all uses updated.
7421 (signatured_type): Rename member type_offset to type_offset_in_tu,
7422 all uses updated. New member type_offset_in_section.
7423 (struct dwo_sections): New type.
7424 (struct dwo_unit): New type.
7425 (struct dwo_file): New type.
7426 (die_reader_specs): New member dwo_file.
7427 (dwarf2_locate_sections): Watch for .debug_addr.
7428 (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
7429 (dwarf2_read_section): Get bfd of section from bfd's asection,
7430 instead of objfile.
7431 (create_cus_from_index): Initialize the_cu->info_or_types_section.
7432 (create_signatured_type_table_from_index): Initialize
7433 sig_type->info_or_types_section.
7434 (dw2_get_file_names): Statement lists for type units with DWO files
7435 live in the DWO file.
7436 (create_debug_types_hash_table): New function.
7437 (create_all_type_units): Rewrite.
7438 (init_cu_die_reader): New arg dwo_file, all callers updated.
7439 (init_and_read_dies_worker): Get section from
7440 this_cu->info_or_types_section. Set sig_type->type_offset_in_section.
7441 Watch for DW_AT_GNU_dwo_name and if present lookup the file and
7442 continue reading the CU/TU from there.
7443 (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
7444 updated. Get section from this_cu->info_or_types_section.
7445 (create_all_comp_units): Initialize this_cu->info_or_types_section.
7446 (skip_one_die): New cases DW_FORM_GNU_addr_index,
7447 DW_FORM_GNU_str_index.
7448 (hash_dwo_file, eq_dwo_file): New functions.
7449 (allocate_dwo_file_hash_table): New function.
7450 (hash_dwo_unit, eq_dwo_unit): New functions.
7451 (allocate_dwo_unit_table): New function.
7452 (dwarf2_locate_dwo_sections): New function.
7453 (struct create_dwo_info_table_data): New type.
7454 (create_debug_info_hash_table_reader): New function.
7455 (create_debug_info_hash_table): New function.
7456 (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
7457 (lookup_dwo_file): New function.
7458 (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
7459 (free_dwo_file, free_dwo_file_cleanup): New functions.
7460 (free_dwo_file_from_slot, free_dwo_files): New functions.
7461 (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
7462 (dwarf2_record_block_ranges): Ditto.
7463 (read_partial_die): Ditto.
7464 (process_enumeration_scope): Update to use type_offset_in_section.
7465 (read_full_die_1): New function.
7466 (read_full_die): Rewrite.
7467 (read_attribute_value): New cases DW_FORM_GNU_addr_index,
7468 DW_FORM_GNU_str_index.
7469 (read_addr_index_1, read_addr_index): New functions.
7470 (read_addr_index_from_leb128): New function.
7471 (struct dwarf2_read_addr_index_data): New type.
7472 (dwarf2_read_addr_index_reader): New function.
7473 (dwarf2_read_addr_index): New function.
7474 (read_str_index): New function.
7475 (leb128_size): New function.
7476 (dwarf_decode_line_header): Delete arg abfd, all callers updated.
7477 If processing a type unit from a DWO file, get the line section
7478 from the DWO file.
7479 (var_decode_location): Watch for DW_OP_GNU_addr_index.
7480 (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
7481 DW_FORM_GNU_str_index.
7482 (lookup_die_type): Check whether section offset of type's die is
7483 known before looking it up. Remove assert. Condition can
7484 legimately happen for inter-cu type references.
7485 (dwarf_attr_name): Handle Fission attributes.
7486 (dwarf_form_name): Handle Fission forms.
7487 (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
7488 DW_FORM_GNU_str_index.
7489 (follow_die_sig): Update to use type_offset_in_section.
7490 (decode_locdesc): New case DW_OP_GNU_addr_index.
7491 (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
7492 DW_FORM_GNU_str_index.
7493 (cu_debug_loc_section): New function.
7494 (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
7495 (dwarf2_per_objfile_free): Unmap .debug_addr section.
7496 Free DWO files if present.
7497 * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
7498
7499 Refactor DIE reading.
7500 * dwarf2read.c (dwarf2_per_objfile): Replace members
7501 debug_info_type_hash and debug_types_type_hash with die_type_hash.
7502 (die_reader_specs): New member "die_section". Temporarily make
7503 member "buffer" non-const, pending constifying all info_ptr uses.
7504 (die_reader_func_ftype): New typedef.
7505 (dw2_get_file_names_reader): New function.
7506 (dw2_get_file_names): Rewrite.
7507 (read_and_check_type_unit_head): Rename arg type_offset to
7508 type_offset_in_tu.
7509 (create_all_type_units): Improve debugging message.
7510 Improve dummy type unit check.
7511 (init_cu_die_reader): New arg "section". All callers updated.
7512 (init_and_read_dies_worker): New function.
7513 (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
7514 (init_cutu_and_read_dies_no_follow): New function.
7515 (init_cutu_and_read_dies_simple): New function.
7516 (process_psymtab_comp_unit_reader): New function.
7517 (process_psymtab_comp_unit): Delete args section,
7518 is_debug_types_section. Rewrite. All callers updated.
7519 (process_psymtab_type_unit): Renamed from process_type_comp_unit.
7520 All callers updated. Rewrite.
7521 (load_partial_comp_unit_reader): New function.
7522 (load_partial_comp_unit): Rewrite.
7523 (skip_children): New arg reader. Delete args buffer, cu.
7524 All callers updated.
7525 (skip_one_die): New arg reader. Delete args buffer, cu.
7526 All callers updated.
7527 (locate_pdi_sibling): New arg reader. Delete args buffer, abfd, cu.
7528 All callers updated.
7529 (load_full_comp_unit_reader): New function.
7530 (load_full_comp_unit): Rewrite.
7531 (read_comp_unit): Delete.
7532 (read_die_and_children_1): Delete, contents moved ...
7533 (read_die_and_children): ... here.
7534 (dwarf2_read_abbrevs): New arg abbrev_section. All callers updated.
7535 (load_partial_dies): New arg reader. Delete args abfd, buffer, cu.
7536 All callers updated.
7537 (read_partial_die): New arg reader. Delete args abfd, buffer, cu.
7538 All callers updated.
7539 (find_partial_die): Rewrite load_all_dies support.
7540 (read_attribute_value): New arg reader. Delete args abfd, cu.
7541 All callers updated.
7542 (read_attribute): New arg reader. Delete args abfd, cu.
7543 All callers updated.
7544 (load_full_type_unit): Add assert.
7545 (read_signatured_type_reader): New function.
7546 (read_signatured_type): Rewrite.
7547 (free_stack_comp_unit): Remove call to age_cached_comp_units.
7548 (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
7549 All callers updated. Set per_cu->cu = NULL after freeing it.
7550 (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
7551 (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
7552 (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
7553 (set_die_type): Update.
7554 (get_die_type_at_offset): Update.
7555 (read_file_scope): Call prepare_one_comp_unit.
7556 (read_type_unit_scope): Ditto.
7557 (prepare_one_comp_unit): Set producer if present.
7558
7559 2012-04-28 Sergio Durigan Junior <sergiodj@redhat.com>
7560
7561 * probe.c (compile_rx_or_error): Silence ARI warning about missing
7562 gettext function on `error'.
7563
7564 2012-04-27 Doug Evans <dje@google.com>
7565
7566 * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
7567 is empty.
7568
7569 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
7570 Tom Tromey <tromey@redhat.com>
7571
7572 * breakpoint.c (struct breakpoint_objfile_data)
7573 <longjmp_searched>,<longjmp_probes>,<exception_searched>,
7574 <exception_probes>: New fields.
7575 (free_breakpoint_probes): New function.
7576 (create_longjmp_master_breakpoint): Prefer SystemTap probe over
7577 `_Unwind_DebugHook'.
7578 (create_exception_master_breakpoint): Likewise.
7579 (_initialize_breakpoint): Registering cleanup for SystemTap probes.
7580 * infrun.c: Including necessary header files for handling SystemTap
7581 probes.
7582 (handle_inferior_event): Handling longjmp breakpoint and exceptions
7583 via SystemTap probes.
7584 (check_exception_resume): Remove `func' argument. Handle exception
7585 unwinding breakpoint set via a SystemTap probe.
7586 (insert_exception_resume_from_probe): New function.
7587
7588 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
7589 Tom Tromey <tromey@redhat.com>
7590 Jan Kratochvil <jan.kratochvil@redhat.com>
7591
7592 * Makefile.in (SFILES): Add `probe' and `stap-probe'.
7593 (COMMON_OBS): Likewise.
7594 (HFILES_NO_SRCDIR): Add `probe'.
7595 * NEWS: Mention support for static and SystemTap probes.
7596 * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
7597 SystemTap probes' arguments parser.
7598 * arm-linux-tdep.c: Including headers needed to perform the parsing
7599 of SystemTap probes' arguments.
7600 (arm_stap_is_single_operand): New function.
7601 (arm_stap_parse_special_token): Likewise.
7602 (arm_linux_init_abi): Initializing proper fields used by SystemTap
7603 probes' arguments parser.
7604 * ax-gdb.c (require_rvalue): Removing static declaration.
7605 (gen_expr): Likewise.
7606 * ax-gdb.h (gen_expr): Declaring function.
7607 (require_rvalue): Likewise.
7608 * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
7609 (bkpt_probe_breakpoint_ops): New variable.
7610 (momentary_breakpoint_from_master): Set the `probe' value.
7611 (add_location_to_breakpoint): Likewise.
7612 (break_command_1): Using proper breakpoint_ops according to the
7613 argument passed by the user in the command line.
7614 (bkpt_probe_insert_location): New function.
7615 (bkpt_probe_remove_location): Likewise.
7616 (bkpt_probe_create_sals_from_address): Likewise.
7617 (bkpt_probe_decode_linespec): Likewise.
7618 (tracepoint_probe_create_sals_from_address): Likewise.
7619 (tracepoint_probe_decode_linespec): Likewise.
7620 (tracepoint_probe_breakpoint_ops): New variable.
7621 (trace_command): Using proper breakpoint_ops according to the
7622 argument passed by the user in the command line.
7623 (initialize_breakpoint_ops): Initializing breakpoint_ops for
7624 static probes on breakpoints and tracepoints.
7625 * breakpoint.h (struct bp_location) <probe>: New field.
7626 * cli-utils.c (skip_spaces_const): New function.
7627 (extract_arg): Likewise.
7628 * cli-utils.h (skip_spaces_const): Likewise.
7629 (extract_arg): Likewise.
7630 * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
7631 * configure.ac: Append `stap-probe.o' to be generated when ELF
7632 support is present.
7633 * configure: Regenerate.
7634 * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
7635 * elfread.c: Include `probe.h' and `arch-utils.h'.
7636 (probe_key): New variable.
7637 (elf_get_probes): New function.
7638 (elf_get_probe_argument_count): Likewise.
7639 (elf_evaluate_probe_argument): Likewise.
7640 (elf_compile_to_ax): Likewise.
7641 (elf_symfile_relocate_probe): Likewise.
7642 (stap_probe_key_free): Likewise.
7643 (elf_probe_fns): New variable.
7644 (elf_sym_fns): Add `sym_probe_fns' value.
7645 (elf_sym_fns_lazy_psyms): Likewise.
7646 (elf_sym_fns_gdb_index): Likewise.
7647 (_initialize_elfread): Initialize objfile cache for static
7648 probes.
7649 * gdb_vecs.h (struct probe): New forward declaration.
7650 (probe_p): New VEC declaration.
7651 * gdbarch.c: Regenerate.
7652 * gdbarch.h: Regenerate.
7653 * gdbarch.sh (stap_integer_prefix): New variable.
7654 (stap_integer_suffix): Likewise.
7655 (stap_register_prefix): Likewise.
7656 (stap_register_suffix): Likewise.
7657 (stap_register_indirection_prefix): Likewise.
7658 (stap_register_indirection_suffix): Likewise.
7659 (stap_gdb_register_prefix): Likewise.
7660 (stap_gdb_register_suffix): Likewise.
7661 (stap_is_single_operand): New function.
7662 (stap_parse_special_token): Likewise.
7663 (struct stap_parse_info): Forward declaration.
7664 * i386-tdep.c: Including headers needed to perform the parsing
7665 of SystemTap probes' arguments.
7666 (i386_stap_is_single_operand): New function.
7667 (i386_stap_parse_special_token): Likewise.
7668 (i386_elf_init_abi): Initializing proper fields used by SystemTap
7669 probes' arguments parser.
7670 * i386-tdep.h (i386_stap_is_single_operand): New function.
7671 (i386_stap_parse_special_token): Likewise.
7672 * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
7673 * mipsread.c (ecoff_sym_fns): Likewise.
7674 * objfiles.c (objfile_relocate1): Support relocation for static
7675 probes.
7676 * parse.c (prefixify_expression): Remove static declaration.
7677 (initialize_expout): Likewise.
7678 (reallocate_expout): Likewise.
7679 * parser-defs.h (initialize_expout): Declare function.
7680 (reallocate_expout): Likewise.
7681 (prefixify_expression): Likewise.
7682 * ppc-linux-tdep.c: Including headers needed to perform the parsing
7683 of SystemTap probes' arguments.
7684 (ppc_stap_is_single_operand): New function.
7685 (ppc_stap_parse_special_token): Likewise.
7686 (ppc_linux_init_abi): Initializing proper fields used by SystemTap
7687 probes' arguments parser.
7688 * probe.c: New file, for generic statically defined probe support.
7689 * probe.h: Likewise.
7690 * s390-tdep.c: Including headers needed to perform the parsing of
7691 SystemTap probes' arguments.
7692 (s390_stap_is_single_operand): New function.
7693 (s390_gdbarch_init): Initializing proper fields used by SystemTap
7694 probes' arguments parser.
7695 * somread.c (som_sym_fns): Add `sym_probe_fns' value.
7696 * stap-probe.c: New file, for SystemTap probe support.
7697 * stap-probe.h: Likewise.
7698 * symfile.h: Include `gdb_vecs.h'.
7699 (struct sym_probe_fns): New struct.
7700 (struct sym_fns) <sym_probe_fns>: New field.
7701 * symtab.c (init_sal): Initialize `probe' field.
7702 * symtab.h (struct probe): Forward declaration.
7703 (struct symtab_and_line) <probe>: New field.
7704 * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
7705 locations.
7706 (stop_tracing): Likewise.
7707 * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
7708
7709 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
7710 Tom Tromey <tromey@redhat.com>
7711
7712 * ax-gdb.c (gen_expr): Clean up code to handle internal variables
7713 and to compile agent expressions.
7714 * infrun.c (siginfo_make_value): New argument `ignore'.
7715 (siginfo_funcs): New struct.
7716 (_initialize_infrun): New argument when calling
7717 `create_internalvar_type_lazy'.
7718 * thread.c (thread_id_make_value): New argument `ignore'.
7719 (thread_funcs): New struct.
7720 (_initialize_thread): New argument when calling
7721 `create_internalvar_type_lazy'.
7722 * tracepoint.c (sdata_make_value): New argument `ignore'.
7723 (sdata_funcs): New struct.
7724 (_initialize_tracepoint): New argument when calling
7725 `create_internalvar_type_lazy'.
7726 * value.c (make_value): New struct.
7727 (create_internalvar_type_lazy): New argument `data'.
7728 (compile_internalvar_to_ax): New function.
7729 (value_of_internalvar): Properly handling `make_value' case.
7730 (clear_internalvar): Likewise.
7731 (show_convenience): Adding `TRY_CATCH' block.
7732 * value.h (internalvar_make_value): Delete, replace by...
7733 (struct internalvar_funcs): ... this.
7734 (create_internalvar_type_lazy) <fun>: Delete argument.
7735 (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
7736 (compile_internalvar_to_ax): New function.
7737 * windows-tdep.c (tlb_make_value): New argument `ignore'.
7738 (tlb_funcs): New struct.
7739 (_initialize_windows_tdep): New argument when calling
7740 `create_internalvar_type_lazy'.
7741
7742 2012-04-27 Mark Wielaard <mjw@redhat.com>
7743
7744 * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
7745 see whether it is an address or a constant offset from DW_AT_low_pc.
7746 (dwarf2_record_block_ranges): Likewise.
7747 (read_partial_die): Likewise.
7748
7749 2012-04-26 Mark Wielaard <mjw@redhat.com>
7750
7751 * MAINTAINERS (Write After Approval): Add myself to the list.
7752
7753 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
7754
7755 * proc-utils.h (proc_prettyprint_signalset): New prototype.
7756 (proc_prettyprint_signal): Likewise.
7757 (proc_prettyprint_faultset): Likewise.
7758 (proc_prettyprint_fault): Likewise.
7759 (proc_prettyprint_actionset): Likewise.
7760 (proc_prettyprint_flags): Move to new proc-flags.c section.
7761 (proc_prettyfprint_flags): New prototype.
7762 * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
7763 (proc_syscall, proc_cursig): Likewise.
7764 (proc_set_kill_on_last_close): Likewise.
7765 (proc_unset_kill_on_last_close): Likewise.
7766 (proc_set_watchpoint): Make static.
7767 (proc_delete_dead_threads): Likewise.
7768 (procfs_set_watchpoint): Likewise.
7769 (_initialize_procfs): Add prototype.
7770 * proc-events.c: Include proc-utils.h.
7771 (init_syscall_table): Make static.
7772 * proc-api.c (_initialize_proc_api): Add prototype.
7773 * proc-flags.c: Include proc-utils.h.
7774
7775 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
7776
7777 * configure.ac: Add AC_ARG_PROGRAM.
7778 * configure: Regenerate.
7779
7780 2012-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
7781
7782 Fix DW_AT_lower_bound defaults for DWARF-4+.
7783 * dwarf2read.c (read_subrange_type): Remove initialization of low and
7784 high. New variable low_default_is_valid. Implement DWARF-4+
7785 DW_AT_lower_bound defaults. Print complaint for DW_AT_lower_bound with
7786 no default by the DWARF standard.
7787
7788 2012-04-26 Maciej W. Rozycki <macro@mips.com>
7789 Maciej W. Rozycki <macro@codesourcery.com>
7790
7791 * infrun.c (handle_inferior_event): Move the check for return
7792 trampolines ahead of the check for function trampolines.
7793 * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
7794 * mips-tdep.c (mips_str_mips16_call_stub): New variable.
7795 (mips_str_mips16_ret_stub): Likewise.
7796 (mips_str_call_fp_stub): Likewise.
7797 (mips_str_call_stub): Likewise.
7798 (mips_str_fn_stub): Likewise.
7799 (mips_str_pic): Likewise.
7800 (mips_in_frame_stub): New function.
7801 (mips_unwind_pc): Return the return address rather than the PC
7802 if the PC of an intermediate frame is inside a call thunk.
7803 (mips_is_stub_suffix): New function.
7804 (mips_is_stub_mode): Likewise.
7805 (mips_get_mips16_fn_stub_pc): Likewise.
7806 (mips_skip_mips16_trampoline_code): Update to handle all the
7807 currently generated stub types. Don't recurse into __fn_stub
7808 thunks. Remove heuristics to handle stubs beyond etext/_etext.
7809 Use cooked register accesses.
7810 (mips_in_return_stub): Reintroduce function.
7811 (mips_skip_trampoline_code): Traverse trampolines recursively.
7812 (mips_gdbarch_init): Handle MIPS16 return trampolines.
7813
7814 2012-04-26 Joel Brobecker <brobecker@adacore.com>
7815
7816 GDB 7.4.1 released.
7817
7818 2012-04-26 Jonathan Larmour <jifl@eCosCentric.com>
7819
7820 * arm-tdep.h (VFP_REGISTER_SIZE): Define.
7821 * features/arm-with-m-vfp-d16.xml: New file. Describes
7822 Cortex-M with VFPv4-sp-d16 FPU register layout.
7823 * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
7824 * features/arm-with-m-vfp-d16.c: New. Generated from above.
7825 * arm-tdep.c: Include arm-with-m-vfp-d16.c.
7826 (arm-register_g_packet_guesses): Add vfp-d16 guess.
7827 (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
7828
7829 2012-04-25 Doug Evans <dje@google.com>
7830
7831 * cli/cli-decode.c (print_doc_line): Use stream instead of
7832 current_uiout.
7833
7834 2012-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
7835
7836 * features/arm-with-iwmmxt.c: Regenerate.
7837 * features/arm-with-m-fpa-layout.c: Likewise.
7838 * features/arm-with-m.c: Likewise.
7839 * features/arm-with-neon.c: Likewise.
7840 * features/arm-with-vfpv2.c: Likewise.
7841 * features/arm-with-vfpv3.c: Likewise.
7842 * features/mips-dsp-linux.c: Likewise.
7843 * features/mips-linux.c: Likewise.
7844 * features/mips64-dsp-linux.c: Likewise.
7845 * features/mips64-linux.c: Likewise.
7846 * features/s390-linux32.c: Likewise.
7847 * features/s390-linux32v1.c: Likewise.
7848 * features/s390-linux32v2.c: Likewise.
7849 * features/s390-linux64.c: Likewise.
7850 * features/s390-linux64v1.c: Likewise.
7851 * features/s390-linux64v2.c: Likewise.
7852 * features/s390x-linux64.c: Likewise.
7853 * features/s390x-linux64v1.c: Likewise.
7854 * features/s390x-linux64v2.c: Likewise.
7855 * features/tic6x-c62x-linux.c: Likewise.
7856 * features/tic6x-c62x.c: Likewise.
7857 * features/tic6x-c64x-linux.c: Likewise.
7858 * features/tic6x-c64x.c: Likewise.
7859 * features/tic6x-c64xp-linux.c: Likewise.
7860 * features/tic6x-c64xp.c: Likewise.
7861 * target-descriptions.c: Only generate `field_type' and `type'
7862 variables when needed.
7863
7864 2012-04-25 Fredrik Hederstierna <fredrikh.hederstierna@securitas-direct.com>
7865
7866 * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
7867
7868 2012-04-25 Doug Evans <dje@google.com>
7869
7870 Initial pass at Go language support.
7871 * NEWS: Mention Go.
7872 * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
7873 go-valprint.c.
7874 (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
7875 (YYFILES): Add go-exp.c.
7876 (YYOBJ): Add go-exp.o.
7877 (local-maintainer-clean): Delete go-exp.c.
7878 * defs.h (enum language): Add language_go.
7879 * dwarf2read.c: #include "go-lang.h".
7880 (fixup_go_packaging): New function.
7881 (process_full_comp_unit): Call it when processing Go CUs.
7882 (dwarf2_physname): Add Go support.
7883 (read_file_scope): Handle missing language spec for GNU Go.
7884 (set_cu_language): Handle DW_LANG_Go.
7885 * go-exp.y: New file.
7886 * go-lang.h: New file.
7887 * go-lang.c: New file.
7888 * go-typeprint.c: New file.
7889 * go-valprint.c: New file.
7890 * symtab.c: #include "go-lang.h".
7891 (symbol_set_language): Handle language_go.
7892 (symbol_find_demangled_name, symbol_set_names): Ditto.
7893 (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
7894
7895 2012-04-24 Jim Meyering <meyering@redhat.com>
7896
7897 avoid a few strncpy-induced buffer overruns
7898 * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
7899 fname and psargs before trying to concatenate.
7900 * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
7901 "name" before applying strchr.
7902
7903 2012-04-25 Siva Chandra Reddy <sivachandra@google.com>
7904
7905 * CONTRIBUTE: Use unified diff instead of context diff when
7906 generating patches.
7907
7908 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
7909
7910 * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
7911 code. Handle JR.HB correctly.
7912
7913 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
7914
7915 * mips-tdep.c
7916 (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
7917 with the other MIPS16 helpers.
7918
7919 2012-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
7920
7921 * observer.sh: Conditionally declare `args', thus cleaning up
7922 unused instances of this variable.
7923
7924 2012-04-24 Yao Qi <yao@codesourcery.com>
7925
7926 Revert this patch to allow breakpoint always-inserted
7927 in record target.
7928 2011-12-05 Pedro Alves <pedro@codesourcery.com>
7929 * breakpoint.c: Include record.h.
7930 (breakpoints_always_inserted_mode): Return false when the record
7931 target is in use.
7932
7933 * breakpoint.c (iterate_over_bp_locations): New.
7934 * breakpoint.h: Declare.
7935 New typedef walk_bp_location_callback.
7936 * record.c (record_open): Call record_init_record_breakpoints.
7937 (record_sync_record_breakpoints): New.
7938 (record_init_record_breakpoints): New.
7939 * NEWS: Mention supporting breakpoint always-inserted mode in
7940 record target.
7941
7942 2012-04-24 Marc Khouzam <marc.khouzam@ericsson.com>
7943
7944 * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
7945 any thread.
7946
7947 2012-04-24 Yao Qi <yao@codesourcery.com>
7948
7949 * breakpoint.c (ep_is_catchpoint): Renamed to ...
7950 (is_catchpoint): ... it.
7951 (print_one_breakpoint_location): Caller update.
7952 * breakpoint.h: Update declaration.
7953
7954 2012-04-23 David S. Miller <davem@davemloft.net>
7955
7956 * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
7957
7958 2012-04-23 Tom Tromey <tromey@redhat.com>
7959
7960 * buildsym.c (add_free_pendings): Remove.
7961 * buildsym.h (add_free_pendings): Remove.
7962
7963 2012-04-23 Doug Evans <dje@google.com>
7964
7965 * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
7966 attr.u.unsnd instead of attr.u.addr.
7967 (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
7968 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
7969 DW_FORM_ref_udata.
7970 (dump_die_shallow): Update cases DW_FORM_ref_addr,
7971 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4. Add cases DW_FORM_ref8,
7972 DW_FORM_ref_udata.
7973 (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
7974
7975 2012-04-23 Maciej W. Rozycki <macro@codesourcery.com>
7976
7977 * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
7978 (mips_o32_return_value): Likewise.
7979 (mips_o64_return_value): Likewise.
7980
7981 2012-04-21 Paul Hilfinger <hilfinger@adacore.com>
7982
7983 * ada-lang.c (ada_evaluate_subexp): Add cases for
7984 TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
7985 their treatment in eval.c.
7986
7987 2012-04-21 David S. Miller <davem@davemloft.net>
7988
7989 * sparc-tdep.c (X_DISP10): Define.
7990 (sparc_analyze_control_transfer): Handle compare-and-branch.
7991
7992 2012-04-21 Jonathan Larmour <jifl@eCosCentric.com>
7993
7994 * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
7995 * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
7996
7997 2012-04-20 Nigel Stephens <nigel@mips.com>
7998 Maciej W. Rozycki <macro@codesourcery.com>
7999
8000 * mips-tdep.c (mips_float_register_p): New function.
8001 (mips_convert_register_float_case_p): Use mips_float_register_p.
8002 (mips_register_type): Likewise.
8003 (mips_print_register): Likewise.
8004 (print_gp_register_row): Likewise.
8005 (mips_print_registers_info): Likewise.
8006
8007 2012-04-20 Shun-Yen Lu <dark.asparagus@gmail.com>
8008
8009 * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
8010 of mips16 symbols.
8011
8012 2012-04-20 Andrew Pinski <apinski@cavium.com>
8013
8014 * MAINTAINERS (Write After Approval): Add myself to the list.
8015
8016 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
8017
8018 * MAINTAINERS: Update my e-mail address.
8019
8020 2012-04-20 Pedro Alves <palves@redhat.com>
8021
8022 * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
8023 $srcdir.
8024 * configure: Regenerate.
8025
8026 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
8027
8028 * cp-support.h: Include `gdb_vecs.h'. Delete `const_char_ptr' VEC
8029 declaration.
8030 * gdb_vecs.h: Declare `const_char_ptr' VEC.
8031
8032 2012-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8033
8034 Fix compilation compatibility with python-2.4
8035 * python/py-type.c (convert_field): Cast ADDRSTRING for
8036 PyObject_SetAttrString as non-const. New comment.
8037
8038 2012-04-19 Tom Tromey <tromey@redhat.com>
8039
8040 * top.c (quit_target): Use all_cleanups.
8041 * main.c (captured_command_loop): Use all_cleanups.
8042 * exceptions.c (throw_exception): Use all_cleanups.
8043
8044 2012-04-19 Pedro Alves <palves@redhat.com>
8045
8046 * Makefile.in (GNULIB_BUILDDIR): New.
8047 (LIBGNU, INCGNU, GNULIB_H): Adjust.
8048 (SUBDIRS): Add $(GNULIB_BUILDDIR).
8049 (CLEANDIRS). Remove gnulib/import.
8050 (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
8051 (all-lib): Ditto.
8052 (distclean): Remove the $(GNULIB_BUILDDIR) directory.
8053 (gnulib/import/Makefile): Replace gnulib/import with
8054 $(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
8055 (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
8056 (aclocal_m4_deps): Remove the gnulib dependencies. Add
8057 acx_configure_dir.m4.
8058 * acinclude.m4: Include acx_configure_dir.m4.
8059 * acx_configure_dir.m4: New file.
8060 * aclocal.m4: Regenerate.
8061 * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
8062 calls. Configure gnulib using ACX_CONFIGURE_DIR.
8063 (GNULIB): New variable.
8064 (GNULIB_STDINT_H): Adjust.
8065 (AC_OUTPUT): Don't output gnulib/Makefile.
8066 * gdb/defs.h: Include build-gnulib/config.h.
8067 * aclocal.m4: Regenerate.
8068 * config.in: Regenerate.
8069 * configure: Regenerate.
8070
8071 * gnulib/Makefile.in: New file.
8072 * gnulib/configure.ac: New file.
8073 * gnulib/aclocal.m4: New file.
8074 * gnulib/config.in: New file.
8075 * gnulib/configure: New file.
8076 * gnulib/: Re-run gnulib-tool to adjust.
8077
8078 2012-04-19 Doug Evans <dje@google.com>
8079
8080 * cleanups.h (struct cleanup): Move to cleanups.c.
8081 (make_cleanup_dtor_ftype): New typedef.
8082 (make_cleanup_dtor): Use it.
8083 (ALL_CLEANUPS): Replace with ...
8084 (all_cleanups): ... this. Declare. All uses updated.
8085 * cleanups.c: #include "gdb_assert.h".
8086 (sentinel_cleanup): New static global.
8087 (SENTINEL_CLEANUP): Define.
8088 (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
8089 (make_my_cleanup2): Assert result is non-NULL.
8090 (all_cleanups): New function.
8091 (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
8092 of NULL.
8093
8094 2012-04-19 Pedro Alves <palves@redhat.com>
8095
8096 * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
8097 Adjust paths to gnulib imported files.
8098
8099 2012-04-19 Pedro Alves <palves@redhat.com>
8100
8101 * gnulib/: Move whole directory ...
8102 * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
8103 * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
8104 (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
8105 (aclocal_m4_deps): Adjust.
8106 * aclocal.m4: Regenerate.
8107 * configure: Regenerate.
8108 * configure.ac: Adjust AC_OUTPUT output.
8109
8110 2012-04-19 Yao Qi <yao@codesourcery.com>
8111
8112 * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
8113 (vec.o): New rule.
8114 * vec.c: Move it ...
8115 * common/vec.c: ... here.
8116 * vec.h: Move it ...
8117 * common/vec.h: ... here.
8118
8119 2012-04-19 Yao Qi <yao@codesourcery.com>
8120
8121 * gdb-code-style.el: New.
8122
8123 2012-04-18 Pedro Alves <palves@redhat.com>
8124
8125 Update gnulib from latest git.
8126 (639ea5ae15e39fe48d43e04864b2997301e4b969)
8127
8128 * gnulib/Makefile.am: Update.
8129 * gnulib/dummy.c: Update.
8130 * gnulib/extra/arg-nonnull.h: Update.
8131 * gnulib/extra/c++defs.h: Update.
8132 * gnulib/extra/update-copyright: Update.
8133 * gnulib/extra/warn-on-use.h: Update.
8134 * gnulib/inttypes.in.h: Update.
8135 * gnulib/m4/00gnulib.m4: Update.
8136 * gnulib/m4/extensions.m4: Update.
8137 * gnulib/m4/gnulib-cache.m4: Update.
8138 * gnulib/m4/gnulib-common.m4: Update.
8139 * gnulib/m4/gnulib-comp.m4: Update.
8140 * gnulib/m4/gnulib-tool.m4: Update.
8141 * gnulib/m4/include_next.m4: Update.
8142 * gnulib/m4/inttypes-pri.m4: Update.
8143 * gnulib/m4/inttypes.m4: Update.
8144 * gnulib/m4/longlong.m4: Update.
8145 * gnulib/m4/memchr.m4: Update.
8146 * gnulib/m4/memmem.m4: Update.
8147 * gnulib/m4/mmap-anon.m4: Update.
8148 * gnulib/m4/multiarch.m4: Update.
8149 * gnulib/m4/onceonly.m4: Update.
8150 * gnulib/m4/stddef_h.m4: Update.
8151 * gnulib/m4/stdint.m4: Update.
8152 * gnulib/m4/string_h.m4: Update.
8153 * gnulib/m4/warn-on-use.m4: Update.
8154 * gnulib/m4/wchar_h.m4: Update.
8155 * gnulib/m4/wchar_t.m4: Update.
8156 * gnulib/m4/wint_t.m4: Update.
8157 * gnulib/memchr.c: Update.
8158 * gnulib/memmem.c: Update.
8159 * gnulib/stddef.in.h: Update.
8160 * gnulib/stdint.in.h: Update.
8161 * gnulib/str-two-way.h: Update.
8162 * gnulib/string.in.h: Update.
8163 * gnulib/wchar.in.h: Update.
8164
8165 * gnulib/extra/arg-nonnull.h: Delete.
8166 * gnulib/extra/c++defs.h: Delete.
8167 * gnulib/extra/warn-on-use.h: Delete.
8168 * gnulib/m4/wchar_h.m4: Delete.
8169 * gnulib/m4/wint_t.m4: Delete.
8170 * gnulib/wchar.in.h: Delete.
8171
8172 * gnulib/extra/snippets/arg-nonnull.h: New.
8173 * gnulib/extra/snippets/c++defs.h: New.
8174 * gnulib/extra/snippets/warn-on-use.h: New.
8175
8176 * aclocal.m4: Regenerate.
8177 * config.in: Regenerate.
8178 * configure: Regenerate.
8179 * gnulib/Makefile.in: Regenerate.
8180
8181 2012-04-18 Pedro Alves <palves@redhat.com>
8182
8183 Reimport the update-copyright module from gnulib
8184 (250b80067c1e1d8faa0c42fb572f721975b929c5).
8185
8186 * configure: Regenerate.
8187 * gnulib/Makefile.am: Update.
8188 * gnulib/Makefile.in: Regenerate.
8189 * gnulib/extra/update-copyright: Update.
8190 * gnulib/m4/gnulib-cache.m4: Update.
8191 * gnulib/m4/gnulib-comp.m4: Update.
8192
8193 2012-04-18 Tristan Gingold <gingold@adacore.com>
8194
8195 * configure.ac (aix): Put -lpthread into libs.
8196 * configure: Regenerate.
8197
8198 2012-04-18 Tom Tromey <tromey@redhat.com>
8199
8200 * linespec.c (convert_linespec_to_sals): Don't use
8201 SYMBOL_OBJ_SECTION.
8202 (compare_msymbols): Arguments are minsym_and_objfile, not
8203 minimal_symbol*. Don't use SYMBOL_OBJ_SECTION.
8204
8205 2012-04-18 Pedro Alves <palves@redhat.com>
8206
8207 Revert gnulib/ part of:
8208 2011-01-01 Joel Brobecker <brobecker@adacore.com>
8209 Copyright year update in most files (performed by copyright.sh).
8210
8211 2012-04-18 Jan Kratochvil <jan.kratochvil@redhat.com>
8212
8213 Fix 64-bit constants on 32-bit hosts.
8214 * dwarf2read.c (read_unsigned_leb128): Change declaration return type
8215 from unsigned long to ULONGEST.
8216 (read_signed_leb128): Change declaration return type from long to
8217 LONGEST.
8218 (dwarf2_const_value_attr): Change declaration parameter value from long
8219 to LONGEST.
8220 (dwarf2_compute_name): Change variable value from long to LONGEST.
8221 (read_unsigned_leb128): Change return type, variable result and some
8222 casts from unsigned long to ULONGEST.
8223 (read_signed_leb128): Change return type, variable result and some
8224 casts from long to LONGEST.
8225 (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
8226 value from long to LONGEST.
8227 (dwarf2_const_value): Change variable value from long to LONGEST.
8228 * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
8229 plongest and hex_string.
8230 * symtab.h (struct general_symbol_info): Change ivalue from long to
8231 LONGEST, remove the comment.
8232 * tracepoint.c (validate_actionline, collect_symbol, scope_info):
8233 Change SYMBOL_VALUE format strings to use plongest and hex_string.
8234
8235 2012-04-18 Siddhesh Poyarekar <siddhesh@redhat.com>
8236
8237 PR symtab/7259:
8238 * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
8239 * ada-lang.c (ada_discrete_type_high_bound)
8240 (ada_discrete_type_low_bound): Fix function comment. Use
8241 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8242 (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
8243 (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8244 * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
8245 Use TYPE_FIELD_ENUMVAL.
8246 * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
8247 (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8248 * c-typeprint.c (c_type_print_base): Move variable lastval to inner
8249 block, change it to LONGEST. Use TYPE_FIELD_ENUMVAL for
8250 TYPE_CODE_ENUM.
8251 * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
8252 * dwarf2read.c (process_enumeration_scope): Likewise.
8253 * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
8254 field.bitpos.
8255 (class StructMainTypePrettyPrinter): Support also
8256 FIELD_LOC_KIND_ENUMVAL.
8257 * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
8258 TYPE_CODE_ENUM.
8259 (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8260 (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
8261 * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
8262 (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment. New
8263 field enumval.
8264 (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
8265 accommodate enumval.
8266 (struct call_site): Adjust loc_kind to accommodate enumval.
8267 (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
8268 (TYPE_FIELD_ENUMVAL): New macros.
8269 * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
8270 * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
8271 TYPE_CODE_ENUM.
8272 * p-typeprint.c (pascal_type_print_base): Likewise.
8273 * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
8274 enumval.
8275 * python/lib/gdb/types.py (make_enum_dict): Likewise.
8276 * python/py-type.c (convert_field): New variable addrstring. Use
8277 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8278 (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
8279 * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
8280 * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
8281 TYPE_CODE_ENUM.
8282 * valprint.c (generic_val_print): Likewise.
8283
8284 2012-04-17 Doug Evans <dje@google.com>
8285
8286 * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
8287
8288 * dwarf2read.c: Whitespace fixes.
8289 (lookup_signatured_type): Tweak comment.
8290 (get_die_type_at_offset): Fix comment.
8291
8292 2012-04-17 Joel Brobecker <brobecker@adacore.com>
8293
8294 * xcoffread.c (xcoff_secnum_to_sections): New function.
8295 (secnum_to_section, secnum_to_bfd_section): Reimplement
8296 using xcoff_secnum_to_sections. Rename "secnum" parameter
8297 into "n_scnum".
8298 (RECORD_MINIMAL_SYMBOL): Delete.
8299 (record_minimal_symbol): New function.
8300 (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
8301 by call to record_minimal_symbol and set misc_func_recorded
8302 to 1. Set last_csect_sec to the XCOFF section index instead
8303 of GDB's section_offset index. Update calls to
8304 prim_record_minimal_symbol_and_info to pass the BFD section
8305 as well.
8306
8307 2012-04-17 Joel Brobecker <brobecker@adacore.com>
8308
8309 * xcoffread.c (read_xcoff_symtab): Delete variables
8310 last_csect_val and last_csect_sec and associated code.
8311
8312 2012-04-17 Doug Evans <dje@google.com>
8313
8314 * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
8315 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8316 * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
8317 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
8318
8319 * cleanups.h: New file.
8320 * cleanups.c: New file.
8321 * Makefile.in (SFILES): Add cleanups.c.
8322 (HFILES_NO_SRCDIR): Add cleanups.h.
8323 (COMMON_OBS): Add cleanups.o.
8324 * defs.h (struct cleanup): Moved to cleanups.h.
8325 (do_cleanups,do_final_cleanups): Ditto.
8326 (discard_cleanups,discard_final_cleanups): Ditto
8327 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8328 (save_cleanups,save_final_cleanups): Ditto.
8329 (restore_cleanups,restore_final_cleanups): Ditto.
8330 (null_cleanup): Ditto.
8331 (make_my_cleanup,make_my_cleanup2): Ditto.
8332 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8333 * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
8334 (do_cleanups,do_final_cleanups): Ditto.
8335 (discard_cleanups,discard_final_cleanups): Ditto
8336 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8337 (save_cleanups,save_final_cleanups): Ditto.
8338 (restore_cleanups,restore_final_cleanups): Ditto.
8339 (null_cleanup): Ditto.
8340 (make_my_cleanup,make_my_cleanup2): Ditto.
8341 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8342
8343 * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
8344 make_my_cleanup.
8345 (make_cleanup_dyn_string_delete): Ditto.
8346 (make_cleanup_ui_file_delete): Ditto.
8347 (make_cleanup_ui_out_redirect_pop): Ditto.
8348 (make_cleanup_free_section_addr_info): Ditto.
8349 (make_cleanup_restore_integer): Ditto.
8350 (make_cleanup_unpush_target): Ditto.
8351 (make_cleanup_value_free_to_mark): Ditto.
8352 (make_cleanup_value_free): Ditto.
8353 (make_cleanup_free_so): Ditto.
8354
8355 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8356
8357 New option "set debug auto-load".
8358 * NEWS: New commands "set debug auto-load" and "show debug auto-load".
8359 * auto-load.c (debug_auto_load, show_debug_auto_load: New.
8360 (auto_load_safe_path_vec_update)
8361 (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
8362 if DEBUG_AUTO_LOAD.
8363 (file_is_auto_load_safe): New parameters debug_fmt and ....
8364 Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
8365 (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
8366 caller by explanatory string.
8367 (_initialize_auto_load): Register "set debug auto-load".
8368 * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
8369 and ....
8370 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8371 (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
8372 by explanatory string.
8373 * main.c (captured_main): Likewise.
8374 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
8375 (source_section_scripts): Likewise.
8376
8377 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8378
8379 New option "set auto-load safe-path".
8380 * NEWS: New commands "set auto-load safe-path"
8381 and "show auto-load safe-path".
8382 * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
8383 (auto_load_safe_path, auto_load_safe_path_vec)
8384 (auto_load_safe_path_vec_update, set_auto_load_safe_path)
8385 (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
8386 (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
8387 (source_gdb_script_for_objfile): New variable is_safe. Call
8388 file_is_auto_load_safe. Return if it is not.
8389 (struct loaded_script): New field loaded.
8390 (maybe_add_script): Add parameter loaded. Initialize SLOT with it.
8391 (print_script): Use LOADED indicator instead of FULL_PATH. Change
8392 output "Missing" to "No".
8393 (_initialize_auto_load): New variable cmd. Initialize
8394 auto_load_safe_path. Register "set auto-load safe-path",
8395 "show auto-load safe-path" and "add-auto-load-safe-path".
8396 * auto-load.h (maybe_add_script): Add parameter loaded.
8397 (file_is_auto_load_safe): New declaration.
8398 * config.in: Regenerate.
8399 * configure: Regenerate.
8400 * configure.ac: New parameters --with-auto-load-safe-path
8401 and --without-auto-load-safe-path.
8402 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8403 (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
8404 * main.c (captured_main): Check file_is_auto_load_safe for
8405 LOCAL_GDBINIT.
8406 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
8407 variable is_safe. Call file_is_auto_load_safe. Return if it is not.
8408 (source_section_scripts): Call file_is_auto_load_safe. Return if it is
8409 not.
8410
8411 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8412
8413 auto-load: Implementation.
8414 * NEWS: New descriptions for "info auto-load",
8415 "info auto-load gdb-scripts", "info auto-load python-scripts",
8416 "info auto-load local-gdbinit" and "info auto-load libthread-db".
8417 Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
8418 and "show auto-load-scripts". New description for "set auto-load",
8419 "show auto-load", "set auto-load gdb-scripts",
8420 "show auto-load gdb-scripts", "set auto-load python-scripts",
8421 "show auto-load python-scripts", "set auto-load local-gdbinit",
8422 "show auto-load local-gdbinit", "set auto-load libthread-db" and
8423 "show auto-load libthread-db".
8424 * auto-load.c: Remove include python/python-internal.h. Add includes
8425 exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
8426 cli/cli-setshow.h.
8427 (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
8428 (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
8429 (gdbpy_global_auto_load): Rename to ...
8430 (global_auto_load): ... here.
8431 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8432 (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
8433 (script_language_gdb, source_gdb_script_for_objfile): New.
8434 (struct loaded_script): New field language.
8435 (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
8436 LANGUAGE.
8437 (maybe_add_script): Add parameter language. Drop redundant
8438 entry.full_path initialization. Initialize entry.language and
8439 (*slot)->language.
8440 (auto_load_objfile_script): Change parameter suffix to language.
8441 Remove the call of maybe_add_script.
8442 Call language->source_script_for_objfile.
8443 (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
8444 New.
8445 (collect_matching_scripts): Adjust it for
8446 struct collect_matching_scripts_data.
8447 (auto_load_info_scripts_pattern_nl): New variable.
8448 (info_auto_load_scripts): Rename to ...
8449 (auto_load_info_scripts): ... here, add parameter language. Adjust it
8450 for struct collect_matching_scripts_data.
8451 (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
8452 (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
8453 (auto_load_show_cmdlist_get, info_auto_load_cmd)
8454 (auto_load_info_cmdlist_get): New.
8455 (_initialize_auto_load): Move add_info of "auto-load-scripts" to
8456 python/py-auto-load.c. New installment for "set auto-load gdb-scripts",
8457 "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
8458 "info auto-load local-gdbinit".
8459 * auto-load.h (struct script_language): New.
8460 (gdbpy_global_auto_load): Rename to ...
8461 (global_auto_load): ... here.
8462 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8463 (auto_load_local_gdbinit_loaded): New declarations.
8464 (maybe_add_script): New parameter language.
8465 (auto_load_objfile_script): Change parameter suffix to language.
8466 (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
8467 (auto_load_info_scripts, auto_load_set_cmdlist_get)
8468 (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
8469 declarations.
8470 * linux-thread-db.c: Include auto-load.h and ctype.h.
8471 (auto_load_thread_db, show_auto_load_thread_db): New.
8472 (struct thread_db_info): New field filename.
8473 (delete_thread_db_info): Call xfree for FILENAME.
8474 (try_thread_db_load): Initialize FILENAME.
8475 (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
8476 if !AUTO_LOAD_THREAD_DB.
8477 (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
8478 (_initialize_thread_db): Install auto_load_thread_db
8479 as "set auto-load libthread-db" and install info_auto_load_libthread_db
8480 as "info auto-load libthread-db".
8481 * main.c (captured_main): Rename gdbpy_global_auto_load to
8482 global_auto_load. Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
8483 AUTO_LOAD_LOCAL_GDBINIT_LOADED.
8484 (print_gdb_help): Extend the help for 'local init file'.
8485 * python/py-auto-load.c: Remove a comment about gdb scripts extension.
8486 (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
8487 (auto_load_scripts): Rename to ...
8488 (auto_load_python_scripts): ... here, update the comment.
8489 (gdbpy_load_auto_script_for_objfile): New declaration.
8490 (show_auto_load_python_scripts, script_language_python)
8491 (gdbpy_load_auto_script_for_objfile): New.
8492 (source_section_scripts): Refactor the code.
8493 (load_auto_scripts_for_objfile): Rename to ...
8494 (gdbpy_load_auto_scripts_for_objfile): ... here, update the
8495 auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
8496 (info_auto_load_python_scripts): New.
8497 (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
8498 Rename "set auto-load-scripts" to "set auto-load python-scripts".
8499 Register "set auto-load-scripts" as its deprecated alias. Register
8500 "info auto-load python-scripts". Register "info auto-load-scripts" as
8501 its deprecated alias.
8502 (load_auto_scripts_for_objfile): Rename to ...
8503 (gdbpy_load_auto_scripts_for_objfile): ... here.
8504 * python/python.h (load_auto_scripts_for_objfile): Rename to ...
8505 (gdbpy_load_auto_scripts_for_objfile): ... here.
8506
8507 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8508
8509 auto-load: Move files.
8510 * Makefile.in (SFILES): Add auto-load.c.
8511 (HFILES_NO_SRCDIR): Add auto-load.h.
8512 (COMMON_OBS): Add auto-load.o.
8513 (distclean): Change .gdbinit for gdb-gdb.gdb.
8514 * auto-load.c: New file, with parts from python/py-auto-load.c.
8515 * auto-load.h: New file, with parts from python/python.h.
8516 * configure: Regenerate.
8517 * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
8518 * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
8519 * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
8520 * main.c: Include auto-load.h.
8521 * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
8522 command.h, observer.h and progspace.h to auto-load.c. Add include
8523 auto-load.h.
8524 (gdbpy_global_auto_load, struct auto_load_pspace_info)
8525 (struct loaded_script, auto_load_pspace_data)
8526 (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
8527 (hash_loaded_script_entry, eq_loaded_script_entry)
8528 (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
8529 (maybe_add_script): Move to auto-load.c.
8530 (source_section_scripts): Change maybe_add_script parameters passing,
8531 use script_not_found_warning_print.
8532 (clear_section_scripts, auto_load_objfile_script)
8533 (auto_load_new_objfile, loaded_script_ptr)
8534 (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
8535 (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
8536 (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
8537 auto_load_new_objfile and info_auto_load_scripts initizations to
8538 auto-load.c.
8539 * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
8540
8541 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8542
8543 Code cleanup.
8544 * charset.c (find_charset_names): Remove variables ix and elt.
8545 Use free_char_ptr_vec.
8546 * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
8547 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
8548 debugdir_end. New variable debugdir_len.
8549 * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
8550 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
8551 declarations.
8552 * progspace.c (clear_program_space_solib_cache): Remove variables ix
8553 and elt. Use free_char_ptr_vec.
8554 * source.c (add_path): Remove variables argv, arg and argv_index.
8555 New variables dir_vec, back_to, ix and name.
8556 Use dirnames_to_char_ptr_vec_append. Use freeargv instead of
8557 make_cleanup_freeargv. Remove variable separator. Simplify the code
8558 no longer expecting DIRNAME_SEPARATOR.
8559 (openp): Remove variable p, p1 and len. New variables dir_vec,
8560 back_to, ix and dir. Use dirnames_to_char_ptr_vec. Simplify the code
8561 no longer expecting DIRNAME_SEPARATOR.
8562 * symfile.c (find_separate_debug_file): New variables debugdir_vec,
8563 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
8564 debugdir_end.
8565 * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
8566 (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
8567 (dirnames_to_char_ptr_vec): New functions.
8568
8569 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8570
8571 Code cleanup.
8572 * source.c (add_path): Remove always true conditional 'p == 0' and
8573 unindent its code block.
8574
8575 2012-04-17 Pedro Alves <palves@redhat.com>
8576
8577 * gdbtypes.h (FIELD_BITPOS): Rename to ...
8578 (FIELD_BITPOS_LVAL): ... this.
8579 (FIELD_BITPOS): New.
8580 (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
8581 * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
8582 * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
8583 SET_FIELD_BITPOS.
8584 * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
8585 SET_FIELD_BITPOS.
8586 * stabsread.c (read_cpp_abbrev, read_one_struct_field)
8587 (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
8588 * target-descriptions.c (tdesc_gdb_type): Adjust to use
8589 SET_FIELD_BITPOS.
8590
8591 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8592
8593 Do not rely on FIELD_LOC_KIND_BITPOS being zero.
8594 * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
8595 TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
8596 * gdbtypes.c (append_flags_type_flag): Likewise, twice.
8597 * jv-lang.c (java_link_class_type): Likewise, once.
8598 * stabsread.c (read_enum_type): Likewise.
8599
8600 2012-04-16 Yao Qi <yao@codesourcery.com>
8601
8602 * common/agent.c (agent_run_command): Add one more parameter `len'.
8603 Update callers.
8604 * common/agent.h: Update declaration.
8605 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
8606 Update.
8607 (linux_child_static_tracepoint_markers_by_strid): Ditto.
8608
8609 2012-04-14 Anton Gorenkov <xgsa@yandex.ru>
8610
8611 PR mi/13393
8612 * value.c (value_actual_type): New function.
8613 * value.h (value_actual_type): New declaration.
8614 * varobj.c (update_type_if_necessary): New function.
8615 (varobj_create): Call value_actual_type instead of
8616 value_type.
8617 (install_dynamic_child): distinct changed and type changed MI variable
8618 objects.
8619 (update_dynamic_varobj_children): Updated for install_dynamic_child
8620 change. All callers updated.
8621 (varobj_update): Support for MI variable object type change if
8622 the value changed and RTTI is used to determine the type.
8623 (create_child_with_value): Call value_actual_type instead of
8624 value_type.
8625 (adjust_value_for_child_access): Extended with a new parameter which
8626 specify whether the given value should be casted to enclosing type.
8627 All callers updated.
8628
8629 2012-04-14 Yao Qi <yao@codesourcery.com>
8630
8631 Import gnulib module inttypes from git
8632 (250b80067c1e1d8faa0c42fb572f721975b929c5)
8633 * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
8634 (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
8635 gnulib/m4/inttypes-pri.m4
8636 * aclocal.m4, config.in, configure: Regenerated.
8637 * gnulib/Makefile.am: Update.
8638 * gnulib/Makefile.in: Update.
8639 * gnulib/m4/gnulib-cache.m4: Update.
8640 * gnulib/m4/gnulib-comp.m4: Update.
8641 * gnulib/inttypes.in.h: New.
8642 * gnulib/m4/inttypes-pri.m4: New.
8643 * gnulib/m4/inttypes.m4: New.
8644
8645 2012-04-13 Luis Machado <lgustavo@codesourcery.com>
8646
8647 * infrun.c (resume): Update PC address to the real PC after
8648 preparing to do displaced stepping.
8649
8650 2012-04-12 Doug Evans <dje@google.com>
8651
8652 * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
8653 All callers updated.
8654
8655 2012-04-12 Mark Kettenis <kettenis@gnu.org>
8656
8657 * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
8658
8659 2012-04-12 Doug Evans <dje@google.com>
8660
8661 * dwarf2read.c (create_all_type_units): Renamed from
8662 create_debug_types_hash_table. All callers updated.
8663
8664 * dwarf2read.c (create_signatured_type_table_from_index): Rename
8665 local type_sig to sig_type, type_offset to type_offset_in_tu.
8666 (hash_signatured_type): Renamed from hash_type_signature,
8667 all callers updated.
8668 (eq_signatured_type): Renamed from eq_type_signature,
8669 all callers updated.
8670 (create_debug_types_hash_table): Rename local type_sig to sig_type.
8671 (process_enumeration_scope): Ditto.
8672 (lookup_signatured_type_at_offset): Ditto.
8673 (load_full_type_unit, read_signatured_type): Ditto.
8674
8675 2012-04-12 Yao Qi <yao@codesourcery.com>
8676
8677 * remote.c (async_remote_interrupt): Correct function name in
8678 debug message.
8679 (async_remote_interrupt_twice): Ditto.
8680
8681 2012-04-11 Yuanhui Zhang <asmwarrior@gmail.com>
8682
8683 * source.c (find_and_open_source): Consistently pass resulting
8684 full path through xfullpath.
8685
8686 2012-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8687
8688 Provide more specific displaced-stepping memory error message.
8689 * infrun.c (displaced_step_prepare): New variable status. Call
8690 target_read_memory instead of read_memory, provide more specific
8691 error message.
8692
8693 2012-04-11 Tristan Gingold <gingold@adacore.com>
8694
8695 PR gdb/13901
8696 * darwin-nat.c (darwin_execvp): Revert previous patch.
8697
8698 2012-04-11 Tristan Gingold <gingold@adacore.com>
8699
8700 PR gdb/13901
8701 * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
8702 in case of change.
8703
8704 2012-04-11 Tristan Gingold <gingold@adacore.com>
8705
8706 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
8707 warning.
8708
8709 2012-04-11 Siva Chandra Reddy <sivachandra@google.com>
8710
8711 New command 'explore' which helps explore values and types in
8712 scope.
8713 * NEWS: Add an entry about the new 'explore' command.
8714 * data-directory/Makefile.in: Add gdb/command/explore.py
8715 * python/lib/gdb/command/explore.py: Implemention of the 'explore'
8716 command using the GDB Python API.
8717
8718 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
8719
8720 * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
8721 extension in jump target calculation.
8722
8723 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
8724
8725 * mips-tdep.c (mips32_next_pc): Handle JALX.
8726
8727 2012-04-10 Yao Qi <yao@codesourcery.com>
8728
8729 * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
8730
8731 2012-04-10 Yao Qi <yao@codesourcery.com>
8732
8733 * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
8734 and gnulib/m4/gnulib-tool.m4.
8735
8736 2012-04-10 Doug Evans <dje@google.com>
8737
8738 * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
8739 (load_partial_dies): Clarify comment.
8740 (find_partial_die): Support rereading type units.
8741 Clarify CU handling, if we know offset is in CU, don't search for the
8742 containing CU. Add comment regarding memory waste.
8743
8744 2012-04-10 H.J. Lu <hongjiu.lu@intel.com>
8745
8746 * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
8747 i386/x32-avx and i386/x32-avx-linux.
8748 (i386/x32-expedite): New.
8749 (i386/x32-linux-expedite): Likewise.
8750 (i386/x32-avx-expedite): Likewise.
8751 (i386/x32-avx-linux-expedite): Likewise.
8752 ($(outdir)/i386/x32.dat): Likewise.
8753 ($(outdir)/i386/x32-linux.dat): Likewise.
8754 ($(outdir)/i386/x32-avx.dat): Likewise.
8755 ($(outdir)/i386/x32-avx-linux.dat): Likewise.
8756
8757 * features/i386/x32-avx-linux.xml: New file.
8758 * features/i386/x32-avx.xml: Likewise.
8759 * features/i386/x32-core.xml: Likewise.
8760 * features/i386/x32-linux.xml: Likewise.
8761 * features/i386/x32.xml: Likewise.
8762
8763 * features/i386/x32-avx-linux.c: New. Generated.
8764 * features/i386/x32-avx.c: Likewise.
8765 * features/i386/x32-linux.c: Likewise.
8766 * features/i386/x32.c: Likewise.
8767 * regformats/i386/x32-avx-linux.dat: Likewise.
8768 * regformats/i386/x32-avx.dat: Likewise.
8769 * regformats/i386/x32-linux.dat: Likewise.
8770 * regformats/i386/x32.dat: Likewise.
8771
8772 2012-04-10 Tristan Gingold <gingold@adacore.com>
8773
8774 * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
8775 code to kill the inferior.
8776
8777 2012-04-09 Mark Kettenis <kettenis@gnu.org>
8778
8779 * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8780 defines.
8781 * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8782 defines.
8783 * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
8784 (yyvsp): New defines.
8785 * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8786 defines.
8787 * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8788 defines.
8789 * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8790 defines.
8791 * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8792 defines.
8793 * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8794 defines.
8795
8796 2012-04-09 Mark Kettenis <kettenis@gnu.org>
8797
8798 * sparc64-tdep.c (sparc64_store_arguments)
8799 (sparc64_store_arguments): Fix coding style.
8800
8801 2012-04-07 Mark Kettenis <kettenis@gnu.org>
8802
8803 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
8804 complex floats, adjust some related comments and tighten a related
8805 assertion.
8806 (sparc64_extract_return_value): Handle complex floats.
8807
8808 2012-04-07 Doug Evans <dje@google.com>
8809
8810 * dwarf2read.c (load_partial_dies): Change condition to assert.
8811
8812 2012-04-06 Doug Evans <dje@google.com>
8813
8814 * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
8815 "mov %rsp,%rbp".
8816
8817 2012-04-05 Kevin Buettner <kevinb@redhat.com>
8818
8819 * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
8820 fencepost error.
8821 (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
8822 (v850_gdbarch_init): Set `num_regs' as appropriate for the
8823 architecture.
8824
8825 2012-04-05 Keith Seitz <keiths@redhat.com>
8826
8827 * linespec.c (decode_compound): Remove.
8828 (enum offset_relative_sign): New enum.
8829 (struct line_offset): New struct.
8830 (struct linespec): New struct.
8831 (struct linespec_state): Move file_symtabs,
8832 user_filename, and user_function into struct linespec.
8833 Make result an anonymous struct holding vectors of
8834 symbolp and minsym_and_objfile_d.
8835 Add language member.
8836 (enum ls_token_type): New enum.
8837 (linespec_keywords): New array.
8838 (struct ls_token): New struct.
8839 (struct ls_parser): New struct.
8840 (linespec_lexer_lex_number): New function.
8841 (linespec_lexer_lex_keyword): New function.
8842 (is_ada_operator): New function.
8843 (skip_quote_char): New function.
8844 (copy_token_string): New function.
8845 (is_closing_quote_enclosed): New function.
8846 (find_parameter_list_end): New function.
8847 (linespec_lexer_lex_string): New function.
8848 (linespec_lexer_lex_one): New function.
8849 (linespec_lexer_consume_token): New function.
8850 (linespec_lexer_peek_token): New function.
8851 (cplusplus_error): Remove unused function.
8852 (find_methods): Update comment.
8853 (find_toplevel_char): Return const.
8854 (is_objc_method_format): Remove unused function.
8855 (find_toplevel_string): New function.
8856 (is_linespec_boundary): Remove.
8857 (symbol_not_found_error): New function.
8858 (find_method_overload_end): Remove function.
8859 (unexpected_linespec_error): New function.
8860 (keep_name_info): Remove.
8861 (linespec_parse_line_offset): New function.
8862 (linespec_parse_basic): New function.
8863 (canonicalize_linespec): New function.
8864 (decode_line_internal): Remove.
8865 (create_sals_line_offset): New function adapted from
8866 decode_all_digits.
8867 (convert_linespec_to_sals): New function.
8868 (parse_linespec): New function.
8869 (linespec_parser_new): New function.
8870 (linespec_state_destructor): Change parameter type to
8871 struct linespec_state *.
8872 Add language parameter.
8873 Remove freeing of moved members.
8874 (linespec_parser_delete): New function.
8875 (decode_line_full): Use parse_linespec and linespec_parser_new.
8876 (decode_line_1): Likewise.
8877 (decode_indirect): Rename to ...
8878 (linespec_expression_to_pc): ... this and rewrite
8879 to simply find CORE_ADDR, storing this result for later
8880 conversion to SALs.
8881 (locate_first_half): Remove.
8882 (deocde_objc): Add parameter LS.
8883 Initialize new struct collect_info members.
8884 Handle minimal symbols, too.
8885 (decode_compound): Delete.
8886 (lookup_prefix_sym): Rewrite.
8887 (compare_msymbols): New function.
8888 (find_method): Rewrite.
8889 Do not call cplusplus_error.
8890 (symtabs_from_filename): Rewrite.
8891 (collect_function_symbols): Delete.
8892 (find_function_symbols): Rewrite without ARGPTR-style
8893 processing.
8894 (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
8895 (decode_dollar): Adapted and renamed to ...
8896 (linespec_parse_variable): ... this.
8897 (find_linespec_symbols): New function.
8898 (decode_label): Adapted and renamed to ...
8899 (find_label_symbols): ... this.
8900 (decode_digits_list_mode): Add and use LS argument.
8901 (decode_digits_ordinary): Likewise.
8902 (collect_symbols): Do not collect SALs, just symbols and msymbols.
8903 If in list mode, allow any symbol class. Otherwise, only
8904 permit LOC_BLOCK symbols.
8905 (minsym_found): Update comments.
8906 (search_minsyms_for_name): Do not convert the matching symbol
8907 into a SAL. Simply push the symbol and objfile into the
8908 result vector.
8909 (decode_variable): Delete. Contents adapted into
8910 find_linespec_symbols.
8911
8912 * cp-support.c (SKIP_SPACE): Remove.
8913 (operator_tokens): Remove unused global.
8914 (cp_validate_operator): Remove.
8915 * cp-support.h (cp_validate_operator): Remove declaration.
8916
8917 2012-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8918
8919 * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
8920 for TYPE_VPTR_FIELDNO.
8921 * valprint.c (valprint_check_validity): Make it global, move the
8922 function comment ...
8923 * value.h (valprint_check_validity): ... to this new declaration.
8924
8925 2012-04-02 Tristan Gingold <gingold@adacore.com>
8926
8927 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
8928 the STATE32 api for i386 state.
8929 (i386_darwin_store_inferior_registers): Likewise.
8930
8931 2012-04-02 Tristan Gingold <gingold@adacore.com>
8932
8933 * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
8934 SS offset.
8935 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
8936 format_string.
8937
8938 2012-04-02 Tristan Gingold <gingold@adacore.com>
8939
8940 PR gdb/13901
8941 * darwin-nat.c (darwin_execvp): Set binary preference.
8942
8943 2012-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
8944
8945 * NEWS (set breakpoint condition-evaluation): Use imperative mood.
8946
8947 2012-03-30 Tom Tromey <tromey@redhat.com>
8948
8949 * python/python.c (gdbpy_decode_line): Move cleanup creation out
8950 of TRY_CATCH. Fix error handling.
8951 * python/py-value.c (convert_value_from_python): Move 'old'
8952 declaration to innermost scope.
8953
8954 2012-03-29 Joel Brobecker <brobecker@adacore.com>
8955 Andrey Smirnov <andrew.smirnov@gmail.com>
8956
8957 -Wshadow warning fix.
8958 * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
8959 "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
8960 Adjust code accordingly.
8961
8962 2012-03-29 Joel Brobecker <brobecker@adacore.com>
8963
8964 * ada-lang.c (symbol_completion_add): Rename parameter
8965 "encoded" into "encoded_p". Ajust code and documentation
8966 accordingly.
8967
8968 2012-03-29 Joel Brobecker <brobecker@adacore.com>
8969 Andrey Smirnov <andrew.smirnov@gmail.com>
8970
8971 -Wshadow warning fix.
8972 * ada-lang.c (symbol_completion_add): Rename parameter
8973 "wild_match" into wild_match_p. Update code and documentation
8974 accordingly.
8975
8976 2012-03-29 Joel Brobecker <brobecker@adacore.com>
8977
8978 * ada-lang.c (symbol_completion_match): Rename parameter
8979 "encoded" into "encoded_p". Ajust code and documentation
8980 accordingly.
8981
8982 2012-03-29 Joel Brobecker <brobecker@adacore.com>
8983 Andrey Smirnov <andrew.smirnov@gmail.com>
8984
8985 -Wshadow warning fix.
8986 * ada-lang.c (symbol_completion_match): Rename parameter
8987 "wild_match" into "wild_match_p". Adjust code and function
8988 documentation accordingly.
8989
8990 2012-03-29 Joel Brobecker <brobecker@adacore.com>
8991 Andrey Smirnov <andrew.smirnov@gmail.com>
8992
8993 -Wshadow warning fix.
8994 * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
8995 "symbol_info" into "info". Adjust code accordingly.
8996 (ada_lookup_symbol): Likewise.
8997
8998 2012-03-29 Joel Brobecker <brobecker@adacore.com>
8999
9000 * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
9001 of this function's documentation.
9002
9003 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9004 Andrey Smirnov <andrew.smirnov@gmail.com>
9005
9006 -Wshadow warning fix.
9007 * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
9008 variable into "wild_match_p". Adjust code accordingly.
9009
9010 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9011 Andrey Smirnov <andrew.smirnov@gmail.com>
9012
9013 -Wshadow warning fix.
9014 * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
9015 parameter into "wild_match_p". Adjust code accordingly.
9016 Document this parameter in the function description.
9017
9018 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9019 Andrey Smirnov <andrew.smirnov@gmail.com>
9020
9021 -Wshadow warning fix.
9022 * ada-lang.c (add_symbols_from_enclosing_procs): Rename
9023 "wild_match" parameter to "wild_match_p" (-Wshadow).
9024
9025 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9026
9027 * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
9028 in function documentation.
9029
9030 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9031 Andrey Smirnov <andrew.smirnov@gmail.com>
9032
9033 -Wshadow warning fix.
9034 * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
9035 variable into wild_match_p. Adjust code accordingly.
9036
9037 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9038 Andrey Smirnov <andrew.smirnov@gmail.com>
9039
9040 * ada-valprint.c (ada_val_print_1): Move the code handling
9041 TYPE_CODE_ENUM inside its own lexical block. Declare
9042 variables len and val there, instead of in the function's
9043 top level block. Avoid declaring deref_val again in a way
9044 that shadows another variable of the same name declared
9045 in one of the up-level blocks. Just re-use the up-level
9046 variable instead.
9047
9048 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9049
9050 * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
9051 Replace block_found argument by symbol_info. Adjust
9052 implementation accordingly. Add function documentation.
9053 (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
9054 Fix documentation.
9055 * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
9056 * ada-exp.y (write_object_renaming): Adjust to new
9057 ada_lookup_encoded_symbol API.
9058
9059 2012-03-29 Joel Brobecker <brobecker@adacore.com>
9060
9061 * ada-lang.h (struct ada_symbol_info): Reformat. Improve
9062 documentation.
9063
9064 2012-03-28 Rathish C <rathish.c@kpitcummins.com>
9065
9066 * v850-tdep.c: Add the enum values for mpu and fpu registers.
9067 (v850_register_name): Add the mpu and fpu register names.
9068 (v850e_register_name): Add the mpu and fpu register names.
9069 (v850e2_register_name): New function.
9070 (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
9071 bfd_mach_v850e2v3.
9072
9073 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9074
9075 * NEWS: Add entry for Ada varobj support.
9076
9077 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9078
9079 * varobj.c (default_value_is_changeable_p): New function,
9080 extracted from varobj_value_is_changeable_p. Add declaration.
9081 (ada_value_is_changeable_p): New function, extracted from
9082 varobj_value_is_changeable_p. Add declaration.
9083 (struct language_specific): New field "value_is_changeable_p".
9084 (languages): Add entries for new field.
9085 (varobj_create): Set language before calling install_new_value.
9086 (varobj_value_is_changeable_p): Reimplement to call the varobj's
9087 "value_is_changeable_p" language callback.
9088
9089 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9090
9091 * ada-varobj.h, ada-varobj.c: New files.
9092 * Makefile.in (SFILES): Add ada-varobj.c.
9093 (HFILES_NO_SRCDIR): Add ada-varobj.h.
9094 (COMMON_OBS): Add ada-varobj.o.
9095
9096 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9097
9098 * varobj.c (ada_value_has_mutated): Add declaration. New function.
9099 (struct language_specific): New field "value_has_mutated".
9100 (languages): Set field "value_has_mutated" in each entry of array.
9101 (varobj_value_has_mutated): New function.
9102 (varobj_udpdate): Add handling of type mutation.
9103 (value_of_root): Add handling of type mutation.
9104 (ada_value_has_mutated): New function.
9105
9106 2012-03-28 Pedro Alves <palves@redhat.com>
9107
9108 * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
9109 Always supply $fr0 as 0.0 and $fr1 as 1.0.
9110
9111 2012-03-28 Tom Tromey <tromey@redhat.com>
9112
9113 * python/py-inferior.c (infpy_read_memory): Remove cleanups and
9114 explicitly free 'buffer' on exit paths. Decref 'membuf_object'
9115 before returning.
9116
9117 2012-03-28 Tom Tromey <tromey@redhat.com>
9118
9119 * .dir-locals.el: New file.
9120
9121 2012-03-28 Pedro Alves <palves@redhat.com>
9122
9123 * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
9124
9125 2012-03-28 Joel Brobecker <brobecker@adacore.com>
9126
9127 * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
9128 handling for r0.
9129
9130 2012-03-27 Pedro Alves <palves@redhat.com>
9131
9132 Eliminate struct ui_stream.
9133
9134 * ui-out.h (struct ui_stream): Delete.
9135 (ui_out_field_stream): Adjust prototype.
9136 (ui_out_stream_new, ui_out_stream_delete)
9137 (make_cleanup_ui_out_stream_delete): Delete declarations.
9138 * ui-out.c (ui_out_field_stream): Change prototype to take a
9139 ui_file instead of a ui_stream. Adjust.
9140 (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
9141 (make_cleanup_ui_out_stream_delete): Delete.
9142 * breakpoint.c (print_breakpoint_location)
9143 (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
9144 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9145 * disasm.c (dump_insns): Ditto.
9146 (do_mixed_source_and_assembly, do_assembly_only): Adjust
9147 prototype.
9148 (gdb_disassembly): Use ui_file/mem_fileopen instead of
9149 ui_stream/ui_out_stream_new.
9150 * infcmd.c (print_return_value): Ditto.
9151 * osdata.c (info_osdata_command): Don't allocate a local
9152 ui_stream.
9153 * stack.c (print_frame_arg, print_frame_args, print_frame): Use
9154 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9155 * tracepoint.c (print_one_static_tracepoint_marker): Don't
9156 allocate a local ui_stream.
9157 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
9158 instead of ui_stream/ui_out_stream_new.
9159 (list_args_or_locals): Don't allocate a local ui_stream.
9160 * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
9161 (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
9162 ui_stream/ui_out_stream_new.
9163 * cli/cli-setshow.c (do_setshow_command): Ditto.
9164
9165 2012-03-27 Oza Pawandeep <oza.pawandeep@gmail.com>
9166
9167 * arm-linux-tdep.c (arm_linux_init_abi): Call
9168 set_gdbarch_process_record. Initialize `arm_swi_record' field.
9169 * arm-tdep.c (arm_process_record): New function.
9170 (deallocate_reg_mem): New function.
9171 (decode_insn): New function.
9172 (thumb_record_branch): New function.
9173 (thumb_record_ldm_stm_swi(): New function.
9174 (thumb_record_misc): New function.
9175 (thumb_record_ld_st_stack): New function.
9176 (thumb_record_ld_st_imm_offset): New function.
9177 (thumb_record_ld_st_reg_offset(): New function.
9178 (thumb_record_add_sub_cmp_mov): New function.
9179 (thumb_record_shift_add_sub): New function.
9180 (arm_record_coproc_data_proc): New function.
9181 (arm_record_coproc): New function.
9182 (arm_record_b_bl): New function.
9183 (arm_record_ld_st_multiple): New function.
9184 (arm_record_ld_st_reg_offset): New function.
9185 (arm_record_ld_st_imm_offset): New function.
9186 (arm_record_data_proc_imm): New function.
9187 (arm_record_data_proc_misc_ld_str): New function.
9188 (arm_record_extension_space): New function.
9189 (arm_record_strx): New function.
9190 (sbo_sbz): New function.
9191 (struct insn_decode_record): New structure for arm insn record.
9192 (REG_ALLOC): New macro for reg allocations.
9193 (MEM_ALLOC): New macro for memory allocations.
9194 * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
9195
9196 2012-03-27 Andreas Schwab <schwab@linux-m68k.org>
9197
9198 * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
9199 (store_register): Likewise.
9200
9201 2012-03-26 Oza Pawandeep <oza.pawandeep@gmail.com>
9202
9203 * MAINTAINERS (Write After Approval): Add myself to the list.
9204
9205 2012-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
9206
9207 * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
9208 Describe also the option "auto".
9209
9210 2012-03-22 Richard Henderson <rth@redhat.com>
9211
9212 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
9213 * sparc-nat.c (sparc_xfer_wcookie): Make static.
9214
9215 2012-03-22 Richard Henderson <rth@redhat.com>
9216
9217 * jit.c (jit_read_code_entry): Compute alignment and offset of
9218 int64_t member before computing entry_size.
9219
9220 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
9221
9222 Python scripting: Add new method Value.referenced_value to
9223 gdb.Value which can dereference pointer as well as reference
9224 values.
9225 * NEWS: Add entry under 'Python scripting' about the new method
9226 Value.referenced_value on gdb.Value objects.
9227 * python/py-value.c (valpy_referenced_value): New function
9228 defining a new method on gdb.Value objects which can dereference
9229 pointer and reference values.
9230
9231 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
9232
9233 * MAINTAINERS (Write After Approval): Add myself to the list.
9234
9235 2012-03-21 Kevin Buettner <kevinb@redhat.com>
9236
9237 * symtab.c (skip_prologue_sal): Change test to check for "main()"
9238 in addition to "main".
9239
9240 2012-03-21 Joel Brobecker <brobecker@adacore.com>
9241
9242 * expression.h (op_name): Add declaration.
9243 * expprint.c (op_name): Remove declaration. Make non-static.
9244 * ax-gdb.c (gen_expr): Use op_name instead of op_string.
9245
9246 2012-03-21 Thomas Schwinge <thomas@codesourcery.com>
9247
9248 * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
9249 of struct siginfo.
9250 * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
9251 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
9252 * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
9253 (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
9254 (linux_nat_get_siginfo): Likewise.
9255 * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
9256 (linux_nat_get_siginfo): Likewise.
9257 * linux-tdep.c (linux_get_siginfo_type): Likewise.
9258 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
9259 * procfs.c (gdb_siginfo_t): Likewise.
9260
9261 2012-03-21 Mike Frysinger <vapier@gentoo.org>
9262
9263 * .gitignore: Ignore more files.
9264
9265 2012-03-20 Pedro Alves <palves@redhat.com>
9266
9267 * remote.c (remote_start_remote): Clear `rs->starting_up' on early
9268 returns.
9269
9270 2012-03-20 Yao Qi <yao@codesourcery.com>
9271
9272 * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
9273 comment.
9274
9275 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9276
9277 Code cleanupp: Use cu_offset and sect_offset compile time type checking.
9278 * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
9279 (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
9280 sect_offset.
9281 * dwarf2expr.h (cu_offset, sect_offset): New types.
9282 (struct dwarf_expr_context_funcs) <dwarf_call>
9283 (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
9284 sect_offset.
9285 (struct dwarf_expr_context) <len>: Improve the comment.
9286 (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
9287 cu_offset and sect_offset.
9288 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
9289 (dwarf_expr_get_base_type, needs_frame_dwarf_call)
9290 (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
9291 * dwarf2loc.h: Include dwarf2expr.h.
9292 (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
9293 and sect_offset.
9294 * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
9295 Improve the comment.
9296 (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
9297 (struct signatured_type, struct line_header, struct partial_die_info)
9298 (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
9299 (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
9300 (get_die_type_at_offset, create_cus_from_index)
9301 (create_signatured_type_table_from_index, dw2_get_file_names)
9302 (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
9303 (read_and_check_comp_unit_head, read_and_check_type_unit_head)
9304 (create_debug_types_hash_table, process_psymtab_comp_unit)
9305 (load_partial_comp_unit, create_all_comp_units)
9306 (partial_die_parent_scope, partial_die_full_name, skip_one_die)
9307 (load_full_comp_unit, dwarf2_physname, read_import_statement)
9308 (inherit_abstract_dies, read_func_scope, read_call_site_scope)
9309 (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
9310 (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
9311 (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
9312 (find_partial_die, read_attribute_value, lookup_die_type)
9313 (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
9314 (is_ref_attr): New function comment.
9315 (dwarf2_get_ref_die_offset): New function comment, new variable retval.
9316 Use cu_offset and sect_offset.
9317 (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
9318 (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
9319 (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
9320 (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
9321 (offset_and_type_hash, offset_and_type_eq, set_die_type)
9322 (get_die_type_at_offset, partial_die_hash, partial_die_eq)
9323 (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
9324 sect_offset.
9325
9326 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9327
9328 Code cleanup.
9329 * python/py-auto-load.c (source_section_scripts): New variable back_to.
9330 Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
9331 with xfree.
9332 (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
9333
9334 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9335
9336 * NEWS: Describe new options --init-command=FILE, -ix and
9337 --init-eval-command=COMMAND, -iex.
9338 * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
9339 CMDARG_INIT_COMMAND.
9340 (captured_main): New enum items OPT_IX and OPT_IEX. Add
9341 "init-command", "init-eval-command", "ix" and "iex" to the variable
9342 long_options. Handle OPT_IX and OPT_IEX. Process them from CMDARG_VEC.
9343 New comment for CMDARG_FILE and CMDARG_COMMAND processing.
9344 (print_gdb_help): Describe --init-command=FILE, -ix and
9345 --init-eval-command=COMMAND, -iex.
9346
9347 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9348
9349 Code cleanup.
9350 * main.c (struct cmdarg): Move it here from main. Add more comments.
9351 (cmdarg_s, VEC (cmdarg_s)): New.
9352 (main): Move struct cmdarg from here. New variables cmdarg_vec and
9353 cmdarg_p. Remove variables cmdsize and ncmd and their initialization.
9354 Install cleanup for cmdarg_vec. Update filling for options 'x' and
9355 'X'. Replace cmdarg processing by cmdarg_vec processing. Remove xfree
9356 of CMDARG.
9357
9358 2012-03-19 Tom Tromey <tromey@redhat.com>
9359
9360 * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
9361
9362 2012-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
9363
9364 PR symtab/13777
9365 * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
9366 GCC >=4.5.
9367
9368 2012-03-16 Chris January <chris.january@allinea.com>
9369
9370 * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
9371 of clear.
9372
9373 2012-03-16 Chris January <chris.january@allinea.com>
9374
9375 * source.c (add_path): Use memmove instead of strcpy because the
9376 strings overlap.
9377
9378 2012-03-16 Joel Brobecker <brobecker@adacore.com>
9379
9380 * value.h (set_value_parent): Add declaration.
9381 * value.c (set_value_parent): New function.
9382 (value_address): If VALUE->PARENT is not NULL, then use it as
9383 the base address instead of VALUE->LOCATION.address.
9384 * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
9385 the same as OBJ's address. Adjust V's offset accordingly.
9386 Set V's parent.
9387
9388 2012-03-16 Gary Benson <gbenson@redhat.com>
9389
9390 PR breakpoints/10738
9391 * dwarf2read.c (use_deprecated_index_sections): New global.
9392 (struct partial_die_info): New member may_be_inlined.
9393 (read_partial_die): Set may_be_inlined where appropriate.
9394 (add_partial_subprogram): Add partial symbols for partial
9395 DIEs that may be inlined.
9396 (new_symbol_full): Add inlined subroutines to the current
9397 scope.
9398 (write_psymtabs_to_index): Bump version number.
9399 (dwarf2_read_index): Read only version 6 indices unless
9400 use_deprecated_index_sections is set.
9401 * linespec.c (symbol_and_data_callback): New structure.
9402 (iterate_inline_only): New function.
9403 (iterate_over_all_matching_symtabs): New argument
9404 "include_inline". If nonzero, also call the callback for
9405 symbols representing inlined subroutines.
9406 (lookup_prefix_sym): Pass extra argument to the above.
9407 (find_function_symbols): Likewise.
9408 (add_matching_symbols_to_info): Likewise.
9409 * NEWS: Mention that GDB can now set breakpoints on inlined
9410 functions.
9411
9412 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
9413
9414 * p-typeprint.c (pascal_type_print_method_args):
9415 Fix display of parameter of methods.
9416
9417 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
9418
9419 * amd64-windows-nat.c (_initialize_amd64_windows_nat):
9420 Add missing prototype.
9421
9422 2012-03-16 Yao Qi <yao@codesourcery.com>
9423 Jan Kratochvil <jan.kratochvil@redhat.com>
9424
9425 Fix false compilation warning.
9426 * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
9427
9428 2012-03-15 Jonathan Larmour <jifl@eCosCentric.com>
9429 Pedro Alves <pedro@codesourcery.com>
9430
9431 * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
9432 (arm_register_g_packet_guesses): New function.
9433 (arm_gdbarch_init): Don't force a target description with
9434 registers when the executable is detected as M-profile. Instead
9435 set gdbarch->tdep->is_m. Register `g' packet guesses.
9436 (_initialize_arm_tdep): Initialize the new target description.
9437 * features/arm-with-m-fpa-layout.xml: New description.
9438 * features/arm-with-m-fpa-layout.c: New, generated.
9439
9440 2012-03-15 Joel Brobecker <brobecker@adacore.com>
9441
9442 * breakpoint.c (breakpoint_xfer_memory): Add assertion.
9443 Update function description.
9444 (insert_bp_location): Do not wipe bl->target_info out.
9445 * mem-break.c: #include "gdb_string.h".
9446 (default_memory_insert_breakpoint): Do not call target_read_memory
9447 with a pointer to the breakpoint's shadow_contents buffer. Use
9448 a local buffer instead.
9449 * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
9450
9451 2012-03-15 Tom Tromey <tromey@redhat.com>
9452
9453 * NEWS: Mention "info vtbl", not "info vtable".
9454 * cp-support.c (info_vtbl_command): Fix comment.
9455 (_initialize_cp_support): Fix text.
9456
9457 2012-03-15 Tom Tromey <tromey@redhat.com>
9458
9459 * cp-valprint.c (cp_print_value_fields): Use
9460 print_function_pointer_address for vtable slot.
9461
9462 2012-03-15 Tom Tromey <tromey@redhat.com>
9463
9464 * gnu-v3-abi.c (struct value_and_voffset): New.
9465 (hash_value_and_voffset, eq_value_and_voffset)
9466 (compare_value_and_voffset, compute_vtable_size)
9467 (print_one_vtable, gnuv3_print_vtable): New functions.
9468 (init_gnuv3_ops): Initialize 'print_vtable' field.
9469 * cp-support.c (info_vtbl_command): New function.
9470 (_initialize_cp_support): Add "info vtbl".
9471 * cp-abi.h (cplus_print_vtable): Declare.
9472 (struct cp_abi_ops) <print_vtable>: New field.
9473 * cp-abi.c (cplus_print_vtable): New function.
9474 * NEWS: Update.
9475
9476 2012-03-15 Tom Tromey <tromey@redhat.com>
9477
9478 * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
9479 iterate_over_symbols.
9480
9481 2012-03-14 Doug Evans <dje@google.com>
9482
9483 * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
9484 DW_OP_GNU_parameter_ref.
9485
9486 2012-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9487
9488 Fix double prompt of 'interpreter-exec mi'.
9489 * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
9490 (mi_interpreter_resume): use it.
9491 (mi_execute_command_input_handler): New function.
9492 * mi/mi-main.c (mi_execute_command): Move prompt printing to
9493 mi_execute_command_input_handler.
9494
9495 2012-03-13 Josh Matthews <josh@joshmatthews.net> (tiny change)
9496
9497 * darwin-nat-info.c (_initialize_darwin_info_commands): Add
9498 prototype.
9499 (darwin_debug_port_info): Make static.
9500 * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
9501 * machoread.c (_initialize_machoread): Add prototype.
9502 * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
9503 (i386_darwin_set_control, i386_darwin_get_control)
9504 i386_darwin_dr_set_addr, i386_darwin_get_addr)
9505 i386_darwin_get_status, i386_darwin_get_control):
9506 Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
9507
9508 2012-03-13 Joel Brobecker <brobecker@adacore.com>
9509
9510 * ax-gdb.c (gen_usual_unary): Remove special handling of
9511 enum and bool types.
9512
9513 2012-03-13 Joel Brobecker <brobecker@adacore.com>
9514
9515 * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
9516
9517 2012-03-13 Joel Brobecker <brobecker@adacore.com>
9518
9519 * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
9520
9521 2012-03-13 Chris January <chris.january@allinea.com>
9522
9523 * aix-thread.c (fill_sprs): Store the floating point registers
9524 at the correct offsets into vals.
9525
9526 2012-03-13 Doug Evans <dje@google.com>
9527
9528 * NEWS: Mention symbol-reloading has been deleted.
9529 * symfile.c (symbol_reloading): Delete.
9530 (show_symbol_reloading): Delete.
9531 (_initialize_symfile): Delete set/show symbol-reloading.
9532
9533 * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
9534 read_in_chain until we have successfully read it in.
9535 (load_full_comp_unit): Ditto.
9536 (read_signatured_type): Add comment.
9537
9538 2012-03-13 Chris January <chris.january@allinea.com>
9539
9540 * stabsread.c (fix_common_block): Change type of valu argument
9541 to CORE_ADDR.
9542
9543 2012-03-13 Chris January <chris.january@allinea.com>
9544
9545 * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
9546 instruction.
9547
9548 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9549
9550 * common/linux-procfs.c (linux_proc_get_int): New, from
9551 linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
9552 field.
9553 (linux_proc_get_tgid): Only call linux_proc_get_int.
9554 (linux_proc_get_tracerpid): New.
9555 (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
9556 (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
9557 linux_proc_pid_has_state.
9558 * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
9559 * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
9560 (linux_ptrace_attach_warnings): New.
9561 * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
9562 New declaration.
9563 * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
9564 (linux_nat_attach): New variables ex, buffer, message and message_s.
9565 Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
9566
9567 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9568
9569 * Makefile.in (linux-ptrace.o): New.
9570 * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
9571 from linux-nat.c.
9572 * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
9573 * common/linux-ptrace.c: New file.
9574 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
9575 * config/arm/linux.mh: Likewise.
9576 * config/i386/linux.mh: Likewise.
9577 * config/i386/linux64.mh: Likewise.
9578 * config/ia64/linux.mh: Likewise.
9579 * config/m32r/linux.mh: Likewise.
9580 * config/m68k/linux.mh: Likewise.
9581 * config/mips/linux.mh: Likewise.
9582 * config/pa/linux.mh: Likewise.
9583 * config/powerpc/linux.mh: Likewise.
9584 * config/powerpc/ppc64-linux.mh: Likewise.
9585 * config/powerpc/spu-linux.mh: Likewise.
9586 * config/s390/s390.mh: Likewise.
9587 * config/sparc/linux.mh: Likewise.
9588 * config/sparc/linux64.mh: Likewise.
9589 * config/xtensa/linux.mh: Likewise.
9590 * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
9591 common/linux-procfs.c.
9592 (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
9593
9594 2012-03-13 Hui Zhu <teawater@gmail.com>
9595 Pedro Alves <palves@redhat.com>
9596
9597 * breakpoint.c (init_breakpoint_sal): New flags parameter. Handle
9598 CREATE_BREAKPOINT_FLAGS_INSERTED.
9599 (create_breakpoint_sal, create_breakpoints_sal)
9600 (base_breakpoint_create_breakpoints_sal)
9601 (tracepoint_create_breakpoints_sal)
9602 (strace_marker_create_breakpoints_sal): New flags parameter. Pass
9603 down.
9604 (break_command_1, handle_gnu_v3_exceptions, trace_command)
9605 (ftrace_command, strace_command): Adjust.
9606 (create_tracepoint_from_upload): Pass
9607 CREATE_BREAKPOINT_FLAGS_INSERTED.
9608 * breakpoint.h (enum breakpoint_create_flags): New.
9609 (create_breakpoint): New flags parameter.
9610 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
9611 * python/py-breakpoint.c (bppy_init): Adjust.
9612 * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
9613 * spu-tdep.c (spu_catch_start): Adjust.
9614
9615 2012-03-13 Pedro Alves <palves@redhat.com>
9616 Hui Zhu <teawater@gmail.com>
9617 Yao Qi <yao@codesourcery.com>
9618
9619 * remote.c (struct remote_state): New field `starting_up'.
9620 (remote_start_remote): Set and clear it.
9621 (remote_can_download_tracepoint): If starting up, return false.
9622
9623 2012-03-13 Yao Qi <yao@codesourcery.com>
9624
9625 * inferior.h (struct inferior): Remove fields any_syscall_count,
9626 syscalls_counts and total_syscalls_count. Move them to new
9627 struct catch_syscall_inferior_data in breakpoint.c.
9628 * breakpoint.c: Call DEF_VEC_I(int).
9629 (struct catch_syscall_inferior_data): New.
9630 (get_catch_syscall_inferior_data): New.
9631 (catch_syscall_inferior_data_cleanup): New.
9632 (insert_catch_syscall): Update to access data in
9633 struct catch_syscall_inferior_data.
9634 (insert_catch_syscall): Likewise.
9635 (remove_catch_syscall): Likewise.
9636 (remove_catch_syscall): Likewise.
9637 (is_syscall_catchpoint_enabled): Likewise.
9638 (add_catch_command): Likewise.
9639 (_initialize_breakpoint): Register cleanup.
9640 * breakpoint.h: Removed DEF_VEC_I(int).
9641 * dwarf2loc.c: Call DEF_VEC_I(int).
9642 * mi/mi-main.c: Likewise.
9643
9644 2012-03-12 Mark Kettenis <kettenis@gnu.org>
9645
9646 * inf-ptrace.c (inf_ptrace_post_attach): Make static.
9647
9648 2012-03-12 Chris January <chris.january@allinea.com>
9649
9650 * aix-thread.c (_initialize_aix_thread): Add prototype.
9651 * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
9652 * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
9653
9654 2012-03-12 Joel Brobecker <brobecker@adacore.com>
9655
9656 * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
9657 include of "amd64-nat.h".
9658
9659 2012-03-12 Tom Tromey <tromey@redhat.com>
9660
9661 * buildsym.c (record_pending_block): Now static.
9662 * buildsym.h: (record_pending_block): Remove.
9663
9664 2012-03-12 Andreas Tobler <andreast@fgznet.ch>
9665
9666 * amd64bsd-nat.c: Include amd64bsd-nat.h.
9667
9668 2012-03-09 Tom Tromey <tromey@redhat.com>
9669
9670 * dwarf2read.c (struct dwarf2_cu) <checked_producer,
9671 producer_is_gxx_lt_4_6>: New fields.
9672 (producer_is_gxx_lt_4_6): Use and update producer cache fields.
9673
9674 2012-03-09 Tom Tromey <tromey@redhat.com>
9675
9676 * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
9677
9678 2012-03-08 Joel Brobecker <brobecker@adacore.com>
9679
9680 * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
9681 prototype.
9682
9683 2012-03-08 Joel Brobecker <brobecker@adacore.com>
9684
9685 * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
9686
9687 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9688
9689 Fix -Wmissing-prototypes build.
9690 * arm-linux-nat.c (get_thread_id): Make it static.
9691 * xtensa-linux-nat.c (get_thread_id): Likewise.
9692
9693 2012-03-08 Joel Brobecker <brobecker@adacore.com>
9694
9695 * server.c (process_point_options): If a conditional expression
9696 is found, only print a message if remote_debug is nonzero.
9697
9698 2012-03-08 Luis Machado <lgustavo@codesourcery.com>
9699
9700 * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
9701 of internal error for unknown/unsupported types.
9702
9703 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9704
9705 Fix CU relative vs. absolute DIE offsets.
9706 * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
9707 offset to offset_in_cu.
9708 * dwarf2read.c (process_enumeration_scope): Add CU offset to
9709 TYPE_OFFSET.
9710 (dwarf2_fetch_die_location_block): Rename parameter offset to
9711 offset_in_cu. New variable offset, add CU offset to OFFSET_IN_CU.
9712
9713 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9714
9715 * libunwind-frame.c: Rename to ...
9716 * ia64-libunwind-tdep.c: ... here.
9717 * libunwind-frame.h: Rename to ...
9718 * ia64-libunwind-tdep.h: ... here.
9719 * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
9720 ia64-libunwind-tdep.h.
9721 (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
9722 * README (--with-libunwind): Rename to ...
9723 (--with-libunwind-ia64): ... here, note it is ia64 specific now.
9724 * config.in: Regenerate.
9725 * configure: Regenerate.
9726 * configure.ac: New option --with-libunwind-ia64, make the
9727 AS_HELP_STRING ia64 specific. Deprecate option --with-libunwind.
9728 Remove AC_DEFINE for HAVE_LIBUNWIND.
9729 * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
9730 Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
9731 Rename libunwind-frame in the general comment.
9732 * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
9733 Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
9734 Move forward declarations inside #ifndef. Rename libunwind-frame in
9735 the general comment.
9736 * ia64-tdep.c: Rename libunwind-frame.h #include to
9737 ia64-libunwind-tdep.h.
9738 (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
9739 (ia64_libunwind_descr): Rename libunwind-frame to
9740 ia64-libunwind-tdep in these function comments.
9741 * ia64-tdep.h: Rename libunwind-frame.h #include to
9742 ia64-libunwind-tdep.h.
9743 * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
9744 ia64-libunwind-tdep in that data comment.
9745
9746 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9747
9748 * libunwind-frame.h (struct frame_unwind): New declaration.
9749
9750 2012-03-08 Joel Brobecker <brobecker@adacore.com>
9751
9752 * breakpoint.c (_initialize_breakpoint): Fix error in help of
9753 "set breakpoint condition-evaluation" command.
9754
9755 2012-03-08 Tristan Gingold <gingold@adacore.com>
9756
9757 * sparc-stub.c: Move to stubs/
9758 * sh-stub.c: Likewise.
9759 * m68k-stub.c: Likewise.
9760 * m32r-stub.c: Likewise.
9761 * i386-stub.c: Likewise.
9762
9763 2012-03-08 Andreas Schwab <schwab@linux-m68k.org>
9764
9765 * m68klinux-tdep.c (m68k_linux_init_abi): Register
9766 linux_get_siginfo_type.
9767
9768 * m68klinux-nat.c: Include "gdb_proc_service.h".
9769 (PTRACE_GET_THREAD_AREA): Define.
9770 (ps_get_thread_area): New function.
9771
9772 2012-03-08 Yao Qi <yao@codesourcery.com>
9773
9774 * remote.c (remote_get_noisy_reply): Replace `sprintf' with
9775 `xsnprintf'.
9776 (remote_query_attached): Likewise.
9777 (remote_static_tracepoint_marker_at): Likewise.
9778 (remote_set_permissions): Likewise.
9779 (remote_detach_1, extended_remote_attach_1): Likewise.
9780 (send_g_packet, remote_vkill): Likewise.
9781 (extended_remote_disable_randomization): Likewise.
9782 (remote_add_target_side_condition): Likewise.
9783 (remote_insert_breakpoint): Likewise.
9784 (remote_remove_breakpoint): Likewise.
9785 (remote_insert_watchpoint): Likewise.
9786 (remote_remove_watchpoint): Likewise.
9787 (remote_insert_hw_breakpoint): Likewise.
9788 (remote_insert_hw_breakpoint): Likewise.
9789 (remote_remove_hw_breakpoint): Likewise.
9790 (remote_download_command_source): Likewise.
9791 (remote_download_tracepoint): Likewise.
9792 (remote_download_trace_state_variable): Likewise.
9793 (remote_disable_tracepoint): Likewise.
9794 (remote_trace_set_readonly_regions): Likewise.
9795 (remote_get_tracepoint_status): Likewise.
9796 (remote_trace_find): Likewise.
9797 (remote_get_trace_state_variable_value): Likewise.
9798 (remote_set_disconnected_tracing): Likewise.
9799 (remote_set_circular_trace_buffer): Likewise.
9800 (remote_get_min_fast_tracepoint_insn_len): Likewise.
9801 (remote_use_agent): Likewise.
9802 (remote_add_target_side_condition): Add one parameter BUF_SIZE.
9803 Update callers.
9804
9805 2012-03-07 Pedro Alves <palves@redhat.com>
9806
9807 * NEWS: Mention QProgramSignals.
9808 * inferior.h (update_signals_program_target): Declare.
9809 * infrun.c: (update_signals_program_target): New.
9810 (handle_command): Update the target of the new program signals
9811 array changes.
9812 * remote.c (PACKET_QProgramSignals): New enum.
9813 (last_program_signals_packet): New global.
9814 (remote_program_signals): New.
9815 (remote_start_remote): Update the target with the program signals
9816 list.
9817 (remote_protocol_features): Add entry for QPassSignals.
9818 (remote_open_1): Free anc clear last_program_signals_packet.
9819 (init_remote_ops): Install remote_program_signals.
9820 * target.c (update_current_target): Adjust.
9821 (target_program_signals): New.
9822 * target.h (struct target_ops) <to_program_signals>: New field.
9823 (target_program_signals): Declare.
9824
9825 2012-03-07 Pedro Alves <palves@redhat.com>
9826
9827 * NEWS: Add subtitle for new z0/z1 conditional breakpoint
9828 extensions.
9829
9830 2012-03-07 Andreas Schwab <schwab@linux-m68k.org>
9831
9832 * m68klinux-nat.c (getregs_supplies): Make static.
9833 (getfpregs_supplies): Likewise.
9834 (have_ptrace_getregs): Likewise.
9835
9836 2012-03-06 Joel Brobecker <brobecker@adacore.com>
9837
9838 * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
9839 in call to get_die_type_at_offset.
9840
9841 2012-03-06 Stan Shebs <stan@codesourcery.com>
9842
9843 * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
9844 * mi/mi-cmd-disas.c: Ditto.
9845 * mi/mi-cmd-env.c: Ditto.
9846 * mi/mi-cmd-file.c: Ditto.
9847 * mi/mi-cmd-stack.c: Ditto.
9848 * mi/mi-cmd-target.c: Ditto.
9849 * mi/mi-cmd-var.c: Ditto.
9850 * mi/mi-cmds.c: Ditto.
9851 * mi/mi-cmds.h: Ditto.
9852 * mi/mi-console.c: Ditto.
9853 * mi/mi-getopt.c: Ditto.
9854 * mi/mi-getopt.h: Ditto.
9855 * mi/mi-interp.c: Ditto.
9856 * mi/mi-main.c: Ditto.
9857 * mi/mi-out.c: Ditto.
9858 * mi/mi-parse.c: Ditto.
9859 * mi/mi-parse.h: Ditto.
9860 * mi/mi-symbol-cmds.c: Ditto.
9861
9862 * mi/mi-getopt.h: Move mi_opt struct up.
9863 * mi/mi-main.c (captured_mi_execute_command): Remove redundant
9864 return.
9865 * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
9866
9867 2012-03-06 Tom Tromey <tromey@redhat.com>
9868
9869 * proc-service.c (ps_pglobal_lookup): Set the current program
9870 space.
9871
9872 2012-03-06 Pedro Alves <palves@redhat.com>
9873
9874 * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
9875
9876 2012-03-05 Joel Brobecker <brobecker@adacore.com>
9877
9878 * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
9879
9880 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
9881
9882 Code cleanup.
9883 * common/linux-osdata.c (linux_common_core_of_thread): New function
9884 comment.
9885 * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
9886 call by linux_common_core_of_thread.
9887 (linux_nat_core_of_thread_1): Remove.
9888 * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
9889 * linux-thread-db.c: Include linux-osdata.h.
9890 (update_thread_core): Replace linux_nat_core_of_thread_1 call by
9891 linux_common_core_of_thread.
9892
9893 2012-03-05 Tom Tromey <tromey@redhat.com>
9894
9895 * value.c (value_primitive_field): Don't fetch contents for
9896 non-virtual bases.
9897
9898 2012-03-05 Tom Tromey <tromey@redhat.com>
9899
9900 * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
9901
9902 2012-03-05 Andreas Arnez <arnez@linux.vnet.ibm.com>
9903
9904 * s390-nat.c: Include "gregset.h".
9905
9906 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
9907
9908 * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
9909 [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
9910 (libunwind_load): New variable so_error, use it for dlerror. Try to
9911 load also LIBUNWIND_SO_7.
9912
9913 2012-03-05 Pedro Alves <palves@redhat.com>
9914
9915 * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
9916 is not NULL, and remove resulting dead code.
9917
9918 2012-03-05 Thomas Schwinge <thomas@codesourcery.com>
9919
9920 * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
9921 prologue to sh_analyze_prologue.
9922 (sh_analyze_prologue): Make better use of such an upper limit, and
9923 generally be more cautious about accessing memory.
9924
9925 2012-03-05 Tom Tromey <tromey@redhat.com>
9926
9927 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
9928 _initialize_ia64_hpux_tdep.
9929
9930 2012-03-05 Pedro Alves <palves@redhat.com>
9931
9932 PR gdb/13766
9933
9934 * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
9935 the register state is clear, supply explicit zero, instead of
9936 marking the register unavailable.
9937
9938 2012-03-05 Tristan Gingold <gingold@adacore.com>
9939
9940 * NEWS: Mention OpenVMS ia64 new target.
9941
9942 2012-03-05 Tristan Gingold <gingold@adacore.com>
9943
9944 * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
9945 (ia64_unw_accessors, ia64_unw_rse_accessors)
9946 (ia64_libunwind_descr): Declare.
9947 * ia64-vms-tdep.c: New file.
9948 * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
9949 (ia64_libunwind_descr): Make them public.
9950 * configure.tgt: Add ia64-*-*vms*.
9951 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
9952 (ALLDEPFILES): Add ia64-vms-tdep.c
9953
9954 2012-03-05 Tristan Gingold <gingold@adacore.com>
9955
9956 * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
9957 * remote.c (PACKET_qXfer_uib): New enum value.
9958 (remote_protocol_features): Add entry for PACKET_qXfer_uib.
9959 (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
9960 (_initialize_remote): Call add_packet_config_cmd for
9961 xfer:uib packet.
9962
9963 2012-03-05 Tristan Gingold <gingold@adacore.com>
9964
9965 * osabi.c (gdb_osabi_names): Add OpenVMS.
9966 (generic_elf_osabi_sniffer): Likewise.
9967 * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
9968
9969 2012-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
9970
9971 Removed unused code.
9972 * libunwind-frame.c (libunwind_frame_unwind)
9973 (libunwind_frame_base_address): Remove.
9974 * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
9975
9976 2012-03-04 Yao Qi <yao@codesourcery.com>
9977
9978 * common/agent.c (gdb_connect_sync_socket): Add _ markup and
9979 remove trailing new line.
9980 (agent_run_command, agent_run_command): Add _ markup.
9981 (agent_capability_check): Likewise.
9982
9983 2012-03-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9984
9985 * breakpoint.c (set_condition_evaluation_mode): Set
9986 CONDITION_EVALUATION_MODE unconditionally.
9987
9988 2012-03-03 Yao Qi <yao@codesourcery.com>
9989
9990 * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
9991 * common/agent.h: Update declaration.
9992 * inf-child.c (inf_child_use_agent): New.
9993 (inf_child_can_use_agent): New.
9994 (inf_child_target): Initialize fields `to_use_agent'
9995 and `to_can_use_agent'.
9996 * agent.c (agent_new_objfile): New.
9997 (_initialize_agent): Add agent_new_objfile to new_objfile
9998 observer.
9999
10000 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
10001 New.
10002 (linux_target_install_ops): Initialize field
10003 `to_static_tracepoint_markers_by_strid'.
10004 * remote.c (free_current_marker): Move it to ...
10005 * tracepoint.c (free_current_marker): ... here. New.
10006 (cleanup_target_stop): New.
10007 * tracepoint.h: Declare free_current_marker.
10008 * NEWS: Add one entry about `info static-tracepoint-marker'.
10009
10010 2012-03-03 Yao Qi <yao@codesourcery.com>
10011
10012 * common/agent.c (agent_loaded_p): New.
10013 (agent_look_up_symbols): New global.
10014 * common/agent.h: Declare agent_loaded_p.
10015
10016 2012-03-03 Yao Qi <yao@codesourcery.com>
10017
10018 * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
10019 (agent_capability_check, agent_capability_invalidate): New.
10020 (symbol_list): New array element.
10021 * common/agent.h (enum agent_capa): New.
10022 * target.c (target_pre_inferior): Call agent_capability_invalidate.
10023
10024 2012-03-03 Yao Qi <yao@codesourcery.com>
10025
10026 * target.h (struct target_ops) <to_use_agent>: New field.
10027 (struct target_ops) <to_can_use_agent>: New field.
10028 (target_use_agent, target_can_use_agent): New macro.
10029 * target.c (update_current_target): Update.
10030 * remote.c: New enum `PACKET_QAgent'.
10031 (remote_protocol_features): Add a new element.
10032 (remote_use_agent, remote_can_use_agent): New.
10033 (init_remote_ops): Initialize field `can_use_agent' with
10034 remote_can_use_agent. Intiailize field `use_agent' with
10035 remote_use_agent.
10036 * common/agent.c (use_agent): New global.
10037 * common/agent.h: Declare it.
10038 * tracepoint.c (info_static_tracepoint_markers_command): Add
10039 comment.
10040 * Makefile.in (SFILES): Add common/agent.c and agent.c.
10041 (COMMON_OBS): Add common/agent.o and agent.o
10042 (common-agent.o): New rule.
10043 * agent.c: New.
10044
10045 2012-03-03 Yao Qi <yao@codesourcery.com>
10046
10047 * common/agent.c: New.
10048 * common/agent.h: New.
10049 * configure.ac: Add `sys/socket.h' and `sys/un.h' to
10050 AC_CHECK_HEADERS.
10051 * configure, configh.in: Regenerated.
10052
10053 2012-03-02 Kevin Buettner <kevinb@redhat.com>
10054
10055 * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
10056 unless it exists for this architecture.
10057
10058 2012-03-02 Joel Brobecker <brobecker@adacore.com>
10059
10060 * language.h (struct language_defn): New "method" la_read_var_value.
10061 * findvar.c: #include "language.h".
10062 (default_read_var_value): Renames read_var_value. Rewrite
10063 function description.
10064 (read_var_value): New function.
10065 * value.h (default_read_var_value): Add prototype.
10066 * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
10067 New functions.
10068 (ada_language_defn): Add entry for la_read_var_value.
10069 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
10070 * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
10071 language_defn structures to add entry for new la_read_var_value
10072 field.
10073
10074 2012-03-02 Tom Tromey <tromey@redhat.com>
10075 Pedro Alves <palves@redhat.com>
10076
10077 PR breakpoints/13776:
10078 * breakpoint.c (breakpoint_init_inferior): Delete step-resume
10079 breakpoints.
10080 (delete_longjmp_breakpoint_at_next_stop): New.
10081 * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
10082 * target.c (generic_mourn_inferior): Call mark_breakpoints_out
10083 before deleting the inferior. Add comments.
10084 * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
10085 breakpoints immediately, but only on next stop. Move that code
10086 next to where we mark other breakpoints for deletion.
10087
10088 2012-03-02 Joel Brobecker <brobecker@adacore.com>
10089
10090 * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
10091 marker.
10092 * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
10093 violation.
10094
10095 2012-03-02 Pedro Alves <palves@redhat.com>
10096
10097 * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
10098
10099 2012-03-02 Ulrich Weigand <uweigand@de.ibm.com>
10100
10101 Fix -Wmissing-prototypes build.
10102 * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
10103 * remote-sim.c (gdbsim_has_all_memory): Likewise.
10104 (gdbsim_has_memory): Likewise.
10105
10106 2012-03-02 Yao Qi <yao@codesourcery.com>
10107
10108 Fix -Wmissing-prototypes build.
10109 * charset.c (phony_iconv_open): Make static.
10110 (phony_iconv_close, phony_iconv): Likewise.
10111 * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
10112 * i386-windows-nat.c (_initialize_i386_windows_nat): New
10113 prototype.
10114 * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
10115 * ser-mingw.c (create_select_thread): Make static.
10116 * windows-termcap.c (tgetent): New prototype.
10117 (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
10118
10119 2012-03-02 Zhang Yuanhui <asmwarrior@gmail.com>
10120
10121 Fix -Wmissing-prototypes build.
10122 * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
10123 (_initialize_windows_nat, _initialize_check_for_gdb_ini)
10124 (_initialize_loadable): New prototypes.
10125
10126 2012-03-02 Doug Evans <dje@google.com>
10127
10128 * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
10129 abbrev table, read_comp_unit will do it.
10130
10131 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10132
10133 Fix -Wmissing-prototypes build.
10134 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
10135 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
10136 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
10137 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
10138 (_initialize_arm_symbian_tdep): New prototype.
10139 * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
10140 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
10141 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
10142 static.
10143 * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
10144 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
10145 prototype.
10146 * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
10147 (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
10148 * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
10149 static.
10150 * moxie-tdep.c (moxie_process_record): Likewise.
10151 * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
10152 (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
10153 * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
10154 (_initialize_rl78_tdep): New prototype.
10155 * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
10156 (_initialize_rx_tdep): New prototype.
10157 * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
10158 (_initialize_darwin_solib): New prototype.
10159 * solib-spu.c: Include solib-spu.h.
10160 (_initialize_spu_solib): New prototype.
10161 * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
10162 * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
10163 (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
10164 (tic6x_software_single_step): Make it static.
10165 (_initialize_tic6x_tdep): New prototype.
10166
10167 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10168
10169 Fix -Wmissing-prototypes build.
10170 * cris-tdep.c (cris_can_use_hardware_watchpoint)
10171 (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
10172
10173 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10174
10175 Fix -Wmissing-prototypes build.
10176 * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
10177 (frv_have_stopped_data_address): Remove.
10178
10179 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10180
10181 Fix -Wmissing-prototypes build.
10182 * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
10183 * sh-tdep.c: Include sh64-tdep.h.
10184 * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
10185 * sh64-tdep.c: Include sh64-tdep.h.
10186 * sh64-tdep.h: New file.
10187
10188 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
10189
10190 * mips-tdep.c (mips32_scan_prologue): Correct indentation.
10191
10192 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
10193
10194 * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
10195 sp_regnum once the gdbarch_init_osabi hook has been called.
10196
10197 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
10198
10199 * mips-tdep.c (mips32_bc1_pc): New function.
10200 (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
10201 BPOSGE32 and BPOSGE64 instructions.
10202 (deal_with_atomic_sequence): Likewise.
10203 (mips32_instruction_has_delay_slot): Likewise.
10204
10205 2012-03-01 Maciej W. Rozycki <macro@mips.com>
10206 Chris Dearman <chris@mips.com>
10207 Maciej W. Rozycki <macro@codesourcery.com>
10208 Joseph Myers <joseph@codesourcery.com>
10209
10210 * features/mips-dsp.xml: New file.
10211 * features/mips64-dsp.xml: New file.
10212 * features/mips-dsp-linux.xml: New file.
10213 * features/mips64-dsp-linux.xml: New file.
10214 * features/Makefile (WHICH): Add mips-dsp-linux and
10215 mips64-dsp-linux.
10216 (mips-dsp-expedite, mips64-dsp-expedite): New variables.
10217 * features/mips-dsp-linux.c: New file.
10218 * features/mips64-dsp-linux.c: New file.
10219 * regformats/mips-dsp-linux.dat: New file.
10220 * regformats/mips64-dsp-linux.dat: New file.
10221 * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
10222 registers.
10223 (mips64_linux_register_addr): Likewise.
10224 (mips64_linux_regsets_fetch_registers): Likewise.
10225 (mips64_linux_regsets_store_registers): Likewise.
10226 (mips64_linux_fetch_registers): Update call to
10227 mips64_linux_regsets_fetch_registers.
10228 (mips64_linux_store_registers): Update call to
10229 mips64_linux_regsets_store_registers.
10230 (mips_linux_read_description): Probe for DSP registers.
10231 (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
10232 and initialize_tdesc_mips64_dsp_linux.
10233 * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
10234 Remove padding of no longer used embedded register slots.
10235 * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
10236 (MIPS_RESTART_REGNUM): Redefine enum value.
10237 * mips-tdep.c (mips_generic_reg_names): Remove trailing null
10238 strings.
10239 (mips_tx39_reg_names): Likewise.
10240 (mips_linux_reg_names): New array of register names for Linux
10241 targets.
10242 (mips_register_name): Check for a null pointer in
10243 mips_processor_reg_names and return an empty string.
10244 (mips_register_type): Exclude embedded registers for the IRIX
10245 and Linux ABIs.
10246 (mips_pseudo_register_type): Likewise. Use dynamic numbers to
10247 refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle
10248 DSP registers.
10249 (mips_stab_reg_to_regnum): Handle DSP accumulators.
10250 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
10251 (mips_gdbarch_init): Likewise. Initialize internal register
10252 indices for the Linux ABI. Use dynamic numbers to refer to
10253 registers, as applicable, while parsing the target description.
10254 * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
10255
10256 2012-03-01 Joel Brobecker <brobecker@adacore.com>
10257
10258 * frame.h (read_frame_register_unsigned): Fix typo in function
10259 description.
10260
10261 2012-03-01 Pedro Alves <palves@redhat.com>
10262
10263 * jit-reader.in [!__cplusplus]
10264 (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
10265
10266 2012-03-01 Pedro Alves <palves@redhat.com>
10267
10268 * configure.ac (build_warnings): Add -Wmissing-prototypes.
10269 * configure: Regenerate.
10270
10271 2012-03-01 Pedro Alves <palves@redhat.com>
10272
10273 * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
10274 * breakpoint.c (create_exception_master_breakpoint, trace_command)
10275 (ftrace_command, strace_command): Make static.
10276 * d-lang.c (_initialize_d_language): Declare.
10277 * dwarf2expr.c (_initialize_dwarf2expr): Declare.
10278 * dwarf2loc.c (_initialize_dwarf2loc):
10279 * dwarf2read.c (process_psymtab_comp_unit): Make static.
10280 * exec.c (exec_get_section_table): Make static.
10281 * i386-linux-tdep.c (i386_linux_record_signal): Make static.
10282 * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
10283 * inferior.c (remove_inferior_command, add_inferior_command)
10284 (clone_inferior_command): Make static.
10285 * linux-nat.c (linux_nat_thread_address_space)
10286 (linux_nat_core_of_thread): Make static.
10287 * linux-tdep.c (_initialize_linux_tdep): Declare.
10288 * objc-lang.c (_initialize_objc_lang): Declare.
10289 * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
10290 Make static.
10291 (_initialize_opencl_language): Declare.
10292 * record.c (_initialize_record): Declare.
10293 * remote.c (demand_private_info, remote_get_tib_address)
10294 (remote_supports_cond_tracepoints)
10295 (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
10296 Make static.
10297 * skip.c (_initialize_step_skip): Declare.
10298 * symtab.c (skip_prologue_using_lineinfo): Make static.
10299 * tracepoint.c (delete_trace_state_variable)
10300 (trace_variable_command, delete_trace_variable_command)
10301 (get_uploaded_tsv, find_matching_tracepoint_location)
10302 (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
10303 Make static.
10304 * value.c (pack_unsigned_long): Make static.
10305 * varobj.c (varobj_ensure_python_env): Make static.
10306 * windows-tdep.c (_initialize_windows_tdep): Declare.
10307 * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
10308
10309 2012-03-01 Pedro Alves <palves@redhat.com>
10310
10311 * linux-tdep.c (linux_has_shared_address_space): Make static. Add
10312 gdbarch parameter.
10313 (linux_init_abi): Install it as has_shared_address_space gdbarch
10314 callback.
10315
10316 2012-03-01 Pedro Alves <palves@redhat.com>
10317
10318 * observer.c (observer_test_first_notification_function)
10319 (observer_test_second_notification_function)
10320 (observer_test_third_notification_function): Add declarations.
10321
10322 2012-03-01 Pedro Alves <palves@redhat.com>
10323
10324 * common/signals.c (default_target_signal_to_host)
10325 (default_target_signal_from_host): Move ...
10326 * arch-utils.c: ... here.
10327 * arch-utils.h (default_target_signal_to_host)
10328 (default_target_signal_from_host): Declare.
10329
10330 * common/signals.c (target_signal_from_command): Move ...
10331 * infrun.c: ... here.
10332 * inferior.h (target_signal_from_command): Declare.
10333 * target.h (target_signal_from_command)
10334 (default_target_signal_from_host, default_target_signal_to_host):
10335 Delete declarations.
10336
10337 * common/signals.c (_initialize_signals): Delete.
10338
10339 2012-03-01 Pedro Alves <palves@redhat.com>
10340
10341 * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
10342 both __cplusplus and !__cplusplus.
10343
10344 2012-03-01 Pedro Alves <palves@redhat.com>
10345
10346 * psymtab.c (find_and_open_source): Delete declaration.
10347 * source.c (find_and_open_source): Move comment ...
10348 * source.h (find_and_open_source): ... to this new declaration.
10349
10350 2012-03-01 Pedro Alves <palves@redhat.com>
10351
10352 * inline-frame.c: Include inline-frame.h.
10353
10354 2012-03-01 Pedro Alves <palves@redhat.com>
10355
10356 * tui/tui-data.c (set_gen_win_origin): Delete.
10357 * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
10358 * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
10359
10360 2012-03-01 Pedro Alves <palves@redhat.com>
10361
10362 * remote.c (encode_actions): Delete declaration.
10363 * tracepoint.c (encode_actions): Make extern.
10364 * tracepoint.h (encode_actions): Declare.
10365
10366 2012-03-01 Pedro Alves <palves@redhat.com>
10367
10368 * python/py-breakpoint.c: Include python.h.
10369 * python/py-continueevent.c (create_continue_event_object): Make
10370 static.
10371 * python/py-lazy-string.c (stpy_get_type): Make static.
10372 * python/py-newobjfileevent.c (create_new_objfile_event_object):
10373 Make static.
10374 * python/py-utils.c (unicode_to_target_python_string): Make
10375 static.
10376 * python/py-value.c: Include python.h.
10377
10378 2012-03-01 Pedro Alves <palves@redhat.com>
10379
10380 * inferior.c (delete_threads_of_inferior): Delete.
10381
10382 2012-03-01 Pedro Alves <palves@redhat.com>
10383
10384 Import fallback definitions from glibc.
10385
10386 * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
10387 ps_prochandle): Forward declare.
10388 (ps_err_e): Use glibc's comments.
10389 [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
10390 (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
10391 (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
10392 (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
10393 (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
10394 (struct ps_prochandle): Adjust comment.
10395
10396 2012-03-01 Pedro Alves <palves@redhat.com>
10397
10398 * ada-lang.c (ada_modulus_from_name): Delete.
10399 * ada-lex.l (lexer_init): Make static.
10400
10401 2012-03-01 Pedro Alves <palves@redhat.com>
10402
10403 PR gdb/13767
10404
10405 * frame.c (read_frame_register_unsigned): New.
10406 * frame.h (read_frame_register_unsigned): Declare.
10407 * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
10408 Handle it.
10409 (print_i387_control_word): New parameter `control_p'. Handle it.
10410 (i387_print_float_info): Handle unavailable float registers.
10411
10412 2012-03-01 Keith Seitz <keiths@redhat.com>
10413
10414 * linespec.c (decode_line_2): Sort the list of methods
10415 alphabetically before presenting the user with a selection
10416 menu.
10417
10418 2012-03-01 Doug Evans <dje@google.com>
10419
10420 * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
10421 has_namespace_info.
10422 (dwarf2_read_abbrevs): Remove corresponding initialization.
10423
10424 2012-03-01 Scott J. Goldman <scottjg@vmware.com>
10425
10426 * NEWS: Mention new python command class gdb.COMMAND_USER.
10427 * cli/cli-cmds.c (show_user): Print error when used on a python
10428 command.
10429 (init_cli_cmds): Update documentation strings for "show user" and
10430 "set/show max-user-call-depth" to clarify that it does not apply to
10431 python commands.
10432 * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
10433 error check.
10434 (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
10435 gdb python api.
10436 * top.c (execute_command): Only execute a user-defined command as a
10437 legacy macro if c->user_commands is set.
10438
10439 2012-03-01 Tom Tromey <tromey@redhat.com>
10440
10441 * valprint.h (struct generic_val_print_decorations): New.
10442 (generic_val_print): Declare.
10443 * valprint.c (generic_val_print): New function.
10444 * p-valprint.c (p_decorations): New global.
10445 (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
10446 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
10447 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
10448 TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
10449 * m2-valprint.c (m2_decorations): New global.
10450 (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
10451 TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
10452 TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
10453 TYPE_CODE_ERROR>: Call generic_val_print.
10454 * f-valprint.c (f_decorations): New global.
10455 (f_val_print): Use print_function_pointer_address.
10456 <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
10457 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
10458 TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
10459 generic_val_print.
10460 * c-valprint.c (c_decorations): New global.
10461 (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
10462 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
10463 TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
10464 TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
10465 TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
10466 * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
10467 case.
10468
10469 2012-03-01 Tom Tromey <tromey@redhat.com>
10470
10471 * valprint.c (val_print): Update.
10472 * p-valprint (pascal_val_print): Return void.
10473 * p-lang.h (pascal_val_print): Return void.
10474 * m2-valprint.c (m2_val_print): Return void.
10475 * m2-lang.h (m2_val_print): Return void.
10476 * language.h (struct language_defn) <la_val_print>: Return void.
10477 * language.c (unk_lang_val_print): Return void.
10478 * jv-valprint.c (java_val_print): Return void.
10479 * jv-lang.h (java_val_print): Return void.
10480 * f-valprint.c (f_val_print): Return void.
10481 * f-lang.h (f_val_print): Return void.
10482 * d-valprint.c (d_val_print): Return void.
10483 (dynamic_array_type): Update.
10484 * d-lang.h (d_val_print): Return void.
10485 * c-valprint.c (c_val_print): Return void.
10486 * c-lang.h (c_val_print): Return void.
10487 * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
10488 void.
10489 * ada-lang.h (ada_val_print): Return void.
10490
10491 2012-03-01 Tom Tromey <tromey@redhat.com>
10492
10493 * value.h (val_print): Return void.
10494 * valprint.c (val_print): Return void.
10495
10496 2012-03-01 Tom Tromey <tromey@redhat.com>
10497
10498 * value.h (common_val_print): Return void.
10499 * valprint.c (common_val_print): Return void.
10500
10501 2012-03-01 Tom Tromey <tromey@redhat.com>
10502
10503 * value.h (value_print): Return void.
10504 * valprint.c (value_print): Return void.
10505 * p-valprint.c (pascal_value_print): Return void.
10506 * p-lang.h (pascal_value_print): Return void.
10507 * language.h (struct language_defn) <la_value_print>: Return
10508 void.
10509 * language.c (unk_lang_value_print): Return void.
10510 * jv-valprint.c (java_value_print): Return void.
10511 * jv-lang.h (java_value_print): Return void.
10512 * f-valprint.c (c_value_print): Don't declare.
10513 Include c-lang.h.
10514 * c-valprint.c (c_value_print): Return void.
10515 * c-lang.h (c_value_print): Return void.
10516 * ada-valprint.c (ada_value_print): Return void.
10517 * ada-lang.h (ada_value_print): Return void.
10518
10519 2012-03-01 Tom Tromey <tromey@redhat.com>
10520
10521 * value.c (value_primitive_field): Handle virtual base classes.
10522
10523 2012-03-01 Tom Tromey <tromey@redhat.com>
10524
10525 * gdbtypes.h (struct vbase): Remove.
10526
10527 2012-03-01 Tom Tromey <tromey@redhat.com>
10528
10529 * c-valprint.c (print_function_pointer_address): Move...
10530 * valprint.c: ... here. Make non-static.
10531 * m2-valprint.c (print_function_pointer_address): Remove.
10532 * valprint.h (print_function_pointer_address): Declare.
10533
10534 2012-03-01 Joel Brobecker <brobecker@adacore.com>
10535
10536 * NEWS: Document the fact that one can provide a condition when
10537 creating an Ada exception catchpoint.
10538
10539 2012-03-01 Tom Tromey <tromey@redhat.com>
10540
10541 * valprint.c (val_print_type_code_flags): Fix placement of
10542 trailing brace.
10543
10544 2012-03-01 Joel Brobecker <brobecker@adacore.com>
10545
10546 * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
10547 (update_files): Do not set MULTILINE_COMMENT_PREFIXES
10548 environment variable before calling update-copyright.
10549
10550 2012-03-01 Joel Brobecker <brobecker@adacore.com>
10551
10552 * gnulib/extra/update-copyright: Update to the latest from
10553 gnulib's git repository.
10554 * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
10555 variable to 2 instead of 1.
10556
10557 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10558
10559 * varobj.c (c_value_of_variable): Remove dead code.
10560
10561 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10562
10563 * ada-lex.p (processId): Do not modify already encoded IDs.
10564 Update function documentation.
10565
10566 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10567
10568 * ada-lang.h (ada_find_renaming_symbol): Replace parameter
10569 "name" with "struct symbol *name_sym".
10570 * ada-exp.y (write_var_or_type): Update call to
10571 ada_find_renaming_symbol.
10572 "name" with "struct symbol *name_sym". Adjust Implementation
10573 accordingly. Adjust the function documentation.
10574
10575 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10576
10577 * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
10578 * ada-lang.c (ada_find_any_type): Add advance declaration.
10579 Make static. Replace ada_find_any_symbol by
10580 ada_find_any_type_symbol.
10581 (ada_find_any_type_symbol): Renames ada_find_any_symbol.
10582 Improve function description. Make static.
10583 (ada_find_renaming_symbol, find_old_style_renaming_symbol):
10584 Replace ada_find_any_symbol by ada_find_any_type_symbol.
10585
10586 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10587
10588 * ada-lang.c (struct tag_args): Delete.
10589 (ada_get_tsd_type): Function body moved up in source file.
10590 (ada_tag_name_1, ada_tag_name_2): Delete.
10591 (ada_get_tsd_from_tag): New function.
10592 (ada_tag_name_from_tsd): New function.
10593 (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
10594 to determine the tag name.
10595
10596 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10597
10598 * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
10599 declaration.
10600 * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
10601 function.
10602
10603 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10604
10605 * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
10606
10607 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10608
10609 * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
10610 full searches.
10611
10612 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10613
10614 * ada-lang.c (constrained_packed_array_type): If there is a
10615 parallel XA type, use it to determine the array index type.
10616
10617 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10618
10619 * ada-valprint.c (ada_val_print_1): If our value is a reference
10620 to an array descriptor, dereference it before converting it
10621 to a simple array.
10622
10623 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10624
10625 * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
10626 creating fixed value.
10627 (ada_value_ind, ada_coerce_ref, assign_component)
10628 (ada_evaluate_subexp): Remove call to unwrap_value before
10629 call to ada_to_fixed_value.
10630
10631 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10632
10633 * ada-lang.c (to_fixed_array_type): Set result's type name.
10634
10635 2012-02-29 Joel Brobecker <brobecker@adacore.com>
10636
10637 * ada-lang.c (catch_ada_exception_command_split): Add new
10638 argument cond_string. Add support for condition at end of
10639 "catch exception" commands.
10640 (ada_decode_exception_location): Add new argument cond_string.
10641 Update call to catch_ada_exception_command_split.
10642 (create_ada_exception_catchpoint): Add new argument cond_string.
10643 Set the breakpoint condition if needed.
10644 (catch_ada_exception_command): Update call to
10645 ada_decode_exception_location.
10646 (ada_decode_assert_location): Add function documentation.
10647 Add support for condition at end of "catch assert" command.
10648 (catch_assert_command): Update calls to ada_decode_assert_location
10649 and create_ada_exception_catchpoint.
10650
10651 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
10652
10653 Fix disp-step-syscall.exp: fork: single step over fork.
10654 * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
10655 (i386_linux_get_syscall_number_from_regcache): ... here, new function
10656 comment, change parameters gdbarch and ptid to regcache. Remove
10657 parameter regcache, initialize gdbarch from regcache here.
10658 (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
10659 New functions.
10660 (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
10661 instead.
10662 * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
10663 'syscall'. Make the 'int' check more strict.
10664
10665 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
10666
10667 Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
10668 * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
10669 (i386_linux_intx80_sysenter_syscall_record): ... here.
10670 (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
10671 Use the renamed function name.
10672
10673 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
10674
10675 * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
10676 * breakpoint.c (until_break_command): Likewise.
10677 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
10678 * infcall.c (call_function_by_hand): Likewise.
10679 * infcmd.c (finish_forward): Likewise.
10680 * infrun.c (insert_exception_resume_breakpoint): Likewise.
10681
10682 2012-02-28 Tristan Gingold <gingold@adacore.com>
10683
10684 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
10685 avoid variable assignments inside condition.
10686
10687 2012-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
10688
10689 Fix static analysis issue found by cppcheck.
10690 * microblaze-tdep.c (microblaze_extract_return_value): Fix
10691 uninitialized BUF for size 2.
10692
10693 2012-02-27 Chris Dearman <chris@mips.com>
10694 Nathan Froyd <froydnj@codesourcery.com>
10695 Maciej W. Rozycki <macro@codesourcery.com>
10696
10697 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
10698 (mips16_instruction_has_delay_slot): Likewise.
10699 (mips_segment_boundary): Likewise.
10700 (mips_adjust_breakpoint_address): Likewise.
10701 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
10702
10703 2012-02-27 Maciej W. Rozycki <macro@mips.com>
10704 Maciej W. Rozycki <macro@codesourcery.com>
10705
10706 * infrun.c (handle_inferior_event): Don't proceed through
10707 shared library trampolines if stepping at the machine
10708 instruction level.
10709
10710 2012-02-27 Maciej W. Rozycki <macro@codesourcery.com>
10711
10712 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
10713 too.
10714
10715 2012-02-27 Thomas Schwinge <thomas@codesourcery.com>
10716
10717 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
10718 (sh_stub_unwind_sniffer): New functions.
10719 (sh_stub_unwind): New variable.
10720 (sh_gdbarch_init): Wire everything.
10721
10722 2012-02-27 Pedro Alves <palves@redhat.com>
10723
10724 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
10725 (linux_nat_post_attach_wait): Adjust to use
10726 linux_proc_pid_is_stopped.
10727 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
10728 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
10729 based on pid_is_stopped from both linux-nat.c and
10730 gdbserver/linux-low.c, and renamed.
10731
10732 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
10733
10734 * remote.c (remote_watchpoint_addr_within_range): New function.
10735 (init_remote_ops): Use it.
10736
10737 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
10738
10739 * target.h (target_watchpoint_addr_within_range): Document macro.
10740
10741 2012-02-24 Pedro Alves <palves@redhat.com>
10742
10743 * stack.c (set_last_displayed_sal): Issue internal_error instead
10744 of warning, and issue it after clearing the last displayed sal.
10745
10746 2012-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
10747 Pedro Alves <palves@redhat.com>
10748
10749 * breakpoint.c (until_break_command): Install breakpoints after
10750 all frame manipulations.
10751
10752 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
10753
10754 * remote.c (remote_supports_cond_breakpoints): New forward
10755 declaration.
10756 (remote_add_target_side_condition): New function.
10757 (remote_insert_breakpoint): Add target-side breakpoint
10758 conditional if supported.
10759 (remote_insert_hw_breakpoint): Likewise.
10760 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
10761 hook.
10762
10763 * target.c (update_current_target): Inherit
10764 to_supports_evaluation_of_breakpoint_conditions.
10765 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
10766
10767 * target.h (struct target_ops)
10768 <to_supports_evaluation_of_breakpoint_conditions>: New field.
10769 (target_supports_evaluation_of_breakpoint_conditions): New #define.
10770
10771 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
10772 (condition_evaluation_both, condition_evaluation_auto,
10773 condition_evaluation_host, condition_evaluation_target,
10774 condition_evaluation_enums, condition_evaluation_mode_1,
10775 condition_evaluation_mode): New static globals.
10776 (translate_condition_evaluation_mode): New function.
10777 (breakpoint_condition_evaluation_mode): New function.
10778 (gdb_evaluates_breakpoint_condition_p): New function.
10779 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
10780 (mark_breakpoint_modified): New function.
10781 (mark_breakpoint_location_modified): New function.
10782 (set_condition_evaluation_mode): New function.
10783 (show_condition_evaluation_mode): New function.
10784 (bp_location_compare_addrs): New function.
10785 (get_first_location_gte_addr): New helper function.
10786 (set_breakpoint_condition): Free condition bytecode if locations
10787 has become unconditional. Call mark_breakpoint_modified (...).
10788 (condition_command): Call update_global_location_list (1) for
10789 breakpoints.
10790 (breakpoint_xfer_memory): Use is_breakpoint (...).
10791 (is_breakpoint): New function.
10792 (parse_cond_to_aexpr): New function.
10793 (build_target_condition_list): New function.
10794 (insert_bp_location): Handle target-side conditional
10795 breakpoints and call build_target_condition_list (...).
10796 (update_inserted_breakpoint_locations): New function.
10797 (insert_breakpoint_locations): Handle target-side conditional
10798 breakpoints.
10799 (bpstat_check_breakpoint_conditions): Add comment.
10800 (bp_condition_evaluator): New function.
10801 (bp_location_condition_evaluator): New function.
10802 (print_breakpoint_location): Print information on where the condition
10803 will be evaluated.
10804 (print_one_breakpoint_location): Likewise.
10805 (init_bp_location): Call mark_breakpoint_location_modified (...) for
10806 breakpoint location.
10807 (force_breakpoint_reinsertion): New functions.
10808 (update_global_location_list): Handle target-side breakpoint
10809 conditions.
10810 Reinsert locations that are already inserted if conditions have
10811 changed.
10812 (bp_location_dtor): Free agent expression bytecode.
10813 (disable_breakpoint): Call mark_breakpoint_modified (...).
10814 Call update_global_location_list (...) with parameter 1 for breakpoints.
10815 (disable_command): Call mark_breakpoint_location_modified (...).
10816 Call update_global_location_list (...) with parameter 1 for breakpoints.
10817 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
10818 (enable_command): mark_breakpoint_location_modified (...).
10819 (_initialize_breakpoint): Update documentation and add
10820 condition-evaluation breakpoint subcommand.
10821
10822 * breakpoint.h: Include ax.h.
10823 (condition_list): New data structure.
10824 (condition_status): New enum.
10825 (bp_target_info) <cond_list>: New field.
10826 (bp_location) <condition_changed, cond_bytecode>: New fields.
10827 (is_breakpoint): New prototype.
10828
10829 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
10830
10831 * remote.c (remote_state) <cond_breakpoints>: New field.
10832 (PACKET_ConditionalBreakpoints): New enum.
10833 (remote_cond_breakpoint_feature): New function.
10834 (remote_protocol_features): Add new ConditionalBreakpoints entry.
10835 (remote_supports_cond_breakpoints): New function.
10836 (_initialize_remote): Add new packet configuration for
10837 target-side conditional breakpoints.
10838
10839 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
10840
10841 * NEWS: Mention target-side conditional breakpoint support,
10842 new condition-evaluation breakpoint subcommand and remote
10843 packet extensions.
10844
10845 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
10846
10847 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
10848 number.
10849
10850 2012-02-24 Thomas Schwinge <thomas@codesourcery.com>
10851
10852 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
10853 (after_prologue): Remove.
10854
10855 2012-02-23 Tom Tromey <tromey@redhat.com>
10856
10857 * jv-valprint.c (java_val_print): Remove dead code.
10858
10859 2012-02-23 Tristan Gingold <gingold@adacore.com>
10860
10861 * ada-tasks.c (struct ada_tasks_inferior_data): Add
10862 known_tasks_element and known_tasks_length fields.
10863 (read_known_tasks_array): Change argument type. Use pointer type
10864 and number of elements from DATA. Adjust.
10865 (read_known_tasks_list): Likewise.
10866 (get_known_tasks_addr): Remove.
10867 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
10868 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
10869 type and array length. Merge former get_known_tasks_addr code.
10870
10871 2012-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
10872
10873 PR backtrace/13716
10874 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
10875 it after set_momentary_breakpoint.
10876
10877 2012-02-22 Sterling Augustine <saugustine@google.com>
10878
10879 PR 13689:
10880 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
10881
10882 2012-02-22 Gary Benson <gbenson@redhat.com>
10883
10884 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
10885 (find_slot_in_mapped_hash): Likewise.
10886
10887 2012-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
10888
10889 PR build/13638
10890 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
10891 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
10892 * configure: Regenerate.
10893
10894 2012-02-21 Tristan Gingold <gingold@adacore.com>
10895 Pedro Alves <palves@redhat.com>
10896
10897 * ia64-tdep.c: Do not include libunwind-ia64.h.
10898 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
10899 Include libunwind-ia64.h instead of libunwind.h.
10900 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
10901 for libunwind.h existence.
10902 * configure, config.in: Regenerate.
10903
10904 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
10905
10906 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
10907 instead of value_rtti_target_type.
10908 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
10909 instead of value_rtti_target_type.
10910 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
10911 value_rtti_target_type.
10912 * valops.c (value_ind): Extract function readjust_indirect_value_type.
10913 (value_rtti_target_type): Rename to ...
10914 (value_rtti_indirect_type): ... here and make it indirect. Update
10915 function comment.
10916 * value.c (readjust_indirect_value_type): New function.
10917 (coerce_ref): Support for enclosing type setting for references
10918 with readjust_indirect_value_type.
10919 * value.h (readjust_value_type): New declaration.
10920 (value_rtti_target_type): Rename to ...
10921 (value_rtti_indirect_type): ... here.
10922
10923 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
10924
10925 * MAINTAINERS (Write After Approval): Add myself to the list.
10926
10927 2012-02-20 Doug Evans <dje@google.com>
10928
10929 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
10930 Rename objfile_p_char parameter to objfilep.
10931 (build_objfile_section_table): Result is now void. All callers
10932 updated.
10933 * objfiles.h (struct objfile): Tweak comments, whitespace.
10934 (build_objfile_section_table): Update.
10935
10936 * elfread.c (elf_symfile_segments): Fix warning text.
10937
10938 2012-02-20 Tom Tromey <tromey@redhat.com>
10939
10940 PR gdb/13498:
10941 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
10942 particular set of file names once.
10943 (dw2_map_symbol_filenames): Likewise.
10944
10945 2012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
10946
10947 Code cleanup.
10948 * main.c (write_files): Remove the declaration.
10949 (external_editor_command): Move the declaration ...
10950 [GDBTK] (external_editor_command): ... here. Fix the comment.
10951
10952 2012-02-20 Tom Tromey <tromey@redhat.com>
10953
10954 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
10955 extraneous block.
10956
10957 2012-02-20 Tristan Gingold <gingold@adacore.com>
10958
10959 * darwin-nat.h (enum darwin_msg_state): Add comments.
10960
10961 2012-02-20 Tristan Gingold <gingold@adacore.com>
10962
10963 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
10964 value.
10965
10966 2012-20-18 Joel Brobecker <brobecker@adacore.com>
10967
10968 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
10969 between function description and implementation.
10970
10971 2012-02-17 Tom Tromey <tromey@redhat.com>
10972
10973 PR python/12070:
10974 * python/py-event.c (event_object_getset): New global.
10975 (event_object_type): Reference it.
10976 * python/py-type.c (field_object_getset): New global.
10977 (field_object_type): Reference it.
10978 * python/python-internal.h (gdb_py_generic_dict): Declare.
10979 * python/py-utils.c (gdb_py_generic_dict): New function.
10980
10981 2012-02-17 Tristan Gingold <gingold@adacore.com>
10982
10983 * solib-darwin.c (darwin_current_sos): Check magic and filetype
10984
10985 2012-02-17 Thomas Schwinge <thomas@codesourcery.com>
10986
10987 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
10988 TYPE_CALLING_CONVENTION annotation.
10989
10990 2012-02-16 Kevin Buettner <kevinb@redhat.com>
10991
10992 * MAINTAINERS: Add rx to target ISA section.
10993 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
10994 (ALLDEPFILES): Add rx-tdep.c.
10995
10996 2012-02-16 Tom Tromey <tromey@redhat.com>
10997
10998 * symfile.c (symbol_file_add_main_1): Use inferior's
10999 symfile_flags.
11000 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
11001 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
11002 inferior.
11003 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
11004 inferior.
11005 (follow_exec): Use inferior's symfile_flags.
11006 * inferior.h (struct inferior) <symfile_flags>: New field.
11007
11008 2012-02-16 Mike Frysinger <vapier@gentoo.org>
11009
11010 PR gdb/9734:
11011 * remote-sim.c (gdbsim_create_inferior): Call error() when
11012 sim_create_inferior() fails.
11013
11014 2012-02-16 Josh Matthews <josh@joshmatthews.net>
11015
11016 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
11017
11018 2012-02-16 Tom Tromey <tromey@redhat.com>
11019
11020 PR c++/13653:
11021 * thread.c (struct current_thread_cleanup) <was_removable>: New
11022 field.
11023 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
11024 (make_cleanup_restore_current_thread): Initialize new field.
11025
11026 2012-02-15 Kevin Buettner <kevinb@redhat.com>
11027
11028 * MAINTAINERS: Add rl78 to target ISA section.
11029 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
11030 (ALLDEPFILES): Add rl78-tdep.c.
11031 * NEWS: Mention rl78 as a new target.
11032
11033 2012-02-15 Aleksandar Ristovski <aristovski@qnx.com>
11034
11035 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
11036 data.
11037 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
11038
11039 2012-02-15 Tom Tromey <tromey@redhat.com>
11040
11041 PR gdb/12659:
11042 * infcmd.c (registers_info): Print just the current register's
11043 name.
11044
11045 2012-02-15 Tom Tromey <tromey@redhat.com>
11046
11047 * python/py-symbol.c (sympy_value): Use _().
11048
11049 2012-02-15 Pedro Alves <palves@redhat.com>
11050
11051 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
11052 output to be like native targets'.
11053 (remote_pid_to_str): Special case the null ptid.
11054
11055 2012-02-14 Stan Shebs <stan@codesourcery.com>
11056
11057 * NEWS: Mention enable count command.
11058 * breakpoint.h (struct breakpoint): New field enable_count.
11059 * breakpoint.c (enable_breakpoint_disp): Add count argument.
11060 (enable_breakpoint): Add arg to call.
11061 (struct disp_data): New struct.
11062 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
11063 (do_map_enable_once_breakpoint): Create a struct and pass it.
11064 (do_map_enable_delete_breakpoint): Ditto.
11065 (do_map_enable_count_breakpoint): New function.
11066 (enable_count_command): New function.
11067 (bpstat_stop_status): Decrement enable_count.
11068 (print_one_breakpoint_location): Report enable count.
11069 (_initialize_breakpoint): Add enable count command.
11070
11071 2012-02-14 Kevin Buettner <kevinb@redhat.com>
11072
11073 * rl78-tdep.c (reggroups.h): Include.
11074 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
11075 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
11076 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
11077 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
11078 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
11079 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
11080 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
11081 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
11082 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
11083 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
11084 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
11085 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
11086 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
11087 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
11088 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
11089 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
11090 beginning of register list.
11091 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
11092 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
11093 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
11094 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
11095 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
11096 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
11097 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
11098 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
11099 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
11100 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
11101 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
11102 the pseudo registers. Rearrange other pseudo registers too so
11103 that the bank registers appear at the end.
11104 (rl78_register_type): Account for the fact that the byte sized
11105 bank registers are now pseudo-registers.
11106 (rl78_register_name): Rearrange the register name array. Make
11107 initial set of raw banked registers inaccessible.
11108 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
11109 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
11110 case for copying bytes back and forth between raw and pseudo
11111 versions of the banked registers. Update other cases to reflect
11112 the changed names.
11113 (rl78_return_value): Update to account for changed names of
11114 raw registers.
11115 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
11116 rl78_register_sim_regno().
11117
11118 2012-02-14 Kevin Buettner <kevinb@redhat.com>
11119
11120 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
11121 the name parameter being passed to find_pc_partial_function().
11122
11123 2012-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
11124
11125 * MAINTAINERS: Step down from being ia64 target maintainer.
11126
11127 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
11128
11129 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
11130 compilation warning.
11131
11132 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
11133
11134 Fix crash on loaded shlibs without loaded exec_bfd.
11135 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
11136 (set_section_command): Replace exec_bfd by p->bfd.
11137
11138 2012-02-10 Tom Tromey <tromey@redhat.com>
11139
11140 * linespec.c (decode_line_internal): Skip symtabs_from_filename
11141 when we have a C++ qualified name.
11142
11143 2012-02-10 Pedro Alves <palves@redhat.com>
11144
11145 * inferior.c (inferior_pid_to_str): New.
11146 (print_inferior, inferior_command): Use it.
11147
11148 2012-02-10 Pedro Alves <palves@redhat.com>
11149
11150 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
11151 the test CFLAGS.
11152 * configure: Regenerate.
11153
11154 2012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11155
11156 * linespec.c (decode_line_internal): Fix comment correctness.
11157
11158 2012-02-09 Valery Khromov <valery.khromov@gmail.com>
11159
11160 PR gdb/12953
11161 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
11162 * amd64bsd-nat.c: Add support for debug registers (adapted from
11163 i386bsd-nat.c).
11164 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
11165 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
11166 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
11167 (amd64bsd_dr_get_control): New functions.
11168 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
11169 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
11170 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
11171 watchpoints initialization.
11172 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
11173
11174 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
11175
11176 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
11177 flds_bnds.fields.
11178 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
11179
11180 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
11181
11182 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
11183
11184 2012-02-08 Joel Brobecker <brobecker@adacore.com>
11185
11186 * language.h (symbol_name_cmp_ftype): Renames
11187 symbol_name_match_p_ftype.
11188 (struct language_defn)[la_get_symbol_name_cmp]: Renames
11189 la_get_symbol_name_match_p.
11190 * ada-lang.c (ada_get_symbol_name_cmp): Renames
11191 ada_get_symbol_name_match_p. Update comment.
11192 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
11193 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
11194 Renames symbol_name_match_p. Update field type.
11195 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
11196 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11197 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
11198 "la_get_symbol_name_cmp" in comments.
11199 * language.c: Likewise.
11200
11201 2012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11202
11203 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
11204 %eflags offset.
11205 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
11206 (amd64_sol2_gregset32_reg_offs): Likewise.
11207
11208 2012-02-08 Joel Brobecker <brobecker@adacore.com>
11209
11210 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
11211 of the returned BFD is allocated by GDB.
11212
11213 2012-02-07 Tom Tromey <tromey@redhat.com>
11214
11215 PR python/12027:
11216 * python/python-internal.h (frame_object_type): Declare.
11217 * python/py-symbol.c (sympy_needs_frame): New function.
11218 (sympy_value): New function.
11219 (symbol_object_getset): Add "needs_frame".
11220 (symbol_object_methods): Add "value".
11221 * python/py-frame.c (frame_object_type): No longer static.
11222
11223 2012-02-07 Tom Tromey <tromey@redhat.com>
11224
11225 PR python/13599:
11226 * python/py-symbol.c (sympy_line): New function.
11227 (symbol_object_getset): Add "line".
11228
11229 2012-02-07 Tom Tromey <tromey@redhat.com>
11230
11231 * charset.c (find_charset_names): Check 'in' against NULL.
11232
11233 2012-02-06 Doug Evans <dje@google.com>
11234
11235 * gdbtypes.h (struct main_type): Change type of name,tag_name,
11236 and fields.name members from char * to const char *. All uses updated.
11237 (struct cplus_struct_type): Change type of fn_fieldlists.name member
11238 from char * to const char *. All uses updated.
11239 (type_name_no_tag): Update.
11240 (lookup_unsigned_typename, lookup_signed_typename): Update.
11241 * gdbtypes.c (type_name_no_tag): Change result type
11242 from char * to const char *. All callers updated.
11243 (lookup_unsigned_typename, lookup_signed_typename): Change type of
11244 name parameter from char * to const char *.
11245 * symtab.h (struct cplus_specific): Change type of demangled_name
11246 member from char * to const char *. All uses updated.
11247 (struct general_symbol_info): Change type of name and
11248 mangled_lang.demangled_name members from char * to const char *.
11249 All uses updated.
11250 (symbol_get_demangled_name, symbol_natural_name): Update.
11251 (symbol_demangled_name, symbol_search_name): Update.
11252 * symtab.c (symbol_get_demangled_name): Change result type
11253 from char * to const char *. All callers updated.
11254 (symbol_natural_name, symbol_demangled_name): Ditto.
11255 (symbol_search_name): Ditto.
11256 (completion_list_add_name): Change type of symname,sym_text,
11257 text,word parameters from char * to const char *.
11258 (completion_list_objc_symbol): Change type of sym_text,
11259 text,word parameters from char * to const char *.
11260 * ada-lang.c (find_struct_field): Change type of name parameter
11261 from char * to const char *.
11262 (encoded_ordered_before): Similarly for N0,N1 parameters.
11263 (old_renaming_is_invisible): Similarly for function_name parameter.
11264 (ada_type_name): Change result type from char * to const char *.
11265 All callers updated.
11266 * ada-lang.h (ada_type_name): Update.
11267 * buildsym.c (hashname): Change type of name parameter
11268 from char * to const char *.
11269 * buildsym.h (hashname): Update.
11270 * dbxread.c (end_psymtab): Change type of include_list parameter
11271 from char ** to const char **.
11272 * dwarf2read.c (determine_prefix): Change result type
11273 from char * to const char *. All callers updated.
11274 * f-lang.c (find_common_for_function): Change type of name, funcname
11275 parameters from char * to const char *.
11276 * f-lang.c (find_common_for_function): Update.
11277 * f-valprint.c (list_all_visible_commons): Change type of funcname
11278 parameters from char * to const char *.
11279 * gdbarch.sh (static_transform_name): Change type of name parameter
11280 and result from char * to const char *.
11281 * gdbarch.c: Regenerate.
11282 * gdbarch.h: Regenerate.
11283 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
11284 of name parameter from char * to const char *.
11285 * jv-lang.c (java_primitive_type_from_name): Ditto.
11286 (java_demangled_signature_length): Similarly for signature parameter.
11287 (java_demangled_signature_copy): Ditto.
11288 (java_demangle_type_signature): Ditto.
11289 * jv-lang.h (java_primitive_type_from_name): Update.
11290 (java_demangle_type_signature): Update.
11291 * objc-lang.c (specialcmp): Change type of a,b parameters
11292 from char * to const char *.
11293 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
11294 from char * to const char *. All callers updated.
11295 * p-lang.h (is_pascal_string_type): Update.
11296 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
11297 of name parameter from char * to const char *.
11298 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
11299 * utils.c (fprintf_symbol_filtered): Ditto.
11300 * defs.h (fprintf_symbol_filtered): Update.
11301 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
11302 * stabsread.h (end_psymtab): Update.
11303 * stack.c (find_frame_funname): Change type of funname parameter
11304 from char ** to const char **.
11305 * stack.h (find_frame_funname): Update.
11306 * typeprint.c (type_print): Change type of varstring parameter
11307 from char * to const char *.
11308 * value.h (type_print): Update.
11309 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
11310 from char * to const char *. All callers updated.
11311 (xcoff_end_psymtab): Change type of include_list parameter
11312 from char ** to const char **. All callers updated.
11313 (swap_sym): Similarly for name parameter. All callers updated.
11314 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
11315 Use xstrdup.
11316 (process_coff_symbol): Use xstrdup.
11317 * stabsread.c (stabs_method_name_from_physname): Renamed from
11318 update_method_name_from_physname. Change result type from void
11319 to char *. All callers updated.
11320 (read_member_functions): In has_destructor case, store name in objfile
11321 obstack instead of malloc space. In !has_stub case, fix mem leak.
11322
11323 2012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
11324
11325 * configure: Rebuild.
11326 * configure.ac: Put -L../bfd and -L../libiberty at the front of
11327 LDFLAGS.
11328
11329 2012-02-03 Kevin Buettner <kevinb@redhat.com>
11330
11331 * configure.tgt (rl78-*-elf): New target.
11332 * rl78-tdep.c: New file.
11333
11334 2012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11335
11336 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
11337 and continue the loop. Add QUIT statement.
11338
11339 2012-02-03 Tom Tromey <tromey@redhat.com>
11340
11341 PR gdb/13596:
11342 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
11343 bfd_lookup_symbol_from_symtab.
11344 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
11345 gdb_bfd_lookup_symbol_from_symtab.
11346
11347 2012-02-03 Joel Brobecker <brobecker@adacore.com>
11348
11349 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
11350 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
11351 symbol. Add assertion that sym2 is never NULL.
11352
11353 2012-02-02 Doug Evans <dje@google.com>
11354
11355 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
11356 "name" parameter to const char ** from char **. All callers updated.
11357 (find_pc_partial_function): Ditto.
11358 (cache_pc_function_name): Change type to const char * from char *.
11359 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
11360 (find_pc_partial_function): Update.
11361 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
11362 type of "name" parameter to const char * from char *.
11363 All uses updated.
11364 * arch-utils.c (generic_in_solib_return_trampoline): Change
11365 type of "name" parameter to const char * from char *.
11366 * arch-utils.h (generic_in_solib_return_trampoline): Update.
11367 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
11368 type of "name" parameter to const char * from char *.
11369 * gdbarch.sh (in_solib_return_trampoline): Ditto.
11370 * gdbarch.c: Regenerate.
11371 * gdbarch.h: Regenerate.
11372 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
11373 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
11374 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
11375 type of "name" parameter to const char * from char *.
11376 * skip.c (skip_function_pc): Ditto.
11377 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
11378 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
11379 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
11380 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
11381 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
11382 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
11383 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
11384 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
11385 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
11386
11387 2012-02-02 Pedro Alves <palves@redhat.com>
11388
11389 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
11390 the current inferior has no execution. Make sure the current
11391 remote process matches gdb's current inferior.
11392
11393 2012-02-02 Tom Tromey <tromey@redhat.com>
11394
11395 PR gdb/13405:
11396 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
11397 read-only memory.
11398
11399 2012-02-02 Tom Tromey <tromey@redhat.com>
11400
11401 PR gdb/9307:
11402 * symtab.c (lookup_language_this): Set block_found.
11403
11404 2012-02-01 Tom Tromey <tromey@redhat.com>
11405
11406 PR gdb/13431:
11407 * jit.c (struct jit_inferior_data): Rewrite.
11408 (struct jit_objfile_data): New.
11409 (get_jit_objfile_data): New function.
11410 (add_objfile_entry): Update.
11411 (jit_read_descriptor): Return int. Replace descriptor_addr
11412 argument with inf_data. Update. Don't call error.
11413 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
11414 descriptor here.
11415 (jit_inferior_init): Don't look up descriptor. Don't call error.
11416 (jit_reset_inferior_data_and_breakpoints)
11417 (jit_inferior_created_observer): Remove.
11418 (jit_inferior_exit_hook): Update.
11419 (jit_executable_changed_observer): Remove.
11420 (jit_event_handler): Update.
11421 (free_objfile_data): Reset inferior data if needed.
11422 (_initialize_jit): Update.
11423
11424 2012-02-01 Tom Tromey <tromey@redhat.com>
11425
11426 * jit.c (bfd_open_from_target_memory): Move higher in file.
11427
11428 2012-02-01 Tristan Gingold <gingold@adacore.com>
11429
11430 * libunwind-frame.c (libunwind_load): Display message if dlopen
11431 failed.
11432
11433 2012-02-01 Gary Benson <gbenson@redhat.com>
11434
11435 * symtab.h (symbol_found_callback_ftype): New typedef.
11436 (iterate_over_symbols): Use the above.
11437 * symtab.c (iterate_over_symbols): Likewise.
11438 * language.h (language_defn->la_iterate_over_symbols): Likewise.
11439 * ada-lang.c (ada_iterate_over_symbols): Likewise.
11440 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
11441 (iterate_name_matcher): Document return values.
11442 (collect_one_symbol): Likewise.
11443 (collect_function_symbols): Likewise.
11444 (collect_symbols): Likewise.
11445
11446 2012-02-01 Tom Tromey <tromey@redhat.com>
11447
11448 * ada-lang.c (resolve_subexp): Update.
11449 (ada_lookup_symbol_list): Add 'full_search' argument.
11450 (ada_iterate_over_symbols): Pass 0 as full_search argument to
11451 ada_lookup_symbol_list.
11452 (ada_lookup_encoded_symbol): Update.
11453 (get_var_value): Update.
11454 * ada-exp.y (block_lookup): Update.
11455 (write_var_or_type): Update.
11456 (write_name_assoc): Update.
11457 * ada-lang.h (ada_lookup_symbol_list): Update.
11458
11459 2012-01-31 Tom Tromey <tromey@redhat.com>
11460
11461 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
11462 comment.
11463
11464 2012-01-31 Doug Evans <dje@google.com>
11465
11466 * symtab.h: Remove outdated comment.
11467 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
11468
11469 2012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
11470
11471 Fix build error in Darwin port.
11472 * i386-darwin-nat.c: Include i386-nat.h.
11473
11474 2012-01-30 Tom Tromey <tromey@redhat.com>
11475
11476 PR breakpoints/13568:
11477 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
11478 argument. Check for recursive includes.
11479 (dwarf_decode_macros): Create an include hash.
11480
11481 2012-01-30 Michael Eager <eager@eagercon.com>
11482
11483 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
11484 * ppc-linux-tdep.c: Include glibc-tdep.h.
11485 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
11486 (powerpc_linux_in_plt_stub): New function.
11487 (powerpc_linux_in_dynsym_resolve_code): New function.
11488 (ppc_skip_trampoline_code): New function.
11489 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
11490 Use glibc_skip_solib_resolver.
11491
11492 2012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
11493
11494 Code cleanup: Make 1440 bytes of data segment read-only.
11495 * arch-utils.c (endian_enum): Make it const char *const [].
11496 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
11497 Likewise.
11498 * breakpoint.c (always_inserted_enums): Likewise.
11499 * cli/cli-cmds.c (script_ext_enums): Likewise.
11500 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
11501 enumlist parameter const char *const *.
11502 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
11503 const char *const *.
11504 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
11505 parameter const char *const *.
11506 * cris-tdep.c (cris_modes): Make it const char *const [].
11507 * filesystem.c (target_file_system_kinds): Likewise.
11508 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
11509 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
11510 (can_use_displaced_stepping_enum, scheduler_enums)
11511 (exec_direction_names): Likewise.
11512 * language.c (_initialize_language): Make the type_or_range_names and
11513 case_sensitive_names variables const char *const [].
11514 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
11515 * python/python.c (python_excp_enums): Likewise.
11516 * remote.c (interrupt_sequence_modes): Likewise.
11517 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
11518 * serial.c (logbase_enums): Likewise.
11519 * sh-tdep.c (sh_cc_enum): Likewise.
11520 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
11521 Likewise.
11522 * symtab.c (multiple_symbols_modes): Likewise.
11523 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
11524 Likewise.
11525 * utils.c (internal_problem_modes): Likewise.
11526
11527 2012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
11528
11529 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
11530 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
11531 result.
11532
11533 2012-01-27 Doug Evans <dje@google.com>
11534
11535 * configure.ac (with_python): Fix absolute path handling for win32.
11536 * configure: Regenerate.
11537
11538 2012-01-26 Doug Evans <dje@google.com>
11539
11540 * symtab.c: Whitespace cleanup, no code changes.
11541
11542 * symtab.c (lookup_symbol_in_language): Improve comment.
11543 (lookup_symbol_aux): Fix comment.
11544
11545 * psymtab.c (add_psymbol_to_list): Result is now "void".
11546 * psympriv.h (add_psymbol_to_list): Update.
11547
11548 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
11549
11550 2012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
11551
11552 Do not open script filenames twice.
11553 * cli/cli-cmds.c (source_script_from_stream): Pass to
11554 source_python_script also STREAM.
11555 * python/py-auto-load.c (source_section_scripts): Pass to
11556 source_python_script_for_objfile also STREAM.
11557 (auto_load_objfile_script): Pass to source_python_script_for_objfile
11558 also INPUT.
11559 * python/python-internal.h (source_python_script_for_objfile): New
11560 parameter file, rename parameter file to filename.
11561 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
11562 instead if !_WIN32. Update the function comment.
11563 (source_python_script, source_python_script_for_objfile)
11564 (source_python_script): New parameter file, rename parameter file to
11565 filename. Pass FILENAME to python_run_simple_file.
11566 * python/python.h (source_python_script): New parameter file, rename
11567 parameter file to filename.
11568
11569 2012-01-26 Pedro Alves <palves@redhat.com>
11570
11571 * corelow.c (core_has_fake_pid): Delete.
11572 (core_close): Delete references to `core_has_fake_pid'.
11573 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
11574 (core_open): Delete references to `core_has_fake_pid'.
11575 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
11576 the removed global.
11577
11578 2012-01-26 Joel Brobecker <brobecker@adacore.com>
11579
11580 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
11581 Remove language parameter from name_matcher. Adjust the comment.
11582 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
11583 Remove language parameter.
11584 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
11585 * linespec.c (iterate_name_matcher): Likewise.
11586 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
11587 name_matcher. Adjust call accordingly.
11588 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
11589 (maintenance_check_symtabs): Adjust type of parameter "fun".
11590 * psymtab.h (maintenance_check_symtabs): Likewise.
11591
11592 2012-01-26 Joel Brobecker <brobecker@adacore.com>
11593
11594 * language.h (symbol_name_match_p_ftype): New typedef.
11595 (struct language_defn): Replace field la_symbol_name_compare
11596 by la_get_symbol_name_match_p.
11597 * ada-lang.c (ada_get_symbol_name_match_p): New function.
11598 (ada_language_defn): Use it.
11599 * linespec.c (struct symbol_matcher_data): New type.
11600 (iterate_name_matcher): Rewrite.
11601 (iterate_over_all_matching_symtabs): Pass a pointer to
11602 a symbol_matcher_data struct to expand_symtabs_matching
11603 instead of just the lookup name.
11604 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11605 opencl-lang.c, p-lang.c, language.c: Delete field
11606 la_symbol_name_compare, and replace by NULL for new field
11607 la_get_symbol_name_match_p.
11608 * symfile.h (struct quick_symbol_functions): Update comment.
11609
11610 2012-01-25 Tom Tromey <tromey@redhat.com>
11611
11612 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
11613 dereferencing.
11614
11615 2012-01-24 Tom Tromey <tromey@redhat.com>
11616
11617 PR symtab/12406:
11618 * solib.c (update_solib_list): Update the program space's
11619 added_solibs and deleted_solibs fields.
11620 * progspace.h (struct program_space) <added_solibs,
11621 deleted_solibs>: New fields.
11622 (clear_program_space_solib_cache): Declare.
11623 * progspace.c (release_program_space): Call
11624 clear_program_space_solib_cache.
11625 (clear_program_space_solib_cache): New function.
11626 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
11627 bpstat_stop_status. Use handle_solib_event.
11628 * breakpoint.c: Include gdb_regex.h.
11629 (print_solib_event): New function.
11630 (bpstat_print): Use print_solib_event.
11631 (bpstat_stop_status): Add special case for bp_shlib_event.
11632 (handle_solib_event): New function.
11633 (bpstat_what): Use handle_solib_event.
11634 (struct solib_catchpoint): New.
11635 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
11636 (breakpoint_hit_catch_solib, check_status_catch_solib)
11637 (print_it_catch_solib, print_one_catch_solib)
11638 (print_mention_catch_solib, print_recreate_catch_solib): New
11639 functions.
11640 (catch_solib_breakpoint_ops): New global.
11641 (catch_load_or_unload, catch_load_command_1)
11642 (catch_unload_command_1): New functions.
11643 (internal_bkpt_check_status): Add special case for
11644 bp_shlib_event.
11645 (internal_bkpt_print_it): Use print_solib_event.
11646 (initialize_breakpoint_ops): Initialize
11647 catch_solib_breakpoint_ops.
11648 (_initialize_breakpoint): Register "catch load" and "catch
11649 unload".
11650 * breakpoint.h (handle_solib_event): Declare.
11651 * NEWS: Add entry for "catch load" and "catch unload".
11652
11653 2012-01-24 Tom Tromey <tromey@redhat.com>
11654
11655 * ada-lang.c: Include gdb_vecs.h.
11656 * charset.c: Include gdb_vecs.h.
11657 * tracepoint.h: Include gdb_vecs.h.
11658 * gdb_vecs.h: New file.
11659
11660 2012-01-24 Pedro Alves <pedro@codesourcery.com>
11661
11662 * breakpoint.c (breakpoint_hit_catch_fork)
11663 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
11664 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
11665 * infrun.c (inferior_has_forked, inferior_has_vforked)
11666 (inferior_has_execd, inferior_has_called_syscall): Delete.
11667 (handle_syscall_event): Get syscall_number from the execution
11668 control state's wait status.
11669 (wait_for_inferior): Don't clear syscall_number.
11670
11671 2012-01-24 Pedro Alves <palves@redhat.com>
11672
11673 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
11674 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
11675 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
11676 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
11677 `ws' parameter.
11678 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
11679 false for events other than TARGET_SIGNAL_TRAP.
11680 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
11681 Add `ws' parameter.
11682 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
11683 events other than TARGET_SIGNAL_TRAP.
11684 (tracepoint_breakpoint_hit): Add `ws' parameter.
11685 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
11686 parameter.
11687 (bpstat_stop_status): Same.
11688 (pc_at_non_inline_function): Same.
11689 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
11690 to pass the current event's waitstatus to bpstat_stop_status
11691 and pc_at_non_inline_function.
11692
11693 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
11694
11695 Code cleanup.
11696 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
11697 Update the function comment for it.
11698 (source_script_with_search): Call make_cleanup_fclose for STREAM.
11699 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
11700 for STREAM.
11701
11702 2012-01-24 Pedro Alves <palves@redhat.com>
11703
11704 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
11705 outside `bs->stop' block.
11706 (bpstat_what): Rework bp_shlib_event handling.
11707 (internal_bkpt_check_status): If the breakpoint is a
11708 bp_shlib_event, then set bs->stop and bs->print if
11709 stop_on_solib_events is set.
11710
11711 2012-01-24 Gary Benson <gbenson@redhat.com>
11712
11713 Delete #if 0'd out code.
11714 * stack.c (print_frame_label_vars): Remove.
11715 (catch_info): Likewise.
11716 (_initialize_stack): Remove "info catch" command.
11717 * NEWS: Mention the above.
11718
11719 2012-01-24 Pedro Alves <palves@redhat.com>
11720
11721 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
11722 it.
11723 (remote_notice_new_inferior): If the remote end doesn't support
11724 the multiprocess extensions, then the PID is fake.
11725 (add_current_inferior_and_thread): New.
11726 (remote_start_remote): Use it.
11727 (extended_remote_attach_1): Adjust.
11728 (extended_remote_create_inferior_1): Use
11729 add_current_inferior_and_thread.
11730
11731 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
11732
11733 Fix watchpoints to be specific for each inferior.
11734 * breakpoint.c (watchpoint_in_thread_scope): Verify also
11735 current_program_space.
11736 * i386-nat.c (i386_inferior_data_cleanup): New.
11737 (i386_inferior_data_get): Replace variable inf_data_local by an
11738 inferior_data call.
11739 (i386_use_watchpoints): Initialize i386_inferior_data.
11740 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
11741 specific iterate_over_lwps.
11742
11743 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
11744
11745 Fix watchpoints across inferior fork.
11746 * amd64-linux-nat.c (update_debug_registers_callback): Update the
11747 comment for linux_nat_iterate_watchpoint_lwps.
11748 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11749 linux_nat_iterate_watchpoint_lwps.
11750 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
11751 * i386-linux-nat.c (update_debug_registers_callback): Update the
11752 comment for linux_nat_iterate_watchpoint_lwps.
11753 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11754 linux_nat_iterate_watchpoint_lwps.
11755 (i386_linux_prepare_to_resume): New comment on Linux kernel.
11756 * i386-nat.c: Include inferior.h.
11757 (dr_mirror): Remove.
11758 (i386_inferior_data, struct i386_inferior_data)
11759 (i386_inferior_data_get): New.
11760 (i386_debug_reg_state): Use i386_inferior_data_get.
11761 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
11762 (i386_insert_watchpoint, i386_remove_watchpoint)
11763 (i386_stopped_data_address, i386_insert_hw_breakpoint)
11764 (i386_remove_hw_breakpoint): New variable state, use
11765 i386_debug_reg_state instead of DR_MIRROR.
11766 * linux-nat.c (delete_lwp): New declaration.
11767 (num_lwps): Move here from downwards.
11768 (delete_lwp_cleanup): New.
11769 (linux_child_follow_fork): Create new child_lp, call
11770 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
11771 PTRACE_DETACH.
11772 (num_lwps): Move upwards.
11773 (linux_nat_iterate_watchpoint_lwps): New.
11774 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
11775 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
11776
11777 2012-01-24 Joel Brobecker <brobecker@adacore.com>
11778
11779 GDB 7.4 released.
11780
11781 2012-01-23 Pedro Alves <palves@redhat.com>
11782
11783 * top.c (caution): Rename to ...
11784 (confirm): ... this.
11785 (show_caution): Rename to ...
11786 (show_confirm): ... this.
11787 (quit_cover): Adjust.
11788 (init_main): Adjust.
11789 * top.h (caution): Rename to ...
11790 (confirm): ... this.
11791 * utils.c (internal_vproblem, defaulted_query): Adjust.
11792
11793 2012-01-23 Pedro Alves <palves@redhat.com>
11794
11795 * top.c (caution): Update comment.
11796 (execute_command): Don't consider the current value of `caution'.
11797
11798 2012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
11799
11800 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
11801
11802 2012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
11803
11804 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
11805 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
11806 * target.c (target_fileio_pwrite): Remove buffer address from
11807 debug output.
11808 (target_fileio_pread): Likewise.
11809
11810 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
11811
11812 * NEWS: Document remote "info proc" and "generate-core-file".
11813
11814 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
11815
11816 * gdbarch.sh (find_memory_regions): New callback.
11817 * gdbarch.c, gdbarch.h: Regenerate.
11818
11819 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
11820 callback before falling back to target method.
11821
11822 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
11823 (linux_target_install_ops): No longer install it.
11824
11825 * linux-tdep.c (linux_find_memory_regions): New function.
11826 (linux_init_abi): Install it.
11827
11828 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
11829
11830 * gdbarch.sh (make_corefile_notes): New architecture callback.
11831 * gdbarch.c: Regenerate.
11832 * gdbarch.h: Likewise.
11833
11834 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
11835 before target_make_corefile_notes. If NULL is returned, the
11836 target does not support core file generation.
11837
11838 * linux-nat.c: Include "linux-tdep.h".
11839 (find_signalled_thread, find_stop_signal): Remove.
11840 (linux_nat_do_thread_registers): Likewise.
11841 (struct linux_nat_corefile_thread_data): Likewise.
11842 (linux_nat_corefile_thread_callback): Likewise.
11843 (iterate_over_spus): Likewise.
11844 (struct linux_spu_corefile_data): Likewise.
11845 (linux_spu_corefile_callback): Likewise.
11846 (linux_spu_make_corefile_notes): Likewise.
11847 (linux_nat_collect_thread_registers): New function.
11848 (linux_nat_make_corefile_notes): Replace contents by call to
11849 linux_make_corefile_notes passing linux_nat_collect_thread_registers
11850 as native-only callback.
11851
11852 * linux-tdep.h: Include "bfd.h".
11853 (struct regcache): Add forward declaration.
11854 (linux_collect_thread_registers_ftype): New typedef.
11855 (linux_make_corefile_notes): Add prototype.
11856 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
11857 "regset.h", and "elf-bfd.h".
11858 (find_signalled_thread, find_stop_signal): New functions.
11859 (linux_spu_make_corefile_notes): Likewise.
11860 (linux_collect_thread_registers): Likewise.
11861 (struct linux_corefile_thread_data): New data structure.
11862 (linux_corefile_thread_callback): New funcion.
11863 (linux_make_corefile_notes): Likewise.
11864 (linux_make_corefile_notes_1): Likewise.
11865 (linux_init_abi): Install it.
11866
11867 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
11868
11869 * gdbarch.sh (info_proc): New callback.
11870 * gdbarch.c, gdbarch.h: Regenerate.
11871
11872 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
11873 before falling back to the target info_proc callback.
11874
11875 * linux-nat.c: Do not include "cli/cli-utils.h".
11876 (linux_nat_info_proc): Remove.
11877 (linux_target_install_ops): No longer install it.
11878
11879 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
11880 (read_mapping): New function.
11881 (linux_info_proc): Likewise.
11882 (linux_init_abi): Install it.
11883
11884 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
11885
11886 * defs.h (enum info_proc_what): Moved here from linux-nat.c
11887 * infcmd.c: (info_proc_cmd_1): New function.
11888 (info_proc_cmd): New function, moved here from equivalent routine
11889 orignally in linux-nat.c.
11890 (info_proc_cmd_mappings): Likewise.
11891 (info_proc_cmd_stat): Likewise.
11892 (info_proc_cmd_status): Likewise.
11893 (info_proc_cmd_cwd): Likewise.
11894 (info_proc_cmd_cmdline): Likewise.
11895 (info_proc_cmd_exe): Likewise.
11896 (info_proc_cmd_all): Likewise.
11897 (_initialize_infcmd): Install "info proc" command and subcommands.
11898
11899 * target.h (struct target_ops): Add to_info_proc.
11900 (target_info_proc): Add prototype.
11901 * target.c (target_info_proc): New function.
11902
11903 * procfs.c (procfs_info_proc): Add prototype.
11904 (info_proc_cmd): Rename into ...
11905 (procfs_info_proc): ... this. Update argument types as appropriate
11906 for a to_info_proc implementation. Handle "what" argument.
11907 (procfs_target): Install procfs_info_proc.
11908 (_initialize_procfs): No longer install "info proc" command.
11909
11910 * linux-nat.c: (enum info_proc_what): Remove.
11911 (linux_nat_info_proc_cmd_1): Rename into ...
11912 (linux_nat_info_proc): ... this. Update argument types as appropriate
11913 for a to_info_proc implementation.
11914 (linux_nat_info_proc_cmd): Remove.
11915 (linux_nat_info_proc_cmd_mappings): Likewise.
11916 (linux_nat_info_proc_cmd_stat): Likewise.
11917 (linux_nat_info_proc_cmd_status): Likewise.
11918 (linux_nat_info_proc_cmd_cwd): Likewise.
11919 (linux_nat_info_proc_cmd_cmdline): Likewise.
11920 (linux_nat_info_proc_cmd_exe): Likewise.
11921 (linux_nat_info_proc_cmd_all): Likewise.
11922 (linux_target_install_ops): Install linux_nat_info_proc.
11923 (_initialize_linux_nat): No longer install "info proc" command
11924 and subcommands.
11925
11926 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
11927
11928 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
11929 * config.in, configure: Regenerate.
11930
11931 * target.h (struct target_ops): Add to_fileio_readlink.
11932 (target_fileio_readlink): Add prototype.
11933 * target.c (target_fileio_readlink): New function.
11934
11935 * inf-child.c: Conditionally include <sys/param.h>.
11936 (inf_child_fileio_readlink): New function.
11937 (inf_child_target): Install it.
11938
11939 * remote.c (PACKET_vFile_readlink): New enum value.
11940 (remote_hostio_readlink): New function.
11941 (init_remote_ops): Install it.
11942 (_initialize_remote): Handle vFile:readlink packet type.
11943
11944 2012-01-20 Pedro Alves <palves@redhat.com>
11945 Ulrich Weigand <ulrich.weigand@linaro.org>
11946
11947 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
11948 * config.in, configure: Regenerate.
11949
11950 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
11951 to_fileio_pread, to_fileio_close, to_fileio_unlink.
11952 (target_fileio_open): Add prototype.
11953 (target_fileio_pwrite): Likewise.
11954 (target_fileio_pread): Likewise.
11955 (target_fileio_close): Likewise.
11956 (target_fileio_unlink): Likewise.
11957 (target_fileio_read_alloc): Likewise.
11958 (target_fileio_read_stralloc): Likewise.
11959
11960 * target.c: Include "gdb/fileio.h".
11961 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
11962 (default_fileio_target): New function.
11963 (target_fileio_open): Likewise.
11964 (target_fileio_pwrite): Likewise.
11965 (target_fileio_pread): Likewise.
11966 (target_fileio_close): Likewise.
11967 (target_fileio_unlink): Likewise.
11968 (target_fileio_close_cleanup): Likewise.
11969 (target_fileio_read_alloc_1): Likewise.
11970 (target_fileio_read_alloc): Likewise.
11971 (target_fileio_read_stralloc): Likewise.
11972
11973 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
11974 <fcntl.h>, and <unistd.h>.
11975 (inf_child_fileio_open_flags_to_host): New function.
11976 (inf_child_errno_to_fileio_error): Likewise.
11977 (inf_child_fileio_open): Likewise.
11978 (inf_child_fileio_pwrite): Likewise.
11979 (inf_child_fileio_pread): Likewise.
11980 (inf_child_fileio_close): Likewise.
11981 (inf_child_fileio_unlink): Likewise.
11982 (inf_child_target): Install to_fileio routines.
11983
11984 * remote.c (init_remote_ops): Install to_fileio routines.
11985
11986 2012-01-20 Pedro Alves <palves@redhat.com>
11987 Ulrich Weigand <ulrich.weigand@linaro.org>
11988
11989 * remote.c (remote_multi_process_p): Only check for multi-process
11990 protocol feature, do not check for extended protocol.
11991 (remote_supports_multi_process): Check for extended protocol here.
11992 (set_general_process): Likewise.
11993 (extended_remote_kill): Likewise.
11994 (remote_pid_to_str): Likewise.
11995 (remote_query_supported): Always query multiprocess mode.
11996
11997 2012-01-20 Pedro Alves <palves@redhat.com>
11998 Ulrich Weigand <ulrich.weigand@linaro.org>
11999
12000 * inferior.h (struct inferior): Add fake_pid_p.
12001 * inferior.c (exit_inferior_1): Clear fake_pid_p.
12002 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
12003 magic_null_ptid since the remote side doesn't provide a real PID.
12004
12005 2012-01-19 Tom Tromey <tromey@redhat.com>
12006
12007 * NEWS: Combine the two Python sections.
12008
12009 2012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
12010
12011 * target.h (target_close): Update comment on the target's unpush state.
12012
12013 2012-01-19 Pedro Alves <palves@redhat.com>
12014
12015 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
12016 linux_nat_async directly instead of going through the target
12017 vector.
12018 * target.c (unpush_target): Close target after unpushing it, not
12019 before.
12020
12021 2012-01-19 Gary Benson <gbenson@redhat.com>
12022
12023 * mdebugread.c (sort_blocks): Replace integer constants with ones
12024 derived from FIRST_LOCAL_BLOCK.
12025
12026 2012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
12027 Jan Kratochvil <jan.kratochvil@redhat.com>
12028
12029 PR gdb/9538
12030 * symfile.c (find_separate_debug_file): New function.
12031 (terminate_after_last_dir_separator): Likewise.
12032 (find_separate_debug_file_by_debuglink): Also try realpath.
12033 * configure.ac (AC_CHECK_FUNCS): Add lstat.
12034 * configure: Regenerate.
12035 * config.in: Regenerate.
12036
12037 2012-01-18 Doug Evans <dje@google.com>
12038
12039 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
12040 (main.o): Remove rule.
12041 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
12042 (--with-sysroot): Rewrite.
12043 * configure: Regenerate.
12044 * config.in: Regenerate.
12045
12046 2012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
12047
12048 * parse.c (initialize_expout): New function.
12049 (reallocate_expout): Likewise.
12050 (parse_exp_in_context): Use `initialize_expout' and
12051 `reallocate_expout' when appropriate.
12052
12053 2012-01-18 Pedro Alves <palves@redhat.com>
12054
12055 * record.c (struct record_breakpoint, record_breakpoint_p)
12056 (record_breakpoints): New.
12057 (record_insert_breakpoint, record_remove_breakpoint): Manage
12058 record breakpoints list. Only remove breakpoints from the
12059 inferior if they had been inserted there in the first place.
12060
12061 2012-01-17 Doug Evans <dje@google.com>
12062
12063 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
12064 if we know we don't have a file name to look for.
12065
12066 2012-01-17 Pedro Alves <palves@redhat.com>
12067
12068 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
12069 the frame's stop reason is UNWIND_UNAVAILABLE.
12070
12071 2012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
12072
12073 Fix compilation error.
12074 * m2-exp.y (yyerror): Use ANSI C prototype.
12075
12076 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
12077
12078 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
12079 (growbuf_by_size): Likewise.
12080 (yyerror): Likewise.
12081 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
12082 (modblock): Remove variable (was #if 0'ed).
12083 (parse_number): Convert prototype from K&R to ANSI C.
12084 (yyerror): Likewise.
12085 * objc-exp.y (parse_number): Likewise.
12086 (yyerror): Likewise.
12087 (yylex): Remove #if 0'ed code.
12088 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
12089 (yyerror): Likewise.
12090
12091 2012-01-16 Tom Tromey <tromey@redhat.com>
12092
12093 * NEWS: Add item.
12094 * symtab.h (compare_filenames_for_search): Declare.
12095 * symtab.c (compare_filenames_for_search): New function.
12096 (iterate_over_some_symtabs): Use it.
12097 * symfile.h (struct quick_symbol_functions)
12098 <map_symtabs_matching_filename>: Change spec.
12099 * psymtab.c (partial_map_symtabs_matching_filename): Use
12100 compare_filenames_for_search. Update for new spec.
12101 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
12102 compare_filenames_for_search. Update for new spec.
12103 * breakpoint.c (clear_command): Use compare_filenames_for_search.
12104
12105 2012-01-16 Tom Tromey <tromey@redhat.com>
12106
12107 PR python/13281:
12108 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
12109 (struct main_type) <flag_flag_enum>: New field.
12110 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
12111 * NEWS: Add entries.
12112 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
12113 enums.
12114 * python/lib/gdb/printing.py (_EnumInstance): New class.
12115 (FlagEnumerationPrinter): Likewise.
12116
12117 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
12118
12119 * breakpoint.c (create_sals_from_address_default): New function.
12120 (create_breakpoints_sal_default): Likewise.
12121 (decode_linespec_default): Likewise.
12122 (is_marker_spec): Removed.
12123 (strace_marker_p): New function.
12124 (init_breakpoint_sal): Using `strace_marker_p' instead of
12125 `is_marker_spec'.
12126 (create_breakpoint): Call method `create_sals_from_address' from
12127 breakpoint_ops, replacing code that created SALs conditionally
12128 on the type of the breakpoint. Call method `create_breakpoints_sal',
12129 replacing code that created breakpoints conditionally on the type
12130 wanted.
12131 (base_breakpoint_create_sals_from_address): New function.
12132 (base_breakpoint_create_breakpoints_sal): Likewise.
12133 (base_breakpoint_decode_linespec): Likewise.
12134 (base_breakpoint_ops): Add methods
12135 `base_breakpoint_create_sals_from_address',
12136 `base_breakpoint_create_breakpoints_sal' and
12137 `base_breakpoint_decode_linespec'.
12138 (bkpt_create_sals_from_address): New function.
12139 (bkpt_create_breakpoints_sal): Likewise.
12140 (bkpt_decode_linespec): Likewise.
12141 (tracepoint_create_sals_from_address): Likewise.
12142 (tracepoint_create_breakpoints_sal): Likewise.
12143 (tracepoint_decode_linespec): Likewise.
12144 (strace_marker_create_sals_from_address): Likewise.
12145 (strace_marker_create_breakpoints_sal): Likewise.
12146 (strace_marker_decode_linespec): Likewise.
12147 (strace_marker_breakpoint_ops): New variable.
12148 (addr_string_to_sals): Remove `marker_spec'. Call method
12149 `decode_linespec' from breakpoint_ops, replacing code that decoded
12150 an address string into a SAL. Use `strace_marker_p' instead of
12151 `marker_spec'.
12152 (strace_command): Decide whether we are dealing with a static
12153 tracepoint with marker or not. Use the appropriate breakpoint_ops.
12154 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
12155 * breakpoint.h (linespec_result, linespec_sals): New forward
12156 declarations.
12157 (breakpoint_ops) <create_sals_from_address>,
12158 <create_breakpoints_sal>, <decode_linespec>: New methods.
12159
12160 2012-01-14 Doug Evans <dje@google.com>
12161
12162 * NEWS: Update text for "maint set python print-stack".
12163 It is deprecated in gdb 7.4 and deleted in 7.5.
12164
12165 2012-01-13 Eli Zaretskii <eliz@gnu.org>
12166
12167 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
12168 including curses.h.
12169
12170 2012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
12171
12172 * configure: Regenerate.
12173 * config.in: Regenerate.
12174
12175 2012-01-12 Keith Seitz <keiths@redhat.com>
12176
12177 PR mi/10586
12178 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
12179 (ANONYMOUS_UNION_NAME): Define.
12180 (is_path_expr_parent): New function.
12181 (get_path_expr_parent): New function.
12182 (is_anonymous_child): New function.
12183 (create_child_with_value): If the child is anonymous and without
12184 a name, assign an object name to it.
12185 (c_describe_child): Use get_path_expr_parent to determine
12186 the parent expression.
12187 If there field represents an anonymous struct or union and
12188 has no name, set an appropriate display name and expression.
12189 (cplus_describe_child): Likewise.
12190
12191 2012-01-12 Pedro Alves <palves@redhat.com>
12192
12193 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
12194 available when %ebp is found to be zero (outermost).
12195
12196 2012-01-11 Andreas Tobler <andreast@fgznet.ch>
12197
12198 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
12199 an internal gdb_static_assert.
12200 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
12201
12202 2012-01-11 Tom Tromey <tromey@redhat.com>
12203
12204 PR gdb/9598:
12205 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
12206 catch" and "catch throw".
12207
12208 2012-01-11 Paul Hilfinger <hilfingr@adacore.com>
12209
12210 * blockframe.c (block_innermost_frame): Start search from selected
12211 frame, if present, or otherwise the current frame.
12212
12213 * c-exp.y (variable): Update innermost_block for
12214 'block COLONCOLON NAME' clause.
12215 * m2-exp.y (variable): Ditto.
12216 * objc-exp.y (variable): Ditto.
12217
12218 2012-01-10 Tom Tromey <tromey@redhat.com>
12219
12220 PR python/13199:
12221 * python/python.c (finish_python_initialization): Set sys.argv.
12222
12223 2012-01-10 Doug Evans <dje@google.com>
12224
12225 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
12226 "want_line_info". All callers updated.
12227 (dwarf_decode_lines_1): New function.
12228 (handle_DW_AT_stmt_list): Add function comment.
12229 New arg "want_line_info". All callers updated.
12230 (read_file_scope,read_type_unit_scope): Move comment from
12231 handle_DW_AT_stmt_list to here.
12232
12233 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
12234
12235 Fix regression after libiberty/ update for GCC PR 6057 and others.
12236 * c-exp.y (operator) <OPERATOR DELETE>
12237 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12238 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
12239 (make_builtin_type, make_name): New variable i, add gdb_assert.
12240 (operator) <OPERATOR NEW>: Update ARGS to 3.
12241 (operator) <OPERATOR DELETE>: Add trailing space.
12242 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
12243 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12244 * cp-support.c (cp_canonicalize_string): Check NULL from
12245 cp_comp_to_string, call warning and return.
12246
12247 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
12248
12249 Fix duplicate .o files after omitting libbfd.a.
12250 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
12251 (SFILES): Add corelow.c.
12252 (COMMON_OBS): Add corelow.o.
12253 (ALLDEPFILES): Remove corelow.c.
12254 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
12255 * config/alpha/alpha-osf3.mh: Likewise.
12256 * config/alpha/fbsd.mh: Likewise.
12257 * config/arm/nbsdaout.mh: Likewise.
12258 * config/arm/nbsdelf.mh: Likewise.
12259 * config/i386/i386gnu.mh: Likewise.
12260 * config/ia64/hpux.mh: Likewise.
12261 * config/ia64/linux.mh: Likewise.
12262 * config/m32r/linux.mh: Likewise.
12263 * config/m68k/linux.mh: Likewise.
12264 * config/mips/irix5.mh: Likewise.
12265 * config/mips/irix6.mh: Likewise.
12266 * config/pa/hpux.mh: Likewise.
12267 * config/pa/linux.mh: Likewise.
12268 * config/powerpc/aix.mh: Likewise.
12269 * config/sparc/linux.mh: Likewise.
12270 * config/sparc/linux64.mh: Likewise.
12271 * config/sparc/sol2.mh: Likewise.
12272 * config/vax/vax.mh: Likewise.
12273 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
12274 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
12275 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
12276 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
12277 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
12278 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
12279 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
12280 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
12281 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
12282 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
12283 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
12284 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
12285 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12286 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
12287 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
12288 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12289 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
12290 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
12291 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
12292 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
12293 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
12294 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
12295 corelow.o from gdb_target_obs.
12296 * corefile.c (core_target): Update the comment on NULL value.
12297 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
12298 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
12299 MATCHES. Drop YUMMY set on NULL.
12300 (core_close): Do not call exit_inferior_silent on zero PID. Do not
12301 reclaim CORE_DATA if it is already NULL.
12302
12303 2012-01-09 Doug Evans <dje@google.com>
12304
12305 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
12306 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
12307
12308 2012-01-09 Keith Seitz <keiths@redhat.com>
12309
12310 * breakpoint.c (wrapper.h): Don't include.
12311
12312 2012-01-09 Keith Seitz <keiths@redhat.com>
12313
12314 * Makefile.in (SFILES): Remove wrapper.c.
12315 (HFILES_NO_SRCDIR): Remove wrapper.h.
12316 (COMMON_OBS): Remove wrapper.o.
12317 * cli/cli-interp.c: Don't inlude wrapper.h.
12318 * corelow.c: Likewise.
12319 (core_open): Replace gdb_target_find_new_threads with
12320 TRY_CATCH around target_find_new_threads.
12321 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
12322 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
12323 * varobj.c (varobj_create): Likewise for parse_exp_1 and
12324 evaluate_expression.
12325 (varobj_set_value): Likewise for evaluate_expression and
12326 value_assign.
12327 (install_new_variable): Likewise for value_fetch_lazy.
12328 (adjust_value_for_child_access): Likewise for value_ind.
12329 (c_describe_child): Likewise for value_subscript and
12330 value_ind.
12331 (c_value_of_root): Likewise for evaluate_expression.
12332 * wrapper.c: Remove.
12333 * wrapper.h: Remove.
12334
12335 2012-01-09 Doug Evans <dje@google.com>
12336
12337 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
12338 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
12339 "abfd" args with "section". All callers updated.
12340 Error checking code moved ...
12341 (error_check_comp_unit_head): ... here. New function.
12342 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
12343 Delete arg "abfd". New arg "type_offset". All callers updated.
12344 (create_debug_types_hash_table): Simplify by using
12345 read_and_check_type_unit_head.
12346
12347 * parser-defs.h (namecopy): Delete.
12348 * parse.c (namecopy, namecopy_size): Move into copy_name.
12349
12350 2012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
12351
12352 Partially fix duplicate .o files after omitting libbfd.a.
12353 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
12354 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12355 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
12356 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12357 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
12358 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
12359 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12360
12361 2012-01-09 Pedro Alves <palves@redhat.com>
12362
12363 * MAINTAINERS: Update my email address.
12364
12365 2012-01-08 Doug Evans <dje@google.com>
12366
12367 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
12368 n_type_units. Rename type_comp_units to all_type_units.
12369 All uses updated.
12370 (add_signatured_type_cu_to_table): Renamed from
12371 add_signatured_type_cu_to_list. All callers updated.
12372
12373 * gdbtypes.h (struct cplus_struct_type): Delete member
12374 nfn_fields_total. All uses removed.
12375
12376 2012-01-06 Doug Evans <dje@google.com>
12377
12378 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
12379 to top of file.
12380 (dwarf2_find_comp_unit): Delete.
12381 (process_psymtab_comp_unit): Make result "void".
12382 Delete args buffer, info_ptr, buffer_size, and replace with
12383 "section". All callers updated.
12384 (dwarf2_build_psymtabs_hard): Simplify.
12385
12386 2012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
12387 Thiago Jung Bauermann <bauerman@br.ibm.com>
12388
12389 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
12390 before `struct gdb_exception'.
12391 * breakpoint.c (update_global_location_list_nothrow)
12392 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
12393 * cp-abi.c (value_rtti_type): Likewise.
12394 * cp-support.c (cp_validate_operator): Likewise.
12395 * infrun.c (insert_exception_resume_breakpoint)
12396 (check_exception_resume, keep_going): Likewise.
12397 * mi-interp.c (mi_breakpoint_created)
12398 (mi_breakpoint_modified): Likewise.
12399 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
12400 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
12401 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
12402
12403 2012-01-05 Doug Evans <dje@google.com>
12404
12405 * dwarf2read.c (statement_prologue): Delete, unused.
12406
12407 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
12408 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
12409
12410 * dwarf2read.c (comp_unit_header): Delete, unused.
12411
12412 2012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
12413
12414 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
12415 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
12416
12417 2012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
12418
12419 * infrun.c (normal_stop): Don't skip calling the normal_stop
12420 observers if the thread was doing a multi-step, but stopped for
12421 some reason other than stepping.
12422
12423 2012-01-05 Pedro Alves <alves.ped@gmail.com>
12424
12425 * cli/cli-decode.h: Add comments.
12426 (CMD_LIST_AMBIGUOUS): Moved to command.h
12427 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
12428 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
12429 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
12430 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
12431 (add_com, add_com_alias, add_info, add_info_alias)
12432 (complete_on_cmdlist, complete_on_enum, help_list): Remove
12433 declarations.
12434 * command.h: Add and adjust comments.
12435 (CMD_LIST_AMBIGUOUS): Moved here.
12436 (help_cmd, help_cmd_list): Delete declarations.
12437
12438 2012-01-04 Doug Evans <dje@google.com>
12439
12440 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
12441 All callers updated.
12442 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
12443 Replace all arguments with "per_cu". All callers updated.
12444
12445 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
12446
12447 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
12448 New arg "per_cu". All callers updated.
12449
12450 Delete #if 0'd out code.
12451 * language.c (binop_result_type): Delete.
12452 (simple_type, ordered_type, same_type, integral_type): Delete.
12453 (numeric_type, character_type, string_type, boolean_type): Delete.
12454 (float_type, structured_type): Delete.
12455 * language.h: Update.
12456
12457 2012-01-04 Tom Tromey <tromey@redhat.com>
12458
12459 * python/py-value.c (valpy_binop): Initialize 'res_val'.
12460
12461 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12462
12463 * corefile.c (close_exec_file): Delete.
12464 (reopen_exec_file): Remove commented out code that seems related
12465 to close_exec_file, which is being deleted here.
12466 * inferior.h (close_exec_file): Delete.
12467 * fork-child.c (fork_inferior): Remove call to fork_inferior.
12468
12469 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12470
12471 * ada-lang.c: #include "cli/cli-utils.h".
12472 (get_selections): Use skip_spaces.
12473 (ada_get_next_arg): Use skip_spaces and skip_to_space.
12474 (catch_ada_exception_command_split): Use skip_spaces.
12475 (ada_decode_assert_location): Likewise.
12476
12477 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12478
12479 * linespec.c (decode_line_internal): Check for C++ or Java
12480 compound constructs only if the current language is C, C++
12481 or Java.
12482
12483 2012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
12484
12485 Revert:
12486 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12487 Joel Brobecker <brobecker@adacore.com>
12488 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12489 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12490 3 times.
12491 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12492 fall through into AT_ENTRY_POINT.
12493 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
12494 DUMMY_ADDR with it.
12495 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12496 PPC_INSN_SIZE skip to 3 times.
12497
12498 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12499
12500 * linespec.c (add_minsym): Preserve function descriptors.
12501
12502 2012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
12503
12504 * breakpoint.c (all_locations_are_pending): Consider locations
12505 in program spaces executing during startup pending as well.
12506
12507 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12508
12509 Copyright year update in most files of the GDB Project.
12510
12511 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12512
12513 * copyright.sh: Delete.
12514 * copyright.py: Rewrite.
12515
12516 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12517
12518 * gnulib/extra/update-copyright: New file, imported from gnulib.
12519
12520 2012-01-04 Joel Brobecker <brobecker@adacore.com>
12521
12522 * README (Copyright and License Notices): New section.
12523
12524 2012-01-03 Tom Tromey <tromey@redhat.com>
12525
12526 PR python/12533:
12527 * python/py-value.c (valpy_dereference, valpy_get_address
12528 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
12529 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
12530 (valpy_absolute, valpy_richcompare): Free intermediate values.
12531
12532 2011-01-03 Joel Brobecker <brobecker@adacore.com>
12533
12534 * ada-lang.c: Reformat the copyright notice.
12535
12536 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12537
12538 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
12539 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
12540 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
12541 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
12542 Revert this part of:
12543 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12544 Build gdb directly from *.o files not using libgdb.a.
12545 * Makefile.in (COMMON_OBS): Remove solib-target.o.
12546
12547 2012-01-02 Joel Brobecker <brobecker@adacore.com>
12548
12549 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
12550 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
12551 Reformat the copyright header.
12552
12553 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12554
12555 Revert this part of:
12556 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12557 Remove the gdbtui binary.
12558 * gdb.c (main): Remove args.interpreter_p initialization.
12559 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12560 * main.h (struct captured_main_args): Remove interpreter_p.
12561
12562 2012-01-02 Joel Brobecker <brobecker@adacore.com>
12563
12564 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
12565
12566 2012-01-02 Joel Brobecker <brobecker@adacore.com>
12567
12568 * top.c (print_gdb_version): Update copyright year.
12569
12570 2012-01-02 Yao Qi <yao@codesourcery.com>
12571
12572 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
12573
12574 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12575 Joel Brobecker <brobecker@adacore.com>
12576
12577 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12578 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12579 3 times.
12580 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12581 fall through into AT_ENTRY_POINT.
12582 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
12583 DUMMY_ADDR with it.
12584 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12585 PPC_INSN_SIZE skip to 3 times.
12586
12587 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12588
12589 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
12590 the return value.
12591 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
12592
12593 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12594
12595 Build gdb directly from *.o files not using libgdb.a.
12596 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
12597 (COMMON_OBS): Remove solib-target.o.
12598 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
12599 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
12600 (LIBGDB_OBS, libgdb.a): Move it above.
12601 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
12602 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
12603 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
12604 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
12605 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
12606 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
12607 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
12608 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
12609 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
12610 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
12611 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
12612 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
12613 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
12614 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
12615 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12616 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
12617 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
12618 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12619 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
12620 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
12621 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
12622 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
12623 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
12624 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
12625 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
12626 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
12627 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
12628
12629 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
12630
12631 Remove the gdbtui binary.
12632 * .gitignore (/gdbtui): Remove.
12633 * Makefile.in (TUI): Remove.
12634 (SUBDIR_TUI_OBS): Remove tui-main.o.
12635 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
12636 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
12637 (tui-main.o): Remove.
12638 (all_object_files): Remove tui-main.o.
12639 * NEWS: New note for the gdbtui removal.
12640 * configure: Rebuilt.
12641 * configure.ac: No longer add all-tui, clean-tui, install-tui and
12642 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
12643 CONFIG_UNINSTALL respectively.
12644 * gdb.c (main): Remove args.interpreter_p initialization.
12645 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12646 * main.h (struct captured_main_args): Remove interpreter_p.
12647 * tui/tui-main.c: Remove.
12648
12649 2012-01-01 Doug Evans <dje@google.com>
12650
12651 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
12652 (dwarf2_physname, read_import_statement): Ditto.
12653 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
12654 (process_structure_scope read_subroutine_type): Ditto.
12655 (read_typedef, load_partial_dies, read_partial_die): Ditto.
12656 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
12657 (dwarf2_fetch_die_location_block): Ditto.
12658 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
12659
12660 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
12661 All callers updated.
12662 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
12663 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
12664 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
12665
12666 * dwarf2read.c (load_cu): Move assert to more useful location.
12667
12668 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
12669 All callers updated.
12670
12671 * dwarf2read.c (dwarf2_per_objfile): Add comment.
12672 (dwarf2_elf_names): Minor reformat.
12673 (dwarf2_per_cu_data): Tweak comment.
12674 (dwarf2_read_section): Fix comment.
12675 (create_all_comp_units): Fix comment.
12676 (load_full_comp_unit): Fix comment.
12677 (process_full_comp_unit): Fix comment.
12678 (read_signatured_type): Fix comment.
12679
12680 For older changes see ChangeLog-2011.
12681 \f
12682 Local Variables:
12683 mode: change-log
12684 left-margin: 8
12685 fill-column: 74
12686 version-control: never
12687 coding: utf-8
12688 End:
This page took 0.289995 seconds and 5 git commands to generate.