]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/ChangeLog
* breakpoint.c (addr_string_to_sals): Avoid uninitialized
[thirdparty/binutils-gdb.git] / gdb / ChangeLog
1 2011-03-31 Ulrich Weigand <uweigand@de.ibm.com>
2
3 * breakpoint.c (addr_string_to_sals): Avoid uninitialized
4 variable compiler warning.
5
6 2011-03-30 Thiago Jung Bauermann <bauerman@br.ibm.com>
7
8 * breakpoint.c (breakpoint_re_set_one): Factor out breakpoint-resetting
9 code from here ...
10 (re_set_breakpoint): ... to here ...
11 (addr_string_to_sals): ... and here.
12
13 2011-03-29 Pierre Muller <muller@ics.u-strasbg.fr>
14
15 * Makefile.in (SFILES): Add missing C sources.
16 (HFILES_NO_SRCDIR): Remove gdbserver subdirectory headers.
17 Add missing headers.
18
19 2011-03-29 Mike Frysinger <vapier@gentoo.org>
20
21 * .gitignore: New file.
22
23 2011-03-29 Mike Frysinger <vapier@gentoo.org>
24
25 * NEWS: Mention new cfi device simulation.
26
27 2011-03-29 Tom Tromey <tromey@redhat.com>
28
29 * dwarf2read.c (fixup_partial_die): Handle linkage name on
30 otherwise anonymous types.
31 (dwarf2_name): Likewise.
32 * valops.c (value_struct_elt_for_reference): Refine artificial
33 type logic. Call error if j==-1.
34
35 2011-03-29 Andreas Tobler <andreast-list@fgznet.ch>
36
37 Fix false GCC warning.
38 * infcall.c (find_function_addr): Initialize funaddr.
39
40 2011-03-29 Pierre Muller <muller@ics.u-strasbg.fr>
41
42 Fix mingw compilation with --enable-targets=all.
43 * remote-mips.c (gdb_usleep.h): Include header.
44 (mips_enter_debug): Use gdb_usleep instead of sleep.
45
46 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
47
48 Support resolution of STT_GNU_IFUNC via breakpoints.
49 * breakpoint.c (print_it_typical): Support bp_gnu_ifunc_resolver and
50 bp_gnu_ifunc_resolver_return.
51 (bpstat_what): Rename parameter to bs_head, new variable bs, adjust
52 the loop. Support bp_gnu_ifunc_resolver and
53 bp_gnu_ifunc_resolver_return. New comment after the loop. New loop
54 for bp_gnu_ifunc_resolver and bp_gnu_ifunc_resolver_return
55 breakpoints.
56 (bptype_string, print_one_breakpoint_location): Support
57 bp_gnu_ifunc_resolver and bp_gnu_ifunc_resolver_return.
58 (user_settable_breakpoint): Return true also for
59 bp_gnu_ifunc_resolver.
60 (allocate_bp_location): Support bp_gnu_ifunc_resolver and
61 bp_gnu_ifunc_resolver_return.
62 (set_breakpoint_location_function): New parameter explicit_loc,
63 describe it. Call find_pc_partial_function_gnu_ifunc with new
64 variable IS_GNU_IFUNC and adjust the address for STT_GNU_IFUNC if
65 EXPLICIT_LOC is not set.
66 (set_raw_breakpoint): Set EXPLICIT_LOC for
67 set_breakpoint_location_function.
68 (clone_momentary_breakpoint): Use true for EXPLICIT_LOC of
69 set_breakpoint_location_function.
70 (mention): Support bp_gnu_ifunc_resolver and
71 bp_gnu_ifunc_resolver_return.
72 (add_location_to_breakpoint): Set EXPLICIT_LOC for
73 set_breakpoint_location_function.
74 (update_breakpoint_locations): Remove static.
75 (breakpoint_re_set_one): Support bp_gnu_ifunc_resolver and
76 bp_gnu_ifunc_resolver_return.
77 * breakpoint.h (enum bptype): New fields bp_gnu_ifunc_resolver and
78 bp_gnu_ifunc_resolver_return.
79 (update_breakpoint_locations): New declaration.
80 * elfread.c: Include gdbthread.h and regcache.h.
81 (elf_gnu_ifunc_resolver_stop, elf_gnu_ifunc_resolver_return_stop): New
82 functions.
83 (elf_gnu_ifunc_fns): Install them.
84 * minsyms.c (stub_gnu_ifunc_resolver_stop)
85 (stub_gnu_ifunc_resolver_return_stop): New functions.
86 (stub_gnu_ifunc_fns): Install them.
87 * symtab.h (struct gnu_ifunc_fns): New fields gnu_ifunc_resolver_stop
88 and gnu_ifunc_resolver_return_stop.
89 (gnu_ifunc_resolver_stop, gnu_ifunc_resolver_return_stop): New.
90
91 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
92
93 STT_GNU_IFUNC reader implementation.
94 * elfread.c: Include gdbtypes.h, value.h and infcall.h.
95 (SYMBOL_GOT_PLT_SUFFIX, elf_rel_plt_read)
96 (elf_objfile_gnu_ifunc_cache_data, struct elf_gnu_ifunc_cache)
97 (elf_gnu_ifunc_cache_hash, elf_gnu_ifunc_cache_eq)
98 (elf_gnu_ifunc_record_cache, elf_gnu_ifunc_resolve_by_cache)
99 (elf_gnu_ifunc_resolve_by_got, elf_gnu_ifunc_resolve_name)
100 (elf_gnu_ifunc_resolve_addr): New.
101 (elf_symfile_read): Call elf_rel_plt_read.
102 (elf_gnu_ifunc_fns): New.
103 (_initialize_elfread): Initialize elf_objfile_gnu_ifunc_cache_data.
104 Install elf_gnu_ifunc_fns.
105 * infcall.c (find_function_return_type): New function.
106 (find_function_addr): Resolve TYPE_GNU_IFUNC functions, if possible.
107 * minsyms.c (stub_gnu_ifunc_resolve_addr)
108 (stub_gnu_ifunc_resolve_name): New functions.
109 (stub_gnu_ifunc_fns, gnu_ifunc_fns_p): New variables.
110 * symtab.h (struct gnu_ifunc_fns, gnu_ifunc_resolve_addr)
111 (gnu_ifunc_resolve_name, gnu_ifunc_fns_p): New.
112
113 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
114
115 Code cleanup for later STT_GNU_IFUNC support.
116 * infcall.c (find_function_addr): Remove variable code, use explicit
117 dereferences for it. Move VALUE_TYPE initialization later.
118
119 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
120
121 GDB find_pc_partial_function support for STT_GNU_IFUNC.
122 * blockframe.c (cache_pc_function_is_gnu_ifunc): New variable.
123 (clear_pc_function_cache): Clear it.
124 (find_pc_partial_function): Rename to ...
125 (find_pc_partial_function_gnu_ifunc): ... this function. New
126 parameter is_gnu_ifunc_p, describe it. Set *IS_GNU_IFUNC_P.
127 (find_pc_partial_function): New wrapper for this function.
128 * symtab.h (find_pc_partial_function_gnu_ifunc): New declaration.
129
130 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
131
132 GDB internal type support for STT_GNU_IFUNC.
133 * elfread.c (record_minimal_symbol): Support mst_text_gnu_ifunc.
134 (elf_symtab_read): Set mst_text_gnu_ifunc for
135 BSF_GNU_INDIRECT_FUNCTION.
136 * eval.c (evaluate_subexp_standard): Support TYPE_GNU_IFUNC.
137 * gdbtypes.c (init_type): Support TYPE_FLAG_GNU_IFUNC,
138 builtin_func_func, nodebug_text_gnu_ifunc_symbol and
139 nodebug_got_plt_symbol.
140 * gdbtypes.h (enum type_flag_value): New entry TYPE_FLAG_GNU_IFUNC.
141 (TYPE_GNU_IFUNC): New.
142 (struct main_type): New field flag_gnu_ifunc.
143 (struct builtin_type): New field builtin_func_func.
144 (struct objfile_type): New fields nodebug_text_gnu_ifunc_symbol and
145 nodebug_got_plt_symbol.
146 * minsyms.c (lookup_minimal_symbol_text): Support mst_text_gnu_ifunc.
147 (in_gnu_ifunc_stub): New.
148 (prim_record_minimal_symbol, find_solib_trampoline_target): Support
149 mst_text_gnu_ifunc.
150 * parse.c (write_exp_msymbol): New variable ifunc_msym. Detect and
151 support mst_text_gnu_ifunc. Support mst_slot_got_plt.
152 * solib-svr4.c (svr4_in_dynsym_resolve_code): Return true also for
153 in_gnu_ifunc_stub.
154 * symmisc.c (dump_msymbols): Support mst_text_gnu_ifunc.
155 * symtab.c (search_symbols): Likewise.
156 * symtab.h (enum minimal_symbol_type): New fields mst_text_gnu_ifunc
157 and mst_slot_got_plt.
158 (in_gnu_ifunc_stub): New declaration.
159
160 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
161
162 Support a ring of related breakpoints.
163 * breakpoint.c (watchpoint_del_at_next_stop): New, move here code from
164 other functions, add gdb_assert.
165 (update_watchpoint, watchpoint_check): Add gdb_assert. Use
166 watchpoint_del_at_next_stop.
167 (bpstat_check_watchpoint): Use watchpoint_del_at_next_stop.
168 (bpstat_stop_status): Handle ring in related_breakpoint.
169 (set_raw_breakpoint_without_location): Initialize ring in
170 related_breakpoint.
171 (delete_breakpoint): Handle ring in related_breakpoint, use
172 watchpoint_del_at_next_stop.
173 (map_breakpoint_numbers): Handle ring in related_breakpoint.
174
175 2011-03-28 Tom Tromey <tromey@redhat.com>
176
177 PR symtab/12441:
178 * dwarf2read.c (prepare_one_comp_unit): Don't call set_cu_language
179 with `language_minimal'.
180
181 2011-03-25 Ulrich Weigand <ulrich.weigand@linaro.org>
182
183 * arm-tdep.c (arm_elf_make_msymbol_special): Use ARM_SYM_BRANCH_TYPE
184 instead of checking for STT_ARM_TFUNC symbol type.
185
186 2011-03-25 Tom Tromey <tromey@redhat.com>
187
188 * linespec.c (symbol_found): Restore line-based result for
189 non-LOC_LABEL symbols.
190
191 2011-03-25 Kai Tietz <ktietz@redhat.com>
192
193 * tui/tui-source.c (tui_set_source_content): Use filename_cmp
194 instead of strcmp for comparison.
195 (tui_source_is_displayed): Likewise.
196 * tui/tui-winsource.c (tui_update_breakpoint_info): Likewise.
197
198 2011-03-24 Mark Wielaard <mjw@redhat.com>
199
200 * dwarf2read.c (lookup_signatured_type): Use DW_FORM_ref_sig8 in
201 complaint.
202 (skip_one_die): Use DW_FORM_ref_sig8, not DW_FORM_sig8.
203 (find_partial_die_in_comp_unit): Likewise in comment.
204 (read_attribute_value): Likewise.
205 (lookup_die_type): Likewise.
206 (dwarf_form_name): Likewise.
207 (dump_die_shallow): Likewise.
208 (follow_die_ref_or_sig): Likewise.
209
210 2011-03-24 Tom Tromey <tromey@redhat.com>
211
212 PR breakpoints/11816:
213 * linespec.c (decode_line_1): Parse `function:label' linespecs.
214 (decode_compound): Update.
215 (find_function_symbol): New function.
216 (decode_dollar): Update.
217 (decode_label): Add 'function_symbol' parameter. Handle
218 function-relative labels.
219 (decode_variable): Update.
220 (symbol_found): Add 'function_symbol' parameter. Use label's PC,
221 not its line. Set `special_display' and canonical name for
222 labels.
223
224 2011-03-24 Tom Tromey <tromey@redhat.com>
225
226 * linespec.h (struct linespec_result) <special_display>: New
227 field.
228 * breakpoint.h (struct breakpoint) <display_canonical>: New
229 field.
230 * breakpoint.c (print_breakpoint_location): Respect
231 display_canonical.
232 (create_breakpoint_sal): Add 'display_canonical' parameter.
233 (create_breakpoints_sal): Update.
234 (create_breakpoint): Update.
235
236 2011-03-24 Tom Tromey <tromey@redhat.com>
237
238 * symtab.c (decode_line_spec): Update.
239 * linespec.c (build_canonical_line_spec): Change type of
240 'canonical'.
241 (decode_line_2, decode_line_1, decode_objc, decode_compound)
242 (find_method, decode_all_digits, decode_dollar, decode_label)
243 (symbol_found): Likewise.
244 (init_linespec_result): New function.
245 * breakpoint.c (struct captured_parse_breakpoint_args)
246 <canonical_p>: New field, replaces addr_string_p.
247 (create_breakpoints_sal): Add 'canonical' parameter, replacing
248 'addr_string'.
249 (parse_breakpoint_sals): Likewise.
250 (do_captured_parse_breakpoint): Update.
251 (create_breakpoint): Use struct linespec_result.
252 (until_break_command): Update.
253 (breakpoint_re_set_one): Update.
254 (decode_line_spec_1): Update.
255 * linespec.h (struct linespec_result): New.
256 (init_linespec_result): Declare.
257
258 2011-03-23 Pedro Alves <pedro@codesourcery.com>
259
260 * regcache.c (regcache_raw_read): If the target didn't supply a
261 given raw register, mark it as unavailable.
262
263 2011-03-23 Kai Tietz <ktietz@redhat.com>
264
265 * breakpoint.c (clear_command): Use filename_cmp
266 instead of strcmp for comparison.
267 * buildsym.c (watch_main_source_file_lossage): Likewise.
268 (patch_subfile_names): Use IS_DIR_SEPARATOR instead of
269 checking just for slash.
270 * dbxread.c (read_dbx_symtab): Use lbasename instead of
271 strrchr and filename_cmp instead of strcmp for filenames.
272 (add_old_header_file): Use filename_cmp
273 instead of strcmp for comparison.
274 * exec.c (exec_set_section_address): Likewise.
275 * macrotab.c (macro_lookup_inclusion): Likewise.
276 (macro_lookup_inclusion): Likewise.
277 * elfread.c (_initialize_elfread): Likewise.
278 (elfstab_offset_sections): Likewise.
279 (elfstab_offset_sections): Use lbasename instead of
280 strrchr.
281 * mdebugread.c (parse_partial_symbols): Likewise.
282 (arse_partial_symbols): Use filename_(n)cmp instead of
283 str(n)cmp for comparison.
284 * minsyms.c (lookup_minimal_symbol): Likewise.
285 * psymtab.c (read_psymtabs_with_filename): Likewise.
286 * solib.c (solib_read_symbols): Likewise.
287 (reload_shared_libraries_1): Likewise.
288 * symmisc.c (maintenance_print_symbols): Likewise.
289 * symfile.c (separate_debug_file_exists): Likewise.
290 (reread_symbols): Likewise.
291 (find_separate_debug_file_by_debuglink): Likewise.
292 * remote-fileio.c (remote_fileio_func_rename): Likewise.
293 * source.c (add_path): Likewise.
294 * symtab.c (filename_seen): Likewise.
295 (file_matches): Likewise.
296 (print_symbol_info): Likewise.
297 (maybe_add_partial_symtab_filename): Likewise.
298 (make_source_files_completion_list): Likewise.
299 * xml-syscall.c (init_sysinfo): Likewise.
300 * windows-nat.c (_initialize_check_for_gdb_ini): Use
301 IS_DIR_SEPARATOR for checking for trailing path separator.
302
303 2011-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
304
305 * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_entry_value. New
306 label abort_expression.
307 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Handle
308 DWARF_VALUE_OPTIMIZED_OUT.
309
310 2011-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
311
312 Code cleanup.
313 * c-typeprint.c (c_type_print_args): Change parameter show_artificial
314 to linkage_name. Invert its value. Update the function comment.
315 (c_type_print_varspec_suffix): Invert it at the caller.
316 * dwarf2read.c (dwarf2_compute_name): Invert it at the caller.
317
318 2011-03-22 Pedro Alves <pedro@codesourcery.com>
319
320 * infcmd.c (post_create_inferior): Ignore NOT_AVAILABLE_ERROR
321 errors when reading the `stop_pc'.
322 * printcmd.c (pc_prefix): Use get_frame_pc_if_available instead of
323 get_frame_pc.
324
325 2011-03-22 Phil Muldoon <pmuldoon@redhat.com>
326
327 * NEWS: Document gdb.Write stream keyword.
328
329 2011-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
330
331 Revert:
332 2011-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
333 * dwarf2read.c (producer_is_gxx_lt_4_6): New function.
334 (dwarf2_add_field): Fix new_field->accessibility for
335 cu->header.version >= 3 while verifying also producer_is_gxx_lt_4_6.
336
337 2011-03-22 Phil Muldoon <pmuldoon@redhat.com>
338
339 PR python/12183
340
341 * python/py-function.c (fnpy_call): Treat GdbErrors differently to
342 other error classes. Do not print stack trace.
343
344 2011-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
345
346 * dwarf2read.c (producer_is_gxx_lt_4_6): New function.
347 (dwarf2_add_field): Fix new_field->accessibility for
348 cu->header.version >= 3 while verifying also producer_is_gxx_lt_4_6.
349
350 2011-03-21 Ulrich Weigand <ulrich.weigand@linaro.org>
351
352 * arm-tdep.c (arm_analyze_prologue): Do not abort parsing when
353 encountering a load via a non-SP register.
354
355 2011-03-21 Ulrich Weigand <uweigand@de.ibm.com>
356
357 * tramp-frame.c (tramp_frame_prepend_unwinder): Set stop_reason
358 field in returned unwinder.
359
360 2012-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
361
362 * ada-lang.c (replace_operator_with_call): Copy also GDBARCH.
363
364 2012-03-21 Joel Brobecker <brobecker@adacore.com>
365
366 * ada-lang.c (replace_operator_with_call): Use xzalloc instead
367 of xmalloc.
368
369 2012-03-18 Pedro Alves <pedro@codesourcery.com>
370
371 * frame.c (frame_unwind_register): Throw an error if unwinding the
372 register failed.
373 * get_prev_frame_1 (get_prev_frame_1): Ask the unwinder if there's
374 an unwind stop reason.
375 (frame_stop_reason_string): Handle UNWIND_UNAVAILABLE.
376 * frame.h (enum unwind_stop_reason) <UNWIND_OUTERMOST,
377 UNWIND_UNAVAILABLE>: New.
378 * inline-frame.c (inline_frame_unwind): Install
379 default_frame_unwind_stop_reason.
380 * frame-unwind.c: Include "exceptions.h".
381 (frame_unwind_find_by_frame): Swallow NOT_AVAILABLE_ERROR errors.
382 (default_frame_unwind_stop_reason): New.
383 * frame-unwind.h (frame_unwind_stop_reason_ftype): New typedef.
384 (default_frame_unwind_stop_reason): Declare.
385 (struct frame_unwind) <stop_reason>: New function pointer.
386
387 * dummy-frame.c: Install default_frame_unwind_stop_reason.
388 * dwarf2-frame.c: Include exceptions.h.
389 (struct dwarf2_frame_cache) <unavailable_retaddr>: New field.
390 (dwarf2_frame_cache): Swallow NOT_AVAILABLE_ERROR errors when
391 computing the CFA. If such an error was thrown, set
392 unavailable_retaddr.
393 (dwarf2_frame_unwind_stop_reason): New.
394 (dwarf2_frame_this_id): Don't build a frame id if the CFA was
395 unavailable.
396 (dwarf2_frame_unwind): Install dwarf2_frame_unwind_stop_reason.
397 (dwarf2_signal_frame_unwind): Ditto.
398
399 * amd64-tdep.c: Include "exceptions.h".
400 (struct amd64_frame_cache): New field "base_p".
401 (amd64_init_frame_cache): Clear it.
402 (amd64_frame_cache_1): New, factored out from amd64_frame_cache.
403 Avoid reading registers with functions that throw if the register
404 is not necessary to compute the frame base.
405 (amd64_frame_cache): Reimplement wrapping amd64_frame_cache_1, and
406 swallowing NOT_AVAILABLE_ERROR.
407 (amd64_frame_unwind_stop_reason): New.
408 (amd64_frame_this_id): Don't build a frame id if the frame base
409 was unavailable.
410 (amd64_frame_unwind): Install amd64_frame_unwind_stop_reason.
411 (amd64_sigtramp_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
412 base_p if the frame base was computable.
413 (amd64_sigtramp_frame_unwind_stop_reason): New.
414 (amd64_sigtramp_frame_this_id): Don't build a frame id if the
415 frame base was unavailable.
416 (amd64_sigtramp_frame_unwind): Install
417 amd64_sigtramp_frame_unwind_stop_reason.
418 (amd64_epilogue_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
419 base_p if the frame base was computable.
420 (amd64_epilogue_frame_unwind_stop_reason): New.
421 (amd64_epilogue_frame_this_id): Don't build a frame id if the
422 frame base was unavailable.
423 (amd64_epilogue_frame_unwind): Install
424 amd64_epilogue_frame_unwind_stop_reason.
425 * i386-tdep.c: Include "exceptions.h".
426 (struct i386_frame_cache): New field "base_p".
427 (i386_init_frame_cache): Clear it.
428 (i386_frame_cache_1): New, factored out from amd64_frame_cache.
429 Avoid reading registers with functions that throw if the register
430 is not necessary to compute the frame base.
431 (i386_frame_cache): Reimplement wrapping amd64_frame_cache_1, and
432 swallowing NOT_AVAILABLE_ERROR.
433 (i386_frame_unwind_stop_reason): New.
434 (i386_frame_this_id): Don't build a frame id if the frame base was
435 unavailable.
436 (i386_frame_prev_register): Handle unavailable SP.
437 (i386_frame_unwind): Install i386_frame_unwind_stop_reason.
438 (i386_epilogue_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
439 base_p if the frame base was computable.
440 (i386_epilogue_frame_unwind_stop_reason): New.
441 (i386_epilogue_frame_this_id): Don't build a frame id if the frame
442 base was unavailable.
443 (i386_epilogue_frame_unwind): Install
444 i386_epilogue_frame_unwind_stop_reason.
445 (i386_sigtramp_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
446 base_p if the frame base was computable.
447 (i386_sigtramp_frame_unwind_stop_reason): New.
448 (i386_sigtramp_frame_this_id): Don't build a frame id if the frame
449 base was unavailable.
450 (i386_sigtramp_frame_unwind): Install
451 i386_sigtramp_frame_unwind_stop_reason.
452 * sentinel-frame.c (sentinel_frame_prev_register): Use the value
453 type's size, not the register's.
454 (sentinel_frame_unwind): Install default_frame_unwind_stop_reason.
455
456 * alpha-mdebug-tdep.c (alpha_mdebug_frame_unwind): Install
457 default_frame_unwind_stop_reason.
458 * alpha-tdep.c (alpha_sigtramp_frame_unwind)
459 (alpha_heuristic_frame_unwind): Ditto.
460 * amd64obsd-tdep.c (amd64obsd_trapframe_unwind): Ditto.
461 * arm-tdep.c (arm_prologue_unwind, arm_stub_unwind): Ditto.
462 * avr-tdep.c (avr_frame_unwind): Ditto.
463 * cris-tdep.c (cris_sigtramp_frame_unwind, cris_frame_unwind):
464 Ditto.
465 * frv-linux-tdep.c (frv_linux_sigtramp_frame_unwind): Ditto.
466 * frv-tdep.c (frv_frame_unwind): Ditto.
467 * h8300-tdep.c (h8300_frame_unwind): Ditto.
468 * hppa-hpux-tdep.c (hppa_hpux_sigtramp_frame_unwind): Ditto.
469 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_unwind): Ditto.
470 * hppa-tdep.c (hppa_frame_unwind, hppa_fallback_frame_unwind)
471 (hppa_stub_frame_unwind): Ditto.
472 * i386obsd-tdep.c (i386obsd_trapframe_unwind): Ditto.
473 * ia64-tdep.c (ia64_frame_unwind, ia64_sigtramp_frame_unwind)
474 (ia64_libunwind_frame_unwind)
475 (ia64_libunwind_sigtramp_frame_unwind): Ditto.
476 * iq2000-tdep.c (iq2000_frame_unwind): Ditto.
477 * lm32-tdep.c (lm32_frame_unwind): Ditto.
478 * m32c-tdep.c (m32c_unwind): Ditto.
479 * m32r-linux-tdep.c (m32r_linux_sigtramp_frame_unwind): Ditto.
480 * m32r-tdep.c (m32r_frame_unwind): Ditto.
481 * m68hc11-tdep.c (m68hc11_frame_unwind): Ditto.
482 * m68k-tdep.c (m68k_frame_unwind): Ditto.
483 * m68klinux-tdep.c (m68k_linux_sigtramp_frame_unwind): Ditto.
484 * m88k-tdep.c (m88k_frame_unwind): Ditto.
485 * mep-tdep.c (mep_frame_unwind): Ditto.
486 * microblaze-tdep.c (microblaze_frame_unwind): Ditto.
487 * mips-tdep.c (mips_insn16_frame_unwind, mips_insn32_frame_unwind)
488 (mips_stub_frame_unwind): Ditto.
489 * mn10300-tdep.c (mn10300_frame_unwind): Ditto.
490 * moxie-tdep.c (moxie_frame_unwind): Ditto.
491 * mt-tdep.c (mt_frame_unwind): Ditto.
492 * ppc-linux-tdep.c (ppu2spu_unwind): Ditto.
493 * ppcobsd-tdep.c (ppcobsd_sigtramp_frame_unwind): Ditto.
494 * rs6000-tdep.c (rs6000_frame_unwind): Ditto.
495 * s390-tdep.c (s390_frame_unwind, s390_stub_frame_unwind)
496 (s390_sigtramp_frame_unwind): Ditto.
497 * score-tdep.c (score_prologue_unwind): Ditto.
498 * sh-tdep.c (sh_frame_unwind): Ditto.
499 * sh64-tdep.c (sh64_frame_unwind): Ditto.
500 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_unwind): Ditto.
501 * sparc-tdep.c (sparc32_frame_unwind): Ditto.
502 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_unwind): Ditto.
503 * sparc64-tdep.c (sparc64_frame_unwind): Ditto.
504 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_unwind): Ditto.
505 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_unwind): Ditto.
506 * sparc64obsd-tdep.c (sparc64obsd_frame_unwind)
507 (sparc64obsd_trapframe_unwind): Ditto.
508 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_unwind): Ditto.
509 * sparcobsd-tdep.c (sparc32obsd_sigtramp_frame_unwind): Ditto.
510 * spu-tdep.c (spu_frame_unwind, spu2ppu_unwind): Ditto.
511 * v850-tdep.c (v850_frame_unwind): Ditto.
512 * vax-tdep.c (vax_frame_unwind): Ditto.
513 * vaxobsd-tdep.c (vaxobsd_sigtramp_frame_unwind): Ditto.
514 * xstormy16-tdep.c (frame_unwind xstormy16_frame_unwind): Ditto.
515 * xtensa-tdep.c (xtensa_unwind): Ditto.
516
517 2011-03-18 Pedro Alves <pedro@codesourcery.com>
518
519 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Assume
520 there's always a frame. Use get_frame_pc_if_available instead of
521 get_frame_pc, and if there's no PC available, don't look up a
522 symtab.
523
524 2011-03-18 Pedro Alves <pedro@codesourcery.com>
525
526 * stack.c (print_frame_local_vars, print_frame_arg_vars): Handle
527 unavailable PC.
528
529 2011-03-18 Pedro Alves <pedro@codesourcery.com>
530
531 * tracepoint.c (set_traceframe_context): Handle unavailable PC
532 gracefully.
533
534 2011-03-18 Pedro Alves <pedro@codesourcery.com>
535
536 * frame.h (frame_unwind_caller_pc_if_available): Declare.
537 * frame.c (frame_unwind_caller_pc_if_available): New.
538 * stack.c (frame_info): Handle unavailable PC.
539
540 2011-03-18 Pedro Alves <pedro@codesourcery.com>
541
542 * frame.c (frame_unwind_pc): Rename to ...
543 (frame_unwind_pc_if_available): ... this. New `pc' output
544 parameter. Change return type to int. Gracefully handle
545 gdbarch_unwind_pc throwing NOT_AVAILABLE_ERROR. Return 0 if that
546 happened, or 1 otherwise.
547 (frame_unwind_pc): Reimplement on top of
548 frame_unwind_pc_if_available.
549 (get_frame_func): Rename to ...
550 (get_frame_func_if_available): New `pc' output parameter. Change
551 return type to int. Gracefully handle the PC not being available.
552 (get_frame_func): Reimplement on top of
553 get_frame_func_if_available.
554 (select_frame): Handle the PC being unavailable.
555 (get_prev_frame): Handle the PC being unavailable.
556 (get_frame_pc_if_available): New.
557 (get_frame_address_in_block_if_available): New.
558 (find_frame_sal): Handle the frame PC not being available.
559 * frame.h (get_frame_pc_if_available): Declare.
560 (get_frame_address_in_block_if_available): Declare.
561 (get_frame_func_if_available): Declare.
562 * stack.c (print_frame_info): Handle the PC being unavailable.
563 (find_frame_funname): Ditto.
564 (print_frame): Handle the PC being unavailable.
565 (get_frame_language): Ditto.
566 * blockframe.c (get_frame_block): Ditto.
567 * macroscope.c (default_macro_scope): Ditto.
568 * tui/tui-stack.c (tui_show_frame_info): Ditto.
569
570 2011-03-18 Pedro Alves <pedro@codesourcery.com>
571
572 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Catch
573 NOT_AVAILABLE_ERROR when evaluating the location expression.
574
575 2011-03-18 Pedro Alves <pedro@codesourcery.com>
576
577 * dwarf2loc.c (read_pieced_value): Handle get_frame_register_bytes
578 returning that the register piece is unavailable/optimized out.
579 (write_pieced_value): Handle get_frame_register_bytes returning
580 that the register piece is unavailable/optimized out when doing a
581 read-modify write of a bitfield.
582 * findvar.c (value_from_register): Handle get_frame_register_bytes
583 returning that the register piece is unavailable/optimized out.
584 * frame.c (get_frame_register_bytes): New parameters `optimizedp'
585 and `unavailablep'. Throw error on bad debug info. Use
586 frame_register instead of frame_register_read, to fill in the new
587 arguments.
588 * frame.h (get_frame_register_bytes): New parameters `optimizedp'
589 and `unavailablep'.
590 * valops.c: (value_assign): Adjust, and handle
591 get_frame_register_bytes failing.
592 * spu-tdep.c: Include exceptions.h.
593 (spu_software_single_step): Adjust, and handle
594 get_frame_register_bytes failing.
595 (spu_get_longjmp_target): Ditto.
596 * gdbarch.sh (register_to_value): Change to return int. New
597 parameters `optimizedp' and `unavailablep'.
598 * gdbarch.h, gdbarch.c: Regenerate.
599 * i386-tdep.c (i386_register_to_value): Adjust to new
600 gdbarch_register_to_value interface.
601 * i387-tdep.c (i387_register_to_value): Ditto.
602 * i387-tdep.h (i387_register_to_value): Ditto.
603 * alpha-tdep.c (alpha_register_to_value): Ditto.
604 * ia64-tdep.c (ia64_register_to_value): Ditto.
605 * m68k-tdep.c (m68k_register_to_value): Ditto.
606 * mips-tdep.c (mips_register_to_value): Ditto.
607 * rs6000-tdep.c (rs6000_register_to_value): Ditto.
608
609 2011-03-18 Pedro Alves <pedro@codesourcery.com>
610
611 * findvar.c (value_of_register): Mark the value as unavailable, if
612 the register is unavailable.
613 * frame.h (frame_register_unwind): New `unavailablep' parameter.
614 (frame_register): New `unavailablep' parameter.
615 (frame_register_read): Update comment.
616 * frame.c (frame_register_unwind): New `unavailablep' parameter.
617 Set it if the register is unavailable. If the register is
618 unavailable, clear the output buffer.
619 (frame_register): New `unavailablep' parameter. Pass it down.
620 (frame_unwind_register): Adjust.
621 (put_frame_register): Adjust.
622 (frame_register_read): Adjust. Also return false if the register
623 is not available.
624 (frame_register_unwind_location): Adjust.
625 * sentinel-frame.c (sentinel_frame_prev_register): If the register
626 is unavailable, mark the value accordingly.
627 * stack.c (frame_info): Handle unavailable registers.
628
629 2011-03-18 Pedro Alves <pedro@codesourcery.com>
630
631 * mi/mi-main.c (register_changed_p): Handle REG_UNAVAILABLE, and
632 simplify, using regcache_cooked_read.
633
634 2011-03-18 Pedro Alves <pedro@codesourcery.com>
635
636 * regcache.h (regcache_raw_read, regcache_raw_read_signed)
637 (regcache_raw_read_unsigned, regcache_raw_read_signed)
638 (regcache_raw_read_unsigned, regcache_raw_read_part)
639 (regcache_cooked_read, regcache_cooked_read_signed)
640 (regcache_cooked_read_unsigned, regcache_cooked_read_part)
641 (regcache_cooked_read_ftype): Change return to enum
642 register_status.
643 * regcache.c: Include exceptions.h
644 (regcache_save): Adjust to handle REG_UNAVAILABLE registers.
645 (do_cooked_read): Change return to enum register_status. Always
646 forward to regcache_cooked_read.
647 (regcache_raw_read): Change return to enum register_status. If
648 the register is not REG_VALID, memset the buffer. Return the
649 register's status.
650 (regcache_raw_read_signed): Handle non-REG_VALID registers and
651 return the register's status.
652 (regcache_raw_read_unsigned): Ditto.
653 (regcache_cooked_read): Change return to enum register_status.
654 Assert that with read-only regcaches, the register's status must
655 be known. If the regcache is read-only, and the register is not
656 REG_VALID, memset the buffer. Return the register's status.
657 (regcache_cooked_read_signed): Change return to enum
658 register_status. Handle non-REG_VALID registers and return the
659 register's status.
660 (regcache_cooked_read_unsigned): Change return to enum
661 register_status. Handle non-REG_VALID registers and return the
662 register's status.
663 (regcache_xfer_part, regcache_raw_read_part)
664 (regcache_cooked_read_part): Change return to enum
665 register_status. Return the register's status.
666 (regcache_read_pc): Throw NOT_AVAILABLE_ERROR if the register is
667 unavailable.
668 (regcache_dump): Handle unavailable cooked registers.
669 * frame.c (do_frame_register_read): Adjust interface to match
670 regcache_cooked_read_ftype.
671 * gdbarch.sh (pseudo_register_read): Change return to enum
672 register_status.
673 * gdbarch.h, gdbarch.c: Regenerate.
674
675 * i386-tdep.h (i386_pseudo_register_read): Change return to enum
676 register_status.
677 * i386-tdep.c (i386_pseudo_register_read): Change return to enum
678 register_status. If reading a raw register indicates the raw
679 register is not valid, return the raw register's status,
680 otherwise, return REG_VALID.
681 * amd64-tdep.c (amd64_pseudo_register_read): Change return to enum
682 register_status. Handle non-REG_VALID raw registers and return
683 the register's status.
684 * arm-tdep.c (arm_neon_quad_read)
685 (arm_pseudo_read): Change return to enum register_status. Handle
686 non-REG_VALID raw registers and return the register's status.
687 * avr-tdep.c (avr_pseudo_register_read): Ditto.
688 * frv-tdep.c (frv_pseudo_register_read): Ditto.
689 * h8300-tdep.c (h8300_pseudo_register_read): Ditto.
690 * hppa-tdep.c (hppa_pseudo_register_read): Ditto.
691 * m32c-tdep.c (m32c_move_reg_t): Change return to enum
692 register_status.
693 (m32c_raw_read, m32c_raw_write, m32c_banked_read)
694 (m32c_banked_write, m32c_sb_read, m32c_sb_write, m32c_part_read)
695 (m32c_part_write, m32c_cat_read, m32c_cat_write)
696 (m32c_r3r2r1r0_read, m32c_r3r2r1r0_write)
697 (m32c_pseudo_register_read): Change return to enum
698 register_status. Adjust.
699 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Change return to
700 enum register_status. Return the register's status.
701 * mep-tdep.c (mep_pseudo_cr32_read): Change return to enum
702 register_status. Return the register's status.
703 (mep_pseudo_cr64_read, mep_pseudo_register_read): Ditto.
704 * mips-tdep.c (mips_pseudo_register_read): Ditto.
705 * mt-tdep.c (mt_pseudo_register_read): Ditto.
706 * rs6000-tdep.c (move_ev_register_func): New typedef.
707 (e500_move_ev_register): Use it. Change return to enum
708 register_status. Return the register's status.
709 (do_regcache_raw_read): New function.
710 (do_regcache_raw_write): New function.
711 (e500_pseudo_register_read): Change return to enum
712 register_status. Return the register's status. Use
713 do_regcache_raw_read.
714 (e500_pseudo_register_write): Adjust. Use do_regcache_raw_write.
715 (dfp_pseudo_register_read): Change return to enum register_status.
716 Return the register's status.
717 (vsx_pseudo_register_read): Ditto.
718 (efpr_pseudo_register_read): Ditto.
719 (rs6000_pseudo_register_read): Ditto.
720 * s390-tdep.c (s390_pseudo_register_read): Change return to enum
721 register_status. Return the register's status.
722 * sh64-tdep.c (pseudo_register_read_portions): New function.
723 (sh64_pseudo_register_read): Change return to enum
724 register_status. Use pseudo_register_read_portions. Return the
725 register's status.
726 * ia64-tdep.c (ia64_pseudo_register_read): Change return to enum
727 register_status. Return the register's status.
728 * sh-tdep.c (pseudo_register_read_portions): New function.
729 (sh_pseudo_register_read): Change return to enum register_status.
730 Use pseudo_register_read_portions. Return the register's status.
731 * sparc-tdep.c (sparc32_pseudo_register_read): Change return to
732 enum register_status. Return the register's status.
733 * sparc64-tdep.c (sparc64_pseudo_register_read): Ditto.
734 * spu-tdep.c (spu_pseudo_register_read_spu)
735 (spu_pseudo_register_read): Ditto.
736 * xtensa-tdep.c (xtensa_register_read_masked)
737 (xtensa_pseudo_register_read): Ditto.
738 * bfin-tdep.c (bfin_pseudo_register_read): Ditto.
739
740 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
741
742 * python/py-value.c (valpy_getitem): Fix formatting of error function
743 call.
744
745 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
746
747 ARI fixes: Add missing internationalization markups throughout
748 C source files.
749 * darwin-nat-info.c: Ditto.
750 * record.c: Ditto.
751 * remote.c: Ditto.
752 * mi/mi-main.c: Ditto.
753
754 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
755
756 ARI fixes: Add missing internationalization markups throughout
757 yacc files.
758 * c-exp.y: Ditto.
759 * cp-name-parser.y: Ditto.
760 * f-exp.y: Ditto.
761 * m2-exp.y: Ditto.
762 * objc-exp.y: Ditto.
763 * p-exp.y: Ditto.
764
765 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
766
767 ARI fixes: Messages should have no trailing new lines.
768 * darwin-nat.c (mach_check_error): Remove trailing new line from
769 warning function call message.
770 * record.c (bfdcore_read): Idem for error call.
771
772 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
773
774 * common/signals.c (target_signal_from_host): Add _ markup to error
775 function call message.
776 (target_signal_to_host): Add _ markup and remove trailing new line
777 from warning call message.
778 (target_signal_from_command): Add _ markup to error function call
779 message.
780
781 2011-03-18 Phil Muldoon <pmuldoon@redhat.com>
782
783 PR python/12149
784
785 * python/python.c (gdbpy_write): Accept a stream argument and
786 operate to the appropriate stream.
787 (gdbpy_flush): Likewise.
788 (_initialize_python): Add stream constants.
789 (finish_python_initialization): Add GdbOutputErrorFile class.
790
791 2011-03-18 Kwok Cheung Yeung <kcy@codesourcery.com>
792
793 * MAINTAINERS: Add myself as a write-after-approval maintainer.
794
795 2011-03-18 Kwok Cheung Yeung <kcy@codesourcery.com>
796
797 * amd64-tdep.c (amd64_relocate_instruction): Fix ordering of arguments
798 to store_signed_integer. Add debug message when relocating CALL
799 instructions. Fix formatting of debug message.
800 * i386-tdep.c (i386_relocate_instruction): Ditto.
801
802 2011-03-17 Joel Brobecker <brobecker@gnat.com>
803
804 * target.h (struct target_ops): Remove to_lookup_symbol field.
805 (target_lookup_symbol): Delete macro.
806 * target.c (nosymbol, debug_to_lookup_symbol): Delete.
807 (update_current_target, setup_target_debug): Remove handling
808 of to_lookup_symbol target_ops field.
809 * ada-tasks.c (get_known_tasks_addr): Remove use of
810 target_lookup_symbol.
811 * coffread.c (coff_symtab_read): Likewise.
812 * dbxread.c (read_dbx_symtab): Ditto.
813
814 2011-03-17 Joel Brobecker <brobecker@gnat.com>
815
816 PR gdb/12116:
817 * configure.ac: Add getthrds declaration check.
818 * configure, config.in: Regenerate.
819 * aix-thread.c (getthrds): Declare only if not already declared
820 in procinfo.h. More declaration out of get_signaled_thread to
821 global scope.
822
823 2011-03-17 Phil Muldoon <pmuldoon@redhat.com>
824
825 * python/py-symtab.c: Populate symtab_object_methods,
826 sal_object_methods.
827 (stpy_is_valid): New function.
828 (salpy_is_valid): Ditto.
829 * python/py-symbol.c: Declare symbol_object_methods. Populate.
830 (sympy_is_valid): New function.
831 * python/py-objfile.c: Declare objfile_object_methods. Populate.
832 (objfpy_is_valid): New function.
833 * python/py-inferior.c: Populate inferior_object_methods.
834 (infpy_is_valid): New function.
835 * python/py-infthread.c: Populate thread_object_methods.
836 (thpy_is_valid): New function.
837 * python/py-block.c: Declare block_object_methods. Populate. Declare
838 block_iterator_object_methods. Populate.
839 (blpy_is_valid): New function.
840 (blpy_iter_is_valid): Ditto.
841
842 2011-03-16 Keith Seitz <keiths@redhat.com>
843
844 * linespec.c (find_methods): Canonicalize NAME before looking
845 up the symbol.
846 (name_end): New function.
847 (keep_name_info): New function.
848 (decode_line_1): Use keep_name_info.
849 (decode_compound): Likewise.
850 * cli/cli-utils.h (remove_trailing_whitespace): New function.
851 * cli/cli-utils.c (remove_trailing_whitespace): Likewise.
852
853 PR c++/12273
854 * linespec.c (locate_first_half): Keep overload information, too.
855 (decode_compound): Use a string to represent break characters
856 to escape the loop.
857 If P points to a break character, do not increment it.
858 For C++ and Java, keep overload information and relevant keywords.
859 If we cannot find a symbol, search the minimal symbols.
860
861 PR c++/11734
862 * linespec.c (decode_compound): Rename SAVED_ARG to
863 THE_REAL_SAVED_ARG.
864 Make a copy of THE_REAL_SAVED_ARG in SAVED_ARG and strip
865 single-quotes.
866 Pass a valid block to lookup_symbol.
867 (lookup_prefix_sym): Likewise.
868 (find_method): Construct search name based on SYM_CLASS instead
869 of SAVED_ARG.
870 * psymtab.c (lookup_partial_symbol): Add language parameter.
871 (lookup_symbol_aux_psymtabs): Likewise.
872 Don't assume that the psymtab we found was the right one. Search
873 for the desired symbol in the symtab to be certain.
874 (psymtab_search_name): New function.
875 (lookup_partial_symbol): Use psymtab_search_name.
876 Add language parameter.
877 (read_symtabs_for_function): Add language parameter and pass to
878 lookup_partial_symbol.
879 (find_symbol_file_from_partial): Likewise.
880
881 2011-03-16 Paul Pluzhnikov <ppluzhnikov@google.com>
882
883 PR gdb/12528
884 * dwarf2read.c (noop_record_line): New function.
885 (dwarf_decode_lines): Ignore line tables for GCd functions.
886
887 2011-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
888
889 Fix ARI warnings about new lines at the end of messages, which
890 are unneeded as there is a new line added at the end of the message
891 automatically.
892 * darwin-nat.c (darwin_stop_inferior): Ditto.
893 * dec-thread.c (dec_thread_get_ada_task_ptid): Ditto.
894 * dfp.c (decimal_to_number): Ditto.
895 * exec.c (print_section_info): Ditto.
896 * i386-darwin-nat.c (darwin_set_sstep): Ditto.
897 * osdata.c (get_osdata): Ditto.
898 * record.c (bfdcore_write): Ditto.
899 * remote-mips.c (mips_readchar): Ditto.
900 * remote.c (read_ptid): Ditto.
901 * ser-mingw.c (ser_windows_raw): Ditto.
902 * tracepoint.c (add_local_symbols): Ditto.
903 * windows-nat.c (fake_create_process): Ditto.
904
905 2011-03-16 Tom Tromey <tromey@redhat.com>
906
907 * tracepoint.c (stop_tracing): Don't declare.
908 * event-top.c (after_char_processing_hook): Add `(void)'.
909
910 2011-03-16 Phil Muldoon <pmuldoon@redhat.com>
911
912 * NEWS: Add Parameter sub-classing description.
913
914 2011-03-16 Kai Tietz <ktietz@redhat.com>
915
916 * MAINTAINERS: Update my e-mail address.
917
918 2011-03-15 Andreas Tobler <andreast@fgznet.ch>
919
920 * MAINTAINERS: Add myself for write after approval privileges.
921
922 2011-03-15 Michael Snyder <msnyder@vmware.com>
923
924 * frame.c (find_frame_sal): Assert sym is not null.
925
926 * dbxread.c (process_one_symbol): Assert 'name' is not null.
927
928 * objc-lang.c (selectors_info): Check strchr for null result.
929
930 * stabsread.c (define_symbol): Guard against bad stabstring input.
931
932 2011-03-15 Pierre Muller <muller@ics.u-strasbg.fr>
933
934 Remove trailing spaces and tabulations from pascal language
935 support sources.
936 p-exp.y: Ditto.
937 p-lang.c: Ditto.
938 p-lang.h: Ditto.
939 p-valprint.c: Ditto.
940
941 2011-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
942
943 * dwarf2read.c (dwarf2_get_pc_bounds): Require HIGH strictly higher
944 than LOW. Comment it.
945 (read_partial_die): Call complaint for inappropriate zero LOWPC or
946 HIGHPC not strictly higher than LOWPC.
947
948 2011-03-15 Pierre Muller <muller@ics.u-strasbg.fr>
949
950 Fix formatting of function declarations returning a pointer in
951 previous commit.
952 * varobj.c (varobj_add_child): Ditto.
953 * hppa-tdep.h (hppa_init_objfile_priv_data): Ditto.
954 * inferior.h (get_displaced_step_closure_by_addr): Ditto.
955
956 2011-03-15 Ulrich Weigand <uweigand@de.ibm.com>
957
958 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Add support
959 for the "generic" vector ABI used with GCC 4.3 and later.
960 (ppc64_sysv_abi_return_value): Likewise.
961
962 2011-03-15 Ulrich Weigand <uweigand@de.ibm.com>
963
964 * infcall.c (call_function_by_hand): Function return value is
965 always a non_lval, even when using struct_return.
966
967 2011-03-15 Pedro Alves <pedro@codesourcery.com>
968
969 * printcmd.c (ALL_DISPLAYS_SAFE): New.
970 (map_display_numbers): New.
971 (do_delete_display): New.
972 (undisplay_command): Use map_display_numbers.
973 (do_enable_disable_display): New.
974 (enable_disable_display_command): New function.
975 (enable_display): Delete.
976 (enable_display_command): New.
977 (disable_display_command): Reimplement.
978 (_initialize_printcmd): Adjust "enable display" command to use
979 `enable_display_command' as callback.
980
981 2011-03-14 Phil Muldoon <pmuldoon@redhat.com>
982
983 * NEWS: Add Python breakpoint 'stop' operation.
984
985 2011-03-14 Phil Muldoon <pmuldoon@redhat.com>
986
987 * NEWS: Delete duplicate entry. Fix typo.
988
989 2011-03-14 Pierre Muller <muller@ics.u-strasbg.fr>
990
991 Fix ARI warning about function names in first column.
992 Put prototype declaration on same line as return type.
993 * objc-exp.y: Ditto.
994 * p-exp.y: Ditto.
995 * python/py-stopevent.h: Ditto.
996 For long function names, split parameters to
997 allow function name on same line as return type.
998 * solib-pa64.c: Ditto.
999 * varobj.c: Ditto.
1000 * varobj.h: Ditto.
1001 For long function declaration, use single line.
1002 * hppa-tdep.h: Ditto.
1003 * inferior.h: Ditto.
1004
1005 2011-03-14 Phil Muldoon <pmuldoon@redhat.com>
1006
1007 * python/python.h: Declare gdbpy_should_stop and
1008 gdbpy_breakpoint_has_py_cond.
1009 * python/python.c: Add python.h to includes. Remove python.h from
1010 HAVE_PYTHON definition
1011 (gdbpy_should_stop): New dummy function.
1012 (gdbpy_breakpoint_has_py_cond): New dummy function.
1013 * python/py-breakpoint.c (bppy_init): Rewrite to allow
1014 sub-classing capabilities.
1015 (gdbpy_should_stop): New function.
1016 (gdbpy_breakpoint_has_py_cond): New function.
1017 (local_setattro): New function.
1018 * breakpoint.c (condition_command): Add check for Python 'stop'
1019 operation.
1020 (bpstat_check_breakpoint_conditions): Execute Python 'stop'
1021 operation function as part of stop/continue tests.
1022
1023 2011-03-14 Tom Tromey <tromey@redhat.com>
1024
1025 PR gdb/12576:
1026 * dwarf2loc.c (dwarf_expr_dwarf_call): Remove 'return'.
1027 (needs_frame_dwarf_call): Likewise.
1028
1029 2011-03-14 Pierre Muller <muller@ics.u-strasbg.fr>
1030
1031 Fix ARI warning about functions without parameters that do not
1032 use (void).
1033 * breakpoint.c (all_tracepoints): Replace () by (void).
1034 * f-exp.y (match_string_literal): Ditto.
1035 (yylex): Ditto.
1036 * m2-exp.y (yylex): Ditto.
1037 * mep-tdep.c (current_me_module): Ditto.
1038 (current_options): Ditto.
1039 (current_cop_data_bus_width): Ditto.
1040 (current_cr_names): Ditto.
1041 (current_cr_is_float): Ditto.
1042 (current_ccr_names): Ditto.
1043 * objc-exp.y (yylex): Ditto.
1044 * p-exp.y (yylex): Ditto.
1045 * remote.c (send_interrupt_sequence): Ditto.
1046 * tracepoint.c (current_trace_status): Ditto.
1047 * python/py-evts.c (gdbpy_initialize_py_events): Ditto.
1048 * python/py-prettyprint.c (push_dummy_python_frame): Ditto.
1049
1050 2011-03-11 Michael Snyder <msnyder@vmware.com>
1051
1052 * cli/cli-decode.h (CMD_LIST_AMBIGUOUS): Define.
1053 * cli/cli-decode.c (lookup_cmd_1): Use CMD_LIST_AMBIGUOUS.
1054 (lookup_cmd): Test for CMD_LIST_AMBIGUOUS.
1055 * completer.c (complete_line_internal): Use CMD_LIST_AMBIGUOUS.
1056 * top.c (set_verbose): Use CMD_LIST_AMBIGUOUS.
1057
1058 * event-loop-c (delete_async_signal_handler): Assert prev_ptr.
1059 (delete_async_event_handler): Ditto.
1060
1061 * python/py-breakpoint.c (bppy_set_condition): Stop memory leak.
1062
1063 * python/py-breakpoint.c (bppy_get_commands): Fix memory leak.
1064
1065 * top.c (set_verbose): Assert showcmd was found.
1066
1067 2011-03-11 Maxim Grigoriev <maxim2405@gmail.com>
1068
1069 * xtensa-tdep.c (warning_once): Correct style issues.
1070
1071 2011-03-11 Yao Qi <yao@codesourcery.com>
1072
1073 * arm-tdep.c (copy_ldr_str_ldrb_strb): Remove redundant statements.
1074
1075 2011-03-11 Andreas Schwab <schwab@redhat.com>
1076
1077 * common/aclocal.m4: Remove.
1078
1079 2011-03-10 Maxim Grigoriev <maxim2405@gmail.com>
1080
1081 * xtensa-tdep.c (windowing_enabled): Remove inline attribute.
1082 (xtensa_write_register, xtensa_read_register): Likewise.
1083 (xtensa_hextochar): Removed.
1084 (xtensa_init_reggroups): Replace xtensa_hextochar () by explicit code.
1085
1086 2011-03-10 Maxim Grigoriev <maxim2405@gmail.com>
1087
1088 * xtensa-tdep.c (xtensa_c0reg_t): Update comments.
1089 (xtensa_call0_frame_cache_t): Update comments. New fields added.
1090 (xtensa_alloc_frame_cache): Add initialization for new fields.
1091 (xtensa_frame_cache): Change the way how call0_frame_cache () is called.
1092 (warning_once): New function.
1093 (xtensa_insn_kind): New item c0opc_and.
1094 (call0_classify_opcode): Add the case for AND instruction.
1095 (call0_track_op): Change arguments. New local variable litbase.
1096 Add the case to handle c0opc_and. Update algorithms for c0opc_mov,
1097 c0opc_l32r, c0opc_s32i to take into account dynamic stack adjustments
1098 in the prologue.
1099 Add cases for c0opc_l32e, c0opc_s32e, c0opc_rfwo, c0opc_rfwu.
1100 (call0_analyze_prologue): Update the comments. Change arguments.
1101 Add the variety of updates to handle extended prologues, which now can
1102 conduct dynamic stack adjustments.
1103 (call0_frame_cache): Likewise.
1104 (xtensa_skip_prologue): Update call0_analyze_prologue () function call.
1105 (xtensa_gdbarch_init): Initialize xtensa_session_once_reported.
1106
1107 2011-03-10 Michael Snyder <msnyder@vmware.com>
1108
1109 * tracepoint.c (cmd_qtv): Discard unused value 'packet'.
1110 (cmd_qtframe): Ditto.
1111 (cmd_qtbuffer): Ditto.
1112 (cmd_bigqtbuffer): Ditto.
1113
1114 2011-03-10 Tom Tromey <tromey@redhat.com>
1115
1116 * tracepoint.c (trace_actions_command): Update.
1117 * thread.c (thread_apply_command): Update.
1118 * reverse.c (delete_bookmark_command): Update.
1119 (bookmarks_info): Update.
1120 * printcmd.c (undisplay_command): Update.
1121 * memattr.c (mem_enable_command): Update.
1122 (mem_disable_command): Update.
1123 (mem_delete_command): Update.
1124 * inferior.c (detach_inferior_command): Update.
1125 (kill_inferior_command): Update.
1126 (remove_inferior_command): Update.
1127 * cli/cli-utils.h (struct get_number_or_range_state): New.
1128 (init_number_or_range): Declare.
1129 (get_number_or_range): Update.
1130 * cli/cli-utils.c (init_number_or_range): New function.
1131 (get_number_or_range): Change 'pp' parameter to 'state'. Remove
1132 static variables.
1133 (number_is_in_list): Update.
1134 * breakpoint.h (get_tracepoint_by_number): Update.
1135 * breakpoint.c (map_breakpoint_numbers): Update for change to
1136 get_number_or_range.
1137 (find_location_by_number): Use get_number, not
1138 get_number_or_range.
1139 (trace_pass_set_count): New function.
1140 (trace_pass_command): Update for change to get_number_or_range.
1141 Rework loop logic.
1142 (get_tracepoint_by_number): Remove 'multi_p' parameter; add
1143 'state' parameter.
1144
1145 2011-03-10 Phil Muldoon <pmuldoon@redhat.com>
1146
1147 * python/py-param.c (add_setshow_generic): Add set/show callback
1148 parameters. Register Python object context.
1149 (get_show_value): New function.
1150 (get_set_value): New function.
1151 (call_doc_function): New function.
1152 (get_doc_string): Move behind get_show_value/get_set_value.
1153
1154 2011-03-10 Andreas Tobler <andreast-list@fgznet.ch>
1155
1156 * fbsd-nat.c (fbsd_make_corefile_notes): Constify local `fname'.
1157
1158 2011-03-09 Maxim Grigoriev <maxim2405@gmail.com>
1159
1160 * xtensa-tdep.c (xtensa_read_register): Add comment.
1161 (xtensa_write_register): Likewise.
1162 (xtensa_hextochar): Add comment and update to match coding conventions.
1163 (xtensa_frame_cache, xtensa_return_value): Follow coding conventions.
1164 (execute_l32e, execute_s32e, execute_code): Update comments.
1165 (xtensa_exception_handler_t): Update to match coding conventions.
1166 (xtensa_insn_kind): Likewise.
1167
1168 2011-03-09 Michael Snyder <msnyder@vmware.com>
1169
1170 * mi-cmd-disas.c (mi_cmd_disassemble): Fix memory leak.
1171
1172 2011-03-09 Pedro Alves <pedro@codesourcery.com>
1173
1174 * nto-tdep.c (nto_find_and_open_solib): Constify local `base'.
1175
1176 2011-03-09 Tom Tromey <tromey@redhat.com>
1177
1178 * thread.c (restore_selected_frame): Handle frame_level == -1.
1179 (make_cleanup_restore_current_thread): Use
1180 get_selected_frame_if_set.
1181 * frame.h (get_selected_frame_if_set): Declare.
1182 * frame.c (get_selected_frame_if_set): New function.
1183
1184 2011-03-09 Pedro Alves <pedro@codesourcery.com>
1185
1186 * cli/cli-cmds.c (shell_escape): Use lbasename.
1187 * coffread.c (coff_start_symtab): Constify parameter.
1188 (complete_symtab): Constify `name' parameter.
1189 (coff_symtab_read): Constify `filestring' local.
1190 (coff_getfilename): Constify return and `result' local.
1191 Use lbasename.
1192 * fbsd-nat.c (fbsd_make_corefile_notes): Use lbasename.
1193 * linux-fork.c (info_checkpoints_command): Use lbasename.
1194 * linux-nat.c (linux_nat_make_corefile_notes): Use lbasename.
1195 * minsyms.c (lookup_minimal_symbol): Use lbasename.
1196 * nto-tdep.c (nto_find_and_open_solib): Use lbasename.
1197 * procfs.c (procfs_make_note_section): Use lbasename.
1198 * tui/tui-io.c (printable_part): Constity return and parameter.
1199 Use lbasename.
1200 (print_filename): Constify parameters, and local `s'.
1201 (tui_rl_display_match_list): Constify local `temp'.
1202
1203 2011-03-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1204
1205 Revert:
1206 2011-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1207 Fix DWARF-3+ DW_AT_accessibility default assumption.
1208 * dwarf2read.c (dwarf2_add_field): Fix new_field->accessibility for
1209 cu->header.version >= 3.
1210
1211 2011-03-09 Yao Qi <yao@codesourcery.com>
1212
1213 * common/Makefile.in: Remove.
1214 * common/configure: Remove.
1215 * common/configure.ac: Remove.
1216
1217 2011-03-09 Yao Qi <yao@codesourcery.com>
1218
1219 Revert:
1220 2011-02-11 Yao Qi <yao@codesourcery.com>
1221
1222 * common/Makefile.in: Add copyright header.
1223
1224 2011-02-11 Yao Qi <yao@codesourcery.com>
1225
1226 * Makefile.in: Remove signals.o from COMMON_OBS. Link
1227 libcommon.a.
1228 * configure.ac: Add common to sub dir.
1229 * configure: Regenerate.
1230
1231 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
1232
1233 * xtensa-tdep.c (call0_ret): New function.
1234 (xtensa_skip_prologue): Speed up analysis.
1235
1236 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
1237
1238 * xtensa-tdep.c (xtensa_register_reggroup_p): Count in all registers
1239 while executing MI command -data-list-changed-registers.
1240
1241 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
1242
1243 * xtensa-tdep.c (xtensa_read_register): New function.
1244 (xtensa_write_register): New function.
1245 (xtensa_find_register_by_name): New function.
1246 (xtensa_windowed_frame_cache): Update comments in type description.
1247 (xtensa_frame_cache): Likewise.
1248 (xtensa_window_interrupt_insn): New function.
1249 (xtensa_frame_cache): Add analysis for Xtensa Window Exception frames.
1250 (xtensa_insn_kind): Add new instructions.
1251 (rwx_special_register): New function.
1252 (call0_classify_opcode): Add new instructions to the analysis.
1253 (a0_saved, a7_saved, a11_saved): New variables.
1254 (a0_was_saved, a7_was_saved, a11_was_saved): New variables.
1255 (execute_l32e): New function.
1256 (execute_s32e): New function.
1257 (xtensa_exception_handler_t): New type.
1258 (execute_code): New function.
1259 (xtensa_window_interrupt_frame_cache): New function to conduct frame
1260 analysis for Xtensa Window Exception handlers.
1261
1262 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
1263
1264 * xtensa-tdep.c (TX_PS): New.
1265 (windowing_enabled): Update to count for Call0 ABI.
1266 (xtensa_hextochar): New.
1267 (xtensa_init_reggroups): Make algorithm generic.
1268 (xtensa_frame_cache): Use TX_PS on Tiny Xtensa.
1269
1270 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
1271
1272 * xtensa-tdep.h (XTENSA_MAX_COPROCESSOR): Update.
1273
1274 2011-03-08 Michael Snyder <msnyder@vmware.com>
1275
1276 * i386-tdep.c (i386_follow_jump): Check return value of
1277 target_read_memory.
1278 (i386_analyze_struct_return): Ditto.
1279 (i386_skip_probe): Ditto.
1280 (i386_match_insn): Ditto.
1281 (i386_skip_noop): Ditto.
1282 (i386_analyze_frame_setup): Ditto.
1283 (i386_analyze_register_saves): Ditto.
1284 (i386_skip_prologue): Ditto.
1285 (i386_skip_main_prologue): Ditto.
1286
1287 * target.c (read_whatever_is_readable): Fix memory leak.
1288
1289 * i386-tdep.c (i386_process_record): Document fall through.
1290
1291 2011-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1292
1293 Fix DWARF-3+ DW_AT_accessibility default assumption.
1294 * dwarf2read.c (dwarf2_add_field): Fix new_field->accessibility for
1295 cu->header.version >= 3.
1296
1297 2011-03-08 Pedro Alves <pedro@codesourcery.com>
1298
1299 * remote.c (remote_check_symbols): Skip if the target has no
1300 execution.
1301
1302 2011-03-08 Joel Brobecker <brobecker@adacore.com>
1303
1304 * target.c (read_whatever_is_readable): Reformat comment,
1305 with a minor typo fix. Minor reformatting of the code.
1306
1307 2011-03-08 Yao Qi <yao@codesourcery.com>
1308
1309 * arm-tdep.c: Remove prototype declaration displaced_in_arm_mode.
1310 (displaced_read_reg): Add `dsc' parameter, remove `from' parameter.
1311 Use cached result instead of calling displaced_in_arm_mode again.
1312 (branch_write_pc, alu_write_pc, load_write_pc): Add `dsc' parameter.
1313 (displaced_write_reg, copy_preload, copy_preload_reg): Callers update.
1314 (cleanup_copro_load_store, copy_copro_load_store): Likewise.
1315 (cleanup_branch, copy_bx_blx_reg, copy_alu_imm): Likewise.
1316 (cleanup_alu_reg, copy_alu_reg, cleanup_alu_shifted_reg): Likewise.
1317 (copy_alu_shifted_reg, cleanup_load, cleanup_store): Likewise.
1318 (copy_extra_ld_st, copy_ldr_str_ldrb_strb): Likewise.
1319 (cleanup_block_load_all, cleanup_block_store_pc): Likewise.
1320 (cleanup_block_load_pc, copy_block_xfer): Likewise.
1321 * arm-linux-tdep.c (arm_linux_copy_svc): Callers update.
1322 (arm_catch_kernel_helper_return): Likewise.
1323 * gdb/arm-tdep.h : Update function declarations.
1324
1325 2011-03-07 Michael Snyder <msnyder@vmware.com>
1326
1327 * dwarf2loc.c (indirect_pieced_value): Assert 'piece' not null.
1328
1329 * ser-unix.c (hardwire_get_tty_state): Stop memory leak.
1330
1331 * mi/mi-cmd-env.c (_initialize_mi_cmd_env): Free environment.
1332
1333 * elfread.c (elf_symtab_read): Stop memory leak.
1334
1335 * main.c (captured_main): Fix memory leak.
1336
1337 2011-03-07 Andreas Schwab <schwab@linux-m68k.org>
1338
1339 * ada-lang.c (compare_names): Call is_name_suffix with string1
1340 instead of string2.
1341
1342 2011-03-07 Tom Tromey <tromey@redhat.com>
1343
1344 * xcoffread.c (xcoff_sym_fns): Update.
1345 * symfile.h (struct sym_fns) <sym_read_psymbols>: New field.
1346 (enum symfile_add_flags) <SYMFILE_NO_READ>: New constant.
1347 * symfile.c (syms_from_objfile): Handle SYMFILE_NO_READ.
1348 (symbol_file_add_with_addrs_or_offsets): Likewise.
1349 (reread_symbols): Handle OBJF_PSYMTABS_READ.
1350 * somread.c (som_sym_fns): Update.
1351 * psymtab.h (require_partial_symbols): Declare.
1352 * psymtab.c (require_partial_symbols): New function.
1353 (ALL_OBJFILE_PSYMTABS_REQUIRED): New macro.
1354 (ALL_OBJFILE_PSYMTABS): Undef.
1355 (ALL_PSYMTABS): Move from psympriv.h.
1356 (lookup_partial_symtab, find_pc_sect_psymtab)
1357 (lookup_symbol_aux_psymtabs, relocate_psymtabs)
1358 (find_last_source_symtab_from_partial)
1359 (forget_cached_source_info_partial)
1360 (print_psymtab_stats_for_objfile, read_symtabs_for_function)
1361 (expand_partial_symbol_tables, read_psymtabs_with_filename)
1362 (map_symbol_names_psymtab, map_symbol_filenames_psymtab)
1363 (find_symbol_file_from_partial, map_matching_symbols_psymtab)
1364 (expand_symtabs_matching_via_partial, maintenance_info_psymtabs):
1365 Use ALL_OBJFILE_PSYMTABS_REQUIRED.
1366 * psympriv.h (ALL_PSYMTABS): Move to psymtab.c.
1367 * objfiles.h (OBJF_PSYMTABS_READ): New macro.
1368 * objfiles.c (objfile_has_partial_symbols): Handle lazily-read
1369 psymtabs.
1370 * mipsread.c (ecoff_sym_fns): Update.
1371 * machoread.c (macho_sym_fns): Update.
1372 * elfread.c (elf_symfile_read): Set up for lazy psymtab reading.
1373 (read_psyms): New function.
1374 (elf_sym_fns, elf_sym_fns_gdb_index): Update.
1375 (elf_sym_fns_lazy_psyms): New global.
1376 * dwarf2read.c (dwarf2_initialize_objfile): Don't call
1377 dwarf2_build_psymtabs.
1378 * dbxread.c (aout_sym_fns): Update.
1379 * coffread.c (coff_sym_fns): Update.
1380
1381 2011-03-07 Tom Tromey <tromey@redhat.com>
1382
1383 * infrun.c (print_exited_reason): Include inferior id and pid in
1384 message.
1385
1386 2011-03-07 Tom Tromey <tromey@redhat.com>
1387
1388 * target.h (struct target_ops) <to_has_execution>: Add ptid_t
1389 parameter.
1390 (target_has_execution_1): Update.
1391 (target_has_execution_current): Declare.
1392 (target_has_execution): Call target_has_execution_current.
1393 (default_child_has_execution): Update.
1394 * target.c (default_child_has_execution): Add 'the_ptid'
1395 parameter.
1396 (target_has_execution_1): Likewise.
1397 (target_has_execution_current): New function.
1398 (add_target): Update.
1399 (init_dummy_target): Update.
1400 * remote-m32r-sdi.c (m32r_has_execution): New function.
1401 (init_m32r_ops): Use it.
1402 * record.c (record_core_has_execution): Now static. Add
1403 'the_ptid' parameter.
1404 * inferior.c (have_live_inferiors): Don't save current thread.
1405 Use target_has_execution_1.
1406
1407 2011-03-07 Yao Qi <yao@codesourcery.com>
1408
1409 * Makefile.in (aclocal_m4_deps): Remove gnulib/m4/memcmp.m4.
1410
1411 2011-03-07 Joel Brobecker <brobecker@adacore.com>
1412
1413 * elfread.c (elf_symtab_read): Minor reformatting.
1414
1415 2011-03-07 Joel Brobecker <brobecker@adacore.com>
1416
1417 * objc-lang.c (selectors_info): Minor reformatting.
1418
1419 2011-03-07 Joel Brobecker <brobecker@adacore.com>
1420
1421 * ada-lang.c (compare_names): Add FALLTHROUGH comment.
1422
1423 2011-03-07 Joel Brobecker <brobecker@adacore.com>
1424 Michael Snyder <msnyder@vmware.com>
1425
1426 * ada-valprint.c (ada_val_print_array): Move the declaration of
1427 "byte_order" and "elttype" inside the block where these variables
1428 are actually used. Remove some special handling for the case
1429 where "elttype" and "eltlen" are null. Replace by a comment
1430 and a couple of assertion checks.
1431
1432 2011-03-05 Michael Snyder <msnyder@vmware.com>
1433
1434 * source.c (add_path): Replace semicolon at end of block.
1435 * dwarf2expr.c (execute_stack_op): Ditto.
1436
1437 2011-03-05 Mike Frysinger <vapier@gentoo.org>
1438
1439 * bfin-tdep.c: Include sim-regno.h and gdb/sim-bfin.h.
1440 * configure.tgt (bfin-*-*linux*): Define gdb_sim.
1441 (bfin-*-*): Likewise.
1442
1443 2011-03-05 Michael Snyder <msnyder@vmware.com>
1444
1445 * dwarf2expr.c (execute_stack_op): Delete superfluous semicolon.
1446 * mdebugread.c (parse_symbol): Ditto.
1447 * parse.c (parse_exp_in_context): Ditto.
1448 * source.c (add_path): Ditto.
1449 * utils.c (gnu_debuglink_crc32): Ditto.
1450 * varobj.c (variable_language): Ditto.
1451
1452 * linux-tdep.c (linux_get_siginfo_type): Stop memory leak.
1453
1454 2011-03-04 Michael Snyder <msnyder@vmware.com>
1455
1456 * linux-fork.c (inferior_call_waitptid): Fix copy/paste error.
1457
1458 * symfile.c (simple_overlay_update): Check for null return value
1459 from lookup_minimal_symbol.
1460
1461 * xml-syscall.c (syscall_start_syscall): Assert name is non null.
1462
1463 2011-03-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
1464
1465 * eval.c (parse_and_eval_address_1): Remove function.
1466 * linespec.c (decode_indirect): Call parse_to_comma_and_eval
1467 instead of parse_and_eval_address_1.
1468 * value.h (parse_and_eval_address_1): Remove prototype.
1469
1470 2011-03-04 Michael Snyder <msnyder@vmware.com>
1471
1472 * remote.c (putpkt_binary): Document that case stmt falls through.
1473
1474 2011-03-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
1475
1476 * breakpointc (print_it_typical): Move NULL check from here...
1477 (print_bp_stop_message): ... to here.
1478
1479 2011-03-04 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
1480
1481 * breakpoint.c (enable_command): Use break instead of continue,
1482 and fill in a missing break.
1483 (disable_command): Ditto.
1484
1485 2011-03-04 Ulrich Weigand <ulrich.weigand@linaro.org>
1486
1487 * inflow.c (terminal_init_inferior_with_pgrp): Copy ttystate.
1488 (terminal_save_ours): Remove misleading comment.
1489 (inflow_inferior_data_cleanup): Free ttystate.
1490 (inflow_inferior_exit): Likewise.
1491 (copy_terminal_info): Copy ttystate.
1492
1493 * serial.c (serial_copy_tty_state): New function.
1494 * serial.h (serial_copy_tty_state): Add prototype.
1495 (struct serial_ops): Add copy_tty_state callback.
1496 * ser-base.c (ser_base_copy_tty_state): New function.
1497 * ser-base.h (ser_base_copy_tty_state): Add prototype.
1498 * ser-go32.c (dos_copy_tty_state): New function.
1499 (dos_ops): Install copy_tty_state callback.
1500 * ser-mingw.c (_initialize_ser_windows): Likewise.
1501 * ser-pipe.c (_initialize_ser_pipe): Likewise.
1502 * ser-unix.c (hardwire_copy_tty_state): New function.
1503 (_initialize_ser_hardwire): Install it.
1504
1505 2011-03-04 Michael Snyder <msnyder@vmware.com>
1506
1507 * breakpoint.c (create_breakpoint): Add missing break statement.
1508
1509 Reverting this patch:
1510 * infcall.c (call_function_by_hand): Add break statements for lint.
1511
1512 Reverting this patch:
1513 * cli/cli-script.c (script_from_file): Add break for lint.
1514
1515 2011-03-04 Michael Snyder <msnyder@vmware.com>
1516
1517 * solib.c (reload_shared_libraries_1): Close memory leak.
1518
1519 2011-03-03 Tom Tromey <tromey@redhat.com>
1520
1521 PR gdb/12538:
1522 * dwarf2read.c (process_psymtab_comp_unit): Handle case where
1523 DW_STRING is NULL.
1524
1525 2011-03-03 Michael Snyder <msnyder@vmware.com>
1526
1527 * remote-fileio.c (remote_fileio_func_fstat): Initialize all
1528 fields of struct 'st' to zero.
1529
1530 * tui/tui-winsource.c (tui_update_source_window_as_is): Initialize
1531 sal.pspace before calling set_current_source_symtab_and_line.
1532
1533 2011-03-03 Yao Qi <yao@codesourcery.com>
1534
1535 * Makefile.in (configure-common): Remove. Let Makefile
1536 in dir common to rebuild itself.
1537 (common/Makefile): Likewise.
1538
1539 2011-03-03 Joel Brobecker <brobecker@adacore.com>
1540
1541 * utils.c (parse_escape): Add i18n markup in error message.
1542
1543 2011-03-03 Yao Qi <yao@codesourcery.com>
1544
1545 * gdb/arm-tdep.c (shifted_reg_val): Replace magic number 15 with
1546 ARM_PC_REGNUM.
1547 (thumb_get_next_pc_raw, arm_get_next_pc_raw): Likewise.
1548 (displaced_write_reg, displaced_read_reg): Likewise.
1549 (copy_ldr_str_ldrb_strb, cleanup_block_load_all): Likewise.
1550 (cleanup_block_load_pc, copy_block_xfer): Likewise.
1551 (cleanup_branch): Replace magic number 14 and 15 with
1552 ARM_LR_REGNUM and ARM_PC_REGNUM respectively.
1553
1554 2011-03-02 Michael Snyder <msnyder@vmware.com>
1555
1556 * maint.c (maintenance_do_deprecate): No need to check for NULL.
1557
1558 * cli/cli-script.c (script_from_file): Add break for lint.
1559
1560 * mdebugread.c (parse_partial_symbols): Fix indent.
1561
1562 * target-descriptions.c (tdesc_gdb_type): No need to call
1563 xstrdup, callee saves a copy.
1564
1565 * printcmd.c (print_scalar_formatted): Use strncpy for safety.
1566
1567 * infcall.c (call_function_by_hand): Add break statements for lint.
1568
1569 * utils.c (parse_escape): Escape the escape char.
1570
1571 * python/py-inferior.c (build_inferior_list): Error out if
1572 PyList_Append fails.
1573 (gdbpy_inferiors): Error out if build_inferior_list fails.
1574
1575 * linux-nat.c (linux_nat_xfer_partial): Preserve errno around
1576 a function call.
1577
1578 * record.c (record_restore): Move printf to before error return.
1579
1580 2011-03-02 Yao Qi <yao@codesourcery.com>
1581
1582 * arm-tdep.h (struct displaced_step_closure): Add two new fields
1583 is_thumb and insn_size.
1584 * arm-tdep.c (displaced_read_reg): Adjust correct pipeline offset
1585 on both ARM and Thumb mode.
1586 (arm_process_displaced_insn): Set is_thumb and insn_size.
1587 (arm_displaced_init_closure): Handle both 16-bit and 32-bit.
1588 (arm_displaced_step_fixup): Likewise.
1589
1590 2011-03-01 Michael Snyder <msnyder@vmware.com>
1591
1592 * cli/cli-dump.c (dump_bfd_file): Check error return and warn.
1593
1594 * jv-lang.c (evaluate_subexp_java): Conditional can't be true.
1595
1596 * dwarf2read.c (dwarf2_compute_name): NAME cannot be null here.
1597
1598 * cli/cli-dump.c (restore_binary_file): Validate ftell return value.
1599
1600 * ada-lang.c (ada_make_symbol_completion_list): Replace malloc
1601 with xmalloc.
1602
1603 * ada-lang.c (aggregate_assign_others): Rename inner scope variable
1604 which shadows function parameter.
1605
1606 * tracepoint.c (create_tsv_from_upload): Superfluous call
1607 to xstrdup. Callee already calls xstrdup.
1608
1609 * linespec.c (decode_line_1): Remove unnecessary null check.
1610
1611 * tracepoint.c (scope_info): Fix mem leak, remove underused
1612 variable.
1613
1614 * python/py-prettyprint.c (apply_val_pretty_printer): Remove
1615 superfluous null check.
1616
1617 * std-regs.c (value_of_builtin_frame_pc_reg): Frame can't be null.
1618 (value_of_builtin_frame_fp_reg): Ditto.
1619
1620 * event-top.c (display_gdb_prompt): Remove superfluous null check.
1621
1622 * python/py-prettyprint.c (apply_val_pretty_printer): VAL may
1623 be null.
1624
1625 * linespec.c (decode_line_1): Check for null before dereference.
1626
1627 * reverse.c (record_restore): Move null-check to before pointer
1628 dereference.
1629
1630 * python/py-utils.c (gdbpy_obj_to_string): Delete unused variable.
1631
1632 * objc-lang.c (selectors_info): Add explanitory comment.
1633 (classes_info): Ditto.
1634
1635 2011-03-01 Ulrich Weigand <ulrich.weigand@linaro.org>
1636
1637 * arm-linux-tdep.c (ARM_LDR_PC_SP_4): Add define.
1638 (arm_linux_restart_syscall_init): Handle both on-stack and in-kernel
1639 versions of the trampoline. Handle Thumb vs. ARM addresses.
1640 (arm_kernel_linux_restart_syscall_tramp_frame): New global.
1641 (arm_linux_init_abi): Install it.
1642 * arm-tdep.c (arm_psr_thumb_bit): Make global.
1643 * arm-tdep.c (arm_psr_thumb_bit): Add prototype.
1644
1645 2011-02-28 Michael Snyder <msnyder@vmware.com>
1646
1647 * ui-out.c (ui_out_field_core_addr): Make local char buffer
1648 a little bigger, to avoid possibility of an overflow.
1649
1650 * breakpoint.c (breakpoint_adjustment_warning): Make local char
1651 buffers a little bigger, to avoid possibility of an overflow.
1652
1653 * coffread.c (coff_getfilename): Add check to avoid overflow.
1654
1655 * objc-lang.c (selectors_info): Add a small safety margin to
1656 avoid overflow.
1657 (classes_info): Error out on too long REGEXP.
1658
1659 * infrun.c (handle_inferior_event): Remove unused function call.
1660
1661 * fork-child.c (fork_inferior): Remove ifdef'd code and
1662 unused variable.
1663
1664 * linux-thread-db.c (attach_thread): Discard unused value.
1665
1666 * linux-nat.c (linux_handle_extended_wait): Delete unused variable.
1667
1668 * remote.c (remote_get_noisy_reply): Discard unused value.
1669 (remote_vcont_resume): Ditto.
1670 (remote_stop_ns): Ditto.
1671
1672 * linespec.c (decode_objc): Delete unused variable.
1673
1674 * tui/tui-regs.c (tui_register_format): Delete unused variable.
1675
1676 * dwarf2read.c (add_partial_symbol): Discard unused values.
1677 (read_base_type): Delete unused variable.
1678
1679 * dbxread.c (read_dbx_symtab): Discard unused value.
1680
1681 * eval.c (evaluate_subexp_standard): Delete unused variable,
1682 and discard unused values.
1683
1684 * infcmd.c (_initialize_infcmd): Discard unused values.
1685
1686 * stabsread.c (rs6000_builtin_type): Missing break statement.
1687
1688 * dbxread.c (process_one_symbol): Discard unused value.
1689
1690 * coffread.c (coff_end_symtab): Delete unused variable.
1691
1692 * dwarf2read.c (dw2_get_file_names): Discard unused value.
1693 (dwarf2_add_typedef): Delete unused variable.
1694 (read_namespace): Ditto.
1695 (dwarf_decode_macros): Ditto.
1696
1697 * m2-lang.c (evaluate_subexp_modula2): Discard unused variable.
1698
1699 * opencl-lang.c (evaluate_subexp_opencl): Discard unused value.
1700
1701 * p-valprint.c (pascal_val_print): Discard unused value.
1702
1703 * utils.c (nquery): Call va_end before return;
1704 (yquery): Ditto.
1705 (query): Ditto.
1706
1707 * proc-service.c (ps_plog): Call va_end before return.
1708
1709 2011-02-28 Tom Tromey <tromey@redhat.com>
1710
1711 * python/python.c (gdbpy_value_cst): New global.
1712 (_initialize_python): Initialize it.
1713 * python/python-internal.h (gdbpy_value_cst): Declare.
1714 * python/py-value.c (convert_value_from_python): Use
1715 gdbpy_value_cst.
1716
1717 2011-02-28 Michael Snyder <msnyder@vmware.com>
1718
1719 * python/py-cmd.c (cmdpy_init): Fix memory leak.
1720
1721 * breakpoint.c (catch_syscall_completer): Free malloced list.
1722
1723 * jv-lang.c (java_primitive_type_from_name): Add missing break.
1724
1725 * opencl-lang.c (lval_func_check_validity): Rename inner variables.
1726 (lval_func_check_synthetic_pointer): Ditto.
1727 (lval_func_free_closure): Fix use-after-free.
1728
1729 2011-02-28 Tom Tromey <tromey@redhat.com>
1730
1731 * psymtab.c (expand_partial_symbol_tables): Use
1732 ALL_OBJFILE_PSYMTABS.
1733
1734 2011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1735
1736 * objc-lang.c (selectors_info): Error on too long REGEXP.
1737
1738 2011-02-28 Michael Snyder <msnyder@vmware.com>
1739
1740 * python/py-param.c (set_parameter_value): Add missing
1741 break statement.
1742
1743 * linux-record.c (record_linux_system_call): Add missing
1744 break statement.
1745
1746 2011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1747
1748 * breakpoint.c (print_one_breakpoint_location): Remove unused
1749 argument PRINT_ADDRESS_BITS. Update callers.
1750 (print_one_breakpoint): Likewise.
1751
1752 2011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1753
1754 * breakpoint.c (wrap_indent_at_field): New function.
1755 (print_breakpoint_location): Use it instead of WRAP_INDENT argument.
1756 Allocate ui_stream locally instead of using STB argument.
1757 (print_one_breakpoint_location): Update call.
1758 * ui-out.c (ui_out_query_field): New function.
1759 * ui-out.h (ui_out_query_field): Add prototype.
1760
1761 2011-02-28 Joel Brobecker <brobecker@adacore.com>
1762
1763 From Michael Snyder <msnyder@vmware.com>
1764 * ada-exp.y (write_object_renaming): Add FALLTHROUGH comment.
1765
1766 2011-02-27 Michael Snyder <msnyder@vmware.com>
1767
1768 * objc-lang.c (selectors_info): Prevent string overrun.
1769
1770 * tui/tui-stack.c (tui_get_function_from_frame): Fix off by one
1771 error in strncpy.
1772
1773 * symtab.c (rbreak_command): Move variable 'file_name' to
1774 outer scope.
1775
1776 * d-valprint.c (dynamic_array_type): Avoid shadowing a function
1777 param with a local variable of the same name.
1778
1779 2011-02-27 Michael Snyder <msnyder@vmware.com>
1780
1781 * value.c (value_from_history_ref): New function.
1782 * value.h (value_from_history_ref): Export.
1783 * cli/cli-utils.c (get_number_trailer): Use value_from_history_ref
1784 to parse value history references.
1785 * cli/cli-utils.h (get_number_trailer): Update comment.
1786
1787 2011-02-27 Michael Snyder <msnyder@vmware.com>
1788
1789 * inferior.c (detach_inferior_command): Use get_number_or_range.
1790 (kill_inferior_command): Ditto.
1791 (remove_inferior_command): Ditto.
1792 (initialize_inferiors): Make command names plural.
1793 Update help strings.
1794
1795 2011-02-27 Michael Snyder <msnyder@vmware.com>
1796
1797 * darwin-nat-info.c: Fix comment typo.
1798 * dwarf2expr.h: Ditto.
1799 * fbsd-nat.c: Ditto.
1800 * fbsd-nat.h: Ditto.
1801 * frame-unwind.h: Ditto.
1802 * frame.h: Ditto.
1803 * hppa-hpux-tdep.c: Ditto.
1804 * i386-linux-nat.c: Ditto.
1805 * linux-nat.c: Ditto.
1806 * nbsd-nat.c: Ditto.
1807 * nbsd-nat.h: Ditto.
1808 * ppc-linux-tdep.c: Ditto.
1809 * serial.c: Ditto.
1810 * ui-file.h: Ditto.
1811 * tui/tui-winsource.c: Ditto.
1812
1813 2011-02-26 Michael Snyder <msnyder@vmware.com>
1814
1815 * breakpoint.c (reattach_breakpoints): Avoid resource leak (ui_file).
1816
1817 * maint.c (maintenance_do_deprecate): Plug a memory leak.
1818
1819 * dwarf2loc.c (insert_bits): Avoid shadowing a function param
1820 with a local variable of the same name.
1821
1822 * i387-tdep.c (i387_supply_fxsave): Avoid shadowing a function
1823 param with a local variable of the same name.
1824 (i387_supply_xsave): Ditto.
1825
1826 * linux-low.c (linux_nat_xfer_osdata): Rename local variable so
1827 that it does not shadow a function parameter.
1828
1829 * i386-nat.c (i386_length_and_rw_bits): Document that case
1830 statement is meant to fall through.
1831
1832 * expprint.c (dump_subexp_body_standard): Document that case
1833 statement is meant to fall through.
1834
1835 * amd64-linux-tdep.c (amd64_linux_syscall_record): Delete
1836 dead if statement. Condition can't be false.
1837
1838 2011-02-25 Michael Snyder <msnyder@vmware.com>
1839
1840 * arm-tdep.c: Fix typos in comments.
1841 * bsd-uthread.c: Ditto.
1842 * completer.c: Ditto.
1843 * corelow.c: Ditto.
1844 * cp-namespace.c: Ditto.
1845 * cp-support.c: Ditto.
1846 * cris-tdep.c: Ditto.
1847 * dbxread.c: Ditto.
1848 * dwarf2read.c: Ditto.
1849 * frame.h: Ditto.
1850 * gdbtypes.h: Ditto.
1851 * inferior.h: Ditto.
1852 * mdebugread.c: Ditto.
1853 * mips-tdep.c: Ditto.
1854 * ppc-linux-nat.c: Ditto.
1855 * ppc-linux-tdep.c: Ditto.
1856 * printcmd.c: Ditto.
1857 * sol-thread.c: Ditto.
1858 * solib-frv.c: Ditto.
1859 * solist.h: Ditto.
1860 * sparc64-tdep.c: Ditto.
1861 * spu-tdep.c: Ditto.
1862 * stabsread.c: Ditto.
1863 * symfile.c: Ditto.
1864 * valops.c: Ditto.
1865 * varobj.c: Ditto.
1866 * vax-nat.c: Ditto.
1867 * python/py-block.c: Ditto.
1868 * python/py-symbol.c: Ditto.
1869 * python/py-symtab.c: Ditto.
1870 * python/py-value.c: Ditto.
1871 * tui/tui-win.c: Ditto.
1872
1873 2011-02-25 Michael Snyder <msnyder@vmware.com>
1874
1875 * inferior.c (print_inferior): Accept a string instead of an int
1876 for requested_inferiors, and use get_number_or_range to parse it.
1877 (info_inferiors_command): Pass args string to print_inferior.
1878 (initialize_inferiors): Change help string for info inferiors.
1879 * inferior.h (print_inferior): Export prototype change.
1880
1881 2011-02-25 Tom Tromey <tromey@redhat.com>
1882
1883 * common/ax.def (invalid2): Set to 0x31.
1884
1885 2011-02-25 Jan Kratochvil <jan.kratochvil@redhat.com>
1886
1887 * dwarf2loc.c (disassemble_dwarf_expression) <DW_OP_breg[0-9]+>: Use
1888 L and plongest.
1889 (disassemble_dwarf_expression) <DW_OP_bregx>: Drop variable offset,
1890 use L and plongest.
1891 (disassemble_dwarf_expression) <DW_OP_fbreg>: Use L and plongest.
1892
1893 2011-02-24 Michael Snyder <msnyder@vmware.com>
1894
1895 * Makefile.in (clean): Make clean should remove generated files
1896 observer.h and observer.inc.
1897
1898 2011-02-24 Joel Brobecker <brobecker@adacore.com>
1899
1900 Revert the following patch (not approved yet):
1901 2011-02-21 Hui Zhu <teawater@gmail.com>
1902 * Makefile.in (HFILES_NO_SRCDIR): Add printcmd.h.
1903 * ax-gdb.c (gen_printf_expr_callback): New function.
1904 * ax-gdb.h (gen_printf_expr_callback): Forward declare.
1905 * ax-general.c (ax_memcpy): New function.
1906 (ax_print): Handle "printf".
1907 (ax_reqs): Ditto.
1908 * ax.h (ax_memcpy): Forward declare.
1909 * common/ax.def (invalid2): Removed.
1910 (printf): New entry.
1911 * printcmd.c (printcmd.h): New include.
1912 (string_printf): New function.
1913 (ui_printf): Removed.
1914 (printf_command): Remove static. Call string_printf.
1915 (eval_command): Call string_printf.
1916 * printcmd.h: New file.
1917 * tracepoint.c (validate_actionline,
1918 encode_actions_1): handle printf_command.
1919
1920 2011-02-23 Tom Tromey <tromey@redhat.com>
1921
1922 * ax-general.c (ax_pick): Add missing newline.
1923
1924 2011-02-23 Michael Snyder <msnyder@vmware.com>
1925
1926 * breakpoint.c (breakpoint_1): Change first argument from an int
1927 to a char pointer, so that the function now accepts a list of
1928 breakpoints rather than just one. Use new function
1929 'number_is_in_list' to implement.
1930 (breakpoints_info): Pass char * instead of int to breakpoint_1.
1931 (watchpoints_info): Ditto.
1932 (tracepoints_info): Ditto.
1933 (maintenance_info_breakpoints): Ditto.
1934 (_initialize_breakpoint): Update help strings to reflect the fact
1935 that these functions can now take more than one argument.
1936 * cli/cli-utils.c (number_is_in_list): New function.
1937 * cli/cli-utils.h (number_is_in_list): Export.
1938
1939 2011-02-23 Michael Snyder <msnyder@vmware.com>
1940
1941 * memattr.c (mem_enable_command): Use get_number_or_range.
1942 (mem_disable_command): Ditto.
1943 (mem_delete_command): Ditto.
1944 (_initialize_mem): Tweak usage message to reflect multiple
1945 arguments.
1946
1947 2011-02-22 Doug Evans <dje@google.com>
1948
1949 Add gdb.lookup_global_symbol python function.
1950 * NEWS: Add entry.
1951 * python/py-symbol.c (gdbpy_lookup_global_symbol): New function.
1952 * python/python-internal.h (gdbpy_lookup_global_symbol): Declare it.
1953 * python/python.c (GdbMethods): Add entry for lookup_global_symbol.
1954
1955 2011-02-22 Tom Tromey <tromey@redhat.com>
1956
1957 * language.c (language_class_name_from_physname): Rename
1958 'curr_language' argument to 'lang'; use in body.
1959
1960 2011-02-22 Michael Snyder <msnyder@vmware.com>
1961
1962 * cli/cli-utils.c (number_is_in_list): Check for zero return.
1963
1964 2011-02-22 Pedro Alves <pedro@codesourcery.com>
1965
1966 * frame-unwind.h: Fix comment to mention the this frame, not the
1967 next.
1968
1969 2011-02-22 Tom Tromey <tromey@redhat.com>
1970
1971 * symfile.c (auto_solib_limit): Remove.
1972 * symfile.h (auto_solib_limit): Remove.
1973
1974 2011-02-22 Joel Brobecker <brobecker@adacore.com>
1975
1976 * Makefile.in (INSTALLED_LIBS): Delete. Update comment.
1977
1978 2011-02-21 Michael Snyder <msnyder@vmware.com>
1979
1980 * gdbthread.h (print_thread_info): Change prototype.
1981 * thread.c (print_thread_info): Accept char* instead of int for
1982 requested_threads argument. Use new function number_is_in_list
1983 to determine which threads to list.
1984 (info_threads_command): Pass char* to print_thread_info.
1985 * cli/cli-utils.c (number_is_in_list): New function.
1986 * cli/cli-utils.h (number_is_in_list): Export.
1987 * mi/mi-main.c (mi_cmd_thread_info): Pass char* to
1988 print_thread_info.
1989 (print_one_inferior): Ditto.
1990 (mi_cmd_list_thread_groups): Ditto.
1991
1992 2011-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
1993
1994 * common/Makefile.in (CFLAGS): New.
1995 (COMPILE): Add $(CFLAGS).
1996
1997 2011-02-21 Tom Tromey <tromey@redhat.com>
1998
1999 * breakpoint.c (catch_syscall_command_1): Fix typo.
2000
2001 2011-02-21 Tom Tromey <tromey@redhat.com>
2002
2003 * reverse.c: Include cli-utils.h.
2004 * printcmd.c: Include cli-utils.h.
2005 (string_printf): Use skip_spaces.
2006 * cli/cli-utils.h: New file.
2007 * cli/cli-utils.c: New file.
2008 * cli/cli-dump.h (skip_spaces): Move to cli-utils.h.
2009 * cli/cli-dump.c (skip_spaces): Move to cli-utils.c.
2010 * breakpoint.h (get_number, get_number_or_range): Move to
2011 cli-utils.h.
2012 * breakpoint.c: Include cli-utils.h.
2013 (get_number_trailer, get_number, get_number_or_range)
2014 (ep_skip_leading_whitespace): Move to cli-utils.c.
2015 (create_breakpoint_sal, find_condition_and_thread)
2016 (decode_static_tracepoint_spec, watch_command_1)
2017 (watch_maybe_just_location, ep_parse_optional_if_clause)
2018 (catch_fork_command_1, catch_exec_command_1)
2019 (catch_syscall_command_1): Use skip_spaces, skip_to_space.
2020 * Makefile.in (SUBDIR_CLI_OBS): Add cli-utils.o.
2021 (SUBDIR_CLI_SRCS): Add cli-utils.c.
2022 (HFILES_NO_SRCDIR): Add cli-utils.h.
2023 (cli-utils.o): New target.
2024
2025 2011-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
2026
2027 * remote.c (remote_close): Reset INFERIOR_PTID to NULL_PTID
2028 before calling discard_all_inferiors.
2029
2030 2011-02-21 Ulrich Weigand <uweigand@de.ibm.com>
2031
2032 * opencl-lang.c (STRUCT_OCL_TYPE): Remove.
2033 (struct builtin_opencl_type): Remove.
2034 (builtin_opencl_type): Change return type to "struct type **".
2035 (lookup_opencl_vector_type): Update caller.
2036 (opencl_language_arch_info): Copy primitive type vector from gdbarch.
2037 (build_opencl_types): Install plain array of "struct type *"
2038 instead of "struct builtin_opencl_type".
2039
2040 2011-02-21 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
2041 Ulrich Weigand <uweigand@de.ibm.com>
2042
2043 * arm-linux-nat.c: Include "observer.h" and "gdbthread.h".
2044 (PTRACE_GETHBPREGS, PTRACE_SETHBPREGS): Define.
2045 (struct arm_linux_hwbp_cap): New type.
2046 (arm_linux_get_hwbp_cap): New function.
2047 (arm_linux_get_hw_breakpoint_count): Likewise.
2048 (arm_linux_get_hw_watchpoint_count): Likewise.
2049 (arm_linux_can_use_hw_breakpoint): Likewise.
2050 (arm_hwbp_type): New type.
2051 (arm_hwbp_control_t): Likewise.
2052 (struct arm_linux_hw_breakpoint): Likewise.
2053 (struct arm_linux_thread_points): Likewise.
2054 (arm_threads): New global variable.
2055 (arm_linux_find_breakpoints_by_tid): New function.
2056 (arm_hwbp_control_initialize): Likewise.
2057 (arm_hwbp_control_is_enabled): Likewise.
2058 (arm_hwbp_control_disable): Likewise.
2059 (arm_linux_hw_breakpoint_initialize): Likewise.
2060 (arm_linux_get_hwbp_type): Likewise.
2061 (arm_linux_hw_watchpoint_initialize): Likewise.
2062 (arm_linux_hw_breakpoint_equal): Likewise.
2063 (arm_linux_insert_hw_breakpoint1): Likewise.
2064 (arm_linux_remove_hw_breakpoint1): Likewise.
2065 (arm_linux_insert_hw_breakpoint): Likewise.
2066 (arm_linux_remove_hw_breakpoint): Likewise.
2067 (arm_linux_region_ok_for_hw_watchpoint): Likewise.
2068 (arm_linux_insert_watchpoint): Likewise.
2069 (arm_linux_remove_watchpoint): Likewise.
2070 (arm_linux_stopped_data_address): Likewise.
2071 (arm_linux_stopped_by_watchpoint): Likewise.
2072 (arm_linux_watchpoint_addr_within_range): Likewise.
2073 (arm_linux_new_thread): Likewise.
2074 (arm_linux_thread_exit): Likewise.
2075 (_initialize_arm_linux_nat): Install hardware breakpoint/watchpoint
2076 related target callbacks. Register arm_linux_new_thread and
2077 arm_linux_thread_exit.
2078 * arm-tdep.h (arm_pc_is_thumb): Add prototype.
2079 * arm-tdep.c (arm_pc_is_thumb): Make global.
2080 (arm_gdbarch_init): Call set_gdbarch_have_nonsteppable_watchpoint.
2081
2082 2011-02-21 Ulrich Weigand <uweigand@de.ibm.com>
2083
2084 * breakpoint.c (update_watchpoint): Do not attempt to recreate
2085 per-frame locations while within a function epilogue.
2086
2087 2011-02-21 Pierre Muller <muller@ics.u-strasbg.fr>
2088
2089 * ser-mingw.c (ser_windows_close): Reformat comment to better conform
2090 to GNU coding standards.
2091
2092 2011-02-21 Pierre Muller <muller@ics.u-strasbg.fr>
2093
2094 Allow use of mingw native on Windows 95 OS.
2095 * ser-mingw.c (CancelIo): New macro for dynamically loaded DLL entry.
2096 (ser_windows_close): Only call CancelIo if function exists.
2097 (_initialize_ser_windows): Use LoadLirary/GetProcAddress
2098 to check for existence of CancelIo function in kernel32 DLL.
2099
2100 2011-02-21 Hui Zhu <teawater@gmail.com>
2101
2102 * Makefile.in (HFILES_NO_SRCDIR): Add printcmd.h.
2103 * ax-gdb.c (gen_printf_expr_callback): New function.
2104 * ax-gdb.h (gen_printf_expr_callback): Forward declare.
2105 * ax-general.c (ax_memcpy): New function.
2106 (ax_print): Handle "printf".
2107 (ax_reqs): Ditto.
2108 * ax.h (ax_memcpy): Forward declare.
2109 * common/ax.def (invalid2): Removed.
2110 (printf): New entry.
2111 * printcmd.c (printcmd.h): New include.
2112 (string_printf): New function.
2113 (ui_printf): Removed.
2114 (printf_command): Remove static. Call string_printf.
2115 (eval_command): Call string_printf.
2116 * printcmd.h: New file.
2117 * tracepoint.c (validate_actionline,
2118 encode_actions_1): handle printf_command.
2119
2120 2011-02-19 Michael Snyder <msnyder@vmware.com>
2121
2122 * reverse.c (delete_one_bookmark): Argument is now bookmark
2123 id rather than pointer to bookmark struct.
2124 (delete_bookmark_command): Use get_number_or_range.
2125 (goto_bookmark_command): Parse with get_number instead of strtoul.
2126 (bookmark_1): New function. Print info for one bookmark.
2127 (bookmarks_info): Use get_number_or_range and bookmark_1.
2128
2129 2011-02-18 Michael Snyder <msnyder@vmware.com>
2130
2131 * thread.c (info_threads_command): Re-implement using
2132 get_number_or_range.
2133 (thread_apply_command): Ditto.
2134
2135 2011-02-18 Tom Tromey <tromey@redhat.com>
2136
2137 * common/ax.def: New file.
2138 * ax.h (enum agent_op): Use ax.def.
2139 * ax-general.c (aop_map): Use ax.def.
2140
2141 2011-02-18 Tom Tromey <tromey@redhat.com>
2142
2143 * ax-general.c (aop_map): Add pick and rot.
2144 * dwarf2loc.c (compile_dwarf_to_ax) <DW_OP_over>: Reimplement.
2145 <DW_OP_rot>: Implement.
2146 * ax.h (enum agent_op) <aop_pick, aop_rot>: New constants.
2147 (ax_pick): Declare.
2148 * ax-general.c (ax_pick): New function.
2149
2150 2011-02-18 Tom Tromey <tromey@redhat.com>
2151
2152 * Makefile.in (HFILES_NO_SRCDIR): Don't mention ada-operator.inc.
2153
2154 2011-02-18 Jan Kratochvil <jan.kratochvil@redhat.com>
2155 Tom Tromey <tromey@redhat.com>
2156
2157 * cp-support.c (make_symbol_overload_list_namespace): Do not call
2158 make_symbol_overload_list_block with NULL BLOCK.
2159 * valarith.c (unop_user_defined_p): Resolve also TYPE_CODE_TYPEDEF.
2160
2161 2011-02-18 Pedro Alves <pedro@codesourcery.com>
2162
2163 * breakpoint.c (get_number_trailer): No longer accept a NULL PP.
2164 * breakpoint.h (get_number_or_range): Declare.
2165 * printcmd.c (ALL_DISPLAYS): Declare.
2166 (delete_display): Reimplement taking a display pointer.
2167 (undisplay_command): Accept a range of displays to delete, using
2168 get_number_or_range.
2169
2170 2011-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
2171
2172 * c-valprint.c (c_val_print): Add embedded_offset to address
2173 for arrays of unspecified length.
2174 * p-valprint.c (pascal_val_print): Likewise.
2175
2176 2011-02-18 Yao Qi <yao@codesourcery.com>
2177
2178 * gdb/arm-tdep.c (arm_displaced_step_copy_insn): Move code to ...
2179 (arm_process_displaced_insn): .. here. Remove parameter INSN.
2180 (thumb_process_displaced_insn): New.
2181 * gdb/arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Update
2182 call to arm_process_displaced_insn.
2183 * gdb/arm-tdep.h : Update declaration of arm_process_displaced_insn.
2184
2185 2011-02-17 Tom Tromey <tromey@redhat.com>
2186
2187 * dwarf2loc.h (dwarf2_compile_expr_to_ax): Declare.
2188 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Rename from
2189 compile_dwarf_to_ax. No longer static. Call
2190 dwarf2_compile_cfa_to_ax.
2191 (locexpr_tracepoint_var_ref): Update.
2192 (loclist_tracepoint_var_ref): Update.
2193 * dwarf2-frame.h (dwarf2_compile_cfa_to_ax): Declare.
2194 * dwarf2-frame.c (execute_cfa_program): Remove 'this_frame'
2195 argument; add 'gdbarch' and 'pc'.
2196 (dwarf2_compile_cfa_to_ax): New function.
2197 (dwarf2_frame_cache): Update.
2198
2199 2011-02-17 Joel Brobecker <brobecker@adacore.com>
2200
2201 * ada-lang.c (ada_type_of_array): Fix the size of the array
2202 in the case of an unconstrained packed array.
2203
2204 2011-02-17 Yao Qi <yao@codesourcery.com>
2205
2206 * common/Makefile.in: Add more targets for make.
2207
2208 2011-02-16 Tom Tromey <tromey@redhat.com>
2209
2210 * dwarf2loc.c (unimplemented): Fix typo.
2211
2212 2011-02-16 Tom Tromey <tromey@redhat.com>
2213
2214 * dwarf2loc.c (unimplemented): Handle unnamed opcodes.
2215 (compile_dwarf_to_ax) <default>: Use unimplemented.
2216 <DW_OP_deref>: Update.
2217 (disassemble_dwarf_expression): Update.
2218 * dwarf2read.c (dwarf_stack_op_name): Remove 'def' argument.
2219 (decode_locdesc): Update.
2220 * dwarf2expr.h (dwarf_stack_op_name): Update.
2221
2222 2011-02-16 Tom Tromey <tromey@redhat.com>
2223
2224 * ax.h (struct aop_map) <name>: Now const.
2225
2226 2011-02-16 Tom Tromey <tromey@redhat.com>
2227
2228 * ax-gdb.c.c (gen_expr) <UNOP_MEMVAL>: Handle value kinds other
2229 than axs_rvalue.
2230
2231 2011-02-16 Yao Qi <yao@codesourcery.com>
2232
2233 * infrun.c (get_displaced_step_closure_by_addr): New.
2234 * inferior.h: Declare it.
2235 * arm-tdep.c: (arm_pc_is_thumb): Call
2236 get_displaced_step_closure_by_addr. Adjust MEMADDR if it
2237 returns non-NULL.
2238
2239 2011-02-16 Pedro Alves <pedro@codesourcery.com>
2240 Jan Kratochvil <jan.kratochvil@redhat.com>
2241
2242 gdb/
2243 * tracepoint.c (memrange_sortmerge): Fix list A's end calculation.
2244
2245 2011-02-16 Pedro Alves <pedro@codesourcery.com>
2246 Jan Kratochvil <jan.kratochvil@redhat.com>
2247
2248 * value.c (value_contents_copy_raw): Extend describing comment.
2249 Assert that the destination contents we're overwriting are wholly
2250 available.
2251 (value_contents_copy): Extend describing comment.
2252
2253 2011-02-16 Pedro Alves <pedro@codesourcery.com>
2254 Jan Kratochvil <jan.kratochvil@redhat.com>
2255
2256 * value.c (value_available_contents_eq): Remove redundant local
2257 variables. Fix available contents comparision.
2258 * value.h (value_available_contents_eq): Extend describing
2259 comment.
2260
2261 2011-02-16 Yao Qi <yao@codesourcery.com>
2262
2263 * thread.c (info_threads_command): Add missing i18n markup and remove
2264 trailing newline.
2265
2266 2011-02-15 Paul Pluzhnikov <ppluzhnikov@google.com>
2267
2268 * breakpoint.c (longjmp_names): New variable.
2269 (struct breakpoint_objfile_data): New type.
2270 (breakpoint_objfile_key): New variable.
2271 (msym_not_found): New variable.
2272 (msym_not_found_p): New predicate.
2273 (get_breakpoint_objfile_data): New function.
2274 (create_overlay_event_breakpoint): Check per-objfile cache for
2275 symbols first.
2276 (create_longjmp_master_breakpoint): Likewise.
2277 (create_std_terminate_master_breakpoint): Likewise.
2278 (create_exception_master_breakpoint): Likewise.
2279 (_initialize_breakpoint): Register per-objfile data key.
2280
2281 2011-02-15 Paul Pluzhnikov <ppluzhnikov@google.com>
2282
2283 * breakpoint.c ((create_overlay_event_breakpoint): Const-propagate
2284 parameter value.
2285 (create_longjmp_master_breakpoint): Loop over longjmp names.
2286 (create_std_terminate_master_breakpoint): Const-propagate parameter
2287 value.
2288 (update_breakpoints_after_exec): Adjust.
2289 (breakpoint_re_set): Adjust.
2290
2291 2011-02-15 Michael Snyder <msnyder@vmware.com>
2292
2293 * thread.c (info_threads_command): Process arg as thread id,
2294 or list of thread ids.
2295 (thread_find_command): New command.
2296 (_initialize_thread): Document argument for info threads.
2297 Document 'thread find' command.
2298 * NEWS: Document new command "thread find".
2299
2300 2011-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2301
2302 * Makefile.in (ACLOCAL_AMFLAGS): Add `-I ../config'.
2303 * aclocal.m4: Regenerated with aclocal-1.11.1.
2304 * common/configure: Regenerate with autoconf-2.64.
2305
2306 2011-02-15 Ken Werner <ken.werner@de.ibm.com>
2307
2308 * opencl-lang.c (build_opencl_types): Set the size of the built-in
2309 bool data type to a size of one byte.
2310
2311 2011-02-15 Pedro Alves <pedro@codesourcery.com>
2312 Jan Kratochvil <jan.kratochvil@redhat.com>
2313
2314 * target.c (memory_xfer_live_readonly_partial): Document where to
2315 look for interface description.
2316
2317 2011-02-15 Yao Qi <yao@codesourcery.com>
2318
2319 PR tdep/12352
2320 * arm-tdep.c (copy_ldr_str_ldrb_strb): Replace PC with SP in
2321 order to store PC value on stack instead of text section.
2322
2323 2011-02-15 Thiago Jung Bauermann <bauerman@br.ibm.com>
2324
2325 * rs6000-tdep.c (IS_EFP_PSEUDOREG): Use correct constant for
2326 the EFP register set size.
2327 (efpr_pseudo_register_read): Use regcache_raw_read_part to read
2328 data from the VMX register.
2329 (efpr_pseudo_register_write): Use regcache_raw_write_part to read
2330 and write data from/to the VMX register.
2331
2332 2011-02-14 Michael Snyder <msnyder@vmware.com>
2333
2334 * command.h (enum command_class): New class 'no_set_class', for
2335 "show" commands without a corresponding "set" command.
2336 * value.c (_initialize_values): Use 'no_set_class' for "show values".
2337 * copying.c (_initialize_copying): Ditto for "show copying" and
2338 "show warranty".
2339 * cli/cli-cmds.c (init_cli_cmds): Ditto for "show commands" and
2340 "show version".
2341 * cli/cli-setshow.c (cmd_show_list): Skip "show" commands for
2342 which there is no corresponding "set" command (eg. "show copying").
2343
2344 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2345 Jan Kratochvil <jan.kratochvil@redhat.com>
2346
2347 * exec.c (section_table_available_memory): Change `len' parameter
2348 type to ULONGEST.
2349 * exec.h (section_table_available_memory): Ditto.
2350 * value.h (read_value_memory): Rename the `offset' parameter to
2351 `embedded_offset'.
2352
2353 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2354 Jan Kratochvil <jan.kratochvil@redhat.com>
2355
2356 * memrange.c (compare_mem_ranges): Mention sort order in
2357 describing comment.
2358 (normalize_mem_ranges): Add comment. Fix ra->length calculation.
2359 * tracepoint.c (traceframe_available_memory): Extend comment to
2360 mention what happens to RESULT when the target does not support
2361 the query.
2362
2363 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2364 Jan Kratochvil <jan.kratochvil@redhat.com>
2365
2366 * value.c (mark_value_bytes_unavailable): Fix indexing the `bef'
2367 range.
2368
2369 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2370
2371 * value.c (value_bits_valid, value_bits_synthetic_pointer):
2372 No longer handle NULL values.
2373
2374 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2375
2376 * exceptions.h (NOT_AVAILABLE_ERROR): New error.
2377 * value.c: Include "exceptions.h".
2378 (require_available): Throw NOT_AVAILABLE_ERROR instead of a
2379 generic error.
2380 * cp-abi.c: Include gdb_assert.h.
2381 (baseclass_offset): Add `embedded_offset' and `val' parameters.
2382 Assert the method is implemented. Wrap NOT_AVAILABLE_ERROR
2383 errors.
2384 * cp-abi.h (baseclass_offset): Add `embedded_offset' and `val'
2385 parameters. No longer returns -1 on error.
2386 (struct cp_abi_ops) <baseclass_offset>: Add `embedded_offset' and
2387 `val' parameters.
2388 * cp-valprint.c: Include exceptions.h.
2389 (cp_print_value): Handle NOT_AVAILABLE_ERROR errors when fetching
2390 the baseclass_offset. Handle unavailable base classes. Use
2391 val_print_invalid_address.
2392 * p-valprint.c: Include exceptions.h.
2393 (pascal_object_print_value): Handle NOT_AVAILABLE_ERROR errors
2394 when fetching the baseclass_offset. No longer expect
2395 baseclass_offset returning -1. Handle unavailable base classes.
2396 Use val_print_invalid_address.
2397 * valops.c (dynamic_cast_check_1): Rename `contents' parameter to
2398 `valaddr' parameter, and change its type to gdb_byte pointer. Add
2399 `embedded_offset' and `val' parameters. Adjust.
2400 (dynamic_cast_check_2): Rename `contents' parameter to `valaddr'
2401 parameter, and change its type to gdb_byte pointer. Add
2402 `embedded_offset' and `val' parameters. Adjust. No longer expect
2403 baseclass_offset returning -1.
2404 (value_dynamic_cast): Use value_contents_for_printing rather than
2405 value_contents. Adjust.
2406 (search_struct_field): No longer expect baseclass_offset returning
2407 -1.
2408 (search_struct_method): If reading memory from the target is
2409 necessary, wrap it in a new value to pass to baseclass_offset. No
2410 longer expect baseclass_offset returning -1.
2411 (find_method_list): No longer expect baseclass_offset returning
2412 -1. Use value_contents_for_printing rather than value_contents.
2413 * valprint.c (val_print_invalid_address): New function.
2414 * valprint.h (val_print_invalid_address): Declare.
2415 * gdbtypes.c (is_unique_ancestor_worker): New `embedded_offset'
2416 and `val' parameters. No longer expect baseclass_offset returning
2417 -1. Adjust.
2418 * gnu-v2-abi.c: Include "exceptions.h".
2419 (gnuv2_baseclass_offset): Add `embedded_offset' and `val'
2420 parameters. Handle unavailable memory. Recurse through
2421 gnuv2_baseclass_offset directly, rather than through
2422 baseclass_offset. No longer returns -1 on not found, instead
2423 throw an error.
2424 * gnu-v3-abi.c (gnuv3_baseclass_offset): Add `embedded_offset' and
2425 `val' parameters. Adjust.
2426
2427 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2428
2429 * tracepoint.c (memrange_sortmerge): Don't merge ranges that are
2430 almost but not quite adjacent.
2431
2432 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2433
2434 * value.h (value_entirely_available): Declare.
2435 * value.c (value_entirely_available): New function.
2436 * c-valprint.c (c_value_print): Don't try fetching the pointer's
2437 real type if the pointer is unavailable.
2438
2439 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2440
2441 * valops.c (value_repeat): Use read_value_memory instead of
2442 read_memory.
2443
2444 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2445
2446 * value.h (value_contents_copy, value_contents_copy_raw): Declare.
2447 * value.c (value_contents_copy_raw, value_contents_copy): New
2448 functions.
2449 (value_primitive_field): Use value_contents_copy_raw instead of
2450 memcpy.
2451 * valops.c (value_fetch_lazy): Use value_contents_copy instead of
2452 memcpy.
2453 (value_array, value_slice): Ditto.
2454 * valarith.c (value_subscripted_rvalue): Use
2455 value_contents_copy_raw instead of memcpy.
2456
2457 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2458
2459 <unavailable> references.
2460
2461 * valops.c (get_value_at): Use value_from_contents_and_address,
2462 avoiding read_memory.
2463
2464 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2465
2466 * c-valprint.c (c_val_print): Print a string with unavailable
2467 contents as an array.
2468
2469 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2470
2471 * value.h (unpack_bits_as_long): Delete declaration.
2472 (unpack_value_bits_as_long): Declare.
2473 (unpack_value_field_as_long): Declare.
2474 (value_field_bitfield): Declare.
2475 * value.c (unpack_bits_as_long): Rename to...
2476 (unpack_value_bits_as_long_1): ... this. Add embedded_offset and
2477 value parameters. Return the extracted result in a new output
2478 parameter. If the value contents are unavailable, return false,
2479 otherwise return true.
2480 (unpack_value_bits_as_long): New.
2481 (unpack_field_as_long): Rename to...
2482 (unpack_value_field_as_long_1): ... this. Add embedded_offset and
2483 Add embedded_offset and value parameters. Return the extracted
2484 result in a new output parameter. If the value contents are
2485 unavailable, return false, otherwise return true.
2486 (unpack_value_field_as_long): New.
2487 (unpack_field_as_long_1): New.
2488 (unpack_field_as_long): Reimplement as wrapper around
2489 unpack_value_field_as_long_1.
2490 (value_field_bitfield): New function.
2491 * valops.c (value_fetch_lazy): When fetching a bitfield, use
2492 unpack_value_bits_as_long. Mark the value as unavailable, if it
2493 is unavailable.
2494 * jv-valprint.c (java_print_value_fields): Use
2495 value_field_bitfield.
2496 * p-valprint.c (pascal_object_print_value_fields): Use
2497 value_field_bitfield.
2498 * cp-valprint.c (cp_print_value_fields): Use value_field_bitfield.
2499
2500 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2501
2502 * value.c (get_internalvar_integer): Also return the int value of
2503 TYPE_CODE_INT INTERNALVAR_VALUE values.
2504 (set_internalvar): Don't special case TYPE_CODE_INT.
2505
2506 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2507
2508 * value.c (struct internalvar) <enum internalvar_kind>: Remove
2509 INTERNALVAR_POINTER.
2510 <pointer>: Delete.
2511 (value_of_internalvar): Remove INTERNALVAR_POINTER handling.
2512 (set_internalvar): Remove special TYPE_CODE_PTR handling.
2513 (preserve_one_internalvar): Remove INTERNALVAR_POINTER handling.
2514
2515 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2516
2517 * value.h (value_available_contents_eq): Declare.
2518 * value.c (find_first_range_overlap): New function.
2519 (value_available_contents_eq): New function.
2520 * valprint.c (val_print_array_elements): Use
2521 value_available_contents_eq.
2522 * ada-valprint.c (val_print_packed_array_elements): Use
2523 value_available_contents_eq.
2524 * jv-valprint.c (java_value_print): Use
2525 value_available_contents_eq.
2526
2527 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2528
2529 * target.c (target_read_live_memory): New function.
2530 (memory_xfer_live_readonly_partial): New.
2531 (memory_xfer_partial): If reading from a traceframe, fallback to
2532 reading unavailable read-only memory from read-only regions of
2533 live target memory.
2534 * tracepoint.c (disconnect_tracing): Adjust.
2535 (set_current_traceframe): New, factored out from
2536 set_traceframe_number.
2537 (set_traceframe_number): Reimplement to only change the traceframe
2538 number on the GDB side.
2539 (do_restore_current_traceframe_cleanup): Adjust.
2540 (make_cleanup_restore_traceframe_number): New.
2541 (cur_traceframe_number): New global.
2542 (tfile_open): Set cur_traceframe_number to no traceframe.
2543 (set_tfile_traceframe): New function.
2544 (tfile_trace_find): If looking up a traceframe using any method
2545 other than by number, make sure the current tfile traceframe
2546 matches gdb's current traceframe. Update the current tfile
2547 traceframe if the lookup succeeded.
2548 (tfile_fetch_registers, tfile_xfer_partial)
2549 (tfile_get_trace_state_variable_value): Make sure the remote
2550 traceframe matches gdb's current traceframe.
2551 * remote.c (remote_traceframe_number): New global.
2552 (remote_open_1): Set it to -1.
2553 (set_remote_traceframe): New function.
2554 (remote_fetch_registers, remote_store_registers)
2555 (remote_xfer_memory, remote_xfer_partial)
2556 (remote_get_trace_state_variable_value): Make sure the remote
2557 traceframe matches gdb's current traceframe.
2558 (remote_trace_find): If looking up a traceframe using any method
2559 other than by number, make sure the current remote traceframe
2560 matches gdb's current traceframe. Update the current remote
2561 traceframe if the lookup succeeded.
2562 * infrun.c (fetch_inferior_event): Adjust.
2563 * tracepoint.h (set_current_traceframe): Declare.
2564 (get_traceframe_number, set_traceframe_number): Add describing
2565 comments.
2566
2567 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2568
2569 Mark pieces of values as unavailable if the corresponding memory
2570 is unavailable.
2571
2572 * valops.c: Include tracepoint.h.
2573 (value_fetch_lazy): Use read_value_memory.
2574 (read_value_memory): New.
2575 * value.h (read_value_memory): Declare.
2576 * dwarf2loc.c (read_pieced_value): Use read_value_memory.
2577 * exec.c (section_table_available_memory): New function.
2578 * exec.h (section_table_available_memory): Declare.
2579
2580 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2581
2582 * Makefile.in (SFILES): Add memrange.c.
2583 (HFILES_NO_SRCDIR): Add memrange.h.
2584 (COMMON_OBS): Add memrange.o.
2585 * memrange.c: New file.
2586 * memrange.h: New file.
2587 * tracepoint.c: Include memrange.h.
2588 (struct mem_range): Delete.
2589 (mem_range_s): Delete.
2590 (traceframe_available_memory): New function.
2591 * tracepoint.h (traceframe_available_memory): Declare.
2592
2593 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2594
2595 * target.h (struct traceframe_info): Forward declare.
2596 (enum target_object): Add TARGET_OBJECT_TRACEFRAME_INFO.
2597 (struct target_ops) <to_traceframe_info>: New field.
2598 (target_traceframe_info): New.
2599 * target.c (update_current_target): Inherit and default
2600 to_traceframe_info.
2601 * remote.c (PACKET_qXfer_traceframe_info): New.
2602 (remote_protocol_features): Register qXfer:traceframe-info:read.
2603 (remote_xfer_partial): Handle TARGET_OBJECT_TRACEFRAME_INFO.
2604 (remote_traceframe_info): New.
2605 (init_remote_ops): Install it.
2606 (_initialize_remote): Install "set/show remote traceframe-info"
2607 commands.
2608 * tracepoint.h (parse_traceframe_info): Declare.
2609 * tracepoint.c (struct mem_range): New.
2610 (mem_range_s): New typedef.
2611 (struct traceframe_info): New.
2612 (traceframe_info): New global.
2613 (free_traceframe_info): New function.
2614 (clear_traceframe_info): New function.
2615 (start_tracing, tfind_1, set_traceframe_number): Clear traceframe
2616 info.
2617 (build_traceframe_info): New function.
2618 (tfile_traceframe_info): New function.
2619 (init_tfile_ops): Install tfile_traceframe_info.
2620 (traceframe_info_start_memory, free_result): New functions.
2621 (memory_attributes, traceframe_info_elements): New globals.
2622 (parse_traceframe_info, get_traceframe_info): New functions.
2623 * features/traceframe-info.dtd: New file.
2624 * Makefile.in (XMLFILES): Add traceframe-info.dtd.
2625
2626 2011-02-14 Pedro Alves <pedro@codesourcery.com>
2627
2628 Base support for <unavailable> value contents.
2629
2630 * value.h (value_bytes_available): Declare.
2631 (mark_value_bytes_unavailable): Declare.
2632 * value.c (struct range): New struct.
2633 (range_s): New typedef.
2634 (ranges_overlap): New function.
2635 (range_lessthan): New function.
2636 (ranges_contain_p): New function.
2637 (struct value) <unavailable>: New field.
2638 (value_bytes_available): New function.
2639 (mark_value_bytes_unavailable): New function.
2640 (require_not_optimized_out): Constify parameter.
2641 (require_available): New function.
2642 (value_contents_all, value_contents): Require all bytes be
2643 available.
2644 (value_free): Free `unavailable'.
2645 (value_copy): Copy `unavailable'.
2646 * valprint.h (val_print_unavailable): Declare.
2647 * valprint.c (valprint_check_validity): Rename `offset' parameter
2648 to `embedded_offset'. If printing a scalar, check whether the
2649 value chunk is available.
2650 (val_print_unavailable): New.
2651 (val_print_scalar_formatted): Check whether the value is
2652 available.
2653 * python/py-prettyprint.c (apply_val_pretty_printer): Refuse
2654 pretty-printing unavailable values.
2655
2656 2011-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2657
2658 Fix const/volatile qualifiers of C++ types, PR c++/12328.
2659 * c-typeprint.c (c_type_print_args): Update the function comment. New
2660 variable param_type, initialize it. Remove const/volatile qualifiers
2661 for language_cplus and !show_artificial. Use param_type.
2662
2663 2011-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2664
2665 * symtab.c (find_pc_sect_line): New variable objfile, initialize it
2666 from S. Iterate S using ALL_OBJFILE_SYMTABS. Verify BV for each S.
2667 * symtab.h (struct symtab) <next>: Comment extension.
2668
2669 2011-02-12 Yao Qi <yao@codesourcery.com>
2670
2671 * Makefile.in (CLEANDIRS): Remove duplicated common dir.
2672
2673 2011-02-11 Yao Qi <yao@codesourcery.com>
2674
2675 * common/Makefile.in: Add copyright header.
2676
2677 2011-02-11 Pedro Alves <pedro@codesourcery.com>
2678
2679 * infrun.c (proceed): Move switching out and in of tfind mode from
2680 here ...
2681 (fetch_inferior_event): ... to here.
2682
2683 2011-02-11 Yao Qi <yao@codesourcery.com>
2684
2685 * Makefile.in: Remove signals.o from COMMON_OBS. Link
2686 libcommon.a.
2687 * configure.ac: Add common to sub dir.
2688 * configure: Regenerate.
2689
2690 2011-02-11 Yao Qi <yao@codesourcery.com>
2691
2692 Build libcommon.a.
2693
2694 * common/Makefile.in: New.
2695 * common/configure.ac: New.
2696 * common/aclocal.m4: New.
2697 * common/configure: Generate.
2698
2699 2011-02-10 Pedro Alves <pedro@codesourcery.com>
2700
2701 * vec.h (VEC_block_remove): Place VEC_ASSERT_INFO on the right
2702 side of the parenthesis.
2703
2704 Merge from GCC:
2705 2010-07-13 Jakub Jelinek <jakub@redhat.com>
2706 * vec.h (VEC_block_remove): Fix comment.
2707
2708 2011-02-08 Michael Snyder <msnyder@vmware.com>
2709
2710 * linux-nat.c (linux_nat_filter_event): Fix typo in comment.
2711
2712 2011-02-08 Jan Kratochvil <jan.kratochvil@redhat.com>
2713
2714 * i386-tdep.c (i386_process_record): Rename l suffixes to d suffixes
2715 in comments for pcmpgtd, pcmpeqd, psubd, paddd, pcmpgtd, pcmpeqd,
2716 psubd and paddd.
2717
2718 2011-02-08 Jan Kratochvil <jan.kratochvil@redhat.com>
2719
2720 PR 12361.
2721 * i386-tdep.c (i386_process_record) <0x660f3807>: Fix the comment to
2722 phsubsw.
2723 (i386_process_record) <lddqu>: Fix the opcode to 0xf20ff0.
2724 (i386_process_record) <0x0f3807>: Fix the comment to phsubsw.
2725
2726 2011-02-08 Ulrich Weigand <uweigand@de.ibm.com>
2727
2728 * dwarf2read.c (read_subroutine_type): Set special calling
2729 convention flag for functions compiled by IBM XL C for OpenCL.
2730 * ppc-sysv-tdep.c: Include "dwarf2.h"
2731 (ppc_sysv_abi_push_dummy_call): Implement IBM OpenCL vector types
2732 calling convention.
2733 (do_ppc_sysv_return_value): Add FUNC_TYPE argument. Implement
2734 IBM OpenCL vector types calling convention.
2735 (ppc_sysv_abi_return_value): Pass through FUNC_TYPE.
2736 (ppc_sysv_abi_broken_return_value): Likewise.
2737 (ppc64_sysv_abi_push_dummy_call): Implement IBM OpenCL vector
2738 types calling convention.
2739 (ppc64_sysv_abi_return_value): Likewise.
2740 * spu-tdep.c: Include "dwarf2.h"
2741 (spu_return_value): Implement IBM OpenCL vector types calling
2742 convention.
2743
2744 2011-02-08 Ulrich Weigand <uweigand@de.ibm.com>
2745
2746 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Implement
2747 correct ABI for AltiVec vector arguments.
2748
2749 2011-02-07 Pedro Alves <pedro@codesourcery.com>
2750
2751 * valprint.c (val_print): Extend comment.
2752 * ada-valprint.c (ada_valprint): Rewrite comment deferring
2753 interface explanation to val_print.
2754 (ada_val_print_array): Adjust comment to current interface.
2755 (print_field_values): Adjust comment to current interface.
2756 * c-valprint.c (c_val_print): Rewrite comment deferring interface
2757 explanation to val_print.
2758 * f-valprint.c (f_val_print): Ditto.
2759 * jv-valprint.c (java_val_print): Ditto.
2760 * m2-valprint.c (m2_val_print): Ditto.
2761 * p-valprint.c (pascal_val_print): Ditto.
2762
2763 2011-02-07 Thiago Jung Bauermann <bauerman@br.ibm.com>
2764
2765 * breakpoint.c (parse_breakpoint_sals): Fix description.
2766
2767 2011-02-04 Sami Wagiaalla <swagiaal@redhat.com>
2768 Oguz Kayral <oguzkayral@gmail.com>
2769
2770 * python/py-inferior.c (python_on_normal_stop): New function.
2771 (python_on_resume): New function.
2772 (python_inferior_exit): New function.
2773 (gdbpy_initialize_inferior): Add normal_stop, target_resumed, and
2774 inferior_exit observers.
2775 * python/py-evtregistry.c: New file.
2776 * python/py-threadevent.c : New file.
2777 * python/py-event.c: New file.
2778 * python/py-evts.c: New file.
2779 * python/py-continueevent.c: New file.
2780 * python/py-bpevent.c: New file.
2781 * python/py-signalevent.c: New file.
2782 * python/py-exetiedevent.c: New file.
2783 * python/py-breakpoint.c (gdbpy_breakpoint_from_bpstats): New function.
2784 Move struct breakpoint_object from here...
2785 * python/python-internal.h: ... to here.
2786 * python/py-event.h: New file.
2787 * python/py-events.h: New file.
2788 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpointstopevent.o,
2789 py-continueevent.o, py-event.o, py-eventregistry.o, py-events.o,
2790 py-exitedevent.o, py-signalstopevent.o, and py-stopevent.o.
2791 (SUBDIR_PYTHON_SRCS): Add py-breakpointstopevent.c,
2792 py-continueevent.c, py-event.c, py-eventregistry.c, py-events.c,
2793 py-exitedevent.c, py-signalstopevent.c, and py-stopevent.c.
2794 Add build rules for all the above.
2795
2796 2011-02-04 Tom Tromey <tromey@redhat.com>
2797
2798 * dwarf2read.c (dwarf2_section_empty_p): New function.
2799 (dwarf2_read_section): Use dwarf2_section_empty_p.
2800 (dwarf2_section_size): New function.
2801 (dwarf2_get_section_info): Unconditionally read section.
2802 (dwarf2_read_index): Use dwarf2_section_empty_p.
2803 (partial_read_comp_unit_head): Use dwarf2_section_size.
2804 (dwarf2_symbol_mark_computed): Likewise.
2805
2806 2011-02-04 David Daney <ddaney@caviumnetworks.com>
2807
2808 * NEWS: Add item for "catch syscall" on mips*-linux* targets.
2809
2810 2011-02-04 David Daney <ddaney@caviumnetworks.com>
2811
2812 * mips-linux-tdep.c: Include xml-syscall.h.
2813 (mips_linux_get_syscall_number): New function.
2814 (mips_linux_init_abi): Add calls to
2815 mips_linux_get_syscall_number() and set_xml_syscall_file_name().
2816 * data-directory/Makefile.in (SYSCALLS_FILES): Add
2817 mips-o32-linux.xml, mips-n32-linux.xml and mips-n64-linux.xml
2818 * syscalls/mips-n32-linux.xml: New file.
2819 * syscalls/mips-n64-linux.xml: New file.
2820 * syscalls/mips-o32-linux.xml: New file.
2821
2822 2011-02-04 Ulrich Weigand <ulrich.weigand@linaro.org>
2823
2824 * dwarf2read.c (dwarf2_ranges_read): Skip empty range entries.
2825 Complain about inverted range entries.
2826 (dwarf2_record_block_ranges): Likewise.
2827
2828 2011-02-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
2829
2830 Fix some typos.
2831 * breakpoint.c (update_watchpoint): Fix name of the
2832 update_global_location_list function.
2833 (print_one_breakpoint): Fix typo.
2834 (_initialize_breakpoint): Remove extra space in hbreak help
2835 string.
2836 * breakpoint.h (struct bp_location) <length>: Fix field
2837 description.
2838
2839 2011-02-04 Pedro Alves <pedro@codesourcery.com>
2840
2841 * regcache.c (registers_changed_ptid): Don't explictly always
2842 clear `current_regcache'. Only clear current_thread_ptid and
2843 current_thread_arch when PTID matches. Only reinit the frame
2844 cache if PTID matches the current inferior_ptid. Move alloca(0)
2845 call to ...
2846 (registers_changed): ... here.
2847
2848 2011-02-03 Ulrich Weigand <ulrich.weigand@linaro.org>
2849
2850 * arm-tdep.c (arm_skip_stack_protector): Accept any symbol that
2851 starts with __stack_chk_guard as stack guard symbol.
2852
2853 2011-02-03 Andrew Burgess <aburgess@broadcom.com>
2854
2855 * disasm.c (compare_lines): Handle the end of sequence markers
2856 within the line table to better support disassembling over
2857 compilation unit boundaries.
2858
2859 2011-02-02 Ulrich Weigand <ulrich.weigand@linaro.org>
2860
2861 * arm-tdep.c (skip_prologue_function): Add GDBARCH and IS_THUMB
2862 arguments. Skip in-prologue calls to glibc __aeabi_read_tp
2863 implementation even if no symbols are available.
2864 (thumb_analyze_prologue): Update call to skip_prologue_function.
2865 (arm_analyze_prologue): Likewise.
2866
2867 2011-02-02 Ulrich Weigand <ulrich.weigand@linaro.org>
2868
2869 * arm-tdep.c: Include "observer.h".
2870 (arm_prologue_this_id): Use frame PC if get_frame_func returns 0.
2871 (arm_exidx_data_key): New static variable.
2872 (struct arm_exidx_entry, arm_exidx_entry_s): New data types.
2873 (struct arm_exidx_data): Likewise.
2874 (arm_exidx_data_free): New function.
2875 (arm_compare_exidx_entries): Likewise.
2876 (arm_obj_section_from_vma): Likewise.
2877 (arm_exidx_new_objfile): Likewise.
2878 (arm_find_exidx_entry): Likewise.
2879 (arm_exidx_fill_cache): Likewise.
2880 (arm_exidx_unwind_sniffer): Likewise.
2881 (arm_exidx_unwind): New global variable.
2882 (arm_gdbarch_init): Append unwinder arm_exidx_unwind.
2883 (_initialize_arm_tdep): Attach arm_exidx_new_objfile to new_objfile
2884 observer. Register arm_exidx_data_key as objfile data.
2885
2886 2011-02-02 Ulrich Weigand <ulrich.weigand@linaro.org>
2887
2888 * arm-tdep.c (arm_analyze_load_stack_chk_guard): Avoid build break
2889 due to accessing uninitialized variable. Fix indentation.
2890
2891 2011-02-02 Pedro Alves <pedro@codesourcery.com>
2892
2893 * c-valprint.c (c_value_print): When doing virtual base pointer
2894 adjustment, create a new value with adjusted contents rather than
2895 changing the contents of the value being printed (and getting it
2896 wrong).
2897
2898 2011-02-02 Pedro Alves <pedro@codesourcery.com>
2899
2900 * xml-support.c (xml_find_attribute): New.
2901 (xinclude_start_include): Use it.
2902 * xml-support.h (xml_find_attribute): Declare.
2903 * memory-map.c (memory_map_start_memory)
2904 (memory_map_start_property): Use xml_find_attribute.
2905 * osdata.c (osdata_start_osdata, osdata_start_column): Use
2906 xml_find_attribute.
2907 * remote.c (start_thread): Use xml_find_attribute.
2908 * solib-target.c (library_list_start_segment)
2909 (library_list_start_section, library_list_start_library)
2910 (library_list_start_list): Use xml_find_attribute.
2911 * xml-tdesc.c (tdesc_start_target, tdesc_start_feature)
2912 (tdesc_start_union, tdesc_start_struct, tdesc_start_flags)
2913 (tdesc_start_field): Use xml_find_attribute.
2914
2915 2011-02-02 Ulrich Weigand <uweigand@de.ibm.com>
2916
2917 * opencl-lang.c (STRINGIFY): Rename to OCL_STRING.
2918 (BUILD_OCL_VTYPES): Update.
2919
2920 2011-02-02 Joel Brobecker <brobecker@adacore.com>
2921
2922 * configure.ac: Work around non-GNU sed limitation when computing
2923 python version number.
2924 * configure: Regenerate.
2925
2926 2011-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2927
2928 Fix debug printing of TYPE_INSTANCE.
2929 * expprint.c (print_subexp_standard) <TYPE_INSTANCE>: New.
2930 (dump_subexp_body_standard) <TYPE_INSTANCE>: New.
2931
2932 2011-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2933
2934 Fix debug printing of BINOP_IN, OP_OBJC_MSGCALL,
2935 OP_F77_UNDETERMINED_ARGLIST, OP_COMPLEX, OP_OBJC_SELECTOR, OP_NAME,
2936 OP_OBJC_NSSTRING, OP_F90_RANGE and OP_DECFLOAT.
2937 * ada-operator.inc: Rename the file to ...
2938 * ada-operator.def: ... here, wrap all the entries by macro OP.
2939 * expprint.c (op_name_standard): Remove all the entries. Include
2940 "std-operator.def" instead.
2941 * expression.h (enum exp_opcode): Include "std-operator.def" and
2942 "ada-operator.def". Move all the entries ...
2943 * std-operator.def: ... here, wrap all the entries by macro OP.
2944
2945 2011-01-31 Paul Pluzhnikov <ppluzhnikov@google.com>
2946
2947 * breakpoint.h (remove_jit_event_breakpoints): New prototype.
2948 * breakpoint.c (remove_jit_event_breakpoints): New function.
2949 * jit.c (jit_descriptor_addr): Delete.
2950 (registering_code): Delete.
2951 (clear_int): Delete.
2952 (jit_inferior_data): New variable.
2953 (struct jit_inferior_data): New type.
2954 (get_jit_inferior_data): New function.
2955 (jit_inferior_data_cleanup): New function.
2956 (jit_read_descriptor): Adjust.
2957 (jit_register_code): Adjust.
2958 (jit_breakpoint_re_set_internal): New function; move code here ...
2959 (jit_inferior_init): ... from here.
2960 (jit_breakpoint_re_set): Adjust.
2961 (jit_reset_inferior_data_and_breakpoints): New function.
2962 (jit_inferior_created_observer): Adjust.
2963 (jit_inferior_exit_hook): Adjust.
2964 (jit_executable_changed_observer): New function.
2965 (jit_event_handler): Adjust.
2966 (_initialize_jit): Adjust.
2967
2968 2011-01-31 Michael Snyder <msnyder@vmware.com>
2969
2970 * m32r-tdep.c (m32r_gdbarch_init): Replace accidentally deleted
2971 line.
2972
2973 2011-01-31 Tom Tromey <tromey@redhat.com>
2974
2975 PR python/12216:
2976 * python/python.c (execute_gdb_command): Call
2977 prevent_dont_repeat.
2978 * top.c (suppress_dont_repeat): New global.
2979 (dont_repeat): Use it.
2980 (prevent_dont_repeat): New function.
2981 * command.h (prevent_dont_repeat): Declare.
2982
2983 2011-01-31 Tom Tromey <tromey@redhat.com>
2984
2985 * infcmd.c (finish_backward): Use breakpoint_set_silent.
2986 * python/py-breakpoint.c (bppy_set_silent): Use
2987 breakpoint_set_silent.
2988 (bppy_set_thread): Use breakpoint_set_thread.
2989 (bppy_set_task): Use breakpoint_set_task.
2990 * breakpoint.h (breakpoint_set_silent, breakpoint_set_thread)
2991 (breakpoint_set_task): Declare.
2992 (make_breakpoint_silent): Remove.
2993 * breakpoint.c (breakpoint_set_silent): New function.
2994 (breakpoint_set_thread): Likewise.
2995 (breakpoint_set_task): Likewise.
2996 (make_breakpoint_silent): Remove.
2997
2998 2011-01-31 Tom Tromey <tromey@redhat.com>
2999
3000 * breakpoint.h (user_breakpoint_p): Declare.
3001 * breakpoint.c (user_breakpoint_p): New function.
3002 (breakpoint_1): Use it.
3003 (save_breakpoints): Likewise.
3004
3005 2011-01-31 Joel Brobecker <brobecker@adacore.com>
3006
3007 * configure.ac: Add handling of Python distribution on Windows.
3008 * python-config.py: If the LIBS, SYSLIBS, LIBPL and/or LINKFORSHARED
3009 sysconfig variables are not defined, then do not use them.
3010 On Windows, if LIBPL is not defined, then use prefix + '/libs'
3011 instead. On Windows, return all paths using forward-slashes
3012 rather than backslashes.
3013
3014 2011-01-31 Joel Brobecker <brobecker@adacore.com>
3015
3016 * configure.ac: Remove fallback behavior for building
3017 against Python. Remove tweaking of Python include path.
3018 Add PYTHON_CPPFLAGS and PYTHON_LIBS substitution.
3019 (AC_TRY_LIBPYTHON): Adjust program used in linking test.
3020 If link is successful, set PYTHON_CPPFLAGS and PYTHON_LIBS.
3021 Always restore CPPFLAGS and LIBS after linking test.
3022 * configure: Regenerated.
3023 * Makefile.in (INTERNAL_CPPFLAGS): Add @PYTHON_CPPFLAGS@.
3024 (INSTALLED_LIBS, CLIBS): Add @PYTHON_LIBS@.
3025 * python/python-internal.h: Adjust includes of Python .h files.
3026
3027 2011-01-31 Joel Brobecker <brobecker@adacore.com>
3028
3029 * tracepoint.c (traceframe_walk_blocks): Add missing i18n markup
3030 in error message.
3031
3032 2011-01-31 Joel Brobecker <brobecker@adacore.com>
3033
3034 * inflow.c (gdb_has_a_terminal): Fix typo in interactive_mode
3035 value test.
3036
3037 2011-01-31 Yao Qi <yao@codesourcery.com>
3038
3039 * arm-linux-nat.c: Update calls to regcache_register_status
3040 instead of regcache_valid_p.
3041 * aix-thread.c: Likewise.
3042 * i386gnu-nat.c: Likewise.
3043
3044 2011-01-29 Jan Kratochvil <jan.kratochvil@redhat.com>
3045
3046 Fix crash.
3047 * valops.c (compare_parameters): Verify TYPE_NFIELDS before
3048 touching TYPE_FIELD_ARTIFICIAL.
3049
3050 2011-01-28 Richard Earnshaw <rearnsha@arm.com>
3051
3052 * MAINTAINERS: Move myself from Responsible Maintainers to Authorized
3053 Committers.
3054
3055 2011-01-28 Pedro Alves <pedro@codesourcery.com>
3056
3057 * tracepoint.c (tfile_xfer_partial): If there's no traceframe
3058 selected, don't try iterating over the traceframe's blocks.
3059 (tfile_has_stack): If there's no traceframe selected, then there's
3060 no stack.
3061 (tfile_has_registers): If there's no traceframe selected, then
3062 there's no registers.
3063
3064 2011-01-28 Pedro Alves <pedro@codesourcery.com>
3065
3066 * target.c (memory_xfer_partial): No need to restore shadows if we
3067 haven't read anything.
3068
3069 2011-01-28 Pedro Alves <pedro@codesourcery.com>
3070
3071 * mips-tdep.c (mips_print_register): Use get_frame_register_value
3072 and val_print_scalar_formatted.
3073
3074 2011-01-27 Pedro Alves <pedro@codesourcery.com>
3075
3076 * tracepoint.c (tfile_read): New.
3077 (tfile_open): Use it.
3078 (tfile_get_traceframe_address): Use it.
3079 (tfile_trace_find): Use it.
3080 (walk_blocks_callback_func): New typedef.
3081 (match_blocktype): New function.
3082 (traceframe_walk_blocks): New function.
3083 (traceframe_find_block_type): New function.
3084 (tfile_fetch_registers, tfile_xfer_partial)
3085 (tfile_get_trace_state_variable_value): Use
3086 traceframe_find_block_type and tfile_read.
3087
3088 2011-01-26 Kevin Buettner <kevinb@redhat.com>
3089
3090 * remote-mips.c: Add internationalization mark ups. Remove
3091 trailing \n from already marked up strings.
3092
3093 2011-01-26 Tom Tromey <tromey@redhat.com>
3094
3095 * python/py-prettyprint.c (print_string_repr): Clear
3096 'addressprint' option when calling val_print_string.
3097 (print_children): Handle Val_pretty_default. Clear 'addressprint'
3098 option when calling val_print_string.
3099
3100 2011-01-26 Tom Tromey <tromey@redhat.com>
3101
3102 * python/python.c (gdbpy_solib_name): Use gdb_py_longest and
3103 GDB_PY_LL_ARG.
3104 * python/python-internal.h (GDB_PY_LL_ARG, GDB_PY_LLU_ARG): New
3105 macros.
3106 (gdb_py_longest, gdb_py_ulongest): New typedefs.
3107 (gdb_py_long_from_longest, gdb_py_long_from_ulongest)
3108 (gdb_py_long_as_ulongest): New defines.
3109 (gdb_py_object_from_longest, gdb_py_object_from_ulongest)
3110 (gdb_py_int_as_long): Declare.
3111 * python/py-value.c (valpy_lazy_string): Use gdb_py_longest,
3112 GDB_PY_LL_ARG, gdb_py_object_from_longest.
3113 (valpy_long): Add comment.
3114 * python/py-utils.c (get_addr_from_python): Use
3115 gdb_py_long_as_ulongest. Handle overflow properly.
3116 (gdb_py_object_from_longest): New function.
3117 (gdb_py_object_from_ulongest): Likewise.
3118 (gdb_py_int_as_long): Likewise.
3119 * python/py-type.c (typy_array): Use gdb_py_int_as_long.
3120 * python/py-symtab.c (salpy_get_pc): Use
3121 gdb_py_long_from_ulongest.
3122 (salpy_get_line): Use PyInt_FromLong.
3123 * python/py-param.c (set_parameter_value): Use
3124 gdb_py_int_as_long.
3125 * python/py-lazy-string.c (stpy_get_address): Use
3126 gdb_py_long_from_ulongest.
3127 * python/py-frame.c (frapy_pc): Use gdb_py_long_from_ulongest.
3128 * python/py-cmd.c (cmdpy_completer): Use gdb_py_int_as_long.
3129 * python/py-breakpoint.c (bppy_set_thread): Use
3130 gdb_py_int_as_long.
3131 (bppy_set_task): Likewise.
3132 (bppy_set_ignore_count): Likewise.
3133 (bppy_set_hit_count): Likewise.
3134 * python/py-block.c (blpy_get_start): Use
3135 gdb_py_object_from_ulongest.
3136 (blpy_get_end): Likewise.
3137 (gdbpy_block_for_pc): Use gdb_py_ulongest and GDB_PY_LLU_ARG.
3138
3139 2011-01-25 Mathieu Lacage <mathieu.lacage@inria.fr>
3140
3141 PR/symtab 11766:
3142 * gdb/objfiles.h (struct objfile) <addr_low>: New field.
3143 * gdb/solib.c (solib_read_symbols): Check for addr_low in
3144 equality test for objfile, initialize addr_low if needed.
3145
3146 2011-01-25 Pedro Alves <pedro@codesourcery.com>
3147
3148 * tui/tui-regs.c (tui_register_format): Remove dead code.
3149
3150 2011-01-25 Pedro Alves <pedro@codesourcery.com>
3151
3152 * printcmd.c (print_formatted): Use val_print_scalar_formatted
3153 instead of print_scalar_formatted.
3154 (print_scalar_formatted): Don't handle 's' format strings here,
3155 and add an assertion that we never see such format here.
3156 * valprint.h (val_print_scalar_formatted): Declare.
3157 * valprint.c (val_print_scalar_formatted): New.
3158 * c-valprint.c (c_val_print): Use val_print_scalar_formatted
3159 instead of print_scalar_formatted.
3160 * jv-valprint.c (java_val_print): Ditto.
3161 * p-valprint.c (pascal_val_print): Ditto.
3162 * ada-valprint.c (ada_val_print_1): Ditto.
3163 * f-valprint.c (f_val_print): Ditto.
3164 * infcmd.c (registers_info): Ditto.
3165 * m2-valprint.c (m2_val_print): Ditto.
3166
3167 2011-01-25 Pedro Alves <pedro@codesourcery.com>
3168
3169 * m2-valprint.c (print_unbounded_array): Pass
3170 value_contents_for_printing rather than value_contents, to
3171 m2_print_array_contents. Also pass in the value.
3172
3173 2011-01-25 Jan Kratochvil <jan.kratochvil@redhat.com>
3174
3175 * dwarf2read.c (dwarf2_read_index, write_psymtabs_to_index)
3176 (save_gdb_index_command): Switch to .gdb_index version 4.
3177
3178 2011-01-25 Pedro Alves <pedro@codesourcery.com>
3179
3180 * mi/mi-main.c (get_register): Use get_frame_register_value rather
3181 than frame_register, and always pass a valid value to val_print.
3182
3183 2011-01-25 Pedro Alves <pedro@codesourcery.com>
3184
3185 Centralize printing "<optimized out>".
3186
3187 * valprint.h (val_print_optimized_out): Declare.
3188 * cp-valprint.c (cp_print_value_fields): Use
3189 val_print_optimized_out.
3190 * jv-valprint.c (java_print_value_fields): Ditto.
3191 * p-valprint.c (pascal_object_print_value_fields): Ditto.
3192 * printcmd.c (print_formatted): Ditto.
3193 * valprint.c (valprint_check_validity): Ditto.
3194 (value_check_printable): Ditto.
3195 (val_print_optimized_out): New.
3196
3197 2011-01-25 Pedro Alves <pedro@codesourcery.com>
3198
3199 * infcmd.c (default_print_registers_info): Allocate values so to
3200 never pass a NULL value to val_print.
3201
3202 2011-01-25 Pedro Alves <pedro@codesourcery.com>
3203
3204 * cp-valprint.c (cp_print_value): Treat the 'skip' local as
3205 boolean. Make sure to always pass a value that matches the
3206 contents buffer to callees. Preserve `address' for following
3207 iterations.
3208 * value.c (value_contents_for_printing_const): New.
3209 (value_address): Constify value argument.
3210 * value.h (value_contents_for_printing_const): Declare.
3211 (value_address): Constify value argument.
3212
3213 2011-01-25 Pedro Alves <pedro@codesourcery.com>
3214
3215 * regcache.c (struct regcache_descr): Rename
3216 sizeof_raw_register_valid_p field to sizeof_raw_register_status,
3217 and sizeof_cooked_register_valid_p to
3218 sizeof_cooked_register_status.
3219 (init_regcache_descr): Adjust.
3220 (struct regcache): Rename register_valid_p field to
3221 register_status.
3222 (regcache_xmalloc_1, regcache_xfree, regcache_save)
3223 (do_cooked_read): Adjust.
3224 (regcache_valid_p): Rename to ...
3225 (regcache_register_status): ... this. Adjust.
3226 (regcache_invalidate): Adjust.
3227 (regcache_raw_read, regcache_cooked_read, regcache_raw_write):
3228 Adjust.
3229 (regcache_raw_supply): Adjust. If buf i NULL, mark the register
3230 as unavailable, not valid.
3231 (regcache_dump): Adjust.
3232 * regcache.h (enum register_status): New.
3233 (regcache_register_status): Declare.
3234 (regcache_invalidate): Delete declaration.
3235 * corelow.c (get_core_registers): Adjust.
3236 * tracepoint.c (tfile_fetch_registers): Adjust.
3237 * trad-frame.c (REG_VALUE): Rename to ...
3238 (TF_REG_VALUE): ... this.
3239 (REG_UNKNOWN): Rename to ...
3240 (TF_REG_UNKNOWN): ... this.
3241 (trad_frame_set_value, trad_frame_set_unknown): Adjust.
3242 * mi/mi-main.c (register_changed_p): Adjust.
3243
3244 2011-01-25 Pedro Alves <pedro@codesourcery.com>
3245
3246 * regcache.c (struct regcache_descr): Remove outdated comment.
3247 (init_regcache_descr): Remove sizeof_raw_register_valid_p
3248 overallocate hack.
3249 (regcache_xmalloc): Rename to ...
3250 (regcache_xmalloc_1): ... this. Add `readonly_p' parameter.
3251 Allocate the regcache type accordingly.
3252 (regcache_xmalloc): New as wrapper around regcache_xmalloc_1.
3253 (regcache_xfree): Asser the source is also readonly. Copy sizeof
3254 cooked registers, not raw.
3255 (regcache_dup_no_passthrough): Delete.
3256 (get_thread_arch_regcache): Use regcache_xmalloc_1.
3257 * h8300-tdep.c (h8300_push_dummy_call): Tweak comment to not
3258 mention obsolete write_register_bytes.
3259 * regcache.h (regcache_dup_no_passthrough): Delete declaration.
3260
3261 2011-01-25 Pedro Alves <pedro@codesourcery.com>
3262
3263 Stop remote_read_bytes from handling partial reads itself.
3264
3265 * remote-fileio.c: Include target.h.
3266 (remote_fileio_write_bytes): Delete.
3267 (remote_fileio_func_open, remote_fileio_func_write)
3268 (remote_fileio_func_rename, remote_fileio_func_unlink): Use
3269 target_read_memory.
3270 (remote_fileio_func_stat): Use target_read_memory and
3271 target_write_memory.
3272 (remote_fileio_func_gettimeofday): Use target_write_memory.
3273 (remote_fileio_func_system): Use target_read_memory.
3274 * remote.c (remote_write_bytes): Make it static.
3275 (remote_read_bytes): Don't handle partial reads here.
3276 * remote.h (remote_read_bytes): Delete declaration.
3277
3278 2011-01-25 Pedro Alves <pedro@codesourcery.com>
3279
3280 Simplify XML parsing a bit.
3281
3282 * xml-support.h (gdb_xml_parse_quick): Declare.
3283 * xml-support.c (gdb_xml_create_parser_and_cleanup_1): Renamed
3284 from gdb_xml_create_parser_and_cleanup, and added `old_chain'
3285 parameter.
3286 (gdb_xml_create_parser_and_cleanup): Reimplement on top of
3287 gdb_xml_create_parser_and_cleanup_1.
3288 (gdb_xml_parse_quick): New.
3289 * memory-map.c (parse_memory_map): Use gdb_xml_parse_quick.
3290 * osdata.c (osdata_parse): Ditto.
3291 * remote.c (remote_threads_info): Ditto.
3292 * solib-target.c (solib_target_parse_libraries): Ditto.
3293 * xml-syscall.c (syscall_parse_xml): Ditto.
3294 * xml-tdesc.c (tdesc_parse_xml): Ditto.
3295
3296 2011-01-24 Kevin Buettner <kevinb@redhat.com>
3297
3298 * configure.tgt (mips*-*-elf): New; just like mips*-*-*, but
3299 with remote-mips.o added to gdb_target_obs.
3300 * Makefile.in (ALL_TARGET_OBS): Add remote-mips.o.
3301
3302 2011-01-24 Pedro Alves <pedro@codesourcery.com>
3303
3304 * ada-valprint.c (val_print_packed_array_elements): Pass the
3305 correct struct value to val_print.
3306 (ada_val_print_1): Ditto.
3307
3308 2011-01-24 Pedro Alves <pedro@codesourcery.com>
3309
3310 Don't lose embedded_offset in printing routines throughout.
3311
3312 * valprint.h (val_print_array_elements): Change prototype.
3313 * valprint.c (val_print_array_elements): Add `embedded_offset'
3314 parameter, and adjust to pass it down to val_print, while passing
3315 `valaddr' or `address' unmodified. Take embedded_offset into
3316 account when checking repetitions.
3317 * c-valprint.c (c_val_print): Pass embedded_offset to
3318 val_print_array_elements instead of adjusting `valaddr' and
3319 `address'.
3320 * m2-valprint.c (m2_print_array_contents, m2_val_print): Pass
3321 embedded_offset to val_print_array_elements instead of adjusting
3322 `valaddr'.
3323 * p-lang.h (pascal_object_print_value_fields): Adjust prototype.
3324 * p-valprint.c (pascal_val_print): Pass embedded_offset to
3325 val_print_array_elements and pascal_object_print_value_fields
3326 instead of adjusting `valaddr'.
3327 (pascal_object_print_value_fields): Add `offset' parameter, and
3328 adjust to use it.
3329 (pascal_object_print_value): Add `offset' parameter, and adjust to
3330 use it.
3331 (pascal_object_print_static_field): Use
3332 value_contents_for_printing/value_embedded_offset, rather than
3333 value_contents.
3334 * ada-valprint.c (val_print_packed_array_elements): Add `offset'
3335 parameter, and adjust to use it. Use
3336 value_contents_for_printing/value_embedded_offset, rather than
3337 value_contents.
3338 (ada_val_print): Rename `valaddr0' parameter to `valaddr'.
3339 (ada_val_print_array): Add `offset' parameter, and adjust to use
3340 it.
3341 (ada_val_print_1): Rename `valaddr0' parameter to `valaddr', and
3342 `embedded_offset' to `offset'. Don't re-adjust `valaddr'.
3343 Instead work with offsets. Use
3344 value_contents_for_printing/value_embedded_offset, rather than
3345 value_contents. Change `defer_val_int' local type to CORE_ADDR,
3346 and use value_from_pointer to extract a target pointer, rather
3347 than value_from_longest.
3348 (print_variant_part): Add `offset' parameter. Replace
3349 `outer_valaddr' parameter by a new `outer_offset' parameter.
3350 Don't re-adjust `valaddr'. Instead pass down adjusted offsets.
3351 (ada_value_print): Use
3352 value_contents_for_printing/value_embedded_offset, rather than
3353 value_contents.
3354 (print_record): Add `offset' parameter, and adjust to pass it
3355 down.
3356 (print_field_values): Add `offset' parameter. Replace
3357 `outer_valaddr' parameter by a new `outer_offset' parameter.
3358 Don't re-adjust `valaddr'. Instead pass down adjusted offsets.
3359 Use value_contents_for_printing/value_embedded_offset, rather than
3360 value_contents.
3361 * d-valprint.c (dynamic_array_type): Use
3362 value_contents_for_printing/value_embedded_offset, rather than
3363 value_contents.
3364 * jv-valprint.c (java_print_value_fields): Add `offset' parameter.
3365 Don't re-adjust `valaddr'. Instead pass down adjusted offsets.
3366 (java_print_value_fields): Take `offset' into account. Don't
3367 re-adjust `valaddr'. Instead pass down adjusted offsets.
3368 (java_val_print): Take `embedded_offset' into account. Pass it to
3369 java_print_value_fields.
3370 * f-valprint.c (f77_print_array_1): Add `embedded_offset'
3371 parameter. Don't re-adjust `valaddr' or `address'. Instead pass
3372 down adjusted offsets.
3373 (f77_print_array): Add `embedded_offset' parameter. Pass it down.
3374 (f_val_print): Take `embedded_offset' into account.
3375
3376 2011-01-21 Joel Brobecker <brobecker@adacore.com>
3377
3378 * inflow.c: Include "gdbcmd.h".
3379 (interactive_mode): New static global, moved here from top.c.
3380 (show_interactive_mode): New function, moved here from top.c.
3381 use gdb_has_a_terminal instead of input_from_terminal_p to
3382 determine the current mode.
3383 (gdb_has_a_terminal): Add handling of the "iteractive-mode"
3384 setting.
3385 (_initialize_inflow): Add the "set/show interactive-mode"
3386 commands. Moved here from top.c, after having adjusted slightly
3387 the help text.
3388 * top.c (interactive_mode, show_interactive_mode): Delete, moved
3389 to inflow.c.
3390 (input_from_terminal_p): Remove handling of "interactive-mode"
3391 setting, moved to infow.c.
3392 (init_main): Remove creation of the "set/show interactive-mode"
3393 commands, moved to inflow.c.
3394
3395 2011-01-19 Joel Brobecker <brobecker@adacore.com>
3396
3397 * NEWS: Add entry for native ia64-hpux support.
3398
3399 2011-01-19 Tom Tromey <tromey@redhat.com>
3400
3401 PR mi/8618:
3402 * thread.c (free_thread): Free 'name'.
3403 (print_thread_info): Emit thread name. Change CLI output.
3404 (thread_name_command): New function.
3405 (do_captured_thread_select): Emit newline.
3406 (_initialize_thread): Register 'thread name' command.
3407 * target.h (struct target_ops) <to_thread_name>: New field.
3408 (target_thread_name): New macro.
3409 * target.c (update_current_target): Handle to_thread_name.
3410 * python/py-infthread.c (thpy_get_name): New function.
3411 (thpy_set_name): Likewise.
3412 (thread_object_getset): Add "name".
3413 * linux-nat.c (linux_nat_thread_name): New function.
3414 (linux_nat_add_target): Set to_thread_name.
3415 * gdbthread.h (struct thread_info) <name>: New field.
3416
3417 2011-01-18 Joel Brobecker <brobecker@adacore.com>
3418
3419 * ada-valprint.c (ada_print_scalar): Remove unsigned char downcast.
3420 (ada_val_print_1): Likewise.
3421
3422 2011-01-18 Joel Brobecker <brobecker@adacore.com>
3423
3424 * rs6000-tdep.c (rs6000_skip_prologue): Make sure that the prologue
3425 upper limit address is not greater than the function end address
3426 when the upper limit could not be computed using the debugging
3427 info.
3428
3429 2011-01-17 Tom Tromey <tromey@redhat.com>
3430
3431 * cli/cli-cmds.c (apropos_command): Free the compiled regex. Use
3432 get_regcomp_error.
3433 * utils.c: Include gdb_regex.h.
3434 (do_regfree_cleanup): New function.
3435 (make_regfree_cleanup): Likewise.
3436 (get_regcomp_error): Likewise.
3437 * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Declare.
3438
3439 2011-01-17 Tom Tromey <tromey@redhat.com>
3440
3441 * cli/cli-cmds.c (apropos_command): Fix formatting. Don't call
3442 re_compile_fastmap.
3443
3444 2011-01-17 Pierre Muller <muller@ics.u-strasbg.fr>
3445
3446 * p-exp.y (intvar): New static variable, used to set CURRENT_TYPE
3447 for internal variables.
3448 (last_was_structop): New static variable.
3449 (COMPLETE): New token.
3450 (field_exp): New rule to group all '.' suffix handling.
3451 Add mark_struct_expression calls when approriate to be able
3452 to correctly find fields for completion.
3453 (yylex): Adapt to handle field completion and set INTVAR when
3454 required.
3455
3456 2011-01-14 Yao Qi <yao@codesourcery.com>
3457
3458 * arm-tdep.c (arm_register_reggroup_p): FPS register is in
3459 save_reggroup, restore_reggroup and all_reggroup.
3460
3461 2011-01-14 Joel Brobecker <brobecker@adacore.com>
3462
3463 * ada-valprint. (ada_printchar): Use the correct type length
3464 in call to ada_emit_char.
3465 * c-valprint.c (c_val_print): Remove cast in call to LA_PRINT_CHAR.
3466
3467 2011-01-14 Pierre Muller <muller@ics.u-strasbg.fr>
3468
3469 * solib-som.h (hpux_major_release): Declare variable here.
3470 * solib-som.c: Remove <sys/utsname.h> header.
3471 (DEFAULT_HPUX_MAJOR_RELEASE): New macro.
3472 (hpux_major_release): Make global, change default value to
3473 DEFAULT_HPUX_MAJOR_RELEASE.
3474 (get_hpux_major_release): Simply return HPUX_MAJOR_RELEASE.
3475 * hppa-hpux-nat.c: Add <sys/utsname.h> include.
3476 Add "solib-som.h" header.
3477 (set_hpux_major_release): New function.
3478 (_initialize_hppa_hpux_nat): Call set_hpux_major_release.
3479
3480 2011-01-14 Mike Frysinger <vapier@gentoo.org>
3481
3482 * configure.tgt (*-*-uclinux*): Match more Linux os targets
3483
3484 2011-01-14 Joel Brobecker <brobecker@adacore.com>
3485
3486 * ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing
3487 new-line at end of warning message.
3488 (ia64_hpux_store_register): Remove trailing new-line at end of
3489 error message.
3490 * ia64-hpux-tdep.c: Rephrase comment.
3491 * solib-ia64-hpux.c (struct dld_info): Change type of field
3492 dld_flags from "long long" to ULONGEST.
3493
3494 2011-01-14 Pedro Alves <pedro@codesourcery.com>
3495
3496 * target.h (deprecated_child_ops): Delete declaration.
3497 * target.c (deprecated_child_ops): Delete definition.
3498
3499 2011-01-14 Pedro Alves <pedro@codesourcery.com>
3500
3501 * Makefile.in (hpux-thread.o): Delete rule.
3502 * configure.ac: Don't check for HPUX DCE threads support.
3503 * configure, config.in: Regenerate.
3504 * hppa-hpux-nat.c (child_suppress_run): Delete.
3505 (hppa_hpux_child_can_run): Delete.
3506 (_initialize_hppa_hpux_nat): Don't override to_can_run.
3507 * hpux-thread.c: Delete.
3508
3509 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3510
3511 * hpux-thread.c (hpux_pid_to_str): Delete.
3512
3513 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3514
3515 * ada-valprint.c (ada_emit_char): Remove strange code.
3516 Check that c is <= UCHAR_MAX before passing it to isascii.
3517 (char_at): Do not assume that TYPE_LEN is either 1 or 2.
3518
3519 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3520
3521 * top.c (input_from_terminal_p): Restrict the use of interactive_mode
3522 to the case where instream is stdin.
3523
3524 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3525
3526 * ia64-tdep.h (struct regcache): Forward declare.
3527 (struct ia64_infcall_ops): New struct type.
3528 (struct gdbarch_tdep): New fields "find_global_pointer_from_solib"
3529 and "infcall_ops".
3530 * ia64-tdep.c (ia64_find_global_pointer_from_dynamic_section):
3531 Renames ia64_find_global_pointer.
3532 (ia64_find_global_pointer, ia64_allocate_new_rse_frame)
3533 (ia64_store_argument_in_slot, ia64_set_function_addr: New function.
3534 (ia64_push_dummy_call): Adjust to use the new tdep ia64_infocall_ops
3535 methods.
3536 (ia64_infcall_ops): New static global constant.
3537 (ia64_gdbarch_init): Set tdep->infcall_ops.
3538 * ia64-hpux-nat.c (ia64_hpux_xfer_solib_got): New function.
3539 (ia64_hpux_xfer_partial): Add TARGET_OBJECT_HPUX_SOLIB_GOT handing.
3540 * ia64-hpux-tdep.c: Include "regcache.h", "gdbcore.h" and "inferior.h".
3541 (ia64_hpux_dummy_code): New static global constant.
3542 (ia64_hpux_push_dummy_code, ia64_hpux_allocate_new_rse_frame)
3543 (ia64_hpux_store_argument_in_slot, ia64_hpux_set_function_addr)
3544 (ia64_hpux_dummy_id, ia64_hpux_find_global_pointer_from_solib):
3545 New function.
3546 (ia64_hpux_infcall_ops): New static global constant.
3547 (ia64_hpux_init_abi): Install gdbarch and tdep methods needed
3548 for inferior function calls to work properly on ia64-hpux.
3549
3550 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3551
3552 * target.h (enum target_object): Add TARGET_OBJECT_HPUX_UREGS.
3553 * ia64-tdep.h (struct frame_info): forward declaration.
3554 (struct gdbarch_tdep): Add field size_of_register_frame.
3555 * ia64-tdep.c (ia64_access_reg): Use tdep->size_of_register_frame
3556 to determine the size of the register frame.
3557 (ia64_size_of_register_frame): New function.
3558 (ia64_gdbarch_init): Set tdep->size_of_register_frame.
3559 * ia64-hpux-tdep.c: Include "target.h" and "frame.h".
3560 (IA64_HPUX_UREG_REASON): New macro.
3561 (ia64_hpux_stopped_in_syscall, ia64_hpux_size_of_register_frame):
3562 New functions.
3563 (ia64_hpux_init_abi): Set tdep->size_of_register_frame.
3564 * ia64-hpux-nat.c (ia64_hpux_xfer_uregs): New function.
3565 (ia64_hpux_xfer_partial): Add handling of TARGET_OBJECT_HPUX_UREGS
3566 objects.
3567
3568 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3569
3570 Add support for ia64-hpux.
3571 * config/ia64/hpux.mh, ia64-hpux-nat.c, ia64-hpux-tdep.c,
3572 ia64-hpux-tdep.h, solib-ia64-hpux.c, solib-ia64-hpux.h: New files.
3573
3574 * configure.host: Add handling for ia64-hpux hosts. Add associated
3575 floatformats.
3576 * configure.tgt: Add handling for ia64-hpux targets.
3577 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-hpux-tdep.o.
3578 (HFILES_NO_SRCDIR): Add ia64-hpux-tdep.h.
3579 (ALLDEPFILES): Add ia64-hpux-nat.c ia64-hpux-tdep.c.
3580
3581 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3582
3583 [ttrace] Compute thread list immediately after attach.
3584 * inf_ttrace_attach (inf_ttrace_create_threads_after_attach):
3585 New subprogram.
3586 (inf_ttrace_attach): Use it.
3587
3588 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3589
3590 * libunwind-frame.c (libunwind_frame_cache): Do not return NULL
3591 if we could not determine the frame's function address. Instead,
3592 use the frame's PC, and then continue.
3593
3594 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3595
3596 * libunwind-frame.c (__LITTLE_ENDIAN, __BIG_ENDIAN): Define if
3597 not already defined.
3598
3599 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3600
3601 * ia64-tdep.c (ia64_struct_type_p): New function.
3602 (ia64_extract_return_value): Handle integral values that are
3603 less than 8 bytes long.
3604 (ia64_push_dummy_call): Likewise.
3605
3606 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3607
3608 * ia64-tdep.c (floatformat_ia64_ext_little): Renames
3609 floatformat_ia64_ext.
3610 (floatformat_ia64_ext_big): New static const.
3611 (floatformats_ia64_ext): Set first entry to &floatformat_ia64_ext_big.
3612
3613 2011-01-12 Tom Tromey <tromey@redhat.com>
3614
3615 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Fix error
3616 messages.
3617 * mi/mi-main.c (mi_cmd_thread_select): Fix error messages.
3618 (mi_cmd_thread_list_ids): Likewise.
3619 (mi_cmd_data_list_changed_registers): Likewise.
3620 (mi_cmd_data_list_register_values): Likewise.
3621 (mi_cmd_data_write_register_values): Likewise.
3622 (mi_cmd_data_evaluate_expression): Likewise.
3623 (mi_cmd_data_read_memory): Likewise.
3624 (mi_cmd_data_read_memory_bytes): Likewise.
3625 (mi_cmd_data_write_memory): Likewise.
3626 (mi_cmd_enable_timings): Likewise.
3627 * mi/mi-interp.c (mi_cmd_interpreter_exec): Fix error messages.
3628 * mi/mi-cmd-var.c (mi_cmd_var_create): Fix error messages.
3629 (mi_cmd_var_delete): Likewise.
3630 (mi_cmd_var_set_format): Likewise.
3631 (mi_cmd_var_show_format): Likewise.
3632 (mi_cmd_var_info_num_children): Likewise.
3633 (mi_cmd_var_list_children): Likewise.
3634 (mi_cmd_var_info_type): Likewise.
3635 (mi_cmd_var_info_expression): Likewise.
3636 (mi_cmd_var_show_attributes): Likewise.
3637 (mi_cmd_var_assign): Likewise.
3638 (mi_cmd_var_update): Likewise.
3639 (mi_cmd_enable_pretty_printing): Likewise.
3640 (mi_cmd_var_set_update_range): Likewise.
3641 * mi/mi-cmd-target.c (mi_cmd_target_file_get): Fix error
3642 messages.
3643 (mi_cmd_target_file_put): Likewise.
3644 (mi_cmd_target_file_delete): Likewise.
3645 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Fix error
3646 messages.
3647 (mi_cmd_stack_info_depth): Likewise.
3648 (mi_cmd_stack_list_locals): Likewise.
3649 (mi_cmd_stack_list_args): Likewise.
3650 (mi_cmd_stack_select_frame): Likewise.
3651 (mi_cmd_stack_select_frame): Likewise.
3652 (mi_cmd_stack_info_frame): Likewise.
3653 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Fix error
3654 messages.
3655 (mi_cmd_file_list_exec_source_files): Likewise.
3656 * mi/mi-cmd-env.c (mi_cmd_env_pwd): Fix error messages.
3657 (mi_cmd_env_cd): Likewise.
3658 (mi_cmd_env_path): Likewise.
3659 (mi_cmd_env_dir): Likewise.
3660 (mi_cmd_inferior_tty_show): Likewise.
3661 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Fix error messages.
3662 * mi/mi-cmd-break.c (mi_cmd_break_insert): Fix error messages.
3663 (mi_cmd_break_watch): Likewise.
3664
3665 2011-01-12 Thiago Jung Bauermann <bauerman@br.ibm.com>
3666
3667 * ppc-linux-nat.c (booke_cmp_hw_point): Fix whitespace.
3668 (ppc_linux_insert_hw_breakpoint): Likewise.
3669 (ppc_linux_remove_hw_breakpoint): Likewise.
3670 (ppc_linux_insert_watchpoint): Likewise.
3671
3672 2011-01-12 Andrew Burgess <aburgess@broadcom.com>
3673 Jan Kratochvil <jan.kratochvil@redhat.com>
3674
3675 PR fortran/11104 and DWARF unbound arrays detection.
3676 * dwarf2read.c (read_subrange_type): Set zero length on unspecified
3677 upper bound. Set TYPE_HIGH_BOUND_UNDEFINED if not language_ada on
3678 unspecified upper bound.
3679 * eval.c (evaluate_subexp_standard) <multi_f77_subscript>: Remove
3680 variables array_size_array, tmp_type and offset_item. New variable
3681 array. Remove call to f77_get_upperbound. New variables array_type
3682 and index. Call value_subscripted_rvalue for each dimenasion. Remove
3683 the final call to deprecated_set_value_type.
3684
3685 2011-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
3686
3687 Make value allocations more lazy.
3688 * ada-lang.c (coerce_unspec_val_to_type): Use allocate_value_lazy
3689 instead of allocate_value and set_value_lazy when possible.
3690 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use allocate_value_lazy
3691 instead of allocate_value and set_value_lazy.
3692 * findvar.c (value_of_register_lazy): Likewise.
3693 (read_var_value): Remove V preallocation, call just check_typedef in
3694 advance. Move allocate_value to LOC_CONST, LOC_LABEL,
3695 LOC_CONST_BYTES. Use allocate_value_lazy in LOC_STATIC, LOC_ARG,
3696 LOC_REF_ARG, LOC_LOCAL, LOC_BLOCK. Set ADDR instead of
3697 set_value_address and break in LOC_BLOCK. Use allocate_value_lazy and
3698 remove lval_memory set in LOC_REGPARM_ADDR. Use allocate_value_lazy
3699 in LOC_UNRESOLVED and LOC_OPTIMIZED_OUT. Add setting lval_memory at
3700 the end, remove set_value_lazy there.
3701 * valarith.c (value_subscripted_rvalue): Use allocate_value_lazy
3702 instead of allocate_value and set_value_lazy when possible.
3703 * valops.c (value_fetch_lazy): Do nop for value_optimized_out VAL.
3704 * value.c (allocate_computed_value): Use allocate_value_lazy instead
3705 of allocate_value and set_value_lazy.
3706 (value_from_contents_and_address): Use allocate_value_lazy instead of
3707 allocate_value and set_value_lazy when possible.
3708
3709 2011-01-12 Andrew Burgess <aburgess@broadcom.com>
3710
3711 * disasm.c (dump_insns): Support dumping opcodes for MI.
3712 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Allow mode to control
3713 dumping of instruction opcodes.
3714
3715 2011-01-09 Robert Millan <rmh@gnu.org> (tiny patch)
3716
3717 * configure.tgt: Detect GNU/kFreeBSD and set `gdb_osabi'
3718 appropiately.
3719
3720 2011-01-11 Tom Tromey <tromey@redhat.com>
3721
3722 * thread.c (do_captured_thread_select): Emit newline before
3723 printing frame.
3724
3725 2011-01-11 Michael Snyder <msnyder@vmware.com>
3726
3727 * s390-tdep.c: Comment cleanup, mostly periods and spaces.
3728 * score-tdep.c: Ditto.
3729 * score-tdep.h: Ditto.
3730 * ser-base.c: Ditto.
3731 * ser-go32.c: Ditto.
3732 * serial.c: Ditto.
3733 * serial.h: Ditto.
3734 * ser-mingw.c: Ditto.
3735 * ser-pipe.c: Ditto.
3736 * ser-tcp.c: Ditto.
3737 * ser-unix.c: Ditto.
3738 * sh64-tdep.c: Ditto.
3739 * shnbsd-nat.c: Ditto.
3740 * sh-tdep.c: Ditto.
3741 * sh-tdep.h: Ditto.
3742 * solib.c: Ditto.
3743 * solib-darwin.c: Ditto.
3744 * solib-frv.c: Ditto.
3745 * solib.h: Ditto.
3746 * solib-irix.c: Ditto.
3747 * solib-osf.c: Ditto.
3748 * solib-pa64.c: Ditto.
3749 * solib-som.c: Ditto.
3750 * solib-spu.c: Ditto.
3751 * solib-sunos.c: Ditto.
3752 * solib-svr4.c: Ditto.
3753 * solist.h: Ditto.
3754 * sol-thread.c: Ditto.
3755 * somread.c: Ditto.
3756 * source.c: Ditto.
3757 * source.h: Ditto.
3758 * sparc64-linux-tdep.c: Ditto.
3759 * sparc64-tdep.c: Ditto.
3760 * sparc-linux-nat.c: Ditto.
3761 * sparc-linux-tdep.c: Ditto.
3762 * sparc-sol2-nat.c: Ditto.
3763 * sparc-sol2-tdep.c: Ditto.
3764 * sparc-tdep.c: Ditto.
3765 * sparc-tdep.h: Ditto.
3766 * spu-tdep.c: Ditto.
3767 * stabsread.c: Ditto.
3768 * stabsread.h: Ditto.
3769 * stack.c: Ditto.
3770 * symfile.c: Ditto.
3771 * symfile.h: Ditto.
3772 * symmisc.c: Ditto.
3773 * symtab.c: Ditto.
3774 * symtab.h: Ditto.
3775 * target.c: Ditto.
3776 * target-descriptions.c: Ditto.
3777 * target-descriptions.h: Ditto.
3778 * target.h: Ditto.
3779 * target-memory.c: Ditto.
3780 * terminal.h: Ditto.
3781 * thread.c: Ditto.
3782 * top.c: Ditto.
3783 * tracepoint.c: Ditto.
3784 * tracepoint.h: Ditto.
3785 * trad-frame.h: Ditto.
3786 * typeprint.c: Ditto.
3787
3788 2011-01-11 Michael Snyder <msnyder@vmware.com>
3789
3790 * ui-file.c: Comment cleanup, mostly periods and spaces.
3791 * ui-file.h: Ditto.
3792 * ui-out.c: Ditto.
3793 * ui-out.h: Ditto.
3794 * utils.c: Ditto.
3795 * v850-tdep.c: Ditto.
3796 * valarith.c: Ditto.
3797 * valops.c: Ditto.
3798 * valprint.c: Ditto.
3799 * valprint.h: Ditto.
3800 * value.c: Ditto.
3801 * value.h: Ditto.
3802 * varobj.c: Ditto.
3803 * varobj.h: Ditto.
3804 * vax-tdep.c: Ditto.
3805 * vec.c: Ditto.
3806 * vec.h: Ditto.
3807 * version.h: Ditto.
3808 * windows-nat.c: Ditto.
3809 * windows-tdep.c: Ditto.
3810 * xcoffread.c: Ditto.
3811 * xcoffsolib.c: Ditto.
3812 * xml-support.c: Ditto.
3813 * xstormy16-tdep.c: Ditto.
3814 * xtensa-tdep.c: Ditto.
3815 * xtensa-tdep.h: Ditto.
3816
3817 2011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
3818
3819 * breakpoint.c (resources_needed_watchpoint): Fix indentation.
3820 * gdbtypes.c (is_scalar_type_recursive): Fix formatting.
3821
3822 2011-01-11 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
3823 Thiago Jung Bauermann <bauerman@br.ibm.com>
3824
3825 Implement support for PowerPC BookE ranged watchpoints.
3826 * breakpoint.h
3827 (struct breakpoint_ops) <resources_needed>: New method.
3828 Initialize to NULL in all existing breakpoint_ops instances.
3829 (struct breakpoint) <exact>: New field.
3830 (target_exact_watchpoints): Declare external global.
3831 * breakpoint.c (target_exact_watchpoints): New global flag.
3832 (update_watchpoint): Set b->type to bp_hardware_watchpoint and
3833 b->enable_state to bp_enabled before calling
3834 hw_watchpoint_used_count.
3835 (hw_watchpoint_used_count): Iterate over all bp_locations in a
3836 watchpoint. Call breakpoint's breakpoint_ops.resources_needed
3837 if available.
3838 (insert_watchpoint, remove_watchpoint): Use fixed length of 1 byte
3839 if the watchpoint is exact.
3840 (resources_needed_watchpoint): New function.
3841 (watchpoint_breakpoint_ops): Add resources_needed_watchpoint.
3842 (watch_command_1): Set b->exact if the user asked for an exact
3843 watchpoint and one can be set.
3844 (can_use_hardware_watchpoint): Add exact_watchpoints argument.
3845 Pass fixed length of 1 to target_region_ok_for_hw_watchpoint if
3846 the user asks for an exact watchpoint and one can be set. Return
3847 number of needed debug registers to watch the expression.
3848 * gdbtypes.c (is_scalar_type): New function, based on
3849 valprint.c:scalar_type_p.
3850 (is_scalar_type_recursive): New function.
3851 * gdbtypes.h (is_scalar_type_recursive): Declare.
3852 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Always
3853 handle regions when ranged watchpoints are available.
3854 (create_watchpoint_request): New function.
3855 (ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint): Use
3856 create_watchpoint_request.
3857 * rs6000-tdep.c (show_powerpc_exact_watchpoints): New function.
3858 (_initialize_rs6000_tdep): Add `exact-watchpoints' boolean to the
3859 `set powerpc' and `show powerpc' commands.
3860 * target.h (struct target_ops) <to_region_ok_for_hw_watchpoint>:
3861 Mention documentation comment in the target macro.
3862 (target_region_ok_for_hw_watchpoint): Document return value.
3863
3864 2011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
3865
3866 * breakpoint.c (update_watchpoint): Decide on using a software or
3867 hardware watchpoint after the bp_locations are created.
3868
3869 2010-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
3870
3871 Convert hardware watchpoints to use breakpoint_ops.
3872 * breakpoint.h (breakpoint_ops) <insert>: Rename to...
3873 <insert_location>: ... this. Return int instead of void.
3874 Accept pointer to struct bp_location instead of pointer to
3875 struct breakpoint. Adapt all implementations.
3876 (breakpoint_ops) <remove>: Rename to...
3877 <remove_location>: ... this. Accept pointer to struct bp_location
3878 instead of pointer to struct breakpoint. Adapt all implementations.
3879 * breakpoint.c (insert_catchpoint): Delete function.
3880 (insert_bp_location): Call the watchpoint or catchpoint's
3881 breakpoint_ops.insert method.
3882 (remove_breakpoint_1): Call the watchpoint or catchpoint's
3883 breakpoint_ops.remove method.
3884 (insert_watchpoint, remove_watchpoint): New functions.
3885 (watchpoint_breakpoint_ops): New structure.
3886 (watch_command_1): Initialize the OPS field.
3887 * inf-child.c (inf_child_insert_fork_catchpoint)
3888 (inf_child_remove_fork_catchpoint, inf_child_insert_vfork_catchpoint)
3889 (inf_child_remove_vfork_catchpoint, inf_child_insert_exec_catchpoint)
3890 (inf_child_remove_exec_catchpoint, inf_child_set_syscall_catchpoint):
3891 Delete functions.
3892 (inf_child_target): Remove initialization of to_insert_fork_catchpoint,
3893 to_remove_fork_catchpoint, to_insert_vfork_catchpoint,
3894 to_remove_vfork_catchpoint, to_insert_exec_catchpoint,
3895 to_remove_exec_catchpoint and to_set_syscall_catchpoint.
3896 * target.c (update_current_target): Change default implementation of
3897 to_insert_fork_catchpoint, to_remove_fork_catchpoint,
3898 to_insert_vfork_catchpoint, to_remove_vfork_catchpoint,
3899 to_insert_exec_catchpoint, to_remove_exec_catchpoint and
3900 to_set_syscall_catchpoint to return_one.
3901 (debug_to_insert_fork_catchpoint, debug_to_insert_vfork_catchpoint)
3902 (debug_to_insert_exec_catchpoint): Report return value.
3903 * target.h (to_insert_fork_catchpoint, to_insert_vfork_catchpoint)
3904 (to_insert_exec_catchpoint): Change declaration to return int instead
3905 of void.
3906
3907 2011-01-11 Michael Snyder <msnyder@vmware.com>
3908
3909 * arm-tdep.c: Internationalization.
3910 * c-lang.c: Ditto.
3911 * charset.c: Ditto.
3912 * fork-child.c: Ditto.
3913 * nto-procfs.c: Ditto.
3914 * ppc-sysv-tdep.c: Ditto.
3915 * procfs.c: Ditto.
3916 * remote-mips.c: Ditto.
3917 * remote.c: Ditto.
3918 * rs6000-nat.c: Ditto.
3919 * rs6000-tdep.c: Ditto.
3920 * target.c: Ditto.
3921 * valops.c: Ditto.
3922 * value.c: Ditto.
3923 * xml-support.c: Ditto.
3924 * mi/mi-cmd-break.c: Ditto.
3925 * mi/mi-cmd-var.c: Ditto.
3926 * mi/mi-interp.c: Ditto.
3927 * mi/mi-main.c: Ditto.
3928
3929 2011-01-11 Andrew Burgess <aburgess@broadcom.com>
3930
3931 * remote-sim.c (gdbsim_store_register): Update API to
3932 sim_store_register to check more error conditions.
3933
3934 2011-01-10 Michael Snyder <msnyder@vmware.com>
3935
3936 * nto-procfs.c: Comment cleanup, mostly periods and spaces.
3937 * nto-tdep.c: Ditto.
3938 * nto-tdep.h: Ditto.
3939 * objc-exp.y: Ditto.
3940 * objc-lang.c: Ditto.
3941 * objfiles.c: Ditto.
3942 * objfiles.h: Ditto.
3943 * observer.c: Ditto.
3944 * opencl-lang.c: Ditto.
3945 * osabi.c: Ditto.
3946 * parse.c: Ditto.
3947 * parser-defs.h: Ditto.
3948 * p-exp.y: Ditto.
3949 * p-lang.c: Ditto.
3950 * posix-hdep.c: Ditto.
3951 * ppcbug-rom.c: Ditto.
3952 * ppc-linux-nat.c: Ditto.
3953 * ppc-linux-tdep.c: Ditto.
3954 * ppc-linux-tdep.h: Ditto.
3955 * ppcnbsd-tdep.c: Ditto.
3956 * ppcobsd-tdep.c: Ditto.
3957 * ppcobsd-tdep.h: Ditto.
3958 * ppc-sysv-tdep.c: Ditto.
3959 * ppc-tdep.h: Ditto.
3960 * printcmd.c: Ditto.
3961 * proc-abi.c: Ditto.
3962 * proc-flags.c: Ditto.
3963 * procfs.c: Ditto.
3964 * proc-utils.h: Ditto.
3965 * progspace.h: Ditto.
3966 * prologue-value.c: Ditto.
3967 * prologue-value.h: Ditto.
3968 * psympriv.h: Ditto.
3969 * psymtab.c: Ditto.
3970 * p-typeprint.c: Ditto.
3971 * p-valprint.c: Ditto.
3972 * ravenscar-sparc-thread.c: Ditto.
3973 * ravenscar-thread.c: Ditto.
3974 * ravenscar-thread.h: Ditto.
3975 * record.c: Ditto.
3976 * regcache.c: Ditto.
3977 * regcache.h: Ditto.
3978 * remote.c: Ditto.
3979 * remote-fileio.c: Ditto.
3980 * remote-fileio.h: Ditto.
3981 * remote.h: Ditto.
3982 * remote-m32r-sdi.c: Ditto.
3983 * remote-mips.c: Ditto.
3984 * remote-sim.c: Ditto.
3985 * rs6000-aix-tdep.c: Ditto.
3986 * rs6000-nat.c: Ditto.
3987 * rs6000-tdep.c: Ditto.
3988
3989 2011-01-10 Michael Snyder <msnyder@vmware.com>
3990
3991 * charset.c (validate): Internationalization.
3992 * coffread.c (read_one_sym): Ditto.
3993 * dwarf2read.c (dwarf2_attach_fields_to_type): Ditto.
3994 * h8300-tdep.c (H8300_extract_return_value): Ditto.
3995 * inflow.c (new_tty): Ditto.
3996 * iq2000-tdep.c (iq2000_breakpoint_from_pc): Ditto.
3997 * m32c-tdep.c (m32c_return_value): Ditto.
3998 * mep-tdep.c (mep_store_return_value): Ditto.
3999 * score-tdep.c (score7_fetch_insn): Ditto.
4000 * ser-mingw.c (pipe_windows_open): Ditto.
4001 * sh64-tdep.c (sh64_extract_return_value): Ditto.
4002 * spu-tdep.c (spu_register_type): Ditto.
4003 * tracepoint.c (trace_find_command): Ditto.
4004 * valarith.c (value_pos): Ditto.
4005
4006 2011-01-10 Joel Brobecker <brobecker@adacore.com>
4007
4008 * ada-valprint.c (printstr): Minor comment reformatting.
4009
4010 2011-01-08 Michael Snyder <msnyder@vmware.com>
4011
4012 * m32r-rom.c (m32r_upload_command): Fix up ARI warnings for _
4013 markup.
4014
4015 2011-01-08 Michael Snyder <msnyder@vmware.com>
4016
4017 * h8300-tdep.c: Comment cleanup, mostly periods and spaces.
4018 * hppa-hpux-tdep.c: Ditto.
4019 * hppa-linux-nat.c: Ditto.
4020 * hppa-linux-tdep.c: Ditto.
4021 * hppanbsd-tdep.c: Ditto.
4022 * hppa-tdep.c: Ditto.
4023 * hppa-tdep.h: Ditto.
4024 * hpux-thread.c: Ditto.
4025 * i386-cygwin-tdep.c: Ditto.
4026 * i386-darwin-nat.c: Ditto.
4027 * i386gnu-nat.c: Ditto.
4028 * i386-linux-nat.c: Ditto.
4029 * i386-linux-tdep.c: Ditto.
4030 * i386-nat.c: Ditto.
4031 * i386-nat.h: Ditto.
4032 * i386nbsd-tdep.c: Ditto.
4033 * i386-sol2-nat.c: Ditto.
4034 * i386-stub.c: Ditto.
4035 * i386-tdep.c: Ditto.
4036 * i386-tdep.h: Ditto.
4037 * i387-tdep.c: Ditto.
4038 * ia64-linux-nat.c: Ditto.
4039 * ia64-linux-tdep.c: Ditto.
4040 * ia64-tdep.c: Ditto.
4041 * infcall.c: Ditto.
4042 * infcall.h: Ditto.
4043 * infcmd.c: Ditto.
4044 * inferior.c: Ditto.
4045 * inferior.h: Ditto.
4046 * infloop.c: Ditto.
4047 * inflow.c: Ditto.
4048 * infrun.c: Ditto.
4049 * interps.c: Ditto.
4050 * interps.h: Ditto.
4051 * iq2000-tdep.c: Ditto.
4052 * irix5-nat.c: Ditto.
4053 * jit.c: Ditto.
4054 * jit.h: Ditto.
4055 * jv-exp.y: Ditto.
4056 * jv-lang.c: Ditto.
4057 * jv-lang.h: Ditto.
4058 * jv-typeprint.c: Ditto.
4059 * jv-valprint.c: Ditto.
4060 * language.c: Ditto.
4061 * language.h: Ditto.
4062 * linespec.c: Ditto.
4063 * linux-fork.c: Ditto.
4064 * linux-nat.c: Ditto.
4065 * linux-thread-db.c: Ditto.
4066 * lm32-tdep.c: Ditto.
4067
4068 2011-01-08 Michael Snyder <msnyder@vmware.com>
4069
4070 * m2-exp.y: Comment cleanup, mostly periods and spaces.
4071 * m2-lang.c: Ditto.
4072 * m2-typeprint.c: Ditto.
4073 * m2-valprint.c: Ditto.
4074 * m32c-tdep.c: Ditto.
4075 * m32r-linux-nat.c: Ditto.
4076 * m32r-rom.c: Ditto.
4077 * m32r-tdep.c: Ditto.
4078 * m32r-tdep.h: Ditto.
4079 * m68hc11-tdep.c: Ditto.
4080 * m58klinux-nat.c: Ditto.
4081 * m68k-tdep.c: Ditto.
4082 * m88k-tdep.c: Ditto.
4083 * m88k-tdep.h: Ditto.
4084 * machoread.c: Ditto.
4085 * macrocmd.c: Ditto.
4086 * macroexp.c: Ditto.
4087 * macrotab.c: Ditto.
4088 * main.c: Ditto.
4089 * maint.c: Ditto.
4090 * mdebugread.c: Ditto.
4091 * mdebugread.h: Ditto.
4092 * memattr.c: Ditto.
4093 * memattr.h: Ditto.
4094 * memory-map.h: Ditto.
4095 * mep-tdep.c: Ditto.
4096 * microblaze-rom.c: Ditto.
4097 * microblaze-tdep.c: Ditto.
4098 * minsyms.c: Ditto.
4099 * mips-irix-tdep.c: Ditto.
4100 * mips-linux-nat.c: Ditto.
4101 * mips-linux-tdep.c: Ditto.
4102 * mips-linux-tdep.h: Ditto.
4103 * mipsnbsd-nat.c: Ditto.
4104 * mipsnbsd-tdep.c: Ditto.
4105 * mipsread.c: Ditto.
4106 * mips-tdep.c: Ditto.
4107 * mips-tdep.h: Ditto.
4108 * mn10300-linux-tdep.c: Ditto.
4109 * mn10300-tdep.c: Ditto.
4110 * mn10300-tdep.h: Ditto.
4111 * monitor.c: Ditto.
4112 * monitor.h: Ditto.
4113 * moxie-tdep.c: Ditto.
4114 * moxie-tdep.h: Ditto.
4115 * mt-tdep.c: Ditto.
4116
4117 2011-01-08 Mike Frysinger <vapier@gentoo.org>
4118
4119 * bfin-tdep.h (BFIN_A0_DOT_W_REGNUM): Fix typo in name.
4120
4121 2011-01-08 Robert Millan <rmh@gnu.org>
4122
4123 * fbsd-nat.c (fbsd_find_memory_regions): Fix typo.
4124
4125 2011-01-07 Michael Snyder <msnyder@vmware.com>
4126
4127 * charset.c (_initialize_charset): Fix typo in string.
4128
4129 2011-01-07 Michael Snyder <msnyder@vmware.com>
4130
4131 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Mark up error message
4132 for i18n.
4133 * tui/tui-layout.c (tui_set_layout_for_display_command):
4134 Split line so that operator goes to beginning of line.
4135 * tui/tui-winsource.c (tui_horizontal_source_scroll): Move
4136 assignment out of if statement.
4137
4138 2011-01-07 Michael Snyder <msnyder@vmware.com>
4139
4140 * ada-lang.c: Comment cleanup, mostly periods and spaces.
4141 * ada-lang.h: Ditto.
4142 * ada-tasks.c: Ditto.
4143 * ada-valprint.c: Ditto.
4144 * aix-threads.c: Ditto.
4145 * alpha-linux-nat.c: Ditto.
4146 * alpha-linux-tdep.c: Ditto.
4147 * alpha-mdebug-tdep.c: Ditto.
4148 * alpha-nat.c: Ditto.
4149 * alpha-osf1-tdep.c: Ditto.
4150 * alpha-tdep.c: Ditto.
4151 * alphabsd-nat.c: Ditto.
4152 * alphabsd-tdep.c: Ditto.
4153 * amd64-darwin-tdep.c: Ditto.
4154 * amd64-linux-nat.c: Ditto.
4155 * amd64-linux-tdep.c: Ditto.
4156 * amd64-sol2-tdep.c: Ditto.
4157 * amd64-tdep.c: Ditto.
4158 * amd64-fbsd-tdep.c: Ditto.
4159 * amd64-nbsd-tdep.c: Ditto.
4160 * amd64-obsd-tdep.c: Ditto.
4161 * amd64-linux-nat.c: Ditto.
4162 * amd64-linux-tdep.c: Ditto.
4163 * arm-tdep.c: Ditto.
4164 * arm-tdep.h: Ditto.
4165 * armnbsd-nat.c: Ditto.
4166 * avr-tdep.c: Ditto.
4167 * bfin-tdep.c: Ditto.
4168 * bsd-kvm.c: Ditto.
4169 * c-typeprintc: Ditto.
4170 * c-valprint.c: Ditto.
4171 * coff-pe-read.h: Ditto.
4172 * coffreead.c: Ditto.
4173 * cris-tdep.c: Ditto.
4174 * d-lang.c: Ditto.
4175 * darwin-nat-info.c: Ditto.
4176 * darwin-nat.c: Ditto.
4177 * dbug-rom.c: Ditto.
4178 * dbxread.c: Ditto.
4179 * dcache.c: Ditto.
4180 * dcache.h: Ditto.
4181 * dec-thread.c: Ditto.
4182 * defs.h: Ditto.
4183 * demangle.c: Ditto.
4184 * dicos-tdep.c: Ditto.
4185 * dictionary.c: Ditto.
4186 * dictionary.h: Ditto.
4187 * dink32-rom.c: Ditto.
4188 * disasm.c: Ditto.
4189 * doublest.c: Ditto.
4190 * dsrec.c: Ditto.
4191 * dummy-frame.c: Ditto.
4192 * dwarf2-frame.c: Ditto.
4193 * dwarf2expr.c: Ditto.
4194 * dwarf2loc.c: Ditto.
4195 * dwarf2read.c: Ditto.
4196 * elfread.c: Ditto.
4197 * environ.c: Ditto.
4198 * eval.c: Ditto.
4199 * event-top.h: Ditto.
4200 * exceptions.c: Ditto.
4201 * exceptions.h: Ditto.
4202 * exec.c: Ditto.
4203 * expprint.c: Ditto.
4204 * expression.h: Ditto.
4205 * f-exp.y: Ditto.
4206 * f-lang.c: Ditto.
4207 * f-lang.h: Ditto.
4208 * f-typeprint.c: Ditto.
4209 * f-valprint.c: Ditto.
4210 * fbsd-nat.c: Ditto.
4211 * findvar.c: Ditto.
4212 * fork-child.c: Ditto.
4213 * frame.c: Ditto.
4214 * frame.h: Ditto.
4215 * frv-linux-tdep.c: Ditto.
4216 * frv-tdep.c: Ditto.
4217 * gcore.c: Ditto.
4218 * gdb-stabs.h: Ditto.
4219 * gdb_assert.h: Ditto.
4220 * gdb_string.h: Ditto.
4221 * gdb_thread_db.h: Ditto.
4222 * gdb_wait.h: Ditto.
4223 * gdbarch.sh: Ditto.
4224 * gdbcore.h: Ditto.
4225 * gdbthread.h: Ditto.
4226 * gdbtypes.c: Ditto.
4227 * gdbtypes.h: Ditto.
4228 * gnu-nat.c: Ditto.
4229 * gnu-nat.h: Ditto.
4230 * gnu-v2-abi.c: Ditto.
4231 * gnu-v3-abi.c: Ditto.
4232 * go32-nat.c: Ditto.
4233 * gdbarch.c: Regenerate.
4234 * gdbarch.h: Regenerate.
4235
4236 2011-01-07 Michael Snyder <msnyder@vmware.com>
4237
4238 * ax-gdb.c: Adjust some long output strings.
4239 * breakpoint.c: Ditto.
4240 * charset.c: Ditto.
4241 * cp-abi.c: Ditto.
4242 * infcall.c: Ditto.
4243 * infrun.c: Ditto.
4244 * linux-nat.c: Ditto.
4245 * solib-pa64.c: Ditto.
4246 * solib-som.c: Ditto.
4247
4248 2011-01-06 Tom Tromey <tromey@redhat.com>
4249
4250 PR python/12367:
4251 * NEWS: Add item.
4252 * python/python.c (GdbMethods): Add "newest_frame" method.
4253 * python/python-internal.h (gdbpy_newest_frame): Declare.
4254 * python/py-frame.c (gdbpy_newest_frame): New function.
4255
4256 2010-01-06 Paul Pluzhnikov <ppluzhnikov@google.com>
4257
4258 * jit.h (struct jit_code_entry): use ULONGEST for symfile_size.
4259 * jit.c (jit_debug): New variable.
4260 (show_jit_debug): New function.
4261 (struct target_buffer): Use ULONGEST.
4262 (bfd_open_from_target_memory): Likewise.
4263 (jit_register_code, jit_inferior_init): Add debug output.
4264 (_initialize_jit): Register "debug jit" command.
4265
4266 2011-01-06 Tom Tromey <tromey@redhat.com>
4267
4268 * frame.h (enum frame_type) <INLINE_FRAME>: Fix comment.
4269 * python/py-frame.c (gdbpy_initialize_frames): Add INLINE_FRAME
4270 and ARCH_FRAME.
4271
4272 2011-01-06 Tom Tromey <tromey@redhat.com>
4273
4274 * python/py-frame.c (frapy_block): Use get_frame_block.
4275
4276 2011-01-06 Joel Brobecker <brobecker@adacore.com>
4277
4278 Do not stop on SIGPRIO signals by default
4279 * infrun.c (_initialize_infrun): Unset signal_stop and
4280 signal_print for TARGET_SIGNAL_PRIO.
4281
4282 2011-01-06 Joel Brobecker <brobecker@adacore.com>
4283
4284 * ada-tasks.c: Fix style violation in comment.
4285
4286 2011-01-06 Joel Brobecker <brobecker@adacore.com>
4287
4288 * linespec.c (decode_compound, find_method): Remove trailing \n
4289 at end of error string.
4290 * solib-irix.c (irix_current_sos): Likewise.
4291 * varobj.c (uninstall_variable): Likewise.
4292
4293 2011-01-06 Joel Brobecker <brobecker@adacore.com>
4294
4295 * copyright.py: New script.
4296 * copyright.sh (byhand): Add *.ads, *.adb, *.gpr and *.inc.
4297 Launch emacs without exec'ing. Call copyright.py afterwards.
4298
4299 2011-01-05 Michael Snyder <msnyder@vmware.com>
4300
4301 * addrmap.c: Shorten lines of >= 80 columns.
4302 * arch-utils.c: Ditto.
4303 * arch-utils.h: Ditto.
4304 * ax-gdb.c: Ditto.
4305 * ax-general.c: Ditto.
4306 * bcache.c: Ditto.
4307 * blockframe.c: Ditto.
4308 * breakpoint.c: Ditto.
4309 * buildsym.c: Ditto.
4310 * c-lang.c: Ditto.
4311 * c-typeprint.c: Ditto.
4312 * charset.c: Ditto.
4313 * coffread.c: Ditto.
4314 * command.h: Ditto.
4315 * corelow.c: Ditto.
4316 * cp-abi.c: Ditto.
4317 * cp-namespace.c: Ditto.
4318 * cp-support.c: Ditto.
4319 * dbug-rom.c: Ditto.
4320 * dbxread.c: Ditto.
4321 * defs.h: Ditto.
4322 * dfp.c: Ditto.
4323 * dfp.h: Ditto.
4324 * dictionary.c: Ditto.
4325 * disasm.c: Ditto.
4326 * doublest.c: Ditto.
4327 * dwarf2-frame.c: Ditto.
4328 * dwarf2expr.c: Ditto.
4329 * dwarf2loc.c: Ditto.
4330 * dwarf2read.c: Ditto.
4331 * elfread.c: Ditto.
4332 * eval.c: Ditto.
4333 * event-loop.c: Ditto.
4334 * event-loop.h: Ditto.
4335 * exceptions.h: Ditto.
4336 * exec.c: Ditto.
4337 * expprint.c: Ditto.
4338 * expression.h: Ditto.
4339 * f-lang.c: Ditto.
4340 * f-valprint.c: Ditto.
4341 * findcmd.c: Ditto.
4342 * frame-base.c: Ditto.
4343 * frame-unwind.c: Ditto.
4344 * frame-unwind.h: Ditto.
4345 * frame.c: Ditto.
4346 * frame.h: Ditto.
4347 * gcore.c: Ditto.
4348 * gdb-stabs.h: Ditto.
4349 * gdb_assert.h: Ditto.
4350 * gdb_dirent.h: Ditto.
4351 * gdb_obstack.h: Ditto.
4352 * gdbcore.h: Ditto.
4353 * gdbtypes.c: Ditto.
4354 * gdbtypes.h: Ditto.
4355 * inf-ttrace.c: Ditto.
4356 * infcall.c: Ditto.
4357 * infcmd.c: Ditto.
4358 * inflow.c: Ditto.
4359 * infrun.c: Ditto.
4360 * inline-frame.h: Ditto.
4361 * language.c: Ditto.
4362 * language.h: Ditto.
4363 * libunwind-frame.c: Ditto.
4364 * libunwind-frame.h: Ditto.
4365 * linespec.c: Ditto.
4366 * linux-nat.c: Ditto.
4367 * linux-nat.h: Ditto.
4368 * linux-thread-db.c: Ditto.
4369 * machoread.c: Ditto.
4370 * macroexp.c: Ditto.
4371 * macrotab.c: Ditto.
4372 * main.c: Ditto.
4373 * maint.c: Ditto.
4374 * mdebugread.c: Ditto.
4375 * memattr.c: Ditto.
4376 * minsyms.c: Ditto.
4377 * monitor.c: Ditto.
4378 * monitor.h: Ditto.
4379 * objfiles.c: Ditto.
4380 * objfiles.h: Ditto.
4381 * osabi.c: Ditto.
4382 * p-typeprint.c: Ditto.
4383 * p-valprint.c: Ditto.
4384 * parse.c: Ditto.
4385 * printcmd.c: Ditto.
4386 * proc-events.c: Ditto.
4387 * procfs.c: Ditto.
4388 * progspace.c: Ditto.
4389 * progspace.h: Ditto.
4390 * psympriv.h: Ditto.
4391 * psymtab.c: Ditto.
4392 * record.c: Ditto.
4393 * regcache.c: Ditto.
4394 * regcache.h: Ditto.
4395 * remote-fileio.c: Ditto.
4396 * remote.c: Ditto.
4397 * ser-mingw.c: Ditto.
4398 * ser-tcp.c: Ditto.
4399 * ser-unix.c: Ditto.
4400 * serial.c: Ditto.
4401 * serial.h: Ditto.
4402 * solib-frv.c: Ditto.
4403 * solib-irix.c: Ditto.
4404 * solib-osf.c: Ditto.
4405 * solib-pa64.c: Ditto.
4406 * solib-som.c: Ditto.
4407 * solib-sunos.c: Ditto.
4408 * solib-svr4.c: Ditto.
4409 * solib-target.c: Ditto.
4410 * solib.c: Ditto.
4411 * somread.c: Ditto.
4412 * source.c: Ditto.
4413 * stabsread.c: Ditto.
4414 * stabsread.c: Ditto.
4415 * stack.c: Ditto.
4416 * stack.h: Ditto.
4417 * symfile-mem.c: Ditto.
4418 * symfile.c: Ditto.
4419 * symfile.h: Ditto.
4420 * symmisc.c: Ditto.
4421 * symtab.c: Ditto.
4422 * symtab.h: Ditto.
4423 * target-descriptions.c: Ditto.
4424 * target-memory.c: Ditto.
4425 * target.c: Ditto.
4426 * target.h: Ditto.
4427 * terminal.h: Ditto.
4428 * thread.c: Ditto.
4429 * top.c: Ditto.
4430 * tracepoint.c: Ditto.
4431 * tracepoint.h: Ditto.
4432 * ui-file.c: Ditto.
4433 * ui-file.h: Ditto.
4434 * ui-out.h: Ditto.
4435 * user-regs.c: Ditto.
4436 * user-regs.h: Ditto.
4437 * utils.c: Ditto.
4438 * valarith.c: Ditto.
4439 * valops.c: Ditto.
4440 * valprint.c: Ditto.
4441 * valprint.h: Ditto.
4442 * value.c: Ditto.
4443 * varobj.c: Ditto.
4444 * varobj.h: Ditto.
4445 * vec.h: Ditto.
4446 * xcoffread.c: Ditto.
4447 * xcoffsolib.c: Ditto.
4448 * xcoffsolib.h: Ditto.
4449 * xml-syscall.c: Ditto.
4450 * xml-tdesc.c: Ditto.
4451
4452 2011-01-05 Michael Snyder <msnyder@vmware.com>
4453
4454 * cli/cli-cmds.c: Shorten lines of >= 80 columns.
4455 * cli/cli-decode.c: Ditto.
4456 * cli/cli-dump.c: Ditto.
4457 * cli/cli-logging.c: Ditto.
4458 * cli/cli-script.c: Ditto.
4459 * cli/cli-setshow.c: Ditto.
4460 * common/signals.c: Ditto.
4461 * mi/mi-cmd-break.c: Ditto.
4462 * mi/mi-cmd-disas.c: Ditto.
4463 * mi/mi-cmd-stack.c: Ditto.
4464 * mi/mi-cmd-var.c: Ditto.
4465 * mi/mi-cmds.c: Ditto.
4466 * mi/mi-common.h: Ditto.
4467 * mi/mi-console.c: Ditto.
4468 * mi/mi-interp.c: Ditto.
4469 * mi/mi-main.c: Ditto.
4470 * osf-share/cma_attr.c: Ditto.
4471 * osf-share/cma_deb_core.h: Ditto.
4472 * osf-share/cma_debug_client.h: Ditto.
4473 * osf-share/cma_handle.h: Ditto.
4474 * osf-share/cma_mutex.h: Ditto.
4475 * osf-share/cma_stack_int.h: Ditto.
4476 * osf-share/cma_tcb_defs.h: Ditto.
4477 * python/py-auto-load.c: Ditto.
4478 * python/py-breakpoint.c: Ditto.
4479 * python/py-cmd.c: Ditto.
4480 * python/py-frame.c: Ditto.
4481 * python/py-objfile.c: Ditto.
4482 * python/py-param.c: Ditto.
4483 * python/py-progspace.c: Ditto.
4484 * python/py-symbol.c: Ditto.
4485 * python/py-value.c: Ditto.
4486 * python/python-internal.h: Ditto.
4487 * python/python.c: Ditto.
4488 * tui/tui-data.c: Ditto.
4489 * tui/tui-disasm.c: Ditto.
4490 * tui/tui-hooks.c: Ditto.
4491 * tui/tui-io.c: Ditto.
4492 * tui/tui-layout.c: Ditto.
4493 * tui/tui-regs.c: Ditto.
4494 * tui/tui-source.c: Ditto.
4495 * tui/tui-stack.c: Ditto.
4496 * tui/tui-win.c: Ditto.
4497 * tui/tui-windata.c: Ditto.
4498 * tui/tui-winsource.c: Ditto.
4499
4500 2011-01-05 Joel Brobecker <brobecker@adacore.com>
4501
4502 * configure.ac, gdb.1: Copyright year update.
4503
4504 2011-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4505
4506 * frame.c (get_prev_frame_1) <UNWIND_INNER_ID>: New variables
4507 this_pc_in_block, morestack_msym and morestack_name. Check for
4508 "__morestack" minimal symbol there.
4509
4510 2011-01-03 Joel Brobecker <brobecker@adacore.com>
4511
4512 * symfile.c (find_sym_fns): Add call to dont_repeat.
4513
4514 2011-01-01 Joel Brobecker <brobecker@adacore.com>
4515
4516 Copyright year update in most files (performed by copyright.sh).
4517
4518 2011-01-01 Joel Brobecker <brobecker@adacore.com>
4519
4520 * top.c (print_gdb_version): Update copyright year in version output.
4521
4522 For older changes see ChangeLog-2010.
4523 \f
4524 Local Variables:
4525 mode: change-log
4526 left-margin: 8
4527 fill-column: 74
4528 version-control: never
4529 coding: utf-8
4530 End: