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