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