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