1458bbcd14d5973262eecf1b13b5165ccf3b0d99
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2011-10-11 Yao Qi <yao@codesourcery.com>
2
3 * arm-tdep.c (arm_get_next_pc_raw): Use read_memory_unsigned_integer
4 to get address.
5
6 2011-10-10 Doug Evans <dje@google.com>
7
8 * linux-thread-db.c (thread_db_new_objfile): Only try to load
9 libthread_db when we load libpthread or the main symbol file.
10 (thread_db_inferior_created): New function.
11 (_initialize_thread_db): Attach inferior_created observer.
12 * linux-nat.c (linux_child_post_attach): Remove call to
13 check_for_thread_db.
14 (linux_child_post_startup_inferior): Ditto.
15 * objfiles.h (OBJF_MAINLINE): Define.
16 * symfile.c (symbol_file_add_with_addrs_or_offsets): Pass it to
17 allocate_objfile when appropriate.
18
19 2011-10-10 Ulrich Weigand <ulrich.weigand@linaro.org>
20
21 PR gdb/13218
22 * arm-linux-nat.c (os_version, os_major, os_minor, os_release):
23 Remove unused variables.
24 (get_linux_version): Remove function.
25 (_initialize_arm_linux_nat): Do not call it.
26
27 2011-10-10 Pedro Alves <pedro@codesourcery.com>
28
29 * linux-nat.c (linux_handle_extended_wait): Don't resume the new
30 new clone lwp if the core asked it to stop. Don't pass on
31 unexpected signals to the new clone; leave them pending instead.
32
33 2011-10-10 Pedro Alves <pedro@codesourcery.com>
34
35 * linux-nat.c (resume_lwp): Remove redundant debug output.
36
37 2011-10-10 Pedro Alves <pedro@codesourcery.com>
38
39 * linux-nat.c (linux_nat_wait_1): Copy the event lwp's
40 last_resume_kind before clearing it, and use the copy instead to
41 determine whether to report a SIGSTOP as TARGET_SIGNAL_0. Use
42 resume_clear_callback in the non-stop path too.
43
44 2011-10-09 Yao Qi <yao@codesourcery.com>
45
46 * valprint.c (value_check_printable): Add one parameter OPTIONS.
47 Honor OPTIONS and VAL's type.
48 (common_val_print, value_print): Update to pass one more parameter.
49
50 2011-10-09 Doug Evans <dje@google.com>
51
52 Add new "alias" command.
53 * NEWS: Mention new command.
54 * command.h (valid_user_defined_cmd_name_p): Declare.
55 * defs.h (make_cleanup_dyn_string_delete): Declare.
56 * utils.c: #include "dyn-string.h".
57 (do_dyn_string_delete, make_cleanup_dyn_string_delete): New functions.
58 * cli/cli-cmds.c: #include "dyn-string.h".
59 (argv_to_dyn_string, valid_command_p, alias_command): New functions.
60 (init_cli_cmds): Add new command.
61 * cli/cli-decode.c (valid_user_defined_cmd_name_p): New function.
62
63 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
64
65 Fix compatibility with older GCCs.
66 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Initialize parameter.
67 * stack.c (read_frame_arg): Initialize val_deref.
68
69 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
70
71 Entry values NEWS entries, DWARF disassembly support.
72 * NEWS: New entry values entry.
73 (set print entry-values, show print entry-values)
74 (set debug entry-values, show debug entry-values): New entries.
75 * dwarf2loc.c (disassemble_dwarf_expression): New parameters start and
76 indent. Remove variable start. Move header printing out. Respect
77 INDENT. Support DW_OP_GNU_entry_value.
78 (locexpr_describe_location_1): Move the header printing here, extend
79 the disassemble_dwarf_expression passed parameters.
80
81 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
82
83 Display @entry parameter values even for references.
84 * ada-valprint.c (ada_val_print_1) <TYPE_CODE_REF>: Try also
85 coerce_ref_if_computed.
86 * c-valprint.c (c_val_print) <TYPE_CODE_REF>: Likewise.
87 * dwarf2expr.c (dwarf_block_to_dwarf_reg_deref): New function.
88 (execute_stack_op) <DW_OP_GNU_entry_value>: Add -1 deref_size to the
89 existing push_dwarf_reg_entry_value call. Add new detection calling
90 dwarf_block_to_dwarf_reg_deref. Update the error message.
91 (ctx_no_push_dwarf_reg_entry_value): New parameter deref_size.
92 * dwarf2expr.h
93 (struct dwarf_expr_context_funcs) <push_dwarf_reg_entry_value>: Add new
94 parameter deref_size, describe it in the comment.
95 (ctx_no_push_dwarf_reg_entry_value): Add new parameter deref_size.
96 (dwarf_block_to_dwarf_reg_deref): New declaration.
97 * dwarf2loc.c (dwarf_entry_parameter_to_value): Add new parameter
98 deref_size, describe it in the function comment. New variables
99 data_src and size, fetch the alternative block accoring to DEREF_SIZE.
100 (dwarf_expr_push_dwarf_reg_entry_value): Add new parameter deref_size,
101 describe it in the function comment. Fetch the alternative block
102 accoring to DEREF_SIZE.
103 (entry_data_value_coerce_ref, entry_data_value_copy_closure)
104 (entry_data_value_free_closure, entry_data_value_funcs): New.
105 (value_of_dwarf_reg_entry): New variables checked_type, target_type,
106 outer_val, target_val, val and addr. Try to fetch and create also
107 referenced value content.
108 (pieced_value_funcs): NULL value for coerce_ref.
109 (needs_dwarf_reg_entry_value): Add new parameter deref_size.
110 * f-valprint.c (f_val_print) <TYPE_CODE_REF>: Try also
111 coerce_ref_if_computed.
112 * opencl-lang.c (opencl_value_funcs): NULL value for coerce_ref.
113 * p-valprint.c (pascal_val_print) <TYPE_CODE_REF>: Likewise.
114 * stack.c (read_frame_arg): Compare also dereferenced values.
115 * value.c (value_computed_funcs): Make the parameter v const, use
116 value_lval_const for it.
117 (value_lval_const, coerce_ref_if_computed): New function.
118 (coerce_ref): New variable retval. Call also coerce_ref_if_computed.
119 * value.h (struct lval_funcs): New field coerce_ref.
120 (value_computed_funcs): Make the parameter v const.
121 (value_lval_const, coerce_ref_if_computed): New declarations.
122
123 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
124
125 Support @entry in input expressions.
126 * c-exp.y (ENTRY, unknown_cpp_name): New.
127 (exp: UNKNOWN_CPP_NAME): Change to `exp: unknown_cpp_name'.
128 (unknown_cpp_name: UNKNOWN_CPP_NAME, unknown_cpp_name: ENTRY)
129 (variable: name_not_typename '@' ENTRY, name: ENTRY)
130 (name_not_typename: ENTRY): New.
131 (yylex): Recognize ENTRY.
132 * eval.c (evaluate_subexp_standard): Support also OP_VAR_ENTRY_VALUE.
133 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
134 Likewise.
135 * parse.c (operator_length_standard): Likewise.
136 * std-operator.def: New operator OP_VAR_ENTRY_VALUE.
137
138 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
139
140 Display referenced values in backtraces.
141 * printcmd.c (print_variable_and_value): Set OPTS.DEREF_REF to 1.
142 * stack.c (print_frame_arg): Likewise.
143
144 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
145
146 Make some lval_funcs methods to default on NULL.
147 * valops.c (value_fetch_lazy): Check if lval_computed read method is
148 NULL.
149 (value_assign): Check if lval_computed write method is NULL.
150 * value.h (struct lval_funcs): Comment NULL values for read and write
151 methods.
152
153 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
154
155 Display @entry parameter values (without references).
156 * dwarf2expr.c (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset):
157 New functions.
158 * dwarf2expr.h (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset):
159 New declarations.
160 * dwarf2loc.c (dwarf2_find_location_expression): Support location list
161 entry record.
162 (dwarf_entry_parameter_to_value, value_of_dwarf_reg_entry)
163 (value_of_dwarf_block_entry, locexpr_read_variable_at_entry): New
164 functions.
165 (dwarf2_locexpr_funcs): Install locexpr_read_variable_at_entry.
166 (loclist_read_variable_at_entry): New function.
167 (dwarf2_loclist_funcs): Install loclist_read_variable_at_entry.
168 * dwarf2read.c (read_call_site_scope): Support also DW_OP_fbreg in
169 DW_AT_location, call dwarf_block_to_sp_offset for it.
170 * frame.h (print_entry_values_no, print_entry_values_only)
171 (print_entry_values_preferred, print_entry_values_if_needed)
172 (print_entry_values_both, print_entry_values_compact)
173 (print_entry_values_default, print_entry_values): New declarations.
174 (struct frame_arg): New field entry_kind.
175 (read_frame_arg): New parameter entryargp.
176 * mi/mi-cmd-stack.c (list_arg_or_local): New gdb_assert for
177 arg->entry_kind. Optionally print the `@entry' suffix.
178 (list_args_or_locals): New variable entryarg, initialize it.
179 Initialize also entry_kind of arg and entryarg. Conditionalize
180 list_arg_or_local for arg, add list_arg_or_local for entryarg. Call
181 xfree for entryarg.error.
182 * stack.c (print_entry_values_no, print_entry_values_only)
183 (print_entry_values_preferred, print_entry_values_if_needed)
184 (print_entry_values_both, print_entry_values_compact)
185 (print_entry_values_default, print_entry_values_choices)
186 (print_entry_values): New variables.
187 (print_frame_arg): New gdb_assert for arg->entry_kind. Optionally
188 print the `@entry' suffix, possibly in combination for
189 print_entry_values_compact.
190 (read_frame_arg): New parameter entryargp, new variables entryval,
191 entryval_error and val_equal. Read in also entryargp, respect
192 print_entry_values, compare the values using val_equal, fill in also
193 argp->entry_kind (together with entryargp->entry_kind).
194 (print_frame_args): New variable entryarg, initialize it.
195 Conditionalize print_frame_arg for arg, add print_frame_arg for
196 entryarg. Call xfree for entryarg.error.
197 (_initialize_stack): Call add_setshow_enum_cmd for `entry-values'.
198 * symtab.h (struct symbol_computed_ops): New field
199 read_variable_at_entry.
200
201 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
202
203 Code reshuffle.
204 * frame.h (struct frame_arg): New definition.
205 (read_frame_arg): New declaration.
206 * mi/mi-cmd-stack.c (list_arg_or_local): New functiom from ...
207 (list_args_or_locals): ... the code here. New variable arg, call
208 read_frame_arg and list_arg_or_local with it. Unify the
209 PRINT_SIMPLE_VALUES and PRINT_ALL_VALUES cases. Call xfree for
210 arg.error.
211 * stack.c (print_frame_arg): New functiom from the code of
212 print_frame_args.
213 (read_frame_arg): New function.
214 (print_frame_args): Remove variable val. New variable arg, call
215 read_frame_arg and print_frame_arg with it. Call xfree for arg.error.
216
217 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
218
219 Protect entry values against self tail calls.
220 * dwarf2loc.c (VEC (CORE_ADDR), func_verify_no_selftailcall): New.
221 (dwarf_expr_dwarf_reg_entry_value): Call func_verify_no_selftailcall.
222
223 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
224
225 Recognize virtual tail call frames.
226 * Makefile.in (SFILES): Add dwarf2-frame-tailcall.c.
227 (HFILES_NO_SRCDIR): Add dwarf2-frame-tailcall.h.
228 (COMMON_OBS): Add dwarf2-frame-tailcall.o.
229 * dwarf2-frame-tailcall.c: New file.
230 * dwarf2-frame-tailcall.h: New file.
231 * dwarf2-frame.c: Include dwarf2-frame-tailcall.h.
232 (execute_cfa_program): New function comment. Return INSN_PTR. Reset
233 REGS.PREV only after CIE execution.
234 (struct dwarf2_frame_cache): New field tailcall_cache.
235 (dwarf2_frame_cache): New variables entry_pc, entry_cfa_sp_offset,
236 entry_cfa_sp_offset_p and instr. Execute FDE instructions in two
237 parts, try to find entry_cfa_sp_offset. Call
238 dwarf2_tailcall_sniffer_first.
239 (dwarf2_frame_prev_register): Call dwarf2_tailcall_prev_register_first
240 when appropriate.
241 (dwarf2_frame_dealloc_cache): New function.
242 (dwarf2_frame_sniffer): Preinitialize cache by dwarf2_frame_cache.
243 (dwarf2_frame_unwind): Install dwarf2_frame_dealloc_cache.
244 (dwarf2_signal_frame_unwind): Do not install dwarf2_frame_dealloc_cache.
245 (dwarf2_append_unwinders): Add dwarf2_tailcall_frame_unwind.
246 (dwarf2_frame_cfa): Support also dwarf2_tailcall_frame_unwind.
247 * dwarf2loc.c (func_addr_to_tail_call_list)
248 (tailcall_dump, call_sitep, VEC (call_sitep), chain_candidate)
249 (call_site_find_chain_1, call_site_find_chain): New.
250 * dwarf2loc.h (struct call_site_chain): New.
251 (call_site_find_chain): New declaration.
252 * frame.c (get_frame_address_in_block): Support also TAILCALL_FRAME.
253 * frame.h (enum frame_type): New entry TAILCALL_FRAME.
254 * python/py-frame.c (gdbpy_initialize_frames): Add TAILCALL_FRAME.
255 * stack.c (frame_info): Support also TAILCALL_FRAME.
256
257 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
258
259 Tail call sites reader implementation.
260 * dwarf2read.c (read_call_site_scope): Recognize DW_AT_GNU_tail_call,
261 fill in TYPE_TAIL_CALL_LIST.
262 * gdbtypes.h (struct func_type): New field tail_call_list.
263 (struct call_site): New field tail_call_next.
264 (TYPE_TAIL_CALL_LIST): New definition.
265
266 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
267
268 Implement basic support for DW_TAG_GNU_call_site.
269 * block.c: Include gdbtypes.h and exceptions.h.
270 (call_site_for_pc): New function.
271 * block.h (call_site_for_pc): New declaration.
272 * defs.h: Include hashtab.h.
273 (make_cleanup_htab_delete, core_addr_hash, core_addr_eq): New
274 declarations.
275 * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Install
276 ctx_no_push_dwarf_reg_entry_value.
277 * dwarf2expr.c (read_uleb128, read_sleb128): Support R as NULL.
278 (dwarf_block_to_dwarf_reg): New function.
279 (execute_stack_op) <DW_OP_GNU_entry_value>: Implement it.
280 (ctx_no_push_dwarf_reg_entry_value): New function.
281 * dwarf2expr.h (struct dwarf_expr_context_funcs): New field
282 push_dwarf_reg_entry_value.
283 (ctx_no_push_dwarf_reg_entry_value, dwarf_block_to_dwarf_reg): New
284 declarations.
285 * dwarf2loc.c: Include gdbcmd.h.
286 (dwarf_expr_ctx_funcs): New forward declaration.
287 (entry_values_debug, show_entry_values_debug, call_site_to_target_addr)
288 (dwarf_expr_reg_to_entry_parameter)
289 (dwarf_expr_push_dwarf_reg_entry_value): New.
290 (dwarf_expr_ctx_funcs): Install dwarf_expr_push_dwarf_reg_entry_value.
291 (dwarf2_evaluate_loc_desc_full): Handle NO_ENTRY_VALUE_ERROR.
292 (needs_dwarf_reg_entry_value): New function.
293 (needs_frame_ctx_funcs): Install it.
294 (_initialize_dwarf2loc): New function.
295 * dwarf2loc.h (entry_values_debug): New declaration.
296 * dwarf2read.c (struct dwarf2_cu): New field call_site_htab.
297 (read_call_site_scope): New forward declaration.
298 (process_full_comp_unit): Copy call_site_htab.
299 (process_die): Support DW_TAG_GNU_call_site.
300 (read_call_site_scope): New function.
301 (dwarf2_get_pc_bounds): Support NULL HIGHPC.
302 (dwarf_tag_name): Support DW_TAG_GNU_call_site.
303 (cleanup_htab): Delete.
304 (write_psymtabs_to_index): Use make_cleanup_htab_delete instead of it.
305 * exceptions.h (enum errors): New NO_ENTRY_VALUE_ERROR.
306 * gdb-gdb.py (StructMainTypePrettyPrinter): Support
307 FIELD_LOC_KIND_DWARF_BLOCK.
308 * gdbtypes.h (enum field_loc_kind): New entry
309 FIELD_LOC_KIND_DWARF_BLOCK.
310 (struct main_type): New loc entry dwarf_block.
311 (struct call_site, FIELD_DWARF_BLOCK, SET_FIELD_DWARF_BLOCK)
312 (TYPE_FIELD_DWARF_BLOCK): New.
313 * python/py-type.c: Include dwarf2loc.h.
314 (check_types_equal): Support FIELD_LOC_KIND_DWARF_BLOCK. New
315 internal_error call on unknown FIELD_LOC_KIND.
316 * symtab.h (struct symtab): New field call_site_htab.
317 * utils.c (do_htab_delete_cleanup, make_cleanup_htab_delete)
318 (core_addr_hash, core_addr_eq): New functions.
319
320 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
321
322 Code reshuffle.
323 * gdb-gdb.py (StructMainTypePrettyPrinter): Change
324 TYPE_SPECIFIC_CALLING_CONVENTION to TYPE_SPECIFIC_FUNC. Move
325 calling_convention under func_stuff there.
326 * gdbtypes.c (make_function_type): Call INIT_FUNC_SPECIFIC.
327 (init_type) <TYPE_CODE_FUNC>: Likewise.
328 (recursive_dump_type): Change TYPE_SPECIFIC_CALLING_CONVENTION to
329 TYPE_SPECIFIC_FUNC. New comment for tail_call_list.
330 * gdbtypes.h (enum type_specific_kind): Change
331 TYPE_SPECIFIC_CALLING_CONVENTION to TYPE_SPECIFIC_FUNC.
332 (struct main_type) <type_specific>: Change calling_convention to
333 func_stuff. Move calling_convention to ...
334 (struct func_type): ... this new struct.
335 (INIT_FUNC_SPECIFIC): New #define.
336 (TYPE_CALLING_CONVENTION): Change calling_convention to func_stuff.
337
338 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
339
340 Fix DW_OP_GNU_implicit_pointer for DWARF32 v3+ on 64-bit arches.
341 * dwarf2-frame.c (execute_stack_op): Initialize ctx->ref_addr_size.
342 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_implicit_pointer>: Use
343 ctx->ref_addr_size. Handle its invalid value.
344 * dwarf2expr.h (struct dwarf_expr_context): New field ref_addr_size.
345 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
346 (dwarf2_loc_desc_needs_frame): Initialize ctx->ref_addr_size.
347 * dwarf2loc.h (dwarf2_per_cu_ref_addr_size): New declaration.
348 * dwarf2read.c (decode_locdesc): Initialize ctx->ref_addr_size.
349 (dwarf2_per_cu_ref_addr_size): New function.
350
351 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
352
353 Code cleanup.
354 * dwarf2read.c (per_cu_header_read_in): New function.
355 (dwarf2_per_cu_addr_size, dwarf2_per_cu_offset_size): Use it, with new
356 variables cu_header_local and cu_headerp.
357
358 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
359
360 Fix initial language detection with -readnow.
361 * dwarf2read.c (dw2_find_symbol_file): Handle OBJF_READNOW case.
362 * symfile.h (struct quick_symbol_functions): State find_symbol_file
363 searches only for global symbols.
364
365 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
366
367 Fix printed anonymous struct name.
368 * dwarf2read.c (fixup_partial_die): Handle for anonymous structs also
369 DW_TAG_interface_type. Strip for anonymous structs any prefixes.
370 (anonymous_struct_prefix): New function.
371 (determine_prefix): New variables retval. Call anonymous_struct_prefix.
372 (dwarf2_name): Strip for anonymous structs any prefixes.
373
374 2011-10-07 Doug Evans <dje@google.com>
375
376 * python/lib/gdb/printing.py (register_pretty_printer): New argument
377 `replace'.
378
379 * python/lib/gdb/printing.py: Whitespace cleanup.
380
381 * python/py-value.c (valpy_call): Initialize ftype to avoid compiler
382 warning.
383
384 2011-10-07 Pedro Alves <pedro@codesourcery.com>
385
386 * linux-nat.h (ALL_LWPS): Remove the ptid parameter.
387 * amd64-linux-nat.c (amd64_linux_dr_set_control)
388 (amd64_linux_dr_set_addr, amd64_linux_dr_unset_status): Adjust.
389 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint)
390 (arm_linux_remove_hw_breakpoint, arm_linux_insert_watchpoint)
391 (arm_linux_remove_watchpoint): Adjust.
392 * i386-linux-nat.c (i386_linux_dr_set_control)
393 (i386_linux_dr_set_addr, i386_linux_dr_unset_status): Adjust.
394 * ia64-linux-nat.c (ia64_linux_insert_watchpoint)
395 (ia64_linux_remove_watchpoint): Adjust.
396 * mips-linux-nat.c (write_watchpoint_regs): Adjust.
397 * ppc-linux-nat.c (ppc_linux_insert_hw_breakpoint)
398 (ppc_linux_insert_hw_breakpoint, ppc_linux_remove_hw_breakpoint)
399 (ppc_linux_insert_mask_watchpoint)
400 (ppc_linux_remove_mask_watchpoint, ppc_linux_insert_watchpoint)
401 (ppc_linux_remove_watchpoint): Adjust.
402 * s390-nat.c (s390_insert_watchpoint, s390_remove_watchpoint):
403 Adjust.
404
405 2011-10-07 Corinna Vinschen <vinschen@redhat.com>
406
407 * windows-nat.c: Include wchar.h to avoid compiler warnings.
408 (clear_win32_environment): New function for Cygwin to clear out
409 Win32 environment.
410 (windows_create_inferior): Prepare new environment from in_env
411 for Cygwin, too.
412
413 2011-10-07 Phil Muldoon <pmuldoon@redhat.com>
414
415 PR python/13264
416 * python/py-value.c (valpy_call): Check that arguments are
417 a tuple.
418 (is_intlike): Remove call to CHECK_TYPEDEF.
419 (valpy_nonzero): Catch GDB exceptions.
420 (valpy_absolute): Ditto.
421 (valpy_lazy_string): Ditto.
422 (valpy_call): Ditto.
423 (valpy_get_is_optimized_out): Ditto.
424 (valpy_long): Ditto.
425 (valpy_float): Ditto.
426 (valpy_int): Call CHECK_TYPEDEF. Catch GDB exceptions.
427 (valpy_richcompare): Ditto.
428
429 2011-10-07 Ulrich Weigand <ulrich.weigand@linaro.org>
430
431 * inferior.h (disable_randomization): Declare.
432 * infrun.c (disable_randomization): New global variable.
433 (show_disable_randomization): New function.
434 (set_disable_randomization): Likewise.
435 (_initialize_infrun): Install set/show disable-randomization
436 commands.
437 * linux-nat.c (disable_randomization): Remove.
438 (show_disable_randomization): Likewise.
439 (set_disable_randomization): Likewise.
440 (_initialize_linux_nat): No longer install set/show
441 disable-randomization commands here.
442 (linux_nat_supports_disable_randomization): New function.
443 (linux_nat_add_target): Install it.
444 * remote.c (PACKET_QDisableRandomization): New enum value.
445 (remote_protocol_packets): Support QDisableRandomization.
446 (_initialize_remote): Likewise.
447 (remote_supports_disable_randomization): New function.
448 (init_remote_ops): Install it.
449 (extended_remote_supports_disable_randomization): New function.
450 (init_extended_remote_ops): Install it.
451 (extended_remote_disable_randomization): New function.
452 (extended_remote_create_inferior_1): Call it.
453 * target.h (struct target_ops): Add to_supports_disable_randomization.
454 (target_supports_disable_randomization): Add prototype.
455 * target.c (target_supports_disable_randomization): New function.
456 (find_default_supports_disable_randomization): Likewise.
457 (init_dummy_target): Install it.
458
459 2011-10-07 Kevin Pouget <kevin.pouget@st.com>
460
461 Allow Python notification of new object-file loadings.
462 * Makefile.in (SUBDIR_PYTHON_SRCS): Add py-newobjfilevent.c.
463 (SUBDIR_PYTHON_OBS): Add py-newobjfileevent.o.
464 Add build rule for this file.
465 * python/py-event.h (emit_new_objfile_event): New prototype.
466 (newobjfile): New Python event emitter.
467 * python/py-evts.c (gdbpy_initialize_py_events): Add new_objfile to
468 Python event registry.
469 * python/py-inferior.c: Include objfiles.h
470 (python_new_objfile): New function.
471 (gdbpy_initialize_inferior): Add python_new_objfile to the new objfile
472 observers.
473 * python/py-newobjfileevent.c: New file.
474 * python-internal.h (gdbpy_initialize_new_objfile_event): New
475 prototype.
476 * python/python.c (_initialize_python): Add
477 gdbpy_initialize_new_objfile_event call.
478 * NEWS: Add item for new Python event "gdb.newobjfile"
479
480 2011-10-05 Tristan Gingold <gingold@adacore.com>
481
482 * ada-tasks.c (read_atcb): Make ravenscar_task_name static.
483 Extract the ravenscar task name from the symbol for the atcb.
484
485 2011-10-04 Paul Koning <paul_koning@dell.com>
486
487 * python/py-type.c (typy_make_iter): Add forward declaration.
488 (typy_fields_items): Use the gdb.Type iterator.
489
490 2011-10-04 Paul Koning <paul_koning@dell.com>
491
492 * NEWS: Add entry for Python gdb.Type mapping methods.
493
494 2011-10-04 Kevin Pouget <kevin.pouget@st.com>
495
496 PR python/12691: Add the inferior to Python exited event
497 * python/py-exitedevent.c (create_exited_event_object): Add inferior
498 to exited_event.
499 * python/py-event.h (emit_exited_event): Likewise
500 * python/-inferior.c (python_inferior_exit): Likewise
501
502 2011-10-03 Joel Brobecker <brobecker@adacore.com>
503
504 * ada-tasks.c (print_ada_task_info): Add "thread-id" field
505 in output of -ada-task-info GDB/MI command.
506
507 2011-10-03 Joel Brobecker <brobecker@adacore.com>
508
509 * ada-lang.h (struct inferior): Declare.
510 (print_ada_task_info): Add declaration.
511 * ada-tasks.c (print_ada_task_info): Make non-static.
512 * mi/mi-cmds.c (mi_cmds): Add "ada-task-info".
513 * mi/mi-cmds.h (mi_cmd_ada_task_info): Add declaration.
514 * mi/mi-main.c: #include "ada-lang.h".
515 (mi_cmd_list_features): Add "ada-task-info" to the list
516 of supported features.
517 (mi_cmd_ada_task_info): New function.
518
519 2011-10-03 Joel Brobecker <brobecker@adacore.com>
520
521 * python/python.c (python_run_simple_file): New function.
522 (source_python_script, source_python_script_for_objfile):
523 Replace call to PyRun_SimpleFile by call to
524 python_run_simple_file.
525
526 2011-10-03 Paul Koning <paul_koning@dell.com>
527
528 * python/py-value.c (valpy_get_address): Use Py_XINCREF.
529 (value_to_value_object): Fetch value if it was lazy.
530
531 2011-10-02 Jan Kratochvil <jan.kratochvil@redhat.com>
532
533 Code cleanup.
534 * solib-svr4.c (svr4_default_sos): Remove variables head and link_ptr.
535 Rearrange the code for it.
536
537 2011-10-02 Joel Brobecker <brobecker@adacore.com>
538
539 * breakpoint.c (bkpt_print_recreate): Add call to
540 print_recreate_thread.
541
542 2011-09-29 Mike Frysinger <vapier@gentoo.org>
543
544 * common/linux-ptrace.h (PTRACE_GETFDPIC, PTRACE_GETFDPIC_EXEC,
545 PTRACE_GETFDPIC_INTERP): Define.
546
547 2011-09-28 Yao Qi <yao@codesourcery.com>
548
549 * symfile.c (add_symbol_file_command): Update message on usage.
550
551 2011-09-28 Paul Koning <paul_koning@dell.com>
552
553 * python/py-type.c (make_fielditem, typy_field_names, typy_items)
554 (typy_length, typy_get, typy_has_key, typy_make_iter)
555 (typy_iterkeys, typy_iteritems, typy_itervalues, typy_iter)
556 (typy_iterator_iter, typy_iterator_iternext)
557 (typy_iterator_dealloc): New functions to implement standard
558 Python mapping methods on gdb.Type object.
559 (gdb.TypeIterator): New Python type.
560 * python/python-internal.h (gdbpy_iter_kind): New enum.
561
562 2011-09-28 David S. Miller <davem@davemloft.net>
563
564 * sparc-tdep.h (SPARC_F2_REGNUM, SPARC_F3_REGNUM, SPARC_F4_REGNUM,
565 SPARC_F5_REGNUM, SPARC_F6_REGNUM, SPARC_F7_REGNUM): New enums.
566 * sparc-tdep.c (sparc_complex_floating_p): New function.
567 (sparc32_store_arguments): Handle complex floats.
568 (sparc32_extract_return_value): Likewise.
569 (sparc32_store_return_value): Likewise.
570 (sparc32_stabs_argument_has_addr): Likewise.
571 * sparc64-tdep.c (sparc64_complex_floating_p): New function.
572 (sparc64_store_floating_fields): Handle complex floats.
573 (sparc64_store_arguments): Likewise.
574 (sparc64_store_return_value): Likewise.
575
576 2011-09-28 Eli Zaretskii <eliz@gnu.org>
577
578 * windows-nat.c (env_sort) [!__CYGWIN__]: Function restored from
579 before the change on 2006-12-09.
580 (windows_create_inferior) [!__CYGWIN__]: Restore code that
581 generates the environment block for CreateProcessA, modulo the
582 Cygwin-specific parts that are not needed here.
583
584 2011-09-27 Tristan Gingold <gingold@adacore.com>
585
586 * target.h (enum target_object): Add TARGET_OBJECT_DARWIN_DYLD_INFO.
587 * solib-darwin.c (DYLD_VERSION_MAX): Update number.
588 (darwin_solib_get_all_image_info_addr_at_init): New function.
589 (darwin_solib_read_all_image_info_addr): Likewise.
590 (darwin_solib_create_inferior_hook): Use the above two functions.
591 * darwin-nat.c (darwin_execvp): Renames retval to res.
592 (darwin_read_write_inferior): Update comment.
593 (darwin_read_dyld_info): New function.
594 (darwin_xfer_partial): Handle DYLD_INFO.
595
596 2011-09-27 Stan Shebs <stan@codesourcery.com>
597
598 Add return address collection for tracepoints.
599 * tracepoint.c (encode_actions_1): Add case for $_ret.
600 (validate_actionline): Check for $_ret.
601 (trace_dump_actions): Ditto.
602 * ax-gdb.h (gen_trace_for_return_address): Declare.
603 * ax-gdb.c: Include arch-utils.h.
604 (gen_trace_for_return_address): New function.
605 (agent_command): Add return address special case.
606 * amd64-tdep.c: Include ax.h and ax-gdb.h.
607 (amd64_gen_return_address): New function.
608 (amd64_init_abi): Call it.
609 * i386-tdep.c: Include ax.h and ax-gdb.h.
610 (i386_gen_return_address): New function.
611 (i386_init_abi): Call it.
612 * arch-utils.h (default_gen_return_address): Declare.
613 * arch-utils.c (default_gen_return_address): New function.
614 * gdbarch.sh (gen_return_address): New method.
615 * gdbarch.h, gdbarch.c: Regenerate.
616
617 2011-09-23 Joseph Myers <joseph@codesourcery.com>
618
619 PR gdb/13079
620 * i386-tdep.c (i386_frame_align): New.
621 (i386_gdbarch_init): Use i386_frame_align.
622
623 2011-09-23 Yao Qi <yao@codesourcery.com>
624
625 * i386-linux-nat.c (i386_linux_resume): Use read_memory_unsigned_integer
626 to get address.
627
628 2011-09-22 Tristan Gingold <gingold@adacore.com>
629
630 * fork-child.c (fork_inferior): Add exec_fun parameter.
631 Call exec_fun or execvp.
632 * inferior.h: Adjust prototype.
633 * gnu-nat.c (gnu_create_inferior): Adjust fork_inferior call.
634 * inf-ttrace.c (inf_ttrace_create_inferior): Ditto.
635 * inf-ptrace.c (inf_ptrace_create_inferior): Ditto.
636 * procfs.c (procfs_create_inferior): Ditto.
637 * darwin-nat.c (darwin_execvp): New function.
638 (darwin_create_inferior): Use it.
639
640 2011-09-22 Yao Qi <yao@codesourcery.com>
641
642 * infrun.c (context_switch): Print debug message when switching to
643 a different thread.
644
645 2011-09-21 Ulrich Weigand <uweigand@de.ibm.com>
646
647 * s390-tdep.c (s390_function_arg_pass_by_reference): Handle
648 complex and vector types.
649 (s390_return_value_convention): Likewise.
650
651 (s390_value_from_register): Call check_typedef.
652 (extend_simple_arg): Likewise.
653 (alignment_of): Likewise.
654 (s390_push_dummy_call): Likewise.
655 (s390_return_value): Likewise.
656
657 2011-09-21 Joseph Myers <joseph@codesourcery.com>
658
659 * event-top.c (async_disconnect): If an exception is thrown from
660 quit_cover, call pop_all_targets. Use TRY_CATCH instead of
661 catch_errors.
662 * top.c (quit_cover): Return void and take no arguments.
663 * top.h (quit_cover): Update prototype.
664
665 2011-09-20 Joseph Myers <joseph@codesourcery.com>
666
667 * mi/mi-main.c (mi_load_progress): Restore saved_uiout value to
668 current_uiout, not uiout.
669
670 2011-09-19 Doug Evans <dje@google.com>
671
672 * python/py-auto-load.c (source_section_scripts): Fix file
673 descriptor leak.
674 * python/python.c (source_python_script_for_objfile): Tweak comments.
675
676 2011-09-18 Yao Qi <yao@codesourcery.com>
677 Ulrich Weigand <ulrich.weigand@linaro.org>
678
679 Support displaced stepping for Thumb 16-bit insns.
680 * arm-tdep.c (THUMB_NOP) Define.
681 (thumb_copy_unmodified_16bit): New.
682 (thumb_copy_b, thumb_copy_bx_blx_reg): New.
683 (thumb_copy_alu_reg): New.
684 (arm_copy_svc): Move some common code to ...
685 (install_svc): ... here. New.
686 (thumb_copy_svc): New.
687 (install_pc_relative): New.
688 (thumb_copy_pc_relative_16bit): New.
689 (thumb_decode_pc_relative_16bit): New.
690 (thumb_copy_16bit_ldr_literal): New.
691 (thumb_copy_cbnz_cbz): New.
692 (cleanup_pop_pc_16bit_all): New.
693 (thumb_copy_pop_pc_16bit): New.
694 (thumb_process_displaced_16bit_insn): New.
695 (thumb_process_displaced_32bit_insn): New.
696 (thumb_process_displaced_insn): process thumb instruction.
697
698 Support displaced stepping for Thumb 32-bit insns.
699 * arm-tdep.c (thumb_copy_unmodified_32bit): New.
700 (thumb2_copy_preload): New.
701 (thumb2_copy_copro_load_store): New.
702 (thumb2_copy_b_bl_blx): New.
703 (thumb2_copy_alu_imm): New.
704 (thumb2_copy_load_reg_imm): New.
705 (thumb2_copy_load_literal): New
706 (thumb2_copy_block_xfer): New.
707 (thumb_32bit_copy_undef): New.
708 (thumb_32bit_copy_unpred): New.
709 (thumb2_decode_ext_reg_ld_st): New.
710 (thumb2_decode_svc_copro): New.
711 (decode_thumb_32bit_store_single_data_item): New.
712 (thumb_copy_pc_relative_32bit): New.
713 (thumb_decode_pc_relative_32bit): New.
714 (decode_thumb_32bit_ld_mem_hints): New.
715 (thumb2_copy_table_branch): New
716 (thumb_process_displaced_32bit_insn): Process Thumb 32-bit
717 instructions.
718
719 2011-09-18 Yao Qi <yao@codesourcery.com>
720
721 * arm-tdep.c (install_copro_load_store): PC is set 4-byte aligned.
722 (install_b_bl_blx): Likewise.
723
724 2011-09-17 Yao Qi <yao@codesourcery.com>
725
726 * arm-tdep.c (install_ldr_str_ldrb_strb): Renamed to ...
727 (install_load_store): ... this. New.
728 Change parameter BYTE to SIZE.
729 (arm_copy_ldr_str_ldrb_strb): Update caller.
730 (arm_decode_ld_st_word_ubyte): Update caller.
731
732 2011-09-17 Yao Qi <yao@codesourcery.com>
733
734 * infrun.c (displaced_step_fixup): Move some code ...
735 (displaced_step_restore): ... here. New function.
736 (handle_inferior_event): Cleanup displaced stepping state for both
737 child and parent when get forked or vforked event.
738 * regcache.c (get_thread_arch_aspace_regcache): New function.
739 get_thread_arch_regcache (): Call it.
740
741 2011-09-16 Joel Brobecker <brobecker@adacore.com>
742
743 * ada-tasks.c (print_ada_task_info): New function, merging
744 short_task_info and info_tasks together. Reimplement using
745 ui-out instead of printing to stdout directly. Move the code
746 building and checking the task list here, instead of leaving it
747 in info_tasks_command.
748 (info_task): Move the code building and checking the task
749 list here, instead of leaving it in info_tasks_command.
750 (info_tasks_command): Delete code building and checking
751 the task list - moved elsewhere. Update calls to info_tasks
752 and info_task.
753
754 2011-09-16 Joel Brobecker <brobecker@adacore.com>
755
756 * ada-tasks.c (info_task): Delete parameter `from_tty'.
757
758 2011-09-16 Joel Brobecker <brobecker@adacore.com>
759
760 * ada-tasks.c (info_tasks): Delete parameter `from_tty'.
761
762 2011-09-16 Joel Brobecker <brobecker@adacore.com>
763
764 * ada-lang.h (ada_build_task_list): Remove parameter
765 `warn_if_null'.
766 * ada-tasks.c (ada_build_task_list): Remove parameter
767 `warn_if_null'. Adjust implementation and documentation.
768 (valid_task_id, ada_get_environment_task)
769 iterate_over_live_ada_tasks): Adjust call to ada_build_task_list.
770 (info_tasks_command): Adjust implementation.
771 (task_command): Likewise.
772 * ravenscar-thread.c (ravenscar_find_new_threads): Fix call
773 to ada_build_task_list.
774
775 2011-09-16 Joel Brobecker <brobecker@adacore.com>
776
777 * ada-tasks.c (ada_tasks_check_symbol_table, task_list): Delete.
778 (enum ada_known_tasks_kind, struct ada_tasks_inferior_data): New.
779 (ada_tasks_inferior_data_handle): New static global.
780 (get_ada_tasks_inferior_data): New function.
781 (ada_get_task_number, get_task_number_from_id, valid_task_id)
782 (ada_get_environment_task, iterate_over_live_ada_tasks)
783 (add_ada_task, read_known_tasks_array, read_known_tasks_list):
784 Adjust.
785 (ada_set_current_inferior_known_tasks_addr): New function.
786 (read_known_tasks, ada_build_task_list, short_task_info)
787 (info_tasks, info_task, info_tasks_command, task_command_1)
788 (task_command, ada_task_list_changed): Adjust.
789 (ada_tasks_invalidate_inferior_data): New function.
790 (ada_normal_stop_observer, ada_new_objfile_observer): Adjust.
791 (_initialize_tasks): Set ada_tasks_inferior_data_handle.
792 * ada-lang.h (struct inferior): Add declaration.
793 (ada_task_list_changed): Update profile.
794 * remote-wtx-pd.c: #include "inferior.h".
795 (switch_to_pd_internal): Update call to ada_task_list_changed.
796
797 2011-09-16 Joel Brobecker <brobecker@adacore.com>
798
799 * ada-tasks.c: #include "progspace.h" and "objfiles.h".
800 (atcb_type, atcb_common_type, atcb_ll_type, atcb_call_type)
801 (atcb_fieldno): Delete these static globals.
802 (struct ada_tasks_pspace_data): New struct.
803 (ada_tasks_pspace_data_handle): New static global.
804 (get_ada_tasks_pspace_data): New function.
805 (ada_tasks_invalidate_pspace_data): New function.
806 (get_tcb_types_info, ptid_from_atcb_common, read_atcb)
807 (read_known_tasks_list, ada_new_objfile_observer): Adjust.
808 (_initialize_tasks): Create this module's per-progspace
809 data handle.
810
811 2011-09-16 Joel Brobecker <brobecker@adacore.com>
812
813 * ada-tasks.c (struct atcb_fieldnos): Renames struct tcb_fieldnos.
814
815 2011-09-16 Tristan Gingold <gingold@adacore.com>
816
817 * fork-child.c (fork_inferior): Update comment. Use alloca
818 instead of xmalloc for argv. Move len and shell_command
819 declarations in the block where they are used.
820 Only call execvp. Factorize failure code.
821
822 2011-09-16 Abhijit Halder <abhijit.k.halder@gmail.com>
823
824 Code cleanup.
825 * parse.c (write_exp_elt): Change argument to pass a pointer of union
826 `exp_element' instead of an element of the same and make the function
827 static.
828 (write_exp_elt_opcode, write_exp_elt_sym, write_exp_elt_block)
829 (write_exp_elt_objfile, write_exp_elt_longcst, write_exp_elt_dblcst)
830 (write_exp_elt_decfloatcst, write_exp_elt_type, write_exp_elt_intern):
831 Change argument of `write_exp_elt' function call.
832 Remove extra spaces from comments.
833 * parser-defs.h (write_exp_elt): Remove prototype.
834
835 2011-09-15 Paul Koning <paul_koning@dell.com>
836
837 * python/py-cmd.c (gdbpy_string_to_argv): Decrement reference
838 count of item appended to list.
839 * python/py-type.c (typy_fields): Likewise.
840
841 2011-09-15 Paul Koning <paul_koning@dell.com>
842
843 * MAINTAINERS (Write After Approval): Add myself to the list.
844
845 2011-09-15 Kevin Pouget <kevin.pouget@st.com>
846
847 PR threads/12628
848 * linux-fork.c (checkpoint_command): Disallow checkpointing of
849 processes with multiple threads.
850 (inf_has_multiple_thread_cb): New function.
851 (inf_has_multiple_threads): New function.
852
853 2011-09-15 Kevin Pouget <kevin.pouget@st.com>
854
855 PR Python/12692 Add gdb.selected_inferior() to Python interface.
856 * python/py-inferior.c (GdbMethods): New Python method definition.
857
858 2011-09-15 Kevin Pouget <kevin.pouget@st.com>
859
860 Handle multiple breakpoint hits in Python interface:
861 * python/py-bpevent.c (create_breakpoint_event_object): Rename C/Python
862 variable to breakpoints.
863 * python/py-stopevent.c (emit_stop_event): Return a Python tuple of
864 bps instead of single breakpoint. Fix some space typos.
865 * python/py-stopevent.c (create_breakpoint_event_object): Rename
866 variable to breakpoints.
867
868 2011-09-15 Kevin Pouget <kevin.pouget@st.com>
869
870 * breakpoint.c (describe_other_breakpoints): Do not write 'duplicate'
871 note if the breakpoint is internal.
872
873 2011-09-15 Kevin Pouget <kevin.pouget@st.com>
874
875 * MAINTAINERS (Write After Approval): Add myself to the list
876
877 2011-09-14 Pedro Alves <pedro@codesourcery.com>
878
879 * infrun.c (prepare_for_detach, wait_for_inferior)
880 (fetch_inferior_event): Don't flush the register cache.
881 * remote.c (struct stop_reply) <regcache>: Add comment.
882
883 2011-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
884
885 Remove excessive DWARF expressions memory duplication.
886 * dwarf2loc.c (per_cu_dwarf_call): Remove variable back_to and its use
887 for block.data.
888 (indirect_pieced_value): Remove variable result. Remove variable
889 back_to and its use for baton.data.
890 (dwarf2_compile_expr_to_ax): Remove variable back_to and its use for
891 block.data.
892 * dwarf2read.c (dwarf2_fetch_die_location_block): Remove xmemdup.
893 Update the function comment.
894
895 2011-09-13 Pedro Alves <pedro@codesourcery.com>
896
897 * inferior.h (ALL_INFERIORS): New.
898 * linux-thread-db.c (thread_db_find_new_threads_2): Remove check
899 for a stopped thread.
900 (thread_db_find_new_threads): Look for threads in all inferiors.
901
902 2011-09-13 Pedro Alves <pedro@codesourcery.com>
903
904 * breakpoint.c (update_watchpoint): Handle the case of the
905 watchpoint to update not being in the breakpoint list yet.
906 (hw_watchpoint_use_count): New, factored out from
907 hw_watchpoint_used_count.
908 (hw_watchpoint_used_count): Rename to ...
909 (hw_watchpoint_used_count_others): ... this. Add `except'
910 parameter. Don't count resources of `except'. Use
911 hw_watchpoint_use_count.
912
913 2011-09-13 Pedro Alves <pedro@codesourcery.com>
914
915 * gdbthread.h (enum thread_state): Moved here.
916 (struct thread_info): Rename `executing_' field to `executing' and
917 `state_' to `state'.
918 * thread.c (enum thread_state): Moved to gdbthread.h.
919 (new_thread, add_thread_silent, delete_thread_1)
920 (any_live_thread_of_process, thread_alive, set_running)
921 (set_running, is_thread_state, any_running, is_executing)
922 (set_executing, finish_thread_state, print_thread_info)
923 (do_captured_thread_select): Adjust.
924
925 2011-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
926
927 Fix compatibility with gcc < 4.3 and non-gcc compilers.
928 * amd64-tdep.c (amd64_skip_xmm_prologue): Convert 0b constants.
929
930 2011-09-12 Pedro Alves <pedro@codesourcery.com>
931 Matt Rice <ratmice@gmail.com>
932
933 PR gdb/13175
934
935 * interps.c (struct interp) <interpreter_out>: Delete field.
936 (interp_new): Remove the data and uiout parameters and adjust.
937 (interp_set): Only set the current_uiout from the interpreter's
938 uiout after initializing the interpreter. Adjust call to
939 init_proc.
940 (interp_ui_out): Adjust to call procs->ui_out_proc.
941 (interp_data, interp_name): New.
942 * interps.h (interp_init_ftype): Add `self' parameter.
943 (interp_ui_out_ftype): New typedef.
944 (struct interp_procs) <ui_out_proc>: New method pointer.
945 (interp_new): Remove the data and uiout parameters.
946 (interp_data, interp_name): Declare.
947 * tui/tui-interp.c (tui_init): Adjust prototype.
948 (tui_ui_out): New.
949 (_initialize_tui_interp): Install tui_ui_out. Don't instanciate
950 tui_out here. Adjust call to interp_new.
951 * tui/tui-io.c (tui_initialize_io): Don't set current_uiout here.
952 * cli/cli-interp.c (cli_interpreter_init): Adjust prototype.
953 (cli_ui_out): New.
954 (_initialize_cli_interp): Install it. Adjust call to interp_new.
955 * mi/mi-common.h (struct mi_interp) <uiout>: New field.
956 * mi/mi-interp.c (mi_interpreter_init): Adjust prototype.
957 Initialize mi->uiout depending on the mi_version as extracted from
958 the interpreter's name.
959 (mi_ui_out): New.
960 (_initialize_mi_interp): Install mi_ui_out. Adjust calls to
961 interp_new. Don't allocate the ui_out's of the interpreters here.
962
963 2011-09-12 Aleksandar Ristovski <aristovski@qnx.com>
964
965 * solib.c (solib_used): New function.
966 (update_solib_list, reload_shared_libraries_1): Check if objfile is used
967 by another so_list object before freeing it.
968
969 2011-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
970
971 Code cleanup.
972 * mi/mi-cmd-stack.c (list_args_or_locals): Use enum for the parameter
973 values.
974
975 2011-09-09 Jan Kratochvil <jan.kratochvil@redhat.com>
976
977 Code cleanup.
978 * amd64-tdep.c (amd64_skip_prologue): Move the XMM code to ...
979 (amd64_skip_xmm_prologue): ... this new function. Describe its
980 parameters. No longer use amd64_prologue_line_bug.
981 * defs.h (producer_is_gcc_ge_4): New declaration.
982 * dwarf2read.c (producer_is_gcc_ge_4): Move to utils.c.
983 (process_full_comp_unit): Update its caller. Remove
984 amd64_prologue_line_bug initialization.
985 * symtab.h (struct symtab): Remove field amd64_prologue_line_bug.
986 * utils.c (producer_is_gcc_ge_4): Moved here from dwarf2read.c.
987
988 2011-09-09 Pedro Alves <pedro@codesourcery.com>
989
990 * linux-nat.h (enum resume_kind): New.
991 (struct lwp_info) <last_resume_kind>: New field.
992 * linux-nat.c (linux_child_follow_fork): Set last_resume_kind to
993 resume_stop on the new lwp.
994 (add_lwp): Set last_resume_kind as resume_continue by default.
995 (lin_lwp_attach_lwp): Set last_resume_kind as resume_stop.
996 (resume_lwp): New, factored out from resume_callback. Also check
997 for pending status in lp->waitstatus.
998 (resume_callback): Reimplement.
999 (resume_clear_callback): Set last_resume_kind as resume_stop.
1000 (resume_set_callback): Set last_resume_kind as resume_continue.
1001 (linux_nat_resume, linux_handle_extended_wait): Set
1002 last_resume_kind.
1003 (running_callback): Also check lp->waitstatus for pending events.
1004 (select_singlestep_lwp_callback): Check that lp->last_resume_kind
1005 is resume_step.
1006 (stop_and_resume_callback): Don't re-resume if the core wanted the
1007 lwp stopped. Use resume_lwp instead of resume_callback. Avoid
1008 using an invalidated pointer.
1009 (linux_nat_filter_event): Don't discard SIGSTOPs as delayed
1010 SIGSTOPs if the core wanted the LWP to stop.
1011 (linux_nat_wait_1) Don't consume a pending SIGSTOP if the core
1012 wanted the lwp to stop. If the core wanted the lwp to stop, and
1013 the lwp stopped with a SIGSTOP, report a TARGET_SIGNAL_0 instead
1014 of TARGET_SIGNAL_STOP.
1015 (linux_nat_stop_lwp): Don't synchronously wait for the lwp to stop
1016 here. Instead, signal the lwp, and set the last_resume_kind to
1017 resume_stop.
1018
1019 2011-09-09 Pedro Alves <pedro@codesourcery.com>
1020
1021 * linux-nat.c (lin_lwp_attach_lwp): Return 1 (ignore) instead of
1022 -1 (error), if the lwp exits right after attaching.
1023
1024 2011-09-08 Doug Evans <dje@google.com>
1025
1026 * py-cmd.c: Some minor formatting fixes.
1027 (gdbpy_parse_command_name): Rename text arg to name, make const.
1028 All callers updated.
1029 * python-internal.h (gdbpy_parse_command_name): Update.
1030
1031 * cli/cli-decode.c (add_cmd): Add comment.
1032
1033 2011-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1034
1035 PR breakpoints/12435
1036 * amd64-tdep.c (amd64_skip_prologue): New variables start_pc_sal,
1037 next_sal, buf, offset and xmmreg. Advance PC if it sees the PR.
1038 * dwarf2read.c (process_full_comp_unit): Initialize
1039 amd64_prologue_line_bug.
1040 * symtab.h (struct symtab): New field amd64_prologue_line_bug.
1041
1042 2011-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1043
1044 Fix TUI screen corruption.
1045 * utils.c (fputs_maybe_filtered): Replace !input_from_terminal_p by
1046 batch_flag.
1047
1048 2011-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1049
1050 * findvar.c (read_var_value): Never return NULL, throw an error
1051 instead. Update the function comment. State symbol name in the error
1052 messages.
1053 * python/py-frame.c (frapy_read_var): Remove handling of NULL from
1054 read_var_value.
1055 * stack.c (print_frame_args): Likewise.
1056 * valops.c (value_of_variable): Likewise.
1057
1058 2011-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1059
1060 * stack.c (print_frame_args): New variable except. Wrap
1061 read_var_value and common_val_print into TRY_CATCH.
1062
1063 2011-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1064
1065 * eval.c (evaluate_subexp_standard) <OP_THIS>: Update the value_of_this
1066 caller to value_of_this.
1067 * p-exp.y: Update the value_of_this caller to value_of_this_silent.
1068 Twice.
1069 * valops.c (value_of_this): Remove parameter complain and variable ret.
1070 Update function comment. Never return NULL by this code.
1071 (value_of_this_silent): New function.
1072 * value.h (value_of_this): Remove parameter complain.
1073 (value_of_this_silent): New declaration.
1074
1075 2011-09-07 Yao Qi <yao@codesourcery.com>
1076
1077 * gdbthread.h (struct thread_info): Remove fields
1078 `stepping_through_solib_after_catch' and
1079 `stepping_through_solib_catchpoints'.
1080 * infrun.c (init_thread_stepping_state): Update.
1081 (process_event_stop_test, currently_stepping): Update.
1082 (currently_stepping_or_nexting_callback): Update.
1083
1084 2011-09-07 Yao Qi <yao@codesourcery.com>
1085
1086 * gdbthread.h (struct thread_info): Comment on field
1087 `step_after_step_resume_breakpoint'.
1088
1089 2011-09-07 Abhijit Halder <abhijit.k.halder@gmail.com>
1090
1091 * remote.c (remote_console_output): Reindent.
1092
1093 2011-09-06 Luis Machado <lgustavo@codesourcery.com>
1094
1095 * frame.c (has_stack_frames): Check for currently selected
1096 traceframe.
1097
1098 2011-09-06 Pedro Alves <pedro@codesourcery.com>
1099
1100 * event-top.h (MAXPROMPTS, struct prompts): Delete.
1101 (set_async_annotation_level, set_async_prompt, pop_prompt)
1102 (push_prompt, new_async_prompt): Delete declarations.
1103 * top.h (get_prompt, set_prompt): Change prototype.
1104 (get_prefix, set_prefix, get_suffix, set_suffix): Delete
1105 declarations.
1106 * top.c (command_loop):
1107 (top_prompt): New global.
1108 (get_prefix, set_prefix, get_suffix, ): Delete.
1109 (get_prompt, set_prompt): Rewrite.
1110 (show_new_async_prompt): Rename to ...
1111 (show_prompt): ... this.
1112 (init_main): Adjust. Don't handle --annotate=2 here.
1113 * event-top.c (new_async_prompt): Delete.
1114 (the_prompts): Delete.
1115 (more_to_come): Make static.
1116 (display_gdb_prompt): Use top_level_prompt() to compute the top
1117 level prompt, and don't notify the before_prompt observers
1118 directly here. Always trick readline into not trying to display
1119 the prompt if sync_execution and displaying the primary prompt.
1120 If displaying a local/secondary prompt, always show it, even if
1121 sync_execution is set.
1122 (change_annotation_level): Delete.
1123 (top_level_prompt): New, based on change_annotation_level.
1124 (push_prompt, pop_prompt): Delete.
1125 (async_disable_stdin): No longer pushes prompt.
1126 (command_line_handler): No longer pushes or pops prompt. If more
1127 input is expected, call display_gdb_prompt with an explicit empty
1128 prompt.
1129 (async_stop_sig): Adjust.
1130 (set_async_annotation_level, set_async_prompt): Delete.
1131 * python/python.c (before_prompt_hook): Adjust.
1132
1133 2011-09-05 Pedro Alves <pedro@codesourcery.com>
1134
1135 PR cli/13110
1136
1137 * infrun.c (fetch_inferior_event): Check if there's a selected
1138 thread before checking if the selected thread is executing.
1139
1140 2011-09-05 Pedro Alves <pedro@codesourcery.com>
1141
1142 * inf-loop.c (execute_command): Don't check if the current thread
1143 if running before synchronously waiting for command completion.
1144 * infrun.c (fetch_inferior_event): Handle "set exec-done-display"
1145 here.
1146 (normal_stop): Call async_enable_stdin here.
1147 * inf-loop.c (inferior_event_handler): Don't call
1148 async_enable_stdin, nor handle "set exec-done-display" here.
1149
1150 2011-09-04 Joel Brobecker <brobecker@adacore.com>
1151
1152 GDB 7.3.1 released.
1153
1154 2011-09-04 Joel Brobecker <brobecker@adacore.com>
1155
1156 * NEWS: Change `7.3' into `7.3.1' in `Changes since GDB 7.3'.
1157
1158 2011-09-04 Joel Brobecker <brobecker@adacore.com>
1159
1160 * NEWS: Add entry for OpenBSD/NetBSD build failure.
1161
1162 2011-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1163
1164 * config/s390/s390.mh (NATDEPFILES): Add linux-procfs.o dependency.
1165
1166 2011-09-02 Matt Rice <ratmice@gmail.com>
1167
1168 PR gdb/10720
1169 * event-top.c (cli_command_loop): Replace readline setup with
1170 direct call to display_gdb_prompt.
1171 (display_gdb_prompt): Do not call observer mechanism during
1172 synchronous execution.
1173
1174 2011-09-02 Pedro Alves <pedro@codesourcery.com>
1175
1176 * linux-nat.c (in_pid_list_p): New.
1177 (linux_record_stopped_pid): Delete.
1178 (lin_lwp_attach_lwp): Check if PTRACE_ATTACH failed because we're
1179 already attached to the LWP. Return an indication if so.
1180 (linux_nat_filter_event): Adjust.
1181 * linux-thread-db.c (attach_thread): Handle lin_lwp_attach_lwp
1182 returning an indication to ignore this thread.
1183
1184 2011-09-02 Pedro Alves <pedro@codesourcery.com>
1185
1186 * top.c: Include interps.h.
1187 (execute_command): If the target can async, but the interpreter is
1188 in sync mode, synchronously wait for the command to finish before
1189 returning.
1190 (execute_command_to_string): Force the interpreter to sync mode.
1191 * infrun.c: Include interps.h.
1192 (fetch_inferior_event): Don't restore the prompt yet if the
1193 interpreter is in sync mode.
1194 * interps.c (interpreter_async): New global.
1195 * interps.h (interpreter_async): Declare.
1196 * inf-loop.c: Include interps.h.
1197 (inferior_event_handler): Don't print the language change or run
1198 breakpoint commands yet if the interpreter in is sync mode.
1199 * main.c (captured_command_loop): Flip the interpreter to async
1200 mode.
1201 * cli/cli-script.c: Include interps.h.
1202 (execute_user_command, while_command, if_command): Force the
1203 interpreter to sync mode.
1204 * python/python.c: Include interps.h.
1205 (python_command, execute_gdb_command): Force the interpreter to
1206 sync mode.
1207
1208 2011-09-02 Pedro Alves <pedro@codesourcery.com>
1209
1210 * value.c (show_convenience): Catch errors thrown while printing
1211 each internal variable.
1212 * infrun.c (validate_siginfo_access): New function.
1213 (siginfo_value_read, siginfo_value_write): Call it.
1214
1215 2011-09-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1216
1217 Revert:
1218 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
1219 * dwarf2read.c (new_symbol): Handle DW_AT_variable_parameter
1220 attribute.
1221
1222 2011-08-29 Yao Qi <yao@codesourcery.com>
1223
1224 * solib-dsbt.c (bfd_lookup_symbol): Removed.
1225 (cmp_name): New.
1226 (enable_break2): Update caller.
1227 * solib-frv.c (bfd_lookup_symbol): Removed.
1228 (cmp_name): New.
1229 (enable_break2): Update caller.
1230 * solib-pa64.c (bfd_lookup_symbol): Removed.
1231 (cmp_name): New.
1232 * solib-svr4.c (bfd_lookup_symbol): Removed.
1233 (cmp_name_and_sec_flags): New.
1234 (enable_break): Update caller.
1235 * solib.c (gdb_bfd_lookup_symbol_from_symtab): New.
1236 (gdb_bfd_lookup_symbol_from_dyn_symtab): New.
1237 (gdb_bfd_lookup_symbol): New.
1238 * solib.h: Functions declarations.
1239
1240 2011-08-29 Yao Qi <yao@codesourcery.com>
1241
1242 * Makefile.in (ALL_TARGET_OBS): Add tic6x-tdep.o tic6x-linux-tdep.o
1243 and solib-dsbt.o.
1244
1245 2011-08-29 Jan Kratochvil <jan.kratochvil@redhat.com>
1246
1247 Fix TUI stepi on code without symbols.
1248 * tui/tui-stack.c (tui_show_frame_info): Remove error, set LOW for
1249 current PC instead.
1250
1251 2011-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1252
1253 Code cleanup.
1254 * mi/mi-cmd-stack.c (list_args_or_locals): Remove stb initialization
1255 and the static keyword.
1256 * mi/mi-cmd-target.c (mi_cmd_target_file_get, mi_cmd_target_file_put):
1257 Make prefix an array.
1258 * mi/mi-cmd-target.c (mi_cmd_target_file_delete): Likewise.
1259 * mi/mi-main.c (get_register): Remove stb initialization and the static
1260 keyword.
1261
1262 2011-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1263
1264 Code cleanup - make mi_opt const.
1265 * mi/mi-cmd-break.c (mi_cmd_break_insert, mi_cmd_break_watch): Make
1266 opts const.
1267 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
1268 * mi/mi-cmd-env.c (mi_cmd_env_path): Likewise.
1269 (mi_cmd_env_dir): Likewise.
1270 * mi/mi-cmd-target.c (mi_cmd_target_file_get): Likewise.
1271 (mi_cmd_target_file_put): Likewise.
1272 * mi/mi-cmd-target.c (mi_cmd_target_file_delete): Likewise.
1273 * mi/mi-cmd-var.c (mi_cmd_var_evaluate_expression): Likewise.
1274 * mi/mi-getopt.c (mi_getopt): Make opts and opt const.
1275 (mi_valid_noargs): Make opts const.
1276 * mi/mi-getopt.h (mi_getopt): Make opts and opt const.
1277 * mi/mi-main.c (mi_cmd_list_thread_groups): Make opts const.
1278 (mi_cmd_data_read_memory): Likewise.
1279 (mi_cmd_data_read_memory_bytes): Likewise.
1280 (mi_cmd_data_write_memory): Likewise.
1281
1282 2011-08-26 Matt Rice <ratmice@gmail.com>
1283
1284 * solib-sunos.c (allocate_rt_common_objfile): Add missing arguments to
1285 bcache_xmalloc, replace bcache_xmalloc with call to
1286 psymbol_bcache_init for psymbol_cache.
1287 * symfile.c (reread_symbols): Remove extra calls to bcache_xmalloc.
1288
1289 2011-08-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1290
1291 * inf-loop.c (inferior_event_handler): Add exception_print in
1292 INF_EXEC_COMPLETE.
1293
1294 2011-08-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1295
1296 * breakpoint.c (bpstat_do_actions): New variable cleanup_if_error, call
1297 make_bpstat_clear_actions_cleanup and discard_cleanups for it.
1298 * defs.h (make_bpstat_clear_actions_cleanup): New declaration.
1299 * exceptions.c (throw_exception): Remove the bpstat_clear_actions call.
1300 * inf-loop.c (inferior_event_handler): New variable cleanup_if_error,
1301 call make_bpstat_clear_actions_cleanup and discard_cleanups for it.
1302 Call bpstat_clear_actions for failed fetch_inferior_event_wrapper.
1303 * infrun.c (fetch_inferior_event): Call
1304 make_bpstat_clear_actions_cleanup.
1305 * top.c (execute_command): New variable cleanup_if_error, call
1306 make_bpstat_clear_actions_cleanup and discard_cleanups for it.
1307 * utils.c (do_bpstat_clear_actions_cleanup)
1308 (make_bpstat_clear_actions_cleanup): New functions.
1309
1310 2011-08-26 Pedro Alves <pedro@codesourcery.com>
1311
1312 * linux-nat.c (linux_child_follow_fork): Don't set lp->resumed on
1313 either the parent or the child forks. Rename a couple locals.
1314
1315 2011-08-26 Pedro Alves <pedro@codesourcery.com>
1316
1317 * linux-nat.c (wait_lwp): Avoid assuming errno is preserved by a
1318 library call. Avoid reading the `status' local if all waitpid
1319 calls failed.
1320
1321 2011-08-26 Pedro Alves <pedro@codesourcery.com>
1322
1323 * common/linux-osdata.c (get_cores_used_by_process): Don't assume
1324 opening /proc/PID/task always succeeds.
1325
1326 2011-08-26 Aleksandar Ristovski <aristovski@qnx.com>
1327
1328 * linespec.c (symtab_from_filename): Check for the end of string.
1329
1330 2011-08-26 Marc Khouzam <marc.khouzam@ericsson.com>
1331
1332 PR mi/11912
1333 * varobj.c (cplus_describe_child): Add the keyword
1334 'class' to the output of the method when dealing
1335 with a cast to a base class.
1336
1337 2011-08-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1338
1339 No functionality change.
1340 * breakpoint.c (bpstat_clear_actions): Remove the BS parameter, make
1341 function comment a reference, new variables tp and bs, move here code
1342 from throw_exception.
1343 * breakpoint.h (bpstat_clear_actions): Remove the BS parameter,
1344 describe it in the comment.
1345 * exceptions.c (throw_exception): Remove variable tp, move the code for
1346 bpstat_clear_actions to bpstat_clear_actions.
1347
1348 2011-08-24 Luis Machado <lgustavo@codesourcery.com>
1349
1350 * linux-nat.h (linux_proc_get_tgid): Remove declaration.
1351 * linux-nat.c: Include linux-procfs.h.
1352 (linux_proc_get_tgid): Move to ...
1353 * common/linux-procfs.c: ... here. New file.
1354 * common/linux-procfs.h: New file.
1355 * linux-thread-db.c: Include linux-procfs.h.
1356 * Makefile.in: Update dependencies.
1357 * config/alpha/alpha-linux.mh: Add linux-procfs.o dependency.
1358 * config/arm/linux.mh: Likewise.
1359 * config/i386/linux.mh: Likewise.
1360 * config/i386/linux64.mh: Likewise.
1361 * config/ia64/linux.mh: Likewise.
1362 * config/m32r/linux.mh: Likewise.
1363 * config/m68k/linux.mh: Likewise.
1364 * config/mips/linux.mh: Likewise.
1365 * config/pa/linux.mh: Likewise.
1366 * config/pa/linux.mh: Likewise.
1367 * config/powerpc/linux.mh: Likewise.
1368 * config/powerpc/ppc64-linux.mh: Likewise.
1369 * config/powerpc/spu-linux.mh: Likewise.
1370 * config/sparc/linux.mh: Likewise.
1371 * config/sparc/linux64.mh: Likewise.
1372 * config/xtensa/linux.mh: Likewise.
1373
1374 2011-08-24 Hui Zhu <teawater@gmail.com>
1375
1376 * tracepoint.c (cond_string_is_same): New function.
1377 (find_matching_tracepoint): Add condition check
1378 by cond_string_is_same.
1379
1380 2011-08-23 Josh Matthews <josh@joshmatthews.net>
1381
1382 Fix build error in Darwin port.
1383 * darwin-nat-info.c (darwin_debug_regions_recurse): New variable uiout.
1384
1385 2011-08-21 Jan Kratochvil <jan.kratochvil@redhat.com>
1386
1387 Code cleanup.
1388 * breakpoint.c (bpstat_clear_actions): Remove clearing of commands_left.
1389 (command_line_is_silent): New function.
1390 (bpstat_do_actions_1): No longer use commands_left, use
1391 command_line_is_silent for commands.
1392 (bpstat_alloc): Remove clearing of commands_left.
1393 (bpstat_stop_status): Remove initialization of commands_left, use
1394 command_line_is_silent.
1395 * breakpoint.h (struct bpstats): Remove commands_left.
1396
1397 2011-08-18 Keith Seitz <keiths@redhat.com>
1398
1399 PR c++/12266
1400 * cp-name-parser.y (struct demangle_info): Remove unused
1401 member PREV.
1402 (d_grab): Likewise.
1403 (allocate_info): Change return type to struct demangle_info *.
1404 Always allocate a new demangle_info.
1405 Remove unused PREV pointer.
1406 (cp_new_demangle_parse_info): New function.
1407 (cp_demangled_name_parse_free): New function.
1408 (do_demangled_name_parse_free_cleanup): New function.
1409 (make_cleanup_cp_demangled_name_parse_free): New function.
1410 (cp_demangled_name_to_comp): Change return type to
1411 struct demangle_parse_info *.
1412 Allocate a new storage for each call.
1413 (main): Update usage for cp_demangled_name_to_comp
1414 API change.
1415 * cp-support.h (struct demangle_parse_info): New structure.
1416 (cp_demangled_name_to_comp): Update API change for
1417 return type.
1418 (cp_new_demangle_parse_info): Declare.
1419 (make_cleanup_cp_demangled_name_parse_free): New declaration.
1420 (cp_demangled_name_parse_free): Declare.
1421 * cp-support.c (cp_canonicalize_string): Update API
1422 change for cp_demangled_name_to_comp.
1423 (mangled_name_to_comp): Likewise.
1424 Return struct demangle_parse_info, too.
1425 (cp_class_name_from_physname): Update mangled_name_to_comp
1426 API change.
1427 (method_name_from_physname): Likewise.
1428 (cp_func_name): Update API change for cp_demangled_name_to_comp.
1429 (cp_remove_params): Likewise.
1430 * python/py-type.c (typy_legacy_template_argument): Likewise.
1431
1432 * cp-support.h (cp_canonicalize_string_no_typedefs): Declare.
1433 (cp_merge_demangle_parse_infos): Declare.
1434 * cp-support.c (ignore_typedefs): New file global.
1435 (copy_string_to_obstack): New function.
1436 (inspect_type): New function.
1437 (replace_typedefs): New function.
1438 (replace_typedefs_qualified_name): New function.
1439 (cp_canonicalize_string_no_typedefs): New function.
1440 * cp-name-parser.y (cp_merge_demangle_parse_infos): New function.
1441 (cp_new_demangle__parse_info): Allocate and initialize the obstack.
1442 * linespec.c (find_methods): Use cp_canonicalize_string_no_typedefs
1443 instead of cp_canonicalize_string.
1444 (find_method): Likewise.
1445 (decode_compound): Before looking up the name, call
1446 cp_canonicalize_string_no_typedefs.
1447 (decode_variable): Likewise.
1448
1449 2011-08-17 Phil Muldoon <pmuldoon@redhat.com>
1450 Tom Tromey <tromey@redhat.com>
1451 Matt Rice <ratmice@gmail.com>
1452
1453 * python/lib/gdb/prompt.py: New file.
1454 * python/lib/gdb/command/prompt.py: New file.
1455 * NEWS: Document set extended-prompt and gdb.prompt library
1456
1457 2011-08-16 Yao Qi <yao@codesourcery.com>
1458
1459 * tic6x-linux-tdep.c: Move const arrays definition from here...
1460 * tic6x-tdep.c: to here ...
1461
1462 2011-08-14 Yao Qi <yao@codesourcery.com>
1463
1464 * NEWS: New port to Texas Instruments TMS320C6x.
1465
1466 2011-08-14 Andrew Jenner <andrew@codesourcery.com>
1467 Bernd Schmidt <bernds@codesourcery.com>
1468 Yao Qi <yao@codesourcery.com>
1469
1470 * configure.tgt: Handle tic6x-*-*linux and tic6x-*-*.
1471 * solib-dsbt.c: New file. Support DSBT shared object.
1472 * tic6x-linux-tdep.c: New file.
1473 * tic6x-tdep.c: New file.
1474 * tic6x-tdep.h: New file.
1475
1476 2011-08-14 Andrew Stubbs <ams@codesourcery.com>
1477 Yao Qi <yao@codesourcery.com>
1478
1479 * remote.c (PACKET_qXfer_fdpic): New enum value.
1480 (remote_protocol_features): Add qXfer:fdpic:read packet.
1481 (remote_xfer_partial): Support TARGET_OBJECT_FDPIC.
1482 (_initialize_remote): Add set/show remote read-fdpic-loadmap command.
1483 * target.h (enum target_object): Add TARGET_OBJECT_FDPIC.
1484
1485 2011-08-14 Yao Qi <yao@codesourcery.com>
1486
1487 Target description for tic6x.
1488 * features/Makefile (WHICH): Add tic6x-c64xp tic6x-c64x tic6x-c62x
1489 tic6x-c64xp-linux tic6x-c64x-linux and tic6x-c62x-linux.
1490 * features/tic6x-c6xp.xml, features/tic6x-core.xml: New.
1491 * features/tic6x-gp.xml, features/tic6x-c62x.xml: New.
1492 * features/tic6x-c64x.xml, features/tic6x-c64xp.xml: New.
1493 * features/tic6x-c62x-linux.xml, features/tic6x-c64x-linux.xml: New.
1494 * features/tic6x-c64xp-linux.xml: New.
1495 * features/tic6x-c64xp.c, features/tic6x-c64x.c: Generated.
1496 * features/tic6x-c62x.c, features/tic6x-c64xp-linux.c: Generated.
1497 * features/tic6x-c64x-linux.c, features/tic6x-c62x-linux.c: Generated.
1498 * regformats/tic6x-c62x.dat, regformats/tic6x-c64x.dat: Generated.
1499 * regformats/tic6x-c64xp.dat,
1500 regformats/tic6x-c62x-linux.dat: Generated.
1501 * regformats/tic6x-c64x-linux.dat,
1502 regformats/tic6x-c64xp-linux.dat: Generated.
1503 * config/djgpp/fnchange.lst: Add features/tic6x-*.xml and
1504 features/tic6x-*.c files.
1505 Add regformats/tic6x-*.dat files.
1506
1507 2011-08-12 Doug Evans <dje@google.com>
1508
1509 * NEWS: Mention new "type" attribute of python gdb.Symbol objects.
1510 * python/py-symbol.c (sympy_get_type): New function.
1511 (symbol_object_getset): Add "type".
1512
1513 2011-08-12 Pedro Alves <pedro@codesourcery.com>
1514
1515 PR tui/13073
1516
1517 * tui/tui-regs.c (tui_show_register_group): Skip registers with an
1518 empty name.
1519 (tui_show_register_group): Don't store a byte buffer in the data
1520 element's value.
1521 (tui_register_format): Skip registers with an empty name.
1522 (tui_get_register): Store a struct value in the data element's
1523 value field instead of a byte buffer holding the raw register
1524 contents. Account for optimized-out and unavailable registers
1525 when comparing register contents.
1526
1527 2011-08-09 Pedro Alves <pedro@codesourcery.com>
1528
1529 * printcmd.c (current_display_number): Update comment.
1530 (disable_current_display_cleanup): Delete.
1531 (do_one_display): Use make_cleanup_restore_integer. Gracefully
1532 catch errors thrown while evaluating and printing the display.
1533
1534 2011-08-09 Tom Tromey <tromey@redhat.com>
1535
1536 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Fix typo.
1537
1538 2011-08-09 Pedro Alves <pedro@codesourcery.com>
1539
1540 * elfread.c (elf_symtab_read): Rework comments.
1541 * maint.c (maintenance_command): Ditto.
1542 * somread.c (som_symtab_read): Ditto.
1543 * solib.c (solib_find, solib_map_sections, update_solib_list)
1544 (solib_add, info_sharedlibrary_command, solib_name_from_address)
1545 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
1546 (sharedlibrary_command, no_shared_libraries): Ditto.
1547 * solib-irix.c (locate_base, disable_break, enable_break)
1548 (irix_solib_create_inferior_hook, irix_solib_create_inferior_hook)
1549 (irix_current_sos, irix_open_symbol_file_object)
1550 (irix_special_symbol_handling): Ditto.
1551 * solib-sunos.c (locate_base, first_link_map_member)
1552 (sunos_current_sos, disable_break, enable_break)
1553 (sunos_special_symbol_handling, sunos_solib_create_inferior_hook):
1554 Ditto.
1555 * solib-svr4.c (bfd_lookup_symbol, elf_locate_base, locate_base)
1556 (open_symbol_file_object, svr4_current_sos, enable_break)
1557 (svr4_special_symbol_handling, svr4_solib_create_inferior_hook):
1558 Ditto.
1559 * solib-frv.c (bfd_lookup_symbol, open_symbol_file_object)
1560 (frv_current_sos, enable_break, frv_special_symbol_handling)
1561 (frv_solib_create_inferior_hook): Ditto.
1562 * solist.h (struct target_so_ops): Extend the comments of the
1563 special_symbol_handling, current_sos and open_symbol_file_object
1564 methods.
1565
1566 2011-08-09 Phil Muldoon <pmuldoon@redhat.com>
1567
1568 * python/lib/gdb/__init__.py: Auto-load files in command and
1569 function directories.
1570 * python/python.c (finish_python_initialization): Use
1571 os.path.join.
1572 * python/lib/gdb/command/pretty_printers.py: Self register
1573 command.
1574 * NEWS: Document auto-loading.
1575
1576 2011-08-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1577
1578 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full) <DWARF_VALUE_STACK>
1579 (dwarf2_evaluate_loc_desc_full) <DWARF_VALUE_LITERAL>: New variable
1580 objfile_gdbarch. Fix BFD_ENDIAN_BIG case.
1581
1582 2011-08-08 Tom Tromey <tromey@redhat.com>
1583
1584 * breakpoint.c (clean_up_filters): Remove.
1585 (catch_syscall_split_args): Use VEC_cleanup.
1586
1587 2011-08-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1588
1589 * cp-name-parser.y (xfree): Wrap the name free by CONCAT2.
1590 (main): Uncomment "Demangling error\n".
1591
1592 2011-08-05 Paul Pluzhnikov <ppluzhnikov@google.com>
1593
1594 * solib-target.c (segment_attributes): Make them static.
1595 (section_attributes, library_children, library_attributes): Likewise.
1596 (library_list_children, library_list_attributes): Likesise.
1597 (library_list_elements): Likewise.
1598
1599 2011-08-05 Pedro Alves <pedro@codesourcery.com>
1600
1601 * exceptions.c (throw_exception): Don't disable the current
1602 display.
1603 * printcmd.c (disable_current_display_cleanup): New function.
1604 (do_one_display): Install a cleanup to disable the current display
1605 if doing the display throws.
1606
1607 2011-08-05 Eli Zaretskii <eliz@gnu.org>
1608
1609 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Move the
1610 initialization of the tp_new member to the corresponding
1611 gdbpy_initialize_* function.
1612 * python/py-cmd.c (gdbpy_initialize_commands): Likewise.
1613 * python/py-frame.c (gdbpy_initialize_frames): Likewise.
1614 * python/py-function.c (gdbpy_initialize_functions): Likewise.
1615 * python/py-inferior.c (gdbpy_initialize_inferior): Likewise.
1616 * python/py-param.c (gdbpy_initialize_parameters): Likewise.
1617
1618 2011-08-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1619
1620 * spu-tdep.c (info_spu_event_command, info_spu_signal_command)
1621 (info_spu_mailbox_list, info_spu_mailbox_command, info_spu_dma_cmdlist)
1622 (info_spu_dma_command, info_spu_proxydma_command): Rename uiout
1623 references to current_uiout.
1624
1625 2011-08-04 Pedro Alves <pedro@codesourcery.com>
1626
1627 * event-loop.c (gdb_do_one_event): Remove `data' parameter.
1628 (start_event_loop): Use TRY_CATCH instead of catch_errors.
1629 * event-loop.h (gdb_do_one_event): Remove `data' parameter.
1630 * top.c (gdb_readline_wrapper): Adjust.
1631 * tui/tui-interp.c (tui_command_loop):
1632 (_initialize_tui_interp): Don't install it.
1633
1634 2011-08-04 Pedro Alves <pedro@codesourcery.com>
1635
1636 * ui-out.h (uiout): Rename to ...
1637 (current_uiout): ... this.
1638 * ui-out.c (uiout): Rename to ...
1639 (current_uiout): ... this.
1640 * ada-lang.c (print_it_exception, print_one_exception)
1641 (print_mention_exception): Adjust.
1642 * breakpoint.c (watchpoint_check): Adjust.
1643 (print_breakpoint_location, print_one_breakpoint, breakpoint_1)
1644 (default_collect_info, watchpoints_info, print_one_catch_fork)
1645 (print_one_catch_vfork, print_one_catch_syscall)
1646 (print_one_catch_exec, mention, print_it_ranged_breakpoint)
1647 (print_one_ranged_breakpoint, print_mention_ranged_breakpoint)
1648 (print_it_watchpoint, print_mention_watchpoint)
1649 (print_it_masked_watchpoint, print_mention_masked_watchpoint)
1650 (print_it_exception_catchpoint, print_one_exception_catchpoint)
1651 (print_mention_exception_catchpoint, say_where, bkpt_print_it)
1652 (bkpt_print_mention, momentary_bkpt_print_it)
1653 (tracepoint_print_mention, update_static_tracepoint)
1654 (tracepoints_info, save_breakpoints): Adjust.
1655 * cli-out.c (field_separator): Adjust.
1656 * cp-abi.c (list_cp_abis, show_cp_abi_cmd): Adjust.
1657 * exceptions.c (catch_exceptions_with_msg, catch_errors): Adjust.
1658 * frame.c (get_current_frame): Adjust.
1659 * infcmd.c (run_command_1, print_return_value): Adjust.
1660 * inferior.c (inferior_command, info_inferiors_command): Adjust.
1661 * infrun.c (print_end_stepping_range_reason): Adjust.
1662 (print_signal_exited_reason, print_exited_reason): Adjust.
1663 (print_signal_received_reason, print_no_history_reason): Adjust.
1664 * interps.c (interp_set): Adjust.
1665 * osdata.c (info_osdata_command): Adjust.
1666 * progspace.c (maintenance_info_program_spaces_command): Adjust.
1667 * remote-fileio.c (remote_fileio_request): Adjust.
1668 * remote.c (show_remote_cmd): Adjust.
1669 * solib.c (info_sharedlibrary_command): Adjust.
1670 * source.c (print_source_lines_base): Adjust.
1671 * stack.c (print_stack_frame): Adjust.
1672 (do_gdb_disassembly, print_frame_info, print_frame): Adjust.
1673 * symfile-mem.c (add_vsyscall_page): Adjust.
1674 * symfile.c (load_progress, generic_load)
1675 (print_transfer_performance): Adjust.
1676 * thread.c (info_threads_command, restore_selected_frame)
1677 (thread_command): Adjust.
1678 * top.c (make_cleanup_restore_ui_file): Adjust.
1679 * tracepoint.c (tvariables_info_1, trace_status_mi, tfind_1)
1680 (print_one_static_tracepoint_marker): Adjust.
1681 * cli/cli-cmds.c (print_disassembly): Adjust.
1682 * cli/cli-decode.c (print_doc_line): Adjust.
1683 * cli/cli-interp.c (safe_execute_command): Adjust.
1684 * cli/cli-logging.c (set_logging_redirect, pop_output_files)
1685 (handle_redirections): Adjust.
1686 * cli/cli-script.c (show_user_1): Adjust.
1687 * cli/cli-setshow.c (do_setshow_command, cmd_show_list): Adjust.
1688 * mi/mi-cmd-break.c (breakpoint_notify): Adjust.
1689 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Adjust.
1690 * mi/mi-cmd-env.c (mi_cmd_env_pwd, mi_cmd_env_path)
1691 (mi_cmd_env_dir): Adjust.
1692 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
1693 (print_partial_file_name, mi_cmd_file_list_exec_source_files): Adjust.
1694 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
1695 (mi_cmd_stack_info_depth, mi_cmd_stack_list_args)
1696 (list_args_or_locals): Adjust.
1697 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_create)
1698 (mi_cmd_var_delete, mi_cmd_var_set_format, mi_cmd_var_set_frozen)
1699 (mi_cmd_var_show_format, mi_cmd_var_info_num_children)
1700 (mi_cmd_var_list_children, mi_cmd_var_info_type)
1701 (mi_cmd_var_info_path_expression, mi_cmd_var_info_expression)
1702 (mi_cmd_var_show_attributes, mi_cmd_var_evaluate_expression)
1703 (mi_cmd_var_assign, mi_cmd_var_update, varobj_update_one): Adjust.
1704 * mi/mi-interp.c (mi_on_normal_stop): Adjust.
1705 * mi/mi-main.c (mi_cmd_gdb_exit, mi_cmd_thread_select)
1706 (mi_cmd_thread_list_ids, mi_cmd_thread_info, print_one_inferior)
1707 (list_available_thread_groups, mi_cmd_list_thread_groups)
1708 (mi_cmd_data_list_register_names)
1709 (mi_cmd_data_list_changed_registers)
1710 (mi_cmd_data_list_register_values, get_register)
1711 (mi_cmd_data_evaluate_expression, mi_cmd_data_read_memory)
1712 (mi_cmd_data_read_memory_bytes, mi_cmd_list_features)
1713 (mi_cmd_list_target_features, mi_cmd_add_inferior)
1714 (mi_execute_command, mi_load_progress): Adjust.
1715 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Adjust.
1716 * python/py-auto-load.c (print_script, info_auto_load_scripts):
1717 Adjust.
1718 * python/py-breakpoint.c (bppy_get_commands): Adjust.
1719 * tui/tui-interp.c (tui_command_loop): Adjust.
1720 * tui/tui-io.c (tui_setup_io, tui_initialize_io): Adjust.
1721
1722 2011-08-04 Pedro Alves <pedro@codesourcery.com>
1723
1724 * exceptions.c (struct catcher): Remove saved_uiout field.
1725 (exceptions_state_mc_init): Remove the `func_uiout' parameter, and
1726 no longer save/resvore the global ui_out builder.
1727 (catch_exceptions_with_msg): Save/override/restore the global
1728 ui_out builder manually instead of relying on TRY_CATCH to do it.
1729 (catch_errors): Save/restore the global ui_out builder manually
1730 instead of relying on TRY_CATCH to do it.
1731 * exceptions.h (exceptions_state_mc_init): Remove the `func_uiout'
1732 parameter.
1733 (TRY_CATCH): Adjust.
1734 * cli/cli-interp.c (safe_execute_command): Save/override/restore
1735 the global ui_out builder manually instead of relying on TRY_CATCH
1736 to do it.
1737
1738 2011-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1739
1740 * breakpoint.c (update_global_location_list): Ensure
1741 invariant 'first loc marked not duplicated and inserted,
1742 following locs marked duplicated/not inserted' is respected
1743 for multiple locations at the same address.
1744 (unduplicated_should_be_inserted) New function.
1745 (swap_insertion) New function.
1746
1747 2011-08-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1748
1749 * stack.c (print_frame_arguments_choices): Comment typo fix.
1750
1751 2011-08-01 Thiago Jung Bauermann <bauerman@br.ibm.com>
1752
1753 Revert:
1754 2011-07-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
1755 * breakpoint.c (insert_bp_location): Remove disabled_breaks
1756 argument. Update callers.
1757
1758 2011-08-01 Paul Pluzhnikov <ppluzhnikov@google.com>
1759
1760 PR gdb/13045
1761 * doublest.c (convert_doublest_to_floatformat): Pass correct
1762 mantissa length to put_field.
1763
1764 2011-08-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1765
1766 * stack.c (do_gdb_disassembly): Use RETURN_MASK_ERROR, simplify the
1767 exception_print code path.
1768 (backtrace_command): Remove variable e. Protect arg by make_cleanup in
1769 advance. Simplify memset. Remove TRY_CATCH. Remove explicit xfree.
1770 (backtrace_full_command): Remove variable e. Remove TRY_CATCH.
1771
1772 2011-08-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1773
1774 Code cleanup.
1775 * stack.c (struct print_stack_frame_args, print_stack_frame_stub):
1776 Remove, merge them into ...
1777 (print_stack_frame): ... here with a TRY_CATCH. New variable e, remove
1778 variable args and its initialization.
1779 (struct print_args_args, print_args_stub): Remove, merge them into
1780 print_frame.
1781 (struct gdb_disassembly_stub_args, gdb_disassembly_stub): Remove, merge
1782 them into ...
1783 (do_gdb_disassembly): ... here. Remove variable args and its
1784 initialization.
1785 (print_frame): Remove variable args and its initialization, new
1786 variable gdbarch and numargs (from print_args_stub), inline here
1787 print_args_stub with a TRY_CATCH.
1788 (struct backtrace_command_args, backtrace_command_stub): Remove, merge
1789 them into ...
1790 (backtrace_command, backtrace_full_command): ... here with a TRY_CATCH.
1791 New variable e, remove variable btargs and its initialization.
1792
1793 2011-08-01 Tristan Gingold <gingold@adacore.com>
1794
1795 * darwin-nat.c (darwin_decode_exception_message): Adjust assertion.
1796
1797 2011-07-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
1798
1799 * breakpoint.c (insert_bp_location): Document return value.
1800 (insert_breakpoint_locations): Fix documentation.
1801 (remove_breakpoints): Add documentation.
1802
1803 2011-07-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
1804
1805 * breakpoint.c (insert_bp_location): Remove disabled_breaks
1806 argument. Update callers.
1807
1808 2011-07-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1809
1810 * stack.c (print_frame_info): Comment typo fix.
1811
1812 2011-07-29 Sterling Augustine <saugustine@google.com>
1813
1814 * MAINTAINERS (Write After Approval): Add myself to the list.
1815
1816 2011-07-29 Tom Tromey <tromey@redhat.com>
1817
1818 * solib-target.c: Use DEF_VEC_I, not DEF_VEC_O.
1819 (library_list_start_segment): Update.
1820 (library_list_start_section): Update.
1821
1822 2011-07-28 Phil Muldoon <pmuldoon@redhat.com>
1823
1824 * varobj.c (value_get_print_value): Move hint check later into the
1825 function. Comment function. Free thevalue before reusing it.
1826
1827 2011-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1828 Pedro Alves <pedro@codesourcery.com>
1829
1830 * eval.c (evaluate_subexp_standard): Remove not_lval from all calls of
1831 value_one.
1832 * valops.c (value_one): Remove parameter lv. Do not pass it to itself.
1833 Assert the result kind.
1834 * value.h (value_one): Remove parameter lv.
1835
1836 2011-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1837
1838 Fix crash on lval_computed values.
1839 * valops.c (value_zero): Use not_lval for lval_computed.
1840
1841 2011-07-27 Tom Tromey <tromey@redhat.com>
1842
1843 * Makefile.in (HFILES_NO_SRCDIR): Add 'common' prefix for
1844 gdb_assert.h, gdb_locale.h, gdb_dirent.h.
1845
1846 2011-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1847
1848 * typeprint.c (_initialize_typeprint): Extend the help of "whatis" and
1849 "ptype" by their typedefs difference.
1850
1851 2011-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1852
1853 * dwarf2expr.c (ctx_no_read_reg): New function.
1854 * dwarf2expr.h (ctx_no_read_reg): New declaration.
1855 * dwarf2read.c (read_2_signed_bytes, read_4_signed_bytes): Remove.
1856 (decode_locdesc_read_mem, decode_locdesc_ctx_funcs): New.
1857 (decode_locdesc): Replace by a caller of dwarf_expr_eval.
1858
1859 2011-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1860
1861 * dwarf2-frame.c (no_get_frame_base, no_get_frame_cfa, no_get_frame_pc)
1862 (no_get_tls_address, no_dwarf_call, no_base_type): Move to the other
1863 file.
1864 (dwarf2_frame_ctx_funcs): Reference the renamed functions.
1865 * dwarf2expr.c (ctx_no_get_frame_base, ctx_no_get_frame_cfa)
1866 (ctx_no_get_frame_pc, ctx_no_get_tls_address, ctx_no_dwarf_call)
1867 (ctx_no_get_base_type): Move the functions here.
1868 * dwarf2expr.h (ctx_no_get_frame_base, ctx_no_get_frame_cfa)
1869 (ctx_no_get_frame_pc, ctx_no_get_tls_address, ctx_no_dwarf_call)
1870 (ctx_no_get_base_type): New declarations.
1871
1872 2011-07-27 Tom Tromey <tromey@redhat.com>
1873
1874 * xcoffread.c (dwarf2_xcoff_names): Add 'macro' and 'sentinel'
1875 entries.
1876 * symfile.h (struct dwarf2_debug_sections) <sentinel>: New field.
1877 * dwarf2read.c (dwarf2_elf_names): Add sentinel entry.
1878
1879 2011-07-26 Sterling Augustine <saugustine@google.com>
1880
1881 * cli/cli-dump.c (dump_binary_file): Change parameter type to
1882 ULONGEST.
1883 (dump_bfd_file): Likewise.
1884
1885 2011-07-26 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1886
1887 * remote.c (remote_region_ok_for_hw_watchpoint): New function.
1888 (remote_hw_watchpoint_length_limit): New variable.
1889 (_initialize_remote) add set,show cmds for this new variable.
1890 * gdb.texinfo: document these new commands.
1891 * NEWS: Mention these new commands.
1892
1893 2011-07-26 Pedro Alves <pedro@codesourcery.com>
1894
1895 * breakpoint.c (works_in_software_mode_watchpoint): Also return
1896 true for software watchpoints.
1897
1898 2011-07-26 Joel Brobecker <brobecker@adacore.com>
1899
1900 GDB 7.3 released.
1901
1902 2011-07-26 Tom Tromey <tromey@redhat.com>
1903
1904 * symfile.h (struct dwarf2_debug_sections) <macro>: New field.
1905 * dwarf2read.c (read_indirect_string_at_offset): New function.
1906 (read_indirect_string): Use it.
1907 (dwarf_decode_macro_bytes): New function, taken from
1908 dwarf_decode_macros. Handle DW_MACRO_GNU_*.
1909 (dwarf_decode_macros): Use it. handle DW_MACRO_GNU_*.
1910 (dwarf_parse_macro_header, skip_form_bytes, skip_unknown_opcode):
1911 New functions.
1912 (struct dwarf2_per_objfile) <macro>: New field.
1913 (dwarf2_elf_names): Add .debug_macro.
1914 (dwarf2_macros_too_long_complaint): Add 'section' argument.
1915 (dwarf2_locate_sections): Handle new section.
1916 (read_file_scope): Handle DW_AT_GNU_macros.
1917 (dwarf2_per_objfile_free): Unmap the .debug_macro section.
1918
1919 2011-07-26 Paul Pluzhnikov <ppluzhnikov@google.com>
1920
1921 * NEWS: Mention dcache configuration.
1922 * dcache.c (dcache_set_list, dcache_show_list): New variables.
1923 (dcache_size, dcache_line_size): New variables.
1924 (LINE_SIZE_MASK, XFORM, MASK): Adjust.
1925 (struct dcache_block): Make it expandable.
1926 (struct dcache_struct): New field.
1927 (dcache_invalidate): Discard freelist upon dcache_line_size changes.
1928 (dcache_hit, dcache_alloc, dcache_peek_byte): Adjust.
1929 (dcache_poke_byte, dcache_print_line): Adjust.
1930 (set_dcache_size, set_dcache_line_size): New functions.
1931 (set_dcache_command, show_dcache_command): New functions.
1932 (_initialize_dcache): Add new commands.
1933
1934 2011-07-26 Paul Pluzhnikov <ppluzhnikov@google.com>
1935
1936 * progspace.h (struct program_space): Add solib_add_generation.
1937 * infcmd.c (post_create_inferior): Only call solib_add if not
1938 already done.
1939 * solib.c (solib_add): Increment solib_add_generation.
1940
1941 2011-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
1942
1943 Fix implicit pointer offsets.
1944 * dwarf2loc.c (indirect_pieced_value): Comment byte_offset. Use also
1945 ptr.OFFSET.
1946
1947 2011-07-25 Tom Tromey <tromey@redhat.com>
1948
1949 * ada-lang.c (ada_exception_breakpoint_ops): Make return type
1950 const.
1951 (ada_exception_sal): Make 'ops' const.
1952 (ada_decode_exception_location): Likewise.
1953 (ada_decode_assert_location): Likewise.
1954 (catch_assert_command): Update.
1955 (catch_ada_exception_command): Update.
1956 (create_ada_exception_catchpoint): Make 'ops' const.
1957 * breakpoint.c (set_raw_breakpoint_without_location)
1958 (set_raw_breakpoint, momentary_breakpoint_from_master): Make 'ops'
1959 const.
1960 (create_internal_breakpoint): Update.
1961 (init_raw_breakpoint_without_location): Make 'ops' const.
1962 (init_raw_breakpoint, init_catchpoint)
1963 (create_fork_vfork_event_catchpoint)
1964 (create_syscall_event_catchpoint, init_breakpoint_sal)
1965 (create_breakpoint_sal, create_breakpoints_sal)
1966 (create_breakpoint, init_ada_exception_breakpoint): Likewise.
1967 * breakpoint.h (struct breakpoint) <ops>: Now const.
1968 (init_ada_exception_breakpoint, create_breakpoint): Make 'ops'
1969 const.
1970
1971 2011-07-25 Paul Pluzhnikov <ppluzhnikov@google.com>
1972
1973 * linux-thread-db.c (thread_from_lwp): Initialize th.th_unique.
1974
1975 2011-07-25 Pedro Alves <pedro@codesourcery.com>
1976
1977 * breakpoint.h (print_recreate_thread): Declare.
1978 (struct breakpoint): Move step_count, pass_count,
1979 number_on_target, static_trace_marker_id,
1980 static_trace_marker_id_idx ...
1981 (struct tracepoint): ... to this new struct.
1982 (get_tracepoint, get_tracepoint_by_number_on_target)
1983 (get_tracepoint_by_number): Change return type to struct
1984 tracepoint pointer.
1985 * breakpoint.c (is_tracepoint_type): New, factored out from
1986 is_tracepoint.
1987 (is_tracepoint): Adjust.
1988 (print_one_breakpoint_location): Cast to struct tracepoint as
1989 necessary, and adjust.
1990 (print_recreate_catch_fork, print_recreate_catch_vfork)
1991 (print_recreate_catch_syscall, print_recreate_catch_exec): Call
1992 print_recreate_thread.
1993 (init_breakpoint_sal): New, factored out from
1994 create_breakpoint_sal.
1995 (create_breakpoint_sal): Reimplement.
1996 (create_breakpoint): Allocate a struct tracecepoint if the caller
1997 wanted a tracepoint. Use init_breakpoint_sal and
1998 install_breakpoint.
1999 (print_recreate_ranged_breakpoint, print_recreate_watchpoint)
2000 (print_recreate_masked_watchpoint)
2001 (print_recreate_exception_catchpoint): Call print_recreate_thread.
2002 (tracepoint_print_one_detail): Adjust.
2003 (tracepoint_print_recreate): Adjust. Call print_recreate_thread.
2004 Dump the pass count here.
2005 (update_static_tracepoint): Adjust.
2006 (addr_string_to_sals): Adjust.
2007 (create_tracepoint_from_upload): Adjust. Change return type to
2008 struct tracepoint pointer.
2009 (trace_pass_set_count): Change parameter type to struct tracepoint
2010 pointer, and adjust.
2011 (trace_pass_command): Adjust.
2012 (get_tracepoint, get_tracepoint_by_number_on_target)
2013 (get_tracepoint_by_number): Change return type to struct
2014 tracepoint pointer, and adjust.
2015 (print_recreate_thread): New, factored out from save_breakpoints.
2016 (save_breakpoints): Don't print thread and task and passcount
2017 recreation here.
2018 * remote.c (remote_download_tracepoint): Adjust.
2019 * tracepoint.c (trace_actions_command, validate_actionline)
2020 (start_tracing, tfind_1, trace_find_tracepoint_command)
2021 (trace_dump_command): Adjust.
2022 (find_matching_tracepoint): Change return type to struct
2023 tracepoint pointer, and adjust.
2024 (merge_uploaded_tracepoints, tfile_get_traceframe_address)
2025 (tfile_trace_find, tfile_fetch_registers): Adjust.
2026 * tracepoint.h (create_tracepoint_from_upload): Change return type
2027 to struct tracepoint pointer.
2028 * ada-lang.c (print_recreate_exception): Call
2029 print_recreate_thread.
2030 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Adjust.
2031
2032 2011-07-25 Pedro Alves <pedro@codesourcery.com>
2033
2034 * breakpoint.h (struct breakpoint): Move ops as first field. Move
2035 exp_string, exp_string_reparse, exp, exp_valid_block, cond_exp,
2036 cond_exp_valid_block, val, val_valid, watchpoint_frame,
2037 watchpoint_thread, watchpoint_triggered ...
2038 (struct watchpoint): ... to this new struct.
2039 (is_watchpoint): Declare.
2040 (install_breakpoint): Add new `internal' parameter.
2041 * breakpoint.c (is_watchpoint): Delete declaration.
2042 (set_breakpoint_condition): Handle watchpoints.
2043 (is_watchpoint): Make public.
2044 (watchpoint_in_thread_scope): Change parameter type to struct
2045 watchpoint.
2046 (watchpoint_del_at_next_stop): Change parameter type to struct
2047 watchpoint. Remove assertion. Adjust.
2048 (update_watchpoint): Ditto.
2049 (insert_breakpoints, breakpoint_init_inferior)
2050 (watchpoints_triggered, watchpoint_check)
2051 (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions)
2052 (bpstat_stop_status, print_one_breakpoint_location)
2053 (print_one_breakpoint_location, watchpoint_locations_match): Cast
2054 to struct watchpoint as necessary, and adjust.
2055 (install_breakpoint): Add `internal' argument. If true, don't
2056 mention the new breakpoint. Use set_breakpoint_number.
2057 (create_fork_vfork_event_catchpoint)
2058 (create_syscall_event_catchpoint): Adjust.
2059 (dtor_watchpoint): New.
2060 (re_set_watchpoint, insert_watchpoint, remove_watchpoint)
2061 (breakpoint_hit_watchpoint, resources_needed_watchpoint)
2062 (print_it_watchpoint, print_mention_watchpoint)
2063 (print_recreate_watchpoint, insert_masked_watchpoint)
2064 (remove_masked_watchpoint, resources_needed_masked_watchpoint)
2065 (print_one_detail_masked_watchpoint)
2066 (print_mention_masked_watchpoint)
2067 (print_recreate_masked_watchpoint): Cast to struct watchpoint as
2068 necessary, and adjust.
2069 (watch_command_1): Allocate and initialize a struct watchpoint
2070 instead of a struct breakpoint. Use install_breakpoint.
2071 (catch_exec_command_1): Adjust.
2072 (base_breakpoint_dtor): Delete accesses to watchpoint specific
2073 fields.
2074 (delete_breakpoint, enable_breakpoint_disp)
2075 (invalidate_bp_value_on_memory_change): Cast to struct watchpoint
2076 as necessary, and adjust.
2077 (initialize_breakpoint_ops): Install dtor_watchpoint as
2078 watchpoints' dtor method.
2079 * ada-lang.c (create_ada_exception_catchpoint): Adjust.
2080 * python/py-breakpoint.c (bppy_get_expression): Use is_watchpoint.
2081 to struct watchpoint as necessary, and adjust.
2082
2083 2011-07-25 Pedro Alves <pedro@codesourcery.com>
2084
2085 * ada-lang.c (dtor_exception, re_set_exception): Indirect through
2086 the the base class ops table.
2087 (catch_exception_breakpoint_ops)
2088 (catch_exception_unhandled_breakpoint_ops)
2089 (catch_assert_breakpoint_ops): Don't statically initialize.
2090 (initialize_ada_catchpoint_ops): New.
2091 (_initialize_ada_language): Call it.
2092 * breakpoint.c (base_breakpoint_ops, bkpt_base_breakpoint_ops)
2093 (bkpt_breakpoint_ops): Forward declare.
2094 (catch_fork_breakpoint_ops, catch_vfork_breakpoint_ops)
2095 (catch_syscall_breakpoint_ops, catch_exec_breakpoint_ops)
2096 (ranged_breakpoint_ops, watchpoint_breakpoint_ops)
2097 (masked_watchpoint_breakpoint_ops)
2098 (gnu_v3_exception_catchpoint_ops): Don't statically initialize.
2099 (dtor_catch_syscall, dtor_catch_exec): Indirect through the the
2100 base class ops table.
2101 (null_re_set, null_check_status, null_works_in_software_mode)
2102 (null_resources_needed, null_print_one_detail): Delete.
2103 (bkpt_dtor): Rename to ...
2104 (base_breakpoint_dtor): ... this. Make static.
2105 (bkpt_allocate_location): Rename to ...
2106 (base_breakpoint_allocate_location): ... this. Make static.
2107 (base_breakpoint_re_set): New.
2108 (internal_error_pure_virtual_called): New.
2109 (base_breakpoint_insert_location, base_breakpoint_remove_location)
2110 (base_breakpoint_breakpoint_hit, base_breakpoint_check_status)
2111 (base_breakpoint_works_in_software_mode)
2112 (base_breakpoint_resources_needed, base_breakpoint_print_it)
2113 (base_breakpoint_print_one_detail, base_breakpoint_print_mention)
2114 (base_breakpoint_print_recreate): New functions.
2115 (base_breakpoint_ops): New global.
2116 (bkpt_re_set, bkpt_insert_location, bkpt_remove_location)
2117 (bkpt_breakpoint_hit): Make static.
2118 (bkpt_check_status): Delete.
2119 (bkpt_resources_needed): Make static.
2120 (bkpt_works_in_software_mode): Delete.
2121 (bkpt_print_it, bkpt_print_mention, bkpt_print_recreate): Make
2122 static.
2123 (bkpt_breakpoint_ops, internal_breakpoint_ops)
2124 (momentary_breakpoint_ops): Don't statically initialize.
2125 (internal_bkpt_print_recreate, momentary_bkpt_print_recreate):
2126 Delete.
2127 (tracepoint_insert_location, tracepoint_remove_location)
2128 (tracepoint_check_status, tracepoint_works_in_software_mode)
2129 (tracepoint_print_it): Delete.
2130 (tracepoint_breakpoint_ops): Don't statically initialize.
2131 (initialize_breakpoint_ops): New.
2132 (_initialize_breakpoint): Call it.
2133 * breakpoint.h (null_re_set, null_works_in_software_mode)
2134 (null_resources_needed, null_check_status, null_print_one_detail):
2135 (bkpt_dtor, bkpt_allocate_location, bkpt_re_set)
2136 (bkpt_insert_location, bkpt_remove_location, bkpt_breakpoint_hit)
2137 (bkpt_check_status, bkpt_resources_needed)
2138 (bkpt_works_in_software_mode, bkpt_print_it)
2139 (null_print_one_detail, bkpt_print_mention, bkpt_print_recreate):
2140 Delete declarations.
2141 (initialize_breakpoint_ops): Declare.
2142
2143 2011-07-25 Pedro Alves <pedro@codesourcery.com>
2144
2145 * breakpoint.c (bkpt_print_it, internal_bkpt_print_it)
2146 (momentary_bkpt_print_it): Simplify.
2147
2148 2011-07-25 Pedro Alves <pedro@codesourcery.com>
2149
2150 Split internal, momentary and user breakpoints breakpoint_ops
2151 tables.
2152
2153 * breakpoint.c (internal_breakpoint_ops)
2154 (momentary_breakpoint_ops): Forward declare.
2155 (create_internal_breakpoint): Add new breakpoint_ops parameter.
2156 Pass it down, rather than hardcoding bkpt_breakpoint_ops.
2157 (create_overlay_event_breakpoint)
2158 (create_std_terminate_master_breakpoint)
2159 (create_exception_master_breakpoint): Create breakpoints with
2160 internal_breakpoint_ops vtable.
2161 (set_longjmp_breakpoint): Create momentary breakpoints with
2162 momentary_breakpoint_ops vtable, using
2163 momentary_breakpoint_from_master.
2164 (create_thread_event_breakpoint, create_jit_event_breakpoint)
2165 (create_solib_event_breakpoint): Create breakpoints with
2166 internal_breakpoint_ops vtable.
2167 (set_momentary_breakpoint): Create breakpoints with
2168 momentary_breakpoint_ops vtable.
2169 (momentary_breakpoint_from_master): New, factored out from
2170 clone_momentary_breakpoint.
2171 (clone_momentary_breakpoint): Adjust.
2172 (watch_command_1): Create scope breakpoints with
2173 momentary_breakpoint_ops vtable.
2174 (bkpt_re_set): Remove handling of internal and momentary
2175 breakpoints.
2176 (bkpt_print_mention, bkpt_print_recreate): New.
2177 (bkpt_breakpoint_ops): Adjust.
2178 (internal_bkpt_re_set, internal_bkpt_check_status)
2179 (internal_bkpt_print_it, internal_bkpt_print_mention)
2180 (internal_bkpt_print_recreate, internal_breakpoint_ops): New.
2181 (momentary_bkpt_re_set, momentary_bkpt_check_status)
2182 (momentary_bkpt_print_it, momentary_bkpt_print_mention)
2183 (momentary_bkpt_print_recreate): New.
2184 (momentary_breakpoint_ops): New.
2185
2186 2011-07-25 Pedro Alves <pedro@codesourcery.com>
2187
2188 Implement most breakpoint_ops methods for all breakpoint types,
2189 and move the default handlings to the proper callbacks.
2190
2191 * breakpoint.c (update_watchpoint): Always call the breakpoint's
2192 works_in_software_mode method.
2193 (insert_bp_location): Go through breakpoint_ops->insert_location
2194 for software and hardware watchpoints.
2195 (create_internal_breakpoint): Pass bkpt_breakpoint_ops as
2196 breakpoint_ops.
2197 (remove_breakpoint_1): Go through breakpoint_ops->remove_location
2198 for software and hardware watchpoints.
2199 (print_it_typical): Delete.
2200 (print_bp_stop_message): Always call the breakpoint_ops->print_it
2201 method.
2202 (watchpoint_check): Adjust comment.
2203 (bpstat_check_location): Simply always call the breakpoint's
2204 breakpoint_hit method.
2205 (bpstat_stop_status): Always call the breakpoint's check_status
2206 method. Remove special cases for watchpoints and internal event
2207 breakpoints from here (moved to the check_status implementations).
2208 (print_one_breakpoint_location): Assume b->ops is never NULL.
2209 Remove static tracepoint marker id printing from here (moved to
2210 the print_one_detail callback implementation of tracepoints).
2211 (init_bp_location): Assert OPS is never NULL.
2212 (allocate_bp_location): Always call the breakpoint's
2213 allocate_location method, and remove the default code from here.
2214 (free_bp_location): Always call the location's dtor method, and
2215 remove the default code from here.
2216 (init_raw_breakpoint_without_location): Assert OPS is never NULL.
2217 (set_raw_breakpoint_without_location): Add new breakpoint_ops
2218 parameter. Pass it down.
2219 (set_raw_breakpoint): Ditto.
2220 (print_it_catch_fork): Adjust to take a bpstat as argument.
2221 (catch_fork_breakpoint_ops): Install methods.
2222 (print_it_catch_vfork): Adjust to take a bpstat as argument.
2223 (catch_vfork_breakpoint_ops): Install methods.
2224 (dtor_catch_syscall): Call the base dtor.
2225 (print_it_catch_syscall): Adjust to take a bpstat as argument.
2226 (catch_syscall_breakpoint_ops): Install methods.
2227 (dtor_catch_exec): Call the base dtor.
2228 (print_it_catch_exec): Adjust to take a bpstat as argument.
2229 (catch_exec_breakpoint_ops): Install methods.
2230 (hw_breakpoint_used_count, hw_watchpoint_used_count): Always call
2231 the breakpoint's resources_needed method, and remove the default
2232 code from here.
2233 (set_momentary_breakpoint): Pass bkpt_breakpoint_ops as
2234 breakpoint_ops.
2235 (clone_momentary_breakpoint): Clone the original's ops.
2236 (mention): Always call the breakpoint's print_mention method, and
2237 remove the default code from here.
2238 (create_breakpoint_sal): Adjust to pass the ops to
2239 set_raw_breakpoint rather than setting it manually.
2240 (create_breakpoint): Assert ops is never NULL. Adjust to pass the
2241 ops to set_raw_breakpoint_without_location rather than setting it
2242 manually.
2243 (break_command_1): Pass bkpt_breakpoint_ops as breakpoint_ops.
2244 (print_it_ranged_breakpoint): Adjust to take a bpstat as argument.
2245 (ranged_breakpoint_ops): Install methods.
2246 (break_range_command): Adjust to pass the ops to
2247 set_raw_breakpoint rather than setting it manually.
2248 (re_set_watchpoint, breakpoint_hit_watchpoint)
2249 (check_status_watchpoint, resources_needed_watchpoint)
2250 (works_in_software_mode_watchpoint, print_it_watchpoint)
2251 (print_mention_watchpoint, print_recreate_watchpoint): New
2252 functions.
2253 (watchpoint_breakpoint_ops): Install new methods.
2254 (print_it_masked_watchpoint): New function.
2255 (masked_watchpoint_breakpoint_ops): Install new methods.
2256 (watch_command_1): Adjust to pass the right breakpoint_ops to
2257 set_raw_breakpoint_without_location rather than setting it
2258 manually later. Record the current pspace.
2259 (print_it_exception_catchpoint): Adjust to take a bpstat as
2260 argument.
2261 (gnu_v3_exception_catchpoint_ops): Install new methods.
2262 (say_where): New function.
2263 (null_re_set, null_check_status, null_works_in_software_mode)
2264 (null_resources_needed, null_print_one_detail, bp_location_dtor):
2265 New functions.
2266 (bp_location_ops): New global.
2267 (bkpt_dtor, bkpt_allocate_location, bkpt_re_set)
2268 (bkpt_insert_location, bkpt_remove_location, bkpt_breakpoint_hit)
2269 (bkpt_check_status, bkpt_resources_needed)
2270 (bkpt_works_in_software_mode, bkpt_print_it, bkpt_print_mention)
2271 (bkpt_print_recreate): New functions.
2272 (bkpt_breakpoint_ops): New global.
2273 (tracepoint_re_set, tracepoint_insert_location)
2274 (tracepoint_remove_location, tracepoint_breakpoint_hit)
2275 (tracepoint_check_status, tracepoint_works_in_software_mode)
2276 (tracepoint_print_it, tracepoint_print_one_detail)
2277 (tracepoint_print_mention, tracepoint_print_recreate): New
2278 functions.
2279 (tracepoint_breakpoint_ops): New global.
2280 (delete_breakpoint): Always call the breakpoint's dtor method, and
2281 remove the default handling from here.
2282 (breakpoint_re_set_default): Make static.
2283 (breakpoint_re_set_one): Always call the breakpoints re_set
2284 method, and remove the default handling from here.
2285 (trace_command, ftrace_command, strace_command)
2286 (create_tracepoint_from_upload): Pass appropriate breakpoints_ops
2287 to create_breakpoint.
2288 (save_breakpoints): Always call the breakpoint's print_recreate
2289 method, and remove the default handling from here.
2290
2291 * ada-lang.c (dtor_exception): Call the base dtor.
2292 (re_set_exception): Call the base method.
2293 (print_it_exception, print_it_catch_exception): Adjust to take a
2294 bpstat as argument.
2295 (catch_exception_breakpoint_ops): Install methods.
2296 (print_it_catch_exception_unhandled): Adjust to take a bpstat as
2297 argument.
2298 (catch_exception_unhandled_breakpoint_ops): Install methods.
2299 (print_it_catch_assert): Adjust to take a bpstat as argument.
2300 (catch_assert_breakpoint_ops): Install methods.
2301
2302 * breakpoint.h (struct breakpoint_ops): Adjust the print_it method
2303 to take a bpstat as argument.
2304 (enum print_stop_action): Add describing comments to each enum
2305 value.
2306 (breakpoint_re_set_default): Delete declaration.
2307 (null_re_set, null_works_in_software_mode, null_resources_needed)
2308 (null_check_status, null_print_one_detail): Declare.
2309 (bkpt_breakpoint_ops): Declare.
2310 (bkpt_dtor, bkpt_allocate_location, bkpt_re_set)
2311 (bkpt_insert_location, bkpt_remove_location, bkpt_breakpoint_hit)
2312 (bkpt_check_status, bkpt_resources_needed)
2313 (bkpt_works_in_software_mode, bkpt_print_it)
2314 (null_print_one_detail, bkpt_print_mention, bkpt_print_recreate):
2315 Declare.
2316
2317 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust to pass
2318 bkpt_breakpoint_ops.
2319 * python/py-breakpoint.c (bppy_init): Ditto.
2320
2321 2011-07-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2322
2323 * MAINTAINERS (Write After Approval): Add myself to the list.
2324
2325 2011-07-23 Paul Pluzhnikov <ppluzhnikov@google.com>
2326
2327 * elfread.c (elf_rel_plt_read): Fix off-by-one bug.
2328
2329 2011-07-22 Pedro Alves <pedro@codesourcery.com>
2330
2331 * i386-nat.c (I386_DR_VACANT, I386_DR_LOCAL_ENABLE)
2332 (I386_DR_GLOBAL_ENABLE, I386_DR_DISABLE, I386_DR_SET_RW_LEN)
2333 (I386_DR_GET_RW_LEN, I386_DR_WATCH_HIT): Add state parameter and
2334 adjust.
2335 (dr_mirror, dr_status_mirror, dr_control_mirror): Delete.
2336 (struct i386_debug_reg_state): New.
2337 (i386_init_dregs): New.
2338 (dr_mirror): New.
2339 (i386_cleanup_dregs): Use i386_init_dregs.
2340 (i386_show_dr): Add state parameter and adjust.
2341 (i386_insert_aligned_watchpoint): Ditto. Don't pass the info to
2342 the inferior here.
2343 (i386_remove_aligned_watchpoint): Likewise.
2344 (i386_handle_nonaligned_watchpoint): Add state parameter and adjust.
2345 (i386_update_inferior_debug_regs): New.
2346 (i386_insert_watchpoint): Work on a local mirror of the debug
2347 registers, and only update the inferior on success.
2348 (i386_remove_watchpoint): Ditto.
2349 (i386_region_ok_for_watchpoint): Adjust.
2350 (i386_stopped_data_address): Adjust.
2351 (i386_insert_hw_breakpoint): Adjust.
2352 (i386_remove_hw_breakpoint): Adjust.
2353
2354 2011-07-22 Tom Tromey <tromey@redhat.com>
2355
2356 * amd64-tdep.c (amd64_pseudo_register_read_value): Rename
2357 from amd64_pseudo_register_read. Change arguments. Call
2358 mark_value_bytes_unavailable when needed.
2359 (amd64_init_abi): Use set_gdbarch_pseudo_register_read_value, not
2360 set_gdbarch_pseudo_register_read.
2361 * sentinel-frame.c (sentinel_frame_prev_register): Use
2362 regcache_cooked_read_value.
2363 * regcache.h (regcache_cooked_read_value): Declare.
2364 * regcache.c (regcache_cooked_read_value): New function.
2365 (regcache_cooked_read): Call
2366 gdbarch_pseudo_register_read_value if available.
2367 * i386-tdep.h (i386_pseudo_register_read_value): Declare.
2368 (i386_pseudo_register_read): Remove.
2369 * i386-tdep.c (i386_pseudo_register_read_into_value): Rename from
2370 i386_pseudo_register_read. Change arguments. Call
2371 mark_value_bytes_unavailable when needed.
2372 (i386_pseudo_register_read_value): New function.
2373 (i386_gdbarch_init): Call set_gdbarch_pseudo_register_read_value,
2374 not set_gdbarch_pseudo_register_read.
2375 * gdbarch.sh (pseudo_register_read_value): New method.
2376 * gdbarch.c, gdbarch.h: Rebuild.
2377 * findvar.c (value_from_register): Call get_frame_register_value.
2378
2379 2011-07-22 Phil Muldoon <pmuldoon@redhat.com>
2380
2381 * event-top.c (cli_command_loop): Use get_prompt, get_suffix,
2382 get_prefix.
2383 (display_gdb_prompt): Likewise.
2384 (change_annotation_level): Likewise.
2385 (push_prompt): Likewise.
2386 (pop_prompt): Likewise.
2387 (handle_stop_sig): Use get_prompt with a level.
2388 * top.c (command_loop): Use get_prompt with a level.
2389 (set_async_annotation_level): Use set_prompt with a level.
2390 (get_prefix): New function.
2391 (set_prefix): Ditto.
2392 (set_suffix): Ditto.
2393 (get_suffix): Ditto.
2394 (get_prompt): Accept a level argument.
2395 (set_prompt): Accept a level argument. Free old prompts. Set
2396 new_async_prompt if level is 0.
2397 (init_main): Use set_prompt with a level. Do not set
2398 new_async_prompt.
2399 * event-top.h (PROMPT, SUFFIX, PREFIX): Move to top.c
2400 * top.h: Declare set_suffix, get_suffix, set_prefix, get_prefix.
2401 Modify set_prompt, get_prompt to account for levels.
2402 * tui/tui-interp.c (tui_command_loop): Use get_prompt with a
2403 level.
2404 * python/python.c (before_prompt_hook): Use set_prompt.
2405
2406 2011-07-22 Kwok Cheung Yeung <kcy@codesourcery.com>
2407
2408 * defs.h: Add guard against inclusion in gdbserver.
2409 (struct ptid, ptid_t): Move to common/ptid.h.
2410 (xfree, xzalloc, xasprintf, xvasprintf, xstrprintf, xstrvprintf,
2411 xsnprintf, internal_error): Move to common/common-utils.h.
2412 (nomem): Delete.
2413 * gdb_assert.h: Move into common/ sub-directory.
2414 * gdb_locale.h: Ditto.
2415 * gdb_dirent.h: Ditto.
2416 * inferior.h (minus_one_ptid, null_ptid, ptid_build, pid_to_ptid,
2417 ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid):
2418 Move into common/ptid.h.
2419 * xml-support.c (xml_escape_text): Move into common/xml-utils.c.
2420 (gdb_xml_create_parser_and_cleanup_1, xml_fetch_context_from_file):
2421 Change nomem to malloc_failure.
2422 * xml-support.h (xml_escape_text): Move into common/xml-utils.h.
2423 * utils.c (nomem): Rename to malloc_failure.
2424 (xmalloc, xzalloc, xrealloc, xcalloc, xfree, xstrprintf, xasprintf,
2425 xvasprintf, xstrvprintf, xsnprintf): Move to common/common-utils.c.
2426 (gdb_buildargv): Change nomem to malloc_failure.
2427 * infrun.c (null_ptid, minus_one_ptid, ptid_build, pid_to_ptid,
2428 ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal,
2429 ptid_is_pid): Move into common/ptid.c.
2430 (initialize_infrun): Delete initialization of null_ptid and
2431 minus_one_ptid.
2432 * linux-nat.c (linux_nat_xfer_osdata): Defer to
2433 linux_common_xfer_osdata.
2434 * Makefile.in (SFILES): Add common/common-utils.c, common/xml-utils.c,
2435 common/ptid.c and common/buffer.c.
2436 (HFILES_NO_SRCDIR): Add common/common-utils.h, common/xml-utils.h,
2437 common/ptid.h, common/buffer.h and common/linux-osdata.h.
2438 (COMMON_OBS): Add xml-utils.o, common-utils.o, buffer.o and ptid.o.
2439 (common-utils.o, xml-utils.o, ptid.o, buffer.o, linux-osdata.o): New
2440 rules.
2441 * common/gdb_assert.h: New.
2442 * common/gdb_dirent.h: New.
2443 * common/gdb_locale.h: New.
2444 * common/buffer.c: New.
2445 * common/buffer.h: New.
2446 * common/ptid.c: New.
2447 * common/ptid.h: New.
2448 * common/xml-utils.c: New.
2449 * common/xml-utils.h: New.
2450 * common/common-utils.c: New.
2451 * common/common-utils.h: New.
2452 * common/linux-osdata.c: New.
2453 * common/linux-osdata.h: New.
2454 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-osdata.o.
2455 * config/arm/linux.mh (NATDEPFILES): Ditto.
2456 * config/i386/linux.mh (NATDEPFILES): Ditto.
2457 * config/i386/linux64.mh (NATDEPFILES): Ditto.
2458 * config/ia64/linux.mh (NATDEPFILES): Ditto.
2459 * config/m32r/linux.mh (NATDEPFILES): Ditto.
2460 * config/m68k/linux.mh (NATDEPFILES): Ditto.
2461 * config/mips/linux.mh (NATDEPFILES): Ditto.
2462 * config/pa/linux.mh (NATDEPFILES): Ditto.
2463 * config/powerpc/linux.mh (NATDEPFILES): Ditto.
2464 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Ditto.
2465 * config/s390/s390.mh (NATDEPFILES): Ditto.
2466 * config/sparc/linux.mh (NATDEPFILES): Ditto.
2467 * config/sparc/linux64.mh (NATDEPFILES): Ditto.
2468 * config/xtensa/linux.mh (NATDEPFILES): Ditto.
2469
2470 2011-07-21 Matt Rice <ratmice@gmail.com>
2471
2472 * NEWS: Add info macros and info definitions commands.
2473
2474 2011-07-21 Phil Muldoon <pmuldoon@redhat.com>
2475
2476 * NEWS: Document Python prompt substitution hook.
2477
2478 2011-07-18 Matt Rice <ratmice@gmail.com>
2479
2480 PR macros/12999
2481 * macrotab.h (macro_callback_fn): Add new arguments to callback.
2482 * macrotab.c (foreach_macro): Ditto.
2483 (foreach_macro_in_scope): Ditto.
2484 * macrocmd.c (print_macro_callback): New function.
2485 (info_macro_command): Move some code to print_macro_definition.
2486 (print_macro_definition): New function.
2487 (print_one_macro): Add new arguments to callback.
2488 (info_definitions_command): New function.
2489 (info_macros_command): Ditto.
2490 (_initialize_macrocmd): Add info macros and info definitions commands.
2491 * symtab.c (add_macro_name): Add new arguments to callback.
2492
2493 2011-07-21 Phil Muldoon <pmuldoon@redhat.com>
2494 Tom Tromey <tromey@redhat.com>
2495
2496 * top.c (set_prompt): Rewrite to free previous prompt, free
2497 asynch_new_prompt and set both on new prompts.
2498 * event-top.c (display_gdb_prompt): Add prompt substitution
2499 logic.
2500 * python/python.c (before_prompt_hook): New function.
2501
2502 2011-07-20 Matt Rice <ratmice@gmail.com>
2503
2504 * bfin-tdep.c (bfin_extract_return_value): Fix swapped
2505 arguments to store_unsigned_integer.
2506
2507 2011-07-20 Tom Tromey <tromey@redhat.com>
2508
2509 * dwarf2read.c (process_enumeration_scope): Do not call new_symbol
2510 in some declaration-only cases.
2511
2512 2011-07-18 Tom Tromey <tromey@redhat.com>
2513
2514 PR symtab/12984:
2515 * dwarf2read.c (dwarf2_section_info_def): New typedef.
2516 (struct dwarf2_per_objfile) <types>: Change to a VEC.
2517 (struct dwarf2_per_cu_data) <from_debug_types>: Remove.
2518 <debug_type_section>: New field.
2519 (dwarf2_locate_sections): Push .debug_types sections onto VEC.
2520 (load_cu): Use appropriate section.
2521 (create_signatured_type_table_from_index): Add 'section'
2522 argument.
2523 (dwarf2_read_index): Only allow a single .debug_types section.
2524 (dw2_get_file_names): Use appropriate section.
2525 (read_type_comp_unit_head): Add 'section' argument.
2526 (create_debug_types_hash_table): Loop over all .debug_types
2527 sections.
2528 (init_cu_die_reader): Use appropriate section.
2529 (process_psymtab_comp_unit, load_partial_comp_unit)
2530 (load_full_comp_unit, read_die_and_children, find_partial_die)
2531 (lookup_die_type, determine_prefix, follow_die_offset): Update.
2532 (lookup_signatured_type_at_offset): Add 'section' argument.
2533 (read_signatured_type_at_offset): Add 'sect' argument.
2534 (read_signatured_type): Use appropriate section.
2535 (set_die_type, get_die_type_at_offset): Update.
2536 (dwarf2_per_objfile_free): Free all .debug_types sections, and
2537 VEC.
2538 (write_psymtabs_to_index): Don't allow index with more than one
2539 .debug_types section.
2540
2541 2011-07-19 Jan Kratochvil <jan.kratochvil@redhat.com>
2542
2543 Fix crash if referenced CU is aged out.
2544 * dwarf2loc.c (per_cu_dwarf_call): New variable back_to, use to for
2545 xfree of block.data.
2546 (indirect_pieced_value): New variable back_to, use to for xfree of
2547 baton.data.
2548 (dwarf2_compile_expr_to_ax): New variable back_to, use to for xfree of
2549 block.data.
2550 * dwarf2read.c (dwarf2_find_base_address): New prototype.
2551 (load_cu): New function from ...
2552 (dw2_do_instantiate_symtab): ... the code here ...
2553 (process_full_comp_unit): ... and here.
2554 (dwarf2_fetch_die_location_block): Call load_cu first. Call xmemdup on
2555 retval.data.
2556
2557 2011-07-19 Jan Kratochvil <jan.kratochvil@redhat.com>
2558
2559 * dwarf2loc.c (indirect_pieced_value): Use check_typedef for VALUE's
2560 type.
2561
2562 2011-07-19 Gary Benson <gbenson@redhat.com>
2563
2564 * infrun.c (struct execution_control_state): New member
2565 stop_func_filled_in.
2566 (clear_stop_func, fill_in_stop_func): New functions.
2567 (handle_inferior_event): Call clear_stop_func rather than
2568 manipulating the execution control state directly.
2569 Call fill_in_stop_func lazily as required rather than
2570 directly calling find_pc_partial_function in all cases.
2571
2572 2011-07-18 Tom Tromey <tromey@redhat.com>
2573
2574 * dwarf2read.c (read_subrange_type): Use attr_form_is_block when
2575 checking for variable-sized array.
2576
2577 2011-07-18 Jean-Charles Delay <delay@adacore.com>
2578
2579 * varobj.h (varobj_languages): Add vlang_ada definition to the list
2580 of supported languages.
2581 * varobj.c: Add top definitions and basic implementation of the
2582 following callbacks: ada_number_of_children, ada_name_of_variable,
2583 ada_name_of_child, ada_path_expr_of_child, ada_value_of_root,
2584 ada_value_of_child, ada_type_of_child, ada_value_of_variable.
2585 (languages): Register Ada-specific callbacks.
2586 (variable_language): Add the Ada case in the language setter switch.
2587
2588 2011-07-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2589
2590 * remote-mips.c (pmon_download): Fix ignored return value GCC warning.
2591
2592 2011-07-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2593
2594 Code cleanup.
2595 * dwarf2-frame.c (dwarf2_frame_ctx_funcs): New.
2596 (execute_stack_op): Use dwarf2_frame_ctx_funcs
2597 * dwarf2expr.c (dwarf_get_base_type): Access get_base_type via funcs.
2598 (execute_stack_op): Access read_reg, get_frame_base, read_mem,
2599 get_frame_cfa, get_tls_address and dwarf_call via funcs.
2600 * dwarf2expr.h (struct dwarf_expr_context): New forward declaration.
2601 (struct dwarf_expr_context_funcs): New, move here methods from ...
2602 (struct dwarf_expr_context): ... here. New fields funcs.
2603 * dwarf2loc.c (dwarf_expr_dwarf_call): Access get_frame_pc via funcs.
2604 (dwarf_expr_ctx_funcs): New.
2605 (dwarf2_evaluate_loc_desc_full): Use dwarf_expr_ctx_funcs.
2606 (needs_frame_dwarf_call): Access get_frame_pc via funcs.
2607 (needs_frame_ctx_funcs): New.
2608 (dwarf2_loc_desc_needs_frame): Use needs_frame_ctx_funcs.
2609
2610 2011-07-15 Fawzi Mohamed <fawzi.mohamed@nokia.com>
2611
2612 * MAINTAINERS (Write After Approval): Add myself to the list.
2613
2614 2011-07-15 Fawzi Mohamed <fawzi.mohamed@nokia.com>
2615
2616 * dwarf2-frame.c (decode_frame_entry, decode_frame_entry_1): Ensure
2617 that CIE pointer of an FDE really points to a CIE .
2618
2619 2011-07-15 Hui Zhu <teawater@gmail.com>
2620
2621 * remote.c (remote_get_trace_status): Add comments.
2622
2623 2011-07-14 Jan Kratochvil <jan.kratochvil@redhat.com>
2624
2625 Code cleanup - constify struct lval_funcs.
2626 * dwarf2loc.c (pieced_value_funcs): Make it const.
2627 * infrun.c (siginfo_value_funcs): Likewise.
2628 * opencl-lang.c (opencl_value_funcs): Likewise.
2629 * valops.c (value_assign, value_ind): Make the funcs variable const.
2630 * value.c (struct value): Make location.computed.funcs target const.
2631 Rearrange the comments.
2632 (allocate_computed_value): Make the funcs parameter target const.
2633 (value_computed_funcs): Return the funcs target const.
2634 (value_free, value_copy, set_value_component_location): Make the funcs
2635 variable const.
2636 * value.h (allocate_computed_value): Make the funcs parameter target
2637 const.
2638 (value_computed_funcs): Return the funcs target const.
2639 * windows-tdep.c (tlb_value_funcs): Make it const.
2640
2641 2011-07-14 Hui Zhu <teawater@gmail.com>
2642
2643 * remote.c (remote_get_trace_status): Initialize p.
2644
2645 2011-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2646
2647 Work around kgdb.
2648 * remote.c (remote_get_trace_status): New variable ex. Put
2649 remote_get_noisy_reply into TRY_CATCH. Call exception_fprintf for it.
2650
2651 2011-07-13 Tom Tromey <tromey@redhat.com>
2652
2653 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_regval_type>: Use
2654 value_from_contents for final conversion.
2655
2656 2011-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2657
2658 Code cleanup.
2659 * dwarf2loc.c (dwarf_expr_frame_base_1, dwarf2_evaluate_loc_desc_full):
2660 Indent prototypes so they do not get into tags.
2661
2662 2011-07-12 Jan Kratochvil <jan.kratochvil@redhat.com>
2663
2664 Code cleanup making also optimized out values lazy.
2665 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
2666 allocate_optimized_out_value. Twice.
2667 (loclist_read_variable) Use allocate_optimized_out_value. Once.
2668 * findvar.c (read_var_value): Likewise.
2669 * value.c (allocate_optimized_out_value): New function.
2670 * value.h (allocate_optimized_out_value): New declaration.
2671
2672 2011-07-12 Jan Kratochvil <jan.kratochvil@redhat.com>
2673
2674 Fix occasional crash of CTRL-C during DWARF read in.
2675 * dwarf2read.c (dwarf2_mark_helper): Return on NULL CU.
2676
2677 2011-07-11 Tom Tromey <tromey@redhat.com>
2678
2679 * regcache.c (struct regcache_descr): Fix typo.
2680 * i387-tdep.c (i387_supply_xsave): Fix typo.
2681
2682 2011-07-11 Tom Tromey <tromey@redhat.com>
2683
2684 * dwarf2read.c (handle_DW_AT_stmt_list): New function.
2685 (read_file_scope, read_type_unit_scope): Use it.
2686
2687 2011-07-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2688
2689 * dwarf2expr.c (read_sleb128): Fix signed extension overflowing host
2690 `int'.
2691
2692 2011-07-11 Phil Muldoon <pmuldoon@redhat.com>
2693
2694 PR python/12438
2695 * python/python.c: Set gdbpy_should_print_stack default to off.
2696 (set_python): Deprecate maint set python print-stack to
2697 class_deprecate.
2698 (_initialize_python): Deprecate maint set/show python print-stack.
2699 Add new prefix command, python. Add new setting, print-backtrace.
2700 * NEWS: Document set python print-stack. Document default change.
2701
2702 2011-07-11 Phil Muldoon <pmuldoon@redhat.com>
2703
2704 * python/py-inferior.c (infpy_dealloc): New function.
2705 (inferior_to_inferior_object): Return a new object, or a
2706 new reference to the existing object.
2707 (find_thread_object): Cleanup references to inferior.
2708 (delete_thread_object): Ditto.
2709 * python/py-infthread.c (create_thread_object): Do not increment
2710 inferior reference count.
2711
2712 2011-07-08 Tom Tromey <tromey@redhat.com>
2713
2714 * dwarf2loc.c (locexpr_regname): New function.
2715 (locexpr_describe_location_piece): Use it.
2716 (disassemble_dwarf_expression): Add per_cu argument. Use
2717 locexpr_regname.
2718 <DW_OP_GNU_deref_type, DW_OP_GNU_const_type,
2719 DW_OP_GNU_regval_type, DW_OP_GNU_convert, DW_OP_GNU_reinterpret>:
2720 New cases.
2721 (locexpr_describe_location_1): Add per_cu argument.
2722 (locexpr_describe_location): Update.
2723 (loclist_describe_location): Update.
2724
2725 2011-07-08 Tom Tromey <tromey@redhat.com>
2726
2727 * dwarf2expr.c (execute_stack_op): Add QUIT.
2728
2729 2011-07-07 Hui Zhu <teawater@gmail.com>
2730
2731 Revert:
2732 2011-07-06 Hui Zhu <teawater@gmail.com>
2733 * remote.c (remote_start_remote): Add TRY_CATCH for
2734 remote_get_trace_status.
2735 * tracepoint.c (disconnect_tracing): Ditto.
2736
2737 2011-07-07 Andrew Burgess <aburgess@broadcom.com>
2738
2739 * cli/cli-setshow.c (do_setshow_command): Display var_zinteger
2740 variables as signed, not unsigned.
2741
2742 2011-07-06 Joel Brobecker <brobecker@adacore.com>
2743
2744 * jit.c (jit_inferior_init): Reformat forward declaration.
2745
2746 2011-07-06 Matt Rice <ratmice@gmail.com>
2747
2748 * MAINTAINERS (Write After Approval): Add myself to the list.
2749
2750 2011-07-06 Hui Zhu <teawater@gmail.com>
2751
2752 * remote.c (remote_start_remote): Add TRY_CATCH for
2753 remote_get_trace_status.
2754 * tracepoint.c (disconnect_tracing): Ditto.
2755
2756 2011-07-05 Tom Tromey <tromey@redhat.com>
2757
2758 * symtab.c (operator_chars): Now static.
2759 * linespec.c (operator_chars): Don't declare.
2760
2761 2011-07-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
2762
2763 * ui-out.h (ui_out_field_core_addr): Fix typo in comment.
2764
2765 2011-07-05 Tom Tromey <tromey@redhat.com>
2766
2767 * gnu-v3-abi.c (gnuv3_rtti_type): Check TYPE_CPLUS_REALLY_JAVA.
2768 * gdbtypes.h (struct cplus_struct_type) <is_java>: New field.
2769 (TYPE_CPLUS_REALLY_JAVA): New macro.
2770 * dwarf2read.c (process_structure_scope): Set
2771 TYPE_CPLUS_REALLY_JAVA.
2772
2773 2011-07-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
2774
2775 * ada-lang.c: Fix typos.
2776 * amd64-tdep.c: Likewise.
2777 * breakpoint.c: Likewise.
2778 * cli/cli-decode.c: Likewise.
2779 * findcmd.c: Likewise.
2780 * inline-frame.c: Likewise.
2781 * mi/mi-main.c: Likewise.
2782 * minsyms.c: Likewise.
2783 * monitor.c: Likewise.
2784 * monitor.h: Likewise.
2785 * prologue-value.c: Likewise.
2786 * reverse.c: Likewise.
2787 * s390-tdep.c: Likewise.
2788
2789 2011-07-06 Paul Pluzhnikov <ppluzhnikov@google.com>
2790
2791 * jit.c (jit_inferior_init): Forward declare.
2792 (jit_breakpoint_re_set_internal): Call jit_inferior_init.
2793
2794 2011-07-04 Joel Brobecker <brobecker@adacore.com>
2795
2796 * osabi.c (generic_elf_osabi_sniffer): Minor comment reformatting.
2797
2798 2011-07-04 Tristan Gingold <gingold@adacore.com>
2799
2800 * ada-tasks.c (KNOWN_TASKS_LIST): New macro.
2801 (tcb_fieldno): Add activation_link field.
2802 (get_known_tasks_addr): Moved and rewritten.
2803 (get_tcb_types_info): Set activation_link field.
2804 (read_known_tasks_array): Add parameter. Rewritten.
2805 (read_known_tasks_list): New function.
2806 (read_known_tasks): New function.
2807 (ada_build_task_list): Call read_known_tasks instead of
2808 read_known_tasks_array.
2809 * ravenscar-thread.c: Add first_task_name constant.
2810 (has_ravenscar_runtime): Check for task list too.
2811
2812 2011-07-04 Tristan Gingold <gingold@adacore.com>
2813
2814 * ada-tasks.c: Renames fieldno to actb_fieldno.
2815 (ada_get_task_number): Indentation.
2816 (get_tcb_types_info): Remove all parameters. Write directly
2817 the globals.
2818 (ptid_from_atcb_common): Adjust.
2819 (read_atcb): Adjust.
2820
2821 2011-07-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
2822
2823 * symtab.c (in_prologue): Remove mention of ppc's refine_prologue_limit.
2824
2825 2011-07-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
2826
2827 * ui-out.c (ui_out_field_core_addr): Mention that the function
2828 description is in the header file.
2829 * ui-out.h (ui_out_field_core_addr): Document function.
2830
2831 2011-07-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
2832
2833 * ui-out.c (ui_out_get_field_separator): Remove unused function.
2834 * ui-out.h (ui_out_get_field_separator): Remove prototype.
2835
2836 2011-07-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
2837
2838 * symtab.c (expand_line_sal): Remove empty line.
2839
2840 2011-07-04 Thomas Schwinge <thomas@schwinge.name>
2841
2842 * osabi.c (generic_elf_osabi_sniffer) <ELFOSABI_GNU>: Handle in the
2843 same way as ELFOSABI_NONE.
2844 <ELFOSABI_LINUX, ELFOSABI_HURD>: Remove cases.
2845
2846 2011-07-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
2847
2848 * breakpoint.c: Fix typos in comments.
2849 * linespec.c: Likewise.
2850 * symtab.c: Likewise.
2851
2852 2011-07-04 Joel Brobecker <brobecker@adacore.com>
2853
2854 * dwarf2-frame.c (dwarf2_build_frame_info): Do not load .eh_frame
2855 section in separate object files.
2856
2857 2011-07-04 Jan Kratochvil <jan.kratochvil@redhat.com>
2858
2859 Fix false GCC warning.
2860 * linespec.c (decode_line_1): Initialize values.
2861
2862 2011-07-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2863
2864 * linespec.c (find_method): Accept the function type automatically only
2865 if it was specified with parameter types.
2866
2867 2011-07-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2868
2869 Stop on first linespec terminator instead of eating what we can.
2870 * linespec.c (is_linespec_boundary): New function.
2871 (name_end): Remove function.
2872 (keep_name_info): New parameter on_boundary, replace the body.
2873 (decode_line_1): Provide the parameter to keep_name_info.
2874 (decode_compound): Likewise. Drop the trailing java return type
2875 handling. Twice.
2876
2877 2011-07-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2878
2879 Fall back linespec to minimal symbols.
2880 * linespec.c (decode_line_1): New variable ex, saved_argptr. Protect
2881 decode_compound by TRY_CATCH, fall back on minsyms if it failed.
2882 (find_method, symbol_found): Change error to cplusplus_error.
2883
2884 2011-07-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2885
2886 * symtab.c (symbol_find_demangled_name): Remove DMGL_VERBOSE.
2887
2888 2011-07-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2889 Tom Tromey <tromey@redhat.com>
2890
2891 * dwarf2read.c (check_physname): New variable.
2892 (dwarf2_physname): Prefer DW_AT_linkage_name over dwarf2_compute_name.
2893 (show_check_physname): New function.
2894 (_initialize_dwarf2_read): Add `check-physname' for check_physname.
2895
2896 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2897
2898 * machoread.c (macho_symfile_read): Delete OBE comment.
2899
2900 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2901
2902 * machoread.c (struct macho_oso_data): Delete.
2903 (current_oso): Delete.
2904 (macho_relocate_common_syms): New function, mostly extracted
2905 out of
2906 (macho_add_oso_symfile): Call macho_relocate_common_syms.
2907 Remove code that sets and unset current_oso.
2908 (macho_symfile_relocate): Delete handling of common symbols,
2909 now moved to macho_relocate_common_syms.
2910
2911 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2912
2913 * darwin-nat.c (darwin_ptrace): Add documentation.
2914 Set errno to zero before calling ptrace. If ptrace returns
2915 -1 and errno is zero, then change then return zero.
2916 (darwin_kill_inferior): Issue a warning instead of triggering
2917 a failed assertion when the PT_KILL ptrace operations returned
2918 nonzero.
2919
2920 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2921
2922 * darwin-nat.c (darwin_detach): Call darwin_resume_inferior
2923 only when inf->private->no_ptrace.
2924
2925 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2926
2927 * ada-lang.c (print_it_exception): Print temporary catchpoints
2928 as "Temporary catchpoint".
2929 (print_mention_exception): Likewise.
2930
2931 2011-07-01 Tom Tromey <tromey@redhat.com>
2932
2933 * jv-lang.c (java_language_defn): Use java_printchar,
2934 java_printstr.
2935 (java_get_encoding): New function.
2936 (java_emit_char): Use generic_emit_char.
2937 (java_printchar): New function.
2938 (java_printstr): Likewise.
2939
2940 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2941
2942 * ada-typeprint.c (print_record_type): If unable to decode
2943 the name of the parent type, use the encoded name.
2944
2945 2011-07-01 Jean-Charles Delay <delay@adacore.com>
2946
2947 * ada-typeprint.c (ada_print_type): Fix both PAD type and
2948 pointer to constrained packed array type output.
2949 * ada-valprint.c (ada_val_print_1): Fix pointer to constrained
2950 packed array output.
2951
2952 2011-07-01 Jean-Charles Delay <delay@adacore.com>
2953
2954 * ada-typeprint.c (print_array_type): removed if condition on show
2955 being negative for bounds printing.
2956
2957 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2958
2959 * ada-lang.c (ada_identical_enum_types_p): New function.
2960 (symbols_are_identical_enums): New function.
2961 (remove_extra_symbols): Do nothing if NSYMS < 2.
2962 Use symbols_are_identical_enums.
2963
2964 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2965
2966 * ada-valprint.c (ada_value_print): Handle typedefs.
2967
2968 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2969
2970 * ada-lang.c (ada_evaluate_subexp): Add missing word in comment.
2971
2972 2011-07-01 Eric Botcazou <ebotcazou@adacore.com>
2973
2974 * ada-lang.c (thin_descriptor_type): Deal with typedefs.
2975 (decode_constrained_packed_array): Likewise.
2976 (ada_evaluate_subexp) <TERNOP_SLICE>: Likewise.
2977
2978 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2979
2980 * ada-exp.y (convert_char_literal): Handle typedef types.
2981
2982 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2983
2984 * ada-lang.c (ada_remove_trailing_digits): Expand documentation.
2985
2986 2011-06-30 Tom Tromey <tromey@redhat.com>
2987
2988 * varobj.c (varobj_create): Call do_cleanups on early exit path.
2989 * valops.c (find_overload_match): Call do_cleanups on early exit
2990 path.
2991 * solib.c (solib_find): Call do_cleanups on early exit path.
2992
2993 2011-06-30 Tom Tromey <tromey@redhat.com>
2994
2995 * symfile-mem.c (symbol_file_add_from_memory): Call do_cleanups.
2996 * solib-svr4.c (open_symbol_file_object): Call do_cleanups on all
2997 return paths. Defer final do_cleanups until last return.
2998 * arm-tdep.c (arm_exidx_new_objfile): Make null cleanup after
2999 early return.
3000
3001 2011-06-30 Tom Tromey <tromey@redhat.com>
3002
3003 * Makefile.in (SUBDIR_MI_CFLAGS): Don't add -DMI_OUT=1.
3004
3005 2011-06-30 Andrew Burgess <aburgess@broadcom.com>
3006
3007 * MAINTAINERS (Write After Approval): Add myself to the list.
3008
3009 2011-06-29 Jan Kratochvil <jan.kratochvil@redhat.com>
3010
3011 Disable epilogue unwinders on recent GCCs.
3012 * amd64-tdep.c (amd64_in_function_epilogue_p): New variable symtab,
3013 initialize it, return 0 on EPILOGUE_UNWIND_VALID.
3014 * dwarf2read.c (process_full_comp_unit): Initialize
3015 EPILOGUE_UNWIND_VALID.
3016 * i386-tdep.c (i386_in_function_epilogue_p): New variable symtab,
3017 initialize it, return 0 on EPILOGUE_UNWIND_VALID.
3018 * symtab.h (struct symtab): New field epilogue_unwind_valid.
3019
3020 2011-06-29 Jan Kratochvil <jan.kratochvil@redhat.com>
3021
3022 Code cleanup - reformatting.
3023 * dwarf2read.c (producer_is_gcc_ge_4_0): Rename to ...
3024 (producer_is_gcc_ge_4): ... here, change the return value.
3025 (process_full_comp_unit): New variable gcc_4_minor, adjust the value
3026 interpretation.
3027
3028 2011-06-29 Jan Kratochvil <jan.kratochvil@redhat.com>
3029
3030 Fix non-only rename list for Fortran modules import.
3031 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Adjust the
3032 cp_add_using_directive caller.
3033 (cp_add_using_directive): New parameter excludes, describe it. New
3034 variables ix and param. Compare if also excludes match. Allocate NEW
3035 with variable size, initialize EXCLUDES there.
3036 (cp_lookup_symbol_imports): New variable excludep, test
3037 current->EXCLUDES with it.
3038 * cp-support.h: Include vec.h.
3039 (struct using_direct): New field excludes, describe it.
3040 (DEF_VEC_P (const_char_ptr)): New.
3041 (cp_add_using_directive): New parameter excludes.
3042 * defs.h (const_char_ptr): New typedef.
3043 * dwarf2read.c (read_import_statement): New variables child_die,
3044 excludes and cleanups, read in excludes.
3045 (read_namespace): Adjust the cp_add_using_directive caller.
3046
3047 2011-06-29 Jan Kratochvil <jan.kratochvil@redhat.com>
3048
3049 Code cleanup.
3050 * cp-namespace.c (cp_add_using_directive): Turn positive comparison to
3051 negative comparisons.
3052
3053 2011-06-29 André Pönitz <andre.poenitz@nokia.com>
3054
3055 * mi/mi-main.c (mi_cmd_list_features): Emit
3056 breakpoint-notifications.
3057
3058 2011-06-29 Tom Tromey <tromey@redhat.com>
3059
3060 PR fortran/10036:
3061 * valprint.h (generic_emit_char, generic_printstr): Declare.
3062 * valprint.c (wchar_printable, append_string_as_wide)
3063 (print_wchar): Move from c-lang.c.
3064 (generic_emit_char): New function; mostly taken from c_emit_char.
3065 (generic_printstr): New function; mostly taken from c_printstr.
3066 * f-valprint.c (f_val_print) <TYPE_CODE_ARRAY>: Handle strings
3067 represented as arrays.
3068 <TYPE_CODE_CHAR>: Treat as TYPE_CODE_INT; recognize as character
3069 type.
3070 * f-typeprint.c (f_type_print_base) <TYPE_CODE_CHAR>: Treat
3071 identically to TYPE_CODE_INT.
3072 * f-lang.c (f_get_encoding): New function.
3073 (f_emit_char): Use generic_emit_char.
3074 (f_printchar): Replace comment.
3075 (f_printstr): Use generic_printstr.
3076 * dwarf2read.c (read_base_type) <DW_ATE_unsigned>: Handle Fortran
3077 "character" types specially.
3078 <DW_ATE_signed_char, DW_ATE_unsigned_char>: Make TYPE_CODE_CHAR
3079 for Fortran.
3080 * c-lang.c (wchar_printable, append_string_as_wide, print_wchar):
3081 Move to valprint.c
3082 (c_emit_char): Call generic_emit_char.
3083 (c_printstr): Call generic_printstr.
3084
3085 2011-06-29 Gary Benson <gbenson@redhat.com>
3086
3087 * breakpoint.c (bpstat_what): Removed duplicated case.
3088
3089 2011-06-28 Tom Tromey <tromey@redhat.com>
3090
3091 * python/python-internal.h (PY_SSIZE_T_CLEAN): Define.
3092
3093 2011-06-27 Tom Tromey <tromey@redhat.com>
3094
3095 * valops.c (find_overload_match): Call do_cleanups before early
3096 return.
3097 * top.c (execute_command): Call do_cleanups before early return.
3098 (command_loop): Likewise.
3099 * stack.c (backtrace_command): Make a null cleanup early. Don't
3100 conditionally call do_cleanups.
3101 * python/py-value.c (TRY_CATCH): Move cleanup handling into
3102 TRY_CATCH.
3103 * python/py-breakpoint.c (gdbpy_breakpoint_has_py_cond): Rearrange
3104 so cleanups are always run.
3105 * mi/mi-cmd-var.c (mi_cmd_var_delete): Reset old_cleanups.
3106 * findcmd.c (parse_find_args): Call do_cleanups on early return
3107 path.
3108 * dbxread.c (elfstab_build_psymtabs): Make a null cleanup early.
3109 Don't conditionally call do_cleanups.
3110 * cli/cli-script.c (execute_user_command): Initialize 'old_chain'
3111 later.
3112
3113 2011-06-27 Eric Botcazou <ebotcazou@adacore.com>
3114
3115 * MAINTAINERS (Write After Approval): Use default email address.
3116
3117 2011-06-27 Joel Brobecker <brobecker@adacore.com>
3118
3119 * MAINTAINERS (Write After Approval): Add Eric Botcazou.
3120
3121 2011-06-27 Eric Botcazou <ebotcazou@adacore.com>
3122
3123 * sparc-tdep.h (struct sparc_frame_cache): Add frame_offset,
3124 saved_regs_mask and copied_regs_mask fields.
3125 (sparc_record_save_insn): New prototype.
3126 * sparc-tdep.c (sparc_alloc_frame_cache): Initialize the new fields.
3127 (sparc_record_save_insn): New function.
3128 (sparc_analyze_prologue): Add head comment. Recognize store insns
3129 of call-saved registers. Use OFFSET consistently. Recognize flat
3130 frames and cache their settings.
3131 (sparc32_skip_prologue): Handle flat frames.
3132 (sparc_frame_cache): Add frame_offset to the base address.
3133 (sparc32_frame_cache): Adjust to new frame description.
3134 (sparc32_frame_prev_register): Likewise.
3135 * sparc64-tdep.c (sparc64_frame_prev_register): Likewise.
3136 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_cache): Likewise.
3137 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_cache): Likewise.
3138 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_cache): Force the
3139 frame by calling sparc_record_save_insn.
3140 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_cache): Likewise.
3141 * sparcobsd-tdep.c (sparc32obsd_sigtramp_frame_cache): Likewise.
3142 * sparc64obsd-tdep.c (sparc64obsd_frame_cache): Likewise.
3143
3144 2011-06-27 Tristan Gingold <gingold@adacore.com>
3145
3146 * dwarf2read.c (struct dwarf2_section_info): Replace was_mmapped
3147 field by map_addr and map_len.
3148 (dwarf2_read_section): Adjust for the new bfd_mmap api.
3149 (munmap_section_buffer): Likewise.
3150
3151 2011-06-24 Tom Tromey <tromey@redhat.com>
3152
3153 * varobj.c (update_dynamic_varobj_children): Make 'name' const.
3154 * symtab.h (lookup_struct, lookup_union, lookup_enum): Update.
3155 * python/python.c (gdbpy_parameter): Make 'arg' const.
3156 (execute_gdb_command): Likewise.
3157 (gdbpy_decode_line): Likewise. Copy it.
3158 (gdbpy_parse_and_eval): Make 'expr_string' const. Copy it.
3159 (gdbpy_write): Make 'arg' const.
3160 * python/py-type.c (typy_lookup_typename): Make 'type_name'
3161 const.
3162 (gdbpy_lookup_type): Likewise.
3163 * python/py-prettyprint.c (print_children): Make 'name' const.
3164 * python/py-param.c (parmpy_init): Make 'name' const. Copy it.
3165 * python/py-inferior.c (infpy_write_memory): Make 'buf_len' a
3166 Py_ssize_t.
3167 * python/py-function.c (fnpy_init): Make 'name' const.
3168 * python/py-cmd.c (cmdpy_init): Make 'name' const. Copy it.
3169 (gdbpy_string_to_argv): Make 'input' const.
3170 * python/py-breakpoint.c (bppy_init): Make 'spec' const. Copy
3171 it.
3172 * gdbtypes.h (lookup_typename): Update.
3173 * gdbtypes.c (lookup_typename): Make 'name' const.
3174 (lookup_struct): Likewise.
3175 (lookup_union): Likewise.
3176 (lookup_enum): Likewise.
3177
3178 2011-06-24 Tom Tromey <tromey@redhat.com>
3179
3180 * Makefile.in (HFILES_NO_SRCDIR): Add "common/" to
3181 gdb_thread_db.h. Move all common/ entries to be together.
3182 (TAGS): Don't depend on DEPFILES.
3183
3184 2011-06-23 Yao Qi <yao@codesourcery.com>
3185
3186 * infrun.c (start_remote): Move call init_wait_for_inferior to ...
3187 * remote.c (remote_start_remote): ... here.
3188 * monitor.c (monitor_open): ... here.
3189
3190 2011-06-23 Andrew Burgess <aburgess@broadcom.com>
3191
3192 * gdbtypes.c (append_composite_type_field_aligned): Fix
3193 calculation of bit position based on alignment.
3194
3195 2011-06-22 Pedro Alves <pedro@codesourcery.com>
3196
3197 * breakpoint.c (bpstat_stop_status): Call the check_status
3198 breakpoint_ops method.
3199 (print_one_breakpoint_location): Also print the condition for Ada
3200 exception catchpoints.
3201 (allocate_bp_location): New, factored out from
3202 allocate_bp_location.
3203 (allocate_bp_location): Adjust. Call the owner breakpoint's
3204 allocate_location method, if there is one.
3205 (free_bp_location): Call the locations's dtor method, if there is
3206 one.
3207 (init_raw_breakpoint_without_location): New breakpoint_ops
3208 parameter. Use it.
3209 (set_raw_breakpoint_without_location): Adjust.
3210 (init_raw_breakpoint): New breakpoint_ops parameter. Pass it down.
3211 (set_raw_breakpoint): Adjust.
3212 (catch_fork_breakpoint_ops, catch_vfork_breakpoint_ops)
3213 (catch_syscall_breakpoint_ops): Install NULL allocate_location,
3214 re_set and check_status methods.
3215 (init_catchpoint): Don't memset, initialize thread, addr_string
3216 and enable_state. Pass the ops down to init_raw_breakpoint.
3217 (install_catchpoint): Rename to ...
3218 (install_breakpoint): ... this, and make extern.
3219 (create_fork_vfork_event_catchpoint): Adjust.
3220 (catch_exec_breakpoint_ops): Install NULL allocate_location,
3221 re_set and check_status methods.
3222 (create_syscall_event_catchpoint): Adjust.
3223 (ranged_breakpoint_ops, watchpoint_breakpoint_ops)
3224 (masked_watchpoint_breakpoint_ops): Install NULL
3225 allocate_location, re_set and check_status methods.
3226 (catch_exec_command_1): Adjust.
3227 (gnu_v3_exception_catchpoint_ops): Install NULL allocate_location,
3228 re_set and check_status methods.
3229 (create_ada_exception_breakpoint): Rename to ...
3230 (init_ada_exception_breakpoint): ... this. Add a struct
3231 breakpoint parameter, and delete the exp_string, cond_string and
3232 cond parameters. Use init_raw_breakpoint, and don't install or
3233 mention the breakpoint yet. Don't clear breakpoint fields that
3234 init_raw_breakpoint already clears.
3235 (re_set_breakpoint): Delete, split into ...
3236 (breakpoint_re_set_default, prepare_re_set_context): ... these new
3237 functions.
3238 (breakpoint_re_set_one): Call the breakpoint's
3239 breakpoint_ops->re_set implementation, if there's one. Adjust.
3240 * breakpoint.h: Forward declare struct bpstats and struct bp_location.
3241 (struct bp_location_ops): New type.
3242 (struct bp_location): New field `ops'.
3243 (struct breakpoint_ops): New `allocate_location', `re_set' and
3244 `check_status' fields. Make `breakpoint_hit''s description match
3245 reality.
3246 (init_bp_location): Declare.
3247 (breakpoint_re_set_default): Declare.
3248 (create_ada_exception_breakpoint): Rename to ...
3249 (init_ada_exception_breakpoint): ... this. Add a struct
3250 breakpoint parameter, and delete the exp_string, cond_string and
3251 cond parameters.
3252 (install_breakpoint): Declare.
3253 * ada-lang.c: Include exceptions.h.
3254 <Ada exceptions description>: Update.
3255 (struct ada_catchpoint_location): New type.
3256 (ada_catchpoint_location_dtor): New function.
3257 (ada_catchpoint_location_ops): New global.
3258 (ada_catchpoint): New type.
3259 (create_excep_cond_exprs): New function.
3260 (dtor_exception, allocate_location_exception, re_set_exception)
3261 (should_stop_exception, check_status_exception): New functions.
3262 (print_one_exception, print_mention_exception)
3263 (print_recreate_exception): Adjust.
3264 (dtor_catch_exception, allocate_location_catch_exception)
3265 (re_set_catch_exception, check_status_catch_exception): New
3266 functions.
3267 (catch_exception_breakpoint_ops): Install them.
3268 (dtor_catch_exception_unhandled)
3269 (allocate_location_catch_exception_unhandled)
3270 (re_set_catch_exception_unhandled)
3271 (check_status_catch_exception_unhandled): New functions.
3272 (catch_exception_unhandled_breakpoint_ops): Install them.
3273 (dtor_catch_assert, allocate_location_catch_assert)
3274 (re_set_catch_assert, check_status_catch_assert): New functions.
3275 (catch_assert_breakpoint_ops): Install them.
3276 (ada_exception_catchpoint_p): Delete.
3277 (catch_ada_exception_command_split)
3278 (ada_exception_catchpoint_cond_string): Rename exp_string
3279 parameter to excep_string. Adjust.
3280 (ada_parse_catchpoint_condition): Delete.
3281 (ada_exception_sal): Rename the exp_string parameter to
3282 excep_string. Delete the cond_string and cond parameters.
3283 Adjust.
3284 (ada_decode_exception_location): Rename the exp_string parameter
3285 to excep_string. Delete the cond_string and cond parameters.
3286 Adjust.
3287 (create_ada_exception_catchpoint): New function.
3288 (catch_ada_exception_command, ada_decode_assert_location)
3289 (catch_assert_command): Adjust.
3290 * ada-lang.h (ada_exception_catchpoint_p): Delete declaration.
3291
3292 2011-06-22 Pedro Alves <pedro@codesourcery.com>
3293
3294 * ada-lang.c: Include arch-utils.h.
3295 (ada_decode_exception_location): Make static.
3296 (catch_ada_exception_command): Moved here from breakpoint.c.
3297 (ada_decode_assert_location): Make static.
3298 (catch_assert_command): Moved here from breakpoint.c.
3299 (_initialize_ada_lang): Install the exception and assert
3300 catchpoint commands here.
3301 * ada-lang.h (ada_decode_exception_location)
3302 (ada_decode_assert_location): Delete declarations.
3303 * breakpoint.c (CATCH_PERMANENT, CATCH_TEMPORARY): Moved to
3304 breakpoint.h.
3305 (create_ada_exception_breakpoint): Make extern.
3306 (catch_ada_exception_command, catch_assert_command): Moved to
3307 ada-lang.c.
3308 (add_catch_command): Make extern.
3309 (_initilize_breakpoint): Don't install the exception and assert
3310 catchpoint commands here.
3311 * breakpoint.h (CATCH_PERMANENT, CATCH_TEMPORARY): Moved from
3312 breakpoint.c
3313 (add_catch_command, create_ada_exception_breakpoint): Declare.
3314
3315 2011-06-22 Pedro Alves <pedro@codesourcery.com>
3316
3317 * breakpoint.c (init_raw_breakpoint_without_location): Don't add
3318 the breakpoint to the breakpoint chain here.
3319 (set_raw_breakpoint_without_location): Add the breakpoint to the
3320 breakpoint chain here.
3321 (init_raw_breakpoint): Adjust comments.
3322 (set_raw_breakpoint): Add the breakpoint to the breakpoint chain
3323 here.
3324 (init_catchpoint): Don't set the catchpoint's breakpoint number
3325 here.
3326 (install_catchpoint): New function.
3327 (create_fork_vfork_event_catchpoint)
3328 (create_syscall_event_catchpoint, catch_exec_command_1): Adjust to
3329 use install_catchpoint.
3330
3331 2011-06-22 Pedro Alves <pedro@codesourcery.com>
3332
3333 * breakpoint.c (create_catchpoint_without_mention)
3334 (create_catchpoint): Delete.
3335
3336 2011-06-22 Pedro Alves <pedro@codesourcery.com>
3337
3338 * breakpoint.h (struct breakpoint): Delete field `exec_pathname'.
3339 * breakpoint.c (init_raw_breakpoint_without_location): Remove
3340 reference to exec_pathname.
3341 (struct exec_catchpoint): New type.
3342 (dtor_catch_exec): New function.
3343 (insert_catch_exec, print_it_catch_exec, print_one_catch_exec): Adjust.
3344 (catch_exec_breakpoint_ops): Install dtor_catch_syscall.
3345 (catch_exec_command_1): Adjust to use init_catchpoint.
3346 (delete_breakpoint): Remove reference to exec_pathname.
3347
3348 2011-06-22 Pedro Alves <pedro@codesourcery.com>
3349
3350 * breakpoint.h (struct breakpoint_ops): New field `dtor'.
3351 (struct breakpoint): Delete field `syscalls_to_be_caught'.
3352 * breakpoint.c (init_raw_breakpoint_without_location): Remove
3353 reference to syscalls_to_be_caught.
3354 (catch_fork_breakpoint_ops, catch_vfork_breakpoint_ops): Install a
3355 NULL `dtor'.
3356 (struct syscall_catchpoint): New type.
3357 (dtor_catch_syscall): New function.
3358 (insert_catch_syscall, remove_catch_syscall)
3359 (breakpoint_hit_catch_syscall, print_one_catch_syscall)
3360 (print_recreate_catch_syscall): Adjust.
3361 (catch_syscall_breakpoint_ops): Install dtor_catch_syscall.
3362 (catch_exec_breakpoint_ops): Install a NULL `dtor'.
3363 (create_syscall_event_catchpoint): Adjust to use init_catchpoint.
3364 (ranged_breakpoint_ops, watchpoint_breakpoint_ops)
3365 (masked_watchpoint_breakpoint_ops)
3366 (gnu_v3_exception_catchpoint_ops): Install a NULL `dtor'.
3367 (delete_breakpoint): Call the `dtor' breakpoint_ops method, if
3368 there is one. Remove references to syscalls_to_be_caught.
3369 (catching_syscall_number): Adjust.
3370 * ada-lang.c (catch_exception_breakpoint_ops)
3371 (catch_exception_unhandled_breakpoint_ops)
3372 (catch_assert_breakpoint_ops): Install a NULL `dtor'.
3373
3374 2011-06-22 Pedro Alves <pedro@codesourcery.com>
3375
3376 * breakpoint.h (struct breakpoint): Delete forked_inferior_pid
3377 field.
3378 * breakpoint.c (init_raw_breakpoint_without_location): Remove
3379 reference to forked_inferior_pid.
3380 (struct fork_catchpoint): New type.
3381 (breakpoint_hit_catch_fork, print_it_catch_fork)
3382 (print_one_catch_fork, breakpoint_hit_catch_vfork)
3383 (print_it_catch_vfork, print_one_catch_vfork): Adjust.
3384 (create_fork_vfork_event_catchpoint): Adjust to use
3385 init_catchpoint.
3386
3387 2011-06-22 Pedro Alves <pedro@codesourcery.com>
3388
3389 * breakpoint.c (add_to_breakpoint_chain)
3390 (init_raw_breakpoint_without_location): New functions, factored
3391 out from ...
3392 (set_raw_breakpoint_without_location): ... this one.
3393 (init_raw_breakpoint): New function, factored out from
3394 set_raw_breakpoint and adjusted to use
3395 init_raw_breakpoint_without_location.
3396 (set_raw_breakpoint): Adjust.
3397 (init_catchpoint): New function, factored out from
3398 create_catchpoint_without_mention and adjusted to use
3399 init_raw_breakpoint.
3400 (create_catchpoint_without_mention): Adjust.
3401
3402 2011-06-22 Tom Tromey <tromey@redhat.com>
3403
3404 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_convert>: Treat type
3405 argument of 0 specially.
3406
3407 2011-06-22 Yao Qi <yao@codesourcery.com>
3408
3409 * infrun.c (handle_inferior_event): Remove write-only local variable
3410 `sw_single_step_trap_p'.
3411
3412 2011-06-20 Tom Tromey <tromey@redhat.com>
3413
3414 * symtab.c (lookup_language_this): End loop if block is NULL.
3415
3416 2011-06-17 Tom Tromey <tromey@redhat.com>
3417
3418 * valops.c (value_of_this): Use lookup_language_this.
3419 * symtab.h (lookup_language_this): Declare.
3420 * symtab.c (lookup_language_this): New function.
3421 (lookup_symbol_aux): Use lookup_language_this.
3422 * ax-gdb.c (gen_expr) <OP_THIS>: Use lookup_language_this.
3423
3424 2011-06-17 Tom Tromey <tromey@redhat.com>
3425
3426 * value.h (value_of_this): Update.
3427 (value_of_local): Remove.
3428 * valops.c (value_of_this): Rename from value_of_local. Change
3429 parameters.
3430 * p-exp.y (exp): Update.
3431 (variable): Likewise.
3432 * eval.c (evaluate_subexp_standard) <OP_THIS>: Use value_of_this.
3433
3434 2011-06-17 Tom Tromey <tromey@redhat.com>
3435
3436 * valops.c (value_of_local): Complain if NAME is NULL.
3437 * std-operator.def (OP_OBJC_SELF): Remove.
3438 * parse.c (operator_length_standard) <OP_OBJC_SELF>: Remove.
3439 * objc-exp.y (name_not_typename): Use OP_THIS.
3440 * expprint.c (print_subexp_standard) <OP_THIS>: Print language's
3441 name for "this".
3442 <OP_OBJC_SELF>: Remove.
3443 * eval.c (evaluate_subexp_standard) <OP_OBJC_SELF>: Remove.
3444
3445 2011-06-16 Tristan Gingold <gingold@adacore.com>
3446
3447 * python/py-events.h (gdb_py_events): Make it extern.
3448 * python/py-evtregistry.c (gdb_py_events): Declare.
3449
3450 2011-06-16 Hui Zhu <teawater@gmail.com>
3451
3452 * remote.c (remote_trace_set_readonly_regions): Add check for
3453 remote_protocol_packets[PACKET_qXfer_traceframe_info].support before
3454 output warning.
3455
3456 2011-06-15 Ulrich Weigand <ulrich.weigand@linaro.org>
3457
3458 * arm-linux-tdep.c: Include "auxv.h".
3459 (AT_HWCAP): Define.
3460 (ARM_LINUX_SIZEOF_VFP): Define.
3461 (arm_linux_supply_vfp): New function.
3462 (arm_linux_collect_vfp): Likewise.
3463 (arm_linux_regset_from_core_section): Handle .reg-arm-vfp sections.
3464 (arm_linux_fpa_regset_sections): New variable.
3465 (arm_linux_vfp_regset_sections): Likewise.
3466 (arm_linux_core_read_description): New function.
3467 (arm_linux_init_abi): Install arm_linux_core_read_description and
3468 arm_linux_fpa_regset_sections or arm_linux_vfp_regset_sections as
3469 appropriate for the architecture.
3470 * arm-tdep.h (struct gdbarch_tdep): Add member "vfpregset".
3471 (tdesc_arm_with_m): Declare.
3472 (tdesc_arm_with_iwmmxt): Likewise.
3473 (tdesc_arm_with_vfpv2): Likewise.
3474 (tdesc_arm_with_vfpv3): Likewise.
3475 (tdesc_arm_with_neon): Likewise.
3476 * arm-linux-nat.c: Move features/*.c includes ...
3477 * arm-tdep.c: ... here.
3478 * arm-linux-nat.c (arm_linux_read_description): Move initializing
3479 target description data structures ...
3480 * arm-tdep.c (_initialize_arm_tdep): ... here.
3481 * arm-linux-nat.c (HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3,
3482 HWCAP_VFPv3D16): Move definitions ...
3483 * arm-linux-tdep.h: ... here.
3484
3485 2011-06-15 Hui Zhu <teawater@gmail.com>
3486
3487 * remote.c (remote_trace_set_readonly_regions): Add a check for
3488 target_buf_size.
3489
3490 2011-06-14 Tom Tromey <tromey@redhat.com>
3491
3492 * coffread.c (coffread_objfile): Rename from current_objfile.
3493 * dbxread.c (dbxread_objfile): Rename from current_objfile.
3494 * mdebugread.c (mdebugread_objfile): Rename from current_objfile.
3495
3496 2011-06-14 Tom Tromey <tromey@redhat.com>
3497
3498 * jv-lang.c (jv_type_objfile_data_key, dynamics_objfile)
3499 (class_symtab): Remove.
3500 (jv_dynamics_progspace_key): New global.
3501 (jv_per_objfile_free): Reset program space data. Update assert.
3502 Don't clear globals.
3503 (get_dynamics_objfile): Use and set program space data.
3504 (get_java_class_symtab): Use get_dynamics_objfile.
3505 (add_class_symbol): Likewise.
3506 (java_link_class_type): Likewise.
3507 (java_object_type, jv_clear_object_type, set_java_object_type):
3508 Remove.
3509 (get_java_object_type): Update. Don't cache result.
3510 (is_object_type): Don't call set_java_object_type.
3511 (_initialize_java_language): Don't set jv_type_objfile_data_key;
3512 initialize jv_dynamics_progspace_key.
3513
3514 2011-06-14 Tom Tromey <tromey@redhat.com>
3515
3516 * symtab.h (current_objfile): Don't declare.
3517 * objfiles.h (current_objfile): Don't declare.
3518 * objfiles.c (current_objfile): Remove.
3519 * mdebugread.c (current_objfile): New file-scope global.
3520 * dbxread.c (current_objfile): New file-scope global.
3521 * coffread.c (current_objfile): New file-scope global.
3522
3523 2011-06-13 Pedro Alves <pedro@codesourcery.com>
3524
3525 * top.h (line): Rename to ...
3526 (saved_command_line): ... this.
3527 (linesize): Rename to ...
3528 (saved_command_line_size): ... this.
3529 * top.c (line): Rename to ...
3530 (saved_command_line): ... this.
3531 (linesize): Rename to ...
3532 (saved_command_line_size): ... this.
3533 (dont_repeat, command_line_input, dont_repeat_command): Adjust.
3534 * event-top.c (command_line_handler): Adjust.
3535 * main.c (captured_main): Adjust.
3536
3537 2011-06-12 Mark Kettenis <kettenis@gnu.org>
3538
3539 * i386-tdep.c (i386_epilogue_frame_cache): Simplify code. Call
3540 get_frame_func instead of get_frame_pc to determine the code
3541 address used to construct the frame ID.
3542 (i386_epilogue_frame_unwind_stop_reason): Fix coding style.
3543 (i386_epilogue_frame_this_id): Likewise.
3544 (i386_epilogue_frame_prev_register): New function.
3545 (i386_epilogue_frame_unwind): Use i386_epilogue_frame_prev_register.
3546 (i386_stack_tramp_frame_sniffer): Fix coding style.
3547 (i386_stack_tramp_frame_unwind): Use i386_epilogue_frame_prev_register.
3548 (i386_gdbarch_init): Fix comments.
3549
3550 2011-06-12 Mark Kettenis <kettenis@gnu.org>
3551
3552 * i386-tdep.c (i386_match_insn_block): Use length of the proper
3553 instruction when walking back through the instruction stream.
3554
3555 2011-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3556
3557 * symtab.c (output_partial_symbol_filename): Exchange the filename and
3558 fullname parameters order.
3559
3560 2011-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3561
3562 Code cleanup.
3563 * dwarf2read.c (dw2_map_symbol_filenames): Use symbol_filename_ftype
3564 for fun.
3565 * psymtab.c (map_symbol_filenames_psymtab)
3566 (map_partial_symbol_filenames): Likewise.
3567 * psymtab.h: Include symfile.h.
3568 (map_partial_symbol_filenames): Use symbol_filename_ftype for fun.
3569 * symfile.h (symbol_filename_ftype): New.
3570 (struct quick_symbol_functions): Use symbol_filename_ftype for fun of
3571 map_symbol_filenames, clarify more the naming in comment.
3572
3573 2011-06-07 Doug Evans <dje@google.com>
3574
3575 * cc-with-index.sh: Fix typos in comment.
3576 Look for ../../gdb, for fullname.exp.
3577
3578 2011-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3579 Pedro Alves <pedro@codesourcery.com>
3580
3581 * cli/cli-cmds.c (shell_escape): Use waitpid.
3582 * rs6000-nat.c (exec_one_dummy_insn): Likewise.
3583
3584 2011-06-07 Tristan Gingold <gingold@adacore.com>
3585
3586 * xcoffread.c (dwarf2_xcoff_names): New variable.
3587 (aix_process_linenos): Add a guard.
3588 (xcoff_symfile_finish): Free dwarf2.
3589 (xcoff_initial_scan): Add dwarf2 support.
3590
3591 2011-06-06 Pedro Alves <pedro@codesourcery.com>
3592
3593 * infcall.c (run_inferior_call): Don't mask async. Instead force
3594 a synchronous wait, if the target can async.
3595
3596 * target.h (struct target_ops): Delete to_async_mask.
3597 (target_async_mask): Delete.
3598 * target.c (update_current_target): Delete references to to_async_mask.
3599 * linux-nat.c (linux_nat_async_mask_value): Delete.
3600 (linux_nat_is_async_p, linux_nat_can_async_p): Remove references
3601 to linux_nat_async_mask_value.
3602 (linux_nat_async_mask): Delete.
3603 (linux_nat_async, linux_nat_close): Remove references to
3604 linux_nat_async_mask_value.
3605 * record.c (record_async_mask_value): Delete.
3606 (record_async): Remove references to record_async_mask_value.
3607 (record_async_mask): Delete.
3608 (record_can_async_p, record_is_async_p): Remove references to
3609 record_async_mask_value.
3610 (init_record_ops, init_record_core_ops): Remove references to
3611 record_async_mask.
3612 * remote.c (remote_async_mask_value): Delete.
3613 (init_remote_ops): Remove reference to remote_async_mask.
3614 (remote_can_async_p, remote_is_async_p): Remove references to
3615 remote_async_mask_value.
3616 (remote_async): Remove references to remote_async_mask_value.
3617 (remote_async_mask): Delete.
3618
3619 * infrun.c (fetch_inferior_event): Don't claim registers changed
3620 if the current thread is already not executing.
3621
3622 2011-06-03 Joel Brobecker <brobecker@adacore.com> (obvious fix)
3623
3624 From Stephen Kitt <steve@sk2.org>
3625 * breakpoint.c, breakpoint.h, cli/cli-dump.c, dwarf2expr.c,
3626 gdbarch.c, gdbarch.sh, remote.c: Various spelling fixes.
3627
3628 2011-06-03 Joel Brobecker <brobecker@adacore.com>
3629
3630 * dwarf2expr.c (execute_stack_op) [DW_OP_deref]: Handle
3631 the case where ADDR_SIZE is different from TYPE_LENGTH (type).
3632
3633 2011-06-03 Tom Tromey <tromey@redhat.com>
3634
3635 * python/py-inferior.c (python_inferior_exit): Use inferior's exit
3636 code fields.
3637 * python/py-exitedevent.c (create_exited_event_object): Change
3638 type of 'exit_code'. Optionally add exit_code attribute.
3639 (emit_exited_event): Change type of 'exit_code'.
3640 * python/py-event.h (emit_exited_event): Update.
3641 * mi/mi-interp.c (mi_inferior_exit): Print exit code.
3642 * infrun.c (handle_inferior_event): Set exit code fields on
3643 inferior.
3644 * inferior.h (struct inferior) <has_exit_code, exit_code>: New
3645 fields.
3646 * inferior.c (exit_inferior_1): Initialize new fields.
3647
3648 2011-06-03 Tom Tromey <tromey@redhat.com>
3649
3650 * dwarf2expr.c (get_signed_type): New function.
3651 (execute_stack_op) <DW_OP_shra>: Always perform a signed shift.
3652
3653 2011-06-02 Keith Seitz <keiths@redhat.com>
3654
3655 * objc-lang.c (find_methods): Increment objfile_csym earlier.
3656
3657 2011-06-02 Pedro Alves <pedro@codesourcery.com>
3658
3659 * top.h (simplified_command_loop): Delete declaration.
3660
3661 2011-06-01 Mike Frysinger <vapier@gentoo.org>
3662
3663 * remote-sim.c (gdbsim_open): Add the strlen of " --sysroot=" and
3664 gdb_sysroot to the "len" variable. Append both to "arg_buf".
3665
3666 2011-06-01 Yao Qi <yao@codesourcery.com>
3667
3668 * objfiles.h (obj_section_addr): Update reference to objfile from
3669 `abfd' to `obfd'.
3670 (obj_section_endaddr): Likewise.
3671
3672 2011-06-01 Daniel Jacobowitz <drow@false.org>
3673
3674 * MAINTAINERS: Update my email address and affiliation. Also
3675 update Ian Lance Taylor's affiliation. Use UTF-8 for ludo@gnu.org.
3676
3677 2010-05-31 Keith Seitz <keiths@redhat.com>
3678
3679 PR c++/12750
3680 * linespec.c (get_search_block): New function.
3681 (find_methods): Add FILE_SYMTATB parameter and use it and
3682 get_search_block to pass an appropriate block to
3683 lookup_symbol_in_namespace.
3684 (decode_line_1): Record if *ARGPTR is single-quote enclosed.
3685 Check if *ARGPTR starts with a filename first.
3686 If it does, call locate_first_half again to locate the next
3687 "first half" of the linespec.
3688 Pass FILE_SYMTATB to decode_objc and decode_compound.
3689 Swallow the trailing single-quote if IS_SQUOTE_ENCLOSED.
3690 (locate_first_half): Stop on the first colon seen.
3691 (decode_compound): Add FILE_SYMTAB parameter.
3692 Pass FILE_SYMTAB to lookup_prefix_sym and find_method.
3693 (lookup_prefix_sym): Add FILE_SYMTAB parameter and use
3694 get_search_block with lookup_symbol.
3695 (find_method): Add FILE_SYMTAB parameter and pass it to
3696 find_methods.
3697 (decode_objc): Use get_search_block.
3698
3699 2010-05-31 Keith Seitz <keiths@redhat.com>
3700
3701 PR symtab/12704
3702 * cp-namespace.c (ANONYMOUS_NAMESPACE_LEN): Remove.
3703 (cp_scan_for_anonymous_namespaces): Use CP_ANONYMOUS_NAMESPACE_STR
3704 and CP_ANONYMOUS_NAMESPACE_LEN.
3705 (cp_is_anonymous): Likewise.
3706 * cp-support.h (CP_ANONYMOUS_NAMESPACE_STR): Define.
3707 (CP_ANONYMOUS_NAMESPACE_LEN): Define.
3708 * dwarf2read.c (namespace_name): Likewise.
3709 (fixup_partial_die): Likewise.
3710 * linespec.c (decode_compound): If CP_ANONYMOUS_NAMESPACE_STR is
3711 seen in the input, keep it.
3712
3713 2011-05-30 Pedro Alves <pedro@codesourcery.com>
3714
3715 * target.h (enum inferior_event_type): Delete INF_QUIT_REQ.
3716 * inf-loop.h (inferior_event_handler_wrapper): Delete.
3717 * inf-loop.c (inferior_event_handler_wrapper): Delete.
3718 (inferior_event_handler): Don't handle INF_QUIT_REQ.
3719 * remote.c (_initialize_remote): Register
3720 async_remote_interrupt_twice directly as
3721 sigint_remote_twice_token event.
3722
3723 2011-05-30 Pedro Alves <pedro@codesourcery.com>
3724
3725 * target.h (enum inferior_event_type): Delete INF_ERROR.
3726 * inf-loop.c (inferior_event_handler): Don't handle INF_ERROR.
3727
3728 2011-05-30 Pedro Alves <pedro@codesourcery.com>
3729
3730 * interps.c (interp_set): Don't cancel continuations.
3731
3732 2011-05-30 Jan Kratochvil <jan.kratochvil@redhat.com>
3733
3734 * linux-nat.c (linux_lwp_is_zombie): Use xsnprintf.
3735
3736 2011-05-30 Pedro Alves <pedro@codesourcery.com>
3737
3738 * continuations.h (continuation_ftype): Add `err' parameter.
3739 Document parameters.
3740 (do_all_continuations, do_all_continuations_thread)
3741 (do_all_intermediate_continuations)
3742 (do_all_intermediate_continuations_thread)
3743 (do_all_inferior_continuations): Add `err' parameter.
3744 * continuations.c (do_my_continuations_1, do_my_continuations)
3745 (do_all_inferior_continuations, do_all_continuations_ptid)
3746 (do_all_continuations_thread_callback)
3747 (do_all_continuations_thread, do_all_continuations)
3748 (do_all_intermediate_continuations_thread_callback)
3749 (do_all_intermediate_continuations_thread)
3750 (do_all_intermediate_continuations): Add `err' parameter, and pass
3751 it down all the way to the continuations proper.
3752 * inf-loop.c (inferior_event_handler): If fetching an inferior
3753 event throws an error, don't pop the target, and still call the
3754 continuations, but with `err' set. Adjust all other continuation
3755 calls.
3756 * breakpoint.c (until_break_command_continuation): Add `err'
3757 parameter.
3758 * infcmd.c (step_1_continuation): Add `err' parameter. Don't
3759 issue another step if `err' is set.
3760 (struct until_next_continuation_args): New.
3761 (until_next_continuation): Add `err' parameter. Adjust.
3762 (until_next_command): Adjust.
3763 (struct finish_command_continuation_args): Add `thread' field.
3764 (finish_command_continuation): Add `err' parameter. Handle it.
3765 (finish_forward): Adjust.
3766 (attach_command_continuation): Add `err' parameter. Handle it.
3767 * infrun.c (infrun_thread_stop_requested_callback): Adjust to
3768 cancel the continuations.
3769 * interps.c (interp_set): Adjust to cancel the continuations.
3770 * thread.c (clear_thread_inferior_resources): Adjust to cancel the
3771 continuations rather than discarding.
3772 (free_thread): Don't clear thread inferior resources here.
3773 (delete_thread_1): Do it here instead. And do it before removing
3774 the thread from the threads list. Tag the thread as exited before
3775 clearing thread inferior resources.
3776
3777 2011-05-30 Joel Brobecker <brobecker@adacore.com>
3778
3779 * infcall.c (call_function_by_hand): Rephrase error message.
3780
3781 2011-05-27 Pedro Alves <pedro@codesourcery.com>
3782
3783 * defs.h (struct thread_info, struct inferior): Delete forward
3784 declarations.
3785 * breakpoint.h (struct thread_info): New forward declaration.
3786 * observer.sh (struct inferior): New forward declaration.
3787 * python/python-internal.h (struct inferior): New forward
3788 declaration.
3789
3790 2011-05-27 Pedro Alves <pedro@codesourcery.com>
3791
3792 * defs.h (struct continuation, continuation_ftype)
3793 (continuation_free_arg_ftype, add_continuation)
3794 (do_all_continuations, do_all_continuations_thread)
3795 (discard_all_continuations, discard_all_continuations_thread)
3796 (add_intermediate_continuation, do_all_intermediate_continuations)
3797 (do_all_intermediate_continuations_thread)
3798 (discard_all_intermediate_continuations)
3799 (discard_all_intermediate_continuations_thread)
3800 (add_inferior_continuation, do_all_inferior_continuations)
3801 (discard_all_inferior_continuations): Move to ...
3802 * continuations.h: ... this new file.
3803 * breakpoint.c, continuations.c, event-top.c, inf-loop.c,
3804 infcmd.c, inferior.c, infrun.c, interps.c: Include
3805 continuations.h.
3806
3807 2011-05-27 Jan Kratochvil <jan.kratochvil@redhat.com>
3808 Doug Evans <dje@google.com>
3809
3810 Fix PR 10970, PR 12702.
3811 * linux-nat.c (linux_lwp_is_zombie): New function.
3812 (wait_lwp): Initialize status. New variable prev_mask. Block signals.
3813 Check for linux_lwp_is_zombie. Use WNOHANG and sigsuspend.
3814
3815 2011-05-27 Pedro Alves <pedro@codesourcery.com>
3816
3817 * defs.h (continuation_ftype, continuation_free_arg_ftype): New
3818 typedefs.
3819 (add_continuation, add_intermediate_continuation)
3820 (add_inferior_continuation): Use them.
3821 * continuations.c (struct continuation): Use them.
3822 (make_continuation_ftype): Delete.
3823 (make_continuation, add_inferior_continuation, add_continuation)
3824 (add_intermediate_continuation): Use continuation_ftype and
3825 continuation_free_arg_ftype. Rename parameters to shorter names.
3826
3827 2011-05-27 Pedro Alves <pedro@codesourcery.com>
3828
3829 * continuations.c (make_continuation): Make it return void.
3830 (do_my_continuations): Rename to ...
3831 (do_my_continuations_1): ... this. Remove old_chain parameter and
3832 adjust.
3833 (do_my_continuations): New.
3834 (discard_my_continuations): Rename to ...
3835 (discard_my_continuations_1): ... this. Remove old_chain
3836 parameter and adjust.
3837 (discard_my_continuations): New.
3838 (add_inferior_continuation): Simplify.
3839 (do_all_inferior_continuations): Reimplement on top
3840 do_my_continuations.
3841 (discard_all_inferior_continuations): Simplify.
3842 (add_continuation): Simplify.
3843 (do_all_continuations_ptid): Simplify.
3844 (discard_all_continuations_thread_callback): Simplify.
3845 (add_intermediate_continuation): Simplify.
3846 (discard_all_intermediate_continuations_thread_callback):
3847 Simplify.
3848
3849 2011-05-27 Pedro Alves <pedro@codesourcery.com>
3850
3851 * utils.c (struct continuation, add_continuation)
3852 (add_inferior_continuation)
3853 (do_all_inferior_continuations, discard_all_inferior_continuations)
3854 (restore_thread_cleanup, do_all_continuations_ptid)
3855 (do_all_continuations_thread_callback)
3856 (do_all_continuations_thread, do_all_continuations)
3857 (discard_all_continuations_thread_callback)
3858 (discard_all_continuations_thread, discard_all_continuations)
3859 (add_intermediate_continuation)
3860 (do_all_intermediate_continuations_thread_callback)
3861 (do_all_intermediate_continuations_thread)
3862 (do_all_intermediate_continuations)
3863 (discard_all_intermediate_continuations_thread_callback)
3864 (discard_all_intermediate_continuations_thread)
3865 (discard_all_intermediate_continuations): Move to ...
3866 * continuations.c: ... this new file, and adjust to no longer
3867 implement continuations on top of cleanups.
3868 * Makefile.in (SFILES): Add continuations.c.
3869 (COMMON_OBS): Add continuations.o.
3870
3871 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3872
3873 * inferior.h (enum exec_direction_kind): Delete EXEC_ERROR.
3874 * infrun.c (show_exec_direction_func): Don't handle EXEC_ERROR.
3875 Internal error on invalid values.
3876 * reverse.c: Don't handle EXEC_ERROR.
3877 * mi/mi-main.c: Don't handle EXEC_ERROR.
3878
3879 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3880
3881 * record.c: Include event-loop.h, inf-loop.h.
3882 (record_beneath_to_async): New global.
3883 (tmp_to_async): New global.
3884 (record_async_inferior_event_token): New global.
3885 (record_open_1): Don't error out if async is enabled.
3886 (record_open): Handle to_async. Create an async event source in
3887 the event loop.
3888 (record_close): Delete the async event source.
3889 (record_resumed): New global.
3890 (record_execution_dir): New global.
3891 (record_resume, record_core_resume): Set them. Register the
3892 target on the event loop.
3893 (record_wait): Rename to ...
3894 (record_wait_1): ... this. Add more debug output. Handle
3895 TARGET_WNOHANG, and the target beneath returning
3896 TARGET_WAITKIND_IGNORE.
3897 (record_wait): Reimplement on top of record_wait_1.
3898 (record_async_mask_value): New global.
3899 (record_async, record_async_mask, record_can_async_p)
3900 (record_is_async_p, record_execution_direction): New functions.
3901 (init_record_ops, init_record_core_ops): Install new methods.
3902 * infrun.c (fetch_inferior_event): Temporarily switch the global
3903 execution direction to the direction the target was going.
3904 (execution_direction): Change type to int.
3905 * target.c (default_execution_direction): New function.
3906 (update_current_target): Inherit and de_fault
3907 to_execution_direction.
3908 * target.h (struct target_ops) <to_execution_direction>: New
3909 field.
3910 (target_execution_direction): New macro.
3911 * inferior.h (execution_direction): Change type to int.
3912
3913 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3914
3915 * infcall.c (call_function_by_hand): Don't allow calling functions
3916 in reverse execution mode.
3917
3918 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3919
3920 * infcmd.c (finish_command): Allow async finish in reverse.
3921
3922 2011-05-26 Yao Qi <yao@codesourcery.com>
3923
3924 * gdb_thread_db.h: Delete. Move to ...
3925 * common/gdb_thread_db.h: ... here.
3926
3927 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3928
3929 * infcmd.c (finish_backward): Set a step-resume breakpoint at the
3930 function's entry point instead of a manually managed momentary
3931 breakpoint, and only ever issue one proceed call.
3932 * infrun.c (handle_inferior_event) <BPSTAT_WHAT_STEP_RESUME>: If
3933 doing a reverse-finish, switch to stepi mode, to do another step.
3934 (insert_step_resume_breakpoint_at_sal): Make public.
3935 (normal_stop): No need to save function value return registers if
3936 going reverse.
3937 * inferior.h (insert_step_resume_breakpoint_at_sal): Declare.
3938
3939 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3940
3941 * breakpoint.h (enum bptype) <bp_hp_step_resume>: New.
3942 (enum bpstat_what_main_action): Move BPSTAT_WHAT_STEP_RESUME
3943 before BPSTAT_WHAT_STOP_SILENT. Add BPSTAT_WHAT_HP_STEP_RESUME
3944 at the end.
3945 * breakpoint.c (update_breakpoints_after_exec): Also delete hp
3946 step-resume breakpoints.
3947 (print_it_typical): Handle bp_hp_step_resume.
3948 (bpstat_what): Ditto.
3949 (bptype_string): Ditto.
3950 (print_one_breakpoint_location): Ditto.
3951 (allocate_bp_location): Ditto.
3952 (mention): Ditto.
3953 (breakpoint_re_set_one): Ditto.
3954 * infrun.c (handle_inferior_event): Adjust. Split
3955 BPSTAT_WHAT_STEP_RESUME handling in BPSTAT_WHAT_STEP_RESUME and
3956 BPSTAT_WHAT_HP_STEP_RESUME.
3957 (insert_step_resume_breakpoint_at_sal): Rename to ...
3958 (insert_step_resume_breakpoint_at_sal_1): ... this. Add bptype
3959 parameter. Handle it.
3960 (insert_step_resume_breakpoint_at_sal): Reimplement on top of
3961 insert_step_resume_breakpoint_at_sal_1.
3962 (insert_step_resume_breakpoint_at_frame): Rename to ...
3963 (insert_hp_step_resume_breakpoint_at_frame): ... this. Adjust to
3964 set a high-priority step-resume breakpoint.
3965 (insert_step_resume_breakpoint_at_frame): Adjust comment.
3966 (insert_step_resume_breakpoint_at_caller): Ditto.
3967
3968 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3969
3970 * breakpoint.c (iterate_over_related_breakpoints): New.
3971 (do_map_delete_breakpoint): New.
3972 (delete_command): Pass do_map_delete_breakpoint to
3973 map_breakpoint_numbers.
3974 (do_disable_breakpoint): New.
3975 (do_map_disable_breakpoint): Iterate over the breakpoint's related
3976 breakpoints.
3977 (do_enable_breakpoint): Rename to ...
3978 (enable_breakpoint_disp): ... this.
3979 (enable_breakpoint): Adjust.
3980 (do_enable_breakpoint): New.
3981 (enable_once_breakpoint): Delete.
3982 (do_map_enable_breakpoint): New.
3983 (do_map_enable_once_breakpoint): New.
3984 (enable_once_command, enable_delete_command)
3985 (delete_trace_command): Iterate over the breakpoint's related
3986 breakpoints.
3987
3988 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3989
3990 * alpha-tdep.c (alpha_cannot_fetch_register): Don't return true
3991 for ALPHA_ZERO_REGNUM.
3992 (alpha_supply_int_regs): Explicitly supply zero as the value for
3993 ALPHA_ZERO_REGNUM in the register cache.
3994 * alpha-nat.c (fetch_osf_core_registers): Ditto.
3995
3996 2011-05-26 Yao Qi <yao@codesourcery.com>
3997
3998 * gdb/gdb_thread_db.h: Remove HAVE_UINTPTR_T.
3999
4000 2011-05-26 Tristan Gingold <gingold@adacore.com>
4001
4002 * symfile.h (struct dwarf2_section_names): New type.
4003 (struct dwarf2_debug_sections): New type.
4004 (dwarf2_has_info): Add parameter.
4005 * dwarf2read.c (dwarf2_elf_names): New variable.
4006 (INFO_SECTION, ABBREV_SECTION, LINE_SECTION, LOC_SECTION)
4007 (MACINFO_SECTION, STR_SECTION, RANGES_SECTION, TYPES_SECTION)
4008 (FRAME_SECTION, EH_FRAME_SECTION, GDB_INDEX_SECTION): Remove.
4009 (dwarf2_has_info): Add names parameter. Pass names
4010 to dwarf2_locate_sections.
4011 (section_is_p): Rewrite using the names parameter.
4012 (dwarf2_locate_sections): Use section names from the names parameter.
4013 * coffread.c (coff_symfile_read): Adjust call to dwarf2_has_info.
4014 * elfread.c (read_psyms): Ditto.
4015 * machoread.c (macho_symfile_read): Ditto.
4016
4017 2011-05-25 Andreas Schwab <schwab@redhat.com>
4018
4019 PR gdb/8677
4020 * event-loop.c (handle_file_event): Don't handle POLLHUP as error.
4021
4022 2011-05-24 Keith Seitz <keiths@redhat.com>
4023
4024 PR breakpoint/12803
4025 * linespec.c (keep_name_info): Add handling for "volatile" keyword.
4026 (decode_compound): Unconditionally call keep_name_info.
4027
4028 2011-05-24 Pedro Alves <pedro@codesourcery.com>
4029
4030 * breakpoint.c (watchpoint_check): If the watchpoint went out of
4031 scope, clear its command list.
4032 (map_breakpoint_numbers): Don't walk the related breakpoints list
4033 of each breakpoint.
4034
4035 2011-05-24 Tom Tromey <tromey@redhat.com>
4036
4037 * MAINTAINERS: Move Jim Blandy to past maintainers.
4038
4039 2011-05-24 Tristan Gingold <gingold@adacore.com>
4040
4041 * symfile.h (enum dwarf2_section_enum): New type.
4042 (dwarf2_get_section_info): New prototype.
4043 * dwarf2read.c (dwarf2_get_section_info): Replace parameter
4044 section_name by sect. Use a switch to select the info.
4045 * dwarf2-frame.c (warf2_get_section_info): Remove prototype.
4046 (dwarf2_build_frame_info): Adjust calls to dwarf2_get_section_info.
4047
4048 2011-05-24 Pedro Alves <pedro@codesourcery.com>
4049
4050 * solib-svr4.c (svr4_solib_create_inferior_hook): Skip setting
4051 shared library event breakpoint if there's no execution.
4052
4053 2011-05-24 Thiago Jung Bauermann <bauerman@br.ibm.com>
4054
4055 * breakpont.c (remove_hw_watchpoints): Remove unused function.
4056 * breakpoint.h remove_hw_watchpoints(): Remove prototype.
4057
4058 2011-05-23 Tom Tromey <tromey@redhat.com>
4059
4060 * c-lang.c (evaluate_subexp_c): Use expect_type if it is not
4061 NULL.
4062
4063 2011-05-23 Doug Evans <dje@google.com>
4064
4065 * python/lib/gdb/printing.py (register_pretty_printer): Add missing
4066 entry for RuntimeError to doc string.
4067
4068 2011-05-23 Jerome Guitton <guitton@adacore.com>
4069
4070 * sparc-tdep.c (sparc_skip_stack_check): Recognize a new instruction
4071 sequence for probing loops.
4072
4073 2011-05-23 Pedro Alves <pedro@codesourcery.com>
4074
4075 * infrun.c (user_visible_resume_ptid): Fix typos in describing
4076 comment.
4077
4078 2011-05-21 Mark Kettenis <kettenis@gnu.org>
4079
4080 * sparc-nat.c (sparc_fetch_inferior_registers): Explicitly supply
4081 zero as the value for %g0 in the register cache.
4082 * sparc-tdep.c (sparc32_supply_gregset): Likewise.
4083 * sparc64-tdep.c (sparc64_supply_gregset): Likewise.
4084
4085 2011-05-20 Pedro Alves <pedro@codesourcery.com>
4086
4087 * infrun.c (proceed): Set previous_inferior_ptid here.
4088 (init_wait_for_inferior): Initialize previous_inferior_ptid from
4089 inferior_ptid, not null_ptid.
4090 (wait_for_inferior): Don't initialize previous_inferior_ptid here.
4091 (fetch_inferior_event): Nor here.
4092
4093 2011-05-20 Pedro Alves <pedro@codesourcery.com>
4094
4095 * inf-loop.c (inferior_event_handler): Only output a message if
4096 verbose.
4097
4098 2011-05-20 Luis Machado <lgustavo@codesourcery.com>
4099
4100 * MAINTAINERS: Update my e-mail address.
4101
4102 2011-05-20 Pedro Alves <pedro@codesourcery.com>
4103
4104 * infrun.c (proceed): Switch the inferior event loop to
4105 INF_EXEC_COMPLETE if the target refused to resume from a
4106 vfork/fork.
4107
4108 2011-05-20 Pedro Alves <pedro@codesourcery.com>
4109
4110 * infcmd.c: Include "inf-loop.h".
4111 (step_once): When stepping into an inline subroutine, pretend the
4112 target has run. If the target can async, switch the inferior
4113 event loop to INF_EXEC_COMPLETE.
4114 * inferior.h (user_visible_resume_ptid): Declare.
4115 * infrun.c (user_visible_resume_ptid): New function, factored out
4116 from `resume'.
4117 (resume): Use it.
4118 * mi/mi-main.c (mi_execute_async_cli_command): Remove assertion
4119 that the current thread is running. Merge async and sync
4120 branches.
4121
4122 2011-05-20 Pedro Alves <pedro@codesourcery.com>
4123
4124 * infcmd.c (step_1): Simplify synchronous case.
4125
4126 2011-05-20 Pedro Alves <pedro@codesourcery.com>
4127
4128 * tracepoint.c: Include exceptions.h.
4129 (TFILE_PID): Move higher in file.
4130 (tfile_open): Delay pushing the tfile target until we're assured
4131 the tfile header is present in the file. Wrap reading the initial
4132 newline-terminated lines in TRY_CATCH. Pop the target if the
4133 initial setup failed. Add the tfile's thread immediately
4134 aftwards, before any non-essential setup. Don't skip
4135 post_create_inferior if there are no traceframes present in the
4136 file.
4137 (tfile_close): Remove redundant check for null before xfree call.
4138 (tfile_thread_alive): New function.
4139 (init_tfile_ops): Register it as to_thread_alive callback.
4140
4141 2011-05-20 Pedro Alves <pedro@codesourcery.com>
4142
4143 * tracepoint.c (tfile_open): Delete #if 0'd code.
4144
4145 2011-05-20 Jan Kratochvil <jan.kratochvil@redhat.com>
4146
4147 Fix -readnow for -gdwarf-4 unused type units.
4148 * dwarf2read.c (struct signatured_type): Remove the field offset.
4149 (create_signatured_type_table_from_index): Remove its initialization.
4150 (create_debug_types_hash_table): Likewise. Initialize per_cu.offset
4151 instead. Add a complaint call.
4152 (process_psymtab_comp_unit): Change assignment to gdb_assert.
4153 (process_type_comp_unit, lookup_die_type, dump_die_shallow)
4154 (lookup_signatured_type_at_offset, read_signatured_type)
4155 (write_one_signatured_type): Update the field for per_cu.
4156
4157 2011-05-19 Tom Tromey <tromey@redhat.com>
4158
4159 * python/py-inferior.c (python_inferior_exit): Use
4160 target_gdbarch.
4161 (python_on_resume): Likewise.
4162
4163 2011-05-19 Matt Rice <ratmice@gmail.com>
4164
4165 * breakpoint.c (bpstat_do_actions_1): Call prevent_dont_repeat.
4166
4167 2011-05-19 Hui Zhu <teawater@gmail.com>
4168
4169 * tracepoint.c (tfile_trace_find): Return directly when num is -1.
4170
4171 2011-05-19 Hui Zhu <teawater@gmail.com>
4172
4173 * xcoffread.c (read_xcoff_symtab): Initialize fcn_aux_saved.
4174
4175 2011-05-18 Tom Tromey <tromey@redhat.com>
4176
4177 * dwarf2read.c (dwarf2_add_field): Constify.
4178 * value.c (value_static_field): Constify.
4179 * gdbtypes.h (struct main_type) <field.field_location.physname>:
4180 Now const.
4181 * ax-gdb.c (gen_static_field): Constify
4182
4183 2011-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4184
4185 * linux-nat.c (kill_callback): Use SIGKILL first.
4186
4187 2011-05-18 Joel Brobecker <brobecker@adacore.com>
4188
4189 * ada-lang.c (print_it_exception): Avoid use of sprintf.
4190
4191 2011-05-18 Tom Tromey <tromey@redhat.com>
4192
4193 * value.c (value_fn_field): Constify.
4194 * symtab.c (gdb_mangle_name): Constify.
4195 * stabsread.c (update_method_name_from_physname): Make 'physname'
4196 argument const.
4197 * p-typeprint.c (pascal_type_print_method_args): Make arguments
4198 const. Use explicit fputc_filtered loop.
4199 (pascal_type_print_base): Constify.
4200 * p-lang.h (pascal_type_print_method_args): Update.
4201 * linespec.c (add_matching_methods): Constify.
4202 (add_constructors): Likewise.
4203 * jv-typeprint.c (java_type_print_base): Constify.
4204 * gdbtypes.h (struct cplus_struct_type)
4205 <fn_fieldlist.fn_field.physname>: Now const.
4206 * dwarf2read.c (compute_delayed_physnames): Constify.
4207 (dwarf2_add_member_fn): Likewise.
4208 * c-typeprint.c (c_type_print_base): Constify. Use cleanups.
4209
4210 2011-05-18 Pedro Alves <pedro@codesourcery.com>
4211
4212 * infrun.c (resume): Mention which is the current thread, and its
4213 current PC in debug output.
4214 (prepare_to_proceed): Mention the thread switching in debug
4215 output.
4216
4217 2011-05-18 Tom Tromey <tromey@redhat.com>
4218
4219 * linux-thread-db.c (try_thread_db_load_from_pdir_1): Fix absolute
4220 path check. Use xmalloc and cleanups.
4221 (try_thread_db_load_from_dir): Use xmalloc and cleanups.
4222
4223 2011-05-17 Tom Tromey <tromey@redhat.com>
4224
4225 * cp-valprint.c (cp_print_value_fields): Catch errors from
4226 value_static_field.
4227
4228 2011-05-17 Tom Tromey <tromey@redhat.com>
4229
4230 * dwarf2read.c (dwarf2_get_die_type): Call
4231 get_die_type_at_offset.
4232 * dwarf2expr.c (dwarf_get_base_type): Handle NULL return from
4233 get_base_type function.
4234
4235 2011-05-17 Tomas Martinec <fyzmat@gmail.com>
4236
4237 * infrun.c (handle_inferior_event) <handling deferred step>: Clear
4238 trap_expected.
4239
4240 2011-05-16 Doug Evans <dje@google.com>
4241
4242 * python/py-auto-load.c (source_section_scripts): Mention objfile
4243 name in warning.
4244
4245 2011-05-15 Doug Evans <dje@google.com>
4246
4247 * linux-thread-db.c (try_thread_db_load_from_pdir_1): New function.
4248 (try_thread_db_load_from_pdir): Call it. If unable to find
4249 libthread_db in directory of libpthread, see if we're looking at
4250 the separate-debug-info copy.
4251
4252 * python/py-autoload.c (print_script): Print "Missing" instead of
4253 "No" for missing scripts.
4254 (info_auto_load_scripts): Tweak "Loaded" column to fit "Missing".
4255
4256 2011-05-13 Doug Evans <dje@google.com>
4257
4258 * ui-file.c (stdio_file_write_async_safe): Add comment.
4259
4260 2011-05-14 Hui Zhu <teawater@gmail.com>
4261
4262 * ui-file.c (stdio_file_write_async_safe): Add empty check for build.
4263
4264 2011-05-13 Doug Evans <dje@google.com>
4265
4266 Support $pdir and $sdir in libthread-db-search-path.
4267 * NEWS: Mention $sdir,$pdir.
4268 * gdb_thread_db.h (LIBTHREAD_DB_SEARCH_PATH): Add $sdir:$pdir.
4269 * linux-thread-db.c (try_thread_db_load_from_pdir): New function.
4270 (try_thread_db_load_from_sdir): New function.
4271 (try_thread_db_load_from_dir): New function.
4272 (thread_db_load_search): Handle $pdir, $sdir. Remove trying of
4273 system directories if search of libthread-db-search-path fails,
4274 that is now done via $sdir.
4275 (has_libpthread): New function.
4276 (thread_db_load): Remove search for libthread_db in directory of
4277 libpthread, that is now done via $pdir.
4278
4279 * NEWS: Mention "info auto-load-scripts".
4280 * python/py-auto-load.c (struct auto_load_pspace_info): New member
4281 script_not_found_warning_printed.
4282 (init_loaded_scripts_info): Renamed from create_loaded_scripts_hash,
4283 all callers updated. Initialize script_not_found_warning_printed.
4284 (get_auto_load_pspace_data_for_loading): New function.
4285 (maybe_add_script): New function.
4286 (source_section_scripts): Simplify. Only print one warning regardless
4287 of the number of auto-load scripts not found.
4288 (clear_section_scripts): Clear script_not_found_warning_printed.
4289 (auto_load_objfile_script): Record script in hash table.
4290 (count_matching_scripts): New function.
4291 (maybe_print_script): Renamed from maybe_print_section_script, all
4292 callers updated. Rewrite to use ui_out_*.
4293 (info_auto_load_scripts): Renamed from
4294 maintenance_print_section_scripts, all callers updated.
4295 (gdbpy_initialize_auto_load): "maintenance print section-scripts"
4296 renamed as "info auto-load-scripts".
4297
4298 2011-05-13 Tom Tromey <tromey@redhat.com>
4299
4300 * dwarf2expr.c (read_uleb128): Cast intermediate result.
4301 (read_sleb128): Likewise.
4302
4303 2011-05-13 Tom Tromey <tromey@redhat.com>
4304
4305 * dwarf2loc.c (disassemble_dwarf_expression): Fix instruction
4306 offset display.
4307
4308 2011-05-13 Doug Evans <dje@google.com>
4309
4310 * linux-nat.c (debug_linux_nat_async): Delete.
4311 Replace all references to use debug_linux_nat instead.
4312 (show_debug_linux_nat_async): Delete.
4313 (sigchld_handler): Call ui_file_write_async_safe instead of
4314 fprintf_unfiltered.
4315 (_initialize_linux_nat): Remove `set debug lin-lwp-async'.
4316 * ui-file.c (struct ui_file): New member to_write_async_safe.
4317 (null_file_write_async_safe): New function.
4318 (ui_file_write_async_safe): New function.
4319 (set_ui_file_write_async_safe): New function.
4320 (ui_file_new): Initialize to_write_async_safe.
4321 (stdio_file_write_async_safe): New function.
4322 (struct stdio_file): New member fd.
4323 (stdio_file_new): Initialize to_write_async_safe, fd.
4324 (stdio_file_read, stdio_file_isatty): New stdio->fd instead of calling
4325 fileno.
4326 * ui-file.h (ui_file_write_async_safe_ftype): New typedef.
4327 (set_ui_file_write_async_safe): Declare.
4328 (ui_file_write_async_safe): Declare.
4329
4330 2011-05-13 Tom Tromey <tromey@redhat.com>
4331
4332 * utils.c (do_value_free): New function.
4333 (make_cleanup_value_free): Likewise.
4334 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Handle value
4335 freeing correctly.
4336 (dwarf2_loc_desc_needs_frame): Call
4337 make_cleanup_value_free_to_mark.
4338 * dwarf2expr.h (struct dwarf_expr_context) <mark>: Remove field.
4339 * dwarf2expr.c (free_dwarf_expr_context): Don't call
4340 value_free_to_mark.
4341 (new_dwarf_expr_context): Don't call value_mark.
4342 * dwarf2-frame.c (execute_stack_op): Call
4343 make_cleanup_value_free_to_mark.
4344 * defs.h (make_cleanup_value_free): Declare.
4345
4346 2011-05-13 Thiago Jung Bauermann <bauerman@br.ibm.com>
4347
4348 * mi/mi-main.c (mi_cmd_execute): Use cleanup from
4349 prepare_execute_command.
4350 * top.c (prepare_execute_command): Return cleanup.
4351 (execute_command): Use cleanup from prepare_execute_command.
4352 * top.h (prepare_execute_command): Change prototype to return
4353 cleanup.
4354 * defs.h (struct value): Add opaque declaration.
4355 (make_cleanup_value_free_to_mark): Add prototype.
4356 * utils.c (do_value_free_to_mark): New function.
4357 (make_cleanup_value_free_to_mark): Likewise.
4358
4359 2011-05-12 Tom Tromey <tromey@redhat.com>
4360
4361 * dwarf2expr.c (execute_stack_op) <DW_OP_shr>: Unconditionally
4362 cast left-hand-side to unsigned.
4363
4364 2011-05-12 Tom Tromey <tromey@redhat.com>
4365
4366 PR gdb/12617:
4367 * value.h (value_from_contents): Declare.
4368 * value.c (value_from_contents): New function.
4369 * dwarf2read.c (dwarf_stack_op_name): Add new values.
4370 (dwarf2_get_die_type): New function.
4371 * dwarf2loc.c (dwarf_expr_get_base_type): New function.
4372 (allocate_piece_closure): Acquire reference to values.
4373 (read_pieced_value): Update for value-based expressions.
4374 (write_pieced_value): Likewise.
4375 (free_pieced_value_closure): Call value_free as needed.
4376 (dwarf2_evaluate_loc_desc_full): Set get_base_type field.
4377 Update for value-based expressions.
4378 * dwarf2loc.h (dwarf2_get_die_type): Declare.
4379 * dwarf2expr.h (struct dwarf_stack_value) <value>: Change type.
4380 <get_base_type>: New field.
4381 (struct dwarf_expr_piece) <v.value>: Change type.
4382 <v.regno>: New field.
4383 (struct dwarf_expr_context) <mark>: New field.
4384 (dwarf_expr_piece, dwarf_expr_fetch): Update.
4385 (dwarf_expr_pop, dwarf_expr_push): Remove.
4386 (dwarf_expr_push_address): Declare.
4387 * dwarf2expr.c (dwarf_arch_cookie): New global.
4388 (struct dwarf_gdbarch_types): New.
4389 (dwarf_gdbarch_types_init, dwarf_expr_address_type): New
4390 functions.
4391 (dwarf_expr_push): Change type of 'value' argument. Update. Now
4392 static.
4393 (dwarf_expr_push_address): New function.
4394 (dwarf_expr_pop): Now static.
4395 (dwarf_expr_fetch): Change return type.
4396 (dwarf_require_integral): New function.
4397 (dwarf_expr_fetch): Simplify.
4398 (add_piece): Update.
4399 (base_types_equal_p, dwarf_get_base_type, get_unsigned_type): New
4400 functions.
4401 (execute_stack_op) <sign_ext>: Remove.
4402 Use values for DWARF stack.
4403 <DW_OP_GNU_const_type, DW_OP_GNU_deref_type,
4404 DW_OP_GNU_regval_type, DW_OP_GNU_convert, DW_OP_GNU_reinterpret>:
4405 New cases.
4406 (_initialize_dwarf2expr): New function.
4407 (add_piece): Update.
4408 (new_dwarf_expr_context): Set new field.
4409 (free_dwarf_expr_context): Call value_free_to_mark.
4410 * dwarf2-frame.c (no_base_type): New function.
4411 (execute_stack_op): Set get_base_type field. Update.
4412
4413 2011-05-12 Tom Tromey <tromey@redhat.com>
4414
4415 * dwarf2read.c (read_common_block): Fix formatting.
4416
4417 2011-05-12 Kwok Cheung Yeung <kcy@codesourcery.com>
4418
4419 * breakpoint.c (disable_breakpoint): Disable all locations
4420 associated with a tracepoint on target if a trace experiment is
4421 running.
4422 (disable_command): Disable a specific tracepoint location on target if
4423 a trace experiment is running.
4424 (do_enable_breakpoint): Enable all locations associated with a
4425 tracepoint on target if a trace experiment is running.
4426 (enable_command) Enable a specific tracepoint location on target if a
4427 trace experiment is running.
4428 * target.c (update_current_target): Add INHERIT and de_fault clauses for
4429 to_supports_enable_disable_tracepoint, to_enable_tracepoint and
4430 to_disable_tracepoint.
4431 * target.h: Add declaration of struct bp_location.
4432 (struct target_ops): Add new functions
4433 to_supports_enable_disable_tracepoint, to_enable_tracepoint and
4434 to_disable_tracepoint to target operations.
4435 (target_supports_enable_disable_tracepoint): New macro.
4436 (target_enable_tracepoint): New macro.
4437 (target_disable_tracepoint): New macro.
4438 * remote.c (struct remote_state): Add new field.
4439 (remote_enable_disable_tracepoint_feature): New.
4440 (remote_protocol_features): Add new entry.
4441 (remote_supports_enable_disable_tracepoint): New.
4442 (remote_enable_tracepoint): New.
4443 (remote_disable_tracepoint): New.
4444 (init_remote_ops): Add remote_enable_tracepoint,
4445 remote_disable_tracepoint and remote_supports_enable_disable_tracepoint
4446 to remote operations.
4447 * tracepoint.c (start_tracing): Allow tracing to start without any
4448 tracepoints enabled with just a warning if they can be re-enabled
4449 later.
4450 * NEWS: Add news item for the new behaviour of the enable and disable
4451 GDB commands when applied to tracepoints.
4452 Add news items for the new remote packets QTEnable and QTDisable.
4453
4454 2011-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4455
4456 * config.in: Regenerate.
4457 * configure: Regenerate.
4458 * configure.ac <--with-system-readline> (for readline_echoing_p):
4459 Remove the test.
4460 * tui/tui-io.c (tui_old_readline_echoing_p): Rename to ...
4461 (tui_old_rl_echoing_p): ... here.
4462 (tui_setup_io): Rename extern declaration readline_echoing_p to
4463 _rl_echoing_p. Adjust assignments for the both renames.
4464
4465 2011-05-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
4466
4467 * symtab.c (lookup_symtab): Run cleanup before returning.
4468
4469 2011-05-11 Tom Tromey <tromey@redhat.com>
4470
4471 * dwarf2read.c (handle_data_member_location): New function.
4472 (dwarf2_add_field): Use it.
4473 (read_common_block): Likewise.
4474
4475 2011-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4476
4477 Make addrs->SECTINDEX always defined.
4478 * symfile.c (relative_addr_info_to_section_offsets): Check for
4479 SECTINDEX -1, not for zero ADDR.
4480 (addrs_section_compar): Remove checking for invalid SECTINDEX.
4481 (addr_info_make_relative): Set SECTINDEX to -1 for unmatched entries.
4482 * symfile.h (struct section_addr_info) <sectindex>: Update the comment
4483 on its validity.
4484
4485 2011-05-10 Doug Evans <dje@google.com>
4486
4487 * linux-thread-db.c: Whitespace cleanup.
4488 (try_thread_db_load_1): Fix comment.
4489
4490 * linux-thread-db.c (set_libthread_db_search_path): New function.
4491 (_initialize_thread_db): Add setter for libthread-db-search-path.
4492
4493 2011-05-09 Doug Evans <dje@google.com>
4494
4495 * NEWS: Mention --with-iconv-bin.
4496 * configure.ac: New option --with-iconv-bin.
4497 * configure: Regenerate.
4498 * config.in: Regenerate.
4499 * defs.h (relocate_gdb_directory): Declare.
4500 * main.c (relocate_gdb_directory): Renamed from relocate_directory,
4501 removed progname parameter, and exported. All callers updated.
4502 * charset.c (find_charset_names): Use --with-iconv-bin if specified.
4503
4504 * linux-nat.c (lin_lwp_attach_lwp): For !WIPSTOPPED case,
4505 adding missing call to restore_child_signals_mask.
4506
4507 2011-05-09 Pedro Alves <pedro@codesourcery.com>
4508
4509 * inferior.h (wait_for_inferior): Remove `thread_exec_as_sigtrap'
4510 parameter.
4511 * infrun.c (proceed, start_remote): Adjust.
4512 (wait_for_inferior): Remove `thread_exec_as_sigtrap' parameter,
4513 and adjust to not handle it.
4514 * solib-irix.c (irix_solib_create_inferior_hook): Adjust.
4515 * solib-osf.c (osf_solib_create_inferior_hook): Adjust.
4516 * solib-sunos.c (sunos_solib_create_inferior_hook): Adjust.
4517 * solib-svr4.c (svr4_solib_create_inferior_hook): Adjust.
4518 * windows-nat.c (do_initial_windows_stuff): Adjust.
4519 * infcmd.c (attach_command): Adjust.
4520 (notice_new_inferior): Adjust.
4521
4522 2011-05-06 Ulrich Weigand <uweigand@de.ibm.com>
4523
4524 * ppc-linux-tdep.c (ppu2spu_prev_register): Handle pseudo registers.
4525 (ppu2spu_unwind_register): Mark pseudo registers unavailable.
4526 * spu-tdep.c (op_selb): Use correct value.
4527
4528 2011-05-06 Ulrich Weigand <uweigand@de.ibm.com>
4529
4530 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Add NULL
4531 "parent" parameter to symbol_file_add_from_bfd call.
4532
4533 2011-05-06 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
4534 Thiago Jung Bauermann <bauerman@br.ibm.com>
4535
4536 Implement support for PowerPC BookE masked watchpoints.
4537 * NEWS: Mention masked watchpoint support. Create "Changed commands"
4538 section.
4539 * breakpoint.h (struct breakpoint_ops) <works_in_software_mode>: New
4540 method. Initialize to NULL in all existing breakpoint_ops instances.
4541 (struct breakpoint) <hw_wp_mask>: New field.
4542 * breakpoint.c (is_masked_watchpoint): Add prototype.
4543 (update_watchpoint): Don't set b->val for masked watchpoints. Call
4544 breakpoint's breakpoint_ops.works_in_software_mode if available.
4545 (watchpoints_triggered): Handle the case of a hardware masked
4546 watchpoint trigger.
4547 (watchpoint_check): Likewise.
4548 (works_in_software_mode_watchpoint): New function.
4549 (insert_masked_watchpoint, remove_masked_watchpoint)
4550 (resources_needed_masked_watchpoint)
4551 (works_in_software_mode_masked_watchpoint, print_it_masked_watchpoint)
4552 (print_one_detail_masked_watchpoint, print_mention_masked_watchpoint)
4553 (print_recreate_masked_watchpoint, is_masked_watchpoint): New
4554 functions.
4555 (masked_watchpoint_breakpoint_ops): New structure.
4556 (watch_command_1): Check for the existence of the `mask' parameter.
4557 Set b->ops according to the type of hardware watchpoint being created.
4558 * ppc-linux-nat.c (ppc_linux_insert_mask_watchpoint)
4559 (ppc_linux_remove_mask_watchpoint)
4560 (ppc_linux_masked_watch_num_registers): New functions.
4561 (_initialize_ppc_linux_nat): Initialize to_insert_mask_watchpoint,
4562 to_remove_mask_watchpoint and to_masked_watch_num_registers.
4563 * target.c (update_current_target): Mention to_insert_mask_watchpoint,
4564 to_remove_mask_watchpoint, and to_masked_watch_num_registers.
4565 (target_insert_mask_watchpoint, target_remove_mask_watchpoint)
4566 (target_masked_watch_num_registers): New functions.
4567 * target.h (struct target_ops) <to_insert_mask_watchpoint>,
4568 <to_remove_mask_watchpoint>, <to_masked_watch_num_registers>: New
4569 methods.
4570 (target_insert_mask_watchpoint, target_remove_mask_watchpoint)
4571 (target_masked_watch_num_registers): Add prototypes.
4572
4573 2011-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4574
4575 PR 12573
4576 * dwarf2read.c (struct dwarf2_cu): New field has_loclist.
4577 (producer_is_gcc_ge_4_0): New function.
4578 (process_full_comp_unit): Set also symtab->locations_valid. Move the
4579 symtab->language code.
4580 (var_decode_location): Set cu->has_loclist.
4581 * symtab.c (skip_prologue_sal): New variables saved_pc, force_skip and
4582 skip. Intialize force_skip from locations_valid. Move the prologue
4583 skipping code into two passes.
4584 * symtab.h (struct symtab): Make the primary field a bitfield. New
4585 field locations_valid.
4586
4587 2011-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4588
4589 * c-exp.y (qualified_name): Call destructor_name_p with $1.type.
4590 (classify_inner_name): Call cp_lookup_nested_type with
4591 yylval.tsym.type.
4592 * cp-namespace.c (cp_lookup_nested_type): New variable
4593 saved_parent_type. Call CHECK_TYPEDEF for parent_type. Call
4594 type_name_no_tag_or_error with saved_parent_type.
4595 * dwarf2read.c (load_partial_dies): Read in any children of
4596 DW_TAG_typedef with complaint in such case.
4597 * gdbtypes.c (type_name_no_tag_or_error): New function.
4598 * gdbtypes.h (type_name_no_tag_or_error): New prototype.
4599 * valops.c (destructor_name_p): New comment for parameter type. Remove
4600 type const. Make dname and cp const. Call type_name_no_tag_or_error.
4601 * value.h (destructor_name_p): Remove type const.
4602
4603 2011-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4604
4605 * symtab.c (compare_symbol_name): New function.
4606 (completion_list_add_name, expand_partial_symbol_name): Call it,
4607 remove the variable ncmp.
4608 (default_make_symbol_completion_list_break_on): Reduce SYM_TEXT_LEN,
4609 gdb_assert it.
4610
4611 2011-05-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
4612
4613 Demote to sw watchpoint only in update_watchpoint.
4614 * breakpoint.c (update_watchpoint): Change between software and
4615 hardware watchpoint for all kinds of watchpoints, not just
4616 read/write ones. Determine b->exact value here instead of
4617 in watch_command_1. Error out if there are not enough resources
4618 for a read or access hardware watchpoint.
4619 (watch_command_1): Remove logic of checking whether there are
4620 enough resources available, since update_watchpoint will do that
4621 work now. Don't set b->exact here. Catch exceptions thrown by
4622 update_watchpoint and delete the watchpoint.
4623 (can_use_hardware_watchpoint): Remove exact_watchpoints argument.
4624 Use target_exact_watchpoints instead.
4625 (delete_breakpoint): Notify observers only if deleted watchpoint
4626 has a breakpoint number assigned to it.
4627
4628 2011-05-05 Janis Johnson <janisjo@codesourcery.com>
4629
4630 * MAINTAINERS: Add myself as a write-after-approval maintainer.
4631
4632 2011-05-05 Jerome Guitton <guitton@adacore.com>
4633
4634 * i386-tdep.c (i386_in_stack_tramp_p, i386_stack_tramp_frame_sniffer):
4635 New functions.
4636 (i386_stack_tramp_frame_unwind): New static global.
4637 (i386_match_pattern): New function, extracted from i386_match_insn.
4638 (i386_match_insn): Use i386_match_pattern.
4639 (i386_match_insn_block): New function.
4640 (i386_tramp_chain_in_reg_insns)
4641 (i386_tramp_chain_on_stack_insns): New static variables.
4642 (i386_gdbarch_init): Add i386_stack_tramp_frame_unwind to list
4643 of unwinders.
4644
4645 2011-05-04 Joseph Myers <joseph@codesourcery.com>
4646
4647 * configure.host (xscale*): Don't handle target.
4648 * configure.tgt (thumb*-*-* | strongarm*-*-* | xscale-*-*): Don't
4649 handle targets.
4650
4651 2011-05-04 Yao Qi <yao@codesourcery.com>
4652
4653 * gdb_wait.h: remove WAITTYPE and WCOREDUMP.
4654
4655 2011-05-03 Joel Brobecker <brobecker@adacore.com>
4656
4657 Revert:
4658 | 2011-03-07 Michael Snyder <msnyder@vmware.com>
4659 | * elfread.c (elf_symtab_read): Stop memory leak.
4660
4661 2011-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
4662
4663 * nto-tdep.c (nto_target): Replace deprecated call to
4664 cygwin_conv_to_posix_path functions by cygwin_conv_path calls.
4665
4666 2011-05-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4667
4668 Fix false GCC warning.
4669 * breakpoint.c (do_enable_breakpoint): Initialize orig_enable_state.
4670
4671 2011-05-03 Thiago Jung Bauermann <bauerman@br.ibm.com>
4672
4673 * breakpoint.c (update_watchpoint): Move code to change
4674 the enable state of breakpoint from here ...
4675 (do_enable_breakpoint): ... to here.
4676
4677 2011-04-26 Andrew Gontarek <andrewg@cray.com>
4678
4679 * valprint.c (val_print_array_elements): Fixed poor performance
4680 of printing very large arrays with repeat_count_threshold set
4681 to unlimited. New comment.
4682
4683 2011-04-29 Tom Tromey <tromey@redhat.com>
4684
4685 * mi/mi-parse.c (mi_parse): Remove incorrect sizeof.
4686 (mi_parse): Likewise.
4687 * breakpoint.c (break_range_command): Use sizeof char*, not
4688 char**.
4689 (create_breakpoint): Likewise.
4690 (parse_breakpoint_sals): Likewise.
4691
4692 2011-04-29 Pedro Alves <pedro@codesourcery.com>
4693
4694 * linux-nat.c (linux_child_remove_fork_catchpoint)
4695 (linux_child_remove_vfork_catchpoint)
4696 (linux_child_remove_exec_catchpoint): New functions.
4697 (linux_target_install_ops): Install them.
4698
4699 2011-04-29 Phil Muldoon <pmuldoon@redhat.com>
4700
4701 PR mi/12531
4702
4703 * varobj.c (install_default_visualizer): Do not install a
4704 visualizer if the varobj is CPLUS_FAKE_CHILD.
4705 (construct_visualizer): Likewise.
4706
4707 2011-04-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4708
4709 * symtab.c (expand_partial_symbol_name): New variable NCMP. Support
4710 case insensitive comparison.
4711
4712 2011-04-28 Ulrich Weigand <ulrich.weigand@linaro.org>
4713
4714 * infrun.c (proceed): Revert previous change.
4715 (resume): Instead, handle the case of signal delivery while stepping
4716 off a breakpoint location here, and only if software single-stepping
4717 is used. Handle nested signals.
4718
4719 2011-04-28 Yao Qi <yao@codesourcery.com>
4720
4721 * arm-tdep.c (copy_unmodified): Rename to ...
4722 (arm_copy_unmodified): .. this. New.
4723 (copy_preload): Move common part to ...
4724 (install_preload): .. this. New.
4725 (arm_copy_preload): New.
4726 (copy_preload_reg): Move common part to ...
4727 (install_preload_reg): ... this. New.
4728 (arm_copy_preload_reg): New.
4729 (copy_b_bl_blx): Move common part to ...
4730 (install_b_bl_blx): .. this. New.
4731 (arm_copy_b_bl_blx): New.
4732 (copy_bx_blx_reg): Move common part to ...
4733 (install_bx_blx_reg): ... this. New.
4734 (arm_copy_bx_blx_reg): New.
4735 (copy_alu_reg): Move common part to ...
4736 (install_alu_reg): ... this. New.
4737 (arm_copy_alu_reg): New.
4738 (copy_alu_shifted_reg): Move common part to ...
4739 (install_alu_shifted_reg): ... this. New.
4740 (copy_ldr_str_ldrb_strb): Move common part to ...
4741 (install_ldr_str_ldrb_strb): ... this. New.
4742 (arm_copy_ldr_str_ldrb_strb): New.
4743 (copy_copro_load_store): Move some common part to ...
4744 (install_copy_copro_load_store): ... this. New.
4745 (arm_copy_copro_load_store): New.
4746 (copy_svc): Delete.
4747 (arm_copy_svc): Renamed from copy_svc.
4748 (copy_undef): Delete.
4749 (arm_copy_undef): Renamed from copy_undef.
4750 (decode_ext_reg_ld_st): Delete.
4751 (arm_decode_ext_reg_ld_st): Renamed from decode_ext_reg_ld_st.
4752 (decode_svc_copro): Delete.
4753 (arm_decode_svc_copro): Renamed from decode_svc_copro.
4754 (copy_copro_load_store, copy_alu_imm): update callers.
4755 (copy_extra_ld_st, copy_block_xfer): Likewise.
4756 (decode_misc_memhint_neon, decode_unconditional): Likewise.
4757 (decode_miscellaneous, decode_dp_misc): Likewise.
4758 (decode_ld_st_word_ubyte, decode_media): Likewise.
4759 (decode_b_bl_ldmstm, decode_ext_reg_ld_st): Likewise.
4760 (decode_svc_copro, decode_misc_memhint_neon): Likewise.
4761 (decode_unconditional, decode_miscellaneous): Likewise.
4762 (decode_media, decode_b_bl_ldmstm): Likewise.
4763 (arm_process_displaced_insn): Likewise..
4764 (decode_misc_memhint_neon): Delete.
4765 (arm_decode_misc_memhint_neon): Renamed from decode_misc_memhint_neon.
4766 (decode_miscellaneous): Delete.
4767 (arm_decode_miscellaneous): Renamed from decode_miscellaneous.
4768 (decode_dp_misc): Delete.
4769 (arm_decode_dp_misc): Renamed from decode_dp_misc.
4770 (decode_ld_st_word_ubyte): Delete.
4771 (arm_decode_ld_st_word_ubyte): Renamed from decode_ld_st_word_ubyte.
4772 (decode_media): Delete.
4773 (arm_decode_media): Renamed from decode_media.
4774 (decode_b_bl_ldmstm): Delete.
4775 (arm_decode_b_bl_ldmstm): Renamed from decode_b_bl_ldmstm.
4776 (decode_ext_reg_ld_st): Delete.
4777 (arm_decode_ext_reg_ld_st): Renamed from decode_ext_reg_ld_st.
4778 (decode_unconditional): Delete.
4779 (arm_decode_unconditional): Renamed from decode_unconditional.
4780
4781 2011-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
4782
4783 Case insensitive lookups implementation.
4784 * dwarf2read.c: Include ctype.h.
4785 (struct mapped_index): New field version.
4786 (mapped_index_string_hash): New parameter index_version. New comment
4787 for it. Call tolower appropriately.
4788 (find_slot_in_mapped_hash): New variable cmp, initialize it, use it.
4789 Choose the right index version for mapped_index_string_hash.
4790 (dwarf2_read_index): Support also the index version 5. Initialize the
4791 new struct mapped_index field version.
4792 (hash_strtab_entry): Pass INT_MAX for the new parameter, explain why.
4793 (find_slot): Explain the version needs. Pass INT_MAX for the new
4794 parameter.
4795 (write_psymtabs_to_index): Produce version 5.
4796 * minsyms.c (lookup_minimal_symbol): New variable cmp, initialize it,
4797 use it. New comment for SYMBOL_MATCHES_SEARCH_NAME.
4798 * psymtab.c (lookup_partial_symbol): Find the
4799 SYMBOL_MATCHES_SEARCH_NAME start of the found block of matching
4800 entries.
4801 * symtab.c (lookup_symbol_in_language): Remove the case_sensitive_off
4802 NAME lowercasing.
4803 (search_symbols): Pass REG_ICASE to regcomp for case_sensitive_off.
4804 (completion_list_add_name): New variable ncmp, initialize it, use it.
4805 * symtab.h (SYMBOL_HASH_NEXT): Always call tolower.
4806 * utils.c (strcmp_iw): Support case_sensitive_off.
4807 (strcmp_iw_ordered): Sort in a way compatible with case_sensitive_off.
4808 New function comment part. New variables saved_string1,
4809 saved_string2 and case_pass. Add a proper second pass.
4810
4811 2011-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
4812
4813 Replace re_comp/re_exec by regcomp/regexec.
4814 * symtab.c (struct search_symbols_data): New fields preg, preg_p.
4815 (search_symbols_name_matches): Use them, use regexec.
4816 (search_symbols): New variable retval_chain, adjust the use of
4817 old_chain against it. Replace re_comp by regcomp. Use the new struct
4818 search_symbols_data fields, use regexec instead of re_exec.
4819
4820 2011-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
4821
4822 Format the code for the next patch.
4823 * dwarf2read.c (struct mapped_index): Include delimiting newlines.
4824 * utils.c (strcmp_iw_ordered): Reformat the code for the next patch.
4825 New variables c1 and c2.
4826
4827 2011-04-27 Ulrich Weigand <ulrich.weigand@linaro.org>
4828
4829 * infrun.c (proceed): Do not single-step into signal delivery
4830 when stepping off a breakpoint location.
4831 (insert_step_resume_breakpoint_at_frame): Move prototype earlier.
4832 (insert_step_resume_breakpoint_at_caller): Likewise.
4833 (insert_step_resume_breakpoint_at_sal): Likewise.
4834 (insert_longjmp_resume_breakpoint): Likewise.
4835
4836 2011-04-27 Yao Qi <yao@codesourcery.com>
4837
4838 * common/linux-ptrace.h: Remove include <sys/wait.h>.
4839
4840 2011-04-27 Joel Brobecker <brobecker@adacore.com>
4841
4842 * procfs.c (procfs_pass_signals): Fix advance declaration.
4843
4844 2011-04-27 Ulrich Weigand <ulrich.weigand@linaro.org>
4845
4846 * target.h (struct target_ops): Remove to_notice_signals;
4847 add to_pass_signals.
4848 (target_notice_signals): Remove.
4849 (target_pass_signals): Add prototype.
4850 * target.c (update_current_target): Remove to_notice_signals;
4851 mention to_pass_signals.
4852 (target_pass_signals): New function.
4853 (debug_to_notice_signals): Remove.
4854 (setup_target_debug): Do not install debug_to_notice_signals.
4855
4856 * infrun.c (signal_pass): New global.
4857 (resume): Call target_pass_signals.
4858 (handle_inferior_event): Report all signals while stepping over
4859 non-steppable watchpoint. Reset trap_expected to ensure breakpoints
4860 are re-inserted when stepping over a signal handler.
4861 (signal_cache_update): New function.
4862 (signal_stop_update): Call it.
4863 (signal_print_update): Likewise.
4864 (signal_pass_update): Likewise.
4865 (handle_command): Call signal_cache_update and target_pass_signals
4866 instead of target_notice_signals.
4867 (_initialize_infrun): Initialize signal_pass.
4868
4869 * linux-nat.c (pass_mask): New global.
4870 (linux_nat_pass_signals): New function.
4871 (linux_nat_create_inferior): Report all signals initially.
4872 (linux_nat_attach): Likewise.
4873 (linux_nat_resume): Use pass_mask to decide whether to directly
4874 handle an inferior signal.
4875 (linux_nat_wait_1): Likewise.
4876 (linux_nat_add_target): Install to_pass_signals callback.
4877
4878 * nto-procfs.c (notice_signals): Remove.
4879 (procfs_resume): Do not call notice_signals.
4880 (procfs_notice_signals): Remove.
4881 (procfs_pass_signals): New function.
4882 (init_procfs_ops): Install to_pass_signals callback instead of
4883 to_notice_signals callback.
4884 (_initialize_procfs): Report all signals initially.
4885
4886 * procfs.c (procfs_notice_signals): Remove.
4887 (procfs_pass_signals): New function.
4888 (procfs_target): Install to_pass_signals callback instead of
4889 to_notice_signals callback.
4890 (register_gdb_signals): Remove.
4891 (procfs_debug_inferior): Report all signals initially.
4892 (procfs_init_inferior): Remove redundant register_gdb_signals call.
4893
4894 * remote.c (remote_pass_signals): Add numsigs and pass_signals
4895 parameters; use them instead of calling signal_..._state routines.
4896 (remote_notice_signals): Remove.
4897 (remote_start_remote): Report all signals initially.
4898 (remote_resume): Do not call remote_pass_signals.
4899 (_initialize_remote): Install to_pass_signals callback instead of
4900 to_notice_signals callback.
4901
4902 2011-04-27 Pedro Alves <pedro@codesourcery.com>
4903
4904 * breakpoint.c (user_settable_breakpoint): Delete.
4905 (user_breakpoint_p): Remove check on user_settable_breakpoint.
4906 (delete_command): Check user_breakpoint_p instead of looking at
4907 the breakpoint's type.
4908 (disable_command): Ditto.
4909 (enable_command): Ditto.
4910 (delete_trace_command): Use user_breakpoint_p instead of looking
4911 at the breakpoint number directly. When checking if there are
4912 user visible tracepoints, in order to know whether to ask the user
4913 for confirmation, check whether the breakpoint is actually a
4914 tracepoint.
4915
4916 2011-04-27 Vladimir Prus <vladimir@codesourcery.com>
4917
4918 * python/py-breakpoint.c (gdbpy_breakpoint_created): Fix
4919 compilation.
4920
4921 2011-04-27 Vladimir Prus <vladimir@codesourcery.com>
4922
4923 MI breakpoint notifications.
4924
4925 * annotate.c (breakpoint_changed): Adjust parameter type.
4926 * breakpoint.c (set_breakpoint_condition): Adjust to change
4927 in breakpoint_modified type.
4928 (breakpoint_set_commands): Likewise.
4929 (do_map_commands_command): Likewise.
4930 (bpstat_check_breakpoint_conditions): Notify that breakpoint has
4931 changed after bumping hit count.
4932 (bpstat_stop_status): Likewise.
4933 (print_one_breakpoint_location): Don't wrap in tuple here.
4934 (print_one_breakpoint): Always print individual locations.
4935 For locations, use unnamed tuple.
4936 (disable_breakpoints_in_unloaded_shlib): Notify that breakpoint
4937 has changed.
4938 (create_catchpoint, create_syscall_event_catchpoint): Call
4939 breakpoint_created obsever.
4940 (mention): Don't call breakpoint_created observer.
4941 (create_breakpoint_sal): Call breakpoint_created observer.
4942 (create_breakpoint, watch_command_1): Likewise.
4943 (create_ada_exception_breakpoint): Likewise.
4944 (delete_breakpoint): Call breakpoint_deleted breakpoint.
4945 (locations_are_equal): New.
4946 (update_breakpoint_locations): If locations were changed, notify.
4947 (set_ignore_count, disable_breakpoint, do_enable_breakpoint):
4948 Call breakpoint_modified observer.
4949
4950 * mi/mi-cmd-break.c (breakpoint_notify): Adjust.
4951 (mi_cmd_break_insert): Don't set observers for modify and delete.
4952 * mi/mi-interp.c (mi_suppress_breakpoint_notifications): New.
4953 (mi_breakpoint_created, mi_breakpoint_deleted)
4954 (mi_breakpoint_modified): New.
4955 (mi_interpreter_init): Hook the above.
4956 * mi/mi-main.c (mi_cmd_execute): Disable breakpoint notifications
4957 while -break-* commands are executing.
4958 * mi/mi-main.h (mi_suppress_breakpoint_notifications): New.
4959 * mi/mi-out.c (struct ui_out_data): New field original_buffer.
4960 (mi_redirect): New.
4961 (mi_ui_out_impl): Hook in mi_redirect.
4962 (mi_field_skip): True to the name, skip the field, don't output
4963 a field with an empty value.
4964
4965 * python/py-breakpoint.c (gdbpy_breakpoint_created)
4966 (gdbpy_breakpoint_deleted): Adjust.
4967 * tui/tui-hooks.c (tui_event_create_breakpoint)
4968 (tui_event_delete_breakpoint, tui_event_modify_breakpoint): Adjust.
4969
4970 2011-04-26 Aleksandar Ristovski <aristovski@qnx.com>
4971
4972 * nto-procfs.c (procfs_insert_hw_watchpoint): Fix prototype.
4973 (procfs_remove_hw_watchpoint): Likewise.
4974
4975 2011-04-26 Michael Walle <michael@walle.cc>
4976
4977 * remote.c (remote_start_remote): Ack packet after sending the
4978 interrupt sequence.
4979
4980 2011-04-26 Yao Qi <yao@codesourcery.com>
4981
4982 * linux-nat.c: Move common macros to ...
4983 Include linux-ptrace.h.
4984 * common/linux-ptrace.h: ... here. New.
4985
4986 2011-04-25 Jan Kratochvil <jan.kratochvil@redhat.com>
4987
4988 * elfread.c (elf_symfile_read): Protect dwarf2_initialize_objfile by
4989 !objfile_has_partial_symbols. New comment.
4990 * objfiles.c (objfile_has_partial_symbols): Call HAS_SYMBOLS if
4991 SYM_READ_PSYMBOLS is not present. Extend the comment.
4992 * symfile.h (struct sym_fns): Extend the sym_read_psymbols comment.
4993
4994 2011-04-25 Jan Kratochvil <jan.kratochvil@redhat.com>
4995
4996 * defs.h (ENUM_BITFIELD): Remove.
4997
4998 2011-04-24 Jan Kratochvil <jan.kratochvil@redhat.com>
4999 Eli Zaretskii <eliz@gnu.org>
5000
5001 * NEWS: Document the new gdbserver --once option.
5002
5003 2011-04-21 Jie Zhang <jzhang918@gmail.com>
5004
5005 * MAINTAINERS: Update my email address.
5006
5007 2011-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
5008
5009 * gdb_wchar.h (USE_INTERMEDIATE_ENCODING_FUNCTION): New macro.
5010 (INTERMEDIATE_ENCODING): Change value to intermediate_encoding
5011 function call if __STDC_ISO_10646__ macro is defined.
5012 (intermediate_encoding): New prototype.
5013 * charset.c (your_gdb_wchar_t_is_bogus): New extern test variable
5014 to generate compile time error for unsupported gdb_wchar_t size.
5015 (ENDIAN_SUFFIX): New macro.
5016 (intermediate_encoding): New function.
5017
5018 2011-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5019
5020 * ada-lang.c (struct add_partial_datum): Update the comment for
5021 expand_partial_symbol_name.
5022 (ada_add_partial_symbol_completions): Rename to ...
5023 (ada_expand_partial_symbol_name): ... here, change return type, update
5024 function comment, call symbol_completion_match instead of
5025 symbol_completion_add.
5026 (ada_make_symbol_completion_list): Use now expand_partial_symbol_names
5027 and ada_expand_partial_symbol_name.
5028 * dwarf2read.c (dw2_expand_symtabs_matching): Support NULL
5029 FILE_MATCHER.
5030 (dw2_map_symbol_names): Remove.
5031 (dwarf2_gdb_index_functions): Unlist dw2_map_symbol_names.
5032 * psymtab.c (map_symbol_names_psymtab): Remove.
5033 (expand_symtabs_matching_via_partial): Support NULL FILE_MATCHER.
5034 Support KIND == ALL_DOMAIN. Exchange the NAME_MATCHER and KIND check
5035 order.
5036 (psym_functions): Unlist map_symbol_names_psymtab.
5037 (map_partial_symbol_names): Rename to ...
5038 (expand_partial_symbol_names): ... here, change the FUN type, call
5039 expand_symtabs_matching with ALL_DOMAIN and NULL FILE_MATCHER now.
5040 * psymtab.h (map_partial_symbol_names): Rename to ...
5041 (expand_partial_symbol_names): ... here, change the FUN type.
5042 * symfile.h (struct quick_symbol_functions): Update the description of
5043 expand_symtabs_matching. Remove map_symbol_names.
5044 * symtab.c (search_symbols): Add ALL_DOMAIN to the function comment.
5045 (struct add_name_data): Update the comment for
5046 expand_partial_symbol_name.
5047 (add_partial_symbol_name): Rename to ...
5048 (expand_partial_symbol_name): ... here. Replace
5049 completion_list_add_name call by strncmp.
5050 (default_make_symbol_completion_list_break_on): Use now
5051 expand_partial_symbol_names and expand_partial_symbol_name.
5052 * symtab.h (enum search_domain): New element ALL_DOMAIN.
5053
5054 2011-04-20 Tom Tromey <tromey@redhat.com>
5055
5056 * dwarf2read.c (save_gdb_index_command): Replace format
5057 documentation with a pointer to the manual.
5058
5059 2011-04-20 Pedro Alves <pedro@codesourcery.com>
5060
5061 * regcache.c: Include remote.h.
5062 (enum regcache_dump_what) <regcache_dump_remote>: New enum value.
5063 (regcache_dump): Handle regcache_dump_remote.
5064 (maintenance_print_remote_registers): New function.
5065 (_initialize_regcache): Install "maint print remote-registers"
5066 command.
5067 * remote.c (map_regcache_remote_table): New function, factored out
5068 from ...
5069 (init_remote_state): ... here.
5070 (remote_register_number_and_offset): New.
5071 * remote.h (remote_register_number_and_offset): Declare.
5072
5073 2011-04-20 Pedro Alves <pedro@codesourcery.com>
5074
5075 * regcache.c (get_thread_arch_regcache): If creating a regcache for
5076 null_ptid, assume and allow a NULL address space, instead of
5077 asking the target for the ptid's address space.
5078 * infrun.c (ptid_is_pid): Remove assertion.
5079
5080 2011-04-19 Tom Tromey <tromey@redhat.com>
5081
5082 * windows-tdep.c (windows_xfer_shared_library):
5083 * windows-nat.c (get_module_name, windows_make_so):
5084 * v850-tdep.c (v850_handle_pushm):
5085 * utils.c (null_cleanup, gdb_realpath):
5086 * ui-out.c (get_next_header):
5087 * tracepoint.c (clear_traceframe_info):
5088 * symtab.c (lookup_symtab):
5089 * serial.h (struct serial_ops):
5090 * mipsread.c (read_alphacoff_dynamic_symtab):
5091 * infcmd.c (print_return_value):
5092 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address):
5093 * f-exp.y (parse_number):
5094 * exceptions.c (catch_exceptions):
5095 * dummy-frame.c (dummy_frame_this_id):
5096 * defs.h (struct cleanup):
5097 * breakpoint.c (disable_breakpoints_in_unloaded_shlib):
5098 * arm-tdep.c (arm_push_dummy_call):
5099 * amd64-tdep.h (amd64_collect_xsave):
5100 * amd64-tdep.c (amd64_collect_xsave):
5101 * alpha-tdep.c (alpha_heuristic_frame_unwind_cache):
5102 * README (typing): Remove duplicate words.
5103 * cli/cli-decode.c (lookup_cmd_composition): Add comma.
5104 * infrun.c (siginfo_value_read): Fix typo.
5105 * solib-frv.c (frv_fdpic_find_global_pointer): Likewise.
5106 * top.c (source_line_number): Add comma.
5107
5108 2011-04-19 Marc Khouzam <marc.khouzam@ericsson.com>
5109
5110 * thread.c (any_live_thread_of_process): Prioritize threads
5111 that are not executing.
5112 * gdbthread.h (any_live_thread_of_process): Update comment
5113 as per above change.
5114
5115 2011-04-19 Andreas Schwab <schwab@linux-m68k.org>
5116
5117 * xcoffread.c (process_xcoff_symbol): Remove useless cast.
5118 (scan_xcoff_symtab): Likewise.
5119
5120 2011-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5121
5122 * xcoffread.c (process_xcoff_symbol): ARI fix: Avoid assignment
5123 inside if clause.
5124
5125 2011-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5126 Pedro Alves <pedro@codesourcery.com>
5127
5128 * xstormy16-tdep.c (xstormy16_push_dummy_call): Add local
5129 variables to simplify code and avoid == operator at end of
5130 line as this is against GNU coding standards.
5131
5132 2011-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5133
5134 * solib-svr4.c (svr4_keep_data_in_core): Rename local variable
5135 lm_name to name_lm to avoid conflict with lm_name function.
5136
5137 2011-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5138
5139 ARI fixes: Use only lowercase function name for static functions.
5140 * nto-tdep.c (LM_ADDR): Rename to...
5141 (lm_addr): New function name.
5142 (nto_relocate_section_addresses): Adapt to change above.
5143 * solib-sunos.c (LM_ADDR): Rename to...
5144 (lm_addr): New function name.
5145 (LM_NEXT): Rename to...
5146 (lm_next): New function name.
5147 (sunos_current_sos, sunos_relocate_section_addresses): Adapt to
5148 function name changes above.
5149 * solib-svr4.c (LM_ADDR_FROM_LINK_MAP): Rename to...
5150 (lm_addr_from_link_map): New function name.
5151 (HAS_LM_DYNAMIC_FROM_LINK_MAP): Rename to...
5152 (has_lm_dynamic_from_link_map): New function name.
5153 (LM_DYNAMIC_FROM_LINK_MAP): Rename to...
5154 (lm_dynamic_from_link_map): New function name.
5155 (LM_ADDR_CHECK): Rename to...
5156 (lm_addr_check): New function name.
5157 (LM_NEXT): Rename to...
5158 (lm_next): New function name.
5159 (LM_PREV): Rename to...
5160 (lm_prev): New function name.
5161 (LM_NAME): Rename to...
5162 (lm_name): New function name.
5163 (IGNORE_FIRST_LINK_MAP_ENTRY): Rename to...
5164 (ignore_first_link_map_entry): New function name.
5165 (svr4_keep_data_in_core): Adapt to function name changes above.
5166 (svr4_current_sos): Likewise.
5167 (enable_break): Likewise.
5168 (svr4_relocate_section_addresses): Likewise.
5169
5170 2011-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5171
5172 ARI cleanup.
5173 * xtensa-tdep.c (xtensa_register_type): Use xstrprintf instead of
5174 sprintf. Simplify code and avoid loosing memory.
5175 (xtensa_register_reggroup_p): Extract assignment out of IF clause.
5176 (call0_frame_cache): Remove && operator from end of line.
5177
5178 2011-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5179
5180 Fix libraries displacement if they change whether they were prelinked.
5181 * solib-svr4.c (LM_ADDR_CHECK): Set L_ADDR even if the DYNAMIC pointer
5182 does not match. Comment why.
5183
5184 2011-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5185
5186 * corelow.c: Include wrapper.h.
5187 (core_open): Call now gdb_target_find_new_threads.
5188 * wrapper.c: Include target.h.
5189 (gdb_target_find_new_threads): New.
5190 * wrapper.h (gdb_target_find_new_threads): New declaration.
5191
5192 2011-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5193
5194 * linux-thread-db.c (find_new_threads_callback): Exit on zero TI_TID
5195 even if !TARGET_HAS_EXECUTION.
5196
5197 2011-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5198
5199 Fix convert_code_addr_to_desc_addr for ppc64 files after eu-strip.
5200 * elfread.c (elf_symfile_read): New variable synth_abfd, pass it to
5201 bfd_get_synthetic_symtab.
5202 * jit.c (jit_register_code): Pass NULL to the new parameter parent.
5203 * machoread.c (macho_add_oso_symfile): Pass main_objfile to the new
5204 parameter parent, remove the call to add_separate_debug_objfile.
5205 * solib.c (solib_read_symbols): Pass NULL to the new parameter parent.
5206 * symfile-mem.c (symbol_file_add_from_memory): Likewise.
5207 * symfile.c (symbol_file_add_with_addrs_or_offsets): New parameter
5208 parent, new comment for it, call add_separate_debug_objfile for it.
5209 (symbol_file_add_separate): Pass objfile as the parameter parent,
5210 remove the call to add_separate_debug_objfile.
5211 (symbol_file_add_from_bfd): New parameter parent, pass it.
5212 (symbol_file_add): Pass NULL to the new parameter parent.
5213 * symfile.h (symbol_file_add_from_bfd): New parameter parent.
5214
5215 2011-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5216
5217 * elfread.c (elf_symtab_read): Do not ignore .L symbols if they are
5218 BSF_SYNTHETIC.
5219
5220 2011-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5221
5222 Fix Python access to inlined frames.
5223 * python/py-frame.c (frapy_read_var): Find BLOCK using get_frame_block.
5224 * python/py-symbol.c (gdbpy_lookup_symbol): Likewise.
5225
5226 2011-04-15 Tom Tromey <tromey@redhat.com>
5227
5228 * dwarf2read.c (add_index_entry): Use VEC_last, not VEC_length.
5229
5230 2011-04-15 Gary Benson <gbenson@redhat.com>
5231
5232 * MAINTAINERS: Add myself to write-after-approval section.
5233
5234 2011-04-14 Mike Frysinger <vapier@gentoo.org>
5235
5236 * remote-sim.c (sim_command_completer): New function.
5237 (_initialize_remote_sim): Set completer to sim_command_completer.
5238
5239 2011-04-13 Thiago Jung Bauermann <bauerman@br.ibm.com>
5240
5241 * breakpoint.c (print_exception_catchpoint): Rename to ...
5242 (print_it_exception_catchpoint): ... this.
5243 (gnu_v3_exception_catchpoint_ops): Update with new name
5244 for print_it_exception_catchpoint.
5245
5246 2011-04-13 Edjunior Machado <emachado@linux.vnet.ibm.com>
5247
5248 * MAINTAINERS: Add myself for write after approval privileges.
5249
5250 2011-04-13 Marek Polacek <mpolacek@redhat.com>
5251
5252 * MAINTAINERS: Add myself as a write-after-approval maintainer.
5253
5254 2011-04-13 Thiago Jung Bauermann <bauerman@br.ibm.com>
5255
5256 * breakpoint.c (watch_command_1): Remove colon from exp_string.
5257
5258 2011-04-13 Thiago Jung Bauermann <bauerman@br.ibm.com>
5259
5260 * breakpoint.c (save_breakpoints): Verify whether
5261 breakpoint_ops.print_recreate is defined before calling it.
5262
5263 2011-04-11 Gary Benson <gbenson@redhat.com>
5264
5265 Fix failure with --enable-maintainer-mode.
5266 * Makefile.in (aclocal_m4_deps): Updated gnulib dependencies.
5267
5268 2011-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
5269
5270 Code cleanup.
5271 * symtab.c (search_symbols): Reorder the KIND description in the
5272 function comment. Remove the unused 4th element of types, types2,
5273 types3 and types4. New gdb_assert on KIND.
5274 (symtab_symbol_info): Remove the unused 4th element of classnames.
5275 New gdb_assert on KIND.
5276 * symtab.h (enum search_domain): New warning in the enum comment.
5277 Assign numbers to the elements VARIABLES_DOMAIN, FUNCTIONS_DOMAIN and
5278 TYPES_DOMAIN.
5279
5280 2011-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
5281
5282 Fix crash of gdb save-index on a STABS file.
5283 * dwarf2read.c (write_psymtabs_to_index): Return also on no
5284 PSYMTABS_ADDRMAP.
5285
5286 2011-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
5287
5288 Fix DW_AT_accessibility compatibility with gcc-4.6+.
5289 * dwarf2read.c: Include ctype.h.
5290 (producer_is_gxx_lt_4_6, dwarf2_default_access_attribute): New
5291 functions.
5292 (dwarf2_add_field): Fix new_field->accessibility by calling
5293 dwarf2_default_access_attribute. Restructure setting accessibility
5294 vs. virtuality.
5295 (dwarf2_add_member_fn): New variable accessibility. Fix fnp
5296 is_private and is_protected by calling
5297 dwarf2_default_access_attribute.
5298
5299 2011-04-08 Kevin Buettner <kevinb@redhat.com>
5300
5301 * rx-tdep.c (rx_frame_unwind): Add default_frame_unwind_stop_reason
5302 to the initialization.
5303
5304 2011-04-08 Steve Ellcey <sje@cup.hp.com>
5305
5306 * Add default_frame_unwind_stop_reason value to libunwind_frame_unwind
5307 initalization.
5308
5309 2011-04-07 Pierre Muller <muller@ics.u-strasbg.fr>
5310
5311 Remove support for old Cygwin 1.5 versions.
5312 * remote-fileio.c: Remove macros used to emulate new cygwin_conv_path
5313 function on old Cygwin version.
5314 * windows-nat.c: Remove cygwin version check and always define
5315 __USEWIDE for Cygwin compilation.
5316
5317 2011-04-07 Yao Qi <yao@codesourcery.com>
5318
5319 * arm-linux-tdep.c (arm_linux_copy_svc): Remove parameters INSN
5320 and TO.
5321 * arm-tdep.c (cleanup_svc): Handle variable instruction size.
5322 (arm_copy_svc): Remove parameters INSN and TO.
5323 (decode_svc_copro): Update caller.
5324 * arm-tdep.h (struct displaced_step_closure): Remove parameters
5325 from function pointer `copy_svc_os'.
5326
5327 2011-04-07 Yao Qi <yao@codesourcery.com>
5328
5329 * arm-tdep.c (cleanup_branch): Set a correct return address in
5330 LR for ARM and Thumb.
5331
5332 2011-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
5333
5334 Code cleanup.
5335 * dictionary.c (dict_hash): Use SYMBOL_HASH_NEXT.
5336 * dwarf2read.c (mapped_index_string_hash): Refer to SYMBOL_HASH_NEXT
5337 in the function comment, a new note on values compatibility.
5338 * minsyms.c (msymbol_hash_iw, msymbol_hash): Use SYMBOL_HASH_NEXT.
5339 * symtab.h (SYMBOL_HASH_NEXT): New.
5340
5341 2011-04-06 Thiago Jung Bauermann <bauerman@br.ibm.com>
5342
5343 * ppc-linux-nat.c (check_condition): Add len output parameter.
5344 Set it based on the memory region referenced in the condition
5345 expression. Update all callers.
5346
5347 2011-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
5348
5349 Fix crash regression on systems featuring .gdb_index.
5350 * objfiles.c (free_objfile): Move the
5351 forget_cached_source_info_for_objfile call earlier. Comment it.
5352 Extend the comment for objfile_free_data.
5353
5354 2011-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
5355
5356 Fix regression of displaying the debug format.
5357 * buildsym.c (end_symtab): Set symtab's debugformat and producer from
5358 subfile.
5359
5360 2011-04-04 Tom Tromey <tromey@redhat.com>
5361
5362 * cli/cli-interp.c (struct captured_execute_command_args):
5363 Remove.
5364 (do_captured_execute_command): Remove.
5365 (safe_execute_command): Use TRY_CATCH.
5366 * cli/cli-script.c (struct wrapped_read_command_file_args):
5367 Remove.
5368 (wrapped_read_command_file): Remove.
5369 (script_from_file): Use TRY_CATCH.
5370 * exceptions.c (catch_exception): Remove.
5371 * exceptions.h (catch_exception): Remove.
5372 (deprecated_throw_reason): Update comment.
5373 * mi/mi-main.c (captured_mi_execute_command): Change 'data'
5374 argument to 'context'.
5375 (mi_execute_command): Use TRY_CATCH.
5376 * remote.c (struct start_remote_args): Remove.
5377 (remote_start_remote): Update; change arguments.
5378 (remote_open_1): Use TRY_CATCH.
5379
5380 2011-04-04 Tom Tromey <tromey@redhat.com>
5381
5382 * tracepoint.c (scope_info): Update.
5383 * symtab.c (decode_line_spec): Update.
5384 * python/python.c (gdbpy_decode_line): Update.
5385 * linespec.h (decode_line_1): Update.
5386 * linespec.c (decode_line_1): Remove 'not_found_ptr' argument.
5387 (decode_compound, find_method, symtab_from_filename)
5388 (decode_variable): Likewise.
5389 * cli/cli-cmds.c (edit_command): Update.
5390 (list_command): Update.
5391 * breakpoint.c (parse_breakpoint_sals): Remove 'not_found_ptr'
5392 argument.
5393 (create_breakpoint): Update.
5394 (until_break_command): Update.
5395 (addr_string_to_sals): Update.
5396 (decode_line_spec_1): Update.
5397
5398 2011-04-04 Tom Tromey <tromey@redhat.com>
5399
5400 * breakpoint.c (struct captured_parse_breakpoint_args): Remove.
5401 (do_captured_parse_breakpoint): Remove.
5402 (create_breakpoint): `e' is now volatile. Remove `parse_args'.
5403 Use TRY_CATCH directly.
5404
5405 2011-04-04 Tom Tromey <tromey@redhat.com>
5406
5407 * symtab.h (free_symtab): Remove.
5408 (forget_cached_source_info_for_objfile): Declare.
5409 * symmisc.c (free_symtab): Remove.
5410 * source.c (forget_cached_source_info_for_objfile): New function.
5411 (forget_cached_source_info): Use it.
5412 * objfiles.c (free_objfile): Simplify check before calling
5413 clear_current_source_symtab_and_line. Call
5414 forget_cached_source_info_for_objfile.
5415
5416 2011-04-04 Tom Tromey <tromey@redhat.com>
5417
5418 * mdebugread.c (psymtab_to_symtab_1): Copy linetable to obstack.
5419 (new_symtab): Don't set `free_code' on symtab.
5420 (new_linetable): Properly handle size==0.
5421 * symtab.h (struct symtab) <free_code, free_func>: Remove.
5422 * symmisc.c (free_symtab): Don't free the linetable. Don't call
5423 free_func.
5424 * jv-lang.c (struct jv_per_objfile_data): New.
5425 (jv_per_objfile_free): Free the data.
5426 (get_dynamics_objfile): Allocate a jv_per_objfile_data.
5427 (get_java_class_symtab): Set the `dict' field on the
5428 jv_per_objfile_data.
5429 (free_class_block): Remove.
5430 * buildsym.c (end_symtab): Don't set `free_code' or `free_func' on
5431 the symtab.
5432
5433 2011-04-04 Tom Tromey <tromey@redhat.com>
5434
5435 * symfile.c (reread_symbols): Update.
5436 * objfiles.h (struct objfile) <cp_namespace_symtab>: Remove
5437 field.
5438 * objfiles.c (allocate_objfile): Update.
5439 * cp-support.h (cp_check_possible_namespace_symbols): Don't
5440 declare.
5441 * cp-namespace.c (lookup_symbol_file): Don't call
5442 lookup_possible_namespace_symbol.
5443 (initialize_namespace_symtab, get_possible_namespace_block)
5444 (free_namespace_block, cp_check_possible_namespace_symbols)
5445 (check_possible_namespace_symbols_loop)
5446 (check_one_possible_namespace_symbol)
5447 (lookup_possible_namespace_symbol): Remove.
5448 (maintenance_cplus_namespace): Replace with notice.
5449 (_initialize_cp_namespace): Deprecate `maint cplus namespace'.
5450
5451 2011-04-04 Tom Tromey <tromey@redhat.com>
5452
5453 * xcoffread.c (read_xcoff_symtab): Make `debugfmt' const.
5454 * symtab.h (struct symtab) <producer, debugformat>: Now const.
5455 * symmisc.c (free_symtab): Don't free debugformat.
5456 * buildsym.h (struct subfile) <producer, debugformat>: Now const.
5457 (record_debugformat, record_producer): Document.
5458 * buildsym.c (end_symtab): Don't save debugformat and producer
5459 names on obstack.
5460 (end_symtab): Don't free debugformat and producer fields.
5461 (record_debugformat): Don't call xstrdup.
5462 (record_producer): Likewise.
5463
5464 2011-04-04 Tom Tromey <tromey@redhat.com>
5465
5466 * source.c (find_source_lines): Remove LSEEK_NOT_LINEAR code.
5467 (source_line_charpos, source_charpos_line): Remove.
5468
5469 2011-04-04 Tom Tromey <tromey@redhat.com>
5470
5471 * symtab.h (domain_enum): Split in two...
5472 (enum search_domain): New.
5473 (search_symbols): Update.
5474 * symtab.c (print_symbol_info, symtab_symbol_info): Remove
5475 redundant declarations.
5476 (search_symbols): Change 'kind' argument to search_domain.
5477 Update.
5478 (print_symbol_info): Likewise.
5479 (symtab_symbol_info): Likewise.
5480 * symfile.h (struct quick_symbol_functions)
5481 <pre_expand_symtabs_matching>: Change type of 'kind' argument.
5482 <expand_symtabs_matching>: Likewise.
5483 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Update.
5484 (expand_symtabs_matching_via_partial): Update.
5485 * dwarf2read.c (dw2_pre_expand_symtabs_matching): Update.
5486 (dw2_expand_symtabs_for_function): Update.
5487 * block.h: Moved anonymous enum...
5488 * defs.h (enum block_enum): ... here. Now named.
5489
5490 2011-04-03 Joel Brobecker <brobecker@adacore.com>
5491
5492 GDB 7.3 branch created (branch timestamp: 2011-04-01 01:00 UTC)
5493 * version.in: Bump version to 7.3.50.20110403-cvs.
5494
5495 2011-04-03 Joel Brobecker <brobecker@adacore.com>
5496
5497 * NEWS: Create a new section for the next release branch.
5498 Rename the section of the current branch, now that it has
5499 been cut.
5500
5501 2011-04-01 Ulrich Weigand <ulrich.weigand@linaro.org>
5502
5503 * arm-tdep.c (arm_gdbarch_init): Enfore correct register number
5504 for "fpscr" in target description.
5505
5506 2011-04-01 Jan Kratochvil <jan.kratochvil@redhat.com>
5507
5508 * dwarf2read.c (find_slot_in_mapped_hash): New variable back_to,
5509 initialize it. Delay HASH initialization. Strip the part after open
5510 parenthesis for languages with qualifiers. Call do_cleanups.
5511
5512 2011-04-01 Tom Tromey <tromey@redhat.com>
5513
5514 * utils.c (report_command_stats): Don't print `-' for negative
5515 number.
5516
5517 2011-04-01 Eric Botcazou <ebotcazou@adacore.com>
5518
5519 * ada-lang.c (ada_is_simple_array_type, ada_value_slice_from_ptr)
5520 (ada_value_slice, empty_array, to_fixed_array_type): Deal with
5521 typedefs.
5522
5523 2011-04-01 Joel Brobecker <brobecker@adacore.com>
5524
5525 * breakpoint.h (bpdisp_text): Add declaration.
5526 * breakpoint.c (bpdisp_text): Make non-static.
5527 * ada-lang.c: #include "mi/mi-common.h".
5528 (print_it_exception): Rewrite to improve GDB/MI output.
5529
5530 2011-04-01 Pedro Alves <pedro@codesourcery.com>
5531
5532 * arm-tdep.h (struct address_space): Add forward declaration.
5533
5534 2011-04-01 Ulrich Weigand <ulrich.weigand@linaro.org>
5535
5536 * arm-tdep.h (arm_insert_single_step_breakpoint): Add prototype.
5537 * arm-tdep.c (arm_override_mode): New global.
5538 (arm_pc_is_thumb): Respect arm_override_mode. Remove single-step
5539 execution mode heuristics.
5540 (thumb_get_next_pc_raw): Remove INSERT_BKTP argument; always insert
5541 second single-step breakpoint if needed, using
5542 arm_insert_single_step_breakpoint.
5543 (arm_get_next_pc_raw): Remove INSERT_BKTP argument. Only handle
5544 ARM execution mode, do not call thumb_get_next_pc_raw.
5545 (arm_get_next_pc): Encode execution mode in return value. Call
5546 either arm_get_next_pc_raw or thumb_get_next_pc_raw.
5547 (arm_insert_single_step_breakpoint): New function.
5548 (arm_software_single_step): Call it.
5549 * arm-linux-tdep.c (arm_linux_sigreturn_return_addr): Add IS_THUMB
5550 argument to return execution mode of sigreturn target.
5551 (arm_linux_syscall_next_pc): Use it.
5552 (arm_linux_copy_svc): Update call.
5553 (arm_linux_software_single_step): Call
5554 arm_insert_single_step_breakpoint.
5555
5556 2011-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
5557
5558 * dwarf2read.c (dwarf2_read_index): Fix .gdb_index version number in
5559 the comment.
5560
5561 2011-03-31 Tom Tromey <tromey@redhat.com>
5562
5563 * varobj.c (update_dynamic_varobj_children): Properly handle
5564 errors from iterator.
5565
5566 2011-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
5567
5568 * dwarf2read.c (dwarf2_name): Initialize DEMANGLED. Avoid demangling
5569 struct linkage name twice.
5570
5571 2011-03-31 Tom Tromey <tromey@redhat.com>
5572
5573 * python/py-prettyprint.c (print_stack_unless_memory_error): Add
5574 missing ">" to message.
5575
5576 2011-03-31 Tom Tromey <tromey@redhat.com>
5577
5578 * varobj.c (instantiate_pretty_printer): Remove duplicate
5579 'return'.
5580
5581 2011-03-31 Ulrich Weigand <ulrich.weigand@linaro.org>
5582
5583 * i386-tdep.c (i386_frame_prev_register): Unwind SP from memory
5584 if neither saved value nor register available (e.g. signal frame).
5585
5586 2011-03-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
5587
5588 * macroexp.c (expand): Avoid uninitialized variable
5589 compiler warning.
5590
5591 2011-03-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
5592
5593 * breakpoint.c (break_range_command): Fix typo in comment.
5594
5595 2011-03-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
5596 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
5597
5598 Implement support for PowerPC BookE ranged breakpoints.
5599 * NEWS: Mention support for ranged breakpoints on embedded PowerPC.
5600 * breakpoint.h (struct bp_target_info) <length>: New member
5601 variable.
5602 (struct breakpoint_ops) <breakpoint_hit>: Take struct bp_location
5603 instead of struct breakpoint as argument, and also add ASPACE
5604 and BP_ADDR arguments. Update all callers.
5605 (struct breakpoint_ops) <print_one_detail>: New method.
5606 (struct breakpoint) <addr_string_range_end>: New member variable.
5607 * breakpoint.c (breakpoint_location_address_match): Add function
5608 prototype.
5609 (insert_bp_location): Set bl->target_info.length.
5610 (breakpoint_here_p): Call breakpoint_location_address_match.
5611 (moribund_breakpoint_here_p): Likewise.
5612 (regular_breakpoint_inserted_here_p): Likewise.
5613 (breakpoint_thread_match): Likewise.
5614 (bpstat_stop_status): Likewise.
5615 (bpstat_check_location): Move call to
5616 breakpoint_ops.breakpoint_hit to the top.
5617 (print_one_breakpoint_location): Call
5618 breakpoint_ops.print_one_detail if available.
5619 (breakpoint_address_match_range): New function.
5620 (breakpoint_location_address_match): Likewise.
5621 (breakpoint_locations_match): Compare the length field of the
5622 locations too.
5623 (hw_breakpoint_used_count): Count resources used by all locations
5624 in a breakpoint, and use breakpoint_ops.resources_needed if
5625 available.
5626 (breakpoint_hit_ranged_breakpoint): New function.
5627 (resources_needed_ranged_breakpoint): Likewise.
5628 (print_it_ranged_breakpoint): Likewise.
5629 (print_one_ranged_breakpoint): Likewise.
5630 (print_one_detail_ranged_breakpoint): Likewise.
5631 (print_mention_ranged_breakpoint): Likewise.
5632 (print_recreate_ranged_breakpoint): Likewise.
5633 (ranged_breakpoint_ops): New structure.
5634 (find_breakpoint_range_end): New function.
5635 (break_range_command): Likewise.
5636 (delete_breakpoint): Free addr_string_range_end.
5637 (update_breakpoint_locations): Add SALS_END argument. Update
5638 all callers. Calculate breakpoint length if a non-zero SALS_END
5639 is given. Call breakpoint_locations_match instead of
5640 breakpoint_address_match.
5641 (reset_breakpoint): Find SaL of the end of the range if B is a
5642 ranged breakpoint.
5643 (_initialize_breakpoint): Register break-range command.
5644 * defs.h (print_core_address): Add function prototype.
5645 * ppc-linux-nat.c (ppc_linux_ranged_break_num_registers): New
5646 function.
5647 (ppc_linux_insert_hw_breakpoint): Support ranged breakpoints.
5648 (ppc_linux_remove_hw_breakpoint): Likewise.
5649 (_initialize_ppc_linux_nat): Initialize
5650 to_ranged_break_num_registers.
5651 * target.c (update_current_target): Add comment about
5652 to_ranged_break_num_registers.
5653 (target_ranged_break_num_registers): New function.
5654 * target.h (struct target_ops) <to_ranged_break_num_registers>:
5655 New method.
5656 (target_ranged_break_num_registers): Add function prototype.
5657 * ui-out.c (ui_out_field_core_addr): Move address-printing logic to ...
5658 * utils.c (print_core_address): ... here.
5659
5660 2011-03-31 Ulrich Weigand <uweigand@de.ibm.com>
5661
5662 * breakpoint.c (addr_string_to_sals): Avoid uninitialized
5663 variable compiler warning.
5664
5665 2011-03-30 Thiago Jung Bauermann <bauerman@br.ibm.com>
5666
5667 * breakpoint.c (breakpoint_re_set_one): Factor out breakpoint-resetting
5668 code from here ...
5669 (re_set_breakpoint): ... to here ...
5670 (addr_string_to_sals): ... and here.
5671
5672 2011-03-29 Pierre Muller <muller@ics.u-strasbg.fr>
5673
5674 * Makefile.in (SFILES): Add missing C sources.
5675 (HFILES_NO_SRCDIR): Remove gdbserver subdirectory headers.
5676 Add missing headers.
5677
5678 2011-03-29 Mike Frysinger <vapier@gentoo.org>
5679
5680 * .gitignore: New file.
5681
5682 2011-03-29 Mike Frysinger <vapier@gentoo.org>
5683
5684 * NEWS: Mention new cfi device simulation.
5685
5686 2011-03-29 Tom Tromey <tromey@redhat.com>
5687
5688 * dwarf2read.c (fixup_partial_die): Handle linkage name on
5689 otherwise anonymous types.
5690 (dwarf2_name): Likewise.
5691 * valops.c (value_struct_elt_for_reference): Refine artificial
5692 type logic. Call error if j==-1.
5693
5694 2011-03-29 Andreas Tobler <andreast-list@fgznet.ch>
5695
5696 Fix false GCC warning.
5697 * infcall.c (find_function_addr): Initialize funaddr.
5698
5699 2011-03-29 Pierre Muller <muller@ics.u-strasbg.fr>
5700
5701 Fix mingw compilation with --enable-targets=all.
5702 * remote-mips.c (gdb_usleep.h): Include header.
5703 (mips_enter_debug): Use gdb_usleep instead of sleep.
5704
5705 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5706
5707 Support resolution of STT_GNU_IFUNC via breakpoints.
5708 * breakpoint.c (print_it_typical): Support bp_gnu_ifunc_resolver and
5709 bp_gnu_ifunc_resolver_return.
5710 (bpstat_what): Rename parameter to bs_head, new variable bs, adjust
5711 the loop. Support bp_gnu_ifunc_resolver and
5712 bp_gnu_ifunc_resolver_return. New comment after the loop. New loop
5713 for bp_gnu_ifunc_resolver and bp_gnu_ifunc_resolver_return
5714 breakpoints.
5715 (bptype_string, print_one_breakpoint_location): Support
5716 bp_gnu_ifunc_resolver and bp_gnu_ifunc_resolver_return.
5717 (user_settable_breakpoint): Return true also for
5718 bp_gnu_ifunc_resolver.
5719 (allocate_bp_location): Support bp_gnu_ifunc_resolver and
5720 bp_gnu_ifunc_resolver_return.
5721 (set_breakpoint_location_function): New parameter explicit_loc,
5722 describe it. Call find_pc_partial_function_gnu_ifunc with new
5723 variable IS_GNU_IFUNC and adjust the address for STT_GNU_IFUNC if
5724 EXPLICIT_LOC is not set.
5725 (set_raw_breakpoint): Set EXPLICIT_LOC for
5726 set_breakpoint_location_function.
5727 (clone_momentary_breakpoint): Use true for EXPLICIT_LOC of
5728 set_breakpoint_location_function.
5729 (mention): Support bp_gnu_ifunc_resolver and
5730 bp_gnu_ifunc_resolver_return.
5731 (add_location_to_breakpoint): Set EXPLICIT_LOC for
5732 set_breakpoint_location_function.
5733 (update_breakpoint_locations): Remove static.
5734 (breakpoint_re_set_one): Support bp_gnu_ifunc_resolver and
5735 bp_gnu_ifunc_resolver_return.
5736 * breakpoint.h (enum bptype): New fields bp_gnu_ifunc_resolver and
5737 bp_gnu_ifunc_resolver_return.
5738 (update_breakpoint_locations): New declaration.
5739 * elfread.c: Include gdbthread.h and regcache.h.
5740 (elf_gnu_ifunc_resolver_stop, elf_gnu_ifunc_resolver_return_stop): New
5741 functions.
5742 (elf_gnu_ifunc_fns): Install them.
5743 * minsyms.c (stub_gnu_ifunc_resolver_stop)
5744 (stub_gnu_ifunc_resolver_return_stop): New functions.
5745 (stub_gnu_ifunc_fns): Install them.
5746 * symtab.h (struct gnu_ifunc_fns): New fields gnu_ifunc_resolver_stop
5747 and gnu_ifunc_resolver_return_stop.
5748 (gnu_ifunc_resolver_stop, gnu_ifunc_resolver_return_stop): New.
5749
5750 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5751
5752 STT_GNU_IFUNC reader implementation.
5753 * elfread.c: Include gdbtypes.h, value.h and infcall.h.
5754 (SYMBOL_GOT_PLT_SUFFIX, elf_rel_plt_read)
5755 (elf_objfile_gnu_ifunc_cache_data, struct elf_gnu_ifunc_cache)
5756 (elf_gnu_ifunc_cache_hash, elf_gnu_ifunc_cache_eq)
5757 (elf_gnu_ifunc_record_cache, elf_gnu_ifunc_resolve_by_cache)
5758 (elf_gnu_ifunc_resolve_by_got, elf_gnu_ifunc_resolve_name)
5759 (elf_gnu_ifunc_resolve_addr): New.
5760 (elf_symfile_read): Call elf_rel_plt_read.
5761 (elf_gnu_ifunc_fns): New.
5762 (_initialize_elfread): Initialize elf_objfile_gnu_ifunc_cache_data.
5763 Install elf_gnu_ifunc_fns.
5764 * infcall.c (find_function_return_type): New function.
5765 (find_function_addr): Resolve TYPE_GNU_IFUNC functions, if possible.
5766 * minsyms.c (stub_gnu_ifunc_resolve_addr)
5767 (stub_gnu_ifunc_resolve_name): New functions.
5768 (stub_gnu_ifunc_fns, gnu_ifunc_fns_p): New variables.
5769 * symtab.h (struct gnu_ifunc_fns, gnu_ifunc_resolve_addr)
5770 (gnu_ifunc_resolve_name, gnu_ifunc_fns_p): New.
5771
5772 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5773
5774 Code cleanup for later STT_GNU_IFUNC support.
5775 * infcall.c (find_function_addr): Remove variable code, use explicit
5776 dereferences for it. Move VALUE_TYPE initialization later.
5777
5778 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5779
5780 GDB find_pc_partial_function support for STT_GNU_IFUNC.
5781 * blockframe.c (cache_pc_function_is_gnu_ifunc): New variable.
5782 (clear_pc_function_cache): Clear it.
5783 (find_pc_partial_function): Rename to ...
5784 (find_pc_partial_function_gnu_ifunc): ... this function. New
5785 parameter is_gnu_ifunc_p, describe it. Set *IS_GNU_IFUNC_P.
5786 (find_pc_partial_function): New wrapper for this function.
5787 * symtab.h (find_pc_partial_function_gnu_ifunc): New declaration.
5788
5789 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5790
5791 GDB internal type support for STT_GNU_IFUNC.
5792 * elfread.c (record_minimal_symbol): Support mst_text_gnu_ifunc.
5793 (elf_symtab_read): Set mst_text_gnu_ifunc for
5794 BSF_GNU_INDIRECT_FUNCTION.
5795 * eval.c (evaluate_subexp_standard): Support TYPE_GNU_IFUNC.
5796 * gdbtypes.c (init_type): Support TYPE_FLAG_GNU_IFUNC,
5797 builtin_func_func, nodebug_text_gnu_ifunc_symbol and
5798 nodebug_got_plt_symbol.
5799 * gdbtypes.h (enum type_flag_value): New entry TYPE_FLAG_GNU_IFUNC.
5800 (TYPE_GNU_IFUNC): New.
5801 (struct main_type): New field flag_gnu_ifunc.
5802 (struct builtin_type): New field builtin_func_func.
5803 (struct objfile_type): New fields nodebug_text_gnu_ifunc_symbol and
5804 nodebug_got_plt_symbol.
5805 * minsyms.c (lookup_minimal_symbol_text): Support mst_text_gnu_ifunc.
5806 (in_gnu_ifunc_stub): New.
5807 (prim_record_minimal_symbol, find_solib_trampoline_target): Support
5808 mst_text_gnu_ifunc.
5809 * parse.c (write_exp_msymbol): New variable ifunc_msym. Detect and
5810 support mst_text_gnu_ifunc. Support mst_slot_got_plt.
5811 * solib-svr4.c (svr4_in_dynsym_resolve_code): Return true also for
5812 in_gnu_ifunc_stub.
5813 * symmisc.c (dump_msymbols): Support mst_text_gnu_ifunc.
5814 * symtab.c (search_symbols): Likewise.
5815 * symtab.h (enum minimal_symbol_type): New fields mst_text_gnu_ifunc
5816 and mst_slot_got_plt.
5817 (in_gnu_ifunc_stub): New declaration.
5818
5819 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5820
5821 Support a ring of related breakpoints.
5822 * breakpoint.c (watchpoint_del_at_next_stop): New, move here code from
5823 other functions, add gdb_assert.
5824 (update_watchpoint, watchpoint_check): Add gdb_assert. Use
5825 watchpoint_del_at_next_stop.
5826 (bpstat_check_watchpoint): Use watchpoint_del_at_next_stop.
5827 (bpstat_stop_status): Handle ring in related_breakpoint.
5828 (set_raw_breakpoint_without_location): Initialize ring in
5829 related_breakpoint.
5830 (delete_breakpoint): Handle ring in related_breakpoint, use
5831 watchpoint_del_at_next_stop.
5832 (map_breakpoint_numbers): Handle ring in related_breakpoint.
5833
5834 2011-03-28 Tom Tromey <tromey@redhat.com>
5835
5836 PR symtab/12441:
5837 * dwarf2read.c (prepare_one_comp_unit): Don't call set_cu_language
5838 with `language_minimal'.
5839
5840 2011-03-25 Ulrich Weigand <ulrich.weigand@linaro.org>
5841
5842 * arm-tdep.c (arm_elf_make_msymbol_special): Use ARM_SYM_BRANCH_TYPE
5843 instead of checking for STT_ARM_TFUNC symbol type.
5844
5845 2011-03-25 Tom Tromey <tromey@redhat.com>
5846
5847 * linespec.c (symbol_found): Restore line-based result for
5848 non-LOC_LABEL symbols.
5849
5850 2011-03-25 Kai Tietz <ktietz@redhat.com>
5851
5852 * tui/tui-source.c (tui_set_source_content): Use filename_cmp
5853 instead of strcmp for comparison.
5854 (tui_source_is_displayed): Likewise.
5855 * tui/tui-winsource.c (tui_update_breakpoint_info): Likewise.
5856
5857 2011-03-24 Mark Wielaard <mjw@redhat.com>
5858
5859 * dwarf2read.c (lookup_signatured_type): Use DW_FORM_ref_sig8 in
5860 complaint.
5861 (skip_one_die): Use DW_FORM_ref_sig8, not DW_FORM_sig8.
5862 (find_partial_die_in_comp_unit): Likewise in comment.
5863 (read_attribute_value): Likewise.
5864 (lookup_die_type): Likewise.
5865 (dwarf_form_name): Likewise.
5866 (dump_die_shallow): Likewise.
5867 (follow_die_ref_or_sig): Likewise.
5868
5869 2011-03-24 Tom Tromey <tromey@redhat.com>
5870
5871 PR breakpoints/11816:
5872 * linespec.c (decode_line_1): Parse `function:label' linespecs.
5873 (decode_compound): Update.
5874 (find_function_symbol): New function.
5875 (decode_dollar): Update.
5876 (decode_label): Add 'function_symbol' parameter. Handle
5877 function-relative labels.
5878 (decode_variable): Update.
5879 (symbol_found): Add 'function_symbol' parameter. Use label's PC,
5880 not its line. Set `special_display' and canonical name for
5881 labels.
5882
5883 2011-03-24 Tom Tromey <tromey@redhat.com>
5884
5885 * linespec.h (struct linespec_result) <special_display>: New
5886 field.
5887 * breakpoint.h (struct breakpoint) <display_canonical>: New
5888 field.
5889 * breakpoint.c (print_breakpoint_location): Respect
5890 display_canonical.
5891 (create_breakpoint_sal): Add 'display_canonical' parameter.
5892 (create_breakpoints_sal): Update.
5893 (create_breakpoint): Update.
5894
5895 2011-03-24 Tom Tromey <tromey@redhat.com>
5896
5897 * symtab.c (decode_line_spec): Update.
5898 * linespec.c (build_canonical_line_spec): Change type of
5899 'canonical'.
5900 (decode_line_2, decode_line_1, decode_objc, decode_compound)
5901 (find_method, decode_all_digits, decode_dollar, decode_label)
5902 (symbol_found): Likewise.
5903 (init_linespec_result): New function.
5904 * breakpoint.c (struct captured_parse_breakpoint_args)
5905 <canonical_p>: New field, replaces addr_string_p.
5906 (create_breakpoints_sal): Add 'canonical' parameter, replacing
5907 'addr_string'.
5908 (parse_breakpoint_sals): Likewise.
5909 (do_captured_parse_breakpoint): Update.
5910 (create_breakpoint): Use struct linespec_result.
5911 (until_break_command): Update.
5912 (breakpoint_re_set_one): Update.
5913 (decode_line_spec_1): Update.
5914 * linespec.h (struct linespec_result): New.
5915 (init_linespec_result): Declare.
5916
5917 2011-03-23 Pedro Alves <pedro@codesourcery.com>
5918
5919 * regcache.c (regcache_raw_read): If the target didn't supply a
5920 given raw register, mark it as unavailable.
5921
5922 2011-03-23 Kai Tietz <ktietz@redhat.com>
5923
5924 * breakpoint.c (clear_command): Use filename_cmp
5925 instead of strcmp for comparison.
5926 * buildsym.c (watch_main_source_file_lossage): Likewise.
5927 (patch_subfile_names): Use IS_DIR_SEPARATOR instead of
5928 checking just for slash.
5929 * dbxread.c (read_dbx_symtab): Use lbasename instead of
5930 strrchr and filename_cmp instead of strcmp for filenames.
5931 (add_old_header_file): Use filename_cmp
5932 instead of strcmp for comparison.
5933 * exec.c (exec_set_section_address): Likewise.
5934 * macrotab.c (macro_lookup_inclusion): Likewise.
5935 (macro_lookup_inclusion): Likewise.
5936 * elfread.c (_initialize_elfread): Likewise.
5937 (elfstab_offset_sections): Likewise.
5938 (elfstab_offset_sections): Use lbasename instead of
5939 strrchr.
5940 * mdebugread.c (parse_partial_symbols): Likewise.
5941 (arse_partial_symbols): Use filename_(n)cmp instead of
5942 str(n)cmp for comparison.
5943 * minsyms.c (lookup_minimal_symbol): Likewise.
5944 * psymtab.c (read_psymtabs_with_filename): Likewise.
5945 * solib.c (solib_read_symbols): Likewise.
5946 (reload_shared_libraries_1): Likewise.
5947 * symmisc.c (maintenance_print_symbols): Likewise.
5948 * symfile.c (separate_debug_file_exists): Likewise.
5949 (reread_symbols): Likewise.
5950 (find_separate_debug_file_by_debuglink): Likewise.
5951 * remote-fileio.c (remote_fileio_func_rename): Likewise.
5952 * source.c (add_path): Likewise.
5953 * symtab.c (filename_seen): Likewise.
5954 (file_matches): Likewise.
5955 (print_symbol_info): Likewise.
5956 (maybe_add_partial_symtab_filename): Likewise.
5957 (make_source_files_completion_list): Likewise.
5958 * xml-syscall.c (init_sysinfo): Likewise.
5959 * windows-nat.c (_initialize_check_for_gdb_ini): Use
5960 IS_DIR_SEPARATOR for checking for trailing path separator.
5961
5962 2011-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
5963
5964 * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_entry_value. New
5965 label abort_expression.
5966 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Handle
5967 DWARF_VALUE_OPTIMIZED_OUT.
5968
5969 2011-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
5970
5971 Code cleanup.
5972 * c-typeprint.c (c_type_print_args): Change parameter show_artificial
5973 to linkage_name. Invert its value. Update the function comment.
5974 (c_type_print_varspec_suffix): Invert it at the caller.
5975 * dwarf2read.c (dwarf2_compute_name): Invert it at the caller.
5976
5977 2011-03-22 Pedro Alves <pedro@codesourcery.com>
5978
5979 * infcmd.c (post_create_inferior): Ignore NOT_AVAILABLE_ERROR
5980 errors when reading the `stop_pc'.
5981 * printcmd.c (pc_prefix): Use get_frame_pc_if_available instead of
5982 get_frame_pc.
5983
5984 2011-03-22 Phil Muldoon <pmuldoon@redhat.com>
5985
5986 * NEWS: Document gdb.Write stream keyword.
5987
5988 2011-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
5989
5990 Revert:
5991 2011-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5992 * dwarf2read.c (producer_is_gxx_lt_4_6): New function.
5993 (dwarf2_add_field): Fix new_field->accessibility for
5994 cu->header.version >= 3 while verifying also producer_is_gxx_lt_4_6.
5995
5996 2011-03-22 Phil Muldoon <pmuldoon@redhat.com>
5997
5998 PR python/12183
5999
6000 * python/py-function.c (fnpy_call): Treat GdbErrors differently to
6001 other error classes. Do not print stack trace.
6002
6003 2011-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6004
6005 * dwarf2read.c (producer_is_gxx_lt_4_6): New function.
6006 (dwarf2_add_field): Fix new_field->accessibility for
6007 cu->header.version >= 3 while verifying also producer_is_gxx_lt_4_6.
6008
6009 2011-03-21 Ulrich Weigand <ulrich.weigand@linaro.org>
6010
6011 * arm-tdep.c (arm_analyze_prologue): Do not abort parsing when
6012 encountering a load via a non-SP register.
6013
6014 2011-03-21 Ulrich Weigand <uweigand@de.ibm.com>
6015
6016 * tramp-frame.c (tramp_frame_prepend_unwinder): Set stop_reason
6017 field in returned unwinder.
6018
6019 2012-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6020
6021 * ada-lang.c (replace_operator_with_call): Copy also GDBARCH.
6022
6023 2012-03-21 Joel Brobecker <brobecker@adacore.com>
6024
6025 * ada-lang.c (replace_operator_with_call): Use xzalloc instead
6026 of xmalloc.
6027
6028 2012-03-18 Pedro Alves <pedro@codesourcery.com>
6029
6030 * frame.c (frame_unwind_register): Throw an error if unwinding the
6031 register failed.
6032 * get_prev_frame_1 (get_prev_frame_1): Ask the unwinder if there's
6033 an unwind stop reason.
6034 (frame_stop_reason_string): Handle UNWIND_UNAVAILABLE.
6035 * frame.h (enum unwind_stop_reason) <UNWIND_OUTERMOST,
6036 UNWIND_UNAVAILABLE>: New.
6037 * inline-frame.c (inline_frame_unwind): Install
6038 default_frame_unwind_stop_reason.
6039 * frame-unwind.c: Include "exceptions.h".
6040 (frame_unwind_find_by_frame): Swallow NOT_AVAILABLE_ERROR errors.
6041 (default_frame_unwind_stop_reason): New.
6042 * frame-unwind.h (frame_unwind_stop_reason_ftype): New typedef.
6043 (default_frame_unwind_stop_reason): Declare.
6044 (struct frame_unwind) <stop_reason>: New function pointer.
6045
6046 * dummy-frame.c: Install default_frame_unwind_stop_reason.
6047 * dwarf2-frame.c: Include exceptions.h.
6048 (struct dwarf2_frame_cache) <unavailable_retaddr>: New field.
6049 (dwarf2_frame_cache): Swallow NOT_AVAILABLE_ERROR errors when
6050 computing the CFA. If such an error was thrown, set
6051 unavailable_retaddr.
6052 (dwarf2_frame_unwind_stop_reason): New.
6053 (dwarf2_frame_this_id): Don't build a frame id if the CFA was
6054 unavailable.
6055 (dwarf2_frame_unwind): Install dwarf2_frame_unwind_stop_reason.
6056 (dwarf2_signal_frame_unwind): Ditto.
6057
6058 * amd64-tdep.c: Include "exceptions.h".
6059 (struct amd64_frame_cache): New field "base_p".
6060 (amd64_init_frame_cache): Clear it.
6061 (amd64_frame_cache_1): New, factored out from amd64_frame_cache.
6062 Avoid reading registers with functions that throw if the register
6063 is not necessary to compute the frame base.
6064 (amd64_frame_cache): Reimplement wrapping amd64_frame_cache_1, and
6065 swallowing NOT_AVAILABLE_ERROR.
6066 (amd64_frame_unwind_stop_reason): New.
6067 (amd64_frame_this_id): Don't build a frame id if the frame base
6068 was unavailable.
6069 (amd64_frame_unwind): Install amd64_frame_unwind_stop_reason.
6070 (amd64_sigtramp_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
6071 base_p if the frame base was computable.
6072 (amd64_sigtramp_frame_unwind_stop_reason): New.
6073 (amd64_sigtramp_frame_this_id): Don't build a frame id if the
6074 frame base was unavailable.
6075 (amd64_sigtramp_frame_unwind): Install
6076 amd64_sigtramp_frame_unwind_stop_reason.
6077 (amd64_epilogue_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
6078 base_p if the frame base was computable.
6079 (amd64_epilogue_frame_unwind_stop_reason): New.
6080 (amd64_epilogue_frame_this_id): Don't build a frame id if the
6081 frame base was unavailable.
6082 (amd64_epilogue_frame_unwind): Install
6083 amd64_epilogue_frame_unwind_stop_reason.
6084 * i386-tdep.c: Include "exceptions.h".
6085 (struct i386_frame_cache): New field "base_p".
6086 (i386_init_frame_cache): Clear it.
6087 (i386_frame_cache_1): New, factored out from amd64_frame_cache.
6088 Avoid reading registers with functions that throw if the register
6089 is not necessary to compute the frame base.
6090 (i386_frame_cache): Reimplement wrapping amd64_frame_cache_1, and
6091 swallowing NOT_AVAILABLE_ERROR.
6092 (i386_frame_unwind_stop_reason): New.
6093 (i386_frame_this_id): Don't build a frame id if the frame base was
6094 unavailable.
6095 (i386_frame_prev_register): Handle unavailable SP.
6096 (i386_frame_unwind): Install i386_frame_unwind_stop_reason.
6097 (i386_epilogue_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
6098 base_p if the frame base was computable.
6099 (i386_epilogue_frame_unwind_stop_reason): New.
6100 (i386_epilogue_frame_this_id): Don't build a frame id if the frame
6101 base was unavailable.
6102 (i386_epilogue_frame_unwind): Install
6103 i386_epilogue_frame_unwind_stop_reason.
6104 (i386_sigtramp_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
6105 base_p if the frame base was computable.
6106 (i386_sigtramp_frame_unwind_stop_reason): New.
6107 (i386_sigtramp_frame_this_id): Don't build a frame id if the frame
6108 base was unavailable.
6109 (i386_sigtramp_frame_unwind): Install
6110 i386_sigtramp_frame_unwind_stop_reason.
6111 * sentinel-frame.c (sentinel_frame_prev_register): Use the value
6112 type's size, not the register's.
6113 (sentinel_frame_unwind): Install default_frame_unwind_stop_reason.
6114
6115 * alpha-mdebug-tdep.c (alpha_mdebug_frame_unwind): Install
6116 default_frame_unwind_stop_reason.
6117 * alpha-tdep.c (alpha_sigtramp_frame_unwind)
6118 (alpha_heuristic_frame_unwind): Ditto.
6119 * amd64obsd-tdep.c (amd64obsd_trapframe_unwind): Ditto.
6120 * arm-tdep.c (arm_prologue_unwind, arm_stub_unwind): Ditto.
6121 * avr-tdep.c (avr_frame_unwind): Ditto.
6122 * cris-tdep.c (cris_sigtramp_frame_unwind, cris_frame_unwind):
6123 Ditto.
6124 * frv-linux-tdep.c (frv_linux_sigtramp_frame_unwind): Ditto.
6125 * frv-tdep.c (frv_frame_unwind): Ditto.
6126 * h8300-tdep.c (h8300_frame_unwind): Ditto.
6127 * hppa-hpux-tdep.c (hppa_hpux_sigtramp_frame_unwind): Ditto.
6128 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_unwind): Ditto.
6129 * hppa-tdep.c (hppa_frame_unwind, hppa_fallback_frame_unwind)
6130 (hppa_stub_frame_unwind): Ditto.
6131 * i386obsd-tdep.c (i386obsd_trapframe_unwind): Ditto.
6132 * ia64-tdep.c (ia64_frame_unwind, ia64_sigtramp_frame_unwind)
6133 (ia64_libunwind_frame_unwind)
6134 (ia64_libunwind_sigtramp_frame_unwind): Ditto.
6135 * iq2000-tdep.c (iq2000_frame_unwind): Ditto.
6136 * lm32-tdep.c (lm32_frame_unwind): Ditto.
6137 * m32c-tdep.c (m32c_unwind): Ditto.
6138 * m32r-linux-tdep.c (m32r_linux_sigtramp_frame_unwind): Ditto.
6139 * m32r-tdep.c (m32r_frame_unwind): Ditto.
6140 * m68hc11-tdep.c (m68hc11_frame_unwind): Ditto.
6141 * m68k-tdep.c (m68k_frame_unwind): Ditto.
6142 * m68klinux-tdep.c (m68k_linux_sigtramp_frame_unwind): Ditto.
6143 * m88k-tdep.c (m88k_frame_unwind): Ditto.
6144 * mep-tdep.c (mep_frame_unwind): Ditto.
6145 * microblaze-tdep.c (microblaze_frame_unwind): Ditto.
6146 * mips-tdep.c (mips_insn16_frame_unwind, mips_insn32_frame_unwind)
6147 (mips_stub_frame_unwind): Ditto.
6148 * mn10300-tdep.c (mn10300_frame_unwind): Ditto.
6149 * moxie-tdep.c (moxie_frame_unwind): Ditto.
6150 * mt-tdep.c (mt_frame_unwind): Ditto.
6151 * ppc-linux-tdep.c (ppu2spu_unwind): Ditto.
6152 * ppcobsd-tdep.c (ppcobsd_sigtramp_frame_unwind): Ditto.
6153 * rs6000-tdep.c (rs6000_frame_unwind): Ditto.
6154 * s390-tdep.c (s390_frame_unwind, s390_stub_frame_unwind)
6155 (s390_sigtramp_frame_unwind): Ditto.
6156 * score-tdep.c (score_prologue_unwind): Ditto.
6157 * sh-tdep.c (sh_frame_unwind): Ditto.
6158 * sh64-tdep.c (sh64_frame_unwind): Ditto.
6159 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_unwind): Ditto.
6160 * sparc-tdep.c (sparc32_frame_unwind): Ditto.
6161 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_unwind): Ditto.
6162 * sparc64-tdep.c (sparc64_frame_unwind): Ditto.
6163 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_unwind): Ditto.
6164 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_unwind): Ditto.
6165 * sparc64obsd-tdep.c (sparc64obsd_frame_unwind)
6166 (sparc64obsd_trapframe_unwind): Ditto.
6167 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_unwind): Ditto.
6168 * sparcobsd-tdep.c (sparc32obsd_sigtramp_frame_unwind): Ditto.
6169 * spu-tdep.c (spu_frame_unwind, spu2ppu_unwind): Ditto.
6170 * v850-tdep.c (v850_frame_unwind): Ditto.
6171 * vax-tdep.c (vax_frame_unwind): Ditto.
6172 * vaxobsd-tdep.c (vaxobsd_sigtramp_frame_unwind): Ditto.
6173 * xstormy16-tdep.c (frame_unwind xstormy16_frame_unwind): Ditto.
6174 * xtensa-tdep.c (xtensa_unwind): Ditto.
6175
6176 2011-03-18 Pedro Alves <pedro@codesourcery.com>
6177
6178 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Assume
6179 there's always a frame. Use get_frame_pc_if_available instead of
6180 get_frame_pc, and if there's no PC available, don't look up a
6181 symtab.
6182
6183 2011-03-18 Pedro Alves <pedro@codesourcery.com>
6184
6185 * stack.c (print_frame_local_vars, print_frame_arg_vars): Handle
6186 unavailable PC.
6187
6188 2011-03-18 Pedro Alves <pedro@codesourcery.com>
6189
6190 * tracepoint.c (set_traceframe_context): Handle unavailable PC
6191 gracefully.
6192
6193 2011-03-18 Pedro Alves <pedro@codesourcery.com>
6194
6195 * frame.h (frame_unwind_caller_pc_if_available): Declare.
6196 * frame.c (frame_unwind_caller_pc_if_available): New.
6197 * stack.c (frame_info): Handle unavailable PC.
6198
6199 2011-03-18 Pedro Alves <pedro@codesourcery.com>
6200
6201 * frame.c (frame_unwind_pc): Rename to ...
6202 (frame_unwind_pc_if_available): ... this. New `pc' output
6203 parameter. Change return type to int. Gracefully handle
6204 gdbarch_unwind_pc throwing NOT_AVAILABLE_ERROR. Return 0 if that
6205 happened, or 1 otherwise.
6206 (frame_unwind_pc): Reimplement on top of
6207 frame_unwind_pc_if_available.
6208 (get_frame_func): Rename to ...
6209 (get_frame_func_if_available): New `pc' output parameter. Change
6210 return type to int. Gracefully handle the PC not being available.
6211 (get_frame_func): Reimplement on top of
6212 get_frame_func_if_available.
6213 (select_frame): Handle the PC being unavailable.
6214 (get_prev_frame): Handle the PC being unavailable.
6215 (get_frame_pc_if_available): New.
6216 (get_frame_address_in_block_if_available): New.
6217 (find_frame_sal): Handle the frame PC not being available.
6218 * frame.h (get_frame_pc_if_available): Declare.
6219 (get_frame_address_in_block_if_available): Declare.
6220 (get_frame_func_if_available): Declare.
6221 * stack.c (print_frame_info): Handle the PC being unavailable.
6222 (find_frame_funname): Ditto.
6223 (print_frame): Handle the PC being unavailable.
6224 (get_frame_language): Ditto.
6225 * blockframe.c (get_frame_block): Ditto.
6226 * macroscope.c (default_macro_scope): Ditto.
6227 * tui/tui-stack.c (tui_show_frame_info): Ditto.
6228
6229 2011-03-18 Pedro Alves <pedro@codesourcery.com>
6230
6231 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Catch
6232 NOT_AVAILABLE_ERROR when evaluating the location expression.
6233
6234 2011-03-18 Pedro Alves <pedro@codesourcery.com>
6235
6236 * dwarf2loc.c (read_pieced_value): Handle get_frame_register_bytes
6237 returning that the register piece is unavailable/optimized out.
6238 (write_pieced_value): Handle get_frame_register_bytes returning
6239 that the register piece is unavailable/optimized out when doing a
6240 read-modify write of a bitfield.
6241 * findvar.c (value_from_register): Handle get_frame_register_bytes
6242 returning that the register piece is unavailable/optimized out.
6243 * frame.c (get_frame_register_bytes): New parameters `optimizedp'
6244 and `unavailablep'. Throw error on bad debug info. Use
6245 frame_register instead of frame_register_read, to fill in the new
6246 arguments.
6247 * frame.h (get_frame_register_bytes): New parameters `optimizedp'
6248 and `unavailablep'.
6249 * valops.c: (value_assign): Adjust, and handle
6250 get_frame_register_bytes failing.
6251 * spu-tdep.c: Include exceptions.h.
6252 (spu_software_single_step): Adjust, and handle
6253 get_frame_register_bytes failing.
6254 (spu_get_longjmp_target): Ditto.
6255 * gdbarch.sh (register_to_value): Change to return int. New
6256 parameters `optimizedp' and `unavailablep'.
6257 * gdbarch.h, gdbarch.c: Regenerate.
6258 * i386-tdep.c (i386_register_to_value): Adjust to new
6259 gdbarch_register_to_value interface.
6260 * i387-tdep.c (i387_register_to_value): Ditto.
6261 * i387-tdep.h (i387_register_to_value): Ditto.
6262 * alpha-tdep.c (alpha_register_to_value): Ditto.
6263 * ia64-tdep.c (ia64_register_to_value): Ditto.
6264 * m68k-tdep.c (m68k_register_to_value): Ditto.
6265 * mips-tdep.c (mips_register_to_value): Ditto.
6266 * rs6000-tdep.c (rs6000_register_to_value): Ditto.
6267
6268 2011-03-18 Pedro Alves <pedro@codesourcery.com>
6269
6270 * findvar.c (value_of_register): Mark the value as unavailable, if
6271 the register is unavailable.
6272 * frame.h (frame_register_unwind): New `unavailablep' parameter.
6273 (frame_register): New `unavailablep' parameter.
6274 (frame_register_read): Update comment.
6275 * frame.c (frame_register_unwind): New `unavailablep' parameter.
6276 Set it if the register is unavailable. If the register is
6277 unavailable, clear the output buffer.
6278 (frame_register): New `unavailablep' parameter. Pass it down.
6279 (frame_unwind_register): Adjust.
6280 (put_frame_register): Adjust.
6281 (frame_register_read): Adjust. Also return false if the register
6282 is not available.
6283 (frame_register_unwind_location): Adjust.
6284 * sentinel-frame.c (sentinel_frame_prev_register): If the register
6285 is unavailable, mark the value accordingly.
6286 * stack.c (frame_info): Handle unavailable registers.
6287
6288 2011-03-18 Pedro Alves <pedro@codesourcery.com>
6289
6290 * mi/mi-main.c (register_changed_p): Handle REG_UNAVAILABLE, and
6291 simplify, using regcache_cooked_read.
6292
6293 2011-03-18 Pedro Alves <pedro@codesourcery.com>
6294
6295 * regcache.h (regcache_raw_read, regcache_raw_read_signed)
6296 (regcache_raw_read_unsigned, regcache_raw_read_signed)
6297 (regcache_raw_read_unsigned, regcache_raw_read_part)
6298 (regcache_cooked_read, regcache_cooked_read_signed)
6299 (regcache_cooked_read_unsigned, regcache_cooked_read_part)
6300 (regcache_cooked_read_ftype): Change return to enum
6301 register_status.
6302 * regcache.c: Include exceptions.h
6303 (regcache_save): Adjust to handle REG_UNAVAILABLE registers.
6304 (do_cooked_read): Change return to enum register_status. Always
6305 forward to regcache_cooked_read.
6306 (regcache_raw_read): Change return to enum register_status. If
6307 the register is not REG_VALID, memset the buffer. Return the
6308 register's status.
6309 (regcache_raw_read_signed): Handle non-REG_VALID registers and
6310 return the register's status.
6311 (regcache_raw_read_unsigned): Ditto.
6312 (regcache_cooked_read): Change return to enum register_status.
6313 Assert that with read-only regcaches, the register's status must
6314 be known. If the regcache is read-only, and the register is not
6315 REG_VALID, memset the buffer. Return the register's status.
6316 (regcache_cooked_read_signed): Change return to enum
6317 register_status. Handle non-REG_VALID registers and return the
6318 register's status.
6319 (regcache_cooked_read_unsigned): Change return to enum
6320 register_status. Handle non-REG_VALID registers and return the
6321 register's status.
6322 (regcache_xfer_part, regcache_raw_read_part)
6323 (regcache_cooked_read_part): Change return to enum
6324 register_status. Return the register's status.
6325 (regcache_read_pc): Throw NOT_AVAILABLE_ERROR if the register is
6326 unavailable.
6327 (regcache_dump): Handle unavailable cooked registers.
6328 * frame.c (do_frame_register_read): Adjust interface to match
6329 regcache_cooked_read_ftype.
6330 * gdbarch.sh (pseudo_register_read): Change return to enum
6331 register_status.
6332 * gdbarch.h, gdbarch.c: Regenerate.
6333
6334 * i386-tdep.h (i386_pseudo_register_read): Change return to enum
6335 register_status.
6336 * i386-tdep.c (i386_pseudo_register_read): Change return to enum
6337 register_status. If reading a raw register indicates the raw
6338 register is not valid, return the raw register's status,
6339 otherwise, return REG_VALID.
6340 * amd64-tdep.c (amd64_pseudo_register_read): Change return to enum
6341 register_status. Handle non-REG_VALID raw registers and return
6342 the register's status.
6343 * arm-tdep.c (arm_neon_quad_read)
6344 (arm_pseudo_read): Change return to enum register_status. Handle
6345 non-REG_VALID raw registers and return the register's status.
6346 * avr-tdep.c (avr_pseudo_register_read): Ditto.
6347 * frv-tdep.c (frv_pseudo_register_read): Ditto.
6348 * h8300-tdep.c (h8300_pseudo_register_read): Ditto.
6349 * hppa-tdep.c (hppa_pseudo_register_read): Ditto.
6350 * m32c-tdep.c (m32c_move_reg_t): Change return to enum
6351 register_status.
6352 (m32c_raw_read, m32c_raw_write, m32c_banked_read)
6353 (m32c_banked_write, m32c_sb_read, m32c_sb_write, m32c_part_read)
6354 (m32c_part_write, m32c_cat_read, m32c_cat_write)
6355 (m32c_r3r2r1r0_read, m32c_r3r2r1r0_write)
6356 (m32c_pseudo_register_read): Change return to enum
6357 register_status. Adjust.
6358 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Change return to
6359 enum register_status. Return the register's status.
6360 * mep-tdep.c (mep_pseudo_cr32_read): Change return to enum
6361 register_status. Return the register's status.
6362 (mep_pseudo_cr64_read, mep_pseudo_register_read): Ditto.
6363 * mips-tdep.c (mips_pseudo_register_read): Ditto.
6364 * mt-tdep.c (mt_pseudo_register_read): Ditto.
6365 * rs6000-tdep.c (move_ev_register_func): New typedef.
6366 (e500_move_ev_register): Use it. Change return to enum
6367 register_status. Return the register's status.
6368 (do_regcache_raw_read): New function.
6369 (do_regcache_raw_write): New function.
6370 (e500_pseudo_register_read): Change return to enum
6371 register_status. Return the register's status. Use
6372 do_regcache_raw_read.
6373 (e500_pseudo_register_write): Adjust. Use do_regcache_raw_write.
6374 (dfp_pseudo_register_read): Change return to enum register_status.
6375 Return the register's status.
6376 (vsx_pseudo_register_read): Ditto.
6377 (efpr_pseudo_register_read): Ditto.
6378 (rs6000_pseudo_register_read): Ditto.
6379 * s390-tdep.c (s390_pseudo_register_read): Change return to enum
6380 register_status. Return the register's status.
6381 * sh64-tdep.c (pseudo_register_read_portions): New function.
6382 (sh64_pseudo_register_read): Change return to enum
6383 register_status. Use pseudo_register_read_portions. Return the
6384 register's status.
6385 * ia64-tdep.c (ia64_pseudo_register_read): Change return to enum
6386 register_status. Return the register's status.
6387 * sh-tdep.c (pseudo_register_read_portions): New function.
6388 (sh_pseudo_register_read): Change return to enum register_status.
6389 Use pseudo_register_read_portions. Return the register's status.
6390 * sparc-tdep.c (sparc32_pseudo_register_read): Change return to
6391 enum register_status. Return the register's status.
6392 * sparc64-tdep.c (sparc64_pseudo_register_read): Ditto.
6393 * spu-tdep.c (spu_pseudo_register_read_spu)
6394 (spu_pseudo_register_read): Ditto.
6395 * xtensa-tdep.c (xtensa_register_read_masked)
6396 (xtensa_pseudo_register_read): Ditto.
6397 * bfin-tdep.c (bfin_pseudo_register_read): Ditto.
6398
6399 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
6400
6401 * python/py-value.c (valpy_getitem): Fix formatting of error function
6402 call.
6403
6404 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
6405
6406 ARI fixes: Add missing internationalization markups throughout
6407 C source files.
6408 * darwin-nat-info.c: Ditto.
6409 * record.c: Ditto.
6410 * remote.c: Ditto.
6411 * mi/mi-main.c: Ditto.
6412
6413 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
6414
6415 ARI fixes: Add missing internationalization markups throughout
6416 yacc files.
6417 * c-exp.y: Ditto.
6418 * cp-name-parser.y: Ditto.
6419 * f-exp.y: Ditto.
6420 * m2-exp.y: Ditto.
6421 * objc-exp.y: Ditto.
6422 * p-exp.y: Ditto.
6423
6424 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
6425
6426 ARI fixes: Messages should have no trailing new lines.
6427 * darwin-nat.c (mach_check_error): Remove trailing new line from
6428 warning function call message.
6429 * record.c (bfdcore_read): Idem for error call.
6430
6431 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
6432
6433 * common/signals.c (target_signal_from_host): Add _ markup to error
6434 function call message.
6435 (target_signal_to_host): Add _ markup and remove trailing new line
6436 from warning call message.
6437 (target_signal_from_command): Add _ markup to error function call
6438 message.
6439
6440 2011-03-18 Phil Muldoon <pmuldoon@redhat.com>
6441
6442 PR python/12149
6443
6444 * python/python.c (gdbpy_write): Accept a stream argument and
6445 operate to the appropriate stream.
6446 (gdbpy_flush): Likewise.
6447 (_initialize_python): Add stream constants.
6448 (finish_python_initialization): Add GdbOutputErrorFile class.
6449
6450 2011-03-18 Kwok Cheung Yeung <kcy@codesourcery.com>
6451
6452 * MAINTAINERS: Add myself as a write-after-approval maintainer.
6453
6454 2011-03-18 Kwok Cheung Yeung <kcy@codesourcery.com>
6455
6456 * amd64-tdep.c (amd64_relocate_instruction): Fix ordering of arguments
6457 to store_signed_integer. Add debug message when relocating CALL
6458 instructions. Fix formatting of debug message.
6459 * i386-tdep.c (i386_relocate_instruction): Ditto.
6460
6461 2011-03-17 Joel Brobecker <brobecker@gnat.com>
6462
6463 * target.h (struct target_ops): Remove to_lookup_symbol field.
6464 (target_lookup_symbol): Delete macro.
6465 * target.c (nosymbol, debug_to_lookup_symbol): Delete.
6466 (update_current_target, setup_target_debug): Remove handling
6467 of to_lookup_symbol target_ops field.
6468 * ada-tasks.c (get_known_tasks_addr): Remove use of
6469 target_lookup_symbol.
6470 * coffread.c (coff_symtab_read): Likewise.
6471 * dbxread.c (read_dbx_symtab): Ditto.
6472
6473 2011-03-17 Joel Brobecker <brobecker@gnat.com>
6474
6475 PR gdb/12116:
6476 * configure.ac: Add getthrds declaration check.
6477 * configure, config.in: Regenerate.
6478 * aix-thread.c (getthrds): Declare only if not already declared
6479 in procinfo.h. More declaration out of get_signaled_thread to
6480 global scope.
6481
6482 2011-03-17 Phil Muldoon <pmuldoon@redhat.com>
6483
6484 * python/py-symtab.c: Populate symtab_object_methods,
6485 sal_object_methods.
6486 (stpy_is_valid): New function.
6487 (salpy_is_valid): Ditto.
6488 * python/py-symbol.c: Declare symbol_object_methods. Populate.
6489 (sympy_is_valid): New function.
6490 * python/py-objfile.c: Declare objfile_object_methods. Populate.
6491 (objfpy_is_valid): New function.
6492 * python/py-inferior.c: Populate inferior_object_methods.
6493 (infpy_is_valid): New function.
6494 * python/py-infthread.c: Populate thread_object_methods.
6495 (thpy_is_valid): New function.
6496 * python/py-block.c: Declare block_object_methods. Populate. Declare
6497 block_iterator_object_methods. Populate.
6498 (blpy_is_valid): New function.
6499 (blpy_iter_is_valid): Ditto.
6500
6501 2011-03-16 Keith Seitz <keiths@redhat.com>
6502
6503 * linespec.c (find_methods): Canonicalize NAME before looking
6504 up the symbol.
6505 (name_end): New function.
6506 (keep_name_info): New function.
6507 (decode_line_1): Use keep_name_info.
6508 (decode_compound): Likewise.
6509 * cli/cli-utils.h (remove_trailing_whitespace): New function.
6510 * cli/cli-utils.c (remove_trailing_whitespace): Likewise.
6511
6512 PR c++/12273
6513 * linespec.c (locate_first_half): Keep overload information, too.
6514 (decode_compound): Use a string to represent break characters
6515 to escape the loop.
6516 If P points to a break character, do not increment it.
6517 For C++ and Java, keep overload information and relevant keywords.
6518 If we cannot find a symbol, search the minimal symbols.
6519
6520 PR c++/11734
6521 * linespec.c (decode_compound): Rename SAVED_ARG to
6522 THE_REAL_SAVED_ARG.
6523 Make a copy of THE_REAL_SAVED_ARG in SAVED_ARG and strip
6524 single-quotes.
6525 Pass a valid block to lookup_symbol.
6526 (lookup_prefix_sym): Likewise.
6527 (find_method): Construct search name based on SYM_CLASS instead
6528 of SAVED_ARG.
6529 * psymtab.c (lookup_partial_symbol): Add language parameter.
6530 (lookup_symbol_aux_psymtabs): Likewise.
6531 Don't assume that the psymtab we found was the right one. Search
6532 for the desired symbol in the symtab to be certain.
6533 (psymtab_search_name): New function.
6534 (lookup_partial_symbol): Use psymtab_search_name.
6535 Add language parameter.
6536 (read_symtabs_for_function): Add language parameter and pass to
6537 lookup_partial_symbol.
6538 (find_symbol_file_from_partial): Likewise.
6539
6540 2011-03-16 Paul Pluzhnikov <ppluzhnikov@google.com>
6541
6542 PR gdb/12528
6543 * dwarf2read.c (noop_record_line): New function.
6544 (dwarf_decode_lines): Ignore line tables for GCd functions.
6545
6546 2011-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
6547
6548 Fix ARI warnings about new lines at the end of messages, which
6549 are unneeded as there is a new line added at the end of the message
6550 automatically.
6551 * darwin-nat.c (darwin_stop_inferior): Ditto.
6552 * dec-thread.c (dec_thread_get_ada_task_ptid): Ditto.
6553 * dfp.c (decimal_to_number): Ditto.
6554 * exec.c (print_section_info): Ditto.
6555 * i386-darwin-nat.c (darwin_set_sstep): Ditto.
6556 * osdata.c (get_osdata): Ditto.
6557 * record.c (bfdcore_write): Ditto.
6558 * remote-mips.c (mips_readchar): Ditto.
6559 * remote.c (read_ptid): Ditto.
6560 * ser-mingw.c (ser_windows_raw): Ditto.
6561 * tracepoint.c (add_local_symbols): Ditto.
6562 * windows-nat.c (fake_create_process): Ditto.
6563
6564 2011-03-16 Tom Tromey <tromey@redhat.com>
6565
6566 * tracepoint.c (stop_tracing): Don't declare.
6567 * event-top.c (after_char_processing_hook): Add `(void)'.
6568
6569 2011-03-16 Phil Muldoon <pmuldoon@redhat.com>
6570
6571 * NEWS: Add Parameter sub-classing description.
6572
6573 2011-03-16 Kai Tietz <ktietz@redhat.com>
6574
6575 * MAINTAINERS: Update my e-mail address.
6576
6577 2011-03-15 Andreas Tobler <andreast@fgznet.ch>
6578
6579 * MAINTAINERS: Add myself for write after approval privileges.
6580
6581 2011-03-15 Michael Snyder <msnyder@vmware.com>
6582
6583 * frame.c (find_frame_sal): Assert sym is not null.
6584
6585 * dbxread.c (process_one_symbol): Assert 'name' is not null.
6586
6587 * objc-lang.c (selectors_info): Check strchr for null result.
6588
6589 * stabsread.c (define_symbol): Guard against bad stabstring input.
6590
6591 2011-03-15 Pierre Muller <muller@ics.u-strasbg.fr>
6592
6593 Remove trailing spaces and tabulations from pascal language
6594 support sources.
6595 p-exp.y: Ditto.
6596 p-lang.c: Ditto.
6597 p-lang.h: Ditto.
6598 p-valprint.c: Ditto.
6599
6600 2011-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6601
6602 * dwarf2read.c (dwarf2_get_pc_bounds): Require HIGH strictly higher
6603 than LOW. Comment it.
6604 (read_partial_die): Call complaint for inappropriate zero LOWPC or
6605 HIGHPC not strictly higher than LOWPC.
6606
6607 2011-03-15 Pierre Muller <muller@ics.u-strasbg.fr>
6608
6609 Fix formatting of function declarations returning a pointer in
6610 previous commit.
6611 * varobj.c (varobj_add_child): Ditto.
6612 * hppa-tdep.h (hppa_init_objfile_priv_data): Ditto.
6613 * inferior.h (get_displaced_step_closure_by_addr): Ditto.
6614
6615 2011-03-15 Ulrich Weigand <uweigand@de.ibm.com>
6616
6617 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Add support
6618 for the "generic" vector ABI used with GCC 4.3 and later.
6619 (ppc64_sysv_abi_return_value): Likewise.
6620
6621 2011-03-15 Ulrich Weigand <uweigand@de.ibm.com>
6622
6623 * infcall.c (call_function_by_hand): Function return value is
6624 always a non_lval, even when using struct_return.
6625
6626 2011-03-15 Pedro Alves <pedro@codesourcery.com>
6627
6628 * printcmd.c (ALL_DISPLAYS_SAFE): New.
6629 (map_display_numbers): New.
6630 (do_delete_display): New.
6631 (undisplay_command): Use map_display_numbers.
6632 (do_enable_disable_display): New.
6633 (enable_disable_display_command): New function.
6634 (enable_display): Delete.
6635 (enable_display_command): New.
6636 (disable_display_command): Reimplement.
6637 (_initialize_printcmd): Adjust "enable display" command to use
6638 `enable_display_command' as callback.
6639
6640 2011-03-14 Phil Muldoon <pmuldoon@redhat.com>
6641
6642 * NEWS: Add Python breakpoint 'stop' operation.
6643
6644 2011-03-14 Phil Muldoon <pmuldoon@redhat.com>
6645
6646 * NEWS: Delete duplicate entry. Fix typo.
6647
6648 2011-03-14 Pierre Muller <muller@ics.u-strasbg.fr>
6649
6650 Fix ARI warning about function names in first column.
6651 Put prototype declaration on same line as return type.
6652 * objc-exp.y: Ditto.
6653 * p-exp.y: Ditto.
6654 * python/py-stopevent.h: Ditto.
6655 For long function names, split parameters to
6656 allow function name on same line as return type.
6657 * solib-pa64.c: Ditto.
6658 * varobj.c: Ditto.
6659 * varobj.h: Ditto.
6660 For long function declaration, use single line.
6661 * hppa-tdep.h: Ditto.
6662 * inferior.h: Ditto.
6663
6664 2011-03-14 Phil Muldoon <pmuldoon@redhat.com>
6665
6666 * python/python.h: Declare gdbpy_should_stop and
6667 gdbpy_breakpoint_has_py_cond.
6668 * python/python.c: Add python.h to includes. Remove python.h from
6669 HAVE_PYTHON definition
6670 (gdbpy_should_stop): New dummy function.
6671 (gdbpy_breakpoint_has_py_cond): New dummy function.
6672 * python/py-breakpoint.c (bppy_init): Rewrite to allow
6673 sub-classing capabilities.
6674 (gdbpy_should_stop): New function.
6675 (gdbpy_breakpoint_has_py_cond): New function.
6676 (local_setattro): New function.
6677 * breakpoint.c (condition_command): Add check for Python 'stop'
6678 operation.
6679 (bpstat_check_breakpoint_conditions): Execute Python 'stop'
6680 operation function as part of stop/continue tests.
6681
6682 2011-03-14 Tom Tromey <tromey@redhat.com>
6683
6684 PR gdb/12576:
6685 * dwarf2loc.c (dwarf_expr_dwarf_call): Remove 'return'.
6686 (needs_frame_dwarf_call): Likewise.
6687
6688 2011-03-14 Pierre Muller <muller@ics.u-strasbg.fr>
6689
6690 Fix ARI warning about functions without parameters that do not
6691 use (void).
6692 * breakpoint.c (all_tracepoints): Replace () by (void).
6693 * f-exp.y (match_string_literal): Ditto.
6694 (yylex): Ditto.
6695 * m2-exp.y (yylex): Ditto.
6696 * mep-tdep.c (current_me_module): Ditto.
6697 (current_options): Ditto.
6698 (current_cop_data_bus_width): Ditto.
6699 (current_cr_names): Ditto.
6700 (current_cr_is_float): Ditto.
6701 (current_ccr_names): Ditto.
6702 * objc-exp.y (yylex): Ditto.
6703 * p-exp.y (yylex): Ditto.
6704 * remote.c (send_interrupt_sequence): Ditto.
6705 * tracepoint.c (current_trace_status): Ditto.
6706 * python/py-evts.c (gdbpy_initialize_py_events): Ditto.
6707 * python/py-prettyprint.c (push_dummy_python_frame): Ditto.
6708
6709 2011-03-11 Michael Snyder <msnyder@vmware.com>
6710
6711 * cli/cli-decode.h (CMD_LIST_AMBIGUOUS): Define.
6712 * cli/cli-decode.c (lookup_cmd_1): Use CMD_LIST_AMBIGUOUS.
6713 (lookup_cmd): Test for CMD_LIST_AMBIGUOUS.
6714 * completer.c (complete_line_internal): Use CMD_LIST_AMBIGUOUS.
6715 * top.c (set_verbose): Use CMD_LIST_AMBIGUOUS.
6716
6717 * event-loop-c (delete_async_signal_handler): Assert prev_ptr.
6718 (delete_async_event_handler): Ditto.
6719
6720 * python/py-breakpoint.c (bppy_set_condition): Stop memory leak.
6721
6722 * python/py-breakpoint.c (bppy_get_commands): Fix memory leak.
6723
6724 * top.c (set_verbose): Assert showcmd was found.
6725
6726 2011-03-11 Maxim Grigoriev <maxim2405@gmail.com>
6727
6728 * xtensa-tdep.c (warning_once): Correct style issues.
6729
6730 2011-03-11 Yao Qi <yao@codesourcery.com>
6731
6732 * arm-tdep.c (copy_ldr_str_ldrb_strb): Remove redundant statements.
6733
6734 2011-03-11 Andreas Schwab <schwab@redhat.com>
6735
6736 * common/aclocal.m4: Remove.
6737
6738 2011-03-10 Maxim Grigoriev <maxim2405@gmail.com>
6739
6740 * xtensa-tdep.c (windowing_enabled): Remove inline attribute.
6741 (xtensa_write_register, xtensa_read_register): Likewise.
6742 (xtensa_hextochar): Removed.
6743 (xtensa_init_reggroups): Replace xtensa_hextochar () by explicit code.
6744
6745 2011-03-10 Maxim Grigoriev <maxim2405@gmail.com>
6746
6747 * xtensa-tdep.c (xtensa_c0reg_t): Update comments.
6748 (xtensa_call0_frame_cache_t): Update comments. New fields added.
6749 (xtensa_alloc_frame_cache): Add initialization for new fields.
6750 (xtensa_frame_cache): Change the way how call0_frame_cache () is called.
6751 (warning_once): New function.
6752 (xtensa_insn_kind): New item c0opc_and.
6753 (call0_classify_opcode): Add the case for AND instruction.
6754 (call0_track_op): Change arguments. New local variable litbase.
6755 Add the case to handle c0opc_and. Update algorithms for c0opc_mov,
6756 c0opc_l32r, c0opc_s32i to take into account dynamic stack adjustments
6757 in the prologue.
6758 Add cases for c0opc_l32e, c0opc_s32e, c0opc_rfwo, c0opc_rfwu.
6759 (call0_analyze_prologue): Update the comments. Change arguments.
6760 Add the variety of updates to handle extended prologues, which now can
6761 conduct dynamic stack adjustments.
6762 (call0_frame_cache): Likewise.
6763 (xtensa_skip_prologue): Update call0_analyze_prologue () function call.
6764 (xtensa_gdbarch_init): Initialize xtensa_session_once_reported.
6765
6766 2011-03-10 Michael Snyder <msnyder@vmware.com>
6767
6768 * tracepoint.c (cmd_qtv): Discard unused value 'packet'.
6769 (cmd_qtframe): Ditto.
6770 (cmd_qtbuffer): Ditto.
6771 (cmd_bigqtbuffer): Ditto.
6772
6773 2011-03-10 Tom Tromey <tromey@redhat.com>
6774
6775 * tracepoint.c (trace_actions_command): Update.
6776 * thread.c (thread_apply_command): Update.
6777 * reverse.c (delete_bookmark_command): Update.
6778 (bookmarks_info): Update.
6779 * printcmd.c (undisplay_command): Update.
6780 * memattr.c (mem_enable_command): Update.
6781 (mem_disable_command): Update.
6782 (mem_delete_command): Update.
6783 * inferior.c (detach_inferior_command): Update.
6784 (kill_inferior_command): Update.
6785 (remove_inferior_command): Update.
6786 * cli/cli-utils.h (struct get_number_or_range_state): New.
6787 (init_number_or_range): Declare.
6788 (get_number_or_range): Update.
6789 * cli/cli-utils.c (init_number_or_range): New function.
6790 (get_number_or_range): Change 'pp' parameter to 'state'. Remove
6791 static variables.
6792 (number_is_in_list): Update.
6793 * breakpoint.h (get_tracepoint_by_number): Update.
6794 * breakpoint.c (map_breakpoint_numbers): Update for change to
6795 get_number_or_range.
6796 (find_location_by_number): Use get_number, not
6797 get_number_or_range.
6798 (trace_pass_set_count): New function.
6799 (trace_pass_command): Update for change to get_number_or_range.
6800 Rework loop logic.
6801 (get_tracepoint_by_number): Remove 'multi_p' parameter; add
6802 'state' parameter.
6803
6804 2011-03-10 Phil Muldoon <pmuldoon@redhat.com>
6805
6806 * python/py-param.c (add_setshow_generic): Add set/show callback
6807 parameters. Register Python object context.
6808 (get_show_value): New function.
6809 (get_set_value): New function.
6810 (call_doc_function): New function.
6811 (get_doc_string): Move behind get_show_value/get_set_value.
6812
6813 2011-03-10 Andreas Tobler <andreast-list@fgznet.ch>
6814
6815 * fbsd-nat.c (fbsd_make_corefile_notes): Constify local `fname'.
6816
6817 2011-03-09 Maxim Grigoriev <maxim2405@gmail.com>
6818
6819 * xtensa-tdep.c (xtensa_read_register): Add comment.
6820 (xtensa_write_register): Likewise.
6821 (xtensa_hextochar): Add comment and update to match coding conventions.
6822 (xtensa_frame_cache, xtensa_return_value): Follow coding conventions.
6823 (execute_l32e, execute_s32e, execute_code): Update comments.
6824 (xtensa_exception_handler_t): Update to match coding conventions.
6825 (xtensa_insn_kind): Likewise.
6826
6827 2011-03-09 Michael Snyder <msnyder@vmware.com>
6828
6829 * mi-cmd-disas.c (mi_cmd_disassemble): Fix memory leak.
6830
6831 2011-03-09 Pedro Alves <pedro@codesourcery.com>
6832
6833 * nto-tdep.c (nto_find_and_open_solib): Constify local `base'.
6834
6835 2011-03-09 Tom Tromey <tromey@redhat.com>
6836
6837 * thread.c (restore_selected_frame): Handle frame_level == -1.
6838 (make_cleanup_restore_current_thread): Use
6839 get_selected_frame_if_set.
6840 * frame.h (get_selected_frame_if_set): Declare.
6841 * frame.c (get_selected_frame_if_set): New function.
6842
6843 2011-03-09 Pedro Alves <pedro@codesourcery.com>
6844
6845 * cli/cli-cmds.c (shell_escape): Use lbasename.
6846 * coffread.c (coff_start_symtab): Constify parameter.
6847 (complete_symtab): Constify `name' parameter.
6848 (coff_symtab_read): Constify `filestring' local.
6849 (coff_getfilename): Constify return and `result' local.
6850 Use lbasename.
6851 * fbsd-nat.c (fbsd_make_corefile_notes): Use lbasename.
6852 * linux-fork.c (info_checkpoints_command): Use lbasename.
6853 * linux-nat.c (linux_nat_make_corefile_notes): Use lbasename.
6854 * minsyms.c (lookup_minimal_symbol): Use lbasename.
6855 * nto-tdep.c (nto_find_and_open_solib): Use lbasename.
6856 * procfs.c (procfs_make_note_section): Use lbasename.
6857 * tui/tui-io.c (printable_part): Constity return and parameter.
6858 Use lbasename.
6859 (print_filename): Constify parameters, and local `s'.
6860 (tui_rl_display_match_list): Constify local `temp'.
6861
6862 2011-03-09 Jan Kratochvil <jan.kratochvil@redhat.com>
6863
6864 Revert:
6865 2011-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6866 Fix DWARF-3+ DW_AT_accessibility default assumption.
6867 * dwarf2read.c (dwarf2_add_field): Fix new_field->accessibility for
6868 cu->header.version >= 3.
6869
6870 2011-03-09 Yao Qi <yao@codesourcery.com>
6871
6872 * common/Makefile.in: Remove.
6873 * common/configure: Remove.
6874 * common/configure.ac: Remove.
6875
6876 2011-03-09 Yao Qi <yao@codesourcery.com>
6877
6878 Revert:
6879 2011-02-11 Yao Qi <yao@codesourcery.com>
6880
6881 * common/Makefile.in: Add copyright header.
6882
6883 2011-02-11 Yao Qi <yao@codesourcery.com>
6884
6885 * Makefile.in: Remove signals.o from COMMON_OBS. Link
6886 libcommon.a.
6887 * configure.ac: Add common to sub dir.
6888 * configure: Regenerate.
6889
6890 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
6891
6892 * xtensa-tdep.c (call0_ret): New function.
6893 (xtensa_skip_prologue): Speed up analysis.
6894
6895 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
6896
6897 * xtensa-tdep.c (xtensa_register_reggroup_p): Count in all registers
6898 while executing MI command -data-list-changed-registers.
6899
6900 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
6901
6902 * xtensa-tdep.c (xtensa_read_register): New function.
6903 (xtensa_write_register): New function.
6904 (xtensa_find_register_by_name): New function.
6905 (xtensa_windowed_frame_cache): Update comments in type description.
6906 (xtensa_frame_cache): Likewise.
6907 (xtensa_window_interrupt_insn): New function.
6908 (xtensa_frame_cache): Add analysis for Xtensa Window Exception frames.
6909 (xtensa_insn_kind): Add new instructions.
6910 (rwx_special_register): New function.
6911 (call0_classify_opcode): Add new instructions to the analysis.
6912 (a0_saved, a7_saved, a11_saved): New variables.
6913 (a0_was_saved, a7_was_saved, a11_was_saved): New variables.
6914 (execute_l32e): New function.
6915 (execute_s32e): New function.
6916 (xtensa_exception_handler_t): New type.
6917 (execute_code): New function.
6918 (xtensa_window_interrupt_frame_cache): New function to conduct frame
6919 analysis for Xtensa Window Exception handlers.
6920
6921 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
6922
6923 * xtensa-tdep.c (TX_PS): New.
6924 (windowing_enabled): Update to count for Call0 ABI.
6925 (xtensa_hextochar): New.
6926 (xtensa_init_reggroups): Make algorithm generic.
6927 (xtensa_frame_cache): Use TX_PS on Tiny Xtensa.
6928
6929 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
6930
6931 * xtensa-tdep.h (XTENSA_MAX_COPROCESSOR): Update.
6932
6933 2011-03-08 Michael Snyder <msnyder@vmware.com>
6934
6935 * i386-tdep.c (i386_follow_jump): Check return value of
6936 target_read_memory.
6937 (i386_analyze_struct_return): Ditto.
6938 (i386_skip_probe): Ditto.
6939 (i386_match_insn): Ditto.
6940 (i386_skip_noop): Ditto.
6941 (i386_analyze_frame_setup): Ditto.
6942 (i386_analyze_register_saves): Ditto.
6943 (i386_skip_prologue): Ditto.
6944 (i386_skip_main_prologue): Ditto.
6945
6946 * target.c (read_whatever_is_readable): Fix memory leak.
6947
6948 * i386-tdep.c (i386_process_record): Document fall through.
6949
6950 2011-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6951
6952 Fix DWARF-3+ DW_AT_accessibility default assumption.
6953 * dwarf2read.c (dwarf2_add_field): Fix new_field->accessibility for
6954 cu->header.version >= 3.
6955
6956 2011-03-08 Pedro Alves <pedro@codesourcery.com>
6957
6958 * remote.c (remote_check_symbols): Skip if the target has no
6959 execution.
6960
6961 2011-03-08 Joel Brobecker <brobecker@adacore.com>
6962
6963 * target.c (read_whatever_is_readable): Reformat comment,
6964 with a minor typo fix. Minor reformatting of the code.
6965
6966 2011-03-08 Yao Qi <yao@codesourcery.com>
6967
6968 * arm-tdep.c: Remove prototype declaration displaced_in_arm_mode.
6969 (displaced_read_reg): Add `dsc' parameter, remove `from' parameter.
6970 Use cached result instead of calling displaced_in_arm_mode again.
6971 (branch_write_pc, alu_write_pc, load_write_pc): Add `dsc' parameter.
6972 (displaced_write_reg, copy_preload, copy_preload_reg): Callers update.
6973 (cleanup_copro_load_store, copy_copro_load_store): Likewise.
6974 (cleanup_branch, copy_bx_blx_reg, copy_alu_imm): Likewise.
6975 (cleanup_alu_reg, copy_alu_reg, cleanup_alu_shifted_reg): Likewise.
6976 (copy_alu_shifted_reg, cleanup_load, cleanup_store): Likewise.
6977 (copy_extra_ld_st, copy_ldr_str_ldrb_strb): Likewise.
6978 (cleanup_block_load_all, cleanup_block_store_pc): Likewise.
6979 (cleanup_block_load_pc, copy_block_xfer): Likewise.
6980 * arm-linux-tdep.c (arm_linux_copy_svc): Callers update.
6981 (arm_catch_kernel_helper_return): Likewise.
6982 * gdb/arm-tdep.h : Update function declarations.
6983
6984 2011-03-07 Michael Snyder <msnyder@vmware.com>
6985
6986 * dwarf2loc.c (indirect_pieced_value): Assert 'piece' not null.
6987
6988 * ser-unix.c (hardwire_get_tty_state): Stop memory leak.
6989
6990 * mi/mi-cmd-env.c (_initialize_mi_cmd_env): Free environment.
6991
6992 * elfread.c (elf_symtab_read): Stop memory leak.
6993
6994 * main.c (captured_main): Fix memory leak.
6995
6996 2011-03-07 Andreas Schwab <schwab@linux-m68k.org>
6997
6998 * ada-lang.c (compare_names): Call is_name_suffix with string1
6999 instead of string2.
7000
7001 2011-03-07 Tom Tromey <tromey@redhat.com>
7002
7003 * xcoffread.c (xcoff_sym_fns): Update.
7004 * symfile.h (struct sym_fns) <sym_read_psymbols>: New field.
7005 (enum symfile_add_flags) <SYMFILE_NO_READ>: New constant.
7006 * symfile.c (syms_from_objfile): Handle SYMFILE_NO_READ.
7007 (symbol_file_add_with_addrs_or_offsets): Likewise.
7008 (reread_symbols): Handle OBJF_PSYMTABS_READ.
7009 * somread.c (som_sym_fns): Update.
7010 * psymtab.h (require_partial_symbols): Declare.
7011 * psymtab.c (require_partial_symbols): New function.
7012 (ALL_OBJFILE_PSYMTABS_REQUIRED): New macro.
7013 (ALL_OBJFILE_PSYMTABS): Undef.
7014 (ALL_PSYMTABS): Move from psympriv.h.
7015 (lookup_partial_symtab, find_pc_sect_psymtab)
7016 (lookup_symbol_aux_psymtabs, relocate_psymtabs)
7017 (find_last_source_symtab_from_partial)
7018 (forget_cached_source_info_partial)
7019 (print_psymtab_stats_for_objfile, read_symtabs_for_function)
7020 (expand_partial_symbol_tables, read_psymtabs_with_filename)
7021 (map_symbol_names_psymtab, map_symbol_filenames_psymtab)
7022 (find_symbol_file_from_partial, map_matching_symbols_psymtab)
7023 (expand_symtabs_matching_via_partial, maintenance_info_psymtabs):
7024 Use ALL_OBJFILE_PSYMTABS_REQUIRED.
7025 * psympriv.h (ALL_PSYMTABS): Move to psymtab.c.
7026 * objfiles.h (OBJF_PSYMTABS_READ): New macro.
7027 * objfiles.c (objfile_has_partial_symbols): Handle lazily-read
7028 psymtabs.
7029 * mipsread.c (ecoff_sym_fns): Update.
7030 * machoread.c (macho_sym_fns): Update.
7031 * elfread.c (elf_symfile_read): Set up for lazy psymtab reading.
7032 (read_psyms): New function.
7033 (elf_sym_fns, elf_sym_fns_gdb_index): Update.
7034 (elf_sym_fns_lazy_psyms): New global.
7035 * dwarf2read.c (dwarf2_initialize_objfile): Don't call
7036 dwarf2_build_psymtabs.
7037 * dbxread.c (aout_sym_fns): Update.
7038 * coffread.c (coff_sym_fns): Update.
7039
7040 2011-03-07 Tom Tromey <tromey@redhat.com>
7041
7042 * infrun.c (print_exited_reason): Include inferior id and pid in
7043 message.
7044
7045 2011-03-07 Tom Tromey <tromey@redhat.com>
7046
7047 * target.h (struct target_ops) <to_has_execution>: Add ptid_t
7048 parameter.
7049 (target_has_execution_1): Update.
7050 (target_has_execution_current): Declare.
7051 (target_has_execution): Call target_has_execution_current.
7052 (default_child_has_execution): Update.
7053 * target.c (default_child_has_execution): Add 'the_ptid'
7054 parameter.
7055 (target_has_execution_1): Likewise.
7056 (target_has_execution_current): New function.
7057 (add_target): Update.
7058 (init_dummy_target): Update.
7059 * remote-m32r-sdi.c (m32r_has_execution): New function.
7060 (init_m32r_ops): Use it.
7061 * record.c (record_core_has_execution): Now static. Add
7062 'the_ptid' parameter.
7063 * inferior.c (have_live_inferiors): Don't save current thread.
7064 Use target_has_execution_1.
7065
7066 2011-03-07 Yao Qi <yao@codesourcery.com>
7067
7068 * Makefile.in (aclocal_m4_deps): Remove gnulib/m4/memcmp.m4.
7069
7070 2011-03-07 Joel Brobecker <brobecker@adacore.com>
7071
7072 * elfread.c (elf_symtab_read): Minor reformatting.
7073
7074 2011-03-07 Joel Brobecker <brobecker@adacore.com>
7075
7076 * objc-lang.c (selectors_info): Minor reformatting.
7077
7078 2011-03-07 Joel Brobecker <brobecker@adacore.com>
7079
7080 * ada-lang.c (compare_names): Add FALLTHROUGH comment.
7081
7082 2011-03-07 Joel Brobecker <brobecker@adacore.com>
7083 Michael Snyder <msnyder@vmware.com>
7084
7085 * ada-valprint.c (ada_val_print_array): Move the declaration of
7086 "byte_order" and "elttype" inside the block where these variables
7087 are actually used. Remove some special handling for the case
7088 where "elttype" and "eltlen" are null. Replace by a comment
7089 and a couple of assertion checks.
7090
7091 2011-03-05 Michael Snyder <msnyder@vmware.com>
7092
7093 * source.c (add_path): Replace semicolon at end of block.
7094 * dwarf2expr.c (execute_stack_op): Ditto.
7095
7096 2011-03-05 Mike Frysinger <vapier@gentoo.org>
7097
7098 * bfin-tdep.c: Include sim-regno.h and gdb/sim-bfin.h.
7099 * configure.tgt (bfin-*-*linux*): Define gdb_sim.
7100 (bfin-*-*): Likewise.
7101
7102 2011-03-05 Michael Snyder <msnyder@vmware.com>
7103
7104 * dwarf2expr.c (execute_stack_op): Delete superfluous semicolon.
7105 * mdebugread.c (parse_symbol): Ditto.
7106 * parse.c (parse_exp_in_context): Ditto.
7107 * source.c (add_path): Ditto.
7108 * utils.c (gnu_debuglink_crc32): Ditto.
7109 * varobj.c (variable_language): Ditto.
7110
7111 * linux-tdep.c (linux_get_siginfo_type): Stop memory leak.
7112
7113 2011-03-04 Michael Snyder <msnyder@vmware.com>
7114
7115 * linux-fork.c (inferior_call_waitptid): Fix copy/paste error.
7116
7117 * symfile.c (simple_overlay_update): Check for null return value
7118 from lookup_minimal_symbol.
7119
7120 * xml-syscall.c (syscall_start_syscall): Assert name is non null.
7121
7122 2011-03-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
7123
7124 * eval.c (parse_and_eval_address_1): Remove function.
7125 * linespec.c (decode_indirect): Call parse_to_comma_and_eval
7126 instead of parse_and_eval_address_1.
7127 * value.h (parse_and_eval_address_1): Remove prototype.
7128
7129 2011-03-04 Michael Snyder <msnyder@vmware.com>
7130
7131 * remote.c (putpkt_binary): Document that case stmt falls through.
7132
7133 2011-03-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
7134
7135 * breakpointc (print_it_typical): Move NULL check from here...
7136 (print_bp_stop_message): ... to here.
7137
7138 2011-03-04 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
7139
7140 * breakpoint.c (enable_command): Use break instead of continue,
7141 and fill in a missing break.
7142 (disable_command): Ditto.
7143
7144 2011-03-04 Ulrich Weigand <ulrich.weigand@linaro.org>
7145
7146 * inflow.c (terminal_init_inferior_with_pgrp): Copy ttystate.
7147 (terminal_save_ours): Remove misleading comment.
7148 (inflow_inferior_data_cleanup): Free ttystate.
7149 (inflow_inferior_exit): Likewise.
7150 (copy_terminal_info): Copy ttystate.
7151
7152 * serial.c (serial_copy_tty_state): New function.
7153 * serial.h (serial_copy_tty_state): Add prototype.
7154 (struct serial_ops): Add copy_tty_state callback.
7155 * ser-base.c (ser_base_copy_tty_state): New function.
7156 * ser-base.h (ser_base_copy_tty_state): Add prototype.
7157 * ser-go32.c (dos_copy_tty_state): New function.
7158 (dos_ops): Install copy_tty_state callback.
7159 * ser-mingw.c (_initialize_ser_windows): Likewise.
7160 * ser-pipe.c (_initialize_ser_pipe): Likewise.
7161 * ser-unix.c (hardwire_copy_tty_state): New function.
7162 (_initialize_ser_hardwire): Install it.
7163
7164 2011-03-04 Michael Snyder <msnyder@vmware.com>
7165
7166 * breakpoint.c (create_breakpoint): Add missing break statement.
7167
7168 Reverting this patch:
7169 * infcall.c (call_function_by_hand): Add break statements for lint.
7170
7171 Reverting this patch:
7172 * cli/cli-script.c (script_from_file): Add break for lint.
7173
7174 2011-03-04 Michael Snyder <msnyder@vmware.com>
7175
7176 * solib.c (reload_shared_libraries_1): Close memory leak.
7177
7178 2011-03-03 Tom Tromey <tromey@redhat.com>
7179
7180 PR gdb/12538:
7181 * dwarf2read.c (process_psymtab_comp_unit): Handle case where
7182 DW_STRING is NULL.
7183
7184 2011-03-03 Michael Snyder <msnyder@vmware.com>
7185
7186 * remote-fileio.c (remote_fileio_func_fstat): Initialize all
7187 fields of struct 'st' to zero.
7188
7189 * tui/tui-winsource.c (tui_update_source_window_as_is): Initialize
7190 sal.pspace before calling set_current_source_symtab_and_line.
7191
7192 2011-03-03 Yao Qi <yao@codesourcery.com>
7193
7194 * Makefile.in (configure-common): Remove. Let Makefile
7195 in dir common to rebuild itself.
7196 (common/Makefile): Likewise.
7197
7198 2011-03-03 Joel Brobecker <brobecker@adacore.com>
7199
7200 * utils.c (parse_escape): Add i18n markup in error message.
7201
7202 2011-03-03 Yao Qi <yao@codesourcery.com>
7203
7204 * gdb/arm-tdep.c (shifted_reg_val): Replace magic number 15 with
7205 ARM_PC_REGNUM.
7206 (thumb_get_next_pc_raw, arm_get_next_pc_raw): Likewise.
7207 (displaced_write_reg, displaced_read_reg): Likewise.
7208 (copy_ldr_str_ldrb_strb, cleanup_block_load_all): Likewise.
7209 (cleanup_block_load_pc, copy_block_xfer): Likewise.
7210 (cleanup_branch): Replace magic number 14 and 15 with
7211 ARM_LR_REGNUM and ARM_PC_REGNUM respectively.
7212
7213 2011-03-02 Michael Snyder <msnyder@vmware.com>
7214
7215 * maint.c (maintenance_do_deprecate): No need to check for NULL.
7216
7217 * cli/cli-script.c (script_from_file): Add break for lint.
7218
7219 * mdebugread.c (parse_partial_symbols): Fix indent.
7220
7221 * target-descriptions.c (tdesc_gdb_type): No need to call
7222 xstrdup, callee saves a copy.
7223
7224 * printcmd.c (print_scalar_formatted): Use strncpy for safety.
7225
7226 * infcall.c (call_function_by_hand): Add break statements for lint.
7227
7228 * utils.c (parse_escape): Escape the escape char.
7229
7230 * python/py-inferior.c (build_inferior_list): Error out if
7231 PyList_Append fails.
7232 (gdbpy_inferiors): Error out if build_inferior_list fails.
7233
7234 * linux-nat.c (linux_nat_xfer_partial): Preserve errno around
7235 a function call.
7236
7237 * record.c (record_restore): Move printf to before error return.
7238
7239 2011-03-02 Yao Qi <yao@codesourcery.com>
7240
7241 * arm-tdep.h (struct displaced_step_closure): Add two new fields
7242 is_thumb and insn_size.
7243 * arm-tdep.c (displaced_read_reg): Adjust correct pipeline offset
7244 on both ARM and Thumb mode.
7245 (arm_process_displaced_insn): Set is_thumb and insn_size.
7246 (arm_displaced_init_closure): Handle both 16-bit and 32-bit.
7247 (arm_displaced_step_fixup): Likewise.
7248
7249 2011-03-01 Michael Snyder <msnyder@vmware.com>
7250
7251 * cli/cli-dump.c (dump_bfd_file): Check error return and warn.
7252
7253 * jv-lang.c (evaluate_subexp_java): Conditional can't be true.
7254
7255 * dwarf2read.c (dwarf2_compute_name): NAME cannot be null here.
7256
7257 * cli/cli-dump.c (restore_binary_file): Validate ftell return value.
7258
7259 * ada-lang.c (ada_make_symbol_completion_list): Replace malloc
7260 with xmalloc.
7261
7262 * ada-lang.c (aggregate_assign_others): Rename inner scope variable
7263 which shadows function parameter.
7264
7265 * tracepoint.c (create_tsv_from_upload): Superfluous call
7266 to xstrdup. Callee already calls xstrdup.
7267
7268 * linespec.c (decode_line_1): Remove unnecessary null check.
7269
7270 * tracepoint.c (scope_info): Fix mem leak, remove underused
7271 variable.
7272
7273 * python/py-prettyprint.c (apply_val_pretty_printer): Remove
7274 superfluous null check.
7275
7276 * std-regs.c (value_of_builtin_frame_pc_reg): Frame can't be null.
7277 (value_of_builtin_frame_fp_reg): Ditto.
7278
7279 * event-top.c (display_gdb_prompt): Remove superfluous null check.
7280
7281 * python/py-prettyprint.c (apply_val_pretty_printer): VAL may
7282 be null.
7283
7284 * linespec.c (decode_line_1): Check for null before dereference.
7285
7286 * reverse.c (record_restore): Move null-check to before pointer
7287 dereference.
7288
7289 * python/py-utils.c (gdbpy_obj_to_string): Delete unused variable.
7290
7291 * objc-lang.c (selectors_info): Add explanitory comment.
7292 (classes_info): Ditto.
7293
7294 2011-03-01 Ulrich Weigand <ulrich.weigand@linaro.org>
7295
7296 * arm-linux-tdep.c (ARM_LDR_PC_SP_4): Add define.
7297 (arm_linux_restart_syscall_init): Handle both on-stack and in-kernel
7298 versions of the trampoline. Handle Thumb vs. ARM addresses.
7299 (arm_kernel_linux_restart_syscall_tramp_frame): New global.
7300 (arm_linux_init_abi): Install it.
7301 * arm-tdep.c (arm_psr_thumb_bit): Make global.
7302 * arm-tdep.c (arm_psr_thumb_bit): Add prototype.
7303
7304 2011-02-28 Michael Snyder <msnyder@vmware.com>
7305
7306 * ui-out.c (ui_out_field_core_addr): Make local char buffer
7307 a little bigger, to avoid possibility of an overflow.
7308
7309 * breakpoint.c (breakpoint_adjustment_warning): Make local char
7310 buffers a little bigger, to avoid possibility of an overflow.
7311
7312 * coffread.c (coff_getfilename): Add check to avoid overflow.
7313
7314 * objc-lang.c (selectors_info): Add a small safety margin to
7315 avoid overflow.
7316 (classes_info): Error out on too long REGEXP.
7317
7318 * infrun.c (handle_inferior_event): Remove unused function call.
7319
7320 * fork-child.c (fork_inferior): Remove ifdef'd code and
7321 unused variable.
7322
7323 * linux-thread-db.c (attach_thread): Discard unused value.
7324
7325 * linux-nat.c (linux_handle_extended_wait): Delete unused variable.
7326
7327 * remote.c (remote_get_noisy_reply): Discard unused value.
7328 (remote_vcont_resume): Ditto.
7329 (remote_stop_ns): Ditto.
7330
7331 * linespec.c (decode_objc): Delete unused variable.
7332
7333 * tui/tui-regs.c (tui_register_format): Delete unused variable.
7334
7335 * dwarf2read.c (add_partial_symbol): Discard unused values.
7336 (read_base_type): Delete unused variable.
7337
7338 * dbxread.c (read_dbx_symtab): Discard unused value.
7339
7340 * eval.c (evaluate_subexp_standard): Delete unused variable,
7341 and discard unused values.
7342
7343 * infcmd.c (_initialize_infcmd): Discard unused values.
7344
7345 * stabsread.c (rs6000_builtin_type): Missing break statement.
7346
7347 * dbxread.c (process_one_symbol): Discard unused value.
7348
7349 * coffread.c (coff_end_symtab): Delete unused variable.
7350
7351 * dwarf2read.c (dw2_get_file_names): Discard unused value.
7352 (dwarf2_add_typedef): Delete unused variable.
7353 (read_namespace): Ditto.
7354 (dwarf_decode_macros): Ditto.
7355
7356 * m2-lang.c (evaluate_subexp_modula2): Discard unused variable.
7357
7358 * opencl-lang.c (evaluate_subexp_opencl): Discard unused value.
7359
7360 * p-valprint.c (pascal_val_print): Discard unused value.
7361
7362 * utils.c (nquery): Call va_end before return;
7363 (yquery): Ditto.
7364 (query): Ditto.
7365
7366 * proc-service.c (ps_plog): Call va_end before return.
7367
7368 2011-02-28 Tom Tromey <tromey@redhat.com>
7369
7370 * python/python.c (gdbpy_value_cst): New global.
7371 (_initialize_python): Initialize it.
7372 * python/python-internal.h (gdbpy_value_cst): Declare.
7373 * python/py-value.c (convert_value_from_python): Use
7374 gdbpy_value_cst.
7375
7376 2011-02-28 Michael Snyder <msnyder@vmware.com>
7377
7378 * python/py-cmd.c (cmdpy_init): Fix memory leak.
7379
7380 * breakpoint.c (catch_syscall_completer): Free malloced list.
7381
7382 * jv-lang.c (java_primitive_type_from_name): Add missing break.
7383
7384 * opencl-lang.c (lval_func_check_validity): Rename inner variables.
7385 (lval_func_check_synthetic_pointer): Ditto.
7386 (lval_func_free_closure): Fix use-after-free.
7387
7388 2011-02-28 Tom Tromey <tromey@redhat.com>
7389
7390 * psymtab.c (expand_partial_symbol_tables): Use
7391 ALL_OBJFILE_PSYMTABS.
7392
7393 2011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
7394
7395 * objc-lang.c (selectors_info): Error on too long REGEXP.
7396
7397 2011-02-28 Michael Snyder <msnyder@vmware.com>
7398
7399 * python/py-param.c (set_parameter_value): Add missing
7400 break statement.
7401
7402 * linux-record.c (record_linux_system_call): Add missing
7403 break statement.
7404
7405 2011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
7406
7407 * breakpoint.c (print_one_breakpoint_location): Remove unused
7408 argument PRINT_ADDRESS_BITS. Update callers.
7409 (print_one_breakpoint): Likewise.
7410
7411 2011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
7412
7413 * breakpoint.c (wrap_indent_at_field): New function.
7414 (print_breakpoint_location): Use it instead of WRAP_INDENT argument.
7415 Allocate ui_stream locally instead of using STB argument.
7416 (print_one_breakpoint_location): Update call.
7417 * ui-out.c (ui_out_query_field): New function.
7418 * ui-out.h (ui_out_query_field): Add prototype.
7419
7420 2011-02-28 Joel Brobecker <brobecker@adacore.com>
7421
7422 From Michael Snyder <msnyder@vmware.com>
7423 * ada-exp.y (write_object_renaming): Add FALLTHROUGH comment.
7424
7425 2011-02-27 Michael Snyder <msnyder@vmware.com>
7426
7427 * objc-lang.c (selectors_info): Prevent string overrun.
7428
7429 * tui/tui-stack.c (tui_get_function_from_frame): Fix off by one
7430 error in strncpy.
7431
7432 * symtab.c (rbreak_command): Move variable 'file_name' to
7433 outer scope.
7434
7435 * d-valprint.c (dynamic_array_type): Avoid shadowing a function
7436 param with a local variable of the same name.
7437
7438 2011-02-27 Michael Snyder <msnyder@vmware.com>
7439
7440 * value.c (value_from_history_ref): New function.
7441 * value.h (value_from_history_ref): Export.
7442 * cli/cli-utils.c (get_number_trailer): Use value_from_history_ref
7443 to parse value history references.
7444 * cli/cli-utils.h (get_number_trailer): Update comment.
7445
7446 2011-02-27 Michael Snyder <msnyder@vmware.com>
7447
7448 * inferior.c (detach_inferior_command): Use get_number_or_range.
7449 (kill_inferior_command): Ditto.
7450 (remove_inferior_command): Ditto.
7451 (initialize_inferiors): Make command names plural.
7452 Update help strings.
7453
7454 2011-02-27 Michael Snyder <msnyder@vmware.com>
7455
7456 * darwin-nat-info.c: Fix comment typo.
7457 * dwarf2expr.h: Ditto.
7458 * fbsd-nat.c: Ditto.
7459 * fbsd-nat.h: Ditto.
7460 * frame-unwind.h: Ditto.
7461 * frame.h: Ditto.
7462 * hppa-hpux-tdep.c: Ditto.
7463 * i386-linux-nat.c: Ditto.
7464 * linux-nat.c: Ditto.
7465 * nbsd-nat.c: Ditto.
7466 * nbsd-nat.h: Ditto.
7467 * ppc-linux-tdep.c: Ditto.
7468 * serial.c: Ditto.
7469 * ui-file.h: Ditto.
7470 * tui/tui-winsource.c: Ditto.
7471
7472 2011-02-26 Michael Snyder <msnyder@vmware.com>
7473
7474 * breakpoint.c (reattach_breakpoints): Avoid resource leak (ui_file).
7475
7476 * maint.c (maintenance_do_deprecate): Plug a memory leak.
7477
7478 * dwarf2loc.c (insert_bits): Avoid shadowing a function param
7479 with a local variable of the same name.
7480
7481 * i387-tdep.c (i387_supply_fxsave): Avoid shadowing a function
7482 param with a local variable of the same name.
7483 (i387_supply_xsave): Ditto.
7484
7485 * linux-low.c (linux_nat_xfer_osdata): Rename local variable so
7486 that it does not shadow a function parameter.
7487
7488 * i386-nat.c (i386_length_and_rw_bits): Document that case
7489 statement is meant to fall through.
7490
7491 * expprint.c (dump_subexp_body_standard): Document that case
7492 statement is meant to fall through.
7493
7494 * amd64-linux-tdep.c (amd64_linux_syscall_record): Delete
7495 dead if statement. Condition can't be false.
7496
7497 2011-02-25 Michael Snyder <msnyder@vmware.com>
7498
7499 * arm-tdep.c: Fix typos in comments.
7500 * bsd-uthread.c: Ditto.
7501 * completer.c: Ditto.
7502 * corelow.c: Ditto.
7503 * cp-namespace.c: Ditto.
7504 * cp-support.c: Ditto.
7505 * cris-tdep.c: Ditto.
7506 * dbxread.c: Ditto.
7507 * dwarf2read.c: Ditto.
7508 * frame.h: Ditto.
7509 * gdbtypes.h: Ditto.
7510 * inferior.h: Ditto.
7511 * mdebugread.c: Ditto.
7512 * mips-tdep.c: Ditto.
7513 * ppc-linux-nat.c: Ditto.
7514 * ppc-linux-tdep.c: Ditto.
7515 * printcmd.c: Ditto.
7516 * sol-thread.c: Ditto.
7517 * solib-frv.c: Ditto.
7518 * solist.h: Ditto.
7519 * sparc64-tdep.c: Ditto.
7520 * spu-tdep.c: Ditto.
7521 * stabsread.c: Ditto.
7522 * symfile.c: Ditto.
7523 * valops.c: Ditto.
7524 * varobj.c: Ditto.
7525 * vax-nat.c: Ditto.
7526 * python/py-block.c: Ditto.
7527 * python/py-symbol.c: Ditto.
7528 * python/py-symtab.c: Ditto.
7529 * python/py-value.c: Ditto.
7530 * tui/tui-win.c: Ditto.
7531
7532 2011-02-25 Michael Snyder <msnyder@vmware.com>
7533
7534 * inferior.c (print_inferior): Accept a string instead of an int
7535 for requested_inferiors, and use get_number_or_range to parse it.
7536 (info_inferiors_command): Pass args string to print_inferior.
7537 (initialize_inferiors): Change help string for info inferiors.
7538 * inferior.h (print_inferior): Export prototype change.
7539
7540 2011-02-25 Tom Tromey <tromey@redhat.com>
7541
7542 * common/ax.def (invalid2): Set to 0x31.
7543
7544 2011-02-25 Jan Kratochvil <jan.kratochvil@redhat.com>
7545
7546 * dwarf2loc.c (disassemble_dwarf_expression) <DW_OP_breg[0-9]+>: Use
7547 L and plongest.
7548 (disassemble_dwarf_expression) <DW_OP_bregx>: Drop variable offset,
7549 use L and plongest.
7550 (disassemble_dwarf_expression) <DW_OP_fbreg>: Use L and plongest.
7551
7552 2011-02-24 Michael Snyder <msnyder@vmware.com>
7553
7554 * Makefile.in (clean): Make clean should remove generated files
7555 observer.h and observer.inc.
7556
7557 2011-02-24 Joel Brobecker <brobecker@adacore.com>
7558
7559 Revert the following patch (not approved yet):
7560 2011-02-21 Hui Zhu <teawater@gmail.com>
7561 * Makefile.in (HFILES_NO_SRCDIR): Add printcmd.h.
7562 * ax-gdb.c (gen_printf_expr_callback): New function.
7563 * ax-gdb.h (gen_printf_expr_callback): Forward declare.
7564 * ax-general.c (ax_memcpy): New function.
7565 (ax_print): Handle "printf".
7566 (ax_reqs): Ditto.
7567 * ax.h (ax_memcpy): Forward declare.
7568 * common/ax.def (invalid2): Removed.
7569 (printf): New entry.
7570 * printcmd.c (printcmd.h): New include.
7571 (string_printf): New function.
7572 (ui_printf): Removed.
7573 (printf_command): Remove static. Call string_printf.
7574 (eval_command): Call string_printf.
7575 * printcmd.h: New file.
7576 * tracepoint.c (validate_actionline,
7577 encode_actions_1): handle printf_command.
7578
7579 2011-02-23 Tom Tromey <tromey@redhat.com>
7580
7581 * ax-general.c (ax_pick): Add missing newline.
7582
7583 2011-02-23 Michael Snyder <msnyder@vmware.com>
7584
7585 * breakpoint.c (breakpoint_1): Change first argument from an int
7586 to a char pointer, so that the function now accepts a list of
7587 breakpoints rather than just one. Use new function
7588 'number_is_in_list' to implement.
7589 (breakpoints_info): Pass char * instead of int to breakpoint_1.
7590 (watchpoints_info): Ditto.
7591 (tracepoints_info): Ditto.
7592 (maintenance_info_breakpoints): Ditto.
7593 (_initialize_breakpoint): Update help strings to reflect the fact
7594 that these functions can now take more than one argument.
7595 * cli/cli-utils.c (number_is_in_list): New function.
7596 * cli/cli-utils.h (number_is_in_list): Export.
7597
7598 2011-02-23 Michael Snyder <msnyder@vmware.com>
7599
7600 * memattr.c (mem_enable_command): Use get_number_or_range.
7601 (mem_disable_command): Ditto.
7602 (mem_delete_command): Ditto.
7603 (_initialize_mem): Tweak usage message to reflect multiple
7604 arguments.
7605
7606 2011-02-22 Doug Evans <dje@google.com>
7607
7608 Add gdb.lookup_global_symbol python function.
7609 * NEWS: Add entry.
7610 * python/py-symbol.c (gdbpy_lookup_global_symbol): New function.
7611 * python/python-internal.h (gdbpy_lookup_global_symbol): Declare it.
7612 * python/python.c (GdbMethods): Add entry for lookup_global_symbol.
7613
7614 2011-02-22 Tom Tromey <tromey@redhat.com>
7615
7616 * language.c (language_class_name_from_physname): Rename
7617 'curr_language' argument to 'lang'; use in body.
7618
7619 2011-02-22 Michael Snyder <msnyder@vmware.com>
7620
7621 * cli/cli-utils.c (number_is_in_list): Check for zero return.
7622
7623 2011-02-22 Pedro Alves <pedro@codesourcery.com>
7624
7625 * frame-unwind.h: Fix comment to mention the this frame, not the
7626 next.
7627
7628 2011-02-22 Tom Tromey <tromey@redhat.com>
7629
7630 * symfile.c (auto_solib_limit): Remove.
7631 * symfile.h (auto_solib_limit): Remove.
7632
7633 2011-02-22 Joel Brobecker <brobecker@adacore.com>
7634
7635 * Makefile.in (INSTALLED_LIBS): Delete. Update comment.
7636
7637 2011-02-21 Michael Snyder <msnyder@vmware.com>
7638
7639 * gdbthread.h (print_thread_info): Change prototype.
7640 * thread.c (print_thread_info): Accept char* instead of int for
7641 requested_threads argument. Use new function number_is_in_list
7642 to determine which threads to list.
7643 (info_threads_command): Pass char* to print_thread_info.
7644 * cli/cli-utils.c (number_is_in_list): New function.
7645 * cli/cli-utils.h (number_is_in_list): Export.
7646 * mi/mi-main.c (mi_cmd_thread_info): Pass char* to
7647 print_thread_info.
7648 (print_one_inferior): Ditto.
7649 (mi_cmd_list_thread_groups): Ditto.
7650
7651 2011-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
7652
7653 * common/Makefile.in (CFLAGS): New.
7654 (COMPILE): Add $(CFLAGS).
7655
7656 2011-02-21 Tom Tromey <tromey@redhat.com>
7657
7658 * breakpoint.c (catch_syscall_command_1): Fix typo.
7659
7660 2011-02-21 Tom Tromey <tromey@redhat.com>
7661
7662 * reverse.c: Include cli-utils.h.
7663 * printcmd.c: Include cli-utils.h.
7664 (string_printf): Use skip_spaces.
7665 * cli/cli-utils.h: New file.
7666 * cli/cli-utils.c: New file.
7667 * cli/cli-dump.h (skip_spaces): Move to cli-utils.h.
7668 * cli/cli-dump.c (skip_spaces): Move to cli-utils.c.
7669 * breakpoint.h (get_number, get_number_or_range): Move to
7670 cli-utils.h.
7671 * breakpoint.c: Include cli-utils.h.
7672 (get_number_trailer, get_number, get_number_or_range)
7673 (ep_skip_leading_whitespace): Move to cli-utils.c.
7674 (create_breakpoint_sal, find_condition_and_thread)
7675 (decode_static_tracepoint_spec, watch_command_1)
7676 (watch_maybe_just_location, ep_parse_optional_if_clause)
7677 (catch_fork_command_1, catch_exec_command_1)
7678 (catch_syscall_command_1): Use skip_spaces, skip_to_space.
7679 * Makefile.in (SUBDIR_CLI_OBS): Add cli-utils.o.
7680 (SUBDIR_CLI_SRCS): Add cli-utils.c.
7681 (HFILES_NO_SRCDIR): Add cli-utils.h.
7682 (cli-utils.o): New target.
7683
7684 2011-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
7685
7686 * remote.c (remote_close): Reset INFERIOR_PTID to NULL_PTID
7687 before calling discard_all_inferiors.
7688
7689 2011-02-21 Ulrich Weigand <uweigand@de.ibm.com>
7690
7691 * opencl-lang.c (STRUCT_OCL_TYPE): Remove.
7692 (struct builtin_opencl_type): Remove.
7693 (builtin_opencl_type): Change return type to "struct type **".
7694 (lookup_opencl_vector_type): Update caller.
7695 (opencl_language_arch_info): Copy primitive type vector from gdbarch.
7696 (build_opencl_types): Install plain array of "struct type *"
7697 instead of "struct builtin_opencl_type".
7698
7699 2011-02-21 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
7700 Ulrich Weigand <uweigand@de.ibm.com>
7701
7702 * arm-linux-nat.c: Include "observer.h" and "gdbthread.h".
7703 (PTRACE_GETHBPREGS, PTRACE_SETHBPREGS): Define.
7704 (struct arm_linux_hwbp_cap): New type.
7705 (arm_linux_get_hwbp_cap): New function.
7706 (arm_linux_get_hw_breakpoint_count): Likewise.
7707 (arm_linux_get_hw_watchpoint_count): Likewise.
7708 (arm_linux_can_use_hw_breakpoint): Likewise.
7709 (arm_hwbp_type): New type.
7710 (arm_hwbp_control_t): Likewise.
7711 (struct arm_linux_hw_breakpoint): Likewise.
7712 (struct arm_linux_thread_points): Likewise.
7713 (arm_threads): New global variable.
7714 (arm_linux_find_breakpoints_by_tid): New function.
7715 (arm_hwbp_control_initialize): Likewise.
7716 (arm_hwbp_control_is_enabled): Likewise.
7717 (arm_hwbp_control_disable): Likewise.
7718 (arm_linux_hw_breakpoint_initialize): Likewise.
7719 (arm_linux_get_hwbp_type): Likewise.
7720 (arm_linux_hw_watchpoint_initialize): Likewise.
7721 (arm_linux_hw_breakpoint_equal): Likewise.
7722 (arm_linux_insert_hw_breakpoint1): Likewise.
7723 (arm_linux_remove_hw_breakpoint1): Likewise.
7724 (arm_linux_insert_hw_breakpoint): Likewise.
7725 (arm_linux_remove_hw_breakpoint): Likewise.
7726 (arm_linux_region_ok_for_hw_watchpoint): Likewise.
7727 (arm_linux_insert_watchpoint): Likewise.
7728 (arm_linux_remove_watchpoint): Likewise.
7729 (arm_linux_stopped_data_address): Likewise.
7730 (arm_linux_stopped_by_watchpoint): Likewise.
7731 (arm_linux_watchpoint_addr_within_range): Likewise.
7732 (arm_linux_new_thread): Likewise.
7733 (arm_linux_thread_exit): Likewise.
7734 (_initialize_arm_linux_nat): Install hardware breakpoint/watchpoint
7735 related target callbacks. Register arm_linux_new_thread and
7736 arm_linux_thread_exit.
7737 * arm-tdep.h (arm_pc_is_thumb): Add prototype.
7738 * arm-tdep.c (arm_pc_is_thumb): Make global.
7739 (arm_gdbarch_init): Call set_gdbarch_have_nonsteppable_watchpoint.
7740
7741 2011-02-21 Ulrich Weigand <uweigand@de.ibm.com>
7742
7743 * breakpoint.c (update_watchpoint): Do not attempt to recreate
7744 per-frame locations while within a function epilogue.
7745
7746 2011-02-21 Pierre Muller <muller@ics.u-strasbg.fr>
7747
7748 * ser-mingw.c (ser_windows_close): Reformat comment to better conform
7749 to GNU coding standards.
7750
7751 2011-02-21 Pierre Muller <muller@ics.u-strasbg.fr>
7752
7753 Allow use of mingw native on Windows 95 OS.
7754 * ser-mingw.c (CancelIo): New macro for dynamically loaded DLL entry.
7755 (ser_windows_close): Only call CancelIo if function exists.
7756 (_initialize_ser_windows): Use LoadLirary/GetProcAddress
7757 to check for existence of CancelIo function in kernel32 DLL.
7758
7759 2011-02-21 Hui Zhu <teawater@gmail.com>
7760
7761 * Makefile.in (HFILES_NO_SRCDIR): Add printcmd.h.
7762 * ax-gdb.c (gen_printf_expr_callback): New function.
7763 * ax-gdb.h (gen_printf_expr_callback): Forward declare.
7764 * ax-general.c (ax_memcpy): New function.
7765 (ax_print): Handle "printf".
7766 (ax_reqs): Ditto.
7767 * ax.h (ax_memcpy): Forward declare.
7768 * common/ax.def (invalid2): Removed.
7769 (printf): New entry.
7770 * printcmd.c (printcmd.h): New include.
7771 (string_printf): New function.
7772 (ui_printf): Removed.
7773 (printf_command): Remove static. Call string_printf.
7774 (eval_command): Call string_printf.
7775 * printcmd.h: New file.
7776 * tracepoint.c (validate_actionline,
7777 encode_actions_1): handle printf_command.
7778
7779 2011-02-19 Michael Snyder <msnyder@vmware.com>
7780
7781 * reverse.c (delete_one_bookmark): Argument is now bookmark
7782 id rather than pointer to bookmark struct.
7783 (delete_bookmark_command): Use get_number_or_range.
7784 (goto_bookmark_command): Parse with get_number instead of strtoul.
7785 (bookmark_1): New function. Print info for one bookmark.
7786 (bookmarks_info): Use get_number_or_range and bookmark_1.
7787
7788 2011-02-18 Michael Snyder <msnyder@vmware.com>
7789
7790 * thread.c (info_threads_command): Re-implement using
7791 get_number_or_range.
7792 (thread_apply_command): Ditto.
7793
7794 2011-02-18 Tom Tromey <tromey@redhat.com>
7795
7796 * common/ax.def: New file.
7797 * ax.h (enum agent_op): Use ax.def.
7798 * ax-general.c (aop_map): Use ax.def.
7799
7800 2011-02-18 Tom Tromey <tromey@redhat.com>
7801
7802 * ax-general.c (aop_map): Add pick and rot.
7803 * dwarf2loc.c (compile_dwarf_to_ax) <DW_OP_over>: Reimplement.
7804 <DW_OP_rot>: Implement.
7805 * ax.h (enum agent_op) <aop_pick, aop_rot>: New constants.
7806 (ax_pick): Declare.
7807 * ax-general.c (ax_pick): New function.
7808
7809 2011-02-18 Tom Tromey <tromey@redhat.com>
7810
7811 * Makefile.in (HFILES_NO_SRCDIR): Don't mention ada-operator.inc.
7812
7813 2011-02-18 Jan Kratochvil <jan.kratochvil@redhat.com>
7814 Tom Tromey <tromey@redhat.com>
7815
7816 * cp-support.c (make_symbol_overload_list_namespace): Do not call
7817 make_symbol_overload_list_block with NULL BLOCK.
7818 * valarith.c (unop_user_defined_p): Resolve also TYPE_CODE_TYPEDEF.
7819
7820 2011-02-18 Pedro Alves <pedro@codesourcery.com>
7821
7822 * breakpoint.c (get_number_trailer): No longer accept a NULL PP.
7823 * breakpoint.h (get_number_or_range): Declare.
7824 * printcmd.c (ALL_DISPLAYS): Declare.
7825 (delete_display): Reimplement taking a display pointer.
7826 (undisplay_command): Accept a range of displays to delete, using
7827 get_number_or_range.
7828
7829 2011-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
7830
7831 * c-valprint.c (c_val_print): Add embedded_offset to address
7832 for arrays of unspecified length.
7833 * p-valprint.c (pascal_val_print): Likewise.
7834
7835 2011-02-18 Yao Qi <yao@codesourcery.com>
7836
7837 * gdb/arm-tdep.c (arm_displaced_step_copy_insn): Move code to ...
7838 (arm_process_displaced_insn): .. here. Remove parameter INSN.
7839 (thumb_process_displaced_insn): New.
7840 * gdb/arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Update
7841 call to arm_process_displaced_insn.
7842 * gdb/arm-tdep.h : Update declaration of arm_process_displaced_insn.
7843
7844 2011-02-17 Tom Tromey <tromey@redhat.com>
7845
7846 * dwarf2loc.h (dwarf2_compile_expr_to_ax): Declare.
7847 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Rename from
7848 compile_dwarf_to_ax. No longer static. Call
7849 dwarf2_compile_cfa_to_ax.
7850 (locexpr_tracepoint_var_ref): Update.
7851 (loclist_tracepoint_var_ref): Update.
7852 * dwarf2-frame.h (dwarf2_compile_cfa_to_ax): Declare.
7853 * dwarf2-frame.c (execute_cfa_program): Remove 'this_frame'
7854 argument; add 'gdbarch' and 'pc'.
7855 (dwarf2_compile_cfa_to_ax): New function.
7856 (dwarf2_frame_cache): Update.
7857
7858 2011-02-17 Joel Brobecker <brobecker@adacore.com>
7859
7860 * ada-lang.c (ada_type_of_array): Fix the size of the array
7861 in the case of an unconstrained packed array.
7862
7863 2011-02-17 Yao Qi <yao@codesourcery.com>
7864
7865 * common/Makefile.in: Add more targets for make.
7866
7867 2011-02-16 Tom Tromey <tromey@redhat.com>
7868
7869 * dwarf2loc.c (unimplemented): Fix typo.
7870
7871 2011-02-16 Tom Tromey <tromey@redhat.com>
7872
7873 * dwarf2loc.c (unimplemented): Handle unnamed opcodes.
7874 (compile_dwarf_to_ax) <default>: Use unimplemented.
7875 <DW_OP_deref>: Update.
7876 (disassemble_dwarf_expression): Update.
7877 * dwarf2read.c (dwarf_stack_op_name): Remove 'def' argument.
7878 (decode_locdesc): Update.
7879 * dwarf2expr.h (dwarf_stack_op_name): Update.
7880
7881 2011-02-16 Tom Tromey <tromey@redhat.com>
7882
7883 * ax.h (struct aop_map) <name>: Now const.
7884
7885 2011-02-16 Tom Tromey <tromey@redhat.com>
7886
7887 * ax-gdb.c.c (gen_expr) <UNOP_MEMVAL>: Handle value kinds other
7888 than axs_rvalue.
7889
7890 2011-02-16 Yao Qi <yao@codesourcery.com>
7891
7892 * infrun.c (get_displaced_step_closure_by_addr): New.
7893 * inferior.h: Declare it.
7894 * arm-tdep.c: (arm_pc_is_thumb): Call
7895 get_displaced_step_closure_by_addr. Adjust MEMADDR if it
7896 returns non-NULL.
7897
7898 2011-02-16 Pedro Alves <pedro@codesourcery.com>
7899 Jan Kratochvil <jan.kratochvil@redhat.com>
7900
7901 gdb/
7902 * tracepoint.c (memrange_sortmerge): Fix list A's end calculation.
7903
7904 2011-02-16 Pedro Alves <pedro@codesourcery.com>
7905 Jan Kratochvil <jan.kratochvil@redhat.com>
7906
7907 * value.c (value_contents_copy_raw): Extend describing comment.
7908 Assert that the destination contents we're overwriting are wholly
7909 available.
7910 (value_contents_copy): Extend describing comment.
7911
7912 2011-02-16 Pedro Alves <pedro@codesourcery.com>
7913 Jan Kratochvil <jan.kratochvil@redhat.com>
7914
7915 * value.c (value_available_contents_eq): Remove redundant local
7916 variables. Fix available contents comparision.
7917 * value.h (value_available_contents_eq): Extend describing
7918 comment.
7919
7920 2011-02-16 Yao Qi <yao@codesourcery.com>
7921
7922 * thread.c (info_threads_command): Add missing i18n markup and remove
7923 trailing newline.
7924
7925 2011-02-15 Paul Pluzhnikov <ppluzhnikov@google.com>
7926
7927 * breakpoint.c (longjmp_names): New variable.
7928 (struct breakpoint_objfile_data): New type.
7929 (breakpoint_objfile_key): New variable.
7930 (msym_not_found): New variable.
7931 (msym_not_found_p): New predicate.
7932 (get_breakpoint_objfile_data): New function.
7933 (create_overlay_event_breakpoint): Check per-objfile cache for
7934 symbols first.
7935 (create_longjmp_master_breakpoint): Likewise.
7936 (create_std_terminate_master_breakpoint): Likewise.
7937 (create_exception_master_breakpoint): Likewise.
7938 (_initialize_breakpoint): Register per-objfile data key.
7939
7940 2011-02-15 Paul Pluzhnikov <ppluzhnikov@google.com>
7941
7942 * breakpoint.c ((create_overlay_event_breakpoint): Const-propagate
7943 parameter value.
7944 (create_longjmp_master_breakpoint): Loop over longjmp names.
7945 (create_std_terminate_master_breakpoint): Const-propagate parameter
7946 value.
7947 (update_breakpoints_after_exec): Adjust.
7948 (breakpoint_re_set): Adjust.
7949
7950 2011-02-15 Michael Snyder <msnyder@vmware.com>
7951
7952 * thread.c (info_threads_command): Process arg as thread id,
7953 or list of thread ids.
7954 (thread_find_command): New command.
7955 (_initialize_thread): Document argument for info threads.
7956 Document 'thread find' command.
7957 * NEWS: Document new command "thread find".
7958
7959 2011-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
7960
7961 * Makefile.in (ACLOCAL_AMFLAGS): Add `-I ../config'.
7962 * aclocal.m4: Regenerated with aclocal-1.11.1.
7963 * common/configure: Regenerate with autoconf-2.64.
7964
7965 2011-02-15 Ken Werner <ken.werner@de.ibm.com>
7966
7967 * opencl-lang.c (build_opencl_types): Set the size of the built-in
7968 bool data type to a size of one byte.
7969
7970 2011-02-15 Pedro Alves <pedro@codesourcery.com>
7971 Jan Kratochvil <jan.kratochvil@redhat.com>
7972
7973 * target.c (memory_xfer_live_readonly_partial): Document where to
7974 look for interface description.
7975
7976 2011-02-15 Yao Qi <yao@codesourcery.com>
7977
7978 PR tdep/12352
7979 * arm-tdep.c (copy_ldr_str_ldrb_strb): Replace PC with SP in
7980 order to store PC value on stack instead of text section.
7981
7982 2011-02-15 Thiago Jung Bauermann <bauerman@br.ibm.com>
7983
7984 * rs6000-tdep.c (IS_EFP_PSEUDOREG): Use correct constant for
7985 the EFP register set size.
7986 (efpr_pseudo_register_read): Use regcache_raw_read_part to read
7987 data from the VMX register.
7988 (efpr_pseudo_register_write): Use regcache_raw_write_part to read
7989 and write data from/to the VMX register.
7990
7991 2011-02-14 Michael Snyder <msnyder@vmware.com>
7992
7993 * command.h (enum command_class): New class 'no_set_class', for
7994 "show" commands without a corresponding "set" command.
7995 * value.c (_initialize_values): Use 'no_set_class' for "show values".
7996 * copying.c (_initialize_copying): Ditto for "show copying" and
7997 "show warranty".
7998 * cli/cli-cmds.c (init_cli_cmds): Ditto for "show commands" and
7999 "show version".
8000 * cli/cli-setshow.c (cmd_show_list): Skip "show" commands for
8001 which there is no corresponding "set" command (eg. "show copying").
8002
8003 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8004 Jan Kratochvil <jan.kratochvil@redhat.com>
8005
8006 * exec.c (section_table_available_memory): Change `len' parameter
8007 type to ULONGEST.
8008 * exec.h (section_table_available_memory): Ditto.
8009 * value.h (read_value_memory): Rename the `offset' parameter to
8010 `embedded_offset'.
8011
8012 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8013 Jan Kratochvil <jan.kratochvil@redhat.com>
8014
8015 * memrange.c (compare_mem_ranges): Mention sort order in
8016 describing comment.
8017 (normalize_mem_ranges): Add comment. Fix ra->length calculation.
8018 * tracepoint.c (traceframe_available_memory): Extend comment to
8019 mention what happens to RESULT when the target does not support
8020 the query.
8021
8022 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8023 Jan Kratochvil <jan.kratochvil@redhat.com>
8024
8025 * value.c (mark_value_bytes_unavailable): Fix indexing the `bef'
8026 range.
8027
8028 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8029
8030 * value.c (value_bits_valid, value_bits_synthetic_pointer):
8031 No longer handle NULL values.
8032
8033 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8034
8035 * exceptions.h (NOT_AVAILABLE_ERROR): New error.
8036 * value.c: Include "exceptions.h".
8037 (require_available): Throw NOT_AVAILABLE_ERROR instead of a
8038 generic error.
8039 * cp-abi.c: Include gdb_assert.h.
8040 (baseclass_offset): Add `embedded_offset' and `val' parameters.
8041 Assert the method is implemented. Wrap NOT_AVAILABLE_ERROR
8042 errors.
8043 * cp-abi.h (baseclass_offset): Add `embedded_offset' and `val'
8044 parameters. No longer returns -1 on error.
8045 (struct cp_abi_ops) <baseclass_offset>: Add `embedded_offset' and
8046 `val' parameters.
8047 * cp-valprint.c: Include exceptions.h.
8048 (cp_print_value): Handle NOT_AVAILABLE_ERROR errors when fetching
8049 the baseclass_offset. Handle unavailable base classes. Use
8050 val_print_invalid_address.
8051 * p-valprint.c: Include exceptions.h.
8052 (pascal_object_print_value): Handle NOT_AVAILABLE_ERROR errors
8053 when fetching the baseclass_offset. No longer expect
8054 baseclass_offset returning -1. Handle unavailable base classes.
8055 Use val_print_invalid_address.
8056 * valops.c (dynamic_cast_check_1): Rename `contents' parameter to
8057 `valaddr' parameter, and change its type to gdb_byte pointer. Add
8058 `embedded_offset' and `val' parameters. Adjust.
8059 (dynamic_cast_check_2): Rename `contents' parameter to `valaddr'
8060 parameter, and change its type to gdb_byte pointer. Add
8061 `embedded_offset' and `val' parameters. Adjust. No longer expect
8062 baseclass_offset returning -1.
8063 (value_dynamic_cast): Use value_contents_for_printing rather than
8064 value_contents. Adjust.
8065 (search_struct_field): No longer expect baseclass_offset returning
8066 -1.
8067 (search_struct_method): If reading memory from the target is
8068 necessary, wrap it in a new value to pass to baseclass_offset. No
8069 longer expect baseclass_offset returning -1.
8070 (find_method_list): No longer expect baseclass_offset returning
8071 -1. Use value_contents_for_printing rather than value_contents.
8072 * valprint.c (val_print_invalid_address): New function.
8073 * valprint.h (val_print_invalid_address): Declare.
8074 * gdbtypes.c (is_unique_ancestor_worker): New `embedded_offset'
8075 and `val' parameters. No longer expect baseclass_offset returning
8076 -1. Adjust.
8077 * gnu-v2-abi.c: Include "exceptions.h".
8078 (gnuv2_baseclass_offset): Add `embedded_offset' and `val'
8079 parameters. Handle unavailable memory. Recurse through
8080 gnuv2_baseclass_offset directly, rather than through
8081 baseclass_offset. No longer returns -1 on not found, instead
8082 throw an error.
8083 * gnu-v3-abi.c (gnuv3_baseclass_offset): Add `embedded_offset' and
8084 `val' parameters. Adjust.
8085
8086 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8087
8088 * tracepoint.c (memrange_sortmerge): Don't merge ranges that are
8089 almost but not quite adjacent.
8090
8091 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8092
8093 * value.h (value_entirely_available): Declare.
8094 * value.c (value_entirely_available): New function.
8095 * c-valprint.c (c_value_print): Don't try fetching the pointer's
8096 real type if the pointer is unavailable.
8097
8098 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8099
8100 * valops.c (value_repeat): Use read_value_memory instead of
8101 read_memory.
8102
8103 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8104
8105 * value.h (value_contents_copy, value_contents_copy_raw): Declare.
8106 * value.c (value_contents_copy_raw, value_contents_copy): New
8107 functions.
8108 (value_primitive_field): Use value_contents_copy_raw instead of
8109 memcpy.
8110 * valops.c (value_fetch_lazy): Use value_contents_copy instead of
8111 memcpy.
8112 (value_array, value_slice): Ditto.
8113 * valarith.c (value_subscripted_rvalue): Use
8114 value_contents_copy_raw instead of memcpy.
8115
8116 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8117
8118 <unavailable> references.
8119
8120 * valops.c (get_value_at): Use value_from_contents_and_address,
8121 avoiding read_memory.
8122
8123 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8124
8125 * c-valprint.c (c_val_print): Print a string with unavailable
8126 contents as an array.
8127
8128 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8129
8130 * value.h (unpack_bits_as_long): Delete declaration.
8131 (unpack_value_bits_as_long): Declare.
8132 (unpack_value_field_as_long): Declare.
8133 (value_field_bitfield): Declare.
8134 * value.c (unpack_bits_as_long): Rename to...
8135 (unpack_value_bits_as_long_1): ... this. Add embedded_offset and
8136 value parameters. Return the extracted result in a new output
8137 parameter. If the value contents are unavailable, return false,
8138 otherwise return true.
8139 (unpack_value_bits_as_long): New.
8140 (unpack_field_as_long): Rename to...
8141 (unpack_value_field_as_long_1): ... this. Add embedded_offset and
8142 Add embedded_offset and value parameters. Return the extracted
8143 result in a new output parameter. If the value contents are
8144 unavailable, return false, otherwise return true.
8145 (unpack_value_field_as_long): New.
8146 (unpack_field_as_long_1): New.
8147 (unpack_field_as_long): Reimplement as wrapper around
8148 unpack_value_field_as_long_1.
8149 (value_field_bitfield): New function.
8150 * valops.c (value_fetch_lazy): When fetching a bitfield, use
8151 unpack_value_bits_as_long. Mark the value as unavailable, if it
8152 is unavailable.
8153 * jv-valprint.c (java_print_value_fields): Use
8154 value_field_bitfield.
8155 * p-valprint.c (pascal_object_print_value_fields): Use
8156 value_field_bitfield.
8157 * cp-valprint.c (cp_print_value_fields): Use value_field_bitfield.
8158
8159 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8160
8161 * value.c (get_internalvar_integer): Also return the int value of
8162 TYPE_CODE_INT INTERNALVAR_VALUE values.
8163 (set_internalvar): Don't special case TYPE_CODE_INT.
8164
8165 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8166
8167 * value.c (struct internalvar) <enum internalvar_kind>: Remove
8168 INTERNALVAR_POINTER.
8169 <pointer>: Delete.
8170 (value_of_internalvar): Remove INTERNALVAR_POINTER handling.
8171 (set_internalvar): Remove special TYPE_CODE_PTR handling.
8172 (preserve_one_internalvar): Remove INTERNALVAR_POINTER handling.
8173
8174 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8175
8176 * value.h (value_available_contents_eq): Declare.
8177 * value.c (find_first_range_overlap): New function.
8178 (value_available_contents_eq): New function.
8179 * valprint.c (val_print_array_elements): Use
8180 value_available_contents_eq.
8181 * ada-valprint.c (val_print_packed_array_elements): Use
8182 value_available_contents_eq.
8183 * jv-valprint.c (java_value_print): Use
8184 value_available_contents_eq.
8185
8186 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8187
8188 * target.c (target_read_live_memory): New function.
8189 (memory_xfer_live_readonly_partial): New.
8190 (memory_xfer_partial): If reading from a traceframe, fallback to
8191 reading unavailable read-only memory from read-only regions of
8192 live target memory.
8193 * tracepoint.c (disconnect_tracing): Adjust.
8194 (set_current_traceframe): New, factored out from
8195 set_traceframe_number.
8196 (set_traceframe_number): Reimplement to only change the traceframe
8197 number on the GDB side.
8198 (do_restore_current_traceframe_cleanup): Adjust.
8199 (make_cleanup_restore_traceframe_number): New.
8200 (cur_traceframe_number): New global.
8201 (tfile_open): Set cur_traceframe_number to no traceframe.
8202 (set_tfile_traceframe): New function.
8203 (tfile_trace_find): If looking up a traceframe using any method
8204 other than by number, make sure the current tfile traceframe
8205 matches gdb's current traceframe. Update the current tfile
8206 traceframe if the lookup succeeded.
8207 (tfile_fetch_registers, tfile_xfer_partial)
8208 (tfile_get_trace_state_variable_value): Make sure the remote
8209 traceframe matches gdb's current traceframe.
8210 * remote.c (remote_traceframe_number): New global.
8211 (remote_open_1): Set it to -1.
8212 (set_remote_traceframe): New function.
8213 (remote_fetch_registers, remote_store_registers)
8214 (remote_xfer_memory, remote_xfer_partial)
8215 (remote_get_trace_state_variable_value): Make sure the remote
8216 traceframe matches gdb's current traceframe.
8217 (remote_trace_find): If looking up a traceframe using any method
8218 other than by number, make sure the current remote traceframe
8219 matches gdb's current traceframe. Update the current remote
8220 traceframe if the lookup succeeded.
8221 * infrun.c (fetch_inferior_event): Adjust.
8222 * tracepoint.h (set_current_traceframe): Declare.
8223 (get_traceframe_number, set_traceframe_number): Add describing
8224 comments.
8225
8226 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8227
8228 Mark pieces of values as unavailable if the corresponding memory
8229 is unavailable.
8230
8231 * valops.c: Include tracepoint.h.
8232 (value_fetch_lazy): Use read_value_memory.
8233 (read_value_memory): New.
8234 * value.h (read_value_memory): Declare.
8235 * dwarf2loc.c (read_pieced_value): Use read_value_memory.
8236 * exec.c (section_table_available_memory): New function.
8237 * exec.h (section_table_available_memory): Declare.
8238
8239 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8240
8241 * Makefile.in (SFILES): Add memrange.c.
8242 (HFILES_NO_SRCDIR): Add memrange.h.
8243 (COMMON_OBS): Add memrange.o.
8244 * memrange.c: New file.
8245 * memrange.h: New file.
8246 * tracepoint.c: Include memrange.h.
8247 (struct mem_range): Delete.
8248 (mem_range_s): Delete.
8249 (traceframe_available_memory): New function.
8250 * tracepoint.h (traceframe_available_memory): Declare.
8251
8252 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8253
8254 * target.h (struct traceframe_info): Forward declare.
8255 (enum target_object): Add TARGET_OBJECT_TRACEFRAME_INFO.
8256 (struct target_ops) <to_traceframe_info>: New field.
8257 (target_traceframe_info): New.
8258 * target.c (update_current_target): Inherit and default
8259 to_traceframe_info.
8260 * remote.c (PACKET_qXfer_traceframe_info): New.
8261 (remote_protocol_features): Register qXfer:traceframe-info:read.
8262 (remote_xfer_partial): Handle TARGET_OBJECT_TRACEFRAME_INFO.
8263 (remote_traceframe_info): New.
8264 (init_remote_ops): Install it.
8265 (_initialize_remote): Install "set/show remote traceframe-info"
8266 commands.
8267 * tracepoint.h (parse_traceframe_info): Declare.
8268 * tracepoint.c (struct mem_range): New.
8269 (mem_range_s): New typedef.
8270 (struct traceframe_info): New.
8271 (traceframe_info): New global.
8272 (free_traceframe_info): New function.
8273 (clear_traceframe_info): New function.
8274 (start_tracing, tfind_1, set_traceframe_number): Clear traceframe
8275 info.
8276 (build_traceframe_info): New function.
8277 (tfile_traceframe_info): New function.
8278 (init_tfile_ops): Install tfile_traceframe_info.
8279 (traceframe_info_start_memory, free_result): New functions.
8280 (memory_attributes, traceframe_info_elements): New globals.
8281 (parse_traceframe_info, get_traceframe_info): New functions.
8282 * features/traceframe-info.dtd: New file.
8283 * Makefile.in (XMLFILES): Add traceframe-info.dtd.
8284
8285 2011-02-14 Pedro Alves <pedro@codesourcery.com>
8286
8287 Base support for <unavailable> value contents.
8288
8289 * value.h (value_bytes_available): Declare.
8290 (mark_value_bytes_unavailable): Declare.
8291 * value.c (struct range): New struct.
8292 (range_s): New typedef.
8293 (ranges_overlap): New function.
8294 (range_lessthan): New function.
8295 (ranges_contain_p): New function.
8296 (struct value) <unavailable>: New field.
8297 (value_bytes_available): New function.
8298 (mark_value_bytes_unavailable): New function.
8299 (require_not_optimized_out): Constify parameter.
8300 (require_available): New function.
8301 (value_contents_all, value_contents): Require all bytes be
8302 available.
8303 (value_free): Free `unavailable'.
8304 (value_copy): Copy `unavailable'.
8305 * valprint.h (val_print_unavailable): Declare.
8306 * valprint.c (valprint_check_validity): Rename `offset' parameter
8307 to `embedded_offset'. If printing a scalar, check whether the
8308 value chunk is available.
8309 (val_print_unavailable): New.
8310 (val_print_scalar_formatted): Check whether the value is
8311 available.
8312 * python/py-prettyprint.c (apply_val_pretty_printer): Refuse
8313 pretty-printing unavailable values.
8314
8315 2011-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8316
8317 Fix const/volatile qualifiers of C++ types, PR c++/12328.
8318 * c-typeprint.c (c_type_print_args): Update the function comment. New
8319 variable param_type, initialize it. Remove const/volatile qualifiers
8320 for language_cplus and !show_artificial. Use param_type.
8321
8322 2011-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8323
8324 * symtab.c (find_pc_sect_line): New variable objfile, initialize it
8325 from S. Iterate S using ALL_OBJFILE_SYMTABS. Verify BV for each S.
8326 * symtab.h (struct symtab) <next>: Comment extension.
8327
8328 2011-02-12 Yao Qi <yao@codesourcery.com>
8329
8330 * Makefile.in (CLEANDIRS): Remove duplicated common dir.
8331
8332 2011-02-11 Yao Qi <yao@codesourcery.com>
8333
8334 * common/Makefile.in: Add copyright header.
8335
8336 2011-02-11 Pedro Alves <pedro@codesourcery.com>
8337
8338 * infrun.c (proceed): Move switching out and in of tfind mode from
8339 here ...
8340 (fetch_inferior_event): ... to here.
8341
8342 2011-02-11 Yao Qi <yao@codesourcery.com>
8343
8344 * Makefile.in: Remove signals.o from COMMON_OBS. Link
8345 libcommon.a.
8346 * configure.ac: Add common to sub dir.
8347 * configure: Regenerate.
8348
8349 2011-02-11 Yao Qi <yao@codesourcery.com>
8350
8351 Build libcommon.a.
8352
8353 * common/Makefile.in: New.
8354 * common/configure.ac: New.
8355 * common/aclocal.m4: New.
8356 * common/configure: Generate.
8357
8358 2011-02-10 Pedro Alves <pedro@codesourcery.com>
8359
8360 * vec.h (VEC_block_remove): Place VEC_ASSERT_INFO on the right
8361 side of the parenthesis.
8362
8363 Merge from GCC:
8364 2010-07-13 Jakub Jelinek <jakub@redhat.com>
8365 * vec.h (VEC_block_remove): Fix comment.
8366
8367 2011-02-08 Michael Snyder <msnyder@vmware.com>
8368
8369 * linux-nat.c (linux_nat_filter_event): Fix typo in comment.
8370
8371 2011-02-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8372
8373 * i386-tdep.c (i386_process_record): Rename l suffixes to d suffixes
8374 in comments for pcmpgtd, pcmpeqd, psubd, paddd, pcmpgtd, pcmpeqd,
8375 psubd and paddd.
8376
8377 2011-02-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8378
8379 PR 12361.
8380 * i386-tdep.c (i386_process_record) <0x660f3807>: Fix the comment to
8381 phsubsw.
8382 (i386_process_record) <lddqu>: Fix the opcode to 0xf20ff0.
8383 (i386_process_record) <0x0f3807>: Fix the comment to phsubsw.
8384
8385 2011-02-08 Ulrich Weigand <uweigand@de.ibm.com>
8386
8387 * dwarf2read.c (read_subroutine_type): Set special calling
8388 convention flag for functions compiled by IBM XL C for OpenCL.
8389 * ppc-sysv-tdep.c: Include "dwarf2.h"
8390 (ppc_sysv_abi_push_dummy_call): Implement IBM OpenCL vector types
8391 calling convention.
8392 (do_ppc_sysv_return_value): Add FUNC_TYPE argument. Implement
8393 IBM OpenCL vector types calling convention.
8394 (ppc_sysv_abi_return_value): Pass through FUNC_TYPE.
8395 (ppc_sysv_abi_broken_return_value): Likewise.
8396 (ppc64_sysv_abi_push_dummy_call): Implement IBM OpenCL vector
8397 types calling convention.
8398 (ppc64_sysv_abi_return_value): Likewise.
8399 * spu-tdep.c: Include "dwarf2.h"
8400 (spu_return_value): Implement IBM OpenCL vector types calling
8401 convention.
8402
8403 2011-02-08 Ulrich Weigand <uweigand@de.ibm.com>
8404
8405 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Implement
8406 correct ABI for AltiVec vector arguments.
8407
8408 2011-02-07 Pedro Alves <pedro@codesourcery.com>
8409
8410 * valprint.c (val_print): Extend comment.
8411 * ada-valprint.c (ada_valprint): Rewrite comment deferring
8412 interface explanation to val_print.
8413 (ada_val_print_array): Adjust comment to current interface.
8414 (print_field_values): Adjust comment to current interface.
8415 * c-valprint.c (c_val_print): Rewrite comment deferring interface
8416 explanation to val_print.
8417 * f-valprint.c (f_val_print): Ditto.
8418 * jv-valprint.c (java_val_print): Ditto.
8419 * m2-valprint.c (m2_val_print): Ditto.
8420 * p-valprint.c (pascal_val_print): Ditto.
8421
8422 2011-02-07 Thiago Jung Bauermann <bauerman@br.ibm.com>
8423
8424 * breakpoint.c (parse_breakpoint_sals): Fix description.
8425
8426 2011-02-04 Sami Wagiaalla <swagiaal@redhat.com>
8427 Oguz Kayral <oguzkayral@gmail.com>
8428
8429 * python/py-inferior.c (python_on_normal_stop): New function.
8430 (python_on_resume): New function.
8431 (python_inferior_exit): New function.
8432 (gdbpy_initialize_inferior): Add normal_stop, target_resumed, and
8433 inferior_exit observers.
8434 * python/py-evtregistry.c: New file.
8435 * python/py-threadevent.c : New file.
8436 * python/py-event.c: New file.
8437 * python/py-evts.c: New file.
8438 * python/py-continueevent.c: New file.
8439 * python/py-bpevent.c: New file.
8440 * python/py-signalevent.c: New file.
8441 * python/py-exetiedevent.c: New file.
8442 * python/py-breakpoint.c (gdbpy_breakpoint_from_bpstats): New function.
8443 Move struct breakpoint_object from here...
8444 * python/python-internal.h: ... to here.
8445 * python/py-event.h: New file.
8446 * python/py-events.h: New file.
8447 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpointstopevent.o,
8448 py-continueevent.o, py-event.o, py-eventregistry.o, py-events.o,
8449 py-exitedevent.o, py-signalstopevent.o, and py-stopevent.o.
8450 (SUBDIR_PYTHON_SRCS): Add py-breakpointstopevent.c,
8451 py-continueevent.c, py-event.c, py-eventregistry.c, py-events.c,
8452 py-exitedevent.c, py-signalstopevent.c, and py-stopevent.c.
8453 Add build rules for all the above.
8454
8455 2011-02-04 Tom Tromey <tromey@redhat.com>
8456
8457 * dwarf2read.c (dwarf2_section_empty_p): New function.
8458 (dwarf2_read_section): Use dwarf2_section_empty_p.
8459 (dwarf2_section_size): New function.
8460 (dwarf2_get_section_info): Unconditionally read section.
8461 (dwarf2_read_index): Use dwarf2_section_empty_p.
8462 (partial_read_comp_unit_head): Use dwarf2_section_size.
8463 (dwarf2_symbol_mark_computed): Likewise.
8464
8465 2011-02-04 David Daney <ddaney@caviumnetworks.com>
8466
8467 * NEWS: Add item for "catch syscall" on mips*-linux* targets.
8468
8469 2011-02-04 David Daney <ddaney@caviumnetworks.com>
8470
8471 * mips-linux-tdep.c: Include xml-syscall.h.
8472 (mips_linux_get_syscall_number): New function.
8473 (mips_linux_init_abi): Add calls to
8474 mips_linux_get_syscall_number() and set_xml_syscall_file_name().
8475 * data-directory/Makefile.in (SYSCALLS_FILES): Add
8476 mips-o32-linux.xml, mips-n32-linux.xml and mips-n64-linux.xml
8477 * syscalls/mips-n32-linux.xml: New file.
8478 * syscalls/mips-n64-linux.xml: New file.
8479 * syscalls/mips-o32-linux.xml: New file.
8480
8481 2011-02-04 Ulrich Weigand <ulrich.weigand@linaro.org>
8482
8483 * dwarf2read.c (dwarf2_ranges_read): Skip empty range entries.
8484 Complain about inverted range entries.
8485 (dwarf2_record_block_ranges): Likewise.
8486
8487 2011-02-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
8488
8489 Fix some typos.
8490 * breakpoint.c (update_watchpoint): Fix name of the
8491 update_global_location_list function.
8492 (print_one_breakpoint): Fix typo.
8493 (_initialize_breakpoint): Remove extra space in hbreak help
8494 string.
8495 * breakpoint.h (struct bp_location) <length>: Fix field
8496 description.
8497
8498 2011-02-04 Pedro Alves <pedro@codesourcery.com>
8499
8500 * regcache.c (registers_changed_ptid): Don't explictly always
8501 clear `current_regcache'. Only clear current_thread_ptid and
8502 current_thread_arch when PTID matches. Only reinit the frame
8503 cache if PTID matches the current inferior_ptid. Move alloca(0)
8504 call to ...
8505 (registers_changed): ... here.
8506
8507 2011-02-03 Ulrich Weigand <ulrich.weigand@linaro.org>
8508
8509 * arm-tdep.c (arm_skip_stack_protector): Accept any symbol that
8510 starts with __stack_chk_guard as stack guard symbol.
8511
8512 2011-02-03 Andrew Burgess <aburgess@broadcom.com>
8513
8514 * disasm.c (compare_lines): Handle the end of sequence markers
8515 within the line table to better support disassembling over
8516 compilation unit boundaries.
8517
8518 2011-02-02 Ulrich Weigand <ulrich.weigand@linaro.org>
8519
8520 * arm-tdep.c (skip_prologue_function): Add GDBARCH and IS_THUMB
8521 arguments. Skip in-prologue calls to glibc __aeabi_read_tp
8522 implementation even if no symbols are available.
8523 (thumb_analyze_prologue): Update call to skip_prologue_function.
8524 (arm_analyze_prologue): Likewise.
8525
8526 2011-02-02 Ulrich Weigand <ulrich.weigand@linaro.org>
8527
8528 * arm-tdep.c: Include "observer.h".
8529 (arm_prologue_this_id): Use frame PC if get_frame_func returns 0.
8530 (arm_exidx_data_key): New static variable.
8531 (struct arm_exidx_entry, arm_exidx_entry_s): New data types.
8532 (struct arm_exidx_data): Likewise.
8533 (arm_exidx_data_free): New function.
8534 (arm_compare_exidx_entries): Likewise.
8535 (arm_obj_section_from_vma): Likewise.
8536 (arm_exidx_new_objfile): Likewise.
8537 (arm_find_exidx_entry): Likewise.
8538 (arm_exidx_fill_cache): Likewise.
8539 (arm_exidx_unwind_sniffer): Likewise.
8540 (arm_exidx_unwind): New global variable.
8541 (arm_gdbarch_init): Append unwinder arm_exidx_unwind.
8542 (_initialize_arm_tdep): Attach arm_exidx_new_objfile to new_objfile
8543 observer. Register arm_exidx_data_key as objfile data.
8544
8545 2011-02-02 Ulrich Weigand <ulrich.weigand@linaro.org>
8546
8547 * arm-tdep.c (arm_analyze_load_stack_chk_guard): Avoid build break
8548 due to accessing uninitialized variable. Fix indentation.
8549
8550 2011-02-02 Pedro Alves <pedro@codesourcery.com>
8551
8552 * c-valprint.c (c_value_print): When doing virtual base pointer
8553 adjustment, create a new value with adjusted contents rather than
8554 changing the contents of the value being printed (and getting it
8555 wrong).
8556
8557 2011-02-02 Pedro Alves <pedro@codesourcery.com>
8558
8559 * xml-support.c (xml_find_attribute): New.
8560 (xinclude_start_include): Use it.
8561 * xml-support.h (xml_find_attribute): Declare.
8562 * memory-map.c (memory_map_start_memory)
8563 (memory_map_start_property): Use xml_find_attribute.
8564 * osdata.c (osdata_start_osdata, osdata_start_column): Use
8565 xml_find_attribute.
8566 * remote.c (start_thread): Use xml_find_attribute.
8567 * solib-target.c (library_list_start_segment)
8568 (library_list_start_section, library_list_start_library)
8569 (library_list_start_list): Use xml_find_attribute.
8570 * xml-tdesc.c (tdesc_start_target, tdesc_start_feature)
8571 (tdesc_start_union, tdesc_start_struct, tdesc_start_flags)
8572 (tdesc_start_field): Use xml_find_attribute.
8573
8574 2011-02-02 Ulrich Weigand <uweigand@de.ibm.com>
8575
8576 * opencl-lang.c (STRINGIFY): Rename to OCL_STRING.
8577 (BUILD_OCL_VTYPES): Update.
8578
8579 2011-02-02 Joel Brobecker <brobecker@adacore.com>
8580
8581 * configure.ac: Work around non-GNU sed limitation when computing
8582 python version number.
8583 * configure: Regenerate.
8584
8585 2011-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8586
8587 Fix debug printing of TYPE_INSTANCE.
8588 * expprint.c (print_subexp_standard) <TYPE_INSTANCE>: New.
8589 (dump_subexp_body_standard) <TYPE_INSTANCE>: New.
8590
8591 2011-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8592
8593 Fix debug printing of BINOP_IN, OP_OBJC_MSGCALL,
8594 OP_F77_UNDETERMINED_ARGLIST, OP_COMPLEX, OP_OBJC_SELECTOR, OP_NAME,
8595 OP_OBJC_NSSTRING, OP_F90_RANGE and OP_DECFLOAT.
8596 * ada-operator.inc: Rename the file to ...
8597 * ada-operator.def: ... here, wrap all the entries by macro OP.
8598 * expprint.c (op_name_standard): Remove all the entries. Include
8599 "std-operator.def" instead.
8600 * expression.h (enum exp_opcode): Include "std-operator.def" and
8601 "ada-operator.def". Move all the entries ...
8602 * std-operator.def: ... here, wrap all the entries by macro OP.
8603
8604 2011-01-31 Paul Pluzhnikov <ppluzhnikov@google.com>
8605
8606 * breakpoint.h (remove_jit_event_breakpoints): New prototype.
8607 * breakpoint.c (remove_jit_event_breakpoints): New function.
8608 * jit.c (jit_descriptor_addr): Delete.
8609 (registering_code): Delete.
8610 (clear_int): Delete.
8611 (jit_inferior_data): New variable.
8612 (struct jit_inferior_data): New type.
8613 (get_jit_inferior_data): New function.
8614 (jit_inferior_data_cleanup): New function.
8615 (jit_read_descriptor): Adjust.
8616 (jit_register_code): Adjust.
8617 (jit_breakpoint_re_set_internal): New function; move code here ...
8618 (jit_inferior_init): ... from here.
8619 (jit_breakpoint_re_set): Adjust.
8620 (jit_reset_inferior_data_and_breakpoints): New function.
8621 (jit_inferior_created_observer): Adjust.
8622 (jit_inferior_exit_hook): Adjust.
8623 (jit_executable_changed_observer): New function.
8624 (jit_event_handler): Adjust.
8625 (_initialize_jit): Adjust.
8626
8627 2011-01-31 Michael Snyder <msnyder@vmware.com>
8628
8629 * m32r-tdep.c (m32r_gdbarch_init): Replace accidentally deleted
8630 line.
8631
8632 2011-01-31 Tom Tromey <tromey@redhat.com>
8633
8634 PR python/12216:
8635 * python/python.c (execute_gdb_command): Call
8636 prevent_dont_repeat.
8637 * top.c (suppress_dont_repeat): New global.
8638 (dont_repeat): Use it.
8639 (prevent_dont_repeat): New function.
8640 * command.h (prevent_dont_repeat): Declare.
8641
8642 2011-01-31 Tom Tromey <tromey@redhat.com>
8643
8644 * infcmd.c (finish_backward): Use breakpoint_set_silent.
8645 * python/py-breakpoint.c (bppy_set_silent): Use
8646 breakpoint_set_silent.
8647 (bppy_set_thread): Use breakpoint_set_thread.
8648 (bppy_set_task): Use breakpoint_set_task.
8649 * breakpoint.h (breakpoint_set_silent, breakpoint_set_thread)
8650 (breakpoint_set_task): Declare.
8651 (make_breakpoint_silent): Remove.
8652 * breakpoint.c (breakpoint_set_silent): New function.
8653 (breakpoint_set_thread): Likewise.
8654 (breakpoint_set_task): Likewise.
8655 (make_breakpoint_silent): Remove.
8656
8657 2011-01-31 Tom Tromey <tromey@redhat.com>
8658
8659 * breakpoint.h (user_breakpoint_p): Declare.
8660 * breakpoint.c (user_breakpoint_p): New function.
8661 (breakpoint_1): Use it.
8662 (save_breakpoints): Likewise.
8663
8664 2011-01-31 Joel Brobecker <brobecker@adacore.com>
8665
8666 * configure.ac: Add handling of Python distribution on Windows.
8667 * python-config.py: If the LIBS, SYSLIBS, LIBPL and/or LINKFORSHARED
8668 sysconfig variables are not defined, then do not use them.
8669 On Windows, if LIBPL is not defined, then use prefix + '/libs'
8670 instead. On Windows, return all paths using forward-slashes
8671 rather than backslashes.
8672
8673 2011-01-31 Joel Brobecker <brobecker@adacore.com>
8674
8675 * configure.ac: Remove fallback behavior for building
8676 against Python. Remove tweaking of Python include path.
8677 Add PYTHON_CPPFLAGS and PYTHON_LIBS substitution.
8678 (AC_TRY_LIBPYTHON): Adjust program used in linking test.
8679 If link is successful, set PYTHON_CPPFLAGS and PYTHON_LIBS.
8680 Always restore CPPFLAGS and LIBS after linking test.
8681 * configure: Regenerated.
8682 * Makefile.in (INTERNAL_CPPFLAGS): Add @PYTHON_CPPFLAGS@.
8683 (INSTALLED_LIBS, CLIBS): Add @PYTHON_LIBS@.
8684 * python/python-internal.h: Adjust includes of Python .h files.
8685
8686 2011-01-31 Joel Brobecker <brobecker@adacore.com>
8687
8688 * tracepoint.c (traceframe_walk_blocks): Add missing i18n markup
8689 in error message.
8690
8691 2011-01-31 Joel Brobecker <brobecker@adacore.com>
8692
8693 * inflow.c (gdb_has_a_terminal): Fix typo in interactive_mode
8694 value test.
8695
8696 2011-01-31 Yao Qi <yao@codesourcery.com>
8697
8698 * arm-linux-nat.c: Update calls to regcache_register_status
8699 instead of regcache_valid_p.
8700 * aix-thread.c: Likewise.
8701 * i386gnu-nat.c: Likewise.
8702
8703 2011-01-29 Jan Kratochvil <jan.kratochvil@redhat.com>
8704
8705 Fix crash.
8706 * valops.c (compare_parameters): Verify TYPE_NFIELDS before
8707 touching TYPE_FIELD_ARTIFICIAL.
8708
8709 2011-01-28 Richard Earnshaw <rearnsha@arm.com>
8710
8711 * MAINTAINERS: Move myself from Responsible Maintainers to Authorized
8712 Committers.
8713
8714 2011-01-28 Pedro Alves <pedro@codesourcery.com>
8715
8716 * tracepoint.c (tfile_xfer_partial): If there's no traceframe
8717 selected, don't try iterating over the traceframe's blocks.
8718 (tfile_has_stack): If there's no traceframe selected, then there's
8719 no stack.
8720 (tfile_has_registers): If there's no traceframe selected, then
8721 there's no registers.
8722
8723 2011-01-28 Pedro Alves <pedro@codesourcery.com>
8724
8725 * target.c (memory_xfer_partial): No need to restore shadows if we
8726 haven't read anything.
8727
8728 2011-01-28 Pedro Alves <pedro@codesourcery.com>
8729
8730 * mips-tdep.c (mips_print_register): Use get_frame_register_value
8731 and val_print_scalar_formatted.
8732
8733 2011-01-27 Pedro Alves <pedro@codesourcery.com>
8734
8735 * tracepoint.c (tfile_read): New.
8736 (tfile_open): Use it.
8737 (tfile_get_traceframe_address): Use it.
8738 (tfile_trace_find): Use it.
8739 (walk_blocks_callback_func): New typedef.
8740 (match_blocktype): New function.
8741 (traceframe_walk_blocks): New function.
8742 (traceframe_find_block_type): New function.
8743 (tfile_fetch_registers, tfile_xfer_partial)
8744 (tfile_get_trace_state_variable_value): Use
8745 traceframe_find_block_type and tfile_read.
8746
8747 2011-01-26 Kevin Buettner <kevinb@redhat.com>
8748
8749 * remote-mips.c: Add internationalization mark ups. Remove
8750 trailing \n from already marked up strings.
8751
8752 2011-01-26 Tom Tromey <tromey@redhat.com>
8753
8754 * python/py-prettyprint.c (print_string_repr): Clear
8755 'addressprint' option when calling val_print_string.
8756 (print_children): Handle Val_pretty_default. Clear 'addressprint'
8757 option when calling val_print_string.
8758
8759 2011-01-26 Tom Tromey <tromey@redhat.com>
8760
8761 * python/python.c (gdbpy_solib_name): Use gdb_py_longest and
8762 GDB_PY_LL_ARG.
8763 * python/python-internal.h (GDB_PY_LL_ARG, GDB_PY_LLU_ARG): New
8764 macros.
8765 (gdb_py_longest, gdb_py_ulongest): New typedefs.
8766 (gdb_py_long_from_longest, gdb_py_long_from_ulongest)
8767 (gdb_py_long_as_ulongest): New defines.
8768 (gdb_py_object_from_longest, gdb_py_object_from_ulongest)
8769 (gdb_py_int_as_long): Declare.
8770 * python/py-value.c (valpy_lazy_string): Use gdb_py_longest,
8771 GDB_PY_LL_ARG, gdb_py_object_from_longest.
8772 (valpy_long): Add comment.
8773 * python/py-utils.c (get_addr_from_python): Use
8774 gdb_py_long_as_ulongest. Handle overflow properly.
8775 (gdb_py_object_from_longest): New function.
8776 (gdb_py_object_from_ulongest): Likewise.
8777 (gdb_py_int_as_long): Likewise.
8778 * python/py-type.c (typy_array): Use gdb_py_int_as_long.
8779 * python/py-symtab.c (salpy_get_pc): Use
8780 gdb_py_long_from_ulongest.
8781 (salpy_get_line): Use PyInt_FromLong.
8782 * python/py-param.c (set_parameter_value): Use
8783 gdb_py_int_as_long.
8784 * python/py-lazy-string.c (stpy_get_address): Use
8785 gdb_py_long_from_ulongest.
8786 * python/py-frame.c (frapy_pc): Use gdb_py_long_from_ulongest.
8787 * python/py-cmd.c (cmdpy_completer): Use gdb_py_int_as_long.
8788 * python/py-breakpoint.c (bppy_set_thread): Use
8789 gdb_py_int_as_long.
8790 (bppy_set_task): Likewise.
8791 (bppy_set_ignore_count): Likewise.
8792 (bppy_set_hit_count): Likewise.
8793 * python/py-block.c (blpy_get_start): Use
8794 gdb_py_object_from_ulongest.
8795 (blpy_get_end): Likewise.
8796 (gdbpy_block_for_pc): Use gdb_py_ulongest and GDB_PY_LLU_ARG.
8797
8798 2011-01-25 Mathieu Lacage <mathieu.lacage@inria.fr>
8799
8800 PR/symtab 11766:
8801 * gdb/objfiles.h (struct objfile) <addr_low>: New field.
8802 * gdb/solib.c (solib_read_symbols): Check for addr_low in
8803 equality test for objfile, initialize addr_low if needed.
8804
8805 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8806
8807 * tui/tui-regs.c (tui_register_format): Remove dead code.
8808
8809 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8810
8811 * printcmd.c (print_formatted): Use val_print_scalar_formatted
8812 instead of print_scalar_formatted.
8813 (print_scalar_formatted): Don't handle 's' format strings here,
8814 and add an assertion that we never see such format here.
8815 * valprint.h (val_print_scalar_formatted): Declare.
8816 * valprint.c (val_print_scalar_formatted): New.
8817 * c-valprint.c (c_val_print): Use val_print_scalar_formatted
8818 instead of print_scalar_formatted.
8819 * jv-valprint.c (java_val_print): Ditto.
8820 * p-valprint.c (pascal_val_print): Ditto.
8821 * ada-valprint.c (ada_val_print_1): Ditto.
8822 * f-valprint.c (f_val_print): Ditto.
8823 * infcmd.c (registers_info): Ditto.
8824 * m2-valprint.c (m2_val_print): Ditto.
8825
8826 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8827
8828 * m2-valprint.c (print_unbounded_array): Pass
8829 value_contents_for_printing rather than value_contents, to
8830 m2_print_array_contents. Also pass in the value.
8831
8832 2011-01-25 Jan Kratochvil <jan.kratochvil@redhat.com>
8833
8834 * dwarf2read.c (dwarf2_read_index, write_psymtabs_to_index)
8835 (save_gdb_index_command): Switch to .gdb_index version 4.
8836
8837 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8838
8839 * mi/mi-main.c (get_register): Use get_frame_register_value rather
8840 than frame_register, and always pass a valid value to val_print.
8841
8842 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8843
8844 Centralize printing "<optimized out>".
8845
8846 * valprint.h (val_print_optimized_out): Declare.
8847 * cp-valprint.c (cp_print_value_fields): Use
8848 val_print_optimized_out.
8849 * jv-valprint.c (java_print_value_fields): Ditto.
8850 * p-valprint.c (pascal_object_print_value_fields): Ditto.
8851 * printcmd.c (print_formatted): Ditto.
8852 * valprint.c (valprint_check_validity): Ditto.
8853 (value_check_printable): Ditto.
8854 (val_print_optimized_out): New.
8855
8856 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8857
8858 * infcmd.c (default_print_registers_info): Allocate values so to
8859 never pass a NULL value to val_print.
8860
8861 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8862
8863 * cp-valprint.c (cp_print_value): Treat the 'skip' local as
8864 boolean. Make sure to always pass a value that matches the
8865 contents buffer to callees. Preserve `address' for following
8866 iterations.
8867 * value.c (value_contents_for_printing_const): New.
8868 (value_address): Constify value argument.
8869 * value.h (value_contents_for_printing_const): Declare.
8870 (value_address): Constify value argument.
8871
8872 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8873
8874 * regcache.c (struct regcache_descr): Rename
8875 sizeof_raw_register_valid_p field to sizeof_raw_register_status,
8876 and sizeof_cooked_register_valid_p to
8877 sizeof_cooked_register_status.
8878 (init_regcache_descr): Adjust.
8879 (struct regcache): Rename register_valid_p field to
8880 register_status.
8881 (regcache_xmalloc_1, regcache_xfree, regcache_save)
8882 (do_cooked_read): Adjust.
8883 (regcache_valid_p): Rename to ...
8884 (regcache_register_status): ... this. Adjust.
8885 (regcache_invalidate): Adjust.
8886 (regcache_raw_read, regcache_cooked_read, regcache_raw_write):
8887 Adjust.
8888 (regcache_raw_supply): Adjust. If buf i NULL, mark the register
8889 as unavailable, not valid.
8890 (regcache_dump): Adjust.
8891 * regcache.h (enum register_status): New.
8892 (regcache_register_status): Declare.
8893 (regcache_invalidate): Delete declaration.
8894 * corelow.c (get_core_registers): Adjust.
8895 * tracepoint.c (tfile_fetch_registers): Adjust.
8896 * trad-frame.c (REG_VALUE): Rename to ...
8897 (TF_REG_VALUE): ... this.
8898 (REG_UNKNOWN): Rename to ...
8899 (TF_REG_UNKNOWN): ... this.
8900 (trad_frame_set_value, trad_frame_set_unknown): Adjust.
8901 * mi/mi-main.c (register_changed_p): Adjust.
8902
8903 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8904
8905 * regcache.c (struct regcache_descr): Remove outdated comment.
8906 (init_regcache_descr): Remove sizeof_raw_register_valid_p
8907 overallocate hack.
8908 (regcache_xmalloc): Rename to ...
8909 (regcache_xmalloc_1): ... this. Add `readonly_p' parameter.
8910 Allocate the regcache type accordingly.
8911 (regcache_xmalloc): New as wrapper around regcache_xmalloc_1.
8912 (regcache_xfree): Asser the source is also readonly. Copy sizeof
8913 cooked registers, not raw.
8914 (regcache_dup_no_passthrough): Delete.
8915 (get_thread_arch_regcache): Use regcache_xmalloc_1.
8916 * h8300-tdep.c (h8300_push_dummy_call): Tweak comment to not
8917 mention obsolete write_register_bytes.
8918 * regcache.h (regcache_dup_no_passthrough): Delete declaration.
8919
8920 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8921
8922 Stop remote_read_bytes from handling partial reads itself.
8923
8924 * remote-fileio.c: Include target.h.
8925 (remote_fileio_write_bytes): Delete.
8926 (remote_fileio_func_open, remote_fileio_func_write)
8927 (remote_fileio_func_rename, remote_fileio_func_unlink): Use
8928 target_read_memory.
8929 (remote_fileio_func_stat): Use target_read_memory and
8930 target_write_memory.
8931 (remote_fileio_func_gettimeofday): Use target_write_memory.
8932 (remote_fileio_func_system): Use target_read_memory.
8933 * remote.c (remote_write_bytes): Make it static.
8934 (remote_read_bytes): Don't handle partial reads here.
8935 * remote.h (remote_read_bytes): Delete declaration.
8936
8937 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8938
8939 Simplify XML parsing a bit.
8940
8941 * xml-support.h (gdb_xml_parse_quick): Declare.
8942 * xml-support.c (gdb_xml_create_parser_and_cleanup_1): Renamed
8943 from gdb_xml_create_parser_and_cleanup, and added `old_chain'
8944 parameter.
8945 (gdb_xml_create_parser_and_cleanup): Reimplement on top of
8946 gdb_xml_create_parser_and_cleanup_1.
8947 (gdb_xml_parse_quick): New.
8948 * memory-map.c (parse_memory_map): Use gdb_xml_parse_quick.
8949 * osdata.c (osdata_parse): Ditto.
8950 * remote.c (remote_threads_info): Ditto.
8951 * solib-target.c (solib_target_parse_libraries): Ditto.
8952 * xml-syscall.c (syscall_parse_xml): Ditto.
8953 * xml-tdesc.c (tdesc_parse_xml): Ditto.
8954
8955 2011-01-24 Kevin Buettner <kevinb@redhat.com>
8956
8957 * configure.tgt (mips*-*-elf): New; just like mips*-*-*, but
8958 with remote-mips.o added to gdb_target_obs.
8959 * Makefile.in (ALL_TARGET_OBS): Add remote-mips.o.
8960
8961 2011-01-24 Pedro Alves <pedro@codesourcery.com>
8962
8963 * ada-valprint.c (val_print_packed_array_elements): Pass the
8964 correct struct value to val_print.
8965 (ada_val_print_1): Ditto.
8966
8967 2011-01-24 Pedro Alves <pedro@codesourcery.com>
8968
8969 Don't lose embedded_offset in printing routines throughout.
8970
8971 * valprint.h (val_print_array_elements): Change prototype.
8972 * valprint.c (val_print_array_elements): Add `embedded_offset'
8973 parameter, and adjust to pass it down to val_print, while passing
8974 `valaddr' or `address' unmodified. Take embedded_offset into
8975 account when checking repetitions.
8976 * c-valprint.c (c_val_print): Pass embedded_offset to
8977 val_print_array_elements instead of adjusting `valaddr' and
8978 `address'.
8979 * m2-valprint.c (m2_print_array_contents, m2_val_print): Pass
8980 embedded_offset to val_print_array_elements instead of adjusting
8981 `valaddr'.
8982 * p-lang.h (pascal_object_print_value_fields): Adjust prototype.
8983 * p-valprint.c (pascal_val_print): Pass embedded_offset to
8984 val_print_array_elements and pascal_object_print_value_fields
8985 instead of adjusting `valaddr'.
8986 (pascal_object_print_value_fields): Add `offset' parameter, and
8987 adjust to use it.
8988 (pascal_object_print_value): Add `offset' parameter, and adjust to
8989 use it.
8990 (pascal_object_print_static_field): Use
8991 value_contents_for_printing/value_embedded_offset, rather than
8992 value_contents.
8993 * ada-valprint.c (val_print_packed_array_elements): Add `offset'
8994 parameter, and adjust to use it. Use
8995 value_contents_for_printing/value_embedded_offset, rather than
8996 value_contents.
8997 (ada_val_print): Rename `valaddr0' parameter to `valaddr'.
8998 (ada_val_print_array): Add `offset' parameter, and adjust to use
8999 it.
9000 (ada_val_print_1): Rename `valaddr0' parameter to `valaddr', and
9001 `embedded_offset' to `offset'. Don't re-adjust `valaddr'.
9002 Instead work with offsets. Use
9003 value_contents_for_printing/value_embedded_offset, rather than
9004 value_contents. Change `defer_val_int' local type to CORE_ADDR,
9005 and use value_from_pointer to extract a target pointer, rather
9006 than value_from_longest.
9007 (print_variant_part): Add `offset' parameter. Replace
9008 `outer_valaddr' parameter by a new `outer_offset' parameter.
9009 Don't re-adjust `valaddr'. Instead pass down adjusted offsets.
9010 (ada_value_print): Use
9011 value_contents_for_printing/value_embedded_offset, rather than
9012 value_contents.
9013 (print_record): Add `offset' parameter, and adjust to pass it
9014 down.
9015 (print_field_values): Add `offset' parameter. Replace
9016 `outer_valaddr' parameter by a new `outer_offset' parameter.
9017 Don't re-adjust `valaddr'. Instead pass down adjusted offsets.
9018 Use value_contents_for_printing/value_embedded_offset, rather than
9019 value_contents.
9020 * d-valprint.c (dynamic_array_type): Use
9021 value_contents_for_printing/value_embedded_offset, rather than
9022 value_contents.
9023 * jv-valprint.c (java_print_value_fields): Add `offset' parameter.
9024 Don't re-adjust `valaddr'. Instead pass down adjusted offsets.
9025 (java_print_value_fields): Take `offset' into account. Don't
9026 re-adjust `valaddr'. Instead pass down adjusted offsets.
9027 (java_val_print): Take `embedded_offset' into account. Pass it to
9028 java_print_value_fields.
9029 * f-valprint.c (f77_print_array_1): Add `embedded_offset'
9030 parameter. Don't re-adjust `valaddr' or `address'. Instead pass
9031 down adjusted offsets.
9032 (f77_print_array): Add `embedded_offset' parameter. Pass it down.
9033 (f_val_print): Take `embedded_offset' into account.
9034
9035 2011-01-21 Joel Brobecker <brobecker@adacore.com>
9036
9037 * inflow.c: Include "gdbcmd.h".
9038 (interactive_mode): New static global, moved here from top.c.
9039 (show_interactive_mode): New function, moved here from top.c.
9040 use gdb_has_a_terminal instead of input_from_terminal_p to
9041 determine the current mode.
9042 (gdb_has_a_terminal): Add handling of the "iteractive-mode"
9043 setting.
9044 (_initialize_inflow): Add the "set/show interactive-mode"
9045 commands. Moved here from top.c, after having adjusted slightly
9046 the help text.
9047 * top.c (interactive_mode, show_interactive_mode): Delete, moved
9048 to inflow.c.
9049 (input_from_terminal_p): Remove handling of "interactive-mode"
9050 setting, moved to infow.c.
9051 (init_main): Remove creation of the "set/show interactive-mode"
9052 commands, moved to inflow.c.
9053
9054 2011-01-19 Joel Brobecker <brobecker@adacore.com>
9055
9056 * NEWS: Add entry for native ia64-hpux support.
9057
9058 2011-01-19 Tom Tromey <tromey@redhat.com>
9059
9060 PR mi/8618:
9061 * thread.c (free_thread): Free 'name'.
9062 (print_thread_info): Emit thread name. Change CLI output.
9063 (thread_name_command): New function.
9064 (do_captured_thread_select): Emit newline.
9065 (_initialize_thread): Register 'thread name' command.
9066 * target.h (struct target_ops) <to_thread_name>: New field.
9067 (target_thread_name): New macro.
9068 * target.c (update_current_target): Handle to_thread_name.
9069 * python/py-infthread.c (thpy_get_name): New function.
9070 (thpy_set_name): Likewise.
9071 (thread_object_getset): Add "name".
9072 * linux-nat.c (linux_nat_thread_name): New function.
9073 (linux_nat_add_target): Set to_thread_name.
9074 * gdbthread.h (struct thread_info) <name>: New field.
9075
9076 2011-01-18 Joel Brobecker <brobecker@adacore.com>
9077
9078 * ada-valprint.c (ada_print_scalar): Remove unsigned char downcast.
9079 (ada_val_print_1): Likewise.
9080
9081 2011-01-18 Joel Brobecker <brobecker@adacore.com>
9082
9083 * rs6000-tdep.c (rs6000_skip_prologue): Make sure that the prologue
9084 upper limit address is not greater than the function end address
9085 when the upper limit could not be computed using the debugging
9086 info.
9087
9088 2011-01-17 Tom Tromey <tromey@redhat.com>
9089
9090 * cli/cli-cmds.c (apropos_command): Free the compiled regex. Use
9091 get_regcomp_error.
9092 * utils.c: Include gdb_regex.h.
9093 (do_regfree_cleanup): New function.
9094 (make_regfree_cleanup): Likewise.
9095 (get_regcomp_error): Likewise.
9096 * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Declare.
9097
9098 2011-01-17 Tom Tromey <tromey@redhat.com>
9099
9100 * cli/cli-cmds.c (apropos_command): Fix formatting. Don't call
9101 re_compile_fastmap.
9102
9103 2011-01-17 Pierre Muller <muller@ics.u-strasbg.fr>
9104
9105 * p-exp.y (intvar): New static variable, used to set CURRENT_TYPE
9106 for internal variables.
9107 (last_was_structop): New static variable.
9108 (COMPLETE): New token.
9109 (field_exp): New rule to group all '.' suffix handling.
9110 Add mark_struct_expression calls when approriate to be able
9111 to correctly find fields for completion.
9112 (yylex): Adapt to handle field completion and set INTVAR when
9113 required.
9114
9115 2011-01-14 Yao Qi <yao@codesourcery.com>
9116
9117 * arm-tdep.c (arm_register_reggroup_p): FPS register is in
9118 save_reggroup, restore_reggroup and all_reggroup.
9119
9120 2011-01-14 Joel Brobecker <brobecker@adacore.com>
9121
9122 * ada-valprint. (ada_printchar): Use the correct type length
9123 in call to ada_emit_char.
9124 * c-valprint.c (c_val_print): Remove cast in call to LA_PRINT_CHAR.
9125
9126 2011-01-14 Pierre Muller <muller@ics.u-strasbg.fr>
9127
9128 * solib-som.h (hpux_major_release): Declare variable here.
9129 * solib-som.c: Remove <sys/utsname.h> header.
9130 (DEFAULT_HPUX_MAJOR_RELEASE): New macro.
9131 (hpux_major_release): Make global, change default value to
9132 DEFAULT_HPUX_MAJOR_RELEASE.
9133 (get_hpux_major_release): Simply return HPUX_MAJOR_RELEASE.
9134 * hppa-hpux-nat.c: Add <sys/utsname.h> include.
9135 Add "solib-som.h" header.
9136 (set_hpux_major_release): New function.
9137 (_initialize_hppa_hpux_nat): Call set_hpux_major_release.
9138
9139 2011-01-14 Mike Frysinger <vapier@gentoo.org>
9140
9141 * configure.tgt (*-*-uclinux*): Match more Linux os targets
9142
9143 2011-01-14 Joel Brobecker <brobecker@adacore.com>
9144
9145 * ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing
9146 new-line at end of warning message.
9147 (ia64_hpux_store_register): Remove trailing new-line at end of
9148 error message.
9149 * ia64-hpux-tdep.c: Rephrase comment.
9150 * solib-ia64-hpux.c (struct dld_info): Change type of field
9151 dld_flags from "long long" to ULONGEST.
9152
9153 2011-01-14 Pedro Alves <pedro@codesourcery.com>
9154
9155 * target.h (deprecated_child_ops): Delete declaration.
9156 * target.c (deprecated_child_ops): Delete definition.
9157
9158 2011-01-14 Pedro Alves <pedro@codesourcery.com>
9159
9160 * Makefile.in (hpux-thread.o): Delete rule.
9161 * configure.ac: Don't check for HPUX DCE threads support.
9162 * configure, config.in: Regenerate.
9163 * hppa-hpux-nat.c (child_suppress_run): Delete.
9164 (hppa_hpux_child_can_run): Delete.
9165 (_initialize_hppa_hpux_nat): Don't override to_can_run.
9166 * hpux-thread.c: Delete.
9167
9168 2011-01-13 Joel Brobecker <brobecker@adacore.com>
9169
9170 * hpux-thread.c (hpux_pid_to_str): Delete.
9171
9172 2011-01-13 Joel Brobecker <brobecker@adacore.com>
9173
9174 * ada-valprint.c (ada_emit_char): Remove strange code.
9175 Check that c is <= UCHAR_MAX before passing it to isascii.
9176 (char_at): Do not assume that TYPE_LEN is either 1 or 2.
9177
9178 2011-01-13 Joel Brobecker <brobecker@adacore.com>
9179
9180 * top.c (input_from_terminal_p): Restrict the use of interactive_mode
9181 to the case where instream is stdin.
9182
9183 2011-01-13 Joel Brobecker <brobecker@adacore.com>
9184
9185 * ia64-tdep.h (struct regcache): Forward declare.
9186 (struct ia64_infcall_ops): New struct type.
9187 (struct gdbarch_tdep): New fields "find_global_pointer_from_solib"
9188 and "infcall_ops".
9189 * ia64-tdep.c (ia64_find_global_pointer_from_dynamic_section):
9190 Renames ia64_find_global_pointer.
9191 (ia64_find_global_pointer, ia64_allocate_new_rse_frame)
9192 (ia64_store_argument_in_slot, ia64_set_function_addr: New function.
9193 (ia64_push_dummy_call): Adjust to use the new tdep ia64_infocall_ops
9194 methods.
9195 (ia64_infcall_ops): New static global constant.
9196 (ia64_gdbarch_init): Set tdep->infcall_ops.
9197 * ia64-hpux-nat.c (ia64_hpux_xfer_solib_got): New function.
9198 (ia64_hpux_xfer_partial): Add TARGET_OBJECT_HPUX_SOLIB_GOT handing.
9199 * ia64-hpux-tdep.c: Include "regcache.h", "gdbcore.h" and "inferior.h".
9200 (ia64_hpux_dummy_code): New static global constant.
9201 (ia64_hpux_push_dummy_code, ia64_hpux_allocate_new_rse_frame)
9202 (ia64_hpux_store_argument_in_slot, ia64_hpux_set_function_addr)
9203 (ia64_hpux_dummy_id, ia64_hpux_find_global_pointer_from_solib):
9204 New function.
9205 (ia64_hpux_infcall_ops): New static global constant.
9206 (ia64_hpux_init_abi): Install gdbarch and tdep methods needed
9207 for inferior function calls to work properly on ia64-hpux.
9208
9209 2011-01-13 Joel Brobecker <brobecker@adacore.com>
9210
9211 * target.h (enum target_object): Add TARGET_OBJECT_HPUX_UREGS.
9212 * ia64-tdep.h (struct frame_info): forward declaration.
9213 (struct gdbarch_tdep): Add field size_of_register_frame.
9214 * ia64-tdep.c (ia64_access_reg): Use tdep->size_of_register_frame
9215 to determine the size of the register frame.
9216 (ia64_size_of_register_frame): New function.
9217 (ia64_gdbarch_init): Set tdep->size_of_register_frame.
9218 * ia64-hpux-tdep.c: Include "target.h" and "frame.h".
9219 (IA64_HPUX_UREG_REASON): New macro.
9220 (ia64_hpux_stopped_in_syscall, ia64_hpux_size_of_register_frame):
9221 New functions.
9222 (ia64_hpux_init_abi): Set tdep->size_of_register_frame.
9223 * ia64-hpux-nat.c (ia64_hpux_xfer_uregs): New function.
9224 (ia64_hpux_xfer_partial): Add handling of TARGET_OBJECT_HPUX_UREGS
9225 objects.
9226
9227 2011-01-13 Joel Brobecker <brobecker@adacore.com>
9228
9229 Add support for ia64-hpux.
9230 * config/ia64/hpux.mh, ia64-hpux-nat.c, ia64-hpux-tdep.c,
9231 ia64-hpux-tdep.h, solib-ia64-hpux.c, solib-ia64-hpux.h: New files.
9232
9233 * configure.host: Add handling for ia64-hpux hosts. Add associated
9234 floatformats.
9235 * configure.tgt: Add handling for ia64-hpux targets.
9236 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-hpux-tdep.o.
9237 (HFILES_NO_SRCDIR): Add ia64-hpux-tdep.h.
9238 (ALLDEPFILES): Add ia64-hpux-nat.c ia64-hpux-tdep.c.
9239
9240 2011-01-13 Joel Brobecker <brobecker@adacore.com>
9241
9242 [ttrace] Compute thread list immediately after attach.
9243 * inf_ttrace_attach (inf_ttrace_create_threads_after_attach):
9244 New subprogram.
9245 (inf_ttrace_attach): Use it.
9246
9247 2011-01-13 Joel Brobecker <brobecker@adacore.com>
9248
9249 * libunwind-frame.c (libunwind_frame_cache): Do not return NULL
9250 if we could not determine the frame's function address. Instead,
9251 use the frame's PC, and then continue.
9252
9253 2011-01-13 Joel Brobecker <brobecker@adacore.com>
9254
9255 * libunwind-frame.c (__LITTLE_ENDIAN, __BIG_ENDIAN): Define if
9256 not already defined.
9257
9258 2011-01-13 Joel Brobecker <brobecker@adacore.com>
9259
9260 * ia64-tdep.c (ia64_struct_type_p): New function.
9261 (ia64_extract_return_value): Handle integral values that are
9262 less than 8 bytes long.
9263 (ia64_push_dummy_call): Likewise.
9264
9265 2011-01-13 Joel Brobecker <brobecker@adacore.com>
9266
9267 * ia64-tdep.c (floatformat_ia64_ext_little): Renames
9268 floatformat_ia64_ext.
9269 (floatformat_ia64_ext_big): New static const.
9270 (floatformats_ia64_ext): Set first entry to &floatformat_ia64_ext_big.
9271
9272 2011-01-12 Tom Tromey <tromey@redhat.com>
9273
9274 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Fix error
9275 messages.
9276 * mi/mi-main.c (mi_cmd_thread_select): Fix error messages.
9277 (mi_cmd_thread_list_ids): Likewise.
9278 (mi_cmd_data_list_changed_registers): Likewise.
9279 (mi_cmd_data_list_register_values): Likewise.
9280 (mi_cmd_data_write_register_values): Likewise.
9281 (mi_cmd_data_evaluate_expression): Likewise.
9282 (mi_cmd_data_read_memory): Likewise.
9283 (mi_cmd_data_read_memory_bytes): Likewise.
9284 (mi_cmd_data_write_memory): Likewise.
9285 (mi_cmd_enable_timings): Likewise.
9286 * mi/mi-interp.c (mi_cmd_interpreter_exec): Fix error messages.
9287 * mi/mi-cmd-var.c (mi_cmd_var_create): Fix error messages.
9288 (mi_cmd_var_delete): Likewise.
9289 (mi_cmd_var_set_format): Likewise.
9290 (mi_cmd_var_show_format): Likewise.
9291 (mi_cmd_var_info_num_children): Likewise.
9292 (mi_cmd_var_list_children): Likewise.
9293 (mi_cmd_var_info_type): Likewise.
9294 (mi_cmd_var_info_expression): Likewise.
9295 (mi_cmd_var_show_attributes): Likewise.
9296 (mi_cmd_var_assign): Likewise.
9297 (mi_cmd_var_update): Likewise.
9298 (mi_cmd_enable_pretty_printing): Likewise.
9299 (mi_cmd_var_set_update_range): Likewise.
9300 * mi/mi-cmd-target.c (mi_cmd_target_file_get): Fix error
9301 messages.
9302 (mi_cmd_target_file_put): Likewise.
9303 (mi_cmd_target_file_delete): Likewise.
9304 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Fix error
9305 messages.
9306 (mi_cmd_stack_info_depth): Likewise.
9307 (mi_cmd_stack_list_locals): Likewise.
9308 (mi_cmd_stack_list_args): Likewise.
9309 (mi_cmd_stack_select_frame): Likewise.
9310 (mi_cmd_stack_select_frame): Likewise.
9311 (mi_cmd_stack_info_frame): Likewise.
9312 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Fix error
9313 messages.
9314 (mi_cmd_file_list_exec_source_files): Likewise.
9315 * mi/mi-cmd-env.c (mi_cmd_env_pwd): Fix error messages.
9316 (mi_cmd_env_cd): Likewise.
9317 (mi_cmd_env_path): Likewise.
9318 (mi_cmd_env_dir): Likewise.
9319 (mi_cmd_inferior_tty_show): Likewise.
9320 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Fix error messages.
9321 * mi/mi-cmd-break.c (mi_cmd_break_insert): Fix error messages.
9322 (mi_cmd_break_watch): Likewise.
9323
9324 2011-01-12 Thiago Jung Bauermann <bauerman@br.ibm.com>
9325
9326 * ppc-linux-nat.c (booke_cmp_hw_point): Fix whitespace.
9327 (ppc_linux_insert_hw_breakpoint): Likewise.
9328 (ppc_linux_remove_hw_breakpoint): Likewise.
9329 (ppc_linux_insert_watchpoint): Likewise.
9330
9331 2011-01-12 Andrew Burgess <aburgess@broadcom.com>
9332 Jan Kratochvil <jan.kratochvil@redhat.com>
9333
9334 PR fortran/11104 and DWARF unbound arrays detection.
9335 * dwarf2read.c (read_subrange_type): Set zero length on unspecified
9336 upper bound. Set TYPE_HIGH_BOUND_UNDEFINED if not language_ada on
9337 unspecified upper bound.
9338 * eval.c (evaluate_subexp_standard) <multi_f77_subscript>: Remove
9339 variables array_size_array, tmp_type and offset_item. New variable
9340 array. Remove call to f77_get_upperbound. New variables array_type
9341 and index. Call value_subscripted_rvalue for each dimenasion. Remove
9342 the final call to deprecated_set_value_type.
9343
9344 2011-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
9345
9346 Make value allocations more lazy.
9347 * ada-lang.c (coerce_unspec_val_to_type): Use allocate_value_lazy
9348 instead of allocate_value and set_value_lazy when possible.
9349 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use allocate_value_lazy
9350 instead of allocate_value and set_value_lazy.
9351 * findvar.c (value_of_register_lazy): Likewise.
9352 (read_var_value): Remove V preallocation, call just check_typedef in
9353 advance. Move allocate_value to LOC_CONST, LOC_LABEL,
9354 LOC_CONST_BYTES. Use allocate_value_lazy in LOC_STATIC, LOC_ARG,
9355 LOC_REF_ARG, LOC_LOCAL, LOC_BLOCK. Set ADDR instead of
9356 set_value_address and break in LOC_BLOCK. Use allocate_value_lazy and
9357 remove lval_memory set in LOC_REGPARM_ADDR. Use allocate_value_lazy
9358 in LOC_UNRESOLVED and LOC_OPTIMIZED_OUT. Add setting lval_memory at
9359 the end, remove set_value_lazy there.
9360 * valarith.c (value_subscripted_rvalue): Use allocate_value_lazy
9361 instead of allocate_value and set_value_lazy when possible.
9362 * valops.c (value_fetch_lazy): Do nop for value_optimized_out VAL.
9363 * value.c (allocate_computed_value): Use allocate_value_lazy instead
9364 of allocate_value and set_value_lazy.
9365 (value_from_contents_and_address): Use allocate_value_lazy instead of
9366 allocate_value and set_value_lazy when possible.
9367
9368 2011-01-12 Andrew Burgess <aburgess@broadcom.com>
9369
9370 * disasm.c (dump_insns): Support dumping opcodes for MI.
9371 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Allow mode to control
9372 dumping of instruction opcodes.
9373
9374 2011-01-09 Robert Millan <rmh@gnu.org> (tiny patch)
9375
9376 * configure.tgt: Detect GNU/kFreeBSD and set `gdb_osabi'
9377 appropiately.
9378
9379 2011-01-11 Tom Tromey <tromey@redhat.com>
9380
9381 * thread.c (do_captured_thread_select): Emit newline before
9382 printing frame.
9383
9384 2011-01-11 Michael Snyder <msnyder@vmware.com>
9385
9386 * s390-tdep.c: Comment cleanup, mostly periods and spaces.
9387 * score-tdep.c: Ditto.
9388 * score-tdep.h: Ditto.
9389 * ser-base.c: Ditto.
9390 * ser-go32.c: Ditto.
9391 * serial.c: Ditto.
9392 * serial.h: Ditto.
9393 * ser-mingw.c: Ditto.
9394 * ser-pipe.c: Ditto.
9395 * ser-tcp.c: Ditto.
9396 * ser-unix.c: Ditto.
9397 * sh64-tdep.c: Ditto.
9398 * shnbsd-nat.c: Ditto.
9399 * sh-tdep.c: Ditto.
9400 * sh-tdep.h: Ditto.
9401 * solib.c: Ditto.
9402 * solib-darwin.c: Ditto.
9403 * solib-frv.c: Ditto.
9404 * solib.h: Ditto.
9405 * solib-irix.c: Ditto.
9406 * solib-osf.c: Ditto.
9407 * solib-pa64.c: Ditto.
9408 * solib-som.c: Ditto.
9409 * solib-spu.c: Ditto.
9410 * solib-sunos.c: Ditto.
9411 * solib-svr4.c: Ditto.
9412 * solist.h: Ditto.
9413 * sol-thread.c: Ditto.
9414 * somread.c: Ditto.
9415 * source.c: Ditto.
9416 * source.h: Ditto.
9417 * sparc64-linux-tdep.c: Ditto.
9418 * sparc64-tdep.c: Ditto.
9419 * sparc-linux-nat.c: Ditto.
9420 * sparc-linux-tdep.c: Ditto.
9421 * sparc-sol2-nat.c: Ditto.
9422 * sparc-sol2-tdep.c: Ditto.
9423 * sparc-tdep.c: Ditto.
9424 * sparc-tdep.h: Ditto.
9425 * spu-tdep.c: Ditto.
9426 * stabsread.c: Ditto.
9427 * stabsread.h: Ditto.
9428 * stack.c: Ditto.
9429 * symfile.c: Ditto.
9430 * symfile.h: Ditto.
9431 * symmisc.c: Ditto.
9432 * symtab.c: Ditto.
9433 * symtab.h: Ditto.
9434 * target.c: Ditto.
9435 * target-descriptions.c: Ditto.
9436 * target-descriptions.h: Ditto.
9437 * target.h: Ditto.
9438 * target-memory.c: Ditto.
9439 * terminal.h: Ditto.
9440 * thread.c: Ditto.
9441 * top.c: Ditto.
9442 * tracepoint.c: Ditto.
9443 * tracepoint.h: Ditto.
9444 * trad-frame.h: Ditto.
9445 * typeprint.c: Ditto.
9446
9447 2011-01-11 Michael Snyder <msnyder@vmware.com>
9448
9449 * ui-file.c: Comment cleanup, mostly periods and spaces.
9450 * ui-file.h: Ditto.
9451 * ui-out.c: Ditto.
9452 * ui-out.h: Ditto.
9453 * utils.c: Ditto.
9454 * v850-tdep.c: Ditto.
9455 * valarith.c: Ditto.
9456 * valops.c: Ditto.
9457 * valprint.c: Ditto.
9458 * valprint.h: Ditto.
9459 * value.c: Ditto.
9460 * value.h: Ditto.
9461 * varobj.c: Ditto.
9462 * varobj.h: Ditto.
9463 * vax-tdep.c: Ditto.
9464 * vec.c: Ditto.
9465 * vec.h: Ditto.
9466 * version.h: Ditto.
9467 * windows-nat.c: Ditto.
9468 * windows-tdep.c: Ditto.
9469 * xcoffread.c: Ditto.
9470 * xcoffsolib.c: Ditto.
9471 * xml-support.c: Ditto.
9472 * xstormy16-tdep.c: Ditto.
9473 * xtensa-tdep.c: Ditto.
9474 * xtensa-tdep.h: Ditto.
9475
9476 2011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
9477
9478 * breakpoint.c (resources_needed_watchpoint): Fix indentation.
9479 * gdbtypes.c (is_scalar_type_recursive): Fix formatting.
9480
9481 2011-01-11 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
9482 Thiago Jung Bauermann <bauerman@br.ibm.com>
9483
9484 Implement support for PowerPC BookE ranged watchpoints.
9485 * breakpoint.h
9486 (struct breakpoint_ops) <resources_needed>: New method.
9487 Initialize to NULL in all existing breakpoint_ops instances.
9488 (struct breakpoint) <exact>: New field.
9489 (target_exact_watchpoints): Declare external global.
9490 * breakpoint.c (target_exact_watchpoints): New global flag.
9491 (update_watchpoint): Set b->type to bp_hardware_watchpoint and
9492 b->enable_state to bp_enabled before calling
9493 hw_watchpoint_used_count.
9494 (hw_watchpoint_used_count): Iterate over all bp_locations in a
9495 watchpoint. Call breakpoint's breakpoint_ops.resources_needed
9496 if available.
9497 (insert_watchpoint, remove_watchpoint): Use fixed length of 1 byte
9498 if the watchpoint is exact.
9499 (resources_needed_watchpoint): New function.
9500 (watchpoint_breakpoint_ops): Add resources_needed_watchpoint.
9501 (watch_command_1): Set b->exact if the user asked for an exact
9502 watchpoint and one can be set.
9503 (can_use_hardware_watchpoint): Add exact_watchpoints argument.
9504 Pass fixed length of 1 to target_region_ok_for_hw_watchpoint if
9505 the user asks for an exact watchpoint and one can be set. Return
9506 number of needed debug registers to watch the expression.
9507 * gdbtypes.c (is_scalar_type): New function, based on
9508 valprint.c:scalar_type_p.
9509 (is_scalar_type_recursive): New function.
9510 * gdbtypes.h (is_scalar_type_recursive): Declare.
9511 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Always
9512 handle regions when ranged watchpoints are available.
9513 (create_watchpoint_request): New function.
9514 (ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint): Use
9515 create_watchpoint_request.
9516 * rs6000-tdep.c (show_powerpc_exact_watchpoints): New function.
9517 (_initialize_rs6000_tdep): Add `exact-watchpoints' boolean to the
9518 `set powerpc' and `show powerpc' commands.
9519 * target.h (struct target_ops) <to_region_ok_for_hw_watchpoint>:
9520 Mention documentation comment in the target macro.
9521 (target_region_ok_for_hw_watchpoint): Document return value.
9522
9523 2011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
9524
9525 * breakpoint.c (update_watchpoint): Decide on using a software or
9526 hardware watchpoint after the bp_locations are created.
9527
9528 2010-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
9529
9530 Convert hardware watchpoints to use breakpoint_ops.
9531 * breakpoint.h (breakpoint_ops) <insert>: Rename to...
9532 <insert_location>: ... this. Return int instead of void.
9533 Accept pointer to struct bp_location instead of pointer to
9534 struct breakpoint. Adapt all implementations.
9535 (breakpoint_ops) <remove>: Rename to...
9536 <remove_location>: ... this. Accept pointer to struct bp_location
9537 instead of pointer to struct breakpoint. Adapt all implementations.
9538 * breakpoint.c (insert_catchpoint): Delete function.
9539 (insert_bp_location): Call the watchpoint or catchpoint's
9540 breakpoint_ops.insert method.
9541 (remove_breakpoint_1): Call the watchpoint or catchpoint's
9542 breakpoint_ops.remove method.
9543 (insert_watchpoint, remove_watchpoint): New functions.
9544 (watchpoint_breakpoint_ops): New structure.
9545 (watch_command_1): Initialize the OPS field.
9546 * inf-child.c (inf_child_insert_fork_catchpoint)
9547 (inf_child_remove_fork_catchpoint, inf_child_insert_vfork_catchpoint)
9548 (inf_child_remove_vfork_catchpoint, inf_child_insert_exec_catchpoint)
9549 (inf_child_remove_exec_catchpoint, inf_child_set_syscall_catchpoint):
9550 Delete functions.
9551 (inf_child_target): Remove initialization of to_insert_fork_catchpoint,
9552 to_remove_fork_catchpoint, to_insert_vfork_catchpoint,
9553 to_remove_vfork_catchpoint, to_insert_exec_catchpoint,
9554 to_remove_exec_catchpoint and to_set_syscall_catchpoint.
9555 * target.c (update_current_target): Change default implementation of
9556 to_insert_fork_catchpoint, to_remove_fork_catchpoint,
9557 to_insert_vfork_catchpoint, to_remove_vfork_catchpoint,
9558 to_insert_exec_catchpoint, to_remove_exec_catchpoint and
9559 to_set_syscall_catchpoint to return_one.
9560 (debug_to_insert_fork_catchpoint, debug_to_insert_vfork_catchpoint)
9561 (debug_to_insert_exec_catchpoint): Report return value.
9562 * target.h (to_insert_fork_catchpoint, to_insert_vfork_catchpoint)
9563 (to_insert_exec_catchpoint): Change declaration to return int instead
9564 of void.
9565
9566 2011-01-11 Michael Snyder <msnyder@vmware.com>
9567
9568 * arm-tdep.c: Internationalization.
9569 * c-lang.c: Ditto.
9570 * charset.c: Ditto.
9571 * fork-child.c: Ditto.
9572 * nto-procfs.c: Ditto.
9573 * ppc-sysv-tdep.c: Ditto.
9574 * procfs.c: Ditto.
9575 * remote-mips.c: Ditto.
9576 * remote.c: Ditto.
9577 * rs6000-nat.c: Ditto.
9578 * rs6000-tdep.c: Ditto.
9579 * target.c: Ditto.
9580 * valops.c: Ditto.
9581 * value.c: Ditto.
9582 * xml-support.c: Ditto.
9583 * mi/mi-cmd-break.c: Ditto.
9584 * mi/mi-cmd-var.c: Ditto.
9585 * mi/mi-interp.c: Ditto.
9586 * mi/mi-main.c: Ditto.
9587
9588 2011-01-11 Andrew Burgess <aburgess@broadcom.com>
9589
9590 * remote-sim.c (gdbsim_store_register): Update API to
9591 sim_store_register to check more error conditions.
9592
9593 2011-01-10 Michael Snyder <msnyder@vmware.com>
9594
9595 * nto-procfs.c: Comment cleanup, mostly periods and spaces.
9596 * nto-tdep.c: Ditto.
9597 * nto-tdep.h: Ditto.
9598 * objc-exp.y: Ditto.
9599 * objc-lang.c: Ditto.
9600 * objfiles.c: Ditto.
9601 * objfiles.h: Ditto.
9602 * observer.c: Ditto.
9603 * opencl-lang.c: Ditto.
9604 * osabi.c: Ditto.
9605 * parse.c: Ditto.
9606 * parser-defs.h: Ditto.
9607 * p-exp.y: Ditto.
9608 * p-lang.c: Ditto.
9609 * posix-hdep.c: Ditto.
9610 * ppcbug-rom.c: Ditto.
9611 * ppc-linux-nat.c: Ditto.
9612 * ppc-linux-tdep.c: Ditto.
9613 * ppc-linux-tdep.h: Ditto.
9614 * ppcnbsd-tdep.c: Ditto.
9615 * ppcobsd-tdep.c: Ditto.
9616 * ppcobsd-tdep.h: Ditto.
9617 * ppc-sysv-tdep.c: Ditto.
9618 * ppc-tdep.h: Ditto.
9619 * printcmd.c: Ditto.
9620 * proc-abi.c: Ditto.
9621 * proc-flags.c: Ditto.
9622 * procfs.c: Ditto.
9623 * proc-utils.h: Ditto.
9624 * progspace.h: Ditto.
9625 * prologue-value.c: Ditto.
9626 * prologue-value.h: Ditto.
9627 * psympriv.h: Ditto.
9628 * psymtab.c: Ditto.
9629 * p-typeprint.c: Ditto.
9630 * p-valprint.c: Ditto.
9631 * ravenscar-sparc-thread.c: Ditto.
9632 * ravenscar-thread.c: Ditto.
9633 * ravenscar-thread.h: Ditto.
9634 * record.c: Ditto.
9635 * regcache.c: Ditto.
9636 * regcache.h: Ditto.
9637 * remote.c: Ditto.
9638 * remote-fileio.c: Ditto.
9639 * remote-fileio.h: Ditto.
9640 * remote.h: Ditto.
9641 * remote-m32r-sdi.c: Ditto.
9642 * remote-mips.c: Ditto.
9643 * remote-sim.c: Ditto.
9644 * rs6000-aix-tdep.c: Ditto.
9645 * rs6000-nat.c: Ditto.
9646 * rs6000-tdep.c: Ditto.
9647
9648 2011-01-10 Michael Snyder <msnyder@vmware.com>
9649
9650 * charset.c (validate): Internationalization.
9651 * coffread.c (read_one_sym): Ditto.
9652 * dwarf2read.c (dwarf2_attach_fields_to_type): Ditto.
9653 * h8300-tdep.c (H8300_extract_return_value): Ditto.
9654 * inflow.c (new_tty): Ditto.
9655 * iq2000-tdep.c (iq2000_breakpoint_from_pc): Ditto.
9656 * m32c-tdep.c (m32c_return_value): Ditto.
9657 * mep-tdep.c (mep_store_return_value): Ditto.
9658 * score-tdep.c (score7_fetch_insn): Ditto.
9659 * ser-mingw.c (pipe_windows_open): Ditto.
9660 * sh64-tdep.c (sh64_extract_return_value): Ditto.
9661 * spu-tdep.c (spu_register_type): Ditto.
9662 * tracepoint.c (trace_find_command): Ditto.
9663 * valarith.c (value_pos): Ditto.
9664
9665 2011-01-10 Joel Brobecker <brobecker@adacore.com>
9666
9667 * ada-valprint.c (printstr): Minor comment reformatting.
9668
9669 2011-01-08 Michael Snyder <msnyder@vmware.com>
9670
9671 * m32r-rom.c (m32r_upload_command): Fix up ARI warnings for _
9672 markup.
9673
9674 2011-01-08 Michael Snyder <msnyder@vmware.com>
9675
9676 * h8300-tdep.c: Comment cleanup, mostly periods and spaces.
9677 * hppa-hpux-tdep.c: Ditto.
9678 * hppa-linux-nat.c: Ditto.
9679 * hppa-linux-tdep.c: Ditto.
9680 * hppanbsd-tdep.c: Ditto.
9681 * hppa-tdep.c: Ditto.
9682 * hppa-tdep.h: Ditto.
9683 * hpux-thread.c: Ditto.
9684 * i386-cygwin-tdep.c: Ditto.
9685 * i386-darwin-nat.c: Ditto.
9686 * i386gnu-nat.c: Ditto.
9687 * i386-linux-nat.c: Ditto.
9688 * i386-linux-tdep.c: Ditto.
9689 * i386-nat.c: Ditto.
9690 * i386-nat.h: Ditto.
9691 * i386nbsd-tdep.c: Ditto.
9692 * i386-sol2-nat.c: Ditto.
9693 * i386-stub.c: Ditto.
9694 * i386-tdep.c: Ditto.
9695 * i386-tdep.h: Ditto.
9696 * i387-tdep.c: Ditto.
9697 * ia64-linux-nat.c: Ditto.
9698 * ia64-linux-tdep.c: Ditto.
9699 * ia64-tdep.c: Ditto.
9700 * infcall.c: Ditto.
9701 * infcall.h: Ditto.
9702 * infcmd.c: Ditto.
9703 * inferior.c: Ditto.
9704 * inferior.h: Ditto.
9705 * infloop.c: Ditto.
9706 * inflow.c: Ditto.
9707 * infrun.c: Ditto.
9708 * interps.c: Ditto.
9709 * interps.h: Ditto.
9710 * iq2000-tdep.c: Ditto.
9711 * irix5-nat.c: Ditto.
9712 * jit.c: Ditto.
9713 * jit.h: Ditto.
9714 * jv-exp.y: Ditto.
9715 * jv-lang.c: Ditto.
9716 * jv-lang.h: Ditto.
9717 * jv-typeprint.c: Ditto.
9718 * jv-valprint.c: Ditto.
9719 * language.c: Ditto.
9720 * language.h: Ditto.
9721 * linespec.c: Ditto.
9722 * linux-fork.c: Ditto.
9723 * linux-nat.c: Ditto.
9724 * linux-thread-db.c: Ditto.
9725 * lm32-tdep.c: Ditto.
9726
9727 2011-01-08 Michael Snyder <msnyder@vmware.com>
9728
9729 * m2-exp.y: Comment cleanup, mostly periods and spaces.
9730 * m2-lang.c: Ditto.
9731 * m2-typeprint.c: Ditto.
9732 * m2-valprint.c: Ditto.
9733 * m32c-tdep.c: Ditto.
9734 * m32r-linux-nat.c: Ditto.
9735 * m32r-rom.c: Ditto.
9736 * m32r-tdep.c: Ditto.
9737 * m32r-tdep.h: Ditto.
9738 * m68hc11-tdep.c: Ditto.
9739 * m58klinux-nat.c: Ditto.
9740 * m68k-tdep.c: Ditto.
9741 * m88k-tdep.c: Ditto.
9742 * m88k-tdep.h: Ditto.
9743 * machoread.c: Ditto.
9744 * macrocmd.c: Ditto.
9745 * macroexp.c: Ditto.
9746 * macrotab.c: Ditto.
9747 * main.c: Ditto.
9748 * maint.c: Ditto.
9749 * mdebugread.c: Ditto.
9750 * mdebugread.h: Ditto.
9751 * memattr.c: Ditto.
9752 * memattr.h: Ditto.
9753 * memory-map.h: Ditto.
9754 * mep-tdep.c: Ditto.
9755 * microblaze-rom.c: Ditto.
9756 * microblaze-tdep.c: Ditto.
9757 * minsyms.c: Ditto.
9758 * mips-irix-tdep.c: Ditto.
9759 * mips-linux-nat.c: Ditto.
9760 * mips-linux-tdep.c: Ditto.
9761 * mips-linux-tdep.h: Ditto.
9762 * mipsnbsd-nat.c: Ditto.
9763 * mipsnbsd-tdep.c: Ditto.
9764 * mipsread.c: Ditto.
9765 * mips-tdep.c: Ditto.
9766 * mips-tdep.h: Ditto.
9767 * mn10300-linux-tdep.c: Ditto.
9768 * mn10300-tdep.c: Ditto.
9769 * mn10300-tdep.h: Ditto.
9770 * monitor.c: Ditto.
9771 * monitor.h: Ditto.
9772 * moxie-tdep.c: Ditto.
9773 * moxie-tdep.h: Ditto.
9774 * mt-tdep.c: Ditto.
9775
9776 2011-01-08 Mike Frysinger <vapier@gentoo.org>
9777
9778 * bfin-tdep.h (BFIN_A0_DOT_W_REGNUM): Fix typo in name.
9779
9780 2011-01-08 Robert Millan <rmh@gnu.org>
9781
9782 * fbsd-nat.c (fbsd_find_memory_regions): Fix typo.
9783
9784 2011-01-07 Michael Snyder <msnyder@vmware.com>
9785
9786 * charset.c (_initialize_charset): Fix typo in string.
9787
9788 2011-01-07 Michael Snyder <msnyder@vmware.com>
9789
9790 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Mark up error message
9791 for i18n.
9792 * tui/tui-layout.c (tui_set_layout_for_display_command):
9793 Split line so that operator goes to beginning of line.
9794 * tui/tui-winsource.c (tui_horizontal_source_scroll): Move
9795 assignment out of if statement.
9796
9797 2011-01-07 Michael Snyder <msnyder@vmware.com>
9798
9799 * ada-lang.c: Comment cleanup, mostly periods and spaces.
9800 * ada-lang.h: Ditto.
9801 * ada-tasks.c: Ditto.
9802 * ada-valprint.c: Ditto.
9803 * aix-threads.c: Ditto.
9804 * alpha-linux-nat.c: Ditto.
9805 * alpha-linux-tdep.c: Ditto.
9806 * alpha-mdebug-tdep.c: Ditto.
9807 * alpha-nat.c: Ditto.
9808 * alpha-osf1-tdep.c: Ditto.
9809 * alpha-tdep.c: Ditto.
9810 * alphabsd-nat.c: Ditto.
9811 * alphabsd-tdep.c: Ditto.
9812 * amd64-darwin-tdep.c: Ditto.
9813 * amd64-linux-nat.c: Ditto.
9814 * amd64-linux-tdep.c: Ditto.
9815 * amd64-sol2-tdep.c: Ditto.
9816 * amd64-tdep.c: Ditto.
9817 * amd64-fbsd-tdep.c: Ditto.
9818 * amd64-nbsd-tdep.c: Ditto.
9819 * amd64-obsd-tdep.c: Ditto.
9820 * amd64-linux-nat.c: Ditto.
9821 * amd64-linux-tdep.c: Ditto.
9822 * arm-tdep.c: Ditto.
9823 * arm-tdep.h: Ditto.
9824 * armnbsd-nat.c: Ditto.
9825 * avr-tdep.c: Ditto.
9826 * bfin-tdep.c: Ditto.
9827 * bsd-kvm.c: Ditto.
9828 * c-typeprintc: Ditto.
9829 * c-valprint.c: Ditto.
9830 * coff-pe-read.h: Ditto.
9831 * coffreead.c: Ditto.
9832 * cris-tdep.c: Ditto.
9833 * d-lang.c: Ditto.
9834 * darwin-nat-info.c: Ditto.
9835 * darwin-nat.c: Ditto.
9836 * dbug-rom.c: Ditto.
9837 * dbxread.c: Ditto.
9838 * dcache.c: Ditto.
9839 * dcache.h: Ditto.
9840 * dec-thread.c: Ditto.
9841 * defs.h: Ditto.
9842 * demangle.c: Ditto.
9843 * dicos-tdep.c: Ditto.
9844 * dictionary.c: Ditto.
9845 * dictionary.h: Ditto.
9846 * dink32-rom.c: Ditto.
9847 * disasm.c: Ditto.
9848 * doublest.c: Ditto.
9849 * dsrec.c: Ditto.
9850 * dummy-frame.c: Ditto.
9851 * dwarf2-frame.c: Ditto.
9852 * dwarf2expr.c: Ditto.
9853 * dwarf2loc.c: Ditto.
9854 * dwarf2read.c: Ditto.
9855 * elfread.c: Ditto.
9856 * environ.c: Ditto.
9857 * eval.c: Ditto.
9858 * event-top.h: Ditto.
9859 * exceptions.c: Ditto.
9860 * exceptions.h: Ditto.
9861 * exec.c: Ditto.
9862 * expprint.c: Ditto.
9863 * expression.h: Ditto.
9864 * f-exp.y: Ditto.
9865 * f-lang.c: Ditto.
9866 * f-lang.h: Ditto.
9867 * f-typeprint.c: Ditto.
9868 * f-valprint.c: Ditto.
9869 * fbsd-nat.c: Ditto.
9870 * findvar.c: Ditto.
9871 * fork-child.c: Ditto.
9872 * frame.c: Ditto.
9873 * frame.h: Ditto.
9874 * frv-linux-tdep.c: Ditto.
9875 * frv-tdep.c: Ditto.
9876 * gcore.c: Ditto.
9877 * gdb-stabs.h: Ditto.
9878 * gdb_assert.h: Ditto.
9879 * gdb_string.h: Ditto.
9880 * gdb_thread_db.h: Ditto.
9881 * gdb_wait.h: Ditto.
9882 * gdbarch.sh: Ditto.
9883 * gdbcore.h: Ditto.
9884 * gdbthread.h: Ditto.
9885 * gdbtypes.c: Ditto.
9886 * gdbtypes.h: Ditto.
9887 * gnu-nat.c: Ditto.
9888 * gnu-nat.h: Ditto.
9889 * gnu-v2-abi.c: Ditto.
9890 * gnu-v3-abi.c: Ditto.
9891 * go32-nat.c: Ditto.
9892 * gdbarch.c: Regenerate.
9893 * gdbarch.h: Regenerate.
9894
9895 2011-01-07 Michael Snyder <msnyder@vmware.com>
9896
9897 * ax-gdb.c: Adjust some long output strings.
9898 * breakpoint.c: Ditto.
9899 * charset.c: Ditto.
9900 * cp-abi.c: Ditto.
9901 * infcall.c: Ditto.
9902 * infrun.c: Ditto.
9903 * linux-nat.c: Ditto.
9904 * solib-pa64.c: Ditto.
9905 * solib-som.c: Ditto.
9906
9907 2011-01-06 Tom Tromey <tromey@redhat.com>
9908
9909 PR python/12367:
9910 * NEWS: Add item.
9911 * python/python.c (GdbMethods): Add "newest_frame" method.
9912 * python/python-internal.h (gdbpy_newest_frame): Declare.
9913 * python/py-frame.c (gdbpy_newest_frame): New function.
9914
9915 2010-01-06 Paul Pluzhnikov <ppluzhnikov@google.com>
9916
9917 * jit.h (struct jit_code_entry): use ULONGEST for symfile_size.
9918 * jit.c (jit_debug): New variable.
9919 (show_jit_debug): New function.
9920 (struct target_buffer): Use ULONGEST.
9921 (bfd_open_from_target_memory): Likewise.
9922 (jit_register_code, jit_inferior_init): Add debug output.
9923 (_initialize_jit): Register "debug jit" command.
9924
9925 2011-01-06 Tom Tromey <tromey@redhat.com>
9926
9927 * frame.h (enum frame_type) <INLINE_FRAME>: Fix comment.
9928 * python/py-frame.c (gdbpy_initialize_frames): Add INLINE_FRAME
9929 and ARCH_FRAME.
9930
9931 2011-01-06 Tom Tromey <tromey@redhat.com>
9932
9933 * python/py-frame.c (frapy_block): Use get_frame_block.
9934
9935 2011-01-06 Joel Brobecker <brobecker@adacore.com>
9936
9937 Do not stop on SIGPRIO signals by default
9938 * infrun.c (_initialize_infrun): Unset signal_stop and
9939 signal_print for TARGET_SIGNAL_PRIO.
9940
9941 2011-01-06 Joel Brobecker <brobecker@adacore.com>
9942
9943 * ada-tasks.c: Fix style violation in comment.
9944
9945 2011-01-06 Joel Brobecker <brobecker@adacore.com>
9946
9947 * linespec.c (decode_compound, find_method): Remove trailing \n
9948 at end of error string.
9949 * solib-irix.c (irix_current_sos): Likewise.
9950 * varobj.c (uninstall_variable): Likewise.
9951
9952 2011-01-06 Joel Brobecker <brobecker@adacore.com>
9953
9954 * copyright.py: New script.
9955 * copyright.sh (byhand): Add *.ads, *.adb, *.gpr and *.inc.
9956 Launch emacs without exec'ing. Call copyright.py afterwards.
9957
9958 2011-01-05 Michael Snyder <msnyder@vmware.com>
9959
9960 * addrmap.c: Shorten lines of >= 80 columns.
9961 * arch-utils.c: Ditto.
9962 * arch-utils.h: Ditto.
9963 * ax-gdb.c: Ditto.
9964 * ax-general.c: Ditto.
9965 * bcache.c: Ditto.
9966 * blockframe.c: Ditto.
9967 * breakpoint.c: Ditto.
9968 * buildsym.c: Ditto.
9969 * c-lang.c: Ditto.
9970 * c-typeprint.c: Ditto.
9971 * charset.c: Ditto.
9972 * coffread.c: Ditto.
9973 * command.h: Ditto.
9974 * corelow.c: Ditto.
9975 * cp-abi.c: Ditto.
9976 * cp-namespace.c: Ditto.
9977 * cp-support.c: Ditto.
9978 * dbug-rom.c: Ditto.
9979 * dbxread.c: Ditto.
9980 * defs.h: Ditto.
9981 * dfp.c: Ditto.
9982 * dfp.h: Ditto.
9983 * dictionary.c: Ditto.
9984 * disasm.c: Ditto.
9985 * doublest.c: Ditto.
9986 * dwarf2-frame.c: Ditto.
9987 * dwarf2expr.c: Ditto.
9988 * dwarf2loc.c: Ditto.
9989 * dwarf2read.c: Ditto.
9990 * elfread.c: Ditto.
9991 * eval.c: Ditto.
9992 * event-loop.c: Ditto.
9993 * event-loop.h: Ditto.
9994 * exceptions.h: Ditto.
9995 * exec.c: Ditto.
9996 * expprint.c: Ditto.
9997 * expression.h: Ditto.
9998 * f-lang.c: Ditto.
9999 * f-valprint.c: Ditto.
10000 * findcmd.c: Ditto.
10001 * frame-base.c: Ditto.
10002 * frame-unwind.c: Ditto.
10003 * frame-unwind.h: Ditto.
10004 * frame.c: Ditto.
10005 * frame.h: Ditto.
10006 * gcore.c: Ditto.
10007 * gdb-stabs.h: Ditto.
10008 * gdb_assert.h: Ditto.
10009 * gdb_dirent.h: Ditto.
10010 * gdb_obstack.h: Ditto.
10011 * gdbcore.h: Ditto.
10012 * gdbtypes.c: Ditto.
10013 * gdbtypes.h: Ditto.
10014 * inf-ttrace.c: Ditto.
10015 * infcall.c: Ditto.
10016 * infcmd.c: Ditto.
10017 * inflow.c: Ditto.
10018 * infrun.c: Ditto.
10019 * inline-frame.h: Ditto.
10020 * language.c: Ditto.
10021 * language.h: Ditto.
10022 * libunwind-frame.c: Ditto.
10023 * libunwind-frame.h: Ditto.
10024 * linespec.c: Ditto.
10025 * linux-nat.c: Ditto.
10026 * linux-nat.h: Ditto.
10027 * linux-thread-db.c: Ditto.
10028 * machoread.c: Ditto.
10029 * macroexp.c: Ditto.
10030 * macrotab.c: Ditto.
10031 * main.c: Ditto.
10032 * maint.c: Ditto.
10033 * mdebugread.c: Ditto.
10034 * memattr.c: Ditto.
10035 * minsyms.c: Ditto.
10036 * monitor.c: Ditto.
10037 * monitor.h: Ditto.
10038 * objfiles.c: Ditto.
10039 * objfiles.h: Ditto.
10040 * osabi.c: Ditto.
10041 * p-typeprint.c: Ditto.
10042 * p-valprint.c: Ditto.
10043 * parse.c: Ditto.
10044 * printcmd.c: Ditto.
10045 * proc-events.c: Ditto.
10046 * procfs.c: Ditto.
10047 * progspace.c: Ditto.
10048 * progspace.h: Ditto.
10049 * psympriv.h: Ditto.
10050 * psymtab.c: Ditto.
10051 * record.c: Ditto.
10052 * regcache.c: Ditto.
10053 * regcache.h: Ditto.
10054 * remote-fileio.c: Ditto.
10055 * remote.c: Ditto.
10056 * ser-mingw.c: Ditto.
10057 * ser-tcp.c: Ditto.
10058 * ser-unix.c: Ditto.
10059 * serial.c: Ditto.
10060 * serial.h: Ditto.
10061 * solib-frv.c: Ditto.
10062 * solib-irix.c: Ditto.
10063 * solib-osf.c: Ditto.
10064 * solib-pa64.c: Ditto.
10065 * solib-som.c: Ditto.
10066 * solib-sunos.c: Ditto.
10067 * solib-svr4.c: Ditto.
10068 * solib-target.c: Ditto.
10069 * solib.c: Ditto.
10070 * somread.c: Ditto.
10071 * source.c: Ditto.
10072 * stabsread.c: Ditto.
10073 * stabsread.c: Ditto.
10074 * stack.c: Ditto.
10075 * stack.h: Ditto.
10076 * symfile-mem.c: Ditto.
10077 * symfile.c: Ditto.
10078 * symfile.h: Ditto.
10079 * symmisc.c: Ditto.
10080 * symtab.c: Ditto.
10081 * symtab.h: Ditto.
10082 * target-descriptions.c: Ditto.
10083 * target-memory.c: Ditto.
10084 * target.c: Ditto.
10085 * target.h: Ditto.
10086 * terminal.h: Ditto.
10087 * thread.c: Ditto.
10088 * top.c: Ditto.
10089 * tracepoint.c: Ditto.
10090 * tracepoint.h: Ditto.
10091 * ui-file.c: Ditto.
10092 * ui-file.h: Ditto.
10093 * ui-out.h: Ditto.
10094 * user-regs.c: Ditto.
10095 * user-regs.h: Ditto.
10096 * utils.c: Ditto.
10097 * valarith.c: Ditto.
10098 * valops.c: Ditto.
10099 * valprint.c: Ditto.
10100 * valprint.h: Ditto.
10101 * value.c: Ditto.
10102 * varobj.c: Ditto.
10103 * varobj.h: Ditto.
10104 * vec.h: Ditto.
10105 * xcoffread.c: Ditto.
10106 * xcoffsolib.c: Ditto.
10107 * xcoffsolib.h: Ditto.
10108 * xml-syscall.c: Ditto.
10109 * xml-tdesc.c: Ditto.
10110
10111 2011-01-05 Michael Snyder <msnyder@vmware.com>
10112
10113 * cli/cli-cmds.c: Shorten lines of >= 80 columns.
10114 * cli/cli-decode.c: Ditto.
10115 * cli/cli-dump.c: Ditto.
10116 * cli/cli-logging.c: Ditto.
10117 * cli/cli-script.c: Ditto.
10118 * cli/cli-setshow.c: Ditto.
10119 * common/signals.c: Ditto.
10120 * mi/mi-cmd-break.c: Ditto.
10121 * mi/mi-cmd-disas.c: Ditto.
10122 * mi/mi-cmd-stack.c: Ditto.
10123 * mi/mi-cmd-var.c: Ditto.
10124 * mi/mi-cmds.c: Ditto.
10125 * mi/mi-common.h: Ditto.
10126 * mi/mi-console.c: Ditto.
10127 * mi/mi-interp.c: Ditto.
10128 * mi/mi-main.c: Ditto.
10129 * osf-share/cma_attr.c: Ditto.
10130 * osf-share/cma_deb_core.h: Ditto.
10131 * osf-share/cma_debug_client.h: Ditto.
10132 * osf-share/cma_handle.h: Ditto.
10133 * osf-share/cma_mutex.h: Ditto.
10134 * osf-share/cma_stack_int.h: Ditto.
10135 * osf-share/cma_tcb_defs.h: Ditto.
10136 * python/py-auto-load.c: Ditto.
10137 * python/py-breakpoint.c: Ditto.
10138 * python/py-cmd.c: Ditto.
10139 * python/py-frame.c: Ditto.
10140 * python/py-objfile.c: Ditto.
10141 * python/py-param.c: Ditto.
10142 * python/py-progspace.c: Ditto.
10143 * python/py-symbol.c: Ditto.
10144 * python/py-value.c: Ditto.
10145 * python/python-internal.h: Ditto.
10146 * python/python.c: Ditto.
10147 * tui/tui-data.c: Ditto.
10148 * tui/tui-disasm.c: Ditto.
10149 * tui/tui-hooks.c: Ditto.
10150 * tui/tui-io.c: Ditto.
10151 * tui/tui-layout.c: Ditto.
10152 * tui/tui-regs.c: Ditto.
10153 * tui/tui-source.c: Ditto.
10154 * tui/tui-stack.c: Ditto.
10155 * tui/tui-win.c: Ditto.
10156 * tui/tui-windata.c: Ditto.
10157 * tui/tui-winsource.c: Ditto.
10158
10159 2011-01-05 Joel Brobecker <brobecker@adacore.com>
10160
10161 * configure.ac, gdb.1: Copyright year update.
10162
10163 2011-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10164
10165 * frame.c (get_prev_frame_1) <UNWIND_INNER_ID>: New variables
10166 this_pc_in_block, morestack_msym and morestack_name. Check for
10167 "__morestack" minimal symbol there.
10168
10169 2011-01-03 Joel Brobecker <brobecker@adacore.com>
10170
10171 * symfile.c (find_sym_fns): Add call to dont_repeat.
10172
10173 2011-01-01 Joel Brobecker <brobecker@adacore.com>
10174
10175 Copyright year update in most files (performed by copyright.sh).
10176
10177 2011-01-01 Joel Brobecker <brobecker@adacore.com>
10178
10179 * top.c (print_gdb_version): Update copyright year in version output.
10180
10181 For older changes see ChangeLog-2010.
10182 \f
10183 Local Variables:
10184 mode: change-log
10185 left-margin: 8
10186 fill-column: 74
10187 version-control: never
10188 coding: utf-8
10189 End:
This page took 0.240739 seconds and 4 git commands to generate.