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