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