]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/ChangeLog
2012-07-19 Pedro Alves <palves@redhat.com>
[thirdparty/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
90f47860
PA
12012-07-19 Pedro Alves <palves@redhat.com>
2
3 * record.c (record_resume): Ask the target beneath to report all
4 signals.
5
01093045
DE
62012-07-19 Doug Evans <dje@google.com>
7
8 * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
9 there's no section at address zero.
10 (dwarf2_record_block_ranges): Ditto.
11
a7c3d162
YQ
122012-07-19 Yao Qi <yao@codesourcery.com>
13
14 * command.h, remote.c: Fix a typo in comment.
15
608b4967
TT
162012-07-19 Tom Tromey <tromey@redhat.com>
17
18 PR exp/13206:
19 * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
20 * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
21 OP_DECLTYPE>: New cases.
22 * c-exp.y (TYPEOF, DECLTYPE): New tokens.
23 (type_exp): Add new productions.
24 (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
25 and decltype.
26 * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
27 New case.
28 * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
29 OP_DECLTYPE>: New case.
30 * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
31 New case.
32 * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
33 * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
34
274b54d7
TT
352012-07-19 Tom Tromey <tromey@redhat.com>
36
37 * c-exp.y (enum token_flags): New.
38 (struct token) <cxx_only>: Remove.
39 <flags>: New field.
40 (tokentab3, tokentab2, ident_tokens): Update.
41 (lex_one_token): Update. Handle FLAG_SHADOW.
42
9eaf6705
TT
432012-07-19 Tom Tromey <tromey@redhat.com>
44
45 * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
46 * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
47 UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
48 * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE. Update
49 for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST. Use
50 type_exp production where appropriate.
51 * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
52 <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
53 <UNOP_MEMVAL_TYPE>: New case.
54 (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
55 (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
56 * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
57 <UNOP_MEMVAL_TYPE>: New case.
58 (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
59 UNOP_REINTERPRET_CAST>: Update.
60 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
61 * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
62 UNOP_REINTERPRET_CAST>: Update.
63 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
64 * stack.c (return_command): Also check for UNOP_CAST_TYPE.
65 * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
66 constants.
67
6ace3df1
YQ
682012-07-19 Yao Qi <yao@codesourcery.com>
69 Jan Kratochvil <jan.kratochvil@redhat.com>
70
71 * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
72 and case 'var_optional_filename' together.
73 * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
74 instead of add_setshow_optional_filename_cmd for setshow command
75 'args'. Set completer for 'set args'.
76
48faced0
DE
772012-07-18 Doug Evans <dje@google.com>
78
79 * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
80 * common/gdb_vecs.c: New file, contents from utils.c.
81 * common/host-defs.h: New file, contents from defs.h.
82 * utils.h: New file, contents from defs.h.
83 * defs.h: Move all declarations of objects defined in utils.c
84 to utils.h (except QUIT() and related).
85 #include "utils.h", "host-defs.h".
86 * probe.h (probe_p): Move here from gdb_vecs.h.
87 * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
88 * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
89 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
90 * Makefile.in (SFILES): Add common/gdb_vecs.c.
91 (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
92 (COMMON_OBS): Add gdb_vecs.o.
93 (gdb_vecs.o): New rule.
94
66f1999b
KS
952012-07-18 Keith Seitz <keiths@redhat.com>
96
97 * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
98 parameter. If non-zero, use SYMNAME as the canonical name
99 for the SaL.
100 Update all callers.
101 (convert_linespec_to_sals): Use add_sal_to_sals for
102 expressions, too.
103 (decode_line_full): No need to "fill in missing canonical names"
104 anymore. Simply make cleanups for the allocated names.
105
5d94e27b
KS
1062012-07-18 Keith Seitz <keiths@redhat.com>
107
108 * linespec.c (struct linespec): Constify expression,
109 source_filename, function_name, and label_name.
110 (symbol_not_found_error): Make all parameters const.
111 (linespec_parser_delete): No need to check for NULL
112 when using xfree. Cast const char * to char * for xfree.
113
af4908ba
KS
1142012-07-18 Keith Seitz <keiths@redhat.com>
115
116 * breakpoint.c (invalid_thread_id_error): New function.
117 (find_condition_and_thread): Use invalid_thread_id_error.
118 (watch_command_1): Likewise.
119
853254db
TT
1202012-07-18 Tom Tromey <tromey@redhat.com>
121
122 * cc-with-index.sh, cc-with-dwz.sh: Remove.
123 * contrib/cc-with-tweaks.sh: New file.
124
2ec9a5e0
TT
1252012-07-18 Tom Tromey <tromey@redhat.com>
126
127 * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
128 (locate_dwz_sections): Recognize .gdb_index.
129 (create_cus_from_index_list): New function.
130 (create_cus_from_index): Use it. Handle .dwz data.
131 (read_index_from_section): New function, extracted from
132 dwarf2_read_index.
133 (dwarf2_read_index): Use it. Read .gdb_index from dwz file,
134 if needed.
135
36586728
TT
1362012-07-18 Tom Tromey <tromey@redhat.com>
137
138 * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
139 (struct dwarf2_per_cu_data) <length>: No longer bitfield.
140 <is_dwz>: New field.
141 (struct dwz_file): New.
142 (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
143 (locate_dwz_sections, dwarf2_get_dwz_file)
144 (get_abbrev_section_for_cu): New functions.
145 (error_check_comp_unit_head, read_and_check_comp_unit_head)
146 (read_and_check_type_unit_head): Add abbrev_section argument.
147 (create_debug_types_hash_table): Update.
148 (init_cutu_and_read_dies): Use proper abbrev section.
149 (init_cutu_and_read_dies_no_follow): Likewise.
150 (set_partial_user): Do nothing if PST==NULL.
151 (read_comp_units_from_section): New function.
152 (create_all_comp_units): Use it.
153 (scan_partial_symbols, partial_die_parent_scope): Update.
154 (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
155 (process_imported_unit_die, read_partial_die): Handle .dwz files.
156 (find_partial_die): Add offset_in_dwz argument. Update.
157 (guess_partial_die_structure_name, fixup_partial_die): Update.
158 (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
159 DW_FORM_GNU_strp_alt.
160 (read_indirect_string_from_dwz): New function.
161 (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
162 (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
163 (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
164 (follow_die_offset): Add offset_in_dwz argument.
165 (follow_die_ref, dwarf2_fetch_die_location_block): Update.
166 (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
167 (dwarf_decode_macro_bytes): Add section_is_dwz argument.
168 Handle new macro forms.
169 (dwarf_decode_macros): Update.
170 (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
171 (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
172 (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
173 (create_debug_types_hash_table): Use correct abbrev section.
174 (get_debug_line_section): New function.
175 (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
176 (process_full_comp_unit): Pass 'required' argument to
177 end_symtab_get_static_block.
178 * buildsym.h (end_symtab_get_static_block): Update.
179 * buildsym.c (end_symtab_get_static_block): Add 'required'
180 argument.
181 (end_symtab, end_expandable_symtab): Update.
182
4bf44c1c
TT
1832012-07-18 Tom Tromey <tromey@redhat.com>
184
185 * dwarf2read.c: Don't include zlib.h or sys/mman.h.
186 (pagesize): Remove.
187 (struct dwarf2_section_info) <map_addr, map_len>: Remove.
188 (zlib_decompress_section): Remove.
189 (dwarf2_read_section): Use gdb_bfd_map_section.
190 (munmap_section_buffer): Remove.
191 (free_dwo_file, dwarf2_per_objfile_free): Don't use
192 munmap_section_buffer.
193 * gdb_bfd.c: Include zlib.h, sys/mman.h.
194 (struct gdb_bfd_section_data): New.
195 (free_one_bfd_section): New function.
196 (gdb_bfd_close_or_warn): Use free_one_bfd_section.
197 (get_section_descriptor, zlib_decompress_section)
198 (gdb_bfd_map_section): New functions.
199 * gdb_bfd.h (gdb_bfd_map_section): Declare.
200
bb397797
TT
2012012-07-18 Tom Tromey <tromey@redhat.com>
202
203 * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
204
6ec53d05
TT
2052012-07-18 Tom Tromey <tromey@redhat.com>
206
207 * gdb_bfd.c (struct gdb_bfd_data): New.
208 (gdb_bfd_cache): New global.
209 (struct gdb_bfd_cache_search): New.
210 (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
211 (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
212 * gdb_bfd.h (gdb_bfd_open): Declare.
213
f9a062ff
TT
2142012-07-18 Tom Tromey <tromey@redhat.com>
215
216 * utils.c (make_cleanup_bfd_unref): Rename from
217 make_cleanup_bfd_close.
218 * defs.h (make_cleanup_bfd_unref): Rename from
219 make_cleanup_bfd_close.
220 * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
221 (bfd_openw_with_cleanup): Update.
222 * corelow.c (core_open): Update.
223 * dsrec.c (load_srec): Update.
224 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
225 * remote-m32r-sdi.c (m32r_load): Update.
226 * remote-mips.c (mips_load_srec): Update.
227 (pmon_load_fast): Update.
228 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
229 Update.
230 (darwin_bfd_open): Update.
231 * solib.c (solib_bfd_fopen): Update.
232 * symfile-mem.c (symbol_file_add_from_memory): Update.
233 * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
234 (symfile_bfd_open): Update.
235 (generic_load): Update.
236
d6ad71ba
TT
2372012-07-18 Tom Tromey <tromey@redhat.com>
238
239 * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
240 (pmon_load_fast): Likewise.
241 * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
242 (m32r_upload_command): Likewise.
243 * dsrec.c (load_srec): Use make_cleanup_bfd_close.
244 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
245 Use make_cleanup_bfd_close.
246
a4453b7e
TT
2472012-07-18 Tom Tromey <tromey@redhat.com>
248
249 * symfile.c (symfile_bfd_open): Don't copy name. Call
250 gdb_bfd_stash_filename.
251 (load_command): Open the new BFD before freeing the old.
252 (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
253 * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
254 Call gdb_bfd_stash_filename.
255 * spu-linux-nat.c (spu_bfd_open): Don't copy name.
256 * solib-spu.c (spu_bfd_fopen): Don't copy name. Call
257 gdb_bfd_stash_filename.
258 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
259 Free found_pathname.
260 * rs6000-nat.c (add_vmap): Don't copy filename. Call
261 gdb_bfd_stash_filename.
262 * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
263 * machoread.c (macho_add_oso_symfile): Call
264 gdb_bfd_stash_filename.
265 (macho_symfile_read_all_oso): Arrange to free archive_name. Call
266 gdb_bfd_stash_filename.
267 (macho_check_dsym): Don't copy filename. Call
268 gdb_bfd_stash_filename.
269 * jit.c (bfd_open_from_target_memory): Don't copy the filename.
270 * gdb_bfd.c (gdb_bfd_stash_filename): New function.
271 * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
272 * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
273 * exec.c (exec_close): Don't free the BFD's filename.
274 (exec_file_attach): Don't copy the filename. Call
275 gdb_bfd_stash_filename.
276 * corelow.c (core_close): Don't free the BFD's filename.
277 (core_open): Call gdb_bfd_stash_filename.
278 * corefile.c (reopen_exec_file): Remove #if 0 code.
279 * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename. Free
280 pathname.
281 * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
282
cbb099e8
TT
2832012-07-18 Tom Tromey <tromey@redhat.com>
284
285 * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
286 gdb_bfd_unref.
287 (free_dwo_file): Use gdb_bfd_unref.
288 * cli/cli-dump.c: Include gdb_bfd.h.
289 (bfd_openw_with_cleanup): Use gdb_bfd_ref.
290 (bfd_openr_with_cleanup): Likewise.
291 * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
292 gdb_bfd_unref.
293 * utils.c: Include gdb_bfd.h.
294 (do_bfd_close_cleanup): Use gdb_bfd_unref.
295 * symfile.c: Include gdb_bfd.h.
296 (separate_debug_file_exists): Use gdb_bfd_unref.
297 (bfd_open_maybe_remote): Use gdb_bfd_ref.
298 (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
299 (generic_load): Use gdb_bfd_ref.
300 (reread_symbols): Use gdb_bfd_unref.
301 * symfile-mem.c: Include gdb_bfd.h.
302 (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
303 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
304 * solib.c: Include gdb_bfd.h.
305 (solib_bfd_fopen): Use gdb_bfd_ref.
306 (solib_bfd_open): Use gdb_bfd_unref.
307 (free_so_symbols): Use gdb_bfd_unref.
308 (reload_shared_libraries_1): Use gdb_bfd_unref.
309 * solib-spu.c: Include gdb_bfd.h.
310 (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
311 * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
312 gdb_bfd_unref.
313 * solib-frv.c: Include gdb_bfd.h.
314 (enable_break2): Use gdb_bfd_unref.
315 * solib-dsbt.c: Include gdb_bfd.h.
316 (enable_break2): Use gdb_bfd_unref.
317 * solib-darwin.c: Include gdb_bfd.h.
318 (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
319 gdb_bfd_unref.
320 (darwin_bfd_open): Use gdb_bfd_unref.
321 * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
322 * remote-mips.c: Include gdb_bfd.h.
323 (mips_load_srec): Use gdb_bfd_ref.
324 (pmon_load_fast): Use gdb_bfd_ref.
325 * remote-m32r-sdi.c: Include gdb_bfd.h.
326 (m32r_load): Use gdb_bfd_ref.
327 * record.c: Include gdb_bfd.h.
328 (record_save_cleanups): Use gdb_bfd_unref.
329 (cmd_record_save): Use gdb_bfd_unref.
330 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
331 gdb_bfd_unref.
332 * objfiles.h (gdb_bfd_close_or_warn): Remove.
333 (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
334 * objfiles.c: Include gdb_bfd.h.
335 (free_objfile): Use gdb_bfd_unref.
336 (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
337 gdb_bfd.c.
338 * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
339 (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
340 (macho_check_dsym): Likewise.
341 * m32r-rom.c: Include gdb_bfd.h.
342 (m32r_load): Use gdb_bfd_ref.
343 (m32r_upload_command): Use gdb_bfd_ref.
344 * jit.c: Include gdb_bfd.h.
345 (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
346 * gdb_bfd.h: New file.
347 * gdb_bfd.c: New file.
348 * gcore.c: Include gdb_bfd.h.
349 (create_gcore_bfd): Use gdb_bfd_ref.
350 (do_bfd_delete_cleanup): Use gdb_bfd_unref.
351 (gcore_command): Use gdb_bfd_unref.
352 * exec.c: Include gdb_bfd.h.
353 (exec_close): Use gdb_bfd_unref.
354 (exec_close_1): Use gdb_bfd_unref.
355 (exec_file_attach): Use gdb_bfd_ref.
356 * elfread.c: Include gdb_bfd.h.
357 (build_id_verify): Use gdb_bfd_unref.
358 * dsrec.c: Include gdb_bfd.h.
359 (load_srec): Use gdb_bfd_ref.
360 * corelow.c: Include gdb_bfd.h.
361 (core_close): Use gdb_bfd_unref.
362 (core_open): Use gdb_bfd_ref.
363 * bfd-target.c: Include gdb_bfd.h.
364 (target_bfd_xclose): Use gdb_bfd_unref.
365 (target_bfd_reopen): Use gdb_bfd_ref.
366 * Makefile.in (SFILES): Add gdb_bfd.c.
367 (HFILES_NO_SRCDIR): Add gdb_bfd.h.
368 (COMMON_OBS): Add gdb_bfd.o.
369
ed1d1739
KS
3702012-07-18 Keith Seitz <keiths@redhat.com>
371
372 * breakpoint.c (find_condition_and_thread): Initialize
373 TASK and REST.
374 (create_breakpiont): find_condition_and_thread will now
375 initialize COND_STRING, THREAD, and REST (and TASK).
376 (addr_string_to_sals): Likewise.
377
eab402df
PA
3782012-07-18 Pedro Alves <palves@redhat.com>
379
380 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
381 Pull the single step breakpoints out of the target.
382
2b963b68
SDJ
3832012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
384
385 * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
386 * stap-probe.c (compile_probe_arg): Likewise.
387
6bac7473
SDJ
3882012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
389
390 * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
391 (elf_compile_to_ax): Likewise.
392 * infrun.c (insert_exception_resume_from_probe): Likewise.
393 (check_exception_resume): Remove `objfile' variable.
394 * probe.c (find_probe_by_pc): Remove `objfile' argument.
395 (struct probe_and_objfile, probe_and_objfile_s): Delete.
396 (collect_probes): Adjust return value to `VEC (probe_p) *'.
397 (compare_entries): Rename to...
398 (compare_probes): ...this. Adjust function to work with
399 `struct probe *'. Rename variables `ea' and `eb' to `pa' and `pb'
400 respectively.
401 (gen_ui_out_table_header_info): Adjust `probes' argument to be
402 `VEC (probe_p) *'.
403 (print_ui_out_info): Adjust argument to be `struct probe *'.
404 (info_probes_for_ops): Adjust internal computations to use
405 `VEC (probe_p) *'.
406 (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
407 * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
408 gen_info_probes_table_values>: Remove `objfile' argument.
409 (struct probe) <objfile>: New field.
410 (find_probe_by_pc): Remove `objfile' argument.
411 * stap-probe.c (stap_parse_probe_arguments): Likewise.
412 (stap_get_probe_argument_count): Likewise.
413 (stap_get_arg): Likewise.
414 (stap_evaluate_probe_argument): Likewise.
415 (stap_compile_to_ax): Likewise.
416 (compile_probe_arg): Refactor not to pass `objfile' anymore.
417 (handle_stap_probe): Fill `objfile' field from `struct probe'.
418 (stap_gen_info_probes_table_header): Remove `objfile' argument.
419 * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
420 sym_compile_to_ax>: Likewise.
421
3347eb1a 4222012-07-18 Terry Guo <terry.guo@arm.com>
423
424 PR 14329
425 * defs.h (GDB_MI_MSG_WIDTH): New.
426 * ser_base (ser_base_read_error_fd): New function.
427 (do_ser_base_readchar): Poll error file descriptor as well as
428 standard output.
429 (generic_readchar): Refactor error handling.
430
80c8d323
JB
4312012-07-18 Joel Brobecker <brobecker@adacore.com>
432
433 * NEWS: Create a new section for the next release branch.
434 Rename the section of the current branch, now that it has
435 been cut.
436
b45a0664 4372012-07-18 Joel Brobecker <brobecker@adacore.com>
438
439 GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
440 * version.in: Bump version to 7.5.50.20120718-cvs.
441
09cf2b22
KS
4422012-07-17 Keith Seitz <keiths@redhat.com>
443
444 * linespec.c (linespec_parse_line_offset): Make parameter
445 const.
446
8f043999
JK
4472012-07-16 Jan Kratochvil <jan.kratochvil@redhat.com>
448
449 PR 11914
450 * f-valprint.c (info_common_command): New variable frame_id.
451 Reinitialize FI form FRAME_ID after each print_variable_and_value.
452 * printcmd.c (print_variable_and_value): Extend function comment.
453 Add comment for invalidated FRAME.
454 * stack.c (backtrace_command_1): New variable frame_id. Reinitialize
455 FI form FRAME_ID after each print_frame_local_vars.
456 (struct print_variable_and_value_data): Change frame to frame_id.
457 (do_print_variable_and_value): New variable frame, initialize it from
458 p->frame_id. Add comment for invalidated FRAME.
459 (print_frame_local_vars, print_frame_arg_vars): New function comment.
460 Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization. Add comment
461 for invalidated FRAME.
462
ae5e0686
MK
4632012-07-16 Marc Khouzam <marc.khouzam@ericsson.com>
464 Pedro Alves <palves@redhat.com>
465
466 * linux-nat.c (linux_nat_detach): Don't unregister from the event
467 loop.
468
5049c5be
TT
4692012-07-16 Tom Tromey <tromey@redhat.com>
470
471 * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
472
2908cac6
DE
4732012-07-15 Doug Evans <dje@google.com>
474
094b34ac
DE
475 * dwarf2read.c (stmt_list_hash): New struct.
476 (type_unit_group): Embed "per_cu" member, remove pointer.
477 New union member "t", move member "tus" into it, all uses updated.
478 New member "hash", replaces member "line_offset, all uses updated.
479 (quick_file_names): Replace member "offset" with "hash", all uses
480 updated.
481 (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
482 (hash_file_name_entry, eq_file_name_entry): Call them.
483 (hash_type_unit_group, eq_type_unit_group): Ditto.
484 (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
485 (dw2_get_file_names_reader): Fix file name table calculation for TUs.
486 (dw2_get_file_names): Update.
487 (create_type_unit_group): Replace "per_cu" arg with "cu".
488 All callers updated. Fix "quick" (.gdb_index) handling.
489 (get_type_unit_group): Replace "per_cu" arg with "cu".
490 All callers updated.
491 (build_type_unit_groups): Don't reset tu_stats.
492
2908cac6
DE
493 * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
494 "tab_cur_size". Change member "tab" to be a htab_t.
495 (create_filename_seen_cache): Update.
496 (clear_filename_seen_cache, delete_filename_seen_cache): Update.
497 (filename_seen): Update.
498
a2b6eff5
DE
4992012-07-13 Doug Evans <dje@google.com>
500
501 * symtab.c (filename_seen): Update comment.
502
4359dff1
JK
5032012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
504 Doug Evans <dje@google.com>
505
506 * buildsym.c (end_symtab_1): Split it to ...
507 (end_symtab_get_static_block): ... this ...
508 (end_symtab_from_static_block): ... and this function.
509 (end_symtab, end_expandable_symtab): Call them.
510 * buildsym.h (end_symtab_get_static_block)
511 (end_symtab_from_static_block): New declarations.
512 * dwarf2read.c (process_full_comp_unit): New variable static_block.
513 Set its valid CU ranges.
514
a24f71ab
JK
5152012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
516
517 * dwarf2loc.c (disassemble_dwarf_expression): Handle
518 DW_OP_GNU_parameter_ref.
519
d76b7dbc
JK
5202012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
521
522 * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
523 read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
524
9fdc877b
DE
5252012-07-13 Doug Evans <dje@google.com>
526
527 * symtab.c (output_source_filename): Delete unnecessary forward decl.
528 (filename_seen_cache): New struct.
529 (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
530 (create_filename_seen_cache): New function.
531 (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
532 (filename_seen): Delete arg "first". New arg "cache". All callers
533 updated.
534 (output_source_filename_data): New struct.
535 (output_source_filename): Delete arg "first". New arg "data".
536 All callers updated.
537 (sources_info): Delete local "first". New locals "data", "cleanups".
538 Rewrite to use filename_seen_cache.
539 (add_partial_filename_data): Delete member "first". New member
540 "filename_seen_cache". All uses updated.
541 (make_source_files_completion_list): Rewrite to use
542 filename_seen_cache.
543
f80c6f3f
DE
5442012-07-12 Doug Evans <dje@google.com>
545
546 * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
547
0bfa869d
DE
5482012-07-10 Doug Evans <dje@google.com>
549
f4dc4d17
DE
550 PR gdb/13498
551 * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
552 all_type_unit_groups, type_unit_groups, tu_stats.
553 (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
554 All uses updated. Add type_unit_group to union "s".
555 (type_unit_group): New struct.
556 (IS_TYPE_UNIT_GROUP): New macro.
557 (abbrev_table): Delete unused member "section".
558 (dw2_do_instantiate_symtab): Early exit if type_unit_group.
559 (dw2_get_cu): Assert not used with type_unit_group.
560 (dw2_get_primary_cu): New function.
561 (dw2_build_type_unit_groups_reader): New function.
562 (dw2_build_type_unit_groups): New function.
563 (dw2_get_file_names): Assert not called on type units.
564 (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
565 Redo loop to iterate over type unit groups instead of type units.
566 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
567 (read_abbrev_offset): New function.
568 (init_cutu_and_read_dies): New arg "abbrev_table". All callers
569 updated.
570 (create_partial_symtab): New function.
571 (process_psymtab_comp_unit_reader): Assert not used with type units.
572 Call create_partial_symtab.
573 (process_psymtab_type_unit): Delete.
574 (hash_type_unit_group, eq_type_unit_group): New functions.
575 (allocate_type_unit_groups_table): New function.
576 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
577 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
578 (create_type_unit_group, get_type_unit_group): New functions.
579 (tu_abbrev_offset): New struct.
580 (sort_tu_by_abbrev_offset): New function.
581 (add_type_unit_group_to_table): New function.
582 (build_type_unit_groups): New function.
583 (build_type_psymtabs_reader): New function.
584 (build_type_psymtab_dependencies): New function.
585 (build_type_psymtabs): Rewrite.
586 (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
587 is seen in a type unit.
588 (process_queue): Move symtab expansion debugging printfs here.
589 Call process_full_type_unit for type units.
590 (compute_symtab_includes): Assert not called for type units.
591 (process_cu_includes): Don't call compute_symtab_includes for
592 type units.
593 (process_full_type_unit): New function.
594 (process_imported_unit_die): Flag an error if called for type units.
595 (handle_DW_AT_stmt_list): Delete arg "want_line_info". All callers
596 updated. Assert not called for type units.
597 (read_file_scope): Call dwarf2_start_symtab.
598 (setup_type_unit_groups): New function.
599 (read_type_unit_scope): Rewrite.
600 (abbrev_table_read_table): Initialize abbrev_table->offset.
601 (abbrev_table_free_cleanup): New function.
602 (dwarf2_start_symtab): New function.
603 (load_full_type_unit): Assert not called for type unit groups.
6d30eef8
DE
604 * buildsym.c (finish_block_internal): New arg "expandable".
605 All callers updated.
606 (start_symtab): Move most contents to ...
607 (restart_symtab): ... here. New function.
608 (reset_symtab_globals): New function.
609 (end_symtab_1): Renamed from end_symtab. New arg "expandable".
610 Call reset_symtab_globals.
611 (end_symtab, end_expandable_symtab): New functions.
612 (set_missing_symtab, augment_type_symtab): New functions.
613 * buildsym.h (end_expandable_symtab): Declare.
614 (augment_type_symtab, restart_symtab): Declare.
b4c41fc7
DE
615 * psympriv.h (struct partial_symtab): New member "anonymous".
616 * psymtab.c (partial_map_symtabs_matching_filename): Ignore
617 anonymous psymtabs.
618 (read_psymtabs_with_filename): Ditto.
619 (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
620 (expand_symtabs_matching_via_partial): Ditto.
621 (dump_psymtab): Update.
0bfa869d
DE
622 * dictionary.c (dict_add_pending): New function.
623 * dictionary.h (dict_add_pending): Declare.
624
45e58e77
DE
6252012-07-09 Doug Evans <dje@google.com>
626
b74db436
DE
627 * buildsym.c (start_subfile): Remove unnecessary check for
628 name == NULL.
629
fd55216c
DE
630 * psymtab.c (allocate_psymtab): Use host_address_to_string.
631
6721b2ec
DE
632 * dwarf2read.c (load_full_type_unit): Simplify.
633
b4dd5633
DE
634 * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
635 to struct signatured_type **. All uses updated.
636
45e58e77
DE
637 * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
638 All callers updated.
639
e314d629
TT
6402012-07-09 Tom Tromey <tromey@redhat.com>
641
642 * c-exp.y (check_parameter_typelist): New function.
643 (parameter_typelist): Call it.
644 * eval.c (make_params): Handle '(void)' case.
645 * gdbtypes.c (lookup_function_type_with_arguments): Handle
646 '(void)' case.
647
aa7c7447
JK
6482012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
649
650 * common/linux-ptrace.c: Include gdb_assert.h.
651 <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
652 <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
653 stdint.h.
654 (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
655 functions.
656 * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
657 * linux-nat.c (linux_child_post_attach)
658 (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
659
889003ed
JK
6602012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
661
662 * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
663 nptl <2.7 bug workaround for core files.
664
da559b09
JK
6652012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
666
667 * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
668 clearing.
669 (save_siginfo): Remove.
670 (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
671 call.
672 (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
673 (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
674 * linux-nat.h (struct lwp_info): Remove field siginfo.
675
f865ee35
JK
6762012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
677
678 Code cleanup for the next patch.
679 * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
680 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
681 call for it.
682 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
683 (ia64_linux_stopped_data_address):
684 * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
685 the return value.
686 * linux-nat.h (linux_nat_get_siginfo): Likewise.
687 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
688 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
689 call for it.
690
76b83c51
JK
6912012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
692
693 PR 14321
694 * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
695 Increase buffer sizes to 2x we need, not just 2x of the previous size.
696
a6fb9c08
TT
6972012-07-06 Tom Tromey <tromey@redhat.com>
698
699 * c-exp.y (DOTDOTDOT): New token.
700 (func_mod, exp): Use parameter_typelist.
701 (parameter_typelist): New production.
702 (tokentab3): Add "..." token.
703 * eval.c (make_params): Handle varargs.
704 * gdbtypes.c (lookup_function_type_with_arguments): Handle
705 varargs.
706
71918a86
TT
7072012-07-06 Tom Tromey <tromey@redhat.com>
708
709 PR exp/9608:
710 * c-exp.y (%union) <tvec>: Change type.
711 (func_mod): Now uses <tvec> type.
712 (exp): Update for tvec change.
713 (direct_abs_decl): Push the typelist.
714 (func_mod): Return a typelist.
715 (nonempty_typelist): Update for tvec change.
716 * gdbtypes.c (lookup_function_type_with_arguments): New function.
717 * gdbtypes.h (lookup_function_type_with_arguments): Declare.
718 * parse.c (pop_type_list): New function.
719 (push_typelist): New function.
720 (follow_types): Handle tp_function_with_arguments.
721 * parser-defs.h (type_ptr): New typedef. Define a VEC.
722 (enum type_pieces) <tp_function_with_arguments>: New constant.
723 (union type_stack_elt) <typelist_val>: New field.
724 (push_typelist): Declare.
725
fcde5961
TT
7262012-07-06 Tom Tromey <tromey@redhat.com>
727
728 * c-exp.y (%union) <type_stack>: New field.
729 (abs_decl, direct_abs_decl): Use <type_stack> type. Update.
730 (ptr_operator_ts): New production.
731 (ptype): Update.
732 * parse.c (type_stack_reserve): New function.
733 (check_type_stack_depth): Use it.
734 (pop_type_stack, append_type_stack, push_type_stack)
735 (get_type_stack, type_stack_cleanup): New functions.
736 (follow_types): Handle tp_type_stack.
737 (_initialize_parse): Simplify initialization.
738 * parser-defs.h (enum type_pieces) <tp_type_stack>: New
739 constant.
740 (union type_stack_elt) <stack_val>: New field.
741 (get_type_stack, append_type_stack, push_type_stack)
742 (type_stack_cleanup): Declare.
743
1a7d0ce4
TT
7442012-07-06 Tom Tromey <tromey@redhat.com>
745
746 * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
747 Remove.
748 (struct type_stack): New.
749 * parse.c (type_stack, type_stack_size, type_stack_depth):
750 Remove.
751 (type_stack): New global.
752 (parse_exp_in_context, check_type_stack_depth)
753 (insert_into_type_stack, insert_type, push_type, push_type_int)
754 (insert_type_address_space, pop_type, pop_type_int)
755 (_initialize_parse): Update.
756
16d01384
TT
7572012-07-06 Tom Tromey <tromey@redhat.com>
758
759 * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
760 Remove %type.
761
9bfc60bf
SP
7622012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
763
764 * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
765
d5161074
SP
7662012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
767 Jan Kratochvil <jan.kratochvil@redhat.com>
768
769 * cp-valprint.c (cp_print_value): Replace potentially unsafe
770 alloca with xmalloc/xfree.
771
a74bc576
SP
7722012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
773
774 * MAINTAINERS (Write After Approval): Add myself to the list.
775
667e0a4b
DE
7762012-07-05 Doug Evans <dje@google.com>
777
778 * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
779
34b536a8
HZ
7802012-07-05 Hui Zhu <hui_zhu@mentor.com>
781
782 * ax-gdb.c (cli/cli-utils.h): New include.
783 (linespec.h): Ditto.
784 (agent_eval_command_one): New function.
785 (agent_command_1): Ditto.
786 (agent_command): Call function agent_command_1.
787 (agent_eval_command): Ditto.
788 (_initialize_ax_gdb): Change help for "maint agent"
789 and "maint agent-eval".
790
e6f0bce7
HZ
7912012-07-05 Hui Zhu <hui_zhu@mentor.com>
792
793 * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
794 * cli/cli-utils.c (check_for_argument): New function.
795 * cli/cli-utils.h (check_for_argument): Ditto.
796
1b3371b1
L
7972012-07-04 H.J. Lu <hongjiu.lu@intel.com>
798
799 * NEWS: Mention x32 ABI support.
800
23e2d720
L
8012012-07-04 H.J. Lu <hongjiu.lu@intel.com>
802
803 * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
804 AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
805
806 * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
807 and pc_regnum_from_eax to -1. Update SP regnum from
808 sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
809 needed.
810
811 * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
812 pc_regnum_from_eax.
813
836bf454
JK
8142012-07-03 Jan Kratochvil <jan.kratochvil@redhat.com>
815
816 Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
817 * dwarf2expr.h: Include gdbtypes.h.
818 (enum call_site_parameter_kind, union call_site_parameter_u): Remove
819 these forward declarations.
820 (cu_offset, sect_offset): Move these ...
821 * gdbtypes.h: Remove include dwarf2expr.h.
822 (cu_offset, sect_offset): ... here.
823
1e55e04f
L
8242012-07-03 H.J. Lu <hongjiu.lu@intel.com>
825
826 * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
827 (amd64_linux_sigtramp_code): This.
828 (amd64_x32_linux_sigtramp_code): New.
829 (LINUX_SIGTRAMP_LEN): Updated.
830 (amd64_linux_sigtramp_start): Check x32 sigtramp.
831
7d0e21ad
JK
8322012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
833
834 * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
835
8775fd2d
JK
8362012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
837
838 * config.in: Regenerate.
839 * configure: Regenerate.
840 * configure.ac: Remove check for gnu/libc-version.h.
841 * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
842 gnu/libc-version.h.
843 (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
844 variables libc_version, libc_major and libc_minor. Replace sscanf by
845 inferior_has_bug. Extend the comment.
846
fcb44371
JK
8472012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
848
849 * linux-thread-db.c (inferior_has_bug): New function.
850 (thread_db_find_new_threads_silently): Return boolean as checked by
851 inferior_has_bug, describe it in the comments.
852 (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
853 earlier. Abort the initialization if it returned non-zero.
7d0e21ad 854 (thread_db_new_objfile): Exclude debug files.
fcb44371
JK
855 (thread_db_find_new_threads_2): Preinitialize ERR. Check errors also
856 if UNTIL_NO_NEW,
857
09406207
DE
8582012-07-02 Doug Evans <dje@google.com>
859
0907af0c
DE
860 * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
861 related to queue management.
862
09406207
DE
863 * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
864 instead of "debug dwarf2-die" in debugging printfs.
865 (create_debug_info_hash_table_reader): Ditto.
866 (create_debug_info_hash_table): Ditto.
867 (init_dwo_file): Ditto.
868 (init_cutu_and_read_dies): Add debugging printf.
869 (init_cutu_and_read_dies_no_follow): Ditto.
870 (process_psymtab_comp_unit_reader): Ditto.
871
d3ce09f5
SS
8722012-07-02 Stan Shebs <stan@codesourcery.com>
873
874 Add target-side support for dynamic printf.
875 * NEWS: Mention the additional style.
876 * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
877 (struct bp_location): New field cmd_bytecode.
878 * breakpoint.c: Include format.h.
879 (disconnected_dprintf): New global.
880 (parse_cmd_to_aexpr): New function.
881 (build_target_command_list): New function.
882 (insert_bp_location): Call it.
883 (remove_breakpoints_pid): Skip dprintf breakpoints.
884 (print_one_breakpoint_location): Ditto.
885 (dprintf_style_agent): New global.
886 (dprintf_style_enums): Add dprintf_style_agent.
887 (update_dprintf_command_list): Add agent case.
888 (agent_printf_command): New function.
889 (_initialize_breakpoint): Add new commands.
890 * common/ax.def (printf): New bytecode.
891 * ax.h (ax_string): Declare.
892 * ax-gdb.h (gen_printf): Declare.
893 * ax-gdb.c: Include cli-utils.h, format.h.
894 (gen_printf): New function.
895 (maint_agent_print_command): New function.
896 (_initialize_ax_gdb): Add maint agent-printf command.
897 * ax-general.c (ax_string): New function.
898 (ax_print): Add printf disassembly.
899 * Makefile.in (SFILES): Add format.c
900 (COMMON_OBS): Add format.o.
901 * common/format.h: New file.
902 * common/format.c: New file.
903 * printcmd.c: Include format.h.
904 (ui_printf): Call parse_format_string.
905 * remote.c (remote_state): New field breakpoint_commands.
906 (PACKET_BreakpointCommands): New enum.
907 (remote_breakpoint_commands_feature): New function.
908 (remote_protocol_features): Add new BreakpointCommands entry.
909 (remote_can_run_breakpoint_commands): New function.
910 (remote_add_target_side_commands): New function.
911 (remote_insert_breakpoint): Call it.
912 (remote_insert_hw_breakpoint): Ditto.
913 (_initialize_remote): Add new packet configuration for
914 target-side breakpoint commands.
915 * target.h (struct target_ops): New field
916 to_can_run_breakpoint_commands.
917 (target_can_run_breakpoint_commands): New macro.
918 * target.c (update_current_target): Handle
919 to_can_run_breakpoint_commands.
920
2d7b58e8
JK
9212012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
922
923 Execute -ix and -iex only after system and user gdbinit files.
924 * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
925 processing down after gdbinit files.
926
8690e634
JK
9272012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
928
929 Add fnmatch-gnu module.
930 * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
931 * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
932 * gnulib/aclocal.m4: Regenerate.
933 * gnulib/config.in: Regenerate.
934 * gnulib/configure: Regenerate.
935 * gnulib/import/dummy.c: Remove.
936 * gnulib/import/Makefile.am: Regenerate.
937 * gnulib/import/Makefile.in: Likewise.
938 * gnulib/import/m4/gnulib-cache.m4: Likewise.
939 * gnulib/import/m4/gnulib-comp.m4: Likewise.
940 * gnulib/import/alloca.c: New file.
941 * gnulib/import/alloca.in.h: Likewise.
942 * gnulib/import/config.charset: Likewise.
943 * gnulib/import/fnmatch.c: Likewise.
944 * gnulib/import/fnmatch.in.h: Likewise.
945 * gnulib/import/fnmatch_loop.c: Likewise.
946 * gnulib/import/localcharset.c: Likewise.
947 * gnulib/import/localcharset.h: Likewise.
948 * gnulib/import/m4/alloca.m4: Likewise.
949 * gnulib/import/m4/codeset.m4: Likewise.
950 * gnulib/import/m4/configmake.m4: Likewise.
951 * gnulib/import/m4/fcntl-o.m4: Likewise.
952 * gnulib/import/m4/fnmatch.m4: Likewise.
953 * gnulib/import/m4/glibc21.m4: Likewise.
954 * gnulib/import/m4/localcharset.m4: Likewise.
955 * gnulib/import/m4/locale-fr.m4: Likewise.
956 * gnulib/import/m4/locale-ja.m4: Likewise.
957 * gnulib/import/m4/locale-zh.m4: Likewise.
958 * gnulib/import/m4/mbrtowc.m4: Likewise.
959 * gnulib/import/m4/mbsinit.m4: Likewise.
960 * gnulib/import/m4/mbsrtowcs.m4: Likewise.
961 * gnulib/import/m4/mbstate_t.m4: Likewise.
962 * gnulib/import/m4/stdbool.m4: Likewise.
963 * gnulib/import/m4/wchar_h.m4: Likewise.
964 * gnulib/import/m4/wctype_h.m4: Likewise.
965 * gnulib/import/m4/wint_t.m4: Likewise.
966 * gnulib/import/mbrtowc.c: Likewise.
967 * gnulib/import/mbsinit.c: Likewise.
968 * gnulib/import/mbsrtowcs-impl.h: Likewise.
969 * gnulib/import/mbsrtowcs-state.c: Likewise.
970 * gnulib/import/mbsrtowcs.c: Likewise.
971 * gnulib/import/ref-add.sin: Likewise.
972 * gnulib/import/ref-del.sin: Likewise.
973 * gnulib/import/stdbool.in.h: Likewise.
974 * gnulib/import/streq.h: Likewise.
975 * gnulib/import/strnlen1.c: Likewise.
976 * gnulib/import/strnlen1.h: Likewise.
977 * gnulib/import/verify.h: Likewise.
978 * gnulib/import/wchar.in.h: Likewise.
979 * gnulib/import/wctype.in.h: Likewise.
980
202cbf1c
JK
9812012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
982
983 Support shell wildcards for 'set auto-load safe-path'.
984 * auto-load.c: Include fnmatch.h.
985 (filename_is_in_dir): Rename to ...
986 (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
987 it. Update function comment. Rename dir_len to pattern_len. New
988 variables filename_len, pattern and filename. Add more DEBUG_AUTO_LOAD
989 messages. Use gdb_filename_fnmatch.
990 (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
991 pattern.
992 (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
993 * defs.h (gdb_filename_fnmatch): New declaration.
994 * utils.c: Include fnmatch.h.
995 (gdb_filename_fnmatch): New function.
996
fb7b5af4
SDJ
9972012-07-02 Sergio Durigan Junior <sergiodj@redhat.com>
998
999 * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
1000 `-probe' and `-probe-stap' options.
1001
72d0e2c5
YQ
10022012-07-01 Yao Qi <yao@codesourcery.com>
1003
1004 * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
1005 always_inserted_off, and always_inserted_enums.
1006 Change always_inserted_mode's type to 'enum auto_boolean'.
1007 (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
1008 callers.
1009 (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
1010 of add_setshow_enum_cmd.
1011 * infrun.c: Remove can_use_displaced_stepping_auto,
1012 can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
1013 can_use_displaced_stepping_enum.
1014 Change can_use_displaced_stepping's type to 'enum auto_boolean'.
1015 (show_can_use_displaced_stepping, use_displaced_stepping): Update callers.
1016 (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
1017 add_setshow_enum_cmd.
1018
42e7ad6c
DE
10192012-06-30 Doug Evans <dje@google.com>
1020
1021 * dwarf2read.c (signatured_type): Make "per_cu" member first.
1022 (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
1023 currently being read. Propagate DW_AT_comp_dir to DWO DIE.
1024
39cf75f7
DE
10252012-06-29 Doug Evans <dje@google.com>
1026
1027 * linespec.c: #include "stack.h".
1028 (decode_line_with_current_source): Moved here from symtab.c and
1029 renamed from decode_line_spec. All callers updated.
1030 (decode_line_with_last_displayed): Moved here from breakpoint.c and
1031 renamed from decode_line_spec_1. All callers updated.
1032 * linespec.h (decode_line_with_current_source): Move declaration here
1033 from symtab.h and renamed from decode_line_spec.
1034 (decode_line_with_last_displayed): Move declaration here from symtab.h
1035 and renamed from decode_line_spec_1.
1036 * macrocmd.c: #include "linespec.h".
1037 * symtab.c: Remove #include "linespec.h".
1038
433df2d4
DE
10392012-06-28 Doug Evans <dje@google.com>
1040
1ce1cefd
DE
1041 * dwarf2read.c (get_cu_length): New function.
1042 (offset_in_cu_p, error_check_comp_unit_head): Call it.
1043 (create_debug_types_hash_table): Ditto.
1044 (init_cutu_and_read_dies): Ditto.
1045 (init_cutu_and_read_dies_no_follow): Ditto.
1046
3b80fe9b
DE
1047 * dwarf2read.c (dwarf2_find_base_address): Move definition.
1048
433df2d4
DE
1049 * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
1050 (struct abbrev_table): Define.
1051 (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
1052 abbrev_table.
1053 (init_cutu_and_read_dies): Update.
1054 (abbrev_table_alloc_abbrev): New function. Replaces
1055 dwarf_alloc_abbrev. All callers updated.
1056 (abbrev_table_add_abbrev): New function.
1057 (abbrev_table_lookup_abbrev): New function. Replaces
1058 dwarf2_lookup_abbrev. All callers updated.
1059 (abbrev_table_read_table): New function. Contents moved here from
1060 dwarf2_read_abbrevs.
1061 (dwarf2_read_abbrevs): Call it.
1062 (abbrev_table_free): New function.
1063 (dwarf2_free_abbrev_table): Call it.
1064
71caed83
SS
10652012-06-28 Stan Shebs <stan@codesourcery.com>
1066
1067 * osdata.c (info_osdata_command): Filter out "Title" columns
1068 from non-MI uses.
1069 * common/linux-osdata.c (struct osdata_type): Add title field.
1070 (osdata_table): Add titles to each entry.
1071 (linux_command_xfer_osdata): Add a column for title data.
1072
37ce89eb
SS
10732012-06-28 Stan Shebs <stan@codesourcery.com>
1074
1075 Make logging work for MI.
1076 * NEWS: Mention it.
1077 * interps.h (interp_set_logging_ftype): New typedef.
1078 (struct interp_procs): New field set_logging_proc.
1079 (current_interp_set_logging): Declare.
1080 * interps.c (current_interp_set_logging): New function.
1081 * cli/cli-logging.c: Include interps.h.
1082 (set_logging_redirect): Call current_interp_set_logging.
1083 (pop_output_files): Ditto.
1084 (handle_redirections): Ditto, plus skip ui-out redirect if MI.
1085 * mi/mi-console.h (mi_console_set_raw): Declare.
1086 * mi/mi-console.c (mi_console_set_raw): New function.
1087 * mi/mi-interp.c (saved_raw_stdout): New global.
1088 (mi_set_logging): New function.
1089 (_initialize_mi_interp): Add it to interp procs.
1090
659c9f3a
DE
10912012-06-28 Doug Evans <dje@google.com>
1092
a743abeb
DE
1093 * symtab.c (lookup_symbol_aux_objfile): Use
1094 ALL_OBJFILE_PRIMARY_SYMTABS.
1095
659c9f3a
DE
1096 * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
1097
da2d6d3d
JK
10982012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1099
1100 * common/buffer.c: Include inttypes.h and stdint.h.
1101 (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
1102
e5ef252a
PA
11032012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1104 Pedro Alves <palves@redhat.com>
1105
1106 * gdbthread.h (ALL_THREADS): New macro.
1107 (thread_list): Declare.
1108 * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
1109 going, but instead fall through to the stepping handling.
1110 * linux-nat.c (resume_lwp): New parameter 'signo'. Resume with
1111 the passed in signal. Adjust debug output.
1112 (resume_callback): Rename to ...
1113 (linux_nat_resume_callback): ... this. Pass the thread's last
1114 stop signal, if in "pass" state.
1115 (linux_nat_resume): Adjust to rename.
1116 (stop_wait_callback): New assertion. Don't respawn signals;
1117 instead let the LWP remain with SIGNALLED set.
1118 (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
1119 * remote.c (append_pending_thread_resumptions): New.
1120 (remote_vcont_resume): Call it.
1121 * target.h (target_resume): Extend comment.
1122
1d7975eb
IS
11232012-06-28 Iain Sandoe <iain@codesourcery.com>
1124
1125 * auxv.c (fprint_target_auxv): Handle extended cache data tags.
1126
2e3cf129
DE
11272012-06-27 Doug Evans <dje@google.com>
1128
1129 * dwarf2read.c (dwarf2_cu): Add ranges_base.
1130 Delete have_addr_base, unused. All uses updated.
1131 (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
1132 (dwarf2_get_pc_bounds): Add ranges_base.
1133 (dwarf2_record_block_ranges): Ditto.
1134
1bb9788d
TT
11352012-06-27 Tom Tromey <tromey@redhat.com>
1136
1137 PR macros/7961:
1138 * varobj.c (varobj_create): Update.
1139 (varobj_set_value): Update.
1140 * tracepoint.c (validate_actionline): Update.
1141 (encode_actions_1): Update.
1142 * parse.c (parse_exp_1): Add 'pc' argument.
1143 (parse_exp_in_context): Add 'pc' argument. Change how
1144 expression_context_pc is set.
1145 (parse_expression): Update.
1146 (parse_field_expression): Update.
1147 * expression.h (parse_exp_1): Update.
1148 * eval.c (parse_to_comma_and_eval): Update.
1149 * breakpoint.c (set_breakpoint_condition): Update.
1150 (update_watchpoint): Update.
1151 (init_breakpoint_sal): Update
1152 (find_condition_and_thread): Update.
1153 (watch_command_1): Update.
1154 (update_breakpoint_locations): Update.
1155 * ada-lang.c (ada_read_renaming_var_value): Update.
1156 (create_excep_cond_exprs): Update.
1157
0bc3a05c
DE
11582012-06-27 Doug Evans <dje@google.com>
1159
1160 * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
1161 type units.
1162
4bdcc0c1
DE
11632012-06-26 Doug Evans <dje@google.com>
1164
1165 * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
1166 prototype.
1167 (error_check_comp_unit_head): New arg abbrev_section. All callers
1168 updated.
1169 (read_and_check_comp_unit_head): Ditto.
1170 (read_and_check_type_unit_head): Ditto.
1171
ee0bf529
SCR
11722012-06-26 Siva Chandra Reddy <sivachandra@google.com>
1173
1174 New attribute 'last' for gdb.Symtab_and_line.
1175 * NEWS (Python Scripting): Add entry about the new attribute.
1176 * python/py-symtab.c (salpy_get_last): New function which
1177 implements the get method for the 'last' attribute of
1178 gdb.Symtab_and_line.
1179 (sal_object_getset): Add entry for the 'last' attribute.
1180
1c658ad5
DE
11812012-06-26 Doug Evans <dje@google.com>
1182
09262596
DE
1183 * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
1184 (dwo_sections): Add macinfo, macro.
1185 (dwarf2_locate_dwo_sections): Watch for macro sections.
1186 (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
1187 All callers updated. Handle DWO files.
1188
45cfd468
DE
1189 * NEWS: Mention new options "set debug dwarf2-read" and
1190 "set debug symtab-create".
1191 * dwarf2read.c (dwarf2_read_debug): New static global.
1192 (dwarf2_build_psymtabs_hard): Add debugging printfs.
1193 (process_queue): Ditto.
1194 (process_full_comp_unit): Ditto.
1195 (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
1196 * elfread.c (elf_symfile_read): Add debugging printf.
1197 * minsyms.c (install_minimal_symbols): Ditto.
1198 * psymtab.c (allocate_psymtab): Ditto.
1199 * symfile.c (allocate_symtab): Ditto.
1200 * symtab.c (symtab_create_debug): New global.
1201 (_initialize_symtab): Add new option "set debug symtab-create".
1202 * symtab.h (symtab_create_debug): Declare.
1203
1c658ad5
DE
1204 * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
1205 (lookup_dwo_type_unit): Ditto.
1206
6fea9e18
L
12072012-06-26 Roland McGrath <roland@hack.frob.com>
1208 H.J. Lu <hongjiu.lu@intel.com>
1209
1210 * amd64-linux-nat.c: Include <sys/user.h>.
1211 (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
1212 if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
1213 HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
1214
1215 * configure.ac: Check if the fs_base and gs_base members of
1216 `struct user_regs_struct' exist.
1217 * config.in: Regenerated.
1218 * configure: Likewise.
1219
adb4fe3b
ME
12202012-06-25 Michael Eager <eager@eagercon.com>
1221
1222 PR python/14291
1223 * python/python.c (gdbpy_write): Check for interrupted output.
1224
fc51cce1
MGD
12252012-06-25 Greta Yorsh <greta.yorsh@arm.com>
1226
1227 * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
1228 register as a stack alignment in ARM mode.
1229
40a73391
JK
12302012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1231
1232 Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
1233 * gnulib/config.in: Regenerate.
1234 * gnulib/configure: Likewise.
1235 * gnulib/import/m4/extensions.m4: Update it.
1236 * gnulib/import/m4/gnulib-common.m4: Likewise.
1237 * gnulib/import/m4/memmem.m4: Likewise.
1238 * gnulib/import/m4/mmap-anon.m4: Likewise.
1239 * gnulib/import/m4/multiarch.m4: Likewise.
1240 * gnulib/import/stdint.in.h: Likewise.
1241
972daa01
YQ
12422012-06-24 Yao Qi <yao@codesourcery.com>
1243
1244 * corefile.c (write_memory_with_notification): New.
1245 * gdbcore.h: Declare write_memory_with_notification.
1246 * ada-lang.c (ada_value_assign): Replace 'write_memory' and
1247 'observer_notify_memory_changed' with 'write_memory_with_notification'.
1248 * valops.c (value_assign): Likewise.
1249 * python/py-inferior.c (infpy_write_memory): Call
1250 'write_memory_with_notification'.
1251
8d6e0714
JK
12522012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1253
1254 * cc-with-index.sh: Use also -ex "set auto-load no".
1255
156942c7
DE
12562012-06-23 Doug Evans <dje@google.com>
1257
1258 PR 14125
1259 * NEWS: Document additions to .gdb_index.
1260 * dwarf2read.c: #include "gdb/gdb-index.h".
1261 (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
1262 (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
1263 (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
1264 (dwarf2_read_index): Recognize version 7.
1265 (dw2_do_expand_symtabs_matching): New args want_specific_block,
1266 block_kind, domain): All callers updated.
1267 (dw2_find_symbol_file): Handle new index CU values.
1268 (dw2_expand_symtabs_matching): Match symbol kind if requested.
1269 (add_index_entry): New args is_static, kind. All callers updated.
1270 (offset_type_compare, uniquify_cu_indices): New functions
1271 (symbol_kind): New function.
1272 (write_psymtabs_to_index): Remove duplicate CU values.
1273 (write_psymtabs_to_index): Write .gdb_index version 7.
1274
352b3eda
JB
12752012-06-22 Joel Brobecker <brobecker@adacore.com>
1276
1277 * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
1278 * configure: Regenerate.
1279
2678e2af
YQ
12802012-06-20 Yao Qi <yao@codesourcery.com>
1281
1282 * python/py-inferior.c: Update comments of infpy_read_memory
1283 and infpy_write_memory.
1284
95c391b6
TT
12852012-06-19 Tom Tromey <tromey@redhat.com>
1286
1287 PR exp/9514:
1288 * parser-defs.h (insert_type, insert_type_address_space): Declare.
1289 (push_type_address_space): Remove.
1290 * parse.c (insert_into_type_stack): New function.
1291 (insert_type): Likewise.
1292 (insert_type_address_space): Rename from push_type_address_space.
1293 Insert tp_space_identifier.
1294 * c-exp.y (ptr_operator): New production.
1295 (abs_decl): Use ptr_operator.
1296 (space_identifier): Call insert_type_address_space.
1297 (ptype): Don't use const_or_volatile_or_space_identifier.
1298 (const_or_volatile_noopt): Call insert_type.
1299 (conversion_type_id, conversion_declarator): New productions.
1300 (operator): Use conversion_type_id.
1301
6ac9ef80
DE
13022012-06-18 Doug Evans <dje@google.com>
1303
422d65e7
DE
1304 * symtab.h (minimal_symbol): New member created_by_gdb.
1305 * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
1306 created by gdb.
1307 * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
1308 (search_symbols): Call it instead of lookup_symbol.
1309 Skip symbols created by gdb. Only scan minsyms if nfiles == 0.
1310
49f6c839
DE
1311 * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
1312 Adjust address for DW_OP_GNU_addr_index.
1313 * dwarf2expr.h (dwarf_expr_context): Update comment.
1314 * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
1315 all callers updated. Handle TLS vars described with
1316 DW_OP_GNU_const_index.
1317 (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
1318 and DW_OP_GNU_const_index.
1319 * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
1320
6ac9ef80
DE
1321 * block.c (find_block_in_blockvector): Make explicit the fact that we
1322 ignore GLOBAL_BLOCK.
1323
4cd18215
TT
13242012-06-18 Tom Tromey <tromey@redhat.com>
1325
1326 * c-exp.y (operator): Remove trailing space after "delete" and
1327 "delete[]".
1328
a9b8d892
JK
13292012-06-18 Mark Kettenis <kettenis@gnu.org>
1330 Jan Kratochvil <jan.kratochvil@redhat.com>
1331
1332 Switch i386 and derived targets to ON_STACK.
1333 * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
1334 (amd64_dicos_init_abi): Remove its installment.
1335 * dicos-tdep.c (dicos_init_abi): Remove the
1336 set_gdbarch_call_dummy_location call. Update the comment here.
1337 * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
1338 (i386_dicos_init_abi): Remove its installment.
1339 * i386-tdep.c (i386_push_dummy_code): New function.
1340 (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
1341 i386_push_dummy_code.
1342
e2e4d78b
JK
13432012-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
1344
1345 Remove stale dummy frames.
1346 * breakpoint.c: Include dummy-frame.h.
1347 (longjmp_breakpoint_ops): New variable.
1348 (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
1349 bp_longjmp_call_dummy.
1350 (bpstat_what, bptype_string, print_one_breakpoint_location)
1351 (init_bp_location): Support bp_longjmp_call_dummy.
1352 (set_longjmp_breakpoint): Use longjmp_breakpoint_ops. Comment why.
1353 (set_longjmp_breakpoint_for_call_dummy)
1354 (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
1355 functions.
1356 (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
1357 * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy. Delete
1358 FIXME comment and extend the other comment for bp_call_dummy.
1359 (set_longjmp_breakpoint_for_call_dummy)
1360 (check_longjmp_breakpoint_for_call_dummy): New declarations.
1361 * dummy-frame.c: Include gdbthread.h.
1362 (pop_dummy_frame_bpt): New function.
1363 (pop_dummy_frame): Call pop_dummy_frame_bpt.
1364 (dummy_frame_discard): New function.
1365 (cleanup_dummy_frames): Update the comment about longjmps.
1366 * dummy-frame.h (dummy_frame_discard): New declaration.
1367 * gdbthread.h (struct thread_info): Extend initiating_frame comment.
1368 * infcall.c (call_function_by_hand): New variable longjmp_b. Call
1369 set_longjmp_breakpoint_for_call_dummy. Chain its breakpoints with BPT.
1370 * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
1371 Add case 4 comment. Call check_longjmp_breakpoint_for_call_dummy and
1372 keep_going if IS_LONGJMP and there is no other reason to stop.
1373
09d5912c
TT
13742012-06-18 Greta Yorsh <Greta.Yorsh@arm.com>
1375
1376 * remote-sim.c (sim_command_completer): Initialize
1377 variable 'result'.
1378
1788b2d3
JK
13792012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
1380
1381 * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
1382 * dwarf2loc.c (call_site_parameter_matches): Support
1383 CALL_SITE_PARAMETER_PARAM_OFFSET.
1384 (needs_dwarf_reg_entry_value): Push stub value.
1385 * dwarf2read.c (read_call_site_scope): New variable origin. Support
1386 CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
1387 * gdbtypes.h (enum call_site_parameter_kind): New item
1388 CALL_SITE_PARAMETER_PARAM_OFFSET.
1389 (struct call_site.parameter.u): New field param_offset.
1390
24c5c679
JK
13912012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
1392
1393 Code cleanup: Generalize call_site.parameter key.
1394 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
1395 variable dwarf_reg. New variable kind_u. Update parameters to
1396 push_dwarf_reg_entry_value.
1397 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
1398 * dwarf2expr.h (enum call_site_parameter_kind)
1399 (union call_site_parameter_u): Forward declarations.
1400 (struct dwarf_expr_context_funcs): Update parameters and their
1401 description for push_dwarf_reg_entry_value.
1402 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
1403 * dwarf2loc.c (call_site_parameter_matches): New function.
1404 (dwarf_expr_reg_to_entry_parameter): Update parameters and their
1405 description. Use call_site_parameter_matches.
1406 (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
1407 Update parameters and their description.
1408 (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
1409 New variable kind_u. Adjust the caller for updated parameters.
1410 (needs_dwarf_reg_entry_value): Update parameters.
1411 * dwarf2read.c (read_call_site_scope): New variable loc. Use it
1412 instead of attr. Update for the changed fields of struct
1413 call_site_parameter.
1414 * gdbtypes.h: Include dwarf2expr.h.
1415 (enum call_site_parameter_kind): New.
1416 (struct call_site.parameter): New field kind. Wrap dwarf_reg and
1417 fb_offset into new union u.
1418
ac142d96
L
14192012-06-16 H.J. Lu <hongjiu.lu@intel.com>
1420
1421 * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
1422 (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
1423 for x32.
1424
ba224c70
L
14252012-06-16 H.J. Lu <hongjiu.lu@intel.com>
1426
1427 * amd64-linux-nat.c (compat_x32_clock_t): New.
1428 (compat_x32_siginfo_t): Likewise.
1429 (compat_x32_siginfo_from_siginfo): Likewise.
1430 (siginfo_from_compat_x32_siginfo): Likewise.
1431 (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
1432 and siginfo_from_compat_x32_siginfo for x32.
1433
7ecbc825
HZ
14342012-06-15 Hui Zhu <hui_zhu@mentor.com>
1435
1436 * tracepoint.c (tfile_xfer_partial): Add a lseek.
1437
233dfcf0
L
14382012-06-15 H.J. Lu <hongjiu.lu@intel.com>
1439
1440 * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
1441 instead of gdbarch_ptr_bit.
1442 * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
1443 (amd64_supply_native_gregset): Likewise.
1444 (amd64_collect_native_gregset): Likewise.
1445 * amd64-tdep.c (amd64_supply_fxsave): Likewise.
1446 (amd64_supply_xsave): Likewise.
1447 (amd64_collect_fxsave): Likewise.
1448 (amd64_collect_xsave): Likewise.
1449
6da38f42
L
14502012-06-15 H.J. Lu <hongjiu.lu@intel.com>
1451
1452 * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
1453 (amd64_linux_read_description): Check DS segment register for
1454 x32 process.
1455
663b969e
TT
14562012-06-15 Tom Tromey <tromey@redhat.com>
1457
1458 * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
1459 init_cutu_and_read_dies.
1460
d6f05027
IS
14612012-06-15 Iain Sandoe <iain@codesourcery.com>
1462
1463 * MAINTAINERS (Write After Approval): Add myself to the list.
1464
6598ed07
TT
14652012-06-15 Tom Tromey <tromey@redhat.com>
1466
1467 * valops.c (value_find_oload_method_list): Now static.
1468 * value.h (value_find_oload_method_list): Don't declare.
1469
2b214ea6
TT
14702012-06-15 Tom Tromey <tromey@redhat.com>
1471
1472 * valops.c (find_overload_match): Use value_ind.
1473
a210c238
MR
14742012-06-15 Maciej W. Rozycki <macro@codesourcery.com>
1475
1476 * infrun.c (handle_inferior_event): Correct indentation.
1477
3771a44c
DE
14782012-06-14 Doug Evans <dje@google.com>
1479
1480 * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
1481 (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
1482 All uses updated.
1483 (decode_debug_loc_dwo_addresses): New arg "byte_order". All callers
1484 updated. Handle DEBUG_LOC_START_LENGTH.
1485 (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
1486 (loclist_describe_location): Ditto.
1487
1c5a993e
MR
14882012-06-14 Maciej W. Rozycki <macro@codesourcery.com>
1489
1490 PR backtrace/13866
1491 * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
1492 after hiding inline functions.
1493
0b155465
JB
14942012-06-13 Joel Brobecker <brobecker@adacore.com>
1495
1496 * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
1497 _initialize_inf_ttrace.
1498
45717bac
JB
14992012-06-13 Joel Brobecker <brobecker@adacore.com>
1500
1501 * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
1502 _initialize_hppa_hpux_nat.
1503
34370865
JB
15042012-06-13 Joel Brobecker <brobecker@adacore.com>
1505
1506 * remote-sim.c (sim_command_completer): Change type of return
1507 value to "VEC (char_ptr) *". Adjust implementation accordingly.
1508
284c5a60
MK
15092012-06-13 Mark Kettenis <kettenis@gnu.org>
1510 Jan Kratochvil <jan.kratochvil@redhat.com>
1511
1512 PR tdep/14222
1513 * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
1514 stack on a 16-byte boundary.
1515
2535757a
TT
15162012-06-13 Kaushik Srenevasan <kaushik@twitter.com>
1517
1518 * jit.c (finalize_symtab): Set function's return type to 'void' by
1519 default.
1520
fff4548b
MK
15212012-06-13 Mark Kettenis <kettenis@gnu.org>
1522 H.J. Lu <hongjiu.lu@intel.com>
1523
5a83521a
MK
1524 * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
1525 Move bits common to both the classic LP64 and the new x32 ILP32
1526 ABI here.
1527 (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
1528 (amd64_x32_linux_init_abi): New function.
1529 (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
1530 subtype.
1531
fff4548b
MK
1532 * i386-tdep.h (i386_pseudo_register_name): New prototype.
1533 * i386-tdep.c (i386_pseudo_register_name): Make public.
1534 * amd64-tdep.h (amd64_x32_init_abi): New prototype.
1535 * amd64-tdep.c (amd64_dword_names): Add "eip".
1536 (amd64_x32_pseudo_register_type): New function
1537 (amd64_x32_init_abi): New function.
1538
dd80ea3c
JK
15392012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1540
1541 PR build/14003
1542 * inferior.h (struct inferior_suspend_state): Comment out.
1543 (struct inferior): Comment out the field suspend.
1544 * infrun.c (struct infcall_suspend_state): Comment out the field
1545 inferior_suspend.
1546 (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
1547 out its assignment.
1548
50af5481
JK
15492012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1550
1551 PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
1552 * c-exp.y (classify_inner_name): Remove caller assumptions in the
1553 function comment. Return ERROR for unresolved cases. Implement
1554 returning proper NAME.
1555 (yylex): Accept also NAME from classify_inner_name.
1556 * cp-namespace.c (cp_lookup_nested_type): Rename to ...
1557 (cp_lookup_nested_symbol): ... here. Return any found symbol, not just
1558 LOC_TYPEDEF type.
1559 * cp-support.h (cp_lookup_nested_type): Update its declaration.
1560
d55637df
TT
15612012-06-13 Tom Tromey <tromey@redhat.com>
1562
1563 * breakpoint.c (condition_completer): New function.
1564 (_initialize_breakpoint): Use it.
1565 * value.c (complete_internalvar): New function.
1566 * value.h (complete_internalvar): Declare.
1567
49c4e619
TT
15682012-06-13 Tom Tromey <tromey@redhat.com>
1569
1570 * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
1571 * breakpoint.c (catch_syscall_completer): Return a VEC.
1572 * cli/cli-cmds.c (complete_command): Update.
1573 * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
1574 (complete_on_enum): Likewise.
1575 * command.h: Include gdb_vecs.h.
1576 (completer_ftype): Change return type.
1577 (complete_on_cmdlist, complete_on_enum): Likewise.
1578 * completer.c (noop_completer, filename_completer)
1579 (location_completer): Return a VEC.
1580 (add_struct_fields): Remove 'nextp' argument. Change 'output'
1581 to a VEC.
1582 (expression_completer, complete_line_internal, complete_line)
1583 (command_completer): Return a VEC.
1584 (gdb_completion_word_break_characters, line_completion_function):
1585 Update.
1586 * completer.h: Include gdb_vecs.h.
1587 (complete_line, noop_completer, filename_completer)
1588 (expression_completer, location_completer, command_completer):
1589 Update.
1590 * f-lang.c (f_word_break_characters): Return a VEC.
1591 * interps.c (interpreter_completer): Return a VEC.
1592 * language.h (struct language_defn)
1593 <la_make_symbol_completion_list>: Return a VEC.
1594 * python/py-cmd.c (cmdpy_completer): Return a VEC.
1595 * symtab.c (free_completion_list): Take a VEC.
1596 (return_val_size, return_val_index): Remove.
1597 (return_val): Now a VEC.
1598 (completion_list_add_name): Update.
1599 (default_make_symbol_completion_list_break_on)
1600 (default_make_symbol_completion_list, make_symbol_completion_list)
1601 (make_symbol_completion_list_fn, make_file_symbol_completion_list):
1602 Return a VEC.
1603 (add_filename_to_list): Update.
1604 (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
1605 <list>: Now a VEC.
1606 (maybe_add_partial_symtab_filename): Update.
1607 (make_source_files_completion_list): Return a VEC.
1608 * symtab.h (default_make_symbol_completion_list_break_on)
1609 (default_make_symbol_completion_list, make_symbol_completion_list)
1610 (make_symbol_completion_list_fn, make_file_symbol_completion_list)
1611 (make_source_files_completion_list): Update.
1612
625e8578
TT
16132012-06-13 Tom Tromey <tromey@redhat.com>
1614
1615 * breakpoint.c (add_catch_command): Use completer_ftype.
1616 * breakpoint.h: Include command.h.
1617 (add_catch_command): Use completer_ftype.
1618 * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
1619 * cli/cli-decode.h (struct cmd_list_element) <completer>:
1620 Use completer_ftype.
1621 * command.h (completer_ftype): New typedef.
1622 (set_cmd_completer): Use it.
1623 * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
1624 completer_ftype.
1625
5eb3b062
PA
16262012-06-13 Pedro Alves <palves@redhat.com>
1627
1628 Partial revert of previous change.
1629
1630 * serial.c (scb_base): New global.
1631 (serial_for_fd): New.
1632 (serial_open, serial_fdopen_ops): Link new serial in open serials
1633 chain.
1634 (do_serial_close): Unlink serial from the open serials chain.
1635
8b3ee56d
PA
16362012-06-12 Pedro Alves <palves@redhat.com>
1637
1638 * infrun.c (infrun_thread_stop_requested_callback): Don't switch
1639 threads here.
1640 (prepare_for_detach): No longer context switch here in non-stop
1641 mode.
1642 (fetch_inferior_event): Ditto.
1643 (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
1644 to the event thread before removing breakpoints. Switch to the
1645 event thread before inserting breakpoints and resuming.
1646 (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
1647 event thread before resuming.
1648 (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
1649 Switch to the event thread before removing breakpoints.
1650
5d60742e
EZ
16512012-06-12 Eli Zaretskii <eliz@gnu.org>
1652
1653 * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
1654 special characters correctly for the Windows shells. See
1655 http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
1656 report.
1657 [!__MINGW32__]: Remove extra double quote character from special
1658 characters.
1659
a6feecf7
SS
16602012-06-11 Stan Shebs <stan@codesourcery.com>
1661
1662 * ui-out.h: Remove #if 0 declarations.
1663 * ui-out.c: Remove #if 0 functions.
1664
ddefb60f
PA
16652012-06-11 Pedro Alves <palves@redhat.com>
1666
1667 * ser-base.c (run_async_handler_and_reschedule): New.
1668 (fd_event, push_event): Use it.
1669 * serial.c (serial_open, serial_fdopen_ops): Set the initial
1670 reference count to 1.
1671 (do_serial_close): Set the bufp field to NULL. Use serial_unref
1672 instead of xfree.
1673 (serial_is_open, serial_ref, serial_unref): New.
1674 * serial.h (serial_open): Adjust comment.
1675 (serial_is_open): Declare.
1676 (serial_close): Adjust comment.
1677 (serial_ref, serial_unref) Declare.
1678 (struct serial): New field 'refcnt'.
1679
d5ad6aa5
PA
16802012-06-11 Pedro Alves <palves@redhat.com>
1681
1682 Remove #if 0'd "connect" command, and unnecessary associated
1683 refcounting and serial reuse bits.
1684
1685 * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
1686 * serial.c (last_serial_opened): Delete.
1687 (scb_base): Delete.
1688 (serial_open): Adjust.
1689 (serial_for_fd): Delete.
1690 (serial_fdopen_ops, do_serial_close): Adjust.
1691 (serial_fdopen_ops): Adjust.
1692
318aa544
PA
16932012-06-11 Pedro Alves <palves@redhat.com>
1694
1695 * serial.c (do_serial_close): Remove early return when SCB is
1696 null.
1697
07261596
TT
16982012-06-11 Tom Tromey <tromey@redhat.com>
1699
1700 * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
1701
cc80f267
JK
17022012-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1703
1704 Fix regression by the "ambiguous linespec" series.
1705 * breakpoint.c (parse_breakpoint_sals): New variable cursal. Use
1706 get_last_displayed_symtab and get_last_displayed_line and depending
1707 on CURSAL.
1708
356d9f9d
TT
17092012-06-11 Tom Tromey <tromey@redhat.com>
1710
1711 * dwarf2read.c (dw2_get_primary_filename_reader): New function.
1712 (dw2_find_symbol_file): Use it.
1713
232b8704
ME
17142012-06-11 Michael Eager <eager@eagercon.com>
1715
1716 * mips-linux-tdep.c (mips_gdb_signal_from_target): New
1717 * mips-linux-tdep.h (mips_signals): New
1718
e81a37f7
TT
17192012-06-11 Tom Tromey <tromey@redhat.com>
1720
1721 * infrun.c (handle_inferior_event)
1722 <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
1723 breakpoint.
1724 <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
1725 exception logic in all cases. Update comments.
1726 (insert_longjmp_resume_breakpoint): Set the exception resume
1727 breakpoint.
1728
2e81047f
MR
17292012-06-11 Maciej W. Rozycki <macro@codesourcery.com>
1730
1731 * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
1732
4e32eda7
SCR
17332012-06-09 Siva Chandra Reddy <sivachandra@google.com>
1734
1735 * valarith.c (binop_types_user_defined_p): Fix a typo.
1736
18648a37
YQ
17372012-06-08 Yao Qi <yao@codesourcery.com>
1738 Chung-Lin Tang <cltang@codesourcery.com>
1739
1740 * arch-utils.c (default_return_in_first_hidden_param_p): New.
1741 * arch-utils.h: Declare.
1742 * gdbarch.sh: Add return_in_first_hidden_param_p.
1743 * gdbarch.c, gdbarch.h: Regenerated.
1744 * infcall.c (call_function_by_hand): Call
1745 gdbarch_return_in_first_hidden_param_p instead of
1746 language_pass_by_reference.
1747
1748 * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
1749 (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
1750 * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
1751 (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
1752 * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
1753 `cplus_return_struct_by_reference'.
1754 (tic6x_return_value): Handle language cplusplus.
1755 (tic6x_return_in_first_hidden_param_p): New.
1756 (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
1757
034e5797
DE
17582012-06-07 Doug Evans <dje@google.com>
1759
1760 * dwarf2read.c (dwarf2_cu): Add comment.
1761
6a00aa1e
MR
17622012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
1763
1764 * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
1765 variable.
1766 (mips_eabi_push_dummy_call): Likewise.
1767 (mips_n32n64_push_dummy_call): Likewise.
1768 (mips_o32_push_dummy_call): Likewise.
1769 (mips_o64_push_dummy_call): Likewise.
1770
eaa05d59
MR
17712012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
1772
1773 * mips-tdep.c (mips_convert_register_p): Correct coding style.
1774
de13fcf2
MR
17752012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
1776
1777 * mips-tdep.c (mips_pseudo_register_type): Use
1778 mips_float_register_p.
1779
c3a01a22
PA
17802012-06-06 Pedro Alves <palves@redhat.com>
1781
1782 * infrun.c (handle_inferior_event): Remove calls to
1783 reinit_frame_cache that follow a context_switch call.
1784
d25f45d9
PA
17852012-06-06 Pedro Alves <palves@redhat.com>
1786
1787 * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
1788 context_switch and remove stale comment.
1789
359f5fe6
PA
17902012-06-06 Pedro Alves <palves@redhat.com>
1791
1792 * infrun.c (struct execution_control_state): Remove
1793 `new_thread_event' field.
1794 (handle_inferior_event): Simplify new threads handling; don't
1795 resume the inferior if we find a new thread.
1796
2d4c29c5
TS
17972012-06-06 Thomas Schwinge <thomas@codesourcery.com>
1798
1799 * NEWS: Document the deprecation of SH's 'regs' command.
1800 * inferior.h (all_registers_info): Add function declaration.
1801 * sh-tdep.c (sh_show_regs): Remove variable.
1802 (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
1803 (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
1804 (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
1805 (sh_show_regs_command): Remove functions.
1806 (sh_gdbarch_init): Don't set sh_show_regs.
1807 (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
1808 'info all-registers'.
1809 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
1810 (sh64_show_regs): Remove functions.
1811 * sh64-tdep.h (sh64_show_regs): Remove function declaration.
1812
f5f1cdb6
JK
18132012-06-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1814
1815 * configure.ac: Move development=true below AC_INIT.
1816 * configure: Regenerate.
1817
bf6309af
SS
18182012-06-05 Stan Shebs <stan@codesourcery.com>
1819
1820 * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
1821 gdb_stdout.
1822
45aa4659
JK
18232012-06-05 Siddhesh Poyarekar <siddhesh@redhat.com>
1824
1825 * corefile.c (read_memory, read_stack, write_memory): Accept LEN
1826 argument as ssize_t.
1827 * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
1828 * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
1829 * target.c (target_read_stack, target_write_memory)
1830 (target_write_raw_memory): Likewise.
1831 * target.h (target_read_stack, target_write_memory)
1832 (target_write_raw_memory): Likewise.
1833
1b162304
JK
18342012-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1835
1836 * symfile-mem.c: Change gdb_static_assert to ssize_t.
1837 (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
1838 * target.c (target_read_memory): Change LEN to ssize_t.
1839 * target.h (target_read_memory): Change LEN to ssize_t.
1840
8556afb4
PA
18412012-06-05 Pedro Alves <palves@redhat.com>
1842
1843 PR backtrace/13866
1844
1845 * breakpoint.c (until_break_command): Only fetch the selected
1846 frame after decode_line_1.
1847
fb139f32
PA
18482012-06-05 Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
1849
1850 * solib-svr4.c (enable_break): Don't fallback to setting the solib
1851 event breakpoint at _start, __start or main if a program
1852 interpreter is not found.
1853
a8e1bb34
JB
18542012-06-05 Joel Brobecker <brobecker@adacore.com>
1855
1856 * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
1857 Add declaration.
1858 * windows-tdep.c: #include "objfiles.h".
1859 (windows_iterate_over_objfiles_in_search_order): New function.
1860 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
1861 iterate_over_objfiles_in_search_order gdbarch method to
1862 windows_iterate_over_objfiles_in_search_order.
1863 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
1864
19630284
JB
18652012-06-05 Joel Brobecker <brobecker@adacore.com>
1866
1867 * gdbarch.sh: Add generation of
1868 "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
1869 gdbarch.h. Add include of "objfiles.h" in gdbarch.c.
1870 (iterate_over_objfiles_in_search_order): New gdbarch method.
1871 * gdbarch.h, gdbarch.c: Regenerate.
1872 * objfiles.h (default_iterate_over_objfiles_in_search_order):
1873 Add declaration.
1874 * objfiles.c (default_iterate_over_objfiles_in_search_order):
1875 New function.
1876 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
1877 out of lookup_symbol_aux_symtabs.
1878 (lookup_symbol_aux_symtabs): Replace extracted-out code by
1879 call to lookup_symbol_aux_objfile.
1880 (struct global_sym_lookup_data): New type.
1881 (lookup_symbol_global_iterator_cb): New function.
1882 (lookup_symbol_global): Search for symbol using
1883 gdbarch_iterate_over_objfiles_in_search_order and
1884 lookup_symbol_global_iterator_cb.
1885 * findvar.c (struct minsym_lookup_data): New type.
1886 (minsym_lookup_iterator_cb): New function.
1887 (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
1888 symbol's address via gdbarch_iterate_over_objfiles_in_search_order
1889 and minsym_lookup_iterator_cb.
1890
67ff19f7
JB
18912012-06-05 Joel Brobecker <brobecker@adacore.com>
1892
1893 Revert the following patch:
1894 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
1895 try locating the symbol in the symbol's own objfile first, before
1896 extending the search to all objfiles.
1897 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
1898 out of lookup_symbol_aux_symtabs.
1899 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
1900 Replace extracted-out code by call to lookup_symbol_aux_objfile.
1901 Do not search EXCLUDE_OBJFILE.
1902 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
1903 (lookup_symbol_global): Search for matches in the block's objfile
1904 first, before searching all other objfiles.
1905
ccab2054
JB
19062012-06-05 Joel Brobecker <brobecker@adacore.com>
1907
1908 * breakpoint.c (find_condition_and_thread): Stop parsing
1909 as soon as the first invalid keyword is found.
1910
e23d4a9c
JB
19112012-06-05 Joel Brobecker <brobecker@adacore.com>
1912
1913 * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
1914
70160166
JB
19152012-06-05 Joel Brobecker <brobecker@adacore.com>
1916
1917 * config/djgpp/djcheck.sh: Add copyright header.
1918
399501a5
JB
19192012-06-05 Joel Brobecker <brobecker@adacore.com>
1920
1921 * copyright.py (update_files, main): Fix path to update-copyright
1922 script.
1923
3770a159
JB
19242012-06-05 Joel Brobecker <brobecker@adacore.com>
1925
1926 * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
1927 (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
1928 for which a reminder to update by hand is printed.
1929
4aad0dfc
DE
19302012-06-04 Doug Evans <dje@google.com>
1931
1932 * buildsym.c (make_blockvector): Add comment.
1933
1f8cf220
PA
19342012-06-04 Pedro Alves <palves@redhat.com>
1935
1936 * arch-utils.c (default_gdb_signal_from_target): Delete.
1937 * arch-utils.h (default_gdb_signal_from_target): Delete.
1938 * corelow.c (core_open) <signal mapping>: Extended comment. Check
1939 gdbarch_gdb_signal_from_target_p.
1940 * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
1941 predicate).
1942 * gdbarch.h: Regenerate.
1943 * gdbarch.c: Regenerate.
1944
86b49880
PA
19452012-06-04 Pedro Alves <palves@redhat.com>
1946
1947 * gdbarch.sh (gdb_signal_from_target): Mention that the
1948 implementation of the method must be host independent.
1949 * gdbarch.h: Regenerate.
1950
fe78531d
JK
19512012-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1952
1953 * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
1954 parameters.
1955 (target_read_memory_bfd): New function.
1956 (symbol_file_add_from_memory): Use it.
1957
d790cf0a
DE
19582012-06-03 Doug Evans <dje@google.com>
1959
78e5175a
DE
1960 * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
1961 of primary symtab.
1962 (basic_lookup_transparent_type): Ditto.
1963
d790cf0a
DE
1964 * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
1965 (ALL_PRIMARY_SYMTABS): Use it.
1966 (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
1967 * dwarf2read.c (dw2_find_symbol_file): Ditto.
1968 * linespec.c (iterate_over_all_matching_symtabs): Ditto.
1969 * symtab.c (lookup_symbol_aux_objfile): Ditto.
1970 (basic_lookup_transparent_type): Ditto.
1971
c6e5ee5e
SDJ
19722012-06-02 Sergio Durigan Junior <sergiodj@redhat.com>
1973
1974 * symtab.c (symbol_demangled_name): New variable `dem_name'. Use
1975 it to optimize resolution of demangled name.
1976
a68ffae9
JK
19772012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1978
1979 * configure.ac (development): Define new variable.
1980 Call AC_CHECK_LIB for mcheck if $development.
1981 (ERROR_ON_WARNING): Enable it by default only if $development.
1982 * config.in: Regenerate.
1983 * configure: Regenerate.
1984
5299c1c4
JK
19852012-06-01 Siddhesh Poyarekar <siddhesh@redhat.com>
1986
1987 * target.c (target_read_memory): Make LEN argument as size_t.
1988 * target.h (target_read_memory): Likewise.
1989
19902012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
7c71816c
JK
1991
1992 * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
1993
0c56f59b
EBM
19942012-05-31 Edjunior Machado <emachado@linux.vnet.ibm.com>
1995
1996 * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
1997 BookE interface for PowerPC server processors if not available
1998 in the Linux Kernel.
1999
71bdabee
KS
20002012-05-31 Keith Seitz <keiths@redhat.com>
2001
2002 * linespec.c (decode_objc): Add cleanup to free
2003 INFO.FILE_SYMTABS.
2004 (find_linespec_symbols): Add cleanup to free CLASSES.
2005 * symfile.c (find_separate_debug_file_by_debuglink): Add
2006 cleanup to free DEBUGLINK.
2007 * ui-out.c (clear_header_list): No need to check if
2008 HEADER_NEXT.COLHDR is NULL.
2009 Free HEADER_NEXT.COL_NAME.
2010
acbd605d
MGD
20112012-05-31 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
2012
2013 * ada-lang.c (standard_lookup): Prevent uninitialized variable
2014 warning.
2015
65662cde
PA
20162012-05-30 Jeff Kenton <jkenton@tilera.com>
2017
2018 * configure.host (gdb_host_cpu): Handle tilegx*.
2019 (gdb_host): Handle tilegx-*-linux*.
2020 * tilegx-linux-nat.c: New file.
2021 * config/tilegx/linux.mh: New file.
2022
ade64f0e
PA
20232012-05-30 Jeff Kenton <jkenton@tilera.com>
2024
2025 * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
2026 tilegx-linux-tdep.o.
2027 (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
2028 tilegx-linux-tdep.c.
2029 * configure.tgt: Handle tilegx-*-linux*.
2030 * tilegx-tdep.h: New file.
2031 * tilegx-tdep.c: New file.
2032 * tilegx-linux-tdep.c: New file.
2033 * regformats/reg-tilegx.dat: New file.
2034
bb08bdbd
EBM
20352012-05-30 Edjunior Machado <emachado@linux.vnet.ibm.com>
2036
2037 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
2038 accounting of hw watchpoints on ppc.
2039
ebd86fb5
TJB
20402012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
2041
2042 * source.c (openp): Expand tilde in path entries.
2043
0a0edcd5
DE
20442012-05-29 Doug Evans <dje@google.com>
2045
98cc87bd
DE
2046 * buildsym.c (block_compar): Fix comment.
2047 (end_symtab): Fix and clarify some comments.
2048
0a0edcd5
DE
2049 * stabsread.h (cleanup_undefined_stabs_types): Renamed from
2050 cleanup_undefined_types.
2051 * stabsread.c (cleanup_undefined_stabs_types): Ditto.
2052 All callers updated.
2053
6f0c7050
TT
20542012-05-29 Tom Tromey <tromey@redhat.com>
2055
2056 * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
2057 fails.
2058 * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
2059 * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
2060 fails.
2061 * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
2062 fails.
2063
ec95993c
TG
20642012-05-29 Tristan Gingold <gingold@adacore.com>
2065
2066 * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
2067 (struct darwin_info): ... New struct.
2068 (solib_darwin_pspace_data): New variable.
2069 (darwin_pspace_data_cleanup): New function.
2070 (get_darwin_info): Likewise.
2071 (darwin_dyld_version_ok, darwin_load_image_infos)
2072 (darwin_solib_get_all_image_info_addr_at_init)
2073 (darwin_solib_read_all_image_info_addr): Add info argument.
2074 Adjust code.
2075 (darwin_current_sos): Use per pspace structure.
2076 (darwin_solib_create_inferior_hook): Likewise.
2077 (darwin_clear_solib): Likewise.
2078 (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
2079
ae25568b
PA
20802012-05-28 Pedro Alves <palves@redhat.com>
2081
2082 * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
2083 block that uses them. Clear ecss before handling each event.
2084
0c5bf5a9
JK
20852012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2086
2087 * solib-svr4.c (svr4_current_sos): New comment on
2088 svr4_current_sos_via_xfer_libraries fall back.
2089
bfb05775
JK
20902012-05-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2091
2092 * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best. Use
2093 it as a fallback for TYPE_IS_OPAQUE.
2094 * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
2095 symbols for lookup_symbol.
2096
685b1105
JK
20972012-05-24 John Steele Scott <toojays@toojays.net>
2098
2099 PR symtab/13277: Resolving opaque structures in ICC generated binaries.
2100 * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
2101 (producer_is_gxx_lt_4_6): Move the checking and caching to...
2102 (check_producer): ... this new function, which also checks for ICC
2103 and caches the result.
2104 (producer_is_icc): New function.
2105 (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
2106 producer was ICC.
2107
22203bbf
PA
21082012-05-24 Pedro Alves <palves@redhat.com>
2109
2110 PR gdb/7205
2111
2112 * arch-utils.c (default_gdb_signal_to_host): Rename to ...
2113 (default_gdb_signal_to_target): ... this. Add comment.
2114 (default_gdb_signal_from_host): Rename to ...
2115 (default_gdb_signal_from_target): ... this. Add comment.
2116 * arch-utils.h (default_gdb_signal_to_host): Rename to ...
2117 (default_gdb_signal_to_target): ... this.
2118 (default_gdb_signal_from_host): Rename to ...
2119 (default_gdb_signal_from_target): ... this.
2120 * corelow.c (core_open): Adjust to naming change. Replace comment.
2121 * gdbarch.sh (gdb_signal_from_host): Rename to ...
2122 (gdb_signal_from_target): ... this. Adjust to
2123 default_gdb_signal_from_host naming change. Extend comment.
2124 (gdb_signal_to_host): Rename to ...
2125 (gdb_signal_to_target): ... this. Adjust to
2126 default_gdb_signal_to_host naming change.
2127 * gdbarch.h, gdbarch.c: Renegerate.
2128
a493e3e2
PA
21292012-05-24 Pedro Alves <palves@redhat.com>
2130
2131 PR gdb/7205
2132
2133 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
2134
2ea28649
PA
21352012-05-24 Pedro Alves <palves@redhat.com>
2136
2137 PR gdb/7205
2138
2139 Replace target_signal with gdb_signal throughout.
2140
b09846a9
PA
21412012-05-24 Pedro Alves <palves@redhat.com>
2142
2143 PR tui/14159
2144
2145 * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
2146 string, instead of reusing the va_list argument.
2147
e77c107e
TT
21482012-05-24 Tom Tromey <tromey@redhat.com>
2149
2150 * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
2151 Remove.
2152
9fccedf7
DE
21532012-05-23 Doug Evans <dje@google.com>
2154
d50bd42b
DE
2155 * symtab.c (search_symbols): Formatting fixes.
2156 (print_symbol_info): Formatting fixes.
2157
9fccedf7
DE
2158 * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
2159 int64_t change to leb128 API.
2160 (read_encoded_value, decode_frame_entry_1): Ditto.
2161 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
2162 (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
2163 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
2164 (execute_stack_op): Ditto.
2165 * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
2166 (safe_read_uleb128, safe_read_sleb128): Ditto.
2167 * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
2168 (dwarf2_compile_expr_to_ax): Ditto.
2169 (locexpr_describe_location_piece): Ditto.
2170 (disassemble_dwarf_expression): Ditto.
2171 (locexpr_describe_location_1): Ditto.
2172
f3e0e960
SS
21732012-05-23 Stan Shebs <stan@codesourcery.com>
2174 Kwok Cheung Yeung <kcy@codesourcery.com>
2175
2176 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
2177 (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
2178 (mi-cmd-info.o): New rule.
2179 * osdata.h (info_osdata_command): New declaration.
2180 * osdata.c (info_osdata_command): Change to non-static.
2181 * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
2182 * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
2183 * mi/mi-cmd-info.c: New file.
2184
c51fe631
DE
21852012-05-23 Doug Evans <dje@google.com>
2186
71cddcc1
DE
2187 * symtab.c (search_symbols): Pass NULL for file_matcher to
2188 expand_symtabs_matching if there are no files to match.
2189
c51fe631
DE
2190 * gdbtypes.c (lookup_typename): Simplify.
2191
a79378d4
PA
21922012-05-23 Pedro Alves <palves@redhat.com>
2193
2194 * arch-utils.h (default_target_signal_to_host): Delete.
2195 * arch-utils.c (default_target_signal_to_host): Delete.
2196 * gdbarch.sh (target_signal_to_host): Remove.
2197 * gdbarch.h, gdbarch.c: Regenerate.
2198
f664829e
DE
21992012-05-22 Doug Evans <dje@google.com>
2200
2201 * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
2202 "const gdb_byte *".
2203 (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
2204 (execute_cfa_program): Update to match API of leb128 functions.
2205 (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
2206 "const gdb_byte *".
2207 (read_unsigned_leb128, read_signed_leb128): Delete.
2208 (read_initial_length): Change type of buf argument to
2209 "const gdb_byte *".
2210 (read_encoded_value): Update to match API of leb128 functions.
2211 (decode_frame_entry): Change result to "const gdb_byte *", and
2212 similarly for "start" parameter.
2213 (decode_frame_entry_1): Ditto. Use new leb128 reader functions.
2214 (dwarf2_build_frame_info): Change local frame_ptr to
2215 "const gdb_byte *".
2216 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
2217 read_uleb128, read_sleb128. All callers updated.
2218 (safe_skip_leb128): New function.
2219 (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
2220 Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
2221 (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
2222 functions. Call gdb_read_uleb128, gdb_read_sleb128 instead of
2223 read_uleb128, read_sleb128.
2224 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
2225 (execute_stack_op): Update to match API of leb128 functions.
2226 * dwarf2expr.h: #include "leb128.h".
2227 (read_uleb128, read_sleb128): Delete.
2228 (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
2229 (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
2230 * dwarf2loc.c (debug_loc_kind): New enum.
2231 (decode_debug_loc_addresses): New function.
2232 (decode_debug_loc_dwo_addresses): New function.
2233 (dwarf2_find_location_expression): Rewrite.
2234 (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
2235 (locexpr_describe_location_piece): Ditto.
2236 (disassemble_dwarf_expression): Ditto.
2237 (locexpr_describe_location_1): Ditto.
2238 (loclist_describe_location): Rewrite.
2239 * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
2240 * dwarf2read.c (die_reader_specs): New member "buffer_end".
2241 (dwarf2_section_buffer_overflow_complaint): Renamed from
2242 dwarf2_macros_too_long_complaint. All callers updated.
2243 (skip_leb128): Delete.
2244 (init_cu_die_reader): Initialize reader->buffer_end.
2245 (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
2246 (skip_form_bytes): New arg buffer_end. All callers updated.
2247 Replace call to skip_leb128 with gdb_skip_leb128.
2248 (skip_unknown_opcode): New arg mac_end. All callers updated.
2249 (fill_in_loclist_baton): Initialize baton->from_dwo.
2250
837a1b32
MR
22512012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
2252
2253 * mips-linux-nat.c (mips_linux_read_description): Use a more
2254 verbose error message.
2255
d0e64392
MR
22562012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
2257
2258 * NEWS: Add MIPS/Linux DSP support.
2259 * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
2260 (SIGCONTEXT_DSPCTL): New macro.
2261 (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
2262 (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
2263 (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
2264 (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
2265 (N64_SIGCONTEXT_HI3): Likewise.
2266 (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
2267 (N64_SIGCONTEXT_LO3): Likewise.
2268 (N64_SIGCONTEXT_DSPCTL): Likewise.
2269 (N64_SIGCONTEXT_FPCSR): Clarify definition.
2270 (mips_linux_o32_sigframe_init): Handle DSP registers.
2271 (mips_linux_n32n64_sigframe_init): Likewise.
2272
8bea7ed1
PM
22732012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
2274
2275 * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
2276 call to abort.
2277
dab06dbe
PA
22782012-05-22 Pedro Alves <palves@redhat.com>
2279
2280 * target.h (store_waitstatus): Move declaration ...
2281 * inf-child.h (store_waitstatus): ... here.
2282 * target.c: Move inclusion of gdb_wait.h, and ...
2283 (store_waitstatus): ... this ...
2284 * inf-child.c: ... here.
2285 * linux-nat.c: Include inf-child.h.
2286 * rs6000-nat.c: Include inf-child.h.
2287 * spu-linux-nat.c: Include inf-child.h.
2288
43011e52
PM
22892012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
2290
2291 * tracepoint.c (start_tracing): Add missing i18n markup.
2292 (stop_tracing, set_trace_user): Ditto.
2293 (set_trace_notes, set_trace_stop_notes): Ditto.
2294
b1af9e97
TT
22952012-05-21 Tom Tromey <tromey@redhat.com>
2296
2297 PR c++/7173:
2298 * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
2299 types.
2300 * value.h (value_cast_pointers): Update.
2301 * valops.c (value_cast_pointers): Add 'subclass_check' argument.
2302 (value_cast): Update.
2303 (update_search_result): New function.
2304 (do_search_struct_field): New, from search_struct_field. Check
2305 for ambiguous results.
2306 (search_struct_field): Rewrite.
2307 * infcall.c (value_arg_coerce): Update.
2308 * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
2309 value_cast_pointers.
2310 * ada-lang.c (ada_convert_actual): Update.
2311
e9e5e6b3
TT
23122012-05-21 Tom Tromey <tromey@redhat.com>
2313
2314 * macroexp.c (macro_stringify): Terminate the string.
2315
1564a261
JK
23162012-05-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2317
2318 * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
2319 Describe it.
2320 * auto-load.c (auto_load_expand_dir_vars): New function.
2321 (auto_load_safe_path_vec_update): Use it, remove the
2322 substitute_path_component call thanks to it.
2323 (auto_load_objfile_script): Remove the debug_file_directory processing.
2324 Use auto_load_expand_dir_vars, remove the substitute_path_component
2325 call thanks to it.
2326 * configure: Regenerate.
2327 * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
2328 path. Escape $ also for $debugdir.
2329 (--with_auto_load_safe_path): Escape $ also for $debugdir.
2330 * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
2331
a3ec0bb1
DE
23322012-05-20 Doug Evans <dje@google.com>
2333
2334 * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
2335 before use. Check for symtab->includes == NULL before scanning it.
2336
d467df4e
MR
23372012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
2338
2339 * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
2340
4cc0665f
MR
23412012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
2342
2343 * NEWS: Add microMIPS support and "set mips compression",
2344 "show mips compression" commands.
2345 * mips-tdep.h (mips_isa): New enum.
2346 (gdbarch_tdep): Add mips_isa.
2347 (mips_pc_is_mips16): Update prototype.
2348 (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
2349 * mips-tdep.c (mips_compression_mips16): New variable.
2350 (mips_compression_micromips): Likewise.
2351 (mips_compression_strings): Likewise.
2352 (mips_compression_string): Likewise.
2353 (is_mips16_isa, is_micromips_isa): New functions.
2354 (is_mips16_addr): Rename to...
2355 (is_compact_addr): ... this.
2356 (unmake_mips16_addr): Likewise to...
2357 (unmake_compact_addr): ... this.
2358 (make_mips16_addr): Likewise to...
2359 (make_compact_addr): ... this.
2360 (is_mips_addr, is_mips16_addr, is_micromips_addr): New
2361 functions.
2362 (mips_elf_make_msymbol_special): Handle microMIPS code.
2363 (msymbol_is_special): Rename to...
2364 (msymbol_is_mips16): ... this.
2365 (mips_make_symbol_special, mips_pc_is_mips16): Update
2366 accordingly.
2367 (msymbol_is_mips, msymbol_is_micromips): New functions.
2368 (mips16_to_32_reg): Rename to...
2369 (mips_reg3_to_reg): ... this.
2370 (mips_pc_is_mips, mips_pc_is_micromips): New functions.
2371 (mips_pc_isa): Likewise.
2372 (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
2373 code.
2374 (mips_fetch_instruction): Pass return status instead of printing
2375 an error message if requested. Handle microMIPS code. Bail out
2376 on an invalid ISA.
2377 (micromips_op): New macro.
2378 (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
2379 (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
2380 (b6s4_op, b7s3_reg): Likewise.
2381 (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
2382 (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
2383 (mips_insn_size): New function.
2384 (mips32_next_pc): Update mips_fetch_instruction call.
2385 (micromips_relative_offset7): New function.
2386 (micromips_relative_offset10): Likewise.
2387 (micromips_relative_offset16): Likewise.
2388 (micromips_pc_insn_size): Likewise.
2389 (micromips_bc1_pc): Likewise.
2390 (micromips_next_pc): Likewise.
2391 (unpack_mips16): Update mips_fetch_instruction call.
2392 (extended_mips16_next_pc): Update according to change to
2393 mips16_to_32_reg.
2394 (mips_next_pc): Update mips_pc_is_mips16 call. Handle microMIPS
2395 code.
2396 (mips16_scan_prologue): Update mips_fetch_instruction call.
2397 Update according to change to mips16_to_32_reg.
2398 (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
2399 (mips_insn16_frame_base_sniffer): Likewise.
2400 (micromips_decode_imm9): New function.
2401 (micromips_scan_prologue): Likewise.
2402 (mips_micro_frame_cache): Likewise.
2403 (mips_micro_frame_this_id): Likewise.
2404 (mips_micro_frame_prev_register): Likewise.
2405 (mips_micro_frame_sniffer): Likewise.
2406 (mips_micro_frame_unwind): New variable.
2407 (mips_micro_frame_base_address): New function.
2408 (mips_micro_frame_base): New variable.
2409 (mips_micro_frame_base_sniffer): New function.
2410 (mips32_scan_prologue): Update mips_fetch_instruction call.
2411 (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
2412 rather than for MIPS16.
2413 (mips_insn32_frame_base_sniffer): Likewise.
2414 (mips_addr_bits_remove): Handle microMIPS code.
2415 (deal_with_atomic_sequence): Rename to...
2416 (mips_deal_with_atomic_sequence): ... this. Update the type
2417 of the variable used to hold an instruction. Remove the ISA bit
2418 check. Update mips_fetch_instruction call.
2419 (micromips_deal_with_atomic_sequence): New function.
2420 (deal_with_atomic_sequence): Likewise.
2421 (mips_about_to_return): Handle microMIPS code. Update
2422 mips_fetch_instruction call.
2423 (heuristic_proc_start): Check for the standard MIPS ISA rather
2424 than for MIPS16. Update mips_pc_is_mips16 and
2425 mips_fetch_instruction calls. Handle microMIPS code.
2426 (mips_push_dummy_code): Handle microMIPS code.
2427 (mips_eabi_push_dummy_call): Likewise.
2428 (mips_o32_return_value): Update mips_pc_is_mips16 call.
2429 (mips_o64_push_dummy_call): Handle microMIPS code.
2430 (mips_o64_return_value): Update mips_pc_is_mips16 call.
2431 (is_delayed): Remove function.
2432 (mips_single_step_through_delay): Replace the call to is_delayed
2433 with mips32_instruction_has_delay_slot. Correct MIPS16 handling.
2434 Handle microMIPS code.
2435 (mips_skip_prologue): Update mips_pc_is_mips16 call. Handle
2436 microMIPS code.
2437 (mips32_in_function_epilogue_p): Update mips_fetch_instruction
2438 call.
2439 (micromips_in_function_epilogue_p): New function.
2440 (mips16_in_function_epilogue_p): Update mips_fetch_instruction
2441 call.
2442 (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
2443 Handle microMIPS.
2444 (gdb_print_insn_mips): Likewise.
2445 (mips_breakpoint_from_pc): Likewise.
2446 (mips_remote_breakpoint_from_pc): New function.
2447 (mips32_instruction_has_delay_slot): Simplify making use of the
2448 updated mips_fetch_instruction interface.
2449 (micromips_instruction_has_delay_slot): New function.
2450 (mips16_instruction_has_delay_slot): Simplify making use of the
2451 updated mips_fetch_instruction interface.
2452 (mips_adjust_breakpoint_address): Check for the standard MIPS
2453 ISA rather than for MIPS16 ISA. Update for unmake_compact_addr
2454 calls. Handle microMIPS code.
2455 (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
2456 (mips_skip_trampoline_code): Handle microMIPS code.
2457 (global_mips_compression): New function.
2458 (mips_gdbarch_init): Handle the compressed ISA setting from ELF
2459 file flags. Register the microMIPS remote breakpoint handler
2460 and heuristic frame unwinder.
2461 (show_mips_compression): New function.
2462 (_initialize_mips_tdep): Add the "set mips compression" and
2463 "show mips compression" commands.
2464
22e048c9
SDJ
24652012-05-18 Sergio Durigan Junior <sergiodj@redhat.com>
2466
2467 * ada-lang.c:
2468 * ada-tasks.c:
2469 * ada-varobj.c:
2470 * amd64-darwin-tdep.c:
2471 * arm-symbian-tdep.c:
2472 * arm-tdep.c:
2473 * avr-tdep.c:
2474 * ax-gdb.c:
2475 * bfin-linux-tdep.c:
2476 * breakpoint.c:
2477 * c-valprint.c:
2478 * cli/cli-cmds.c:
2479 * coffread.c:
2480 * cp-support.c:
2481 * cris-tdep.c:
2482 * dwarf2-frame-tailcall.c:
2483 * dwarf2-frame.c:
2484 * dwarf2expr.c:
2485 * dwarf2loc.c:
2486 * dwarf2read.c:
2487 * elfread.c:
2488 * eval.c:
2489 * expprint.c:
2490 * f-valprint.c:
2491 * frv-tdep.c:
2492 * h8300-tdep.c:
2493 * hppa-hpux-tdep.c:
2494 * hppa-tdep.c:
2495 * hppanbsd-tdep.c:
2496 * i386-nto-tdep.c:
2497 * i386-tdep.c:
2498 * i387-tdep.c:
2499 * ia64-tdep.c:
2500 * jit.c:
2501 * linespec.c:
2502 * linux-tdep.c:
2503 * lm32-tdep.c:
2504 * m2-valprint.c:
2505 * m32c-tdep.c:
2506 * m32r-rom.c:
2507 * m32r-tdep.c:
2508 * m68k-tdep.c:
2509 * m68klinux-tdep.c:
2510 * mi/mi-main.c:
2511 * microblaze-tdep.c:
2512 * mips-linux-tdep.c:
2513 * mips-tdep.c:
2514 * mn10300-tdep.c:
2515 * p-valprint.c:
2516 * parse.c:
2517 * ppc-linux-tdep.c:
2518 * ppc-sysv-tdep.c:
2519 * printcmd.c:
2520 * python/py-finishbreakpoint.c:
2521 * python/py-inferior.c:
2522 * python/py-infthread.c:
2523 * python/py-type.c:
2524 * python/python.c:
2525 * remote-fileio.c:
2526 * remote-m32r-sdi.c:
2527 * remote-mips.c:
2528 * reverse.c:
2529 * rl78-tdep.c:
2530 * rs6000-aix-tdep.c:
2531 * rs6000-tdep.c:
2532 * s390-tdep.c:
2533 * score-tdep.c:
2534 * sh64-tdep.c:
2535 * skip.c:
2536 * solib-darwin.c:
2537 * solib-dsbt.c:
2538 * solib-frv.c:
2539 * sparc-tdep.c:
2540 * spu-multiarch.c:
2541 * spu-tdep.c:
2542 * stack.c:
2543 * symfile.c:
2544 * symtab.c:
2545 * tic6x-tdep.c:
2546 * tracepoint.c:
2547 * v850-tdep.c:
2548 * valarith.c:
2549 * valprint.c:
2550 * value.c:
2551 * xcoffread.c:
2552 * xtensa-tdep.c:
2553 * ada-lang.c:
2554 * ada-tasks.c:
2555 * ada-varobj.c:
2556 * amd64-darwin-tdep.c:
2557 * arm-symbian-tdep.c:
2558 * arm-tdep.c: Delete unused variables.
2559
aff139ff
JK
25602012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
2561
2562 Rename $ddir to $datadir.
2563 * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
2564 * auto-load.c (auto_load_safe_path_vec_update)
2565 (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
2566 * configure: Regenerate.
2567 * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
2568 Likewise. Remove the 'use $ddir' help string.
2569
f7bfa992
JK
25702012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
2571
2572 * auto-load.c (show_auto_load_safe_path): Accept any combination of
2573 DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
2574
9cb709b6
TT
25752012-05-18 Tom Tromey <tromey@redhat.com>
2576
2577 PR exp/13907:
2578 * valprint.h (struct value_print_options) <symbol_print>: New
2579 field.
2580 * valprint.c (user_print_options): Add default for symbol_print.
2581 (show_symbol_print): New function.
2582 (generic_val_print): Respect symbol_print.
2583 (_initialize_valprint): Add "print symbol" setting.
2584 * f-valprint.c (f_val_print): Respect symbol_print.
2585 * c-valprint.c (c_val_print): Respect symbol_print.
2586 * NEWS: Update.
2587 * printcmd.c (print_address_symbolic): Return int. Ignore some
2588 zero-size symbols.
2589 (print_address_demangle): Return int.
2590 * defs.h: (print_address_symbolic): Return int.
2591 * value.h (print_address_demangle): Return int.
2592
b012acdd
TT
25932012-05-18 Tom Tromey <tromey@redhat.com>
2594
2595 * valprint.c (val_print_string): Don't print leading space.
2596 * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
2597 print space before string or vtbl.
2598 * m2-valprint.c (print_unpacked_pointer): Optionally print space
2599 before string.
2600 * jv-valprint.c (java_value_print): Print space before string.
2601 * go-valprint.c (print_go_string): Print space before string.
2602 * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
2603 space before string.
2604 * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
2605 space before string or vtbl.
2606 * auxv.c (fprint_target_auxv): Print space after address.
2607
1d51a733
TT
26082012-05-18 Tom Tromey <tromey@redhat.com>
2609
2610 * printcmd.c (print_address_demangle): Remove special case for 0.
2611
edf0c1b7
TT
26122012-05-18 Tom Tromey <tromey@redhat.com>
2613
2614 * printcmd.c (print_address_demangle): Add 'opts' argument.
2615 * p-valprint.c (pascal_val_print): Update.
2616 * jv-valprint.c (java_val_print): Update.
2617 * value.h: Update.
2618 * valprint.c (generic_val_print): Update.
2619 (print_function_pointer_address): Add 'options' argument. Remove
2620 'addressprint' argument. Update.
2621 * m2-valprint.c (print_unpacked_pointer): Update.
2622 * gnu-v3-abi.c (print_one_vtable): Update.
2623 (gnuv3_print_method_ptr): Update.
2624 * f-valprint.c (f_val_print): Update.
2625 * cp-valprint.c (cp_print_value_fields): Update.
2626 * valprint.h (print_function_pointer_address): Update.
2627 * c-valprint.c (c_val_print): Update.
2628
9703b513
TT
26292012-05-18 Tom Tromey <tromey@redhat.com>
2630
2631 * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
2632 directly corresponding to the found psymtab.
2633 * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
2634 (dw2_find_pc_sect_symtab): Use it.
2635 * block.h (blockvector_contains_pc): Declare.
2636 * block.c (find_block_in_blockvector): New function.
2637 (blockvector_for_pc_sect): Use it.
2638 (blockvector_contains_pc): New function.
2639
5a439849
MR
26402012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
2641
2642 * mips-tdep.h (mips_write_pc): New prototype.
2643 * mips-tdep.c (mips_write_pc): Make external, add description.
2644 * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
2645 add description.
2646
8376de04
MR
26472012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
2648
2649 * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
2650 mips_regnum->pc.
2651 (mips_unwind_pc, mips_write_pc): Likewise.
2652 (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
2653 gdbarch_read_pc.
2654
d3581e61
JB
26552012-05-17 Joel Brobecker <brobecker@adacore.com>
2656
2657 * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
2658 proc_warn, proc_error, proc_get_status, proc_flags,
2659 proc_why, proc_what, proc_nsysarg, proc_sysargs,
2660 proc_set_run_on_last_close, proc_unset_run_on_last_close,
2661 proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
2662 proc_stop_process, proc_wait_for_stop, proc_run_process,
2663 proc_set_traced_signals, proc_set_traced_faults,
2664 proc_set_traced_sysentry, proc_set_traced_sysexit,
2665 proc_set_held_signals, proc_get_held_signals,
2666 proc_get_traced_signals, proc_get_traced_faults,
2667 proc_get_traced_sysentry, proc_get_traced_sysexit,
2668 proc_clear_current_fault, proc_set_current_signal,
2669 proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
2670 proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
2671 proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
2672 proc_get_current_thread, proc_get_current_thread,
2673 proc_get_current_thread, proc_update_threads,
2674 proc_update_threads, proc_update_threads, proc_update_threads,
2675 proc_iterate_over_threads, procfs_find_new_threads,
2676 procfs_pid_to_str): Make static. Remove advance declaration.
2677 (proc_cursig): Make static. Conditionalized defintion on
2678 PROCFS_DONT_PIOCSSIG_CURSIG being defined.
2679 (proc_syscall, proc_set_kill_on_last_close,
2680 proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
2681 proc_get_pending_signals, proc_get_signal_actions,
2682 proc_trace_signal, proc_ignore_signal): Delete.
2683
81b9b86e
SDJ
26842012-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
2685
2686 * coffread.c (cs_section_address): Passing proper argument for
2687 `bfd_get_section_vma'.
2688 * dwarf2read.c (dwarf2_locate_sections): Likewise, for
2689 `bfd_get_section_flags'.
2690 * remote.c (remote_trace_set_readonly_regions): Likewise, for
2691 `bfd_get_section_vma'.
2692
abc9d0dc
TT
26932012-05-16 Tom Tromey <tromey@redhat.com>
2694
2695 PR macros/13205:
2696 * macrotab.h: (macro_define_special): Declare.
2697 (enum macro_special_kind): New.
2698 (struct macro_definition) <argc, replacement>: Update comments.
2699 * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
2700 (macro_define_object_internal): New function.
2701 (macro_define_object): Use it.
2702 (macro_define_special): New function.
2703 (fixup_definition): New function.
2704 (macro_lookup_definition, foreach_macro_in_scope)
2705 (foreach_macro): Use fixup_definition.
2706 * macroexp.h (macro_stringify): Declare.
2707 * macroexp.c (free_buffer_return_text): New function.
2708 (stringify): Constify "arg".
2709 (macro_stringify): New function.
2710 * dwarf2read.c (macro_start_file): Call macro_define_special.
2711
6a3a010b
MR
27122012-05-16 Maciej W. Rozycki <macro@codesourcery.com>
2713 Maciej W. Rozycki <macro@mips.com>
2714
2715 * breakpoint.h (bp_location): Add related_address member.
2716 * inferior.h (get_return_value): Take a pointer to struct value
2717 instead of struct type for the function requested.
2718 * value.h (using_struct_return): Likewise.
2719 * gdbarch.sh (return_value): Take a pointer to struct value
2720 instead of struct type for the function requested.
2721 * breakpoint.c (set_breakpoint_location_function): Initialize
2722 related_address for bp_gnu_ifunc_resolver breakpoints.
2723 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
2724 requested function's address to gdbarch_return_value.
2725 * eval.c (evaluate_subexp_standard): Pass the requested
2726 function's address to using_struct_return.
2727 * infcall.c (call_function_by_hand): Pass the requested
2728 function's address to using_struct_return and
2729 gdbarch_return_value.
2730 * infcmd.c (get_return_value): Take a pointer to struct value
2731 instead of struct type for the function requested.
2732 (print_return_value): Update accordingly.
2733 (finish_command_continuation): Likewise.
2734 * stack.c (return_command): Pass the requested function's
2735 address to using_struct_return and gdbarch_return_value.
2736 * value.c (using_struct_return): Take a pointer to struct value
2737 instead of struct type for the function requested. Pass the
2738 requested function's address to gdbarch_return_value.
2739 * python/py-finishbreakpoint.c (finish_breakpoint_object):
2740 New function_value member, replacing function_type.
2741 (bpfinishpy_dealloc): Update accordingly.
2742 (bpfinishpy_pre_stop_hook): Likewise.
2743 (bpfinishpy_init): Likewise. Record the requested function's
2744 address.
2745 * mips-tdep.c (mips_fval_reg): New enum.
2746 (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
2747 words put in GP registers.
2748 (mips_o64_push_dummy_call): Update a comment.
2749 (mips_o32_return_value): Take a pointer to struct value instead
2750 of struct type for the function requested and use it to check if
2751 using the MIPS16 calling convention. Return the designated
2752 general purpose registers for floating-point values returned in
2753 MIPS16 mode.
2754 (mips_o64_return_value): Likewise.
2755 * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
2756 (ppc_sysv_abi_broken_return_value): Likewise.
2757 (ppc64_sysv_abi_return_value): Likewise.
2758 * alpha-tdep.c (alpha_return_value): Take a pointer to struct
2759 value instead of struct type for the function requested.
2760 * amd64-tdep.c (amd64_return_value): Likewise.
2761 * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
2762 * arm-tdep.c (arm_return_value): Likewise.
2763 * avr-tdep.c (avr_return_value): Likewise.
2764 * bfin-tdep.c (bfin_return_value): Likewise.
2765 * cris-tdep.c (cris_return_value): Likewise.
2766 * frv-tdep.c (frv_return_value): Likewise.
2767 * h8300-tdep.c (h8300_return_value): Likewise.
2768 (h8300h_return_value): Likewise.
2769 * hppa-tdep.c (hppa32_return_value): Likewise.
2770 (hppa64_return_value): Likewise.
2771 * i386-tdep.c (i386_return_value): Likewise.
2772 * ia64-tdep.c (ia64_return_value): Likewise.
2773 * iq2000-tdep.c (iq2000_return_value): Likewise.
2774 * lm32-tdep.c (lm32_return_value): Likewise.
2775 * m32c-tdep.c (m32c_return_value): Likewise.
2776 * m32r-tdep.c (m32r_return_value): Likewise.
2777 * m68hc11-tdep.c (m68hc11_return_value): Likewise.
2778 * m68k-tdep.c (m68k_return_value): Likewise.
2779 (m68k_svr4_return_value): Likewise.
2780 * m88k-tdep.c (m88k_return_value): Likewise.
2781 * mep-tdep.c (mep_return_value): Likewise.
2782 * microblaze-tdep.c (microblaze_return_value): Likewise.
2783 * mn10300-tdep.c (mn10300_return_value): Likewise.
2784 * moxie-tdep.c (moxie_return_value): Likewise.
2785 * mt-tdep.c (mt_return_value): Likewise.
2786 * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
2787 * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
2788 (ppc_sysv_abi_broken_return_value): Likewise.
2789 (ppc64_sysv_abi_return_value): Likewise.
2790 * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
2791 * rl78-tdep.c (rl78_return_value): Likewise.
2792 * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
2793 * rx-tdep.c (rx_return_value): Likewise.
2794 * s390-tdep.c (s390_return_value): Likewise.
2795 * score-tdep.c (score_return_value): Likewise.
2796 * sh-tdep.c (sh_return_value_nofpu): Likewise.
2797 (sh_return_value_fpu): Likewise.
2798 * sh64-tdep.c (sh64_return_value): Likewise.
2799 * sparc-tdep.c (sparc32_return_value): Likewise.
2800 * sparc64-tdep.c (sparc64_return_value): Likewise.
2801 * spu-tdep.c (spu_return_value): Likewise.
2802 * tic6x-tdep.c (tic6x_return_value): Likewise.
2803 * v850-tdep.c (v850_return_value): Likewise.
2804 * vax-tdep.c (vax_return_value): Likewise.
2805 * xstormy16-tdep.c (xstormy16_return_value): Likewise.
2806 * xtensa-tdep.c (xtensa_return_value): Likewise.
2807 * gdbarch.c: Regenerate.
2808 * gdbarch.h: Regenerate.
2809
29ca12b3
TT
28102012-05-15 Tom Tromey <tromey@redhat.com>
2811
2812 * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
2813
588ae58c
JB
28142012-05-15 Joel Brobecker <brobecker@adacore.com>
2815
2816 * breakpoint.c (init_breakpoint_sal): Add quotes around part
2817 of command in two error message.
2818
855a6e68
JB
28192012-05-15 Joel Brobecker <brobecker@adacore.com>
2820
2821 * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
2822
d634f2de
JB
28232012-05-15 Joel Brobecker <brobecker@adacore.com>
2824
2825 * breakpoint.c (find_condition_and_thread): Minor reformatting.
2826
9cc815f5
JK
28272012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2828
2829 * NEWS (show auto-load scripts-directory): Add forgotten command.
2830
6a609e58
JK
28312012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2832
2833 * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
2834 parameters.
2835
ac1438b5
L
28362012-05-14 H.J. Lu <hongjiu.lu@intel.com>
2837
2838 * amd64-tdep.c: Include features/i386/x32.c and
2839 features/i386/x32-avx.c.
2840 (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
2841 initialize_tdesc_x32_avx.
2842
e7e0cddf
SS
28432012-05-14 Stan Shebs <stan@codesourcery.com>
2844
2845 Add dynamic printf.
2846 * breakpoint.h (enum bptype): New type bp_dprintf.
2847 (struct breakpoint): New field extra_string.
2848 (struct breakpoint_ops): Add arg to create_breakpoints_sal.
2849 (create_breakpoint): Add extra_string arg.
2850 * breakpoint.c (dprintf_breakpoint_ops): New.
2851 (is_breakpoint): Add bp_dprintf.
2852 (bpstat_what): Add dprintf case.
2853 (bptype_string): Ditto.
2854 (print_one_breakpoint_location): Ditto.
2855 (init_bp_location): Ditto.
2856 (bkpt_print_mention): Ditto.
2857 (dprintf_style_enums): New array.
2858 (dprintf_style): New global.
2859 (dprintf_function): New global.
2860 (dprintf_channel): New global.
2861 (update_dprintf_command_list): New function.
2862 (update_dprintf_commands): New function.
2863 (init_breakpoint_sal): Add extra_string argument, handle it.
2864 (create_breakpoint_sal): Add extra_string argument.
2865 (create_breakpoints_sal): Add extra_string argument, update callers.
2866 (find_condition_and_thread): Add extra argument.
2867 (create_breakpoint): Add extra_string argument, record it.
2868 (dprintf_command): New function.
2869 (break_command_1): Add arg to create_breakpoint call.
2870 (handle_gnu_v3_exceptions): Ditto.
2871 (trace_command): Ditto.
2872 (ftrace_command): Ditto.
2873 (strace_command): Ditto.
2874 (bkpt_print_mention): Add dprintf case.
2875 (create_breakpoint_sal_default): Add extra_string argument.
2876 (_initialize_breakpoint): Add new commands.
2877 * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
2878 * python/py-breakpoint.c (bppy_init): Ditto.
2879 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
2880
8ae38c14
MR
28812012-05-14 Maciej W. Rozycki <macro@codesourcery.com>
2882
2883 * mips-tdep.c (mips_push_dummy_code): Correct description typo.
2884
9f676e66
SCR
28852012-05-14 Siva Chandra Reddy <sivachandra@google.com>
2886
2887 * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
2888 unsigned long long.
2889
7efc75aa
SCR
28902012-05-13 Siva Chandra Reddy <sivachandra@google.com>
2891
2892 Add a new function gdb.find_pc_line to the Python API.
2893 * NEWS (Python Scripting): Add entry about the new function.
2894 * python/python.c (gdbpy_find_pc_line): New function which
2895 implements gdb.find_pc_line.
2896 (GdbMethods): Add entry for the new function.
2897
70af3797
PA
28982012-05-12 Pedro Alves <palves@redhat.com>
2899
2900 * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
2901 initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
2902
06da564e
EZ
29032012-05-12 Eli Zaretskii <eliz@gnu.org>
2904
2905 * inferior.c: Include completer.h
2906 (initialize_inferiors): Set completer of add-inferior to
2907 filename_completer.
2908
0288cee2
L
29092012-05-11 H.J. Lu <hongjiu.lu@intel.com>
2910
2911 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
2912 gdbarch_ptr_bit for x32 core dump.
2913
f6537a2c
L
29142012-05-11 H.J. Lu <hongjiu.lu@intel.com>
2915
2916 * amd64-linux-tdep.c: Include features/i386/x32-linux.c
2917 and features/i386/x32-avx-linux.c.
2918
85d4a676
SS
29192012-05-11 Stan Shebs <stan@codesourcery.com>
2920 Kwok Cheung Yeung <kcy@codesourcery.com>
2921
2922 * NEWS: Describe new info os commands.
2923 * common/linux-osdata.c (PID_T, TIME_T): Define.
2924 (MAX_PID_T_STRLEN): New.
2925 (linux_common_core_of_thread): Add comment. Change to use PID_T and
2926 MAX_PID_T_STRLEN.
2927 (command_from_pid): Add comment. Change to use PID_T.
2928 (commandline_from_pid): Change to use PID_T.
2929 (user_from_pid): Add comment.
2930 (get_process_owner): Add comment. Change to use PID_T and
2931 MAX_PID_T_STRLEN.
2932 (get_number_of_cpu_cores): Add comment.
2933 (get_cores_used_by_process): Add comment. Change to use PID_T and
2934 MAX_PID_T_STRLEN.
2935 (linux_xfer_osdata_processes): Change to use PID_T and
2936 MAX_PID_T_STRLEN.
2937 (compare_processes): New function.
2938 (linux_xfer_osdata_processgroups): New function.
2939 (linux_xfer_osdata_threads): Change to use PID_T.
2940 (linux_xfer_osdata_fds): New function.
2941 (format_socket_state, print_sockets): New functions.
2942 (union socket_addr): New union.
2943 (linux_xfer_osdata_isockets): New function.
2944 (time_from_time_t, group_from_gid): New functions.
2945 (linux_xfer_osdata_shm): New function.
2946 (linux_xfer_osdata_sem): New function.
2947 (linux_xfer_osdata_msg): New function.
2948 (linux_xfer_osdata_modules): New function.
2949 (osdata_table): Add new entries.
2950 * common/buffer.c (buffer_xml_printf): Add support for long and
2951 long long format specifiers.
2952
f24afd6d
L
29532012-05-11 H.J. Lu <hongjiu.lu@intel.com>
2954
2955 * amd64-linux-tdep.h (tdesc_x32_linux): New.
2956 (tdesc_x32_avx_linux): Likewise.
2957
7349ff92
JK
29582012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2959
2960 Implement multi-component --with-auto-load-dir.
2961 * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
2962 entries.
2963 (--with-auto-load-safe-path): Update the default value description.
2964 * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
2965 New.
2966 (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output. Remove
2967 GDB_DATADIR NULL check. Replace GDB_DATADIR/auto-load by
2968 AUTO_LOAD_DIR. Support $ddir and multiple components in it.
2969 (_initialize_auto_load): Initialize also auto_load_dir. Install new
2970 "set auto-load scripts-directory".
2971 * config.in: Regenerate.
2972 * configure: Regenerate.
2973 * configure.ac (--with-auto-load-dir): New configure option.
2974 (--auto-load-safe-path): Change the default to --with-auto-load-dir.
2975
6dea1fbd
JK
29762012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2977
2978 Provide $ddir substitution for --with-auto-load-safe-path.
2979 * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
2980 entries.
2981 * auto-load.c: Include observer.h.
2982 (auto_load_safe_path_vec_update): Call substitute_path_component for
2983 each component. New variable ddir_subst.
2984 (auto_load_gdb_datadir_changed): New function.
2985 (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
2986 AUTO_LOAD_SAFE_PATH. New comment.
2987 (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
2988 AUTO_LOAD_SAFE_PATH. Install auto_load_gdb_datadir_changed.
2989 * config.in: Regenerate.
2990 * configure: Regenerate.
2991 * configure.ac (--auto-load-safe-path): Rename
2992 DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH. Default to
2993 GDB_DATADIR/auto-load.
2994 * defs.h (substitute_path_component): New declaration.
2995 * top.c: Include observer.h.
2996 (set_gdb_datadir): New function.
2997 (init_main): Install it for "set data-directory".
2998 * utils.c (substitute_path_component): New function.
2999
b09aca3a
JK
30002012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
3001
3002 Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
3003 * auto-load.c (auto_load_objfile_script): Remove check for NULL
3004 DEBUG_FILE_DIRECTORY. Handle multiple components of
3005 DEBUG_FILE_DIRECTORY.
3006
95554aad
TT
30072012-05-10 Tom Tromey <tromey@redhat.com>
3008
3009 * dwarf2read.c (recursively_write_psymbols): New function.
3010 (write_psymtabs_to_index): Use it.
3011
3012 * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
3013 field.
3014 (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
3015 (load_partial_comp_unit): Update.
3016 (queue_comp_unit): Add argument 'pretend_language'.
3017 (process_queue): Update.
3018 (psymtab_to_symtab_1): Skip dependencies that have a user.
3019 (load_partial_comp_unit_reader): Give meaning to the 'data'
3020 argument.
3021 (load_full_comp_unit): Add 'pretend_language' argument.
3022 (process_full_comp_unit): Add 'pretend_language' argument. Set
3023 language on CU.
3024 (process_imported_unit_die, read_file_scope, read_type_unit_scope):
3025 Update.
3026 (maybe_queue_comp_unit): Add 'pretend_language' argument.
3027 (follow_die_offset, follow_die_sig, read_signatured_type_reader):
3028 Update.
3029 (prepare_one_comp_unit): Add 'pretend_language' argument.
3030
3031 * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
3032 (struct dwarf2_per_objfile) <just_read_cus>: New field.
3033 (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
3034 (dw2_do_instantiate_symtab): Check whether symtab was read in
3035 before queueing.
3036 (dw2_instantiate_symtab): Add assertion. Call
3037 process_cu_includes.
3038 (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
3039 (partial_symtab_p): New typedef.
3040 (set_partial_user): New function.
3041 (dwarf2_build_psymtabs_hard): Use set_partial_user.
3042 (scan_partial_symbols): Add imported CU to imported_symtabs.
3043 (dwarf2_psymtab_to_symtab): Call process_cu_includes.
3044 (psymtab_to_symtab_1): Do nothing if psymtab is readin.
3045 (get_symtab, recursively_compute_inclusions)
3046 (compute_symtab_includes, process_cu_includes)
3047 (process_imported_unit_die): New functions.
3048 (process_die) <DW_TAG_imported_unit>: New case.
3049 (dwarf2_per_objfile_free): Free 'imported_symtabs'.
3050
3051 * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
3052 comment.
3053 (struct partial_die_info) <locdesc>: Remove.
3054 <d>: New field.
3055 (process_psymtab_comp_unit): Add 'read_partial' argument.
3056 Update.
3057 (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
3058 (scan_partial_symbols): Handle DW_TAG_imported_unit.
3059 (add_partial_symbol): Update.
3060 (process_die): Handle DW_TAG_partial_unit.
3061 (read_file_scope): Update comment.
3062 (load_partial_dies): Handle DW_TAG_imported_unit.
3063 (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
3064 (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
3065
e871fbb9
TT
30662012-05-10 Tom Tromey <tromey@redhat.com>
3067
3068 * cc-with-dwz.sh: New file.
3069
b5b04b5b
TT
30702012-05-10 Tom Tromey <tromey@redhat.com>
3071
3072 * symtab.h (struct symtab) <includes, user>: New fields.
3073 * block.h (struct block_iterator) <d, idx, which>: New fields.
3074 * block.c (initialize_block_iterator, find_iterator_symtab)
3075 (block_iterator_step, block_iter_name_step)
3076 (block_iter_match_step): New functions.
3077 (block_iterator_first, block_iterator_next)
3078 (block_iter_name_first, block_iter_name_next)
3079 (block_iter_match_first, block_iter_match_next): Rewrite.
3080 (get_block_symtab): New function.
3081
84a146c9
TT
30822012-05-10 Tom Tromey <tromey@redhat.com>
3083
3084 * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
3085 set_block_symtab.
3086 * jit.c (finalize_symtab): Use allocate_global_block,
3087 set_block_symtab.
3088 * buildsym.c (finish_block_internal): New function, from old
3089 finish_block.
3090 (finish_block): Rewrite.
3091 (end_symtab): Use finish_block_internal, set_block_symtab.
3092 * block.h (struct global_block): New.
3093 (allocate_global_block, set_block_symtab): Declare.
3094 * block.c (allocate_global_block, set_block_symtab): New
3095 functions.
3096
9439a077
TT
30972012-05-10 Tom Tromey <tromey@redhat.com>
3098
3099 * psymtab.c (partial_map_expand_apply): Add assertion.
3100 (partial_map_symtabs_matching_filename): Skip included psymtabs.
3101 (psymtab_to_symtab): Find unshared psymtab.
3102 (dump_psymtab): Print including psymtabs.
3103 (recursively_search_psymtabs): New function.
3104 (expand_symtabs_matching_via_partial): Use it.
3105 * psympriv.h (struct partial_symtab) <user, searched_flag>: New
3106 fields.
3107 (enum psymtab_search_status): New.
3108
8157b174
TT
31092012-05-10 Tom Tromey <tromey@redhat.com>
3110
3111 * tracepoint.c (scope_info): Update.
3112 * symtab.c (lookup_block_symbol, iterate_over_symbols)
3113 (find_pc_sect_symtab, search_symbols)
3114 (default_make_symbol_completion_list_break_on)
3115 (make_file_symbol_completion_list): Update.
3116 * symmisc.c (dump_symtab_1): Update.
3117 * stack.c (print_frame_args, iterate_over_block_locals)
3118 (print_frame_labels, iterate_over_block_arg_vars): Update.
3119 * python/py-block.c (block_object) <dict>: Remove.
3120 <block>: New field.
3121 <iter>: Change type.
3122 (blpy_iter): Update.
3123 (blpy_block_syms_iternext): Update.
3124 * psymtab.c (map_block): Use block iterators.
3125 * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
3126 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
3127 * mdebugread.c (parse_symbol, mylookup_symbol): Update.
3128 * infrun.c (check_exception_resume): Update.
3129 * cp-support.c (make_symbol_overload_list_block): Update.
3130 * coffread.c (patch_opaque_types): Update.
3131 * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
3132 * block.h (struct block_iterator): New.
3133 (block_iterator_first, block_iterator_next, block_iter_name_first)
3134 (block_iter_name_next, block_iter_match_first)
3135 (block_iter_match_next): Declare.
3136 (ALL_BLOCK_SYMBOLS): Redefine.
3137 * block.c (block_iterator_first, block_iterator_next)
3138 (block_iter_name_first, block_iter_name_next)
3139 (block_iter_match_first, block_iter_match_next): New functions.
3140 * ada-lang.c (ada_add_block_symbols)
3141 (ada_make_symbol_completion_list): Use block iterator.
3142
a2ca7a52
TT
31432012-05-10 Tom Tromey <tromey@redhat.com>
3144
3145 * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
3146 (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
3147 (lookup_partial_symbol, find_last_source_symtab_from_partial)
3148 (read_psymtabs_with_filename, map_matching_symbols_psymtab)
3149 (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
3150 Update.
3151
64ea88dc
JB
31522012-05-10 Joel Brobecker <brobecker@adacore.com>
3153
3154 * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
3155 print-file-var-lib2.c, print-file-var-main.c and
3156 print-file-var.exp (located in gdb/testsuite/gdb.base).
3157
99a547d6
JB
31582012-05-10 Joel Brobecker <brobecker@adacore.com>
3159
3160 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
3161 try locating the symbol in the symbol's own objfile first, before
3162 extending the search to all objfiles.
3163 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
3164 out of lookup_symbol_aux_symtabs.
3165 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
3166 Replace extracted-out code by call to lookup_symbol_aux_objfile.
3167 Do not search EXCLUDE_OBJFILE.
3168 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
3169 (lookup_symbol_global): Search for matches in the block's objfile
3170 first, before searching all other objfiles.
3171
0ece64fd
TG
31722012-05-10 Tristan Gingold <gingold@adacore.com>
3173
3174 * printcmd.c (set_command): Add pre/post inc/dec.
3175
3d16a105
FCE
31762012-05-09 Frank Ch. Eigler <fche@redhat.com>
3177
3178 * gdb.1: Document -ex option.
3179
2efbc0f7
JB
31802012-05-09 Joel Brobecker <brobecker@adacore.com>
3181
3182 * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
3183 * inferior.h (AT_SYMBOL): Delete.
3184
2c76a0c7
JB
31852012-05-09 Joel Brobecker <brobecker@adacore.com>
3186
3187 * mips-tdep.c (mips_push_dummy_code): New function.
3188 (mips_gdbarch_init): Set the gdbarch call_dummy_location to
3189 ON_STACK and install mips_push_dummy_code as our gdbarch
3190 push_dummy_code routine.
3191
9401a810
PA
31922012-05-09 Pedro Alves <palves@redhat.com>
3193
3194 * target.c (set_maintenance_target_async_permitted): Rename to ...
3195 (set_target_async_command): ... this.
3196 (show_maintenance_target_async_permitted): Rename to ...
3197 (show_target_async_command): ... this.
3198 (initialize_targets): Adjust.
3199
3929b321
DE
32002012-05-08 Doug Evans <dje@google.com>
3201
3202 * go-exp.y (classify_name): Add missing assignment of fields of
3203 yylval.ssym.
3204
c41535fd
EZ
32052012-05-08 Eli Zaretskii <eliz@gnu.org>
3206
3207 Display the ">" prompt in interactive mode while reading canned
3208 commands, even when the current interpreter is MI.
3209
3210 * interps.c (interp_set_temp): New function.
3211
3212 * interps.h (interp_set_temp): Add prototype.
3213
3214 * cli/cli-script.c (restore_interp): New cleanup function.
3215 (read_command_lines): Temporarily override the current interpreter
3216 with CLI and arrange for restoring the original one.
3217
c0749c4d
JS
32182012-05-12 Joel Sherrill <joel.sherrill@oarcorp.com>
3219
3220 * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
3221
d7333987
SDJ
32222012-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
3223
3224 * probe.c (parse_probes): Move conditional to check for
3225 debuginfo files from here...
3226 * stap-probe.c (stap_get_probes): ... to here.
3227
649e6d92
MK
32282012-05-07 Mark Kettenis <kettenis@gnu.org>
3229 H.J. Lu <hongjiu.lu@intel.com>
3230
3231 * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
3232 `movl %esp, %ebp' for the X32 ABI.
3233
f39c6ffd
TT
32342012-05-07 Tom Tromey <tromey@redhat.com>
3235
3236 * dwarf2read.c (dwarf_tag_name): Return const char *. Use
3237 get_DW_TAG_name.
3238 (dwarf_attr_name): Return const char *. Use get_DW_AT_name.
3239 (dwarf_form_name): Return const char *. Use get_DW_FORM_name.
3240 (dwarf_stack_op_name): Remove.
3241 (dwarf_cfi_name): Return const char *. Use get_DW_ATE_name.
3242 (decode_locdesc): Use get_DW_OP_name.
3243 * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
3244 (dwarf2_compile_expr_to_ax): Likewise.
3245 (disassemble_dwarf_expression): Likewise.
3246 * dwarf2expr.h: (dwarf_stack_op_name): Remove.
3247
1e1f6591
CLT
32482012-05-07 Chung-Lin Tang <cltang@codesourcery.com>
3249
3250 * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
3251 (sh_linux_sigtramp_cache): New function.
3252 (sh_linux_sigreturn_init): New function.
3253 (sh_linux_rt_sigreturn_init): New function.
3254 (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
3255 patterns.
3256 (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
3257 syscall codes.
3258 (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
3259 (sh_linux_rt_sigreturn_tramp_frame): Likewise.
3260 (sh_linux_init_abi): Add init calls to register new tramp_frame
3261 definitions under 32-bit SH, update comments.
3262
545c08b4
PA
32632012-05-07 Pedro Alves <palves@redhat.com>
3264
daac165e
PA
3265 PR gdb/10952
3266
545c08b4
PA
3267 * amd64-linux-tdep.c: Include glibc-tdep.h.
3268 (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
3269 gdbarch_skip_solib_resolver callback.
3270
af2c1515
JK
32712012-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
3272
3273 * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
3274 back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
3275 (show_auto_load_safe_path): Check any-directory by comparison with "/".
3276 (add_auto_load_safe_path): Change the error message.
3277 (_initialize_auto_load): Change the "safe-path" help text.
3278 * configure: Regenerate
3279 * configure.ac (--without-auto-load-safe-path): Set
3280 WITH_AUTO_LOAD_SAFE_PATH to /.
3281
1067f998
SDJ
32822012-05-05 Sergio Durigan Junior <sergiodj@redhat.com>
3283
3284 * stap-probe.h: Do not include unecessary `probe.h'.
3285
45dfa85a
AM
32862012-05-05 Alan Modra <amodra@gmail.com>
3287
3288 * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
3289 bfd_und_section_ptr.
3290 * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
3291 and bfd_com_section_ptr.
3292
cf093994
JB
32932012-05-04 Joel Brobecker <brobecker@adacore.com>
3294
762ebb75 3295 * MAINTAINERS (Past Maintainers): Add Chris Faylor.
cf093994 3296
d40dc7a8
JB
32972012-05-04 Joel Brobecker <brobecker@adacore.com>
3298
3299 * windows-nat.h (segment_register_p_ftype): New typedef.
3300 (windows_set_segment_register_p): Add declaration.
3301 * windows-nat.c (segment_register_p): New static global.
3302 (windows_set_segment_register_p): New function.
3303 (do_windows_fetch_inferior_registers): Add special handling
3304 for segment registers.
3305 * amd64-windows-nat.c: #include "amd64-tdep.h".
3306 (amd64_windows_segment_register_p): New function.
3307 (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
3308 * i386-windows-nat.c: #include "i386-tdep.h".
3309 (i386_windows_segment_register_p): New function.
3310 (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
3311
52b3699b
TG
33122012-05-04 Tristan Gingold <gingold@adacore.com>
3313
3314 * printcmd.c (set_command): Emit a warning if the expression is not
3315 an assignment.
3316
94c74239
JB
33172012-05-03 Joel Brobecker <brobecker@adacore.com>
3318
3319 * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
3320 Make static.
3321
fcf57f19
SDJ
33222012-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
3323
3324 * stap-probe.c (stap_is_operator): Change declaration.
3325 (stap_get_opcode): Change return value.
3326 (stap_parse_argument_1): Update calls to `stap_get_opcode' and
3327 `stap_parse_argument_1'.
3328
27d2932e
PA
33292012-05-03 Pedro Alves <pedro@codesourcery.com>
3330
3331 * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
3332 debug log.
3333
a20ee7a4
SCR
33342012-05-03 Siva Chandra Reddy <sivachandra@google.com>
3335
3336 Add two new methods global_block and static_block to gdb.Symtab
3337 objects.
3338 * NEWS (Python scripting): Add entry about the new methods.
3339 * python/py-symtab.c (stpy_global_block): New function which
3340 implements the gdb.Symtab.global_block() method.
3341 (stpy_static_block): New function which implements the
3342 gdb.Symtab.static_block() method.
3343 (symtab_object_methods): Add entries for the two new methods.
3344
943cb756
DE
33452012-05-03 Doug Evans <dje@google.com>
3346
3347 * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
3348 files.
3349
f4644a3f
YQ
33502012-05-03 Yao Qi <yao@codesourcery.com>
3351
3352 * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
3353 space.
3354 (i386_process_record): Ditto.
3355
ef61f180
JB
33562012-05-02 Joel Brobecker <brobecker@adacore.com>
3357
3358 * infcall.c (unwind_on_signal_p): Make static.
3359
02f1df11
JB
33602012-05-02 Joel Brobecker <brobecker@adacore.com>
3361
3362 * sol-thread.c (solaris_pid_to_str): Make static.
3363 (_initialize_sol_thread): Add prototype.
3364
39023530
JB
33652012-05-02 Joel Brobecker <brobecker@adacore.com>
3366
3367 * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
3368
c6b0c501
CF
33692012-05-02 Christopher Faylor <me.cygwin2012@cgf.cx>
3370
3371 * MAINTAINERS: Remove myself.
3372
1ef71717
JK
33732012-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3374
3375 Fix --without-auto-load-safe-path for MS-Windows host platform.
3376 * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
3377
b31b86a7
EZ
33782012-05-02 Eli Zaretskii <eliz@gnu.org>
3379
3380 * gdb_curses.h: Undefine KEY_EVENT before including curses
3381 headers. Move "#undef MOUSE_MOVED" before any curses header
3382 inclusion.
3383
777532fc
SDJ
33842012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
3385
3386 * features/i386/i386-mmx-linux.c: Regenerate.
3387 * features/rs6000/powerpc-32.c: Likewise.
3388 * features/rs6000/powerpc-32l.c: Likewise.
3389 * features/rs6000/powerpc-403.c: Likewise.
3390 * features/rs6000/powerpc-403gc.c: Likewise.
3391 * features/rs6000/powerpc-405.c: Likewise.
3392 * features/rs6000/powerpc-505.c: Likewise.
3393 * features/rs6000/powerpc-601.c: Likewise.
3394 * features/rs6000/powerpc-602.c: Likewise.
3395 * features/rs6000/powerpc-603.c: Likewise.
3396 * features/rs6000/powerpc-604.c: Likewise.
3397 * features/rs6000/powerpc-64.c: Likewise.
3398 * features/rs6000/powerpc-64l.c: Likewise.
3399 * features/rs6000/powerpc-750.c: Likewise.
3400 * features/rs6000/powerpc-860.c: Likewise.
3401 * features/rs6000/powerpc-e500.c: Likewise.
3402 * features/rs6000/powerpc-e500l.c: Likewise.
3403 * features/rs6000/powerpc-isa205-32l.c: Likewise.
3404 * features/rs6000/powerpc-isa205-64l.c: Likewise.
3405 * features/rs6000/rs6000.c: Likewise.
3406
d71871bc
SDJ
34072012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
3408
3409 * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
3410 variable.
3411 * stap-probe.c (stap_parse_single_operand) <reg_suffix,
3412 reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
3413 (stap_parse_argument) <e>: Likewise.
3414 (handle_stap_probe) <byte_order>: Likewise.
3415
fd820528
DE
34162012-04-30 Doug Evans <dje@google.com>
3417
3418 * dwarf2read.c (init_cutu_and_read_dies): Renamed from
3419 init_and_read_dies_worker. All callers updated.
3420 (init_cu_and_read_dies, init_tu_and_read_dies): Delete. All calls
3421 replaced with init_cutu_and_read_dies.
3422 (load_partial_comp_unit): Pass 1 for use_existing_cu.
3423 (find_partial_die): Remove FIXME. Don't free current CU.
3424
ec3f619d 34252012-04-30 Sterling Augustine <saugustine@google.com>
be36f02d
SA
3426
3427 * contrib: New directory.
3428 * contrib/test_pubnames_and_indexes.py: New file.
3429
fceca515
DE
34302012-04-30 Doug Evans <dje@google.com>
3431
3432 * dwarf2read.c (dwarf_decode_macros): New arg section_name.
3433 All callers updated.
3434 (init_cu_die_reader): Verify the section is non-empty.
3435 (dwarf_decode_line_header): Don't dereference section->asection
3436 until we know the section is present.
3437
311fe7e1
SDJ
34382012-04-29 Sergio Durigan Junior <sergiodj@redhat.com>
3439
3440 * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
3441 probes.
3442
5977971a
YQ
34432012-04-29 Yao Qi <yao@codesourcery.com>
3444
3445 * gdb-code-style.el: New hook gdb-markup-hook
3446 and gdb-comment-hook.
3447
dee91e82
DE
34482012-04-28 Doug Evans <dje@google.com>
3449
3019eac3
DE
3450 Initial support for Fission. http://gcc.gnu.org/wiki/DebugFission
3451 * symfile.c (default_symfile_relocate): Use sectp->owner instead of
3452 objfile->obfd.
3453 * symfile.h (dwarf2_debug_sections): New member addr.
3454 * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
3455 (ctx_no_get_addr_index): New function.
3456 * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
3457 (ctx_no_get_addr_index): Declare.
3458 * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
3459 * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
3460 (dwarf_expr_ctx_funcs): Update.
3461 (needs_get_addr_index): New function.
3462 (needs_frame_ctx_funcs): Update.
3463 * dwarf2loc.h (dwarf2_read_addr_index): Declare.
3464 * dwarf2read.c: #include "gdbcore.h".
3465 (dwarf2_per_objfile): New members addr, dwo_files.
3466 (dwarf2_elf_names): Add entry for addr.
3467 (struct dwo_section_names): New type.
3468 (dwo_section_names): New static global.
3469 (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
3470 (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
3471 old debug_types_section member updated to use this.
3472 Rename member debug_types_section to info_or_types_section,
3473 all uses updated.
3474 (signatured_type): Rename member type_offset to type_offset_in_tu,
3475 all uses updated. New member type_offset_in_section.
3476 (struct dwo_sections): New type.
3477 (struct dwo_unit): New type.
3478 (struct dwo_file): New type.
3479 (die_reader_specs): New member dwo_file.
3480 (dwarf2_locate_sections): Watch for .debug_addr.
3481 (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
3482 (dwarf2_read_section): Get bfd of section from bfd's asection,
3483 instead of objfile.
3484 (create_cus_from_index): Initialize the_cu->info_or_types_section.
3485 (create_signatured_type_table_from_index): Initialize
3486 sig_type->info_or_types_section.
3487 (dw2_get_file_names): Statement lists for type units with DWO files
3488 live in the DWO file.
3489 (create_debug_types_hash_table): New function.
3490 (create_all_type_units): Rewrite.
3491 (init_cu_die_reader): New arg dwo_file, all callers updated.
3492 (init_and_read_dies_worker): Get section from
3493 this_cu->info_or_types_section. Set sig_type->type_offset_in_section.
3494 Watch for DW_AT_GNU_dwo_name and if present lookup the file and
3495 continue reading the CU/TU from there.
3496 (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
3497 updated. Get section from this_cu->info_or_types_section.
3498 (create_all_comp_units): Initialize this_cu->info_or_types_section.
3499 (skip_one_die): New cases DW_FORM_GNU_addr_index,
3500 DW_FORM_GNU_str_index.
3501 (hash_dwo_file, eq_dwo_file): New functions.
3502 (allocate_dwo_file_hash_table): New function.
3503 (hash_dwo_unit, eq_dwo_unit): New functions.
3504 (allocate_dwo_unit_table): New function.
3505 (dwarf2_locate_dwo_sections): New function.
3506 (struct create_dwo_info_table_data): New type.
3507 (create_debug_info_hash_table_reader): New function.
3508 (create_debug_info_hash_table): New function.
3509 (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
3510 (lookup_dwo_file): New function.
3511 (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
3512 (free_dwo_file, free_dwo_file_cleanup): New functions.
3513 (free_dwo_file_from_slot, free_dwo_files): New functions.
3514 (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
3515 (dwarf2_record_block_ranges): Ditto.
3516 (read_partial_die): Ditto.
3517 (process_enumeration_scope): Update to use type_offset_in_section.
3518 (read_full_die_1): New function.
3519 (read_full_die): Rewrite.
3520 (read_attribute_value): New cases DW_FORM_GNU_addr_index,
3521 DW_FORM_GNU_str_index.
3522 (read_addr_index_1, read_addr_index): New functions.
3523 (read_addr_index_from_leb128): New function.
3524 (struct dwarf2_read_addr_index_data): New type.
3525 (dwarf2_read_addr_index_reader): New function.
3526 (dwarf2_read_addr_index): New function.
3527 (read_str_index): New function.
3528 (leb128_size): New function.
3529 (dwarf_decode_line_header): Delete arg abfd, all callers updated.
3530 If processing a type unit from a DWO file, get the line section
3531 from the DWO file.
3532 (var_decode_location): Watch for DW_OP_GNU_addr_index.
3533 (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
3534 DW_FORM_GNU_str_index.
3535 (lookup_die_type): Check whether section offset of type's die is
3536 known before looking it up. Remove assert. Condition can
3537 legimately happen for inter-cu type references.
3538 (dwarf_attr_name): Handle Fission attributes.
3539 (dwarf_form_name): Handle Fission forms.
3540 (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
3541 DW_FORM_GNU_str_index.
3542 (follow_die_sig): Update to use type_offset_in_section.
3543 (decode_locdesc): New case DW_OP_GNU_addr_index.
3544 (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
3545 DW_FORM_GNU_str_index.
3546 (cu_debug_loc_section): New function.
3547 (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
3548 (dwarf2_per_objfile_free): Unmap .debug_addr section.
3549 Free DWO files if present.
3550 * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
3551
dee91e82
DE
3552 Refactor DIE reading.
3553 * dwarf2read.c (dwarf2_per_objfile): Replace members
3554 debug_info_type_hash and debug_types_type_hash with die_type_hash.
3555 (die_reader_specs): New member "die_section". Temporarily make
3556 member "buffer" non-const, pending constifying all info_ptr uses.
3557 (die_reader_func_ftype): New typedef.
3558 (dw2_get_file_names_reader): New function.
3559 (dw2_get_file_names): Rewrite.
3560 (read_and_check_type_unit_head): Rename arg type_offset to
3561 type_offset_in_tu.
3562 (create_all_type_units): Improve debugging message.
3563 Improve dummy type unit check.
3564 (init_cu_die_reader): New arg "section". All callers updated.
3565 (init_and_read_dies_worker): New function.
3566 (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
3567 (init_cutu_and_read_dies_no_follow): New function.
3568 (init_cutu_and_read_dies_simple): New function.
3569 (process_psymtab_comp_unit_reader): New function.
3570 (process_psymtab_comp_unit): Delete args section,
3571 is_debug_types_section. Rewrite. All callers updated.
3572 (process_psymtab_type_unit): Renamed from process_type_comp_unit.
3573 All callers updated. Rewrite.
3574 (load_partial_comp_unit_reader): New function.
3575 (load_partial_comp_unit): Rewrite.
3576 (skip_children): New arg reader. Delete args buffer, cu.
3577 All callers updated.
3578 (skip_one_die): New arg reader. Delete args buffer, cu.
3579 All callers updated.
3580 (locate_pdi_sibling): New arg reader. Delete args buffer, abfd, cu.
3581 All callers updated.
3582 (load_full_comp_unit_reader): New function.
3583 (load_full_comp_unit): Rewrite.
3584 (read_comp_unit): Delete.
3585 (read_die_and_children_1): Delete, contents moved ...
3586 (read_die_and_children): ... here.
3587 (dwarf2_read_abbrevs): New arg abbrev_section. All callers updated.
3588 (load_partial_dies): New arg reader. Delete args abfd, buffer, cu.
3589 All callers updated.
3590 (read_partial_die): New arg reader. Delete args abfd, buffer, cu.
3591 All callers updated.
3592 (find_partial_die): Rewrite load_all_dies support.
3593 (read_attribute_value): New arg reader. Delete args abfd, cu.
3594 All callers updated.
3595 (read_attribute): New arg reader. Delete args abfd, cu.
3596 All callers updated.
3597 (load_full_type_unit): Add assert.
3598 (read_signatured_type_reader): New function.
3599 (read_signatured_type): Rewrite.
3600 (free_stack_comp_unit): Remove call to age_cached_comp_units.
3601 (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
3602 All callers updated. Set per_cu->cu = NULL after freeing it.
3603 (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
3604 (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
3605 (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
3606 (set_die_type): Update.
3607 (get_die_type_at_offset): Update.
3608 (read_file_scope): Call prepare_one_comp_unit.
3609 (read_type_unit_scope): Ditto.
3610 (prepare_one_comp_unit): Set producer if present.
3611
72d59e0d
SDJ
36122012-04-28 Sergio Durigan Junior <sergiodj@redhat.com>
3613
3614 * probe.c (compile_rx_or_error): Silence ARI warning about missing
3615 gettext function on `error'.
3616
0fefef59
DE
36172012-04-27 Doug Evans <dje@google.com>
3618
3619 * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
3620 is empty.
3621
28106bc2
SDJ
36222012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
3623 Tom Tromey <tromey@redhat.com>
3624
3625 * breakpoint.c (struct breakpoint_objfile_data)
3626 <longjmp_searched>,<longjmp_probes>,<exception_searched>,
3627 <exception_probes>: New fields.
3628 (free_breakpoint_probes): New function.
3629 (create_longjmp_master_breakpoint): Prefer SystemTap probe over
3630 `_Unwind_DebugHook'.
3631 (create_exception_master_breakpoint): Likewise.
3632 (_initialize_breakpoint): Registering cleanup for SystemTap probes.
3633 * infrun.c: Including necessary header files for handling SystemTap
3634 probes.
3635 (handle_inferior_event): Handling longjmp breakpoint and exceptions
3636 via SystemTap probes.
3637 (check_exception_resume): Remove `func' argument. Handle exception
3638 unwinding breakpoint set via a SystemTap probe.
3639 (insert_exception_resume_from_probe): New function.
3640
55aa24fb
SDJ
36412012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
3642 Tom Tromey <tromey@redhat.com>
3643 Jan Kratochvil <jan.kratochvil@redhat.com>
3644
3645 * Makefile.in (SFILES): Add `probe' and `stap-probe'.
3646 (COMMON_OBS): Likewise.
3647 (HFILES_NO_SRCDIR): Add `probe'.
3648 * NEWS: Mention support for static and SystemTap probes.
3649 * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
3650 SystemTap probes' arguments parser.
3651 * arm-linux-tdep.c: Including headers needed to perform the parsing
3652 of SystemTap probes' arguments.
3653 (arm_stap_is_single_operand): New function.
3654 (arm_stap_parse_special_token): Likewise.
3655 (arm_linux_init_abi): Initializing proper fields used by SystemTap
3656 probes' arguments parser.
3657 * ax-gdb.c (require_rvalue): Removing static declaration.
3658 (gen_expr): Likewise.
3659 * ax-gdb.h (gen_expr): Declaring function.
3660 (require_rvalue): Likewise.
3661 * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
3662 (bkpt_probe_breakpoint_ops): New variable.
3663 (momentary_breakpoint_from_master): Set the `probe' value.
3664 (add_location_to_breakpoint): Likewise.
3665 (break_command_1): Using proper breakpoint_ops according to the
3666 argument passed by the user in the command line.
3667 (bkpt_probe_insert_location): New function.
3668 (bkpt_probe_remove_location): Likewise.
3669 (bkpt_probe_create_sals_from_address): Likewise.
3670 (bkpt_probe_decode_linespec): Likewise.
3671 (tracepoint_probe_create_sals_from_address): Likewise.
3672 (tracepoint_probe_decode_linespec): Likewise.
3673 (tracepoint_probe_breakpoint_ops): New variable.
3674 (trace_command): Using proper breakpoint_ops according to the
3675 argument passed by the user in the command line.
3676 (initialize_breakpoint_ops): Initializing breakpoint_ops for
3677 static probes on breakpoints and tracepoints.
3678 * breakpoint.h (struct bp_location) <probe>: New field.
3679 * cli-utils.c (skip_spaces_const): New function.
3680 (extract_arg): Likewise.
3681 * cli-utils.h (skip_spaces_const): Likewise.
3682 (extract_arg): Likewise.
3683 * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
3684 * configure.ac: Append `stap-probe.o' to be generated when ELF
3685 support is present.
3686 * configure: Regenerate.
3687 * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
3688 * elfread.c: Include `probe.h' and `arch-utils.h'.
3689 (probe_key): New variable.
3690 (elf_get_probes): New function.
3691 (elf_get_probe_argument_count): Likewise.
3692 (elf_evaluate_probe_argument): Likewise.
3693 (elf_compile_to_ax): Likewise.
3694 (elf_symfile_relocate_probe): Likewise.
3695 (stap_probe_key_free): Likewise.
3696 (elf_probe_fns): New variable.
3697 (elf_sym_fns): Add `sym_probe_fns' value.
3698 (elf_sym_fns_lazy_psyms): Likewise.
3699 (elf_sym_fns_gdb_index): Likewise.
3700 (_initialize_elfread): Initialize objfile cache for static
3701 probes.
3702 * gdb_vecs.h (struct probe): New forward declaration.
3703 (probe_p): New VEC declaration.
3704 * gdbarch.c: Regenerate.
3705 * gdbarch.h: Regenerate.
3706 * gdbarch.sh (stap_integer_prefix): New variable.
3707 (stap_integer_suffix): Likewise.
3708 (stap_register_prefix): Likewise.
3709 (stap_register_suffix): Likewise.
3710 (stap_register_indirection_prefix): Likewise.
3711 (stap_register_indirection_suffix): Likewise.
3712 (stap_gdb_register_prefix): Likewise.
3713 (stap_gdb_register_suffix): Likewise.
3714 (stap_is_single_operand): New function.
3715 (stap_parse_special_token): Likewise.
3716 (struct stap_parse_info): Forward declaration.
3717 * i386-tdep.c: Including headers needed to perform the parsing
3718 of SystemTap probes' arguments.
3719 (i386_stap_is_single_operand): New function.
3720 (i386_stap_parse_special_token): Likewise.
3721 (i386_elf_init_abi): Initializing proper fields used by SystemTap
3722 probes' arguments parser.
3723 * i386-tdep.h (i386_stap_is_single_operand): New function.
3724 (i386_stap_parse_special_token): Likewise.
3725 * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
3726 * mipsread.c (ecoff_sym_fns): Likewise.
3727 * objfiles.c (objfile_relocate1): Support relocation for static
3728 probes.
3729 * parse.c (prefixify_expression): Remove static declaration.
3730 (initialize_expout): Likewise.
3731 (reallocate_expout): Likewise.
3732 * parser-defs.h (initialize_expout): Declare function.
3733 (reallocate_expout): Likewise.
3734 (prefixify_expression): Likewise.
3735 * ppc-linux-tdep.c: Including headers needed to perform the parsing
3736 of SystemTap probes' arguments.
3737 (ppc_stap_is_single_operand): New function.
3738 (ppc_stap_parse_special_token): Likewise.
3739 (ppc_linux_init_abi): Initializing proper fields used by SystemTap
3740 probes' arguments parser.
3741 * probe.c: New file, for generic statically defined probe support.
3742 * probe.h: Likewise.
3743 * s390-tdep.c: Including headers needed to perform the parsing of
3744 SystemTap probes' arguments.
3745 (s390_stap_is_single_operand): New function.
3746 (s390_gdbarch_init): Initializing proper fields used by SystemTap
3747 probes' arguments parser.
3748 * somread.c (som_sym_fns): Add `sym_probe_fns' value.
3749 * stap-probe.c: New file, for SystemTap probe support.
3750 * stap-probe.h: Likewise.
3751 * symfile.h: Include `gdb_vecs.h'.
3752 (struct sym_probe_fns): New struct.
3753 (struct sym_fns) <sym_probe_fns>: New field.
3754 * symtab.c (init_sal): Initialize `probe' field.
3755 * symtab.h (struct probe): Forward declaration.
3756 (struct symtab_and_line) <probe>: New field.
3757 * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
3758 locations.
3759 (stop_tracing): Likewise.
3760 * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
3761
22d2b532
SDJ
37622012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
3763 Tom Tromey <tromey@redhat.com>
3764
3765 * ax-gdb.c (gen_expr): Clean up code to handle internal variables
3766 and to compile agent expressions.
3767 * infrun.c (siginfo_make_value): New argument `ignore'.
3768 (siginfo_funcs): New struct.
3769 (_initialize_infrun): New argument when calling
3770 `create_internalvar_type_lazy'.
3771 * thread.c (thread_id_make_value): New argument `ignore'.
3772 (thread_funcs): New struct.
3773 (_initialize_thread): New argument when calling
3774 `create_internalvar_type_lazy'.
3775 * tracepoint.c (sdata_make_value): New argument `ignore'.
3776 (sdata_funcs): New struct.
3777 (_initialize_tracepoint): New argument when calling
3778 `create_internalvar_type_lazy'.
3779 * value.c (make_value): New struct.
3780 (create_internalvar_type_lazy): New argument `data'.
3781 (compile_internalvar_to_ax): New function.
3782 (value_of_internalvar): Properly handling `make_value' case.
3783 (clear_internalvar): Likewise.
3784 (show_convenience): Adding `TRY_CATCH' block.
3785 * value.h (internalvar_make_value): Delete, replace by...
3786 (struct internalvar_funcs): ... this.
3787 (create_internalvar_type_lazy) <fun>: Delete argument.
3788 (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
3789 (compile_internalvar_to_ax): New function.
3790 * windows-tdep.c (tlb_make_value): New argument `ignore'.
3791 (tlb_funcs): New struct.
3792 (_initialize_windows_tdep): New argument when calling
3793 `create_internalvar_type_lazy'.
3794
91da1414
MW
37952012-04-27 Mark Wielaard <mjw@redhat.com>
3796
3797 * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
3798 see whether it is an address or a constant offset from DW_AT_low_pc.
3799 (dwarf2_record_block_ranges): Likewise.
3800 (read_partial_die): Likewise.
3801
4ab9d8ec
MW
38022012-04-26 Mark Wielaard <mjw@redhat.com>
3803
3804 * MAINTAINERS (Write After Approval): Add myself to the list.
3805
a0911fd0
MR
38062012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
3807
3808 * proc-utils.h (proc_prettyprint_signalset): New prototype.
3809 (proc_prettyprint_signal): Likewise.
3810 (proc_prettyprint_faultset): Likewise.
3811 (proc_prettyprint_fault): Likewise.
3812 (proc_prettyprint_actionset): Likewise.
3813 (proc_prettyprint_flags): Move to new proc-flags.c section.
3814 (proc_prettyfprint_flags): New prototype.
3815 * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
3816 (proc_syscall, proc_cursig): Likewise.
3817 (proc_set_kill_on_last_close): Likewise.
3818 (proc_unset_kill_on_last_close): Likewise.
3819 (proc_set_watchpoint): Make static.
3820 (proc_delete_dead_threads): Likewise.
3821 (procfs_set_watchpoint): Likewise.
3822 (_initialize_procfs): Add prototype.
3823 * proc-events.c: Include proc-utils.h.
3824 (init_syscall_table): Make static.
3825 * proc-api.c (_initialize_proc_api): Add prototype.
3826 * proc-flags.c: Include proc-utils.h.
3827
9009e1ae
MR
38282012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
3829
3830 * configure.ac: Add AC_ARG_PROGRAM.
3831 * configure: Regenerate.
3832
4fae6e18
JK
38332012-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
3834
3835 Fix DW_AT_lower_bound defaults for DWARF-4+.
3836 * dwarf2read.c (read_subrange_type): Remove initialization of low and
3837 high. New variable low_default_is_valid. Implement DWARF-4+
3838 DW_AT_lower_bound defaults. Print complaint for DW_AT_lower_bound with
3839 no default by the DWARF standard.
3840
14132e89
MR
38412012-04-26 Maciej W. Rozycki <macro@mips.com>
3842 Maciej W. Rozycki <macro@codesourcery.com>
3843
3844 * infrun.c (handle_inferior_event): Move the check for return
3845 trampolines ahead of the check for function trampolines.
3846 * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
3847 * mips-tdep.c (mips_str_mips16_call_stub): New variable.
3848 (mips_str_mips16_ret_stub): Likewise.
3849 (mips_str_call_fp_stub): Likewise.
3850 (mips_str_call_stub): Likewise.
3851 (mips_str_fn_stub): Likewise.
3852 (mips_str_pic): Likewise.
3853 (mips_in_frame_stub): New function.
3854 (mips_unwind_pc): Return the return address rather than the PC
3855 if the PC of an intermediate frame is inside a call thunk.
3856 (mips_is_stub_suffix): New function.
3857 (mips_is_stub_mode): Likewise.
3858 (mips_get_mips16_fn_stub_pc): Likewise.
3859 (mips_skip_mips16_trampoline_code): Update to handle all the
3860 currently generated stub types. Don't recurse into __fn_stub
3861 thunks. Remove heuristics to handle stubs beyond etext/_etext.
3862 Use cooked register accesses.
3863 (mips_in_return_stub): Reintroduce function.
3864 (mips_skip_trampoline_code): Traverse trampolines recursively.
3865 (mips_gdbarch_init): Handle MIPS16 return trampolines.
3866
518f0db5 38672012-04-26 Joel Brobecker <brobecker@adacore.com>
3868
3869 GDB 7.4.1 released.
3870
3184d3f9
JL
38712012-04-26 Jonathan Larmour <jifl@eCosCentric.com>
3872
3873 * arm-tdep.h (VFP_REGISTER_SIZE): Define.
3874 * features/arm-with-m-vfp-d16.xml: New file. Describes
3875 Cortex-M with VFPv4-sp-d16 FPU register layout.
3876 * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
3877 * features/arm-with-m-vfp-d16.c: New. Generated from above.
3878 * arm-tdep.c: Include arm-with-m-vfp-d16.c.
3879 (arm-register_g_packet_guesses): Add vfp-d16 guess.
3880 (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
3881
b6201d44
DE
38822012-04-25 Doug Evans <dje@google.com>
3883
3884 * cli/cli-decode.c (print_doc_line): Use stream instead of
3885 current_uiout.
3886
4e2f8df6
SDJ
38872012-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
3888
3889 * features/arm-with-iwmmxt.c: Regenerate.
3890 * features/arm-with-m-fpa-layout.c: Likewise.
3891 * features/arm-with-m.c: Likewise.
3892 * features/arm-with-neon.c: Likewise.
3893 * features/arm-with-vfpv2.c: Likewise.
3894 * features/arm-with-vfpv3.c: Likewise.
3895 * features/mips-dsp-linux.c: Likewise.
3896 * features/mips-linux.c: Likewise.
3897 * features/mips64-dsp-linux.c: Likewise.
3898 * features/mips64-linux.c: Likewise.
3899 * features/s390-linux32.c: Likewise.
3900 * features/s390-linux32v1.c: Likewise.
3901 * features/s390-linux32v2.c: Likewise.
3902 * features/s390-linux64.c: Likewise.
3903 * features/s390-linux64v1.c: Likewise.
3904 * features/s390-linux64v2.c: Likewise.
3905 * features/s390x-linux64.c: Likewise.
3906 * features/s390x-linux64v1.c: Likewise.
3907 * features/s390x-linux64v2.c: Likewise.
3908 * features/tic6x-c62x-linux.c: Likewise.
3909 * features/tic6x-c62x.c: Likewise.
3910 * features/tic6x-c64x-linux.c: Likewise.
3911 * features/tic6x-c64x.c: Likewise.
3912 * features/tic6x-c64xp-linux.c: Likewise.
3913 * features/tic6x-c64xp.c: Likewise.
3914 * target-descriptions.c: Only generate `field_type' and `type'
3915 variables when needed.
3916
2def3e66
JB
39172012-04-25 Fredrik Hederstierna <fredrikh.hederstierna@securitas-direct.com>
3918
3919 * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
3920
a766d390
DE
39212012-04-25 Doug Evans <dje@google.com>
3922
3923 Initial pass at Go language support.
3924 * NEWS: Mention Go.
3925 * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
3926 go-valprint.c.
3927 (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
3928 (YYFILES): Add go-exp.c.
3929 (YYOBJ): Add go-exp.o.
3930 (local-maintainer-clean): Delete go-exp.c.
3931 * defs.h (enum language): Add language_go.
3932 * dwarf2read.c: #include "go-lang.h".
3933 (fixup_go_packaging): New function.
3934 (process_full_comp_unit): Call it when processing Go CUs.
3935 (dwarf2_physname): Add Go support.
3936 (read_file_scope): Handle missing language spec for GNU Go.
3937 (set_cu_language): Handle DW_LANG_Go.
3938 * go-exp.y: New file.
3939 * go-lang.h: New file.
3940 * go-lang.c: New file.
3941 * go-typeprint.c: New file.
3942 * go-valprint.c: New file.
3943 * symtab.c: #include "go-lang.h".
3944 (symbol_set_language): Handle language_go.
3945 (symbol_find_demangled_name, symbol_set_names): Ditto.
3946 (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
3947
4e2af517
JM
39482012-04-24 Jim Meyering <meyering@redhat.com>
3949
3950 avoid a few strncpy-induced buffer overruns
3951 * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
3952 fname and psargs before trying to concatenate.
3953 * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
3954 "name" before applying strchr.
3955
b77b7f52
SCR
39562012-04-25 Siva Chandra Reddy <sivachandra@google.com>
3957
3958 * CONTRIBUTE: Use unified diff instead of context diff when
3959 generating patches.
3960
6321c22a
MR
39612012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
3962
3963 * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
3964 code. Handle JR.HB correctly.
3965
742c84f6
MR
39662012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
3967
3968 * mips-tdep.c
3969 (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
3970 with the other MIPS16 helpers.
3971
7fc7e0c3
SDJ
39722012-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
3973
3974 * observer.sh: Conditionally declare `args', thus cleaning up
3975 unused instances of this variable.
3976
20388dd6
YQ
39772012-04-24 Yao Qi <yao@codesourcery.com>
3978
3979 Revert this patch to allow breakpoint always-inserted
3980 in record target.
3981 2011-12-05 Pedro Alves <pedro@codesourcery.com>
3982 * breakpoint.c: Include record.h.
3983 (breakpoints_always_inserted_mode): Return false when the record
3984 target is in use.
3985
3986 * breakpoint.c (iterate_over_bp_locations): New.
3987 * breakpoint.h: Declare.
3988 New typedef walk_bp_location_callback.
3989 * record.c (record_open): Call record_init_record_breakpoints.
3990 (record_sync_record_breakpoints): New.
3991 (record_init_record_breakpoints): New.
3992 * NEWS: Mention supporting breakpoint always-inserted mode in
3993 record target.
3994
4734f50e
MK
39952012-04-24 Marc Khouzam <marc.khouzam@ericsson.com>
3996
3997 * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
3998 any thread.
3999
c326b90e
YQ
40002012-04-24 Yao Qi <yao@codesourcery.com>
4001
4002 * breakpoint.c (ep_is_catchpoint): Renamed to ...
4003 (is_catchpoint): ... it.
4004 (print_one_breakpoint_location): Caller update.
4005 * breakpoint.h: Update declaration.
4006
d8fb5a1e
DM
40072012-04-23 David S. Miller <davem@davemloft.net>
4008
4009 * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
4010
34431a2a
TT
40112012-04-23 Tom Tromey <tromey@redhat.com>
4012
4013 * buildsym.c (add_free_pendings): Remove.
4014 * buildsym.h (add_free_pendings): Remove.
4015
4568ecf9
DE
40162012-04-23 Doug Evans <dje@google.com>
4017
4018 * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
4019 attr.u.unsnd instead of attr.u.addr.
4020 (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
4021 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
4022 DW_FORM_ref_udata.
4023 (dump_die_shallow): Update cases DW_FORM_ref_addr,
4024 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4. Add cases DW_FORM_ref8,
4025 DW_FORM_ref_udata.
4026 (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
4027
dca9aa3a
MR
40282012-04-23 Maciej W. Rozycki <macro@codesourcery.com>
4029
4030 * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
4031 (mips_o32_return_value): Likewise.
4032 (mips_o64_return_value): Likewise.
4033
c8ea1972
PH
40342012-04-21 Paul Hilfinger <hilfinger@adacore.com>
4035
4036 * ada-lang.c (ada_evaluate_subexp): Add cases for
4037 TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
4038 their treatment in eval.c.
4039
8d1b3521
DM
40402012-04-21 David S. Miller <davem@davemloft.net>
4041
4042 * sparc-tdep.c (X_DISP10): Define.
4043 (sparc_analyze_control_transfer): Handle compare-and-branch.
4044
03145bf4
JL
40452012-04-21 Jonathan Larmour <jifl@eCosCentric.com>
4046
4047 * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
4048 * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
4049
004159a2
MR
40502012-04-20 Nigel Stephens <nigel@mips.com>
4051 Maciej W. Rozycki <macro@codesourcery.com>
4052
4053 * mips-tdep.c (mips_float_register_p): New function.
4054 (mips_convert_register_float_case_p): Use mips_float_register_p.
4055 (mips_register_type): Likewise.
4056 (mips_print_register): Likewise.
4057 (print_gp_register_row): Likewise.
4058 (mips_print_registers_info): Likewise.
4059
7f0e6aae
MR
40602012-04-20 Shun-Yen Lu <dark.asparagus@gmail.com>
4061
4062 * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
4063 of mips16 symbols.
4064
bc17beea
AP
40652012-04-20 Andrew Pinski <apinski@cavium.com>
4066
4067 * MAINTAINERS (Write After Approval): Add myself to the list.
4068
1730a5a5
SDJ
40692012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
4070
4071 * MAINTAINERS: Update my e-mail address.
4072
38ea300a
PA
40732012-04-20 Pedro Alves <palves@redhat.com>
4074
4075 * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
4076 $srcdir.
4077 * configure: Regenerate.
4078
111dfaae
SDJ
40792012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
4080
4081 * cp-support.h: Include `gdb_vecs.h'. Delete `const_char_ptr' VEC
4082 declaration.
4083 * gdb_vecs.h: Declare `const_char_ptr' VEC.
4084
4fb2c64a
JK
40852012-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
4086
4087 Fix compilation compatibility with python-2.4
4088 * python/py-type.c (convert_field): Cast ADDRSTRING for
4089 PyObject_SetAttrString as non-const. New comment.
4090
6328eb38
TT
40912012-04-19 Tom Tromey <tromey@redhat.com>
4092
4093 * top.c (quit_target): Use all_cleanups.
4094 * main.c (captured_command_loop): Use all_cleanups.
4095 * exceptions.c (throw_exception): Use all_cleanups.
4096
c971b7fa
PA
40972012-04-19 Pedro Alves <palves@redhat.com>
4098
4099 * Makefile.in (GNULIB_BUILDDIR): New.
4100 (LIBGNU, INCGNU, GNULIB_H): Adjust.
4101 (SUBDIRS): Add $(GNULIB_BUILDDIR).
4102 (CLEANDIRS). Remove gnulib/import.
4103 (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
4104 (all-lib): Ditto.
4105 (distclean): Remove the $(GNULIB_BUILDDIR) directory.
4106 (gnulib/import/Makefile): Replace gnulib/import with
4107 $(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
4108 (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
4109 (aclocal_m4_deps): Remove the gnulib dependencies. Add
4110 acx_configure_dir.m4.
4111 * acinclude.m4: Include acx_configure_dir.m4.
4112 * acx_configure_dir.m4: New file.
4113 * aclocal.m4: Regenerate.
a09130f9
PA
4114 * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
4115 calls. Configure gnulib using ACX_CONFIGURE_DIR.
4116 (GNULIB): New variable.
4117 (GNULIB_STDINT_H): Adjust.
4118 (AC_OUTPUT): Don't output gnulib/Makefile.
4119 * gdb/defs.h: Include build-gnulib/config.h.
4120 * aclocal.m4: Regenerate.
4121 * config.in: Regenerate.
4122 * configure: Regenerate.
4123
4124 * gnulib/Makefile.in: New file.
4125 * gnulib/configure.ac: New file.
4126 * gnulib/aclocal.m4: New file.
4127 * gnulib/config.in: New file.
4128 * gnulib/configure: New file.
c971b7fa
PA
4129 * gnulib/: Re-run gnulib-tool to adjust.
4130
b10faa68
DE
41312012-04-19 Doug Evans <dje@google.com>
4132
4133 * cleanups.h (struct cleanup): Move to cleanups.c.
4134 (make_cleanup_dtor_ftype): New typedef.
4135 (make_cleanup_dtor): Use it.
4136 (ALL_CLEANUPS): Replace with ...
4137 (all_cleanups): ... this. Declare. All uses updated.
4138 * cleanups.c: #include "gdb_assert.h".
4139 (sentinel_cleanup): New static global.
4140 (SENTINEL_CLEANUP): Define.
4141 (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
4142 (make_my_cleanup2): Assert result is non-NULL.
4143 (all_cleanups): New function.
4144 (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
4145 of NULL.
4146
d8c267cc
PA
41472012-04-19 Pedro Alves <palves@redhat.com>
4148
4149 * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
4150 Adjust paths to gnulib imported files.
4151
809277f8
PA
41522012-04-19 Pedro Alves <palves@redhat.com>
4153
4154 * gnulib/: Move whole directory ...
4155 * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
4156 * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
4157 (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
4158 (aclocal_m4_deps): Adjust.
4159 * aclocal.m4: Regenerate.
4160 * configure: Regenerate.
4161 * configure.ac: Adjust AC_OUTPUT output.
4162
aad9eab9
YQ
41632012-04-19 Yao Qi <yao@codesourcery.com>
4164
4165 * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
4166 (vec.o): New rule.
4167 * vec.c: Move it ...
4168 * common/vec.c: ... here.
4169 * vec.h: Move it ...
4170 * common/vec.h: ... here.
4171
48fe4669
YQ
41722012-04-19 Yao Qi <yao@codesourcery.com>
4173
4174 * gdb-code-style.el: New.
4175
770d76d7
PA
41762012-04-18 Pedro Alves <palves@redhat.com>
4177
4178 Update gnulib from latest git.
4179 (639ea5ae15e39fe48d43e04864b2997301e4b969)
4180
4181 * gnulib/Makefile.am: Update.
4182 * gnulib/dummy.c: Update.
4183 * gnulib/extra/arg-nonnull.h: Update.
4184 * gnulib/extra/c++defs.h: Update.
4185 * gnulib/extra/update-copyright: Update.
4186 * gnulib/extra/warn-on-use.h: Update.
4187 * gnulib/inttypes.in.h: Update.
4188 * gnulib/m4/00gnulib.m4: Update.
4189 * gnulib/m4/extensions.m4: Update.
4190 * gnulib/m4/gnulib-cache.m4: Update.
4191 * gnulib/m4/gnulib-common.m4: Update.
4192 * gnulib/m4/gnulib-comp.m4: Update.
4193 * gnulib/m4/gnulib-tool.m4: Update.
4194 * gnulib/m4/include_next.m4: Update.
4195 * gnulib/m4/inttypes-pri.m4: Update.
4196 * gnulib/m4/inttypes.m4: Update.
4197 * gnulib/m4/longlong.m4: Update.
4198 * gnulib/m4/memchr.m4: Update.
4199 * gnulib/m4/memmem.m4: Update.
4200 * gnulib/m4/mmap-anon.m4: Update.
4201 * gnulib/m4/multiarch.m4: Update.
4202 * gnulib/m4/onceonly.m4: Update.
4203 * gnulib/m4/stddef_h.m4: Update.
4204 * gnulib/m4/stdint.m4: Update.
4205 * gnulib/m4/string_h.m4: Update.
4206 * gnulib/m4/warn-on-use.m4: Update.
4207 * gnulib/m4/wchar_h.m4: Update.
4208 * gnulib/m4/wchar_t.m4: Update.
4209 * gnulib/m4/wint_t.m4: Update.
4210 * gnulib/memchr.c: Update.
4211 * gnulib/memmem.c: Update.
4212 * gnulib/stddef.in.h: Update.
4213 * gnulib/stdint.in.h: Update.
4214 * gnulib/str-two-way.h: Update.
4215 * gnulib/string.in.h: Update.
4216 * gnulib/wchar.in.h: Update.
4217
4218 * gnulib/extra/arg-nonnull.h: Delete.
4219 * gnulib/extra/c++defs.h: Delete.
4220 * gnulib/extra/warn-on-use.h: Delete.
4221 * gnulib/m4/wchar_h.m4: Delete.
4222 * gnulib/m4/wint_t.m4: Delete.
4223 * gnulib/wchar.in.h: Delete.
4224
4225 * gnulib/extra/snippets/arg-nonnull.h: New.
4226 * gnulib/extra/snippets/c++defs.h: New.
4227 * gnulib/extra/snippets/warn-on-use.h: New.
4228
4229 * aclocal.m4: Regenerate.
4230 * config.in: Regenerate.
4231 * configure: Regenerate.
4232 * gnulib/Makefile.in: Regenerate.
4233
174e088e
PA
42342012-04-18 Pedro Alves <palves@redhat.com>
4235
4236 Reimport the update-copyright module from gnulib
4237 (250b80067c1e1d8faa0c42fb572f721975b929c5).
4238
4239 * configure: Regenerate.
4240 * gnulib/Makefile.am: Update.
4241 * gnulib/Makefile.in: Regenerate.
4242 * gnulib/extra/update-copyright: Update.
4243 * gnulib/m4/gnulib-cache.m4: Update.
4244 * gnulib/m4/gnulib-comp.m4: Update.
4245
7f533142
JB
42462012-04-18 Tristan Gingold <gingold@adacore.com>
4247
4248 * configure.ac (aix): Put -lpthread into libs.
4249 * configure: Regenerate.
4250
001822aa
TT
42512012-04-18 Tom Tromey <tromey@redhat.com>
4252
4253 * linespec.c (convert_linespec_to_sals): Don't use
4254 SYMBOL_OBJ_SECTION.
4255 (compare_msymbols): Arguments are minsym_and_objfile, not
4256 minimal_symbol*. Don't use SYMBOL_OBJ_SECTION.
4257
db026a31
PA
42582012-04-18 Pedro Alves <palves@redhat.com>
4259
4260 Revert gnulib/ part of:
4261 2011-01-01 Joel Brobecker <brobecker@adacore.com>
4262 Copyright year update in most files (performed by copyright.sh).
4263
12df843f
JK
42642012-04-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4265
4266 Fix 64-bit constants on 32-bit hosts.
4267 * dwarf2read.c (read_unsigned_leb128): Change declaration return type
4268 from unsigned long to ULONGEST.
4269 (read_signed_leb128): Change declaration return type from long to
4270 LONGEST.
4271 (dwarf2_const_value_attr): Change declaration parameter value from long
4272 to LONGEST.
4273 (dwarf2_compute_name): Change variable value from long to LONGEST.
4274 (read_unsigned_leb128): Change return type, variable result and some
4275 casts from unsigned long to ULONGEST.
4276 (read_signed_leb128): Change return type, variable result and some
4277 casts from long to LONGEST.
4278 (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
4279 value from long to LONGEST.
4280 (dwarf2_const_value): Change variable value from long to LONGEST.
4281 * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
4282 plongest and hex_string.
4283 * symtab.h (struct general_symbol_info): Change ivalue from long to
4284 LONGEST, remove the comment.
4285 * tracepoint.c (validate_actionline, collect_symbol, scope_info):
4286 Change SYMBOL_VALUE format strings to use plongest and hex_string.
4287
14e75d8e
JK
42882012-04-18 Siddhesh Poyarekar <siddhesh@redhat.com>
4289
4290 PR symtab/7259:
4291 * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
4292 * ada-lang.c (ada_discrete_type_high_bound)
ac4ea3c2
JK
4293 (ada_discrete_type_low_bound): Fix function comment. Use
4294 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
14e75d8e
JK
4295 (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
4296 (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
4297 * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
4298 Use TYPE_FIELD_ENUMVAL.
4299 * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
4300 (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
4301 * c-typeprint.c (c_type_print_base): Move variable lastval to inner
4302 block, change it to LONGEST. Use TYPE_FIELD_ENUMVAL for
4303 TYPE_CODE_ENUM.
4304 * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
4305 * dwarf2read.c (process_enumeration_scope): Likewise.
4306 * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
4307 field.bitpos.
4308 (class StructMainTypePrettyPrinter): Support also
4309 FIELD_LOC_KIND_ENUMVAL.
4310 * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
4311 TYPE_CODE_ENUM.
4312 (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
4313 (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
4314 * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
4315 (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment. New
4316 field enumval.
4317 (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
4318 accommodate enumval.
4319 (struct call_site): Adjust loc_kind to accommodate enumval.
4320 (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
4321 (TYPE_FIELD_ENUMVAL): New macros.
4322 * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
4323 * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
4324 TYPE_CODE_ENUM.
4325 * p-typeprint.c (pascal_type_print_base): Likewise.
4326 * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
4327 enumval.
4328 * python/lib/gdb/types.py (make_enum_dict): Likewise.
4329 * python/py-type.c (convert_field): New variable addrstring. Use
4330 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
4331 (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
4332 * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
4333 * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
4334 TYPE_CODE_ENUM.
4335 * valprint.c (generic_val_print): Likewise.
4336
380bca97
DE
43372012-04-17 Doug Evans <dje@google.com>
4338
dcc07052
DE
4339 * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
4340
380bca97
DE
4341 * dwarf2read.c: Whitespace fixes.
4342 (lookup_signatured_type): Tweak comment.
4343 (get_die_type_at_offset): Fix comment.
4344
ec92004f
JB
43452012-04-17 Joel Brobecker <brobecker@adacore.com>
4346
4347 * xcoffread.c (xcoff_secnum_to_sections): New function.
4348 (secnum_to_section, secnum_to_bfd_section): Reimplement
4349 using xcoff_secnum_to_sections. Rename "secnum" parameter
4350 into "n_scnum".
4351 (RECORD_MINIMAL_SYMBOL): Delete.
4352 (record_minimal_symbol): New function.
4353 (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
4354 by call to record_minimal_symbol and set misc_func_recorded
4355 to 1. Set last_csect_sec to the XCOFF section index instead
4356 of GDB's section_offset index. Update calls to
4357 prim_record_minimal_symbol_and_info to pass the BFD section
4358 as well.
4359
40301fb7
JB
43602012-04-17 Joel Brobecker <brobecker@adacore.com>
4361
4362 * xcoffread.c (read_xcoff_symtab): Delete variables
4363 last_csect_val and last_csect_sec and associated code.
4364
e0088cfd
DE
43652012-04-17 Doug Evans <dje@google.com>
4366
58d5e2c3
DE
4367 * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
4368 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
4369 * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
4370 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
4371
c27f5738
DE
4372 * cleanups.h: New file.
4373 * cleanups.c: New file.
4374 * Makefile.in (SFILES): Add cleanups.c.
4375 (HFILES_NO_SRCDIR): Add cleanups.h.
4376 (COMMON_OBS): Add cleanups.o.
4377 * defs.h (struct cleanup): Moved to cleanups.h.
4378 (do_cleanups,do_final_cleanups): Ditto.
4379 (discard_cleanups,discard_final_cleanups): Ditto
4380 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
4381 (save_cleanups,save_final_cleanups): Ditto.
4382 (restore_cleanups,restore_final_cleanups): Ditto.
4383 (null_cleanup): Ditto.
4384 (make_my_cleanup,make_my_cleanup2): Ditto.
4385 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
4386 * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
4387 (do_cleanups,do_final_cleanups): Ditto.
4388 (discard_cleanups,discard_final_cleanups): Ditto
4389 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
4390 (save_cleanups,save_final_cleanups): Ditto.
4391 (restore_cleanups,restore_final_cleanups): Ditto.
4392 (null_cleanup): Ditto.
4393 (make_my_cleanup,make_my_cleanup2): Ditto.
4394 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
4395
e0088cfd
DE
4396 * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
4397 make_my_cleanup.
4398 (make_cleanup_dyn_string_delete): Ditto.
4399 (make_cleanup_ui_file_delete): Ditto.
4400 (make_cleanup_ui_out_redirect_pop): Ditto.
4401 (make_cleanup_free_section_addr_info): Ditto.
4402 (make_cleanup_restore_integer): Ditto.
4403 (make_cleanup_unpush_target): Ditto.
4404 (make_cleanup_value_free_to_mark): Ditto.
4405 (make_cleanup_value_free): Ditto.
4406 (make_cleanup_free_so): Ditto.
4407
4dc84fd1
JK
44082012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4409
4410 New option "set debug auto-load".
4411 * NEWS: New commands "set debug auto-load" and "show debug auto-load".
4412 * auto-load.c (debug_auto_load, show_debug_auto_load: New.
4413 (auto_load_safe_path_vec_update)
4414 (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
4415 if DEBUG_AUTO_LOAD.
4416 (file_is_auto_load_safe): New parameters debug_fmt and ....
4417 Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
4418 (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
4419 caller by explanatory string.
4420 (_initialize_auto_load): Register "set debug auto-load".
4421 * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
4422 and ....
4423 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
4424 (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
4425 by explanatory string.
4426 * main.c (captured_main): Likewise.
4427 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
4428 (source_section_scripts): Likewise.
4429
bccbefd2
JK
44302012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4431
4432 New option "set auto-load safe-path".
4433 * NEWS: New commands "set auto-load safe-path"
4434 and "show auto-load safe-path".
4435 * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
4436 (auto_load_safe_path, auto_load_safe_path_vec)
4437 (auto_load_safe_path_vec_update, set_auto_load_safe_path)
4438 (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
4439 (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
4440 (source_gdb_script_for_objfile): New variable is_safe. Call
4441 file_is_auto_load_safe. Return if it is not.
4442 (struct loaded_script): New field loaded.
4443 (maybe_add_script): Add parameter loaded. Initialize SLOT with it.
4444 (print_script): Use LOADED indicator instead of FULL_PATH. Change
4445 output "Missing" to "No".
4446 (_initialize_auto_load): New variable cmd. Initialize
4447 auto_load_safe_path. Register "set auto-load safe-path",
4448 "show auto-load safe-path" and "add-auto-load-safe-path".
4449 * auto-load.h (maybe_add_script): Add parameter loaded.
4450 (file_is_auto_load_safe): New declaration.
4451 * config.in: Regenerate.
4452 * configure: Regenerate.
4453 * configure.ac: New parameters --with-auto-load-safe-path
4454 and --without-auto-load-safe-path.
4455 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
4456 (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
4457 * main.c (captured_main): Check file_is_auto_load_safe for
4458 LOCAL_GDBINIT.
4459 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
4460 variable is_safe. Call file_is_auto_load_safe. Return if it is not.
4461 (source_section_scripts): Call file_is_auto_load_safe. Return if it is
4462 not.
4463
bf88dd68
JK
44642012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4465
4466 auto-load: Implementation.
4467 * NEWS: New descriptions for "info auto-load",
4468 "info auto-load gdb-scripts", "info auto-load python-scripts",
4469 "info auto-load local-gdbinit" and "info auto-load libthread-db".
4470 Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
4471 and "show auto-load-scripts". New description for "set auto-load",
4472 "show auto-load", "set auto-load gdb-scripts",
4473 "show auto-load gdb-scripts", "set auto-load python-scripts",
4474 "show auto-load python-scripts", "set auto-load local-gdbinit",
4475 "show auto-load local-gdbinit", "set auto-load libthread-db" and
4476 "show auto-load libthread-db".
4477 * auto-load.c: Remove include python/python-internal.h. Add includes
4478 exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
4479 cli/cli-setshow.h.
4480 (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
4481 (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
4482 (gdbpy_global_auto_load): Rename to ...
4483 (global_auto_load): ... here.
4484 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
4485 (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
4486 (script_language_gdb, source_gdb_script_for_objfile): New.
4487 (struct loaded_script): New field language.
4488 (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
4489 LANGUAGE.
4490 (maybe_add_script): Add parameter language. Drop redundant
4491 entry.full_path initialization. Initialize entry.language and
4492 (*slot)->language.
4493 (auto_load_objfile_script): Change parameter suffix to language.
4494 Remove the call of maybe_add_script.
4495 Call language->source_script_for_objfile.
4496 (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
4497 New.
4498 (collect_matching_scripts): Adjust it for
4499 struct collect_matching_scripts_data.
4500 (auto_load_info_scripts_pattern_nl): New variable.
4501 (info_auto_load_scripts): Rename to ...
4502 (auto_load_info_scripts): ... here, add parameter language. Adjust it
4503 for struct collect_matching_scripts_data.
4504 (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
4505 (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
4506 (auto_load_show_cmdlist_get, info_auto_load_cmd)
4507 (auto_load_info_cmdlist_get): New.
4508 (_initialize_auto_load): Move add_info of "auto-load-scripts" to
4509 python/py-auto-load.c. New installment for "set auto-load gdb-scripts",
4510 "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
4511 "info auto-load local-gdbinit".
4512 * auto-load.h (struct script_language): New.
4513 (gdbpy_global_auto_load): Rename to ...
4514 (global_auto_load): ... here.
4515 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
4516 (auto_load_local_gdbinit_loaded): New declarations.
4517 (maybe_add_script): New parameter language.
4518 (auto_load_objfile_script): Change parameter suffix to language.
4519 (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
4520 (auto_load_info_scripts, auto_load_set_cmdlist_get)
4521 (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
4522 declarations.
4523 * linux-thread-db.c: Include auto-load.h and ctype.h.
4524 (auto_load_thread_db, show_auto_load_thread_db): New.
4525 (struct thread_db_info): New field filename.
4526 (delete_thread_db_info): Call xfree for FILENAME.
4527 (try_thread_db_load): Initialize FILENAME.
4528 (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
4529 if !AUTO_LOAD_THREAD_DB.
4530 (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
4531 (_initialize_thread_db): Install auto_load_thread_db
4532 as "set auto-load libthread-db" and install info_auto_load_libthread_db
4533 as "info auto-load libthread-db".
4534 * main.c (captured_main): Rename gdbpy_global_auto_load to
4535 global_auto_load. Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
4536 AUTO_LOAD_LOCAL_GDBINIT_LOADED.
4537 (print_gdb_help): Extend the help for 'local init file'.
4538 * python/py-auto-load.c: Remove a comment about gdb scripts extension.
4539 (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
4540 (auto_load_scripts): Rename to ...
4541 (auto_load_python_scripts): ... here, update the comment.
4542 (gdbpy_load_auto_script_for_objfile): New declaration.
4543 (show_auto_load_python_scripts, script_language_python)
4544 (gdbpy_load_auto_script_for_objfile): New.
4545 (source_section_scripts): Refactor the code.
4546 (load_auto_scripts_for_objfile): Rename to ...
4547 (gdbpy_load_auto_scripts_for_objfile): ... here, update the
4548 auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
4549 (info_auto_load_python_scripts): New.
4550 (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
4551 Rename "set auto-load-scripts" to "set auto-load python-scripts".
4552 Register "set auto-load-scripts" as its deprecated alias. Register
4553 "info auto-load python-scripts". Register "info auto-load-scripts" as
4554 its deprecated alias.
4555 (load_auto_scripts_for_objfile): Rename to ...
4556 (gdbpy_load_auto_scripts_for_objfile): ... here.
4557 * python/python.h (load_auto_scripts_for_objfile): Rename to ...
4558 (gdbpy_load_auto_scripts_for_objfile): ... here.
4559
e2207b9a
JK
45602012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4561
4562 auto-load: Move files.
4563 * Makefile.in (SFILES): Add auto-load.c.
4564 (HFILES_NO_SRCDIR): Add auto-load.h.
4565 (COMMON_OBS): Add auto-load.o.
4566 (distclean): Change .gdbinit for gdb-gdb.gdb.
4567 * auto-load.c: New file, with parts from python/py-auto-load.c.
4568 * auto-load.h: New file, with parts from python/python.h.
4569 * configure: Regenerate.
4570 * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
4571 * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
4572 * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
4573 * main.c: Include auto-load.h.
4574 * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
4575 command.h, observer.h and progspace.h to auto-load.c. Add include
4576 auto-load.h.
4577 (gdbpy_global_auto_load, struct auto_load_pspace_info)
4578 (struct loaded_script, auto_load_pspace_data)
4579 (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
4580 (hash_loaded_script_entry, eq_loaded_script_entry)
4581 (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
4582 (maybe_add_script): Move to auto-load.c.
4583 (source_section_scripts): Change maybe_add_script parameters passing,
4584 use script_not_found_warning_print.
4585 (clear_section_scripts, auto_load_objfile_script)
4586 (auto_load_new_objfile, loaded_script_ptr)
4587 (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
4588 (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
4589 (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
4590 auto_load_new_objfile and info_auto_load_scripts initizations to
4591 auto-load.c.
4592 * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
4593
e4ab2fad
JK
45942012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4595
4596 Code cleanup.
4597 * charset.c (find_charset_names): Remove variables ix and elt.
4598 Use free_char_ptr_vec.
4599 * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
4600 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
4601 debugdir_end. New variable debugdir_len.
4602 * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
4603 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
4604 declarations.
4605 * progspace.c (clear_program_space_solib_cache): Remove variables ix
4606 and elt. Use free_char_ptr_vec.
4607 * source.c (add_path): Remove variables argv, arg and argv_index.
4608 New variables dir_vec, back_to, ix and name.
4609 Use dirnames_to_char_ptr_vec_append. Use freeargv instead of
4610 make_cleanup_freeargv. Remove variable separator. Simplify the code
4611 no longer expecting DIRNAME_SEPARATOR.
4612 (openp): Remove variable p, p1 and len. New variables dir_vec,
4613 back_to, ix and dir. Use dirnames_to_char_ptr_vec. Simplify the code
4614 no longer expecting DIRNAME_SEPARATOR.
4615 * symfile.c (find_separate_debug_file): New variables debugdir_vec,
4616 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
4617 debugdir_end.
4618 * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
4619 (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
4620 (dirnames_to_char_ptr_vec): New functions.
4621
5ee4ed9f
JK
46222012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4623
4624 Code cleanup.
4625 * source.c (add_path): Remove always true conditional 'p == 0' and
4626 unindent its code block.
4627
f41f5e61
PA
46282012-04-17 Pedro Alves <palves@redhat.com>
4629
4630 * gdbtypes.h (FIELD_BITPOS): Rename to ...
4631 (FIELD_BITPOS_LVAL): ... this.
4632 (FIELD_BITPOS): New.
4633 (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
4634 * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
4635 * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
4636 SET_FIELD_BITPOS.
4637 * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
4638 SET_FIELD_BITPOS.
4639 * stabsread.c (read_cpp_abbrev, read_one_struct_field)
4640 (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
4641 * target-descriptions.c (tdesc_gdb_type): Adjust to use
4642 SET_FIELD_BITPOS.
4643
945b3a32
JK
46442012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4645
4646 Do not rely on FIELD_LOC_KIND_BITPOS being zero.
4647 * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
4648 TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
4649 * gdbtypes.c (append_flags_type_flag): Likewise, twice.
4650 * jv-lang.c (java_link_class_type): Likewise, once.
4651 * stabsread.c (read_enum_type): Likewise.
4652
42476b70
YQ
46532012-04-16 Yao Qi <yao@codesourcery.com>
4654
4655 * common/agent.c (agent_run_command): Add one more parameter `len'.
4656 Update callers.
4657 * common/agent.h: Update declaration.
4658 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
4659 Update.
4660 (linux_child_static_tracepoint_markers_by_strid): Ditto.
4661
8264ba82
AG
46622012-04-14 Anton Gorenkov <xgsa@yandex.ru>
4663
4664 PR mi/13393
4665 * value.c (value_actual_type): New function.
4666 * value.h (value_actual_type): New declaration.
4667 * varobj.c (update_type_if_necessary): New function.
4668 (varobj_create): Call value_actual_type instead of
4669 value_type.
4670 (install_dynamic_child): distinct changed and type changed MI variable
4671 objects.
4672 (update_dynamic_varobj_children): Updated for install_dynamic_child
4673 change. All callers updated.
a09130f9 4674 (varobj_update): Support for MI variable object type change if
8264ba82
AG
4675 the value changed and RTTI is used to determine the type.
4676 (create_child_with_value): Call value_actual_type instead of
4677 value_type.
a09130f9 4678 (adjust_value_for_child_access): Extended with a new parameter which
8264ba82
AG
4679 specify whether the given value should be casted to enclosing type.
4680 All callers updated.
4681
55a8c076
YQ
46822012-04-14 Yao Qi <yao@codesourcery.com>
4683
4684 Import gnulib module inttypes from git
4685 (250b80067c1e1d8faa0c42fb572f721975b929c5)
4686 * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
a09130f9
PA
4687 (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
4688 gnulib/m4/inttypes-pri.m4
55a8c076
YQ
4689 * aclocal.m4, config.in, configure: Regenerated.
4690 * gnulib/Makefile.am: Update.
4691 * gnulib/Makefile.in: Update.
4692 * gnulib/m4/gnulib-cache.m4: Update.
4693 * gnulib/m4/gnulib-comp.m4: Update.
4694 * gnulib/inttypes.in.h: New.
4695 * gnulib/m4/inttypes-pri.m4: New.
a09130f9 4696 * gnulib/m4/inttypes.m4: New.
55a8c076 4697
ca7781d2
LM
46982012-04-13 Luis Machado <lgustavo@codesourcery.com>
4699
4700 * infrun.c (resume): Update PC address to the real PC after
4701 preparing to do displaced stepping.
4702
e319fa28
DE
47032012-04-12 Doug Evans <dje@google.com>
4704
4705 * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
4706 All callers updated.
4707
15add3f5
MK
47082012-04-12 Mark Kettenis <kettenis@gnu.org>
4709
4710 * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
4711
52dc124a
DE
47122012-04-12 Doug Evans <dje@google.com>
4713
0e50663e
DE
4714 * dwarf2read.c (create_all_type_units): Renamed from
4715 create_debug_types_hash_table. All callers updated.
4716
52dc124a
DE
4717 * dwarf2read.c (create_signatured_type_table_from_index): Rename
4718 local type_sig to sig_type, type_offset to type_offset_in_tu.
4719 (hash_signatured_type): Renamed from hash_type_signature,
4720 all callers updated.
4721 (eq_signatured_type): Renamed from eq_type_signature,
4722 all callers updated.
4723 (create_debug_types_hash_table): Rename local type_sig to sig_type.
4724 (process_enumeration_scope): Ditto.
4725 (lookup_signatured_type_at_offset): Ditto.
4726 (load_full_type_unit, read_signatured_type): Ditto.
4727
248fd3bf
YQ
47282012-04-12 Yao Qi <yao@codesourcery.com>
4729
4730 * remote.c (async_remote_interrupt): Correct function name in
4731 debug message.
4732 (async_remote_interrupt_twice): Ditto.
4733
bc3aa6c3
DE
47342012-04-11 Yuanhui Zhang <asmwarrior@gmail.com>
4735
4736 * source.c (find_and_open_source): Consistently pass resulting
4737 full path through xfullpath.
4738
9e529e1d
JK
47392012-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4740
4741 Provide more specific displaced-stepping memory error message.
4742 * infrun.c (displaced_step_prepare): New variable status. Call
4743 target_read_memory instead of read_memory, provide more specific
4744 error message.
4745
82e0cec1
TG
47462012-04-11 Tristan Gingold <gingold@adacore.com>
4747
4748 PR gdb/13901
4749 * darwin-nat.c (darwin_execvp): Revert previous patch.
4750
d987a266
TG
47512012-04-11 Tristan Gingold <gingold@adacore.com>
4752
4753 PR gdb/13901
4754 * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
4755 in case of change.
4756
016b7430
TG
47572012-04-11 Tristan Gingold <gingold@adacore.com>
4758
4759 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
4760 warning.
4761
06fc020f
SCR
47622012-04-11 Siva Chandra Reddy <sivachandra@google.com>
4763
4764 New command 'explore' which helps explore values and types in
4765 scope.
4766 * NEWS: Add an entry about the new 'explore' command.
4767 * data-directory/Makefile.in: Add gdb/command/explore.py
4768 * python/lib/gdb/command/explore.py: Implemention of the 'explore'
a09130f9 4769 command using the GDB Python API.
06fc020f 4770
de0919f8 47712012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
34b192ce
MR
4772
4773 * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
4774 extension in jump target calculation.
4775
de0919f8 47762012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
9e8da49c
MR
4777
4778 * mips-tdep.c (mips32_next_pc): Handle JALX.
4779
2f26ef89
YQ
47802012-04-10 Yao Qi <yao@codesourcery.com>
4781
4782 * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
4783
2e505b66
YQ
47842012-04-10 Yao Qi <yao@codesourcery.com>
4785
4786 * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
4787 and gnulib/m4/gnulib-tool.m4.
4788
0d99eb77
DE
47892012-04-10 Doug Evans <dje@google.com>
4790
4791 * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
4792 (load_partial_dies): Clarify comment.
4793 (find_partial_die): Support rereading type units.
4794 Clarify CU handling, if we know offset is in CU, don't search for the
4795 containing CU. Add comment regarding memory waste.
4796
9a82b8ff
L
47972012-04-10 H.J. Lu <hongjiu.lu@intel.com>
4798
4799 * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
4800 i386/x32-avx and i386/x32-avx-linux.
4801 (i386/x32-expedite): New.
4802 (i386/x32-linux-expedite): Likewise.
4803 (i386/x32-avx-expedite): Likewise.
4804 (i386/x32-avx-linux-expedite): Likewise.
4805 ($(outdir)/i386/x32.dat): Likewise.
4806 ($(outdir)/i386/x32-linux.dat): Likewise.
4807 ($(outdir)/i386/x32-avx.dat): Likewise.
4808 ($(outdir)/i386/x32-avx-linux.dat): Likewise.
4809
4810 * features/i386/x32-avx-linux.xml: New file.
4811 * features/i386/x32-avx.xml: Likewise.
4812 * features/i386/x32-core.xml: Likewise.
4813 * features/i386/x32-linux.xml: Likewise.
4814 * features/i386/x32.xml: Likewise.
4815
4816 * features/i386/x32-avx-linux.c: New. Generated.
4817 * features/i386/x32-avx.c: Likewise.
4818 * features/i386/x32-linux.c: Likewise.
4819 * features/i386/x32.c: Likewise.
4820 * regformats/i386/x32-avx-linux.dat: Likewise.
4821 * regformats/i386/x32-avx.dat: Likewise.
4822 * regformats/i386/x32-linux.dat: Likewise.
4823 * regformats/i386/x32.dat: Likewise.
4824
ee41036f
TG
48252012-04-10 Tristan Gingold <gingold@adacore.com>
4826
4827 * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
4828 code to kill the inferior.
4829
a7aa5b8a
MK
48302012-04-09 Mark Kettenis <kettenis@gnu.org>
4831
4832 * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
4833 defines.
4834 * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
4835 defines.
a09130f9 4836 * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
a7aa5b8a
MK
4837 (yyvsp): New defines.
4838 * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
4839 defines.
4840 * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
4841 defines.
4842 * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
4843 defines.
4844 * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
4845 defines.
4846 * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
4847 defines.
4848
fb57d452
MK
48492012-04-09 Mark Kettenis <kettenis@gnu.org>
4850
a09130f9 4851 * sparc64-tdep.c (sparc64_store_arguments)
fb57d452
MK
4852 (sparc64_store_arguments): Fix coding style.
4853
cdc7b32f
MK
48542012-04-07 Mark Kettenis <kettenis@gnu.org>
4855
4856 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
4857 complex floats, adjust some related comments and tighten a related
4858 assertion.
4859 (sparc64_extract_return_value): Handle complex floats.
4860
7adf1e79
DE
48612012-04-07 Doug Evans <dje@google.com>
4862
4863 * dwarf2read.c (load_partial_dies): Change condition to assert.
4864
50f1ae7b
DE
48652012-04-06 Doug Evans <dje@google.com>
4866
4867 * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
4868 "mov %rsp,%rbp".
4869
55fa75c3
KB
48702012-04-05 Kevin Buettner <kevinb@redhat.com>
4871
4872 * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
4873 fencepost error.
4874 (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
4875 (v850_gdbarch_init): Set `num_regs' as appropriate for the
4876 architecture.
4877
40e084e1
KS
48782012-04-05 Keith Seitz <keiths@redhat.com>
4879
4880 * linespec.c (decode_compound): Remove.
4881 (enum offset_relative_sign): New enum.
4882 (struct line_offset): New struct.
4883 (struct linespec): New struct.
4884 (struct linespec_state): Move file_symtabs,
4885 user_filename, and user_function into struct linespec.
4886 Make result an anonymous struct holding vectors of
4887 symbolp and minsym_and_objfile_d.
4888 Add language member.
4889 (enum ls_token_type): New enum.
4890 (linespec_keywords): New array.
4891 (struct ls_token): New struct.
4892 (struct ls_parser): New struct.
4893 (linespec_lexer_lex_number): New function.
4894 (linespec_lexer_lex_keyword): New function.
4895 (is_ada_operator): New function.
4896 (skip_quote_char): New function.
4897 (copy_token_string): New function.
4898 (is_closing_quote_enclosed): New function.
4899 (find_parameter_list_end): New function.
4900 (linespec_lexer_lex_string): New function.
4901 (linespec_lexer_lex_one): New function.
4902 (linespec_lexer_consume_token): New function.
4903 (linespec_lexer_peek_token): New function.
4904 (cplusplus_error): Remove unused function.
4905 (find_methods): Update comment.
4906 (find_toplevel_char): Return const.
4907 (is_objc_method_format): Remove unused function.
4908 (find_toplevel_string): New function.
4909 (is_linespec_boundary): Remove.
4910 (symbol_not_found_error): New function.
4911 (find_method_overload_end): Remove function.
4912 (unexpected_linespec_error): New function.
4913 (keep_name_info): Remove.
4914 (linespec_parse_line_offset): New function.
4915 (linespec_parse_basic): New function.
4916 (canonicalize_linespec): New function.
4917 (decode_line_internal): Remove.
4918 (create_sals_line_offset): New function adapted from
4919 decode_all_digits.
4920 (convert_linespec_to_sals): New function.
4921 (parse_linespec): New function.
4922 (linespec_parser_new): New function.
4923 (linespec_state_destructor): Change parameter type to
4924 struct linespec_state *.
4925 Add language parameter.
4926 Remove freeing of moved members.
4927 (linespec_parser_delete): New function.
4928 (decode_line_full): Use parse_linespec and linespec_parser_new.
4929 (decode_line_1): Likewise.
4930 (decode_indirect): Rename to ...
4931 (linespec_expression_to_pc): ... this and rewrite
4932 to simply find CORE_ADDR, storing this result for later
4933 conversion to SALs.
4934 (locate_first_half): Remove.
4935 (deocde_objc): Add parameter LS.
4936 Initialize new struct collect_info members.
4937 Handle minimal symbols, too.
4938 (decode_compound): Delete.
4939 (lookup_prefix_sym): Rewrite.
4940 (compare_msymbols): New function.
4941 (find_method): Rewrite.
4942 Do not call cplusplus_error.
4943 (symtabs_from_filename): Rewrite.
4944 (collect_function_symbols): Delete.
4945 (find_function_symbols): Rewrite without ARGPTR-style
4946 processing.
4947 (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
4948 (decode_dollar): Adapted and renamed to ...
4949 (linespec_parse_variable): ... this.
4950 (find_linespec_symbols): New function.
4951 (decode_label): Adapted and renamed to ...
4952 (find_label_symbols): ... this.
4953 (decode_digits_list_mode): Add and use LS argument.
4954 (decode_digits_ordinary): Likewise.
4955 (collect_symbols): Do not collect SALs, just symbols and msymbols.
4956 If in list mode, allow any symbol class. Otherwise, only
4957 permit LOC_BLOCK symbols.
4958 (minsym_found): Update comments.
4959 (search_minsyms_for_name): Do not convert the matching symbol
4960 into a SAL. Simply push the symbol and objfile into the
4961 result vector.
4962 (decode_variable): Delete. Contents adapted into
4963 find_linespec_symbols.
4964
4965 * cp-support.c (SKIP_SPACE): Remove.
4966 (operator_tokens): Remove unused global.
4967 (cp_validate_operator): Remove.
4968 * cp-support.h (cp_validate_operator): Remove declaration.
4969
a72c8f6a
JK
49702012-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4971
4972 * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
4973 for TYPE_VPTR_FIELDNO.
4974 * valprint.c (valprint_check_validity): Make it global, move the
4975 function comment ...
4976 * value.h (valprint_check_validity): ... to this new declaration.
4977
cf9bb588
TG
49782012-04-02 Tristan Gingold <gingold@adacore.com>
4979
4980 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
4981 the STATE32 api for i386 state.
4982 (i386_darwin_store_inferior_registers): Likewise.
4983
17092398
TG
49842012-04-02 Tristan Gingold <gingold@adacore.com>
4985
4986 * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
4987 SS offset.
4988 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
4989 format_string.
4990
ece0061f
TG
49912012-04-02 Tristan Gingold <gingold@adacore.com>
4992
4993 PR gdb/13901
d987a266 4994 * darwin-nat.c (darwin_execvp): Set binary preference.
ece0061f 4995
cf65ecd3
JK
49962012-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4997
4998 * NEWS (set breakpoint condition-evaluation): Use imperative mood.
4999
9bc3523d
TT
50002012-03-30 Tom Tromey <tromey@redhat.com>
5001
5002 * python/python.c (gdbpy_decode_line): Move cleanup creation out
5003 of TRY_CATCH. Fix error handling.
5004 * python/py-value.c (convert_value_from_python): Move 'old'
5005 declaration to innermost scope.
5006
b1ed564a
JB
50072012-03-29 Joel Brobecker <brobecker@adacore.com>
5008 Andrey Smirnov <andrew.smirnov@gmail.com>
5009
5010 -Wshadow warning fix.
5011 * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
5012 "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
5013 Adjust code accordingly.
5014
cb8e9b97
JB
50152012-03-29 Joel Brobecker <brobecker@adacore.com>
5016
5017 * ada-lang.c (symbol_completion_add): Rename parameter
5018 "encoded" into "encoded_p". Ajust code and documentation
5019 accordingly.
5020
c0af1706
JB
50212012-03-29 Joel Brobecker <brobecker@adacore.com>
5022 Andrey Smirnov <andrew.smirnov@gmail.com>
5023
5024 -Wshadow warning fix.
5025 * ada-lang.c (symbol_completion_add): Rename parameter
5026 "wild_match" into wild_match_p. Update code and documentation
5027 accordingly.
5028
6ea35997
JB
50292012-03-29 Joel Brobecker <brobecker@adacore.com>
5030
5031 * ada-lang.c (symbol_completion_match): Rename parameter
5032 "encoded" into "encoded_p". Ajust code and documentation
5033 accordingly.
5034
e701b3c0
JB
50352012-03-29 Joel Brobecker <brobecker@adacore.com>
5036 Andrey Smirnov <andrew.smirnov@gmail.com>
5037
5038 -Wshadow warning fix.
5039 * ada-lang.c (symbol_completion_match): Rename parameter
5040 "wild_match" into "wild_match_p". Adjust code and function
5041 documentation accordingly.
5042
5e2336be
JB
50432012-03-29 Joel Brobecker <brobecker@adacore.com>
5044 Andrey Smirnov <andrew.smirnov@gmail.com>
5045
5046 -Wshadow warning fix.
5047 * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
5048 "symbol_info" into "info". Adjust code accordingly.
5049 (ada_lookup_symbol): Likewise.
5050
9f88c959
JB
50512012-03-29 Joel Brobecker <brobecker@adacore.com>
5052
5053 * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
5054 of this function's documentation.
5055
82ccd55e
JB
50562012-03-29 Joel Brobecker <brobecker@adacore.com>
5057 Andrey Smirnov <andrew.smirnov@gmail.com>
5058
5059 -Wshadow warning fix.
5060 * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
5061 variable into "wild_match_p". Adjust code accordingly.
5062
d0a8ab18
JB
50632012-03-29 Joel Brobecker <brobecker@adacore.com>
5064 Andrey Smirnov <andrew.smirnov@gmail.com>
5065
5066 -Wshadow warning fix.
5067 * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
5068 parameter into "wild_match_p". Adjust code accordingly.
5069 Document this parameter in the function description.
5070
48b78332
JB
50712012-03-29 Joel Brobecker <brobecker@adacore.com>
5072 Andrey Smirnov <andrew.smirnov@gmail.com>
5073
5074 -Wshadow warning fix.
5075 * ada-lang.c (add_symbols_from_enclosing_procs): Rename
5076 "wild_match" parameter to "wild_match_p" (-Wshadow).
5077
2e6e0353
JB
50782012-03-29 Joel Brobecker <brobecker@adacore.com>
5079
5080 * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
5081 in function documentation.
5082
dc4024cd
JB
50832012-03-29 Joel Brobecker <brobecker@adacore.com>
5084 Andrey Smirnov <andrew.smirnov@gmail.com>
5085
5086 -Wshadow warning fix.
5087 * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
5088 variable into wild_match_p. Adjust code accordingly.
5089
6c88661c
JB
50902012-03-29 Joel Brobecker <brobecker@adacore.com>
5091 Andrey Smirnov <andrew.smirnov@gmail.com>
5092
5093 * ada-valprint.c (ada_val_print_1): Move the code handling
5094 TYPE_CODE_ENUM inside its own lexical block. Declare
5095 variables len and val there, instead of in the function's
5096 top level block. Avoid declaring deref_val again in a way
5097 that shadows another variable of the same name declared
5098 in one of the up-level blocks. Just re-use the up-level
5099 variable instead.
5100
4e5c77fe
JB
51012012-03-29 Joel Brobecker <brobecker@adacore.com>
5102
5103 * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
5104 Replace block_found argument by symbol_info. Adjust
5105 implementation accordingly. Add function documentation.
5106 (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
5107 Fix documentation.
5108 * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
5109 * ada-exp.y (write_object_renaming): Adjust to new
5110 ada_lookup_encoded_symbol API.
5111
1c0ac8c7
JB
51122012-03-29 Joel Brobecker <brobecker@adacore.com>
5113
5114 * ada-lang.h (struct ada_symbol_info): Reformat. Improve
5115 documentation.
5116
2aaed979
KB
51172012-03-28 Rathish C <rathish.c@kpitcummins.com>
5118
5119 * v850-tdep.c: Add the enum values for mpu and fpu registers.
5120 (v850_register_name): Add the mpu and fpu register names.
5121 (v850e_register_name): Add the mpu and fpu register names.
5122 (v850e2_register_name): New function.
a09130f9 5123 (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
2aaed979
KB
5124 bfd_mach_v850e2v3.
5125
927fbba6
JB
51262012-03-28 Joel Brobecker <brobecker@adacore.com>
5127
5128 * NEWS: Add entry for Ada varobj support.
5129
d32cafc7
JB
51302012-03-28 Joel Brobecker <brobecker@adacore.com>
5131
5132 * varobj.c (default_value_is_changeable_p): New function,
5133 extracted from varobj_value_is_changeable_p. Add declaration.
5134 (ada_value_is_changeable_p): New function, extracted from
5135 varobj_value_is_changeable_p. Add declaration.
5136 (struct language_specific): New field "value_is_changeable_p".
5137 (languages): Add entries for new field.
5138 (varobj_create): Set language before calling install_new_value.
5139 (varobj_value_is_changeable_p): Reimplement to call the varobj's
5140 "value_is_changeable_p" language callback.
5141
181875a4
JB
51422012-03-28 Joel Brobecker <brobecker@adacore.com>
5143
5144 * ada-varobj.h, ada-varobj.c: New files.
5145 * Makefile.in (SFILES): Add ada-varobj.c.
5146 (HFILES_NO_SRCDIR): Add ada-varobj.h.
5147 (COMMON_OBS): Add ada-varobj.o.
5148
7a290c40
JB
51492012-03-28 Joel Brobecker <brobecker@adacore.com>
5150
5151 * varobj.c (ada_value_has_mutated): Add declaration. New function.
5152 (struct language_specific): New field "value_has_mutated".
5153 (languages): Set field "value_has_mutated" in each entry of array.
5154 (varobj_value_has_mutated): New function.
5155 (varobj_udpdate): Add handling of type mutation.
5156 (value_of_root): Add handling of type mutation.
5157 (ada_value_has_mutated): New function.
5158
ca9b8b9c
PA
51592012-03-28 Pedro Alves <palves@redhat.com>
5160
5161 * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
5162 Always supply $fr0 as 0.0 and $fr1 as 1.0.
5163
cc0265cd
TT
51642012-03-28 Tom Tromey <tromey@redhat.com>
5165
5166 * python/py-inferior.c (infpy_read_memory): Remove cleanups and
5167 explicitly free 'buffer' on exit paths. Decref 'membuf_object'
5168 before returning.
5169
3ad2ec6f
TT
51702012-03-28 Tom Tromey <tromey@redhat.com>
5171
5172 * .dir-locals.el: New file.
5173
4a6510ba
PA
51742012-03-28 Pedro Alves <palves@redhat.com>
5175
5176 * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
5177
5a75128f
JB
51782012-03-28 Joel Brobecker <brobecker@adacore.com>
5179
5180 * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
5181 handling for r0.
5182
f99d8bf4
PA
51832012-03-27 Pedro Alves <palves@redhat.com>
5184
5185 Eliminate struct ui_stream.
5186
5187 * ui-out.h (struct ui_stream): Delete.
5188 (ui_out_field_stream): Adjust prototype.
5189 (ui_out_stream_new, ui_out_stream_delete)
5190 (make_cleanup_ui_out_stream_delete): Delete declarations.
5191 * ui-out.c (ui_out_field_stream): Change prototype to take a
5192 ui_file instead of a ui_stream. Adjust.
5193 (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
5194 (make_cleanup_ui_out_stream_delete): Delete.
5195 * breakpoint.c (print_breakpoint_location)
5196 (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
5197 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
5198 * disasm.c (dump_insns): Ditto.
5199 (do_mixed_source_and_assembly, do_assembly_only): Adjust
5200 prototype.
5201 (gdb_disassembly): Use ui_file/mem_fileopen instead of
5202 ui_stream/ui_out_stream_new.
5203 * infcmd.c (print_return_value): Ditto.
5204 * osdata.c (info_osdata_command): Don't allocate a local
5205 ui_stream.
5206 * stack.c (print_frame_arg, print_frame_args, print_frame): Use
5207 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
5208 * tracepoint.c (print_one_static_tracepoint_marker): Don't
5209 allocate a local ui_stream.
5210 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
5211 instead of ui_stream/ui_out_stream_new.
5212 (list_args_or_locals): Don't allocate a local ui_stream.
5213 * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
5214 (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
5215 ui_stream/ui_out_stream_new.
5216 * cli/cli-setshow.c (do_setshow_command): Ditto.
5217
6350a066 52182012-03-27 Oza Pawandeep <oza.pawandeep@gmail.com>
72508ac0 5219
6350a066
PA
5220 * arm-linux-tdep.c (arm_linux_init_abi): Call
5221 set_gdbarch_process_record. Initialize `arm_swi_record' field.
5222 * arm-tdep.c (arm_process_record): New function.
5223 (deallocate_reg_mem): New function.
5224 (decode_insn): New function.
5225 (thumb_record_branch): New function.
5226 (thumb_record_ldm_stm_swi(): New function.
5227 (thumb_record_misc): New function.
5228 (thumb_record_ld_st_stack): New function.
5229 (thumb_record_ld_st_imm_offset): New function.
5230 (thumb_record_ld_st_reg_offset(): New function.
5231 (thumb_record_add_sub_cmp_mov): New function.
5232 (thumb_record_shift_add_sub): New function.
5233 (arm_record_coproc_data_proc): New function.
5234 (arm_record_coproc): New function.
5235 (arm_record_b_bl): New function.
5236 (arm_record_ld_st_multiple): New function.
5237 (arm_record_ld_st_reg_offset): New function.
5238 (arm_record_ld_st_imm_offset): New function.
5239 (arm_record_data_proc_imm): New function.
5240 (arm_record_data_proc_misc_ld_str): New function.
5241 (arm_record_extension_space): New function.
5242 (arm_record_strx): New function.
5243 (sbo_sbz): New function.
5244 (struct insn_decode_record): New structure for arm insn record.
5245 (REG_ALLOC): New macro for reg allocations.
5246 (MEM_ALLOC): New macro for memory allocations.
5247 * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
72508ac0 5248
89e028e2
AS
52492012-03-27 Andreas Schwab <schwab@linux-m68k.org>
5250
5251 * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
5252 (store_register): Likewise.
5253
6350a066 52542012-03-26 Oza Pawandeep <oza.pawandeep@gmail.com>
3d9a9eb0 5255
6350a066 5256 * MAINTAINERS (Write After Approval): Add myself to the list.
3d9a9eb0 5257
5b43fab2
JK
52582012-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
5259
5260 * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
5261 Describe also the option "auto".
5262
b5453b95
RH
52632012-03-22 Richard Henderson <rth@redhat.com>
5264
5265 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
5266 * sparc-nat.c (sparc_xfer_wcookie): Make static.
5267
227ee7fc
RH
52682012-03-22 Richard Henderson <rth@redhat.com>
5269
5270 * jit.c (jit_read_code_entry): Compute alignment and offset of
5271 int64_t member before computing entry_size.
5272
7b282c5a
SCR
52732012-03-22 Siva Chandra Reddy <sivachandra@google.com>
5274
5275 Python scripting: Add new method Value.referenced_value to
5276 gdb.Value which can dereference pointer as well as reference
5277 values.
5278 * NEWS: Add entry under 'Python scripting' about the new method
5279 Value.referenced_value on gdb.Value objects.
5280 * python/py-value.c (valpy_referenced_value): New function
5281 defining a new method on gdb.Value objects which can dereference
5282 pointer and reference values.
5283
0c83539f
SCR
52842012-03-22 Siva Chandra Reddy <sivachandra@google.com>
5285
5286 * MAINTAINERS (Write After Approval): Add myself to the list.
5287
7ccffd7c
KB
52882012-03-21 Kevin Buettner <kevinb@redhat.com>
5289
5290 * symtab.c (skip_prologue_sal): Change test to check for "main()"
5291 in addition to "main".
5292
bd0b9f9e
JB
52932012-03-21 Joel Brobecker <brobecker@adacore.com>
5294
5295 * expression.h (op_name): Add declaration.
5296 * expprint.c (op_name): Remove declaration. Make non-static.
5297 * ax-gdb.c (gen_expr): Use op_name instead of op_string.
5298
a5362b9a
TS
52992012-03-21 Thomas Schwinge <thomas@codesourcery.com>
5300
5301 * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
5302 of struct siginfo.
5303 * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
5304 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
5305 * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
5306 (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
5307 (linux_nat_get_siginfo): Likewise.
5308 * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
5309 (linux_nat_get_siginfo): Likewise.
5310 * linux-tdep.c (linux_get_siginfo_type): Likewise.
5311 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
5312 * procfs.c (gdb_siginfo_t): Likewise.
5313
adcadaab
MF
53142012-03-21 Mike Frysinger <vapier@gentoo.org>
5315
5316 * .gitignore: Ignore more files.
5317
e278ad5b
PA
53182012-03-20 Pedro Alves <palves@redhat.com>
5319
5320 * remote.c (remote_start_remote): Clear `rs->starting_up' on early
5321 returns.
5322
741e63d7
YQ
53232012-03-20 Yao Qi <yao@codesourcery.com>
5324
5325 * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
5326 comment.
5327
b64f50a1
JK
53282012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
5329
5330 Code cleanupp: Use cu_offset and sect_offset compile time type checking.
5331 * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
5332 (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
5333 sect_offset.
5334 * dwarf2expr.h (cu_offset, sect_offset): New types.
5335 (struct dwarf_expr_context_funcs) <dwarf_call>
5336 (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
5337 sect_offset.
5338 (struct dwarf_expr_context) <len>: Improve the comment.
5339 (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
5340 cu_offset and sect_offset.
5341 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
5342 (dwarf_expr_get_base_type, needs_frame_dwarf_call)
5343 (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
5344 * dwarf2loc.h: Include dwarf2expr.h.
5345 (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
5346 and sect_offset.
5347 * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
5348 Improve the comment.
5349 (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
5350 (struct signatured_type, struct line_header, struct partial_die_info)
5351 (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
5352 (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
5353 (get_die_type_at_offset, create_cus_from_index)
5354 (create_signatured_type_table_from_index, dw2_get_file_names)
5355 (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
5356 (read_and_check_comp_unit_head, read_and_check_type_unit_head)
5357 (create_debug_types_hash_table, process_psymtab_comp_unit)
5358 (load_partial_comp_unit, create_all_comp_units)
5359 (partial_die_parent_scope, partial_die_full_name, skip_one_die)
5360 (load_full_comp_unit, dwarf2_physname, read_import_statement)
5361 (inherit_abstract_dies, read_func_scope, read_call_site_scope)
5362 (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
5363 (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
5364 (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
5365 (find_partial_die, read_attribute_value, lookup_die_type)
5366 (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
5367 (is_ref_attr): New function comment.
5368 (dwarf2_get_ref_die_offset): New function comment, new variable retval.
5369 Use cu_offset and sect_offset.
5370 (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
5371 (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
5372 (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
5373 (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
5374 (offset_and_type_hash, offset_and_type_eq, set_die_type)
5375 (get_die_type_at_offset, partial_die_hash, partial_die_eq)
5376 (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
5377 sect_offset.
5378
e97a38f7
JK
53792012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
5380
5381 Code cleanup.
5382 * python/py-auto-load.c (source_section_scripts): New variable back_to.
5383 Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
5384 with xfree.
5385 (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
5386
8320cc4f
JK
53872012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
5388
5389 * NEWS: Describe new options --init-command=FILE, -ix and
5390 --init-eval-command=COMMAND, -iex.
5391 * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
5392 CMDARG_INIT_COMMAND.
5393 (captured_main): New enum items OPT_IX and OPT_IEX. Add
5394 "init-command", "init-eval-command", "ix" and "iex" to the variable
5395 long_options. Handle OPT_IX and OPT_IEX. Process them from CMDARG_VEC.
5396 New comment for CMDARG_FILE and CMDARG_COMMAND processing.
5397 (print_gdb_help): Describe --init-command=FILE, -ix and
5398 --init-eval-command=COMMAND, -iex.
5399
26743505
JK
54002012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
5401
5402 Code cleanup.
5403 * main.c (struct cmdarg): Move it here from main. Add more comments.
5404 (cmdarg_s, VEC (cmdarg_s)): New.
5405 (main): Move struct cmdarg from here. New variables cmdarg_vec and
5406 cmdarg_p. Remove variables cmdsize and ncmd and their initialization.
5407 Install cleanup for cmdarg_vec. Update filling for options 'x' and
5408 'X'. Replace cmdarg processing by cmdarg_vec processing. Remove xfree
5409 of CMDARG.
5410
5ff5c7b4
TT
54112012-03-19 Tom Tromey <tromey@redhat.com>
5412
5413 * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
5414
ab260dad
JK
54152012-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
5416
5417 PR symtab/13777
5418 * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
5419 GCC >=4.5.
5420
c366c1f0
TT
54212012-03-16 Chris January <chris.january@allinea.com>
5422
5423 * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
5424 of clear.
5425
e16edb45
TT
54262012-03-16 Chris January <chris.january@allinea.com>
5427
5428 * source.c (add_path): Use memmove instead of strcpy because the
5429 strings overlap.
5430
53ba8333
JB
54312012-03-16 Joel Brobecker <brobecker@adacore.com>
5432
5433 * value.h (set_value_parent): Add declaration.
5434 * value.c (set_value_parent): New function.
5435 (value_address): If VALUE->PARENT is not NULL, then use it as
5436 the base address instead of VALUE->LOCATION.address.
5437 * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
5438 the same as OBJ's address. Adjust V's offset accordingly.
5439 Set V's parent.
5440
481860b3
GB
54412012-03-16 Gary Benson <gbenson@redhat.com>
5442
5443 PR breakpoints/10738
5444 * dwarf2read.c (use_deprecated_index_sections): New global.
5445 (struct partial_die_info): New member may_be_inlined.
5446 (read_partial_die): Set may_be_inlined where appropriate.
5447 (add_partial_subprogram): Add partial symbols for partial
5448 DIEs that may be inlined.
5449 (new_symbol_full): Add inlined subroutines to the current
5450 scope.
5451 (write_psymtabs_to_index): Bump version number.
5452 (dwarf2_read_index): Read only version 6 indices unless
5453 use_deprecated_index_sections is set.
5454 * linespec.c (symbol_and_data_callback): New structure.
5455 (iterate_inline_only): New function.
5456 (iterate_over_all_matching_symtabs): New argument
5457 "include_inline". If nonzero, also call the callback for
5458 symbols representing inlined subroutines.
5459 (lookup_prefix_sym): Pass extra argument to the above.
5460 (find_function_symbols): Likewise.
5461 (add_matching_symbols_to_info): Likewise.
5462 * NEWS: Mention that GDB can now set breakpoints on inlined
5463 functions.
5464
d0e7e15a
PM
54652012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
5466
5467 * p-typeprint.c (pascal_type_print_method_args):
5468 Fix display of parameter of methods.
5469
3d354654
PM
54702012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
5471
5472 * amd64-windows-nat.c (_initialize_amd64_windows_nat):
5473 Add missing prototype.
5474
cafe75b0
JK
54752012-03-16 Yao Qi <yao@codesourcery.com>
5476 Jan Kratochvil <jan.kratochvil@redhat.com>
5477
5478 Fix false compilation warning.
5479 * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
5480
25f8c692
JL
54812012-03-15 Jonathan Larmour <jifl@eCosCentric.com>
5482 Pedro Alves <pedro@codesourcery.com>
5483
5484 * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
5485 (arm_register_g_packet_guesses): New function.
5486 (arm_gdbarch_init): Don't force a target description with
5487 registers when the executable is detected as M-profile. Instead
5488 set gdbarch->tdep->is_m. Register `g' packet guesses.
5489 (_initialize_arm_tdep): Initialize the new target description.
5490 * features/arm-with-m-fpa-layout.xml: New description.
5491 * features/arm-with-m-fpa-layout.c: New, generated.
5492
35c63cd8
JB
54932012-03-15 Joel Brobecker <brobecker@adacore.com>
5494
5495 * breakpoint.c (breakpoint_xfer_memory): Add assertion.
5496 Update function description.
5497 (insert_bp_location): Do not wipe bl->target_info out.
5498 * mem-break.c: #include "gdb_string.h".
5499 (default_memory_insert_breakpoint): Do not call target_read_memory
5500 with a pointer to the breakpoint's shadow_contents buffer. Use
5501 a local buffer instead.
5502 * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
5503
57651221
TT
55042012-03-15 Tom Tromey <tromey@redhat.com>
5505
5506 * NEWS: Mention "info vtbl", not "info vtable".
5507 * cp-support.c (info_vtbl_command): Fix comment.
5508 (_initialize_cp_support): Fix text.
5509
410528f0
TT
55102012-03-15 Tom Tromey <tromey@redhat.com>
5511
5512 * cp-valprint.c (cp_print_value_fields): Use
5513 print_function_pointer_address for vtable slot.
5514
c4aeac85
TT
55152012-03-15 Tom Tromey <tromey@redhat.com>
5516
5517 * gnu-v3-abi.c (struct value_and_voffset): New.
5518 (hash_value_and_voffset, eq_value_and_voffset)
5519 (compare_value_and_voffset, compute_vtable_size)
5520 (print_one_vtable, gnuv3_print_vtable): New functions.
5521 (init_gnuv3_ops): Initialize 'print_vtable' field.
5522 * cp-support.c (info_vtbl_command): New function.
5523 (_initialize_cp_support): Add "info vtbl".
5524 * cp-abi.h (cplus_print_vtable): Declare.
5525 (struct cp_abi_ops) <print_vtable>: New field.
5526 * cp-abi.c (cplus_print_vtable): New function.
5527 * NEWS: Update.
5528
95cbceff
TT
55292012-03-15 Tom Tromey <tromey@redhat.com>
5530
5531 * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
5532 iterate_over_symbols.
5533
589b4a32
DE
55342012-03-14 Doug Evans <dje@google.com>
5535
5536 * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
5537 DW_OP_GNU_parameter_ref.
5538
e837f12a
JK
55392012-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5540
5541 Fix double prompt of 'interpreter-exec mi'.
5542 * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
5543 (mi_interpreter_resume): use it.
5544 (mi_execute_command_input_handler): New function.
5545 * mi/mi-main.c (mi_execute_command): Move prompt printing to
5546 mi_execute_command_input_handler.
5547
ff1e4526 55482012-03-13 Josh Matthews <josh@joshmatthews.net> (tiny change)
c381a3f6
JB
5549
5550 * darwin-nat-info.c (_initialize_darwin_info_commands): Add
5551 prototype.
5552 (darwin_debug_port_info): Make static.
5553 * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
5554 * machoread.c (_initialize_machoread): Add prototype.
5555 * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
5556 (i386_darwin_set_control, i386_darwin_get_control)
5557 i386_darwin_dr_set_addr, i386_darwin_get_addr)
5558 i386_darwin_get_status, i386_darwin_get_control):
5559 Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
5560
d8a5d6ee
JB
55612012-03-13 Joel Brobecker <brobecker@adacore.com>
5562
5563 * ax-gdb.c (gen_usual_unary): Remove special handling of
5564 enum and bool types.
5565
af381b8c
JB
55662012-03-13 Joel Brobecker <brobecker@adacore.com>
5567
5568 * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
5569
786c562f
JB
55702012-03-13 Joel Brobecker <brobecker@adacore.com>
5571
5572 * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
5573
e3ebf1bb
JB
55742012-03-13 Chris January <chris.january@allinea.com>
5575
5576 * aix-thread.c (fill_sprs): Store the floating point registers
5577 at the correct offsets into vals.
5578
c5b7e1cb
DE
55792012-03-13 Doug Evans <dje@google.com>
5580
16899756
DE
5581 * NEWS: Mention symbol-reloading has been deleted.
5582 * symfile.c (symbol_reloading): Delete.
5583 (show_symbol_reloading): Delete.
5584 (_initialize_symfile): Delete set/show symbol-reloading.
5585
c5b7e1cb
DE
5586 * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
5587 read_in_chain until we have successfully read it in.
5588 (load_full_comp_unit): Ditto.
5589 (read_signatured_type): Add comment.
5590
46cb6474
JB
55912012-03-13 Chris January <chris.january@allinea.com>
5592
5593 * stabsread.c (fix_common_block): Change type of valu argument
5594 to CORE_ADDR.
5595
76219d77
JB
55962012-03-13 Chris January <chris.january@allinea.com>
5597
5598 * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
5599 instruction.
5600
87b0bb13
JK
56012012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5602
5603 * common/linux-procfs.c (linux_proc_get_int): New, from
5604 linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
5605 field.
5606 (linux_proc_get_tgid): Only call linux_proc_get_int.
5607 (linux_proc_get_tracerpid): New.
5608 (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
5609 (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
5610 linux_proc_pid_has_state.
5611 * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
5612 * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
5613 (linux_ptrace_attach_warnings): New.
5614 * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
5615 New declaration.
5616 * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
5617 (linux_nat_attach): New variables ex, buffer, message and message_s.
5618 Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
5619
5f572dec
JK
56202012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5621
5622 * Makefile.in (linux-ptrace.o): New.
5623 * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
5624 from linux-nat.c.
5625 * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
5626 * common/linux-ptrace.c: New file.
5627 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
5628 * config/arm/linux.mh: Likewise.
5629 * config/i386/linux.mh: Likewise.
5630 * config/i386/linux64.mh: Likewise.
5631 * config/ia64/linux.mh: Likewise.
5632 * config/m32r/linux.mh: Likewise.
5633 * config/m68k/linux.mh: Likewise.
5634 * config/mips/linux.mh: Likewise.
5635 * config/pa/linux.mh: Likewise.
5636 * config/powerpc/linux.mh: Likewise.
5637 * config/powerpc/ppc64-linux.mh: Likewise.
5638 * config/powerpc/spu-linux.mh: Likewise.
5639 * config/s390/s390.mh: Likewise.
5640 * config/sparc/linux.mh: Likewise.
5641 * config/sparc/linux64.mh: Likewise.
5642 * config/xtensa/linux.mh: Likewise.
5643 * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
5644 common/linux-procfs.c.
5645 (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
5646
44f238bb
PA
56472012-03-13 Hui Zhu <teawater@gmail.com>
5648 Pedro Alves <palves@redhat.com>
5649
5650 * breakpoint.c (init_breakpoint_sal): New flags parameter. Handle
5651 CREATE_BREAKPOINT_FLAGS_INSERTED.
5652 (create_breakpoint_sal, create_breakpoints_sal)
5653 (base_breakpoint_create_breakpoints_sal)
5654 (tracepoint_create_breakpoints_sal)
5655 (strace_marker_create_breakpoints_sal): New flags parameter. Pass
5656 down.
5657 (break_command_1, handle_gnu_v3_exceptions, trace_command)
5658 (ftrace_command, strace_command): Adjust.
5659 (create_tracepoint_from_upload): Pass
5660 CREATE_BREAKPOINT_FLAGS_INSERTED.
5661 * breakpoint.h (enum breakpoint_create_flags): New.
5662 (create_breakpoint): New flags parameter.
5663 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
5664 * python/py-breakpoint.c (bppy_init): Adjust.
5665 * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
5666 * spu-tdep.c (spu_catch_start): Adjust.
5667
1e51243a
PA
56682012-03-13 Pedro Alves <palves@redhat.com>
5669 Hui Zhu <teawater@gmail.com>
5670 Yao Qi <yao@codesourcery.com>
5671
5672 * remote.c (struct remote_state): New field `starting_up'.
5673 (remote_start_remote): Set and clear it.
5674 (remote_can_download_tracepoint): If starting up, return false.
5675
fa3064dd
YQ
56762012-03-13 Yao Qi <yao@codesourcery.com>
5677
5678 * inferior.h (struct inferior): Remove fields any_syscall_count,
5679 syscalls_counts and total_syscalls_count. Move them to new
5680 struct catch_syscall_inferior_data in breakpoint.c.
5681 * breakpoint.c: Call DEF_VEC_I(int).
5682 (struct catch_syscall_inferior_data): New.
5683 (get_catch_syscall_inferior_data): New.
5684 (catch_syscall_inferior_data_cleanup): New.
5685 (insert_catch_syscall): Update to access data in
5686 struct catch_syscall_inferior_data.
5687 (insert_catch_syscall): Likewise.
5688 (remove_catch_syscall): Likewise.
5689 (remove_catch_syscall): Likewise.
5690 (is_syscall_catchpoint_enabled): Likewise.
5691 (add_catch_command): Likewise.
5692 (_initialize_breakpoint): Register cleanup.
5693 * breakpoint.h: Removed DEF_VEC_I(int).
5694 * dwarf2loc.c: Call DEF_VEC_I(int).
5695 * mi/mi-main.c: Likewise.
5696
460fac3c
MK
56972012-03-12 Mark Kettenis <kettenis@gnu.org>
5698
5699 * inf-ptrace.c (inf_ptrace_post_attach): Make static.
5700
e1aca11e
JB
57012012-03-12 Chris January <chris.january@allinea.com>
5702
5703 * aix-thread.c (_initialize_aix_thread): Add prototype.
5704 * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
5705 * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
5706
649c7061
JB
57072012-03-12 Joel Brobecker <brobecker@adacore.com>
5708
5709 * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
5710 include of "amd64-nat.h".
5711
0b49e518
TT
57122012-03-12 Tom Tromey <tromey@redhat.com>
5713
5714 * buildsym.c (record_pending_block): Now static.
5715 * buildsym.h: (record_pending_block): Remove.
5716
fd24fa94
AT
57172012-03-12 Andreas Tobler <andreast@fgznet.ch>
5718
5719 * amd64bsd-nat.c: Include amd64bsd-nat.h.
5720
ba919b58
TT
57212012-03-09 Tom Tromey <tromey@redhat.com>
5722
5723 * dwarf2read.c (struct dwarf2_cu) <checked_producer,
5724 producer_is_gxx_lt_4_6>: New fields.
5725 (producer_is_gxx_lt_4_6): Use and update producer cache fields.
5726
a48e046c
TT
57272012-03-09 Tom Tromey <tromey@redhat.com>
5728
5729 * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
5730
6f5e9362
JB
57312012-03-08 Joel Brobecker <brobecker@adacore.com>
5732
5733 * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
5734 prototype.
5735
8d037db9
JB
57362012-03-08 Joel Brobecker <brobecker@adacore.com>
5737
5738 * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
5739
4e841acf
JK
57402012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
5741
5742 Fix -Wmissing-prototypes build.
5743 * arm-linux-nat.c (get_thread_id): Make it static.
5744 * xtensa-linux-nat.c (get_thread_id): Likewise.
5745
c6030312
JB
57462012-03-08 Joel Brobecker <brobecker@adacore.com>
5747
5748 * server.c (process_point_options): If a conditional expression
5749 is found, only print a message if remote_debug is nonzero.
5750
52323be9
LM
57512012-03-08 Luis Machado <lgustavo@codesourcery.com>
5752
5753 * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
5754 of internal error for unknown/unsupported types.
5755
7fe25d9b
JK
57562012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
5757
5758 Fix CU relative vs. absolute DIE offsets.
5759 * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
5760 offset to offset_in_cu.
5761 * dwarf2read.c (process_enumeration_scope): Add CU offset to
5762 TYPE_OFFSET.
5763 (dwarf2_fetch_die_location_block): Rename parameter offset to
5764 offset_in_cu. New variable offset, add CU offset to OFFSET_IN_CU.
5765
05e7c244
JK
57662012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
5767
5768 * libunwind-frame.c: Rename to ...
5769 * ia64-libunwind-tdep.c: ... here.
5770 * libunwind-frame.h: Rename to ...
5771 * ia64-libunwind-tdep.h: ... here.
5772 * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
5773 ia64-libunwind-tdep.h.
5774 (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
5775 * README (--with-libunwind): Rename to ...
5776 (--with-libunwind-ia64): ... here, note it is ia64 specific now.
5777 * config.in: Regenerate.
5778 * configure: Regenerate.
5779 * configure.ac: New option --with-libunwind-ia64, make the
5780 AS_HELP_STRING ia64 specific. Deprecate option --with-libunwind.
5781 Remove AC_DEFINE for HAVE_LIBUNWIND.
5782 * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
5783 Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
5784 Rename libunwind-frame in the general comment.
5785 * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
5786 Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
5787 Move forward declarations inside #ifndef. Rename libunwind-frame in
5788 the general comment.
5789 * ia64-tdep.c: Rename libunwind-frame.h #include to
5790 ia64-libunwind-tdep.h.
5791 (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
5792 (ia64_libunwind_descr): Rename libunwind-frame to
5793 ia64-libunwind-tdep in these function comments.
5794 * ia64-tdep.h: Rename libunwind-frame.h #include to
5795 ia64-libunwind-tdep.h.
5796 * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
5797 ia64-libunwind-tdep in that data comment.
5798
3755cbfd
JK
57992012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
5800
5801 * libunwind-frame.h (struct frame_unwind): New declaration.
5802
d1cda5d9
JB
58032012-03-08 Joel Brobecker <brobecker@adacore.com>
5804
5805 * breakpoint.c (_initialize_breakpoint): Fix error in help of
5806 "set breakpoint condition-evaluation" command.
5807
a0ba0aa2
TG
58082012-03-08 Tristan Gingold <gingold@adacore.com>
5809
5810 * sparc-stub.c: Move to stubs/
5811 * sh-stub.c: Likewise.
5812 * m68k-stub.c: Likewise.
5813 * m32r-stub.c: Likewise.
5814 * i386-stub.c: Likewise.
5815
7b8b6d6d
AS
58162012-03-08 Andreas Schwab <schwab@linux-m68k.org>
5817
007cafee
AS
5818 * m68klinux-tdep.c (m68k_linux_init_abi): Register
5819 linux_get_siginfo_type.
5820
7b8b6d6d
AS
5821 * m68klinux-nat.c: Include "gdb_proc_service.h".
5822 (PTRACE_GET_THREAD_AREA): Define.
5823 (ps_get_thread_area): New function.
5824
bba74b36
YQ
58252012-03-08 Yao Qi <yao@codesourcery.com>
5826
5827 * remote.c (remote_get_noisy_reply): Replace `sprintf' with
5828 `xsnprintf'.
5829 (remote_query_attached): Likewise.
5830 (remote_static_tracepoint_marker_at): Likewise.
5831 (remote_set_permissions): Likewise.
5832 (remote_detach_1, extended_remote_attach_1): Likewise.
5833 (send_g_packet, remote_vkill): Likewise.
5834 (extended_remote_disable_randomization): Likewise.
5835 (remote_add_target_side_condition): Likewise.
5836 (remote_insert_breakpoint): Likewise.
5837 (remote_remove_breakpoint): Likewise.
5838 (remote_insert_watchpoint): Likewise.
5839 (remote_remove_watchpoint): Likewise.
5840 (remote_insert_hw_breakpoint): Likewise.
5841 (remote_insert_hw_breakpoint): Likewise.
5842 (remote_remove_hw_breakpoint): Likewise.
5843 (remote_download_command_source): Likewise.
5844 (remote_download_tracepoint): Likewise.
5845 (remote_download_trace_state_variable): Likewise.
5846 (remote_disable_tracepoint): Likewise.
5847 (remote_trace_set_readonly_regions): Likewise.
5848 (remote_get_tracepoint_status): Likewise.
5849 (remote_trace_find): Likewise.
5850 (remote_get_trace_state_variable_value): Likewise.
5851 (remote_set_disconnected_tracing): Likewise.
5852 (remote_set_circular_trace_buffer): Likewise.
5853 (remote_get_min_fast_tracepoint_insn_len): Likewise.
5854 (remote_use_agent): Likewise.
5855 (remote_add_target_side_condition): Add one parameter BUF_SIZE.
5856 Update callers.
5857
9b224c5e
PA
58582012-03-07 Pedro Alves <palves@redhat.com>
5859
5860 * NEWS: Mention QProgramSignals.
5861 * inferior.h (update_signals_program_target): Declare.
5862 * infrun.c: (update_signals_program_target): New.
5863 (handle_command): Update the target of the new program signals
5864 array changes.
5865 * remote.c (PACKET_QProgramSignals): New enum.
5866 (last_program_signals_packet): New global.
5867 (remote_program_signals): New.
5868 (remote_start_remote): Update the target with the program signals
5869 list.
5870 (remote_protocol_features): Add entry for QPassSignals.
5871 (remote_open_1): Free anc clear last_program_signals_packet.
5872 (init_remote_ops): Install remote_program_signals.
5873 * target.c (update_current_target): Adjust.
5874 (target_program_signals): New.
5875 * target.h (struct target_ops) <to_program_signals>: New field.
5876 (target_program_signals): Declare.
5877
74c48cbb
PA
58782012-03-07 Pedro Alves <palves@redhat.com>
5879
5880 * NEWS: Add subtitle for new z0/z1 conditional breakpoint
5881 extensions.
5882
0c13fc49
AS
58832012-03-07 Andreas Schwab <schwab@linux-m68k.org>
5884
5885 * m68klinux-nat.c (getregs_supplies): Make static.
5886 (getfpregs_supplies): Likewise.
5887 (have_ptrace_getregs): Likewise.
5888
1281d2a3
JB
58892012-03-06 Joel Brobecker <brobecker@adacore.com>
5890
5891 * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
5892 in call to get_die_type_at_offset.
5893
2b03b41d
SS
58942012-03-06 Stan Shebs <stan@codesourcery.com>
5895
5896 * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
5897 * mi/mi-cmd-disas.c: Ditto.
5898 * mi/mi-cmd-env.c: Ditto.
5899 * mi/mi-cmd-file.c: Ditto.
5900 * mi/mi-cmd-stack.c: Ditto.
5901 * mi/mi-cmd-target.c: Ditto.
5902 * mi/mi-cmd-var.c: Ditto.
5903 * mi/mi-cmds.c: Ditto.
5904 * mi/mi-cmds.h: Ditto.
5905 * mi/mi-console.c: Ditto.
5906 * mi/mi-getopt.c: Ditto.
5907 * mi/mi-getopt.h: Ditto.
5908 * mi/mi-interp.c: Ditto.
5909 * mi/mi-main.c: Ditto.
5910 * mi/mi-out.c: Ditto.
5911 * mi/mi-parse.c: Ditto.
5912 * mi/mi-parse.h: Ditto.
5913 * mi/mi-symbol-cmds.c: Ditto.
5914
5915 * mi/mi-getopt.h: Move mi_opt struct up.
5916 * mi/mi-main.c (captured_mi_execute_command): Remove redundant
5917 return.
5918 * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
5919
c988ad87
TT
59202012-03-06 Tom Tromey <tromey@redhat.com>
5921
5922 * proc-service.c (ps_pglobal_lookup): Set the current program
5923 space.
5924
1b7c1b10
PA
59252012-03-06 Pedro Alves <palves@redhat.com>
5926
5927 * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
5928
3c182069
JB
59292012-03-05 Joel Brobecker <brobecker@adacore.com>
5930
5931 * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
5932
2e794194
JK
59332012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5934
5935 Code cleanup.
5936 * common/linux-osdata.c (linux_common_core_of_thread): New function
5937 comment.
5938 * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
5939 call by linux_common_core_of_thread.
5940 (linux_nat_core_of_thread_1): Remove.
5941 * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
5942 * linux-thread-db.c: Include linux-osdata.h.
5943 (update_thread_core): Replace linux_nat_core_of_thread_1 call by
5944 linux_common_core_of_thread.
5945
9f9f1f31
TT
59462012-03-05 Tom Tromey <tromey@redhat.com>
5947
5948 * value.c (value_primitive_field): Don't fetch contents for
5949 non-virtual bases.
5950
b7b189f3
TT
59512012-03-05 Tom Tromey <tromey@redhat.com>
5952
5953 * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
5954
05b8a789 59552012-03-05 Andreas Arnez <arnez@linux.vnet.ibm.com>
5538f557 5956
5538f557
JB
5957 * s390-nat.c: Include "gregset.h".
5958
75528772
JK
59592012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5960
5961 * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
5962 [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
5963 (libunwind_load): New variable so_error, use it for dlerror. Try to
5964 load also LIBUNWIND_SO_7.
5965
275418ae
PA
59662012-03-05 Pedro Alves <palves@redhat.com>
5967
5968 * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
5969 is not NULL, and remove resulting dead code.
5970
5cbb9812
TS
59712012-03-05 Thomas Schwinge <thomas@codesourcery.com>
5972
5973 * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
5974 prologue to sh_analyze_prologue.
5975 (sh_analyze_prologue): Make better use of such an upper limit, and
5976 generally be more cautious about accessing memory.
5977
541515ad
TT
59782012-03-05 Tom Tromey <tromey@redhat.com>
5979
5980 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
5981 _initialize_ia64_hpux_tdep.
5982
b4d36fb8
PA
59832012-03-05 Pedro Alves <palves@redhat.com>
5984
24490249
PA
5985 PR gdb/13766
5986
b4d36fb8
PA
5987 * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
5988 the register state is clear, supply explicit zero, instead of
5989 marking the register unavailable.
5990
60c9a3c0
TG
59912012-03-05 Tristan Gingold <gingold@adacore.com>
5992
5993 * NEWS: Mention OpenVMS ia64 new target.
5994
696759ad
TG
59952012-03-05 Tristan Gingold <gingold@adacore.com>
5996
5997 * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
5998 (ia64_unw_accessors, ia64_unw_rse_accessors)
5999 (ia64_libunwind_descr): Declare.
6000 * ia64-vms-tdep.c: New file.
6001 * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
6002 (ia64_libunwind_descr): Make them public.
6003 * configure.tgt: Add ia64-*-*vms*.
6004 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
6005 (ALLDEPFILES): Add ia64-vms-tdep.c
6006
34864976
TG
60072012-03-05 Tristan Gingold <gingold@adacore.com>
6008
169081d0
TG
6009 * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
6010 * remote.c (PACKET_qXfer_uib): New enum value.
6011 (remote_protocol_features): Add entry for PACKET_qXfer_uib.
6012 (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
6013 (_initialize_remote): Call add_packet_config_cmd for
6014 xfer:uib packet.
6015
60162012-03-05 Tristan Gingold <gingold@adacore.com>
6017
6018 * osabi.c (gdb_osabi_names): Add OpenVMS.
6019 (generic_elf_osabi_sniffer): Likewise.
6020 * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
34864976 6021
6597b100
JK
60222012-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
6023
6024 Removed unused code.
6025 * libunwind-frame.c (libunwind_frame_unwind)
6026 (libunwind_frame_base_address): Remove.
6027 * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
6028
87399aa1
YQ
60292012-03-04 Yao Qi <yao@codesourcery.com>
6030
6031 * common/agent.c (gdb_connect_sync_socket): Add _ markup and
6032 remove trailing new line.
6033 (agent_run_command, agent_run_command): Add _ markup.
6034 (agent_capability_check): Likewise.
6035
abf1152a
JK
60362012-03-03 Jan Kratochvil <jan.kratochvil@redhat.com>
6037
6038 * breakpoint.c (set_condition_evaluation_mode): Set
6039 CONDITION_EVALUATION_MODE unconditionally.
6040
5808517f
YQ
60412012-03-03 Yao Qi <yao@codesourcery.com>
6042
6043 * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
6044 * common/agent.h: Update declaration.
6045 * inf-child.c (inf_child_use_agent): New.
6046 (inf_child_can_use_agent): New.
6047 (inf_child_target): Initialize fields `to_use_agent'
6048 and `to_can_use_agent'.
6049 * agent.c (agent_new_objfile): New.
89b7509a 6050 (_initialize_agent): Add agent_new_objfile to new_objfile
5808517f
YQ
6051 observer.
6052
6053 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
6054 New.
89b7509a 6055 (linux_target_install_ops): Initialize field
5808517f
YQ
6056 `to_static_tracepoint_markers_by_strid'.
6057 * remote.c (free_current_marker): Move it to ...
6058 * tracepoint.c (free_current_marker): ... here. New.
6059 (cleanup_target_stop): New.
6060 * tracepoint.h: Declare free_current_marker.
6061 * NEWS: Add one entry about `info static-tracepoint-marker'.
6062
58b4daa5
YQ
60632012-03-03 Yao Qi <yao@codesourcery.com>
6064
6065 * common/agent.c (agent_loaded_p): New.
89b7509a 6066 (agent_look_up_symbols): New global.
58b4daa5
YQ
6067 * common/agent.h: Declare agent_loaded_p.
6068
8ffcbaaf
YQ
60692012-03-03 Yao Qi <yao@codesourcery.com>
6070
6071 * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
6072 (agent_capability_check, agent_capability_invalidate): New.
6073 (symbol_list): New array element.
6074 * common/agent.h (enum agent_capa): New.
6075 * target.c (target_pre_inferior): Call agent_capability_invalidate.
6076
d1feda86
YQ
60772012-03-03 Yao Qi <yao@codesourcery.com>
6078
6079 * target.h (struct target_ops) <to_use_agent>: New field.
6080 (struct target_ops) <to_can_use_agent>: New field.
6081 (target_use_agent, target_can_use_agent): New macro.
6082 * target.c (update_current_target): Update.
6083 * remote.c: New enum `PACKET_QAgent'.
6084 (remote_protocol_features): Add a new element.
6085 (remote_use_agent, remote_can_use_agent): New.
6086 (init_remote_ops): Initialize field `can_use_agent' with
6087 remote_can_use_agent. Intiailize field `use_agent' with
6088 remote_use_agent.
6089 * common/agent.c (use_agent): New global.
6090 * common/agent.h: Declare it.
6091 * tracepoint.c (info_static_tracepoint_markers_command): Add
6092 comment.
6093 * Makefile.in (SFILES): Add common/agent.c and agent.c.
6094 (COMMON_OBS): Add common/agent.o and agent.o
6095 (common-agent.o): New rule.
6096 * agent.c: New.
6097
2fa291ac
YQ
60982012-03-03 Yao Qi <yao@codesourcery.com>
6099
6100 * common/agent.c: New.
6101 * common/agent.h: New.
6102 * configure.ac: Add `sys/socket.h' and `sys/un.h' to
6103 AC_CHECK_HEADERS.
6104 * configure, configh.in: Regenerated.
6105
9fc05685
KB
61062012-03-02 Kevin Buettner <kevinb@redhat.com>
6107
6108 * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
6109 unless it exists for this architecture.
6110
a5ee536b
JB
61112012-03-02 Joel Brobecker <brobecker@adacore.com>
6112
6113 * language.h (struct language_defn): New "method" la_read_var_value.
6114 * findvar.c: #include "language.h".
6115 (default_read_var_value): Renames read_var_value. Rewrite
6116 function description.
6117 (read_var_value): New function.
6118 * value.h (default_read_var_value): Add prototype.
6119 * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
6120 New functions.
6121 (ada_language_defn): Add entry for la_read_var_value.
6122 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
6123 * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
6124 language_defn structures to add entry for new la_read_var_value
6125 field.
6126
f59f708a
PA
61272012-03-02 Tom Tromey <tromey@redhat.com>
6128 Pedro Alves <palves@redhat.com>
6129
6130 PR breakpoints/13776:
6131 * breakpoint.c (breakpoint_init_inferior): Delete step-resume
6132 breakpoints.
6133 (delete_longjmp_breakpoint_at_next_stop): New.
6134 * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
6135 * target.c (generic_mourn_inferior): Call mark_breakpoints_out
6136 before deleting the inferior. Add comments.
6137 * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
6138 breakpoints immediately, but only on next stop. Move that code
6139 next to where we mark other breakpoints for deletion.
6140
44099a67
JB
61412012-03-02 Joel Brobecker <brobecker@adacore.com>
6142
6143 * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
6144 marker.
6145 * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
6146 violation.
6147
2a2ef594
PA
61482012-03-02 Pedro Alves <palves@redhat.com>
6149
6150 * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
6151
b261e0c5
UW
61522012-03-02 Ulrich Weigand <uweigand@de.ibm.com>
6153
6154 Fix -Wmissing-prototypes build.
6155 * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
6156 * remote-sim.c (gdbsim_has_all_memory): Likewise.
6157 (gdbsim_has_memory): Likewise.
6158
a95babbf
YQ
61592012-03-02 Yao Qi <yao@codesourcery.com>
6160
6161 Fix -Wmissing-prototypes build.
6162 * charset.c (phony_iconv_open): Make static.
6163 (phony_iconv_close, phony_iconv): Likewise.
6164 * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
6165 * i386-windows-nat.c (_initialize_i386_windows_nat): New
6166 prototype.
6167 * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
6168 * ser-mingw.c (create_select_thread): Make static.
6169 * windows-termcap.c (tgetent): New prototype.
6170 (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
6171
d603d4b3
JK
61722012-03-02 Zhang Yuanhui <asmwarrior@gmail.com>
6173
6174 Fix -Wmissing-prototypes build.
6175 * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
6176 (_initialize_windows_nat, _initialize_check_for_gdb_ini)
6177 (_initialize_loadable): New prototypes.
6178
7fb3ad1f
DE
61792012-03-02 Doug Evans <dje@google.com>
6180
6181 * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
6182 abbrev table, read_comp_unit will do it.
6183
693be288
JK
61842012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6185
6186 Fix -Wmissing-prototypes build.
6187 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
6188 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
6189 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
6190 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
6191 (_initialize_arm_symbian_tdep): New prototype.
6192 * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
6193 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
6194 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
6195 static.
6196 * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
6197 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
6198 prototype.
6199 * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
6200 (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
6201 * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
6202 static.
6203 * moxie-tdep.c (moxie_process_record): Likewise.
6204 * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
6205 (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
6206 * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
6207 (_initialize_rl78_tdep): New prototype.
6208 * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
6209 (_initialize_rx_tdep): New prototype.
6210 * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
6211 (_initialize_darwin_solib): New prototype.
6212 * solib-spu.c: Include solib-spu.h.
6213 (_initialize_spu_solib): New prototype.
6214 * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
6215 * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
6216 (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
6217 (tic6x_software_single_step): Make it static.
6218 (_initialize_tic6x_tdep): New prototype.
6219
638234e5
JK
62202012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6221
6222 Fix -Wmissing-prototypes build.
6223 * cris-tdep.c (cris_can_use_hardware_watchpoint)
6224 (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
6225
f4a6f16d
JK
62262012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
6227
6228 Fix -Wmissing-prototypes build.
6229 * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
6230 (frv_have_stopped_data_address): Remove.
6231
04dcf5fa
JK
62322012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
6233
6234 Fix -Wmissing-prototypes build.
6235 * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
6236 * sh-tdep.c: Include sh64-tdep.h.
6237 * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
6238 * sh64-tdep.c: Include sh64-tdep.h.
6239 * sh64-tdep.h: New file.
6240
19080931
MR
62412012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
6242
6243 * mips-tdep.c (mips32_scan_prologue): Correct indentation.
6244
9aac7884
MR
62452012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
6246
6247 * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
6248 sp_regnum once the gdbarch_init_osabi hook has been called.
6249
a385295e
MR
62502012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
6251
6252 * mips-tdep.c (mips32_bc1_pc): New function.
6253 (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
6254 BPOSGE32 and BPOSGE64 instructions.
6255 (deal_with_atomic_sequence): Likewise.
6256 (mips32_instruction_has_delay_slot): Likewise.
6257
1faeff08 62582012-03-01 Maciej W. Rozycki <macro@mips.com>
a09130f9
PA
6259 Chris Dearman <chris@mips.com>
6260 Maciej W. Rozycki <macro@codesourcery.com>
6261 Joseph Myers <joseph@codesourcery.com>
1faeff08
MR
6262
6263 * features/mips-dsp.xml: New file.
6264 * features/mips64-dsp.xml: New file.
6265 * features/mips-dsp-linux.xml: New file.
6266 * features/mips64-dsp-linux.xml: New file.
6267 * features/Makefile (WHICH): Add mips-dsp-linux and
6268 mips64-dsp-linux.
6269 (mips-dsp-expedite, mips64-dsp-expedite): New variables.
6270 * features/mips-dsp-linux.c: New file.
6271 * features/mips64-dsp-linux.c: New file.
6272 * regformats/mips-dsp-linux.dat: New file.
6273 * regformats/mips64-dsp-linux.dat: New file.
6274 * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
6275 registers.
6276 (mips64_linux_register_addr): Likewise.
6277 (mips64_linux_regsets_fetch_registers): Likewise.
6278 (mips64_linux_regsets_store_registers): Likewise.
6279 (mips64_linux_fetch_registers): Update call to
6280 mips64_linux_regsets_fetch_registers.
6281 (mips64_linux_store_registers): Update call to
6282 mips64_linux_regsets_store_registers.
6283 (mips_linux_read_description): Probe for DSP registers.
6284 (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
6285 and initialize_tdesc_mips64_dsp_linux.
6286 * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
6287 Remove padding of no longer used embedded register slots.
6288 * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
6289 (MIPS_RESTART_REGNUM): Redefine enum value.
6290 * mips-tdep.c (mips_generic_reg_names): Remove trailing null
6291 strings.
6292 (mips_tx39_reg_names): Likewise.
6293 (mips_linux_reg_names): New array of register names for Linux
6294 targets.
6295 (mips_register_name): Check for a null pointer in
6296 mips_processor_reg_names and return an empty string.
6297 (mips_register_type): Exclude embedded registers for the IRIX
6298 and Linux ABIs.
6299 (mips_pseudo_register_type): Likewise. Use dynamic numbers to
6300 refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle
6301 DSP registers.
6302 (mips_stab_reg_to_regnum): Handle DSP accumulators.
6303 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
6304 (mips_gdbarch_init): Likewise. Initialize internal register
6305 indices for the Linux ABI. Use dynamic numbers to refer to
6306 registers, as applicable, while parsing the target description.
6307 * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
6308
263689d8
JB
63092012-03-01 Joel Brobecker <brobecker@adacore.com>
6310
6311 * frame.h (read_frame_register_unsigned): Fix typo in function
6312 description.
6313
f3b4f45c
PA
63142012-03-01 Pedro Alves <palves@redhat.com>
6315
6316 * jit-reader.in [!__cplusplus]
6317 (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
6318
b03a2011
PA
63192012-03-01 Pedro Alves <palves@redhat.com>
6320
6321 * configure.ac (build_warnings): Add -Wmissing-prototypes.
6322 * configure: Regenerate.
6323
70221824
PA
63242012-03-01 Pedro Alves <palves@redhat.com>
6325
6326 * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
6327 * breakpoint.c (create_exception_master_breakpoint, trace_command)
6328 (ftrace_command, strace_command): Make static.
6329 * d-lang.c (_initialize_d_language): Declare.
6330 * dwarf2expr.c (_initialize_dwarf2expr): Declare.
6331 * dwarf2loc.c (_initialize_dwarf2loc):
6332 * dwarf2read.c (process_psymtab_comp_unit): Make static.
6333 * exec.c (exec_get_section_table): Make static.
6334 * i386-linux-tdep.c (i386_linux_record_signal): Make static.
6335 * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
6336 * inferior.c (remove_inferior_command, add_inferior_command)
6337 (clone_inferior_command): Make static.
6338 * linux-nat.c (linux_nat_thread_address_space)
6339 (linux_nat_core_of_thread): Make static.
6340 * linux-tdep.c (_initialize_linux_tdep): Declare.
6341 * objc-lang.c (_initialize_objc_lang): Declare.
6342 * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
6343 Make static.
6344 (_initialize_opencl_language): Declare.
6345 * record.c (_initialize_record): Declare.
6346 * remote.c (demand_private_info, remote_get_tib_address)
6347 (remote_supports_cond_tracepoints)
6348 (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
6349 Make static.
6350 * skip.c (_initialize_step_skip): Declare.
6351 * symtab.c (skip_prologue_using_lineinfo): Make static.
6352 * tracepoint.c (delete_trace_state_variable)
6353 (trace_variable_command, delete_trace_variable_command)
6354 (get_uploaded_tsv, find_matching_tracepoint_location)
6355 (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
6356 Make static.
6357 * value.c (pack_unsigned_long): Make static.
6358 * varobj.c (varobj_ensure_python_env): Make static.
6359 * windows-tdep.c (_initialize_windows_tdep): Declare.
6360 * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
6361
33fbcbee
PA
63622012-03-01 Pedro Alves <palves@redhat.com>
6363
6364 * linux-tdep.c (linux_has_shared_address_space): Make static. Add
6365 gdbarch parameter.
6366 (linux_init_abi): Install it as has_shared_address_space gdbarch
6367 callback.
6368
44d0cd3b
PA
63692012-03-01 Pedro Alves <palves@redhat.com>
6370
6371 * observer.c (observer_test_first_notification_function)
6372 (observer_test_second_notification_function)
6373 (observer_test_third_notification_function): Add declarations.
6374
ed01b82c
PA
63752012-03-01 Pedro Alves <palves@redhat.com>
6376
6377 * common/signals.c (default_target_signal_to_host)
6378 (default_target_signal_from_host): Move ...
6379 * arch-utils.c: ... here.
6380 * arch-utils.h (default_target_signal_to_host)
6381 (default_target_signal_from_host): Declare.
6382
6383 * common/signals.c (target_signal_from_command): Move ...
6384 * infrun.c: ... here.
6385 * inferior.h (target_signal_from_command): Declare.
6386 * target.h (target_signal_from_command)
6387 (default_target_signal_from_host, default_target_signal_to_host):
6388 Delete declarations.
6389
6390 * common/signals.c (_initialize_signals): Delete.
6391
c9b87335
PA
63922012-03-01 Pedro Alves <palves@redhat.com>
6393
6394 * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
6395 both __cplusplus and !__cplusplus.
6396
9340a6c0
PA
63972012-03-01 Pedro Alves <palves@redhat.com>
6398
6399 * psymtab.c (find_and_open_source): Delete declaration.
6400 * source.c (find_and_open_source): Move comment ...
6401 * source.h (find_and_open_source): ... to this new declaration.
6402
e451c4a1
PA
64032012-03-01 Pedro Alves <palves@redhat.com>
6404
6405 * inline-frame.c: Include inline-frame.h.
6406
983fb104
PA
64072012-03-01 Pedro Alves <palves@redhat.com>
6408
6409 * tui/tui-data.c (set_gen_win_origin): Delete.
6410 * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
6411 * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
6412
5fbce5df
PA
64132012-03-01 Pedro Alves <palves@redhat.com>
6414
6415 * remote.c (encode_actions): Delete declaration.
6416 * tracepoint.c (encode_actions): Make extern.
6417 * tracepoint.h (encode_actions): Declare.
6418
49a8461d
PA
64192012-03-01 Pedro Alves <palves@redhat.com>
6420
6421 * python/py-breakpoint.c: Include python.h.
6422 * python/py-continueevent.c (create_continue_event_object): Make
6423 static.
6424 * python/py-lazy-string.c (stpy_get_type): Make static.
6425 * python/py-newobjfileevent.c (create_new_objfile_event_object):
6426 Make static.
6427 * python/py-utils.c (unicode_to_target_python_string): Make
6428 static.
6429 * python/py-value.c: Include python.h.
6430
9079102f
PA
64312012-03-01 Pedro Alves <palves@redhat.com>
6432
6433 * inferior.c (delete_threads_of_inferior): Delete.
6434
a298c5e8
PA
64352012-03-01 Pedro Alves <palves@redhat.com>
6436
6437 Import fallback definitions from glibc.
6438
6439 * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
6440 ps_prochandle): Forward declare.
6441 (ps_err_e): Use glibc's comments.
6442 [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
6443 (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
6444 (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
6445 (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
6446 (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
6447 (struct ps_prochandle): Adjust comment.
6448
e3084549
PA
64492012-03-01 Pedro Alves <palves@redhat.com>
6450
6451 * ada-lang.c (ada_modulus_from_name): Delete.
6452 * ada-lex.l (lexer_init): Make static.
6453
ad5f7d6e
PA
64542012-03-01 Pedro Alves <palves@redhat.com>
6455
6456 PR gdb/13767
6457
6458 * frame.c (read_frame_register_unsigned): New.
6459 * frame.h (read_frame_register_unsigned): Declare.
6460 * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
6461 Handle it.
6462 (print_i387_control_word): New parameter `control_p'. Handle it.
6463 (i387_print_float_info): Handle unavailable float registers.
6464
e0a4d108
KS
64652012-03-01 Keith Seitz <keiths@redhat.com>
6466
6467 * linespec.c (decode_line_2): Sort the list of methods
6468 alphabetically before presenting the user with a selection
6469 menu.
6470
122d1940
DE
64712012-03-01 Doug Evans <dje@google.com>
6472
6473 * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
6474 has_namespace_info.
6475 (dwarf2_read_abbrevs): Remove corresponding initialization.
6476
7d74f244
DE
64772012-03-01 Scott J. Goldman <scottjg@vmware.com>
6478
6479 * NEWS: Mention new python command class gdb.COMMAND_USER.
6480 * cli/cli-cmds.c (show_user): Print error when used on a python
6481 command.
6482 (init_cli_cmds): Update documentation strings for "show user" and
6483 "set/show max-user-call-depth" to clarify that it does not apply to
6484 python commands.
6485 * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
6486 error check.
6487 (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
6488 gdb python api.
6489 * top.c (execute_command): Only execute a user-defined command as a
6490 legacy macro if c->user_commands is set.
6491
e88acd96
TT
64922012-03-01 Tom Tromey <tromey@redhat.com>
6493
6494 * valprint.h (struct generic_val_print_decorations): New.
6495 (generic_val_print): Declare.
6496 * valprint.c (generic_val_print): New function.
6497 * p-valprint.c (p_decorations): New global.
6498 (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
6499 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
6500 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
6501 TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
6502 * m2-valprint.c (m2_decorations): New global.
6503 (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
6504 TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
6505 TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
6506 TYPE_CODE_ERROR>: Call generic_val_print.
6507 * f-valprint.c (f_decorations): New global.
6508 (f_val_print): Use print_function_pointer_address.
6509 <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
6510 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
6511 TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
6512 generic_val_print.
6513 * c-valprint.c (c_decorations): New global.
6514 (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
6515 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
6516 TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
6517 TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
6518 TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
6519 * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
6520 case.
6521
d3eab38a
TT
65222012-03-01 Tom Tromey <tromey@redhat.com>
6523
6524 * valprint.c (val_print): Update.
6525 * p-valprint (pascal_val_print): Return void.
6526 * p-lang.h (pascal_val_print): Return void.
6527 * m2-valprint.c (m2_val_print): Return void.
6528 * m2-lang.h (m2_val_print): Return void.
6529 * language.h (struct language_defn) <la_val_print>: Return void.
6530 * language.c (unk_lang_val_print): Return void.
6531 * jv-valprint.c (java_val_print): Return void.
6532 * jv-lang.h (java_val_print): Return void.
6533 * f-valprint.c (f_val_print): Return void.
6534 * f-lang.h (f_val_print): Return void.
6535 * d-valprint.c (d_val_print): Return void.
6536 (dynamic_array_type): Update.
6537 * d-lang.h (d_val_print): Return void.
6538 * c-valprint.c (c_val_print): Return void.
6539 * c-lang.h (c_val_print): Return void.
6540 * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
6541 void.
6542 * ada-lang.h (ada_val_print): Return void.
6543
35c0084b
TT
65442012-03-01 Tom Tromey <tromey@redhat.com>
6545
6546 * value.h (val_print): Return void.
6547 * valprint.c (val_print): Return void.
6548
a1f5dd1b
TT
65492012-03-01 Tom Tromey <tromey@redhat.com>
6550
6551 * value.h (common_val_print): Return void.
6552 * valprint.c (common_val_print): Return void.
6553
8e069a98
TT
65542012-03-01 Tom Tromey <tromey@redhat.com>
6555
6556 * value.h (value_print): Return void.
6557 * valprint.c (value_print): Return void.
6558 * p-valprint.c (pascal_value_print): Return void.
6559 * p-lang.h (pascal_value_print): Return void.
6560 * language.h (struct language_defn) <la_value_print>: Return
6561 void.
6562 * language.c (unk_lang_value_print): Return void.
6563 * jv-valprint.c (java_value_print): Return void.
6564 * jv-lang.h (java_value_print): Return void.
6565 * f-valprint.c (c_value_print): Don't declare.
6566 Include c-lang.h.
6567 * c-valprint.c (c_value_print): Return void.
6568 * c-lang.h (c_value_print): Return void.
6569 * ada-valprint.c (ada_value_print): Return void.
6570 * ada-lang.h (ada_value_print): Return void.
6571
be335936
TT
65722012-03-01 Tom Tromey <tromey@redhat.com>
6573
6574 * value.c (value_primitive_field): Handle virtual base classes.
6575
b0db66a7
TT
65762012-03-01 Tom Tromey <tromey@redhat.com>
6577
6578 * gdbtypes.h (struct vbase): Remove.
6579
132c57b4
TT
65802012-03-01 Tom Tromey <tromey@redhat.com>
6581
6582 * c-valprint.c (print_function_pointer_address): Move...
6583 * valprint.c: ... here. Make non-static.
6584 * m2-valprint.c (print_function_pointer_address): Remove.
6585 * valprint.h (print_function_pointer_address): Declare.
6586
e41eec66
JB
65872012-03-01 Joel Brobecker <brobecker@adacore.com>
6588
6589 * NEWS: Document the fact that one can provide a condition when
6590 creating an Ada exception catchpoint.
6591
19c37f24
TT
65922012-03-01 Tom Tromey <tromey@redhat.com>
6593
6594 * valprint.c (val_print_type_code_flags): Fix placement of
6595 trailing brace.
6596
f0fed3a3
JB
65972012-03-01 Joel Brobecker <brobecker@adacore.com>
6598
6599 * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
6600 (update_files): Do not set MULTILINE_COMMENT_PREFIXES
6601 environment variable before calling update-copyright.
6602
8ba85d85
JB
66032012-03-01 Joel Brobecker <brobecker@adacore.com>
6604
6605 * gnulib/extra/update-copyright: Update to the latest from
6606 gnulib's git repository.
6607 * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
6608 variable to 2 instead of 1.
6609
8219b1e8
JB
66102012-02-29 Joel Brobecker <brobecker@adacore.com>
6611
6612 * varobj.c (c_value_of_variable): Remove dead code.
6613
718cb7da
JB
66142012-02-29 Joel Brobecker <brobecker@adacore.com>
6615
6616 * ada-lex.p (processId): Do not modify already encoded IDs.
6617 Update function documentation.
6618
739593e0
JB
66192012-02-29 Joel Brobecker <brobecker@adacore.com>
6620
6621 * ada-lang.h (ada_find_renaming_symbol): Replace parameter
6622 "name" with "struct symbol *name_sym".
6623 * ada-exp.y (write_var_or_type): Update call to
6624 ada_find_renaming_symbol.
6625 "name" with "struct symbol *name_sym". Adjust Implementation
6626 accordingly. Adjust the function documentation.
6627
852dff6c
JB
66282012-02-29 Joel Brobecker <brobecker@adacore.com>
6629
6630 * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
6631 * ada-lang.c (ada_find_any_type): Add advance declaration.
6632 Make static. Replace ada_find_any_symbol by
6633 ada_find_any_type_symbol.
6634 (ada_find_any_type_symbol): Renames ada_find_any_symbol.
6635 Improve function description. Make static.
6636 (ada_find_renaming_symbol, find_old_style_renaming_symbol):
6637 Replace ada_find_any_symbol by ada_find_any_type_symbol.
6638
1b611343
JB
66392012-02-29 Joel Brobecker <brobecker@adacore.com>
6640
6641 * ada-lang.c (struct tag_args): Delete.
6642 (ada_get_tsd_type): Function body moved up in source file.
6643 (ada_tag_name_1, ada_tag_name_2): Delete.
6644 (ada_get_tsd_from_tag): New function.
6645 (ada_tag_name_from_tsd): New function.
6646 (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
6647 to determine the tag name.
6648
41246937
JB
66492012-02-29 Joel Brobecker <brobecker@adacore.com>
6650
6651 * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
6652 declaration.
6653 * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
6654 function.
6655
ffde82bf
JB
66562012-02-29 Joel Brobecker <brobecker@adacore.com>
6657
6658 * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
6659
2ad01556
JB
66602012-02-29 Joel Brobecker <brobecker@adacore.com>
6661
6662 * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
6663 full searches.
6664
99b1c762
JB
66652012-02-29 Joel Brobecker <brobecker@adacore.com>
6666
6667 * ada-lang.c (constrained_packed_array_type): If there is a
6668 parallel XA type, use it to determine the array index type.
6669
2d4a02ee
JB
66702012-02-29 Joel Brobecker <brobecker@adacore.com>
6671
6672 * ada-valprint.c (ada_val_print_1): If our value is a reference
6673 to an array descriptor, dereference it before converting it
6674 to a simple array.
6675
c48db5ca
JB
66762012-02-29 Joel Brobecker <brobecker@adacore.com>
6677
6678 * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
6679 creating fixed value.
6680 (ada_value_ind, ada_coerce_ref, assign_component)
6681 (ada_evaluate_subexp): Remove call to unwrap_value before
6682 call to ada_to_fixed_value.
6683
2e6fda7d
JB
66842012-02-29 Joel Brobecker <brobecker@adacore.com>
6685
6686 * ada-lang.c (to_fixed_array_type): Set result's type name.
6687
5845583d
JB
66882012-02-29 Joel Brobecker <brobecker@adacore.com>
6689
6690 * ada-lang.c (catch_ada_exception_command_split): Add new
6691 argument cond_string. Add support for condition at end of
6692 "catch exception" commands.
6693 (ada_decode_exception_location): Add new argument cond_string.
6694 Update call to catch_ada_exception_command_split.
6695 (create_ada_exception_catchpoint): Add new argument cond_string.
6696 Set the breakpoint condition if needed.
6697 (catch_ada_exception_command): Update call to
6698 ada_decode_exception_location.
6699 (ada_decode_assert_location): Add function documentation.
6700 Add support for condition at end of "catch assert" command.
6701 (catch_assert_command): Update calls to ada_decode_assert_location
6702 and create_ada_exception_catchpoint.
6703
9a7f938f
JK
67042012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
6705
6706 Fix disp-step-syscall.exp: fork: single step over fork.
6707 * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
6708 (i386_linux_get_syscall_number_from_regcache): ... here, new function
6709 comment, change parameters gdbarch and ptid to regcache. Remove
6710 parameter regcache, initialize gdbarch from regcache here.
6711 (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
6712 New functions.
6713 (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
6714 instead.
6715 * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
6716 'syscall'. Make the 'int' check more strict.
6717
ffdf6de5
JK
67182012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
6719
6720 Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
6721 * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
6722 (i386_linux_intx80_sysenter_syscall_record): ... here.
6723 (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
6724 Use the renamed function name.
6725
c70a6932
JK
67262012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
6727
6728 * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
6729 * breakpoint.c (until_break_command): Likewise.
6730 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
6731 * infcall.c (call_function_by_hand): Likewise.
6732 * infcmd.c (finish_forward): Likewise.
6733 * infrun.c (insert_exception_resume_breakpoint): Likewise.
6734
05b8a789 67352012-02-28 Tristan Gingold <gingold@adacore.com>
d4cd3da9 6736
d4cd3da9
JB
6737 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
6738 avoid variable assignments inside condition.
6739
6425366c
JK
67402012-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
6741
6742 Fix static analysis issue found by cppcheck.
6743 * microblaze-tdep.c (microblaze_extract_return_value): Fix
6744 uninitialized BUF for size 2.
6745
c8cef75f 67462012-02-27 Chris Dearman <chris@mips.com>
a09130f9
PA
6747 Nathan Froyd <froydnj@codesourcery.com>
6748 Maciej W. Rozycki <macro@codesourcery.com>
c8cef75f
MR
6749
6750 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
6751 (mips16_instruction_has_delay_slot): Likewise.
6752 (mips_segment_boundary): Likewise.
6753 (mips_adjust_breakpoint_address): Likewise.
6754 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
6755
473347ad 67562012-02-27 Maciej W. Rozycki <macro@mips.com>
a09130f9 6757 Maciej W. Rozycki <macro@codesourcery.com>
473347ad
MR
6758
6759 * infrun.c (handle_inferior_event): Don't proceed through
6760 shared library trampolines if stepping at the machine
6761 instruction level.
6762
cf233303
MR
67632012-02-27 Maciej W. Rozycki <macro@codesourcery.com>
6764
6765 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
6766 too.
6767
cb2cf4ce
TS
67682012-02-27 Thomas Schwinge <thomas@codesourcery.com>
6769
6770 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
6771 (sh_stub_unwind_sniffer): New functions.
6772 (sh_stub_unwind): New variable.
6773 (sh_gdbarch_init): Wire everything.
6774
644cebc9
PA
67752012-02-27 Pedro Alves <palves@redhat.com>
6776
6777 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
6778 (linux_nat_post_attach_wait): Adjust to use
6779 linux_proc_pid_is_stopped.
6780 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
6781 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
6782 based on pid_is_stopped from both linux-nat.c and
6783 gdbserver/linux-low.c, and renamed.
6784
283002cf
MR
67852012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
6786
6787 * remote.c (remote_watchpoint_addr_within_range): New function.
6788 (init_remote_ops): Use it.
6789
9b3e86b1
MR
67902012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
6791
6792 * target.h (target_watchpoint_addr_within_range): Document macro.
6793
e36930bb
PA
67942012-02-24 Pedro Alves <palves@redhat.com>
6795
6796 * stack.c (set_last_displayed_sal): Issue internal_error instead
6797 of warning, and issue it after clearing the last displayed sal.
6798
883bc8d1
PA
67992012-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
6800 Pedro Alves <palves@redhat.com>
6801
6802 * breakpoint.c (until_break_command): Install breakpoints after
6803 all frame manipulations.
6804
b775012e
LM
68052012-02-24 Luis Machado <lgustavo@codesourcery.com>
6806
6807 * remote.c (remote_supports_cond_breakpoints): New forward
6808 declaration.
6809 (remote_add_target_side_condition): New function.
6810 (remote_insert_breakpoint): Add target-side breakpoint
6811 conditional if supported.
6812 (remote_insert_hw_breakpoint): Likewise.
6813 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
6814 hook.
6815
6816 * target.c (update_current_target): Inherit
6817 to_supports_evaluation_of_breakpoint_conditions.
6818 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
6819
6820 * target.h (struct target_ops)
6821 <to_supports_evaluation_of_breakpoint_conditions>: New field.
6822 (target_supports_evaluation_of_breakpoint_conditions): New #define.
6823
6824 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
6825 (condition_evaluation_both, condition_evaluation_auto,
6826 condition_evaluation_host, condition_evaluation_target,
6827 condition_evaluation_enums, condition_evaluation_mode_1,
6828 condition_evaluation_mode): New static globals.
6829 (translate_condition_evaluation_mode): New function.
6830 (breakpoint_condition_evaluation_mode): New function.
6831 (gdb_evaluates_breakpoint_condition_p): New function.
6832 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
6833 (mark_breakpoint_modified): New function.
6834 (mark_breakpoint_location_modified): New function.
6835 (set_condition_evaluation_mode): New function.
6836 (show_condition_evaluation_mode): New function.
6837 (bp_location_compare_addrs): New function.
6838 (get_first_location_gte_addr): New helper function.
6839 (set_breakpoint_condition): Free condition bytecode if locations
6840 has become unconditional. Call mark_breakpoint_modified (...).
6841 (condition_command): Call update_global_location_list (1) for
6842 breakpoints.
6843 (breakpoint_xfer_memory): Use is_breakpoint (...).
6844 (is_breakpoint): New function.
6845 (parse_cond_to_aexpr): New function.
6846 (build_target_condition_list): New function.
6847 (insert_bp_location): Handle target-side conditional
6848 breakpoints and call build_target_condition_list (...).
6849 (update_inserted_breakpoint_locations): New function.
6850 (insert_breakpoint_locations): Handle target-side conditional
6851 breakpoints.
6852 (bpstat_check_breakpoint_conditions): Add comment.
6853 (bp_condition_evaluator): New function.
6854 (bp_location_condition_evaluator): New function.
6855 (print_breakpoint_location): Print information on where the condition
6856 will be evaluated.
6857 (print_one_breakpoint_location): Likewise.
6858 (init_bp_location): Call mark_breakpoint_location_modified (...) for
6859 breakpoint location.
6860 (force_breakpoint_reinsertion): New functions.
6861 (update_global_location_list): Handle target-side breakpoint
6862 conditions.
6863 Reinsert locations that are already inserted if conditions have
6864 changed.
6865 (bp_location_dtor): Free agent expression bytecode.
6866 (disable_breakpoint): Call mark_breakpoint_modified (...).
6867 Call update_global_location_list (...) with parameter 1 for breakpoints.
6868 (disable_command): Call mark_breakpoint_location_modified (...).
6869 Call update_global_location_list (...) with parameter 1 for breakpoints.
6870 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
6871 (enable_command): mark_breakpoint_location_modified (...).
6872 (_initialize_breakpoint): Update documentation and add
6873 condition-evaluation breakpoint subcommand.
6874
6875 * breakpoint.h: Include ax.h.
6876 (condition_list): New data structure.
6877 (condition_status): New enum.
6878 (bp_target_info) <cond_list>: New field.
6879 (bp_location) <condition_changed, cond_bytecode>: New fields.
6880 (is_breakpoint): New prototype.
6881
3788aec7
LM
68822012-02-24 Luis Machado <lgustavo@codesourcery.com>
6883
6884 * remote.c (remote_state) <cond_breakpoints>: New field.
6885 (PACKET_ConditionalBreakpoints): New enum.
6886 (remote_cond_breakpoint_feature): New function.
6887 (remote_protocol_features): Add new ConditionalBreakpoints entry.
6888 (remote_supports_cond_breakpoints): New function.
6889 (_initialize_remote): Add new packet configuration for
6890 target-side conditional breakpoints.
6891
72895ff6
LM
68922012-02-24 Luis Machado <lgustavo@codesourcery.com>
6893
6894 * NEWS: Mention target-side conditional breakpoint support,
6895 new condition-evaluation breakpoint subcommand and remote
6896 packet extensions.
6897
dea2aa5f
LM
68982012-02-24 Luis Machado <lgustavo@codesourcery.com>
6899
6900 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
6901 number.
6902
8a8bc27f
TS
69032012-02-24 Thomas Schwinge <thomas@codesourcery.com>
6904
6905 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
6906 (after_prologue): Remove.
6907
6b446fdf
TT
69082012-02-23 Tom Tromey <tromey@redhat.com>
6909
6910 * jv-valprint.c (java_val_print): Remove dead code.
6911
ef59abfb
TG
69122012-02-23 Tristan Gingold <gingold@adacore.com>
6913
a09130f9
PA
6914 * ada-tasks.c (struct ada_tasks_inferior_data): Add
6915 known_tasks_element and known_tasks_length fields.
6916 (read_known_tasks_array): Change argument type. Use pointer type
6917 and number of elements from DATA. Adjust.
6918 (read_known_tasks_list): Likewise.
6919 (get_known_tasks_addr): Remove.
6920 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
6921 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
6922 type and array length. Merge former get_known_tasks_addr code.
ef59abfb 6923
def166f6
JK
69242012-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
6925
6926 PR backtrace/13716
6927 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
6928 it after set_momentary_breakpoint.
6929
aeaa2474
SA
69302012-02-22 Sterling Augustine <saugustine@google.com>
6931
6932 PR 13689:
6933 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
6934
feea76c2
GB
69352012-02-22 Gary Benson <gbenson@redhat.com>
6936
6937 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
6938 (find_slot_in_mapped_hash): Likewise.
6939
f06e05e0
JK
69402012-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6941
6942 PR build/13638
6943 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
6944 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
6945 * configure: Regenerate.
6946
b54a8fd7
PA
69472012-02-21 Tristan Gingold <gingold@adacore.com>
6948 Pedro Alves <palves@redhat.com>
6949
6950 * ia64-tdep.c: Do not include libunwind-ia64.h.
6951 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
6952 Include libunwind-ia64.h instead of libunwind.h.
6953 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
6954 for libunwind.h existence.
6955 * configure, config.in: Regenerate.
6956
dfcee124
AG
69572012-02-21 Anton Gorenkov <xgsa@yandex.ru>
6958
6959 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
6960 instead of value_rtti_target_type.
6961 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
6962 instead of value_rtti_target_type.
6963 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
6964 value_rtti_target_type.
6965 * valops.c (value_ind): Extract function readjust_indirect_value_type.
6966 (value_rtti_target_type): Rename to ...
6967 (value_rtti_indirect_type): ... here and make it indirect. Update
6968 function comment.
6969 * value.c (readjust_indirect_value_type): New function.
6970 (coerce_ref): Support for enclosing type setting for references
6971 with readjust_indirect_value_type.
6972 * value.h (readjust_value_type): New declaration.
6973 (value_rtti_target_type): Rename to ...
6974 (value_rtti_indirect_type): ... here.
6975
02568277
AG
69762012-02-21 Anton Gorenkov <xgsa@yandex.ru>
6977
6978 * MAINTAINERS (Write After Approval): Add myself to the list.
6979
10c07b7e 69802012-02-20 Doug Evans <dje@google.com>
28ee876a 6981
d82ea6a8
DE
6982 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
6983 Rename objfile_p_char parameter to objfilep.
6984 (build_objfile_section_table): Result is now void. All callers
6985 updated.
6986 * objfiles.h (struct objfile): Tweak comments, whitespace.
6987 (build_objfile_section_table): Update.
6988
28ee876a
DE
6989 * elfread.c (elf_symfile_segments): Fix warning text.
6990
24c79950
TT
69912012-02-20 Tom Tromey <tromey@redhat.com>
6992
6993 PR gdb/13498:
6994 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
6995 particular set of file names once.
6996 (dw2_map_symbol_filenames): Likewise.
6997
3a9b40b6
JK
69982012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6999
7000 Code cleanup.
7001 * main.c (write_files): Remove the declaration.
7002 (external_editor_command): Move the declaration ...
7003 [GDBTK] (external_editor_command): ... here. Fix the comment.
7004
4d0795ca
TT
70052012-02-20 Tom Tromey <tromey@redhat.com>
7006
7007 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
7008 extraneous block.
7009
637fd620
TG
70102012-02-20 Tristan Gingold <gingold@adacore.com>
7011
7012 * darwin-nat.h (enum darwin_msg_state): Add comments.
7013
6f124894
TG
70142012-02-20 Tristan Gingold <gingold@adacore.com>
7015
7016 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
7017 value.
7018
2e6e3d9c
JB
70192012-20-18 Joel Brobecker <brobecker@adacore.com>
7020
7021 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
7022 between function description and implementation.
7023
2e8265fd
TT
70242012-02-17 Tom Tromey <tromey@redhat.com>
7025
7026 PR python/12070:
7027 * python/py-event.c (event_object_getset): New global.
7028 (event_object_type): Reference it.
7029 * python/py-type.c (field_object_getset): New global.
7030 (field_object_type): Reference it.
7031 * python/python-internal.h (gdb_py_generic_dict): Declare.
7032 * python/py-utils.c (gdb_py_generic_dict): New function.
7033
8544a150 70342012-02-17 Tristan Gingold <gingold@adacore.com>
6f124894 7035
8544a150 7036 * solib-darwin.c (darwin_current_sos): Check magic and filetype
6f124894 7037
ca193e27
TS
70382012-02-17 Thomas Schwinge <thomas@codesourcery.com>
7039
7040 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
7041 TYPE_CALLING_CONVENTION annotation.
7042
e5586183
KB
70432012-02-16 Kevin Buettner <kevinb@redhat.com>
7044
7045 * MAINTAINERS: Add rx to target ISA section.
7046 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
7047 (ALLDEPFILES): Add rx-tdep.c.
7048
7dcd53a0
TT
70492012-02-16 Tom Tromey <tromey@redhat.com>
7050
7051 * symfile.c (symbol_file_add_main_1): Use inferior's
7052 symfile_flags.
7053 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
7054 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
7055 inferior.
7056 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
7057 inferior.
7058 (follow_exec): Use inferior's symfile_flags.
7059 * inferior.h (struct inferior) <symfile_flags>: New field.
7060
ddd60447
MF
70612012-02-16 Mike Frysinger <vapier@gentoo.org>
7062
7063 PR gdb/9734:
7064 * remote-sim.c (gdbsim_create_inferior): Call error() when
7065 sim_create_inferior() fails.
7066
b0d32fb6
TG
70672012-02-16 Josh Matthews <josh@joshmatthews.net>
7068
7069 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
7070
9addecb9
TT
70712012-02-16 Tom Tromey <tromey@redhat.com>
7072
7073 PR c++/13653:
7074 * thread.c (struct current_thread_cleanup) <was_removable>: New
7075 field.
7076 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
7077 (make_cleanup_restore_current_thread): Initialize new field.
7078
a58b110a
KB
70792012-02-15 Kevin Buettner <kevinb@redhat.com>
7080
7081 * MAINTAINERS: Add rl78 to target ISA section.
7082 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
7083 (ALLDEPFILES): Add rl78-tdep.c.
7084 * NEWS: Mention rl78 as a new target.
7085
4cb6da1c
AR
70862012-02-15 Aleksandar Ristovski <aristovski@qnx.com>
7087
7088 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
7089 data.
7090 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
7091
3af2590d
TT
70922012-02-15 Tom Tromey <tromey@redhat.com>
7093
7094 PR gdb/12659:
7095 * infcmd.c (registers_info): Print just the current register's
7096 name.
7097
c6910659
TT
70982012-02-15 Tom Tromey <tromey@redhat.com>
7099
7100 * python/py-symbol.c (sympy_value): Use _().
7101
7cee1e54
PA
71022012-02-15 Pedro Alves <palves@redhat.com>
7103
7104 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
7105 output to be like native targets'.
7106 (remote_pid_to_str): Special case the null ptid.
7107
816338b5
SS
71082012-02-14 Stan Shebs <stan@codesourcery.com>
7109
7110 * NEWS: Mention enable count command.
7111 * breakpoint.h (struct breakpoint): New field enable_count.
7112 * breakpoint.c (enable_breakpoint_disp): Add count argument.
7113 (enable_breakpoint): Add arg to call.
7114 (struct disp_data): New struct.
7115 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
7116 (do_map_enable_once_breakpoint): Create a struct and pass it.
7117 (do_map_enable_delete_breakpoint): Ditto.
7118 (do_map_enable_count_breakpoint): New function.
7119 (enable_count_command): New function.
7120 (bpstat_stop_status): Decrement enable_count.
7121 (print_one_breakpoint_location): Report enable count.
7122 (_initialize_breakpoint): Add enable count command.
7123
c47a44f4
KB
71242012-02-14 Kevin Buettner <kevinb@redhat.com>
7125
7126 * rl78-tdep.c (reggroups.h): Include.
7127 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
7128 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
7129 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
7130 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
7131 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
7132 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
7133 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
7134 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
7135 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
7136 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
7137 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
7138 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
7139 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
7140 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
7141 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
7142 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
7143 beginning of register list.
7144 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
7145 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
7146 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
7147 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
7148 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
7149 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
7150 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
7151 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
7152 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
7153 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
7154 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
7155 the pseudo registers. Rearrange other pseudo registers too so
7156 that the bank registers appear at the end.
7157 (rl78_register_type): Account for the fact that the byte sized
7158 bank registers are now pseudo-registers.
7159 (rl78_register_name): Rearrange the register name array. Make
7160 initial set of raw banked registers inaccessible.
7161 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
7162 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
7163 case for copying bytes back and forth between raw and pseudo
7164 versions of the banked registers. Update other cases to reflect
7165 the changed names.
7166 (rl78_return_value): Update to account for changed names of
7167 raw registers.
7168 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
7169 rl78_register_sim_regno().
7170
e4569f1e
KB
71712012-02-14 Kevin Buettner <kevinb@redhat.com>
7172
7173 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
7174 the name parameter being passed to find_pc_partial_function().
7175
7a05aae7
JK
71762012-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
7177
7178 * MAINTAINERS: Step down from being ia64 target maintainer.
7179
11fde611
JK
71802012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
7181
7182 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
7183 compilation warning.
7184
57008375
JK
71852012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
7186
7187 Fix crash on loaded shlibs without loaded exec_bfd.
7188 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
7189 (set_section_command): Replace exec_bfd by p->bfd.
7190
ff3c9849
TT
71912012-02-10 Tom Tromey <tromey@redhat.com>
7192
7193 * linespec.c (decode_line_internal): Skip symtabs_from_filename
7194 when we have a C++ qualified name.
7195
db2b9fdd
PA
71962012-02-10 Pedro Alves <palves@redhat.com>
7197
7198 * inferior.c (inferior_pid_to_str): New.
7199 (print_inferior, inferior_command): Use it.
7200
12cd34f3
PA
72012012-02-10 Pedro Alves <palves@redhat.com>
7202
7203 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
7204 the test CFLAGS.
7205 * configure: Regenerate.
7206
e871429d
JK
72072012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7208
7209 * linespec.c (decode_line_internal): Fix comment correctness.
7210
1916efaf
PA
72112012-02-09 Valery Khromov <valery.khromov@gmail.com>
7212
7213 PR gdb/12953
7214 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
7215 * amd64bsd-nat.c: Add support for debug registers (adapted from
7216 i386bsd-nat.c).
7217 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
7218 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
7219 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
7220 (amd64bsd_dr_get_control): New functions.
7221 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
7222 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
7223 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
7224 watchpoints initialization.
7225 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
7226
f4859d94
JK
72272012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
7228
7229 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
7230 flds_bnds.fields.
7231 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
7232
c56a97f9
JK
72332012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
7234
7235 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
7236
1a119f36
JB
72372012-02-08 Joel Brobecker <brobecker@adacore.com>
7238
7239 * language.h (symbol_name_cmp_ftype): Renames
7240 symbol_name_match_p_ftype.
7241 (struct language_defn)[la_get_symbol_name_cmp]: Renames
7242 la_get_symbol_name_match_p.
7243 * ada-lang.c (ada_get_symbol_name_cmp): Renames
7244 ada_get_symbol_name_match_p. Update comment.
7245 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
7246 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
7247 Renames symbol_name_match_p. Update field type.
7248 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
7249 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
7250 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
7251 "la_get_symbol_name_cmp" in comments.
7252 * language.c: Likewise.
7253
c71bb1cf
RO
72542012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
7255
7256 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
7257 %eflags offset.
7258 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
7259 (amd64_sol2_gregset32_reg_offs): Likewise.
7260
4b2d20a5
TG
72612012-02-08 Joel Brobecker <brobecker@adacore.com>
7262
7263 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
7264 of the returned BFD is allocated by GDB.
7265
f0823d2c
TT
72662012-02-07 Tom Tromey <tromey@redhat.com>
7267
7268 PR python/12027:
7269 * python/python-internal.h (frame_object_type): Declare.
7270 * python/py-symbol.c (sympy_needs_frame): New function.
7271 (sympy_value): New function.
7272 (symbol_object_getset): Add "needs_frame".
7273 (symbol_object_methods): Add "value".
7274 * python/py-frame.c (frame_object_type): No longer static.
7275
64e7d9dd
TT
72762012-02-07 Tom Tromey <tromey@redhat.com>
7277
7278 PR python/13599:
7279 * python/py-symbol.c (sympy_line): New function.
7280 (symbol_object_getset): Add "line".
7281
1d6b2d2b
TT
72822012-02-07 Tom Tromey <tromey@redhat.com>
7283
7284 * charset.c (find_charset_names): Check 'in' against NULL.
7285
0d5cff50
DE
72862012-02-06 Doug Evans <dje@google.com>
7287
7288 * gdbtypes.h (struct main_type): Change type of name,tag_name,
7289 and fields.name members from char * to const char *. All uses updated.
7290 (struct cplus_struct_type): Change type of fn_fieldlists.name member
7291 from char * to const char *. All uses updated.
7292 (type_name_no_tag): Update.
7293 (lookup_unsigned_typename, lookup_signed_typename): Update.
7294 * gdbtypes.c (type_name_no_tag): Change result type
7295 from char * to const char *. All callers updated.
7296 (lookup_unsigned_typename, lookup_signed_typename): Change type of
7297 name parameter from char * to const char *.
7298 * symtab.h (struct cplus_specific): Change type of demangled_name
7299 member from char * to const char *. All uses updated.
7300 (struct general_symbol_info): Change type of name and
7301 mangled_lang.demangled_name members from char * to const char *.
7302 All uses updated.
7303 (symbol_get_demangled_name, symbol_natural_name): Update.
7304 (symbol_demangled_name, symbol_search_name): Update.
7305 * symtab.c (symbol_get_demangled_name): Change result type
7306 from char * to const char *. All callers updated.
7307 (symbol_natural_name, symbol_demangled_name): Ditto.
7308 (symbol_search_name): Ditto.
7309 (completion_list_add_name): Change type of symname,sym_text,
7310 text,word parameters from char * to const char *.
7311 (completion_list_objc_symbol): Change type of sym_text,
7312 text,word parameters from char * to const char *.
7313 * ada-lang.c (find_struct_field): Change type of name parameter
7314 from char * to const char *.
7315 (encoded_ordered_before): Similarly for N0,N1 parameters.
7316 (old_renaming_is_invisible): Similarly for function_name parameter.
7317 (ada_type_name): Change result type from char * to const char *.
7318 All callers updated.
7319 * ada-lang.h (ada_type_name): Update.
7320 * buildsym.c (hashname): Change type of name parameter
7321 from char * to const char *.
7322 * buildsym.h (hashname): Update.
7323 * dbxread.c (end_psymtab): Change type of include_list parameter
7324 from char ** to const char **.
7325 * dwarf2read.c (determine_prefix): Change result type
7326 from char * to const char *. All callers updated.
7327 * f-lang.c (find_common_for_function): Change type of name, funcname
7328 parameters from char * to const char *.
7329 * f-lang.c (find_common_for_function): Update.
7330 * f-valprint.c (list_all_visible_commons): Change type of funcname
7331 parameters from char * to const char *.
7332 * gdbarch.sh (static_transform_name): Change type of name parameter
7333 and result from char * to const char *.
7334 * gdbarch.c: Regenerate.
7335 * gdbarch.h: Regenerate.
7336 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
7337 of name parameter from char * to const char *.
7338 * jv-lang.c (java_primitive_type_from_name): Ditto.
7339 (java_demangled_signature_length): Similarly for signature parameter.
7340 (java_demangled_signature_copy): Ditto.
7341 (java_demangle_type_signature): Ditto.
7342 * jv-lang.h (java_primitive_type_from_name): Update.
7343 (java_demangle_type_signature): Update.
7344 * objc-lang.c (specialcmp): Change type of a,b parameters
7345 from char * to const char *.
7346 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
7347 from char * to const char *. All callers updated.
7348 * p-lang.h (is_pascal_string_type): Update.
7349 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
7350 of name parameter from char * to const char *.
7351 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
7352 * utils.c (fprintf_symbol_filtered): Ditto.
7353 * defs.h (fprintf_symbol_filtered): Update.
7354 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
7355 * stabsread.h (end_psymtab): Update.
7356 * stack.c (find_frame_funname): Change type of funname parameter
7357 from char ** to const char **.
7358 * stack.h (find_frame_funname): Update.
7359 * typeprint.c (type_print): Change type of varstring parameter
7360 from char * to const char *.
7361 * value.h (type_print): Update.
7362 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
7363 from char * to const char *. All callers updated.
7364 (xcoff_end_psymtab): Change type of include_list parameter
7365 from char ** to const char **. All callers updated.
7366 (swap_sym): Similarly for name parameter. All callers updated.
7367 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
7368 Use xstrdup.
7369 (process_coff_symbol): Use xstrdup.
7370 * stabsread.c (stabs_method_name_from_physname): Renamed from
7371 update_method_name_from_physname. Change result type from void
7372 to char *. All callers updated.
7373 (read_member_functions): In has_destructor case, store name in objfile
7374 obstack instead of malloc space. In !has_stub case, fix mem leak.
7375
5579a92e
TT
73762012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
7377
7378 * configure: Rebuild.
7379 * configure.ac: Put -L../bfd and -L../libiberty at the front of
7380 LDFLAGS.
7381
9058f767
KB
73822012-02-03 Kevin Buettner <kevinb@redhat.com>
7383
7384 * configure.tgt (rl78-*-elf): New target.
7385 * rl78-tdep.c: New file.
7386
5b37825d
PW
73872012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7388
7389 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
7390 and continue the loop. Add QUIT statement.
7391
e009ee71
TT
73922012-02-03 Tom Tromey <tromey@redhat.com>
7393
7394 PR gdb/13596:
7395 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
7396 bfd_lookup_symbol_from_symtab.
7397 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
7398 gdb_bfd_lookup_symbol_from_symtab.
7399
f7e44f65
JB
74002012-02-03 Joel Brobecker <brobecker@adacore.com>
7401
7402 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
7403 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
7404 symbol. Add assertion that sym2 is never NULL.
7405
2c02bd72
DE
74062012-02-02 Doug Evans <dje@google.com>
7407
7408 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
7409 "name" parameter to const char ** from char **. All callers updated.
7410 (find_pc_partial_function): Ditto.
7411 (cache_pc_function_name): Change type to const char * from char *.
7412 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
7413 (find_pc_partial_function): Update.
7414 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
7415 type of "name" parameter to const char * from char *.
7416 All uses updated.
7417 * arch-utils.c (generic_in_solib_return_trampoline): Change
7418 type of "name" parameter to const char * from char *.
7419 * arch-utils.h (generic_in_solib_return_trampoline): Update.
7420 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
7421 type of "name" parameter to const char * from char *.
7422 * gdbarch.sh (in_solib_return_trampoline): Ditto.
7423 * gdbarch.c: Regenerate.
7424 * gdbarch.h: Regenerate.
7425 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
7426 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
7427 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
7428 type of "name" parameter to const char * from char *.
7429 * skip.c (skip_function_pc): Ditto.
7430 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
7431 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
7432 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
7433 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
7434 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
7435 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
7436 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
7437 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
7438 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
7439
e886a173
PA
74402012-02-02 Pedro Alves <palves@redhat.com>
7441
7442 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
7443 the current inferior has no execution. Make sure the current
7444 remote process matches gdb's current inferior.
7445
c709a7c2
TT
74462012-02-02 Tom Tromey <tromey@redhat.com>
7447
7448 PR gdb/13405:
7449 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
7450 read-only memory.
7451
f149aabd
TT
74522012-02-02 Tom Tromey <tromey@redhat.com>
7453
7454 PR gdb/9307:
7455 * symtab.c (lookup_language_this): Set block_found.
7456
03bef283
TT
74572012-02-01 Tom Tromey <tromey@redhat.com>
7458
7459 PR gdb/13431:
7460 * jit.c (struct jit_inferior_data): Rewrite.
7461 (struct jit_objfile_data): New.
7462 (get_jit_objfile_data): New function.
7463 (add_objfile_entry): Update.
7464 (jit_read_descriptor): Return int. Replace descriptor_addr
7465 argument with inf_data. Update. Don't call error.
7466 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
7467 descriptor here.
7468 (jit_inferior_init): Don't look up descriptor. Don't call error.
7469 (jit_reset_inferior_data_and_breakpoints)
7470 (jit_inferior_created_observer): Remove.
7471 (jit_inferior_exit_hook): Update.
7472 (jit_executable_changed_observer): Remove.
7473 (jit_event_handler): Update.
7474 (free_objfile_data): Reset inferior data if needed.
7475 (_initialize_jit): Update.
7476
f0bbc364
TT
74772012-02-01 Tom Tromey <tromey@redhat.com>
7478
7479 * jit.c (bfd_open_from_target_memory): Move higher in file.
7480
47c1316c
TG
74812012-02-01 Tristan Gingold <gingold@adacore.com>
7482
7483 * libunwind-frame.c (libunwind_load): Display message if dlopen
7484 failed.
7485
8e704927
GB
74862012-02-01 Gary Benson <gbenson@redhat.com>
7487
09c7a31f 7488 * symtab.h (symbol_found_callback_ftype): New typedef.
8e704927
GB
7489 (iterate_over_symbols): Use the above.
7490 * symtab.c (iterate_over_symbols): Likewise.
7491 * language.h (language_defn->la_iterate_over_symbols): Likewise.
7492 * ada-lang.c (ada_iterate_over_symbols): Likewise.
7493 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
7494 (iterate_name_matcher): Document return values.
7495 (collect_one_symbol): Likewise.
7496 (collect_function_symbols): Likewise.
7497 (collect_symbols): Likewise.
7498
d9680e73
TT
74992012-02-01 Tom Tromey <tromey@redhat.com>
7500
7501 * ada-lang.c (resolve_subexp): Update.
7502 (ada_lookup_symbol_list): Add 'full_search' argument.
7503 (ada_iterate_over_symbols): Pass 0 as full_search argument to
7504 ada_lookup_symbol_list.
7505 (ada_lookup_encoded_symbol): Update.
7506 (get_var_value): Update.
7507 * ada-exp.y (block_lookup): Update.
7508 (write_var_or_type): Update.
7509 (write_name_assoc): Update.
7510 * ada-lang.h (ada_lookup_symbol_list): Update.
7511
72e1143f
TT
75122012-01-31 Tom Tromey <tromey@redhat.com>
7513
7514 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
7515 comment.
7516
ab2d2ad3
DE
75172012-01-31 Doug Evans <dje@google.com>
7518
7519 * symtab.h: Remove outdated comment.
e9111bf7 7520 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
ab2d2ad3 7521
bc884eba
JB
75222012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
7523
7524 Fix build error in Darwin port.
7525 * i386-darwin-nat.c: Include i386-nat.h.
7526
8fc3fc34
TT
75272012-01-30 Tom Tromey <tromey@redhat.com>
7528
7529 PR breakpoints/13568:
7530 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
7531 argument. Check for recursive includes.
7532 (dwarf_decode_macros): Create an include hash.
7533
5d853008
ME
75342012-01-30 Michael Eager <eager@eagercon.com>
7535
7536 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
7537 * ppc-linux-tdep.c: Include glibc-tdep.h.
ab2d2ad3 7538 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
5d853008
ME
7539 (powerpc_linux_in_plt_stub): New function.
7540 (powerpc_linux_in_dynsym_resolve_code): New function.
7541 (ppc_skip_trampoline_code): New function.
7542 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
7543 Use glibc_skip_solib_resolver.
7544
40478521
JK
75452012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
7546
7547 Code cleanup: Make 1440 bytes of data segment read-only.
7548 * arch-utils.c (endian_enum): Make it const char *const [].
7549 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
7550 Likewise.
7551 * breakpoint.c (always_inserted_enums): Likewise.
7552 * cli/cli-cmds.c (script_ext_enums): Likewise.
7553 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
7554 enumlist parameter const char *const *.
7555 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
7556 const char *const *.
7557 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
7558 parameter const char *const *.
7559 * cris-tdep.c (cris_modes): Make it const char *const [].
7560 * filesystem.c (target_file_system_kinds): Likewise.
7561 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
7562 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
7563 (can_use_displaced_stepping_enum, scheduler_enums)
7564 (exec_direction_names): Likewise.
7565 * language.c (_initialize_language): Make the type_or_range_names and
7566 case_sensitive_names variables const char *const [].
7567 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
7568 * python/python.c (python_excp_enums): Likewise.
7569 * remote.c (interrupt_sequence_modes): Likewise.
7570 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
7571 * serial.c (logbase_enums): Likewise.
7572 * sh-tdep.c (sh_cc_enum): Likewise.
7573 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
7574 Likewise.
7575 * symtab.c (multiple_symbols_modes): Likewise.
7576 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
7577 Likewise.
7578 * utils.c (internal_problem_modes): Likewise.
7579
b3b8b934
JK
75802012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
7581
7582 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
7583 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
7584 result.
7585
8c85a4e2
DE
75862012-01-27 Doug Evans <dje@google.com>
7587
7588 * configure.ac (with_python): Fix absolute path handling for win32.
7589 * configure: Regenerate.
7590
78d8b4d7
DE
75912012-01-26 Doug Evans <dje@google.com>
7592
eca864fe
DE
7593 * symtab.c: Whitespace cleanup, no code changes.
7594
7e082072
DE
7595 * symtab.c (lookup_symbol_in_language): Improve comment.
7596 (lookup_symbol_aux): Fix comment.
7597
7dc25483
DE
7598 * psymtab.c (add_psymbol_to_list): Result is now "void".
7599 * psympriv.h (add_psymbol_to_list): Update.
7600
78d8b4d7
DE
7601 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
7602
4c63965b
JK
76032012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
7604
7605 Do not open script filenames twice.
7606 * cli/cli-cmds.c (source_script_from_stream): Pass to
7607 source_python_script also STREAM.
7608 * python/py-auto-load.c (source_section_scripts): Pass to
7609 source_python_script_for_objfile also STREAM.
7610 (auto_load_objfile_script): Pass to source_python_script_for_objfile
7611 also INPUT.
7612 * python/python-internal.h (source_python_script_for_objfile): New
7613 parameter file, rename parameter file to filename.
7614 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
7615 instead if !_WIN32. Update the function comment.
7616 (source_python_script, source_python_script_for_objfile)
7617 (source_python_script): New parameter file, rename parameter file to
7618 filename. Pass FILENAME to python_run_simple_file.
7619 * python/python.h (source_python_script): New parameter file, rename
7620 parameter file to filename.
7621
88f38a04
PA
76222012-01-26 Pedro Alves <palves@redhat.com>
7623
7624 * corelow.c (core_has_fake_pid): Delete.
7625 (core_close): Delete references to `core_has_fake_pid'.
7626 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
7627 (core_open): Delete references to `core_has_fake_pid'.
7628 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
7629 the removed global.
7630
e078317b
JB
76312012-01-26 Joel Brobecker <brobecker@adacore.com>
7632
7633 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
7634 Remove language parameter from name_matcher. Adjust the comment.
7635 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
7636 Remove language parameter.
7637 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
7638 * linespec.c (iterate_name_matcher): Likewise.
7639 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
7640 name_matcher. Adjust call accordingly.
7641 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
7642 (maintenance_check_symtabs): Adjust type of parameter "fun".
7643 * psymtab.h (maintenance_check_symtabs): Likewise.
7644
74ccd7f5
JB
76452012-01-26 Joel Brobecker <brobecker@adacore.com>
7646
7647 * language.h (symbol_name_match_p_ftype): New typedef.
7648 (struct language_defn): Replace field la_symbol_name_compare
7649 by la_get_symbol_name_match_p.
7650 * ada-lang.c (ada_get_symbol_name_match_p): New function.
7651 (ada_language_defn): Use it.
7652 * linespec.c (struct symbol_matcher_data): New type.
7653 (iterate_name_matcher): Rewrite.
7654 (iterate_over_all_matching_symtabs): Pass a pointer to
7655 a symbol_matcher_data struct to expand_symtabs_matching
7656 instead of just the lookup name.
7657 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
7658 opencl-lang.c, p-lang.c, language.c: Delete field
7659 la_symbol_name_compare, and replace by NULL for new field
7660 la_get_symbol_name_match_p.
7661 * symfile.h (struct quick_symbol_functions): Update comment.
7662
5d268276
TT
76632012-01-25 Tom Tromey <tromey@redhat.com>
7664
7665 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
7666 dereferencing.
7667
edcc5120
TT
76682012-01-24 Tom Tromey <tromey@redhat.com>
7669
7670 PR symtab/12406:
7671 * solib.c (update_solib_list): Update the program space's
7672 added_solibs and deleted_solibs fields.
7673 * progspace.h (struct program_space) <added_solibs,
7674 deleted_solibs>: New fields.
7675 (clear_program_space_solib_cache): Declare.
7676 * progspace.c (release_program_space): Call
7677 clear_program_space_solib_cache.
7678 (clear_program_space_solib_cache): New function.
7679 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
7680 bpstat_stop_status. Use handle_solib_event.
7681 * breakpoint.c: Include gdb_regex.h.
7682 (print_solib_event): New function.
7683 (bpstat_print): Use print_solib_event.
7684 (bpstat_stop_status): Add special case for bp_shlib_event.
7685 (handle_solib_event): New function.
7686 (bpstat_what): Use handle_solib_event.
7687 (struct solib_catchpoint): New.
7688 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
7689 (breakpoint_hit_catch_solib, check_status_catch_solib)
7690 (print_it_catch_solib, print_one_catch_solib)
7691 (print_mention_catch_solib, print_recreate_catch_solib): New
7692 functions.
7693 (catch_solib_breakpoint_ops): New global.
7694 (catch_load_or_unload, catch_load_command_1)
7695 (catch_unload_command_1): New functions.
7696 (internal_bkpt_check_status): Add special case for
7697 bp_shlib_event.
7698 (internal_bkpt_print_it): Use print_solib_event.
7699 (initialize_breakpoint_ops): Initialize
7700 catch_solib_breakpoint_ops.
7701 (_initialize_breakpoint): Register "catch load" and "catch
7702 unload".
7703 * breakpoint.h (handle_solib_event): Declare.
7704 * NEWS: Add entry for "catch load" and "catch unload".
7705
fa864999
TT
77062012-01-24 Tom Tromey <tromey@redhat.com>
7707
7708 * ada-lang.c: Include gdb_vecs.h.
7709 * charset.c: Include gdb_vecs.h.
7710 * tracepoint.h: Include gdb_vecs.h.
7711 * gdb_vecs.h: New file.
7712
f90263c1
TT
77132012-01-24 Pedro Alves <pedro@codesourcery.com>
7714
7715 * breakpoint.c (breakpoint_hit_catch_fork)
7716 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
7717 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
7718 * infrun.c (inferior_has_forked, inferior_has_vforked)
7719 (inferior_has_execd, inferior_has_called_syscall): Delete.
7720 (handle_syscall_event): Get syscall_number from the execution
7721 control state's wait status.
7722 (wait_for_inferior): Don't clear syscall_number.
7723
09ac7c10
TT
77242012-01-24 Pedro Alves <palves@redhat.com>
7725
7726 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
7727 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
7728 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
7729 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
7730 `ws' parameter.
7731 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
7732 false for events other than TARGET_SIGNAL_TRAP.
7733 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
7734 Add `ws' parameter.
7735 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
7736 events other than TARGET_SIGNAL_TRAP.
7737 (tracepoint_breakpoint_hit): Add `ws' parameter.
7738 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
7739 parameter.
7740 (bpstat_stop_status): Same.
7741 (pc_at_non_inline_function): Same.
7742 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
7743 to pass the current event's waitstatus to bpstat_stop_status
7744 and pc_at_non_inline_function.
7745
86eb7e95
JK
77462012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
7747
7748 Code cleanup.
7749 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
7750 Update the function comment for it.
7751 (source_script_with_search): Call make_cleanup_fclose for STREAM.
7752 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
7753 for STREAM.
7754
a9b3a50f
PA
77552012-01-24 Pedro Alves <palves@redhat.com>
7756
7757 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
7758 outside `bs->stop' block.
7759 (bpstat_what): Rework bp_shlib_event handling.
7760 (internal_bkpt_check_status): If the breakpoint is a
7761 bp_shlib_event, then set bs->stop and bs->print if
7762 stop_on_solib_events is set.
7763
53fe1783
GB
77642012-01-24 Gary Benson <gbenson@redhat.com>
7765
7766 Delete #if 0'd out code.
7767 * stack.c (print_frame_label_vars): Remove.
7768 (catch_info): Likewise.
7769 (_initialize_stack): Remove "info catch" command.
7770 * NEWS: Mention the above.
7771
49c62f2e
PA
77722012-01-24 Pedro Alves <palves@redhat.com>
7773
7774 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
7775 it.
7776 (remote_notice_new_inferior): If the remote end doesn't support
7777 the multiprocess extensions, then the PID is fake.
7778 (add_current_inferior_and_thread): New.
7779 (remote_start_remote): Use it.
7780 (extended_remote_attach_1): Adjust.
7781 (extended_remote_create_inferior_1): Use
7782 add_current_inferior_and_thread.
7783
d0d8b0c6
JK
77842012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
7785
7786 Fix watchpoints to be specific for each inferior.
7787 * breakpoint.c (watchpoint_in_thread_scope): Verify also
7788 current_program_space.
7789 * i386-nat.c (i386_inferior_data_cleanup): New.
7790 (i386_inferior_data_get): Replace variable inf_data_local by an
7791 inferior_data call.
7792 (i386_use_watchpoints): Initialize i386_inferior_data.
7793 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
7794 specific iterate_over_lwps.
7795
4403d8e9
JK
77962012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
7797
7798 Fix watchpoints across inferior fork.
7799 * amd64-linux-nat.c (update_debug_registers_callback): Update the
7800 comment for linux_nat_iterate_watchpoint_lwps.
7801 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
7802 linux_nat_iterate_watchpoint_lwps.
7803 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
7804 * i386-linux-nat.c (update_debug_registers_callback): Update the
7805 comment for linux_nat_iterate_watchpoint_lwps.
7806 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
7807 linux_nat_iterate_watchpoint_lwps.
7808 (i386_linux_prepare_to_resume): New comment on Linux kernel.
7809 * i386-nat.c: Include inferior.h.
7810 (dr_mirror): Remove.
7811 (i386_inferior_data, struct i386_inferior_data)
7812 (i386_inferior_data_get): New.
7813 (i386_debug_reg_state): Use i386_inferior_data_get.
7814 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
7815 (i386_insert_watchpoint, i386_remove_watchpoint)
7816 (i386_stopped_data_address, i386_insert_hw_breakpoint)
7817 (i386_remove_hw_breakpoint): New variable state, use
7818 i386_debug_reg_state instead of DR_MIRROR.
7819 * linux-nat.c (delete_lwp): New declaration.
7820 (num_lwps): Move here from downwards.
7821 (delete_lwp_cleanup): New.
7822 (linux_child_follow_fork): Create new child_lp, call
7823 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
7824 PTRACE_DETACH.
7825 (num_lwps): Move upwards.
7826 (linux_nat_iterate_watchpoint_lwps): New.
7827 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
7828 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
7829
2992c9a7 78302012-01-24 Joel Brobecker <brobecker@adacore.com>
7831
7832 GDB 7.4 released.
7833
e360902b
PA
78342012-01-23 Pedro Alves <palves@redhat.com>
7835
7836 * top.c (caution): Rename to ...
7837 (confirm): ... this.
7838 (show_caution): Rename to ...
7839 (show_confirm): ... this.
7840 (quit_cover): Adjust.
7841 (init_main): Adjust.
7842 * top.h (caution): Rename to ...
7843 (confirm): ... this.
7844 * utils.c (internal_vproblem, defaulted_query): Adjust.
7845
050a2e1d
PA
78462012-01-23 Pedro Alves <palves@redhat.com>
7847
7848 * top.c (caution): Update comment.
7849 (execute_command): Don't consider the current value of `caution'.
7850
77a35dd8
JK
78512012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
7852
7853 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
7854
a71b5a38
UW
78552012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
7856
7857 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
7858 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
7859 * target.c (target_fileio_pwrite): Remove buffer address from
7860 debug output.
7861 (target_fileio_pread): Likewise.
7862
d99bd577
UW
78632012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
7864
7865 * NEWS: Document remote "info proc" and "generate-core-file".
7866
35c2fab7
UW
78672012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
7868
7869 * gdbarch.sh (find_memory_regions): New callback.
7870 * gdbarch.c, gdbarch.h: Regenerate.
7871
7872 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
7873 callback before falling back to target method.
7874
7875 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
7876 (linux_target_install_ops): No longer install it.
7877
7878 * linux-tdep.c (linux_find_memory_regions): New function.
7879 (linux_init_abi): Install it.
7880
6432734d
UW
78812012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
7882
7883 * gdbarch.sh (make_corefile_notes): New architecture callback.
7884 * gdbarch.c: Regenerate.
7885 * gdbarch.h: Likewise.
7886
7887 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
7888 before target_make_corefile_notes. If NULL is returned, the
7889 target does not support core file generation.
7890
7891 * linux-nat.c: Include "linux-tdep.h".
7892 (find_signalled_thread, find_stop_signal): Remove.
7893 (linux_nat_do_thread_registers): Likewise.
7894 (struct linux_nat_corefile_thread_data): Likewise.
7895 (linux_nat_corefile_thread_callback): Likewise.
7896 (iterate_over_spus): Likewise.
7897 (struct linux_spu_corefile_data): Likewise.
7898 (linux_spu_corefile_callback): Likewise.
7899 (linux_spu_make_corefile_notes): Likewise.
7900 (linux_nat_collect_thread_registers): New function.
7901 (linux_nat_make_corefile_notes): Replace contents by call to
7902 linux_make_corefile_notes passing linux_nat_collect_thread_registers
7903 as native-only callback.
7904
7905 * linux-tdep.h: Include "bfd.h".
7906 (struct regcache): Add forward declaration.
7907 (linux_collect_thread_registers_ftype): New typedef.
7908 (linux_make_corefile_notes): Add prototype.
7909 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
7910 "regset.h", and "elf-bfd.h".
7911 (find_signalled_thread, find_stop_signal): New functions.
7912 (linux_spu_make_corefile_notes): Likewise.
7913 (linux_collect_thread_registers): Likewise.
7914 (struct linux_corefile_thread_data): New data structure.
7915 (linux_corefile_thread_callback): New funcion.
7916 (linux_make_corefile_notes): Likewise.
7917 (linux_make_corefile_notes_1): Likewise.
7918 (linux_init_abi): Install it.
7919
3030c96e
UW
79202012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
7921
7922 * gdbarch.sh (info_proc): New callback.
7923 * gdbarch.c, gdbarch.h: Regenerate.
7924
7925 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
7926 before falling back to the target info_proc callback.
7927
7928 * linux-nat.c: Do not include "cli/cli-utils.h".
7929 (linux_nat_info_proc): Remove.
7930 (linux_target_install_ops): No longer install it.
7931
7932 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
7933 (read_mapping): New function.
7934 (linux_info_proc): Likewise.
7935 (linux_init_abi): Install it.
7936
145b16a9
UW
79372012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
7938
7939 * defs.h (enum info_proc_what): Moved here from linux-nat.c
7940 * infcmd.c: (info_proc_cmd_1): New function.
7941 (info_proc_cmd): New function, moved here from equivalent routine
7942 orignally in linux-nat.c.
7943 (info_proc_cmd_mappings): Likewise.
7944 (info_proc_cmd_stat): Likewise.
7945 (info_proc_cmd_status): Likewise.
7946 (info_proc_cmd_cwd): Likewise.
7947 (info_proc_cmd_cmdline): Likewise.
7948 (info_proc_cmd_exe): Likewise.
7949 (info_proc_cmd_all): Likewise.
7950 (_initialize_infcmd): Install "info proc" command and subcommands.
7951
7952 * target.h (struct target_ops): Add to_info_proc.
7953 (target_info_proc): Add prototype.
7954 * target.c (target_info_proc): New function.
7955
7956 * procfs.c (procfs_info_proc): Add prototype.
7957 (info_proc_cmd): Rename into ...
7958 (procfs_info_proc): ... this. Update argument types as appropriate
7959 for a to_info_proc implementation. Handle "what" argument.
7960 (procfs_target): Install procfs_info_proc.
7961 (_initialize_procfs): No longer install "info proc" command.
7962
7963 * linux-nat.c: (enum info_proc_what): Remove.
7964 (linux_nat_info_proc_cmd_1): Rename into ...
7965 (linux_nat_info_proc): ... this. Update argument types as appropriate
7966 for a to_info_proc implementation.
7967 (linux_nat_info_proc_cmd): Remove.
7968 (linux_nat_info_proc_cmd_mappings): Likewise.
7969 (linux_nat_info_proc_cmd_stat): Likewise.
7970 (linux_nat_info_proc_cmd_status): Likewise.
7971 (linux_nat_info_proc_cmd_cwd): Likewise.
7972 (linux_nat_info_proc_cmd_cmdline): Likewise.
7973 (linux_nat_info_proc_cmd_exe): Likewise.
7974 (linux_nat_info_proc_cmd_all): Likewise.
7975 (linux_target_install_ops): Install linux_nat_info_proc.
7976 (_initialize_linux_nat): No longer install "info proc" command
7977 and subcommands.
7978
b9e7b9c3
UW
79792012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
7980
7981 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
7982 * config.in, configure: Regenerate.
7983
7984 * target.h (struct target_ops): Add to_fileio_readlink.
7985 (target_fileio_readlink): Add prototype.
7986 * target.c (target_fileio_readlink): New function.
7987
7988 * inf-child.c: Conditionally include <sys/param.h>.
7989 (inf_child_fileio_readlink): New function.
7990 (inf_child_target): Install it.
7991
7992 * remote.c (PACKET_vFile_readlink): New enum value.
7993 (remote_hostio_readlink): New function.
7994 (init_remote_ops): Install it.
7995 (_initialize_remote): Handle vFile:readlink packet type.
7996
7313baad
UW
79972012-01-20 Pedro Alves <palves@redhat.com>
7998 Ulrich Weigand <ulrich.weigand@linaro.org>
7999
8000 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
8001 * config.in, configure: Regenerate.
8002
8003 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
8004 to_fileio_pread, to_fileio_close, to_fileio_unlink.
8005 (target_fileio_open): Add prototype.
8006 (target_fileio_pwrite): Likewise.
8007 (target_fileio_pread): Likewise.
8008 (target_fileio_close): Likewise.
8009 (target_fileio_unlink): Likewise.
8010 (target_fileio_read_alloc): Likewise.
8011 (target_fileio_read_stralloc): Likewise.
8012
8013 * target.c: Include "gdb/fileio.h".
8014 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
8015 (default_fileio_target): New function.
8016 (target_fileio_open): Likewise.
8017 (target_fileio_pwrite): Likewise.
8018 (target_fileio_pread): Likewise.
8019 (target_fileio_close): Likewise.
8020 (target_fileio_unlink): Likewise.
8021 (target_fileio_close_cleanup): Likewise.
8022 (target_fileio_read_alloc_1): Likewise.
8023 (target_fileio_read_alloc): Likewise.
8024 (target_fileio_read_stralloc): Likewise.
8025
8026 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
8027 <fcntl.h>, and <unistd.h>.
8028 (inf_child_fileio_open_flags_to_host): New function.
8029 (inf_child_errno_to_fileio_error): Likewise.
8030 (inf_child_fileio_open): Likewise.
8031 (inf_child_fileio_pwrite): Likewise.
8032 (inf_child_fileio_pread): Likewise.
8033 (inf_child_fileio_close): Likewise.
8034 (inf_child_fileio_unlink): Likewise.
8035 (inf_child_target): Install to_fileio routines.
8036
8037 * remote.c (init_remote_ops): Install to_fileio routines.
8038
901f9912
UW
80392012-01-20 Pedro Alves <palves@redhat.com>
8040 Ulrich Weigand <ulrich.weigand@linaro.org>
8041
8042 * remote.c (remote_multi_process_p): Only check for multi-process
8043 protocol feature, do not check for extended protocol.
8044 (remote_supports_multi_process): Check for extended protocol here.
8045 (set_general_process): Likewise.
8046 (extended_remote_kill): Likewise.
8047 (remote_pid_to_str): Likewise.
8048 (remote_query_supported): Always query multiprocess mode.
8049
e714e1bf
UW
80502012-01-20 Pedro Alves <palves@redhat.com>
8051 Ulrich Weigand <ulrich.weigand@linaro.org>
8052
8053 * inferior.h (struct inferior): Add fake_pid_p.
8054 * inferior.c (exit_inferior_1): Clear fake_pid_p.
8055 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
8056 magic_null_ptid since the remote side doesn't provide a real PID.
8057
50897289
TT
80582012-01-19 Tom Tromey <tromey@redhat.com>
8059
8060 * NEWS: Combine the two Python sections.
8061
1afc2033
JK
80622012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
8063
8064 * target.h (target_close): Update comment on the target's unpush state.
8065
305436e0
PA
80662012-01-19 Pedro Alves <palves@redhat.com>
8067
8068 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
8069 linux_nat_async directly instead of going through the target
8070 vector.
8071 * target.c (unpush_target): Close target after unpushing it, not
8072 before.
8073
49323895
GB
80742012-01-19 Gary Benson <gbenson@redhat.com>
8075
8076 * mdebugread.c (sort_blocks): Replace integer constants with ones
8077 derived from FIRST_LOCAL_BLOCK.
8078
1db33378
PP
80792012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
8080 Jan Kratochvil <jan.kratochvil@redhat.com>
8081
8082 PR gdb/9538
8083 * symfile.c (find_separate_debug_file): New function.
8084 (terminate_after_last_dir_separator): Likewise.
8085 (find_separate_debug_file_by_debuglink): Also try realpath.
8086 * configure.ac (AC_CHECK_FUNCS): Add lstat.
8087 * configure: Regenerate.
8088 * config.in: Regenerate.
8089
f83d8a90
DE
80902012-01-18 Doug Evans <dje@google.com>
8091
8092 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
8093 (main.o): Remove rule.
8094 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
8095 (--with-sysroot): Rewrite.
8096 * configure: Regenerate.
8097 * config.in: Regenerate.
8098
2dbca4d6
SDJ
80992012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
8100
8101 * parse.c (initialize_expout): New function.
8102 (reallocate_expout): Likewise.
8103 (parse_exp_in_context): Use `initialize_expout' and
8104 `reallocate_expout' when appropriate.
8105
0695b514
PA
81062012-01-18 Pedro Alves <palves@redhat.com>
8107
8108 * record.c (struct record_breakpoint, record_breakpoint_p)
8109 (record_breakpoints): New.
8110 (record_insert_breakpoint, record_remove_breakpoint): Manage
8111 record breakpoints list. Only remove breakpoints from the
8112 inferior if they had been inserted there in the first place.
8113
136e1c30
DE
81142012-01-17 Doug Evans <dje@google.com>
8115
8116 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
8117 if we know we don't have a file name to look for.
8118
c0bf857d
PA
81192012-01-17 Pedro Alves <palves@redhat.com>
8120
8121 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
8122 the frame's stop reason is UNWIND_UNAVAILABLE.
8123
b486de60
JK
81242012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8125
8126 Fix compilation error.
8127 * m2-exp.y (yyerror): Use ANSI C prototype.
8128
d04550a6
SDJ
81292012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
8130
8131 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
8132 (growbuf_by_size): Likewise.
8133 (yyerror): Likewise.
8134 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
8135 (modblock): Remove variable (was #if 0'ed).
8136 (parse_number): Convert prototype from K&R to ANSI C.
8137 (yyerror): Likewise.
8138 * objc-exp.y (parse_number): Likewise.
8139 (yyerror): Likewise.
8140 (yylex): Remove #if 0'ed code.
8141 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
8142 (yyerror): Likewise.
8143
4aac40c8
TT
81442012-01-16 Tom Tromey <tromey@redhat.com>
8145
8146 * NEWS: Add item.
8147 * symtab.h (compare_filenames_for_search): Declare.
8148 * symtab.c (compare_filenames_for_search): New function.
8149 (iterate_over_some_symtabs): Use it.
8150 * symfile.h (struct quick_symbol_functions)
8151 <map_symtabs_matching_filename>: Change spec.
8152 * psymtab.c (partial_map_symtabs_matching_filename): Use
8153 compare_filenames_for_search. Update for new spec.
8154 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
8155 compare_filenames_for_search. Update for new spec.
8156 * breakpoint.c (clear_command): Use compare_filenames_for_search.
8157
cafec441
TT
81582012-01-16 Tom Tromey <tromey@redhat.com>
8159
8160 PR python/13281:
8161 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
8162 (struct main_type) <flag_flag_enum>: New field.
8163 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
8164 * NEWS: Add entries.
8165 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
8166 enums.
8167 * python/lib/gdb/printing.py (_EnumInstance): New class.
8168 (FlagEnumerationPrinter): Likewise.
8169
983af33b
SDJ
81702012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
8171
8172 * breakpoint.c (create_sals_from_address_default): New function.
8173 (create_breakpoints_sal_default): Likewise.
8174 (decode_linespec_default): Likewise.
8175 (is_marker_spec): Removed.
8176 (strace_marker_p): New function.
8177 (init_breakpoint_sal): Using `strace_marker_p' instead of
8178 `is_marker_spec'.
8179 (create_breakpoint): Call method `create_sals_from_address' from
8180 breakpoint_ops, replacing code that created SALs conditionally
8181 on the type of the breakpoint. Call method `create_breakpoints_sal',
8182 replacing code that created breakpoints conditionally on the type
8183 wanted.
8184 (base_breakpoint_create_sals_from_address): New function.
8185 (base_breakpoint_create_breakpoints_sal): Likewise.
8186 (base_breakpoint_decode_linespec): Likewise.
8187 (base_breakpoint_ops): Add methods
8188 `base_breakpoint_create_sals_from_address',
8189 `base_breakpoint_create_breakpoints_sal' and
8190 `base_breakpoint_decode_linespec'.
8191 (bkpt_create_sals_from_address): New function.
8192 (bkpt_create_breakpoints_sal): Likewise.
8193 (bkpt_decode_linespec): Likewise.
8194 (tracepoint_create_sals_from_address): Likewise.
8195 (tracepoint_create_breakpoints_sal): Likewise.
8196 (tracepoint_decode_linespec): Likewise.
8197 (strace_marker_create_sals_from_address): Likewise.
8198 (strace_marker_create_breakpoints_sal): Likewise.
8199 (strace_marker_decode_linespec): Likewise.
8200 (strace_marker_breakpoint_ops): New variable.
8201 (addr_string_to_sals): Remove `marker_spec'. Call method
8202 `decode_linespec' from breakpoint_ops, replacing code that decoded
8203 an address string into a SAL. Use `strace_marker_p' instead of
8204 `marker_spec'.
8205 (strace_command): Decide whether we are dealing with a static
8206 tracepoint with marker or not. Use the appropriate breakpoint_ops.
8207 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
8208 * breakpoint.h (linespec_result, linespec_sals): New forward
8209 declarations.
8210 (breakpoint_ops) <create_sals_from_address>,
8211 <create_breakpoints_sal>, <decode_linespec>: New methods.
8212
4795f398
DE
82132012-01-14 Doug Evans <dje@google.com>
8214
8215 * NEWS: Update text for "maint set python print-stack".
8216 It is deprecated in gdb 7.4 and deleted in 7.5.
8217
ee5106fe
EZ
82182012-01-13 Eli Zaretskii <eliz@gnu.org>
8219
8220 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
8221 including curses.h.
8222
b161e06f
JK
82232012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
8224
8225 * configure: Regenerate.
8226 * config.in: Regenerate.
8227
85254831
KS
82282012-01-12 Keith Seitz <keiths@redhat.com>
8229
8230 PR mi/10586
8231 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
8232 (ANONYMOUS_UNION_NAME): Define.
8233 (is_path_expr_parent): New function.
8234 (get_path_expr_parent): New function.
8235 (is_anonymous_child): New function.
8236 (create_child_with_value): If the child is anonymous and without
8237 a name, assign an object name to it.
8238 (c_describe_child): Use get_path_expr_parent to determine
8239 the parent expression.
8240 If there field represents an anonymous struct or union and
8241 has no name, set an appropriate display name and expression.
8242 (cplus_describe_child): Likewise.
8243
620fa63a
PA
82442012-01-12 Pedro Alves <palves@redhat.com>
8245
8246 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
8247 available when %ebp is found to be zero (outermost).
8248
2efa2c79
AT
82492012-01-11 Andreas Tobler <andreast@fgznet.ch>
8250
8251 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
8252 an internal gdb_static_assert.
8253 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
8254
88e7d25d
TT
82552012-01-11 Tom Tromey <tromey@redhat.com>
8256
8257 PR gdb/9598:
8258 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
8259 catch" and "catch throw".
8260
72384ba3
PH
82612012-01-11 Paul Hilfinger <hilfingr@adacore.com>
8262
8263 * blockframe.c (block_innermost_frame): Start search from selected
8264 frame, if present, or otherwise the current frame.
8265
8266 * c-exp.y (variable): Update innermost_block for
8267 'block COLONCOLON NAME' clause.
8268 * m2-exp.y (variable): Ditto.
8269 * objc-exp.y (variable): Ditto.
8270
065a711f
TT
82712012-01-10 Tom Tromey <tromey@redhat.com>
8272
8273 PR python/13199:
8274 * python/python.c (finish_python_initialization): Set sys.argv.
8275
f3f5162e
DE
82762012-01-10 Doug Evans <dje@google.com>
8277
8278 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
8279 "want_line_info". All callers updated.
8280 (dwarf_decode_lines_1): New function.
8281 (handle_DW_AT_stmt_list): Add function comment.
8282 New arg "want_line_info". All callers updated.
8283 (read_file_scope,read_type_unit_scope): Move comment from
8284 handle_DW_AT_stmt_list to here.
8285
9934703b
JK
82862012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
8287
8288 Fix regression after libiberty/ update for GCC PR 6057 and others.
8289 * c-exp.y (operator) <OPERATOR DELETE>
8290 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
8291 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
8292 (make_builtin_type, make_name): New variable i, add gdb_assert.
8293 (operator) <OPERATOR NEW>: Update ARGS to 3.
8294 (operator) <OPERATOR DELETE>: Add trailing space.
8295 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
8296 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
8297 * cp-support.c (cp_canonicalize_string): Check NULL from
8298 cp_comp_to_string, call warning and return.
8299
06b9f45f
JK
83002012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
8301
8302 Fix duplicate .o files after omitting libbfd.a.
8303 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
8304 (SFILES): Add corelow.c.
8305 (COMMON_OBS): Add corelow.o.
8306 (ALLDEPFILES): Remove corelow.c.
8307 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
8308 * config/alpha/alpha-osf3.mh: Likewise.
8309 * config/alpha/fbsd.mh: Likewise.
8310 * config/arm/nbsdaout.mh: Likewise.
8311 * config/arm/nbsdelf.mh: Likewise.
8312 * config/i386/i386gnu.mh: Likewise.
8313 * config/ia64/hpux.mh: Likewise.
8314 * config/ia64/linux.mh: Likewise.
8315 * config/m32r/linux.mh: Likewise.
8316 * config/m68k/linux.mh: Likewise.
8317 * config/mips/irix5.mh: Likewise.
8318 * config/mips/irix6.mh: Likewise.
8319 * config/pa/hpux.mh: Likewise.
8320 * config/pa/linux.mh: Likewise.
8321 * config/powerpc/aix.mh: Likewise.
8322 * config/sparc/linux.mh: Likewise.
8323 * config/sparc/linux64.mh: Likewise.
8324 * config/sparc/sol2.mh: Likewise.
8325 * config/vax/vax.mh: Likewise.
8326 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
8327 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
8328 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
8329 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
8330 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
8331 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
8332 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
8333 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
8334 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
8335 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
8336 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
8337 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
8338 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
8339 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
8340 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
8341 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
8342 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
8343 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
8344 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
8345 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
8346 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
8347 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
8348 corelow.o from gdb_target_obs.
8349 * corefile.c (core_target): Update the comment on NULL value.
8350 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
8351 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
8352 MATCHES. Drop YUMMY set on NULL.
8353 (core_close): Do not call exit_inferior_silent on zero PID. Do not
8354 reclaim CORE_DATA if it is already NULL.
8355
34365054
DE
83562012-01-09 Doug Evans <dje@google.com>
8357
8358 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
8359 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
8360
696166a3
KS
83612012-01-09 Keith Seitz <keiths@redhat.com>
8362
8363 * breakpoint.c (wrapper.h): Don't include.
8364
8e7b59a5
KS
83652012-01-09 Keith Seitz <keiths@redhat.com>
8366
8367 * Makefile.in (SFILES): Remove wrapper.c.
8368 (HFILES_NO_SRCDIR): Remove wrapper.h.
8369 (COMMON_OBS): Remove wrapper.o.
8370 * cli/cli-interp.c: Don't inlude wrapper.h.
8371 * corelow.c: Likewise.
8372 (core_open): Replace gdb_target_find_new_threads with
8373 TRY_CATCH around target_find_new_threads.
8374 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
8375 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
8376 * varobj.c (varobj_create): Likewise for parse_exp_1 and
8377 evaluate_expression.
8378 (varobj_set_value): Likewise for evaluate_expression and
8379 value_assign.
8380 (install_new_variable): Likewise for value_fetch_lazy.
8381 (adjust_value_for_child_access): Likewise for value_ind.
8382 (c_describe_child): Likewise for value_subscript and
8383 value_ind.
8384 (c_value_of_root): Likewise for evaluate_expression.
8385 * wrapper.c: Remove.
8386 * wrapper.h: Remove.
8387
1a4eeb98
DE
83882012-01-09 Doug Evans <dje@google.com>
8389
9ff913ba
DE
8390 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
8391 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
8392 "abfd" args with "section". All callers updated.
8393 Error checking code moved ...
8394 (error_check_comp_unit_head): ... here. New function.
8395 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
8396 Delete arg "abfd". New arg "type_offset". All callers updated.
8397 (create_debug_types_hash_table): Simplify by using
8398 read_and_check_type_unit_head.
8399
1a4eeb98
DE
8400 * parser-defs.h (namecopy): Delete.
8401 * parse.c (namecopy, namecopy_size): Move into copy_name.
8402
2e6af8c0
JK
84032012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
8404
8405 Partially fix duplicate .o files after omitting libbfd.a.
8406 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
8407 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
8408 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
8409 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
8410 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
8411 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
8412 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
8413
9f2f828a
PA
84142012-01-09 Pedro Alves <palves@redhat.com>
8415
8416 * MAINTAINERS: Update my email address.
8417
4d72c0bc
DE
84182012-01-08 Doug Evans <dje@google.com>
8419
d467dd73
DE
8420 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
8421 n_type_units. Rename type_comp_units to all_type_units.
8422 All uses updated.
8423 (add_signatured_type_cu_to_table): Renamed from
8424 add_signatured_type_cu_to_list. All callers updated.
8425
4d72c0bc
DE
8426 * gdbtypes.h (struct cplus_struct_type): Delete member
8427 nfn_fields_total. All uses removed.
8428
21b2bd31
DE
84292012-01-06 Doug Evans <dje@google.com>
8430
8431 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
8432 to top of file.
8433 (dwarf2_find_comp_unit): Delete.
8434 (process_psymtab_comp_unit): Make result "void".
8435 Delete args buffer, info_ptr, buffer_size, and replace with
8436 "section". All callers updated.
8437 (dwarf2_build_psymtabs_hard): Simplify.
8438
bfd189b1
SDJ
84392012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
8440 Thiago Jung Bauermann <bauerman@br.ibm.com>
8441
8442 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
8443 before `struct gdb_exception'.
8444 * breakpoint.c (update_global_location_list_nothrow)
8445 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
8446 * cp-abi.c (value_rtti_type): Likewise.
8447 * cp-support.c (cp_validate_operator): Likewise.
8448 * infrun.c (insert_exception_resume_breakpoint)
8449 (check_exception_resume, keep_going): Likewise.
8450 * mi-interp.c (mi_breakpoint_created)
8451 (mi_breakpoint_modified): Likewise.
8452 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
8453 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
8454 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
8455
6b07635f
DE
84562012-01-05 Doug Evans <dje@google.com>
8457
0b30b85c
DE
8458 * dwarf2read.c (statement_prologue): Delete, unused.
8459
98714339
DE
8460 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
8461 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
8462
6b07635f
DE
8463 * dwarf2read.c (comp_unit_header): Delete, unused.
8464
761f4555
UW
84652012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
8466
8467 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
8468 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
8469
2ca0b532
PA
84702012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
8471
8472 * infrun.c (normal_stop): Don't skip calling the normal_stop
8473 observers if the thread was doing a multi-step, but stopped for
8474 some reason other than stepping.
8475
50aeff07
PA
84762012-01-05 Pedro Alves <alves.ped@gmail.com>
8477
8478 * cli/cli-decode.h: Add comments.
8479 (CMD_LIST_AMBIGUOUS): Moved to command.h
8480 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
8481 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
8482 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
8483 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
8484 (add_com, add_com_alias, add_info, add_info_alias)
8485 (complete_on_cmdlist, complete_on_enum, help_list): Remove
8486 declarations.
8487 * command.h: Add and adjust comments.
8488 (CMD_LIST_AMBIGUOUS): Moved here.
8489 (help_cmd, help_cmd_list): Delete declarations.
8490
5953832c
DE
84912012-01-04 Doug Evans <dje@google.com>
8492
e5fe5e75
DE
8493 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
8494 All callers updated.
8495 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
8496 Replace all arguments with "per_cu". All callers updated.
8497
28dee7f5
DE
8498 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
8499
23745b47
DE
8500 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
8501 New arg "per_cu". All callers updated.
8502
5953832c
DE
8503 Delete #if 0'd out code.
8504 * language.c (binop_result_type): Delete.
8505 (simple_type, ordered_type, same_type, integral_type): Delete.
8506 (numeric_type, character_type, string_type, boolean_type): Delete.
8507 (float_type, structured_type): Delete.
8508 * language.h: Update.
8509
0f5b7562
TT
85102012-01-04 Tom Tromey <tromey@redhat.com>
8511
8512 * python/py-value.c (valpy_binop): Initialize 'res_val'.
8513
78218f56
JB
85142012-01-04 Joel Brobecker <brobecker@adacore.com>
8515
8516 * corefile.c (close_exec_file): Delete.
8517 (reopen_exec_file): Remove commented out code that seems related
8518 to close_exec_file, which is being deleted here.
8519 * inferior.h (close_exec_file): Delete.
8520 * fork-child.c (fork_inferior): Remove call to fork_inferior.
8521
0fcd72ba
JB
85222012-01-04 Joel Brobecker <brobecker@adacore.com>
8523
8524 * ada-lang.c: #include "cli/cli-utils.h".
8525 (get_selections): Use skip_spaces.
8526 (ada_get_next_arg): Use skip_spaces and skip_to_space.
8527 (catch_ada_exception_command_split): Use skip_spaces.
8528 (ada_decode_assert_location): Likewise.
8529
1dabb4c4
JB
85302012-01-04 Joel Brobecker <brobecker@adacore.com>
8531
8532 * linespec.c (decode_line_internal): Check for C++ or Java
8533 compound constructs only if the current language is C, C++
8534 or Java.
8535
5931a2fa
JK
85362012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
8537
8538 Revert:
8539 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
8540 Joel Brobecker <brobecker@adacore.com>
8541 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
8542 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
8543 3 times.
8544 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
8545 fall through into AT_ENTRY_POINT.
8546 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
8547 DUMMY_ADDR with it.
8548 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
8549 PPC_INSN_SIZE skip to 3 times.
8550
1a2da5ee
JB
85512012-01-04 Joel Brobecker <brobecker@adacore.com>
8552
8553 * linespec.c (add_minsym): Preserve function descriptors.
8554
8645ff69
UW
85552012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
8556
8557 * breakpoint.c (all_locations_are_pending): Consider locations
8558 in program spaces executing during startup pending as well.
8559
0b302171
JB
85602012-01-04 Joel Brobecker <brobecker@adacore.com>
8561
8562 Copyright year update in most files of the GDB Project.
8563
8ba098ad
JB
85642012-01-04 Joel Brobecker <brobecker@adacore.com>
8565
8566 * copyright.sh: Delete.
8567 * copyright.py: Rewrite.
8568
09c01c30
JB
85692012-01-04 Joel Brobecker <brobecker@adacore.com>
8570
8571 * gnulib/extra/update-copyright: New file, imported from gnulib.
8572
3c36c0af
JB
85732012-01-04 Joel Brobecker <brobecker@adacore.com>
8574
8575 * README (Copyright and License Notices): New section.
8576
888fe1e1
TT
85772012-01-03 Tom Tromey <tromey@redhat.com>
8578
8579 PR python/12533:
8580 * python/py-value.c (valpy_dereference, valpy_get_address
8581 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
8582 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
8583 (valpy_absolute, valpy_richcompare): Free intermediate values.
8584
6e681866
JB
85852011-01-03 Joel Brobecker <brobecker@adacore.com>
8586
8587 * ada-lang.c: Reformat the copyright notice.
8588
0cd09acb
JK
85892012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
8590
8591 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
8592 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
8593 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
8594 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
8595 Revert this part of:
8596 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
8597 Build gdb directly from *.o files not using libgdb.a.
8598 * Makefile.in (COMMON_OBS): Remove solib-target.o.
8599
12c3e59c
JB
86002012-01-02 Joel Brobecker <brobecker@adacore.com>
8601
8602 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
8603 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
8604 Reformat the copyright header.
8605
11bf1490
JK
86062012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
8607
8608 Revert this part of:
8609 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
8610 Remove the gdbtui binary.
8611 * gdb.c (main): Remove args.interpreter_p initialization.
8612 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
8613 * main.h (struct captured_main_args): Remove interpreter_p.
8614
1fef196f
JB
86152012-01-02 Joel Brobecker <brobecker@adacore.com>
8616
8617 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
8618
67827812
JB
86192012-01-02 Joel Brobecker <brobecker@adacore.com>
8620
8621 * top.c (print_gdb_version): Update copyright year.
8622
a4d0b831
YQ
86232012-01-02 Yao Qi <yao@codesourcery.com>
8624
8625 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
8626
b5914469
JK
86272012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
8628 Joel Brobecker <brobecker@adacore.com>
8629
8630 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
8631 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
8632 3 times.
8633 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
8634 fall through into AT_ENTRY_POINT.
8635 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
8636 DUMMY_ADDR with it.
8637 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
8638 PPC_INSN_SIZE skip to 3 times.
8639
8da828f7
JK
86402012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
8641
8642 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
8643 the return value.
8644 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
8645
8574e74b
JK
86462012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
8647
8648 Build gdb directly from *.o files not using libgdb.a.
8649 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
8650 (COMMON_OBS): Remove solib-target.o.
8651 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
8652 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
8653 (LIBGDB_OBS, libgdb.a): Move it above.
8654 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
8655 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
8656 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
8657 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
8658 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
8659 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
8660 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
8661 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
8662 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
8663 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
8664 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
8665 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
8666 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
8667 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
8668 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
8669 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
8670 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
8671 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
8672 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
8673 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
8674 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
8675 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
8676 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
8677 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
8678 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
8679 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
8680 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
8681
217bff3e
JK
86822012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
8683
8684 Remove the gdbtui binary.
8685 * .gitignore (/gdbtui): Remove.
8686 * Makefile.in (TUI): Remove.
8687 (SUBDIR_TUI_OBS): Remove tui-main.o.
8688 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
8689 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
8690 (tui-main.o): Remove.
8691 (all_object_files): Remove tui-main.o.
8692 * NEWS: New note for the gdbtui removal.
8693 * configure: Rebuilt.
8694 * configure.ac: No longer add all-tui, clean-tui, install-tui and
8695 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
8696 CONFIG_UNINSTALL respectively.
8697 * gdb.c (main): Remove args.interpreter_p initialization.
8698 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
8699 * main.h (struct captured_main_args): Remove interpreter_p.
8700 * tui/tui-main.c: Remove.
8701
9cdd5dbd
DE
87022012-01-01 Doug Evans <dje@google.com>
8703
bb5ed363
DE
8704 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
8705 (dwarf2_physname, read_import_statement): Ditto.
8706 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
8707 (process_structure_scope read_subroutine_type): Ditto.
8708 (read_typedef, load_partial_dies, read_partial_die): Ditto.
8709 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
8710 (dwarf2_fetch_die_location_block): Ditto.
8711 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
8712
a0f42c21
DE
8713 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
8714 All callers updated.
8715 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
8716 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
8717 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
8718
2dc860c0
DE
8719 * dwarf2read.c (load_cu): Move assert to more useful location.
8720
68dc6402
DE
8721 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
8722 All callers updated.
8723
9cdd5dbd
DE
8724 * dwarf2read.c (dwarf2_per_objfile): Add comment.
8725 (dwarf2_elf_names): Minor reformat.
8726 (dwarf2_per_cu_data): Tweak comment.
8727 (dwarf2_read_section): Fix comment.
8728 (create_all_comp_units): Fix comment.
8729 (load_full_comp_unit): Fix comment.
8730 (process_full_comp_unit): Fix comment.
8731 (read_signatured_type): Fix comment.
8732
0c10e53e 8733For older changes see ChangeLog-2011.
c906108c
SS
8734\f
8735Local Variables:
8736mode: change-log
8737left-margin: 8
8738fill-column: 74
8739version-control: never
57da7796 8740coding: utf-8
c906108c 8741End: