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