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