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