put -lpthread into LIBS instead of CONFIG_LDFLAGS.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2012-04-18 Tristan Gingold <gingold@adacore.com>
2
3 * configure.ac (aix): Put -lpthread into libs.
4 * configure: Regenerate.
5
6 2012-04-18 Tom Tromey <tromey@redhat.com>
7
8 * linespec.c (convert_linespec_to_sals): Don't use
9 SYMBOL_OBJ_SECTION.
10 (compare_msymbols): Arguments are minsym_and_objfile, not
11 minimal_symbol*. Don't use SYMBOL_OBJ_SECTION.
12
13 2012-04-18 Pedro Alves <palves@redhat.com>
14
15 Revert gnulib/ part of:
16 2011-01-01 Joel Brobecker <brobecker@adacore.com>
17 Copyright year update in most files (performed by copyright.sh).
18
19 2012-04-18 Jan Kratochvil <jan.kratochvil@redhat.com>
20
21 Fix 64-bit constants on 32-bit hosts.
22 * dwarf2read.c (read_unsigned_leb128): Change declaration return type
23 from unsigned long to ULONGEST.
24 (read_signed_leb128): Change declaration return type from long to
25 LONGEST.
26 (dwarf2_const_value_attr): Change declaration parameter value from long
27 to LONGEST.
28 (dwarf2_compute_name): Change variable value from long to LONGEST.
29 (read_unsigned_leb128): Change return type, variable result and some
30 casts from unsigned long to ULONGEST.
31 (read_signed_leb128): Change return type, variable result and some
32 casts from long to LONGEST.
33 (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
34 value from long to LONGEST.
35 (dwarf2_const_value): Change variable value from long to LONGEST.
36 * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
37 plongest and hex_string.
38 * symtab.h (struct general_symbol_info): Change ivalue from long to
39 LONGEST, remove the comment.
40 * tracepoint.c (validate_actionline, collect_symbol, scope_info):
41 Change SYMBOL_VALUE format strings to use plongest and hex_string.
42
43 2012-04-18 Siddhesh Poyarekar <siddhesh@redhat.com>
44
45 PR symtab/7259:
46 * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
47 * ada-lang.c (ada_discrete_type_high_bound)
48 (ada_discrete_type_low_bound): Fix function comment. Use
49 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
50 (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
51 (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
52 * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
53 Use TYPE_FIELD_ENUMVAL.
54 * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
55 (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
56 * c-typeprint.c (c_type_print_base): Move variable lastval to inner
57 block, change it to LONGEST. Use TYPE_FIELD_ENUMVAL for
58 TYPE_CODE_ENUM.
59 * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
60 * dwarf2read.c (process_enumeration_scope): Likewise.
61 * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
62 field.bitpos.
63 (class StructMainTypePrettyPrinter): Support also
64 FIELD_LOC_KIND_ENUMVAL.
65 * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
66 TYPE_CODE_ENUM.
67 (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
68 (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
69 * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
70 (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment. New
71 field enumval.
72 (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
73 accommodate enumval.
74 (struct call_site): Adjust loc_kind to accommodate enumval.
75 (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
76 (TYPE_FIELD_ENUMVAL): New macros.
77 * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
78 * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
79 TYPE_CODE_ENUM.
80 * p-typeprint.c (pascal_type_print_base): Likewise.
81 * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
82 enumval.
83 * python/lib/gdb/types.py (make_enum_dict): Likewise.
84 * python/py-type.c (convert_field): New variable addrstring. Use
85 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
86 (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
87 * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
88 * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
89 TYPE_CODE_ENUM.
90 * valprint.c (generic_val_print): Likewise.
91
92 2012-04-17 Doug Evans <dje@google.com>
93
94 * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
95
96 * dwarf2read.c: Whitespace fixes.
97 (lookup_signatured_type): Tweak comment.
98 (get_die_type_at_offset): Fix comment.
99
100 2012-04-17 Joel Brobecker <brobecker@adacore.com>
101
102 * xcoffread.c (xcoff_secnum_to_sections): New function.
103 (secnum_to_section, secnum_to_bfd_section): Reimplement
104 using xcoff_secnum_to_sections. Rename "secnum" parameter
105 into "n_scnum".
106 (RECORD_MINIMAL_SYMBOL): Delete.
107 (record_minimal_symbol): New function.
108 (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
109 by call to record_minimal_symbol and set misc_func_recorded
110 to 1. Set last_csect_sec to the XCOFF section index instead
111 of GDB's section_offset index. Update calls to
112 prim_record_minimal_symbol_and_info to pass the BFD section
113 as well.
114
115 2012-04-17 Joel Brobecker <brobecker@adacore.com>
116
117 * xcoffread.c (read_xcoff_symtab): Delete variables
118 last_csect_val and last_csect_sec and associated code.
119
120 2012-04-17 Doug Evans <dje@google.com>
121
122 * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
123 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
124 * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
125 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
126
127 * cleanups.h: New file.
128 * cleanups.c: New file.
129 * Makefile.in (SFILES): Add cleanups.c.
130 (HFILES_NO_SRCDIR): Add cleanups.h.
131 (COMMON_OBS): Add cleanups.o.
132 * defs.h (struct cleanup): Moved to cleanups.h.
133 (do_cleanups,do_final_cleanups): Ditto.
134 (discard_cleanups,discard_final_cleanups): Ditto
135 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
136 (save_cleanups,save_final_cleanups): Ditto.
137 (restore_cleanups,restore_final_cleanups): Ditto.
138 (null_cleanup): Ditto.
139 (make_my_cleanup,make_my_cleanup2): Ditto.
140 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
141 * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
142 (do_cleanups,do_final_cleanups): Ditto.
143 (discard_cleanups,discard_final_cleanups): Ditto
144 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
145 (save_cleanups,save_final_cleanups): Ditto.
146 (restore_cleanups,restore_final_cleanups): Ditto.
147 (null_cleanup): Ditto.
148 (make_my_cleanup,make_my_cleanup2): Ditto.
149 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
150
151 * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
152 make_my_cleanup.
153 (make_cleanup_dyn_string_delete): Ditto.
154 (make_cleanup_ui_file_delete): Ditto.
155 (make_cleanup_ui_out_redirect_pop): Ditto.
156 (make_cleanup_free_section_addr_info): Ditto.
157 (make_cleanup_restore_integer): Ditto.
158 (make_cleanup_unpush_target): Ditto.
159 (make_cleanup_value_free_to_mark): Ditto.
160 (make_cleanup_value_free): Ditto.
161 (make_cleanup_free_so): Ditto.
162
163 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
164
165 New option "set debug auto-load".
166 * NEWS: New commands "set debug auto-load" and "show debug auto-load".
167 * auto-load.c (debug_auto_load, show_debug_auto_load: New.
168 (auto_load_safe_path_vec_update)
169 (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
170 if DEBUG_AUTO_LOAD.
171 (file_is_auto_load_safe): New parameters debug_fmt and ....
172 Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
173 (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
174 caller by explanatory string.
175 (_initialize_auto_load): Register "set debug auto-load".
176 * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
177 and ....
178 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
179 (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
180 by explanatory string.
181 * main.c (captured_main): Likewise.
182 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
183 (source_section_scripts): Likewise.
184
185 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
186
187 New option "set auto-load safe-path".
188 * NEWS: New commands "set auto-load safe-path"
189 and "show auto-load safe-path".
190 * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
191 (auto_load_safe_path, auto_load_safe_path_vec)
192 (auto_load_safe_path_vec_update, set_auto_load_safe_path)
193 (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
194 (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
195 (source_gdb_script_for_objfile): New variable is_safe. Call
196 file_is_auto_load_safe. Return if it is not.
197 (struct loaded_script): New field loaded.
198 (maybe_add_script): Add parameter loaded. Initialize SLOT with it.
199 (print_script): Use LOADED indicator instead of FULL_PATH. Change
200 output "Missing" to "No".
201 (_initialize_auto_load): New variable cmd. Initialize
202 auto_load_safe_path. Register "set auto-load safe-path",
203 "show auto-load safe-path" and "add-auto-load-safe-path".
204 * auto-load.h (maybe_add_script): Add parameter loaded.
205 (file_is_auto_load_safe): New declaration.
206 * config.in: Regenerate.
207 * configure: Regenerate.
208 * configure.ac: New parameters --with-auto-load-safe-path
209 and --without-auto-load-safe-path.
210 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
211 (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
212 * main.c (captured_main): Check file_is_auto_load_safe for
213 LOCAL_GDBINIT.
214 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
215 variable is_safe. Call file_is_auto_load_safe. Return if it is not.
216 (source_section_scripts): Call file_is_auto_load_safe. Return if it is
217 not.
218
219 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
220
221 auto-load: Implementation.
222 * NEWS: New descriptions for "info auto-load",
223 "info auto-load gdb-scripts", "info auto-load python-scripts",
224 "info auto-load local-gdbinit" and "info auto-load libthread-db".
225 Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
226 and "show auto-load-scripts". New description for "set auto-load",
227 "show auto-load", "set auto-load gdb-scripts",
228 "show auto-load gdb-scripts", "set auto-load python-scripts",
229 "show auto-load python-scripts", "set auto-load local-gdbinit",
230 "show auto-load local-gdbinit", "set auto-load libthread-db" and
231 "show auto-load libthread-db".
232 * auto-load.c: Remove include python/python-internal.h. Add includes
233 exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
234 cli/cli-setshow.h.
235 (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
236 (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
237 (gdbpy_global_auto_load): Rename to ...
238 (global_auto_load): ... here.
239 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
240 (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
241 (script_language_gdb, source_gdb_script_for_objfile): New.
242 (struct loaded_script): New field language.
243 (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
244 LANGUAGE.
245 (maybe_add_script): Add parameter language. Drop redundant
246 entry.full_path initialization. Initialize entry.language and
247 (*slot)->language.
248 (auto_load_objfile_script): Change parameter suffix to language.
249 Remove the call of maybe_add_script.
250 Call language->source_script_for_objfile.
251 (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
252 New.
253 (collect_matching_scripts): Adjust it for
254 struct collect_matching_scripts_data.
255 (auto_load_info_scripts_pattern_nl): New variable.
256 (info_auto_load_scripts): Rename to ...
257 (auto_load_info_scripts): ... here, add parameter language. Adjust it
258 for struct collect_matching_scripts_data.
259 (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
260 (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
261 (auto_load_show_cmdlist_get, info_auto_load_cmd)
262 (auto_load_info_cmdlist_get): New.
263 (_initialize_auto_load): Move add_info of "auto-load-scripts" to
264 python/py-auto-load.c. New installment for "set auto-load gdb-scripts",
265 "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
266 "info auto-load local-gdbinit".
267 * auto-load.h (struct script_language): New.
268 (gdbpy_global_auto_load): Rename to ...
269 (global_auto_load): ... here.
270 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
271 (auto_load_local_gdbinit_loaded): New declarations.
272 (maybe_add_script): New parameter language.
273 (auto_load_objfile_script): Change parameter suffix to language.
274 (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
275 (auto_load_info_scripts, auto_load_set_cmdlist_get)
276 (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
277 declarations.
278 * linux-thread-db.c: Include auto-load.h and ctype.h.
279 (auto_load_thread_db, show_auto_load_thread_db): New.
280 (struct thread_db_info): New field filename.
281 (delete_thread_db_info): Call xfree for FILENAME.
282 (try_thread_db_load): Initialize FILENAME.
283 (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
284 if !AUTO_LOAD_THREAD_DB.
285 (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
286 (_initialize_thread_db): Install auto_load_thread_db
287 as "set auto-load libthread-db" and install info_auto_load_libthread_db
288 as "info auto-load libthread-db".
289 * main.c (captured_main): Rename gdbpy_global_auto_load to
290 global_auto_load. Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
291 AUTO_LOAD_LOCAL_GDBINIT_LOADED.
292 (print_gdb_help): Extend the help for 'local init file'.
293 * python/py-auto-load.c: Remove a comment about gdb scripts extension.
294 (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
295 (auto_load_scripts): Rename to ...
296 (auto_load_python_scripts): ... here, update the comment.
297 (gdbpy_load_auto_script_for_objfile): New declaration.
298 (show_auto_load_python_scripts, script_language_python)
299 (gdbpy_load_auto_script_for_objfile): New.
300 (source_section_scripts): Refactor the code.
301 (load_auto_scripts_for_objfile): Rename to ...
302 (gdbpy_load_auto_scripts_for_objfile): ... here, update the
303 auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
304 (info_auto_load_python_scripts): New.
305 (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
306 Rename "set auto-load-scripts" to "set auto-load python-scripts".
307 Register "set auto-load-scripts" as its deprecated alias. Register
308 "info auto-load python-scripts". Register "info auto-load-scripts" as
309 its deprecated alias.
310 (load_auto_scripts_for_objfile): Rename to ...
311 (gdbpy_load_auto_scripts_for_objfile): ... here.
312 * python/python.h (load_auto_scripts_for_objfile): Rename to ...
313 (gdbpy_load_auto_scripts_for_objfile): ... here.
314
315 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
316
317 auto-load: Move files.
318 * Makefile.in (SFILES): Add auto-load.c.
319 (HFILES_NO_SRCDIR): Add auto-load.h.
320 (COMMON_OBS): Add auto-load.o.
321 (distclean): Change .gdbinit for gdb-gdb.gdb.
322 * auto-load.c: New file, with parts from python/py-auto-load.c.
323 * auto-load.h: New file, with parts from python/python.h.
324 * configure: Regenerate.
325 * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
326 * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
327 * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
328 * main.c: Include auto-load.h.
329 * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
330 command.h, observer.h and progspace.h to auto-load.c. Add include
331 auto-load.h.
332 (gdbpy_global_auto_load, struct auto_load_pspace_info)
333 (struct loaded_script, auto_load_pspace_data)
334 (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
335 (hash_loaded_script_entry, eq_loaded_script_entry)
336 (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
337 (maybe_add_script): Move to auto-load.c.
338 (source_section_scripts): Change maybe_add_script parameters passing,
339 use script_not_found_warning_print.
340 (clear_section_scripts, auto_load_objfile_script)
341 (auto_load_new_objfile, loaded_script_ptr)
342 (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
343 (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
344 (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
345 auto_load_new_objfile and info_auto_load_scripts initizations to
346 auto-load.c.
347 * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
348
349 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
350
351 Code cleanup.
352 * charset.c (find_charset_names): Remove variables ix and elt.
353 Use free_char_ptr_vec.
354 * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
355 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
356 debugdir_end. New variable debugdir_len.
357 * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
358 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
359 declarations.
360 * progspace.c (clear_program_space_solib_cache): Remove variables ix
361 and elt. Use free_char_ptr_vec.
362 * source.c (add_path): Remove variables argv, arg and argv_index.
363 New variables dir_vec, back_to, ix and name.
364 Use dirnames_to_char_ptr_vec_append. Use freeargv instead of
365 make_cleanup_freeargv. Remove variable separator. Simplify the code
366 no longer expecting DIRNAME_SEPARATOR.
367 (openp): Remove variable p, p1 and len. New variables dir_vec,
368 back_to, ix and dir. Use dirnames_to_char_ptr_vec. Simplify the code
369 no longer expecting DIRNAME_SEPARATOR.
370 * symfile.c (find_separate_debug_file): New variables debugdir_vec,
371 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
372 debugdir_end.
373 * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
374 (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
375 (dirnames_to_char_ptr_vec): New functions.
376
377 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
378
379 Code cleanup.
380 * source.c (add_path): Remove always true conditional 'p == 0' and
381 unindent its code block.
382
383 2012-04-17 Pedro Alves <palves@redhat.com>
384
385 * gdbtypes.h (FIELD_BITPOS): Rename to ...
386 (FIELD_BITPOS_LVAL): ... this.
387 (FIELD_BITPOS): New.
388 (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
389 * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
390 * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
391 SET_FIELD_BITPOS.
392 * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
393 SET_FIELD_BITPOS.
394 * stabsread.c (read_cpp_abbrev, read_one_struct_field)
395 (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
396 * target-descriptions.c (tdesc_gdb_type): Adjust to use
397 SET_FIELD_BITPOS.
398
399 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
400
401 Do not rely on FIELD_LOC_KIND_BITPOS being zero.
402 * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
403 TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
404 * gdbtypes.c (append_flags_type_flag): Likewise, twice.
405 * jv-lang.c (java_link_class_type): Likewise, once.
406 * stabsread.c (read_enum_type): Likewise.
407
408 2012-04-16 Yao Qi <yao@codesourcery.com>
409
410 * common/agent.c (agent_run_command): Add one more parameter `len'.
411 Update callers.
412 * common/agent.h: Update declaration.
413 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
414 Update.
415 (linux_child_static_tracepoint_markers_by_strid): Ditto.
416
417 2012-04-14 Anton Gorenkov <xgsa@yandex.ru>
418
419 PR mi/13393
420 * value.c (value_actual_type): New function.
421 * value.h (value_actual_type): New declaration.
422 * varobj.c (update_type_if_necessary): New function.
423 (varobj_create): Call value_actual_type instead of
424 value_type.
425 (install_dynamic_child): distinct changed and type changed MI variable
426 objects.
427 (update_dynamic_varobj_children): Updated for install_dynamic_child
428 change. All callers updated.
429 (varobj_update): Support for MI variable object type change if
430 the value changed and RTTI is used to determine the type.
431 (create_child_with_value): Call value_actual_type instead of
432 value_type.
433 (adjust_value_for_child_access): Extended with a new parameter which
434 specify whether the given value should be casted to enclosing type.
435 All callers updated.
436
437 2012-04-14 Yao Qi <yao@codesourcery.com>
438
439 Import gnulib module inttypes from git
440 (250b80067c1e1d8faa0c42fb572f721975b929c5)
441 * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
442 (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and gnulib/m4/inttypes-pri.m4
443 * aclocal.m4, config.in, configure: Regenerated.
444 * gnulib/Makefile.am: Update.
445 * gnulib/Makefile.in: Update.
446 * gnulib/m4/gnulib-cache.m4: Update.
447 * gnulib/m4/gnulib-comp.m4: Update.
448 * gnulib/inttypes.in.h: New.
449 * gnulib/m4/inttypes-pri.m4: New.
450 * gnulib/m4/inttypes.m4: New.
451
452 2012-04-13 Luis Machado <lgustavo@codesourcery.com>
453
454 * infrun.c (resume): Update PC address to the real PC after
455 preparing to do displaced stepping.
456
457 2012-04-12 Doug Evans <dje@google.com>
458
459 * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
460 All callers updated.
461
462 2012-04-12 Mark Kettenis <kettenis@gnu.org>
463
464 * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
465
466 2012-04-12 Doug Evans <dje@google.com>
467
468 * dwarf2read.c (create_all_type_units): Renamed from
469 create_debug_types_hash_table. All callers updated.
470
471 * dwarf2read.c (create_signatured_type_table_from_index): Rename
472 local type_sig to sig_type, type_offset to type_offset_in_tu.
473 (hash_signatured_type): Renamed from hash_type_signature,
474 all callers updated.
475 (eq_signatured_type): Renamed from eq_type_signature,
476 all callers updated.
477 (create_debug_types_hash_table): Rename local type_sig to sig_type.
478 (process_enumeration_scope): Ditto.
479 (lookup_signatured_type_at_offset): Ditto.
480 (load_full_type_unit, read_signatured_type): Ditto.
481
482 2012-04-12 Yao Qi <yao@codesourcery.com>
483
484 * remote.c (async_remote_interrupt): Correct function name in
485 debug message.
486 (async_remote_interrupt_twice): Ditto.
487
488 2012-04-11 Yuanhui Zhang <asmwarrior@gmail.com>
489
490 * source.c (find_and_open_source): Consistently pass resulting
491 full path through xfullpath.
492
493 2012-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
494
495 Provide more specific displaced-stepping memory error message.
496 * infrun.c (displaced_step_prepare): New variable status. Call
497 target_read_memory instead of read_memory, provide more specific
498 error message.
499
500 2012-04-11 Tristan Gingold <gingold@adacore.com>
501
502 PR gdb/13901
503 * darwin-nat.c (darwin_execvp): Revert previous patch.
504
505 2012-04-11 Tristan Gingold <gingold@adacore.com>
506
507 PR gdb/13901
508 * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
509 in case of change.
510
511 2012-04-11 Tristan Gingold <gingold@adacore.com>
512
513 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
514 warning.
515
516 2012-04-11 Siva Chandra Reddy <sivachandra@google.com>
517
518 New command 'explore' which helps explore values and types in
519 scope.
520 * NEWS: Add an entry about the new 'explore' command.
521 * data-directory/Makefile.in: Add gdb/command/explore.py
522 * python/lib/gdb/command/explore.py: Implemention of the 'explore'
523 command using the GDB Python API.
524
525 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
526
527 * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
528 extension in jump target calculation.
529
530 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
531
532 * mips-tdep.c (mips32_next_pc): Handle JALX.
533
534 2012-04-10 Yao Qi <yao@codesourcery.com>
535
536 * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
537
538 2012-04-10 Yao Qi <yao@codesourcery.com>
539
540 * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
541 and gnulib/m4/gnulib-tool.m4.
542
543 2012-04-10 Doug Evans <dje@google.com>
544
545 * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
546 (load_partial_dies): Clarify comment.
547 (find_partial_die): Support rereading type units.
548 Clarify CU handling, if we know offset is in CU, don't search for the
549 containing CU. Add comment regarding memory waste.
550
551 2012-04-10 H.J. Lu <hongjiu.lu@intel.com>
552
553 * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
554 i386/x32-avx and i386/x32-avx-linux.
555 (i386/x32-expedite): New.
556 (i386/x32-linux-expedite): Likewise.
557 (i386/x32-avx-expedite): Likewise.
558 (i386/x32-avx-linux-expedite): Likewise.
559 ($(outdir)/i386/x32.dat): Likewise.
560 ($(outdir)/i386/x32-linux.dat): Likewise.
561 ($(outdir)/i386/x32-avx.dat): Likewise.
562 ($(outdir)/i386/x32-avx-linux.dat): Likewise.
563
564 * features/i386/x32-avx-linux.xml: New file.
565 * features/i386/x32-avx.xml: Likewise.
566 * features/i386/x32-core.xml: Likewise.
567 * features/i386/x32-linux.xml: Likewise.
568 * features/i386/x32.xml: Likewise.
569
570 * features/i386/x32-avx-linux.c: New. Generated.
571 * features/i386/x32-avx.c: Likewise.
572 * features/i386/x32-linux.c: Likewise.
573 * features/i386/x32.c: Likewise.
574 * regformats/i386/x32-avx-linux.dat: Likewise.
575 * regformats/i386/x32-avx.dat: Likewise.
576 * regformats/i386/x32-linux.dat: Likewise.
577 * regformats/i386/x32.dat: Likewise.
578
579 2012-04-10 Tristan Gingold <gingold@adacore.com>
580
581 * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
582 code to kill the inferior.
583
584 2012-04-09 Mark Kettenis <kettenis@gnu.org>
585
586 * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
587 defines.
588 * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
589 defines.
590 * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
591 (yyvsp): New defines.
592 * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
593 defines.
594 * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
595 defines.
596 * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
597 defines.
598 * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
599 defines.
600 * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
601 defines.
602
603 2012-04-09 Mark Kettenis <kettenis@gnu.org>
604
605 * sparc64-tdep.c (sparc64_store_arguments)
606 (sparc64_store_arguments): Fix coding style.
607
608 2012-04-07 Mark Kettenis <kettenis@gnu.org>
609
610 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
611 complex floats, adjust some related comments and tighten a related
612 assertion.
613 (sparc64_extract_return_value): Handle complex floats.
614
615 2012-04-07 Doug Evans <dje@google.com>
616
617 * dwarf2read.c (load_partial_dies): Change condition to assert.
618
619 2012-04-06 Doug Evans <dje@google.com>
620
621 * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
622 "mov %rsp,%rbp".
623
624 2012-04-05 Kevin Buettner <kevinb@redhat.com>
625
626 * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
627 fencepost error.
628 (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
629 (v850_gdbarch_init): Set `num_regs' as appropriate for the
630 architecture.
631
632 2012-04-05 Keith Seitz <keiths@redhat.com>
633
634 * linespec.c (decode_compound): Remove.
635 (enum offset_relative_sign): New enum.
636 (struct line_offset): New struct.
637 (struct linespec): New struct.
638 (struct linespec_state): Move file_symtabs,
639 user_filename, and user_function into struct linespec.
640 Make result an anonymous struct holding vectors of
641 symbolp and minsym_and_objfile_d.
642 Add language member.
643 (enum ls_token_type): New enum.
644 (linespec_keywords): New array.
645 (struct ls_token): New struct.
646 (struct ls_parser): New struct.
647 (linespec_lexer_lex_number): New function.
648 (linespec_lexer_lex_keyword): New function.
649 (is_ada_operator): New function.
650 (skip_quote_char): New function.
651 (copy_token_string): New function.
652 (is_closing_quote_enclosed): New function.
653 (find_parameter_list_end): New function.
654 (linespec_lexer_lex_string): New function.
655 (linespec_lexer_lex_one): New function.
656 (linespec_lexer_consume_token): New function.
657 (linespec_lexer_peek_token): New function.
658 (cplusplus_error): Remove unused function.
659 (find_methods): Update comment.
660 (find_toplevel_char): Return const.
661 (is_objc_method_format): Remove unused function.
662 (find_toplevel_string): New function.
663 (is_linespec_boundary): Remove.
664 (symbol_not_found_error): New function.
665 (find_method_overload_end): Remove function.
666 (unexpected_linespec_error): New function.
667 (keep_name_info): Remove.
668 (linespec_parse_line_offset): New function.
669 (linespec_parse_basic): New function.
670 (canonicalize_linespec): New function.
671 (decode_line_internal): Remove.
672 (create_sals_line_offset): New function adapted from
673 decode_all_digits.
674 (convert_linespec_to_sals): New function.
675 (parse_linespec): New function.
676 (linespec_parser_new): New function.
677 (linespec_state_destructor): Change parameter type to
678 struct linespec_state *.
679 Add language parameter.
680 Remove freeing of moved members.
681 (linespec_parser_delete): New function.
682 (decode_line_full): Use parse_linespec and linespec_parser_new.
683 (decode_line_1): Likewise.
684 (decode_indirect): Rename to ...
685 (linespec_expression_to_pc): ... this and rewrite
686 to simply find CORE_ADDR, storing this result for later
687 conversion to SALs.
688 (locate_first_half): Remove.
689 (deocde_objc): Add parameter LS.
690 Initialize new struct collect_info members.
691 Handle minimal symbols, too.
692 (decode_compound): Delete.
693 (lookup_prefix_sym): Rewrite.
694 (compare_msymbols): New function.
695 (find_method): Rewrite.
696 Do not call cplusplus_error.
697 (symtabs_from_filename): Rewrite.
698 (collect_function_symbols): Delete.
699 (find_function_symbols): Rewrite without ARGPTR-style
700 processing.
701 (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
702 (decode_dollar): Adapted and renamed to ...
703 (linespec_parse_variable): ... this.
704 (find_linespec_symbols): New function.
705 (decode_label): Adapted and renamed to ...
706 (find_label_symbols): ... this.
707 (decode_digits_list_mode): Add and use LS argument.
708 (decode_digits_ordinary): Likewise.
709 (collect_symbols): Do not collect SALs, just symbols and msymbols.
710 If in list mode, allow any symbol class. Otherwise, only
711 permit LOC_BLOCK symbols.
712 (minsym_found): Update comments.
713 (search_minsyms_for_name): Do not convert the matching symbol
714 into a SAL. Simply push the symbol and objfile into the
715 result vector.
716 (decode_variable): Delete. Contents adapted into
717 find_linespec_symbols.
718
719 * cp-support.c (SKIP_SPACE): Remove.
720 (operator_tokens): Remove unused global.
721 (cp_validate_operator): Remove.
722 * cp-support.h (cp_validate_operator): Remove declaration.
723
724 2012-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
725
726 * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
727 for TYPE_VPTR_FIELDNO.
728 * valprint.c (valprint_check_validity): Make it global, move the
729 function comment ...
730 * value.h (valprint_check_validity): ... to this new declaration.
731
732 2012-04-02 Tristan Gingold <gingold@adacore.com>
733
734 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
735 the STATE32 api for i386 state.
736 (i386_darwin_store_inferior_registers): Likewise.
737
738 2012-04-02 Tristan Gingold <gingold@adacore.com>
739
740 * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
741 SS offset.
742 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
743 format_string.
744
745 2012-04-02 Tristan Gingold <gingold@adacore.com>
746
747 PR gdb/13901
748 * darwin-nat.c (darwin_execvp): Set binary preference.
749
750 2012-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
751
752 * NEWS (set breakpoint condition-evaluation): Use imperative mood.
753
754 2012-03-30 Tom Tromey <tromey@redhat.com>
755
756 * python/python.c (gdbpy_decode_line): Move cleanup creation out
757 of TRY_CATCH. Fix error handling.
758 * python/py-value.c (convert_value_from_python): Move 'old'
759 declaration to innermost scope.
760
761 2012-03-29 Joel Brobecker <brobecker@adacore.com>
762 Andrey Smirnov <andrew.smirnov@gmail.com>
763
764 -Wshadow warning fix.
765 * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
766 "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
767 Adjust code accordingly.
768
769 2012-03-29 Joel Brobecker <brobecker@adacore.com>
770
771 * ada-lang.c (symbol_completion_add): Rename parameter
772 "encoded" into "encoded_p". Ajust code and documentation
773 accordingly.
774
775 2012-03-29 Joel Brobecker <brobecker@adacore.com>
776 Andrey Smirnov <andrew.smirnov@gmail.com>
777
778 -Wshadow warning fix.
779 * ada-lang.c (symbol_completion_add): Rename parameter
780 "wild_match" into wild_match_p. Update code and documentation
781 accordingly.
782
783 2012-03-29 Joel Brobecker <brobecker@adacore.com>
784
785 * ada-lang.c (symbol_completion_match): Rename parameter
786 "encoded" into "encoded_p". Ajust code and documentation
787 accordingly.
788
789 2012-03-29 Joel Brobecker <brobecker@adacore.com>
790 Andrey Smirnov <andrew.smirnov@gmail.com>
791
792 -Wshadow warning fix.
793 * ada-lang.c (symbol_completion_match): Rename parameter
794 "wild_match" into "wild_match_p". Adjust code and function
795 documentation accordingly.
796
797 2012-03-29 Joel Brobecker <brobecker@adacore.com>
798 Andrey Smirnov <andrew.smirnov@gmail.com>
799
800 -Wshadow warning fix.
801 * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
802 "symbol_info" into "info". Adjust code accordingly.
803 (ada_lookup_symbol): Likewise.
804
805 2012-03-29 Joel Brobecker <brobecker@adacore.com>
806
807 * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
808 of this function's documentation.
809
810 2012-03-29 Joel Brobecker <brobecker@adacore.com>
811 Andrey Smirnov <andrew.smirnov@gmail.com>
812
813 -Wshadow warning fix.
814 * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
815 variable into "wild_match_p". Adjust code accordingly.
816
817 2012-03-29 Joel Brobecker <brobecker@adacore.com>
818 Andrey Smirnov <andrew.smirnov@gmail.com>
819
820 -Wshadow warning fix.
821 * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
822 parameter into "wild_match_p". Adjust code accordingly.
823 Document this parameter in the function description.
824
825 2012-03-29 Joel Brobecker <brobecker@adacore.com>
826 Andrey Smirnov <andrew.smirnov@gmail.com>
827
828 -Wshadow warning fix.
829 * ada-lang.c (add_symbols_from_enclosing_procs): Rename
830 "wild_match" parameter to "wild_match_p" (-Wshadow).
831
832 2012-03-29 Joel Brobecker <brobecker@adacore.com>
833
834 * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
835 in function documentation.
836
837 2012-03-29 Joel Brobecker <brobecker@adacore.com>
838 Andrey Smirnov <andrew.smirnov@gmail.com>
839
840 -Wshadow warning fix.
841 * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
842 variable into wild_match_p. Adjust code accordingly.
843
844 2012-03-29 Joel Brobecker <brobecker@adacore.com>
845 Andrey Smirnov <andrew.smirnov@gmail.com>
846
847 * ada-valprint.c (ada_val_print_1): Move the code handling
848 TYPE_CODE_ENUM inside its own lexical block. Declare
849 variables len and val there, instead of in the function's
850 top level block. Avoid declaring deref_val again in a way
851 that shadows another variable of the same name declared
852 in one of the up-level blocks. Just re-use the up-level
853 variable instead.
854
855 2012-03-29 Joel Brobecker <brobecker@adacore.com>
856
857 * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
858 Replace block_found argument by symbol_info. Adjust
859 implementation accordingly. Add function documentation.
860 (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
861 Fix documentation.
862 * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
863 * ada-exp.y (write_object_renaming): Adjust to new
864 ada_lookup_encoded_symbol API.
865
866 2012-03-29 Joel Brobecker <brobecker@adacore.com>
867
868 * ada-lang.h (struct ada_symbol_info): Reformat. Improve
869 documentation.
870
871 2012-03-28 Rathish C <rathish.c@kpitcummins.com>
872
873 * v850-tdep.c: Add the enum values for mpu and fpu registers.
874 (v850_register_name): Add the mpu and fpu register names.
875 (v850e_register_name): Add the mpu and fpu register names.
876 (v850e2_register_name): New function.
877 (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
878 bfd_mach_v850e2v3.
879
880 2012-03-28 Joel Brobecker <brobecker@adacore.com>
881
882 * NEWS: Add entry for Ada varobj support.
883
884 2012-03-28 Joel Brobecker <brobecker@adacore.com>
885
886 * varobj.c (default_value_is_changeable_p): New function,
887 extracted from varobj_value_is_changeable_p. Add declaration.
888 (ada_value_is_changeable_p): New function, extracted from
889 varobj_value_is_changeable_p. Add declaration.
890 (struct language_specific): New field "value_is_changeable_p".
891 (languages): Add entries for new field.
892 (varobj_create): Set language before calling install_new_value.
893 (varobj_value_is_changeable_p): Reimplement to call the varobj's
894 "value_is_changeable_p" language callback.
895
896 2012-03-28 Joel Brobecker <brobecker@adacore.com>
897
898 * ada-varobj.h, ada-varobj.c: New files.
899 * Makefile.in (SFILES): Add ada-varobj.c.
900 (HFILES_NO_SRCDIR): Add ada-varobj.h.
901 (COMMON_OBS): Add ada-varobj.o.
902
903 2012-03-28 Joel Brobecker <brobecker@adacore.com>
904
905 * varobj.c (ada_value_has_mutated): Add declaration. New function.
906 (struct language_specific): New field "value_has_mutated".
907 (languages): Set field "value_has_mutated" in each entry of array.
908 (varobj_value_has_mutated): New function.
909 (varobj_udpdate): Add handling of type mutation.
910 (value_of_root): Add handling of type mutation.
911 (ada_value_has_mutated): New function.
912
913 2012-03-28 Pedro Alves <palves@redhat.com>
914
915 * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
916 Always supply $fr0 as 0.0 and $fr1 as 1.0.
917
918 2012-03-28 Tom Tromey <tromey@redhat.com>
919
920 * python/py-inferior.c (infpy_read_memory): Remove cleanups and
921 explicitly free 'buffer' on exit paths. Decref 'membuf_object'
922 before returning.
923
924 2012-03-28 Tom Tromey <tromey@redhat.com>
925
926 * .dir-locals.el: New file.
927
928 2012-03-28 Pedro Alves <palves@redhat.com>
929
930 * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
931
932 2012-03-28 Joel Brobecker <brobecker@adacore.com>
933
934 * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
935 handling for r0.
936
937 2012-03-27 Pedro Alves <palves@redhat.com>
938
939 Eliminate struct ui_stream.
940
941 * ui-out.h (struct ui_stream): Delete.
942 (ui_out_field_stream): Adjust prototype.
943 (ui_out_stream_new, ui_out_stream_delete)
944 (make_cleanup_ui_out_stream_delete): Delete declarations.
945 * ui-out.c (ui_out_field_stream): Change prototype to take a
946 ui_file instead of a ui_stream. Adjust.
947 (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
948 (make_cleanup_ui_out_stream_delete): Delete.
949 * breakpoint.c (print_breakpoint_location)
950 (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
951 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
952 * disasm.c (dump_insns): Ditto.
953 (do_mixed_source_and_assembly, do_assembly_only): Adjust
954 prototype.
955 (gdb_disassembly): Use ui_file/mem_fileopen instead of
956 ui_stream/ui_out_stream_new.
957 * infcmd.c (print_return_value): Ditto.
958 * osdata.c (info_osdata_command): Don't allocate a local
959 ui_stream.
960 * stack.c (print_frame_arg, print_frame_args, print_frame): Use
961 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
962 * tracepoint.c (print_one_static_tracepoint_marker): Don't
963 allocate a local ui_stream.
964 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
965 instead of ui_stream/ui_out_stream_new.
966 (list_args_or_locals): Don't allocate a local ui_stream.
967 * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
968 (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
969 ui_stream/ui_out_stream_new.
970 * cli/cli-setshow.c (do_setshow_command): Ditto.
971
972 2012-03-27 Oza Pawandeep <oza.pawandeep@gmail.com>
973
974 * arm-linux-tdep.c (arm_linux_init_abi): Call
975 set_gdbarch_process_record. Initialize `arm_swi_record' field.
976 * arm-tdep.c (arm_process_record): New function.
977 (deallocate_reg_mem): New function.
978 (decode_insn): New function.
979 (thumb_record_branch): New function.
980 (thumb_record_ldm_stm_swi(): New function.
981 (thumb_record_misc): New function.
982 (thumb_record_ld_st_stack): New function.
983 (thumb_record_ld_st_imm_offset): New function.
984 (thumb_record_ld_st_reg_offset(): New function.
985 (thumb_record_add_sub_cmp_mov): New function.
986 (thumb_record_shift_add_sub): New function.
987 (arm_record_coproc_data_proc): New function.
988 (arm_record_coproc): New function.
989 (arm_record_b_bl): New function.
990 (arm_record_ld_st_multiple): New function.
991 (arm_record_ld_st_reg_offset): New function.
992 (arm_record_ld_st_imm_offset): New function.
993 (arm_record_data_proc_imm): New function.
994 (arm_record_data_proc_misc_ld_str): New function.
995 (arm_record_extension_space): New function.
996 (arm_record_strx): New function.
997 (sbo_sbz): New function.
998 (struct insn_decode_record): New structure for arm insn record.
999 (REG_ALLOC): New macro for reg allocations.
1000 (MEM_ALLOC): New macro for memory allocations.
1001 * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
1002
1003 2012-03-27 Andreas Schwab <schwab@linux-m68k.org>
1004
1005 * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
1006 (store_register): Likewise.
1007
1008 2012-03-26 Oza Pawandeep <oza.pawandeep@gmail.com>
1009
1010 * MAINTAINERS (Write After Approval): Add myself to the list.
1011
1012 2012-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
1013
1014 * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
1015 Describe also the option "auto".
1016
1017 2012-03-22 Richard Henderson <rth@redhat.com>
1018
1019 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
1020 * sparc-nat.c (sparc_xfer_wcookie): Make static.
1021
1022 2012-03-22 Richard Henderson <rth@redhat.com>
1023
1024 * jit.c (jit_read_code_entry): Compute alignment and offset of
1025 int64_t member before computing entry_size.
1026
1027 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
1028
1029 Python scripting: Add new method Value.referenced_value to
1030 gdb.Value which can dereference pointer as well as reference
1031 values.
1032 * NEWS: Add entry under 'Python scripting' about the new method
1033 Value.referenced_value on gdb.Value objects.
1034 * python/py-value.c (valpy_referenced_value): New function
1035 defining a new method on gdb.Value objects which can dereference
1036 pointer and reference values.
1037
1038 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
1039
1040 * MAINTAINERS (Write After Approval): Add myself to the list.
1041
1042 2012-03-21 Kevin Buettner <kevinb@redhat.com>
1043
1044 * symtab.c (skip_prologue_sal): Change test to check for "main()"
1045 in addition to "main".
1046
1047 2012-03-21 Joel Brobecker <brobecker@adacore.com>
1048
1049 * expression.h (op_name): Add declaration.
1050 * expprint.c (op_name): Remove declaration. Make non-static.
1051 * ax-gdb.c (gen_expr): Use op_name instead of op_string.
1052
1053 2012-03-21 Thomas Schwinge <thomas@codesourcery.com>
1054
1055 * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
1056 of struct siginfo.
1057 * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
1058 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
1059 * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
1060 (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
1061 (linux_nat_get_siginfo): Likewise.
1062 * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
1063 (linux_nat_get_siginfo): Likewise.
1064 * linux-tdep.c (linux_get_siginfo_type): Likewise.
1065 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
1066 * procfs.c (gdb_siginfo_t): Likewise.
1067
1068 2012-03-21 Mike Frysinger <vapier@gentoo.org>
1069
1070 * .gitignore: Ignore more files.
1071
1072 2012-03-20 Pedro Alves <palves@redhat.com>
1073
1074 * remote.c (remote_start_remote): Clear `rs->starting_up' on early
1075 returns.
1076
1077 2012-03-20 Yao Qi <yao@codesourcery.com>
1078
1079 * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
1080 comment.
1081
1082 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1083
1084 Code cleanupp: Use cu_offset and sect_offset compile time type checking.
1085 * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
1086 (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
1087 sect_offset.
1088 * dwarf2expr.h (cu_offset, sect_offset): New types.
1089 (struct dwarf_expr_context_funcs) <dwarf_call>
1090 (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
1091 sect_offset.
1092 (struct dwarf_expr_context) <len>: Improve the comment.
1093 (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
1094 cu_offset and sect_offset.
1095 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
1096 (dwarf_expr_get_base_type, needs_frame_dwarf_call)
1097 (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
1098 * dwarf2loc.h: Include dwarf2expr.h.
1099 (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
1100 and sect_offset.
1101 * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
1102 Improve the comment.
1103 (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
1104 (struct signatured_type, struct line_header, struct partial_die_info)
1105 (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
1106 (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
1107 (get_die_type_at_offset, create_cus_from_index)
1108 (create_signatured_type_table_from_index, dw2_get_file_names)
1109 (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
1110 (read_and_check_comp_unit_head, read_and_check_type_unit_head)
1111 (create_debug_types_hash_table, process_psymtab_comp_unit)
1112 (load_partial_comp_unit, create_all_comp_units)
1113 (partial_die_parent_scope, partial_die_full_name, skip_one_die)
1114 (load_full_comp_unit, dwarf2_physname, read_import_statement)
1115 (inherit_abstract_dies, read_func_scope, read_call_site_scope)
1116 (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
1117 (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
1118 (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
1119 (find_partial_die, read_attribute_value, lookup_die_type)
1120 (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
1121 (is_ref_attr): New function comment.
1122 (dwarf2_get_ref_die_offset): New function comment, new variable retval.
1123 Use cu_offset and sect_offset.
1124 (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
1125 (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
1126 (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
1127 (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
1128 (offset_and_type_hash, offset_and_type_eq, set_die_type)
1129 (get_die_type_at_offset, partial_die_hash, partial_die_eq)
1130 (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
1131 sect_offset.
1132
1133 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1134
1135 Code cleanup.
1136 * python/py-auto-load.c (source_section_scripts): New variable back_to.
1137 Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
1138 with xfree.
1139 (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
1140
1141 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1142
1143 * NEWS: Describe new options --init-command=FILE, -ix and
1144 --init-eval-command=COMMAND, -iex.
1145 * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
1146 CMDARG_INIT_COMMAND.
1147 (captured_main): New enum items OPT_IX and OPT_IEX. Add
1148 "init-command", "init-eval-command", "ix" and "iex" to the variable
1149 long_options. Handle OPT_IX and OPT_IEX. Process them from CMDARG_VEC.
1150 New comment for CMDARG_FILE and CMDARG_COMMAND processing.
1151 (print_gdb_help): Describe --init-command=FILE, -ix and
1152 --init-eval-command=COMMAND, -iex.
1153
1154 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1155
1156 Code cleanup.
1157 * main.c (struct cmdarg): Move it here from main. Add more comments.
1158 (cmdarg_s, VEC (cmdarg_s)): New.
1159 (main): Move struct cmdarg from here. New variables cmdarg_vec and
1160 cmdarg_p. Remove variables cmdsize and ncmd and their initialization.
1161 Install cleanup for cmdarg_vec. Update filling for options 'x' and
1162 'X'. Replace cmdarg processing by cmdarg_vec processing. Remove xfree
1163 of CMDARG.
1164
1165 2012-03-19 Tom Tromey <tromey@redhat.com>
1166
1167 * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
1168
1169 2012-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1170
1171 PR symtab/13777
1172 * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
1173 GCC >=4.5.
1174
1175 2012-03-16 Chris January <chris.january@allinea.com>
1176
1177 * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
1178 of clear.
1179
1180 2012-03-16 Chris January <chris.january@allinea.com>
1181
1182 * source.c (add_path): Use memmove instead of strcpy because the
1183 strings overlap.
1184
1185 2012-03-16 Joel Brobecker <brobecker@adacore.com>
1186
1187 * value.h (set_value_parent): Add declaration.
1188 * value.c (set_value_parent): New function.
1189 (value_address): If VALUE->PARENT is not NULL, then use it as
1190 the base address instead of VALUE->LOCATION.address.
1191 * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
1192 the same as OBJ's address. Adjust V's offset accordingly.
1193 Set V's parent.
1194
1195 2012-03-16 Gary Benson <gbenson@redhat.com>
1196
1197 PR breakpoints/10738
1198 * dwarf2read.c (use_deprecated_index_sections): New global.
1199 (struct partial_die_info): New member may_be_inlined.
1200 (read_partial_die): Set may_be_inlined where appropriate.
1201 (add_partial_subprogram): Add partial symbols for partial
1202 DIEs that may be inlined.
1203 (new_symbol_full): Add inlined subroutines to the current
1204 scope.
1205 (write_psymtabs_to_index): Bump version number.
1206 (dwarf2_read_index): Read only version 6 indices unless
1207 use_deprecated_index_sections is set.
1208 * linespec.c (symbol_and_data_callback): New structure.
1209 (iterate_inline_only): New function.
1210 (iterate_over_all_matching_symtabs): New argument
1211 "include_inline". If nonzero, also call the callback for
1212 symbols representing inlined subroutines.
1213 (lookup_prefix_sym): Pass extra argument to the above.
1214 (find_function_symbols): Likewise.
1215 (add_matching_symbols_to_info): Likewise.
1216 * NEWS: Mention that GDB can now set breakpoints on inlined
1217 functions.
1218
1219 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
1220
1221 * p-typeprint.c (pascal_type_print_method_args):
1222 Fix display of parameter of methods.
1223
1224 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
1225
1226 * amd64-windows-nat.c (_initialize_amd64_windows_nat):
1227 Add missing prototype.
1228
1229 2012-03-16 Yao Qi <yao@codesourcery.com>
1230 Jan Kratochvil <jan.kratochvil@redhat.com>
1231
1232 Fix false compilation warning.
1233 * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
1234
1235 2012-03-15 Jonathan Larmour <jifl@eCosCentric.com>
1236 Pedro Alves <pedro@codesourcery.com>
1237
1238 * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
1239 (arm_register_g_packet_guesses): New function.
1240 (arm_gdbarch_init): Don't force a target description with
1241 registers when the executable is detected as M-profile. Instead
1242 set gdbarch->tdep->is_m. Register `g' packet guesses.
1243 (_initialize_arm_tdep): Initialize the new target description.
1244 * features/arm-with-m-fpa-layout.xml: New description.
1245 * features/arm-with-m-fpa-layout.c: New, generated.
1246
1247 2012-03-15 Joel Brobecker <brobecker@adacore.com>
1248
1249 * breakpoint.c (breakpoint_xfer_memory): Add assertion.
1250 Update function description.
1251 (insert_bp_location): Do not wipe bl->target_info out.
1252 * mem-break.c: #include "gdb_string.h".
1253 (default_memory_insert_breakpoint): Do not call target_read_memory
1254 with a pointer to the breakpoint's shadow_contents buffer. Use
1255 a local buffer instead.
1256 * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
1257
1258 2012-03-15 Tom Tromey <tromey@redhat.com>
1259
1260 * NEWS: Mention "info vtbl", not "info vtable".
1261 * cp-support.c (info_vtbl_command): Fix comment.
1262 (_initialize_cp_support): Fix text.
1263
1264 2012-03-15 Tom Tromey <tromey@redhat.com>
1265
1266 * cp-valprint.c (cp_print_value_fields): Use
1267 print_function_pointer_address for vtable slot.
1268
1269 2012-03-15 Tom Tromey <tromey@redhat.com>
1270
1271 * gnu-v3-abi.c (struct value_and_voffset): New.
1272 (hash_value_and_voffset, eq_value_and_voffset)
1273 (compare_value_and_voffset, compute_vtable_size)
1274 (print_one_vtable, gnuv3_print_vtable): New functions.
1275 (init_gnuv3_ops): Initialize 'print_vtable' field.
1276 * cp-support.c (info_vtbl_command): New function.
1277 (_initialize_cp_support): Add "info vtbl".
1278 * cp-abi.h (cplus_print_vtable): Declare.
1279 (struct cp_abi_ops) <print_vtable>: New field.
1280 * cp-abi.c (cplus_print_vtable): New function.
1281 * NEWS: Update.
1282
1283 2012-03-15 Tom Tromey <tromey@redhat.com>
1284
1285 * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
1286 iterate_over_symbols.
1287
1288 2012-03-14 Doug Evans <dje@google.com>
1289
1290 * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
1291 DW_OP_GNU_parameter_ref.
1292
1293 2012-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
1294
1295 Fix double prompt of 'interpreter-exec mi'.
1296 * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
1297 (mi_interpreter_resume): use it.
1298 (mi_execute_command_input_handler): New function.
1299 * mi/mi-main.c (mi_execute_command): Move prompt printing to
1300 mi_execute_command_input_handler.
1301
1302 2012-03-13 Josh Matthews <josh@joshmatthews.net> (tiny change)
1303
1304 * darwin-nat-info.c (_initialize_darwin_info_commands): Add
1305 prototype.
1306 (darwin_debug_port_info): Make static.
1307 * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
1308 * machoread.c (_initialize_machoread): Add prototype.
1309 * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
1310 (i386_darwin_set_control, i386_darwin_get_control)
1311 i386_darwin_dr_set_addr, i386_darwin_get_addr)
1312 i386_darwin_get_status, i386_darwin_get_control):
1313 Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
1314
1315 2012-03-13 Joel Brobecker <brobecker@adacore.com>
1316
1317 * ax-gdb.c (gen_usual_unary): Remove special handling of
1318 enum and bool types.
1319
1320 2012-03-13 Joel Brobecker <brobecker@adacore.com>
1321
1322 * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
1323
1324 2012-03-13 Joel Brobecker <brobecker@adacore.com>
1325
1326 * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
1327
1328 2012-03-13 Chris January <chris.january@allinea.com>
1329
1330 * aix-thread.c (fill_sprs): Store the floating point registers
1331 at the correct offsets into vals.
1332
1333 2012-03-13 Doug Evans <dje@google.com>
1334
1335 * NEWS: Mention symbol-reloading has been deleted.
1336 * symfile.c (symbol_reloading): Delete.
1337 (show_symbol_reloading): Delete.
1338 (_initialize_symfile): Delete set/show symbol-reloading.
1339
1340 * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
1341 read_in_chain until we have successfully read it in.
1342 (load_full_comp_unit): Ditto.
1343 (read_signatured_type): Add comment.
1344
1345 2012-03-13 Chris January <chris.january@allinea.com>
1346
1347 * stabsread.c (fix_common_block): Change type of valu argument
1348 to CORE_ADDR.
1349
1350 2012-03-13 Chris January <chris.january@allinea.com>
1351
1352 * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
1353 instruction.
1354
1355 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1356
1357 * common/linux-procfs.c (linux_proc_get_int): New, from
1358 linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
1359 field.
1360 (linux_proc_get_tgid): Only call linux_proc_get_int.
1361 (linux_proc_get_tracerpid): New.
1362 (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
1363 (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
1364 linux_proc_pid_has_state.
1365 * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
1366 * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
1367 (linux_ptrace_attach_warnings): New.
1368 * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
1369 New declaration.
1370 * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
1371 (linux_nat_attach): New variables ex, buffer, message and message_s.
1372 Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
1373
1374 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1375
1376 * Makefile.in (linux-ptrace.o): New.
1377 * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
1378 from linux-nat.c.
1379 * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
1380 * common/linux-ptrace.c: New file.
1381 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
1382 * config/arm/linux.mh: Likewise.
1383 * config/i386/linux.mh: Likewise.
1384 * config/i386/linux64.mh: Likewise.
1385 * config/ia64/linux.mh: Likewise.
1386 * config/m32r/linux.mh: Likewise.
1387 * config/m68k/linux.mh: Likewise.
1388 * config/mips/linux.mh: Likewise.
1389 * config/pa/linux.mh: Likewise.
1390 * config/powerpc/linux.mh: Likewise.
1391 * config/powerpc/ppc64-linux.mh: Likewise.
1392 * config/powerpc/spu-linux.mh: Likewise.
1393 * config/s390/s390.mh: Likewise.
1394 * config/sparc/linux.mh: Likewise.
1395 * config/sparc/linux64.mh: Likewise.
1396 * config/xtensa/linux.mh: Likewise.
1397 * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
1398 common/linux-procfs.c.
1399 (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
1400
1401 2012-03-13 Hui Zhu <teawater@gmail.com>
1402 Pedro Alves <palves@redhat.com>
1403
1404 * breakpoint.c (init_breakpoint_sal): New flags parameter. Handle
1405 CREATE_BREAKPOINT_FLAGS_INSERTED.
1406 (create_breakpoint_sal, create_breakpoints_sal)
1407 (base_breakpoint_create_breakpoints_sal)
1408 (tracepoint_create_breakpoints_sal)
1409 (strace_marker_create_breakpoints_sal): New flags parameter. Pass
1410 down.
1411 (break_command_1, handle_gnu_v3_exceptions, trace_command)
1412 (ftrace_command, strace_command): Adjust.
1413 (create_tracepoint_from_upload): Pass
1414 CREATE_BREAKPOINT_FLAGS_INSERTED.
1415 * breakpoint.h (enum breakpoint_create_flags): New.
1416 (create_breakpoint): New flags parameter.
1417 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
1418 * python/py-breakpoint.c (bppy_init): Adjust.
1419 * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
1420 * spu-tdep.c (spu_catch_start): Adjust.
1421
1422 2012-03-13 Pedro Alves <palves@redhat.com>
1423 Hui Zhu <teawater@gmail.com>
1424 Yao Qi <yao@codesourcery.com>
1425
1426 * remote.c (struct remote_state): New field `starting_up'.
1427 (remote_start_remote): Set and clear it.
1428 (remote_can_download_tracepoint): If starting up, return false.
1429
1430 2012-03-13 Yao Qi <yao@codesourcery.com>
1431
1432 * inferior.h (struct inferior): Remove fields any_syscall_count,
1433 syscalls_counts and total_syscalls_count. Move them to new
1434 struct catch_syscall_inferior_data in breakpoint.c.
1435 * breakpoint.c: Call DEF_VEC_I(int).
1436 (struct catch_syscall_inferior_data): New.
1437 (get_catch_syscall_inferior_data): New.
1438 (catch_syscall_inferior_data_cleanup): New.
1439 (insert_catch_syscall): Update to access data in
1440 struct catch_syscall_inferior_data.
1441 (insert_catch_syscall): Likewise.
1442 (remove_catch_syscall): Likewise.
1443 (remove_catch_syscall): Likewise.
1444 (is_syscall_catchpoint_enabled): Likewise.
1445 (add_catch_command): Likewise.
1446 (_initialize_breakpoint): Register cleanup.
1447 * breakpoint.h: Removed DEF_VEC_I(int).
1448 * dwarf2loc.c: Call DEF_VEC_I(int).
1449 * mi/mi-main.c: Likewise.
1450
1451 2012-03-12 Mark Kettenis <kettenis@gnu.org>
1452
1453 * inf-ptrace.c (inf_ptrace_post_attach): Make static.
1454
1455 2012-03-12 Chris January <chris.january@allinea.com>
1456
1457 * aix-thread.c (_initialize_aix_thread): Add prototype.
1458 * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
1459 * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
1460
1461 2012-03-12 Joel Brobecker <brobecker@adacore.com>
1462
1463 * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
1464 include of "amd64-nat.h".
1465
1466 2012-03-12 Tom Tromey <tromey@redhat.com>
1467
1468 * buildsym.c (record_pending_block): Now static.
1469 * buildsym.h: (record_pending_block): Remove.
1470
1471 2012-03-12 Andreas Tobler <andreast@fgznet.ch>
1472
1473 * amd64bsd-nat.c: Include amd64bsd-nat.h.
1474
1475 2012-03-09 Tom Tromey <tromey@redhat.com>
1476
1477 * dwarf2read.c (struct dwarf2_cu) <checked_producer,
1478 producer_is_gxx_lt_4_6>: New fields.
1479 (producer_is_gxx_lt_4_6): Use and update producer cache fields.
1480
1481 2012-03-09 Tom Tromey <tromey@redhat.com>
1482
1483 * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
1484
1485 2012-03-08 Joel Brobecker <brobecker@adacore.com>
1486
1487 * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
1488 prototype.
1489
1490 2012-03-08 Joel Brobecker <brobecker@adacore.com>
1491
1492 * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
1493
1494 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1495
1496 Fix -Wmissing-prototypes build.
1497 * arm-linux-nat.c (get_thread_id): Make it static.
1498 * xtensa-linux-nat.c (get_thread_id): Likewise.
1499
1500 2012-03-08 Joel Brobecker <brobecker@adacore.com>
1501
1502 * server.c (process_point_options): If a conditional expression
1503 is found, only print a message if remote_debug is nonzero.
1504
1505 2012-03-08 Luis Machado <lgustavo@codesourcery.com>
1506
1507 * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
1508 of internal error for unknown/unsupported types.
1509
1510 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1511
1512 Fix CU relative vs. absolute DIE offsets.
1513 * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
1514 offset to offset_in_cu.
1515 * dwarf2read.c (process_enumeration_scope): Add CU offset to
1516 TYPE_OFFSET.
1517 (dwarf2_fetch_die_location_block): Rename parameter offset to
1518 offset_in_cu. New variable offset, add CU offset to OFFSET_IN_CU.
1519
1520 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1521
1522 * libunwind-frame.c: Rename to ...
1523 * ia64-libunwind-tdep.c: ... here.
1524 * libunwind-frame.h: Rename to ...
1525 * ia64-libunwind-tdep.h: ... here.
1526 * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
1527 ia64-libunwind-tdep.h.
1528 (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
1529 * README (--with-libunwind): Rename to ...
1530 (--with-libunwind-ia64): ... here, note it is ia64 specific now.
1531 * config.in: Regenerate.
1532 * configure: Regenerate.
1533 * configure.ac: New option --with-libunwind-ia64, make the
1534 AS_HELP_STRING ia64 specific. Deprecate option --with-libunwind.
1535 Remove AC_DEFINE for HAVE_LIBUNWIND.
1536 * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
1537 Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
1538 Rename libunwind-frame in the general comment.
1539 * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
1540 Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
1541 Move forward declarations inside #ifndef. Rename libunwind-frame in
1542 the general comment.
1543 * ia64-tdep.c: Rename libunwind-frame.h #include to
1544 ia64-libunwind-tdep.h.
1545 (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
1546 (ia64_libunwind_descr): Rename libunwind-frame to
1547 ia64-libunwind-tdep in these function comments.
1548 * ia64-tdep.h: Rename libunwind-frame.h #include to
1549 ia64-libunwind-tdep.h.
1550 * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
1551 ia64-libunwind-tdep in that data comment.
1552
1553 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1554
1555 * libunwind-frame.h (struct frame_unwind): New declaration.
1556
1557 2012-03-08 Joel Brobecker <brobecker@adacore.com>
1558
1559 * breakpoint.c (_initialize_breakpoint): Fix error in help of
1560 "set breakpoint condition-evaluation" command.
1561
1562 2012-03-08 Tristan Gingold <gingold@adacore.com>
1563
1564 * sparc-stub.c: Move to stubs/
1565 * sh-stub.c: Likewise.
1566 * m68k-stub.c: Likewise.
1567 * m32r-stub.c: Likewise.
1568 * i386-stub.c: Likewise.
1569
1570 2012-03-08 Andreas Schwab <schwab@linux-m68k.org>
1571
1572 * m68klinux-tdep.c (m68k_linux_init_abi): Register
1573 linux_get_siginfo_type.
1574
1575 * m68klinux-nat.c: Include "gdb_proc_service.h".
1576 (PTRACE_GET_THREAD_AREA): Define.
1577 (ps_get_thread_area): New function.
1578
1579 2012-03-08 Yao Qi <yao@codesourcery.com>
1580
1581 * remote.c (remote_get_noisy_reply): Replace `sprintf' with
1582 `xsnprintf'.
1583 (remote_query_attached): Likewise.
1584 (remote_static_tracepoint_marker_at): Likewise.
1585 (remote_set_permissions): Likewise.
1586 (remote_detach_1, extended_remote_attach_1): Likewise.
1587 (send_g_packet, remote_vkill): Likewise.
1588 (extended_remote_disable_randomization): Likewise.
1589 (remote_add_target_side_condition): Likewise.
1590 (remote_insert_breakpoint): Likewise.
1591 (remote_remove_breakpoint): Likewise.
1592 (remote_insert_watchpoint): Likewise.
1593 (remote_remove_watchpoint): Likewise.
1594 (remote_insert_hw_breakpoint): Likewise.
1595 (remote_insert_hw_breakpoint): Likewise.
1596 (remote_remove_hw_breakpoint): Likewise.
1597 (remote_download_command_source): Likewise.
1598 (remote_download_tracepoint): Likewise.
1599 (remote_download_trace_state_variable): Likewise.
1600 (remote_disable_tracepoint): Likewise.
1601 (remote_trace_set_readonly_regions): Likewise.
1602 (remote_get_tracepoint_status): Likewise.
1603 (remote_trace_find): Likewise.
1604 (remote_get_trace_state_variable_value): Likewise.
1605 (remote_set_disconnected_tracing): Likewise.
1606 (remote_set_circular_trace_buffer): Likewise.
1607 (remote_get_min_fast_tracepoint_insn_len): Likewise.
1608 (remote_use_agent): Likewise.
1609 (remote_add_target_side_condition): Add one parameter BUF_SIZE.
1610 Update callers.
1611
1612 2012-03-07 Pedro Alves <palves@redhat.com>
1613
1614 * NEWS: Mention QProgramSignals.
1615 * inferior.h (update_signals_program_target): Declare.
1616 * infrun.c: (update_signals_program_target): New.
1617 (handle_command): Update the target of the new program signals
1618 array changes.
1619 * remote.c (PACKET_QProgramSignals): New enum.
1620 (last_program_signals_packet): New global.
1621 (remote_program_signals): New.
1622 (remote_start_remote): Update the target with the program signals
1623 list.
1624 (remote_protocol_features): Add entry for QPassSignals.
1625 (remote_open_1): Free anc clear last_program_signals_packet.
1626 (init_remote_ops): Install remote_program_signals.
1627 * target.c (update_current_target): Adjust.
1628 (target_program_signals): New.
1629 * target.h (struct target_ops) <to_program_signals>: New field.
1630 (target_program_signals): Declare.
1631
1632 2012-03-07 Pedro Alves <palves@redhat.com>
1633
1634 * NEWS: Add subtitle for new z0/z1 conditional breakpoint
1635 extensions.
1636
1637 2012-03-07 Andreas Schwab <schwab@linux-m68k.org>
1638
1639 * m68klinux-nat.c (getregs_supplies): Make static.
1640 (getfpregs_supplies): Likewise.
1641 (have_ptrace_getregs): Likewise.
1642
1643 2012-03-06 Joel Brobecker <brobecker@adacore.com>
1644
1645 * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
1646 in call to get_die_type_at_offset.
1647
1648 2012-03-06 Stan Shebs <stan@codesourcery.com>
1649
1650 * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
1651 * mi/mi-cmd-disas.c: Ditto.
1652 * mi/mi-cmd-env.c: Ditto.
1653 * mi/mi-cmd-file.c: Ditto.
1654 * mi/mi-cmd-stack.c: Ditto.
1655 * mi/mi-cmd-target.c: Ditto.
1656 * mi/mi-cmd-var.c: Ditto.
1657 * mi/mi-cmds.c: Ditto.
1658 * mi/mi-cmds.h: Ditto.
1659 * mi/mi-console.c: Ditto.
1660 * mi/mi-getopt.c: Ditto.
1661 * mi/mi-getopt.h: Ditto.
1662 * mi/mi-interp.c: Ditto.
1663 * mi/mi-main.c: Ditto.
1664 * mi/mi-out.c: Ditto.
1665 * mi/mi-parse.c: Ditto.
1666 * mi/mi-parse.h: Ditto.
1667 * mi/mi-symbol-cmds.c: Ditto.
1668
1669 * mi/mi-getopt.h: Move mi_opt struct up.
1670 * mi/mi-main.c (captured_mi_execute_command): Remove redundant
1671 return.
1672 * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
1673
1674 2012-03-06 Tom Tromey <tromey@redhat.com>
1675
1676 * proc-service.c (ps_pglobal_lookup): Set the current program
1677 space.
1678
1679 2012-03-06 Pedro Alves <palves@redhat.com>
1680
1681 * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
1682
1683 2012-03-05 Joel Brobecker <brobecker@adacore.com>
1684
1685 * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
1686
1687 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1688
1689 Code cleanup.
1690 * common/linux-osdata.c (linux_common_core_of_thread): New function
1691 comment.
1692 * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
1693 call by linux_common_core_of_thread.
1694 (linux_nat_core_of_thread_1): Remove.
1695 * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
1696 * linux-thread-db.c: Include linux-osdata.h.
1697 (update_thread_core): Replace linux_nat_core_of_thread_1 call by
1698 linux_common_core_of_thread.
1699
1700 2012-03-05 Tom Tromey <tromey@redhat.com>
1701
1702 * value.c (value_primitive_field): Don't fetch contents for
1703 non-virtual bases.
1704
1705 2012-03-05 Tom Tromey <tromey@redhat.com>
1706
1707 * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
1708
1709 2012-03-05 Andreas Arnez <arnez@linux.vnet.ibm.com>
1710
1711 * s390-nat.c: Include "gregset.h".
1712
1713 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1714
1715 * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
1716 [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
1717 (libunwind_load): New variable so_error, use it for dlerror. Try to
1718 load also LIBUNWIND_SO_7.
1719
1720 2012-03-05 Pedro Alves <palves@redhat.com>
1721
1722 * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
1723 is not NULL, and remove resulting dead code.
1724
1725 2012-03-05 Thomas Schwinge <thomas@codesourcery.com>
1726
1727 * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
1728 prologue to sh_analyze_prologue.
1729 (sh_analyze_prologue): Make better use of such an upper limit, and
1730 generally be more cautious about accessing memory.
1731
1732 2012-03-05 Tom Tromey <tromey@redhat.com>
1733
1734 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
1735 _initialize_ia64_hpux_tdep.
1736
1737 2012-03-05 Pedro Alves <palves@redhat.com>
1738
1739 PR gdb/13766
1740
1741 * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
1742 the register state is clear, supply explicit zero, instead of
1743 marking the register unavailable.
1744
1745 2012-03-05 Tristan Gingold <gingold@adacore.com>
1746
1747 * NEWS: Mention OpenVMS ia64 new target.
1748
1749 2012-03-05 Tristan Gingold <gingold@adacore.com>
1750
1751 * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
1752 (ia64_unw_accessors, ia64_unw_rse_accessors)
1753 (ia64_libunwind_descr): Declare.
1754 * ia64-vms-tdep.c: New file.
1755 * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
1756 (ia64_libunwind_descr): Make them public.
1757 * configure.tgt: Add ia64-*-*vms*.
1758 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
1759 (ALLDEPFILES): Add ia64-vms-tdep.c
1760
1761 2012-03-05 Tristan Gingold <gingold@adacore.com>
1762
1763 * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
1764 * remote.c (PACKET_qXfer_uib): New enum value.
1765 (remote_protocol_features): Add entry for PACKET_qXfer_uib.
1766 (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
1767 (_initialize_remote): Call add_packet_config_cmd for
1768 xfer:uib packet.
1769
1770 2012-03-05 Tristan Gingold <gingold@adacore.com>
1771
1772 * osabi.c (gdb_osabi_names): Add OpenVMS.
1773 (generic_elf_osabi_sniffer): Likewise.
1774 * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
1775
1776 2012-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1777
1778 Removed unused code.
1779 * libunwind-frame.c (libunwind_frame_unwind)
1780 (libunwind_frame_base_address): Remove.
1781 * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
1782
1783 2012-03-04 Yao Qi <yao@codesourcery.com>
1784
1785 * common/agent.c (gdb_connect_sync_socket): Add _ markup and
1786 remove trailing new line.
1787 (agent_run_command, agent_run_command): Add _ markup.
1788 (agent_capability_check): Likewise.
1789
1790 2012-03-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1791
1792 * breakpoint.c (set_condition_evaluation_mode): Set
1793 CONDITION_EVALUATION_MODE unconditionally.
1794
1795 2012-03-03 Yao Qi <yao@codesourcery.com>
1796
1797 * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
1798 * common/agent.h: Update declaration.
1799 * inf-child.c (inf_child_use_agent): New.
1800 (inf_child_can_use_agent): New.
1801 (inf_child_target): Initialize fields `to_use_agent'
1802 and `to_can_use_agent'.
1803 * agent.c (agent_new_objfile): New.
1804 (_initialize_agent): Add agent_new_objfile to new_objfile
1805 observer.
1806
1807 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
1808 New.
1809 (linux_target_install_ops): Initialize field
1810 `to_static_tracepoint_markers_by_strid'.
1811 * remote.c (free_current_marker): Move it to ...
1812 * tracepoint.c (free_current_marker): ... here. New.
1813 (cleanup_target_stop): New.
1814 * tracepoint.h: Declare free_current_marker.
1815 * NEWS: Add one entry about `info static-tracepoint-marker'.
1816
1817 2012-03-03 Yao Qi <yao@codesourcery.com>
1818
1819 * common/agent.c (agent_loaded_p): New.
1820 (agent_look_up_symbols): New global.
1821 * common/agent.h: Declare agent_loaded_p.
1822
1823 2012-03-03 Yao Qi <yao@codesourcery.com>
1824
1825 * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
1826 (agent_capability_check, agent_capability_invalidate): New.
1827 (symbol_list): New array element.
1828 * common/agent.h (enum agent_capa): New.
1829 * target.c (target_pre_inferior): Call agent_capability_invalidate.
1830
1831 2012-03-03 Yao Qi <yao@codesourcery.com>
1832
1833 * target.h (struct target_ops) <to_use_agent>: New field.
1834 (struct target_ops) <to_can_use_agent>: New field.
1835 (target_use_agent, target_can_use_agent): New macro.
1836 * target.c (update_current_target): Update.
1837 * remote.c: New enum `PACKET_QAgent'.
1838 (remote_protocol_features): Add a new element.
1839 (remote_use_agent, remote_can_use_agent): New.
1840 (init_remote_ops): Initialize field `can_use_agent' with
1841 remote_can_use_agent. Intiailize field `use_agent' with
1842 remote_use_agent.
1843 * common/agent.c (use_agent): New global.
1844 * common/agent.h: Declare it.
1845 * tracepoint.c (info_static_tracepoint_markers_command): Add
1846 comment.
1847 * Makefile.in (SFILES): Add common/agent.c and agent.c.
1848 (COMMON_OBS): Add common/agent.o and agent.o
1849 (common-agent.o): New rule.
1850 * agent.c: New.
1851
1852 2012-03-03 Yao Qi <yao@codesourcery.com>
1853
1854 * common/agent.c: New.
1855 * common/agent.h: New.
1856 * configure.ac: Add `sys/socket.h' and `sys/un.h' to
1857 AC_CHECK_HEADERS.
1858 * configure, configh.in: Regenerated.
1859
1860 2012-03-02 Kevin Buettner <kevinb@redhat.com>
1861
1862 * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
1863 unless it exists for this architecture.
1864
1865 2012-03-02 Joel Brobecker <brobecker@adacore.com>
1866
1867 * language.h (struct language_defn): New "method" la_read_var_value.
1868 * findvar.c: #include "language.h".
1869 (default_read_var_value): Renames read_var_value. Rewrite
1870 function description.
1871 (read_var_value): New function.
1872 * value.h (default_read_var_value): Add prototype.
1873 * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
1874 New functions.
1875 (ada_language_defn): Add entry for la_read_var_value.
1876 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
1877 * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
1878 language_defn structures to add entry for new la_read_var_value
1879 field.
1880
1881 2012-03-02 Tom Tromey <tromey@redhat.com>
1882 Pedro Alves <palves@redhat.com>
1883
1884 PR breakpoints/13776:
1885 * breakpoint.c (breakpoint_init_inferior): Delete step-resume
1886 breakpoints.
1887 (delete_longjmp_breakpoint_at_next_stop): New.
1888 * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
1889 * target.c (generic_mourn_inferior): Call mark_breakpoints_out
1890 before deleting the inferior. Add comments.
1891 * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
1892 breakpoints immediately, but only on next stop. Move that code
1893 next to where we mark other breakpoints for deletion.
1894
1895 2012-03-02 Joel Brobecker <brobecker@adacore.com>
1896
1897 * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
1898 marker.
1899 * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
1900 violation.
1901
1902 2012-03-02 Pedro Alves <palves@redhat.com>
1903
1904 * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
1905
1906 2012-03-02 Ulrich Weigand <uweigand@de.ibm.com>
1907
1908 Fix -Wmissing-prototypes build.
1909 * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
1910 * remote-sim.c (gdbsim_has_all_memory): Likewise.
1911 (gdbsim_has_memory): Likewise.
1912
1913 2012-03-02 Yao Qi <yao@codesourcery.com>
1914
1915 Fix -Wmissing-prototypes build.
1916 * charset.c (phony_iconv_open): Make static.
1917 (phony_iconv_close, phony_iconv): Likewise.
1918 * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
1919 * i386-windows-nat.c (_initialize_i386_windows_nat): New
1920 prototype.
1921 * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
1922 * ser-mingw.c (create_select_thread): Make static.
1923 * windows-termcap.c (tgetent): New prototype.
1924 (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
1925
1926 2012-03-02 Zhang Yuanhui <asmwarrior@gmail.com>
1927
1928 Fix -Wmissing-prototypes build.
1929 * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
1930 (_initialize_windows_nat, _initialize_check_for_gdb_ini)
1931 (_initialize_loadable): New prototypes.
1932
1933 2012-03-02 Doug Evans <dje@google.com>
1934
1935 * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
1936 abbrev table, read_comp_unit will do it.
1937
1938 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1939
1940 Fix -Wmissing-prototypes build.
1941 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
1942 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
1943 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
1944 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
1945 (_initialize_arm_symbian_tdep): New prototype.
1946 * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
1947 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
1948 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
1949 static.
1950 * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
1951 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
1952 prototype.
1953 * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
1954 (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
1955 * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
1956 static.
1957 * moxie-tdep.c (moxie_process_record): Likewise.
1958 * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
1959 (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
1960 * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
1961 (_initialize_rl78_tdep): New prototype.
1962 * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
1963 (_initialize_rx_tdep): New prototype.
1964 * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
1965 (_initialize_darwin_solib): New prototype.
1966 * solib-spu.c: Include solib-spu.h.
1967 (_initialize_spu_solib): New prototype.
1968 * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
1969 * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
1970 (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
1971 (tic6x_software_single_step): Make it static.
1972 (_initialize_tic6x_tdep): New prototype.
1973
1974 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1975
1976 Fix -Wmissing-prototypes build.
1977 * cris-tdep.c (cris_can_use_hardware_watchpoint)
1978 (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
1979
1980 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1981
1982 Fix -Wmissing-prototypes build.
1983 * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
1984 (frv_have_stopped_data_address): Remove.
1985
1986 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1987
1988 Fix -Wmissing-prototypes build.
1989 * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
1990 * sh-tdep.c: Include sh64-tdep.h.
1991 * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
1992 * sh64-tdep.c: Include sh64-tdep.h.
1993 * sh64-tdep.h: New file.
1994
1995 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
1996
1997 * mips-tdep.c (mips32_scan_prologue): Correct indentation.
1998
1999 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
2000
2001 * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
2002 sp_regnum once the gdbarch_init_osabi hook has been called.
2003
2004 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
2005
2006 * mips-tdep.c (mips32_bc1_pc): New function.
2007 (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
2008 BPOSGE32 and BPOSGE64 instructions.
2009 (deal_with_atomic_sequence): Likewise.
2010 (mips32_instruction_has_delay_slot): Likewise.
2011
2012 2012-03-01 Maciej W. Rozycki <macro@mips.com>
2013 Chris Dearman <chris@mips.com>
2014 Maciej W. Rozycki <macro@codesourcery.com>
2015 Joseph Myers <joseph@codesourcery.com>
2016
2017 * features/mips-dsp.xml: New file.
2018 * features/mips64-dsp.xml: New file.
2019 * features/mips-dsp-linux.xml: New file.
2020 * features/mips64-dsp-linux.xml: New file.
2021 * features/Makefile (WHICH): Add mips-dsp-linux and
2022 mips64-dsp-linux.
2023 (mips-dsp-expedite, mips64-dsp-expedite): New variables.
2024 * features/mips-dsp-linux.c: New file.
2025 * features/mips64-dsp-linux.c: New file.
2026 * regformats/mips-dsp-linux.dat: New file.
2027 * regformats/mips64-dsp-linux.dat: New file.
2028 * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
2029 registers.
2030 (mips64_linux_register_addr): Likewise.
2031 (mips64_linux_regsets_fetch_registers): Likewise.
2032 (mips64_linux_regsets_store_registers): Likewise.
2033 (mips64_linux_fetch_registers): Update call to
2034 mips64_linux_regsets_fetch_registers.
2035 (mips64_linux_store_registers): Update call to
2036 mips64_linux_regsets_store_registers.
2037 (mips_linux_read_description): Probe for DSP registers.
2038 (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
2039 and initialize_tdesc_mips64_dsp_linux.
2040 * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
2041 Remove padding of no longer used embedded register slots.
2042 * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
2043 (MIPS_RESTART_REGNUM): Redefine enum value.
2044 * mips-tdep.c (mips_generic_reg_names): Remove trailing null
2045 strings.
2046 (mips_tx39_reg_names): Likewise.
2047 (mips_linux_reg_names): New array of register names for Linux
2048 targets.
2049 (mips_register_name): Check for a null pointer in
2050 mips_processor_reg_names and return an empty string.
2051 (mips_register_type): Exclude embedded registers for the IRIX
2052 and Linux ABIs.
2053 (mips_pseudo_register_type): Likewise. Use dynamic numbers to
2054 refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle
2055 DSP registers.
2056 (mips_stab_reg_to_regnum): Handle DSP accumulators.
2057 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
2058 (mips_gdbarch_init): Likewise. Initialize internal register
2059 indices for the Linux ABI. Use dynamic numbers to refer to
2060 registers, as applicable, while parsing the target description.
2061 * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
2062
2063 2012-03-01 Joel Brobecker <brobecker@adacore.com>
2064
2065 * frame.h (read_frame_register_unsigned): Fix typo in function
2066 description.
2067
2068 2012-03-01 Pedro Alves <palves@redhat.com>
2069
2070 * jit-reader.in [!__cplusplus]
2071 (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
2072
2073 2012-03-01 Pedro Alves <palves@redhat.com>
2074
2075 * configure.ac (build_warnings): Add -Wmissing-prototypes.
2076 * configure: Regenerate.
2077
2078 2012-03-01 Pedro Alves <palves@redhat.com>
2079
2080 * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
2081 * breakpoint.c (create_exception_master_breakpoint, trace_command)
2082 (ftrace_command, strace_command): Make static.
2083 * d-lang.c (_initialize_d_language): Declare.
2084 * dwarf2expr.c (_initialize_dwarf2expr): Declare.
2085 * dwarf2loc.c (_initialize_dwarf2loc):
2086 * dwarf2read.c (process_psymtab_comp_unit): Make static.
2087 * exec.c (exec_get_section_table): Make static.
2088 * i386-linux-tdep.c (i386_linux_record_signal): Make static.
2089 * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
2090 * inferior.c (remove_inferior_command, add_inferior_command)
2091 (clone_inferior_command): Make static.
2092 * linux-nat.c (linux_nat_thread_address_space)
2093 (linux_nat_core_of_thread): Make static.
2094 * linux-tdep.c (_initialize_linux_tdep): Declare.
2095 * objc-lang.c (_initialize_objc_lang): Declare.
2096 * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
2097 Make static.
2098 (_initialize_opencl_language): Declare.
2099 * record.c (_initialize_record): Declare.
2100 * remote.c (demand_private_info, remote_get_tib_address)
2101 (remote_supports_cond_tracepoints)
2102 (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
2103 Make static.
2104 * skip.c (_initialize_step_skip): Declare.
2105 * symtab.c (skip_prologue_using_lineinfo): Make static.
2106 * tracepoint.c (delete_trace_state_variable)
2107 (trace_variable_command, delete_trace_variable_command)
2108 (get_uploaded_tsv, find_matching_tracepoint_location)
2109 (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
2110 Make static.
2111 * value.c (pack_unsigned_long): Make static.
2112 * varobj.c (varobj_ensure_python_env): Make static.
2113 * windows-tdep.c (_initialize_windows_tdep): Declare.
2114 * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
2115
2116 2012-03-01 Pedro Alves <palves@redhat.com>
2117
2118 * linux-tdep.c (linux_has_shared_address_space): Make static. Add
2119 gdbarch parameter.
2120 (linux_init_abi): Install it as has_shared_address_space gdbarch
2121 callback.
2122
2123 2012-03-01 Pedro Alves <palves@redhat.com>
2124
2125 * observer.c (observer_test_first_notification_function)
2126 (observer_test_second_notification_function)
2127 (observer_test_third_notification_function): Add declarations.
2128
2129 2012-03-01 Pedro Alves <palves@redhat.com>
2130
2131 * common/signals.c (default_target_signal_to_host)
2132 (default_target_signal_from_host): Move ...
2133 * arch-utils.c: ... here.
2134 * arch-utils.h (default_target_signal_to_host)
2135 (default_target_signal_from_host): Declare.
2136
2137 * common/signals.c (target_signal_from_command): Move ...
2138 * infrun.c: ... here.
2139 * inferior.h (target_signal_from_command): Declare.
2140 * target.h (target_signal_from_command)
2141 (default_target_signal_from_host, default_target_signal_to_host):
2142 Delete declarations.
2143
2144 * common/signals.c (_initialize_signals): Delete.
2145
2146 2012-03-01 Pedro Alves <palves@redhat.com>
2147
2148 * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
2149 both __cplusplus and !__cplusplus.
2150
2151 2012-03-01 Pedro Alves <palves@redhat.com>
2152
2153 * psymtab.c (find_and_open_source): Delete declaration.
2154 * source.c (find_and_open_source): Move comment ...
2155 * source.h (find_and_open_source): ... to this new declaration.
2156
2157 2012-03-01 Pedro Alves <palves@redhat.com>
2158
2159 * inline-frame.c: Include inline-frame.h.
2160
2161 2012-03-01 Pedro Alves <palves@redhat.com>
2162
2163 * tui/tui-data.c (set_gen_win_origin): Delete.
2164 * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
2165 * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
2166
2167 2012-03-01 Pedro Alves <palves@redhat.com>
2168
2169 * remote.c (encode_actions): Delete declaration.
2170 * tracepoint.c (encode_actions): Make extern.
2171 * tracepoint.h (encode_actions): Declare.
2172
2173 2012-03-01 Pedro Alves <palves@redhat.com>
2174
2175 * python/py-breakpoint.c: Include python.h.
2176 * python/py-continueevent.c (create_continue_event_object): Make
2177 static.
2178 * python/py-lazy-string.c (stpy_get_type): Make static.
2179 * python/py-newobjfileevent.c (create_new_objfile_event_object):
2180 Make static.
2181 * python/py-utils.c (unicode_to_target_python_string): Make
2182 static.
2183 * python/py-value.c: Include python.h.
2184
2185 2012-03-01 Pedro Alves <palves@redhat.com>
2186
2187 * inferior.c (delete_threads_of_inferior): Delete.
2188
2189 2012-03-01 Pedro Alves <palves@redhat.com>
2190
2191 Import fallback definitions from glibc.
2192
2193 * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
2194 ps_prochandle): Forward declare.
2195 (ps_err_e): Use glibc's comments.
2196 [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
2197 (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
2198 (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
2199 (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
2200 (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
2201 (struct ps_prochandle): Adjust comment.
2202
2203 2012-03-01 Pedro Alves <palves@redhat.com>
2204
2205 * ada-lang.c (ada_modulus_from_name): Delete.
2206 * ada-lex.l (lexer_init): Make static.
2207
2208 2012-03-01 Pedro Alves <palves@redhat.com>
2209
2210 PR gdb/13767
2211
2212 * frame.c (read_frame_register_unsigned): New.
2213 * frame.h (read_frame_register_unsigned): Declare.
2214 * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
2215 Handle it.
2216 (print_i387_control_word): New parameter `control_p'. Handle it.
2217 (i387_print_float_info): Handle unavailable float registers.
2218
2219 2012-03-01 Keith Seitz <keiths@redhat.com>
2220
2221 * linespec.c (decode_line_2): Sort the list of methods
2222 alphabetically before presenting the user with a selection
2223 menu.
2224
2225 2012-03-01 Doug Evans <dje@google.com>
2226
2227 * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
2228 has_namespace_info.
2229 (dwarf2_read_abbrevs): Remove corresponding initialization.
2230
2231 2012-03-01 Scott J. Goldman <scottjg@vmware.com>
2232
2233 * NEWS: Mention new python command class gdb.COMMAND_USER.
2234 * cli/cli-cmds.c (show_user): Print error when used on a python
2235 command.
2236 (init_cli_cmds): Update documentation strings for "show user" and
2237 "set/show max-user-call-depth" to clarify that it does not apply to
2238 python commands.
2239 * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
2240 error check.
2241 (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
2242 gdb python api.
2243 * top.c (execute_command): Only execute a user-defined command as a
2244 legacy macro if c->user_commands is set.
2245
2246 2012-03-01 Tom Tromey <tromey@redhat.com>
2247
2248 * valprint.h (struct generic_val_print_decorations): New.
2249 (generic_val_print): Declare.
2250 * valprint.c (generic_val_print): New function.
2251 * p-valprint.c (p_decorations): New global.
2252 (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
2253 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
2254 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
2255 TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
2256 * m2-valprint.c (m2_decorations): New global.
2257 (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
2258 TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
2259 TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
2260 TYPE_CODE_ERROR>: Call generic_val_print.
2261 * f-valprint.c (f_decorations): New global.
2262 (f_val_print): Use print_function_pointer_address.
2263 <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
2264 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
2265 TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
2266 generic_val_print.
2267 * c-valprint.c (c_decorations): New global.
2268 (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
2269 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
2270 TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
2271 TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
2272 TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
2273 * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
2274 case.
2275
2276 2012-03-01 Tom Tromey <tromey@redhat.com>
2277
2278 * valprint.c (val_print): Update.
2279 * p-valprint (pascal_val_print): Return void.
2280 * p-lang.h (pascal_val_print): Return void.
2281 * m2-valprint.c (m2_val_print): Return void.
2282 * m2-lang.h (m2_val_print): Return void.
2283 * language.h (struct language_defn) <la_val_print>: Return void.
2284 * language.c (unk_lang_val_print): Return void.
2285 * jv-valprint.c (java_val_print): Return void.
2286 * jv-lang.h (java_val_print): Return void.
2287 * f-valprint.c (f_val_print): Return void.
2288 * f-lang.h (f_val_print): Return void.
2289 * d-valprint.c (d_val_print): Return void.
2290 (dynamic_array_type): Update.
2291 * d-lang.h (d_val_print): Return void.
2292 * c-valprint.c (c_val_print): Return void.
2293 * c-lang.h (c_val_print): Return void.
2294 * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
2295 void.
2296 * ada-lang.h (ada_val_print): Return void.
2297
2298 2012-03-01 Tom Tromey <tromey@redhat.com>
2299
2300 * value.h (val_print): Return void.
2301 * valprint.c (val_print): Return void.
2302
2303 2012-03-01 Tom Tromey <tromey@redhat.com>
2304
2305 * value.h (common_val_print): Return void.
2306 * valprint.c (common_val_print): Return void.
2307
2308 2012-03-01 Tom Tromey <tromey@redhat.com>
2309
2310 * value.h (value_print): Return void.
2311 * valprint.c (value_print): Return void.
2312 * p-valprint.c (pascal_value_print): Return void.
2313 * p-lang.h (pascal_value_print): Return void.
2314 * language.h (struct language_defn) <la_value_print>: Return
2315 void.
2316 * language.c (unk_lang_value_print): Return void.
2317 * jv-valprint.c (java_value_print): Return void.
2318 * jv-lang.h (java_value_print): Return void.
2319 * f-valprint.c (c_value_print): Don't declare.
2320 Include c-lang.h.
2321 * c-valprint.c (c_value_print): Return void.
2322 * c-lang.h (c_value_print): Return void.
2323 * ada-valprint.c (ada_value_print): Return void.
2324 * ada-lang.h (ada_value_print): Return void.
2325
2326 2012-03-01 Tom Tromey <tromey@redhat.com>
2327
2328 * value.c (value_primitive_field): Handle virtual base classes.
2329
2330 2012-03-01 Tom Tromey <tromey@redhat.com>
2331
2332 * gdbtypes.h (struct vbase): Remove.
2333
2334 2012-03-01 Tom Tromey <tromey@redhat.com>
2335
2336 * c-valprint.c (print_function_pointer_address): Move...
2337 * valprint.c: ... here. Make non-static.
2338 * m2-valprint.c (print_function_pointer_address): Remove.
2339 * valprint.h (print_function_pointer_address): Declare.
2340
2341 2012-03-01 Joel Brobecker <brobecker@adacore.com>
2342
2343 * NEWS: Document the fact that one can provide a condition when
2344 creating an Ada exception catchpoint.
2345
2346 2012-03-01 Tom Tromey <tromey@redhat.com>
2347
2348 * valprint.c (val_print_type_code_flags): Fix placement of
2349 trailing brace.
2350
2351 2012-03-01 Joel Brobecker <brobecker@adacore.com>
2352
2353 * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
2354 (update_files): Do not set MULTILINE_COMMENT_PREFIXES
2355 environment variable before calling update-copyright.
2356
2357 2012-03-01 Joel Brobecker <brobecker@adacore.com>
2358
2359 * gnulib/extra/update-copyright: Update to the latest from
2360 gnulib's git repository.
2361 * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
2362 variable to 2 instead of 1.
2363
2364 2012-02-29 Joel Brobecker <brobecker@adacore.com>
2365
2366 * varobj.c (c_value_of_variable): Remove dead code.
2367
2368 2012-02-29 Joel Brobecker <brobecker@adacore.com>
2369
2370 * ada-lex.p (processId): Do not modify already encoded IDs.
2371 Update function documentation.
2372
2373 2012-02-29 Joel Brobecker <brobecker@adacore.com>
2374
2375 * ada-lang.h (ada_find_renaming_symbol): Replace parameter
2376 "name" with "struct symbol *name_sym".
2377 * ada-exp.y (write_var_or_type): Update call to
2378 ada_find_renaming_symbol.
2379 "name" with "struct symbol *name_sym". Adjust Implementation
2380 accordingly. Adjust the function documentation.
2381
2382 2012-02-29 Joel Brobecker <brobecker@adacore.com>
2383
2384 * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
2385 * ada-lang.c (ada_find_any_type): Add advance declaration.
2386 Make static. Replace ada_find_any_symbol by
2387 ada_find_any_type_symbol.
2388 (ada_find_any_type_symbol): Renames ada_find_any_symbol.
2389 Improve function description. Make static.
2390 (ada_find_renaming_symbol, find_old_style_renaming_symbol):
2391 Replace ada_find_any_symbol by ada_find_any_type_symbol.
2392
2393 2012-02-29 Joel Brobecker <brobecker@adacore.com>
2394
2395 * ada-lang.c (struct tag_args): Delete.
2396 (ada_get_tsd_type): Function body moved up in source file.
2397 (ada_tag_name_1, ada_tag_name_2): Delete.
2398 (ada_get_tsd_from_tag): New function.
2399 (ada_tag_name_from_tsd): New function.
2400 (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
2401 to determine the tag name.
2402
2403 2012-02-29 Joel Brobecker <brobecker@adacore.com>
2404
2405 * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
2406 declaration.
2407 * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
2408 function.
2409
2410 2012-02-29 Joel Brobecker <brobecker@adacore.com>
2411
2412 * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
2413
2414 2012-02-29 Joel Brobecker <brobecker@adacore.com>
2415
2416 * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
2417 full searches.
2418
2419 2012-02-29 Joel Brobecker <brobecker@adacore.com>
2420
2421 * ada-lang.c (constrained_packed_array_type): If there is a
2422 parallel XA type, use it to determine the array index type.
2423
2424 2012-02-29 Joel Brobecker <brobecker@adacore.com>
2425
2426 * ada-valprint.c (ada_val_print_1): If our value is a reference
2427 to an array descriptor, dereference it before converting it
2428 to a simple array.
2429
2430 2012-02-29 Joel Brobecker <brobecker@adacore.com>
2431
2432 * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
2433 creating fixed value.
2434 (ada_value_ind, ada_coerce_ref, assign_component)
2435 (ada_evaluate_subexp): Remove call to unwrap_value before
2436 call to ada_to_fixed_value.
2437
2438 2012-02-29 Joel Brobecker <brobecker@adacore.com>
2439
2440 * ada-lang.c (to_fixed_array_type): Set result's type name.
2441
2442 2012-02-29 Joel Brobecker <brobecker@adacore.com>
2443
2444 * ada-lang.c (catch_ada_exception_command_split): Add new
2445 argument cond_string. Add support for condition at end of
2446 "catch exception" commands.
2447 (ada_decode_exception_location): Add new argument cond_string.
2448 Update call to catch_ada_exception_command_split.
2449 (create_ada_exception_catchpoint): Add new argument cond_string.
2450 Set the breakpoint condition if needed.
2451 (catch_ada_exception_command): Update call to
2452 ada_decode_exception_location.
2453 (ada_decode_assert_location): Add function documentation.
2454 Add support for condition at end of "catch assert" command.
2455 (catch_assert_command): Update calls to ada_decode_assert_location
2456 and create_ada_exception_catchpoint.
2457
2458 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
2459
2460 Fix disp-step-syscall.exp: fork: single step over fork.
2461 * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
2462 (i386_linux_get_syscall_number_from_regcache): ... here, new function
2463 comment, change parameters gdbarch and ptid to regcache. Remove
2464 parameter regcache, initialize gdbarch from regcache here.
2465 (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
2466 New functions.
2467 (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
2468 instead.
2469 * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
2470 'syscall'. Make the 'int' check more strict.
2471
2472 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
2473
2474 Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
2475 * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
2476 (i386_linux_intx80_sysenter_syscall_record): ... here.
2477 (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
2478 Use the renamed function name.
2479
2480 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
2481
2482 * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
2483 * breakpoint.c (until_break_command): Likewise.
2484 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
2485 * infcall.c (call_function_by_hand): Likewise.
2486 * infcmd.c (finish_forward): Likewise.
2487 * infrun.c (insert_exception_resume_breakpoint): Likewise.
2488
2489 2012-02-28 Tristan Gingold <gingold@adacore.com>
2490
2491 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
2492 avoid variable assignments inside condition.
2493
2494 2012-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2495
2496 Fix static analysis issue found by cppcheck.
2497 * microblaze-tdep.c (microblaze_extract_return_value): Fix
2498 uninitialized BUF for size 2.
2499
2500 2012-02-27 Chris Dearman <chris@mips.com>
2501 Nathan Froyd <froydnj@codesourcery.com>
2502 Maciej W. Rozycki <macro@codesourcery.com>
2503
2504 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
2505 (mips16_instruction_has_delay_slot): Likewise.
2506 (mips_segment_boundary): Likewise.
2507 (mips_adjust_breakpoint_address): Likewise.
2508 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
2509
2510 2012-02-27 Maciej W. Rozycki <macro@mips.com>
2511 Maciej W. Rozycki <macro@codesourcery.com>
2512
2513 * infrun.c (handle_inferior_event): Don't proceed through
2514 shared library trampolines if stepping at the machine
2515 instruction level.
2516
2517 2012-02-27 Maciej W. Rozycki <macro@codesourcery.com>
2518
2519 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
2520 too.
2521
2522 2012-02-27 Thomas Schwinge <thomas@codesourcery.com>
2523
2524 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
2525 (sh_stub_unwind_sniffer): New functions.
2526 (sh_stub_unwind): New variable.
2527 (sh_gdbarch_init): Wire everything.
2528
2529 2012-02-27 Pedro Alves <palves@redhat.com>
2530
2531 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
2532 (linux_nat_post_attach_wait): Adjust to use
2533 linux_proc_pid_is_stopped.
2534 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
2535 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
2536 based on pid_is_stopped from both linux-nat.c and
2537 gdbserver/linux-low.c, and renamed.
2538
2539 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
2540
2541 * remote.c (remote_watchpoint_addr_within_range): New function.
2542 (init_remote_ops): Use it.
2543
2544 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
2545
2546 * target.h (target_watchpoint_addr_within_range): Document macro.
2547
2548 2012-02-24 Pedro Alves <palves@redhat.com>
2549
2550 * stack.c (set_last_displayed_sal): Issue internal_error instead
2551 of warning, and issue it after clearing the last displayed sal.
2552
2553 2012-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2554 Pedro Alves <palves@redhat.com>
2555
2556 * breakpoint.c (until_break_command): Install breakpoints after
2557 all frame manipulations.
2558
2559 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
2560
2561 * remote.c (remote_supports_cond_breakpoints): New forward
2562 declaration.
2563 (remote_add_target_side_condition): New function.
2564 (remote_insert_breakpoint): Add target-side breakpoint
2565 conditional if supported.
2566 (remote_insert_hw_breakpoint): Likewise.
2567 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
2568 hook.
2569
2570 * target.c (update_current_target): Inherit
2571 to_supports_evaluation_of_breakpoint_conditions.
2572 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
2573
2574 * target.h (struct target_ops)
2575 <to_supports_evaluation_of_breakpoint_conditions>: New field.
2576 (target_supports_evaluation_of_breakpoint_conditions): New #define.
2577
2578 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
2579 (condition_evaluation_both, condition_evaluation_auto,
2580 condition_evaluation_host, condition_evaluation_target,
2581 condition_evaluation_enums, condition_evaluation_mode_1,
2582 condition_evaluation_mode): New static globals.
2583 (translate_condition_evaluation_mode): New function.
2584 (breakpoint_condition_evaluation_mode): New function.
2585 (gdb_evaluates_breakpoint_condition_p): New function.
2586 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
2587 (mark_breakpoint_modified): New function.
2588 (mark_breakpoint_location_modified): New function.
2589 (set_condition_evaluation_mode): New function.
2590 (show_condition_evaluation_mode): New function.
2591 (bp_location_compare_addrs): New function.
2592 (get_first_location_gte_addr): New helper function.
2593 (set_breakpoint_condition): Free condition bytecode if locations
2594 has become unconditional. Call mark_breakpoint_modified (...).
2595 (condition_command): Call update_global_location_list (1) for
2596 breakpoints.
2597 (breakpoint_xfer_memory): Use is_breakpoint (...).
2598 (is_breakpoint): New function.
2599 (parse_cond_to_aexpr): New function.
2600 (build_target_condition_list): New function.
2601 (insert_bp_location): Handle target-side conditional
2602 breakpoints and call build_target_condition_list (...).
2603 (update_inserted_breakpoint_locations): New function.
2604 (insert_breakpoint_locations): Handle target-side conditional
2605 breakpoints.
2606 (bpstat_check_breakpoint_conditions): Add comment.
2607 (bp_condition_evaluator): New function.
2608 (bp_location_condition_evaluator): New function.
2609 (print_breakpoint_location): Print information on where the condition
2610 will be evaluated.
2611 (print_one_breakpoint_location): Likewise.
2612 (init_bp_location): Call mark_breakpoint_location_modified (...) for
2613 breakpoint location.
2614 (force_breakpoint_reinsertion): New functions.
2615 (update_global_location_list): Handle target-side breakpoint
2616 conditions.
2617 Reinsert locations that are already inserted if conditions have
2618 changed.
2619 (bp_location_dtor): Free agent expression bytecode.
2620 (disable_breakpoint): Call mark_breakpoint_modified (...).
2621 Call update_global_location_list (...) with parameter 1 for breakpoints.
2622 (disable_command): Call mark_breakpoint_location_modified (...).
2623 Call update_global_location_list (...) with parameter 1 for breakpoints.
2624 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
2625 (enable_command): mark_breakpoint_location_modified (...).
2626 (_initialize_breakpoint): Update documentation and add
2627 condition-evaluation breakpoint subcommand.
2628
2629 * breakpoint.h: Include ax.h.
2630 (condition_list): New data structure.
2631 (condition_status): New enum.
2632 (bp_target_info) <cond_list>: New field.
2633 (bp_location) <condition_changed, cond_bytecode>: New fields.
2634 (is_breakpoint): New prototype.
2635
2636 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
2637
2638 * remote.c (remote_state) <cond_breakpoints>: New field.
2639 (PACKET_ConditionalBreakpoints): New enum.
2640 (remote_cond_breakpoint_feature): New function.
2641 (remote_protocol_features): Add new ConditionalBreakpoints entry.
2642 (remote_supports_cond_breakpoints): New function.
2643 (_initialize_remote): Add new packet configuration for
2644 target-side conditional breakpoints.
2645
2646 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
2647
2648 * NEWS: Mention target-side conditional breakpoint support,
2649 new condition-evaluation breakpoint subcommand and remote
2650 packet extensions.
2651
2652 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
2653
2654 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
2655 number.
2656
2657 2012-02-24 Thomas Schwinge <thomas@codesourcery.com>
2658
2659 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
2660 (after_prologue): Remove.
2661
2662 2012-02-23 Tom Tromey <tromey@redhat.com>
2663
2664 * jv-valprint.c (java_val_print): Remove dead code.
2665
2666 2012-02-23 Tristan Gingold <gingold@adacore.com>
2667
2668 * ada-tasks.c (struct ada_tasks_inferior_data): Add
2669 known_tasks_element and known_tasks_length fields.
2670 (read_known_tasks_array): Change argument type. Use pointer type
2671 and number of elements from DATA. Adjust.
2672 (read_known_tasks_list): Likewise.
2673 (get_known_tasks_addr): Remove.
2674 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
2675 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
2676 type and array length. Merge former get_known_tasks_addr code.
2677
2678 2012-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2679
2680 PR backtrace/13716
2681 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
2682 it after set_momentary_breakpoint.
2683
2684 2012-02-22 Sterling Augustine <saugustine@google.com>
2685
2686 PR 13689:
2687 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
2688
2689 2012-02-22 Gary Benson <gbenson@redhat.com>
2690
2691 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
2692 (find_slot_in_mapped_hash): Likewise.
2693
2694 2012-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2695
2696 PR build/13638
2697 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
2698 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
2699 * configure: Regenerate.
2700
2701 2012-02-21 Tristan Gingold <gingold@adacore.com>
2702 Pedro Alves <palves@redhat.com>
2703
2704 * ia64-tdep.c: Do not include libunwind-ia64.h.
2705 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
2706 Include libunwind-ia64.h instead of libunwind.h.
2707 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
2708 for libunwind.h existence.
2709 * configure, config.in: Regenerate.
2710
2711 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
2712
2713 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
2714 instead of value_rtti_target_type.
2715 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
2716 instead of value_rtti_target_type.
2717 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
2718 value_rtti_target_type.
2719 * valops.c (value_ind): Extract function readjust_indirect_value_type.
2720 (value_rtti_target_type): Rename to ...
2721 (value_rtti_indirect_type): ... here and make it indirect. Update
2722 function comment.
2723 * value.c (readjust_indirect_value_type): New function.
2724 (coerce_ref): Support for enclosing type setting for references
2725 with readjust_indirect_value_type.
2726 * value.h (readjust_value_type): New declaration.
2727 (value_rtti_target_type): Rename to ...
2728 (value_rtti_indirect_type): ... here.
2729
2730 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
2731
2732 * MAINTAINERS (Write After Approval): Add myself to the list.
2733
2734 2012-02-20 Doug Evans <dje@google.com>
2735
2736 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
2737 Rename objfile_p_char parameter to objfilep.
2738 (build_objfile_section_table): Result is now void. All callers
2739 updated.
2740 * objfiles.h (struct objfile): Tweak comments, whitespace.
2741 (build_objfile_section_table): Update.
2742
2743 * elfread.c (elf_symfile_segments): Fix warning text.
2744
2745 2012-02-20 Tom Tromey <tromey@redhat.com>
2746
2747 PR gdb/13498:
2748 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
2749 particular set of file names once.
2750 (dw2_map_symbol_filenames): Likewise.
2751
2752 2012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2753
2754 Code cleanup.
2755 * main.c (write_files): Remove the declaration.
2756 (external_editor_command): Move the declaration ...
2757 [GDBTK] (external_editor_command): ... here. Fix the comment.
2758
2759 2012-02-20 Tom Tromey <tromey@redhat.com>
2760
2761 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
2762 extraneous block.
2763
2764 2012-02-20 Tristan Gingold <gingold@adacore.com>
2765
2766 * darwin-nat.h (enum darwin_msg_state): Add comments.
2767
2768 2012-02-20 Tristan Gingold <gingold@adacore.com>
2769
2770 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
2771 value.
2772
2773 2012-20-18 Joel Brobecker <brobecker@adacore.com>
2774
2775 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
2776 between function description and implementation.
2777
2778 2012-02-17 Tom Tromey <tromey@redhat.com>
2779
2780 PR python/12070:
2781 * python/py-event.c (event_object_getset): New global.
2782 (event_object_type): Reference it.
2783 * python/py-type.c (field_object_getset): New global.
2784 (field_object_type): Reference it.
2785 * python/python-internal.h (gdb_py_generic_dict): Declare.
2786 * python/py-utils.c (gdb_py_generic_dict): New function.
2787
2788 2012-02-17 Tristan Gingold <gingold@adacore.com>
2789
2790 * solib-darwin.c (darwin_current_sos): Check magic and filetype
2791
2792 2012-02-17 Thomas Schwinge <thomas@codesourcery.com>
2793
2794 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
2795 TYPE_CALLING_CONVENTION annotation.
2796
2797 2012-02-16 Kevin Buettner <kevinb@redhat.com>
2798
2799 * MAINTAINERS: Add rx to target ISA section.
2800 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
2801 (ALLDEPFILES): Add rx-tdep.c.
2802
2803 2012-02-16 Tom Tromey <tromey@redhat.com>
2804
2805 * symfile.c (symbol_file_add_main_1): Use inferior's
2806 symfile_flags.
2807 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
2808 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
2809 inferior.
2810 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
2811 inferior.
2812 (follow_exec): Use inferior's symfile_flags.
2813 * inferior.h (struct inferior) <symfile_flags>: New field.
2814
2815 2012-02-16 Mike Frysinger <vapier@gentoo.org>
2816
2817 PR gdb/9734:
2818 * remote-sim.c (gdbsim_create_inferior): Call error() when
2819 sim_create_inferior() fails.
2820
2821 2012-02-16 Josh Matthews <josh@joshmatthews.net>
2822
2823 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
2824
2825 2012-02-16 Tom Tromey <tromey@redhat.com>
2826
2827 PR c++/13653:
2828 * thread.c (struct current_thread_cleanup) <was_removable>: New
2829 field.
2830 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
2831 (make_cleanup_restore_current_thread): Initialize new field.
2832
2833 2012-02-15 Kevin Buettner <kevinb@redhat.com>
2834
2835 * MAINTAINERS: Add rl78 to target ISA section.
2836 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
2837 (ALLDEPFILES): Add rl78-tdep.c.
2838 * NEWS: Mention rl78 as a new target.
2839
2840 2012-02-15 Aleksandar Ristovski <aristovski@qnx.com>
2841
2842 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
2843 data.
2844 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
2845
2846 2012-02-15 Tom Tromey <tromey@redhat.com>
2847
2848 PR gdb/12659:
2849 * infcmd.c (registers_info): Print just the current register's
2850 name.
2851
2852 2012-02-15 Tom Tromey <tromey@redhat.com>
2853
2854 * python/py-symbol.c (sympy_value): Use _().
2855
2856 2012-02-15 Pedro Alves <palves@redhat.com>
2857
2858 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
2859 output to be like native targets'.
2860 (remote_pid_to_str): Special case the null ptid.
2861
2862 2012-02-14 Stan Shebs <stan@codesourcery.com>
2863
2864 * NEWS: Mention enable count command.
2865 * breakpoint.h (struct breakpoint): New field enable_count.
2866 * breakpoint.c (enable_breakpoint_disp): Add count argument.
2867 (enable_breakpoint): Add arg to call.
2868 (struct disp_data): New struct.
2869 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
2870 (do_map_enable_once_breakpoint): Create a struct and pass it.
2871 (do_map_enable_delete_breakpoint): Ditto.
2872 (do_map_enable_count_breakpoint): New function.
2873 (enable_count_command): New function.
2874 (bpstat_stop_status): Decrement enable_count.
2875 (print_one_breakpoint_location): Report enable count.
2876 (_initialize_breakpoint): Add enable count command.
2877
2878 2012-02-14 Kevin Buettner <kevinb@redhat.com>
2879
2880 * rl78-tdep.c (reggroups.h): Include.
2881 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
2882 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
2883 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
2884 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
2885 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
2886 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
2887 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
2888 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
2889 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
2890 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
2891 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
2892 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
2893 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
2894 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
2895 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
2896 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
2897 beginning of register list.
2898 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
2899 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
2900 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
2901 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
2902 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
2903 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
2904 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
2905 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
2906 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
2907 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
2908 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
2909 the pseudo registers. Rearrange other pseudo registers too so
2910 that the bank registers appear at the end.
2911 (rl78_register_type): Account for the fact that the byte sized
2912 bank registers are now pseudo-registers.
2913 (rl78_register_name): Rearrange the register name array. Make
2914 initial set of raw banked registers inaccessible.
2915 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
2916 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
2917 case for copying bytes back and forth between raw and pseudo
2918 versions of the banked registers. Update other cases to reflect
2919 the changed names.
2920 (rl78_return_value): Update to account for changed names of
2921 raw registers.
2922 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
2923 rl78_register_sim_regno().
2924
2925 2012-02-14 Kevin Buettner <kevinb@redhat.com>
2926
2927 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
2928 the name parameter being passed to find_pc_partial_function().
2929
2930 2012-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
2931
2932 * MAINTAINERS: Step down from being ia64 target maintainer.
2933
2934 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
2935
2936 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
2937 compilation warning.
2938
2939 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
2940
2941 Fix crash on loaded shlibs without loaded exec_bfd.
2942 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
2943 (set_section_command): Replace exec_bfd by p->bfd.
2944
2945 2012-02-10 Tom Tromey <tromey@redhat.com>
2946
2947 * linespec.c (decode_line_internal): Skip symtabs_from_filename
2948 when we have a C++ qualified name.
2949
2950 2012-02-10 Pedro Alves <palves@redhat.com>
2951
2952 * inferior.c (inferior_pid_to_str): New.
2953 (print_inferior, inferior_command): Use it.
2954
2955 2012-02-10 Pedro Alves <palves@redhat.com>
2956
2957 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
2958 the test CFLAGS.
2959 * configure: Regenerate.
2960
2961 2012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
2962
2963 * linespec.c (decode_line_internal): Fix comment correctness.
2964
2965 2012-02-09 Valery Khromov <valery.khromov@gmail.com>
2966
2967 PR gdb/12953
2968 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
2969 * amd64bsd-nat.c: Add support for debug registers (adapted from
2970 i386bsd-nat.c).
2971 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
2972 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
2973 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
2974 (amd64bsd_dr_get_control): New functions.
2975 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
2976 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
2977 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
2978 watchpoints initialization.
2979 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
2980
2981 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
2982
2983 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
2984 flds_bnds.fields.
2985 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
2986
2987 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
2988
2989 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
2990
2991 2012-02-08 Joel Brobecker <brobecker@adacore.com>
2992
2993 * language.h (symbol_name_cmp_ftype): Renames
2994 symbol_name_match_p_ftype.
2995 (struct language_defn)[la_get_symbol_name_cmp]: Renames
2996 la_get_symbol_name_match_p.
2997 * ada-lang.c (ada_get_symbol_name_cmp): Renames
2998 ada_get_symbol_name_match_p. Update comment.
2999 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
3000 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
3001 Renames symbol_name_match_p. Update field type.
3002 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
3003 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
3004 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
3005 "la_get_symbol_name_cmp" in comments.
3006 * language.c: Likewise.
3007
3008 2012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3009
3010 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
3011 %eflags offset.
3012 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
3013 (amd64_sol2_gregset32_reg_offs): Likewise.
3014
3015 2012-02-08 Joel Brobecker <brobecker@adacore.com>
3016
3017 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
3018 of the returned BFD is allocated by GDB.
3019
3020 2012-02-07 Tom Tromey <tromey@redhat.com>
3021
3022 PR python/12027:
3023 * python/python-internal.h (frame_object_type): Declare.
3024 * python/py-symbol.c (sympy_needs_frame): New function.
3025 (sympy_value): New function.
3026 (symbol_object_getset): Add "needs_frame".
3027 (symbol_object_methods): Add "value".
3028 * python/py-frame.c (frame_object_type): No longer static.
3029
3030 2012-02-07 Tom Tromey <tromey@redhat.com>
3031
3032 PR python/13599:
3033 * python/py-symbol.c (sympy_line): New function.
3034 (symbol_object_getset): Add "line".
3035
3036 2012-02-07 Tom Tromey <tromey@redhat.com>
3037
3038 * charset.c (find_charset_names): Check 'in' against NULL.
3039
3040 2012-02-06 Doug Evans <dje@google.com>
3041
3042 * gdbtypes.h (struct main_type): Change type of name,tag_name,
3043 and fields.name members from char * to const char *. All uses updated.
3044 (struct cplus_struct_type): Change type of fn_fieldlists.name member
3045 from char * to const char *. All uses updated.
3046 (type_name_no_tag): Update.
3047 (lookup_unsigned_typename, lookup_signed_typename): Update.
3048 * gdbtypes.c (type_name_no_tag): Change result type
3049 from char * to const char *. All callers updated.
3050 (lookup_unsigned_typename, lookup_signed_typename): Change type of
3051 name parameter from char * to const char *.
3052 * symtab.h (struct cplus_specific): Change type of demangled_name
3053 member from char * to const char *. All uses updated.
3054 (struct general_symbol_info): Change type of name and
3055 mangled_lang.demangled_name members from char * to const char *.
3056 All uses updated.
3057 (symbol_get_demangled_name, symbol_natural_name): Update.
3058 (symbol_demangled_name, symbol_search_name): Update.
3059 * symtab.c (symbol_get_demangled_name): Change result type
3060 from char * to const char *. All callers updated.
3061 (symbol_natural_name, symbol_demangled_name): Ditto.
3062 (symbol_search_name): Ditto.
3063 (completion_list_add_name): Change type of symname,sym_text,
3064 text,word parameters from char * to const char *.
3065 (completion_list_objc_symbol): Change type of sym_text,
3066 text,word parameters from char * to const char *.
3067 * ada-lang.c (find_struct_field): Change type of name parameter
3068 from char * to const char *.
3069 (encoded_ordered_before): Similarly for N0,N1 parameters.
3070 (old_renaming_is_invisible): Similarly for function_name parameter.
3071 (ada_type_name): Change result type from char * to const char *.
3072 All callers updated.
3073 * ada-lang.h (ada_type_name): Update.
3074 * buildsym.c (hashname): Change type of name parameter
3075 from char * to const char *.
3076 * buildsym.h (hashname): Update.
3077 * dbxread.c (end_psymtab): Change type of include_list parameter
3078 from char ** to const char **.
3079 * dwarf2read.c (determine_prefix): Change result type
3080 from char * to const char *. All callers updated.
3081 * f-lang.c (find_common_for_function): Change type of name, funcname
3082 parameters from char * to const char *.
3083 * f-lang.c (find_common_for_function): Update.
3084 * f-valprint.c (list_all_visible_commons): Change type of funcname
3085 parameters from char * to const char *.
3086 * gdbarch.sh (static_transform_name): Change type of name parameter
3087 and result from char * to const char *.
3088 * gdbarch.c: Regenerate.
3089 * gdbarch.h: Regenerate.
3090 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
3091 of name parameter from char * to const char *.
3092 * jv-lang.c (java_primitive_type_from_name): Ditto.
3093 (java_demangled_signature_length): Similarly for signature parameter.
3094 (java_demangled_signature_copy): Ditto.
3095 (java_demangle_type_signature): Ditto.
3096 * jv-lang.h (java_primitive_type_from_name): Update.
3097 (java_demangle_type_signature): Update.
3098 * objc-lang.c (specialcmp): Change type of a,b parameters
3099 from char * to const char *.
3100 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
3101 from char * to const char *. All callers updated.
3102 * p-lang.h (is_pascal_string_type): Update.
3103 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
3104 of name parameter from char * to const char *.
3105 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
3106 * utils.c (fprintf_symbol_filtered): Ditto.
3107 * defs.h (fprintf_symbol_filtered): Update.
3108 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
3109 * stabsread.h (end_psymtab): Update.
3110 * stack.c (find_frame_funname): Change type of funname parameter
3111 from char ** to const char **.
3112 * stack.h (find_frame_funname): Update.
3113 * typeprint.c (type_print): Change type of varstring parameter
3114 from char * to const char *.
3115 * value.h (type_print): Update.
3116 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
3117 from char * to const char *. All callers updated.
3118 (xcoff_end_psymtab): Change type of include_list parameter
3119 from char ** to const char **. All callers updated.
3120 (swap_sym): Similarly for name parameter. All callers updated.
3121 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
3122 Use xstrdup.
3123 (process_coff_symbol): Use xstrdup.
3124 * stabsread.c (stabs_method_name_from_physname): Renamed from
3125 update_method_name_from_physname. Change result type from void
3126 to char *. All callers updated.
3127 (read_member_functions): In has_destructor case, store name in objfile
3128 obstack instead of malloc space. In !has_stub case, fix mem leak.
3129
3130 2012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
3131
3132 * configure: Rebuild.
3133 * configure.ac: Put -L../bfd and -L../libiberty at the front of
3134 LDFLAGS.
3135
3136 2012-02-03 Kevin Buettner <kevinb@redhat.com>
3137
3138 * configure.tgt (rl78-*-elf): New target.
3139 * rl78-tdep.c: New file.
3140
3141 2012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3142
3143 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
3144 and continue the loop. Add QUIT statement.
3145
3146 2012-02-03 Tom Tromey <tromey@redhat.com>
3147
3148 PR gdb/13596:
3149 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
3150 bfd_lookup_symbol_from_symtab.
3151 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
3152 gdb_bfd_lookup_symbol_from_symtab.
3153
3154 2012-02-03 Joel Brobecker <brobecker@adacore.com>
3155
3156 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
3157 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
3158 symbol. Add assertion that sym2 is never NULL.
3159
3160 2012-02-02 Doug Evans <dje@google.com>
3161
3162 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
3163 "name" parameter to const char ** from char **. All callers updated.
3164 (find_pc_partial_function): Ditto.
3165 (cache_pc_function_name): Change type to const char * from char *.
3166 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
3167 (find_pc_partial_function): Update.
3168 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
3169 type of "name" parameter to const char * from char *.
3170 All uses updated.
3171 * arch-utils.c (generic_in_solib_return_trampoline): Change
3172 type of "name" parameter to const char * from char *.
3173 * arch-utils.h (generic_in_solib_return_trampoline): Update.
3174 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
3175 type of "name" parameter to const char * from char *.
3176 * gdbarch.sh (in_solib_return_trampoline): Ditto.
3177 * gdbarch.c: Regenerate.
3178 * gdbarch.h: Regenerate.
3179 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
3180 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
3181 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
3182 type of "name" parameter to const char * from char *.
3183 * skip.c (skip_function_pc): Ditto.
3184 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
3185 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
3186 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
3187 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
3188 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
3189 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
3190 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
3191 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
3192 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
3193
3194 2012-02-02 Pedro Alves <palves@redhat.com>
3195
3196 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
3197 the current inferior has no execution. Make sure the current
3198 remote process matches gdb's current inferior.
3199
3200 2012-02-02 Tom Tromey <tromey@redhat.com>
3201
3202 PR gdb/13405:
3203 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
3204 read-only memory.
3205
3206 2012-02-02 Tom Tromey <tromey@redhat.com>
3207
3208 PR gdb/9307:
3209 * symtab.c (lookup_language_this): Set block_found.
3210
3211 2012-02-01 Tom Tromey <tromey@redhat.com>
3212
3213 PR gdb/13431:
3214 * jit.c (struct jit_inferior_data): Rewrite.
3215 (struct jit_objfile_data): New.
3216 (get_jit_objfile_data): New function.
3217 (add_objfile_entry): Update.
3218 (jit_read_descriptor): Return int. Replace descriptor_addr
3219 argument with inf_data. Update. Don't call error.
3220 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
3221 descriptor here.
3222 (jit_inferior_init): Don't look up descriptor. Don't call error.
3223 (jit_reset_inferior_data_and_breakpoints)
3224 (jit_inferior_created_observer): Remove.
3225 (jit_inferior_exit_hook): Update.
3226 (jit_executable_changed_observer): Remove.
3227 (jit_event_handler): Update.
3228 (free_objfile_data): Reset inferior data if needed.
3229 (_initialize_jit): Update.
3230
3231 2012-02-01 Tom Tromey <tromey@redhat.com>
3232
3233 * jit.c (bfd_open_from_target_memory): Move higher in file.
3234
3235 2012-02-01 Tristan Gingold <gingold@adacore.com>
3236
3237 * libunwind-frame.c (libunwind_load): Display message if dlopen
3238 failed.
3239
3240 2012-02-01 Gary Benson <gbenson@redhat.com>
3241
3242 * symtab.h (symbol_found_callback_ftype): New typedef.
3243 (iterate_over_symbols): Use the above.
3244 * symtab.c (iterate_over_symbols): Likewise.
3245 * language.h (language_defn->la_iterate_over_symbols): Likewise.
3246 * ada-lang.c (ada_iterate_over_symbols): Likewise.
3247 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
3248 (iterate_name_matcher): Document return values.
3249 (collect_one_symbol): Likewise.
3250 (collect_function_symbols): Likewise.
3251 (collect_symbols): Likewise.
3252
3253 2012-02-01 Tom Tromey <tromey@redhat.com>
3254
3255 * ada-lang.c (resolve_subexp): Update.
3256 (ada_lookup_symbol_list): Add 'full_search' argument.
3257 (ada_iterate_over_symbols): Pass 0 as full_search argument to
3258 ada_lookup_symbol_list.
3259 (ada_lookup_encoded_symbol): Update.
3260 (get_var_value): Update.
3261 * ada-exp.y (block_lookup): Update.
3262 (write_var_or_type): Update.
3263 (write_name_assoc): Update.
3264 * ada-lang.h (ada_lookup_symbol_list): Update.
3265
3266 2012-01-31 Tom Tromey <tromey@redhat.com>
3267
3268 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
3269 comment.
3270
3271 2012-01-31 Doug Evans <dje@google.com>
3272
3273 * symtab.h: Remove outdated comment.
3274 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
3275
3276 2012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
3277
3278 Fix build error in Darwin port.
3279 * i386-darwin-nat.c: Include i386-nat.h.
3280
3281 2012-01-30 Tom Tromey <tromey@redhat.com>
3282
3283 PR breakpoints/13568:
3284 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
3285 argument. Check for recursive includes.
3286 (dwarf_decode_macros): Create an include hash.
3287
3288 2012-01-30 Michael Eager <eager@eagercon.com>
3289
3290 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
3291 * ppc-linux-tdep.c: Include glibc-tdep.h.
3292 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
3293 (powerpc_linux_in_plt_stub): New function.
3294 (powerpc_linux_in_dynsym_resolve_code): New function.
3295 (ppc_skip_trampoline_code): New function.
3296 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
3297 Use glibc_skip_solib_resolver.
3298
3299 2012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3300
3301 Code cleanup: Make 1440 bytes of data segment read-only.
3302 * arch-utils.c (endian_enum): Make it const char *const [].
3303 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
3304 Likewise.
3305 * breakpoint.c (always_inserted_enums): Likewise.
3306 * cli/cli-cmds.c (script_ext_enums): Likewise.
3307 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
3308 enumlist parameter const char *const *.
3309 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
3310 const char *const *.
3311 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
3312 parameter const char *const *.
3313 * cris-tdep.c (cris_modes): Make it const char *const [].
3314 * filesystem.c (target_file_system_kinds): Likewise.
3315 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
3316 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
3317 (can_use_displaced_stepping_enum, scheduler_enums)
3318 (exec_direction_names): Likewise.
3319 * language.c (_initialize_language): Make the type_or_range_names and
3320 case_sensitive_names variables const char *const [].
3321 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
3322 * python/python.c (python_excp_enums): Likewise.
3323 * remote.c (interrupt_sequence_modes): Likewise.
3324 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
3325 * serial.c (logbase_enums): Likewise.
3326 * sh-tdep.c (sh_cc_enum): Likewise.
3327 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
3328 Likewise.
3329 * symtab.c (multiple_symbols_modes): Likewise.
3330 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
3331 Likewise.
3332 * utils.c (internal_problem_modes): Likewise.
3333
3334 2012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
3335
3336 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
3337 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
3338 result.
3339
3340 2012-01-27 Doug Evans <dje@google.com>
3341
3342 * configure.ac (with_python): Fix absolute path handling for win32.
3343 * configure: Regenerate.
3344
3345 2012-01-26 Doug Evans <dje@google.com>
3346
3347 * symtab.c: Whitespace cleanup, no code changes.
3348
3349 * symtab.c (lookup_symbol_in_language): Improve comment.
3350 (lookup_symbol_aux): Fix comment.
3351
3352 * psymtab.c (add_psymbol_to_list): Result is now "void".
3353 * psympriv.h (add_psymbol_to_list): Update.
3354
3355 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
3356
3357 2012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
3358
3359 Do not open script filenames twice.
3360 * cli/cli-cmds.c (source_script_from_stream): Pass to
3361 source_python_script also STREAM.
3362 * python/py-auto-load.c (source_section_scripts): Pass to
3363 source_python_script_for_objfile also STREAM.
3364 (auto_load_objfile_script): Pass to source_python_script_for_objfile
3365 also INPUT.
3366 * python/python-internal.h (source_python_script_for_objfile): New
3367 parameter file, rename parameter file to filename.
3368 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
3369 instead if !_WIN32. Update the function comment.
3370 (source_python_script, source_python_script_for_objfile)
3371 (source_python_script): New parameter file, rename parameter file to
3372 filename. Pass FILENAME to python_run_simple_file.
3373 * python/python.h (source_python_script): New parameter file, rename
3374 parameter file to filename.
3375
3376 2012-01-26 Pedro Alves <palves@redhat.com>
3377
3378 * corelow.c (core_has_fake_pid): Delete.
3379 (core_close): Delete references to `core_has_fake_pid'.
3380 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
3381 (core_open): Delete references to `core_has_fake_pid'.
3382 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
3383 the removed global.
3384
3385 2012-01-26 Joel Brobecker <brobecker@adacore.com>
3386
3387 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
3388 Remove language parameter from name_matcher. Adjust the comment.
3389 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
3390 Remove language parameter.
3391 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
3392 * linespec.c (iterate_name_matcher): Likewise.
3393 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
3394 name_matcher. Adjust call accordingly.
3395 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
3396 (maintenance_check_symtabs): Adjust type of parameter "fun".
3397 * psymtab.h (maintenance_check_symtabs): Likewise.
3398
3399 2012-01-26 Joel Brobecker <brobecker@adacore.com>
3400
3401 * language.h (symbol_name_match_p_ftype): New typedef.
3402 (struct language_defn): Replace field la_symbol_name_compare
3403 by la_get_symbol_name_match_p.
3404 * ada-lang.c (ada_get_symbol_name_match_p): New function.
3405 (ada_language_defn): Use it.
3406 * linespec.c (struct symbol_matcher_data): New type.
3407 (iterate_name_matcher): Rewrite.
3408 (iterate_over_all_matching_symtabs): Pass a pointer to
3409 a symbol_matcher_data struct to expand_symtabs_matching
3410 instead of just the lookup name.
3411 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
3412 opencl-lang.c, p-lang.c, language.c: Delete field
3413 la_symbol_name_compare, and replace by NULL for new field
3414 la_get_symbol_name_match_p.
3415 * symfile.h (struct quick_symbol_functions): Update comment.
3416
3417 2012-01-25 Tom Tromey <tromey@redhat.com>
3418
3419 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
3420 dereferencing.
3421
3422 2012-01-24 Tom Tromey <tromey@redhat.com>
3423
3424 PR symtab/12406:
3425 * solib.c (update_solib_list): Update the program space's
3426 added_solibs and deleted_solibs fields.
3427 * progspace.h (struct program_space) <added_solibs,
3428 deleted_solibs>: New fields.
3429 (clear_program_space_solib_cache): Declare.
3430 * progspace.c (release_program_space): Call
3431 clear_program_space_solib_cache.
3432 (clear_program_space_solib_cache): New function.
3433 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
3434 bpstat_stop_status. Use handle_solib_event.
3435 * breakpoint.c: Include gdb_regex.h.
3436 (print_solib_event): New function.
3437 (bpstat_print): Use print_solib_event.
3438 (bpstat_stop_status): Add special case for bp_shlib_event.
3439 (handle_solib_event): New function.
3440 (bpstat_what): Use handle_solib_event.
3441 (struct solib_catchpoint): New.
3442 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
3443 (breakpoint_hit_catch_solib, check_status_catch_solib)
3444 (print_it_catch_solib, print_one_catch_solib)
3445 (print_mention_catch_solib, print_recreate_catch_solib): New
3446 functions.
3447 (catch_solib_breakpoint_ops): New global.
3448 (catch_load_or_unload, catch_load_command_1)
3449 (catch_unload_command_1): New functions.
3450 (internal_bkpt_check_status): Add special case for
3451 bp_shlib_event.
3452 (internal_bkpt_print_it): Use print_solib_event.
3453 (initialize_breakpoint_ops): Initialize
3454 catch_solib_breakpoint_ops.
3455 (_initialize_breakpoint): Register "catch load" and "catch
3456 unload".
3457 * breakpoint.h (handle_solib_event): Declare.
3458 * NEWS: Add entry for "catch load" and "catch unload".
3459
3460 2012-01-24 Tom Tromey <tromey@redhat.com>
3461
3462 * ada-lang.c: Include gdb_vecs.h.
3463 * charset.c: Include gdb_vecs.h.
3464 * tracepoint.h: Include gdb_vecs.h.
3465 * gdb_vecs.h: New file.
3466
3467 2012-01-24 Pedro Alves <pedro@codesourcery.com>
3468
3469 * breakpoint.c (breakpoint_hit_catch_fork)
3470 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
3471 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
3472 * infrun.c (inferior_has_forked, inferior_has_vforked)
3473 (inferior_has_execd, inferior_has_called_syscall): Delete.
3474 (handle_syscall_event): Get syscall_number from the execution
3475 control state's wait status.
3476 (wait_for_inferior): Don't clear syscall_number.
3477
3478 2012-01-24 Pedro Alves <palves@redhat.com>
3479
3480 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
3481 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
3482 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
3483 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
3484 `ws' parameter.
3485 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
3486 false for events other than TARGET_SIGNAL_TRAP.
3487 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
3488 Add `ws' parameter.
3489 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
3490 events other than TARGET_SIGNAL_TRAP.
3491 (tracepoint_breakpoint_hit): Add `ws' parameter.
3492 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
3493 parameter.
3494 (bpstat_stop_status): Same.
3495 (pc_at_non_inline_function): Same.
3496 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
3497 to pass the current event's waitstatus to bpstat_stop_status
3498 and pc_at_non_inline_function.
3499
3500 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3501
3502 Code cleanup.
3503 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
3504 Update the function comment for it.
3505 (source_script_with_search): Call make_cleanup_fclose for STREAM.
3506 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
3507 for STREAM.
3508
3509 2012-01-24 Pedro Alves <palves@redhat.com>
3510
3511 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
3512 outside `bs->stop' block.
3513 (bpstat_what): Rework bp_shlib_event handling.
3514 (internal_bkpt_check_status): If the breakpoint is a
3515 bp_shlib_event, then set bs->stop and bs->print if
3516 stop_on_solib_events is set.
3517
3518 2012-01-24 Gary Benson <gbenson@redhat.com>
3519
3520 Delete #if 0'd out code.
3521 * stack.c (print_frame_label_vars): Remove.
3522 (catch_info): Likewise.
3523 (_initialize_stack): Remove "info catch" command.
3524 * NEWS: Mention the above.
3525
3526 2012-01-24 Pedro Alves <palves@redhat.com>
3527
3528 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
3529 it.
3530 (remote_notice_new_inferior): If the remote end doesn't support
3531 the multiprocess extensions, then the PID is fake.
3532 (add_current_inferior_and_thread): New.
3533 (remote_start_remote): Use it.
3534 (extended_remote_attach_1): Adjust.
3535 (extended_remote_create_inferior_1): Use
3536 add_current_inferior_and_thread.
3537
3538 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3539
3540 Fix watchpoints to be specific for each inferior.
3541 * breakpoint.c (watchpoint_in_thread_scope): Verify also
3542 current_program_space.
3543 * i386-nat.c (i386_inferior_data_cleanup): New.
3544 (i386_inferior_data_get): Replace variable inf_data_local by an
3545 inferior_data call.
3546 (i386_use_watchpoints): Initialize i386_inferior_data.
3547 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
3548 specific iterate_over_lwps.
3549
3550 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3551
3552 Fix watchpoints across inferior fork.
3553 * amd64-linux-nat.c (update_debug_registers_callback): Update the
3554 comment for linux_nat_iterate_watchpoint_lwps.
3555 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
3556 linux_nat_iterate_watchpoint_lwps.
3557 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
3558 * i386-linux-nat.c (update_debug_registers_callback): Update the
3559 comment for linux_nat_iterate_watchpoint_lwps.
3560 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
3561 linux_nat_iterate_watchpoint_lwps.
3562 (i386_linux_prepare_to_resume): New comment on Linux kernel.
3563 * i386-nat.c: Include inferior.h.
3564 (dr_mirror): Remove.
3565 (i386_inferior_data, struct i386_inferior_data)
3566 (i386_inferior_data_get): New.
3567 (i386_debug_reg_state): Use i386_inferior_data_get.
3568 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
3569 (i386_insert_watchpoint, i386_remove_watchpoint)
3570 (i386_stopped_data_address, i386_insert_hw_breakpoint)
3571 (i386_remove_hw_breakpoint): New variable state, use
3572 i386_debug_reg_state instead of DR_MIRROR.
3573 * linux-nat.c (delete_lwp): New declaration.
3574 (num_lwps): Move here from downwards.
3575 (delete_lwp_cleanup): New.
3576 (linux_child_follow_fork): Create new child_lp, call
3577 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
3578 PTRACE_DETACH.
3579 (num_lwps): Move upwards.
3580 (linux_nat_iterate_watchpoint_lwps): New.
3581 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
3582 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
3583
3584 2012-01-24 Joel Brobecker <brobecker@adacore.com>
3585
3586 GDB 7.4 released.
3587
3588 2012-01-23 Pedro Alves <palves@redhat.com>
3589
3590 * top.c (caution): Rename to ...
3591 (confirm): ... this.
3592 (show_caution): Rename to ...
3593 (show_confirm): ... this.
3594 (quit_cover): Adjust.
3595 (init_main): Adjust.
3596 * top.h (caution): Rename to ...
3597 (confirm): ... this.
3598 * utils.c (internal_vproblem, defaulted_query): Adjust.
3599
3600 2012-01-23 Pedro Alves <palves@redhat.com>
3601
3602 * top.c (caution): Update comment.
3603 (execute_command): Don't consider the current value of `caution'.
3604
3605 2012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
3606
3607 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
3608
3609 2012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
3610
3611 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
3612 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
3613 * target.c (target_fileio_pwrite): Remove buffer address from
3614 debug output.
3615 (target_fileio_pread): Likewise.
3616
3617 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
3618
3619 * NEWS: Document remote "info proc" and "generate-core-file".
3620
3621 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
3622
3623 * gdbarch.sh (find_memory_regions): New callback.
3624 * gdbarch.c, gdbarch.h: Regenerate.
3625
3626 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
3627 callback before falling back to target method.
3628
3629 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
3630 (linux_target_install_ops): No longer install it.
3631
3632 * linux-tdep.c (linux_find_memory_regions): New function.
3633 (linux_init_abi): Install it.
3634
3635 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
3636
3637 * gdbarch.sh (make_corefile_notes): New architecture callback.
3638 * gdbarch.c: Regenerate.
3639 * gdbarch.h: Likewise.
3640
3641 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
3642 before target_make_corefile_notes. If NULL is returned, the
3643 target does not support core file generation.
3644
3645 * linux-nat.c: Include "linux-tdep.h".
3646 (find_signalled_thread, find_stop_signal): Remove.
3647 (linux_nat_do_thread_registers): Likewise.
3648 (struct linux_nat_corefile_thread_data): Likewise.
3649 (linux_nat_corefile_thread_callback): Likewise.
3650 (iterate_over_spus): Likewise.
3651 (struct linux_spu_corefile_data): Likewise.
3652 (linux_spu_corefile_callback): Likewise.
3653 (linux_spu_make_corefile_notes): Likewise.
3654 (linux_nat_collect_thread_registers): New function.
3655 (linux_nat_make_corefile_notes): Replace contents by call to
3656 linux_make_corefile_notes passing linux_nat_collect_thread_registers
3657 as native-only callback.
3658
3659 * linux-tdep.h: Include "bfd.h".
3660 (struct regcache): Add forward declaration.
3661 (linux_collect_thread_registers_ftype): New typedef.
3662 (linux_make_corefile_notes): Add prototype.
3663 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
3664 "regset.h", and "elf-bfd.h".
3665 (find_signalled_thread, find_stop_signal): New functions.
3666 (linux_spu_make_corefile_notes): Likewise.
3667 (linux_collect_thread_registers): Likewise.
3668 (struct linux_corefile_thread_data): New data structure.
3669 (linux_corefile_thread_callback): New funcion.
3670 (linux_make_corefile_notes): Likewise.
3671 (linux_make_corefile_notes_1): Likewise.
3672 (linux_init_abi): Install it.
3673
3674 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
3675
3676 * gdbarch.sh (info_proc): New callback.
3677 * gdbarch.c, gdbarch.h: Regenerate.
3678
3679 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
3680 before falling back to the target info_proc callback.
3681
3682 * linux-nat.c: Do not include "cli/cli-utils.h".
3683 (linux_nat_info_proc): Remove.
3684 (linux_target_install_ops): No longer install it.
3685
3686 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
3687 (read_mapping): New function.
3688 (linux_info_proc): Likewise.
3689 (linux_init_abi): Install it.
3690
3691 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
3692
3693 * defs.h (enum info_proc_what): Moved here from linux-nat.c
3694 * infcmd.c: (info_proc_cmd_1): New function.
3695 (info_proc_cmd): New function, moved here from equivalent routine
3696 orignally in linux-nat.c.
3697 (info_proc_cmd_mappings): Likewise.
3698 (info_proc_cmd_stat): Likewise.
3699 (info_proc_cmd_status): Likewise.
3700 (info_proc_cmd_cwd): Likewise.
3701 (info_proc_cmd_cmdline): Likewise.
3702 (info_proc_cmd_exe): Likewise.
3703 (info_proc_cmd_all): Likewise.
3704 (_initialize_infcmd): Install "info proc" command and subcommands.
3705
3706 * target.h (struct target_ops): Add to_info_proc.
3707 (target_info_proc): Add prototype.
3708 * target.c (target_info_proc): New function.
3709
3710 * procfs.c (procfs_info_proc): Add prototype.
3711 (info_proc_cmd): Rename into ...
3712 (procfs_info_proc): ... this. Update argument types as appropriate
3713 for a to_info_proc implementation. Handle "what" argument.
3714 (procfs_target): Install procfs_info_proc.
3715 (_initialize_procfs): No longer install "info proc" command.
3716
3717 * linux-nat.c: (enum info_proc_what): Remove.
3718 (linux_nat_info_proc_cmd_1): Rename into ...
3719 (linux_nat_info_proc): ... this. Update argument types as appropriate
3720 for a to_info_proc implementation.
3721 (linux_nat_info_proc_cmd): Remove.
3722 (linux_nat_info_proc_cmd_mappings): Likewise.
3723 (linux_nat_info_proc_cmd_stat): Likewise.
3724 (linux_nat_info_proc_cmd_status): Likewise.
3725 (linux_nat_info_proc_cmd_cwd): Likewise.
3726 (linux_nat_info_proc_cmd_cmdline): Likewise.
3727 (linux_nat_info_proc_cmd_exe): Likewise.
3728 (linux_nat_info_proc_cmd_all): Likewise.
3729 (linux_target_install_ops): Install linux_nat_info_proc.
3730 (_initialize_linux_nat): No longer install "info proc" command
3731 and subcommands.
3732
3733 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
3734
3735 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
3736 * config.in, configure: Regenerate.
3737
3738 * target.h (struct target_ops): Add to_fileio_readlink.
3739 (target_fileio_readlink): Add prototype.
3740 * target.c (target_fileio_readlink): New function.
3741
3742 * inf-child.c: Conditionally include <sys/param.h>.
3743 (inf_child_fileio_readlink): New function.
3744 (inf_child_target): Install it.
3745
3746 * remote.c (PACKET_vFile_readlink): New enum value.
3747 (remote_hostio_readlink): New function.
3748 (init_remote_ops): Install it.
3749 (_initialize_remote): Handle vFile:readlink packet type.
3750
3751 2012-01-20 Pedro Alves <palves@redhat.com>
3752 Ulrich Weigand <ulrich.weigand@linaro.org>
3753
3754 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
3755 * config.in, configure: Regenerate.
3756
3757 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
3758 to_fileio_pread, to_fileio_close, to_fileio_unlink.
3759 (target_fileio_open): Add prototype.
3760 (target_fileio_pwrite): Likewise.
3761 (target_fileio_pread): Likewise.
3762 (target_fileio_close): Likewise.
3763 (target_fileio_unlink): Likewise.
3764 (target_fileio_read_alloc): Likewise.
3765 (target_fileio_read_stralloc): Likewise.
3766
3767 * target.c: Include "gdb/fileio.h".
3768 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
3769 (default_fileio_target): New function.
3770 (target_fileio_open): Likewise.
3771 (target_fileio_pwrite): Likewise.
3772 (target_fileio_pread): Likewise.
3773 (target_fileio_close): Likewise.
3774 (target_fileio_unlink): Likewise.
3775 (target_fileio_close_cleanup): Likewise.
3776 (target_fileio_read_alloc_1): Likewise.
3777 (target_fileio_read_alloc): Likewise.
3778 (target_fileio_read_stralloc): Likewise.
3779
3780 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
3781 <fcntl.h>, and <unistd.h>.
3782 (inf_child_fileio_open_flags_to_host): New function.
3783 (inf_child_errno_to_fileio_error): Likewise.
3784 (inf_child_fileio_open): Likewise.
3785 (inf_child_fileio_pwrite): Likewise.
3786 (inf_child_fileio_pread): Likewise.
3787 (inf_child_fileio_close): Likewise.
3788 (inf_child_fileio_unlink): Likewise.
3789 (inf_child_target): Install to_fileio routines.
3790
3791 * remote.c (init_remote_ops): Install to_fileio routines.
3792
3793 2012-01-20 Pedro Alves <palves@redhat.com>
3794 Ulrich Weigand <ulrich.weigand@linaro.org>
3795
3796 * remote.c (remote_multi_process_p): Only check for multi-process
3797 protocol feature, do not check for extended protocol.
3798 (remote_supports_multi_process): Check for extended protocol here.
3799 (set_general_process): Likewise.
3800 (extended_remote_kill): Likewise.
3801 (remote_pid_to_str): Likewise.
3802 (remote_query_supported): Always query multiprocess mode.
3803
3804 2012-01-20 Pedro Alves <palves@redhat.com>
3805 Ulrich Weigand <ulrich.weigand@linaro.org>
3806
3807 * inferior.h (struct inferior): Add fake_pid_p.
3808 * inferior.c (exit_inferior_1): Clear fake_pid_p.
3809 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
3810 magic_null_ptid since the remote side doesn't provide a real PID.
3811
3812 2012-01-19 Tom Tromey <tromey@redhat.com>
3813
3814 * NEWS: Combine the two Python sections.
3815
3816 2012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
3817
3818 * target.h (target_close): Update comment on the target's unpush state.
3819
3820 2012-01-19 Pedro Alves <palves@redhat.com>
3821
3822 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
3823 linux_nat_async directly instead of going through the target
3824 vector.
3825 * target.c (unpush_target): Close target after unpushing it, not
3826 before.
3827
3828 2012-01-19 Gary Benson <gbenson@redhat.com>
3829
3830 * mdebugread.c (sort_blocks): Replace integer constants with ones
3831 derived from FIRST_LOCAL_BLOCK.
3832
3833 2012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
3834 Jan Kratochvil <jan.kratochvil@redhat.com>
3835
3836 PR gdb/9538
3837 * symfile.c (find_separate_debug_file): New function.
3838 (terminate_after_last_dir_separator): Likewise.
3839 (find_separate_debug_file_by_debuglink): Also try realpath.
3840 * configure.ac (AC_CHECK_FUNCS): Add lstat.
3841 * configure: Regenerate.
3842 * config.in: Regenerate.
3843
3844 2012-01-18 Doug Evans <dje@google.com>
3845
3846 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
3847 (main.o): Remove rule.
3848 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
3849 (--with-sysroot): Rewrite.
3850 * configure: Regenerate.
3851 * config.in: Regenerate.
3852
3853 2012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
3854
3855 * parse.c (initialize_expout): New function.
3856 (reallocate_expout): Likewise.
3857 (parse_exp_in_context): Use `initialize_expout' and
3858 `reallocate_expout' when appropriate.
3859
3860 2012-01-18 Pedro Alves <palves@redhat.com>
3861
3862 * record.c (struct record_breakpoint, record_breakpoint_p)
3863 (record_breakpoints): New.
3864 (record_insert_breakpoint, record_remove_breakpoint): Manage
3865 record breakpoints list. Only remove breakpoints from the
3866 inferior if they had been inserted there in the first place.
3867
3868 2012-01-17 Doug Evans <dje@google.com>
3869
3870 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
3871 if we know we don't have a file name to look for.
3872
3873 2012-01-17 Pedro Alves <palves@redhat.com>
3874
3875 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
3876 the frame's stop reason is UNWIND_UNAVAILABLE.
3877
3878 2012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3879
3880 Fix compilation error.
3881 * m2-exp.y (yyerror): Use ANSI C prototype.
3882
3883 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
3884
3885 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
3886 (growbuf_by_size): Likewise.
3887 (yyerror): Likewise.
3888 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
3889 (modblock): Remove variable (was #if 0'ed).
3890 (parse_number): Convert prototype from K&R to ANSI C.
3891 (yyerror): Likewise.
3892 * objc-exp.y (parse_number): Likewise.
3893 (yyerror): Likewise.
3894 (yylex): Remove #if 0'ed code.
3895 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
3896 (yyerror): Likewise.
3897
3898 2012-01-16 Tom Tromey <tromey@redhat.com>
3899
3900 * NEWS: Add item.
3901 * symtab.h (compare_filenames_for_search): Declare.
3902 * symtab.c (compare_filenames_for_search): New function.
3903 (iterate_over_some_symtabs): Use it.
3904 * symfile.h (struct quick_symbol_functions)
3905 <map_symtabs_matching_filename>: Change spec.
3906 * psymtab.c (partial_map_symtabs_matching_filename): Use
3907 compare_filenames_for_search. Update for new spec.
3908 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
3909 compare_filenames_for_search. Update for new spec.
3910 * breakpoint.c (clear_command): Use compare_filenames_for_search.
3911
3912 2012-01-16 Tom Tromey <tromey@redhat.com>
3913
3914 PR python/13281:
3915 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
3916 (struct main_type) <flag_flag_enum>: New field.
3917 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
3918 * NEWS: Add entries.
3919 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
3920 enums.
3921 * python/lib/gdb/printing.py (_EnumInstance): New class.
3922 (FlagEnumerationPrinter): Likewise.
3923
3924 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
3925
3926 * breakpoint.c (create_sals_from_address_default): New function.
3927 (create_breakpoints_sal_default): Likewise.
3928 (decode_linespec_default): Likewise.
3929 (is_marker_spec): Removed.
3930 (strace_marker_p): New function.
3931 (init_breakpoint_sal): Using `strace_marker_p' instead of
3932 `is_marker_spec'.
3933 (create_breakpoint): Call method `create_sals_from_address' from
3934 breakpoint_ops, replacing code that created SALs conditionally
3935 on the type of the breakpoint. Call method `create_breakpoints_sal',
3936 replacing code that created breakpoints conditionally on the type
3937 wanted.
3938 (base_breakpoint_create_sals_from_address): New function.
3939 (base_breakpoint_create_breakpoints_sal): Likewise.
3940 (base_breakpoint_decode_linespec): Likewise.
3941 (base_breakpoint_ops): Add methods
3942 `base_breakpoint_create_sals_from_address',
3943 `base_breakpoint_create_breakpoints_sal' and
3944 `base_breakpoint_decode_linespec'.
3945 (bkpt_create_sals_from_address): New function.
3946 (bkpt_create_breakpoints_sal): Likewise.
3947 (bkpt_decode_linespec): Likewise.
3948 (tracepoint_create_sals_from_address): Likewise.
3949 (tracepoint_create_breakpoints_sal): Likewise.
3950 (tracepoint_decode_linespec): Likewise.
3951 (strace_marker_create_sals_from_address): Likewise.
3952 (strace_marker_create_breakpoints_sal): Likewise.
3953 (strace_marker_decode_linespec): Likewise.
3954 (strace_marker_breakpoint_ops): New variable.
3955 (addr_string_to_sals): Remove `marker_spec'. Call method
3956 `decode_linespec' from breakpoint_ops, replacing code that decoded
3957 an address string into a SAL. Use `strace_marker_p' instead of
3958 `marker_spec'.
3959 (strace_command): Decide whether we are dealing with a static
3960 tracepoint with marker or not. Use the appropriate breakpoint_ops.
3961 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
3962 * breakpoint.h (linespec_result, linespec_sals): New forward
3963 declarations.
3964 (breakpoint_ops) <create_sals_from_address>,
3965 <create_breakpoints_sal>, <decode_linespec>: New methods.
3966
3967 2012-01-14 Doug Evans <dje@google.com>
3968
3969 * NEWS: Update text for "maint set python print-stack".
3970 It is deprecated in gdb 7.4 and deleted in 7.5.
3971
3972 2012-01-13 Eli Zaretskii <eliz@gnu.org>
3973
3974 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
3975 including curses.h.
3976
3977 2012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
3978
3979 * configure: Regenerate.
3980 * config.in: Regenerate.
3981
3982 2012-01-12 Keith Seitz <keiths@redhat.com>
3983
3984 PR mi/10586
3985 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
3986 (ANONYMOUS_UNION_NAME): Define.
3987 (is_path_expr_parent): New function.
3988 (get_path_expr_parent): New function.
3989 (is_anonymous_child): New function.
3990 (create_child_with_value): If the child is anonymous and without
3991 a name, assign an object name to it.
3992 (c_describe_child): Use get_path_expr_parent to determine
3993 the parent expression.
3994 If there field represents an anonymous struct or union and
3995 has no name, set an appropriate display name and expression.
3996 (cplus_describe_child): Likewise.
3997
3998 2012-01-12 Pedro Alves <palves@redhat.com>
3999
4000 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
4001 available when %ebp is found to be zero (outermost).
4002
4003 2012-01-11 Andreas Tobler <andreast@fgznet.ch>
4004
4005 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
4006 an internal gdb_static_assert.
4007 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
4008
4009 2012-01-11 Tom Tromey <tromey@redhat.com>
4010
4011 PR gdb/9598:
4012 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
4013 catch" and "catch throw".
4014
4015 2012-01-11 Paul Hilfinger <hilfingr@adacore.com>
4016
4017 * blockframe.c (block_innermost_frame): Start search from selected
4018 frame, if present, or otherwise the current frame.
4019
4020 * c-exp.y (variable): Update innermost_block for
4021 'block COLONCOLON NAME' clause.
4022 * m2-exp.y (variable): Ditto.
4023 * objc-exp.y (variable): Ditto.
4024
4025 2012-01-10 Tom Tromey <tromey@redhat.com>
4026
4027 PR python/13199:
4028 * python/python.c (finish_python_initialization): Set sys.argv.
4029
4030 2012-01-10 Doug Evans <dje@google.com>
4031
4032 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
4033 "want_line_info". All callers updated.
4034 (dwarf_decode_lines_1): New function.
4035 (handle_DW_AT_stmt_list): Add function comment.
4036 New arg "want_line_info". All callers updated.
4037 (read_file_scope,read_type_unit_scope): Move comment from
4038 handle_DW_AT_stmt_list to here.
4039
4040 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
4041
4042 Fix regression after libiberty/ update for GCC PR 6057 and others.
4043 * c-exp.y (operator) <OPERATOR DELETE>
4044 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
4045 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
4046 (make_builtin_type, make_name): New variable i, add gdb_assert.
4047 (operator) <OPERATOR NEW>: Update ARGS to 3.
4048 (operator) <OPERATOR DELETE>: Add trailing space.
4049 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
4050 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
4051 * cp-support.c (cp_canonicalize_string): Check NULL from
4052 cp_comp_to_string, call warning and return.
4053
4054 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
4055
4056 Fix duplicate .o files after omitting libbfd.a.
4057 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
4058 (SFILES): Add corelow.c.
4059 (COMMON_OBS): Add corelow.o.
4060 (ALLDEPFILES): Remove corelow.c.
4061 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
4062 * config/alpha/alpha-osf3.mh: Likewise.
4063 * config/alpha/fbsd.mh: Likewise.
4064 * config/arm/nbsdaout.mh: Likewise.
4065 * config/arm/nbsdelf.mh: Likewise.
4066 * config/i386/i386gnu.mh: Likewise.
4067 * config/ia64/hpux.mh: Likewise.
4068 * config/ia64/linux.mh: Likewise.
4069 * config/m32r/linux.mh: Likewise.
4070 * config/m68k/linux.mh: Likewise.
4071 * config/mips/irix5.mh: Likewise.
4072 * config/mips/irix6.mh: Likewise.
4073 * config/pa/hpux.mh: Likewise.
4074 * config/pa/linux.mh: Likewise.
4075 * config/powerpc/aix.mh: Likewise.
4076 * config/sparc/linux.mh: Likewise.
4077 * config/sparc/linux64.mh: Likewise.
4078 * config/sparc/sol2.mh: Likewise.
4079 * config/vax/vax.mh: Likewise.
4080 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
4081 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
4082 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
4083 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
4084 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
4085 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
4086 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
4087 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
4088 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
4089 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
4090 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
4091 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
4092 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
4093 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
4094 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
4095 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
4096 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
4097 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
4098 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
4099 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
4100 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
4101 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
4102 corelow.o from gdb_target_obs.
4103 * corefile.c (core_target): Update the comment on NULL value.
4104 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
4105 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
4106 MATCHES. Drop YUMMY set on NULL.
4107 (core_close): Do not call exit_inferior_silent on zero PID. Do not
4108 reclaim CORE_DATA if it is already NULL.
4109
4110 2012-01-09 Doug Evans <dje@google.com>
4111
4112 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
4113 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
4114
4115 2012-01-09 Keith Seitz <keiths@redhat.com>
4116
4117 * breakpoint.c (wrapper.h): Don't include.
4118
4119 2012-01-09 Keith Seitz <keiths@redhat.com>
4120
4121 * Makefile.in (SFILES): Remove wrapper.c.
4122 (HFILES_NO_SRCDIR): Remove wrapper.h.
4123 (COMMON_OBS): Remove wrapper.o.
4124 * cli/cli-interp.c: Don't inlude wrapper.h.
4125 * corelow.c: Likewise.
4126 (core_open): Replace gdb_target_find_new_threads with
4127 TRY_CATCH around target_find_new_threads.
4128 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
4129 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
4130 * varobj.c (varobj_create): Likewise for parse_exp_1 and
4131 evaluate_expression.
4132 (varobj_set_value): Likewise for evaluate_expression and
4133 value_assign.
4134 (install_new_variable): Likewise for value_fetch_lazy.
4135 (adjust_value_for_child_access): Likewise for value_ind.
4136 (c_describe_child): Likewise for value_subscript and
4137 value_ind.
4138 (c_value_of_root): Likewise for evaluate_expression.
4139 * wrapper.c: Remove.
4140 * wrapper.h: Remove.
4141
4142 2012-01-09 Doug Evans <dje@google.com>
4143
4144 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
4145 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
4146 "abfd" args with "section". All callers updated.
4147 Error checking code moved ...
4148 (error_check_comp_unit_head): ... here. New function.
4149 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
4150 Delete arg "abfd". New arg "type_offset". All callers updated.
4151 (create_debug_types_hash_table): Simplify by using
4152 read_and_check_type_unit_head.
4153
4154 * parser-defs.h (namecopy): Delete.
4155 * parse.c (namecopy, namecopy_size): Move into copy_name.
4156
4157 2012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
4158
4159 Partially fix duplicate .o files after omitting libbfd.a.
4160 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
4161 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
4162 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
4163 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
4164 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
4165 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
4166 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
4167
4168 2012-01-09 Pedro Alves <palves@redhat.com>
4169
4170 * MAINTAINERS: Update my email address.
4171
4172 2012-01-08 Doug Evans <dje@google.com>
4173
4174 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
4175 n_type_units. Rename type_comp_units to all_type_units.
4176 All uses updated.
4177 (add_signatured_type_cu_to_table): Renamed from
4178 add_signatured_type_cu_to_list. All callers updated.
4179
4180 * gdbtypes.h (struct cplus_struct_type): Delete member
4181 nfn_fields_total. All uses removed.
4182
4183 2012-01-06 Doug Evans <dje@google.com>
4184
4185 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
4186 to top of file.
4187 (dwarf2_find_comp_unit): Delete.
4188 (process_psymtab_comp_unit): Make result "void".
4189 Delete args buffer, info_ptr, buffer_size, and replace with
4190 "section". All callers updated.
4191 (dwarf2_build_psymtabs_hard): Simplify.
4192
4193 2012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
4194 Thiago Jung Bauermann <bauerman@br.ibm.com>
4195
4196 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
4197 before `struct gdb_exception'.
4198 * breakpoint.c (update_global_location_list_nothrow)
4199 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
4200 * cp-abi.c (value_rtti_type): Likewise.
4201 * cp-support.c (cp_validate_operator): Likewise.
4202 * infrun.c (insert_exception_resume_breakpoint)
4203 (check_exception_resume, keep_going): Likewise.
4204 * mi-interp.c (mi_breakpoint_created)
4205 (mi_breakpoint_modified): Likewise.
4206 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
4207 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
4208 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
4209
4210 2012-01-05 Doug Evans <dje@google.com>
4211
4212 * dwarf2read.c (statement_prologue): Delete, unused.
4213
4214 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
4215 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
4216
4217 * dwarf2read.c (comp_unit_header): Delete, unused.
4218
4219 2012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
4220
4221 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
4222 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
4223
4224 2012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
4225
4226 * infrun.c (normal_stop): Don't skip calling the normal_stop
4227 observers if the thread was doing a multi-step, but stopped for
4228 some reason other than stepping.
4229
4230 2012-01-05 Pedro Alves <alves.ped@gmail.com>
4231
4232 * cli/cli-decode.h: Add comments.
4233 (CMD_LIST_AMBIGUOUS): Moved to command.h
4234 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
4235 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
4236 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
4237 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
4238 (add_com, add_com_alias, add_info, add_info_alias)
4239 (complete_on_cmdlist, complete_on_enum, help_list): Remove
4240 declarations.
4241 * command.h: Add and adjust comments.
4242 (CMD_LIST_AMBIGUOUS): Moved here.
4243 (help_cmd, help_cmd_list): Delete declarations.
4244
4245 2012-01-04 Doug Evans <dje@google.com>
4246
4247 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
4248 All callers updated.
4249 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
4250 Replace all arguments with "per_cu". All callers updated.
4251
4252 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
4253
4254 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
4255 New arg "per_cu". All callers updated.
4256
4257 Delete #if 0'd out code.
4258 * language.c (binop_result_type): Delete.
4259 (simple_type, ordered_type, same_type, integral_type): Delete.
4260 (numeric_type, character_type, string_type, boolean_type): Delete.
4261 (float_type, structured_type): Delete.
4262 * language.h: Update.
4263
4264 2012-01-04 Tom Tromey <tromey@redhat.com>
4265
4266 * python/py-value.c (valpy_binop): Initialize 'res_val'.
4267
4268 2012-01-04 Joel Brobecker <brobecker@adacore.com>
4269
4270 * corefile.c (close_exec_file): Delete.
4271 (reopen_exec_file): Remove commented out code that seems related
4272 to close_exec_file, which is being deleted here.
4273 * inferior.h (close_exec_file): Delete.
4274 * fork-child.c (fork_inferior): Remove call to fork_inferior.
4275
4276 2012-01-04 Joel Brobecker <brobecker@adacore.com>
4277
4278 * ada-lang.c: #include "cli/cli-utils.h".
4279 (get_selections): Use skip_spaces.
4280 (ada_get_next_arg): Use skip_spaces and skip_to_space.
4281 (catch_ada_exception_command_split): Use skip_spaces.
4282 (ada_decode_assert_location): Likewise.
4283
4284 2012-01-04 Joel Brobecker <brobecker@adacore.com>
4285
4286 * linespec.c (decode_line_internal): Check for C++ or Java
4287 compound constructs only if the current language is C, C++
4288 or Java.
4289
4290 2012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4291
4292 Revert:
4293 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4294 Joel Brobecker <brobecker@adacore.com>
4295 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
4296 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
4297 3 times.
4298 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
4299 fall through into AT_ENTRY_POINT.
4300 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
4301 DUMMY_ADDR with it.
4302 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
4303 PPC_INSN_SIZE skip to 3 times.
4304
4305 2012-01-04 Joel Brobecker <brobecker@adacore.com>
4306
4307 * linespec.c (add_minsym): Preserve function descriptors.
4308
4309 2012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
4310
4311 * breakpoint.c (all_locations_are_pending): Consider locations
4312 in program spaces executing during startup pending as well.
4313
4314 2012-01-04 Joel Brobecker <brobecker@adacore.com>
4315
4316 Copyright year update in most files of the GDB Project.
4317
4318 2012-01-04 Joel Brobecker <brobecker@adacore.com>
4319
4320 * copyright.sh: Delete.
4321 * copyright.py: Rewrite.
4322
4323 2012-01-04 Joel Brobecker <brobecker@adacore.com>
4324
4325 * gnulib/extra/update-copyright: New file, imported from gnulib.
4326
4327 2012-01-04 Joel Brobecker <brobecker@adacore.com>
4328
4329 * README (Copyright and License Notices): New section.
4330
4331 2012-01-03 Tom Tromey <tromey@redhat.com>
4332
4333 PR python/12533:
4334 * python/py-value.c (valpy_dereference, valpy_get_address
4335 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
4336 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
4337 (valpy_absolute, valpy_richcompare): Free intermediate values.
4338
4339 2011-01-03 Joel Brobecker <brobecker@adacore.com>
4340
4341 * ada-lang.c: Reformat the copyright notice.
4342
4343 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4344
4345 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
4346 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
4347 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
4348 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
4349 Revert this part of:
4350 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4351 Build gdb directly from *.o files not using libgdb.a.
4352 * Makefile.in (COMMON_OBS): Remove solib-target.o.
4353
4354 2012-01-02 Joel Brobecker <brobecker@adacore.com>
4355
4356 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
4357 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
4358 Reformat the copyright header.
4359
4360 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4361
4362 Revert this part of:
4363 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4364 Remove the gdbtui binary.
4365 * gdb.c (main): Remove args.interpreter_p initialization.
4366 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
4367 * main.h (struct captured_main_args): Remove interpreter_p.
4368
4369 2012-01-02 Joel Brobecker <brobecker@adacore.com>
4370
4371 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
4372
4373 2012-01-02 Joel Brobecker <brobecker@adacore.com>
4374
4375 * top.c (print_gdb_version): Update copyright year.
4376
4377 2012-01-02 Yao Qi <yao@codesourcery.com>
4378
4379 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
4380
4381 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4382 Joel Brobecker <brobecker@adacore.com>
4383
4384 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
4385 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
4386 3 times.
4387 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
4388 fall through into AT_ENTRY_POINT.
4389 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
4390 DUMMY_ADDR with it.
4391 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
4392 PPC_INSN_SIZE skip to 3 times.
4393
4394 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4395
4396 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
4397 the return value.
4398 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
4399
4400 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4401
4402 Build gdb directly from *.o files not using libgdb.a.
4403 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
4404 (COMMON_OBS): Remove solib-target.o.
4405 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
4406 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
4407 (LIBGDB_OBS, libgdb.a): Move it above.
4408 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
4409 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
4410 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
4411 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
4412 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
4413 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
4414 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
4415 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
4416 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
4417 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
4418 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
4419 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
4420 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
4421 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
4422 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
4423 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
4424 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
4425 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
4426 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
4427 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
4428 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
4429 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
4430 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
4431 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
4432 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
4433 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
4434 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
4435
4436 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4437
4438 Remove the gdbtui binary.
4439 * .gitignore (/gdbtui): Remove.
4440 * Makefile.in (TUI): Remove.
4441 (SUBDIR_TUI_OBS): Remove tui-main.o.
4442 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
4443 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
4444 (tui-main.o): Remove.
4445 (all_object_files): Remove tui-main.o.
4446 * NEWS: New note for the gdbtui removal.
4447 * configure: Rebuilt.
4448 * configure.ac: No longer add all-tui, clean-tui, install-tui and
4449 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
4450 CONFIG_UNINSTALL respectively.
4451 * gdb.c (main): Remove args.interpreter_p initialization.
4452 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
4453 * main.h (struct captured_main_args): Remove interpreter_p.
4454 * tui/tui-main.c: Remove.
4455
4456 2012-01-01 Doug Evans <dje@google.com>
4457
4458 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
4459 (dwarf2_physname, read_import_statement): Ditto.
4460 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
4461 (process_structure_scope read_subroutine_type): Ditto.
4462 (read_typedef, load_partial_dies, read_partial_die): Ditto.
4463 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
4464 (dwarf2_fetch_die_location_block): Ditto.
4465 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
4466
4467 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
4468 All callers updated.
4469 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
4470 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
4471 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
4472
4473 * dwarf2read.c (load_cu): Move assert to more useful location.
4474
4475 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
4476 All callers updated.
4477
4478 * dwarf2read.c (dwarf2_per_objfile): Add comment.
4479 (dwarf2_elf_names): Minor reformat.
4480 (dwarf2_per_cu_data): Tweak comment.
4481 (dwarf2_read_section): Fix comment.
4482 (create_all_comp_units): Fix comment.
4483 (load_full_comp_unit): Fix comment.
4484 (process_full_comp_unit): Fix comment.
4485 (read_signatured_type): Fix comment.
4486
4487 For older changes see ChangeLog-2011.
4488 \f
4489 Local Variables:
4490 mode: change-log
4491 left-margin: 8
4492 fill-column: 74
4493 version-control: never
4494 coding: utf-8
4495 End:
This page took 0.11387 seconds and 5 git commands to generate.