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