2011-02-28 Michael Snyder <msnyder@vmware.com>
[platform/upstream/binutils.git] / gdb / ChangeLog
1 2011-02-28  Michael Snyder  <msnyder@vmware.com>
2
3         * linux-record.c (record_linux_system_call): Add missing
4         break statement.
5
6 2011-02-28  Ulrich Weigand  <uweigand@de.ibm.com>
7
8         * breakpoint.c (print_one_breakpoint_location): Remove unused
9         argument PRINT_ADDRESS_BITS.  Update callers.
10         (print_one_breakpoint): Likewise.
11
12 2011-02-28  Ulrich Weigand  <uweigand@de.ibm.com>
13
14         * breakpoint.c (wrap_indent_at_field): New function.
15         (print_breakpoint_location): Use it instead of WRAP_INDENT argument.
16         Allocate ui_stream locally instead of using STB argument.
17         (print_one_breakpoint_location): Update call.
18         * ui-out.c (ui_out_query_field): New function.
19         * ui-out.h (ui_out_query_field): Add prototype.
20
21 2011-02-28  Joel Brobecker  <brobecker@adacore.com>
22
23         From Michael Snyder  <msnyder@vmware.com>
24         * ada-exp.y (write_object_renaming): Add FALLTHROUGH comment.
25
26 2011-02-27  Michael Snyder  <msnyder@vmware.com>
27
28         * objc-lang.c (selectors_info): Prevent string overrun.
29
30         * tui/tui-stack.c (tui_get_function_from_frame): Fix off by one
31         error in strncpy.
32
33         * symtab.c (rbreak_command): Move variable 'file_name' to 
34         outer scope.
35
36         * d-valprint.c (dynamic_array_type): Avoid shadowing a function
37         param with a local variable of the same name.
38
39 2011-02-27  Michael Snyder  <msnyder@vmware.com>
40
41         * value.c (value_from_history_ref): New function.
42         * value.h (value_from_history_ref): Export.
43         * cli/cli-utils.c (get_number_trailer): Use value_from_history_ref
44         to parse value history references.
45         * cli/cli-utils.h (get_number_trailer): Update comment.
46
47 2011-02-27  Michael Snyder  <msnyder@vmware.com>
48
49         * inferior.c (detach_inferior_command): Use get_number_or_range.
50         (kill_inferior_command): Ditto.
51         (remove_inferior_command): Ditto.
52         (initialize_inferiors): Make command names plural.
53         Update help strings.
54
55 2011-02-27  Michael Snyder  <msnyder@vmware.com>
56
57         * darwin-nat-info.c: Fix comment typo.
58         * dwarf2expr.h: Ditto.
59         * fbsd-nat.c: Ditto.
60         * fbsd-nat.h: Ditto.
61         * frame-unwind.h: Ditto.
62         * frame.h: Ditto.
63         * hppa-hpux-tdep.c: Ditto.
64         * i386-linux-nat.c: Ditto.
65         * linux-nat.c: Ditto.
66         * nbsd-nat.c: Ditto.
67         * nbsd-nat.h: Ditto.
68         * ppc-linux-tdep.c: Ditto.
69         * serial.c: Ditto.
70         * ui-file.h: Ditto.
71         * tui/tui-winsource.c: Ditto.
72
73 2011-02-26  Michael Snyder  <msnyder@vmware.com>
74
75         * breakpoint.c (reattach_breakpoints): Avoid resource leak (ui_file).
76
77         * maint.c (maintenance_do_deprecate): Plug a memory leak.
78
79         * dwarf2loc.c (insert_bits): Avoid shadowing a function param
80         with a local variable of the same name.
81
82         * i387-tdep.c (i387_supply_fxsave): Avoid shadowing a function
83         param with a local variable of the same name.
84         (i387_supply_xsave): Ditto.
85
86         * linux-low.c (linux_nat_xfer_osdata): Rename local variable so
87         that it does not shadow a function parameter.
88
89         * i386-nat.c (i386_length_and_rw_bits): Document that case
90         statement is meant to fall through.
91
92         * expprint.c (dump_subexp_body_standard): Document that case
93         statement is meant to fall through.
94
95         * amd64-linux-tdep.c (amd64_linux_syscall_record): Delete
96         dead if statement.  Condition can't be false.
97
98 2011-02-25  Michael Snyder  <msnyder@vmware.com>
99
100         * arm-tdep.c: Fix typos in comments.
101         * bsd-uthread.c: Ditto.
102         * completer.c: Ditto.
103         * corelow.c: Ditto.
104         * cp-namespace.c: Ditto.
105         * cp-support.c: Ditto.
106         * cris-tdep.c: Ditto.
107         * dbxread.c: Ditto.
108         * dwarf2read.c: Ditto.
109         * frame.h: Ditto.
110         * gdbtypes.h: Ditto.
111         * inferior.h: Ditto.
112         * mdebugread.c: Ditto.
113         * mips-tdep.c: Ditto.
114         * ppc-linux-nat.c: Ditto.
115         * ppc-linux-tdep.c: Ditto.
116         * printcmd.c: Ditto.
117         * sol-thread.c: Ditto.
118         * solib-frv.c: Ditto.
119         * solist.h: Ditto.
120         * sparc64-tdep.c: Ditto.
121         * spu-tdep.c: Ditto.
122         * stabsread.c: Ditto.
123         * symfile.c: Ditto.
124         * valops.c: Ditto.
125         * varobj.c: Ditto.
126         * vax-nat.c: Ditto.
127         * python/py-block.c: Ditto.
128         * python/py-symbol.c: Ditto.
129         * python/py-symtab.c: Ditto.
130         * python/py-value.c: Ditto.
131         * tui/tui-win.c: Ditto.
132
133 2011-02-25  Michael Snyder  <msnyder@vmware.com>
134
135         * inferior.c (print_inferior): Accept a string instead of an int
136         for requested_inferiors, and use get_number_or_range to parse it.
137         (info_inferiors_command): Pass args string to print_inferior.
138         (initialize_inferiors): Change help string for info inferiors.
139         * inferior.h (print_inferior): Export prototype change.
140
141 2011-02-25  Tom Tromey  <tromey@redhat.com>
142
143         * common/ax.def (invalid2): Set to 0x31.
144
145 2011-02-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
146
147         * dwarf2loc.c (disassemble_dwarf_expression) <DW_OP_breg[0-9]+>: Use
148         L and plongest.
149         (disassemble_dwarf_expression) <DW_OP_bregx>: Drop variable offset,
150         use L and plongest.
151         (disassemble_dwarf_expression) <DW_OP_fbreg>: Use L and plongest.
152
153 2011-02-24  Michael Snyder  <msnyder@vmware.com>
154
155         * Makefile.in (clean): Make clean should remove generated files
156         observer.h and observer.inc.
157
158 2011-02-24  Joel Brobecker  <brobecker@adacore.com>
159
160         Revert the following patch (not approved yet):
161         2011-02-21  Hui Zhu  <teawater@gmail.com>
162         * Makefile.in (HFILES_NO_SRCDIR): Add printcmd.h.
163         * ax-gdb.c (gen_printf_expr_callback): New function.
164         * ax-gdb.h (gen_printf_expr_callback): Forward declare.
165         * ax-general.c (ax_memcpy): New function.
166         (ax_print): Handle "printf".
167         (ax_reqs): Ditto.
168         * ax.h (ax_memcpy): Forward declare.
169         * common/ax.def (invalid2): Removed.
170         (printf): New entry.
171         * printcmd.c (printcmd.h): New include.
172         (string_printf): New function.
173         (ui_printf): Removed.
174         (printf_command): Remove static.  Call string_printf.
175         (eval_command): Call string_printf.
176         * printcmd.h: New file.
177         * tracepoint.c (validate_actionline,
178         encode_actions_1): handle printf_command.
179
180 2011-02-23  Tom Tromey  <tromey@redhat.com>
181
182         * ax-general.c (ax_pick): Add missing newline.
183
184 2011-02-23  Michael Snyder  <msnyder@vmware.com>
185
186         * breakpoint.c (breakpoint_1): Change first argument from an int
187         to a char pointer, so that the function now accepts a list of
188         breakpoints rather than just one.  Use new function 
189         'number_is_in_list' to implement.
190         (breakpoints_info): Pass char * instead of int to breakpoint_1.
191         (watchpoints_info): Ditto.
192         (tracepoints_info): Ditto.
193         (maintenance_info_breakpoints): Ditto.
194         (_initialize_breakpoint): Update help strings to reflect the fact
195         that these functions can now take more than one argument.
196         * cli/cli-utils.c (number_is_in_list): New function.
197         * cli/cli-utils.h (number_is_in_list): Export.
198
199 2011-02-23  Michael Snyder  <msnyder@vmware.com>
200
201         * memattr.c (mem_enable_command): Use get_number_or_range.
202         (mem_disable_command): Ditto.
203         (mem_delete_command): Ditto.
204         (_initialize_mem): Tweak usage message to reflect multiple
205         arguments.
206
207 2011-02-22  Doug Evans  <dje@google.com>
208
209         Add gdb.lookup_global_symbol python function.
210         * NEWS: Add entry.
211         * python/py-symbol.c (gdbpy_lookup_global_symbol): New function.
212         * python/python-internal.h (gdbpy_lookup_global_symbol): Declare it.
213         * python/python.c (GdbMethods): Add entry for lookup_global_symbol.
214
215 2011-02-22  Tom Tromey  <tromey@redhat.com>
216
217         * language.c (language_class_name_from_physname): Rename
218         'curr_language' argument to 'lang'; use in body.
219
220 2011-02-22  Michael Snyder  <msnyder@vmware.com>
221
222         * cli/cli-utils.c (number_is_in_list): Check for zero return.
223
224 2011-02-22  Pedro Alves  <pedro@codesourcery.com>
225
226         * frame-unwind.h: Fix comment to mention the this frame, not the
227         next.
228
229 2011-02-22  Tom Tromey  <tromey@redhat.com>
230
231         * symfile.c (auto_solib_limit): Remove.
232         * symfile.h (auto_solib_limit): Remove.
233
234 2011-02-22  Joel Brobecker  <brobecker@adacore.com>
235
236         * Makefile.in (INSTALLED_LIBS): Delete.  Update comment.
237
238 2011-02-21  Michael Snyder  <msnyder@vmware.com>
239
240         * gdbthread.h (print_thread_info): Change prototype.
241         * thread.c (print_thread_info): Accept char* instead of int for
242         requested_threads argument.  Use new function number_is_in_list
243         to determine which threads to list.
244         (info_threads_command): Pass char* to print_thread_info.
245         * cli/cli-utils.c (number_is_in_list): New function.
246         * cli/cli-utils.h (number_is_in_list): Export.
247         * mi/mi-main.c (mi_cmd_thread_info): Pass char* to 
248         print_thread_info.
249         (print_one_inferior): Ditto.
250         (mi_cmd_list_thread_groups): Ditto.
251
252 2011-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
253
254         * common/Makefile.in (CFLAGS): New.
255         (COMPILE): Add $(CFLAGS).
256
257 2011-02-21  Tom Tromey  <tromey@redhat.com>
258
259         * breakpoint.c (catch_syscall_command_1): Fix typo.
260
261 2011-02-21  Tom Tromey  <tromey@redhat.com>
262
263         * reverse.c: Include cli-utils.h.
264         * printcmd.c: Include cli-utils.h.
265         (string_printf): Use skip_spaces.
266         * cli/cli-utils.h: New file.
267         * cli/cli-utils.c: New file.
268         * cli/cli-dump.h (skip_spaces): Move to cli-utils.h.
269         * cli/cli-dump.c (skip_spaces): Move to cli-utils.c.
270         * breakpoint.h (get_number, get_number_or_range): Move to
271         cli-utils.h.
272         * breakpoint.c: Include cli-utils.h.
273         (get_number_trailer, get_number, get_number_or_range)
274         (ep_skip_leading_whitespace): Move to cli-utils.c.
275         (create_breakpoint_sal, find_condition_and_thread)
276         (decode_static_tracepoint_spec, watch_command_1)
277         (watch_maybe_just_location, ep_parse_optional_if_clause)
278         (catch_fork_command_1, catch_exec_command_1)
279         (catch_syscall_command_1): Use skip_spaces, skip_to_space.
280         * Makefile.in (SUBDIR_CLI_OBS): Add cli-utils.o.
281         (SUBDIR_CLI_SRCS): Add cli-utils.c.
282         (HFILES_NO_SRCDIR): Add cli-utils.h.
283         (cli-utils.o): New target.
284
285 2011-02-18  Pierre Muller  <muller@ics.u-strasbg.fr>
286
287         * remote.c (remote_close): Reset INFERIOR_PTID to NULL_PTID
288         before calling discard_all_inferiors.
289
290 2011-02-21  Ulrich Weigand  <uweigand@de.ibm.com>
291
292         * opencl-lang.c (STRUCT_OCL_TYPE): Remove.
293         (struct builtin_opencl_type): Remove.
294         (builtin_opencl_type): Change return type to "struct type **".
295         (lookup_opencl_vector_type): Update caller.
296         (opencl_language_arch_info): Copy primitive type vector from gdbarch.
297         (build_opencl_types): Install plain array of "struct type *"
298         instead of "struct builtin_opencl_type".
299
300 2011-02-21  Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
301             Ulrich Weigand  <uweigand@de.ibm.com>
302
303         * arm-linux-nat.c: Include "observer.h" and "gdbthread.h".
304         (PTRACE_GETHBPREGS, PTRACE_SETHBPREGS): Define.
305         (struct arm_linux_hwbp_cap): New type.
306         (arm_linux_get_hwbp_cap): New function.
307         (arm_linux_get_hw_breakpoint_count): Likewise.
308         (arm_linux_get_hw_watchpoint_count): Likewise.
309         (arm_linux_can_use_hw_breakpoint): Likewise.
310         (arm_hwbp_type): New type.
311         (arm_hwbp_control_t): Likewise.
312         (struct arm_linux_hw_breakpoint): Likewise.
313         (struct arm_linux_thread_points): Likewise.
314         (arm_threads): New global variable.
315         (arm_linux_find_breakpoints_by_tid): New function.
316         (arm_hwbp_control_initialize): Likewise.
317         (arm_hwbp_control_is_enabled): Likewise.
318         (arm_hwbp_control_disable): Likewise.
319         (arm_linux_hw_breakpoint_initialize): Likewise.
320         (arm_linux_get_hwbp_type): Likewise.
321         (arm_linux_hw_watchpoint_initialize): Likewise.
322         (arm_linux_hw_breakpoint_equal): Likewise.
323         (arm_linux_insert_hw_breakpoint1): Likewise.
324         (arm_linux_remove_hw_breakpoint1): Likewise.
325         (arm_linux_insert_hw_breakpoint): Likewise.
326         (arm_linux_remove_hw_breakpoint): Likewise.
327         (arm_linux_region_ok_for_hw_watchpoint): Likewise.
328         (arm_linux_insert_watchpoint): Likewise.
329         (arm_linux_remove_watchpoint): Likewise.
330         (arm_linux_stopped_data_address): Likewise.
331         (arm_linux_stopped_by_watchpoint): Likewise.
332         (arm_linux_watchpoint_addr_within_range): Likewise.
333         (arm_linux_new_thread): Likewise.
334         (arm_linux_thread_exit): Likewise.
335         (_initialize_arm_linux_nat): Install hardware breakpoint/watchpoint
336         related target callbacks.  Register arm_linux_new_thread and
337         arm_linux_thread_exit.
338         * arm-tdep.h (arm_pc_is_thumb): Add prototype.
339         * arm-tdep.c (arm_pc_is_thumb): Make global.
340         (arm_gdbarch_init): Call set_gdbarch_have_nonsteppable_watchpoint.
341
342 2011-02-21  Ulrich Weigand  <uweigand@de.ibm.com>
343
344         * breakpoint.c (update_watchpoint): Do not attempt to recreate
345         per-frame locations while within a function epilogue.
346
347 2011-02-21  Pierre Muller  <muller@ics.u-strasbg.fr>
348
349         * ser-mingw.c (ser_windows_close): Reformat comment to better conform
350         to GNU coding standards.
351
352 2011-02-21  Pierre Muller  <muller@ics.u-strasbg.fr>
353
354         Allow use of mingw native on Windows 95 OS.
355         * ser-mingw.c (CancelIo): New macro for dynamically loaded DLL entry.
356         (ser_windows_close): Only call CancelIo if function exists.
357         (_initialize_ser_windows): Use LoadLirary/GetProcAddress
358         to check for existence of CancelIo function in kernel32 DLL.
359
360 2011-02-21  Hui Zhu  <teawater@gmail.com>
361
362         * Makefile.in (HFILES_NO_SRCDIR): Add printcmd.h.
363         * ax-gdb.c (gen_printf_expr_callback): New function.
364         * ax-gdb.h (gen_printf_expr_callback): Forward declare.
365         * ax-general.c (ax_memcpy): New function.
366         (ax_print): Handle "printf".
367         (ax_reqs): Ditto.
368         * ax.h (ax_memcpy): Forward declare.
369         * common/ax.def (invalid2): Removed.
370         (printf): New entry.
371         * printcmd.c (printcmd.h): New include.
372         (string_printf): New function.
373         (ui_printf): Removed.
374         (printf_command): Remove static.  Call string_printf.
375         (eval_command): Call string_printf.
376         * printcmd.h: New file.
377         * tracepoint.c (validate_actionline,
378         encode_actions_1): handle printf_command.
379
380 2011-02-19  Michael Snyder  <msnyder@vmware.com>
381
382         * reverse.c (delete_one_bookmark): Argument is now bookmark
383         id rather than pointer to bookmark struct.
384         (delete_bookmark_command): Use get_number_or_range.
385         (goto_bookmark_command): Parse with get_number instead of strtoul.
386         (bookmark_1): New function.  Print info for one bookmark.
387         (bookmarks_info): Use get_number_or_range and bookmark_1.
388
389 2011-02-18  Michael Snyder  <msnyder@vmware.com>
390
391         * thread.c (info_threads_command): Re-implement using 
392         get_number_or_range.
393         (thread_apply_command): Ditto.
394
395 2011-02-18  Tom Tromey  <tromey@redhat.com>
396
397         * common/ax.def: New file.
398         * ax.h (enum agent_op): Use ax.def.
399         * ax-general.c (aop_map): Use ax.def.
400
401 2011-02-18  Tom Tromey  <tromey@redhat.com>
402
403         * ax-general.c (aop_map): Add pick and rot.
404         * dwarf2loc.c (compile_dwarf_to_ax) <DW_OP_over>: Reimplement.
405         <DW_OP_rot>: Implement.
406         * ax.h (enum agent_op) <aop_pick, aop_rot>: New constants.
407         (ax_pick): Declare.
408         * ax-general.c (ax_pick): New function.
409
410 2011-02-18  Tom Tromey  <tromey@redhat.com>
411
412         * Makefile.in (HFILES_NO_SRCDIR): Don't mention ada-operator.inc.
413
414 2011-02-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
415             Tom Tromey  <tromey@redhat.com>
416
417         * cp-support.c (make_symbol_overload_list_namespace): Do not call
418         make_symbol_overload_list_block with NULL BLOCK.
419         * valarith.c (unop_user_defined_p): Resolve also TYPE_CODE_TYPEDEF.
420
421 2011-02-18  Pedro Alves  <pedro@codesourcery.com>
422
423         * breakpoint.c (get_number_trailer): No longer accept a NULL PP.
424         * breakpoint.h (get_number_or_range): Declare.
425         * printcmd.c (ALL_DISPLAYS): Declare.
426         (delete_display): Reimplement taking a display pointer.
427         (undisplay_command): Accept a range of displays to delete, using
428         get_number_or_range.
429
430 2011-02-18  Pierre Muller  <muller@ics.u-strasbg.fr>
431
432         * c-valprint.c (c_val_print): Add embedded_offset to address
433         for arrays of unspecified length.
434         * p-valprint.c (pascal_val_print): Likewise.
435
436 2011-02-18  Yao Qi  <yao@codesourcery.com>
437
438         * gdb/arm-tdep.c (arm_displaced_step_copy_insn): Move code to ...
439         (arm_process_displaced_insn): .. here. Remove parameter INSN.
440         (thumb_process_displaced_insn): New.
441         * gdb/arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Update
442         call to arm_process_displaced_insn.
443         * gdb/arm-tdep.h : Update declaration of arm_process_displaced_insn.
444
445 2011-02-17  Tom Tromey  <tromey@redhat.com>
446
447         * dwarf2loc.h (dwarf2_compile_expr_to_ax): Declare.
448         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Rename from
449         compile_dwarf_to_ax.  No longer static.  Call
450         dwarf2_compile_cfa_to_ax.
451         (locexpr_tracepoint_var_ref): Update.
452         (loclist_tracepoint_var_ref): Update.
453         * dwarf2-frame.h (dwarf2_compile_cfa_to_ax): Declare.
454         * dwarf2-frame.c (execute_cfa_program): Remove 'this_frame'
455         argument; add 'gdbarch' and 'pc'.
456         (dwarf2_compile_cfa_to_ax): New function.
457         (dwarf2_frame_cache): Update.
458
459 2011-02-17  Joel Brobecker  <brobecker@adacore.com>
460
461         * ada-lang.c (ada_type_of_array): Fix the size of the array
462         in the case of an unconstrained packed array.
463
464 2011-02-17  Yao Qi  <yao@codesourcery.com>
465
466         * common/Makefile.in: Add more targets for make.
467
468 2011-02-16  Tom Tromey  <tromey@redhat.com>
469
470         * dwarf2loc.c (unimplemented): Fix typo.
471
472 2011-02-16  Tom Tromey  <tromey@redhat.com>
473
474         * dwarf2loc.c (unimplemented): Handle unnamed opcodes.
475         (compile_dwarf_to_ax) <default>: Use unimplemented.
476         <DW_OP_deref>: Update.
477         (disassemble_dwarf_expression): Update.
478         * dwarf2read.c (dwarf_stack_op_name): Remove 'def' argument.
479         (decode_locdesc): Update.
480         * dwarf2expr.h (dwarf_stack_op_name): Update.
481
482 2011-02-16  Tom Tromey  <tromey@redhat.com>
483
484         * ax.h (struct aop_map) <name>: Now const.
485
486 2011-02-16  Tom Tromey  <tromey@redhat.com>
487
488         * ax-gdb.c.c (gen_expr) <UNOP_MEMVAL>: Handle value kinds other
489         than axs_rvalue.
490
491 2011-02-16  Yao Qi  <yao@codesourcery.com>
492
493         * infrun.c (get_displaced_step_closure_by_addr): New.
494         * inferior.h: Declare it.
495         * arm-tdep.c: (arm_pc_is_thumb): Call
496         get_displaced_step_closure_by_addr.  Adjust MEMADDR if it
497         returns non-NULL.
498
499 2011-02-16  Pedro Alves  <pedro@codesourcery.com>
500             Jan Kratochvil  <jan.kratochvil@redhat.com>
501
502         gdb/
503         * tracepoint.c (memrange_sortmerge): Fix list A's end calculation.
504
505 2011-02-16  Pedro Alves  <pedro@codesourcery.com>
506             Jan Kratochvil  <jan.kratochvil@redhat.com>
507
508         * value.c (value_contents_copy_raw): Extend describing comment.
509         Assert that the destination contents we're overwriting are wholly
510         available.
511         (value_contents_copy): Extend describing comment.
512
513 2011-02-16  Pedro Alves  <pedro@codesourcery.com>
514             Jan Kratochvil  <jan.kratochvil@redhat.com>
515
516         * value.c (value_available_contents_eq): Remove redundant local
517         variables.  Fix available contents comparision.
518         * value.h (value_available_contents_eq): Extend describing
519         comment.
520
521 2011-02-16  Yao Qi  <yao@codesourcery.com>
522
523         * thread.c (info_threads_command): Add missing i18n markup and remove
524         trailing newline.
525
526 2011-02-15  Paul Pluzhnikov  <ppluzhnikov@google.com>
527
528         * breakpoint.c (longjmp_names): New variable.
529         (struct breakpoint_objfile_data): New type.
530         (breakpoint_objfile_key): New variable.
531         (msym_not_found): New variable.
532         (msym_not_found_p): New predicate.
533         (get_breakpoint_objfile_data): New function.
534         (create_overlay_event_breakpoint): Check per-objfile cache for
535         symbols first.
536         (create_longjmp_master_breakpoint): Likewise.
537         (create_std_terminate_master_breakpoint): Likewise.
538         (create_exception_master_breakpoint): Likewise.
539         (_initialize_breakpoint): Register per-objfile data key.
540
541 2011-02-15  Paul Pluzhnikov  <ppluzhnikov@google.com>
542
543         * breakpoint.c ((create_overlay_event_breakpoint): Const-propagate
544         parameter value.
545         (create_longjmp_master_breakpoint): Loop over longjmp names.
546         (create_std_terminate_master_breakpoint): Const-propagate parameter
547         value.
548         (update_breakpoints_after_exec): Adjust.
549         (breakpoint_re_set): Adjust.
550
551 2011-02-15  Michael Snyder  <msnyder@vmware.com>
552
553         * thread.c (info_threads_command): Process arg as thread id,
554         or list of thread ids.
555         (thread_find_command): New command.
556         (_initialize_thread): Document argument for info threads.
557         Document 'thread find' command.
558         * NEWS: Document new command "thread find".
559
560 2011-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
561
562         * Makefile.in (ACLOCAL_AMFLAGS): Add `-I ../config'.
563         * aclocal.m4: Regenerated with aclocal-1.11.1.
564         * common/configure: Regenerate with autoconf-2.64.
565
566 2011-02-15  Ken Werner  <ken.werner@de.ibm.com>
567
568         * opencl-lang.c (build_opencl_types): Set the size of the built-in
569         bool data type to a size of one byte.
570
571 2011-02-15  Pedro Alves  <pedro@codesourcery.com>
572             Jan Kratochvil  <jan.kratochvil@redhat.com>
573
574         * target.c (memory_xfer_live_readonly_partial): Document where to
575         look for interface description.
576
577 2011-02-15  Yao Qi  <yao@codesourcery.com>
578
579         PR tdep/12352
580         * arm-tdep.c (copy_ldr_str_ldrb_strb): Replace PC with SP in
581         order to store PC value on stack instead of text section.
582
583 2011-02-15  Thiago Jung Bauermann  <bauerman@br.ibm.com>
584
585         * rs6000-tdep.c (IS_EFP_PSEUDOREG): Use correct constant for
586         the EFP register set size.
587         (efpr_pseudo_register_read): Use regcache_raw_read_part to read
588         data from the VMX register.
589         (efpr_pseudo_register_write): Use regcache_raw_write_part to read
590         and write data from/to the VMX register.
591
592 2011-02-14  Michael Snyder  <msnyder@vmware.com>
593
594         * command.h (enum command_class): New class 'no_set_class', for
595         "show" commands without a corresponding "set" command.
596         * value.c (_initialize_values): Use 'no_set_class' for "show values".
597         * copying.c (_initialize_copying): Ditto for "show copying" and
598         "show warranty".
599         * cli/cli-cmds.c (init_cli_cmds): Ditto for "show commands" and
600         "show version".
601         * cli/cli-setshow.c (cmd_show_list): Skip "show" commands for
602         which there is no corresponding "set" command (eg. "show copying").
603
604 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
605             Jan Kratochvil  <jan.kratochvil@redhat.com>
606
607         * exec.c (section_table_available_memory): Change `len' parameter
608         type to ULONGEST.
609         * exec.h (section_table_available_memory): Ditto.
610         * value.h (read_value_memory): Rename the `offset' parameter to
611         `embedded_offset'.
612
613 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
614             Jan Kratochvil  <jan.kratochvil@redhat.com>
615
616         * memrange.c (compare_mem_ranges): Mention sort order in
617         describing comment.
618         (normalize_mem_ranges): Add comment.  Fix ra->length calculation.
619         * tracepoint.c (traceframe_available_memory): Extend comment to
620         mention what happens to RESULT when the target does not support
621         the query.
622
623 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
624             Jan Kratochvil  <jan.kratochvil@redhat.com>
625
626         * value.c (mark_value_bytes_unavailable): Fix indexing the `bef'
627         range.
628
629 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
630
631         * value.c (value_bits_valid, value_bits_synthetic_pointer):
632         No longer handle NULL values.
633
634 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
635
636         * exceptions.h (NOT_AVAILABLE_ERROR): New error.
637         * value.c: Include "exceptions.h".
638         (require_available): Throw NOT_AVAILABLE_ERROR instead of a
639         generic error.
640         * cp-abi.c: Include gdb_assert.h.
641         (baseclass_offset): Add `embedded_offset' and `val' parameters.
642         Assert the method is implemented.  Wrap NOT_AVAILABLE_ERROR
643         errors.
644         * cp-abi.h (baseclass_offset): Add `embedded_offset' and `val'
645         parameters.  No longer returns -1 on error.
646         (struct cp_abi_ops) <baseclass_offset>: Add `embedded_offset' and
647         `val' parameters.
648         * cp-valprint.c: Include exceptions.h.
649         (cp_print_value): Handle NOT_AVAILABLE_ERROR errors when fetching
650         the baseclass_offset.  Handle unavailable base classes.  Use
651         val_print_invalid_address.
652         * p-valprint.c: Include exceptions.h.
653         (pascal_object_print_value): Handle NOT_AVAILABLE_ERROR errors
654         when fetching the baseclass_offset.  No longer expect
655         baseclass_offset returning -1.  Handle unavailable base classes.
656         Use val_print_invalid_address.
657         * valops.c (dynamic_cast_check_1): Rename `contents' parameter to
658         `valaddr' parameter, and change its type to gdb_byte pointer.  Add
659         `embedded_offset' and `val' parameters.  Adjust.
660         (dynamic_cast_check_2): Rename `contents' parameter to `valaddr'
661         parameter, and change its type to gdb_byte pointer.  Add
662         `embedded_offset' and `val' parameters.  Adjust.  No longer expect
663         baseclass_offset returning -1.
664         (value_dynamic_cast): Use value_contents_for_printing rather than
665         value_contents.  Adjust.
666         (search_struct_field): No longer expect baseclass_offset returning
667         -1.
668         (search_struct_method): If reading memory from the target is
669         necessary, wrap it in a new value to pass to baseclass_offset.  No
670         longer expect baseclass_offset returning -1.
671         (find_method_list): No longer expect baseclass_offset returning
672         -1.  Use value_contents_for_printing rather than value_contents.
673         * valprint.c (val_print_invalid_address): New function.
674         * valprint.h (val_print_invalid_address): Declare.
675         * gdbtypes.c (is_unique_ancestor_worker): New `embedded_offset'
676         and `val' parameters.  No longer expect baseclass_offset returning
677         -1.  Adjust.
678         * gnu-v2-abi.c: Include "exceptions.h".
679         (gnuv2_baseclass_offset): Add `embedded_offset' and `val'
680         parameters.  Handle unavailable memory.  Recurse through
681         gnuv2_baseclass_offset directly, rather than through
682         baseclass_offset.  No longer returns -1 on not found, instead
683         throw an error.
684         * gnu-v3-abi.c (gnuv3_baseclass_offset): Add `embedded_offset' and
685         `val' parameters.  Adjust.
686
687 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
688
689         * tracepoint.c (memrange_sortmerge): Don't merge ranges that are
690         almost but not quite adjacent.
691
692 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
693
694         * value.h (value_entirely_available): Declare.
695         * value.c (value_entirely_available): New function.
696         * c-valprint.c (c_value_print): Don't try fetching the pointer's
697         real type if the pointer is unavailable.
698
699 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
700
701         * valops.c (value_repeat): Use read_value_memory instead of
702         read_memory.
703
704 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
705
706         * value.h (value_contents_copy, value_contents_copy_raw): Declare.
707         * value.c (value_contents_copy_raw, value_contents_copy): New
708         functions.
709         (value_primitive_field): Use value_contents_copy_raw instead of
710         memcpy.
711         * valops.c (value_fetch_lazy): Use value_contents_copy instead of
712         memcpy.
713         (value_array, value_slice): Ditto.
714         * valarith.c (value_subscripted_rvalue): Use
715         value_contents_copy_raw instead of memcpy.
716
717 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
718
719         <unavailable> references.
720
721         * valops.c (get_value_at): Use value_from_contents_and_address,
722         avoiding read_memory.
723
724 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
725
726         * c-valprint.c (c_val_print): Print a string with unavailable
727         contents as an array.
728
729 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
730
731         * value.h (unpack_bits_as_long): Delete declaration.
732         (unpack_value_bits_as_long): Declare.
733         (unpack_value_field_as_long): Declare.
734         (value_field_bitfield): Declare.
735         * value.c (unpack_bits_as_long): Rename to...
736         (unpack_value_bits_as_long_1): ... this.  Add embedded_offset and
737         value parameters.  Return the extracted result in a new output
738         parameter.  If the value contents are unavailable, return false,
739         otherwise return true.
740         (unpack_value_bits_as_long): New.
741         (unpack_field_as_long): Rename to...
742         (unpack_value_field_as_long_1): ... this.  Add embedded_offset and
743         Add embedded_offset and value parameters.  Return the extracted
744         result in a new output parameter. If the value contents are
745         unavailable, return false, otherwise return true.
746         (unpack_value_field_as_long): New.
747         (unpack_field_as_long_1): New.
748         (unpack_field_as_long): Reimplement as wrapper around
749         unpack_value_field_as_long_1.
750         (value_field_bitfield): New function.
751         * valops.c (value_fetch_lazy): When fetching a bitfield, use
752         unpack_value_bits_as_long.  Mark the value as unavailable, if it
753         is unavailable.
754         * jv-valprint.c (java_print_value_fields): Use
755         value_field_bitfield.
756         * p-valprint.c (pascal_object_print_value_fields): Use
757         value_field_bitfield.
758         * cp-valprint.c (cp_print_value_fields): Use value_field_bitfield.
759
760 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
761
762         * value.c (get_internalvar_integer): Also return the int value of
763         TYPE_CODE_INT INTERNALVAR_VALUE values.
764         (set_internalvar): Don't special case TYPE_CODE_INT.
765
766 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
767
768         * value.c (struct internalvar) <enum internalvar_kind>: Remove
769         INTERNALVAR_POINTER.
770         <pointer>: Delete.
771         (value_of_internalvar): Remove INTERNALVAR_POINTER handling.
772         (set_internalvar): Remove special TYPE_CODE_PTR handling.
773         (preserve_one_internalvar): Remove INTERNALVAR_POINTER handling.
774
775 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
776
777         * value.h (value_available_contents_eq): Declare.
778         * value.c (find_first_range_overlap): New function.
779         (value_available_contents_eq): New function.
780         * valprint.c (val_print_array_elements): Use
781         value_available_contents_eq.
782         * ada-valprint.c (val_print_packed_array_elements): Use
783         value_available_contents_eq.
784         * jv-valprint.c (java_value_print): Use
785         value_available_contents_eq.
786
787 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
788
789         * target.c (target_read_live_memory): New function.
790         (memory_xfer_live_readonly_partial): New.
791         (memory_xfer_partial): If reading from a traceframe, fallback to
792         reading unavailable read-only memory from read-only regions of
793         live target memory.
794         * tracepoint.c (disconnect_tracing): Adjust.
795         (set_current_traceframe): New, factored out from
796         set_traceframe_number.
797         (set_traceframe_number): Reimplement to only change the traceframe
798         number on the GDB side.
799         (do_restore_current_traceframe_cleanup): Adjust.
800         (make_cleanup_restore_traceframe_number): New.
801         (cur_traceframe_number): New global.
802         (tfile_open): Set cur_traceframe_number to no traceframe.
803         (set_tfile_traceframe): New function.
804         (tfile_trace_find): If looking up a traceframe using any method
805         other than by number, make sure the current tfile traceframe
806         matches gdb's current traceframe.  Update the current tfile
807         traceframe if the lookup succeeded.
808         (tfile_fetch_registers, tfile_xfer_partial)
809         (tfile_get_trace_state_variable_value): Make sure the remote
810         traceframe matches gdb's current traceframe.
811         * remote.c (remote_traceframe_number): New global.
812         (remote_open_1): Set it to -1.
813         (set_remote_traceframe): New function.
814         (remote_fetch_registers, remote_store_registers)
815         (remote_xfer_memory, remote_xfer_partial)
816         (remote_get_trace_state_variable_value): Make sure the remote
817         traceframe matches gdb's current traceframe.
818         (remote_trace_find): If looking up a traceframe using any method
819         other than by number, make sure the current remote traceframe
820         matches gdb's current traceframe.  Update the current remote
821         traceframe if the lookup succeeded.
822         * infrun.c (fetch_inferior_event): Adjust.
823         * tracepoint.h (set_current_traceframe): Declare.
824         (get_traceframe_number, set_traceframe_number): Add describing
825         comments.
826
827 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
828
829         Mark pieces of values as unavailable if the corresponding memory
830         is unavailable.
831
832         * valops.c: Include tracepoint.h.
833         (value_fetch_lazy): Use read_value_memory.
834         (read_value_memory): New.
835         * value.h (read_value_memory): Declare.
836         * dwarf2loc.c (read_pieced_value): Use read_value_memory.
837         * exec.c (section_table_available_memory): New function.
838         * exec.h (section_table_available_memory): Declare.
839
840 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
841
842         * Makefile.in (SFILES): Add memrange.c.
843         (HFILES_NO_SRCDIR): Add memrange.h.
844         (COMMON_OBS): Add memrange.o.
845         * memrange.c: New file.
846         * memrange.h: New file.
847         * tracepoint.c: Include memrange.h.
848         (struct mem_range): Delete.
849         (mem_range_s): Delete.
850         (traceframe_available_memory): New function.
851         * tracepoint.h (traceframe_available_memory): Declare.
852
853 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
854
855         * target.h (struct traceframe_info): Forward declare.
856         (enum target_object): Add TARGET_OBJECT_TRACEFRAME_INFO.
857         (struct target_ops) <to_traceframe_info>: New field.
858         (target_traceframe_info): New.
859         * target.c (update_current_target): Inherit and default
860         to_traceframe_info.
861         * remote.c (PACKET_qXfer_traceframe_info): New.
862         (remote_protocol_features): Register qXfer:traceframe-info:read.
863         (remote_xfer_partial): Handle TARGET_OBJECT_TRACEFRAME_INFO.
864         (remote_traceframe_info): New.
865         (init_remote_ops): Install it.
866         (_initialize_remote): Install "set/show remote traceframe-info"
867         commands.
868         * tracepoint.h (parse_traceframe_info): Declare.
869         * tracepoint.c (struct mem_range): New.
870         (mem_range_s): New typedef.
871         (struct traceframe_info): New.
872         (traceframe_info): New global.
873         (free_traceframe_info): New function.
874         (clear_traceframe_info): New function.
875         (start_tracing, tfind_1, set_traceframe_number): Clear traceframe
876         info.
877         (build_traceframe_info): New function.
878         (tfile_traceframe_info): New function.
879         (init_tfile_ops): Install tfile_traceframe_info.
880         (traceframe_info_start_memory, free_result): New functions.
881         (memory_attributes, traceframe_info_elements): New globals.
882         (parse_traceframe_info, get_traceframe_info): New functions.
883         * features/traceframe-info.dtd: New file.
884         * Makefile.in (XMLFILES): Add traceframe-info.dtd.
885
886 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
887
888         Base support for <unavailable> value contents.
889
890         * value.h (value_bytes_available): Declare.
891         (mark_value_bytes_unavailable): Declare.
892         * value.c (struct range): New struct.
893         (range_s): New typedef.
894         (ranges_overlap): New function.
895         (range_lessthan): New function.
896         (ranges_contain_p): New function.
897         (struct value) <unavailable>: New field.
898         (value_bytes_available): New function.
899         (mark_value_bytes_unavailable): New function.
900         (require_not_optimized_out): Constify parameter.
901         (require_available): New function.
902         (value_contents_all, value_contents): Require all bytes be
903         available.
904         (value_free): Free `unavailable'.
905         (value_copy): Copy `unavailable'.
906         * valprint.h (val_print_unavailable): Declare.
907         * valprint.c (valprint_check_validity): Rename `offset' parameter
908         to `embedded_offset'.  If printing a scalar, check whether the
909         value chunk is available.
910         (val_print_unavailable): New.
911         (val_print_scalar_formatted): Check whether the value is
912         available.
913         * python/py-prettyprint.c (apply_val_pretty_printer): Refuse
914         pretty-printing unavailable values.
915
916 2011-02-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
917
918         Fix const/volatile qualifiers of C++ types, PR c++/12328.
919         * c-typeprint.c (c_type_print_args): Update the function comment.  New
920         variable param_type, initialize it.  Remove const/volatile qualifiers
921         for language_cplus and !show_artificial.  Use param_type.
922
923 2011-02-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
924
925         * symtab.c (find_pc_sect_line): New variable objfile, initialize it
926         from S.  Iterate S using ALL_OBJFILE_SYMTABS.  Verify BV for each S.
927         * symtab.h (struct symtab) <next>: Comment extension.
928
929 2011-02-12  Yao Qi  <yao@codesourcery.com>
930
931         * Makefile.in (CLEANDIRS): Remove duplicated common dir.
932
933 2011-02-11  Yao Qi  <yao@codesourcery.com>
934
935         * common/Makefile.in: Add copyright header.
936
937 2011-02-11  Pedro Alves  <pedro@codesourcery.com>
938
939         * infrun.c (proceed): Move switching out and in of tfind mode from
940         here ...
941         (fetch_inferior_event): ... to here.
942
943 2011-02-11  Yao Qi  <yao@codesourcery.com>
944
945         * Makefile.in: Remove signals.o from COMMON_OBS.  Link
946         libcommon.a.
947         * configure.ac: Add common to sub dir.
948         * configure: Regenerate.
949
950 2011-02-11  Yao Qi  <yao@codesourcery.com>
951
952         Build libcommon.a.
953
954         * common/Makefile.in: New.
955         * common/configure.ac: New.
956         * common/aclocal.m4: New.
957         * common/configure: Generate.
958
959 2011-02-10  Pedro Alves  <pedro@codesourcery.com>
960
961         * vec.h (VEC_block_remove): Place VEC_ASSERT_INFO on the right
962         side of the parenthesis.
963
964         Merge from GCC:
965         2010-07-13  Jakub Jelinek  <jakub@redhat.com>
966         * vec.h (VEC_block_remove): Fix comment.
967
968 2011-02-08  Michael Snyder  <msnyder@vmware.com>
969
970         * linux-nat.c (linux_nat_filter_event): Fix typo in comment.
971
972 2011-02-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
973
974         * i386-tdep.c (i386_process_record): Rename l suffixes to d suffixes
975         in comments for pcmpgtd, pcmpeqd, psubd, paddd, pcmpgtd, pcmpeqd,
976         psubd and paddd.
977
978 2011-02-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
979
980         PR 12361.
981         * i386-tdep.c (i386_process_record) <0x660f3807>: Fix the comment to
982         phsubsw.
983         (i386_process_record) <lddqu>: Fix the opcode to 0xf20ff0.
984         (i386_process_record) <0x0f3807>: Fix the comment to phsubsw.
985
986 2011-02-08  Ulrich Weigand  <uweigand@de.ibm.com>
987
988         * dwarf2read.c (read_subroutine_type): Set special calling
989         convention flag for functions compiled by IBM XL C for OpenCL.
990         * ppc-sysv-tdep.c: Include "dwarf2.h"
991         (ppc_sysv_abi_push_dummy_call): Implement IBM OpenCL vector types
992         calling convention.
993         (do_ppc_sysv_return_value): Add FUNC_TYPE argument.  Implement
994         IBM OpenCL vector types calling convention.
995         (ppc_sysv_abi_return_value): Pass through FUNC_TYPE.
996         (ppc_sysv_abi_broken_return_value): Likewise.
997         (ppc64_sysv_abi_push_dummy_call): Implement IBM OpenCL vector
998         types calling convention.
999         (ppc64_sysv_abi_return_value): Likewise.
1000         * spu-tdep.c: Include "dwarf2.h"
1001         (spu_return_value): Implement IBM OpenCL vector types calling
1002         convention.
1003
1004 2011-02-08  Ulrich Weigand  <uweigand@de.ibm.com>
1005
1006         * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Implement
1007         correct ABI for AltiVec vector arguments.
1008
1009 2011-02-07  Pedro Alves  <pedro@codesourcery.com>
1010
1011         * valprint.c (val_print): Extend comment.
1012         * ada-valprint.c (ada_valprint): Rewrite comment deferring
1013         interface explanation to val_print.
1014         (ada_val_print_array): Adjust comment to current interface.
1015         (print_field_values): Adjust comment to current interface.
1016         * c-valprint.c (c_val_print): Rewrite comment deferring interface
1017         explanation to val_print.
1018         * f-valprint.c (f_val_print): Ditto.
1019         * jv-valprint.c (java_val_print): Ditto.
1020         * m2-valprint.c (m2_val_print): Ditto.
1021         * p-valprint.c (pascal_val_print): Ditto.
1022
1023 2011-02-07  Thiago Jung Bauermann  <bauerman@br.ibm.com>
1024
1025         * breakpoint.c (parse_breakpoint_sals): Fix description.
1026
1027 2011-02-04  Sami Wagiaalla  <swagiaal@redhat.com>
1028             Oguz Kayral <oguzkayral@gmail.com>
1029
1030         * python/py-inferior.c (python_on_normal_stop): New function.
1031         (python_on_resume): New function.
1032         (python_inferior_exit): New function.
1033         (gdbpy_initialize_inferior): Add normal_stop, target_resumed, and
1034         inferior_exit observers.
1035         * python/py-evtregistry.c: New file.
1036         * python/py-threadevent.c : New file.
1037         * python/py-event.c: New file.
1038         * python/py-evts.c: New file.
1039         * python/py-continueevent.c: New file.
1040         * python/py-bpevent.c: New file.
1041         * python/py-signalevent.c: New file.
1042         * python/py-exetiedevent.c: New file.
1043         * python/py-breakpoint.c (gdbpy_breakpoint_from_bpstats): New function.
1044         Move struct breakpoint_object from here...
1045         * python/python-internal.h: ... to here.
1046         * python/py-event.h: New file.
1047         * python/py-events.h: New file.
1048         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpointstopevent.o,
1049         py-continueevent.o, py-event.o, py-eventregistry.o, py-events.o,
1050         py-exitedevent.o, py-signalstopevent.o, and py-stopevent.o.
1051         (SUBDIR_PYTHON_SRCS): Add py-breakpointstopevent.c,
1052         py-continueevent.c, py-event.c, py-eventregistry.c, py-events.c,
1053         py-exitedevent.c, py-signalstopevent.c, and py-stopevent.c.
1054         Add build rules for all the above.
1055
1056 2011-02-04  Tom Tromey  <tromey@redhat.com>
1057
1058         * dwarf2read.c (dwarf2_section_empty_p): New function.
1059         (dwarf2_read_section): Use dwarf2_section_empty_p.
1060         (dwarf2_section_size): New function.
1061         (dwarf2_get_section_info): Unconditionally read section.
1062         (dwarf2_read_index): Use dwarf2_section_empty_p.
1063         (partial_read_comp_unit_head): Use dwarf2_section_size.
1064         (dwarf2_symbol_mark_computed): Likewise.
1065
1066 2011-02-04 David Daney <ddaney@caviumnetworks.com>
1067
1068         * NEWS: Add item for "catch syscall" on mips*-linux* targets.
1069
1070 2011-02-04 David Daney <ddaney@caviumnetworks.com>
1071
1072         * mips-linux-tdep.c: Include xml-syscall.h.
1073         (mips_linux_get_syscall_number): New function.
1074         (mips_linux_init_abi): Add calls to
1075         mips_linux_get_syscall_number() and set_xml_syscall_file_name().
1076         * data-directory/Makefile.in (SYSCALLS_FILES): Add
1077         mips-o32-linux.xml, mips-n32-linux.xml and mips-n64-linux.xml
1078         * syscalls/mips-n32-linux.xml: New file.
1079         * syscalls/mips-n64-linux.xml: New file.
1080         * syscalls/mips-o32-linux.xml: New file.
1081
1082 2011-02-04  Ulrich Weigand  <ulrich.weigand@linaro.org>
1083
1084         * dwarf2read.c (dwarf2_ranges_read): Skip empty range entries.
1085         Complain about inverted range entries.
1086         (dwarf2_record_block_ranges): Likewise.
1087
1088 2011-02-04  Thiago Jung Bauermann  <bauerman@br.ibm.com>
1089
1090         Fix some typos.
1091         * breakpoint.c (update_watchpoint): Fix name of the
1092         update_global_location_list function.
1093         (print_one_breakpoint): Fix typo.
1094         (_initialize_breakpoint): Remove extra space in hbreak help
1095         string.
1096         * breakpoint.h (struct bp_location) <length>: Fix field
1097         description.
1098
1099 2011-02-04  Pedro Alves  <pedro@codesourcery.com>
1100
1101         * regcache.c (registers_changed_ptid): Don't explictly always
1102         clear `current_regcache'.  Only clear current_thread_ptid and
1103         current_thread_arch when PTID matches.  Only reinit the frame
1104         cache if PTID matches the current inferior_ptid.  Move alloca(0)
1105         call to ...
1106         (registers_changed): ... here.
1107
1108 2011-02-03  Ulrich Weigand  <ulrich.weigand@linaro.org>
1109
1110         * arm-tdep.c (arm_skip_stack_protector): Accept any symbol that
1111         starts with __stack_chk_guard as stack guard symbol.
1112
1113 2011-02-03  Andrew Burgess  <aburgess@broadcom.com>
1114
1115         * disasm.c (compare_lines): Handle the end of sequence markers
1116         within the line table to better support disassembling over
1117         compilation unit boundaries.
1118
1119 2011-02-02  Ulrich Weigand  <ulrich.weigand@linaro.org>
1120
1121         * arm-tdep.c (skip_prologue_function): Add GDBARCH and IS_THUMB
1122         arguments.  Skip in-prologue calls to glibc __aeabi_read_tp
1123         implementation even if no symbols are available.
1124         (thumb_analyze_prologue): Update call to skip_prologue_function.
1125         (arm_analyze_prologue): Likewise.
1126
1127 2011-02-02  Ulrich Weigand  <ulrich.weigand@linaro.org>
1128
1129         * arm-tdep.c: Include "observer.h".
1130         (arm_prologue_this_id): Use frame PC if get_frame_func returns 0.
1131         (arm_exidx_data_key): New static variable.
1132         (struct arm_exidx_entry, arm_exidx_entry_s): New data types.
1133         (struct arm_exidx_data): Likewise.
1134         (arm_exidx_data_free): New function.
1135         (arm_compare_exidx_entries): Likewise.
1136         (arm_obj_section_from_vma): Likewise.
1137         (arm_exidx_new_objfile): Likewise.
1138         (arm_find_exidx_entry): Likewise.
1139         (arm_exidx_fill_cache): Likewise.
1140         (arm_exidx_unwind_sniffer): Likewise.
1141         (arm_exidx_unwind): New global variable.
1142         (arm_gdbarch_init): Append unwinder arm_exidx_unwind.
1143         (_initialize_arm_tdep): Attach arm_exidx_new_objfile to new_objfile
1144         observer.  Register arm_exidx_data_key as objfile data.
1145
1146 2011-02-02  Ulrich Weigand  <ulrich.weigand@linaro.org>
1147
1148         * arm-tdep.c (arm_analyze_load_stack_chk_guard): Avoid build break
1149         due to accessing uninitialized variable.  Fix indentation.
1150
1151 2011-02-02  Pedro Alves  <pedro@codesourcery.com>
1152
1153         * c-valprint.c (c_value_print): When doing virtual base pointer
1154         adjustment, create a new value with adjusted contents rather than
1155         changing the contents of the value being printed (and getting it
1156         wrong).
1157
1158 2011-02-02  Pedro Alves  <pedro@codesourcery.com>
1159
1160         * xml-support.c (xml_find_attribute): New.
1161         (xinclude_start_include): Use it.
1162         * xml-support.h (xml_find_attribute): Declare.
1163         * memory-map.c (memory_map_start_memory)
1164         (memory_map_start_property): Use xml_find_attribute.
1165         * osdata.c (osdata_start_osdata, osdata_start_column): Use
1166         xml_find_attribute.
1167         * remote.c (start_thread): Use xml_find_attribute.
1168         * solib-target.c (library_list_start_segment)
1169         (library_list_start_section, library_list_start_library)
1170         (library_list_start_list): Use xml_find_attribute.
1171         * xml-tdesc.c (tdesc_start_target, tdesc_start_feature)
1172         (tdesc_start_union, tdesc_start_struct, tdesc_start_flags)
1173         (tdesc_start_field): Use xml_find_attribute.
1174
1175 2011-02-02  Ulrich Weigand  <uweigand@de.ibm.com>
1176
1177         * opencl-lang.c (STRINGIFY): Rename to OCL_STRING.
1178         (BUILD_OCL_VTYPES): Update.
1179
1180 2011-02-02  Joel Brobecker  <brobecker@adacore.com>
1181
1182         * configure.ac: Work around non-GNU sed limitation when computing
1183         python version number.
1184         * configure: Regenerate.
1185
1186 2011-02-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
1187
1188         Fix debug printing of TYPE_INSTANCE.
1189         * expprint.c (print_subexp_standard) <TYPE_INSTANCE>: New.
1190         (dump_subexp_body_standard) <TYPE_INSTANCE>: New.
1191
1192 2011-02-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
1193
1194         Fix debug printing of BINOP_IN, OP_OBJC_MSGCALL,
1195         OP_F77_UNDETERMINED_ARGLIST, OP_COMPLEX, OP_OBJC_SELECTOR, OP_NAME,
1196         OP_OBJC_NSSTRING, OP_F90_RANGE and OP_DECFLOAT.
1197         * ada-operator.inc: Rename the file to ...
1198         * ada-operator.def: ... here, wrap all the entries by macro OP.
1199         * expprint.c (op_name_standard): Remove all the entries.  Include
1200         "std-operator.def" instead.
1201         * expression.h (enum exp_opcode): Include "std-operator.def" and
1202         "ada-operator.def".  Move all the entries ...
1203         * std-operator.def: ... here, wrap all the entries by macro OP.
1204
1205 2011-01-31  Paul Pluzhnikov  <ppluzhnikov@google.com>
1206
1207         * breakpoint.h (remove_jit_event_breakpoints): New prototype.
1208         * breakpoint.c (remove_jit_event_breakpoints): New function.
1209         * jit.c (jit_descriptor_addr): Delete.
1210         (registering_code): Delete.
1211         (clear_int): Delete.
1212         (jit_inferior_data): New variable.
1213         (struct jit_inferior_data): New type.
1214         (get_jit_inferior_data): New function.
1215         (jit_inferior_data_cleanup): New function.
1216         (jit_read_descriptor): Adjust.
1217         (jit_register_code): Adjust.
1218         (jit_breakpoint_re_set_internal): New function; move code here ...
1219         (jit_inferior_init): ... from here.
1220         (jit_breakpoint_re_set): Adjust.
1221         (jit_reset_inferior_data_and_breakpoints): New function.
1222         (jit_inferior_created_observer): Adjust.
1223         (jit_inferior_exit_hook): Adjust.
1224         (jit_executable_changed_observer): New function.
1225         (jit_event_handler): Adjust.
1226         (_initialize_jit): Adjust.
1227
1228 2011-01-31  Michael Snyder  <msnyder@vmware.com>
1229
1230         * m32r-tdep.c (m32r_gdbarch_init): Replace accidentally deleted
1231         line.
1232
1233 2011-01-31  Tom Tromey  <tromey@redhat.com>
1234
1235         PR python/12216:
1236         * python/python.c (execute_gdb_command): Call
1237         prevent_dont_repeat.
1238         * top.c (suppress_dont_repeat): New global.
1239         (dont_repeat): Use it.
1240         (prevent_dont_repeat): New function.
1241         * command.h (prevent_dont_repeat): Declare.
1242
1243 2011-01-31  Tom Tromey  <tromey@redhat.com>
1244
1245         * infcmd.c (finish_backward): Use breakpoint_set_silent.
1246         * python/py-breakpoint.c (bppy_set_silent): Use
1247         breakpoint_set_silent.
1248         (bppy_set_thread): Use breakpoint_set_thread.
1249         (bppy_set_task): Use breakpoint_set_task.
1250         * breakpoint.h (breakpoint_set_silent, breakpoint_set_thread)
1251         (breakpoint_set_task): Declare.
1252         (make_breakpoint_silent): Remove.
1253         * breakpoint.c (breakpoint_set_silent): New function.
1254         (breakpoint_set_thread): Likewise.
1255         (breakpoint_set_task): Likewise.
1256         (make_breakpoint_silent): Remove.
1257
1258 2011-01-31  Tom Tromey  <tromey@redhat.com>
1259
1260         * breakpoint.h (user_breakpoint_p): Declare.
1261         * breakpoint.c (user_breakpoint_p): New function.
1262         (breakpoint_1): Use it.
1263         (save_breakpoints): Likewise.
1264
1265 2011-01-31  Joel Brobecker  <brobecker@adacore.com>
1266
1267         * configure.ac: Add handling of Python distribution on Windows.
1268         * python-config.py: If the LIBS, SYSLIBS, LIBPL and/or LINKFORSHARED
1269         sysconfig variables are not defined, then do not use them.
1270         On Windows, if LIBPL is not defined, then use prefix + '/libs'
1271         instead.  On Windows, return all paths using forward-slashes
1272         rather than backslashes.
1273
1274 2011-01-31  Joel Brobecker  <brobecker@adacore.com>
1275
1276         * configure.ac: Remove fallback behavior for building
1277         against Python.  Remove tweaking of Python include path.
1278         Add PYTHON_CPPFLAGS and PYTHON_LIBS substitution.
1279         (AC_TRY_LIBPYTHON):  Adjust program used in linking test.
1280         If link is successful, set PYTHON_CPPFLAGS and PYTHON_LIBS.
1281         Always restore CPPFLAGS and LIBS after linking test.
1282         * configure: Regenerated.
1283         * Makefile.in (INTERNAL_CPPFLAGS): Add @PYTHON_CPPFLAGS@.
1284         (INSTALLED_LIBS, CLIBS): Add @PYTHON_LIBS@.
1285         * python/python-internal.h: Adjust includes of Python .h files.
1286
1287 2011-01-31  Joel Brobecker  <brobecker@adacore.com>
1288
1289         * tracepoint.c (traceframe_walk_blocks): Add missing i18n markup
1290         in error message.
1291
1292 2011-01-31  Joel Brobecker  <brobecker@adacore.com>
1293
1294         * inflow.c (gdb_has_a_terminal): Fix typo in interactive_mode
1295         value test.
1296
1297 2011-01-31  Yao Qi  <yao@codesourcery.com>
1298
1299         * arm-linux-nat.c: Update calls to regcache_register_status
1300         instead of regcache_valid_p.
1301         * aix-thread.c: Likewise.
1302         * i386gnu-nat.c: Likewise.
1303
1304 2011-01-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
1305
1306         Fix crash.
1307         * valops.c (compare_parameters): Verify TYPE_NFIELDS before
1308         touching TYPE_FIELD_ARTIFICIAL.
1309
1310 2011-01-28  Richard Earnshaw  <rearnsha@arm.com>
1311
1312         * MAINTAINERS: Move myself from Responsible Maintainers to Authorized
1313         Committers.
1314
1315 2011-01-28  Pedro Alves  <pedro@codesourcery.com>
1316
1317         * tracepoint.c (tfile_xfer_partial): If there's no traceframe
1318         selected, don't try iterating over the traceframe's blocks.
1319         (tfile_has_stack): If there's no traceframe selected, then there's
1320         no stack.
1321         (tfile_has_registers): If there's no traceframe selected, then
1322         there's no registers.
1323
1324 2011-01-28  Pedro Alves  <pedro@codesourcery.com>
1325
1326         * target.c (memory_xfer_partial): No need to restore shadows if we
1327         haven't read anything.
1328
1329 2011-01-28  Pedro Alves  <pedro@codesourcery.com>
1330
1331         * mips-tdep.c (mips_print_register): Use get_frame_register_value
1332         and val_print_scalar_formatted.
1333
1334 2011-01-27  Pedro Alves  <pedro@codesourcery.com>
1335
1336         * tracepoint.c (tfile_read): New.
1337         (tfile_open): Use it.
1338         (tfile_get_traceframe_address): Use it.
1339         (tfile_trace_find): Use it.
1340         (walk_blocks_callback_func): New typedef.
1341         (match_blocktype): New function.
1342         (traceframe_walk_blocks): New function.
1343         (traceframe_find_block_type): New function.
1344         (tfile_fetch_registers, tfile_xfer_partial)
1345         (tfile_get_trace_state_variable_value): Use
1346         traceframe_find_block_type and tfile_read.
1347
1348 2011-01-26  Kevin Buettner  <kevinb@redhat.com>
1349
1350         * remote-mips.c: Add internationalization mark ups.  Remove
1351         trailing \n from already marked up strings.
1352
1353 2011-01-26  Tom Tromey  <tromey@redhat.com>
1354
1355         * python/py-prettyprint.c (print_string_repr): Clear
1356         'addressprint' option when calling val_print_string.
1357         (print_children): Handle Val_pretty_default.  Clear 'addressprint'
1358         option when calling val_print_string.
1359
1360 2011-01-26  Tom Tromey  <tromey@redhat.com>
1361
1362         * python/python.c (gdbpy_solib_name): Use gdb_py_longest and
1363         GDB_PY_LL_ARG.
1364         * python/python-internal.h (GDB_PY_LL_ARG, GDB_PY_LLU_ARG): New
1365         macros.
1366         (gdb_py_longest, gdb_py_ulongest): New typedefs.
1367         (gdb_py_long_from_longest, gdb_py_long_from_ulongest)
1368         (gdb_py_long_as_ulongest): New defines.
1369         (gdb_py_object_from_longest, gdb_py_object_from_ulongest)
1370         (gdb_py_int_as_long): Declare.
1371         * python/py-value.c (valpy_lazy_string): Use gdb_py_longest,
1372         GDB_PY_LL_ARG, gdb_py_object_from_longest.
1373         (valpy_long): Add comment.
1374         * python/py-utils.c (get_addr_from_python): Use
1375         gdb_py_long_as_ulongest.  Handle overflow properly.
1376         (gdb_py_object_from_longest): New function.
1377         (gdb_py_object_from_ulongest): Likewise.
1378         (gdb_py_int_as_long): Likewise.
1379         * python/py-type.c (typy_array): Use gdb_py_int_as_long.
1380         * python/py-symtab.c (salpy_get_pc): Use
1381         gdb_py_long_from_ulongest.
1382         (salpy_get_line): Use PyInt_FromLong.
1383         * python/py-param.c (set_parameter_value): Use
1384         gdb_py_int_as_long.
1385         * python/py-lazy-string.c (stpy_get_address): Use
1386         gdb_py_long_from_ulongest.
1387         * python/py-frame.c (frapy_pc): Use gdb_py_long_from_ulongest.
1388         * python/py-cmd.c (cmdpy_completer): Use gdb_py_int_as_long.
1389         * python/py-breakpoint.c (bppy_set_thread): Use
1390         gdb_py_int_as_long.
1391         (bppy_set_task): Likewise.
1392         (bppy_set_ignore_count): Likewise.
1393         (bppy_set_hit_count): Likewise.
1394         * python/py-block.c (blpy_get_start): Use
1395         gdb_py_object_from_ulongest.
1396         (blpy_get_end): Likewise.
1397         (gdbpy_block_for_pc): Use gdb_py_ulongest and GDB_PY_LLU_ARG.
1398
1399 2011-01-25  Mathieu Lacage  <mathieu.lacage@inria.fr>
1400
1401         PR/symtab 11766:
1402         * gdb/objfiles.h (struct objfile) <addr_low>: New field.
1403         * gdb/solib.c (solib_read_symbols): Check for addr_low in
1404         equality test for objfile, initialize addr_low if needed.
1405
1406 2011-01-25  Pedro Alves  <pedro@codesourcery.com>
1407
1408         * tui/tui-regs.c (tui_register_format): Remove dead code.
1409
1410 2011-01-25  Pedro Alves  <pedro@codesourcery.com>
1411
1412         * printcmd.c (print_formatted): Use val_print_scalar_formatted
1413         instead of print_scalar_formatted.
1414         (print_scalar_formatted): Don't handle 's' format strings here,
1415         and add an assertion that we never see such format here.
1416         * valprint.h (val_print_scalar_formatted): Declare.
1417         * valprint.c (val_print_scalar_formatted): New.
1418         * c-valprint.c (c_val_print): Use val_print_scalar_formatted
1419         instead of print_scalar_formatted.
1420         * jv-valprint.c (java_val_print): Ditto.
1421         * p-valprint.c (pascal_val_print): Ditto.
1422         * ada-valprint.c (ada_val_print_1): Ditto.
1423         * f-valprint.c (f_val_print): Ditto.
1424         * infcmd.c (registers_info): Ditto.
1425         * m2-valprint.c (m2_val_print): Ditto.
1426
1427 2011-01-25  Pedro Alves  <pedro@codesourcery.com>
1428
1429         * m2-valprint.c (print_unbounded_array): Pass
1430         value_contents_for_printing rather than value_contents, to
1431         m2_print_array_contents.  Also pass in the value.
1432
1433 2011-01-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
1434
1435         * dwarf2read.c (dwarf2_read_index, write_psymtabs_to_index)
1436         (save_gdb_index_command): Switch to .gdb_index version 4.
1437
1438 2011-01-25  Pedro Alves  <pedro@codesourcery.com>
1439
1440         * mi/mi-main.c (get_register): Use get_frame_register_value rather
1441         than frame_register, and always pass a valid value to val_print.
1442
1443 2011-01-25  Pedro Alves  <pedro@codesourcery.com>
1444
1445         Centralize printing "<optimized out>".
1446
1447         * valprint.h (val_print_optimized_out): Declare.
1448         * cp-valprint.c (cp_print_value_fields): Use
1449         val_print_optimized_out.
1450         * jv-valprint.c (java_print_value_fields): Ditto.
1451         * p-valprint.c (pascal_object_print_value_fields): Ditto.
1452         * printcmd.c (print_formatted): Ditto.
1453         * valprint.c (valprint_check_validity): Ditto.
1454         (value_check_printable): Ditto.
1455         (val_print_optimized_out): New.
1456
1457 2011-01-25  Pedro Alves  <pedro@codesourcery.com>
1458
1459         * infcmd.c (default_print_registers_info): Allocate values so to
1460         never pass a NULL value to val_print.
1461
1462 2011-01-25  Pedro Alves  <pedro@codesourcery.com>
1463
1464         * cp-valprint.c (cp_print_value): Treat the 'skip' local as
1465         boolean.  Make sure to always pass a value that matches the
1466         contents buffer to callees.  Preserve `address' for following
1467         iterations.
1468         * value.c (value_contents_for_printing_const): New.
1469         (value_address): Constify value argument.
1470         * value.h (value_contents_for_printing_const): Declare.
1471         (value_address): Constify value argument.
1472
1473 2011-01-25  Pedro Alves  <pedro@codesourcery.com>
1474
1475         * regcache.c (struct regcache_descr): Rename
1476         sizeof_raw_register_valid_p field to sizeof_raw_register_status,
1477         and sizeof_cooked_register_valid_p to
1478         sizeof_cooked_register_status.
1479         (init_regcache_descr): Adjust.
1480         (struct regcache): Rename register_valid_p field to
1481         register_status.
1482         (regcache_xmalloc_1, regcache_xfree, regcache_save)
1483         (do_cooked_read): Adjust.
1484         (regcache_valid_p): Rename to ...
1485         (regcache_register_status): ... this.  Adjust.
1486         (regcache_invalidate): Adjust.
1487         (regcache_raw_read, regcache_cooked_read, regcache_raw_write):
1488         Adjust.
1489         (regcache_raw_supply): Adjust.  If buf i NULL, mark the register
1490         as unavailable, not valid.
1491         (regcache_dump): Adjust.
1492         * regcache.h (enum register_status): New.
1493         (regcache_register_status): Declare.
1494         (regcache_invalidate): Delete declaration.
1495         * corelow.c (get_core_registers): Adjust.
1496         * tracepoint.c (tfile_fetch_registers): Adjust.
1497         * trad-frame.c (REG_VALUE): Rename to ...
1498         (TF_REG_VALUE): ... this.
1499         (REG_UNKNOWN): Rename to ...
1500         (TF_REG_UNKNOWN): ... this.
1501         (trad_frame_set_value, trad_frame_set_unknown): Adjust.
1502         * mi/mi-main.c (register_changed_p): Adjust.
1503
1504 2011-01-25  Pedro Alves  <pedro@codesourcery.com>
1505
1506         * regcache.c (struct regcache_descr): Remove outdated comment.
1507         (init_regcache_descr): Remove sizeof_raw_register_valid_p
1508         overallocate hack.
1509         (regcache_xmalloc): Rename to ...
1510         (regcache_xmalloc_1): ... this.  Add `readonly_p' parameter.
1511         Allocate the regcache type accordingly.
1512         (regcache_xmalloc): New as wrapper around regcache_xmalloc_1.
1513         (regcache_xfree): Asser the source is also readonly.  Copy sizeof
1514         cooked registers, not raw.
1515         (regcache_dup_no_passthrough): Delete.
1516         (get_thread_arch_regcache): Use regcache_xmalloc_1.
1517         * h8300-tdep.c (h8300_push_dummy_call): Tweak comment to not
1518         mention obsolete write_register_bytes.
1519         * regcache.h (regcache_dup_no_passthrough): Delete declaration.
1520
1521 2011-01-25  Pedro Alves  <pedro@codesourcery.com>
1522
1523         Stop remote_read_bytes from handling partial reads itself.
1524
1525         * remote-fileio.c: Include target.h.
1526         (remote_fileio_write_bytes): Delete.
1527         (remote_fileio_func_open, remote_fileio_func_write)
1528         (remote_fileio_func_rename, remote_fileio_func_unlink): Use
1529         target_read_memory.
1530         (remote_fileio_func_stat): Use target_read_memory and
1531         target_write_memory.
1532         (remote_fileio_func_gettimeofday): Use target_write_memory.
1533         (remote_fileio_func_system): Use target_read_memory.
1534         * remote.c (remote_write_bytes): Make it static.
1535         (remote_read_bytes): Don't handle partial reads here.
1536         * remote.h (remote_read_bytes): Delete declaration.
1537
1538 2011-01-25  Pedro Alves  <pedro@codesourcery.com>
1539
1540         Simplify XML parsing a bit.
1541
1542         * xml-support.h (gdb_xml_parse_quick): Declare.
1543         * xml-support.c (gdb_xml_create_parser_and_cleanup_1): Renamed
1544         from gdb_xml_create_parser_and_cleanup, and added `old_chain'
1545         parameter.
1546         (gdb_xml_create_parser_and_cleanup): Reimplement on top of
1547         gdb_xml_create_parser_and_cleanup_1.
1548         (gdb_xml_parse_quick): New.
1549         * memory-map.c (parse_memory_map): Use gdb_xml_parse_quick.
1550         * osdata.c (osdata_parse): Ditto.
1551         * remote.c (remote_threads_info): Ditto.
1552         * solib-target.c (solib_target_parse_libraries): Ditto.
1553         * xml-syscall.c (syscall_parse_xml): Ditto.
1554         * xml-tdesc.c (tdesc_parse_xml): Ditto.
1555
1556 2011-01-24  Kevin Buettner  <kevinb@redhat.com>
1557
1558         * configure.tgt (mips*-*-elf): New; just like mips*-*-*, but
1559         with remote-mips.o added to gdb_target_obs.
1560         * Makefile.in (ALL_TARGET_OBS): Add remote-mips.o.
1561
1562 2011-01-24  Pedro Alves  <pedro@codesourcery.com>
1563
1564         * ada-valprint.c (val_print_packed_array_elements): Pass the
1565         correct struct value to val_print.
1566         (ada_val_print_1): Ditto.
1567
1568 2011-01-24  Pedro Alves  <pedro@codesourcery.com>
1569
1570         Don't lose embedded_offset in printing routines throughout.
1571
1572         * valprint.h (val_print_array_elements): Change prototype.
1573         * valprint.c (val_print_array_elements): Add `embedded_offset'
1574         parameter, and adjust to pass it down to val_print, while passing
1575         `valaddr' or `address' unmodified.  Take embedded_offset into
1576         account when checking repetitions.
1577         * c-valprint.c (c_val_print): Pass embedded_offset to
1578         val_print_array_elements instead of adjusting `valaddr' and
1579         `address'.
1580         * m2-valprint.c (m2_print_array_contents, m2_val_print): Pass
1581         embedded_offset to val_print_array_elements instead of adjusting
1582         `valaddr'.
1583         * p-lang.h (pascal_object_print_value_fields): Adjust prototype.
1584         * p-valprint.c (pascal_val_print): Pass embedded_offset to
1585         val_print_array_elements and pascal_object_print_value_fields
1586         instead of adjusting `valaddr'.
1587         (pascal_object_print_value_fields): Add `offset' parameter, and
1588         adjust to use it.
1589         (pascal_object_print_value): Add `offset' parameter, and adjust to
1590         use it.
1591         (pascal_object_print_static_field): Use
1592         value_contents_for_printing/value_embedded_offset, rather than
1593         value_contents.
1594         * ada-valprint.c (val_print_packed_array_elements): Add `offset'
1595         parameter, and adjust to use it.  Use
1596         value_contents_for_printing/value_embedded_offset, rather than
1597         value_contents.
1598         (ada_val_print): Rename `valaddr0' parameter to `valaddr'.
1599         (ada_val_print_array): Add `offset' parameter, and adjust to use
1600         it.
1601         (ada_val_print_1): Rename `valaddr0' parameter to `valaddr', and
1602         `embedded_offset' to `offset'.  Don't re-adjust `valaddr'.
1603         Instead work with offsets.  Use
1604         value_contents_for_printing/value_embedded_offset, rather than
1605         value_contents.  Change `defer_val_int' local type to CORE_ADDR,
1606         and use value_from_pointer to extract a target pointer, rather
1607         than value_from_longest.
1608         (print_variant_part): Add `offset' parameter.  Replace
1609         `outer_valaddr' parameter by a new `outer_offset' parameter.
1610         Don't re-adjust `valaddr'.  Instead pass down adjusted offsets.
1611         (ada_value_print): Use
1612         value_contents_for_printing/value_embedded_offset, rather than
1613         value_contents.
1614         (print_record): Add `offset' parameter, and adjust to pass it
1615         down.
1616         (print_field_values): Add `offset' parameter.  Replace
1617         `outer_valaddr' parameter by a new `outer_offset' parameter.
1618         Don't re-adjust `valaddr'.  Instead pass down adjusted offsets.
1619         Use value_contents_for_printing/value_embedded_offset, rather than
1620         value_contents.
1621         * d-valprint.c (dynamic_array_type): Use
1622         value_contents_for_printing/value_embedded_offset, rather than
1623         value_contents.
1624         * jv-valprint.c (java_print_value_fields): Add `offset' parameter.
1625         Don't re-adjust `valaddr'.  Instead pass down adjusted offsets.
1626         (java_print_value_fields): Take `offset' into account.  Don't
1627         re-adjust `valaddr'.  Instead pass down adjusted offsets.
1628         (java_val_print): Take `embedded_offset' into account.  Pass it to
1629         java_print_value_fields.
1630         * f-valprint.c (f77_print_array_1): Add `embedded_offset'
1631         parameter.  Don't re-adjust `valaddr' or `address'.  Instead pass
1632         down adjusted offsets.
1633         (f77_print_array): Add `embedded_offset' parameter.  Pass it down.
1634         (f_val_print): Take `embedded_offset' into account.
1635
1636 2011-01-21  Joel Brobecker  <brobecker@adacore.com>
1637
1638         * inflow.c: Include "gdbcmd.h".
1639         (interactive_mode): New static global, moved here from top.c.
1640         (show_interactive_mode): New function, moved here from top.c.
1641         use gdb_has_a_terminal instead of input_from_terminal_p to
1642         determine the current mode.
1643         (gdb_has_a_terminal): Add handling of the "iteractive-mode"
1644         setting.
1645         (_initialize_inflow): Add the "set/show interactive-mode"
1646         commands.  Moved here from top.c, after having adjusted slightly
1647         the help text.
1648         * top.c (interactive_mode, show_interactive_mode): Delete, moved
1649         to inflow.c.
1650         (input_from_terminal_p): Remove handling of "interactive-mode"
1651         setting, moved to infow.c.
1652         (init_main): Remove creation of the "set/show interactive-mode"
1653         commands, moved to inflow.c.
1654
1655 2011-01-19  Joel Brobecker  <brobecker@adacore.com>
1656
1657         * NEWS: Add entry for native ia64-hpux support.
1658
1659 2011-01-19  Tom Tromey  <tromey@redhat.com>
1660
1661         PR mi/8618:
1662         * thread.c (free_thread): Free 'name'.
1663         (print_thread_info): Emit thread name.  Change CLI output.
1664         (thread_name_command): New function.
1665         (do_captured_thread_select): Emit newline.
1666         (_initialize_thread): Register 'thread name' command.
1667         * target.h (struct target_ops) <to_thread_name>: New field.
1668         (target_thread_name): New macro.
1669         * target.c (update_current_target): Handle to_thread_name.
1670         * python/py-infthread.c (thpy_get_name): New function.
1671         (thpy_set_name): Likewise.
1672         (thread_object_getset): Add "name".
1673         * linux-nat.c (linux_nat_thread_name): New function.
1674         (linux_nat_add_target): Set to_thread_name.
1675         * gdbthread.h (struct thread_info) <name>: New field.
1676
1677 2011-01-18  Joel Brobecker  <brobecker@adacore.com>
1678
1679         * ada-valprint.c (ada_print_scalar): Remove unsigned char downcast.
1680         (ada_val_print_1): Likewise.
1681
1682 2011-01-18  Joel Brobecker  <brobecker@adacore.com>
1683
1684         * rs6000-tdep.c (rs6000_skip_prologue): Make sure that the prologue
1685         upper limit address is not greater than the function end address
1686         when the upper limit could not be computed using the debugging
1687         info.
1688
1689 2011-01-17  Tom Tromey  <tromey@redhat.com>
1690
1691         * cli/cli-cmds.c (apropos_command): Free the compiled regex.  Use
1692         get_regcomp_error.
1693         * utils.c: Include gdb_regex.h.
1694         (do_regfree_cleanup): New function.
1695         (make_regfree_cleanup): Likewise.
1696         (get_regcomp_error): Likewise.
1697         * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Declare.
1698
1699 2011-01-17  Tom Tromey  <tromey@redhat.com>
1700
1701         * cli/cli-cmds.c (apropos_command): Fix formatting.  Don't call
1702         re_compile_fastmap.
1703
1704 2011-01-17  Pierre Muller  <muller@ics.u-strasbg.fr>
1705
1706         * p-exp.y (intvar): New static variable, used to set CURRENT_TYPE
1707         for internal variables.
1708         (last_was_structop): New static variable.
1709         (COMPLETE): New token.
1710         (field_exp): New rule to group all '.' suffix handling.
1711         Add mark_struct_expression calls when approriate to be able
1712         to correctly find fields for completion.
1713         (yylex): Adapt to handle field completion and set INTVAR when
1714         required.
1715
1716 2011-01-14  Yao Qi  <yao@codesourcery.com>
1717
1718         * arm-tdep.c (arm_register_reggroup_p): FPS register is in
1719         save_reggroup, restore_reggroup and all_reggroup.
1720
1721 2011-01-14  Joel Brobecker  <brobecker@adacore.com>
1722
1723         * ada-valprint. (ada_printchar): Use the correct type length
1724         in call to ada_emit_char.
1725         * c-valprint.c (c_val_print): Remove cast in call to LA_PRINT_CHAR.
1726
1727 2011-01-14  Pierre Muller  <muller@ics.u-strasbg.fr>
1728
1729         * solib-som.h (hpux_major_release): Declare variable here.
1730         * solib-som.c:  Remove <sys/utsname.h> header.
1731         (DEFAULT_HPUX_MAJOR_RELEASE): New macro.
1732         (hpux_major_release): Make global, change default value to
1733         DEFAULT_HPUX_MAJOR_RELEASE.
1734         (get_hpux_major_release): Simply return HPUX_MAJOR_RELEASE. 
1735         * hppa-hpux-nat.c: Add <sys/utsname.h> include.
1736         Add "solib-som.h" header.
1737         (set_hpux_major_release): New function.
1738         (_initialize_hppa_hpux_nat): Call set_hpux_major_release.
1739
1740 2011-01-14  Mike Frysinger  <vapier@gentoo.org>
1741
1742         * configure.tgt (*-*-uclinux*): Match more Linux os targets
1743
1744 2011-01-14  Joel Brobecker  <brobecker@adacore.com>
1745
1746         * ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing
1747         new-line at end of warning message.
1748         (ia64_hpux_store_register): Remove trailing new-line at end of
1749         error message.
1750         * ia64-hpux-tdep.c: Rephrase comment.
1751         * solib-ia64-hpux.c (struct dld_info): Change type of field
1752         dld_flags from "long long" to ULONGEST.
1753
1754 2011-01-14  Pedro Alves  <pedro@codesourcery.com>
1755
1756         * target.h (deprecated_child_ops): Delete declaration.
1757         * target.c (deprecated_child_ops): Delete definition.
1758
1759 2011-01-14  Pedro Alves  <pedro@codesourcery.com>
1760
1761         * Makefile.in (hpux-thread.o): Delete rule.
1762         * configure.ac: Don't check for HPUX DCE threads support.
1763         * configure, config.in: Regenerate.
1764         * hppa-hpux-nat.c (child_suppress_run): Delete.
1765         (hppa_hpux_child_can_run): Delete.
1766         (_initialize_hppa_hpux_nat): Don't override to_can_run.
1767         * hpux-thread.c: Delete.
1768
1769 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
1770
1771         * hpux-thread.c (hpux_pid_to_str): Delete.
1772
1773 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
1774
1775         * ada-valprint.c (ada_emit_char): Remove strange code.
1776         Check that c is <= UCHAR_MAX before passing it to isascii.
1777         (char_at): Do not assume that TYPE_LEN is either 1 or 2.
1778
1779 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
1780
1781         * top.c (input_from_terminal_p): Restrict the use of interactive_mode
1782         to the case where instream is stdin.
1783
1784 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
1785
1786         * ia64-tdep.h (struct regcache): Forward declare.
1787         (struct ia64_infcall_ops): New struct type.
1788         (struct gdbarch_tdep): New fields "find_global_pointer_from_solib"
1789         and "infcall_ops".
1790         * ia64-tdep.c (ia64_find_global_pointer_from_dynamic_section):
1791         Renames ia64_find_global_pointer.
1792         (ia64_find_global_pointer, ia64_allocate_new_rse_frame)
1793         (ia64_store_argument_in_slot, ia64_set_function_addr: New function.
1794         (ia64_push_dummy_call): Adjust to use the new tdep ia64_infocall_ops
1795         methods.
1796         (ia64_infcall_ops): New static global constant.
1797         (ia64_gdbarch_init): Set tdep->infcall_ops.
1798         * ia64-hpux-nat.c (ia64_hpux_xfer_solib_got): New function.
1799         (ia64_hpux_xfer_partial): Add TARGET_OBJECT_HPUX_SOLIB_GOT handing.
1800         * ia64-hpux-tdep.c: Include "regcache.h", "gdbcore.h" and "inferior.h".
1801         (ia64_hpux_dummy_code): New static global constant.
1802         (ia64_hpux_push_dummy_code, ia64_hpux_allocate_new_rse_frame)
1803         (ia64_hpux_store_argument_in_slot, ia64_hpux_set_function_addr)
1804         (ia64_hpux_dummy_id, ia64_hpux_find_global_pointer_from_solib):
1805         New function.
1806         (ia64_hpux_infcall_ops): New static global constant.
1807         (ia64_hpux_init_abi): Install gdbarch and tdep methods needed
1808         for inferior function calls to work properly on ia64-hpux.
1809
1810 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
1811
1812         * target.h (enum target_object): Add TARGET_OBJECT_HPUX_UREGS.
1813         * ia64-tdep.h (struct frame_info): forward declaration.
1814         (struct gdbarch_tdep): Add field size_of_register_frame.
1815         * ia64-tdep.c (ia64_access_reg): Use tdep->size_of_register_frame
1816         to determine the size of the register frame.
1817         (ia64_size_of_register_frame): New function.
1818         (ia64_gdbarch_init): Set tdep->size_of_register_frame.
1819         * ia64-hpux-tdep.c: Include "target.h" and "frame.h".
1820         (IA64_HPUX_UREG_REASON): New macro.
1821         (ia64_hpux_stopped_in_syscall, ia64_hpux_size_of_register_frame):
1822         New functions.
1823         (ia64_hpux_init_abi): Set tdep->size_of_register_frame.
1824         * ia64-hpux-nat.c (ia64_hpux_xfer_uregs): New function.
1825         (ia64_hpux_xfer_partial): Add handling of TARGET_OBJECT_HPUX_UREGS
1826         objects.
1827
1828 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
1829
1830         Add support for ia64-hpux.
1831         * config/ia64/hpux.mh, ia64-hpux-nat.c, ia64-hpux-tdep.c,
1832         ia64-hpux-tdep.h, solib-ia64-hpux.c, solib-ia64-hpux.h: New files.
1833
1834         * configure.host: Add handling for ia64-hpux hosts.  Add associated
1835         floatformats.
1836         * configure.tgt: Add handling for ia64-hpux targets.
1837         * Makefile.in (ALL_64_TARGET_OBS): Add ia64-hpux-tdep.o.
1838         (HFILES_NO_SRCDIR): Add ia64-hpux-tdep.h.
1839         (ALLDEPFILES): Add ia64-hpux-nat.c ia64-hpux-tdep.c.
1840
1841 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
1842
1843         [ttrace] Compute thread list immediately after attach.
1844         * inf_ttrace_attach (inf_ttrace_create_threads_after_attach):
1845         New subprogram.
1846         (inf_ttrace_attach): Use it.
1847
1848 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
1849
1850         * libunwind-frame.c (libunwind_frame_cache): Do not return NULL
1851         if we could not determine the frame's function address.  Instead,
1852         use the frame's PC, and then continue.
1853
1854 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
1855
1856         * libunwind-frame.c (__LITTLE_ENDIAN, __BIG_ENDIAN): Define if
1857         not already defined.
1858
1859 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
1860
1861         * ia64-tdep.c (ia64_struct_type_p): New function.
1862         (ia64_extract_return_value): Handle integral values that are
1863         less than 8 bytes long.
1864         (ia64_push_dummy_call): Likewise.
1865
1866 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
1867
1868         * ia64-tdep.c (floatformat_ia64_ext_little): Renames
1869         floatformat_ia64_ext.
1870         (floatformat_ia64_ext_big): New static const.
1871         (floatformats_ia64_ext): Set first entry to &floatformat_ia64_ext_big.
1872
1873 2011-01-12  Tom Tromey  <tromey@redhat.com>
1874
1875         * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Fix error
1876         messages.
1877         * mi/mi-main.c (mi_cmd_thread_select): Fix error messages.
1878         (mi_cmd_thread_list_ids): Likewise.
1879         (mi_cmd_data_list_changed_registers): Likewise.
1880         (mi_cmd_data_list_register_values): Likewise.
1881         (mi_cmd_data_write_register_values): Likewise.
1882         (mi_cmd_data_evaluate_expression): Likewise.
1883         (mi_cmd_data_read_memory): Likewise.
1884         (mi_cmd_data_read_memory_bytes): Likewise.
1885         (mi_cmd_data_write_memory): Likewise.
1886         (mi_cmd_enable_timings): Likewise.
1887         * mi/mi-interp.c (mi_cmd_interpreter_exec): Fix error messages.
1888         * mi/mi-cmd-var.c (mi_cmd_var_create): Fix error messages.
1889         (mi_cmd_var_delete): Likewise.
1890         (mi_cmd_var_set_format): Likewise.
1891         (mi_cmd_var_show_format): Likewise.
1892         (mi_cmd_var_info_num_children): Likewise.
1893         (mi_cmd_var_list_children): Likewise.
1894         (mi_cmd_var_info_type): Likewise.
1895         (mi_cmd_var_info_expression): Likewise.
1896         (mi_cmd_var_show_attributes): Likewise.
1897         (mi_cmd_var_assign): Likewise.
1898         (mi_cmd_var_update): Likewise.
1899         (mi_cmd_enable_pretty_printing): Likewise.
1900         (mi_cmd_var_set_update_range): Likewise.
1901         * mi/mi-cmd-target.c (mi_cmd_target_file_get): Fix error
1902         messages.
1903         (mi_cmd_target_file_put): Likewise.
1904         (mi_cmd_target_file_delete): Likewise.
1905         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Fix error
1906         messages.
1907         (mi_cmd_stack_info_depth): Likewise.
1908         (mi_cmd_stack_list_locals): Likewise.
1909         (mi_cmd_stack_list_args): Likewise.
1910         (mi_cmd_stack_select_frame): Likewise.
1911         (mi_cmd_stack_select_frame): Likewise.
1912         (mi_cmd_stack_info_frame): Likewise.
1913         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Fix error
1914         messages.
1915         (mi_cmd_file_list_exec_source_files): Likewise.
1916         * mi/mi-cmd-env.c (mi_cmd_env_pwd): Fix error messages.
1917         (mi_cmd_env_cd): Likewise.
1918         (mi_cmd_env_path): Likewise.
1919         (mi_cmd_env_dir): Likewise.
1920         (mi_cmd_inferior_tty_show): Likewise.
1921         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Fix error messages.
1922         * mi/mi-cmd-break.c (mi_cmd_break_insert): Fix error messages.
1923         (mi_cmd_break_watch): Likewise.
1924
1925 2011-01-12  Thiago Jung Bauermann  <bauerman@br.ibm.com>
1926
1927         * ppc-linux-nat.c (booke_cmp_hw_point): Fix whitespace.
1928         (ppc_linux_insert_hw_breakpoint): Likewise.
1929         (ppc_linux_remove_hw_breakpoint): Likewise.
1930         (ppc_linux_insert_watchpoint): Likewise.
1931
1932 2011-01-12  Andrew Burgess  <aburgess@broadcom.com>
1933             Jan Kratochvil  <jan.kratochvil@redhat.com>
1934
1935         PR fortran/11104 and DWARF unbound arrays detection.
1936         * dwarf2read.c (read_subrange_type): Set zero length on unspecified
1937         upper bound.  Set TYPE_HIGH_BOUND_UNDEFINED if not language_ada on
1938         unspecified upper bound.
1939         * eval.c (evaluate_subexp_standard) <multi_f77_subscript>: Remove
1940         variables array_size_array, tmp_type and offset_item.  New variable
1941         array.  Remove call to f77_get_upperbound.  New variables array_type
1942         and index.  Call value_subscripted_rvalue for each dimenasion.  Remove
1943         the final call to deprecated_set_value_type.
1944
1945 2011-01-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
1946
1947         Make value allocations more lazy.
1948         * ada-lang.c (coerce_unspec_val_to_type): Use allocate_value_lazy
1949         instead of allocate_value and set_value_lazy when possible.
1950         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use allocate_value_lazy 
1951         instead of allocate_value and set_value_lazy.
1952         * findvar.c (value_of_register_lazy): Likewise.
1953         (read_var_value): Remove V preallocation, call just check_typedef in
1954         advance.  Move allocate_value to LOC_CONST, LOC_LABEL, 
1955         LOC_CONST_BYTES.  Use allocate_value_lazy in LOC_STATIC, LOC_ARG,
1956         LOC_REF_ARG, LOC_LOCAL, LOC_BLOCK.  Set ADDR instead of
1957         set_value_address and break in LOC_BLOCK.  Use allocate_value_lazy and
1958         remove lval_memory set in LOC_REGPARM_ADDR.  Use allocate_value_lazy
1959         in LOC_UNRESOLVED and LOC_OPTIMIZED_OUT.  Add setting lval_memory at
1960         the end, remove set_value_lazy there.
1961         * valarith.c (value_subscripted_rvalue): Use allocate_value_lazy
1962         instead of allocate_value and set_value_lazy when possible.
1963         * valops.c (value_fetch_lazy): Do nop for value_optimized_out VAL.
1964         * value.c (allocate_computed_value): Use allocate_value_lazy instead
1965         of allocate_value and set_value_lazy.
1966         (value_from_contents_and_address): Use allocate_value_lazy instead of
1967         allocate_value and set_value_lazy when possible.
1968
1969 2011-01-12  Andrew Burgess  <aburgess@broadcom.com>
1970
1971         * disasm.c (dump_insns): Support dumping opcodes for MI.
1972         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Allow mode to control
1973         dumping of instruction opcodes.
1974
1975 2011-01-09  Robert Millan  <rmh@gnu.org>  (tiny patch)
1976
1977         * configure.tgt: Detect GNU/kFreeBSD and set `gdb_osabi'
1978         appropiately.
1979
1980 2011-01-11  Tom Tromey  <tromey@redhat.com>
1981
1982         * thread.c (do_captured_thread_select): Emit newline before
1983         printing frame.
1984
1985 2011-01-11  Michael Snyder  <msnyder@vmware.com>
1986
1987         * s390-tdep.c: Comment cleanup, mostly periods and spaces.
1988         * score-tdep.c: Ditto.
1989         * score-tdep.h: Ditto.
1990         * ser-base.c: Ditto.
1991         * ser-go32.c: Ditto.
1992         * serial.c: Ditto.
1993         * serial.h: Ditto.
1994         * ser-mingw.c: Ditto.
1995         * ser-pipe.c: Ditto.
1996         * ser-tcp.c: Ditto.
1997         * ser-unix.c: Ditto.
1998         * sh64-tdep.c: Ditto.
1999         * shnbsd-nat.c: Ditto.
2000         * sh-tdep.c: Ditto.
2001         * sh-tdep.h: Ditto.
2002         * solib.c: Ditto.
2003         * solib-darwin.c: Ditto.
2004         * solib-frv.c: Ditto.
2005         * solib.h: Ditto.
2006         * solib-irix.c: Ditto.
2007         * solib-osf.c: Ditto.
2008         * solib-pa64.c: Ditto.
2009         * solib-som.c: Ditto.
2010         * solib-spu.c: Ditto.
2011         * solib-sunos.c: Ditto.
2012         * solib-svr4.c: Ditto.
2013         * solist.h: Ditto.
2014         * sol-thread.c: Ditto.
2015         * somread.c: Ditto.
2016         * source.c: Ditto.
2017         * source.h: Ditto.
2018         * sparc64-linux-tdep.c: Ditto.
2019         * sparc64-tdep.c: Ditto.
2020         * sparc-linux-nat.c: Ditto.
2021         * sparc-linux-tdep.c: Ditto.
2022         * sparc-sol2-nat.c: Ditto.
2023         * sparc-sol2-tdep.c: Ditto.
2024         * sparc-tdep.c: Ditto.
2025         * sparc-tdep.h: Ditto.
2026         * spu-tdep.c: Ditto.
2027         * stabsread.c: Ditto.
2028         * stabsread.h: Ditto.
2029         * stack.c: Ditto.
2030         * symfile.c: Ditto.
2031         * symfile.h: Ditto.
2032         * symmisc.c: Ditto.
2033         * symtab.c: Ditto.
2034         * symtab.h: Ditto.
2035         * target.c: Ditto.
2036         * target-descriptions.c: Ditto.
2037         * target-descriptions.h: Ditto.
2038         * target.h: Ditto.
2039         * target-memory.c: Ditto.
2040         * terminal.h: Ditto.
2041         * thread.c: Ditto.
2042         * top.c: Ditto.
2043         * tracepoint.c: Ditto.
2044         * tracepoint.h: Ditto.
2045         * trad-frame.h: Ditto.
2046         * typeprint.c: Ditto.
2047
2048 2011-01-11  Michael Snyder  <msnyder@vmware.com>
2049
2050         * ui-file.c: Comment cleanup, mostly periods and spaces.
2051         * ui-file.h: Ditto.
2052         * ui-out.c: Ditto.
2053         * ui-out.h: Ditto.
2054         * utils.c: Ditto.
2055         * v850-tdep.c: Ditto.
2056         * valarith.c: Ditto.
2057         * valops.c: Ditto.
2058         * valprint.c: Ditto.
2059         * valprint.h: Ditto.
2060         * value.c: Ditto.
2061         * value.h: Ditto.
2062         * varobj.c: Ditto.
2063         * varobj.h: Ditto.
2064         * vax-tdep.c: Ditto.
2065         * vec.c: Ditto.
2066         * vec.h: Ditto.
2067         * version.h: Ditto.
2068         * windows-nat.c: Ditto.
2069         * windows-tdep.c: Ditto.
2070         * xcoffread.c: Ditto.
2071         * xcoffsolib.c: Ditto.
2072         * xml-support.c: Ditto.
2073         * xstormy16-tdep.c: Ditto.
2074         * xtensa-tdep.c: Ditto.
2075         * xtensa-tdep.h: Ditto.
2076
2077 2011-01-11  Thiago Jung Bauermann  <bauerman@br.ibm.com>
2078
2079         * breakpoint.c (resources_needed_watchpoint): Fix indentation.
2080         * gdbtypes.c (is_scalar_type_recursive): Fix formatting.
2081
2082 2011-01-11  Sergio Durigan Junior  <sergiodj@linux.vnet.ibm.com>
2083             Thiago Jung Bauermann  <bauerman@br.ibm.com>
2084
2085         Implement support for PowerPC BookE ranged watchpoints.
2086         * breakpoint.h 
2087         (struct breakpoint_ops) <resources_needed>: New method.
2088         Initialize to NULL in all existing breakpoint_ops instances.
2089         (struct breakpoint) <exact>: New field.
2090         (target_exact_watchpoints): Declare external global.
2091         * breakpoint.c (target_exact_watchpoints): New global flag.
2092         (update_watchpoint): Set b->type to bp_hardware_watchpoint and
2093         b->enable_state to bp_enabled before calling
2094         hw_watchpoint_used_count.
2095         (hw_watchpoint_used_count): Iterate over all bp_locations in a
2096         watchpoint.  Call breakpoint's breakpoint_ops.resources_needed
2097         if available.
2098         (insert_watchpoint, remove_watchpoint): Use fixed length of 1 byte
2099         if the watchpoint is exact.
2100         (resources_needed_watchpoint): New function.
2101         (watchpoint_breakpoint_ops): Add resources_needed_watchpoint.
2102         (watch_command_1): Set b->exact if the user asked for an exact
2103         watchpoint and one can be set.
2104         (can_use_hardware_watchpoint): Add exact_watchpoints argument.
2105         Pass fixed length of 1 to target_region_ok_for_hw_watchpoint if
2106         the user asks for an exact watchpoint and one can be set.  Return
2107         number of needed debug registers to watch the expression.
2108         * gdbtypes.c (is_scalar_type): New function, based on
2109         valprint.c:scalar_type_p.
2110         (is_scalar_type_recursive): New function.
2111         * gdbtypes.h (is_scalar_type_recursive): Declare.
2112         * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Always
2113         handle regions when ranged watchpoints are available.
2114         (create_watchpoint_request): New function.
2115         (ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint): Use
2116         create_watchpoint_request.
2117         * rs6000-tdep.c (show_powerpc_exact_watchpoints): New function.
2118         (_initialize_rs6000_tdep): Add `exact-watchpoints' boolean to the
2119         `set powerpc' and `show powerpc' commands.
2120         * target.h (struct target_ops) <to_region_ok_for_hw_watchpoint>:
2121         Mention documentation comment in the target macro.
2122         (target_region_ok_for_hw_watchpoint): Document return value.
2123
2124 2011-01-11  Thiago Jung Bauermann  <bauerman@br.ibm.com>
2125
2126         * breakpoint.c (update_watchpoint): Decide on using a software or
2127         hardware watchpoint after the bp_locations are created.
2128
2129 2010-01-11  Thiago Jung Bauermann  <bauerman@br.ibm.com>
2130
2131         Convert hardware watchpoints to use breakpoint_ops.
2132         * breakpoint.h (breakpoint_ops) <insert>: Rename to...
2133         <insert_location>: ... this.  Return int instead of void.
2134         Accept pointer to struct bp_location instead of pointer to
2135         struct breakpoint.  Adapt all implementations.
2136         (breakpoint_ops) <remove>: Rename to... 
2137         <remove_location>: ... this.  Accept pointer to struct bp_location
2138         instead of pointer to struct breakpoint.  Adapt all implementations.
2139         * breakpoint.c (insert_catchpoint): Delete function.
2140         (insert_bp_location): Call the watchpoint or catchpoint's
2141         breakpoint_ops.insert method.
2142         (remove_breakpoint_1): Call the watchpoint or catchpoint's
2143         breakpoint_ops.remove method.
2144         (insert_watchpoint, remove_watchpoint): New functions.
2145         (watchpoint_breakpoint_ops): New structure.
2146         (watch_command_1): Initialize the OPS field.
2147         * inf-child.c (inf_child_insert_fork_catchpoint)
2148         (inf_child_remove_fork_catchpoint, inf_child_insert_vfork_catchpoint)
2149         (inf_child_remove_vfork_catchpoint, inf_child_insert_exec_catchpoint)
2150         (inf_child_remove_exec_catchpoint, inf_child_set_syscall_catchpoint):
2151         Delete functions.
2152         (inf_child_target): Remove initialization of to_insert_fork_catchpoint,
2153         to_remove_fork_catchpoint, to_insert_vfork_catchpoint,
2154         to_remove_vfork_catchpoint, to_insert_exec_catchpoint,
2155         to_remove_exec_catchpoint and to_set_syscall_catchpoint.
2156         * target.c (update_current_target): Change default implementation of
2157         to_insert_fork_catchpoint, to_remove_fork_catchpoint,
2158         to_insert_vfork_catchpoint, to_remove_vfork_catchpoint,
2159         to_insert_exec_catchpoint, to_remove_exec_catchpoint and
2160         to_set_syscall_catchpoint to return_one.
2161         (debug_to_insert_fork_catchpoint, debug_to_insert_vfork_catchpoint)
2162         (debug_to_insert_exec_catchpoint): Report return value.
2163         * target.h (to_insert_fork_catchpoint, to_insert_vfork_catchpoint)
2164         (to_insert_exec_catchpoint): Change declaration to return int instead
2165         of void.
2166
2167 2011-01-11  Michael Snyder  <msnyder@vmware.com>
2168
2169         * arm-tdep.c: Internationalization.
2170         * c-lang.c: Ditto.
2171         * charset.c: Ditto.
2172         * fork-child.c: Ditto.
2173         * nto-procfs.c: Ditto.
2174         * ppc-sysv-tdep.c: Ditto.
2175         * procfs.c: Ditto.
2176         * remote-mips.c: Ditto.
2177         * remote.c: Ditto.
2178         * rs6000-nat.c: Ditto.
2179         * rs6000-tdep.c: Ditto.
2180         * target.c: Ditto.
2181         * valops.c: Ditto.
2182         * value.c: Ditto.
2183         * xml-support.c: Ditto.
2184         * mi/mi-cmd-break.c: Ditto.
2185         * mi/mi-cmd-var.c: Ditto.
2186         * mi/mi-interp.c: Ditto.
2187         * mi/mi-main.c: Ditto.
2188
2189 2011-01-11  Andrew Burgess  <aburgess@broadcom.com>
2190
2191         * remote-sim.c (gdbsim_store_register): Update API to
2192         sim_store_register to check more error conditions.
2193
2194 2011-01-10  Michael Snyder  <msnyder@vmware.com>
2195
2196         * nto-procfs.c: Comment cleanup, mostly periods and spaces.
2197         * nto-tdep.c: Ditto.
2198         * nto-tdep.h: Ditto.
2199         * objc-exp.y: Ditto.
2200         * objc-lang.c: Ditto.
2201         * objfiles.c: Ditto.
2202         * objfiles.h: Ditto.
2203         * observer.c: Ditto.
2204         * opencl-lang.c: Ditto.
2205         * osabi.c: Ditto.
2206         * parse.c: Ditto.
2207         * parser-defs.h: Ditto.
2208         * p-exp.y: Ditto.
2209         * p-lang.c: Ditto.
2210         * posix-hdep.c: Ditto.
2211         * ppcbug-rom.c: Ditto.
2212         * ppc-linux-nat.c: Ditto.
2213         * ppc-linux-tdep.c: Ditto.
2214         * ppc-linux-tdep.h: Ditto.
2215         * ppcnbsd-tdep.c: Ditto.
2216         * ppcobsd-tdep.c: Ditto.
2217         * ppcobsd-tdep.h: Ditto.
2218         * ppc-sysv-tdep.c: Ditto.
2219         * ppc-tdep.h: Ditto.
2220         * printcmd.c: Ditto.
2221         * proc-abi.c: Ditto.
2222         * proc-flags.c: Ditto.
2223         * procfs.c: Ditto.
2224         * proc-utils.h: Ditto.
2225         * progspace.h: Ditto.
2226         * prologue-value.c: Ditto.
2227         * prologue-value.h: Ditto.
2228         * psympriv.h: Ditto.
2229         * psymtab.c: Ditto.
2230         * p-typeprint.c: Ditto.
2231         * p-valprint.c: Ditto.
2232         * ravenscar-sparc-thread.c: Ditto.
2233         * ravenscar-thread.c: Ditto.
2234         * ravenscar-thread.h: Ditto.
2235         * record.c: Ditto.
2236         * regcache.c: Ditto.
2237         * regcache.h: Ditto.
2238         * remote.c: Ditto.
2239         * remote-fileio.c: Ditto.
2240         * remote-fileio.h: Ditto.
2241         * remote.h: Ditto.
2242         * remote-m32r-sdi.c: Ditto.
2243         * remote-mips.c: Ditto.
2244         * remote-sim.c: Ditto.
2245         * rs6000-aix-tdep.c: Ditto.
2246         * rs6000-nat.c: Ditto.
2247         * rs6000-tdep.c: Ditto.
2248
2249 2011-01-10  Michael Snyder  <msnyder@vmware.com>
2250
2251         * charset.c (validate): Internationalization.
2252         * coffread.c (read_one_sym): Ditto.
2253         * dwarf2read.c (dwarf2_attach_fields_to_type): Ditto.
2254         * h8300-tdep.c (H8300_extract_return_value): Ditto.
2255         * inflow.c (new_tty): Ditto.
2256         * iq2000-tdep.c (iq2000_breakpoint_from_pc): Ditto.
2257         * m32c-tdep.c (m32c_return_value): Ditto.
2258         * mep-tdep.c (mep_store_return_value): Ditto.
2259         * score-tdep.c (score7_fetch_insn): Ditto.
2260         * ser-mingw.c (pipe_windows_open): Ditto.
2261         * sh64-tdep.c (sh64_extract_return_value): Ditto.
2262         * spu-tdep.c (spu_register_type): Ditto.
2263         * tracepoint.c (trace_find_command): Ditto.
2264         * valarith.c (value_pos): Ditto.
2265
2266 2011-01-10  Joel Brobecker  <brobecker@adacore.com>
2267
2268         * ada-valprint.c (printstr): Minor comment reformatting.
2269
2270 2011-01-08  Michael Snyder  <msnyder@vmware.com>
2271
2272         * m32r-rom.c (m32r_upload_command): Fix up ARI warnings for _
2273         markup.
2274
2275 2011-01-08  Michael Snyder  <msnyder@vmware.com>
2276
2277         * h8300-tdep.c: Comment cleanup, mostly periods and spaces.
2278         * hppa-hpux-tdep.c: Ditto.
2279         * hppa-linux-nat.c: Ditto.
2280         * hppa-linux-tdep.c: Ditto.
2281         * hppanbsd-tdep.c: Ditto.
2282         * hppa-tdep.c: Ditto.
2283         * hppa-tdep.h: Ditto.
2284         * hpux-thread.c: Ditto.
2285         * i386-cygwin-tdep.c: Ditto.
2286         * i386-darwin-nat.c: Ditto.
2287         * i386gnu-nat.c: Ditto.
2288         * i386-linux-nat.c: Ditto.
2289         * i386-linux-tdep.c: Ditto.
2290         * i386-nat.c: Ditto.
2291         * i386-nat.h: Ditto.
2292         * i386nbsd-tdep.c: Ditto.
2293         * i386-sol2-nat.c: Ditto.
2294         * i386-stub.c: Ditto.
2295         * i386-tdep.c: Ditto.
2296         * i386-tdep.h: Ditto.
2297         * i387-tdep.c: Ditto.
2298         * ia64-linux-nat.c: Ditto.
2299         * ia64-linux-tdep.c: Ditto.
2300         * ia64-tdep.c: Ditto.
2301         * infcall.c: Ditto.
2302         * infcall.h: Ditto.
2303         * infcmd.c: Ditto.
2304         * inferior.c: Ditto.
2305         * inferior.h: Ditto.
2306         * infloop.c: Ditto.
2307         * inflow.c: Ditto.
2308         * infrun.c: Ditto.
2309         * interps.c: Ditto.
2310         * interps.h: Ditto.
2311         * iq2000-tdep.c: Ditto.
2312         * irix5-nat.c: Ditto.
2313         * jit.c: Ditto.
2314         * jit.h: Ditto.
2315         * jv-exp.y: Ditto.
2316         * jv-lang.c: Ditto.
2317         * jv-lang.h: Ditto.
2318         * jv-typeprint.c: Ditto.
2319         * jv-valprint.c: Ditto.
2320         * language.c: Ditto.
2321         * language.h: Ditto.
2322         * linespec.c: Ditto.
2323         * linux-fork.c: Ditto.
2324         * linux-nat.c: Ditto.
2325         * linux-thread-db.c: Ditto.
2326         * lm32-tdep.c: Ditto.
2327
2328 2011-01-08  Michael Snyder  <msnyder@vmware.com>
2329
2330         * m2-exp.y: Comment cleanup, mostly periods and spaces.
2331         * m2-lang.c: Ditto.
2332         * m2-typeprint.c: Ditto.
2333         * m2-valprint.c: Ditto.
2334         * m32c-tdep.c: Ditto.
2335         * m32r-linux-nat.c: Ditto.
2336         * m32r-rom.c: Ditto.
2337         * m32r-tdep.c: Ditto.
2338         * m32r-tdep.h: Ditto.
2339         * m68hc11-tdep.c: Ditto.
2340         * m58klinux-nat.c: Ditto.
2341         * m68k-tdep.c: Ditto.
2342         * m88k-tdep.c: Ditto.
2343         * m88k-tdep.h: Ditto.
2344         * machoread.c: Ditto.
2345         * macrocmd.c: Ditto.
2346         * macroexp.c: Ditto.
2347         * macrotab.c: Ditto.
2348         * main.c: Ditto.
2349         * maint.c: Ditto.
2350         * mdebugread.c: Ditto.
2351         * mdebugread.h: Ditto.
2352         * memattr.c: Ditto.
2353         * memattr.h: Ditto.
2354         * memory-map.h: Ditto.
2355         * mep-tdep.c: Ditto.
2356         * microblaze-rom.c: Ditto.
2357         * microblaze-tdep.c: Ditto.
2358         * minsyms.c: Ditto.
2359         * mips-irix-tdep.c: Ditto.
2360         * mips-linux-nat.c: Ditto.
2361         * mips-linux-tdep.c: Ditto.
2362         * mips-linux-tdep.h: Ditto.
2363         * mipsnbsd-nat.c: Ditto.
2364         * mipsnbsd-tdep.c: Ditto.
2365         * mipsread.c: Ditto.
2366         * mips-tdep.c: Ditto.
2367         * mips-tdep.h: Ditto.
2368         * mn10300-linux-tdep.c: Ditto.
2369         * mn10300-tdep.c: Ditto.
2370         * mn10300-tdep.h: Ditto.
2371         * monitor.c: Ditto.
2372         * monitor.h: Ditto.
2373         * moxie-tdep.c: Ditto.
2374         * moxie-tdep.h: Ditto.
2375         * mt-tdep.c: Ditto.
2376
2377 2011-01-08  Mike Frysinger  <vapier@gentoo.org>
2378
2379         * bfin-tdep.h (BFIN_A0_DOT_W_REGNUM): Fix typo in name.
2380
2381 2011-01-08  Robert Millan  <rmh@gnu.org>
2382
2383         * fbsd-nat.c (fbsd_find_memory_regions): Fix typo.
2384
2385 2011-01-07  Michael Snyder  <msnyder@vmware.com>
2386
2387         * charset.c (_initialize_charset): Fix typo in string.
2388
2389 2011-01-07  Michael Snyder  <msnyder@vmware.com>
2390
2391         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Mark up error message
2392         for i18n.
2393         * tui/tui-layout.c (tui_set_layout_for_display_command): 
2394         Split line so that operator goes to beginning of line.
2395         * tui/tui-winsource.c (tui_horizontal_source_scroll): Move
2396         assignment out of if statement.
2397
2398 2011-01-07  Michael Snyder  <msnyder@vmware.com>
2399
2400         * ada-lang.c: Comment cleanup, mostly periods and spaces.
2401         * ada-lang.h: Ditto.
2402         * ada-tasks.c: Ditto.
2403         * ada-valprint.c: Ditto.
2404         * aix-threads.c: Ditto.
2405         * alpha-linux-nat.c: Ditto.
2406         * alpha-linux-tdep.c: Ditto.
2407         * alpha-mdebug-tdep.c: Ditto.
2408         * alpha-nat.c: Ditto.
2409         * alpha-osf1-tdep.c: Ditto.
2410         * alpha-tdep.c: Ditto.
2411         * alphabsd-nat.c: Ditto.
2412         * alphabsd-tdep.c: Ditto.
2413         * amd64-darwin-tdep.c: Ditto.
2414         * amd64-linux-nat.c: Ditto.
2415         * amd64-linux-tdep.c: Ditto.
2416         * amd64-sol2-tdep.c: Ditto.
2417         * amd64-tdep.c: Ditto.
2418         * amd64-fbsd-tdep.c: Ditto.
2419         * amd64-nbsd-tdep.c: Ditto.
2420         * amd64-obsd-tdep.c: Ditto.
2421         * amd64-linux-nat.c: Ditto.
2422         * amd64-linux-tdep.c: Ditto.
2423         * arm-tdep.c: Ditto.
2424         * arm-tdep.h: Ditto.
2425         * armnbsd-nat.c: Ditto.
2426         * avr-tdep.c: Ditto.
2427         * bfin-tdep.c: Ditto.
2428         * bsd-kvm.c: Ditto.
2429         * c-typeprintc: Ditto.
2430         * c-valprint.c: Ditto.
2431         * coff-pe-read.h: Ditto.
2432         * coffreead.c: Ditto.
2433         * cris-tdep.c: Ditto.
2434         * d-lang.c: Ditto.
2435         * darwin-nat-info.c: Ditto.
2436         * darwin-nat.c: Ditto.
2437         * dbug-rom.c: Ditto.
2438         * dbxread.c: Ditto.
2439         * dcache.c: Ditto.
2440         * dcache.h: Ditto.
2441         * dec-thread.c: Ditto.
2442         * defs.h: Ditto.
2443         * demangle.c: Ditto.
2444         * dicos-tdep.c: Ditto.
2445         * dictionary.c: Ditto.
2446         * dictionary.h: Ditto.
2447         * dink32-rom.c: Ditto.
2448         * disasm.c: Ditto.
2449         * doublest.c: Ditto.
2450         * dsrec.c: Ditto.
2451         * dummy-frame.c: Ditto.
2452         * dwarf2-frame.c: Ditto.
2453         * dwarf2expr.c: Ditto.
2454         * dwarf2loc.c: Ditto.
2455         * dwarf2read.c: Ditto.
2456         * elfread.c: Ditto.
2457         * environ.c: Ditto.
2458         * eval.c: Ditto.
2459         * event-top.h: Ditto.
2460         * exceptions.c: Ditto.
2461         * exceptions.h: Ditto.
2462         * exec.c: Ditto.
2463         * expprint.c: Ditto.
2464         * expression.h: Ditto.
2465         * f-exp.y: Ditto.
2466         * f-lang.c: Ditto.
2467         * f-lang.h: Ditto.
2468         * f-typeprint.c: Ditto.
2469         * f-valprint.c: Ditto.
2470         * fbsd-nat.c: Ditto.
2471         * findvar.c: Ditto.
2472         * fork-child.c: Ditto.
2473         * frame.c: Ditto.
2474         * frame.h: Ditto.
2475         * frv-linux-tdep.c: Ditto.
2476         * frv-tdep.c: Ditto.
2477         * gcore.c: Ditto.
2478         * gdb-stabs.h: Ditto.
2479         * gdb_assert.h: Ditto.
2480         * gdb_string.h: Ditto.
2481         * gdb_thread_db.h: Ditto.
2482         * gdb_wait.h: Ditto.
2483         * gdbarch.sh: Ditto.
2484         * gdbcore.h: Ditto.
2485         * gdbthread.h: Ditto.
2486         * gdbtypes.c: Ditto.
2487         * gdbtypes.h: Ditto.
2488         * gnu-nat.c: Ditto.
2489         * gnu-nat.h: Ditto.
2490         * gnu-v2-abi.c: Ditto.
2491         * gnu-v3-abi.c: Ditto.
2492         * go32-nat.c: Ditto.
2493         * gdbarch.c: Regenerate.
2494         * gdbarch.h: Regenerate.
2495
2496 2011-01-07  Michael Snyder  <msnyder@vmware.com>
2497
2498         * ax-gdb.c: Adjust some long output strings.
2499         * breakpoint.c: Ditto.
2500         * charset.c: Ditto.
2501         * cp-abi.c: Ditto.
2502         * infcall.c: Ditto.
2503         * infrun.c: Ditto.
2504         * linux-nat.c: Ditto.
2505         * solib-pa64.c: Ditto.
2506         * solib-som.c: Ditto.
2507
2508 2011-01-06  Tom Tromey  <tromey@redhat.com>
2509
2510         PR python/12367:
2511         * NEWS: Add item.
2512         * python/python.c (GdbMethods): Add "newest_frame" method.
2513         * python/python-internal.h (gdbpy_newest_frame): Declare.
2514         * python/py-frame.c (gdbpy_newest_frame): New function.
2515
2516 2010-01-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
2517
2518         * jit.h (struct jit_code_entry): use ULONGEST for symfile_size.
2519         * jit.c (jit_debug): New variable.
2520         (show_jit_debug): New function.
2521         (struct target_buffer): Use ULONGEST.
2522         (bfd_open_from_target_memory): Likewise.
2523         (jit_register_code, jit_inferior_init): Add debug output.
2524         (_initialize_jit): Register "debug jit" command.
2525
2526 2011-01-06  Tom Tromey  <tromey@redhat.com>
2527
2528         * frame.h (enum frame_type) <INLINE_FRAME>: Fix comment.
2529         * python/py-frame.c (gdbpy_initialize_frames): Add INLINE_FRAME
2530         and ARCH_FRAME.
2531
2532 2011-01-06  Tom Tromey  <tromey@redhat.com>
2533
2534         * python/py-frame.c (frapy_block): Use get_frame_block.
2535
2536 2011-01-06  Joel Brobecker  <brobecker@adacore.com>
2537
2538         Do not stop on SIGPRIO signals by default
2539         * infrun.c (_initialize_infrun): Unset signal_stop and
2540         signal_print for TARGET_SIGNAL_PRIO.
2541
2542 2011-01-06  Joel Brobecker  <brobecker@adacore.com>
2543
2544         * ada-tasks.c: Fix style violation in comment.
2545
2546 2011-01-06  Joel Brobecker  <brobecker@adacore.com>
2547
2548         * linespec.c (decode_compound, find_method): Remove trailing \n
2549         at end of error string.
2550         * solib-irix.c (irix_current_sos): Likewise.
2551         * varobj.c (uninstall_variable): Likewise.
2552
2553 2011-01-06  Joel Brobecker  <brobecker@adacore.com>
2554
2555         * copyright.py: New script.
2556         * copyright.sh (byhand): Add *.ads, *.adb, *.gpr and *.inc.
2557         Launch emacs without exec'ing. Call copyright.py afterwards.
2558
2559 2011-01-05  Michael Snyder  <msnyder@vmware.com>
2560
2561         * addrmap.c: Shorten lines of >= 80 columns.
2562         * arch-utils.c: Ditto.
2563         * arch-utils.h: Ditto.
2564         * ax-gdb.c: Ditto.
2565         * ax-general.c: Ditto.
2566         * bcache.c: Ditto.
2567         * blockframe.c: Ditto.
2568         * breakpoint.c: Ditto.
2569         * buildsym.c: Ditto.
2570         * c-lang.c: Ditto.
2571         * c-typeprint.c: Ditto.
2572         * charset.c: Ditto.
2573         * coffread.c: Ditto.
2574         * command.h: Ditto.
2575         * corelow.c: Ditto.
2576         * cp-abi.c: Ditto.
2577         * cp-namespace.c: Ditto.
2578         * cp-support.c: Ditto.
2579         * dbug-rom.c: Ditto.
2580         * dbxread.c: Ditto.
2581         * defs.h: Ditto.
2582         * dfp.c: Ditto.
2583         * dfp.h: Ditto.
2584         * dictionary.c: Ditto.
2585         * disasm.c: Ditto.
2586         * doublest.c: Ditto.
2587         * dwarf2-frame.c: Ditto.
2588         * dwarf2expr.c: Ditto.
2589         * dwarf2loc.c: Ditto.
2590         * dwarf2read.c: Ditto.
2591         * elfread.c: Ditto.
2592         * eval.c: Ditto.
2593         * event-loop.c: Ditto.
2594         * event-loop.h: Ditto.
2595         * exceptions.h: Ditto.
2596         * exec.c: Ditto.
2597         * expprint.c: Ditto.
2598         * expression.h: Ditto.
2599         * f-lang.c: Ditto.
2600         * f-valprint.c: Ditto.
2601         * findcmd.c: Ditto.
2602         * frame-base.c: Ditto.
2603         * frame-unwind.c: Ditto.
2604         * frame-unwind.h: Ditto.
2605         * frame.c: Ditto.
2606         * frame.h: Ditto.
2607         * gcore.c: Ditto.
2608         * gdb-stabs.h: Ditto.
2609         * gdb_assert.h: Ditto.
2610         * gdb_dirent.h: Ditto.
2611         * gdb_obstack.h: Ditto.
2612         * gdbcore.h: Ditto.
2613         * gdbtypes.c: Ditto.
2614         * gdbtypes.h: Ditto.
2615         * inf-ttrace.c: Ditto.
2616         * infcall.c: Ditto.
2617         * infcmd.c: Ditto.
2618         * inflow.c: Ditto.
2619         * infrun.c: Ditto.
2620         * inline-frame.h: Ditto.
2621         * language.c: Ditto.
2622         * language.h: Ditto.
2623         * libunwind-frame.c: Ditto.
2624         * libunwind-frame.h: Ditto.
2625         * linespec.c: Ditto.
2626         * linux-nat.c: Ditto.
2627         * linux-nat.h: Ditto.
2628         * linux-thread-db.c: Ditto.
2629         * machoread.c: Ditto.
2630         * macroexp.c: Ditto.
2631         * macrotab.c: Ditto.
2632         * main.c: Ditto.
2633         * maint.c: Ditto.
2634         * mdebugread.c: Ditto.
2635         * memattr.c: Ditto.
2636         * minsyms.c: Ditto.
2637         * monitor.c: Ditto.
2638         * monitor.h: Ditto.
2639         * objfiles.c: Ditto.
2640         * objfiles.h: Ditto.
2641         * osabi.c: Ditto.
2642         * p-typeprint.c: Ditto.
2643         * p-valprint.c: Ditto.
2644         * parse.c: Ditto.
2645         * printcmd.c: Ditto.
2646         * proc-events.c: Ditto.
2647         * procfs.c: Ditto.
2648         * progspace.c: Ditto.
2649         * progspace.h: Ditto.
2650         * psympriv.h: Ditto.
2651         * psymtab.c: Ditto.
2652         * record.c: Ditto.
2653         * regcache.c: Ditto.
2654         * regcache.h: Ditto.
2655         * remote-fileio.c: Ditto.
2656         * remote.c: Ditto.
2657         * ser-mingw.c: Ditto.
2658         * ser-tcp.c: Ditto.
2659         * ser-unix.c: Ditto.
2660         * serial.c: Ditto.
2661         * serial.h: Ditto.
2662         * solib-frv.c: Ditto.
2663         * solib-irix.c: Ditto.
2664         * solib-osf.c: Ditto.
2665         * solib-pa64.c: Ditto.
2666         * solib-som.c: Ditto.
2667         * solib-sunos.c: Ditto.
2668         * solib-svr4.c: Ditto.
2669         * solib-target.c: Ditto.
2670         * solib.c: Ditto.
2671         * somread.c: Ditto.
2672         * source.c: Ditto.
2673         * stabsread.c: Ditto.
2674         * stabsread.c: Ditto.
2675         * stack.c: Ditto.
2676         * stack.h: Ditto.
2677         * symfile-mem.c: Ditto.
2678         * symfile.c: Ditto.
2679         * symfile.h: Ditto.
2680         * symmisc.c: Ditto.
2681         * symtab.c: Ditto.
2682         * symtab.h: Ditto.
2683         * target-descriptions.c: Ditto.
2684         * target-memory.c: Ditto.
2685         * target.c: Ditto.
2686         * target.h: Ditto.
2687         * terminal.h: Ditto.
2688         * thread.c: Ditto.
2689         * top.c: Ditto.
2690         * tracepoint.c: Ditto.
2691         * tracepoint.h: Ditto.
2692         * ui-file.c: Ditto.
2693         * ui-file.h: Ditto.
2694         * ui-out.h: Ditto.
2695         * user-regs.c: Ditto.
2696         * user-regs.h: Ditto.
2697         * utils.c: Ditto.
2698         * valarith.c: Ditto.
2699         * valops.c: Ditto.
2700         * valprint.c: Ditto.
2701         * valprint.h: Ditto.
2702         * value.c: Ditto.
2703         * varobj.c: Ditto.
2704         * varobj.h: Ditto.
2705         * vec.h: Ditto.
2706         * xcoffread.c: Ditto.
2707         * xcoffsolib.c: Ditto.
2708         * xcoffsolib.h: Ditto.
2709         * xml-syscall.c: Ditto.
2710         * xml-tdesc.c: Ditto.
2711
2712 2011-01-05  Michael Snyder  <msnyder@vmware.com>
2713
2714         * cli/cli-cmds.c: Shorten lines of >= 80 columns.
2715         * cli/cli-decode.c: Ditto.
2716         * cli/cli-dump.c: Ditto.
2717         * cli/cli-logging.c: Ditto.
2718         * cli/cli-script.c: Ditto.
2719         * cli/cli-setshow.c: Ditto.
2720         * common/signals.c: Ditto.
2721         * mi/mi-cmd-break.c: Ditto.
2722         * mi/mi-cmd-disas.c: Ditto.
2723         * mi/mi-cmd-stack.c: Ditto.
2724         * mi/mi-cmd-var.c: Ditto.
2725         * mi/mi-cmds.c: Ditto.
2726         * mi/mi-common.h: Ditto.
2727         * mi/mi-console.c: Ditto.
2728         * mi/mi-interp.c: Ditto.
2729         * mi/mi-main.c: Ditto.
2730         * osf-share/cma_attr.c: Ditto.
2731         * osf-share/cma_deb_core.h: Ditto.
2732         * osf-share/cma_debug_client.h: Ditto.
2733         * osf-share/cma_handle.h: Ditto.
2734         * osf-share/cma_mutex.h: Ditto.
2735         * osf-share/cma_stack_int.h: Ditto.
2736         * osf-share/cma_tcb_defs.h: Ditto.
2737         * python/py-auto-load.c: Ditto.
2738         * python/py-breakpoint.c: Ditto.
2739         * python/py-cmd.c: Ditto.
2740         * python/py-frame.c: Ditto.
2741         * python/py-objfile.c: Ditto.
2742         * python/py-param.c: Ditto.
2743         * python/py-progspace.c: Ditto.
2744         * python/py-symbol.c: Ditto.
2745         * python/py-value.c: Ditto.
2746         * python/python-internal.h: Ditto.
2747         * python/python.c: Ditto.
2748         * tui/tui-data.c: Ditto.
2749         * tui/tui-disasm.c: Ditto.
2750         * tui/tui-hooks.c: Ditto.
2751         * tui/tui-io.c: Ditto.
2752         * tui/tui-layout.c: Ditto.
2753         * tui/tui-regs.c: Ditto.
2754         * tui/tui-source.c: Ditto.
2755         * tui/tui-stack.c: Ditto.
2756         * tui/tui-win.c: Ditto.
2757         * tui/tui-windata.c: Ditto.
2758         * tui/tui-winsource.c: Ditto.
2759
2760 2011-01-05  Joel Brobecker  <brobecker@adacore.com>
2761
2762         * configure.ac, gdb.1: Copyright year update.
2763
2764 2011-01-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
2765
2766         * frame.c (get_prev_frame_1) <UNWIND_INNER_ID>: New variables
2767         this_pc_in_block, morestack_msym and morestack_name.  Check for
2768         "__morestack" minimal symbol there.
2769
2770 2011-01-03  Joel Brobecker  <brobecker@adacore.com>
2771
2772         * symfile.c (find_sym_fns): Add call to dont_repeat.
2773
2774 2011-01-01  Joel Brobecker  <brobecker@adacore.com>
2775
2776         Copyright year update in most files (performed by copyright.sh).
2777
2778 2011-01-01  Joel Brobecker  <brobecker@adacore.com>
2779
2780         * top.c (print_gdb_version): Update copyright year in version output.
2781
2782 For older changes see ChangeLog-2010.
2783 \f
2784 Local Variables:
2785 mode: change-log
2786 left-margin: 8
2787 fill-column: 74
2788 version-control: never
2789 coding: utf-8
2790 End: