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