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