gdb/
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2012-09-19 Thomas Schwinge <thomas@codesourcery.com>
2
3 * h8300-tdep.c (h8300_gdbarch_init): Invoke
4 set_gdbarch_double_format and set_gdbarch_long_double_format.
5 * m68hc11-tdep.c (m68hc11_gdbarch_init): Invoke
6 set_gdbarch_double_format.
7 * sh-tdep.c (sh_gdbarch_init): Likewise.
8
9 * NEWS: Document the removal of SH's 'regs' command.
10 * sh-tdep.c (_initialize_sh_tdep): Remove the deprecated 'regs'
11 command.
12
13 2012-09-18 Sergio Durigan Junior <sergiodj@redhat.com>
14
15 * infcmd.c (_initialize_infcmd): Register `j' as an alias for
16 `jump'.
17
18 2012-09-18 Joel Brobecker <brobecker@adacore.com>
19
20 * linespec.c (iterate_over_all_matching_symtabs): Use the correct
21 language when iterating over symbols.
22
23 2012-09-18 Yao Qi <yao@codesourcery.com>
24
25 * mi/mi-interp.c: Declare mi_tsv_created and mi_tsv_deleted.
26 (mi_interpreter_init): Call observer_attach_tsv_created and
27 observer_attach_tsv_deleted.
28 (mi_tsv_created, mi_tsv_deleted): New.
29 * tracepoint.c (delete_trace_state_variable): Call
30 observer_notify_tsv_deleted.
31 (trace_variable_command): Call observer_notify_tsv_created.
32 (delete_trace_variable_command): Call
33 observer_notify_tsv_deleted.
34 (create_tsv_from_upload): Call observer_notify_tsv_created.
35 * NEWS: Mention it.
36
37 2012-09-18 Yao Qi <yao@codesourcery.com>
38
39 * tracepoint.c (tfind_1): Call observer_notify_traceframe_changed
40 if traceframe changed.
41 * mi/mi-cmds.c (mi_cmd mi_cmds): Adjust for command
42 "trace-find".
43 * mi/mi-interp.c: Declare 'mi_traceframe_changed'.
44 (mi_interpreter_init): Hook mi_traceframe_changed to observer
45 'traceframe_changed'.
46 (mi_traceframe_changed): New.
47 * mi/mi-main.h (struct mi_suppress_notification) <traceframe>:
48 New field.
49 * NEWS: Mention the new MI notification.
50
51 2012-09-17 Mike Wrighton <wrighton@codesourcery.com>
52
53 * MAINTAINERS (Write After Approval): Add "Mike Wrighton".
54
55 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
56
57 * common/linux-ptrace.c: Change __i386__ to __i386__ || __x86_64__.
58 (linux_ptrace_test_ret_to_nx): Extend comment for x86_64. Change
59 __i386__ to __i386__ || __x86_64__. Extend code also for __x86_64__.
60 Extend code also for PaX support. Convert all gdb_assert to warning
61 calls.
62
63 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
64
65 Implement auto-load user conveniences suggested by Doug Evans.
66 * auto-load.c: Include top.h.
67 (file_is_auto_load_safe): New variable advice_printed. Print advice.
68 (_initialize_auto_load): New variable scripts_directory_help. Mention
69 GDBPY_AUTO_FILE_NAME and GDB_AUTO_FILE_NAME for set auto-load
70 scripts-directory. Document in online help one can use also files for
71 set auto-load safe-path.
72 * python/py-auto-load.c: (GDBPY_AUTO_FILE_NAME): Move it from here ...
73 * python/python.h (GDBPY_AUTO_FILE_NAME): ... to here.
74
75 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
76
77 * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused definition
78 of LEN.
79
80 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
81
82 * m2-valprint.c (m2_print_array_contents): Eliminate variable
83 ELTLEN and use TYPE_LENGTH directly.
84 (m2_val_print): Likewise.
85 * m68k-tdep.c (m68k_svr4_extract_return_value): Eliminate
86 variable LEN and use TYPE_LENGTH directly.
87 (m68k_svr4_store_return_value): Likewise.
88 * mips-tdep.c (mips_o32_push_dummy_call): Eliminate variable
89 ARGLEN and use TYPE_LENGTH directly.
90 (mips_o64_push_dummy_call): Likewise.
91 * s390-tdep (s390_function_arg_pass_by_reference): Eliminate
92 variable LENGTH and use TYPE_LENGTH directly.
93 (s390_function_arg_float): Likewise.
94 (s390_function_arg_integer): Likewise.
95 (s390_push_dummy_call): Likewise.
96 (s390_return_value_convention): Likewise.
97 * spu-tdep.c (spu_push_dummy_call): Eliminate LEN and use
98 TYPE_LENGTH directly.
99
100 2012-09-17 Yao Qi <yao@codesourcery.com>
101
102 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
103 Update comment to add_setshow_integer_cmd.
104 * cli/cli-setshow.c (do_set_command): Handle case
105 'var_zuinteger_unlimited'.
106 (do_show_command): Likewise.
107 * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
108 for command 'remotetimeout'.
109 * command.h (enum var_types): New zuinteger_unlimited. Update comment
110 to var_integer.
111 * source.c (_initialize_source): Call add_setshow_zuinteger_unlimited_cmd
112 for command 'set listsize'.
113
114 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
115
116 * infrun.c (restore_infcall_suspend_state): Eliminate single-use
117 variable LEN.
118
119 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
120
121 PR 14119
122 * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames.
123 (frame_pop): Drop also TAILCALL_FRAME frames.
124 * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames.
125
126 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
127 Pedro Alves <palves@redhat.com>
128
129 PR 14548
130 * infrun.c (handle_inferior_event): Do not reverse-continue back to the
131 function start if we are already at function start. Both for
132 reverse-next and for reverse-step into function without line number
133 info.
134
135 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
136
137 Code cleanup - rename 'inline' depth to 'artificial' depth.
138 * breakpoint.c (set_momentary_breakpoint): Rename at a caller to
139 frame_id_artificial_p, extend the comment.
140 * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
141 * frame.c (fprint_frame_id): Rename at a user, change debug output
142 text to "artificial=".
143 (skip_inlined_frames): Rename to ...
144 (skip_artificial_frames): ... here. Extend the comment.
145 (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
146 (frame_id_inlined_p): Rename to ...
147 (frame_id_artificial_p): ... here. Rename at a user.
148 (frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
149 (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
150 at a user.
151 * frame.h (struct frame_id): Rename inline_depth to artificial_depth.
152 Extend the comment.
153 (frame_id_inlined_p): Rename to ...
154 (frame_id_artificial_p): ... here.
155 * inline-frame.c (inline_frame_this_id): Rename at a user.
156
157 2012-09-14 Andrew Burgess <aburgess@broadcom.com>
158
159 * c-typeprint.c (c_type_print_varspec_suffix): Display the size of
160 vector variables using vector_size syntax rather than array
161 syntax.
162
163 2012-09-14 Siddhesh Poyarekar <siddhesh@redhat.com>
164
165 * valarith.c (value_concat): Replace unsafe ALLOCA with
166 XMALLOC/XFREE.
167
168 2012-09-14 Pedro Alves <palves@redhat.com>
169
170 * gdb.1 (SEE ALSO): Expand pointer to GDB's Texinfo manual.
171
172 2012-09-14 Khoo Yit Phang <khooyp@cs.umd.edu>
173
174 Point contrib/cc-with-tweaks.sh to the build-local data-directory.
175 * contrib/cc-with-tweaks.sh (GDB): Add -data-directory
176 data-directory as appropriate.
177
178 2012-09-14 Siddhesh Poyarekar <siddhesh@redhat.com>
179
180 * printcmd.c (ui_printf): Eliminate single-use variable
181 PARAM_LEN.
182
183 2012-09-14 Yao Qi <yao@codesourcery.com>
184 Pedro Alves <palves@redhat.com>
185
186 * valops.c (value_assign): Move observer_notify_target_changed
187 below to replace reinit_frame_cache.
188
189 2012-09-13 Khoo Yit Phang <khooyp@cs.umd.edu>
190
191 Refactor Python "gdb" module into a proper Python package, by
192 introducing a new "_gdb" module for code implemented in C, and
193 using reload/__import__ instead of exec.
194 * python/lib/gdb/__init__.py: Import * from _gdb.
195 (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
196 prompt_hook, sys.argv): Moved from finish_python_initialization.
197 (pretty_printers, PYTHONDIR): Moved from _initialize_python.
198 (packages, auto_load_packages): New list and function replacing
199 module_dict and auto-loading code, using __file__ instead of
200 gdb.PYTHONDIR and reload/__import__ instead of exec.
201 (GdbSetPythonDirectory): Replacing function of the same name
202 from finish_python_initialization, using reload/__import__ instead
203 of exec, as well as call auto_load_packages.
204 * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
205 gdb_python_module and not gdb_module.
206 * python/python-internal.h (gdb_python_module): Declare.
207 * python/python.c (gdb_python_module): New global.
208 (before_prompt_hook): Check gdb_python_module and not gdb_module.
209 (_initialize_python): Rename gdb module to _gdb.
210 Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
211 (finish_python_initialization): Move Python code to
212 lib/gdb/__init__.py; instead, set up sys.path and import gdb into
213 __main__.
214
215 2012-09-13 Pedro Alves <palves@redhat.com>
216
217 * Makefile.in (COMMON_OBS): Add registry.o.
218 * registry.c: New file.
219 * registry.h (struct registry_container): Declare.
220 (registry_data_callback): New typedef.
221 (struct registry_data, struct registry_data_registration, struct
222 registry_data_registry): New type.
223 (register_data_with_cleanup, registry_alloc_data)
224 (registry_callback_adaptor, registry_clear_data)
225 (registry_container_free_data, registry_set_data, registry_data):
226 Declare.
227 (DEFINE_REGISTRY): Refactor structures and functions as shims over
228 the new common structures and functions.
229 (DECLARE_REGISTRY): Declare struct TAG ## _data. Use the tagged
230 callback typedefs.
231
232 2012-09-12 Mike Wrighton <wrighton@codesourcery.com>
233
234 * remote.c (remote_insert_hw_breakpoint): Throw exception if
235 there is an error inserting hardware breakpoints and use the
236 error message from the target.
237
238 * breakpoint.c (insert_bp_location, insert_breakpoint_locations):
239 Catch this exception and print the error message contained within. Do not
240 print the default hardware error breakpoint message in this case.
241
242 2012-09-12 Doug Evans <dje@google.com>
243
244 * dwarf2read.c (dwarf2_read_addr_index): Fix handling the case where
245 cu == NULL.
246
247 2012-09-11 Doug Evans <dje@google.com>
248
249 * dwarf2read.c (dw2_do_expand_symtabs_matching): Don't examine
250 .gdb_index symbol attributes if there are none.
251
252 2012-09-11 Joel Brobecker <brobecker@adacore.com>
253
254 * symtab.h (struct minimal_symbol) [has_size]: New field.
255 (MSYMBOL_SIZE): Adjust to forbid macro from being used as lvalue.
256 (SET_MSYMBOL_SIZE, MSYMBOL_HAS_SIZE): New macros.
257 * printcmd.c (build_address_symbolic): Only filter out zero-sized
258 minimal symbols if the symbol's size is actually known.
259 * minsyms.c (prim_record_minimal_symbol_full): Adjust setting
260 of msymbol's size field. Add comment.
261 * elfread.c (elf_symtab_read, elf_rel_plt_read): Use
262 SET_MSYMBOL_SIZE to set the minimal symbol size.
263
264 2012-09-11 Joel Brobecker <brobecker@adacore.com>
265
266 * minsyms.c (install_minimal_symbols): Use memset to fill entire
267 minimal_symbol struct object, rather than setting some of its
268 fields one by one.
269
270 2012-09-11 Andrew Burgess <aburgess@broadcom.com>
271
272 * c-typeprint.c (c_type_print_varspec_prefix): Pass through the
273 passed_a_ptr flag when displaying typedef types.
274
275 2012-09-10 Joel Brobecker <brobecker@adacore.com>
276
277 * ada-lang.c (coerce_unspec_val_to_type): Make sure that
278 the optimized_out flag is preserved.
279
280 2012-09-10 Anthony Green <green@moxielogic.com>
281
282 * moxie-tdep.c (moxie_analyze_prologue): Update for function
283 prologue changes in GCC.
284
285 2012-09-10 Keith Seitz <keiths@redhat.com>
286
287 PR gdb/13483
288 * gdbtypes.h (BOOL_PTR_CONVERSION_BADNESS): Rename to ...
289 (BOOL_CONVERSION_BADNESS): ... this.
290 * gdbtypes.c (BOOL_PTR_CONVERSION_BADNESS): Likewise.
291 (rank_one_type): Allow all boolean conversions
292 permitted by the standard.
293
294 2012-09-06 Tom Tromey <tromey@redhat.com>
295
296 * python/py-newobjfileevent.c (create_new_objfile_event_object):
297 Don't decref py_objfile.
298
299 2012-09-02 Khoo Yit Phang <khooyp@cs.umd.edu>
300
301 Do not enable -lmcheck by default when Python is enabled with
302 threading support.
303 * configure.ac: (python_has_threads) New variable, by testing
304 if WITH_THREAD is defined in Python.h.
305 Move --enable-lmcheck after --with-python.
306 Do not enable -lmcheck by default if python_has_threads=yes.
307 Warn if --enable-lmcheck and python_has_threads=yes.
308 * configure: Regenerate.
309
310 2012-08-31 Yao Qi <yao@codesourcery.com>
311
312 * mi/mi-cmds.c (mi_cmds): New macros DEF_MI_CMD_CLI
313 DEF_MI_CMD_MI DEF_MI_CMD_CLI_1 and DEF_MI_CMD_CLI_1.
314 Update some commands.
315 * mi/mi-cmds.h (struct mi_cmd) <suppress_notification>: New field.
316 * mi/mi-main.c (mi_cmd_execute): Set '*parse->cmd->suppress_notification'
317 to 1.
318
319 2012-08-31 Yao Qi <yao@codesourcery.com>
320
321 * mi/mi-cmds.c (mi_cmds): Add 'static'.
322
323 2012-08-30 Khoo Yit Phang <khooyp@cs.umd.edu>
324
325 * MAINTAINERS (Write After Approval): Add "Khoo Yit Phang".
326
327 2012-08-29 Doug Evans <dje@google.com>
328
329 * main.c (print_gdb_help): Remove reference to
330 --use-deprecated-index-sections.
331
332 2012-08-28 Yao Qi <yao@codesourcery.com>
333
334 * cli/cli-cmds.c (max_user_call_depth): Add 'unsigned'.
335 (init_cmds): Call add_setshow_uinteger_cmd for command
336 'max-user-call-depth'.
337 * cli/cli-script.c (execute_user_command): Add 'unsigned' to the
338 declaration of 'max_user_call_depth'.
339 * frame.c (backtrace_limit): Add 'unsigned'.
340 (_initialize_frame): Call add_setshow_uinteger_cmd for command
341 'limit'.
342 * remote.c (remoteaddresssize): Add 'unsigned'.
343 (remote_address_masked): Change local var 'address_size' to
344 'unsigned'.
345 (_initialize_remote): Call add_setshow_uinteger_cmd for
346 'remoteaddresssize'.
347 * top.c (history_size): Add 'unsigned'.
348 (show_commands): Change local variables to 'unsigned'.
349 (set_history_size_command): Don't check history_size is negative.
350 Adjust the condition to call unstifle_history and set history_size
351 to UNIT_MAX.
352
353 2012-08-28 Pedro Alves <palves@redhat.com>
354
355 PR gdb/14428
356
357 * infcmd.c (default_print_one_register_info): New, factored out
358 from default_print_registers_info.
359 (default_print_registers_info): Use it. Mark value unavailable if
360 necessary.
361 (registers_info): Print user registers with
362 default_print_one_register_info.
363
364 2010-08-27 H.J. Lu <hongjiu.lu@intel.com>
365
366 PR tui/14486
367 * tui/tui-source.c (tui_source_is_displayed): Check if TUI_SRC_WIN
368 is not NULL before referencing it.
369
370 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
371
372 * breakpoint.c (parse_breakpoint_sals) <(*address) == NULL>: New
373 variable pc. Call find_pc_line instead of find_pc_overlay, restore
374 original PC for it.
375
376 2012-08-27 Eli Zaretskii <eliz@gnu.org>
377 Jan Kratochvil <jan.kratochvil@redhat.com>
378
379 * auto-load.c (auto_load_objfile_script): Rename to ...
380 (auto_load_objfile_script_1): ... here, change variable realname to
381 parameter realname, document it, add return value, add variable retval.
382 (auto_load_objfile_script): New function.
383
384 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
385
386 * cli/cli-decode.c (print_doc_line): Keep skipping '.' and ',' not
387 followed by a whitespace.
388
389 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
390
391 PR gdb/14494.
392 * dwarf2read.c (dwarf2_locate_sections): Move variable aflag here.
393 Move the SEC_HAS_CONTENTS check here - for any NAMES use.
394 (dwarf2_locate_sections) <eh_frame>: Move the variable and check from
395 here.
396
397 2012-08-27 Wei-cheng Wang <cole945@gmail.com>
398
399 * memattr.c (create_mem_region): Fix memory region overlapping
400 checking.
401
402 2012-08-24 Siddhesh Poyarekar <siddhesh@redhat.com>
403
404 * h8300-tdep.c (h8300_push_dummy_call): Replace unsafe alloca
405 with xmalloc/cleanup.
406 * mt-tdep.c (mt_push_dummy_call): Likewise.
407 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
408 * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
409
410 2012-08-24 Yao Qi <yao@codesourcery.com>
411
412 * jv-exp.y (push_expression_name): Add "." at the end of error
413 message.
414
415 2012-08-23 Khoo Yit Phang <khooyp@cs.umd.edu>
416
417 Document how to return from "python-interactive" to GDB.
418 * python/python.c (_initialize_python): Update documentation.
419
420 2012-08-23 Pedro Alves <palves@redhat.com>
421
422 * infrun.c (_initialize_infrun) <handle command help text>:
423 Mention that multiple signals are supported.
424
425 2012-08-23 Pedro Alves <palves@redhat.com>
426
427 * infcmd.c (_initialize_infcmd) <signal command>: Fix typo in help
428 string.
429
430 2012-08-23 Yao Qi <yao@codesourcery.com>
431
432 * tracepoint.c (disconnect_tracing): Call set_tracepoint_num.
433 (tfind_1): Don't call registers_changed, set_traceframe_num,
434 and clear_traceframe_info.
435 Call set_current_traceframe.
436 (set_current_traceframe): call set_traceframe_num.
437
438 2012-08-22 Sergio Durigan Junior <sergiodj@redhat.com>
439
440 * remote-sim.c (_initialize_remote_sim): Pass NULL argument to
441 `register_inferior_data_with_cleanup', fixing regression on PowerPC64.
442
443 2012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
444
445 Enable readline in Python in a GDB-specific way and block the
446 standard Python readline module to prevent conflicts with GDB.
447 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
448 (SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
449 (py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
450 * python/py-gdb-readline.c: New file.
451 * python/python-internal.h (gdbpy_initialize_gdb_readline): New
452 prototype.
453 * python/python.c (_initialize_python): Call
454 gdbpy_initialize_gdb_readline.
455
456 2012-08-22 Keith Seitz <keiths@redhat.com>
457
458 * defs.h: Include build-gnulib/config.h
459
460 2012-08-22 Joseph Myers <joseph@codesourcery.com>
461
462 * arm-tdep.c (thumb_get_next_pc_raw): Mask off low bits for bx pc
463 and blx pc.
464
465 2012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
466
467 Add a new "python-interactive" command that starts a standard
468 Python interactive prompt with "pi" as alias, and add "py" as
469 an alias to "python".
470 * NEWS: Mention the new commands.
471 * python/python.c (eval_python_command): New function.
472 (python_interactive_command): For "python-interactive" with
473 arguments, call eval_python_command. For "python-interactive"
474 without arguments, call PyRun_InteractiveLoop.
475 (_initialize_python): Add "python-interactive" command with
476 "pi" as alias, and add "py" as an alias to "python".
477
478 2012-08-22 Tom Tromey <tromey@redhat.com>
479
480 * defs.h (quit_flag): Don't declare.
481 (clear_quit_flag, check_quit_flag, set_quit_flag): Declare.
482 (QUIT): Use new functions.
483 * event-top.c (command_handler): Use clear_quit_flag.
484 (handle_sigint): Use set_quit_flag.
485 (async_request_quit): Use check_quit_flag. Don't check
486 immediate_quit.
487 * exceptions.c (throw_exception): Use clear_quit_flag.
488 * main.c (captured_main): Use clear_quit_flag.
489 * python/python.c (clear_quit_flag, set_quit_flag)
490 (check_quit_flag): New functions.
491 * remote-sim.c (gdb_os_poll_quit): Use check_quit_flag,
492 clear_quit_flag.
493 * remote.c (remote_wait_as): Use check_quit_flag,
494 clear_quit_flag.
495 (remote_start_remote): Call QUIT.
496 * symfile.c (load_progress): Use check_quit_flag.
497 * top.c (command_loop): Use clear_quit_flag.
498 (command_line_input): Call QUIT.
499 * utils.c (quit_flag): Conditionally define.
500 (clear_quit_flag, check_quit_flag, set_quit_flag): New
501 functions.
502 (prompt_for_continue): Call QUIT. Use quit, not
503 async_request_quit.
504 * remote-mips.c (mips_expect_timeout): Call QUIT.
505 * monitor.c (monitor_expect): Call QUIT.
506
507 2012-08-22 Tom Tromey <tromey@redhat.com>
508
509 * event-top.c (sigwinch_token, handle_sigwinch): Remove.
510 (async_init_signals): Update.
511 * utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
512 (SIGWINCH_HANDLER_BODY): Remove.
513
514 2012-08-22 Tom Tromey <tromey@redhat.com>
515
516 * jit.c (jit_object_close_impl): Don't malloc the objfile
517 name.
518 * objfiles.c (allocate_objfile): Don't malloc the objfile
519 name.
520 (free_objfile): Don't free the objfile name.
521 * objfiles.h (struct objfile) <name>: Update comment.
522 * symfile.c (reread_symbols): Fix reference counting. Don't
523 malloc objfile name.
524
525 2012-08-22 Tom Tromey <tromey@redhat.com>
526
527 * windows-nat.c (windows_make_so): Use gdb_bfd_open.
528 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_open.
529 (symfile_bfd_open): Likewise.
530 (generic_load): Likewise.
531 * solib.c (solib_bfd_fopen): Use gdb_bfd_open.
532 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
533 gdb_bfd_open.
534 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
535 Use gdb_bfd_open.
536 * rs6000-nat.c (add_vmap): Use gdb_bfd_open.
537 * remote-mips.c (mips_load_srec): Use gdb_bfd_open.
538 (pmon_load_fast): Likewise.
539 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_open.
540 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_open.
541 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_open.
542 (macho_check_dsym): Likewise.
543 * m32r-rom.c (m32r_load): Use gdb_bfd_open.
544 (m32r_upload_command): Likewise.
545 * gdb_bfd.h (gdb_bfd_cache): Declare.
546 * gdb_bfd.c (struct gdb_bfd_data): New.
547 (gdb_bfd_cache): New global.
548 (struct gdb_bfd_cache_search): New.
549 (hash_bfd): New function.
550 (eq_bfd): Likewise.
551 (gdb_bfd_open): Likewise.
552 (gdb_bfd_ref): Allocate a gdb_bfd_data and attach to the BFD.
553 (gdb_bfd_unref): Remove closed BFD from cache. Update for
554 gdb_bfd_data.
555 * exec.c (exec_file_attach): Use gdb_bfd_open.
556 * dsrec.c (load_srec): Use gdb_bfd_open.
557
558 2012-08-22 Tom Tromey <tromey@redhat.com>
559
560 * dwarf2read.c (macro_start_file): Update.
561 * objfiles.c (get_objfile_bfd_data): Initialize macro_cache.
562 (free_objfile_per_bfd_storage): Destroy macro_cache.
563 (allocate_objfile, free_objfile): Update.
564 * objfiles.h (struct objfile_per_bfd_storage) <macro_cache>:
565 New field.
566 (struct objfile) <macro_cache>: Remove.
567 * symfile.c (reread_symbols): Update.
568 * symmisc.c (print_symbol_bcache_statistics): Update.
569 (print_objfile_statistics): Update.
570
571 2012-08-22 Tom Tromey <tromey@redhat.com>
572
573 * elfread.c (elf_symtab_read): Update.
574 * objfiles.c (objfiles_bfd_data): New global.
575 (get_objfile_bfd_data, free_objfile_per_bfd_storage)
576 (objfile_bfd_data_free, set_objfile_per_bfd): New functions.
577 (allocate_objfile, free_objfile): Update.
578 (_initialize_objfiles): Initialize objfiles_bfd_data.
579 * objfiles.h (struct objfile_per_bfd_storage): New.
580 (struct objfile) <per_bfd>: New field.
581 <filename_cache>: Remove.
582 (set_objfile_per_bfd): Declare.
583 * symfile.c (reread_symbols): Update. Call
584 set_objfile_per_bfd.
585 (allocate_symtab): Update.
586 * symmisc.c (print_symbol_bcache_statistics): Update.
587 (print_objfile_statistics): Print the size of the BFD obstack.
588
589 2012-08-22 Tom Tromey <tromey@redhat.com>
590
591 * gdb_bfd.h: Include registry.h. Use DECLARE_REGISTRY.
592 * gdb_bfd.c: Use DEFINE_REGISTRY.
593 (struct gdb_bfd_data): Add REGISTRY_FIELDS.
594 (gdb_bfd_ref): Call bfd_alloc_data.
595 (gdb_bfd_unref): Call bfd_free_data.
596
597 2012-08-22 Tom Tromey <tromey@redhat.com>
598
599 * registry.h (struct registry_fields): New.
600 (REGISTRY_FIELDS): Redefine.
601 (REGISTRY_ACCESS_FIELD): New macro.
602 (DEFINE_REGISTRY): Add ACCESS argument. Update defined
603 functions.
604
605 2012-08-22 Tom Tromey <tromey@redhat.com>
606
607 * auto-load.c (_initialize_auto_load): Update.
608 * solib-svr4.c (_initialize_svr4_solib): Update
609 * solib-dsbt.c (_initialize_dsbt_solib): Update.
610 * solib-darwin.c (_initialize_darwin_solib): Update.
611 * registry.h: New file.
612 * python/py-progspace.c (gdbpy_initialize_pspace): Update.
613 * python/py-inferior.c (gdbpy_initialize_inferior): Update.
614 * progspace.h: Include registry.h. Use DECLARE_REGISTRY.
615 (register_program_space_data_with_cleanup)
616 (register_program_space_data, program_space_alloc_data)
617 (clear_program_space_data, set_program_space_data)
618 (program_space_data): Don't declare.
619 * progspace.c: Use DEFINE_REGISTRY.
620 (struct program_space_data, struct
621 program_space_data_registration, struct
622 program_space_data_registry, program_space_data_registry)
623 (register_program_space_data_with_cleanup)
624 (register_program_space_data, program_space_alloc_data)
625 (program_space_free_data, clear_program_space_data)
626 (set_program_space_data, program_space_data): Remove.
627 * objfiles.h: Include registry.h. Use DECLARE_REGISTRY.
628 (struct objfile) <data, num_data>: Replace with REGISTRY_FIELDS.
629 (register_objfile_data_with_cleanup, register_objfile_data)
630 (clear_objfile_data, set_objfile_data, objfile_data): Don't
631 declare.
632 * objfiles.c: Use DEFINE_REGISTRY.
633 (struct objfile_data, struct objfile_data_registration, struct
634 objfile_data_registry, objfile_data_registry)
635 (register_objfile_data_with_cleanup, register_objfile_data)
636 (objfile_alloc_data, objfile_free_data, clear_objfile_data)
637 (set_objfile_data, objfile_data): Remove.
638 (_initialize_objfiles): Update.
639 * jit.c (_initialize_jit): Update.
640 * inflow.c (_initialize_inflow): Update.
641 * inferior.h: Include registry.h. Use DECLARE_REGISTRY.
642 (struct inferior) <data, num_data>: Replace with REGISTRY_FIELDS.
643 (register_inferior_data_with_cleanup, register_inferior_data)
644 (clear_inferior_data, set_inferior_data, inferior_data): Don't
645 declare.
646 * inferior.c: Use DEFINE_REGISTRY.
647 (struct inferior_data, struct inferior_data_registration, struct
648 inferior_data_registry, inferior_data_registry)
649 (register_inferior_data_with_cleanup, register_inferior_data)
650 (inferior_alloc_data, inferior_free_data clear_inferior_data)
651 (set_inferior_data, inferior_data): Remove.
652 * auxv.c (_initialize_auxv): Update.
653 * ada-lang.c (_initialize_ada_language): Update.
654 * breakpoint.c (_initialize_breakpoint): Update.
655 * i386-nat.c (i386_use_watchpoints): Update.
656
657 2012-08-22 Tom Tromey <tromey@redhat.com>
658
659 * exec.c (exec_close, exec_file_attach): Update.
660 (add_to_section_table): Initialize 'key' field.
661 (add_target_sections, remove_target_sections): Add 'key' argument.
662 * exec.h (add_target_sections, remove_target_sections): Add
663 'key' argument.
664 * solib.c (solib_map_sections, update_solib_list, clear_solib)
665 (reload_shared_libraries_1): Update.
666 * target.h (struct target_section) <key>: New field.
667
668 2012-08-22 Tom Tromey <tromey@redhat.com>
669
670 * cli/cli-cmds.c (filter_sals): Handle nelts == 0 case.
671
672 2012-08-21 Pierre Muller <muller@ics.u-strasbg.fr>
673
674 * symfile.c (allocate_symtab): Use host_address_to_string
675 function instead of cast of pointer to long which is not
676 compatible with x86_64-w64-mingw32 build.
677
678 2012-08-19 Andrew Pinski <apinski@cavium.com>
679
680 * mips-tdep.c (is_octeon): New function.
681 (is_octeon_bbit_op): New function.
682 (mips32_next_pc): Handle Octeon's bbit instructions.
683 (mips32_instruction_has_delay_slot): Likewise.
684
685 2012-08-19 Andrew Pinski <apinski@cavium.com>
686
687 * mips-tdep.c (mips32_next_pc): Fix line spacing of the comment
688 before the function.
689
690 2012-08-19 Andrew Pinski <apinski@cavium.com>
691
692 * mips-tdep.c (mips32_next_pc): Consolidate calls to itype_op.
693
694 2012-08-19 Keith Seitz <keiths@redhat.com>
695
696 PR c++/14365
697 * c-typeprint.c (c_type_print_varspec_prefix): Pass
698 -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
699
700 2012-08-18 Eli Zaretskii <eliz@gnu.org>
701
702 * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
703 The typo broke "make TAGS".
704
705 2012-08-17 Joel Brobecker <brobecker@adacore.com>
706
707 GDB 7.5 released.
708
709 2012-08-17 Keith Seitz <keiths@redhat.com>
710
711 PR c++/13356
712 * gdbtypes.c (strict_type_checking): New variable.
713 (show_strict_type_checking): New function.
714 (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
715 if strict type checking is disabled.
716 (_initialize_gdbtypes): Add "check type" subcommand.
717 * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
718
719 2012-08-17 Keith Seitz <keiths@redhat.com>
720
721 * language.h (type_mode): Remove.
722 (type_check): Remove.
723 (struct language_defn): Remove la_type_check.
724 (STRICT_TYPE): Remove unused macro.
725 (type_error): Remove.
726 * language.c (set_type_range_case): Renamed to ...
727 (set_range_case): ... this. Update all callers.
728 Remove type_mode/type_check.
729 (type_mode): Remove.
730 (type_check): Remove.
731 (show_type_command): Remove.
732 (set_type_command): Remove.
733 (language_info): Remove type checking output.
734 (type_error): Remove unused function.
735 (range_error): Update comment.
736 (unknown_language_defn): Remove la_type_check.
737 (auto_language_defn): Likewise.
738 (local_language_defn): Likewise.
739 (_initialize_language): Remove "check type" subcommand.
740 * ada-lang.c (ada_language_defn): Remove la_type_check.
741 * c-lang.c (c_language_defn): Likewise.
742 (cplus_language_defn): Likewise.
743 (asm_language_defn): Likewise.
744 (minimal_language_defn): Likewise.
745 * d-lang.c (d_language_defn): Likewise.
746 * f-lang.c (f_language_defn): Likewise.
747 * go-lang.c (go_language_defn): Likewise.
748 * jv-lang.c (java_language_defn): Likewise.
749 * m2-lang.c (m2_language_defn): Likewise.
750 * objc-lang.c (objc_language_defn): Likewise.
751 * opencl-lang.c (opencl_language_defn): Likewise.
752 * p-lang.c (pascal_language_defn): Likewise.
753
754 2012-08-16 Mike Frysinger <vapier@gentoo.org>
755
756 * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
757
758 2012-08-16 Joel Brobecker <brobecker@adacore.com>
759
760 * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
761 New function.
762 (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
763 using the regache. Use ia64_hpux_get_register_from_save_state_t
764 to access the bsp and bspstore registers if not.
765
766 2012-08-16 Joel Brobecker <brobecker@adacore.com>
767
768 * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
769 * breakpoint.c (detach_breakpoints): Change pid parameter into
770 a ptid. Adjust code accordingly.
771 * infrun.c (handle_inferior_event): Delete variable child_pid.
772 Update call to detach_breakpoints to pass the child ptid for
773 fork events.
774 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
775 assert that inferior_ptid's lwp is zero.
776 (linux_handle_extended_wait): Update call to detach_breakpoints.
777 * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
778 detach_breakpoints.
779
780 2012-08-16 Joel Brobecker <brobecker@adacore.com>
781
782 * inf-ttrace.c (inf_ttrace_follow_fork): When following the
783 parent, only call detach_breakpoints if tts.tts_event ==
784 TTEVT_VFORK.
785
786 2012-08-16 Joel Brobecker <brobecker@adacore.com>
787
788 * dwarf2-frame.c (dwarf2_frame_cache): Use
789 get_frame_address_in_block instead of get_frame_pc as
790 the bound for executing the frame's FDE.
791
792 2012-08-16 Yao Qi <yao@codesourcery.com>
793
794 * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
795 * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
796 * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
797 (c_type_print_varspec_suffix): Likewise.
798 * eval.c (evaluate_subexp_standard): Likewise.
799 * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
800 (f_type_print_varspec_suffix): Likewise.
801 * gdbtypes.c (is_scalar_type): Likewise.
802 (recursive_dump_type): Likewise.
803 * infcall.c (value_arg_coerce): Likewise.
804 * m2-valprint.c (m2_val_print): Likewise.
805 * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
806 (pascal_type_print_varspec_suffix): Likewise.
807 (pascal_type_print_base): Likewise.
808 * p-valprint.c (pascal_val_print): Likewise.
809 (pascal_val_print): Likewise.
810 * valops.c (value_slice): Likewise.
811 * valprint.c (scalar_type_p): Likewise.
812 * valarith.c (value_bitstring_subscript): Remove.
813 (value_concat): Remove code handling TYPE_CODE_BITSTRING.
814 Remove comment on TYPE_CODE_BITSTRING.
815
816 * stabsread.c (read_type): Don't set TYPE_CODE (type) to
817 TYPE_CODE_BITSTRING.
818
819 * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
820 slot 0.
821
822 2012-08-16 Yao Qi <yao@codesourcery.com>
823
824 * tracepoint.c (trace_find_none_command): Remove.
825 (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
826
827 2012-08-16 Yao Qi <yao@codesourcery.com>
828
829 * remote.c (handle_notification): Remove parameter 'length'.
830 (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
831
832 2012-08-15 Keith Seitz <keiths@redhat.com>
833
834 * gdbtypes.c (opaque_type_resolution): Make static.
835 Add missing comment.
836 (overload_debug): Add missing comment.
837 (show_opaque_type_resolution): Likewise.
838 (show_overload_debug): Likewise.
839 (print_bit_vector): Remove unnecessary forward declaration.
840 (print_arg_types): Likewise.
841 (dump_fn_fieldlists): Likewise.
842 (print_cplus_stuff): Likewise.
843
844 2012-08-15 Tom Tromey <tromey@redhat.com>
845
846 * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
847 (gdb_bfd_ref): Initialize new field.
848 (gdb_bfd_unref): Unref the archive BFD.
849 (gdb_bfd_openr_next_archived_file): Acquire a reference to the
850 parent archive.
851
852 2012-08-15 Tom Tromey <tromey@redhat.com>
853
854 PR python/14387:
855 * python/py-bpevent.c (create_breakpoint_event_object): Update
856 comment.
857 * python/py-event.c (evpy_add_attribute): Update comment.
858 * python/py-exitedevent.c (create_exited_event_object): Fix
859 reference counting and error handling.
860 * python/py-newobjfileevent.c (create_new_objfile_event_object):
861 Fix reference counting.
862 * python/py-signalevent.c (create_signal_event_object): Fix
863 reference counting and error handling.
864 * python/py-stopevent.c (emit_stop_event): Fix reference
865 counting.
866 * python/py-threadevent.c (get_event_thread): Return a
867 borrowed reference.
868 * python/py-type.c (convert_field): Fix reference counting.
869
870 2012-08-15 Tom Tromey <tromey@redhat.com>
871
872 * dwarf2read.c (dwarf_decode_macro_bytes)
873 <DW_MACRO_GNU_transparent_include>: Use pointer to included data
874 as hash key.
875
876 2012-08-14 Mike Frysinger <vapier@gentoo.org>
877
878 * infcmd.c (_initialize_infcmd): Update help text for the signal,
879 stepi, nexti, finish, next, step, jump, and continue commands.
880 * infrun.c (_initialize_infrun): Update help text for the handle
881 command.
882
883 2012-08-14 Doug Evans <dje@google.com>
884
885 * gdbtypes.c (struct extra): Delete, unused.
886
887 * gdbtypes.c: Whitespace cleanup.
888 (address_space_name_to_int): Remove "extern" from definition.
889 (_initialize_gdbtypes): Declare with initialize_file_ftype.
890
891 * gdbtypes.c (make_pointer_type): Remove redundant setting of
892 TYPE_POINTER_TYPE (type).
893
894 2012-08-14 Gary Benson <gbenson@redhat.com>
895
896 * solib-svr4.c (svr4_free_library_list): Use free_so.
897
898 2012-08-13 Mike Frysinger <vapier@gentoo.org>
899
900 * .gitignore: Add go-exp.c.
901
902 2012-08-13 Doug Evans <dje@google.com>
903
904 * value.c (show_convenience): Tweak comment.
905 (_initialize_values): Mention convenience functions in the help text
906 for "show convenience".
907
908 2012-08-13 Yao Qi <yao@codesourcery.com>
909
910 * std-operator.def: Remove TERNOP_SLICE_COUNT.
911 * breakpoint.c (watchpoint_exp_is_const): Remove handling to
912 TERNOP_SLICE_COUNT.
913 * eval.c (evaluate_subexp_standard): Likewise.
914 * expprint.c (print_subexp_standard): Likewise.
915 (dump_subexp_body_standard): Likewise.
916 * parse.c (operator_length_standard): Likewise.
917
918 2012-08-13 Yao Qi <yao@codesourcery.com>
919
920 * std-operator.def: Remove OP_BITSTRING.
921 * breakpoint.c (watchpoint_exp_is_const): Update.
922 * eval.c (evaluate_subexp_standard): Remove handling to
923 OP_BITSTRING.
924 * expprint.c (print_subexp_standard): Likewise.
925 (dump_subexp_body_standard): Likewise.
926 * parse.c (operator_length_standard): Likewise.
927 * valops.c (value_bitstring): Remove.
928 * value.h: Remove the declaration of 'value_bitstring'.
929
930 2012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
931
932 * linespec.c (find_methods): Remove unused variables `i1' and
933 `name_len'.
934 (decode_line_full): Likewise for `arg_start'.
935
936 2012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
937
938 * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
939 (zlib_decompress_section): Likewise for `section_data'.
940 (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
941
942 2012-08-10 Doug Evans <dje@google.com>
943
944 Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
945 * NEWS: Document them.
946 * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
947 function/strfns.py.
948 * python/py-type.c (typy_array_1): New function.
949 (typy_array): Call it.
950 (typy_vector): New function.
951 (type_object_methods): Add "vector".
952 * python/lib/gdb/function/__init__.py: New file.
953 * python/lib/gdb/function/strfns.py: New file.
954
955 2012-08-10 Siddhesh Poyarekar <siddhesh@redhat.com>
956
957 * python/py-type.c (convert_field): Use gdb_py_long_from_longest
958 for TYPE_FIELD_BITPOS.
959 (typy_get_sizeof): Likewise for TYPE_LENGTH.
960
961 2012-08-10 Mike Frysinger <vapier@gentoo.org>
962
963 PR cli/10436:
964 * common/vec.h (VEC_merge): Define.
965 (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
966 (DEF_VEC_ALLOC_FUNC_P): Likewise.
967 (DEF_VEC_ALLOC_FUNC_O): Likewise.
968 * completer.c: Include gdb_signals.h.
969 (signal_completer): Define.
970 * completer.h (signal_completer): Add prototype.
971 * infcmd.c (_initialize_infcmd): Assign the command
972 completer for "signal" to handle_completer.
973 * infrun.c: Include completer.h.
974 (handle_completer): Define.
975 (_initialize_infrun): Declare a new local variable c. Store the
976 result of add_com("handle") to it. Assign the command
977 completer for "handle" to handle_completer.
978
979 2012-08-09 Yao Qi <yao@codesourcery.com>
980
981 * cli/cli-decode.c (set_cmd_prefix): New.
982 (lookup_cmd_for_prefixlist): New.
983 (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
984 of each cmd_list_element in *prefixlist.
985 (add_setshow_cmd_full): set_cmd_prefix.
986 (add_alias_cmd): Likewise.
987 * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
988 Declare 'auto_boolean_enums'.
989 * cli/cli-setshow.c: Include "observer.h".
990 (notify_command_param_changed_p): New.
991 (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
992 Remove 'static'.
993 (do_setshow_command): Split it to ...
994 (do_set_command, do_show_command): ... them. New.
995 (do_set_command): Call observer_notify_command_param_changed if
996 notify_command_param_changed_p returns true.
997 (cmd_show_list): Caller update.
998 * auto-load.c (set_auto_load_cmd): Likewise.
999 * remote.c (show_remote_cmd): Likewise.
1000 * cli/cli-setshow.h: Update declarations.
1001 * top.c (execute_command): Call do_set_command and do_show_command.
1002
1003 * NEWS: Mention new MI notification.
1004 * mi/mi-interp.c: Declare mi_command_param_changed.
1005 (mi_interpreter_init): Attach mi_command_param_changed to
1006 observer command_param_changed.
1007 (mi_command_param_changed): New.
1008 Remove mi_suppress_breakpoint_notifications.
1009 Define global variable mi_suppress_notification.
1010 (mi_breakpoint_created): Update.
1011 (mi_breakpoint_deleted): Likewise.
1012 (mi_breakpoint_modified): Likewise.
1013 * mi/mi-main.c (mi_cmd_execute): Likewise. Check command
1014 'gdb-set' and set mi_suppress_notification.
1015 * mi/mi-main.h: (mi_suppress_notification): New struct.
1016
1017 2012-08-09 Andreas Tobler <andreast@fgznet.ch>
1018 Jan Kratochvil <jan.kratochvil@redhat.com>
1019
1020 * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
1021
1022 2012-08-09 Yao Qi <yao@codesourcery.com>
1023
1024 * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
1025 (skiplist): Move it to skip.c.
1026 (init_cmd_lists): Remove code setting enablebreaklist and
1027 skiplist to NULL.
1028 * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
1029 * cli/cli-cmds.h: Remove declaration of enablebreaklist and
1030 skiplist.
1031 * gdbcmd.h: Likewise.
1032 * skip.c (_initialize_step_skip): Move 'skiplist' from
1033 cli/cli-cmds.c.
1034
1035 2012-08-09 Yao Qi <yao@codesourcery.com>
1036
1037 * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
1038 * gnu-nat.c, symfile.c: Likewise.
1039
1040 2012-08-08 Aaron Gamble <agamble@google.com>
1041
1042 * utils.c (prompt_for_continue_wait_time): New static global.
1043 (make_command_stats_cleanup): Initialize it.
1044 (report_command_stats): Subtract time waiting for user.
1045 (prompt_for_continue): Track time waiting for user.
1046 (defaulted_query): Track time waiting for user.
1047
1048 2012-08-08 Doug Evans <dje@google.com>
1049
1050 * eval.c (evaluate_subexp_standard): Fix thinko in handling
1051 UNOP_MEMVAL_TYPE.
1052 * expprint.c (print_subexp_standard, case OP_TYPE): New.
1053 (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
1054 (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
1055 (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
1056 (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
1057 (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
1058 elt.
1059 (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
1060 (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
1061 (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
1062 (dump_prefix_expression): Handle OP_TYPE.
1063
1064 2012-08-08 Keith Seitz <keiths@redhat.com>
1065
1066 * breakpoint.c (parse_breakpoint_sals): Remove unused variable
1067 addr_start.
1068
1069 2012-08-08 Doug Evans <dje@google.com>
1070
1071 * linux-thread-db.c: #include "gdb_vecs.h".
1072 (try_thread_db_load_from_pdir_1): New arg "subdir". All callers
1073 updated.
1074 (try_thread_db_load_from_pdir): New arg "subdir". All callers updated.
1075 (thread_db_load_search): Use a vector to iterate over path elements.
1076 Handle text appearing after "$pdir".
1077
1078 * gdb_string.h: Moved to ...
1079 * common/gdb_string.h: ... here.
1080 * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
1081 gdb_string.h and gdb_assert.h.
1082
1083 2012-08-08 Yao Qi <yao@codesourcery.com>
1084
1085 * tic6x-tdep.c (tic6x_register_to_value): Remove.
1086 (tic6x_value_to_register): Likewise.
1087 (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
1088 and set_gdbarch_value_to_register.
1089
1090 2012-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1091 Jean-Marc Saffroy <saffroy@gmail.com>
1092
1093 PR 11804
1094 * defs.h (find_memory_region_ftype): New comment. New arg modified.
1095 * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
1096 * gcore.c (gcore_create_callback): New function comment. Add modified
1097 parameter. Only write modified regions. Set SEC_READONLY exactly
1098 according to MODIFIED.
1099 (objfile_find_memory_regions): Ignore separate debug info files. Ass
1100 the passed modified value to FUNC.
1101 * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
1102 * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
1103 first. New variables modified and has_anonymous. Parse the lines of
1104 smaps file. Add the passed MODIFIED value to FUNC.
1105 * procfs.c (find_memory_regions_callback): Add the passed modified
1106 value.
1107
1108 2012-08-06 Tom Tromey <tromey@redhat.com>
1109
1110 * dwarf2-frame.c (clear_pointer_cleanup): New function.
1111 (dwarf2_frame_cache): Use it.
1112 * frame-unwind.h (frame_sniffer_ftype): Document prologue
1113 cache initialization constraint.
1114
1115 2012-08-06 Tom Tromey <tromey@redhat.com>
1116
1117 PR python/14386:
1118 * varobj.c (update_dynamic_varobj_children): Don't call
1119 PyIter_Check.
1120
1121 2012-08-06 Tom Tromey <tromey@redhat.com>
1122
1123 PR cli/14392:
1124 * cli/cli-cmds.c (list_command): Filter 'sals_end'.
1125
1126 2012-08-06 Nathaniel Flath <flat0103@gmail.com>
1127
1128 * NEWS: New entry for 'cd' default parameters.
1129 * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
1130
1131 2012-08-03 Tom Tromey <tromey@redhat.com>
1132
1133 * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
1134 return.
1135
1136 2012-08-02 Ulrich Weigand <ulrich.weigand@linaro.org>
1137
1138 * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
1139 to attempting lseek/write.
1140 (inf_child_fileio_pread): Likewise for pread.
1141
1142 2012-08-02 Yao Qi <yao@codesourcery.com>
1143
1144 * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
1145 (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
1146 add_setshow_zinteger_cmd.
1147 * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
1148 * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
1149 (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
1150 instead of add_setshow_zinteger_cmd.
1151 * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
1152 (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
1153 instead of add_setshow_zinteger_cmd.
1154 * frame.c (frame_debug): Add 'unsigned'.
1155 (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
1156 add_setshow_zinteger_cmd.
1157 * frame.h: Update the declaration of 'frame_debug'.
1158 * gdbtypes.c (overload_debug): Add 'unsigned'.
1159 (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
1160 add_setshow_zinteger_cmd.
1161 * inferior.h: Update declaration of 'debug_infrun'.
1162 * infrun.c (debug_infrun): Add 'unsigned'.
1163 (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
1164 add_setshow_zinteger_cmd.
1165 * jit.c (jit_debug): Add 'unsigned'.
1166 (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
1167 add_setshow_zinteger_cmd.
1168 * linux-nat.c (debug_linux_nat): Add 'unsigned'.
1169 (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
1170 instead of add_setshow_zinteger_cmd.
1171 * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
1172 (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
1173 add_setshow_zinteger_cmd.
1174 * machoread.c (mach_o_debug_level): Add 'unsigned'.
1175 (_initialize_machoread): Call add_setshow_zuinteger_cmd
1176 instead of add_setshow_zinteger_cmd.
1177 * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
1178 * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
1179 (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
1180 intead of add_setshow_zinteger_cmd.
1181 * mips-tdep.c (mips_debug): Add 'unsigned'.
1182 (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
1183 instead of add_setshow_zinteger_cmd.
1184 * monitor.c (monitor_debug): Add 'unsigned'.
1185 (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
1186 add_setshow_zinteger_cmd.
1187 * observer.c (observer_debug): Add 'unsigned'.
1188 (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
1189 add_setshow_zinteger_cmd.
1190 * parse.c (expressiondebug): Add 'unsigned'.
1191 (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
1192 add_setshow_zinteger_cmd.
1193 * record.c (record_debug): Add 'unsigned'.
1194 (_initialize_record): Call add_setshow_zuinteger_cmd instead of
1195 add_setshow_zinteger_cmd.
1196 * record.h: Update the declaration of 'record_debug'.
1197 * stap-probe.c (stap_expression_debug): Add 'unsigned'.
1198 (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
1199 add_setshow_zinteger_cmd.
1200 * serial.c (global_serial_debug_p): Add 'unsigned'.
1201 (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
1202 add_setshow_zinteger_cmd.
1203 * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
1204 (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
1205 add_setshow_zinteger_cmd.
1206 * solib-frv.c (solib_frv_debug): Add 'unsigned'.
1207 (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
1208 add_setshow_zinteger_cmd.
1209 * target.c (targetdebug): Add 'unsigned'.
1210 (initialize_targets): Call add_setshow_zuinteger_cmd instead of
1211 add_setshow_zinteger_cmd.
1212 * valops.c (overload_debug): Add 'unsigned'.
1213 * varobj.c (varobjdebug): Add 'unsigned'.
1214 (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
1215 add_setshow_zinteger_cmd.
1216 * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
1217 (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
1218 instead of add_setshow_zinteger_cmd.
1219
1220 * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
1221 * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
1222 (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
1223 instead of add_setshow_zinteger_cmd.
1224 * gdbarch.c, gdbarch.h: Re-generated.
1225
1226 2012-08-02 Yao Qi <yao@codesourcery.com>
1227
1228 * nto-tdep.c: Don't include cli/cli-decode.h and
1229 cli/cli-cmds.h.
1230 (_initialize_nto_tdep): Remove.
1231 * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
1232 Remove field.
1233 Remove macro nto_internal_debugging.
1234
1235 2012-08-01 Richard Henderson <rth@redhat.com>
1236
1237 * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
1238 (mep-*-*) [gdb_target_obs]: Likewise.
1239
1240 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
1241
1242 * ppc-linux-tdep.c (ppc_linux_init_abi): Register
1243 linux_get_siginfo_type.
1244
1245 2012-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
1246
1247 * infcall.c (call_function_by_hand): Move BP_ADDR comment to
1248 AT_ENTRY_POINT.
1249 (call_function_by_hand) <ON_STACK>: Call write_memory with
1250 gdbarch_breakpoint_from_pc, if possible.
1251 (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
1252 here.
1253
1254 2012-07-31 Yao Qi <yao@codesourcery.com>
1255
1256 * tracepoint.c: Add 'static' for some variables.
1257
1258 2012-07-31 Yao Qi <yao@codesourcery.com>
1259
1260 * go32-nat.c: Declare _initialize_go32_nat.
1261 * ser-go32.c: Declare _initialize_ser_dos.
1262 * top.c (do_chdir_cleanup): Add 'static'.
1263
1264 2012-07-30 Keith Seitz <keiths@redhat.com>
1265
1266 * linespec.c (linespec_lex_number): A number followed
1267 by quotes is a valid number, too.
1268
1269 2012-07-30 Tom Tromey <tromey@redhat.com>
1270
1271 * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
1272
1273 2012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
1274
1275 * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
1276 attempt to 4-byte-align HW breakpoint addresses for Thumb.
1277
1278 2012-07-30 Andrew Burgess <aburgess@broadcom.com>
1279
1280 * varobj.c (varobj_invalidate_iter): All varobj must be marked as
1281 invalid or reevaluated to prevent prevent references to possibly
1282 delete'd type objects being left in the varobj.
1283
1284 2012-07-27 Tom Tromey <tromey@redhat.com>
1285 Jan Kratochvil <jan.kratochvil@redhat.com>
1286
1287 * copying.awk: Print buffer-read-only and vi ro markers.
1288 * copying.c: Rebuild.
1289 * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
1290 * gdbarch.c, gdbarch.h: Rebuild.
1291 * target-descriptions.c (maint_print_c_tdesc_cmd): Print
1292 buffer-read-only and vi ro markers.
1293 * features/arm-with-iwmmxt.c: Rebuild.
1294 * features/arm-with-m-fpa-layout.c: Rebuild.
1295 * features/arm-with-m-vfp-d16.c: Rebuild.
1296 * features/arm-with-m.c: Rebuild.
1297 * features/arm-with-neon.c: Rebuild.
1298 * features/arm-with-vfpv2.c: Rebuild.
1299 * features/arm-with-vfpv3.c: Rebuild.
1300 * features/i386/amd64-avx-linux.c: Rebuild.
1301 * features/i386/amd64-avx.c: Rebuild.
1302 * features/i386/amd64-linux.c: Rebuild.
1303 * features/i386/amd64.c: Rebuild.
1304 * features/i386/i386-avx-linux.c: Rebuild.
1305 * features/i386/i386-avx.c: Rebuild.
1306 * features/i386/i386-linux.c: Rebuild.
1307 * features/i386/i386-mmx-linux.c: Rebuild.
1308 * features/i386/i386-mmx.c: Rebuild.
1309 * features/i386/i386.c: Rebuild.
1310 * features/i386/x32-avx-linux.c: Rebuild.
1311 * features/i386/x32-avx.c: Rebuild.
1312 * features/i386/x32-linux.c: Rebuild.
1313 * features/i386/x32.c: Rebuild.
1314 * features/mips-dsp-linux.c: Rebuild.
1315 * features/mips-linux.c: Rebuild.
1316 * features/mips64-dsp-linux.c: Rebuild.
1317 * features/mips64-linux.c: Rebuild.
1318 * features/rs6000/powerpc-32.c: Rebuild.
1319 * features/rs6000/powerpc-32l.c: Rebuild.
1320 * features/rs6000/powerpc-403.c: Rebuild.
1321 * features/rs6000/powerpc-403gc.c: Rebuild.
1322 * features/rs6000/powerpc-405.c: Rebuild.
1323 * features/rs6000/powerpc-505.c: Rebuild.
1324 * features/rs6000/powerpc-601.c: Rebuild.
1325 * features/rs6000/powerpc-602.c: Rebuild.
1326 * features/rs6000/powerpc-603.c: Rebuild.
1327 * features/rs6000/powerpc-604.c: Rebuild.
1328 * features/rs6000/powerpc-64.c: Rebuild.
1329 * features/rs6000/powerpc-64l.c: Rebuild.
1330 * features/rs6000/powerpc-7400.c: Rebuild.
1331 * features/rs6000/powerpc-750.c: Rebuild.
1332 * features/rs6000/powerpc-860.c: Rebuild.
1333 * features/rs6000/powerpc-altivec32.c: Rebuild.
1334 * features/rs6000/powerpc-altivec32l.c: Rebuild.
1335 * features/rs6000/powerpc-altivec64.c: Rebuild.
1336 * features/rs6000/powerpc-altivec64l.c: Rebuild.
1337 * features/rs6000/powerpc-cell32l.c: Rebuild.
1338 * features/rs6000/powerpc-cell64l.c: Rebuild.
1339 * features/rs6000/powerpc-e500.c: Rebuild.
1340 * features/rs6000/powerpc-e500l.c: Rebuild.
1341 * features/rs6000/powerpc-isa205-32l.c: Rebuild.
1342 * features/rs6000/powerpc-isa205-64l.c: Rebuild.
1343 * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
1344 * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
1345 * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
1346 * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
1347 * features/rs6000/powerpc-vsx32.c: Rebuild.
1348 * features/rs6000/powerpc-vsx32l.c: Rebuild.
1349 * features/rs6000/powerpc-vsx64.c: Rebuild.
1350 * features/rs6000/powerpc-vsx64l.c: Rebuild.
1351 * features/rs6000/rs6000.c: Rebuild.
1352 * features/s390-linux32.c: Rebuild.
1353 * features/s390-linux32v1.c: Rebuild.
1354 * features/s390-linux32v2.c: Rebuild.
1355 * features/s390-linux64.c: Rebuild.
1356 * features/s390-linux64v1.c: Rebuild.
1357 * features/s390-linux64v2.c: Rebuild.
1358 * features/s390x-linux64.c: Rebuild.
1359 * features/s390x-linux64v1.c: Rebuild.
1360 * features/s390x-linux64v2.c: Rebuild.
1361 * features/tic6x-c62x-linux.c: Rebuild.
1362 * features/tic6x-c62x.c: Rebuild.
1363 * features/tic6x-c64x-linux.c: Rebuild.
1364 * features/tic6x-c64x.c: Rebuild.
1365 * features/tic6x-c64xp-linux.c: Rebuild.
1366 * features/tic6x-c64xp.c: Rebuild.
1367
1368 2012-07-27 Tom Tromey <tromey@redhat.com>
1369
1370 * c-exp.y (classify_name): Avoid assignment in condition.
1371
1372 2012-07-27 Roland Schwingel <roland.schwingel@onevision.com>
1373
1374 * amd64-windows-tdep.c: Include "frame.h".
1375 (amd64_windows_skip_trampoline_code): New function.
1376 (amd64_windows_init_abi): Add trampoline registration.
1377
1378 2012-07-27 Yao Qi <yao@codesourcery.com>
1379
1380 * tracepoint.c (cur_traceframe_number): Remove.
1381 (set_tfile_traceframe): Remove.
1382 (tfile_trace_find, tfile_fetch_registers): Update callers.
1383 (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
1384 (tfile_open, tfile_trace_find): Likewise.
1385
1386 2012-07-27 Yao Qi <yao@codesourcery.com>
1387
1388 * thread.c (switch_to_thread): Don't call registers_changed.
1389
1390 2012-07-26 Tom Tromey <tromey@redhat.com>
1391
1392 * Makefile.in (SFILES): Remove objc-exp.y.
1393 (YYFILES): Remove objc-exp.c.
1394 (YYOBJ): Remove objc-exp.o.
1395 (local-maintainer-clean): Don't mention objc-exp.c.
1396 * c-exp.y: Include objc-lang.h.
1397 (%union) <class>: New field.
1398 (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
1399 (exp): Clone subscript production for OBJC_LBRAC. Add various
1400 Objective C productions.
1401 (msglist, msgarglist, msgarg): New productions.
1402 (array_mod, func_mod, operator): Clone productions for
1403 OBJC_LBRAC.
1404 (parse_string_or_char): Handle '@' strings.
1405 (lex_one_token): Return OBJC_LBRAC. Recognize @selector.
1406 (classify_name): Check la_name_of_this. Recognize ObjC class
1407 names.
1408 * objc-exp.y: Remove.
1409 * objc-lang.c (objc_language_defn): Use c_parse, c_error.
1410 * objc-lang.h (objc_parse, objc_error): Don't declare.
1411
1412 2012-07-26 Markus Metzger <markus.t.metzger@intel.com>
1413
1414 * python/py-inferior.c (infpy_threads): Call update_thread_list ().
1415
1416 2012-07-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1417
1418 * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
1419 and decrement.
1420
1421 2012-07-26 Tom Tromey <tromey@redhat.com>
1422
1423 * copying.c: Rebuild.
1424 * copying.awk: Don't use immediate_quit. Use 'no_set_class', not
1425 'no_class'.
1426
1427 2012-07-26 Tom Tromey <tromey@redhat.com>
1428
1429 * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
1430 immediate_quit.
1431 (print_objfile_statistics): Likewise.
1432 (maintenance_print_symbols): Likewise.
1433 (maintenance_print_msymbols): Likewise.
1434 (maintenance_print_objfiles): Likewise.
1435 * psymtab.c (print_partial_symbols): Call QUIT.
1436 (maintenance_print_psymbols): Likewise. Don't modify
1437 immediate_quit.
1438 * copying.c (show_copying_command): Don't modify immediate_quit.
1439 (show_warranty_command): Likewise.
1440 * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
1441
1442 2012-07-26 Keith Seitz <keiths@redhat.com>
1443
1444 * linespec.c (linespec_lexer_lex_number): The input
1445 is also a valid number if the next character is a comma
1446 or colon.
1447
1448 2012-07-26 Joel Brobecker <brobecker@adacore.com>
1449
1450 * NEWS: Document new --enable-libmcheck/--disable-libmcheck
1451 configure options.
1452
1453 2012-07-26 Tristan Gingold <gingold@adacore.com>
1454
1455 * machoread.c: Include gdb_bfd.h.
1456
1457 2012-07-26 Tristan Gingold <gingold@adacore.com>
1458
1459 * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
1460 offset.
1461
1462 2012-07-26 Siddhesh Poyarekar <siddhesh@redhat.com>
1463
1464 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
1465 SIZE to size_t.
1466 (dwarf2_evaluate_loc_desc): Likewise.
1467 (dwarf2_loc_desc_needs_frame): Likewise.
1468 (locexpr_describe_location_1): Likewise.
1469 * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
1470 size_t.
1471 (struct dwarf2_loclist_baton): Likewise.
1472 * dwarf2read.c (struct dwarf_block): Likewise.
1473 (dump_die_shallow): Use pulongest to print dwarf_block.size.
1474 (decode_locdesc): Expand SIZE and I to size_t.
1475
1476 2012-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
1477
1478 * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
1479
1480 2012-07-25 Joel Brobecker <brobecker@adacore.com>
1481
1482 * doublest.c (convert_doublest_to_floatformat): If the exponent
1483 is too small, treat the value as zero. If the exponent is too
1484 large, treat the value as infinity.
1485
1486 2012-07-25 Joel Brobecker <brobecker@adacore.com>
1487
1488 * configure.ac: Add --enable-lmcheck configure option.
1489 * configure: Regenerate.
1490
1491 2012-07-25 Tom Tromey <tromey@redhat.com>
1492
1493 * NEWS: Mention maint info bfds.
1494 * gdb_bfd.c (all_bfds): New global.
1495 (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
1496 (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
1497 New functions.
1498
1499 2012-07-25 Ralf Corsépius <ralf.corsepius@rtems.org>
1500
1501 * configure.tgt: Add v850*-*-rtems*.
1502
1503 2012-07-25 Tom Tromey <tromey@redhat.com>
1504
1505 * macrotab.c (macro_bcache_str): Remove cast.
1506
1507 2012-07-25 Hui Zhu <hui_zhu@mentor.com>
1508
1509 * linespec.c (linespec_lexer_lex_number): Update comments,
1510 change the return and add check to make sure the input is
1511 the decimal numbers.
1512 (linespec_lexer_lex_one): If linespec_lexer_lex_number return
1513 false, call linespec_lexer_lex_string.
1514
1515 2012-07-24 Tom Tromey <tromey@redhat.com>
1516
1517 * symfile.c (symbol_file_add): Don't open BFD twice.
1518
1519 2012-07-24 Marc Khouzam <marc.khouzam@ericsson.com>
1520
1521 * breakpoint.c (create_breakpoint): Store condition for pending
1522 breakpoints.
1523
1524 2012-07-24 Andreas Schwab <schwab@linux-m68k.org>
1525
1526 * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
1527 (m68k_return_value): Handle complex types like structures.
1528 (m68k_svr4_return_value): Likewise.
1529
1530 2012-07-24 Marcus Shawcroft <marcus.shawcroft@arm.com>
1531
1532 * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
1533 parameters to bfd_get_section_name.
1534
1535 2012-07-24 Yao Qi <yao@codesourcery.com>
1536
1537 * cli/cli-setshow.c: Handle case 'var_uinteger'
1538 and 'var_zuninteger' together. Handle case 'var_integer' and
1539 'var_zinteger' together.
1540
1541 2012-07-23 Keith Seitz <keiths@redhat.com>
1542
1543 * linespec.c (convert_linespec_to_sal): Don't add
1544 any symbols to the result vector if symbol_to_sal
1545 returns zero.
1546
1547 2012-07-23 Keith Seitz <keiths@redhat.com>
1548
1549 * linespec.c (decode_objc): Record the function name
1550 in the linespec.
1551
1552 2012-07-23 Tom Tromey <tromey@redhat.com>
1553
1554 * rs6000-nat.c (add_vmap): Rewrite archive loop. Fix reference
1555 counting.
1556 * exec.c (exec_close_1): Unconditionally release vmap's BFD.
1557 (map_vmap): Acquire a reference to the BFD.
1558
1559 2012-07-23 Siddhesh Poyarekar <siddhesh@redhat.com>
1560
1561 * p-valprint.c (pascal_object_print_value): Replace potentially
1562 unsafe alloca with xmalloc/xfree.
1563 * valops.c (search_struct_method): Likewise.
1564
1565 2012-07-23 Tom Tromey <tromey@redhat.com>
1566
1567 * solib-svr4.c (enable_break): Update.
1568 * bfd-target.h (target_bfd_reopen): Update documentation.
1569
1570 2012-07-23 Tom Tromey <tromey@redhat.com>
1571
1572 * symfile.c (separate_debug_file_exists): Update.
1573 (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
1574 (reread_symbols): Update.
1575 * elfread.c (build_id_verify): Update.
1576 * symfile.h (gdb_bfd_open_maybe_remote): Rename from
1577 bfd_open_maybe_remote.
1578
1579 2012-07-23 Tom Tromey <tromey@redhat.com>
1580
1581 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
1582
1583 2012-07-23 Tom Tromey <tromey@redhat.com>
1584
1585 * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
1586 and 'abfd'.
1587 * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
1588 and 'abfd'.
1589 * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
1590 * machoread.c (macho_add_oso_symfile): Make a cleanup for
1591 'abfd'.
1592 (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
1593 * objfiles.c (allocate_objfile): Acquire a new reference.
1594 * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
1595 * solib.c (solib_read_symbols): Don't acquire a BFD reference.
1596 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
1597 a cleanup for 'nbfd'.
1598 * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
1599 for 'nbfd'.
1600 * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
1601 make a cleanup for 'abfd'.
1602 (symbol_file_add): Make a BFD cleanup.
1603
1604 2012-07-23 Tom Tromey <tromey@redhat.com>
1605
1606 * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
1607 (bfd_openw_with_cleanup): Use gdb_bfd_openw.
1608 * corelow.c (core_open): Use gdb_bfd_fopen.
1609 * dsrec.c (load_srec): Use gdb_bfd_openr.
1610 * exec.c (exec_file_attach): Use gdb_bfd_fopen.
1611 * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
1612 * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
1613 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
1614 (gdb_bfd_fdopenr): New functions.
1615 * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
1616 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
1617 (gdb_bfd_fdopenr): Declare.
1618 * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
1619 * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
1620 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
1621 gdb_bfd_openr_next_archived_file.
1622 (macho_check_dsym): Use gdb_bfd_openr.
1623 (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
1624 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
1625 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
1626 * remote-mips.c (mips_load_srec, pmon_load_fast): Use
1627 gdb_bfd_openr.
1628 * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
1629 * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
1630 gdb_bfd_openr_next_archived_file.
1631 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
1632 Use gdb_bfd_openr.
1633 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
1634 gdb_bfd_openr.
1635 * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
1636 * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
1637 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
1638 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
1639 (symfile_bfd_open): Use gdb_bfd_fopen.
1640 (generic_load): Use gdb_bfd_openr.
1641 * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
1642
1643 2012-07-23 Tom Tromey <tromey@redhat.com>
1644
1645 * bfd-target.c (target_bfd_reopen): Update.
1646 * cli/cli-dump.c (bfd_openr_with_cleanup)
1647 (bfd_openw_with_cleanup): Update.
1648 * corelow.c (core_open): Update.
1649 * dsrec.c (load_srec): Update.
1650 * exec.c (exec_file_attach): Update.
1651 * gcore.c (create_gcore_bfd): Update.
1652 * gdb_bfd.c (gdb_bfd_ref): Return void.
1653 (gdb_bfd_open): Update.
1654 * gdb_bfd.h (gdb_bfd_ref): Return void.
1655 Update comments.
1656 * jit.c (jit_bfd_try_read_symtab): Update.
1657 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
1658 * machoread.c (macho_symfile_read_all_oso): Update.
1659 (macho_check_dsym): Update.
1660 * procfs.c (insert_dbx_link_bpt_in_file): Update.
1661 * remote-m32r-sdi.c (m32r_load): Update.
1662 * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
1663 * rs6000-nat.c (add_vmap): Update.
1664 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
1665 Update.
1666 * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
1667 * solib-spu.c (spu_bfd_open): Update.
1668 * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
1669 * spu-linux-nat.c (spu_bfd_open): Update.
1670 * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
1671 (generic_load): Update.
1672 * windows-nat.c (windows_make_so): Update.
1673
1674 2012-07-22 Siddhesh Poyarekar <siddhesh@redhat.com>
1675
1676 * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
1677
1678 2012-07-20 Jeff Kenton <jkenton@tilera.com>
1679
1680 * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
1681 SIGTRAMP_FRAME unwinding.
1682
1683 2012-07-20 Doug Evans <dje@google.com>
1684
1685 * NEWS: Document new options "set/show use-deprecated-index-sections",
1686 and delete reference to --use-deprecated-index-sections.
1687 * symfile.h (use_deprecated_index_sections): Delete.
1688 * dwarf2read.c (use_deprecated_index_sections): Make static.
1689 (read_index_from_section): Update wording of how to load
1690 deprecated index sections.
1691 (_initialize_dwarf2_read): New options
1692 "set/show use-deprecated-index-sections".
1693 * main.c (captured_main): Delete --use-deprecated-index-sections.
1694
1695 2012-07-20 Pedro Alves <palves@redhat.com>
1696
1697 PR threads/11692
1698 PR gdb/12203
1699
1700 * infrun.c (handle_inferior_event) <new thread>: Don't special
1701 case minus_one_ptid.
1702 <TARGET_WAITKIND_SPURIOUS>: Ditto.
1703 * linux-thread-db.c (thread_get_info_callback): Don't return early
1704 if the thread is zombie.
1705 (thread_from_lwp): Change return type to void. Rewrite stale
1706 comment.
1707 (attach_thread): Don't return early if the thread is zombie,
1708 instead set its "dying" flag.
1709 (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
1710 (find_new_threads_callback): Don't return early if the thread is
1711 zombie.
1712
1713 2012-07-20 Pedro Alves <palves@redhat.com>
1714
1715 * linux-nat.c (linux_nat_wait): Dump the passed in target options.
1716 * target.c (target_wait): Likewise.
1717 (str_comma_list_concat_elem, do_option, target_options_to_string):
1718 New functions.
1719 * target.h (target_options_to_string): Declare.
1720
1721 2012-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
1722 Tom Tromey <tromey@redhat.com>
1723
1724 * dwarf2read.c (dwarf_decode_macros)
1725 <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
1726 DW_MACRO_GNU_transparent_include_alt>: New cases.
1727 (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
1728 DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
1729
1730 2012-07-20 Tom Tromey <tromey@redhat.com>
1731
1732 * dwarf2read.c (try_open_dwo_file): Don't call
1733 gdb_bfd_stash_filename.
1734
1735 2012-07-20 Pedro Alves <palves@redhat.com>
1736
1737 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
1738 (i386_record_lea_modrm, i386_record_push, i386_record_floats)
1739 (i386_process_record): Tweak description comments.
1740
1741 2012-07-20 Pedro Alves <palves@redhat.com>
1742
1743 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
1744 (i386_process_record): Use record_read_memory.
1745 * record.c (record_read_memory): New function.
1746 (record_arch_list_add_mem, record_exec_insn): Use
1747 record_read_memory.
1748 * record.h (record_read_memory): Declare.
1749
1750 2012-07-20 Yao Qi <yao@codesourcery.com>
1751
1752 * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
1753 NULL for xfree.
1754
1755 2012-07-19 Pedro Alves <palves@redhat.com>
1756
1757 * record.c (record_resume): Ask the target beneath to report all
1758 signals.
1759
1760 2012-07-19 Doug Evans <dje@google.com>
1761
1762 * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
1763 there's no section at address zero.
1764 (dwarf2_record_block_ranges): Ditto.
1765
1766 2012-07-19 Yao Qi <yao@codesourcery.com>
1767
1768 * command.h, remote.c: Fix a typo in comment.
1769
1770 2012-07-19 Tom Tromey <tromey@redhat.com>
1771
1772 PR exp/13206:
1773 * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
1774 * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
1775 OP_DECLTYPE>: New cases.
1776 * c-exp.y (TYPEOF, DECLTYPE): New tokens.
1777 (type_exp): Add new productions.
1778 (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
1779 and decltype.
1780 * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
1781 New case.
1782 * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
1783 OP_DECLTYPE>: New case.
1784 * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
1785 New case.
1786 * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
1787 * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
1788
1789 2012-07-19 Tom Tromey <tromey@redhat.com>
1790
1791 * c-exp.y (enum token_flags): New.
1792 (struct token) <cxx_only>: Remove.
1793 <flags>: New field.
1794 (tokentab3, tokentab2, ident_tokens): Update.
1795 (lex_one_token): Update. Handle FLAG_SHADOW.
1796
1797 2012-07-19 Tom Tromey <tromey@redhat.com>
1798
1799 * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
1800 * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
1801 UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
1802 * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE. Update
1803 for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST. Use
1804 type_exp production where appropriate.
1805 * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
1806 <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
1807 <UNOP_MEMVAL_TYPE>: New case.
1808 (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
1809 (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
1810 * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
1811 <UNOP_MEMVAL_TYPE>: New case.
1812 (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
1813 UNOP_REINTERPRET_CAST>: Update.
1814 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
1815 * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
1816 UNOP_REINTERPRET_CAST>: Update.
1817 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
1818 * stack.c (return_command): Also check for UNOP_CAST_TYPE.
1819 * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
1820 constants.
1821
1822 2012-07-19 Yao Qi <yao@codesourcery.com>
1823 Jan Kratochvil <jan.kratochvil@redhat.com>
1824
1825 * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
1826 and case 'var_optional_filename' together.
1827 * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
1828 instead of add_setshow_optional_filename_cmd for setshow command
1829 'args'. Set completer for 'set args'.
1830
1831 2012-07-18 Doug Evans <dje@google.com>
1832
1833 * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
1834 * common/gdb_vecs.c: New file, contents from utils.c.
1835 * common/host-defs.h: New file, contents from defs.h.
1836 * utils.h: New file, contents from defs.h.
1837 * defs.h: Move all declarations of objects defined in utils.c
1838 to utils.h (except QUIT() and related).
1839 #include "utils.h", "host-defs.h".
1840 * probe.h (probe_p): Move here from gdb_vecs.h.
1841 * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
1842 * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
1843 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
1844 * Makefile.in (SFILES): Add common/gdb_vecs.c.
1845 (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
1846 (COMMON_OBS): Add gdb_vecs.o.
1847 (gdb_vecs.o): New rule.
1848
1849 2012-07-18 Keith Seitz <keiths@redhat.com>
1850
1851 * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
1852 parameter. If non-zero, use SYMNAME as the canonical name
1853 for the SaL.
1854 Update all callers.
1855 (convert_linespec_to_sals): Use add_sal_to_sals for
1856 expressions, too.
1857 (decode_line_full): No need to "fill in missing canonical names"
1858 anymore. Simply make cleanups for the allocated names.
1859
1860 2012-07-18 Keith Seitz <keiths@redhat.com>
1861
1862 * linespec.c (struct linespec): Constify expression,
1863 source_filename, function_name, and label_name.
1864 (symbol_not_found_error): Make all parameters const.
1865 (linespec_parser_delete): No need to check for NULL
1866 when using xfree. Cast const char * to char * for xfree.
1867
1868 2012-07-18 Keith Seitz <keiths@redhat.com>
1869
1870 * breakpoint.c (invalid_thread_id_error): New function.
1871 (find_condition_and_thread): Use invalid_thread_id_error.
1872 (watch_command_1): Likewise.
1873
1874 2012-07-18 Tom Tromey <tromey@redhat.com>
1875
1876 * cc-with-index.sh, cc-with-dwz.sh: Remove.
1877 * contrib/cc-with-tweaks.sh: New file.
1878
1879 2012-07-18 Tom Tromey <tromey@redhat.com>
1880
1881 * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
1882 (locate_dwz_sections): Recognize .gdb_index.
1883 (create_cus_from_index_list): New function.
1884 (create_cus_from_index): Use it. Handle .dwz data.
1885 (read_index_from_section): New function, extracted from
1886 dwarf2_read_index.
1887 (dwarf2_read_index): Use it. Read .gdb_index from dwz file,
1888 if needed.
1889
1890 2012-07-18 Tom Tromey <tromey@redhat.com>
1891
1892 * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
1893 (struct dwarf2_per_cu_data) <length>: No longer bitfield.
1894 <is_dwz>: New field.
1895 (struct dwz_file): New.
1896 (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
1897 (locate_dwz_sections, dwarf2_get_dwz_file)
1898 (get_abbrev_section_for_cu): New functions.
1899 (error_check_comp_unit_head, read_and_check_comp_unit_head)
1900 (read_and_check_type_unit_head): Add abbrev_section argument.
1901 (create_debug_types_hash_table): Update.
1902 (init_cutu_and_read_dies): Use proper abbrev section.
1903 (init_cutu_and_read_dies_no_follow): Likewise.
1904 (set_partial_user): Do nothing if PST==NULL.
1905 (read_comp_units_from_section): New function.
1906 (create_all_comp_units): Use it.
1907 (scan_partial_symbols, partial_die_parent_scope): Update.
1908 (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
1909 (process_imported_unit_die, read_partial_die): Handle .dwz files.
1910 (find_partial_die): Add offset_in_dwz argument. Update.
1911 (guess_partial_die_structure_name, fixup_partial_die): Update.
1912 (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
1913 DW_FORM_GNU_strp_alt.
1914 (read_indirect_string_from_dwz): New function.
1915 (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
1916 (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
1917 (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
1918 (follow_die_offset): Add offset_in_dwz argument.
1919 (follow_die_ref, dwarf2_fetch_die_location_block): Update.
1920 (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
1921 (dwarf_decode_macro_bytes): Add section_is_dwz argument.
1922 Handle new macro forms.
1923 (dwarf_decode_macros): Update.
1924 (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
1925 (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
1926 (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
1927 (create_debug_types_hash_table): Use correct abbrev section.
1928 (get_debug_line_section): New function.
1929 (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
1930 (process_full_comp_unit): Pass 'required' argument to
1931 end_symtab_get_static_block.
1932 * buildsym.h (end_symtab_get_static_block): Update.
1933 * buildsym.c (end_symtab_get_static_block): Add 'required'
1934 argument.
1935 (end_symtab, end_expandable_symtab): Update.
1936
1937 2012-07-18 Tom Tromey <tromey@redhat.com>
1938
1939 * dwarf2read.c: Don't include zlib.h or sys/mman.h.
1940 (pagesize): Remove.
1941 (struct dwarf2_section_info) <map_addr, map_len>: Remove.
1942 (zlib_decompress_section): Remove.
1943 (dwarf2_read_section): Use gdb_bfd_map_section.
1944 (munmap_section_buffer): Remove.
1945 (free_dwo_file, dwarf2_per_objfile_free): Don't use
1946 munmap_section_buffer.
1947 * gdb_bfd.c: Include zlib.h, sys/mman.h.
1948 (struct gdb_bfd_section_data): New.
1949 (free_one_bfd_section): New function.
1950 (gdb_bfd_close_or_warn): Use free_one_bfd_section.
1951 (get_section_descriptor, zlib_decompress_section)
1952 (gdb_bfd_map_section): New functions.
1953 * gdb_bfd.h (gdb_bfd_map_section): Declare.
1954
1955 2012-07-18 Tom Tromey <tromey@redhat.com>
1956
1957 * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
1958
1959 2012-07-18 Tom Tromey <tromey@redhat.com>
1960
1961 * gdb_bfd.c (struct gdb_bfd_data): New.
1962 (gdb_bfd_cache): New global.
1963 (struct gdb_bfd_cache_search): New.
1964 (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
1965 (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
1966 * gdb_bfd.h (gdb_bfd_open): Declare.
1967
1968 2012-07-18 Tom Tromey <tromey@redhat.com>
1969
1970 * utils.c (make_cleanup_bfd_unref): Rename from
1971 make_cleanup_bfd_close.
1972 * defs.h (make_cleanup_bfd_unref): Rename from
1973 make_cleanup_bfd_close.
1974 * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
1975 (bfd_openw_with_cleanup): Update.
1976 * corelow.c (core_open): Update.
1977 * dsrec.c (load_srec): Update.
1978 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
1979 * remote-m32r-sdi.c (m32r_load): Update.
1980 * remote-mips.c (mips_load_srec): Update.
1981 (pmon_load_fast): Update.
1982 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
1983 Update.
1984 (darwin_bfd_open): Update.
1985 * solib.c (solib_bfd_fopen): Update.
1986 * symfile-mem.c (symbol_file_add_from_memory): Update.
1987 * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
1988 (symfile_bfd_open): Update.
1989 (generic_load): Update.
1990
1991 2012-07-18 Tom Tromey <tromey@redhat.com>
1992
1993 * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
1994 (pmon_load_fast): Likewise.
1995 * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
1996 (m32r_upload_command): Likewise.
1997 * dsrec.c (load_srec): Use make_cleanup_bfd_close.
1998 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
1999 Use make_cleanup_bfd_close.
2000
2001 2012-07-18 Tom Tromey <tromey@redhat.com>
2002
2003 * symfile.c (symfile_bfd_open): Don't copy name. Call
2004 gdb_bfd_stash_filename.
2005 (load_command): Open the new BFD before freeing the old.
2006 (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
2007 * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
2008 Call gdb_bfd_stash_filename.
2009 * spu-linux-nat.c (spu_bfd_open): Don't copy name.
2010 * solib-spu.c (spu_bfd_fopen): Don't copy name. Call
2011 gdb_bfd_stash_filename.
2012 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2013 Free found_pathname.
2014 * rs6000-nat.c (add_vmap): Don't copy filename. Call
2015 gdb_bfd_stash_filename.
2016 * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
2017 * machoread.c (macho_add_oso_symfile): Call
2018 gdb_bfd_stash_filename.
2019 (macho_symfile_read_all_oso): Arrange to free archive_name. Call
2020 gdb_bfd_stash_filename.
2021 (macho_check_dsym): Don't copy filename. Call
2022 gdb_bfd_stash_filename.
2023 * jit.c (bfd_open_from_target_memory): Don't copy the filename.
2024 * gdb_bfd.c (gdb_bfd_stash_filename): New function.
2025 * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
2026 * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
2027 * exec.c (exec_close): Don't free the BFD's filename.
2028 (exec_file_attach): Don't copy the filename. Call
2029 gdb_bfd_stash_filename.
2030 * corelow.c (core_close): Don't free the BFD's filename.
2031 (core_open): Call gdb_bfd_stash_filename.
2032 * corefile.c (reopen_exec_file): Remove #if 0 code.
2033 * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename. Free
2034 pathname.
2035 * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
2036
2037 2012-07-18 Tom Tromey <tromey@redhat.com>
2038
2039 * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
2040 gdb_bfd_unref.
2041 (free_dwo_file): Use gdb_bfd_unref.
2042 * cli/cli-dump.c: Include gdb_bfd.h.
2043 (bfd_openw_with_cleanup): Use gdb_bfd_ref.
2044 (bfd_openr_with_cleanup): Likewise.
2045 * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
2046 gdb_bfd_unref.
2047 * utils.c: Include gdb_bfd.h.
2048 (do_bfd_close_cleanup): Use gdb_bfd_unref.
2049 * symfile.c: Include gdb_bfd.h.
2050 (separate_debug_file_exists): Use gdb_bfd_unref.
2051 (bfd_open_maybe_remote): Use gdb_bfd_ref.
2052 (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
2053 (generic_load): Use gdb_bfd_ref.
2054 (reread_symbols): Use gdb_bfd_unref.
2055 * symfile-mem.c: Include gdb_bfd.h.
2056 (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
2057 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
2058 * solib.c: Include gdb_bfd.h.
2059 (solib_bfd_fopen): Use gdb_bfd_ref.
2060 (solib_bfd_open): Use gdb_bfd_unref.
2061 (free_so_symbols): Use gdb_bfd_unref.
2062 (reload_shared_libraries_1): Use gdb_bfd_unref.
2063 * solib-spu.c: Include gdb_bfd.h.
2064 (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
2065 * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
2066 gdb_bfd_unref.
2067 * solib-frv.c: Include gdb_bfd.h.
2068 (enable_break2): Use gdb_bfd_unref.
2069 * solib-dsbt.c: Include gdb_bfd.h.
2070 (enable_break2): Use gdb_bfd_unref.
2071 * solib-darwin.c: Include gdb_bfd.h.
2072 (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
2073 gdb_bfd_unref.
2074 (darwin_bfd_open): Use gdb_bfd_unref.
2075 * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
2076 * remote-mips.c: Include gdb_bfd.h.
2077 (mips_load_srec): Use gdb_bfd_ref.
2078 (pmon_load_fast): Use gdb_bfd_ref.
2079 * remote-m32r-sdi.c: Include gdb_bfd.h.
2080 (m32r_load): Use gdb_bfd_ref.
2081 * record.c: Include gdb_bfd.h.
2082 (record_save_cleanups): Use gdb_bfd_unref.
2083 (cmd_record_save): Use gdb_bfd_unref.
2084 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
2085 gdb_bfd_unref.
2086 * objfiles.h (gdb_bfd_close_or_warn): Remove.
2087 (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
2088 * objfiles.c: Include gdb_bfd.h.
2089 (free_objfile): Use gdb_bfd_unref.
2090 (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
2091 gdb_bfd.c.
2092 * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
2093 (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
2094 (macho_check_dsym): Likewise.
2095 * m32r-rom.c: Include gdb_bfd.h.
2096 (m32r_load): Use gdb_bfd_ref.
2097 (m32r_upload_command): Use gdb_bfd_ref.
2098 * jit.c: Include gdb_bfd.h.
2099 (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
2100 * gdb_bfd.h: New file.
2101 * gdb_bfd.c: New file.
2102 * gcore.c: Include gdb_bfd.h.
2103 (create_gcore_bfd): Use gdb_bfd_ref.
2104 (do_bfd_delete_cleanup): Use gdb_bfd_unref.
2105 (gcore_command): Use gdb_bfd_unref.
2106 * exec.c: Include gdb_bfd.h.
2107 (exec_close): Use gdb_bfd_unref.
2108 (exec_close_1): Use gdb_bfd_unref.
2109 (exec_file_attach): Use gdb_bfd_ref.
2110 * elfread.c: Include gdb_bfd.h.
2111 (build_id_verify): Use gdb_bfd_unref.
2112 * dsrec.c: Include gdb_bfd.h.
2113 (load_srec): Use gdb_bfd_ref.
2114 * corelow.c: Include gdb_bfd.h.
2115 (core_close): Use gdb_bfd_unref.
2116 (core_open): Use gdb_bfd_ref.
2117 * bfd-target.c: Include gdb_bfd.h.
2118 (target_bfd_xclose): Use gdb_bfd_unref.
2119 (target_bfd_reopen): Use gdb_bfd_ref.
2120 * Makefile.in (SFILES): Add gdb_bfd.c.
2121 (HFILES_NO_SRCDIR): Add gdb_bfd.h.
2122 (COMMON_OBS): Add gdb_bfd.o.
2123
2124 2012-07-18 Keith Seitz <keiths@redhat.com>
2125
2126 * breakpoint.c (find_condition_and_thread): Initialize
2127 TASK and REST.
2128 (create_breakpiont): find_condition_and_thread will now
2129 initialize COND_STRING, THREAD, and REST (and TASK).
2130 (addr_string_to_sals): Likewise.
2131
2132 2012-07-18 Pedro Alves <palves@redhat.com>
2133
2134 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
2135 Pull the single step breakpoints out of the target.
2136
2137 2012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
2138
2139 * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
2140 * stap-probe.c (compile_probe_arg): Likewise.
2141
2142 2012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
2143
2144 * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
2145 (elf_compile_to_ax): Likewise.
2146 * infrun.c (insert_exception_resume_from_probe): Likewise.
2147 (check_exception_resume): Remove `objfile' variable.
2148 * probe.c (find_probe_by_pc): Remove `objfile' argument.
2149 (struct probe_and_objfile, probe_and_objfile_s): Delete.
2150 (collect_probes): Adjust return value to `VEC (probe_p) *'.
2151 (compare_entries): Rename to...
2152 (compare_probes): ...this. Adjust function to work with
2153 `struct probe *'. Rename variables `ea' and `eb' to `pa' and `pb'
2154 respectively.
2155 (gen_ui_out_table_header_info): Adjust `probes' argument to be
2156 `VEC (probe_p) *'.
2157 (print_ui_out_info): Adjust argument to be `struct probe *'.
2158 (info_probes_for_ops): Adjust internal computations to use
2159 `VEC (probe_p) *'.
2160 (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
2161 * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
2162 gen_info_probes_table_values>: Remove `objfile' argument.
2163 (struct probe) <objfile>: New field.
2164 (find_probe_by_pc): Remove `objfile' argument.
2165 * stap-probe.c (stap_parse_probe_arguments): Likewise.
2166 (stap_get_probe_argument_count): Likewise.
2167 (stap_get_arg): Likewise.
2168 (stap_evaluate_probe_argument): Likewise.
2169 (stap_compile_to_ax): Likewise.
2170 (compile_probe_arg): Refactor not to pass `objfile' anymore.
2171 (handle_stap_probe): Fill `objfile' field from `struct probe'.
2172 (stap_gen_info_probes_table_header): Remove `objfile' argument.
2173 * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
2174 sym_compile_to_ax>: Likewise.
2175
2176 2012-07-18 Terry Guo <terry.guo@arm.com>
2177
2178 PR 14329
2179 * defs.h (GDB_MI_MSG_WIDTH): New.
2180 * ser_base (ser_base_read_error_fd): New function.
2181 (do_ser_base_readchar): Poll error file descriptor as well as
2182 standard output.
2183 (generic_readchar): Refactor error handling.
2184
2185 2012-07-18 Joel Brobecker <brobecker@adacore.com>
2186
2187 * NEWS: Create a new section for the next release branch.
2188 Rename the section of the current branch, now that it has
2189 been cut.
2190
2191 2012-07-18 Joel Brobecker <brobecker@adacore.com>
2192
2193 GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
2194 * version.in: Bump version to 7.5.50.20120718-cvs.
2195
2196 2012-07-17 Keith Seitz <keiths@redhat.com>
2197
2198 * linespec.c (linespec_parse_line_offset): Make parameter
2199 const.
2200
2201 2012-07-16 Jan Kratochvil <jan.kratochvil@redhat.com>
2202
2203 PR 11914
2204 * f-valprint.c (info_common_command): New variable frame_id.
2205 Reinitialize FI form FRAME_ID after each print_variable_and_value.
2206 * printcmd.c (print_variable_and_value): Extend function comment.
2207 Add comment for invalidated FRAME.
2208 * stack.c (backtrace_command_1): New variable frame_id. Reinitialize
2209 FI form FRAME_ID after each print_frame_local_vars.
2210 (struct print_variable_and_value_data): Change frame to frame_id.
2211 (do_print_variable_and_value): New variable frame, initialize it from
2212 p->frame_id. Add comment for invalidated FRAME.
2213 (print_frame_local_vars, print_frame_arg_vars): New function comment.
2214 Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization. Add comment
2215 for invalidated FRAME.
2216
2217 2012-07-16 Marc Khouzam <marc.khouzam@ericsson.com>
2218 Pedro Alves <palves@redhat.com>
2219
2220 * linux-nat.c (linux_nat_detach): Don't unregister from the event
2221 loop.
2222
2223 2012-07-16 Tom Tromey <tromey@redhat.com>
2224
2225 * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
2226
2227 2012-07-15 Doug Evans <dje@google.com>
2228
2229 * dwarf2read.c (stmt_list_hash): New struct.
2230 (type_unit_group): Embed "per_cu" member, remove pointer.
2231 New union member "t", move member "tus" into it, all uses updated.
2232 New member "hash", replaces member "line_offset, all uses updated.
2233 (quick_file_names): Replace member "offset" with "hash", all uses
2234 updated.
2235 (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
2236 (hash_file_name_entry, eq_file_name_entry): Call them.
2237 (hash_type_unit_group, eq_type_unit_group): Ditto.
2238 (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
2239 (dw2_get_file_names_reader): Fix file name table calculation for TUs.
2240 (dw2_get_file_names): Update.
2241 (create_type_unit_group): Replace "per_cu" arg with "cu".
2242 All callers updated. Fix "quick" (.gdb_index) handling.
2243 (get_type_unit_group): Replace "per_cu" arg with "cu".
2244 All callers updated.
2245 (build_type_unit_groups): Don't reset tu_stats.
2246
2247 * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
2248 "tab_cur_size". Change member "tab" to be a htab_t.
2249 (create_filename_seen_cache): Update.
2250 (clear_filename_seen_cache, delete_filename_seen_cache): Update.
2251 (filename_seen): Update.
2252
2253 2012-07-13 Doug Evans <dje@google.com>
2254
2255 * symtab.c (filename_seen): Update comment.
2256
2257 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2258 Doug Evans <dje@google.com>
2259
2260 * buildsym.c (end_symtab_1): Split it to ...
2261 (end_symtab_get_static_block): ... this ...
2262 (end_symtab_from_static_block): ... and this function.
2263 (end_symtab, end_expandable_symtab): Call them.
2264 * buildsym.h (end_symtab_get_static_block)
2265 (end_symtab_from_static_block): New declarations.
2266 * dwarf2read.c (process_full_comp_unit): New variable static_block.
2267 Set its valid CU ranges.
2268
2269 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2270
2271 * dwarf2loc.c (disassemble_dwarf_expression): Handle
2272 DW_OP_GNU_parameter_ref.
2273
2274 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2275
2276 * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
2277 read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
2278
2279 2012-07-13 Doug Evans <dje@google.com>
2280
2281 * symtab.c (output_source_filename): Delete unnecessary forward decl.
2282 (filename_seen_cache): New struct.
2283 (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
2284 (create_filename_seen_cache): New function.
2285 (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
2286 (filename_seen): Delete arg "first". New arg "cache". All callers
2287 updated.
2288 (output_source_filename_data): New struct.
2289 (output_source_filename): Delete arg "first". New arg "data".
2290 All callers updated.
2291 (sources_info): Delete local "first". New locals "data", "cleanups".
2292 Rewrite to use filename_seen_cache.
2293 (add_partial_filename_data): Delete member "first". New member
2294 "filename_seen_cache". All uses updated.
2295 (make_source_files_completion_list): Rewrite to use
2296 filename_seen_cache.
2297
2298 2012-07-12 Doug Evans <dje@google.com>
2299
2300 * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
2301
2302 2012-07-10 Doug Evans <dje@google.com>
2303
2304 PR gdb/13498
2305 * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
2306 all_type_unit_groups, type_unit_groups, tu_stats.
2307 (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
2308 All uses updated. Add type_unit_group to union "s".
2309 (type_unit_group): New struct.
2310 (IS_TYPE_UNIT_GROUP): New macro.
2311 (abbrev_table): Delete unused member "section".
2312 (dw2_do_instantiate_symtab): Early exit if type_unit_group.
2313 (dw2_get_cu): Assert not used with type_unit_group.
2314 (dw2_get_primary_cu): New function.
2315 (dw2_build_type_unit_groups_reader): New function.
2316 (dw2_build_type_unit_groups): New function.
2317 (dw2_get_file_names): Assert not called on type units.
2318 (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
2319 Redo loop to iterate over type unit groups instead of type units.
2320 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
2321 (read_abbrev_offset): New function.
2322 (init_cutu_and_read_dies): New arg "abbrev_table". All callers
2323 updated.
2324 (create_partial_symtab): New function.
2325 (process_psymtab_comp_unit_reader): Assert not used with type units.
2326 Call create_partial_symtab.
2327 (process_psymtab_type_unit): Delete.
2328 (hash_type_unit_group, eq_type_unit_group): New functions.
2329 (allocate_type_unit_groups_table): New function.
2330 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
2331 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
2332 (create_type_unit_group, get_type_unit_group): New functions.
2333 (tu_abbrev_offset): New struct.
2334 (sort_tu_by_abbrev_offset): New function.
2335 (add_type_unit_group_to_table): New function.
2336 (build_type_unit_groups): New function.
2337 (build_type_psymtabs_reader): New function.
2338 (build_type_psymtab_dependencies): New function.
2339 (build_type_psymtabs): Rewrite.
2340 (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
2341 is seen in a type unit.
2342 (process_queue): Move symtab expansion debugging printfs here.
2343 Call process_full_type_unit for type units.
2344 (compute_symtab_includes): Assert not called for type units.
2345 (process_cu_includes): Don't call compute_symtab_includes for
2346 type units.
2347 (process_full_type_unit): New function.
2348 (process_imported_unit_die): Flag an error if called for type units.
2349 (handle_DW_AT_stmt_list): Delete arg "want_line_info". All callers
2350 updated. Assert not called for type units.
2351 (read_file_scope): Call dwarf2_start_symtab.
2352 (setup_type_unit_groups): New function.
2353 (read_type_unit_scope): Rewrite.
2354 (abbrev_table_read_table): Initialize abbrev_table->offset.
2355 (abbrev_table_free_cleanup): New function.
2356 (dwarf2_start_symtab): New function.
2357 (load_full_type_unit): Assert not called for type unit groups.
2358 * buildsym.c (finish_block_internal): New arg "expandable".
2359 All callers updated.
2360 (start_symtab): Move most contents to ...
2361 (restart_symtab): ... here. New function.
2362 (reset_symtab_globals): New function.
2363 (end_symtab_1): Renamed from end_symtab. New arg "expandable".
2364 Call reset_symtab_globals.
2365 (end_symtab, end_expandable_symtab): New functions.
2366 (set_missing_symtab, augment_type_symtab): New functions.
2367 * buildsym.h (end_expandable_symtab): Declare.
2368 (augment_type_symtab, restart_symtab): Declare.
2369 * psympriv.h (struct partial_symtab): New member "anonymous".
2370 * psymtab.c (partial_map_symtabs_matching_filename): Ignore
2371 anonymous psymtabs.
2372 (read_psymtabs_with_filename): Ditto.
2373 (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
2374 (expand_symtabs_matching_via_partial): Ditto.
2375 (dump_psymtab): Update.
2376 * dictionary.c (dict_add_pending): New function.
2377 * dictionary.h (dict_add_pending): Declare.
2378
2379 2012-07-09 Doug Evans <dje@google.com>
2380
2381 * buildsym.c (start_subfile): Remove unnecessary check for
2382 name == NULL.
2383
2384 * psymtab.c (allocate_psymtab): Use host_address_to_string.
2385
2386 * dwarf2read.c (load_full_type_unit): Simplify.
2387
2388 * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
2389 to struct signatured_type **. All uses updated.
2390
2391 * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
2392 All callers updated.
2393
2394 2012-07-09 Tom Tromey <tromey@redhat.com>
2395
2396 * c-exp.y (check_parameter_typelist): New function.
2397 (parameter_typelist): Call it.
2398 * eval.c (make_params): Handle '(void)' case.
2399 * gdbtypes.c (lookup_function_type_with_arguments): Handle
2400 '(void)' case.
2401
2402 2012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2403
2404 * common/linux-ptrace.c: Include gdb_assert.h.
2405 <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
2406 <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
2407 stdint.h.
2408 (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
2409 functions.
2410 * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
2411 * linux-nat.c (linux_child_post_attach)
2412 (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
2413
2414 2012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2415
2416 * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
2417 nptl <2.7 bug workaround for core files.
2418
2419 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2420
2421 * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
2422 clearing.
2423 (save_siginfo): Remove.
2424 (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
2425 call.
2426 (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
2427 (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
2428 * linux-nat.h (struct lwp_info): Remove field siginfo.
2429
2430 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2431
2432 Code cleanup for the next patch.
2433 * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
2434 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
2435 call for it.
2436 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
2437 (ia64_linux_stopped_data_address):
2438 * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
2439 the return value.
2440 * linux-nat.h (linux_nat_get_siginfo): Likewise.
2441 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
2442 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
2443 call for it.
2444
2445 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2446
2447 PR 14321
2448 * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
2449 Increase buffer sizes to 2x we need, not just 2x of the previous size.
2450
2451 2012-07-06 Tom Tromey <tromey@redhat.com>
2452
2453 * c-exp.y (DOTDOTDOT): New token.
2454 (func_mod, exp): Use parameter_typelist.
2455 (parameter_typelist): New production.
2456 (tokentab3): Add "..." token.
2457 * eval.c (make_params): Handle varargs.
2458 * gdbtypes.c (lookup_function_type_with_arguments): Handle
2459 varargs.
2460
2461 2012-07-06 Tom Tromey <tromey@redhat.com>
2462
2463 PR exp/9608:
2464 * c-exp.y (%union) <tvec>: Change type.
2465 (func_mod): Now uses <tvec> type.
2466 (exp): Update for tvec change.
2467 (direct_abs_decl): Push the typelist.
2468 (func_mod): Return a typelist.
2469 (nonempty_typelist): Update for tvec change.
2470 * gdbtypes.c (lookup_function_type_with_arguments): New function.
2471 * gdbtypes.h (lookup_function_type_with_arguments): Declare.
2472 * parse.c (pop_type_list): New function.
2473 (push_typelist): New function.
2474 (follow_types): Handle tp_function_with_arguments.
2475 * parser-defs.h (type_ptr): New typedef. Define a VEC.
2476 (enum type_pieces) <tp_function_with_arguments>: New constant.
2477 (union type_stack_elt) <typelist_val>: New field.
2478 (push_typelist): Declare.
2479
2480 2012-07-06 Tom Tromey <tromey@redhat.com>
2481
2482 * c-exp.y (%union) <type_stack>: New field.
2483 (abs_decl, direct_abs_decl): Use <type_stack> type. Update.
2484 (ptr_operator_ts): New production.
2485 (ptype): Update.
2486 * parse.c (type_stack_reserve): New function.
2487 (check_type_stack_depth): Use it.
2488 (pop_type_stack, append_type_stack, push_type_stack)
2489 (get_type_stack, type_stack_cleanup): New functions.
2490 (follow_types): Handle tp_type_stack.
2491 (_initialize_parse): Simplify initialization.
2492 * parser-defs.h (enum type_pieces) <tp_type_stack>: New
2493 constant.
2494 (union type_stack_elt) <stack_val>: New field.
2495 (get_type_stack, append_type_stack, push_type_stack)
2496 (type_stack_cleanup): Declare.
2497
2498 2012-07-06 Tom Tromey <tromey@redhat.com>
2499
2500 * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
2501 Remove.
2502 (struct type_stack): New.
2503 * parse.c (type_stack, type_stack_size, type_stack_depth):
2504 Remove.
2505 (type_stack): New global.
2506 (parse_exp_in_context, check_type_stack_depth)
2507 (insert_into_type_stack, insert_type, push_type, push_type_int)
2508 (insert_type_address_space, pop_type, pop_type_int)
2509 (_initialize_parse): Update.
2510
2511 2012-07-06 Tom Tromey <tromey@redhat.com>
2512
2513 * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
2514 Remove %type.
2515
2516 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
2517
2518 * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
2519
2520 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
2521 Jan Kratochvil <jan.kratochvil@redhat.com>
2522
2523 * cp-valprint.c (cp_print_value): Replace potentially unsafe
2524 alloca with xmalloc/xfree.
2525
2526 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
2527
2528 * MAINTAINERS (Write After Approval): Add myself to the list.
2529
2530 2012-07-05 Doug Evans <dje@google.com>
2531
2532 * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
2533
2534 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
2535
2536 * ax-gdb.c (cli/cli-utils.h): New include.
2537 (linespec.h): Ditto.
2538 (agent_eval_command_one): New function.
2539 (agent_command_1): Ditto.
2540 (agent_command): Call function agent_command_1.
2541 (agent_eval_command): Ditto.
2542 (_initialize_ax_gdb): Change help for "maint agent"
2543 and "maint agent-eval".
2544
2545 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
2546
2547 * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
2548 * cli/cli-utils.c (check_for_argument): New function.
2549 * cli/cli-utils.h (check_for_argument): Ditto.
2550
2551 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
2552
2553 * NEWS: Mention x32 ABI support.
2554
2555 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
2556
2557 * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
2558 AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
2559
2560 * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
2561 and pc_regnum_from_eax to -1. Update SP regnum from
2562 sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
2563 needed.
2564
2565 * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
2566 pc_regnum_from_eax.
2567
2568 2012-07-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2569
2570 Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
2571 * dwarf2expr.h: Include gdbtypes.h.
2572 (enum call_site_parameter_kind, union call_site_parameter_u): Remove
2573 these forward declarations.
2574 (cu_offset, sect_offset): Move these ...
2575 * gdbtypes.h: Remove include dwarf2expr.h.
2576 (cu_offset, sect_offset): ... here.
2577
2578 2012-07-03 H.J. Lu <hongjiu.lu@intel.com>
2579
2580 * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
2581 (amd64_linux_sigtramp_code): This.
2582 (amd64_x32_linux_sigtramp_code): New.
2583 (LINUX_SIGTRAMP_LEN): Updated.
2584 (amd64_linux_sigtramp_start): Check x32 sigtramp.
2585
2586 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2587
2588 * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
2589
2590 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2591
2592 * config.in: Regenerate.
2593 * configure: Regenerate.
2594 * configure.ac: Remove check for gnu/libc-version.h.
2595 * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
2596 gnu/libc-version.h.
2597 (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
2598 variables libc_version, libc_major and libc_minor. Replace sscanf by
2599 inferior_has_bug. Extend the comment.
2600
2601 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2602
2603 * linux-thread-db.c (inferior_has_bug): New function.
2604 (thread_db_find_new_threads_silently): Return boolean as checked by
2605 inferior_has_bug, describe it in the comments.
2606 (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
2607 earlier. Abort the initialization if it returned non-zero.
2608 (thread_db_new_objfile): Exclude debug files.
2609 (thread_db_find_new_threads_2): Preinitialize ERR. Check errors also
2610 if UNTIL_NO_NEW,
2611
2612 2012-07-02 Doug Evans <dje@google.com>
2613
2614 * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
2615 related to queue management.
2616
2617 * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
2618 instead of "debug dwarf2-die" in debugging printfs.
2619 (create_debug_info_hash_table_reader): Ditto.
2620 (create_debug_info_hash_table): Ditto.
2621 (init_dwo_file): Ditto.
2622 (init_cutu_and_read_dies): Add debugging printf.
2623 (init_cutu_and_read_dies_no_follow): Ditto.
2624 (process_psymtab_comp_unit_reader): Ditto.
2625
2626 2012-07-02 Stan Shebs <stan@codesourcery.com>
2627
2628 Add target-side support for dynamic printf.
2629 * NEWS: Mention the additional style.
2630 * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
2631 (struct bp_location): New field cmd_bytecode.
2632 * breakpoint.c: Include format.h.
2633 (disconnected_dprintf): New global.
2634 (parse_cmd_to_aexpr): New function.
2635 (build_target_command_list): New function.
2636 (insert_bp_location): Call it.
2637 (remove_breakpoints_pid): Skip dprintf breakpoints.
2638 (print_one_breakpoint_location): Ditto.
2639 (dprintf_style_agent): New global.
2640 (dprintf_style_enums): Add dprintf_style_agent.
2641 (update_dprintf_command_list): Add agent case.
2642 (agent_printf_command): New function.
2643 (_initialize_breakpoint): Add new commands.
2644 * common/ax.def (printf): New bytecode.
2645 * ax.h (ax_string): Declare.
2646 * ax-gdb.h (gen_printf): Declare.
2647 * ax-gdb.c: Include cli-utils.h, format.h.
2648 (gen_printf): New function.
2649 (maint_agent_print_command): New function.
2650 (_initialize_ax_gdb): Add maint agent-printf command.
2651 * ax-general.c (ax_string): New function.
2652 (ax_print): Add printf disassembly.
2653 * Makefile.in (SFILES): Add format.c
2654 (COMMON_OBS): Add format.o.
2655 * common/format.h: New file.
2656 * common/format.c: New file.
2657 * printcmd.c: Include format.h.
2658 (ui_printf): Call parse_format_string.
2659 * remote.c (remote_state): New field breakpoint_commands.
2660 (PACKET_BreakpointCommands): New enum.
2661 (remote_breakpoint_commands_feature): New function.
2662 (remote_protocol_features): Add new BreakpointCommands entry.
2663 (remote_can_run_breakpoint_commands): New function.
2664 (remote_add_target_side_commands): New function.
2665 (remote_insert_breakpoint): Call it.
2666 (remote_insert_hw_breakpoint): Ditto.
2667 (_initialize_remote): Add new packet configuration for
2668 target-side breakpoint commands.
2669 * target.h (struct target_ops): New field
2670 to_can_run_breakpoint_commands.
2671 (target_can_run_breakpoint_commands): New macro.
2672 * target.c (update_current_target): Handle
2673 to_can_run_breakpoint_commands.
2674
2675 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2676
2677 Execute -ix and -iex only after system and user gdbinit files.
2678 * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
2679 processing down after gdbinit files.
2680
2681 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2682
2683 Add fnmatch-gnu module.
2684 * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
2685 * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
2686 * gnulib/aclocal.m4: Regenerate.
2687 * gnulib/config.in: Regenerate.
2688 * gnulib/configure: Regenerate.
2689 * gnulib/import/dummy.c: Remove.
2690 * gnulib/import/Makefile.am: Regenerate.
2691 * gnulib/import/Makefile.in: Likewise.
2692 * gnulib/import/m4/gnulib-cache.m4: Likewise.
2693 * gnulib/import/m4/gnulib-comp.m4: Likewise.
2694 * gnulib/import/alloca.c: New file.
2695 * gnulib/import/alloca.in.h: Likewise.
2696 * gnulib/import/config.charset: Likewise.
2697 * gnulib/import/fnmatch.c: Likewise.
2698 * gnulib/import/fnmatch.in.h: Likewise.
2699 * gnulib/import/fnmatch_loop.c: Likewise.
2700 * gnulib/import/localcharset.c: Likewise.
2701 * gnulib/import/localcharset.h: Likewise.
2702 * gnulib/import/m4/alloca.m4: Likewise.
2703 * gnulib/import/m4/codeset.m4: Likewise.
2704 * gnulib/import/m4/configmake.m4: Likewise.
2705 * gnulib/import/m4/fcntl-o.m4: Likewise.
2706 * gnulib/import/m4/fnmatch.m4: Likewise.
2707 * gnulib/import/m4/glibc21.m4: Likewise.
2708 * gnulib/import/m4/localcharset.m4: Likewise.
2709 * gnulib/import/m4/locale-fr.m4: Likewise.
2710 * gnulib/import/m4/locale-ja.m4: Likewise.
2711 * gnulib/import/m4/locale-zh.m4: Likewise.
2712 * gnulib/import/m4/mbrtowc.m4: Likewise.
2713 * gnulib/import/m4/mbsinit.m4: Likewise.
2714 * gnulib/import/m4/mbsrtowcs.m4: Likewise.
2715 * gnulib/import/m4/mbstate_t.m4: Likewise.
2716 * gnulib/import/m4/stdbool.m4: Likewise.
2717 * gnulib/import/m4/wchar_h.m4: Likewise.
2718 * gnulib/import/m4/wctype_h.m4: Likewise.
2719 * gnulib/import/m4/wint_t.m4: Likewise.
2720 * gnulib/import/mbrtowc.c: Likewise.
2721 * gnulib/import/mbsinit.c: Likewise.
2722 * gnulib/import/mbsrtowcs-impl.h: Likewise.
2723 * gnulib/import/mbsrtowcs-state.c: Likewise.
2724 * gnulib/import/mbsrtowcs.c: Likewise.
2725 * gnulib/import/ref-add.sin: Likewise.
2726 * gnulib/import/ref-del.sin: Likewise.
2727 * gnulib/import/stdbool.in.h: Likewise.
2728 * gnulib/import/streq.h: Likewise.
2729 * gnulib/import/strnlen1.c: Likewise.
2730 * gnulib/import/strnlen1.h: Likewise.
2731 * gnulib/import/verify.h: Likewise.
2732 * gnulib/import/wchar.in.h: Likewise.
2733 * gnulib/import/wctype.in.h: Likewise.
2734
2735 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2736
2737 Support shell wildcards for 'set auto-load safe-path'.
2738 * auto-load.c: Include fnmatch.h.
2739 (filename_is_in_dir): Rename to ...
2740 (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
2741 it. Update function comment. Rename dir_len to pattern_len. New
2742 variables filename_len, pattern and filename. Add more DEBUG_AUTO_LOAD
2743 messages. Use gdb_filename_fnmatch.
2744 (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
2745 pattern.
2746 (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
2747 * defs.h (gdb_filename_fnmatch): New declaration.
2748 * utils.c: Include fnmatch.h.
2749 (gdb_filename_fnmatch): New function.
2750
2751 2012-07-02 Sergio Durigan Junior <sergiodj@redhat.com>
2752
2753 * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
2754 `-probe' and `-probe-stap' options.
2755
2756 2012-07-01 Yao Qi <yao@codesourcery.com>
2757
2758 * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
2759 always_inserted_off, and always_inserted_enums.
2760 Change always_inserted_mode's type to 'enum auto_boolean'.
2761 (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
2762 callers.
2763 (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
2764 of add_setshow_enum_cmd.
2765 * infrun.c: Remove can_use_displaced_stepping_auto,
2766 can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
2767 can_use_displaced_stepping_enum.
2768 Change can_use_displaced_stepping's type to 'enum auto_boolean'.
2769 (show_can_use_displaced_stepping, use_displaced_stepping): Update callers.
2770 (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
2771 add_setshow_enum_cmd.
2772
2773 2012-06-30 Doug Evans <dje@google.com>
2774
2775 * dwarf2read.c (signatured_type): Make "per_cu" member first.
2776 (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
2777 currently being read. Propagate DW_AT_comp_dir to DWO DIE.
2778
2779 2012-06-29 Doug Evans <dje@google.com>
2780
2781 * linespec.c: #include "stack.h".
2782 (decode_line_with_current_source): Moved here from symtab.c and
2783 renamed from decode_line_spec. All callers updated.
2784 (decode_line_with_last_displayed): Moved here from breakpoint.c and
2785 renamed from decode_line_spec_1. All callers updated.
2786 * linespec.h (decode_line_with_current_source): Move declaration here
2787 from symtab.h and renamed from decode_line_spec.
2788 (decode_line_with_last_displayed): Move declaration here from symtab.h
2789 and renamed from decode_line_spec_1.
2790 * macrocmd.c: #include "linespec.h".
2791 * symtab.c: Remove #include "linespec.h".
2792
2793 2012-06-28 Doug Evans <dje@google.com>
2794
2795 * dwarf2read.c (get_cu_length): New function.
2796 (offset_in_cu_p, error_check_comp_unit_head): Call it.
2797 (create_debug_types_hash_table): Ditto.
2798 (init_cutu_and_read_dies): Ditto.
2799 (init_cutu_and_read_dies_no_follow): Ditto.
2800
2801 * dwarf2read.c (dwarf2_find_base_address): Move definition.
2802
2803 * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
2804 (struct abbrev_table): Define.
2805 (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
2806 abbrev_table.
2807 (init_cutu_and_read_dies): Update.
2808 (abbrev_table_alloc_abbrev): New function. Replaces
2809 dwarf_alloc_abbrev. All callers updated.
2810 (abbrev_table_add_abbrev): New function.
2811 (abbrev_table_lookup_abbrev): New function. Replaces
2812 dwarf2_lookup_abbrev. All callers updated.
2813 (abbrev_table_read_table): New function. Contents moved here from
2814 dwarf2_read_abbrevs.
2815 (dwarf2_read_abbrevs): Call it.
2816 (abbrev_table_free): New function.
2817 (dwarf2_free_abbrev_table): Call it.
2818
2819 2012-06-28 Stan Shebs <stan@codesourcery.com>
2820
2821 * osdata.c (info_osdata_command): Filter out "Title" columns
2822 from non-MI uses.
2823 * common/linux-osdata.c (struct osdata_type): Add title field.
2824 (osdata_table): Add titles to each entry.
2825 (linux_command_xfer_osdata): Add a column for title data.
2826
2827 2012-06-28 Stan Shebs <stan@codesourcery.com>
2828
2829 Make logging work for MI.
2830 * NEWS: Mention it.
2831 * interps.h (interp_set_logging_ftype): New typedef.
2832 (struct interp_procs): New field set_logging_proc.
2833 (current_interp_set_logging): Declare.
2834 * interps.c (current_interp_set_logging): New function.
2835 * cli/cli-logging.c: Include interps.h.
2836 (set_logging_redirect): Call current_interp_set_logging.
2837 (pop_output_files): Ditto.
2838 (handle_redirections): Ditto, plus skip ui-out redirect if MI.
2839 * mi/mi-console.h (mi_console_set_raw): Declare.
2840 * mi/mi-console.c (mi_console_set_raw): New function.
2841 * mi/mi-interp.c (saved_raw_stdout): New global.
2842 (mi_set_logging): New function.
2843 (_initialize_mi_interp): Add it to interp procs.
2844
2845 2012-06-28 Doug Evans <dje@google.com>
2846
2847 * symtab.c (lookup_symbol_aux_objfile): Use
2848 ALL_OBJFILE_PRIMARY_SYMTABS.
2849
2850 * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
2851
2852 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2853
2854 * common/buffer.c: Include inttypes.h and stdint.h.
2855 (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
2856
2857 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2858 Pedro Alves <palves@redhat.com>
2859
2860 * gdbthread.h (ALL_THREADS): New macro.
2861 (thread_list): Declare.
2862 * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
2863 going, but instead fall through to the stepping handling.
2864 * linux-nat.c (resume_lwp): New parameter 'signo'. Resume with
2865 the passed in signal. Adjust debug output.
2866 (resume_callback): Rename to ...
2867 (linux_nat_resume_callback): ... this. Pass the thread's last
2868 stop signal, if in "pass" state.
2869 (linux_nat_resume): Adjust to rename.
2870 (stop_wait_callback): New assertion. Don't respawn signals;
2871 instead let the LWP remain with SIGNALLED set.
2872 (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
2873 * remote.c (append_pending_thread_resumptions): New.
2874 (remote_vcont_resume): Call it.
2875 * target.h (target_resume): Extend comment.
2876
2877 2012-06-28 Iain Sandoe <iain@codesourcery.com>
2878
2879 * auxv.c (fprint_target_auxv): Handle extended cache data tags.
2880
2881 2012-06-27 Doug Evans <dje@google.com>
2882
2883 * dwarf2read.c (dwarf2_cu): Add ranges_base.
2884 Delete have_addr_base, unused. All uses updated.
2885 (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
2886 (dwarf2_get_pc_bounds): Add ranges_base.
2887 (dwarf2_record_block_ranges): Ditto.
2888
2889 2012-06-27 Tom Tromey <tromey@redhat.com>
2890
2891 PR macros/7961:
2892 * varobj.c (varobj_create): Update.
2893 (varobj_set_value): Update.
2894 * tracepoint.c (validate_actionline): Update.
2895 (encode_actions_1): Update.
2896 * parse.c (parse_exp_1): Add 'pc' argument.
2897 (parse_exp_in_context): Add 'pc' argument. Change how
2898 expression_context_pc is set.
2899 (parse_expression): Update.
2900 (parse_field_expression): Update.
2901 * expression.h (parse_exp_1): Update.
2902 * eval.c (parse_to_comma_and_eval): Update.
2903 * breakpoint.c (set_breakpoint_condition): Update.
2904 (update_watchpoint): Update.
2905 (init_breakpoint_sal): Update
2906 (find_condition_and_thread): Update.
2907 (watch_command_1): Update.
2908 (update_breakpoint_locations): Update.
2909 * ada-lang.c (ada_read_renaming_var_value): Update.
2910 (create_excep_cond_exprs): Update.
2911
2912 2012-06-27 Doug Evans <dje@google.com>
2913
2914 * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
2915 type units.
2916
2917 2012-06-26 Doug Evans <dje@google.com>
2918
2919 * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
2920 prototype.
2921 (error_check_comp_unit_head): New arg abbrev_section. All callers
2922 updated.
2923 (read_and_check_comp_unit_head): Ditto.
2924 (read_and_check_type_unit_head): Ditto.
2925
2926 2012-06-26 Siva Chandra Reddy <sivachandra@google.com>
2927
2928 New attribute 'last' for gdb.Symtab_and_line.
2929 * NEWS (Python Scripting): Add entry about the new attribute.
2930 * python/py-symtab.c (salpy_get_last): New function which
2931 implements the get method for the 'last' attribute of
2932 gdb.Symtab_and_line.
2933 (sal_object_getset): Add entry for the 'last' attribute.
2934
2935 2012-06-26 Doug Evans <dje@google.com>
2936
2937 * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
2938 (dwo_sections): Add macinfo, macro.
2939 (dwarf2_locate_dwo_sections): Watch for macro sections.
2940 (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
2941 All callers updated. Handle DWO files.
2942
2943 * NEWS: Mention new options "set debug dwarf2-read" and
2944 "set debug symtab-create".
2945 * dwarf2read.c (dwarf2_read_debug): New static global.
2946 (dwarf2_build_psymtabs_hard): Add debugging printfs.
2947 (process_queue): Ditto.
2948 (process_full_comp_unit): Ditto.
2949 (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
2950 * elfread.c (elf_symfile_read): Add debugging printf.
2951 * minsyms.c (install_minimal_symbols): Ditto.
2952 * psymtab.c (allocate_psymtab): Ditto.
2953 * symfile.c (allocate_symtab): Ditto.
2954 * symtab.c (symtab_create_debug): New global.
2955 (_initialize_symtab): Add new option "set debug symtab-create".
2956 * symtab.h (symtab_create_debug): Declare.
2957
2958 * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
2959 (lookup_dwo_type_unit): Ditto.
2960
2961 2012-06-26 Roland McGrath <roland@hack.frob.com>
2962 H.J. Lu <hongjiu.lu@intel.com>
2963
2964 * amd64-linux-nat.c: Include <sys/user.h>.
2965 (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
2966 if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
2967 HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
2968
2969 * configure.ac: Check if the fs_base and gs_base members of
2970 `struct user_regs_struct' exist.
2971 * config.in: Regenerated.
2972 * configure: Likewise.
2973
2974 2012-06-25 Michael Eager <eager@eagercon.com>
2975
2976 PR python/14291
2977 * python/python.c (gdbpy_write): Check for interrupted output.
2978
2979 2012-06-25 Greta Yorsh <greta.yorsh@arm.com>
2980
2981 * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
2982 register as a stack alignment in ARM mode.
2983
2984 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2985
2986 Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
2987 * gnulib/config.in: Regenerate.
2988 * gnulib/configure: Likewise.
2989 * gnulib/import/m4/extensions.m4: Update it.
2990 * gnulib/import/m4/gnulib-common.m4: Likewise.
2991 * gnulib/import/m4/memmem.m4: Likewise.
2992 * gnulib/import/m4/mmap-anon.m4: Likewise.
2993 * gnulib/import/m4/multiarch.m4: Likewise.
2994 * gnulib/import/stdint.in.h: Likewise.
2995
2996 2012-06-24 Yao Qi <yao@codesourcery.com>
2997
2998 * corefile.c (write_memory_with_notification): New.
2999 * gdbcore.h: Declare write_memory_with_notification.
3000 * ada-lang.c (ada_value_assign): Replace 'write_memory' and
3001 'observer_notify_memory_changed' with 'write_memory_with_notification'.
3002 * valops.c (value_assign): Likewise.
3003 * python/py-inferior.c (infpy_write_memory): Call
3004 'write_memory_with_notification'.
3005
3006 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3007
3008 * cc-with-index.sh: Use also -ex "set auto-load no".
3009
3010 2012-06-23 Doug Evans <dje@google.com>
3011
3012 PR 14125
3013 * NEWS: Document additions to .gdb_index.
3014 * dwarf2read.c: #include "gdb/gdb-index.h".
3015 (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
3016 (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
3017 (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
3018 (dwarf2_read_index): Recognize version 7.
3019 (dw2_do_expand_symtabs_matching): New args want_specific_block,
3020 block_kind, domain): All callers updated.
3021 (dw2_find_symbol_file): Handle new index CU values.
3022 (dw2_expand_symtabs_matching): Match symbol kind if requested.
3023 (add_index_entry): New args is_static, kind. All callers updated.
3024 (offset_type_compare, uniquify_cu_indices): New functions
3025 (symbol_kind): New function.
3026 (write_psymtabs_to_index): Remove duplicate CU values.
3027 (write_psymtabs_to_index): Write .gdb_index version 7.
3028
3029 2012-06-22 Joel Brobecker <brobecker@adacore.com>
3030
3031 * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
3032 * configure: Regenerate.
3033
3034 2012-06-20 Yao Qi <yao@codesourcery.com>
3035
3036 * python/py-inferior.c: Update comments of infpy_read_memory
3037 and infpy_write_memory.
3038
3039 2012-06-19 Tom Tromey <tromey@redhat.com>
3040
3041 PR exp/9514:
3042 * parser-defs.h (insert_type, insert_type_address_space): Declare.
3043 (push_type_address_space): Remove.
3044 * parse.c (insert_into_type_stack): New function.
3045 (insert_type): Likewise.
3046 (insert_type_address_space): Rename from push_type_address_space.
3047 Insert tp_space_identifier.
3048 * c-exp.y (ptr_operator): New production.
3049 (abs_decl): Use ptr_operator.
3050 (space_identifier): Call insert_type_address_space.
3051 (ptype): Don't use const_or_volatile_or_space_identifier.
3052 (const_or_volatile_noopt): Call insert_type.
3053 (conversion_type_id, conversion_declarator): New productions.
3054 (operator): Use conversion_type_id.
3055
3056 2012-06-18 Doug Evans <dje@google.com>
3057
3058 * symtab.h (minimal_symbol): New member created_by_gdb.
3059 * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
3060 created by gdb.
3061 * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
3062 (search_symbols): Call it instead of lookup_symbol.
3063 Skip symbols created by gdb. Only scan minsyms if nfiles == 0.
3064
3065 * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
3066 Adjust address for DW_OP_GNU_addr_index.
3067 * dwarf2expr.h (dwarf_expr_context): Update comment.
3068 * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
3069 all callers updated. Handle TLS vars described with
3070 DW_OP_GNU_const_index.
3071 (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
3072 and DW_OP_GNU_const_index.
3073 * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
3074
3075 * block.c (find_block_in_blockvector): Make explicit the fact that we
3076 ignore GLOBAL_BLOCK.
3077
3078 2012-06-18 Tom Tromey <tromey@redhat.com>
3079
3080 * c-exp.y (operator): Remove trailing space after "delete" and
3081 "delete[]".
3082
3083 2012-06-18 Mark Kettenis <kettenis@gnu.org>
3084 Jan Kratochvil <jan.kratochvil@redhat.com>
3085
3086 Switch i386 and derived targets to ON_STACK.
3087 * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
3088 (amd64_dicos_init_abi): Remove its installment.
3089 * dicos-tdep.c (dicos_init_abi): Remove the
3090 set_gdbarch_call_dummy_location call. Update the comment here.
3091 * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
3092 (i386_dicos_init_abi): Remove its installment.
3093 * i386-tdep.c (i386_push_dummy_code): New function.
3094 (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
3095 i386_push_dummy_code.
3096
3097 2012-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3098
3099 Remove stale dummy frames.
3100 * breakpoint.c: Include dummy-frame.h.
3101 (longjmp_breakpoint_ops): New variable.
3102 (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
3103 bp_longjmp_call_dummy.
3104 (bpstat_what, bptype_string, print_one_breakpoint_location)
3105 (init_bp_location): Support bp_longjmp_call_dummy.
3106 (set_longjmp_breakpoint): Use longjmp_breakpoint_ops. Comment why.
3107 (set_longjmp_breakpoint_for_call_dummy)
3108 (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
3109 functions.
3110 (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
3111 * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy. Delete
3112 FIXME comment and extend the other comment for bp_call_dummy.
3113 (set_longjmp_breakpoint_for_call_dummy)
3114 (check_longjmp_breakpoint_for_call_dummy): New declarations.
3115 * dummy-frame.c: Include gdbthread.h.
3116 (pop_dummy_frame_bpt): New function.
3117 (pop_dummy_frame): Call pop_dummy_frame_bpt.
3118 (dummy_frame_discard): New function.
3119 (cleanup_dummy_frames): Update the comment about longjmps.
3120 * dummy-frame.h (dummy_frame_discard): New declaration.
3121 * gdbthread.h (struct thread_info): Extend initiating_frame comment.
3122 * infcall.c (call_function_by_hand): New variable longjmp_b. Call
3123 set_longjmp_breakpoint_for_call_dummy. Chain its breakpoints with BPT.
3124 * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
3125 Add case 4 comment. Call check_longjmp_breakpoint_for_call_dummy and
3126 keep_going if IS_LONGJMP and there is no other reason to stop.
3127
3128 2012-06-18 Greta Yorsh <Greta.Yorsh@arm.com>
3129
3130 * remote-sim.c (sim_command_completer): Initialize
3131 variable 'result'.
3132
3133 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3134
3135 * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
3136 * dwarf2loc.c (call_site_parameter_matches): Support
3137 CALL_SITE_PARAMETER_PARAM_OFFSET.
3138 (needs_dwarf_reg_entry_value): Push stub value.
3139 * dwarf2read.c (read_call_site_scope): New variable origin. Support
3140 CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
3141 * gdbtypes.h (enum call_site_parameter_kind): New item
3142 CALL_SITE_PARAMETER_PARAM_OFFSET.
3143 (struct call_site.parameter.u): New field param_offset.
3144
3145 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3146
3147 Code cleanup: Generalize call_site.parameter key.
3148 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
3149 variable dwarf_reg. New variable kind_u. Update parameters to
3150 push_dwarf_reg_entry_value.
3151 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
3152 * dwarf2expr.h (enum call_site_parameter_kind)
3153 (union call_site_parameter_u): Forward declarations.
3154 (struct dwarf_expr_context_funcs): Update parameters and their
3155 description for push_dwarf_reg_entry_value.
3156 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
3157 * dwarf2loc.c (call_site_parameter_matches): New function.
3158 (dwarf_expr_reg_to_entry_parameter): Update parameters and their
3159 description. Use call_site_parameter_matches.
3160 (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
3161 Update parameters and their description.
3162 (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
3163 New variable kind_u. Adjust the caller for updated parameters.
3164 (needs_dwarf_reg_entry_value): Update parameters.
3165 * dwarf2read.c (read_call_site_scope): New variable loc. Use it
3166 instead of attr. Update for the changed fields of struct
3167 call_site_parameter.
3168 * gdbtypes.h: Include dwarf2expr.h.
3169 (enum call_site_parameter_kind): New.
3170 (struct call_site.parameter): New field kind. Wrap dwarf_reg and
3171 fb_offset into new union u.
3172
3173 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
3174
3175 * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
3176 (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
3177 for x32.
3178
3179 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
3180
3181 * amd64-linux-nat.c (compat_x32_clock_t): New.
3182 (compat_x32_siginfo_t): Likewise.
3183 (compat_x32_siginfo_from_siginfo): Likewise.
3184 (siginfo_from_compat_x32_siginfo): Likewise.
3185 (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
3186 and siginfo_from_compat_x32_siginfo for x32.
3187
3188 2012-06-15 Hui Zhu <hui_zhu@mentor.com>
3189
3190 * tracepoint.c (tfile_xfer_partial): Add a lseek.
3191
3192 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
3193
3194 * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
3195 instead of gdbarch_ptr_bit.
3196 * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
3197 (amd64_supply_native_gregset): Likewise.
3198 (amd64_collect_native_gregset): Likewise.
3199 * amd64-tdep.c (amd64_supply_fxsave): Likewise.
3200 (amd64_supply_xsave): Likewise.
3201 (amd64_collect_fxsave): Likewise.
3202 (amd64_collect_xsave): Likewise.
3203
3204 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
3205
3206 * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
3207 (amd64_linux_read_description): Check DS segment register for
3208 x32 process.
3209
3210 2012-06-15 Tom Tromey <tromey@redhat.com>
3211
3212 * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
3213 init_cutu_and_read_dies.
3214
3215 2012-06-15 Iain Sandoe <iain@codesourcery.com>
3216
3217 * MAINTAINERS (Write After Approval): Add myself to the list.
3218
3219 2012-06-15 Tom Tromey <tromey@redhat.com>
3220
3221 * valops.c (value_find_oload_method_list): Now static.
3222 * value.h (value_find_oload_method_list): Don't declare.
3223
3224 2012-06-15 Tom Tromey <tromey@redhat.com>
3225
3226 * valops.c (find_overload_match): Use value_ind.
3227
3228 2012-06-15 Maciej W. Rozycki <macro@codesourcery.com>
3229
3230 * infrun.c (handle_inferior_event): Correct indentation.
3231
3232 2012-06-14 Doug Evans <dje@google.com>
3233
3234 * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
3235 (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
3236 All uses updated.
3237 (decode_debug_loc_dwo_addresses): New arg "byte_order". All callers
3238 updated. Handle DEBUG_LOC_START_LENGTH.
3239 (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
3240 (loclist_describe_location): Ditto.
3241
3242 2012-06-14 Maciej W. Rozycki <macro@codesourcery.com>
3243
3244 PR backtrace/13866
3245 * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
3246 after hiding inline functions.
3247
3248 2012-06-13 Joel Brobecker <brobecker@adacore.com>
3249
3250 * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
3251 _initialize_inf_ttrace.
3252
3253 2012-06-13 Joel Brobecker <brobecker@adacore.com>
3254
3255 * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
3256 _initialize_hppa_hpux_nat.
3257
3258 2012-06-13 Joel Brobecker <brobecker@adacore.com>
3259
3260 * remote-sim.c (sim_command_completer): Change type of return
3261 value to "VEC (char_ptr) *". Adjust implementation accordingly.
3262
3263 2012-06-13 Mark Kettenis <kettenis@gnu.org>
3264 Jan Kratochvil <jan.kratochvil@redhat.com>
3265
3266 PR tdep/14222
3267 * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
3268 stack on a 16-byte boundary.
3269
3270 2012-06-13 Kaushik Srenevasan <kaushik@twitter.com>
3271
3272 * jit.c (finalize_symtab): Set function's return type to 'void' by
3273 default.
3274
3275 2012-06-13 Mark Kettenis <kettenis@gnu.org>
3276 H.J. Lu <hongjiu.lu@intel.com>
3277
3278 * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
3279 Move bits common to both the classic LP64 and the new x32 ILP32
3280 ABI here.
3281 (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
3282 (amd64_x32_linux_init_abi): New function.
3283 (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
3284 subtype.
3285
3286 * i386-tdep.h (i386_pseudo_register_name): New prototype.
3287 * i386-tdep.c (i386_pseudo_register_name): Make public.
3288 * amd64-tdep.h (amd64_x32_init_abi): New prototype.
3289 * amd64-tdep.c (amd64_dword_names): Add "eip".
3290 (amd64_x32_pseudo_register_type): New function
3291 (amd64_x32_init_abi): New function.
3292
3293 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3294
3295 PR build/14003
3296 * inferior.h (struct inferior_suspend_state): Comment out.
3297 (struct inferior): Comment out the field suspend.
3298 * infrun.c (struct infcall_suspend_state): Comment out the field
3299 inferior_suspend.
3300 (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
3301 out its assignment.
3302
3303 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3304
3305 PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
3306 * c-exp.y (classify_inner_name): Remove caller assumptions in the
3307 function comment. Return ERROR for unresolved cases. Implement
3308 returning proper NAME.
3309 (yylex): Accept also NAME from classify_inner_name.
3310 * cp-namespace.c (cp_lookup_nested_type): Rename to ...
3311 (cp_lookup_nested_symbol): ... here. Return any found symbol, not just
3312 LOC_TYPEDEF type.
3313 * cp-support.h (cp_lookup_nested_type): Update its declaration.
3314
3315 2012-06-13 Tom Tromey <tromey@redhat.com>
3316
3317 * breakpoint.c (condition_completer): New function.
3318 (_initialize_breakpoint): Use it.
3319 * value.c (complete_internalvar): New function.
3320 * value.h (complete_internalvar): Declare.
3321
3322 2012-06-13 Tom Tromey <tromey@redhat.com>
3323
3324 * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
3325 * breakpoint.c (catch_syscall_completer): Return a VEC.
3326 * cli/cli-cmds.c (complete_command): Update.
3327 * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
3328 (complete_on_enum): Likewise.
3329 * command.h: Include gdb_vecs.h.
3330 (completer_ftype): Change return type.
3331 (complete_on_cmdlist, complete_on_enum): Likewise.
3332 * completer.c (noop_completer, filename_completer)
3333 (location_completer): Return a VEC.
3334 (add_struct_fields): Remove 'nextp' argument. Change 'output'
3335 to a VEC.
3336 (expression_completer, complete_line_internal, complete_line)
3337 (command_completer): Return a VEC.
3338 (gdb_completion_word_break_characters, line_completion_function):
3339 Update.
3340 * completer.h: Include gdb_vecs.h.
3341 (complete_line, noop_completer, filename_completer)
3342 (expression_completer, location_completer, command_completer):
3343 Update.
3344 * f-lang.c (f_word_break_characters): Return a VEC.
3345 * interps.c (interpreter_completer): Return a VEC.
3346 * language.h (struct language_defn)
3347 <la_make_symbol_completion_list>: Return a VEC.
3348 * python/py-cmd.c (cmdpy_completer): Return a VEC.
3349 * symtab.c (free_completion_list): Take a VEC.
3350 (return_val_size, return_val_index): Remove.
3351 (return_val): Now a VEC.
3352 (completion_list_add_name): Update.
3353 (default_make_symbol_completion_list_break_on)
3354 (default_make_symbol_completion_list, make_symbol_completion_list)
3355 (make_symbol_completion_list_fn, make_file_symbol_completion_list):
3356 Return a VEC.
3357 (add_filename_to_list): Update.
3358 (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
3359 <list>: Now a VEC.
3360 (maybe_add_partial_symtab_filename): Update.
3361 (make_source_files_completion_list): Return a VEC.
3362 * symtab.h (default_make_symbol_completion_list_break_on)
3363 (default_make_symbol_completion_list, make_symbol_completion_list)
3364 (make_symbol_completion_list_fn, make_file_symbol_completion_list)
3365 (make_source_files_completion_list): Update.
3366
3367 2012-06-13 Tom Tromey <tromey@redhat.com>
3368
3369 * breakpoint.c (add_catch_command): Use completer_ftype.
3370 * breakpoint.h: Include command.h.
3371 (add_catch_command): Use completer_ftype.
3372 * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
3373 * cli/cli-decode.h (struct cmd_list_element) <completer>:
3374 Use completer_ftype.
3375 * command.h (completer_ftype): New typedef.
3376 (set_cmd_completer): Use it.
3377 * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
3378 completer_ftype.
3379
3380 2012-06-13 Pedro Alves <palves@redhat.com>
3381
3382 Partial revert of previous change.
3383
3384 * serial.c (scb_base): New global.
3385 (serial_for_fd): New.
3386 (serial_open, serial_fdopen_ops): Link new serial in open serials
3387 chain.
3388 (do_serial_close): Unlink serial from the open serials chain.
3389
3390 2012-06-12 Pedro Alves <palves@redhat.com>
3391
3392 * infrun.c (infrun_thread_stop_requested_callback): Don't switch
3393 threads here.
3394 (prepare_for_detach): No longer context switch here in non-stop
3395 mode.
3396 (fetch_inferior_event): Ditto.
3397 (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
3398 to the event thread before removing breakpoints. Switch to the
3399 event thread before inserting breakpoints and resuming.
3400 (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
3401 event thread before resuming.
3402 (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
3403 Switch to the event thread before removing breakpoints.
3404
3405 2012-06-12 Eli Zaretskii <eliz@gnu.org>
3406
3407 * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
3408 special characters correctly for the Windows shells. See
3409 http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
3410 report.
3411 [!__MINGW32__]: Remove extra double quote character from special
3412 characters.
3413
3414 2012-06-11 Stan Shebs <stan@codesourcery.com>
3415
3416 * ui-out.h: Remove #if 0 declarations.
3417 * ui-out.c: Remove #if 0 functions.
3418
3419 2012-06-11 Pedro Alves <palves@redhat.com>
3420
3421 * ser-base.c (run_async_handler_and_reschedule): New.
3422 (fd_event, push_event): Use it.
3423 * serial.c (serial_open, serial_fdopen_ops): Set the initial
3424 reference count to 1.
3425 (do_serial_close): Set the bufp field to NULL. Use serial_unref
3426 instead of xfree.
3427 (serial_is_open, serial_ref, serial_unref): New.
3428 * serial.h (serial_open): Adjust comment.
3429 (serial_is_open): Declare.
3430 (serial_close): Adjust comment.
3431 (serial_ref, serial_unref) Declare.
3432 (struct serial): New field 'refcnt'.
3433
3434 2012-06-11 Pedro Alves <palves@redhat.com>
3435
3436 Remove #if 0'd "connect" command, and unnecessary associated
3437 refcounting and serial reuse bits.
3438
3439 * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
3440 * serial.c (last_serial_opened): Delete.
3441 (scb_base): Delete.
3442 (serial_open): Adjust.
3443 (serial_for_fd): Delete.
3444 (serial_fdopen_ops, do_serial_close): Adjust.
3445 (serial_fdopen_ops): Adjust.
3446
3447 2012-06-11 Pedro Alves <palves@redhat.com>
3448
3449 * serial.c (do_serial_close): Remove early return when SCB is
3450 null.
3451
3452 2012-06-11 Tom Tromey <tromey@redhat.com>
3453
3454 * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
3455
3456 2012-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
3457
3458 Fix regression by the "ambiguous linespec" series.
3459 * breakpoint.c (parse_breakpoint_sals): New variable cursal. Use
3460 get_last_displayed_symtab and get_last_displayed_line and depending
3461 on CURSAL.
3462
3463 2012-06-11 Tom Tromey <tromey@redhat.com>
3464
3465 * dwarf2read.c (dw2_get_primary_filename_reader): New function.
3466 (dw2_find_symbol_file): Use it.
3467
3468 2012-06-11 Michael Eager <eager@eagercon.com>
3469
3470 * mips-linux-tdep.c (mips_gdb_signal_from_target): New
3471 * mips-linux-tdep.h (mips_signals): New
3472
3473 2012-06-11 Tom Tromey <tromey@redhat.com>
3474
3475 * infrun.c (handle_inferior_event)
3476 <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
3477 breakpoint.
3478 <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
3479 exception logic in all cases. Update comments.
3480 (insert_longjmp_resume_breakpoint): Set the exception resume
3481 breakpoint.
3482
3483 2012-06-11 Maciej W. Rozycki <macro@codesourcery.com>
3484
3485 * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
3486
3487 2012-06-09 Siva Chandra Reddy <sivachandra@google.com>
3488
3489 * valarith.c (binop_types_user_defined_p): Fix a typo.
3490
3491 2012-06-08 Yao Qi <yao@codesourcery.com>
3492 Chung-Lin Tang <cltang@codesourcery.com>
3493
3494 * arch-utils.c (default_return_in_first_hidden_param_p): New.
3495 * arch-utils.h: Declare.
3496 * gdbarch.sh: Add return_in_first_hidden_param_p.
3497 * gdbarch.c, gdbarch.h: Regenerated.
3498 * infcall.c (call_function_by_hand): Call
3499 gdbarch_return_in_first_hidden_param_p instead of
3500 language_pass_by_reference.
3501
3502 * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
3503 (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
3504 * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
3505 (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
3506 * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
3507 `cplus_return_struct_by_reference'.
3508 (tic6x_return_value): Handle language cplusplus.
3509 (tic6x_return_in_first_hidden_param_p): New.
3510 (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
3511
3512 2012-06-07 Doug Evans <dje@google.com>
3513
3514 * dwarf2read.c (dwarf2_cu): Add comment.
3515
3516 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
3517
3518 * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
3519 variable.
3520 (mips_eabi_push_dummy_call): Likewise.
3521 (mips_n32n64_push_dummy_call): Likewise.
3522 (mips_o32_push_dummy_call): Likewise.
3523 (mips_o64_push_dummy_call): Likewise.
3524
3525 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
3526
3527 * mips-tdep.c (mips_convert_register_p): Correct coding style.
3528
3529 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
3530
3531 * mips-tdep.c (mips_pseudo_register_type): Use
3532 mips_float_register_p.
3533
3534 2012-06-06 Pedro Alves <palves@redhat.com>
3535
3536 * infrun.c (handle_inferior_event): Remove calls to
3537 reinit_frame_cache that follow a context_switch call.
3538
3539 2012-06-06 Pedro Alves <palves@redhat.com>
3540
3541 * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
3542 context_switch and remove stale comment.
3543
3544 2012-06-06 Pedro Alves <palves@redhat.com>
3545
3546 * infrun.c (struct execution_control_state): Remove
3547 `new_thread_event' field.
3548 (handle_inferior_event): Simplify new threads handling; don't
3549 resume the inferior if we find a new thread.
3550
3551 2012-06-06 Thomas Schwinge <thomas@codesourcery.com>
3552
3553 * NEWS: Document the deprecation of SH's 'regs' command.
3554 * inferior.h (all_registers_info): Add function declaration.
3555 * sh-tdep.c (sh_show_regs): Remove variable.
3556 (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
3557 (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
3558 (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
3559 (sh_show_regs_command): Remove functions.
3560 (sh_gdbarch_init): Don't set sh_show_regs.
3561 (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
3562 'info all-registers'.
3563 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
3564 (sh64_show_regs): Remove functions.
3565 * sh64-tdep.h (sh64_show_regs): Remove function declaration.
3566
3567 2012-06-06 Jan Kratochvil <jan.kratochvil@redhat.com>
3568
3569 * configure.ac: Move development=true below AC_INIT.
3570 * configure: Regenerate.
3571
3572 2012-06-05 Stan Shebs <stan@codesourcery.com>
3573
3574 * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
3575 gdb_stdout.
3576
3577 2012-06-05 Siddhesh Poyarekar <siddhesh@redhat.com>
3578
3579 * corefile.c (read_memory, read_stack, write_memory): Accept LEN
3580 argument as ssize_t.
3581 * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
3582 * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
3583 * target.c (target_read_stack, target_write_memory)
3584 (target_write_raw_memory): Likewise.
3585 * target.h (target_read_stack, target_write_memory)
3586 (target_write_raw_memory): Likewise.
3587
3588 2012-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3589
3590 * symfile-mem.c: Change gdb_static_assert to ssize_t.
3591 (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
3592 * target.c (target_read_memory): Change LEN to ssize_t.
3593 * target.h (target_read_memory): Change LEN to ssize_t.
3594
3595 2012-06-05 Pedro Alves <palves@redhat.com>
3596
3597 PR backtrace/13866
3598
3599 * breakpoint.c (until_break_command): Only fetch the selected
3600 frame after decode_line_1.
3601
3602 2012-06-05 Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3603
3604 * solib-svr4.c (enable_break): Don't fallback to setting the solib
3605 event breakpoint at _start, __start or main if a program
3606 interpreter is not found.
3607
3608 2012-06-05 Joel Brobecker <brobecker@adacore.com>
3609
3610 * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
3611 Add declaration.
3612 * windows-tdep.c: #include "objfiles.h".
3613 (windows_iterate_over_objfiles_in_search_order): New function.
3614 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
3615 iterate_over_objfiles_in_search_order gdbarch method to
3616 windows_iterate_over_objfiles_in_search_order.
3617 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
3618
3619 2012-06-05 Joel Brobecker <brobecker@adacore.com>
3620
3621 * gdbarch.sh: Add generation of
3622 "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
3623 gdbarch.h. Add include of "objfiles.h" in gdbarch.c.
3624 (iterate_over_objfiles_in_search_order): New gdbarch method.
3625 * gdbarch.h, gdbarch.c: Regenerate.
3626 * objfiles.h (default_iterate_over_objfiles_in_search_order):
3627 Add declaration.
3628 * objfiles.c (default_iterate_over_objfiles_in_search_order):
3629 New function.
3630 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
3631 out of lookup_symbol_aux_symtabs.
3632 (lookup_symbol_aux_symtabs): Replace extracted-out code by
3633 call to lookup_symbol_aux_objfile.
3634 (struct global_sym_lookup_data): New type.
3635 (lookup_symbol_global_iterator_cb): New function.
3636 (lookup_symbol_global): Search for symbol using
3637 gdbarch_iterate_over_objfiles_in_search_order and
3638 lookup_symbol_global_iterator_cb.
3639 * findvar.c (struct minsym_lookup_data): New type.
3640 (minsym_lookup_iterator_cb): New function.
3641 (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
3642 symbol's address via gdbarch_iterate_over_objfiles_in_search_order
3643 and minsym_lookup_iterator_cb.
3644
3645 2012-06-05 Joel Brobecker <brobecker@adacore.com>
3646
3647 Revert the following patch:
3648 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
3649 try locating the symbol in the symbol's own objfile first, before
3650 extending the search to all objfiles.
3651 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
3652 out of lookup_symbol_aux_symtabs.
3653 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
3654 Replace extracted-out code by call to lookup_symbol_aux_objfile.
3655 Do not search EXCLUDE_OBJFILE.
3656 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
3657 (lookup_symbol_global): Search for matches in the block's objfile
3658 first, before searching all other objfiles.
3659
3660 2012-06-05 Joel Brobecker <brobecker@adacore.com>
3661
3662 * breakpoint.c (find_condition_and_thread): Stop parsing
3663 as soon as the first invalid keyword is found.
3664
3665 2012-06-05 Joel Brobecker <brobecker@adacore.com>
3666
3667 * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
3668
3669 2012-06-05 Joel Brobecker <brobecker@adacore.com>
3670
3671 * config/djgpp/djcheck.sh: Add copyright header.
3672
3673 2012-06-05 Joel Brobecker <brobecker@adacore.com>
3674
3675 * copyright.py (update_files, main): Fix path to update-copyright
3676 script.
3677
3678 2012-06-05 Joel Brobecker <brobecker@adacore.com>
3679
3680 * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
3681 (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
3682 for which a reminder to update by hand is printed.
3683
3684 2012-06-04 Doug Evans <dje@google.com>
3685
3686 * buildsym.c (make_blockvector): Add comment.
3687
3688 2012-06-04 Pedro Alves <palves@redhat.com>
3689
3690 * arch-utils.c (default_gdb_signal_from_target): Delete.
3691 * arch-utils.h (default_gdb_signal_from_target): Delete.
3692 * corelow.c (core_open) <signal mapping>: Extended comment. Check
3693 gdbarch_gdb_signal_from_target_p.
3694 * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
3695 predicate).
3696 * gdbarch.h: Regenerate.
3697 * gdbarch.c: Regenerate.
3698
3699 2012-06-04 Pedro Alves <palves@redhat.com>
3700
3701 * gdbarch.sh (gdb_signal_from_target): Mention that the
3702 implementation of the method must be host independent.
3703 * gdbarch.h: Regenerate.
3704
3705 2012-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3706
3707 * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
3708 parameters.
3709 (target_read_memory_bfd): New function.
3710 (symbol_file_add_from_memory): Use it.
3711
3712 2012-06-03 Doug Evans <dje@google.com>
3713
3714 * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
3715 of primary symtab.
3716 (basic_lookup_transparent_type): Ditto.
3717
3718 * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
3719 (ALL_PRIMARY_SYMTABS): Use it.
3720 (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
3721 * dwarf2read.c (dw2_find_symbol_file): Ditto.
3722 * linespec.c (iterate_over_all_matching_symtabs): Ditto.
3723 * symtab.c (lookup_symbol_aux_objfile): Ditto.
3724 (basic_lookup_transparent_type): Ditto.
3725
3726 2012-06-02 Sergio Durigan Junior <sergiodj@redhat.com>
3727
3728 * symtab.c (symbol_demangled_name): New variable `dem_name'. Use
3729 it to optimize resolution of demangled name.
3730
3731 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
3732
3733 * configure.ac (development): Define new variable.
3734 Call AC_CHECK_LIB for mcheck if $development.
3735 (ERROR_ON_WARNING): Enable it by default only if $development.
3736 * config.in: Regenerate.
3737 * configure: Regenerate.
3738
3739 2012-06-01 Siddhesh Poyarekar <siddhesh@redhat.com>
3740
3741 * target.c (target_read_memory): Make LEN argument as size_t.
3742 * target.h (target_read_memory): Likewise.
3743
3744 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
3745
3746 * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
3747
3748 2012-05-31 Edjunior Machado <emachado@linux.vnet.ibm.com>
3749
3750 * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
3751 BookE interface for PowerPC server processors if not available
3752 in the Linux Kernel.
3753
3754 2012-05-31 Keith Seitz <keiths@redhat.com>
3755
3756 * linespec.c (decode_objc): Add cleanup to free
3757 INFO.FILE_SYMTABS.
3758 (find_linespec_symbols): Add cleanup to free CLASSES.
3759 * symfile.c (find_separate_debug_file_by_debuglink): Add
3760 cleanup to free DEBUGLINK.
3761 * ui-out.c (clear_header_list): No need to check if
3762 HEADER_NEXT.COLHDR is NULL.
3763 Free HEADER_NEXT.COL_NAME.
3764
3765 2012-05-31 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
3766
3767 * ada-lang.c (standard_lookup): Prevent uninitialized variable
3768 warning.
3769
3770 2012-05-30 Jeff Kenton <jkenton@tilera.com>
3771
3772 * configure.host (gdb_host_cpu): Handle tilegx*.
3773 (gdb_host): Handle tilegx-*-linux*.
3774 * tilegx-linux-nat.c: New file.
3775 * config/tilegx/linux.mh: New file.
3776
3777 2012-05-30 Jeff Kenton <jkenton@tilera.com>
3778
3779 * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
3780 tilegx-linux-tdep.o.
3781 (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
3782 tilegx-linux-tdep.c.
3783 * configure.tgt: Handle tilegx-*-linux*.
3784 * tilegx-tdep.h: New file.
3785 * tilegx-tdep.c: New file.
3786 * tilegx-linux-tdep.c: New file.
3787 * regformats/reg-tilegx.dat: New file.
3788
3789 2012-05-30 Edjunior Machado <emachado@linux.vnet.ibm.com>
3790
3791 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
3792 accounting of hw watchpoints on ppc.
3793
3794 2012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
3795
3796 * source.c (openp): Expand tilde in path entries.
3797
3798 2012-05-29 Doug Evans <dje@google.com>
3799
3800 * buildsym.c (block_compar): Fix comment.
3801 (end_symtab): Fix and clarify some comments.
3802
3803 * stabsread.h (cleanup_undefined_stabs_types): Renamed from
3804 cleanup_undefined_types.
3805 * stabsread.c (cleanup_undefined_stabs_types): Ditto.
3806 All callers updated.
3807
3808 2012-05-29 Tom Tromey <tromey@redhat.com>
3809
3810 * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
3811 fails.
3812 * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
3813 * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
3814 fails.
3815 * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
3816 fails.
3817
3818 2012-05-29 Tristan Gingold <gingold@adacore.com>
3819
3820 * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
3821 (struct darwin_info): ... New struct.
3822 (solib_darwin_pspace_data): New variable.
3823 (darwin_pspace_data_cleanup): New function.
3824 (get_darwin_info): Likewise.
3825 (darwin_dyld_version_ok, darwin_load_image_infos)
3826 (darwin_solib_get_all_image_info_addr_at_init)
3827 (darwin_solib_read_all_image_info_addr): Add info argument.
3828 Adjust code.
3829 (darwin_current_sos): Use per pspace structure.
3830 (darwin_solib_create_inferior_hook): Likewise.
3831 (darwin_clear_solib): Likewise.
3832 (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
3833
3834 2012-05-28 Pedro Alves <palves@redhat.com>
3835
3836 * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
3837 block that uses them. Clear ecss before handling each event.
3838
3839 2012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3840
3841 * solib-svr4.c (svr4_current_sos): New comment on
3842 svr4_current_sos_via_xfer_libraries fall back.
3843
3844 2012-05-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3845
3846 * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best. Use
3847 it as a fallback for TYPE_IS_OPAQUE.
3848 * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
3849 symbols for lookup_symbol.
3850
3851 2012-05-24 John Steele Scott <toojays@toojays.net>
3852
3853 PR symtab/13277: Resolving opaque structures in ICC generated binaries.
3854 * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
3855 (producer_is_gxx_lt_4_6): Move the checking and caching to...
3856 (check_producer): ... this new function, which also checks for ICC
3857 and caches the result.
3858 (producer_is_icc): New function.
3859 (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
3860 producer was ICC.
3861
3862 2012-05-24 Pedro Alves <palves@redhat.com>
3863
3864 PR gdb/7205
3865
3866 * arch-utils.c (default_gdb_signal_to_host): Rename to ...
3867 (default_gdb_signal_to_target): ... this. Add comment.
3868 (default_gdb_signal_from_host): Rename to ...
3869 (default_gdb_signal_from_target): ... this. Add comment.
3870 * arch-utils.h (default_gdb_signal_to_host): Rename to ...
3871 (default_gdb_signal_to_target): ... this.
3872 (default_gdb_signal_from_host): Rename to ...
3873 (default_gdb_signal_from_target): ... this.
3874 * corelow.c (core_open): Adjust to naming change. Replace comment.
3875 * gdbarch.sh (gdb_signal_from_host): Rename to ...
3876 (gdb_signal_from_target): ... this. Adjust to
3877 default_gdb_signal_from_host naming change. Extend comment.
3878 (gdb_signal_to_host): Rename to ...
3879 (gdb_signal_to_target): ... this. Adjust to
3880 default_gdb_signal_to_host naming change.
3881 * gdbarch.h, gdbarch.c: Renegerate.
3882
3883 2012-05-24 Pedro Alves <palves@redhat.com>
3884
3885 PR gdb/7205
3886
3887 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
3888
3889 2012-05-24 Pedro Alves <palves@redhat.com>
3890
3891 PR gdb/7205
3892
3893 Replace target_signal with gdb_signal throughout.
3894
3895 2012-05-24 Pedro Alves <palves@redhat.com>
3896
3897 PR tui/14159
3898
3899 * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
3900 string, instead of reusing the va_list argument.
3901
3902 2012-05-24 Tom Tromey <tromey@redhat.com>
3903
3904 * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
3905 Remove.
3906
3907 2012-05-23 Doug Evans <dje@google.com>
3908
3909 * symtab.c (search_symbols): Formatting fixes.
3910 (print_symbol_info): Formatting fixes.
3911
3912 * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
3913 int64_t change to leb128 API.
3914 (read_encoded_value, decode_frame_entry_1): Ditto.
3915 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
3916 (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
3917 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
3918 (execute_stack_op): Ditto.
3919 * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
3920 (safe_read_uleb128, safe_read_sleb128): Ditto.
3921 * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
3922 (dwarf2_compile_expr_to_ax): Ditto.
3923 (locexpr_describe_location_piece): Ditto.
3924 (disassemble_dwarf_expression): Ditto.
3925 (locexpr_describe_location_1): Ditto.
3926
3927 2012-05-23 Stan Shebs <stan@codesourcery.com>
3928 Kwok Cheung Yeung <kcy@codesourcery.com>
3929
3930 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
3931 (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
3932 (mi-cmd-info.o): New rule.
3933 * osdata.h (info_osdata_command): New declaration.
3934 * osdata.c (info_osdata_command): Change to non-static.
3935 * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
3936 * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
3937 * mi/mi-cmd-info.c: New file.
3938
3939 2012-05-23 Doug Evans <dje@google.com>
3940
3941 * symtab.c (search_symbols): Pass NULL for file_matcher to
3942 expand_symtabs_matching if there are no files to match.
3943
3944 * gdbtypes.c (lookup_typename): Simplify.
3945
3946 2012-05-23 Pedro Alves <palves@redhat.com>
3947
3948 * arch-utils.h (default_target_signal_to_host): Delete.
3949 * arch-utils.c (default_target_signal_to_host): Delete.
3950 * gdbarch.sh (target_signal_to_host): Remove.
3951 * gdbarch.h, gdbarch.c: Regenerate.
3952
3953 2012-05-22 Doug Evans <dje@google.com>
3954
3955 * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
3956 "const gdb_byte *".
3957 (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
3958 (execute_cfa_program): Update to match API of leb128 functions.
3959 (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
3960 "const gdb_byte *".
3961 (read_unsigned_leb128, read_signed_leb128): Delete.
3962 (read_initial_length): Change type of buf argument to
3963 "const gdb_byte *".
3964 (read_encoded_value): Update to match API of leb128 functions.
3965 (decode_frame_entry): Change result to "const gdb_byte *", and
3966 similarly for "start" parameter.
3967 (decode_frame_entry_1): Ditto. Use new leb128 reader functions.
3968 (dwarf2_build_frame_info): Change local frame_ptr to
3969 "const gdb_byte *".
3970 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
3971 read_uleb128, read_sleb128. All callers updated.
3972 (safe_skip_leb128): New function.
3973 (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
3974 Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
3975 (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
3976 functions. Call gdb_read_uleb128, gdb_read_sleb128 instead of
3977 read_uleb128, read_sleb128.
3978 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
3979 (execute_stack_op): Update to match API of leb128 functions.
3980 * dwarf2expr.h: #include "leb128.h".
3981 (read_uleb128, read_sleb128): Delete.
3982 (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
3983 (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
3984 * dwarf2loc.c (debug_loc_kind): New enum.
3985 (decode_debug_loc_addresses): New function.
3986 (decode_debug_loc_dwo_addresses): New function.
3987 (dwarf2_find_location_expression): Rewrite.
3988 (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
3989 (locexpr_describe_location_piece): Ditto.
3990 (disassemble_dwarf_expression): Ditto.
3991 (locexpr_describe_location_1): Ditto.
3992 (loclist_describe_location): Rewrite.
3993 * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
3994 * dwarf2read.c (die_reader_specs): New member "buffer_end".
3995 (dwarf2_section_buffer_overflow_complaint): Renamed from
3996 dwarf2_macros_too_long_complaint. All callers updated.
3997 (skip_leb128): Delete.
3998 (init_cu_die_reader): Initialize reader->buffer_end.
3999 (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
4000 (skip_form_bytes): New arg buffer_end. All callers updated.
4001 Replace call to skip_leb128 with gdb_skip_leb128.
4002 (skip_unknown_opcode): New arg mac_end. All callers updated.
4003 (fill_in_loclist_baton): Initialize baton->from_dwo.
4004
4005 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
4006
4007 * mips-linux-nat.c (mips_linux_read_description): Use a more
4008 verbose error message.
4009
4010 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
4011
4012 * NEWS: Add MIPS/Linux DSP support.
4013 * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
4014 (SIGCONTEXT_DSPCTL): New macro.
4015 (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
4016 (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
4017 (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
4018 (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
4019 (N64_SIGCONTEXT_HI3): Likewise.
4020 (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
4021 (N64_SIGCONTEXT_LO3): Likewise.
4022 (N64_SIGCONTEXT_DSPCTL): Likewise.
4023 (N64_SIGCONTEXT_FPCSR): Clarify definition.
4024 (mips_linux_o32_sigframe_init): Handle DSP registers.
4025 (mips_linux_n32n64_sigframe_init): Likewise.
4026
4027 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
4028
4029 * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
4030 call to abort.
4031
4032 2012-05-22 Pedro Alves <palves@redhat.com>
4033
4034 * target.h (store_waitstatus): Move declaration ...
4035 * inf-child.h (store_waitstatus): ... here.
4036 * target.c: Move inclusion of gdb_wait.h, and ...
4037 (store_waitstatus): ... this ...
4038 * inf-child.c: ... here.
4039 * linux-nat.c: Include inf-child.h.
4040 * rs6000-nat.c: Include inf-child.h.
4041 * spu-linux-nat.c: Include inf-child.h.
4042
4043 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
4044
4045 * tracepoint.c (start_tracing): Add missing i18n markup.
4046 (stop_tracing, set_trace_user): Ditto.
4047 (set_trace_notes, set_trace_stop_notes): Ditto.
4048
4049 2012-05-21 Tom Tromey <tromey@redhat.com>
4050
4051 PR c++/7173:
4052 * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
4053 types.
4054 * value.h (value_cast_pointers): Update.
4055 * valops.c (value_cast_pointers): Add 'subclass_check' argument.
4056 (value_cast): Update.
4057 (update_search_result): New function.
4058 (do_search_struct_field): New, from search_struct_field. Check
4059 for ambiguous results.
4060 (search_struct_field): Rewrite.
4061 * infcall.c (value_arg_coerce): Update.
4062 * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
4063 value_cast_pointers.
4064 * ada-lang.c (ada_convert_actual): Update.
4065
4066 2012-05-21 Tom Tromey <tromey@redhat.com>
4067
4068 * macroexp.c (macro_stringify): Terminate the string.
4069
4070 2012-05-20 Jan Kratochvil <jan.kratochvil@redhat.com>
4071
4072 * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
4073 Describe it.
4074 * auto-load.c (auto_load_expand_dir_vars): New function.
4075 (auto_load_safe_path_vec_update): Use it, remove the
4076 substitute_path_component call thanks to it.
4077 (auto_load_objfile_script): Remove the debug_file_directory processing.
4078 Use auto_load_expand_dir_vars, remove the substitute_path_component
4079 call thanks to it.
4080 * configure: Regenerate.
4081 * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
4082 path. Escape $ also for $debugdir.
4083 (--with_auto_load_safe_path): Escape $ also for $debugdir.
4084 * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
4085
4086 2012-05-20 Doug Evans <dje@google.com>
4087
4088 * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
4089 before use. Check for symtab->includes == NULL before scanning it.
4090
4091 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
4092
4093 * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
4094
4095 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
4096
4097 * NEWS: Add microMIPS support and "set mips compression",
4098 "show mips compression" commands.
4099 * mips-tdep.h (mips_isa): New enum.
4100 (gdbarch_tdep): Add mips_isa.
4101 (mips_pc_is_mips16): Update prototype.
4102 (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
4103 * mips-tdep.c (mips_compression_mips16): New variable.
4104 (mips_compression_micromips): Likewise.
4105 (mips_compression_strings): Likewise.
4106 (mips_compression_string): Likewise.
4107 (is_mips16_isa, is_micromips_isa): New functions.
4108 (is_mips16_addr): Rename to...
4109 (is_compact_addr): ... this.
4110 (unmake_mips16_addr): Likewise to...
4111 (unmake_compact_addr): ... this.
4112 (make_mips16_addr): Likewise to...
4113 (make_compact_addr): ... this.
4114 (is_mips_addr, is_mips16_addr, is_micromips_addr): New
4115 functions.
4116 (mips_elf_make_msymbol_special): Handle microMIPS code.
4117 (msymbol_is_special): Rename to...
4118 (msymbol_is_mips16): ... this.
4119 (mips_make_symbol_special, mips_pc_is_mips16): Update
4120 accordingly.
4121 (msymbol_is_mips, msymbol_is_micromips): New functions.
4122 (mips16_to_32_reg): Rename to...
4123 (mips_reg3_to_reg): ... this.
4124 (mips_pc_is_mips, mips_pc_is_micromips): New functions.
4125 (mips_pc_isa): Likewise.
4126 (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
4127 code.
4128 (mips_fetch_instruction): Pass return status instead of printing
4129 an error message if requested. Handle microMIPS code. Bail out
4130 on an invalid ISA.
4131 (micromips_op): New macro.
4132 (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
4133 (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
4134 (b6s4_op, b7s3_reg): Likewise.
4135 (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
4136 (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
4137 (mips_insn_size): New function.
4138 (mips32_next_pc): Update mips_fetch_instruction call.
4139 (micromips_relative_offset7): New function.
4140 (micromips_relative_offset10): Likewise.
4141 (micromips_relative_offset16): Likewise.
4142 (micromips_pc_insn_size): Likewise.
4143 (micromips_bc1_pc): Likewise.
4144 (micromips_next_pc): Likewise.
4145 (unpack_mips16): Update mips_fetch_instruction call.
4146 (extended_mips16_next_pc): Update according to change to
4147 mips16_to_32_reg.
4148 (mips_next_pc): Update mips_pc_is_mips16 call. Handle microMIPS
4149 code.
4150 (mips16_scan_prologue): Update mips_fetch_instruction call.
4151 Update according to change to mips16_to_32_reg.
4152 (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
4153 (mips_insn16_frame_base_sniffer): Likewise.
4154 (micromips_decode_imm9): New function.
4155 (micromips_scan_prologue): Likewise.
4156 (mips_micro_frame_cache): Likewise.
4157 (mips_micro_frame_this_id): Likewise.
4158 (mips_micro_frame_prev_register): Likewise.
4159 (mips_micro_frame_sniffer): Likewise.
4160 (mips_micro_frame_unwind): New variable.
4161 (mips_micro_frame_base_address): New function.
4162 (mips_micro_frame_base): New variable.
4163 (mips_micro_frame_base_sniffer): New function.
4164 (mips32_scan_prologue): Update mips_fetch_instruction call.
4165 (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
4166 rather than for MIPS16.
4167 (mips_insn32_frame_base_sniffer): Likewise.
4168 (mips_addr_bits_remove): Handle microMIPS code.
4169 (deal_with_atomic_sequence): Rename to...
4170 (mips_deal_with_atomic_sequence): ... this. Update the type
4171 of the variable used to hold an instruction. Remove the ISA bit
4172 check. Update mips_fetch_instruction call.
4173 (micromips_deal_with_atomic_sequence): New function.
4174 (deal_with_atomic_sequence): Likewise.
4175 (mips_about_to_return): Handle microMIPS code. Update
4176 mips_fetch_instruction call.
4177 (heuristic_proc_start): Check for the standard MIPS ISA rather
4178 than for MIPS16. Update mips_pc_is_mips16 and
4179 mips_fetch_instruction calls. Handle microMIPS code.
4180 (mips_push_dummy_code): Handle microMIPS code.
4181 (mips_eabi_push_dummy_call): Likewise.
4182 (mips_o32_return_value): Update mips_pc_is_mips16 call.
4183 (mips_o64_push_dummy_call): Handle microMIPS code.
4184 (mips_o64_return_value): Update mips_pc_is_mips16 call.
4185 (is_delayed): Remove function.
4186 (mips_single_step_through_delay): Replace the call to is_delayed
4187 with mips32_instruction_has_delay_slot. Correct MIPS16 handling.
4188 Handle microMIPS code.
4189 (mips_skip_prologue): Update mips_pc_is_mips16 call. Handle
4190 microMIPS code.
4191 (mips32_in_function_epilogue_p): Update mips_fetch_instruction
4192 call.
4193 (micromips_in_function_epilogue_p): New function.
4194 (mips16_in_function_epilogue_p): Update mips_fetch_instruction
4195 call.
4196 (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
4197 Handle microMIPS.
4198 (gdb_print_insn_mips): Likewise.
4199 (mips_breakpoint_from_pc): Likewise.
4200 (mips_remote_breakpoint_from_pc): New function.
4201 (mips32_instruction_has_delay_slot): Simplify making use of the
4202 updated mips_fetch_instruction interface.
4203 (micromips_instruction_has_delay_slot): New function.
4204 (mips16_instruction_has_delay_slot): Simplify making use of the
4205 updated mips_fetch_instruction interface.
4206 (mips_adjust_breakpoint_address): Check for the standard MIPS
4207 ISA rather than for MIPS16 ISA. Update for unmake_compact_addr
4208 calls. Handle microMIPS code.
4209 (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
4210 (mips_skip_trampoline_code): Handle microMIPS code.
4211 (global_mips_compression): New function.
4212 (mips_gdbarch_init): Handle the compressed ISA setting from ELF
4213 file flags. Register the microMIPS remote breakpoint handler
4214 and heuristic frame unwinder.
4215 (show_mips_compression): New function.
4216 (_initialize_mips_tdep): Add the "set mips compression" and
4217 "show mips compression" commands.
4218
4219 2012-05-18 Sergio Durigan Junior <sergiodj@redhat.com>
4220
4221 * ada-lang.c:
4222 * ada-tasks.c:
4223 * ada-varobj.c:
4224 * amd64-darwin-tdep.c:
4225 * arm-symbian-tdep.c:
4226 * arm-tdep.c:
4227 * avr-tdep.c:
4228 * ax-gdb.c:
4229 * bfin-linux-tdep.c:
4230 * breakpoint.c:
4231 * c-valprint.c:
4232 * cli/cli-cmds.c:
4233 * coffread.c:
4234 * cp-support.c:
4235 * cris-tdep.c:
4236 * dwarf2-frame-tailcall.c:
4237 * dwarf2-frame.c:
4238 * dwarf2expr.c:
4239 * dwarf2loc.c:
4240 * dwarf2read.c:
4241 * elfread.c:
4242 * eval.c:
4243 * expprint.c:
4244 * f-valprint.c:
4245 * frv-tdep.c:
4246 * h8300-tdep.c:
4247 * hppa-hpux-tdep.c:
4248 * hppa-tdep.c:
4249 * hppanbsd-tdep.c:
4250 * i386-nto-tdep.c:
4251 * i386-tdep.c:
4252 * i387-tdep.c:
4253 * ia64-tdep.c:
4254 * jit.c:
4255 * linespec.c:
4256 * linux-tdep.c:
4257 * lm32-tdep.c:
4258 * m2-valprint.c:
4259 * m32c-tdep.c:
4260 * m32r-rom.c:
4261 * m32r-tdep.c:
4262 * m68k-tdep.c:
4263 * m68klinux-tdep.c:
4264 * mi/mi-main.c:
4265 * microblaze-tdep.c:
4266 * mips-linux-tdep.c:
4267 * mips-tdep.c:
4268 * mn10300-tdep.c:
4269 * p-valprint.c:
4270 * parse.c:
4271 * ppc-linux-tdep.c:
4272 * ppc-sysv-tdep.c:
4273 * printcmd.c:
4274 * python/py-finishbreakpoint.c:
4275 * python/py-inferior.c:
4276 * python/py-infthread.c:
4277 * python/py-type.c:
4278 * python/python.c:
4279 * remote-fileio.c:
4280 * remote-m32r-sdi.c:
4281 * remote-mips.c:
4282 * reverse.c:
4283 * rl78-tdep.c:
4284 * rs6000-aix-tdep.c:
4285 * rs6000-tdep.c:
4286 * s390-tdep.c:
4287 * score-tdep.c:
4288 * sh64-tdep.c:
4289 * skip.c:
4290 * solib-darwin.c:
4291 * solib-dsbt.c:
4292 * solib-frv.c:
4293 * sparc-tdep.c:
4294 * spu-multiarch.c:
4295 * spu-tdep.c:
4296 * stack.c:
4297 * symfile.c:
4298 * symtab.c:
4299 * tic6x-tdep.c:
4300 * tracepoint.c:
4301 * v850-tdep.c:
4302 * valarith.c:
4303 * valprint.c:
4304 * value.c:
4305 * xcoffread.c:
4306 * xtensa-tdep.c:
4307 * ada-lang.c:
4308 * ada-tasks.c:
4309 * ada-varobj.c:
4310 * amd64-darwin-tdep.c:
4311 * arm-symbian-tdep.c:
4312 * arm-tdep.c: Delete unused variables.
4313
4314 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4315
4316 Rename $ddir to $datadir.
4317 * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
4318 * auto-load.c (auto_load_safe_path_vec_update)
4319 (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
4320 * configure: Regenerate.
4321 * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
4322 Likewise. Remove the 'use $ddir' help string.
4323
4324 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4325
4326 * auto-load.c (show_auto_load_safe_path): Accept any combination of
4327 DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
4328
4329 2012-05-18 Tom Tromey <tromey@redhat.com>
4330
4331 PR exp/13907:
4332 * valprint.h (struct value_print_options) <symbol_print>: New
4333 field.
4334 * valprint.c (user_print_options): Add default for symbol_print.
4335 (show_symbol_print): New function.
4336 (generic_val_print): Respect symbol_print.
4337 (_initialize_valprint): Add "print symbol" setting.
4338 * f-valprint.c (f_val_print): Respect symbol_print.
4339 * c-valprint.c (c_val_print): Respect symbol_print.
4340 * NEWS: Update.
4341 * printcmd.c (print_address_symbolic): Return int. Ignore some
4342 zero-size symbols.
4343 (print_address_demangle): Return int.
4344 * defs.h: (print_address_symbolic): Return int.
4345 * value.h (print_address_demangle): Return int.
4346
4347 2012-05-18 Tom Tromey <tromey@redhat.com>
4348
4349 * valprint.c (val_print_string): Don't print leading space.
4350 * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
4351 print space before string or vtbl.
4352 * m2-valprint.c (print_unpacked_pointer): Optionally print space
4353 before string.
4354 * jv-valprint.c (java_value_print): Print space before string.
4355 * go-valprint.c (print_go_string): Print space before string.
4356 * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
4357 space before string.
4358 * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
4359 space before string or vtbl.
4360 * auxv.c (fprint_target_auxv): Print space after address.
4361
4362 2012-05-18 Tom Tromey <tromey@redhat.com>
4363
4364 * printcmd.c (print_address_demangle): Remove special case for 0.
4365
4366 2012-05-18 Tom Tromey <tromey@redhat.com>
4367
4368 * printcmd.c (print_address_demangle): Add 'opts' argument.
4369 * p-valprint.c (pascal_val_print): Update.
4370 * jv-valprint.c (java_val_print): Update.
4371 * value.h: Update.
4372 * valprint.c (generic_val_print): Update.
4373 (print_function_pointer_address): Add 'options' argument. Remove
4374 'addressprint' argument. Update.
4375 * m2-valprint.c (print_unpacked_pointer): Update.
4376 * gnu-v3-abi.c (print_one_vtable): Update.
4377 (gnuv3_print_method_ptr): Update.
4378 * f-valprint.c (f_val_print): Update.
4379 * cp-valprint.c (cp_print_value_fields): Update.
4380 * valprint.h (print_function_pointer_address): Update.
4381 * c-valprint.c (c_val_print): Update.
4382
4383 2012-05-18 Tom Tromey <tromey@redhat.com>
4384
4385 * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
4386 directly corresponding to the found psymtab.
4387 * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
4388 (dw2_find_pc_sect_symtab): Use it.
4389 * block.h (blockvector_contains_pc): Declare.
4390 * block.c (find_block_in_blockvector): New function.
4391 (blockvector_for_pc_sect): Use it.
4392 (blockvector_contains_pc): New function.
4393
4394 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
4395
4396 * mips-tdep.h (mips_write_pc): New prototype.
4397 * mips-tdep.c (mips_write_pc): Make external, add description.
4398 * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
4399 add description.
4400
4401 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
4402
4403 * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
4404 mips_regnum->pc.
4405 (mips_unwind_pc, mips_write_pc): Likewise.
4406 (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
4407 gdbarch_read_pc.
4408
4409 2012-05-17 Joel Brobecker <brobecker@adacore.com>
4410
4411 * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
4412 proc_warn, proc_error, proc_get_status, proc_flags,
4413 proc_why, proc_what, proc_nsysarg, proc_sysargs,
4414 proc_set_run_on_last_close, proc_unset_run_on_last_close,
4415 proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
4416 proc_stop_process, proc_wait_for_stop, proc_run_process,
4417 proc_set_traced_signals, proc_set_traced_faults,
4418 proc_set_traced_sysentry, proc_set_traced_sysexit,
4419 proc_set_held_signals, proc_get_held_signals,
4420 proc_get_traced_signals, proc_get_traced_faults,
4421 proc_get_traced_sysentry, proc_get_traced_sysexit,
4422 proc_clear_current_fault, proc_set_current_signal,
4423 proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
4424 proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
4425 proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
4426 proc_get_current_thread, proc_get_current_thread,
4427 proc_get_current_thread, proc_update_threads,
4428 proc_update_threads, proc_update_threads, proc_update_threads,
4429 proc_iterate_over_threads, procfs_find_new_threads,
4430 procfs_pid_to_str): Make static. Remove advance declaration.
4431 (proc_cursig): Make static. Conditionalized defintion on
4432 PROCFS_DONT_PIOCSSIG_CURSIG being defined.
4433 (proc_syscall, proc_set_kill_on_last_close,
4434 proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
4435 proc_get_pending_signals, proc_get_signal_actions,
4436 proc_trace_signal, proc_ignore_signal): Delete.
4437
4438 2012-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
4439
4440 * coffread.c (cs_section_address): Passing proper argument for
4441 `bfd_get_section_vma'.
4442 * dwarf2read.c (dwarf2_locate_sections): Likewise, for
4443 `bfd_get_section_flags'.
4444 * remote.c (remote_trace_set_readonly_regions): Likewise, for
4445 `bfd_get_section_vma'.
4446
4447 2012-05-16 Tom Tromey <tromey@redhat.com>
4448
4449 PR macros/13205:
4450 * macrotab.h: (macro_define_special): Declare.
4451 (enum macro_special_kind): New.
4452 (struct macro_definition) <argc, replacement>: Update comments.
4453 * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
4454 (macro_define_object_internal): New function.
4455 (macro_define_object): Use it.
4456 (macro_define_special): New function.
4457 (fixup_definition): New function.
4458 (macro_lookup_definition, foreach_macro_in_scope)
4459 (foreach_macro): Use fixup_definition.
4460 * macroexp.h (macro_stringify): Declare.
4461 * macroexp.c (free_buffer_return_text): New function.
4462 (stringify): Constify "arg".
4463 (macro_stringify): New function.
4464 * dwarf2read.c (macro_start_file): Call macro_define_special.
4465
4466 2012-05-16 Maciej W. Rozycki <macro@codesourcery.com>
4467 Maciej W. Rozycki <macro@mips.com>
4468
4469 * breakpoint.h (bp_location): Add related_address member.
4470 * inferior.h (get_return_value): Take a pointer to struct value
4471 instead of struct type for the function requested.
4472 * value.h (using_struct_return): Likewise.
4473 * gdbarch.sh (return_value): Take a pointer to struct value
4474 instead of struct type for the function requested.
4475 * breakpoint.c (set_breakpoint_location_function): Initialize
4476 related_address for bp_gnu_ifunc_resolver breakpoints.
4477 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
4478 requested function's address to gdbarch_return_value.
4479 * eval.c (evaluate_subexp_standard): Pass the requested
4480 function's address to using_struct_return.
4481 * infcall.c (call_function_by_hand): Pass the requested
4482 function's address to using_struct_return and
4483 gdbarch_return_value.
4484 * infcmd.c (get_return_value): Take a pointer to struct value
4485 instead of struct type for the function requested.
4486 (print_return_value): Update accordingly.
4487 (finish_command_continuation): Likewise.
4488 * stack.c (return_command): Pass the requested function's
4489 address to using_struct_return and gdbarch_return_value.
4490 * value.c (using_struct_return): Take a pointer to struct value
4491 instead of struct type for the function requested. Pass the
4492 requested function's address to gdbarch_return_value.
4493 * python/py-finishbreakpoint.c (finish_breakpoint_object):
4494 New function_value member, replacing function_type.
4495 (bpfinishpy_dealloc): Update accordingly.
4496 (bpfinishpy_pre_stop_hook): Likewise.
4497 (bpfinishpy_init): Likewise. Record the requested function's
4498 address.
4499 * mips-tdep.c (mips_fval_reg): New enum.
4500 (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
4501 words put in GP registers.
4502 (mips_o64_push_dummy_call): Update a comment.
4503 (mips_o32_return_value): Take a pointer to struct value instead
4504 of struct type for the function requested and use it to check if
4505 using the MIPS16 calling convention. Return the designated
4506 general purpose registers for floating-point values returned in
4507 MIPS16 mode.
4508 (mips_o64_return_value): Likewise.
4509 * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
4510 (ppc_sysv_abi_broken_return_value): Likewise.
4511 (ppc64_sysv_abi_return_value): Likewise.
4512 * alpha-tdep.c (alpha_return_value): Take a pointer to struct
4513 value instead of struct type for the function requested.
4514 * amd64-tdep.c (amd64_return_value): Likewise.
4515 * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
4516 * arm-tdep.c (arm_return_value): Likewise.
4517 * avr-tdep.c (avr_return_value): Likewise.
4518 * bfin-tdep.c (bfin_return_value): Likewise.
4519 * cris-tdep.c (cris_return_value): Likewise.
4520 * frv-tdep.c (frv_return_value): Likewise.
4521 * h8300-tdep.c (h8300_return_value): Likewise.
4522 (h8300h_return_value): Likewise.
4523 * hppa-tdep.c (hppa32_return_value): Likewise.
4524 (hppa64_return_value): Likewise.
4525 * i386-tdep.c (i386_return_value): Likewise.
4526 * ia64-tdep.c (ia64_return_value): Likewise.
4527 * iq2000-tdep.c (iq2000_return_value): Likewise.
4528 * lm32-tdep.c (lm32_return_value): Likewise.
4529 * m32c-tdep.c (m32c_return_value): Likewise.
4530 * m32r-tdep.c (m32r_return_value): Likewise.
4531 * m68hc11-tdep.c (m68hc11_return_value): Likewise.
4532 * m68k-tdep.c (m68k_return_value): Likewise.
4533 (m68k_svr4_return_value): Likewise.
4534 * m88k-tdep.c (m88k_return_value): Likewise.
4535 * mep-tdep.c (mep_return_value): Likewise.
4536 * microblaze-tdep.c (microblaze_return_value): Likewise.
4537 * mn10300-tdep.c (mn10300_return_value): Likewise.
4538 * moxie-tdep.c (moxie_return_value): Likewise.
4539 * mt-tdep.c (mt_return_value): Likewise.
4540 * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
4541 * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
4542 (ppc_sysv_abi_broken_return_value): Likewise.
4543 (ppc64_sysv_abi_return_value): Likewise.
4544 * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
4545 * rl78-tdep.c (rl78_return_value): Likewise.
4546 * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
4547 * rx-tdep.c (rx_return_value): Likewise.
4548 * s390-tdep.c (s390_return_value): Likewise.
4549 * score-tdep.c (score_return_value): Likewise.
4550 * sh-tdep.c (sh_return_value_nofpu): Likewise.
4551 (sh_return_value_fpu): Likewise.
4552 * sh64-tdep.c (sh64_return_value): Likewise.
4553 * sparc-tdep.c (sparc32_return_value): Likewise.
4554 * sparc64-tdep.c (sparc64_return_value): Likewise.
4555 * spu-tdep.c (spu_return_value): Likewise.
4556 * tic6x-tdep.c (tic6x_return_value): Likewise.
4557 * v850-tdep.c (v850_return_value): Likewise.
4558 * vax-tdep.c (vax_return_value): Likewise.
4559 * xstormy16-tdep.c (xstormy16_return_value): Likewise.
4560 * xtensa-tdep.c (xtensa_return_value): Likewise.
4561 * gdbarch.c: Regenerate.
4562 * gdbarch.h: Regenerate.
4563
4564 2012-05-15 Tom Tromey <tromey@redhat.com>
4565
4566 * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
4567
4568 2012-05-15 Joel Brobecker <brobecker@adacore.com>
4569
4570 * breakpoint.c (init_breakpoint_sal): Add quotes around part
4571 of command in two error message.
4572
4573 2012-05-15 Joel Brobecker <brobecker@adacore.com>
4574
4575 * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
4576
4577 2012-05-15 Joel Brobecker <brobecker@adacore.com>
4578
4579 * breakpoint.c (find_condition_and_thread): Minor reformatting.
4580
4581 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
4582
4583 * NEWS (show auto-load scripts-directory): Add forgotten command.
4584
4585 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
4586
4587 * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
4588 parameters.
4589
4590 2012-05-14 H.J. Lu <hongjiu.lu@intel.com>
4591
4592 * amd64-tdep.c: Include features/i386/x32.c and
4593 features/i386/x32-avx.c.
4594 (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
4595 initialize_tdesc_x32_avx.
4596
4597 2012-05-14 Stan Shebs <stan@codesourcery.com>
4598
4599 Add dynamic printf.
4600 * breakpoint.h (enum bptype): New type bp_dprintf.
4601 (struct breakpoint): New field extra_string.
4602 (struct breakpoint_ops): Add arg to create_breakpoints_sal.
4603 (create_breakpoint): Add extra_string arg.
4604 * breakpoint.c (dprintf_breakpoint_ops): New.
4605 (is_breakpoint): Add bp_dprintf.
4606 (bpstat_what): Add dprintf case.
4607 (bptype_string): Ditto.
4608 (print_one_breakpoint_location): Ditto.
4609 (init_bp_location): Ditto.
4610 (bkpt_print_mention): Ditto.
4611 (dprintf_style_enums): New array.
4612 (dprintf_style): New global.
4613 (dprintf_function): New global.
4614 (dprintf_channel): New global.
4615 (update_dprintf_command_list): New function.
4616 (update_dprintf_commands): New function.
4617 (init_breakpoint_sal): Add extra_string argument, handle it.
4618 (create_breakpoint_sal): Add extra_string argument.
4619 (create_breakpoints_sal): Add extra_string argument, update callers.
4620 (find_condition_and_thread): Add extra argument.
4621 (create_breakpoint): Add extra_string argument, record it.
4622 (dprintf_command): New function.
4623 (break_command_1): Add arg to create_breakpoint call.
4624 (handle_gnu_v3_exceptions): Ditto.
4625 (trace_command): Ditto.
4626 (ftrace_command): Ditto.
4627 (strace_command): Ditto.
4628 (bkpt_print_mention): Add dprintf case.
4629 (create_breakpoint_sal_default): Add extra_string argument.
4630 (_initialize_breakpoint): Add new commands.
4631 * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
4632 * python/py-breakpoint.c (bppy_init): Ditto.
4633 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
4634
4635 2012-05-14 Maciej W. Rozycki <macro@codesourcery.com>
4636
4637 * mips-tdep.c (mips_push_dummy_code): Correct description typo.
4638
4639 2012-05-14 Siva Chandra Reddy <sivachandra@google.com>
4640
4641 * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
4642 unsigned long long.
4643
4644 2012-05-13 Siva Chandra Reddy <sivachandra@google.com>
4645
4646 Add a new function gdb.find_pc_line to the Python API.
4647 * NEWS (Python Scripting): Add entry about the new function.
4648 * python/python.c (gdbpy_find_pc_line): New function which
4649 implements gdb.find_pc_line.
4650 (GdbMethods): Add entry for the new function.
4651
4652 2012-05-12 Pedro Alves <palves@redhat.com>
4653
4654 * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
4655 initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
4656
4657 2012-05-12 Eli Zaretskii <eliz@gnu.org>
4658
4659 * inferior.c: Include completer.h
4660 (initialize_inferiors): Set completer of add-inferior to
4661 filename_completer.
4662
4663 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
4664
4665 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
4666 gdbarch_ptr_bit for x32 core dump.
4667
4668 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
4669
4670 * amd64-linux-tdep.c: Include features/i386/x32-linux.c
4671 and features/i386/x32-avx-linux.c.
4672
4673 2012-05-11 Stan Shebs <stan@codesourcery.com>
4674 Kwok Cheung Yeung <kcy@codesourcery.com>
4675
4676 * NEWS: Describe new info os commands.
4677 * common/linux-osdata.c (PID_T, TIME_T): Define.
4678 (MAX_PID_T_STRLEN): New.
4679 (linux_common_core_of_thread): Add comment. Change to use PID_T and
4680 MAX_PID_T_STRLEN.
4681 (command_from_pid): Add comment. Change to use PID_T.
4682 (commandline_from_pid): Change to use PID_T.
4683 (user_from_pid): Add comment.
4684 (get_process_owner): Add comment. Change to use PID_T and
4685 MAX_PID_T_STRLEN.
4686 (get_number_of_cpu_cores): Add comment.
4687 (get_cores_used_by_process): Add comment. Change to use PID_T and
4688 MAX_PID_T_STRLEN.
4689 (linux_xfer_osdata_processes): Change to use PID_T and
4690 MAX_PID_T_STRLEN.
4691 (compare_processes): New function.
4692 (linux_xfer_osdata_processgroups): New function.
4693 (linux_xfer_osdata_threads): Change to use PID_T.
4694 (linux_xfer_osdata_fds): New function.
4695 (format_socket_state, print_sockets): New functions.
4696 (union socket_addr): New union.
4697 (linux_xfer_osdata_isockets): New function.
4698 (time_from_time_t, group_from_gid): New functions.
4699 (linux_xfer_osdata_shm): New function.
4700 (linux_xfer_osdata_sem): New function.
4701 (linux_xfer_osdata_msg): New function.
4702 (linux_xfer_osdata_modules): New function.
4703 (osdata_table): Add new entries.
4704 * common/buffer.c (buffer_xml_printf): Add support for long and
4705 long long format specifiers.
4706
4707 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
4708
4709 * amd64-linux-tdep.h (tdesc_x32_linux): New.
4710 (tdesc_x32_avx_linux): Likewise.
4711
4712 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4713
4714 Implement multi-component --with-auto-load-dir.
4715 * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
4716 entries.
4717 (--with-auto-load-safe-path): Update the default value description.
4718 * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
4719 New.
4720 (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output. Remove
4721 GDB_DATADIR NULL check. Replace GDB_DATADIR/auto-load by
4722 AUTO_LOAD_DIR. Support $ddir and multiple components in it.
4723 (_initialize_auto_load): Initialize also auto_load_dir. Install new
4724 "set auto-load scripts-directory".
4725 * config.in: Regenerate.
4726 * configure: Regenerate.
4727 * configure.ac (--with-auto-load-dir): New configure option.
4728 (--auto-load-safe-path): Change the default to --with-auto-load-dir.
4729
4730 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4731
4732 Provide $ddir substitution for --with-auto-load-safe-path.
4733 * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
4734 entries.
4735 * auto-load.c: Include observer.h.
4736 (auto_load_safe_path_vec_update): Call substitute_path_component for
4737 each component. New variable ddir_subst.
4738 (auto_load_gdb_datadir_changed): New function.
4739 (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
4740 AUTO_LOAD_SAFE_PATH. New comment.
4741 (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
4742 AUTO_LOAD_SAFE_PATH. Install auto_load_gdb_datadir_changed.
4743 * config.in: Regenerate.
4744 * configure: Regenerate.
4745 * configure.ac (--auto-load-safe-path): Rename
4746 DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH. Default to
4747 GDB_DATADIR/auto-load.
4748 * defs.h (substitute_path_component): New declaration.
4749 * top.c: Include observer.h.
4750 (set_gdb_datadir): New function.
4751 (init_main): Install it for "set data-directory".
4752 * utils.c (substitute_path_component): New function.
4753
4754 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4755
4756 Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
4757 * auto-load.c (auto_load_objfile_script): Remove check for NULL
4758 DEBUG_FILE_DIRECTORY. Handle multiple components of
4759 DEBUG_FILE_DIRECTORY.
4760
4761 2012-05-10 Tom Tromey <tromey@redhat.com>
4762
4763 * dwarf2read.c (recursively_write_psymbols): New function.
4764 (write_psymtabs_to_index): Use it.
4765
4766 * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
4767 field.
4768 (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
4769 (load_partial_comp_unit): Update.
4770 (queue_comp_unit): Add argument 'pretend_language'.
4771 (process_queue): Update.
4772 (psymtab_to_symtab_1): Skip dependencies that have a user.
4773 (load_partial_comp_unit_reader): Give meaning to the 'data'
4774 argument.
4775 (load_full_comp_unit): Add 'pretend_language' argument.
4776 (process_full_comp_unit): Add 'pretend_language' argument. Set
4777 language on CU.
4778 (process_imported_unit_die, read_file_scope, read_type_unit_scope):
4779 Update.
4780 (maybe_queue_comp_unit): Add 'pretend_language' argument.
4781 (follow_die_offset, follow_die_sig, read_signatured_type_reader):
4782 Update.
4783 (prepare_one_comp_unit): Add 'pretend_language' argument.
4784
4785 * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
4786 (struct dwarf2_per_objfile) <just_read_cus>: New field.
4787 (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
4788 (dw2_do_instantiate_symtab): Check whether symtab was read in
4789 before queueing.
4790 (dw2_instantiate_symtab): Add assertion. Call
4791 process_cu_includes.
4792 (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
4793 (partial_symtab_p): New typedef.
4794 (set_partial_user): New function.
4795 (dwarf2_build_psymtabs_hard): Use set_partial_user.
4796 (scan_partial_symbols): Add imported CU to imported_symtabs.
4797 (dwarf2_psymtab_to_symtab): Call process_cu_includes.
4798 (psymtab_to_symtab_1): Do nothing if psymtab is readin.
4799 (get_symtab, recursively_compute_inclusions)
4800 (compute_symtab_includes, process_cu_includes)
4801 (process_imported_unit_die): New functions.
4802 (process_die) <DW_TAG_imported_unit>: New case.
4803 (dwarf2_per_objfile_free): Free 'imported_symtabs'.
4804
4805 * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
4806 comment.
4807 (struct partial_die_info) <locdesc>: Remove.
4808 <d>: New field.
4809 (process_psymtab_comp_unit): Add 'read_partial' argument.
4810 Update.
4811 (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
4812 (scan_partial_symbols): Handle DW_TAG_imported_unit.
4813 (add_partial_symbol): Update.
4814 (process_die): Handle DW_TAG_partial_unit.
4815 (read_file_scope): Update comment.
4816 (load_partial_dies): Handle DW_TAG_imported_unit.
4817 (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
4818 (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
4819
4820 2012-05-10 Tom Tromey <tromey@redhat.com>
4821
4822 * cc-with-dwz.sh: New file.
4823
4824 2012-05-10 Tom Tromey <tromey@redhat.com>
4825
4826 * symtab.h (struct symtab) <includes, user>: New fields.
4827 * block.h (struct block_iterator) <d, idx, which>: New fields.
4828 * block.c (initialize_block_iterator, find_iterator_symtab)
4829 (block_iterator_step, block_iter_name_step)
4830 (block_iter_match_step): New functions.
4831 (block_iterator_first, block_iterator_next)
4832 (block_iter_name_first, block_iter_name_next)
4833 (block_iter_match_first, block_iter_match_next): Rewrite.
4834 (get_block_symtab): New function.
4835
4836 2012-05-10 Tom Tromey <tromey@redhat.com>
4837
4838 * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
4839 set_block_symtab.
4840 * jit.c (finalize_symtab): Use allocate_global_block,
4841 set_block_symtab.
4842 * buildsym.c (finish_block_internal): New function, from old
4843 finish_block.
4844 (finish_block): Rewrite.
4845 (end_symtab): Use finish_block_internal, set_block_symtab.
4846 * block.h (struct global_block): New.
4847 (allocate_global_block, set_block_symtab): Declare.
4848 * block.c (allocate_global_block, set_block_symtab): New
4849 functions.
4850
4851 2012-05-10 Tom Tromey <tromey@redhat.com>
4852
4853 * psymtab.c (partial_map_expand_apply): Add assertion.
4854 (partial_map_symtabs_matching_filename): Skip included psymtabs.
4855 (psymtab_to_symtab): Find unshared psymtab.
4856 (dump_psymtab): Print including psymtabs.
4857 (recursively_search_psymtabs): New function.
4858 (expand_symtabs_matching_via_partial): Use it.
4859 * psympriv.h (struct partial_symtab) <user, searched_flag>: New
4860 fields.
4861 (enum psymtab_search_status): New.
4862
4863 2012-05-10 Tom Tromey <tromey@redhat.com>
4864
4865 * tracepoint.c (scope_info): Update.
4866 * symtab.c (lookup_block_symbol, iterate_over_symbols)
4867 (find_pc_sect_symtab, search_symbols)
4868 (default_make_symbol_completion_list_break_on)
4869 (make_file_symbol_completion_list): Update.
4870 * symmisc.c (dump_symtab_1): Update.
4871 * stack.c (print_frame_args, iterate_over_block_locals)
4872 (print_frame_labels, iterate_over_block_arg_vars): Update.
4873 * python/py-block.c (block_object) <dict>: Remove.
4874 <block>: New field.
4875 <iter>: Change type.
4876 (blpy_iter): Update.
4877 (blpy_block_syms_iternext): Update.
4878 * psymtab.c (map_block): Use block iterators.
4879 * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
4880 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
4881 * mdebugread.c (parse_symbol, mylookup_symbol): Update.
4882 * infrun.c (check_exception_resume): Update.
4883 * cp-support.c (make_symbol_overload_list_block): Update.
4884 * coffread.c (patch_opaque_types): Update.
4885 * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
4886 * block.h (struct block_iterator): New.
4887 (block_iterator_first, block_iterator_next, block_iter_name_first)
4888 (block_iter_name_next, block_iter_match_first)
4889 (block_iter_match_next): Declare.
4890 (ALL_BLOCK_SYMBOLS): Redefine.
4891 * block.c (block_iterator_first, block_iterator_next)
4892 (block_iter_name_first, block_iter_name_next)
4893 (block_iter_match_first, block_iter_match_next): New functions.
4894 * ada-lang.c (ada_add_block_symbols)
4895 (ada_make_symbol_completion_list): Use block iterator.
4896
4897 2012-05-10 Tom Tromey <tromey@redhat.com>
4898
4899 * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
4900 (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
4901 (lookup_partial_symbol, find_last_source_symtab_from_partial)
4902 (read_psymtabs_with_filename, map_matching_symbols_psymtab)
4903 (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
4904 Update.
4905
4906 2012-05-10 Joel Brobecker <brobecker@adacore.com>
4907
4908 * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
4909 print-file-var-lib2.c, print-file-var-main.c and
4910 print-file-var.exp (located in gdb/testsuite/gdb.base).
4911
4912 2012-05-10 Joel Brobecker <brobecker@adacore.com>
4913
4914 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
4915 try locating the symbol in the symbol's own objfile first, before
4916 extending the search to all objfiles.
4917 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
4918 out of lookup_symbol_aux_symtabs.
4919 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
4920 Replace extracted-out code by call to lookup_symbol_aux_objfile.
4921 Do not search EXCLUDE_OBJFILE.
4922 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
4923 (lookup_symbol_global): Search for matches in the block's objfile
4924 first, before searching all other objfiles.
4925
4926 2012-05-10 Tristan Gingold <gingold@adacore.com>
4927
4928 * printcmd.c (set_command): Add pre/post inc/dec.
4929
4930 2012-05-09 Frank Ch. Eigler <fche@redhat.com>
4931
4932 * gdb.1: Document -ex option.
4933
4934 2012-05-09 Joel Brobecker <brobecker@adacore.com>
4935
4936 * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
4937 * inferior.h (AT_SYMBOL): Delete.
4938
4939 2012-05-09 Joel Brobecker <brobecker@adacore.com>
4940
4941 * mips-tdep.c (mips_push_dummy_code): New function.
4942 (mips_gdbarch_init): Set the gdbarch call_dummy_location to
4943 ON_STACK and install mips_push_dummy_code as our gdbarch
4944 push_dummy_code routine.
4945
4946 2012-05-09 Pedro Alves <palves@redhat.com>
4947
4948 * target.c (set_maintenance_target_async_permitted): Rename to ...
4949 (set_target_async_command): ... this.
4950 (show_maintenance_target_async_permitted): Rename to ...
4951 (show_target_async_command): ... this.
4952 (initialize_targets): Adjust.
4953
4954 2012-05-08 Doug Evans <dje@google.com>
4955
4956 * go-exp.y (classify_name): Add missing assignment of fields of
4957 yylval.ssym.
4958
4959 2012-05-08 Eli Zaretskii <eliz@gnu.org>
4960
4961 Display the ">" prompt in interactive mode while reading canned
4962 commands, even when the current interpreter is MI.
4963
4964 * interps.c (interp_set_temp): New function.
4965
4966 * interps.h (interp_set_temp): Add prototype.
4967
4968 * cli/cli-script.c (restore_interp): New cleanup function.
4969 (read_command_lines): Temporarily override the current interpreter
4970 with CLI and arrange for restoring the original one.
4971
4972 2012-05-12 Joel Sherrill <joel.sherrill@oarcorp.com>
4973
4974 * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
4975
4976 2012-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
4977
4978 * probe.c (parse_probes): Move conditional to check for
4979 debuginfo files from here...
4980 * stap-probe.c (stap_get_probes): ... to here.
4981
4982 2012-05-07 Mark Kettenis <kettenis@gnu.org>
4983 H.J. Lu <hongjiu.lu@intel.com>
4984
4985 * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
4986 `movl %esp, %ebp' for the X32 ABI.
4987
4988 2012-05-07 Tom Tromey <tromey@redhat.com>
4989
4990 * dwarf2read.c (dwarf_tag_name): Return const char *. Use
4991 get_DW_TAG_name.
4992 (dwarf_attr_name): Return const char *. Use get_DW_AT_name.
4993 (dwarf_form_name): Return const char *. Use get_DW_FORM_name.
4994 (dwarf_stack_op_name): Remove.
4995 (dwarf_cfi_name): Return const char *. Use get_DW_ATE_name.
4996 (decode_locdesc): Use get_DW_OP_name.
4997 * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
4998 (dwarf2_compile_expr_to_ax): Likewise.
4999 (disassemble_dwarf_expression): Likewise.
5000 * dwarf2expr.h: (dwarf_stack_op_name): Remove.
5001
5002 2012-05-07 Chung-Lin Tang <cltang@codesourcery.com>
5003
5004 * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
5005 (sh_linux_sigtramp_cache): New function.
5006 (sh_linux_sigreturn_init): New function.
5007 (sh_linux_rt_sigreturn_init): New function.
5008 (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
5009 patterns.
5010 (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
5011 syscall codes.
5012 (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
5013 (sh_linux_rt_sigreturn_tramp_frame): Likewise.
5014 (sh_linux_init_abi): Add init calls to register new tramp_frame
5015 definitions under 32-bit SH, update comments.
5016
5017 2012-05-07 Pedro Alves <palves@redhat.com>
5018
5019 PR gdb/10952
5020
5021 * amd64-linux-tdep.c: Include glibc-tdep.h.
5022 (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
5023 gdbarch_skip_solib_resolver callback.
5024
5025 2012-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
5026
5027 * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
5028 back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
5029 (show_auto_load_safe_path): Check any-directory by comparison with "/".
5030 (add_auto_load_safe_path): Change the error message.
5031 (_initialize_auto_load): Change the "safe-path" help text.
5032 * configure: Regenerate
5033 * configure.ac (--without-auto-load-safe-path): Set
5034 WITH_AUTO_LOAD_SAFE_PATH to /.
5035
5036 2012-05-05 Sergio Durigan Junior <sergiodj@redhat.com>
5037
5038 * stap-probe.h: Do not include unecessary `probe.h'.
5039
5040 2012-05-05 Alan Modra <amodra@gmail.com>
5041
5042 * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
5043 bfd_und_section_ptr.
5044 * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
5045 and bfd_com_section_ptr.
5046
5047 2012-05-04 Joel Brobecker <brobecker@adacore.com>
5048
5049 * MAINTAINERS (Past Maintainers): Add Chris Faylor.
5050
5051 2012-05-04 Joel Brobecker <brobecker@adacore.com>
5052
5053 * windows-nat.h (segment_register_p_ftype): New typedef.
5054 (windows_set_segment_register_p): Add declaration.
5055 * windows-nat.c (segment_register_p): New static global.
5056 (windows_set_segment_register_p): New function.
5057 (do_windows_fetch_inferior_registers): Add special handling
5058 for segment registers.
5059 * amd64-windows-nat.c: #include "amd64-tdep.h".
5060 (amd64_windows_segment_register_p): New function.
5061 (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
5062 * i386-windows-nat.c: #include "i386-tdep.h".
5063 (i386_windows_segment_register_p): New function.
5064 (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
5065
5066 2012-05-04 Tristan Gingold <gingold@adacore.com>
5067
5068 * printcmd.c (set_command): Emit a warning if the expression is not
5069 an assignment.
5070
5071 2012-05-03 Joel Brobecker <brobecker@adacore.com>
5072
5073 * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
5074 Make static.
5075
5076 2012-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
5077
5078 * stap-probe.c (stap_is_operator): Change declaration.
5079 (stap_get_opcode): Change return value.
5080 (stap_parse_argument_1): Update calls to `stap_get_opcode' and
5081 `stap_parse_argument_1'.
5082
5083 2012-05-03 Pedro Alves <pedro@codesourcery.com>
5084
5085 * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
5086 debug log.
5087
5088 2012-05-03 Siva Chandra Reddy <sivachandra@google.com>
5089
5090 Add two new methods global_block and static_block to gdb.Symtab
5091 objects.
5092 * NEWS (Python scripting): Add entry about the new methods.
5093 * python/py-symtab.c (stpy_global_block): New function which
5094 implements the gdb.Symtab.global_block() method.
5095 (stpy_static_block): New function which implements the
5096 gdb.Symtab.static_block() method.
5097 (symtab_object_methods): Add entries for the two new methods.
5098
5099 2012-05-03 Doug Evans <dje@google.com>
5100
5101 * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
5102 files.
5103
5104 2012-05-03 Yao Qi <yao@codesourcery.com>
5105
5106 * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
5107 space.
5108 (i386_process_record): Ditto.
5109
5110 2012-05-02 Joel Brobecker <brobecker@adacore.com>
5111
5112 * infcall.c (unwind_on_signal_p): Make static.
5113
5114 2012-05-02 Joel Brobecker <brobecker@adacore.com>
5115
5116 * sol-thread.c (solaris_pid_to_str): Make static.
5117 (_initialize_sol_thread): Add prototype.
5118
5119 2012-05-02 Joel Brobecker <brobecker@adacore.com>
5120
5121 * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
5122
5123 2012-05-02 Christopher Faylor <me.cygwin2012@cgf.cx>
5124
5125 * MAINTAINERS: Remove myself.
5126
5127 2012-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5128
5129 Fix --without-auto-load-safe-path for MS-Windows host platform.
5130 * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
5131
5132 2012-05-02 Eli Zaretskii <eliz@gnu.org>
5133
5134 * gdb_curses.h: Undefine KEY_EVENT before including curses
5135 headers. Move "#undef MOUSE_MOVED" before any curses header
5136 inclusion.
5137
5138 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
5139
5140 * features/i386/i386-mmx-linux.c: Regenerate.
5141 * features/rs6000/powerpc-32.c: Likewise.
5142 * features/rs6000/powerpc-32l.c: Likewise.
5143 * features/rs6000/powerpc-403.c: Likewise.
5144 * features/rs6000/powerpc-403gc.c: Likewise.
5145 * features/rs6000/powerpc-405.c: Likewise.
5146 * features/rs6000/powerpc-505.c: Likewise.
5147 * features/rs6000/powerpc-601.c: Likewise.
5148 * features/rs6000/powerpc-602.c: Likewise.
5149 * features/rs6000/powerpc-603.c: Likewise.
5150 * features/rs6000/powerpc-604.c: Likewise.
5151 * features/rs6000/powerpc-64.c: Likewise.
5152 * features/rs6000/powerpc-64l.c: Likewise.
5153 * features/rs6000/powerpc-750.c: Likewise.
5154 * features/rs6000/powerpc-860.c: Likewise.
5155 * features/rs6000/powerpc-e500.c: Likewise.
5156 * features/rs6000/powerpc-e500l.c: Likewise.
5157 * features/rs6000/powerpc-isa205-32l.c: Likewise.
5158 * features/rs6000/powerpc-isa205-64l.c: Likewise.
5159 * features/rs6000/rs6000.c: Likewise.
5160
5161 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
5162
5163 * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
5164 variable.
5165 * stap-probe.c (stap_parse_single_operand) <reg_suffix,
5166 reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
5167 (stap_parse_argument) <e>: Likewise.
5168 (handle_stap_probe) <byte_order>: Likewise.
5169
5170 2012-04-30 Doug Evans <dje@google.com>
5171
5172 * dwarf2read.c (init_cutu_and_read_dies): Renamed from
5173 init_and_read_dies_worker. All callers updated.
5174 (init_cu_and_read_dies, init_tu_and_read_dies): Delete. All calls
5175 replaced with init_cutu_and_read_dies.
5176 (load_partial_comp_unit): Pass 1 for use_existing_cu.
5177 (find_partial_die): Remove FIXME. Don't free current CU.
5178
5179 2012-04-30 Sterling Augustine <saugustine@google.com>
5180
5181 * contrib: New directory.
5182 * contrib/test_pubnames_and_indexes.py: New file.
5183
5184 2012-04-30 Doug Evans <dje@google.com>
5185
5186 * dwarf2read.c (dwarf_decode_macros): New arg section_name.
5187 All callers updated.
5188 (init_cu_die_reader): Verify the section is non-empty.
5189 (dwarf_decode_line_header): Don't dereference section->asection
5190 until we know the section is present.
5191
5192 2012-04-29 Sergio Durigan Junior <sergiodj@redhat.com>
5193
5194 * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
5195 probes.
5196
5197 2012-04-29 Yao Qi <yao@codesourcery.com>
5198
5199 * gdb-code-style.el: New hook gdb-markup-hook
5200 and gdb-comment-hook.
5201
5202 2012-04-28 Doug Evans <dje@google.com>
5203
5204 Initial support for Fission. http://gcc.gnu.org/wiki/DebugFission
5205 * symfile.c (default_symfile_relocate): Use sectp->owner instead of
5206 objfile->obfd.
5207 * symfile.h (dwarf2_debug_sections): New member addr.
5208 * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
5209 (ctx_no_get_addr_index): New function.
5210 * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
5211 (ctx_no_get_addr_index): Declare.
5212 * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
5213 * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
5214 (dwarf_expr_ctx_funcs): Update.
5215 (needs_get_addr_index): New function.
5216 (needs_frame_ctx_funcs): Update.
5217 * dwarf2loc.h (dwarf2_read_addr_index): Declare.
5218 * dwarf2read.c: #include "gdbcore.h".
5219 (dwarf2_per_objfile): New members addr, dwo_files.
5220 (dwarf2_elf_names): Add entry for addr.
5221 (struct dwo_section_names): New type.
5222 (dwo_section_names): New static global.
5223 (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
5224 (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
5225 old debug_types_section member updated to use this.
5226 Rename member debug_types_section to info_or_types_section,
5227 all uses updated.
5228 (signatured_type): Rename member type_offset to type_offset_in_tu,
5229 all uses updated. New member type_offset_in_section.
5230 (struct dwo_sections): New type.
5231 (struct dwo_unit): New type.
5232 (struct dwo_file): New type.
5233 (die_reader_specs): New member dwo_file.
5234 (dwarf2_locate_sections): Watch for .debug_addr.
5235 (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
5236 (dwarf2_read_section): Get bfd of section from bfd's asection,
5237 instead of objfile.
5238 (create_cus_from_index): Initialize the_cu->info_or_types_section.
5239 (create_signatured_type_table_from_index): Initialize
5240 sig_type->info_or_types_section.
5241 (dw2_get_file_names): Statement lists for type units with DWO files
5242 live in the DWO file.
5243 (create_debug_types_hash_table): New function.
5244 (create_all_type_units): Rewrite.
5245 (init_cu_die_reader): New arg dwo_file, all callers updated.
5246 (init_and_read_dies_worker): Get section from
5247 this_cu->info_or_types_section. Set sig_type->type_offset_in_section.
5248 Watch for DW_AT_GNU_dwo_name and if present lookup the file and
5249 continue reading the CU/TU from there.
5250 (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
5251 updated. Get section from this_cu->info_or_types_section.
5252 (create_all_comp_units): Initialize this_cu->info_or_types_section.
5253 (skip_one_die): New cases DW_FORM_GNU_addr_index,
5254 DW_FORM_GNU_str_index.
5255 (hash_dwo_file, eq_dwo_file): New functions.
5256 (allocate_dwo_file_hash_table): New function.
5257 (hash_dwo_unit, eq_dwo_unit): New functions.
5258 (allocate_dwo_unit_table): New function.
5259 (dwarf2_locate_dwo_sections): New function.
5260 (struct create_dwo_info_table_data): New type.
5261 (create_debug_info_hash_table_reader): New function.
5262 (create_debug_info_hash_table): New function.
5263 (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
5264 (lookup_dwo_file): New function.
5265 (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
5266 (free_dwo_file, free_dwo_file_cleanup): New functions.
5267 (free_dwo_file_from_slot, free_dwo_files): New functions.
5268 (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
5269 (dwarf2_record_block_ranges): Ditto.
5270 (read_partial_die): Ditto.
5271 (process_enumeration_scope): Update to use type_offset_in_section.
5272 (read_full_die_1): New function.
5273 (read_full_die): Rewrite.
5274 (read_attribute_value): New cases DW_FORM_GNU_addr_index,
5275 DW_FORM_GNU_str_index.
5276 (read_addr_index_1, read_addr_index): New functions.
5277 (read_addr_index_from_leb128): New function.
5278 (struct dwarf2_read_addr_index_data): New type.
5279 (dwarf2_read_addr_index_reader): New function.
5280 (dwarf2_read_addr_index): New function.
5281 (read_str_index): New function.
5282 (leb128_size): New function.
5283 (dwarf_decode_line_header): Delete arg abfd, all callers updated.
5284 If processing a type unit from a DWO file, get the line section
5285 from the DWO file.
5286 (var_decode_location): Watch for DW_OP_GNU_addr_index.
5287 (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
5288 DW_FORM_GNU_str_index.
5289 (lookup_die_type): Check whether section offset of type's die is
5290 known before looking it up. Remove assert. Condition can
5291 legimately happen for inter-cu type references.
5292 (dwarf_attr_name): Handle Fission attributes.
5293 (dwarf_form_name): Handle Fission forms.
5294 (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
5295 DW_FORM_GNU_str_index.
5296 (follow_die_sig): Update to use type_offset_in_section.
5297 (decode_locdesc): New case DW_OP_GNU_addr_index.
5298 (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
5299 DW_FORM_GNU_str_index.
5300 (cu_debug_loc_section): New function.
5301 (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
5302 (dwarf2_per_objfile_free): Unmap .debug_addr section.
5303 Free DWO files if present.
5304 * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
5305
5306 Refactor DIE reading.
5307 * dwarf2read.c (dwarf2_per_objfile): Replace members
5308 debug_info_type_hash and debug_types_type_hash with die_type_hash.
5309 (die_reader_specs): New member "die_section". Temporarily make
5310 member "buffer" non-const, pending constifying all info_ptr uses.
5311 (die_reader_func_ftype): New typedef.
5312 (dw2_get_file_names_reader): New function.
5313 (dw2_get_file_names): Rewrite.
5314 (read_and_check_type_unit_head): Rename arg type_offset to
5315 type_offset_in_tu.
5316 (create_all_type_units): Improve debugging message.
5317 Improve dummy type unit check.
5318 (init_cu_die_reader): New arg "section". All callers updated.
5319 (init_and_read_dies_worker): New function.
5320 (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
5321 (init_cutu_and_read_dies_no_follow): New function.
5322 (init_cutu_and_read_dies_simple): New function.
5323 (process_psymtab_comp_unit_reader): New function.
5324 (process_psymtab_comp_unit): Delete args section,
5325 is_debug_types_section. Rewrite. All callers updated.
5326 (process_psymtab_type_unit): Renamed from process_type_comp_unit.
5327 All callers updated. Rewrite.
5328 (load_partial_comp_unit_reader): New function.
5329 (load_partial_comp_unit): Rewrite.
5330 (skip_children): New arg reader. Delete args buffer, cu.
5331 All callers updated.
5332 (skip_one_die): New arg reader. Delete args buffer, cu.
5333 All callers updated.
5334 (locate_pdi_sibling): New arg reader. Delete args buffer, abfd, cu.
5335 All callers updated.
5336 (load_full_comp_unit_reader): New function.
5337 (load_full_comp_unit): Rewrite.
5338 (read_comp_unit): Delete.
5339 (read_die_and_children_1): Delete, contents moved ...
5340 (read_die_and_children): ... here.
5341 (dwarf2_read_abbrevs): New arg abbrev_section. All callers updated.
5342 (load_partial_dies): New arg reader. Delete args abfd, buffer, cu.
5343 All callers updated.
5344 (read_partial_die): New arg reader. Delete args abfd, buffer, cu.
5345 All callers updated.
5346 (find_partial_die): Rewrite load_all_dies support.
5347 (read_attribute_value): New arg reader. Delete args abfd, cu.
5348 All callers updated.
5349 (read_attribute): New arg reader. Delete args abfd, cu.
5350 All callers updated.
5351 (load_full_type_unit): Add assert.
5352 (read_signatured_type_reader): New function.
5353 (read_signatured_type): Rewrite.
5354 (free_stack_comp_unit): Remove call to age_cached_comp_units.
5355 (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
5356 All callers updated. Set per_cu->cu = NULL after freeing it.
5357 (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
5358 (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
5359 (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
5360 (set_die_type): Update.
5361 (get_die_type_at_offset): Update.
5362 (read_file_scope): Call prepare_one_comp_unit.
5363 (read_type_unit_scope): Ditto.
5364 (prepare_one_comp_unit): Set producer if present.
5365
5366 2012-04-28 Sergio Durigan Junior <sergiodj@redhat.com>
5367
5368 * probe.c (compile_rx_or_error): Silence ARI warning about missing
5369 gettext function on `error'.
5370
5371 2012-04-27 Doug Evans <dje@google.com>
5372
5373 * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
5374 is empty.
5375
5376 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
5377 Tom Tromey <tromey@redhat.com>
5378
5379 * breakpoint.c (struct breakpoint_objfile_data)
5380 <longjmp_searched>,<longjmp_probes>,<exception_searched>,
5381 <exception_probes>: New fields.
5382 (free_breakpoint_probes): New function.
5383 (create_longjmp_master_breakpoint): Prefer SystemTap probe over
5384 `_Unwind_DebugHook'.
5385 (create_exception_master_breakpoint): Likewise.
5386 (_initialize_breakpoint): Registering cleanup for SystemTap probes.
5387 * infrun.c: Including necessary header files for handling SystemTap
5388 probes.
5389 (handle_inferior_event): Handling longjmp breakpoint and exceptions
5390 via SystemTap probes.
5391 (check_exception_resume): Remove `func' argument. Handle exception
5392 unwinding breakpoint set via a SystemTap probe.
5393 (insert_exception_resume_from_probe): New function.
5394
5395 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
5396 Tom Tromey <tromey@redhat.com>
5397 Jan Kratochvil <jan.kratochvil@redhat.com>
5398
5399 * Makefile.in (SFILES): Add `probe' and `stap-probe'.
5400 (COMMON_OBS): Likewise.
5401 (HFILES_NO_SRCDIR): Add `probe'.
5402 * NEWS: Mention support for static and SystemTap probes.
5403 * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
5404 SystemTap probes' arguments parser.
5405 * arm-linux-tdep.c: Including headers needed to perform the parsing
5406 of SystemTap probes' arguments.
5407 (arm_stap_is_single_operand): New function.
5408 (arm_stap_parse_special_token): Likewise.
5409 (arm_linux_init_abi): Initializing proper fields used by SystemTap
5410 probes' arguments parser.
5411 * ax-gdb.c (require_rvalue): Removing static declaration.
5412 (gen_expr): Likewise.
5413 * ax-gdb.h (gen_expr): Declaring function.
5414 (require_rvalue): Likewise.
5415 * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
5416 (bkpt_probe_breakpoint_ops): New variable.
5417 (momentary_breakpoint_from_master): Set the `probe' value.
5418 (add_location_to_breakpoint): Likewise.
5419 (break_command_1): Using proper breakpoint_ops according to the
5420 argument passed by the user in the command line.
5421 (bkpt_probe_insert_location): New function.
5422 (bkpt_probe_remove_location): Likewise.
5423 (bkpt_probe_create_sals_from_address): Likewise.
5424 (bkpt_probe_decode_linespec): Likewise.
5425 (tracepoint_probe_create_sals_from_address): Likewise.
5426 (tracepoint_probe_decode_linespec): Likewise.
5427 (tracepoint_probe_breakpoint_ops): New variable.
5428 (trace_command): Using proper breakpoint_ops according to the
5429 argument passed by the user in the command line.
5430 (initialize_breakpoint_ops): Initializing breakpoint_ops for
5431 static probes on breakpoints and tracepoints.
5432 * breakpoint.h (struct bp_location) <probe>: New field.
5433 * cli-utils.c (skip_spaces_const): New function.
5434 (extract_arg): Likewise.
5435 * cli-utils.h (skip_spaces_const): Likewise.
5436 (extract_arg): Likewise.
5437 * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
5438 * configure.ac: Append `stap-probe.o' to be generated when ELF
5439 support is present.
5440 * configure: Regenerate.
5441 * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
5442 * elfread.c: Include `probe.h' and `arch-utils.h'.
5443 (probe_key): New variable.
5444 (elf_get_probes): New function.
5445 (elf_get_probe_argument_count): Likewise.
5446 (elf_evaluate_probe_argument): Likewise.
5447 (elf_compile_to_ax): Likewise.
5448 (elf_symfile_relocate_probe): Likewise.
5449 (stap_probe_key_free): Likewise.
5450 (elf_probe_fns): New variable.
5451 (elf_sym_fns): Add `sym_probe_fns' value.
5452 (elf_sym_fns_lazy_psyms): Likewise.
5453 (elf_sym_fns_gdb_index): Likewise.
5454 (_initialize_elfread): Initialize objfile cache for static
5455 probes.
5456 * gdb_vecs.h (struct probe): New forward declaration.
5457 (probe_p): New VEC declaration.
5458 * gdbarch.c: Regenerate.
5459 * gdbarch.h: Regenerate.
5460 * gdbarch.sh (stap_integer_prefix): New variable.
5461 (stap_integer_suffix): Likewise.
5462 (stap_register_prefix): Likewise.
5463 (stap_register_suffix): Likewise.
5464 (stap_register_indirection_prefix): Likewise.
5465 (stap_register_indirection_suffix): Likewise.
5466 (stap_gdb_register_prefix): Likewise.
5467 (stap_gdb_register_suffix): Likewise.
5468 (stap_is_single_operand): New function.
5469 (stap_parse_special_token): Likewise.
5470 (struct stap_parse_info): Forward declaration.
5471 * i386-tdep.c: Including headers needed to perform the parsing
5472 of SystemTap probes' arguments.
5473 (i386_stap_is_single_operand): New function.
5474 (i386_stap_parse_special_token): Likewise.
5475 (i386_elf_init_abi): Initializing proper fields used by SystemTap
5476 probes' arguments parser.
5477 * i386-tdep.h (i386_stap_is_single_operand): New function.
5478 (i386_stap_parse_special_token): Likewise.
5479 * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
5480 * mipsread.c (ecoff_sym_fns): Likewise.
5481 * objfiles.c (objfile_relocate1): Support relocation for static
5482 probes.
5483 * parse.c (prefixify_expression): Remove static declaration.
5484 (initialize_expout): Likewise.
5485 (reallocate_expout): Likewise.
5486 * parser-defs.h (initialize_expout): Declare function.
5487 (reallocate_expout): Likewise.
5488 (prefixify_expression): Likewise.
5489 * ppc-linux-tdep.c: Including headers needed to perform the parsing
5490 of SystemTap probes' arguments.
5491 (ppc_stap_is_single_operand): New function.
5492 (ppc_stap_parse_special_token): Likewise.
5493 (ppc_linux_init_abi): Initializing proper fields used by SystemTap
5494 probes' arguments parser.
5495 * probe.c: New file, for generic statically defined probe support.
5496 * probe.h: Likewise.
5497 * s390-tdep.c: Including headers needed to perform the parsing of
5498 SystemTap probes' arguments.
5499 (s390_stap_is_single_operand): New function.
5500 (s390_gdbarch_init): Initializing proper fields used by SystemTap
5501 probes' arguments parser.
5502 * somread.c (som_sym_fns): Add `sym_probe_fns' value.
5503 * stap-probe.c: New file, for SystemTap probe support.
5504 * stap-probe.h: Likewise.
5505 * symfile.h: Include `gdb_vecs.h'.
5506 (struct sym_probe_fns): New struct.
5507 (struct sym_fns) <sym_probe_fns>: New field.
5508 * symtab.c (init_sal): Initialize `probe' field.
5509 * symtab.h (struct probe): Forward declaration.
5510 (struct symtab_and_line) <probe>: New field.
5511 * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
5512 locations.
5513 (stop_tracing): Likewise.
5514 * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
5515
5516 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
5517 Tom Tromey <tromey@redhat.com>
5518
5519 * ax-gdb.c (gen_expr): Clean up code to handle internal variables
5520 and to compile agent expressions.
5521 * infrun.c (siginfo_make_value): New argument `ignore'.
5522 (siginfo_funcs): New struct.
5523 (_initialize_infrun): New argument when calling
5524 `create_internalvar_type_lazy'.
5525 * thread.c (thread_id_make_value): New argument `ignore'.
5526 (thread_funcs): New struct.
5527 (_initialize_thread): New argument when calling
5528 `create_internalvar_type_lazy'.
5529 * tracepoint.c (sdata_make_value): New argument `ignore'.
5530 (sdata_funcs): New struct.
5531 (_initialize_tracepoint): New argument when calling
5532 `create_internalvar_type_lazy'.
5533 * value.c (make_value): New struct.
5534 (create_internalvar_type_lazy): New argument `data'.
5535 (compile_internalvar_to_ax): New function.
5536 (value_of_internalvar): Properly handling `make_value' case.
5537 (clear_internalvar): Likewise.
5538 (show_convenience): Adding `TRY_CATCH' block.
5539 * value.h (internalvar_make_value): Delete, replace by...
5540 (struct internalvar_funcs): ... this.
5541 (create_internalvar_type_lazy) <fun>: Delete argument.
5542 (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
5543 (compile_internalvar_to_ax): New function.
5544 * windows-tdep.c (tlb_make_value): New argument `ignore'.
5545 (tlb_funcs): New struct.
5546 (_initialize_windows_tdep): New argument when calling
5547 `create_internalvar_type_lazy'.
5548
5549 2012-04-27 Mark Wielaard <mjw@redhat.com>
5550
5551 * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
5552 see whether it is an address or a constant offset from DW_AT_low_pc.
5553 (dwarf2_record_block_ranges): Likewise.
5554 (read_partial_die): Likewise.
5555
5556 2012-04-26 Mark Wielaard <mjw@redhat.com>
5557
5558 * MAINTAINERS (Write After Approval): Add myself to the list.
5559
5560 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
5561
5562 * proc-utils.h (proc_prettyprint_signalset): New prototype.
5563 (proc_prettyprint_signal): Likewise.
5564 (proc_prettyprint_faultset): Likewise.
5565 (proc_prettyprint_fault): Likewise.
5566 (proc_prettyprint_actionset): Likewise.
5567 (proc_prettyprint_flags): Move to new proc-flags.c section.
5568 (proc_prettyfprint_flags): New prototype.
5569 * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
5570 (proc_syscall, proc_cursig): Likewise.
5571 (proc_set_kill_on_last_close): Likewise.
5572 (proc_unset_kill_on_last_close): Likewise.
5573 (proc_set_watchpoint): Make static.
5574 (proc_delete_dead_threads): Likewise.
5575 (procfs_set_watchpoint): Likewise.
5576 (_initialize_procfs): Add prototype.
5577 * proc-events.c: Include proc-utils.h.
5578 (init_syscall_table): Make static.
5579 * proc-api.c (_initialize_proc_api): Add prototype.
5580 * proc-flags.c: Include proc-utils.h.
5581
5582 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
5583
5584 * configure.ac: Add AC_ARG_PROGRAM.
5585 * configure: Regenerate.
5586
5587 2012-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
5588
5589 Fix DW_AT_lower_bound defaults for DWARF-4+.
5590 * dwarf2read.c (read_subrange_type): Remove initialization of low and
5591 high. New variable low_default_is_valid. Implement DWARF-4+
5592 DW_AT_lower_bound defaults. Print complaint for DW_AT_lower_bound with
5593 no default by the DWARF standard.
5594
5595 2012-04-26 Maciej W. Rozycki <macro@mips.com>
5596 Maciej W. Rozycki <macro@codesourcery.com>
5597
5598 * infrun.c (handle_inferior_event): Move the check for return
5599 trampolines ahead of the check for function trampolines.
5600 * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
5601 * mips-tdep.c (mips_str_mips16_call_stub): New variable.
5602 (mips_str_mips16_ret_stub): Likewise.
5603 (mips_str_call_fp_stub): Likewise.
5604 (mips_str_call_stub): Likewise.
5605 (mips_str_fn_stub): Likewise.
5606 (mips_str_pic): Likewise.
5607 (mips_in_frame_stub): New function.
5608 (mips_unwind_pc): Return the return address rather than the PC
5609 if the PC of an intermediate frame is inside a call thunk.
5610 (mips_is_stub_suffix): New function.
5611 (mips_is_stub_mode): Likewise.
5612 (mips_get_mips16_fn_stub_pc): Likewise.
5613 (mips_skip_mips16_trampoline_code): Update to handle all the
5614 currently generated stub types. Don't recurse into __fn_stub
5615 thunks. Remove heuristics to handle stubs beyond etext/_etext.
5616 Use cooked register accesses.
5617 (mips_in_return_stub): Reintroduce function.
5618 (mips_skip_trampoline_code): Traverse trampolines recursively.
5619 (mips_gdbarch_init): Handle MIPS16 return trampolines.
5620
5621 2012-04-26 Joel Brobecker <brobecker@adacore.com>
5622
5623 GDB 7.4.1 released.
5624
5625 2012-04-26 Jonathan Larmour <jifl@eCosCentric.com>
5626
5627 * arm-tdep.h (VFP_REGISTER_SIZE): Define.
5628 * features/arm-with-m-vfp-d16.xml: New file. Describes
5629 Cortex-M with VFPv4-sp-d16 FPU register layout.
5630 * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
5631 * features/arm-with-m-vfp-d16.c: New. Generated from above.
5632 * arm-tdep.c: Include arm-with-m-vfp-d16.c.
5633 (arm-register_g_packet_guesses): Add vfp-d16 guess.
5634 (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
5635
5636 2012-04-25 Doug Evans <dje@google.com>
5637
5638 * cli/cli-decode.c (print_doc_line): Use stream instead of
5639 current_uiout.
5640
5641 2012-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
5642
5643 * features/arm-with-iwmmxt.c: Regenerate.
5644 * features/arm-with-m-fpa-layout.c: Likewise.
5645 * features/arm-with-m.c: Likewise.
5646 * features/arm-with-neon.c: Likewise.
5647 * features/arm-with-vfpv2.c: Likewise.
5648 * features/arm-with-vfpv3.c: Likewise.
5649 * features/mips-dsp-linux.c: Likewise.
5650 * features/mips-linux.c: Likewise.
5651 * features/mips64-dsp-linux.c: Likewise.
5652 * features/mips64-linux.c: Likewise.
5653 * features/s390-linux32.c: Likewise.
5654 * features/s390-linux32v1.c: Likewise.
5655 * features/s390-linux32v2.c: Likewise.
5656 * features/s390-linux64.c: Likewise.
5657 * features/s390-linux64v1.c: Likewise.
5658 * features/s390-linux64v2.c: Likewise.
5659 * features/s390x-linux64.c: Likewise.
5660 * features/s390x-linux64v1.c: Likewise.
5661 * features/s390x-linux64v2.c: Likewise.
5662 * features/tic6x-c62x-linux.c: Likewise.
5663 * features/tic6x-c62x.c: Likewise.
5664 * features/tic6x-c64x-linux.c: Likewise.
5665 * features/tic6x-c64x.c: Likewise.
5666 * features/tic6x-c64xp-linux.c: Likewise.
5667 * features/tic6x-c64xp.c: Likewise.
5668 * target-descriptions.c: Only generate `field_type' and `type'
5669 variables when needed.
5670
5671 2012-04-25 Fredrik Hederstierna <fredrikh.hederstierna@securitas-direct.com>
5672
5673 * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
5674
5675 2012-04-25 Doug Evans <dje@google.com>
5676
5677 Initial pass at Go language support.
5678 * NEWS: Mention Go.
5679 * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
5680 go-valprint.c.
5681 (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
5682 (YYFILES): Add go-exp.c.
5683 (YYOBJ): Add go-exp.o.
5684 (local-maintainer-clean): Delete go-exp.c.
5685 * defs.h (enum language): Add language_go.
5686 * dwarf2read.c: #include "go-lang.h".
5687 (fixup_go_packaging): New function.
5688 (process_full_comp_unit): Call it when processing Go CUs.
5689 (dwarf2_physname): Add Go support.
5690 (read_file_scope): Handle missing language spec for GNU Go.
5691 (set_cu_language): Handle DW_LANG_Go.
5692 * go-exp.y: New file.
5693 * go-lang.h: New file.
5694 * go-lang.c: New file.
5695 * go-typeprint.c: New file.
5696 * go-valprint.c: New file.
5697 * symtab.c: #include "go-lang.h".
5698 (symbol_set_language): Handle language_go.
5699 (symbol_find_demangled_name, symbol_set_names): Ditto.
5700 (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
5701
5702 2012-04-24 Jim Meyering <meyering@redhat.com>
5703
5704 avoid a few strncpy-induced buffer overruns
5705 * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
5706 fname and psargs before trying to concatenate.
5707 * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
5708 "name" before applying strchr.
5709
5710 2012-04-25 Siva Chandra Reddy <sivachandra@google.com>
5711
5712 * CONTRIBUTE: Use unified diff instead of context diff when
5713 generating patches.
5714
5715 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
5716
5717 * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
5718 code. Handle JR.HB correctly.
5719
5720 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
5721
5722 * mips-tdep.c
5723 (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
5724 with the other MIPS16 helpers.
5725
5726 2012-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
5727
5728 * observer.sh: Conditionally declare `args', thus cleaning up
5729 unused instances of this variable.
5730
5731 2012-04-24 Yao Qi <yao@codesourcery.com>
5732
5733 Revert this patch to allow breakpoint always-inserted
5734 in record target.
5735 2011-12-05 Pedro Alves <pedro@codesourcery.com>
5736 * breakpoint.c: Include record.h.
5737 (breakpoints_always_inserted_mode): Return false when the record
5738 target is in use.
5739
5740 * breakpoint.c (iterate_over_bp_locations): New.
5741 * breakpoint.h: Declare.
5742 New typedef walk_bp_location_callback.
5743 * record.c (record_open): Call record_init_record_breakpoints.
5744 (record_sync_record_breakpoints): New.
5745 (record_init_record_breakpoints): New.
5746 * NEWS: Mention supporting breakpoint always-inserted mode in
5747 record target.
5748
5749 2012-04-24 Marc Khouzam <marc.khouzam@ericsson.com>
5750
5751 * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
5752 any thread.
5753
5754 2012-04-24 Yao Qi <yao@codesourcery.com>
5755
5756 * breakpoint.c (ep_is_catchpoint): Renamed to ...
5757 (is_catchpoint): ... it.
5758 (print_one_breakpoint_location): Caller update.
5759 * breakpoint.h: Update declaration.
5760
5761 2012-04-23 David S. Miller <davem@davemloft.net>
5762
5763 * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
5764
5765 2012-04-23 Tom Tromey <tromey@redhat.com>
5766
5767 * buildsym.c (add_free_pendings): Remove.
5768 * buildsym.h (add_free_pendings): Remove.
5769
5770 2012-04-23 Doug Evans <dje@google.com>
5771
5772 * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
5773 attr.u.unsnd instead of attr.u.addr.
5774 (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
5775 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
5776 DW_FORM_ref_udata.
5777 (dump_die_shallow): Update cases DW_FORM_ref_addr,
5778 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4. Add cases DW_FORM_ref8,
5779 DW_FORM_ref_udata.
5780 (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
5781
5782 2012-04-23 Maciej W. Rozycki <macro@codesourcery.com>
5783
5784 * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
5785 (mips_o32_return_value): Likewise.
5786 (mips_o64_return_value): Likewise.
5787
5788 2012-04-21 Paul Hilfinger <hilfinger@adacore.com>
5789
5790 * ada-lang.c (ada_evaluate_subexp): Add cases for
5791 TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
5792 their treatment in eval.c.
5793
5794 2012-04-21 David S. Miller <davem@davemloft.net>
5795
5796 * sparc-tdep.c (X_DISP10): Define.
5797 (sparc_analyze_control_transfer): Handle compare-and-branch.
5798
5799 2012-04-21 Jonathan Larmour <jifl@eCosCentric.com>
5800
5801 * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
5802 * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
5803
5804 2012-04-20 Nigel Stephens <nigel@mips.com>
5805 Maciej W. Rozycki <macro@codesourcery.com>
5806
5807 * mips-tdep.c (mips_float_register_p): New function.
5808 (mips_convert_register_float_case_p): Use mips_float_register_p.
5809 (mips_register_type): Likewise.
5810 (mips_print_register): Likewise.
5811 (print_gp_register_row): Likewise.
5812 (mips_print_registers_info): Likewise.
5813
5814 2012-04-20 Shun-Yen Lu <dark.asparagus@gmail.com>
5815
5816 * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
5817 of mips16 symbols.
5818
5819 2012-04-20 Andrew Pinski <apinski@cavium.com>
5820
5821 * MAINTAINERS (Write After Approval): Add myself to the list.
5822
5823 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
5824
5825 * MAINTAINERS: Update my e-mail address.
5826
5827 2012-04-20 Pedro Alves <palves@redhat.com>
5828
5829 * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
5830 $srcdir.
5831 * configure: Regenerate.
5832
5833 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
5834
5835 * cp-support.h: Include `gdb_vecs.h'. Delete `const_char_ptr' VEC
5836 declaration.
5837 * gdb_vecs.h: Declare `const_char_ptr' VEC.
5838
5839 2012-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5840
5841 Fix compilation compatibility with python-2.4
5842 * python/py-type.c (convert_field): Cast ADDRSTRING for
5843 PyObject_SetAttrString as non-const. New comment.
5844
5845 2012-04-19 Tom Tromey <tromey@redhat.com>
5846
5847 * top.c (quit_target): Use all_cleanups.
5848 * main.c (captured_command_loop): Use all_cleanups.
5849 * exceptions.c (throw_exception): Use all_cleanups.
5850
5851 2012-04-19 Pedro Alves <palves@redhat.com>
5852
5853 * Makefile.in (GNULIB_BUILDDIR): New.
5854 (LIBGNU, INCGNU, GNULIB_H): Adjust.
5855 (SUBDIRS): Add $(GNULIB_BUILDDIR).
5856 (CLEANDIRS). Remove gnulib/import.
5857 (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
5858 (all-lib): Ditto.
5859 (distclean): Remove the $(GNULIB_BUILDDIR) directory.
5860 (gnulib/import/Makefile): Replace gnulib/import with
5861 $(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
5862 (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
5863 (aclocal_m4_deps): Remove the gnulib dependencies. Add
5864 acx_configure_dir.m4.
5865 * acinclude.m4: Include acx_configure_dir.m4.
5866 * acx_configure_dir.m4: New file.
5867 * aclocal.m4: Regenerate.
5868 * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
5869 calls. Configure gnulib using ACX_CONFIGURE_DIR.
5870 (GNULIB): New variable.
5871 (GNULIB_STDINT_H): Adjust.
5872 (AC_OUTPUT): Don't output gnulib/Makefile.
5873 * gdb/defs.h: Include build-gnulib/config.h.
5874 * aclocal.m4: Regenerate.
5875 * config.in: Regenerate.
5876 * configure: Regenerate.
5877
5878 * gnulib/Makefile.in: New file.
5879 * gnulib/configure.ac: New file.
5880 * gnulib/aclocal.m4: New file.
5881 * gnulib/config.in: New file.
5882 * gnulib/configure: New file.
5883 * gnulib/: Re-run gnulib-tool to adjust.
5884
5885 2012-04-19 Doug Evans <dje@google.com>
5886
5887 * cleanups.h (struct cleanup): Move to cleanups.c.
5888 (make_cleanup_dtor_ftype): New typedef.
5889 (make_cleanup_dtor): Use it.
5890 (ALL_CLEANUPS): Replace with ...
5891 (all_cleanups): ... this. Declare. All uses updated.
5892 * cleanups.c: #include "gdb_assert.h".
5893 (sentinel_cleanup): New static global.
5894 (SENTINEL_CLEANUP): Define.
5895 (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
5896 (make_my_cleanup2): Assert result is non-NULL.
5897 (all_cleanups): New function.
5898 (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
5899 of NULL.
5900
5901 2012-04-19 Pedro Alves <palves@redhat.com>
5902
5903 * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
5904 Adjust paths to gnulib imported files.
5905
5906 2012-04-19 Pedro Alves <palves@redhat.com>
5907
5908 * gnulib/: Move whole directory ...
5909 * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
5910 * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
5911 (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
5912 (aclocal_m4_deps): Adjust.
5913 * aclocal.m4: Regenerate.
5914 * configure: Regenerate.
5915 * configure.ac: Adjust AC_OUTPUT output.
5916
5917 2012-04-19 Yao Qi <yao@codesourcery.com>
5918
5919 * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
5920 (vec.o): New rule.
5921 * vec.c: Move it ...
5922 * common/vec.c: ... here.
5923 * vec.h: Move it ...
5924 * common/vec.h: ... here.
5925
5926 2012-04-19 Yao Qi <yao@codesourcery.com>
5927
5928 * gdb-code-style.el: New.
5929
5930 2012-04-18 Pedro Alves <palves@redhat.com>
5931
5932 Update gnulib from latest git.
5933 (639ea5ae15e39fe48d43e04864b2997301e4b969)
5934
5935 * gnulib/Makefile.am: Update.
5936 * gnulib/dummy.c: Update.
5937 * gnulib/extra/arg-nonnull.h: Update.
5938 * gnulib/extra/c++defs.h: Update.
5939 * gnulib/extra/update-copyright: Update.
5940 * gnulib/extra/warn-on-use.h: Update.
5941 * gnulib/inttypes.in.h: Update.
5942 * gnulib/m4/00gnulib.m4: Update.
5943 * gnulib/m4/extensions.m4: Update.
5944 * gnulib/m4/gnulib-cache.m4: Update.
5945 * gnulib/m4/gnulib-common.m4: Update.
5946 * gnulib/m4/gnulib-comp.m4: Update.
5947 * gnulib/m4/gnulib-tool.m4: Update.
5948 * gnulib/m4/include_next.m4: Update.
5949 * gnulib/m4/inttypes-pri.m4: Update.
5950 * gnulib/m4/inttypes.m4: Update.
5951 * gnulib/m4/longlong.m4: Update.
5952 * gnulib/m4/memchr.m4: Update.
5953 * gnulib/m4/memmem.m4: Update.
5954 * gnulib/m4/mmap-anon.m4: Update.
5955 * gnulib/m4/multiarch.m4: Update.
5956 * gnulib/m4/onceonly.m4: Update.
5957 * gnulib/m4/stddef_h.m4: Update.
5958 * gnulib/m4/stdint.m4: Update.
5959 * gnulib/m4/string_h.m4: Update.
5960 * gnulib/m4/warn-on-use.m4: Update.
5961 * gnulib/m4/wchar_h.m4: Update.
5962 * gnulib/m4/wchar_t.m4: Update.
5963 * gnulib/m4/wint_t.m4: Update.
5964 * gnulib/memchr.c: Update.
5965 * gnulib/memmem.c: Update.
5966 * gnulib/stddef.in.h: Update.
5967 * gnulib/stdint.in.h: Update.
5968 * gnulib/str-two-way.h: Update.
5969 * gnulib/string.in.h: Update.
5970 * gnulib/wchar.in.h: Update.
5971
5972 * gnulib/extra/arg-nonnull.h: Delete.
5973 * gnulib/extra/c++defs.h: Delete.
5974 * gnulib/extra/warn-on-use.h: Delete.
5975 * gnulib/m4/wchar_h.m4: Delete.
5976 * gnulib/m4/wint_t.m4: Delete.
5977 * gnulib/wchar.in.h: Delete.
5978
5979 * gnulib/extra/snippets/arg-nonnull.h: New.
5980 * gnulib/extra/snippets/c++defs.h: New.
5981 * gnulib/extra/snippets/warn-on-use.h: New.
5982
5983 * aclocal.m4: Regenerate.
5984 * config.in: Regenerate.
5985 * configure: Regenerate.
5986 * gnulib/Makefile.in: Regenerate.
5987
5988 2012-04-18 Pedro Alves <palves@redhat.com>
5989
5990 Reimport the update-copyright module from gnulib
5991 (250b80067c1e1d8faa0c42fb572f721975b929c5).
5992
5993 * configure: Regenerate.
5994 * gnulib/Makefile.am: Update.
5995 * gnulib/Makefile.in: Regenerate.
5996 * gnulib/extra/update-copyright: Update.
5997 * gnulib/m4/gnulib-cache.m4: Update.
5998 * gnulib/m4/gnulib-comp.m4: Update.
5999
6000 2012-04-18 Tristan Gingold <gingold@adacore.com>
6001
6002 * configure.ac (aix): Put -lpthread into libs.
6003 * configure: Regenerate.
6004
6005 2012-04-18 Tom Tromey <tromey@redhat.com>
6006
6007 * linespec.c (convert_linespec_to_sals): Don't use
6008 SYMBOL_OBJ_SECTION.
6009 (compare_msymbols): Arguments are minsym_and_objfile, not
6010 minimal_symbol*. Don't use SYMBOL_OBJ_SECTION.
6011
6012 2012-04-18 Pedro Alves <palves@redhat.com>
6013
6014 Revert gnulib/ part of:
6015 2011-01-01 Joel Brobecker <brobecker@adacore.com>
6016 Copyright year update in most files (performed by copyright.sh).
6017
6018 2012-04-18 Jan Kratochvil <jan.kratochvil@redhat.com>
6019
6020 Fix 64-bit constants on 32-bit hosts.
6021 * dwarf2read.c (read_unsigned_leb128): Change declaration return type
6022 from unsigned long to ULONGEST.
6023 (read_signed_leb128): Change declaration return type from long to
6024 LONGEST.
6025 (dwarf2_const_value_attr): Change declaration parameter value from long
6026 to LONGEST.
6027 (dwarf2_compute_name): Change variable value from long to LONGEST.
6028 (read_unsigned_leb128): Change return type, variable result and some
6029 casts from unsigned long to ULONGEST.
6030 (read_signed_leb128): Change return type, variable result and some
6031 casts from long to LONGEST.
6032 (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
6033 value from long to LONGEST.
6034 (dwarf2_const_value): Change variable value from long to LONGEST.
6035 * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
6036 plongest and hex_string.
6037 * symtab.h (struct general_symbol_info): Change ivalue from long to
6038 LONGEST, remove the comment.
6039 * tracepoint.c (validate_actionline, collect_symbol, scope_info):
6040 Change SYMBOL_VALUE format strings to use plongest and hex_string.
6041
6042 2012-04-18 Siddhesh Poyarekar <siddhesh@redhat.com>
6043
6044 PR symtab/7259:
6045 * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
6046 * ada-lang.c (ada_discrete_type_high_bound)
6047 (ada_discrete_type_low_bound): Fix function comment. Use
6048 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6049 (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
6050 (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6051 * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
6052 Use TYPE_FIELD_ENUMVAL.
6053 * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
6054 (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6055 * c-typeprint.c (c_type_print_base): Move variable lastval to inner
6056 block, change it to LONGEST. Use TYPE_FIELD_ENUMVAL for
6057 TYPE_CODE_ENUM.
6058 * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
6059 * dwarf2read.c (process_enumeration_scope): Likewise.
6060 * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
6061 field.bitpos.
6062 (class StructMainTypePrettyPrinter): Support also
6063 FIELD_LOC_KIND_ENUMVAL.
6064 * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
6065 TYPE_CODE_ENUM.
6066 (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6067 (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
6068 * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
6069 (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment. New
6070 field enumval.
6071 (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
6072 accommodate enumval.
6073 (struct call_site): Adjust loc_kind to accommodate enumval.
6074 (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
6075 (TYPE_FIELD_ENUMVAL): New macros.
6076 * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
6077 * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
6078 TYPE_CODE_ENUM.
6079 * p-typeprint.c (pascal_type_print_base): Likewise.
6080 * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
6081 enumval.
6082 * python/lib/gdb/types.py (make_enum_dict): Likewise.
6083 * python/py-type.c (convert_field): New variable addrstring. Use
6084 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6085 (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
6086 * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
6087 * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
6088 TYPE_CODE_ENUM.
6089 * valprint.c (generic_val_print): Likewise.
6090
6091 2012-04-17 Doug Evans <dje@google.com>
6092
6093 * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
6094
6095 * dwarf2read.c: Whitespace fixes.
6096 (lookup_signatured_type): Tweak comment.
6097 (get_die_type_at_offset): Fix comment.
6098
6099 2012-04-17 Joel Brobecker <brobecker@adacore.com>
6100
6101 * xcoffread.c (xcoff_secnum_to_sections): New function.
6102 (secnum_to_section, secnum_to_bfd_section): Reimplement
6103 using xcoff_secnum_to_sections. Rename "secnum" parameter
6104 into "n_scnum".
6105 (RECORD_MINIMAL_SYMBOL): Delete.
6106 (record_minimal_symbol): New function.
6107 (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
6108 by call to record_minimal_symbol and set misc_func_recorded
6109 to 1. Set last_csect_sec to the XCOFF section index instead
6110 of GDB's section_offset index. Update calls to
6111 prim_record_minimal_symbol_and_info to pass the BFD section
6112 as well.
6113
6114 2012-04-17 Joel Brobecker <brobecker@adacore.com>
6115
6116 * xcoffread.c (read_xcoff_symtab): Delete variables
6117 last_csect_val and last_csect_sec and associated code.
6118
6119 2012-04-17 Doug Evans <dje@google.com>
6120
6121 * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
6122 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
6123 * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
6124 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
6125
6126 * cleanups.h: New file.
6127 * cleanups.c: New file.
6128 * Makefile.in (SFILES): Add cleanups.c.
6129 (HFILES_NO_SRCDIR): Add cleanups.h.
6130 (COMMON_OBS): Add cleanups.o.
6131 * defs.h (struct cleanup): Moved to cleanups.h.
6132 (do_cleanups,do_final_cleanups): Ditto.
6133 (discard_cleanups,discard_final_cleanups): Ditto
6134 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
6135 (save_cleanups,save_final_cleanups): Ditto.
6136 (restore_cleanups,restore_final_cleanups): Ditto.
6137 (null_cleanup): Ditto.
6138 (make_my_cleanup,make_my_cleanup2): Ditto.
6139 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
6140 * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
6141 (do_cleanups,do_final_cleanups): Ditto.
6142 (discard_cleanups,discard_final_cleanups): Ditto
6143 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
6144 (save_cleanups,save_final_cleanups): Ditto.
6145 (restore_cleanups,restore_final_cleanups): Ditto.
6146 (null_cleanup): Ditto.
6147 (make_my_cleanup,make_my_cleanup2): Ditto.
6148 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
6149
6150 * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
6151 make_my_cleanup.
6152 (make_cleanup_dyn_string_delete): Ditto.
6153 (make_cleanup_ui_file_delete): Ditto.
6154 (make_cleanup_ui_out_redirect_pop): Ditto.
6155 (make_cleanup_free_section_addr_info): Ditto.
6156 (make_cleanup_restore_integer): Ditto.
6157 (make_cleanup_unpush_target): Ditto.
6158 (make_cleanup_value_free_to_mark): Ditto.
6159 (make_cleanup_value_free): Ditto.
6160 (make_cleanup_free_so): Ditto.
6161
6162 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6163
6164 New option "set debug auto-load".
6165 * NEWS: New commands "set debug auto-load" and "show debug auto-load".
6166 * auto-load.c (debug_auto_load, show_debug_auto_load: New.
6167 (auto_load_safe_path_vec_update)
6168 (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
6169 if DEBUG_AUTO_LOAD.
6170 (file_is_auto_load_safe): New parameters debug_fmt and ....
6171 Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
6172 (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
6173 caller by explanatory string.
6174 (_initialize_auto_load): Register "set debug auto-load".
6175 * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
6176 and ....
6177 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
6178 (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
6179 by explanatory string.
6180 * main.c (captured_main): Likewise.
6181 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
6182 (source_section_scripts): Likewise.
6183
6184 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6185
6186 New option "set auto-load safe-path".
6187 * NEWS: New commands "set auto-load safe-path"
6188 and "show auto-load safe-path".
6189 * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
6190 (auto_load_safe_path, auto_load_safe_path_vec)
6191 (auto_load_safe_path_vec_update, set_auto_load_safe_path)
6192 (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
6193 (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
6194 (source_gdb_script_for_objfile): New variable is_safe. Call
6195 file_is_auto_load_safe. Return if it is not.
6196 (struct loaded_script): New field loaded.
6197 (maybe_add_script): Add parameter loaded. Initialize SLOT with it.
6198 (print_script): Use LOADED indicator instead of FULL_PATH. Change
6199 output "Missing" to "No".
6200 (_initialize_auto_load): New variable cmd. Initialize
6201 auto_load_safe_path. Register "set auto-load safe-path",
6202 "show auto-load safe-path" and "add-auto-load-safe-path".
6203 * auto-load.h (maybe_add_script): Add parameter loaded.
6204 (file_is_auto_load_safe): New declaration.
6205 * config.in: Regenerate.
6206 * configure: Regenerate.
6207 * configure.ac: New parameters --with-auto-load-safe-path
6208 and --without-auto-load-safe-path.
6209 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
6210 (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
6211 * main.c (captured_main): Check file_is_auto_load_safe for
6212 LOCAL_GDBINIT.
6213 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
6214 variable is_safe. Call file_is_auto_load_safe. Return if it is not.
6215 (source_section_scripts): Call file_is_auto_load_safe. Return if it is
6216 not.
6217
6218 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6219
6220 auto-load: Implementation.
6221 * NEWS: New descriptions for "info auto-load",
6222 "info auto-load gdb-scripts", "info auto-load python-scripts",
6223 "info auto-load local-gdbinit" and "info auto-load libthread-db".
6224 Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
6225 and "show auto-load-scripts". New description for "set auto-load",
6226 "show auto-load", "set auto-load gdb-scripts",
6227 "show auto-load gdb-scripts", "set auto-load python-scripts",
6228 "show auto-load python-scripts", "set auto-load local-gdbinit",
6229 "show auto-load local-gdbinit", "set auto-load libthread-db" and
6230 "show auto-load libthread-db".
6231 * auto-load.c: Remove include python/python-internal.h. Add includes
6232 exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
6233 cli/cli-setshow.h.
6234 (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
6235 (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
6236 (gdbpy_global_auto_load): Rename to ...
6237 (global_auto_load): ... here.
6238 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
6239 (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
6240 (script_language_gdb, source_gdb_script_for_objfile): New.
6241 (struct loaded_script): New field language.
6242 (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
6243 LANGUAGE.
6244 (maybe_add_script): Add parameter language. Drop redundant
6245 entry.full_path initialization. Initialize entry.language and
6246 (*slot)->language.
6247 (auto_load_objfile_script): Change parameter suffix to language.
6248 Remove the call of maybe_add_script.
6249 Call language->source_script_for_objfile.
6250 (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
6251 New.
6252 (collect_matching_scripts): Adjust it for
6253 struct collect_matching_scripts_data.
6254 (auto_load_info_scripts_pattern_nl): New variable.
6255 (info_auto_load_scripts): Rename to ...
6256 (auto_load_info_scripts): ... here, add parameter language. Adjust it
6257 for struct collect_matching_scripts_data.
6258 (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
6259 (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
6260 (auto_load_show_cmdlist_get, info_auto_load_cmd)
6261 (auto_load_info_cmdlist_get): New.
6262 (_initialize_auto_load): Move add_info of "auto-load-scripts" to
6263 python/py-auto-load.c. New installment for "set auto-load gdb-scripts",
6264 "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
6265 "info auto-load local-gdbinit".
6266 * auto-load.h (struct script_language): New.
6267 (gdbpy_global_auto_load): Rename to ...
6268 (global_auto_load): ... here.
6269 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
6270 (auto_load_local_gdbinit_loaded): New declarations.
6271 (maybe_add_script): New parameter language.
6272 (auto_load_objfile_script): Change parameter suffix to language.
6273 (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
6274 (auto_load_info_scripts, auto_load_set_cmdlist_get)
6275 (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
6276 declarations.
6277 * linux-thread-db.c: Include auto-load.h and ctype.h.
6278 (auto_load_thread_db, show_auto_load_thread_db): New.
6279 (struct thread_db_info): New field filename.
6280 (delete_thread_db_info): Call xfree for FILENAME.
6281 (try_thread_db_load): Initialize FILENAME.
6282 (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
6283 if !AUTO_LOAD_THREAD_DB.
6284 (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
6285 (_initialize_thread_db): Install auto_load_thread_db
6286 as "set auto-load libthread-db" and install info_auto_load_libthread_db
6287 as "info auto-load libthread-db".
6288 * main.c (captured_main): Rename gdbpy_global_auto_load to
6289 global_auto_load. Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
6290 AUTO_LOAD_LOCAL_GDBINIT_LOADED.
6291 (print_gdb_help): Extend the help for 'local init file'.
6292 * python/py-auto-load.c: Remove a comment about gdb scripts extension.
6293 (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
6294 (auto_load_scripts): Rename to ...
6295 (auto_load_python_scripts): ... here, update the comment.
6296 (gdbpy_load_auto_script_for_objfile): New declaration.
6297 (show_auto_load_python_scripts, script_language_python)
6298 (gdbpy_load_auto_script_for_objfile): New.
6299 (source_section_scripts): Refactor the code.
6300 (load_auto_scripts_for_objfile): Rename to ...
6301 (gdbpy_load_auto_scripts_for_objfile): ... here, update the
6302 auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
6303 (info_auto_load_python_scripts): New.
6304 (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
6305 Rename "set auto-load-scripts" to "set auto-load python-scripts".
6306 Register "set auto-load-scripts" as its deprecated alias. Register
6307 "info auto-load python-scripts". Register "info auto-load-scripts" as
6308 its deprecated alias.
6309 (load_auto_scripts_for_objfile): Rename to ...
6310 (gdbpy_load_auto_scripts_for_objfile): ... here.
6311 * python/python.h (load_auto_scripts_for_objfile): Rename to ...
6312 (gdbpy_load_auto_scripts_for_objfile): ... here.
6313
6314 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6315
6316 auto-load: Move files.
6317 * Makefile.in (SFILES): Add auto-load.c.
6318 (HFILES_NO_SRCDIR): Add auto-load.h.
6319 (COMMON_OBS): Add auto-load.o.
6320 (distclean): Change .gdbinit for gdb-gdb.gdb.
6321 * auto-load.c: New file, with parts from python/py-auto-load.c.
6322 * auto-load.h: New file, with parts from python/python.h.
6323 * configure: Regenerate.
6324 * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
6325 * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
6326 * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
6327 * main.c: Include auto-load.h.
6328 * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
6329 command.h, observer.h and progspace.h to auto-load.c. Add include
6330 auto-load.h.
6331 (gdbpy_global_auto_load, struct auto_load_pspace_info)
6332 (struct loaded_script, auto_load_pspace_data)
6333 (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
6334 (hash_loaded_script_entry, eq_loaded_script_entry)
6335 (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
6336 (maybe_add_script): Move to auto-load.c.
6337 (source_section_scripts): Change maybe_add_script parameters passing,
6338 use script_not_found_warning_print.
6339 (clear_section_scripts, auto_load_objfile_script)
6340 (auto_load_new_objfile, loaded_script_ptr)
6341 (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
6342 (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
6343 (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
6344 auto_load_new_objfile and info_auto_load_scripts initizations to
6345 auto-load.c.
6346 * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
6347
6348 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6349
6350 Code cleanup.
6351 * charset.c (find_charset_names): Remove variables ix and elt.
6352 Use free_char_ptr_vec.
6353 * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
6354 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
6355 debugdir_end. New variable debugdir_len.
6356 * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
6357 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
6358 declarations.
6359 * progspace.c (clear_program_space_solib_cache): Remove variables ix
6360 and elt. Use free_char_ptr_vec.
6361 * source.c (add_path): Remove variables argv, arg and argv_index.
6362 New variables dir_vec, back_to, ix and name.
6363 Use dirnames_to_char_ptr_vec_append. Use freeargv instead of
6364 make_cleanup_freeargv. Remove variable separator. Simplify the code
6365 no longer expecting DIRNAME_SEPARATOR.
6366 (openp): Remove variable p, p1 and len. New variables dir_vec,
6367 back_to, ix and dir. Use dirnames_to_char_ptr_vec. Simplify the code
6368 no longer expecting DIRNAME_SEPARATOR.
6369 * symfile.c (find_separate_debug_file): New variables debugdir_vec,
6370 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
6371 debugdir_end.
6372 * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
6373 (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
6374 (dirnames_to_char_ptr_vec): New functions.
6375
6376 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6377
6378 Code cleanup.
6379 * source.c (add_path): Remove always true conditional 'p == 0' and
6380 unindent its code block.
6381
6382 2012-04-17 Pedro Alves <palves@redhat.com>
6383
6384 * gdbtypes.h (FIELD_BITPOS): Rename to ...
6385 (FIELD_BITPOS_LVAL): ... this.
6386 (FIELD_BITPOS): New.
6387 (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
6388 * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
6389 * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
6390 SET_FIELD_BITPOS.
6391 * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
6392 SET_FIELD_BITPOS.
6393 * stabsread.c (read_cpp_abbrev, read_one_struct_field)
6394 (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
6395 * target-descriptions.c (tdesc_gdb_type): Adjust to use
6396 SET_FIELD_BITPOS.
6397
6398 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6399
6400 Do not rely on FIELD_LOC_KIND_BITPOS being zero.
6401 * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
6402 TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
6403 * gdbtypes.c (append_flags_type_flag): Likewise, twice.
6404 * jv-lang.c (java_link_class_type): Likewise, once.
6405 * stabsread.c (read_enum_type): Likewise.
6406
6407 2012-04-16 Yao Qi <yao@codesourcery.com>
6408
6409 * common/agent.c (agent_run_command): Add one more parameter `len'.
6410 Update callers.
6411 * common/agent.h: Update declaration.
6412 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
6413 Update.
6414 (linux_child_static_tracepoint_markers_by_strid): Ditto.
6415
6416 2012-04-14 Anton Gorenkov <xgsa@yandex.ru>
6417
6418 PR mi/13393
6419 * value.c (value_actual_type): New function.
6420 * value.h (value_actual_type): New declaration.
6421 * varobj.c (update_type_if_necessary): New function.
6422 (varobj_create): Call value_actual_type instead of
6423 value_type.
6424 (install_dynamic_child): distinct changed and type changed MI variable
6425 objects.
6426 (update_dynamic_varobj_children): Updated for install_dynamic_child
6427 change. All callers updated.
6428 (varobj_update): Support for MI variable object type change if
6429 the value changed and RTTI is used to determine the type.
6430 (create_child_with_value): Call value_actual_type instead of
6431 value_type.
6432 (adjust_value_for_child_access): Extended with a new parameter which
6433 specify whether the given value should be casted to enclosing type.
6434 All callers updated.
6435
6436 2012-04-14 Yao Qi <yao@codesourcery.com>
6437
6438 Import gnulib module inttypes from git
6439 (250b80067c1e1d8faa0c42fb572f721975b929c5)
6440 * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
6441 (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
6442 gnulib/m4/inttypes-pri.m4
6443 * aclocal.m4, config.in, configure: Regenerated.
6444 * gnulib/Makefile.am: Update.
6445 * gnulib/Makefile.in: Update.
6446 * gnulib/m4/gnulib-cache.m4: Update.
6447 * gnulib/m4/gnulib-comp.m4: Update.
6448 * gnulib/inttypes.in.h: New.
6449 * gnulib/m4/inttypes-pri.m4: New.
6450 * gnulib/m4/inttypes.m4: New.
6451
6452 2012-04-13 Luis Machado <lgustavo@codesourcery.com>
6453
6454 * infrun.c (resume): Update PC address to the real PC after
6455 preparing to do displaced stepping.
6456
6457 2012-04-12 Doug Evans <dje@google.com>
6458
6459 * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
6460 All callers updated.
6461
6462 2012-04-12 Mark Kettenis <kettenis@gnu.org>
6463
6464 * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
6465
6466 2012-04-12 Doug Evans <dje@google.com>
6467
6468 * dwarf2read.c (create_all_type_units): Renamed from
6469 create_debug_types_hash_table. All callers updated.
6470
6471 * dwarf2read.c (create_signatured_type_table_from_index): Rename
6472 local type_sig to sig_type, type_offset to type_offset_in_tu.
6473 (hash_signatured_type): Renamed from hash_type_signature,
6474 all callers updated.
6475 (eq_signatured_type): Renamed from eq_type_signature,
6476 all callers updated.
6477 (create_debug_types_hash_table): Rename local type_sig to sig_type.
6478 (process_enumeration_scope): Ditto.
6479 (lookup_signatured_type_at_offset): Ditto.
6480 (load_full_type_unit, read_signatured_type): Ditto.
6481
6482 2012-04-12 Yao Qi <yao@codesourcery.com>
6483
6484 * remote.c (async_remote_interrupt): Correct function name in
6485 debug message.
6486 (async_remote_interrupt_twice): Ditto.
6487
6488 2012-04-11 Yuanhui Zhang <asmwarrior@gmail.com>
6489
6490 * source.c (find_and_open_source): Consistently pass resulting
6491 full path through xfullpath.
6492
6493 2012-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6494
6495 Provide more specific displaced-stepping memory error message.
6496 * infrun.c (displaced_step_prepare): New variable status. Call
6497 target_read_memory instead of read_memory, provide more specific
6498 error message.
6499
6500 2012-04-11 Tristan Gingold <gingold@adacore.com>
6501
6502 PR gdb/13901
6503 * darwin-nat.c (darwin_execvp): Revert previous patch.
6504
6505 2012-04-11 Tristan Gingold <gingold@adacore.com>
6506
6507 PR gdb/13901
6508 * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
6509 in case of change.
6510
6511 2012-04-11 Tristan Gingold <gingold@adacore.com>
6512
6513 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
6514 warning.
6515
6516 2012-04-11 Siva Chandra Reddy <sivachandra@google.com>
6517
6518 New command 'explore' which helps explore values and types in
6519 scope.
6520 * NEWS: Add an entry about the new 'explore' command.
6521 * data-directory/Makefile.in: Add gdb/command/explore.py
6522 * python/lib/gdb/command/explore.py: Implemention of the 'explore'
6523 command using the GDB Python API.
6524
6525 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
6526
6527 * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
6528 extension in jump target calculation.
6529
6530 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
6531
6532 * mips-tdep.c (mips32_next_pc): Handle JALX.
6533
6534 2012-04-10 Yao Qi <yao@codesourcery.com>
6535
6536 * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
6537
6538 2012-04-10 Yao Qi <yao@codesourcery.com>
6539
6540 * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
6541 and gnulib/m4/gnulib-tool.m4.
6542
6543 2012-04-10 Doug Evans <dje@google.com>
6544
6545 * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
6546 (load_partial_dies): Clarify comment.
6547 (find_partial_die): Support rereading type units.
6548 Clarify CU handling, if we know offset is in CU, don't search for the
6549 containing CU. Add comment regarding memory waste.
6550
6551 2012-04-10 H.J. Lu <hongjiu.lu@intel.com>
6552
6553 * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
6554 i386/x32-avx and i386/x32-avx-linux.
6555 (i386/x32-expedite): New.
6556 (i386/x32-linux-expedite): Likewise.
6557 (i386/x32-avx-expedite): Likewise.
6558 (i386/x32-avx-linux-expedite): Likewise.
6559 ($(outdir)/i386/x32.dat): Likewise.
6560 ($(outdir)/i386/x32-linux.dat): Likewise.
6561 ($(outdir)/i386/x32-avx.dat): Likewise.
6562 ($(outdir)/i386/x32-avx-linux.dat): Likewise.
6563
6564 * features/i386/x32-avx-linux.xml: New file.
6565 * features/i386/x32-avx.xml: Likewise.
6566 * features/i386/x32-core.xml: Likewise.
6567 * features/i386/x32-linux.xml: Likewise.
6568 * features/i386/x32.xml: Likewise.
6569
6570 * features/i386/x32-avx-linux.c: New. Generated.
6571 * features/i386/x32-avx.c: Likewise.
6572 * features/i386/x32-linux.c: Likewise.
6573 * features/i386/x32.c: Likewise.
6574 * regformats/i386/x32-avx-linux.dat: Likewise.
6575 * regformats/i386/x32-avx.dat: Likewise.
6576 * regformats/i386/x32-linux.dat: Likewise.
6577 * regformats/i386/x32.dat: Likewise.
6578
6579 2012-04-10 Tristan Gingold <gingold@adacore.com>
6580
6581 * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
6582 code to kill the inferior.
6583
6584 2012-04-09 Mark Kettenis <kettenis@gnu.org>
6585
6586 * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
6587 defines.
6588 * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
6589 defines.
6590 * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
6591 (yyvsp): New defines.
6592 * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
6593 defines.
6594 * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
6595 defines.
6596 * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
6597 defines.
6598 * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
6599 defines.
6600 * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
6601 defines.
6602
6603 2012-04-09 Mark Kettenis <kettenis@gnu.org>
6604
6605 * sparc64-tdep.c (sparc64_store_arguments)
6606 (sparc64_store_arguments): Fix coding style.
6607
6608 2012-04-07 Mark Kettenis <kettenis@gnu.org>
6609
6610 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
6611 complex floats, adjust some related comments and tighten a related
6612 assertion.
6613 (sparc64_extract_return_value): Handle complex floats.
6614
6615 2012-04-07 Doug Evans <dje@google.com>
6616
6617 * dwarf2read.c (load_partial_dies): Change condition to assert.
6618
6619 2012-04-06 Doug Evans <dje@google.com>
6620
6621 * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
6622 "mov %rsp,%rbp".
6623
6624 2012-04-05 Kevin Buettner <kevinb@redhat.com>
6625
6626 * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
6627 fencepost error.
6628 (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
6629 (v850_gdbarch_init): Set `num_regs' as appropriate for the
6630 architecture.
6631
6632 2012-04-05 Keith Seitz <keiths@redhat.com>
6633
6634 * linespec.c (decode_compound): Remove.
6635 (enum offset_relative_sign): New enum.
6636 (struct line_offset): New struct.
6637 (struct linespec): New struct.
6638 (struct linespec_state): Move file_symtabs,
6639 user_filename, and user_function into struct linespec.
6640 Make result an anonymous struct holding vectors of
6641 symbolp and minsym_and_objfile_d.
6642 Add language member.
6643 (enum ls_token_type): New enum.
6644 (linespec_keywords): New array.
6645 (struct ls_token): New struct.
6646 (struct ls_parser): New struct.
6647 (linespec_lexer_lex_number): New function.
6648 (linespec_lexer_lex_keyword): New function.
6649 (is_ada_operator): New function.
6650 (skip_quote_char): New function.
6651 (copy_token_string): New function.
6652 (is_closing_quote_enclosed): New function.
6653 (find_parameter_list_end): New function.
6654 (linespec_lexer_lex_string): New function.
6655 (linespec_lexer_lex_one): New function.
6656 (linespec_lexer_consume_token): New function.
6657 (linespec_lexer_peek_token): New function.
6658 (cplusplus_error): Remove unused function.
6659 (find_methods): Update comment.
6660 (find_toplevel_char): Return const.
6661 (is_objc_method_format): Remove unused function.
6662 (find_toplevel_string): New function.
6663 (is_linespec_boundary): Remove.
6664 (symbol_not_found_error): New function.
6665 (find_method_overload_end): Remove function.
6666 (unexpected_linespec_error): New function.
6667 (keep_name_info): Remove.
6668 (linespec_parse_line_offset): New function.
6669 (linespec_parse_basic): New function.
6670 (canonicalize_linespec): New function.
6671 (decode_line_internal): Remove.
6672 (create_sals_line_offset): New function adapted from
6673 decode_all_digits.
6674 (convert_linespec_to_sals): New function.
6675 (parse_linespec): New function.
6676 (linespec_parser_new): New function.
6677 (linespec_state_destructor): Change parameter type to
6678 struct linespec_state *.
6679 Add language parameter.
6680 Remove freeing of moved members.
6681 (linespec_parser_delete): New function.
6682 (decode_line_full): Use parse_linespec and linespec_parser_new.
6683 (decode_line_1): Likewise.
6684 (decode_indirect): Rename to ...
6685 (linespec_expression_to_pc): ... this and rewrite
6686 to simply find CORE_ADDR, storing this result for later
6687 conversion to SALs.
6688 (locate_first_half): Remove.
6689 (deocde_objc): Add parameter LS.
6690 Initialize new struct collect_info members.
6691 Handle minimal symbols, too.
6692 (decode_compound): Delete.
6693 (lookup_prefix_sym): Rewrite.
6694 (compare_msymbols): New function.
6695 (find_method): Rewrite.
6696 Do not call cplusplus_error.
6697 (symtabs_from_filename): Rewrite.
6698 (collect_function_symbols): Delete.
6699 (find_function_symbols): Rewrite without ARGPTR-style
6700 processing.
6701 (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
6702 (decode_dollar): Adapted and renamed to ...
6703 (linespec_parse_variable): ... this.
6704 (find_linespec_symbols): New function.
6705 (decode_label): Adapted and renamed to ...
6706 (find_label_symbols): ... this.
6707 (decode_digits_list_mode): Add and use LS argument.
6708 (decode_digits_ordinary): Likewise.
6709 (collect_symbols): Do not collect SALs, just symbols and msymbols.
6710 If in list mode, allow any symbol class. Otherwise, only
6711 permit LOC_BLOCK symbols.
6712 (minsym_found): Update comments.
6713 (search_minsyms_for_name): Do not convert the matching symbol
6714 into a SAL. Simply push the symbol and objfile into the
6715 result vector.
6716 (decode_variable): Delete. Contents adapted into
6717 find_linespec_symbols.
6718
6719 * cp-support.c (SKIP_SPACE): Remove.
6720 (operator_tokens): Remove unused global.
6721 (cp_validate_operator): Remove.
6722 * cp-support.h (cp_validate_operator): Remove declaration.
6723
6724 2012-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
6725
6726 * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
6727 for TYPE_VPTR_FIELDNO.
6728 * valprint.c (valprint_check_validity): Make it global, move the
6729 function comment ...
6730 * value.h (valprint_check_validity): ... to this new declaration.
6731
6732 2012-04-02 Tristan Gingold <gingold@adacore.com>
6733
6734 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
6735 the STATE32 api for i386 state.
6736 (i386_darwin_store_inferior_registers): Likewise.
6737
6738 2012-04-02 Tristan Gingold <gingold@adacore.com>
6739
6740 * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
6741 SS offset.
6742 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
6743 format_string.
6744
6745 2012-04-02 Tristan Gingold <gingold@adacore.com>
6746
6747 PR gdb/13901
6748 * darwin-nat.c (darwin_execvp): Set binary preference.
6749
6750 2012-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6751
6752 * NEWS (set breakpoint condition-evaluation): Use imperative mood.
6753
6754 2012-03-30 Tom Tromey <tromey@redhat.com>
6755
6756 * python/python.c (gdbpy_decode_line): Move cleanup creation out
6757 of TRY_CATCH. Fix error handling.
6758 * python/py-value.c (convert_value_from_python): Move 'old'
6759 declaration to innermost scope.
6760
6761 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6762 Andrey Smirnov <andrew.smirnov@gmail.com>
6763
6764 -Wshadow warning fix.
6765 * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
6766 "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
6767 Adjust code accordingly.
6768
6769 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6770
6771 * ada-lang.c (symbol_completion_add): Rename parameter
6772 "encoded" into "encoded_p". Ajust code and documentation
6773 accordingly.
6774
6775 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6776 Andrey Smirnov <andrew.smirnov@gmail.com>
6777
6778 -Wshadow warning fix.
6779 * ada-lang.c (symbol_completion_add): Rename parameter
6780 "wild_match" into wild_match_p. Update code and documentation
6781 accordingly.
6782
6783 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6784
6785 * ada-lang.c (symbol_completion_match): Rename parameter
6786 "encoded" into "encoded_p". Ajust code and documentation
6787 accordingly.
6788
6789 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6790 Andrey Smirnov <andrew.smirnov@gmail.com>
6791
6792 -Wshadow warning fix.
6793 * ada-lang.c (symbol_completion_match): Rename parameter
6794 "wild_match" into "wild_match_p". Adjust code and function
6795 documentation accordingly.
6796
6797 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6798 Andrey Smirnov <andrew.smirnov@gmail.com>
6799
6800 -Wshadow warning fix.
6801 * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
6802 "symbol_info" into "info". Adjust code accordingly.
6803 (ada_lookup_symbol): Likewise.
6804
6805 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6806
6807 * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
6808 of this function's documentation.
6809
6810 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6811 Andrey Smirnov <andrew.smirnov@gmail.com>
6812
6813 -Wshadow warning fix.
6814 * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
6815 variable into "wild_match_p". Adjust code accordingly.
6816
6817 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6818 Andrey Smirnov <andrew.smirnov@gmail.com>
6819
6820 -Wshadow warning fix.
6821 * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
6822 parameter into "wild_match_p". Adjust code accordingly.
6823 Document this parameter in the function description.
6824
6825 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6826 Andrey Smirnov <andrew.smirnov@gmail.com>
6827
6828 -Wshadow warning fix.
6829 * ada-lang.c (add_symbols_from_enclosing_procs): Rename
6830 "wild_match" parameter to "wild_match_p" (-Wshadow).
6831
6832 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6833
6834 * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
6835 in function documentation.
6836
6837 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6838 Andrey Smirnov <andrew.smirnov@gmail.com>
6839
6840 -Wshadow warning fix.
6841 * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
6842 variable into wild_match_p. Adjust code accordingly.
6843
6844 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6845 Andrey Smirnov <andrew.smirnov@gmail.com>
6846
6847 * ada-valprint.c (ada_val_print_1): Move the code handling
6848 TYPE_CODE_ENUM inside its own lexical block. Declare
6849 variables len and val there, instead of in the function's
6850 top level block. Avoid declaring deref_val again in a way
6851 that shadows another variable of the same name declared
6852 in one of the up-level blocks. Just re-use the up-level
6853 variable instead.
6854
6855 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6856
6857 * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
6858 Replace block_found argument by symbol_info. Adjust
6859 implementation accordingly. Add function documentation.
6860 (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
6861 Fix documentation.
6862 * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
6863 * ada-exp.y (write_object_renaming): Adjust to new
6864 ada_lookup_encoded_symbol API.
6865
6866 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6867
6868 * ada-lang.h (struct ada_symbol_info): Reformat. Improve
6869 documentation.
6870
6871 2012-03-28 Rathish C <rathish.c@kpitcummins.com>
6872
6873 * v850-tdep.c: Add the enum values for mpu and fpu registers.
6874 (v850_register_name): Add the mpu and fpu register names.
6875 (v850e_register_name): Add the mpu and fpu register names.
6876 (v850e2_register_name): New function.
6877 (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
6878 bfd_mach_v850e2v3.
6879
6880 2012-03-28 Joel Brobecker <brobecker@adacore.com>
6881
6882 * NEWS: Add entry for Ada varobj support.
6883
6884 2012-03-28 Joel Brobecker <brobecker@adacore.com>
6885
6886 * varobj.c (default_value_is_changeable_p): New function,
6887 extracted from varobj_value_is_changeable_p. Add declaration.
6888 (ada_value_is_changeable_p): New function, extracted from
6889 varobj_value_is_changeable_p. Add declaration.
6890 (struct language_specific): New field "value_is_changeable_p".
6891 (languages): Add entries for new field.
6892 (varobj_create): Set language before calling install_new_value.
6893 (varobj_value_is_changeable_p): Reimplement to call the varobj's
6894 "value_is_changeable_p" language callback.
6895
6896 2012-03-28 Joel Brobecker <brobecker@adacore.com>
6897
6898 * ada-varobj.h, ada-varobj.c: New files.
6899 * Makefile.in (SFILES): Add ada-varobj.c.
6900 (HFILES_NO_SRCDIR): Add ada-varobj.h.
6901 (COMMON_OBS): Add ada-varobj.o.
6902
6903 2012-03-28 Joel Brobecker <brobecker@adacore.com>
6904
6905 * varobj.c (ada_value_has_mutated): Add declaration. New function.
6906 (struct language_specific): New field "value_has_mutated".
6907 (languages): Set field "value_has_mutated" in each entry of array.
6908 (varobj_value_has_mutated): New function.
6909 (varobj_udpdate): Add handling of type mutation.
6910 (value_of_root): Add handling of type mutation.
6911 (ada_value_has_mutated): New function.
6912
6913 2012-03-28 Pedro Alves <palves@redhat.com>
6914
6915 * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
6916 Always supply $fr0 as 0.0 and $fr1 as 1.0.
6917
6918 2012-03-28 Tom Tromey <tromey@redhat.com>
6919
6920 * python/py-inferior.c (infpy_read_memory): Remove cleanups and
6921 explicitly free 'buffer' on exit paths. Decref 'membuf_object'
6922 before returning.
6923
6924 2012-03-28 Tom Tromey <tromey@redhat.com>
6925
6926 * .dir-locals.el: New file.
6927
6928 2012-03-28 Pedro Alves <palves@redhat.com>
6929
6930 * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
6931
6932 2012-03-28 Joel Brobecker <brobecker@adacore.com>
6933
6934 * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
6935 handling for r0.
6936
6937 2012-03-27 Pedro Alves <palves@redhat.com>
6938
6939 Eliminate struct ui_stream.
6940
6941 * ui-out.h (struct ui_stream): Delete.
6942 (ui_out_field_stream): Adjust prototype.
6943 (ui_out_stream_new, ui_out_stream_delete)
6944 (make_cleanup_ui_out_stream_delete): Delete declarations.
6945 * ui-out.c (ui_out_field_stream): Change prototype to take a
6946 ui_file instead of a ui_stream. Adjust.
6947 (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
6948 (make_cleanup_ui_out_stream_delete): Delete.
6949 * breakpoint.c (print_breakpoint_location)
6950 (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
6951 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
6952 * disasm.c (dump_insns): Ditto.
6953 (do_mixed_source_and_assembly, do_assembly_only): Adjust
6954 prototype.
6955 (gdb_disassembly): Use ui_file/mem_fileopen instead of
6956 ui_stream/ui_out_stream_new.
6957 * infcmd.c (print_return_value): Ditto.
6958 * osdata.c (info_osdata_command): Don't allocate a local
6959 ui_stream.
6960 * stack.c (print_frame_arg, print_frame_args, print_frame): Use
6961 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
6962 * tracepoint.c (print_one_static_tracepoint_marker): Don't
6963 allocate a local ui_stream.
6964 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
6965 instead of ui_stream/ui_out_stream_new.
6966 (list_args_or_locals): Don't allocate a local ui_stream.
6967 * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
6968 (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
6969 ui_stream/ui_out_stream_new.
6970 * cli/cli-setshow.c (do_setshow_command): Ditto.
6971
6972 2012-03-27 Oza Pawandeep <oza.pawandeep@gmail.com>
6973
6974 * arm-linux-tdep.c (arm_linux_init_abi): Call
6975 set_gdbarch_process_record. Initialize `arm_swi_record' field.
6976 * arm-tdep.c (arm_process_record): New function.
6977 (deallocate_reg_mem): New function.
6978 (decode_insn): New function.
6979 (thumb_record_branch): New function.
6980 (thumb_record_ldm_stm_swi(): New function.
6981 (thumb_record_misc): New function.
6982 (thumb_record_ld_st_stack): New function.
6983 (thumb_record_ld_st_imm_offset): New function.
6984 (thumb_record_ld_st_reg_offset(): New function.
6985 (thumb_record_add_sub_cmp_mov): New function.
6986 (thumb_record_shift_add_sub): New function.
6987 (arm_record_coproc_data_proc): New function.
6988 (arm_record_coproc): New function.
6989 (arm_record_b_bl): New function.
6990 (arm_record_ld_st_multiple): New function.
6991 (arm_record_ld_st_reg_offset): New function.
6992 (arm_record_ld_st_imm_offset): New function.
6993 (arm_record_data_proc_imm): New function.
6994 (arm_record_data_proc_misc_ld_str): New function.
6995 (arm_record_extension_space): New function.
6996 (arm_record_strx): New function.
6997 (sbo_sbz): New function.
6998 (struct insn_decode_record): New structure for arm insn record.
6999 (REG_ALLOC): New macro for reg allocations.
7000 (MEM_ALLOC): New macro for memory allocations.
7001 * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
7002
7003 2012-03-27 Andreas Schwab <schwab@linux-m68k.org>
7004
7005 * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
7006 (store_register): Likewise.
7007
7008 2012-03-26 Oza Pawandeep <oza.pawandeep@gmail.com>
7009
7010 * MAINTAINERS (Write After Approval): Add myself to the list.
7011
7012 2012-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
7013
7014 * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
7015 Describe also the option "auto".
7016
7017 2012-03-22 Richard Henderson <rth@redhat.com>
7018
7019 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
7020 * sparc-nat.c (sparc_xfer_wcookie): Make static.
7021
7022 2012-03-22 Richard Henderson <rth@redhat.com>
7023
7024 * jit.c (jit_read_code_entry): Compute alignment and offset of
7025 int64_t member before computing entry_size.
7026
7027 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
7028
7029 Python scripting: Add new method Value.referenced_value to
7030 gdb.Value which can dereference pointer as well as reference
7031 values.
7032 * NEWS: Add entry under 'Python scripting' about the new method
7033 Value.referenced_value on gdb.Value objects.
7034 * python/py-value.c (valpy_referenced_value): New function
7035 defining a new method on gdb.Value objects which can dereference
7036 pointer and reference values.
7037
7038 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
7039
7040 * MAINTAINERS (Write After Approval): Add myself to the list.
7041
7042 2012-03-21 Kevin Buettner <kevinb@redhat.com>
7043
7044 * symtab.c (skip_prologue_sal): Change test to check for "main()"
7045 in addition to "main".
7046
7047 2012-03-21 Joel Brobecker <brobecker@adacore.com>
7048
7049 * expression.h (op_name): Add declaration.
7050 * expprint.c (op_name): Remove declaration. Make non-static.
7051 * ax-gdb.c (gen_expr): Use op_name instead of op_string.
7052
7053 2012-03-21 Thomas Schwinge <thomas@codesourcery.com>
7054
7055 * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
7056 of struct siginfo.
7057 * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
7058 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
7059 * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
7060 (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
7061 (linux_nat_get_siginfo): Likewise.
7062 * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
7063 (linux_nat_get_siginfo): Likewise.
7064 * linux-tdep.c (linux_get_siginfo_type): Likewise.
7065 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
7066 * procfs.c (gdb_siginfo_t): Likewise.
7067
7068 2012-03-21 Mike Frysinger <vapier@gentoo.org>
7069
7070 * .gitignore: Ignore more files.
7071
7072 2012-03-20 Pedro Alves <palves@redhat.com>
7073
7074 * remote.c (remote_start_remote): Clear `rs->starting_up' on early
7075 returns.
7076
7077 2012-03-20 Yao Qi <yao@codesourcery.com>
7078
7079 * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
7080 comment.
7081
7082 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7083
7084 Code cleanupp: Use cu_offset and sect_offset compile time type checking.
7085 * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
7086 (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
7087 sect_offset.
7088 * dwarf2expr.h (cu_offset, sect_offset): New types.
7089 (struct dwarf_expr_context_funcs) <dwarf_call>
7090 (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
7091 sect_offset.
7092 (struct dwarf_expr_context) <len>: Improve the comment.
7093 (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
7094 cu_offset and sect_offset.
7095 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
7096 (dwarf_expr_get_base_type, needs_frame_dwarf_call)
7097 (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
7098 * dwarf2loc.h: Include dwarf2expr.h.
7099 (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
7100 and sect_offset.
7101 * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
7102 Improve the comment.
7103 (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
7104 (struct signatured_type, struct line_header, struct partial_die_info)
7105 (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
7106 (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
7107 (get_die_type_at_offset, create_cus_from_index)
7108 (create_signatured_type_table_from_index, dw2_get_file_names)
7109 (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
7110 (read_and_check_comp_unit_head, read_and_check_type_unit_head)
7111 (create_debug_types_hash_table, process_psymtab_comp_unit)
7112 (load_partial_comp_unit, create_all_comp_units)
7113 (partial_die_parent_scope, partial_die_full_name, skip_one_die)
7114 (load_full_comp_unit, dwarf2_physname, read_import_statement)
7115 (inherit_abstract_dies, read_func_scope, read_call_site_scope)
7116 (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
7117 (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
7118 (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
7119 (find_partial_die, read_attribute_value, lookup_die_type)
7120 (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
7121 (is_ref_attr): New function comment.
7122 (dwarf2_get_ref_die_offset): New function comment, new variable retval.
7123 Use cu_offset and sect_offset.
7124 (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
7125 (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
7126 (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
7127 (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
7128 (offset_and_type_hash, offset_and_type_eq, set_die_type)
7129 (get_die_type_at_offset, partial_die_hash, partial_die_eq)
7130 (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
7131 sect_offset.
7132
7133 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7134
7135 Code cleanup.
7136 * python/py-auto-load.c (source_section_scripts): New variable back_to.
7137 Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
7138 with xfree.
7139 (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
7140
7141 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7142
7143 * NEWS: Describe new options --init-command=FILE, -ix and
7144 --init-eval-command=COMMAND, -iex.
7145 * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
7146 CMDARG_INIT_COMMAND.
7147 (captured_main): New enum items OPT_IX and OPT_IEX. Add
7148 "init-command", "init-eval-command", "ix" and "iex" to the variable
7149 long_options. Handle OPT_IX and OPT_IEX. Process them from CMDARG_VEC.
7150 New comment for CMDARG_FILE and CMDARG_COMMAND processing.
7151 (print_gdb_help): Describe --init-command=FILE, -ix and
7152 --init-eval-command=COMMAND, -iex.
7153
7154 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7155
7156 Code cleanup.
7157 * main.c (struct cmdarg): Move it here from main. Add more comments.
7158 (cmdarg_s, VEC (cmdarg_s)): New.
7159 (main): Move struct cmdarg from here. New variables cmdarg_vec and
7160 cmdarg_p. Remove variables cmdsize and ncmd and their initialization.
7161 Install cleanup for cmdarg_vec. Update filling for options 'x' and
7162 'X'. Replace cmdarg processing by cmdarg_vec processing. Remove xfree
7163 of CMDARG.
7164
7165 2012-03-19 Tom Tromey <tromey@redhat.com>
7166
7167 * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
7168
7169 2012-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7170
7171 PR symtab/13777
7172 * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
7173 GCC >=4.5.
7174
7175 2012-03-16 Chris January <chris.january@allinea.com>
7176
7177 * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
7178 of clear.
7179
7180 2012-03-16 Chris January <chris.january@allinea.com>
7181
7182 * source.c (add_path): Use memmove instead of strcpy because the
7183 strings overlap.
7184
7185 2012-03-16 Joel Brobecker <brobecker@adacore.com>
7186
7187 * value.h (set_value_parent): Add declaration.
7188 * value.c (set_value_parent): New function.
7189 (value_address): If VALUE->PARENT is not NULL, then use it as
7190 the base address instead of VALUE->LOCATION.address.
7191 * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
7192 the same as OBJ's address. Adjust V's offset accordingly.
7193 Set V's parent.
7194
7195 2012-03-16 Gary Benson <gbenson@redhat.com>
7196
7197 PR breakpoints/10738
7198 * dwarf2read.c (use_deprecated_index_sections): New global.
7199 (struct partial_die_info): New member may_be_inlined.
7200 (read_partial_die): Set may_be_inlined where appropriate.
7201 (add_partial_subprogram): Add partial symbols for partial
7202 DIEs that may be inlined.
7203 (new_symbol_full): Add inlined subroutines to the current
7204 scope.
7205 (write_psymtabs_to_index): Bump version number.
7206 (dwarf2_read_index): Read only version 6 indices unless
7207 use_deprecated_index_sections is set.
7208 * linespec.c (symbol_and_data_callback): New structure.
7209 (iterate_inline_only): New function.
7210 (iterate_over_all_matching_symtabs): New argument
7211 "include_inline". If nonzero, also call the callback for
7212 symbols representing inlined subroutines.
7213 (lookup_prefix_sym): Pass extra argument to the above.
7214 (find_function_symbols): Likewise.
7215 (add_matching_symbols_to_info): Likewise.
7216 * NEWS: Mention that GDB can now set breakpoints on inlined
7217 functions.
7218
7219 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
7220
7221 * p-typeprint.c (pascal_type_print_method_args):
7222 Fix display of parameter of methods.
7223
7224 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
7225
7226 * amd64-windows-nat.c (_initialize_amd64_windows_nat):
7227 Add missing prototype.
7228
7229 2012-03-16 Yao Qi <yao@codesourcery.com>
7230 Jan Kratochvil <jan.kratochvil@redhat.com>
7231
7232 Fix false compilation warning.
7233 * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
7234
7235 2012-03-15 Jonathan Larmour <jifl@eCosCentric.com>
7236 Pedro Alves <pedro@codesourcery.com>
7237
7238 * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
7239 (arm_register_g_packet_guesses): New function.
7240 (arm_gdbarch_init): Don't force a target description with
7241 registers when the executable is detected as M-profile. Instead
7242 set gdbarch->tdep->is_m. Register `g' packet guesses.
7243 (_initialize_arm_tdep): Initialize the new target description.
7244 * features/arm-with-m-fpa-layout.xml: New description.
7245 * features/arm-with-m-fpa-layout.c: New, generated.
7246
7247 2012-03-15 Joel Brobecker <brobecker@adacore.com>
7248
7249 * breakpoint.c (breakpoint_xfer_memory): Add assertion.
7250 Update function description.
7251 (insert_bp_location): Do not wipe bl->target_info out.
7252 * mem-break.c: #include "gdb_string.h".
7253 (default_memory_insert_breakpoint): Do not call target_read_memory
7254 with a pointer to the breakpoint's shadow_contents buffer. Use
7255 a local buffer instead.
7256 * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
7257
7258 2012-03-15 Tom Tromey <tromey@redhat.com>
7259
7260 * NEWS: Mention "info vtbl", not "info vtable".
7261 * cp-support.c (info_vtbl_command): Fix comment.
7262 (_initialize_cp_support): Fix text.
7263
7264 2012-03-15 Tom Tromey <tromey@redhat.com>
7265
7266 * cp-valprint.c (cp_print_value_fields): Use
7267 print_function_pointer_address for vtable slot.
7268
7269 2012-03-15 Tom Tromey <tromey@redhat.com>
7270
7271 * gnu-v3-abi.c (struct value_and_voffset): New.
7272 (hash_value_and_voffset, eq_value_and_voffset)
7273 (compare_value_and_voffset, compute_vtable_size)
7274 (print_one_vtable, gnuv3_print_vtable): New functions.
7275 (init_gnuv3_ops): Initialize 'print_vtable' field.
7276 * cp-support.c (info_vtbl_command): New function.
7277 (_initialize_cp_support): Add "info vtbl".
7278 * cp-abi.h (cplus_print_vtable): Declare.
7279 (struct cp_abi_ops) <print_vtable>: New field.
7280 * cp-abi.c (cplus_print_vtable): New function.
7281 * NEWS: Update.
7282
7283 2012-03-15 Tom Tromey <tromey@redhat.com>
7284
7285 * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
7286 iterate_over_symbols.
7287
7288 2012-03-14 Doug Evans <dje@google.com>
7289
7290 * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
7291 DW_OP_GNU_parameter_ref.
7292
7293 2012-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
7294
7295 Fix double prompt of 'interpreter-exec mi'.
7296 * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
7297 (mi_interpreter_resume): use it.
7298 (mi_execute_command_input_handler): New function.
7299 * mi/mi-main.c (mi_execute_command): Move prompt printing to
7300 mi_execute_command_input_handler.
7301
7302 2012-03-13 Josh Matthews <josh@joshmatthews.net> (tiny change)
7303
7304 * darwin-nat-info.c (_initialize_darwin_info_commands): Add
7305 prototype.
7306 (darwin_debug_port_info): Make static.
7307 * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
7308 * machoread.c (_initialize_machoread): Add prototype.
7309 * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
7310 (i386_darwin_set_control, i386_darwin_get_control)
7311 i386_darwin_dr_set_addr, i386_darwin_get_addr)
7312 i386_darwin_get_status, i386_darwin_get_control):
7313 Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
7314
7315 2012-03-13 Joel Brobecker <brobecker@adacore.com>
7316
7317 * ax-gdb.c (gen_usual_unary): Remove special handling of
7318 enum and bool types.
7319
7320 2012-03-13 Joel Brobecker <brobecker@adacore.com>
7321
7322 * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
7323
7324 2012-03-13 Joel Brobecker <brobecker@adacore.com>
7325
7326 * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
7327
7328 2012-03-13 Chris January <chris.january@allinea.com>
7329
7330 * aix-thread.c (fill_sprs): Store the floating point registers
7331 at the correct offsets into vals.
7332
7333 2012-03-13 Doug Evans <dje@google.com>
7334
7335 * NEWS: Mention symbol-reloading has been deleted.
7336 * symfile.c (symbol_reloading): Delete.
7337 (show_symbol_reloading): Delete.
7338 (_initialize_symfile): Delete set/show symbol-reloading.
7339
7340 * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
7341 read_in_chain until we have successfully read it in.
7342 (load_full_comp_unit): Ditto.
7343 (read_signatured_type): Add comment.
7344
7345 2012-03-13 Chris January <chris.january@allinea.com>
7346
7347 * stabsread.c (fix_common_block): Change type of valu argument
7348 to CORE_ADDR.
7349
7350 2012-03-13 Chris January <chris.january@allinea.com>
7351
7352 * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
7353 instruction.
7354
7355 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7356
7357 * common/linux-procfs.c (linux_proc_get_int): New, from
7358 linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
7359 field.
7360 (linux_proc_get_tgid): Only call linux_proc_get_int.
7361 (linux_proc_get_tracerpid): New.
7362 (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
7363 (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
7364 linux_proc_pid_has_state.
7365 * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
7366 * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
7367 (linux_ptrace_attach_warnings): New.
7368 * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
7369 New declaration.
7370 * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
7371 (linux_nat_attach): New variables ex, buffer, message and message_s.
7372 Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
7373
7374 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7375
7376 * Makefile.in (linux-ptrace.o): New.
7377 * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
7378 from linux-nat.c.
7379 * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
7380 * common/linux-ptrace.c: New file.
7381 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
7382 * config/arm/linux.mh: Likewise.
7383 * config/i386/linux.mh: Likewise.
7384 * config/i386/linux64.mh: Likewise.
7385 * config/ia64/linux.mh: Likewise.
7386 * config/m32r/linux.mh: Likewise.
7387 * config/m68k/linux.mh: Likewise.
7388 * config/mips/linux.mh: Likewise.
7389 * config/pa/linux.mh: Likewise.
7390 * config/powerpc/linux.mh: Likewise.
7391 * config/powerpc/ppc64-linux.mh: Likewise.
7392 * config/powerpc/spu-linux.mh: Likewise.
7393 * config/s390/s390.mh: Likewise.
7394 * config/sparc/linux.mh: Likewise.
7395 * config/sparc/linux64.mh: Likewise.
7396 * config/xtensa/linux.mh: Likewise.
7397 * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
7398 common/linux-procfs.c.
7399 (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
7400
7401 2012-03-13 Hui Zhu <teawater@gmail.com>
7402 Pedro Alves <palves@redhat.com>
7403
7404 * breakpoint.c (init_breakpoint_sal): New flags parameter. Handle
7405 CREATE_BREAKPOINT_FLAGS_INSERTED.
7406 (create_breakpoint_sal, create_breakpoints_sal)
7407 (base_breakpoint_create_breakpoints_sal)
7408 (tracepoint_create_breakpoints_sal)
7409 (strace_marker_create_breakpoints_sal): New flags parameter. Pass
7410 down.
7411 (break_command_1, handle_gnu_v3_exceptions, trace_command)
7412 (ftrace_command, strace_command): Adjust.
7413 (create_tracepoint_from_upload): Pass
7414 CREATE_BREAKPOINT_FLAGS_INSERTED.
7415 * breakpoint.h (enum breakpoint_create_flags): New.
7416 (create_breakpoint): New flags parameter.
7417 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
7418 * python/py-breakpoint.c (bppy_init): Adjust.
7419 * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
7420 * spu-tdep.c (spu_catch_start): Adjust.
7421
7422 2012-03-13 Pedro Alves <palves@redhat.com>
7423 Hui Zhu <teawater@gmail.com>
7424 Yao Qi <yao@codesourcery.com>
7425
7426 * remote.c (struct remote_state): New field `starting_up'.
7427 (remote_start_remote): Set and clear it.
7428 (remote_can_download_tracepoint): If starting up, return false.
7429
7430 2012-03-13 Yao Qi <yao@codesourcery.com>
7431
7432 * inferior.h (struct inferior): Remove fields any_syscall_count,
7433 syscalls_counts and total_syscalls_count. Move them to new
7434 struct catch_syscall_inferior_data in breakpoint.c.
7435 * breakpoint.c: Call DEF_VEC_I(int).
7436 (struct catch_syscall_inferior_data): New.
7437 (get_catch_syscall_inferior_data): New.
7438 (catch_syscall_inferior_data_cleanup): New.
7439 (insert_catch_syscall): Update to access data in
7440 struct catch_syscall_inferior_data.
7441 (insert_catch_syscall): Likewise.
7442 (remove_catch_syscall): Likewise.
7443 (remove_catch_syscall): Likewise.
7444 (is_syscall_catchpoint_enabled): Likewise.
7445 (add_catch_command): Likewise.
7446 (_initialize_breakpoint): Register cleanup.
7447 * breakpoint.h: Removed DEF_VEC_I(int).
7448 * dwarf2loc.c: Call DEF_VEC_I(int).
7449 * mi/mi-main.c: Likewise.
7450
7451 2012-03-12 Mark Kettenis <kettenis@gnu.org>
7452
7453 * inf-ptrace.c (inf_ptrace_post_attach): Make static.
7454
7455 2012-03-12 Chris January <chris.january@allinea.com>
7456
7457 * aix-thread.c (_initialize_aix_thread): Add prototype.
7458 * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
7459 * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
7460
7461 2012-03-12 Joel Brobecker <brobecker@adacore.com>
7462
7463 * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
7464 include of "amd64-nat.h".
7465
7466 2012-03-12 Tom Tromey <tromey@redhat.com>
7467
7468 * buildsym.c (record_pending_block): Now static.
7469 * buildsym.h: (record_pending_block): Remove.
7470
7471 2012-03-12 Andreas Tobler <andreast@fgznet.ch>
7472
7473 * amd64bsd-nat.c: Include amd64bsd-nat.h.
7474
7475 2012-03-09 Tom Tromey <tromey@redhat.com>
7476
7477 * dwarf2read.c (struct dwarf2_cu) <checked_producer,
7478 producer_is_gxx_lt_4_6>: New fields.
7479 (producer_is_gxx_lt_4_6): Use and update producer cache fields.
7480
7481 2012-03-09 Tom Tromey <tromey@redhat.com>
7482
7483 * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
7484
7485 2012-03-08 Joel Brobecker <brobecker@adacore.com>
7486
7487 * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
7488 prototype.
7489
7490 2012-03-08 Joel Brobecker <brobecker@adacore.com>
7491
7492 * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
7493
7494 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
7495
7496 Fix -Wmissing-prototypes build.
7497 * arm-linux-nat.c (get_thread_id): Make it static.
7498 * xtensa-linux-nat.c (get_thread_id): Likewise.
7499
7500 2012-03-08 Joel Brobecker <brobecker@adacore.com>
7501
7502 * server.c (process_point_options): If a conditional expression
7503 is found, only print a message if remote_debug is nonzero.
7504
7505 2012-03-08 Luis Machado <lgustavo@codesourcery.com>
7506
7507 * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
7508 of internal error for unknown/unsupported types.
7509
7510 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
7511
7512 Fix CU relative vs. absolute DIE offsets.
7513 * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
7514 offset to offset_in_cu.
7515 * dwarf2read.c (process_enumeration_scope): Add CU offset to
7516 TYPE_OFFSET.
7517 (dwarf2_fetch_die_location_block): Rename parameter offset to
7518 offset_in_cu. New variable offset, add CU offset to OFFSET_IN_CU.
7519
7520 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
7521
7522 * libunwind-frame.c: Rename to ...
7523 * ia64-libunwind-tdep.c: ... here.
7524 * libunwind-frame.h: Rename to ...
7525 * ia64-libunwind-tdep.h: ... here.
7526 * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
7527 ia64-libunwind-tdep.h.
7528 (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
7529 * README (--with-libunwind): Rename to ...
7530 (--with-libunwind-ia64): ... here, note it is ia64 specific now.
7531 * config.in: Regenerate.
7532 * configure: Regenerate.
7533 * configure.ac: New option --with-libunwind-ia64, make the
7534 AS_HELP_STRING ia64 specific. Deprecate option --with-libunwind.
7535 Remove AC_DEFINE for HAVE_LIBUNWIND.
7536 * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
7537 Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
7538 Rename libunwind-frame in the general comment.
7539 * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
7540 Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
7541 Move forward declarations inside #ifndef. Rename libunwind-frame in
7542 the general comment.
7543 * ia64-tdep.c: Rename libunwind-frame.h #include to
7544 ia64-libunwind-tdep.h.
7545 (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
7546 (ia64_libunwind_descr): Rename libunwind-frame to
7547 ia64-libunwind-tdep in these function comments.
7548 * ia64-tdep.h: Rename libunwind-frame.h #include to
7549 ia64-libunwind-tdep.h.
7550 * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
7551 ia64-libunwind-tdep in that data comment.
7552
7553 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
7554
7555 * libunwind-frame.h (struct frame_unwind): New declaration.
7556
7557 2012-03-08 Joel Brobecker <brobecker@adacore.com>
7558
7559 * breakpoint.c (_initialize_breakpoint): Fix error in help of
7560 "set breakpoint condition-evaluation" command.
7561
7562 2012-03-08 Tristan Gingold <gingold@adacore.com>
7563
7564 * sparc-stub.c: Move to stubs/
7565 * sh-stub.c: Likewise.
7566 * m68k-stub.c: Likewise.
7567 * m32r-stub.c: Likewise.
7568 * i386-stub.c: Likewise.
7569
7570 2012-03-08 Andreas Schwab <schwab@linux-m68k.org>
7571
7572 * m68klinux-tdep.c (m68k_linux_init_abi): Register
7573 linux_get_siginfo_type.
7574
7575 * m68klinux-nat.c: Include "gdb_proc_service.h".
7576 (PTRACE_GET_THREAD_AREA): Define.
7577 (ps_get_thread_area): New function.
7578
7579 2012-03-08 Yao Qi <yao@codesourcery.com>
7580
7581 * remote.c (remote_get_noisy_reply): Replace `sprintf' with
7582 `xsnprintf'.
7583 (remote_query_attached): Likewise.
7584 (remote_static_tracepoint_marker_at): Likewise.
7585 (remote_set_permissions): Likewise.
7586 (remote_detach_1, extended_remote_attach_1): Likewise.
7587 (send_g_packet, remote_vkill): Likewise.
7588 (extended_remote_disable_randomization): Likewise.
7589 (remote_add_target_side_condition): Likewise.
7590 (remote_insert_breakpoint): Likewise.
7591 (remote_remove_breakpoint): Likewise.
7592 (remote_insert_watchpoint): Likewise.
7593 (remote_remove_watchpoint): Likewise.
7594 (remote_insert_hw_breakpoint): Likewise.
7595 (remote_insert_hw_breakpoint): Likewise.
7596 (remote_remove_hw_breakpoint): Likewise.
7597 (remote_download_command_source): Likewise.
7598 (remote_download_tracepoint): Likewise.
7599 (remote_download_trace_state_variable): Likewise.
7600 (remote_disable_tracepoint): Likewise.
7601 (remote_trace_set_readonly_regions): Likewise.
7602 (remote_get_tracepoint_status): Likewise.
7603 (remote_trace_find): Likewise.
7604 (remote_get_trace_state_variable_value): Likewise.
7605 (remote_set_disconnected_tracing): Likewise.
7606 (remote_set_circular_trace_buffer): Likewise.
7607 (remote_get_min_fast_tracepoint_insn_len): Likewise.
7608 (remote_use_agent): Likewise.
7609 (remote_add_target_side_condition): Add one parameter BUF_SIZE.
7610 Update callers.
7611
7612 2012-03-07 Pedro Alves <palves@redhat.com>
7613
7614 * NEWS: Mention QProgramSignals.
7615 * inferior.h (update_signals_program_target): Declare.
7616 * infrun.c: (update_signals_program_target): New.
7617 (handle_command): Update the target of the new program signals
7618 array changes.
7619 * remote.c (PACKET_QProgramSignals): New enum.
7620 (last_program_signals_packet): New global.
7621 (remote_program_signals): New.
7622 (remote_start_remote): Update the target with the program signals
7623 list.
7624 (remote_protocol_features): Add entry for QPassSignals.
7625 (remote_open_1): Free anc clear last_program_signals_packet.
7626 (init_remote_ops): Install remote_program_signals.
7627 * target.c (update_current_target): Adjust.
7628 (target_program_signals): New.
7629 * target.h (struct target_ops) <to_program_signals>: New field.
7630 (target_program_signals): Declare.
7631
7632 2012-03-07 Pedro Alves <palves@redhat.com>
7633
7634 * NEWS: Add subtitle for new z0/z1 conditional breakpoint
7635 extensions.
7636
7637 2012-03-07 Andreas Schwab <schwab@linux-m68k.org>
7638
7639 * m68klinux-nat.c (getregs_supplies): Make static.
7640 (getfpregs_supplies): Likewise.
7641 (have_ptrace_getregs): Likewise.
7642
7643 2012-03-06 Joel Brobecker <brobecker@adacore.com>
7644
7645 * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
7646 in call to get_die_type_at_offset.
7647
7648 2012-03-06 Stan Shebs <stan@codesourcery.com>
7649
7650 * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
7651 * mi/mi-cmd-disas.c: Ditto.
7652 * mi/mi-cmd-env.c: Ditto.
7653 * mi/mi-cmd-file.c: Ditto.
7654 * mi/mi-cmd-stack.c: Ditto.
7655 * mi/mi-cmd-target.c: Ditto.
7656 * mi/mi-cmd-var.c: Ditto.
7657 * mi/mi-cmds.c: Ditto.
7658 * mi/mi-cmds.h: Ditto.
7659 * mi/mi-console.c: Ditto.
7660 * mi/mi-getopt.c: Ditto.
7661 * mi/mi-getopt.h: Ditto.
7662 * mi/mi-interp.c: Ditto.
7663 * mi/mi-main.c: Ditto.
7664 * mi/mi-out.c: Ditto.
7665 * mi/mi-parse.c: Ditto.
7666 * mi/mi-parse.h: Ditto.
7667 * mi/mi-symbol-cmds.c: Ditto.
7668
7669 * mi/mi-getopt.h: Move mi_opt struct up.
7670 * mi/mi-main.c (captured_mi_execute_command): Remove redundant
7671 return.
7672 * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
7673
7674 2012-03-06 Tom Tromey <tromey@redhat.com>
7675
7676 * proc-service.c (ps_pglobal_lookup): Set the current program
7677 space.
7678
7679 2012-03-06 Pedro Alves <palves@redhat.com>
7680
7681 * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
7682
7683 2012-03-05 Joel Brobecker <brobecker@adacore.com>
7684
7685 * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
7686
7687 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7688
7689 Code cleanup.
7690 * common/linux-osdata.c (linux_common_core_of_thread): New function
7691 comment.
7692 * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
7693 call by linux_common_core_of_thread.
7694 (linux_nat_core_of_thread_1): Remove.
7695 * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
7696 * linux-thread-db.c: Include linux-osdata.h.
7697 (update_thread_core): Replace linux_nat_core_of_thread_1 call by
7698 linux_common_core_of_thread.
7699
7700 2012-03-05 Tom Tromey <tromey@redhat.com>
7701
7702 * value.c (value_primitive_field): Don't fetch contents for
7703 non-virtual bases.
7704
7705 2012-03-05 Tom Tromey <tromey@redhat.com>
7706
7707 * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
7708
7709 2012-03-05 Andreas Arnez <arnez@linux.vnet.ibm.com>
7710
7711 * s390-nat.c: Include "gregset.h".
7712
7713 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7714
7715 * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
7716 [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
7717 (libunwind_load): New variable so_error, use it for dlerror. Try to
7718 load also LIBUNWIND_SO_7.
7719
7720 2012-03-05 Pedro Alves <palves@redhat.com>
7721
7722 * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
7723 is not NULL, and remove resulting dead code.
7724
7725 2012-03-05 Thomas Schwinge <thomas@codesourcery.com>
7726
7727 * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
7728 prologue to sh_analyze_prologue.
7729 (sh_analyze_prologue): Make better use of such an upper limit, and
7730 generally be more cautious about accessing memory.
7731
7732 2012-03-05 Tom Tromey <tromey@redhat.com>
7733
7734 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
7735 _initialize_ia64_hpux_tdep.
7736
7737 2012-03-05 Pedro Alves <palves@redhat.com>
7738
7739 PR gdb/13766
7740
7741 * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
7742 the register state is clear, supply explicit zero, instead of
7743 marking the register unavailable.
7744
7745 2012-03-05 Tristan Gingold <gingold@adacore.com>
7746
7747 * NEWS: Mention OpenVMS ia64 new target.
7748
7749 2012-03-05 Tristan Gingold <gingold@adacore.com>
7750
7751 * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
7752 (ia64_unw_accessors, ia64_unw_rse_accessors)
7753 (ia64_libunwind_descr): Declare.
7754 * ia64-vms-tdep.c: New file.
7755 * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
7756 (ia64_libunwind_descr): Make them public.
7757 * configure.tgt: Add ia64-*-*vms*.
7758 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
7759 (ALLDEPFILES): Add ia64-vms-tdep.c
7760
7761 2012-03-05 Tristan Gingold <gingold@adacore.com>
7762
7763 * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
7764 * remote.c (PACKET_qXfer_uib): New enum value.
7765 (remote_protocol_features): Add entry for PACKET_qXfer_uib.
7766 (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
7767 (_initialize_remote): Call add_packet_config_cmd for
7768 xfer:uib packet.
7769
7770 2012-03-05 Tristan Gingold <gingold@adacore.com>
7771
7772 * osabi.c (gdb_osabi_names): Add OpenVMS.
7773 (generic_elf_osabi_sniffer): Likewise.
7774 * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
7775
7776 2012-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
7777
7778 Removed unused code.
7779 * libunwind-frame.c (libunwind_frame_unwind)
7780 (libunwind_frame_base_address): Remove.
7781 * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
7782
7783 2012-03-04 Yao Qi <yao@codesourcery.com>
7784
7785 * common/agent.c (gdb_connect_sync_socket): Add _ markup and
7786 remove trailing new line.
7787 (agent_run_command, agent_run_command): Add _ markup.
7788 (agent_capability_check): Likewise.
7789
7790 2012-03-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7791
7792 * breakpoint.c (set_condition_evaluation_mode): Set
7793 CONDITION_EVALUATION_MODE unconditionally.
7794
7795 2012-03-03 Yao Qi <yao@codesourcery.com>
7796
7797 * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
7798 * common/agent.h: Update declaration.
7799 * inf-child.c (inf_child_use_agent): New.
7800 (inf_child_can_use_agent): New.
7801 (inf_child_target): Initialize fields `to_use_agent'
7802 and `to_can_use_agent'.
7803 * agent.c (agent_new_objfile): New.
7804 (_initialize_agent): Add agent_new_objfile to new_objfile
7805 observer.
7806
7807 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
7808 New.
7809 (linux_target_install_ops): Initialize field
7810 `to_static_tracepoint_markers_by_strid'.
7811 * remote.c (free_current_marker): Move it to ...
7812 * tracepoint.c (free_current_marker): ... here. New.
7813 (cleanup_target_stop): New.
7814 * tracepoint.h: Declare free_current_marker.
7815 * NEWS: Add one entry about `info static-tracepoint-marker'.
7816
7817 2012-03-03 Yao Qi <yao@codesourcery.com>
7818
7819 * common/agent.c (agent_loaded_p): New.
7820 (agent_look_up_symbols): New global.
7821 * common/agent.h: Declare agent_loaded_p.
7822
7823 2012-03-03 Yao Qi <yao@codesourcery.com>
7824
7825 * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
7826 (agent_capability_check, agent_capability_invalidate): New.
7827 (symbol_list): New array element.
7828 * common/agent.h (enum agent_capa): New.
7829 * target.c (target_pre_inferior): Call agent_capability_invalidate.
7830
7831 2012-03-03 Yao Qi <yao@codesourcery.com>
7832
7833 * target.h (struct target_ops) <to_use_agent>: New field.
7834 (struct target_ops) <to_can_use_agent>: New field.
7835 (target_use_agent, target_can_use_agent): New macro.
7836 * target.c (update_current_target): Update.
7837 * remote.c: New enum `PACKET_QAgent'.
7838 (remote_protocol_features): Add a new element.
7839 (remote_use_agent, remote_can_use_agent): New.
7840 (init_remote_ops): Initialize field `can_use_agent' with
7841 remote_can_use_agent. Intiailize field `use_agent' with
7842 remote_use_agent.
7843 * common/agent.c (use_agent): New global.
7844 * common/agent.h: Declare it.
7845 * tracepoint.c (info_static_tracepoint_markers_command): Add
7846 comment.
7847 * Makefile.in (SFILES): Add common/agent.c and agent.c.
7848 (COMMON_OBS): Add common/agent.o and agent.o
7849 (common-agent.o): New rule.
7850 * agent.c: New.
7851
7852 2012-03-03 Yao Qi <yao@codesourcery.com>
7853
7854 * common/agent.c: New.
7855 * common/agent.h: New.
7856 * configure.ac: Add `sys/socket.h' and `sys/un.h' to
7857 AC_CHECK_HEADERS.
7858 * configure, configh.in: Regenerated.
7859
7860 2012-03-02 Kevin Buettner <kevinb@redhat.com>
7861
7862 * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
7863 unless it exists for this architecture.
7864
7865 2012-03-02 Joel Brobecker <brobecker@adacore.com>
7866
7867 * language.h (struct language_defn): New "method" la_read_var_value.
7868 * findvar.c: #include "language.h".
7869 (default_read_var_value): Renames read_var_value. Rewrite
7870 function description.
7871 (read_var_value): New function.
7872 * value.h (default_read_var_value): Add prototype.
7873 * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
7874 New functions.
7875 (ada_language_defn): Add entry for la_read_var_value.
7876 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
7877 * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
7878 language_defn structures to add entry for new la_read_var_value
7879 field.
7880
7881 2012-03-02 Tom Tromey <tromey@redhat.com>
7882 Pedro Alves <palves@redhat.com>
7883
7884 PR breakpoints/13776:
7885 * breakpoint.c (breakpoint_init_inferior): Delete step-resume
7886 breakpoints.
7887 (delete_longjmp_breakpoint_at_next_stop): New.
7888 * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
7889 * target.c (generic_mourn_inferior): Call mark_breakpoints_out
7890 before deleting the inferior. Add comments.
7891 * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
7892 breakpoints immediately, but only on next stop. Move that code
7893 next to where we mark other breakpoints for deletion.
7894
7895 2012-03-02 Joel Brobecker <brobecker@adacore.com>
7896
7897 * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
7898 marker.
7899 * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
7900 violation.
7901
7902 2012-03-02 Pedro Alves <palves@redhat.com>
7903
7904 * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
7905
7906 2012-03-02 Ulrich Weigand <uweigand@de.ibm.com>
7907
7908 Fix -Wmissing-prototypes build.
7909 * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
7910 * remote-sim.c (gdbsim_has_all_memory): Likewise.
7911 (gdbsim_has_memory): Likewise.
7912
7913 2012-03-02 Yao Qi <yao@codesourcery.com>
7914
7915 Fix -Wmissing-prototypes build.
7916 * charset.c (phony_iconv_open): Make static.
7917 (phony_iconv_close, phony_iconv): Likewise.
7918 * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
7919 * i386-windows-nat.c (_initialize_i386_windows_nat): New
7920 prototype.
7921 * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
7922 * ser-mingw.c (create_select_thread): Make static.
7923 * windows-termcap.c (tgetent): New prototype.
7924 (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
7925
7926 2012-03-02 Zhang Yuanhui <asmwarrior@gmail.com>
7927
7928 Fix -Wmissing-prototypes build.
7929 * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
7930 (_initialize_windows_nat, _initialize_check_for_gdb_ini)
7931 (_initialize_loadable): New prototypes.
7932
7933 2012-03-02 Doug Evans <dje@google.com>
7934
7935 * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
7936 abbrev table, read_comp_unit will do it.
7937
7938 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7939
7940 Fix -Wmissing-prototypes build.
7941 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
7942 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
7943 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
7944 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
7945 (_initialize_arm_symbian_tdep): New prototype.
7946 * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
7947 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
7948 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
7949 static.
7950 * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
7951 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
7952 prototype.
7953 * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
7954 (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
7955 * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
7956 static.
7957 * moxie-tdep.c (moxie_process_record): Likewise.
7958 * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
7959 (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
7960 * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
7961 (_initialize_rl78_tdep): New prototype.
7962 * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
7963 (_initialize_rx_tdep): New prototype.
7964 * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
7965 (_initialize_darwin_solib): New prototype.
7966 * solib-spu.c: Include solib-spu.h.
7967 (_initialize_spu_solib): New prototype.
7968 * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
7969 * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
7970 (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
7971 (tic6x_software_single_step): Make it static.
7972 (_initialize_tic6x_tdep): New prototype.
7973
7974 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7975
7976 Fix -Wmissing-prototypes build.
7977 * cris-tdep.c (cris_can_use_hardware_watchpoint)
7978 (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
7979
7980 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
7981
7982 Fix -Wmissing-prototypes build.
7983 * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
7984 (frv_have_stopped_data_address): Remove.
7985
7986 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
7987
7988 Fix -Wmissing-prototypes build.
7989 * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
7990 * sh-tdep.c: Include sh64-tdep.h.
7991 * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
7992 * sh64-tdep.c: Include sh64-tdep.h.
7993 * sh64-tdep.h: New file.
7994
7995 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
7996
7997 * mips-tdep.c (mips32_scan_prologue): Correct indentation.
7998
7999 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
8000
8001 * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
8002 sp_regnum once the gdbarch_init_osabi hook has been called.
8003
8004 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
8005
8006 * mips-tdep.c (mips32_bc1_pc): New function.
8007 (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
8008 BPOSGE32 and BPOSGE64 instructions.
8009 (deal_with_atomic_sequence): Likewise.
8010 (mips32_instruction_has_delay_slot): Likewise.
8011
8012 2012-03-01 Maciej W. Rozycki <macro@mips.com>
8013 Chris Dearman <chris@mips.com>
8014 Maciej W. Rozycki <macro@codesourcery.com>
8015 Joseph Myers <joseph@codesourcery.com>
8016
8017 * features/mips-dsp.xml: New file.
8018 * features/mips64-dsp.xml: New file.
8019 * features/mips-dsp-linux.xml: New file.
8020 * features/mips64-dsp-linux.xml: New file.
8021 * features/Makefile (WHICH): Add mips-dsp-linux and
8022 mips64-dsp-linux.
8023 (mips-dsp-expedite, mips64-dsp-expedite): New variables.
8024 * features/mips-dsp-linux.c: New file.
8025 * features/mips64-dsp-linux.c: New file.
8026 * regformats/mips-dsp-linux.dat: New file.
8027 * regformats/mips64-dsp-linux.dat: New file.
8028 * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
8029 registers.
8030 (mips64_linux_register_addr): Likewise.
8031 (mips64_linux_regsets_fetch_registers): Likewise.
8032 (mips64_linux_regsets_store_registers): Likewise.
8033 (mips64_linux_fetch_registers): Update call to
8034 mips64_linux_regsets_fetch_registers.
8035 (mips64_linux_store_registers): Update call to
8036 mips64_linux_regsets_store_registers.
8037 (mips_linux_read_description): Probe for DSP registers.
8038 (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
8039 and initialize_tdesc_mips64_dsp_linux.
8040 * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
8041 Remove padding of no longer used embedded register slots.
8042 * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
8043 (MIPS_RESTART_REGNUM): Redefine enum value.
8044 * mips-tdep.c (mips_generic_reg_names): Remove trailing null
8045 strings.
8046 (mips_tx39_reg_names): Likewise.
8047 (mips_linux_reg_names): New array of register names for Linux
8048 targets.
8049 (mips_register_name): Check for a null pointer in
8050 mips_processor_reg_names and return an empty string.
8051 (mips_register_type): Exclude embedded registers for the IRIX
8052 and Linux ABIs.
8053 (mips_pseudo_register_type): Likewise. Use dynamic numbers to
8054 refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle
8055 DSP registers.
8056 (mips_stab_reg_to_regnum): Handle DSP accumulators.
8057 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
8058 (mips_gdbarch_init): Likewise. Initialize internal register
8059 indices for the Linux ABI. Use dynamic numbers to refer to
8060 registers, as applicable, while parsing the target description.
8061 * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
8062
8063 2012-03-01 Joel Brobecker <brobecker@adacore.com>
8064
8065 * frame.h (read_frame_register_unsigned): Fix typo in function
8066 description.
8067
8068 2012-03-01 Pedro Alves <palves@redhat.com>
8069
8070 * jit-reader.in [!__cplusplus]
8071 (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
8072
8073 2012-03-01 Pedro Alves <palves@redhat.com>
8074
8075 * configure.ac (build_warnings): Add -Wmissing-prototypes.
8076 * configure: Regenerate.
8077
8078 2012-03-01 Pedro Alves <palves@redhat.com>
8079
8080 * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
8081 * breakpoint.c (create_exception_master_breakpoint, trace_command)
8082 (ftrace_command, strace_command): Make static.
8083 * d-lang.c (_initialize_d_language): Declare.
8084 * dwarf2expr.c (_initialize_dwarf2expr): Declare.
8085 * dwarf2loc.c (_initialize_dwarf2loc):
8086 * dwarf2read.c (process_psymtab_comp_unit): Make static.
8087 * exec.c (exec_get_section_table): Make static.
8088 * i386-linux-tdep.c (i386_linux_record_signal): Make static.
8089 * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
8090 * inferior.c (remove_inferior_command, add_inferior_command)
8091 (clone_inferior_command): Make static.
8092 * linux-nat.c (linux_nat_thread_address_space)
8093 (linux_nat_core_of_thread): Make static.
8094 * linux-tdep.c (_initialize_linux_tdep): Declare.
8095 * objc-lang.c (_initialize_objc_lang): Declare.
8096 * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
8097 Make static.
8098 (_initialize_opencl_language): Declare.
8099 * record.c (_initialize_record): Declare.
8100 * remote.c (demand_private_info, remote_get_tib_address)
8101 (remote_supports_cond_tracepoints)
8102 (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
8103 Make static.
8104 * skip.c (_initialize_step_skip): Declare.
8105 * symtab.c (skip_prologue_using_lineinfo): Make static.
8106 * tracepoint.c (delete_trace_state_variable)
8107 (trace_variable_command, delete_trace_variable_command)
8108 (get_uploaded_tsv, find_matching_tracepoint_location)
8109 (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
8110 Make static.
8111 * value.c (pack_unsigned_long): Make static.
8112 * varobj.c (varobj_ensure_python_env): Make static.
8113 * windows-tdep.c (_initialize_windows_tdep): Declare.
8114 * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
8115
8116 2012-03-01 Pedro Alves <palves@redhat.com>
8117
8118 * linux-tdep.c (linux_has_shared_address_space): Make static. Add
8119 gdbarch parameter.
8120 (linux_init_abi): Install it as has_shared_address_space gdbarch
8121 callback.
8122
8123 2012-03-01 Pedro Alves <palves@redhat.com>
8124
8125 * observer.c (observer_test_first_notification_function)
8126 (observer_test_second_notification_function)
8127 (observer_test_third_notification_function): Add declarations.
8128
8129 2012-03-01 Pedro Alves <palves@redhat.com>
8130
8131 * common/signals.c (default_target_signal_to_host)
8132 (default_target_signal_from_host): Move ...
8133 * arch-utils.c: ... here.
8134 * arch-utils.h (default_target_signal_to_host)
8135 (default_target_signal_from_host): Declare.
8136
8137 * common/signals.c (target_signal_from_command): Move ...
8138 * infrun.c: ... here.
8139 * inferior.h (target_signal_from_command): Declare.
8140 * target.h (target_signal_from_command)
8141 (default_target_signal_from_host, default_target_signal_to_host):
8142 Delete declarations.
8143
8144 * common/signals.c (_initialize_signals): Delete.
8145
8146 2012-03-01 Pedro Alves <palves@redhat.com>
8147
8148 * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
8149 both __cplusplus and !__cplusplus.
8150
8151 2012-03-01 Pedro Alves <palves@redhat.com>
8152
8153 * psymtab.c (find_and_open_source): Delete declaration.
8154 * source.c (find_and_open_source): Move comment ...
8155 * source.h (find_and_open_source): ... to this new declaration.
8156
8157 2012-03-01 Pedro Alves <palves@redhat.com>
8158
8159 * inline-frame.c: Include inline-frame.h.
8160
8161 2012-03-01 Pedro Alves <palves@redhat.com>
8162
8163 * tui/tui-data.c (set_gen_win_origin): Delete.
8164 * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
8165 * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
8166
8167 2012-03-01 Pedro Alves <palves@redhat.com>
8168
8169 * remote.c (encode_actions): Delete declaration.
8170 * tracepoint.c (encode_actions): Make extern.
8171 * tracepoint.h (encode_actions): Declare.
8172
8173 2012-03-01 Pedro Alves <palves@redhat.com>
8174
8175 * python/py-breakpoint.c: Include python.h.
8176 * python/py-continueevent.c (create_continue_event_object): Make
8177 static.
8178 * python/py-lazy-string.c (stpy_get_type): Make static.
8179 * python/py-newobjfileevent.c (create_new_objfile_event_object):
8180 Make static.
8181 * python/py-utils.c (unicode_to_target_python_string): Make
8182 static.
8183 * python/py-value.c: Include python.h.
8184
8185 2012-03-01 Pedro Alves <palves@redhat.com>
8186
8187 * inferior.c (delete_threads_of_inferior): Delete.
8188
8189 2012-03-01 Pedro Alves <palves@redhat.com>
8190
8191 Import fallback definitions from glibc.
8192
8193 * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
8194 ps_prochandle): Forward declare.
8195 (ps_err_e): Use glibc's comments.
8196 [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
8197 (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
8198 (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
8199 (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
8200 (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
8201 (struct ps_prochandle): Adjust comment.
8202
8203 2012-03-01 Pedro Alves <palves@redhat.com>
8204
8205 * ada-lang.c (ada_modulus_from_name): Delete.
8206 * ada-lex.l (lexer_init): Make static.
8207
8208 2012-03-01 Pedro Alves <palves@redhat.com>
8209
8210 PR gdb/13767
8211
8212 * frame.c (read_frame_register_unsigned): New.
8213 * frame.h (read_frame_register_unsigned): Declare.
8214 * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
8215 Handle it.
8216 (print_i387_control_word): New parameter `control_p'. Handle it.
8217 (i387_print_float_info): Handle unavailable float registers.
8218
8219 2012-03-01 Keith Seitz <keiths@redhat.com>
8220
8221 * linespec.c (decode_line_2): Sort the list of methods
8222 alphabetically before presenting the user with a selection
8223 menu.
8224
8225 2012-03-01 Doug Evans <dje@google.com>
8226
8227 * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
8228 has_namespace_info.
8229 (dwarf2_read_abbrevs): Remove corresponding initialization.
8230
8231 2012-03-01 Scott J. Goldman <scottjg@vmware.com>
8232
8233 * NEWS: Mention new python command class gdb.COMMAND_USER.
8234 * cli/cli-cmds.c (show_user): Print error when used on a python
8235 command.
8236 (init_cli_cmds): Update documentation strings for "show user" and
8237 "set/show max-user-call-depth" to clarify that it does not apply to
8238 python commands.
8239 * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
8240 error check.
8241 (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
8242 gdb python api.
8243 * top.c (execute_command): Only execute a user-defined command as a
8244 legacy macro if c->user_commands is set.
8245
8246 2012-03-01 Tom Tromey <tromey@redhat.com>
8247
8248 * valprint.h (struct generic_val_print_decorations): New.
8249 (generic_val_print): Declare.
8250 * valprint.c (generic_val_print): New function.
8251 * p-valprint.c (p_decorations): New global.
8252 (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
8253 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
8254 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
8255 TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
8256 * m2-valprint.c (m2_decorations): New global.
8257 (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
8258 TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
8259 TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
8260 TYPE_CODE_ERROR>: Call generic_val_print.
8261 * f-valprint.c (f_decorations): New global.
8262 (f_val_print): Use print_function_pointer_address.
8263 <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
8264 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
8265 TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
8266 generic_val_print.
8267 * c-valprint.c (c_decorations): New global.
8268 (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
8269 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
8270 TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
8271 TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
8272 TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
8273 * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
8274 case.
8275
8276 2012-03-01 Tom Tromey <tromey@redhat.com>
8277
8278 * valprint.c (val_print): Update.
8279 * p-valprint (pascal_val_print): Return void.
8280 * p-lang.h (pascal_val_print): Return void.
8281 * m2-valprint.c (m2_val_print): Return void.
8282 * m2-lang.h (m2_val_print): Return void.
8283 * language.h (struct language_defn) <la_val_print>: Return void.
8284 * language.c (unk_lang_val_print): Return void.
8285 * jv-valprint.c (java_val_print): Return void.
8286 * jv-lang.h (java_val_print): Return void.
8287 * f-valprint.c (f_val_print): Return void.
8288 * f-lang.h (f_val_print): Return void.
8289 * d-valprint.c (d_val_print): Return void.
8290 (dynamic_array_type): Update.
8291 * d-lang.h (d_val_print): Return void.
8292 * c-valprint.c (c_val_print): Return void.
8293 * c-lang.h (c_val_print): Return void.
8294 * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
8295 void.
8296 * ada-lang.h (ada_val_print): Return void.
8297
8298 2012-03-01 Tom Tromey <tromey@redhat.com>
8299
8300 * value.h (val_print): Return void.
8301 * valprint.c (val_print): Return void.
8302
8303 2012-03-01 Tom Tromey <tromey@redhat.com>
8304
8305 * value.h (common_val_print): Return void.
8306 * valprint.c (common_val_print): Return void.
8307
8308 2012-03-01 Tom Tromey <tromey@redhat.com>
8309
8310 * value.h (value_print): Return void.
8311 * valprint.c (value_print): Return void.
8312 * p-valprint.c (pascal_value_print): Return void.
8313 * p-lang.h (pascal_value_print): Return void.
8314 * language.h (struct language_defn) <la_value_print>: Return
8315 void.
8316 * language.c (unk_lang_value_print): Return void.
8317 * jv-valprint.c (java_value_print): Return void.
8318 * jv-lang.h (java_value_print): Return void.
8319 * f-valprint.c (c_value_print): Don't declare.
8320 Include c-lang.h.
8321 * c-valprint.c (c_value_print): Return void.
8322 * c-lang.h (c_value_print): Return void.
8323 * ada-valprint.c (ada_value_print): Return void.
8324 * ada-lang.h (ada_value_print): Return void.
8325
8326 2012-03-01 Tom Tromey <tromey@redhat.com>
8327
8328 * value.c (value_primitive_field): Handle virtual base classes.
8329
8330 2012-03-01 Tom Tromey <tromey@redhat.com>
8331
8332 * gdbtypes.h (struct vbase): Remove.
8333
8334 2012-03-01 Tom Tromey <tromey@redhat.com>
8335
8336 * c-valprint.c (print_function_pointer_address): Move...
8337 * valprint.c: ... here. Make non-static.
8338 * m2-valprint.c (print_function_pointer_address): Remove.
8339 * valprint.h (print_function_pointer_address): Declare.
8340
8341 2012-03-01 Joel Brobecker <brobecker@adacore.com>
8342
8343 * NEWS: Document the fact that one can provide a condition when
8344 creating an Ada exception catchpoint.
8345
8346 2012-03-01 Tom Tromey <tromey@redhat.com>
8347
8348 * valprint.c (val_print_type_code_flags): Fix placement of
8349 trailing brace.
8350
8351 2012-03-01 Joel Brobecker <brobecker@adacore.com>
8352
8353 * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
8354 (update_files): Do not set MULTILINE_COMMENT_PREFIXES
8355 environment variable before calling update-copyright.
8356
8357 2012-03-01 Joel Brobecker <brobecker@adacore.com>
8358
8359 * gnulib/extra/update-copyright: Update to the latest from
8360 gnulib's git repository.
8361 * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
8362 variable to 2 instead of 1.
8363
8364 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8365
8366 * varobj.c (c_value_of_variable): Remove dead code.
8367
8368 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8369
8370 * ada-lex.p (processId): Do not modify already encoded IDs.
8371 Update function documentation.
8372
8373 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8374
8375 * ada-lang.h (ada_find_renaming_symbol): Replace parameter
8376 "name" with "struct symbol *name_sym".
8377 * ada-exp.y (write_var_or_type): Update call to
8378 ada_find_renaming_symbol.
8379 "name" with "struct symbol *name_sym". Adjust Implementation
8380 accordingly. Adjust the function documentation.
8381
8382 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8383
8384 * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
8385 * ada-lang.c (ada_find_any_type): Add advance declaration.
8386 Make static. Replace ada_find_any_symbol by
8387 ada_find_any_type_symbol.
8388 (ada_find_any_type_symbol): Renames ada_find_any_symbol.
8389 Improve function description. Make static.
8390 (ada_find_renaming_symbol, find_old_style_renaming_symbol):
8391 Replace ada_find_any_symbol by ada_find_any_type_symbol.
8392
8393 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8394
8395 * ada-lang.c (struct tag_args): Delete.
8396 (ada_get_tsd_type): Function body moved up in source file.
8397 (ada_tag_name_1, ada_tag_name_2): Delete.
8398 (ada_get_tsd_from_tag): New function.
8399 (ada_tag_name_from_tsd): New function.
8400 (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
8401 to determine the tag name.
8402
8403 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8404
8405 * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
8406 declaration.
8407 * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
8408 function.
8409
8410 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8411
8412 * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
8413
8414 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8415
8416 * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
8417 full searches.
8418
8419 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8420
8421 * ada-lang.c (constrained_packed_array_type): If there is a
8422 parallel XA type, use it to determine the array index type.
8423
8424 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8425
8426 * ada-valprint.c (ada_val_print_1): If our value is a reference
8427 to an array descriptor, dereference it before converting it
8428 to a simple array.
8429
8430 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8431
8432 * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
8433 creating fixed value.
8434 (ada_value_ind, ada_coerce_ref, assign_component)
8435 (ada_evaluate_subexp): Remove call to unwrap_value before
8436 call to ada_to_fixed_value.
8437
8438 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8439
8440 * ada-lang.c (to_fixed_array_type): Set result's type name.
8441
8442 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8443
8444 * ada-lang.c (catch_ada_exception_command_split): Add new
8445 argument cond_string. Add support for condition at end of
8446 "catch exception" commands.
8447 (ada_decode_exception_location): Add new argument cond_string.
8448 Update call to catch_ada_exception_command_split.
8449 (create_ada_exception_catchpoint): Add new argument cond_string.
8450 Set the breakpoint condition if needed.
8451 (catch_ada_exception_command): Update call to
8452 ada_decode_exception_location.
8453 (ada_decode_assert_location): Add function documentation.
8454 Add support for condition at end of "catch assert" command.
8455 (catch_assert_command): Update calls to ada_decode_assert_location
8456 and create_ada_exception_catchpoint.
8457
8458 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
8459
8460 Fix disp-step-syscall.exp: fork: single step over fork.
8461 * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
8462 (i386_linux_get_syscall_number_from_regcache): ... here, new function
8463 comment, change parameters gdbarch and ptid to regcache. Remove
8464 parameter regcache, initialize gdbarch from regcache here.
8465 (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
8466 New functions.
8467 (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
8468 instead.
8469 * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
8470 'syscall'. Make the 'int' check more strict.
8471
8472 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
8473
8474 Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
8475 * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
8476 (i386_linux_intx80_sysenter_syscall_record): ... here.
8477 (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
8478 Use the renamed function name.
8479
8480 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
8481
8482 * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
8483 * breakpoint.c (until_break_command): Likewise.
8484 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
8485 * infcall.c (call_function_by_hand): Likewise.
8486 * infcmd.c (finish_forward): Likewise.
8487 * infrun.c (insert_exception_resume_breakpoint): Likewise.
8488
8489 2012-02-28 Tristan Gingold <gingold@adacore.com>
8490
8491 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
8492 avoid variable assignments inside condition.
8493
8494 2012-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
8495
8496 Fix static analysis issue found by cppcheck.
8497 * microblaze-tdep.c (microblaze_extract_return_value): Fix
8498 uninitialized BUF for size 2.
8499
8500 2012-02-27 Chris Dearman <chris@mips.com>
8501 Nathan Froyd <froydnj@codesourcery.com>
8502 Maciej W. Rozycki <macro@codesourcery.com>
8503
8504 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
8505 (mips16_instruction_has_delay_slot): Likewise.
8506 (mips_segment_boundary): Likewise.
8507 (mips_adjust_breakpoint_address): Likewise.
8508 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
8509
8510 2012-02-27 Maciej W. Rozycki <macro@mips.com>
8511 Maciej W. Rozycki <macro@codesourcery.com>
8512
8513 * infrun.c (handle_inferior_event): Don't proceed through
8514 shared library trampolines if stepping at the machine
8515 instruction level.
8516
8517 2012-02-27 Maciej W. Rozycki <macro@codesourcery.com>
8518
8519 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
8520 too.
8521
8522 2012-02-27 Thomas Schwinge <thomas@codesourcery.com>
8523
8524 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
8525 (sh_stub_unwind_sniffer): New functions.
8526 (sh_stub_unwind): New variable.
8527 (sh_gdbarch_init): Wire everything.
8528
8529 2012-02-27 Pedro Alves <palves@redhat.com>
8530
8531 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
8532 (linux_nat_post_attach_wait): Adjust to use
8533 linux_proc_pid_is_stopped.
8534 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
8535 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
8536 based on pid_is_stopped from both linux-nat.c and
8537 gdbserver/linux-low.c, and renamed.
8538
8539 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
8540
8541 * remote.c (remote_watchpoint_addr_within_range): New function.
8542 (init_remote_ops): Use it.
8543
8544 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
8545
8546 * target.h (target_watchpoint_addr_within_range): Document macro.
8547
8548 2012-02-24 Pedro Alves <palves@redhat.com>
8549
8550 * stack.c (set_last_displayed_sal): Issue internal_error instead
8551 of warning, and issue it after clearing the last displayed sal.
8552
8553 2012-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
8554 Pedro Alves <palves@redhat.com>
8555
8556 * breakpoint.c (until_break_command): Install breakpoints after
8557 all frame manipulations.
8558
8559 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
8560
8561 * remote.c (remote_supports_cond_breakpoints): New forward
8562 declaration.
8563 (remote_add_target_side_condition): New function.
8564 (remote_insert_breakpoint): Add target-side breakpoint
8565 conditional if supported.
8566 (remote_insert_hw_breakpoint): Likewise.
8567 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
8568 hook.
8569
8570 * target.c (update_current_target): Inherit
8571 to_supports_evaluation_of_breakpoint_conditions.
8572 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
8573
8574 * target.h (struct target_ops)
8575 <to_supports_evaluation_of_breakpoint_conditions>: New field.
8576 (target_supports_evaluation_of_breakpoint_conditions): New #define.
8577
8578 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
8579 (condition_evaluation_both, condition_evaluation_auto,
8580 condition_evaluation_host, condition_evaluation_target,
8581 condition_evaluation_enums, condition_evaluation_mode_1,
8582 condition_evaluation_mode): New static globals.
8583 (translate_condition_evaluation_mode): New function.
8584 (breakpoint_condition_evaluation_mode): New function.
8585 (gdb_evaluates_breakpoint_condition_p): New function.
8586 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
8587 (mark_breakpoint_modified): New function.
8588 (mark_breakpoint_location_modified): New function.
8589 (set_condition_evaluation_mode): New function.
8590 (show_condition_evaluation_mode): New function.
8591 (bp_location_compare_addrs): New function.
8592 (get_first_location_gte_addr): New helper function.
8593 (set_breakpoint_condition): Free condition bytecode if locations
8594 has become unconditional. Call mark_breakpoint_modified (...).
8595 (condition_command): Call update_global_location_list (1) for
8596 breakpoints.
8597 (breakpoint_xfer_memory): Use is_breakpoint (...).
8598 (is_breakpoint): New function.
8599 (parse_cond_to_aexpr): New function.
8600 (build_target_condition_list): New function.
8601 (insert_bp_location): Handle target-side conditional
8602 breakpoints and call build_target_condition_list (...).
8603 (update_inserted_breakpoint_locations): New function.
8604 (insert_breakpoint_locations): Handle target-side conditional
8605 breakpoints.
8606 (bpstat_check_breakpoint_conditions): Add comment.
8607 (bp_condition_evaluator): New function.
8608 (bp_location_condition_evaluator): New function.
8609 (print_breakpoint_location): Print information on where the condition
8610 will be evaluated.
8611 (print_one_breakpoint_location): Likewise.
8612 (init_bp_location): Call mark_breakpoint_location_modified (...) for
8613 breakpoint location.
8614 (force_breakpoint_reinsertion): New functions.
8615 (update_global_location_list): Handle target-side breakpoint
8616 conditions.
8617 Reinsert locations that are already inserted if conditions have
8618 changed.
8619 (bp_location_dtor): Free agent expression bytecode.
8620 (disable_breakpoint): Call mark_breakpoint_modified (...).
8621 Call update_global_location_list (...) with parameter 1 for breakpoints.
8622 (disable_command): Call mark_breakpoint_location_modified (...).
8623 Call update_global_location_list (...) with parameter 1 for breakpoints.
8624 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
8625 (enable_command): mark_breakpoint_location_modified (...).
8626 (_initialize_breakpoint): Update documentation and add
8627 condition-evaluation breakpoint subcommand.
8628
8629 * breakpoint.h: Include ax.h.
8630 (condition_list): New data structure.
8631 (condition_status): New enum.
8632 (bp_target_info) <cond_list>: New field.
8633 (bp_location) <condition_changed, cond_bytecode>: New fields.
8634 (is_breakpoint): New prototype.
8635
8636 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
8637
8638 * remote.c (remote_state) <cond_breakpoints>: New field.
8639 (PACKET_ConditionalBreakpoints): New enum.
8640 (remote_cond_breakpoint_feature): New function.
8641 (remote_protocol_features): Add new ConditionalBreakpoints entry.
8642 (remote_supports_cond_breakpoints): New function.
8643 (_initialize_remote): Add new packet configuration for
8644 target-side conditional breakpoints.
8645
8646 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
8647
8648 * NEWS: Mention target-side conditional breakpoint support,
8649 new condition-evaluation breakpoint subcommand and remote
8650 packet extensions.
8651
8652 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
8653
8654 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
8655 number.
8656
8657 2012-02-24 Thomas Schwinge <thomas@codesourcery.com>
8658
8659 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
8660 (after_prologue): Remove.
8661
8662 2012-02-23 Tom Tromey <tromey@redhat.com>
8663
8664 * jv-valprint.c (java_val_print): Remove dead code.
8665
8666 2012-02-23 Tristan Gingold <gingold@adacore.com>
8667
8668 * ada-tasks.c (struct ada_tasks_inferior_data): Add
8669 known_tasks_element and known_tasks_length fields.
8670 (read_known_tasks_array): Change argument type. Use pointer type
8671 and number of elements from DATA. Adjust.
8672 (read_known_tasks_list): Likewise.
8673 (get_known_tasks_addr): Remove.
8674 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
8675 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
8676 type and array length. Merge former get_known_tasks_addr code.
8677
8678 2012-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
8679
8680 PR backtrace/13716
8681 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
8682 it after set_momentary_breakpoint.
8683
8684 2012-02-22 Sterling Augustine <saugustine@google.com>
8685
8686 PR 13689:
8687 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
8688
8689 2012-02-22 Gary Benson <gbenson@redhat.com>
8690
8691 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
8692 (find_slot_in_mapped_hash): Likewise.
8693
8694 2012-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
8695
8696 PR build/13638
8697 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
8698 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
8699 * configure: Regenerate.
8700
8701 2012-02-21 Tristan Gingold <gingold@adacore.com>
8702 Pedro Alves <palves@redhat.com>
8703
8704 * ia64-tdep.c: Do not include libunwind-ia64.h.
8705 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
8706 Include libunwind-ia64.h instead of libunwind.h.
8707 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
8708 for libunwind.h existence.
8709 * configure, config.in: Regenerate.
8710
8711 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
8712
8713 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
8714 instead of value_rtti_target_type.
8715 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
8716 instead of value_rtti_target_type.
8717 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
8718 value_rtti_target_type.
8719 * valops.c (value_ind): Extract function readjust_indirect_value_type.
8720 (value_rtti_target_type): Rename to ...
8721 (value_rtti_indirect_type): ... here and make it indirect. Update
8722 function comment.
8723 * value.c (readjust_indirect_value_type): New function.
8724 (coerce_ref): Support for enclosing type setting for references
8725 with readjust_indirect_value_type.
8726 * value.h (readjust_value_type): New declaration.
8727 (value_rtti_target_type): Rename to ...
8728 (value_rtti_indirect_type): ... here.
8729
8730 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
8731
8732 * MAINTAINERS (Write After Approval): Add myself to the list.
8733
8734 2012-02-20 Doug Evans <dje@google.com>
8735
8736 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
8737 Rename objfile_p_char parameter to objfilep.
8738 (build_objfile_section_table): Result is now void. All callers
8739 updated.
8740 * objfiles.h (struct objfile): Tweak comments, whitespace.
8741 (build_objfile_section_table): Update.
8742
8743 * elfread.c (elf_symfile_segments): Fix warning text.
8744
8745 2012-02-20 Tom Tromey <tromey@redhat.com>
8746
8747 PR gdb/13498:
8748 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
8749 particular set of file names once.
8750 (dw2_map_symbol_filenames): Likewise.
8751
8752 2012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8753
8754 Code cleanup.
8755 * main.c (write_files): Remove the declaration.
8756 (external_editor_command): Move the declaration ...
8757 [GDBTK] (external_editor_command): ... here. Fix the comment.
8758
8759 2012-02-20 Tom Tromey <tromey@redhat.com>
8760
8761 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
8762 extraneous block.
8763
8764 2012-02-20 Tristan Gingold <gingold@adacore.com>
8765
8766 * darwin-nat.h (enum darwin_msg_state): Add comments.
8767
8768 2012-02-20 Tristan Gingold <gingold@adacore.com>
8769
8770 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
8771 value.
8772
8773 2012-20-18 Joel Brobecker <brobecker@adacore.com>
8774
8775 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
8776 between function description and implementation.
8777
8778 2012-02-17 Tom Tromey <tromey@redhat.com>
8779
8780 PR python/12070:
8781 * python/py-event.c (event_object_getset): New global.
8782 (event_object_type): Reference it.
8783 * python/py-type.c (field_object_getset): New global.
8784 (field_object_type): Reference it.
8785 * python/python-internal.h (gdb_py_generic_dict): Declare.
8786 * python/py-utils.c (gdb_py_generic_dict): New function.
8787
8788 2012-02-17 Tristan Gingold <gingold@adacore.com>
8789
8790 * solib-darwin.c (darwin_current_sos): Check magic and filetype
8791
8792 2012-02-17 Thomas Schwinge <thomas@codesourcery.com>
8793
8794 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
8795 TYPE_CALLING_CONVENTION annotation.
8796
8797 2012-02-16 Kevin Buettner <kevinb@redhat.com>
8798
8799 * MAINTAINERS: Add rx to target ISA section.
8800 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
8801 (ALLDEPFILES): Add rx-tdep.c.
8802
8803 2012-02-16 Tom Tromey <tromey@redhat.com>
8804
8805 * symfile.c (symbol_file_add_main_1): Use inferior's
8806 symfile_flags.
8807 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
8808 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
8809 inferior.
8810 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
8811 inferior.
8812 (follow_exec): Use inferior's symfile_flags.
8813 * inferior.h (struct inferior) <symfile_flags>: New field.
8814
8815 2012-02-16 Mike Frysinger <vapier@gentoo.org>
8816
8817 PR gdb/9734:
8818 * remote-sim.c (gdbsim_create_inferior): Call error() when
8819 sim_create_inferior() fails.
8820
8821 2012-02-16 Josh Matthews <josh@joshmatthews.net>
8822
8823 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
8824
8825 2012-02-16 Tom Tromey <tromey@redhat.com>
8826
8827 PR c++/13653:
8828 * thread.c (struct current_thread_cleanup) <was_removable>: New
8829 field.
8830 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
8831 (make_cleanup_restore_current_thread): Initialize new field.
8832
8833 2012-02-15 Kevin Buettner <kevinb@redhat.com>
8834
8835 * MAINTAINERS: Add rl78 to target ISA section.
8836 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
8837 (ALLDEPFILES): Add rl78-tdep.c.
8838 * NEWS: Mention rl78 as a new target.
8839
8840 2012-02-15 Aleksandar Ristovski <aristovski@qnx.com>
8841
8842 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
8843 data.
8844 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
8845
8846 2012-02-15 Tom Tromey <tromey@redhat.com>
8847
8848 PR gdb/12659:
8849 * infcmd.c (registers_info): Print just the current register's
8850 name.
8851
8852 2012-02-15 Tom Tromey <tromey@redhat.com>
8853
8854 * python/py-symbol.c (sympy_value): Use _().
8855
8856 2012-02-15 Pedro Alves <palves@redhat.com>
8857
8858 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
8859 output to be like native targets'.
8860 (remote_pid_to_str): Special case the null ptid.
8861
8862 2012-02-14 Stan Shebs <stan@codesourcery.com>
8863
8864 * NEWS: Mention enable count command.
8865 * breakpoint.h (struct breakpoint): New field enable_count.
8866 * breakpoint.c (enable_breakpoint_disp): Add count argument.
8867 (enable_breakpoint): Add arg to call.
8868 (struct disp_data): New struct.
8869 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
8870 (do_map_enable_once_breakpoint): Create a struct and pass it.
8871 (do_map_enable_delete_breakpoint): Ditto.
8872 (do_map_enable_count_breakpoint): New function.
8873 (enable_count_command): New function.
8874 (bpstat_stop_status): Decrement enable_count.
8875 (print_one_breakpoint_location): Report enable count.
8876 (_initialize_breakpoint): Add enable count command.
8877
8878 2012-02-14 Kevin Buettner <kevinb@redhat.com>
8879
8880 * rl78-tdep.c (reggroups.h): Include.
8881 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
8882 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
8883 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
8884 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
8885 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
8886 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
8887 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
8888 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
8889 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
8890 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
8891 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
8892 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
8893 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
8894 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
8895 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
8896 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
8897 beginning of register list.
8898 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
8899 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
8900 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
8901 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
8902 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
8903 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
8904 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
8905 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
8906 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
8907 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
8908 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
8909 the pseudo registers. Rearrange other pseudo registers too so
8910 that the bank registers appear at the end.
8911 (rl78_register_type): Account for the fact that the byte sized
8912 bank registers are now pseudo-registers.
8913 (rl78_register_name): Rearrange the register name array. Make
8914 initial set of raw banked registers inaccessible.
8915 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
8916 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
8917 case for copying bytes back and forth between raw and pseudo
8918 versions of the banked registers. Update other cases to reflect
8919 the changed names.
8920 (rl78_return_value): Update to account for changed names of
8921 raw registers.
8922 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
8923 rl78_register_sim_regno().
8924
8925 2012-02-14 Kevin Buettner <kevinb@redhat.com>
8926
8927 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
8928 the name parameter being passed to find_pc_partial_function().
8929
8930 2012-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8931
8932 * MAINTAINERS: Step down from being ia64 target maintainer.
8933
8934 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
8935
8936 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
8937 compilation warning.
8938
8939 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
8940
8941 Fix crash on loaded shlibs without loaded exec_bfd.
8942 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
8943 (set_section_command): Replace exec_bfd by p->bfd.
8944
8945 2012-02-10 Tom Tromey <tromey@redhat.com>
8946
8947 * linespec.c (decode_line_internal): Skip symtabs_from_filename
8948 when we have a C++ qualified name.
8949
8950 2012-02-10 Pedro Alves <palves@redhat.com>
8951
8952 * inferior.c (inferior_pid_to_str): New.
8953 (print_inferior, inferior_command): Use it.
8954
8955 2012-02-10 Pedro Alves <palves@redhat.com>
8956
8957 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
8958 the test CFLAGS.
8959 * configure: Regenerate.
8960
8961 2012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
8962
8963 * linespec.c (decode_line_internal): Fix comment correctness.
8964
8965 2012-02-09 Valery Khromov <valery.khromov@gmail.com>
8966
8967 PR gdb/12953
8968 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
8969 * amd64bsd-nat.c: Add support for debug registers (adapted from
8970 i386bsd-nat.c).
8971 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
8972 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
8973 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
8974 (amd64bsd_dr_get_control): New functions.
8975 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
8976 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
8977 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
8978 watchpoints initialization.
8979 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
8980
8981 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
8982
8983 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
8984 flds_bnds.fields.
8985 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
8986
8987 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
8988
8989 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
8990
8991 2012-02-08 Joel Brobecker <brobecker@adacore.com>
8992
8993 * language.h (symbol_name_cmp_ftype): Renames
8994 symbol_name_match_p_ftype.
8995 (struct language_defn)[la_get_symbol_name_cmp]: Renames
8996 la_get_symbol_name_match_p.
8997 * ada-lang.c (ada_get_symbol_name_cmp): Renames
8998 ada_get_symbol_name_match_p. Update comment.
8999 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
9000 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
9001 Renames symbol_name_match_p. Update field type.
9002 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
9003 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
9004 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
9005 "la_get_symbol_name_cmp" in comments.
9006 * language.c: Likewise.
9007
9008 2012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
9009
9010 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
9011 %eflags offset.
9012 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
9013 (amd64_sol2_gregset32_reg_offs): Likewise.
9014
9015 2012-02-08 Joel Brobecker <brobecker@adacore.com>
9016
9017 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
9018 of the returned BFD is allocated by GDB.
9019
9020 2012-02-07 Tom Tromey <tromey@redhat.com>
9021
9022 PR python/12027:
9023 * python/python-internal.h (frame_object_type): Declare.
9024 * python/py-symbol.c (sympy_needs_frame): New function.
9025 (sympy_value): New function.
9026 (symbol_object_getset): Add "needs_frame".
9027 (symbol_object_methods): Add "value".
9028 * python/py-frame.c (frame_object_type): No longer static.
9029
9030 2012-02-07 Tom Tromey <tromey@redhat.com>
9031
9032 PR python/13599:
9033 * python/py-symbol.c (sympy_line): New function.
9034 (symbol_object_getset): Add "line".
9035
9036 2012-02-07 Tom Tromey <tromey@redhat.com>
9037
9038 * charset.c (find_charset_names): Check 'in' against NULL.
9039
9040 2012-02-06 Doug Evans <dje@google.com>
9041
9042 * gdbtypes.h (struct main_type): Change type of name,tag_name,
9043 and fields.name members from char * to const char *. All uses updated.
9044 (struct cplus_struct_type): Change type of fn_fieldlists.name member
9045 from char * to const char *. All uses updated.
9046 (type_name_no_tag): Update.
9047 (lookup_unsigned_typename, lookup_signed_typename): Update.
9048 * gdbtypes.c (type_name_no_tag): Change result type
9049 from char * to const char *. All callers updated.
9050 (lookup_unsigned_typename, lookup_signed_typename): Change type of
9051 name parameter from char * to const char *.
9052 * symtab.h (struct cplus_specific): Change type of demangled_name
9053 member from char * to const char *. All uses updated.
9054 (struct general_symbol_info): Change type of name and
9055 mangled_lang.demangled_name members from char * to const char *.
9056 All uses updated.
9057 (symbol_get_demangled_name, symbol_natural_name): Update.
9058 (symbol_demangled_name, symbol_search_name): Update.
9059 * symtab.c (symbol_get_demangled_name): Change result type
9060 from char * to const char *. All callers updated.
9061 (symbol_natural_name, symbol_demangled_name): Ditto.
9062 (symbol_search_name): Ditto.
9063 (completion_list_add_name): Change type of symname,sym_text,
9064 text,word parameters from char * to const char *.
9065 (completion_list_objc_symbol): Change type of sym_text,
9066 text,word parameters from char * to const char *.
9067 * ada-lang.c (find_struct_field): Change type of name parameter
9068 from char * to const char *.
9069 (encoded_ordered_before): Similarly for N0,N1 parameters.
9070 (old_renaming_is_invisible): Similarly for function_name parameter.
9071 (ada_type_name): Change result type from char * to const char *.
9072 All callers updated.
9073 * ada-lang.h (ada_type_name): Update.
9074 * buildsym.c (hashname): Change type of name parameter
9075 from char * to const char *.
9076 * buildsym.h (hashname): Update.
9077 * dbxread.c (end_psymtab): Change type of include_list parameter
9078 from char ** to const char **.
9079 * dwarf2read.c (determine_prefix): Change result type
9080 from char * to const char *. All callers updated.
9081 * f-lang.c (find_common_for_function): Change type of name, funcname
9082 parameters from char * to const char *.
9083 * f-lang.c (find_common_for_function): Update.
9084 * f-valprint.c (list_all_visible_commons): Change type of funcname
9085 parameters from char * to const char *.
9086 * gdbarch.sh (static_transform_name): Change type of name parameter
9087 and result from char * to const char *.
9088 * gdbarch.c: Regenerate.
9089 * gdbarch.h: Regenerate.
9090 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
9091 of name parameter from char * to const char *.
9092 * jv-lang.c (java_primitive_type_from_name): Ditto.
9093 (java_demangled_signature_length): Similarly for signature parameter.
9094 (java_demangled_signature_copy): Ditto.
9095 (java_demangle_type_signature): Ditto.
9096 * jv-lang.h (java_primitive_type_from_name): Update.
9097 (java_demangle_type_signature): Update.
9098 * objc-lang.c (specialcmp): Change type of a,b parameters
9099 from char * to const char *.
9100 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
9101 from char * to const char *. All callers updated.
9102 * p-lang.h (is_pascal_string_type): Update.
9103 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
9104 of name parameter from char * to const char *.
9105 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
9106 * utils.c (fprintf_symbol_filtered): Ditto.
9107 * defs.h (fprintf_symbol_filtered): Update.
9108 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
9109 * stabsread.h (end_psymtab): Update.
9110 * stack.c (find_frame_funname): Change type of funname parameter
9111 from char ** to const char **.
9112 * stack.h (find_frame_funname): Update.
9113 * typeprint.c (type_print): Change type of varstring parameter
9114 from char * to const char *.
9115 * value.h (type_print): Update.
9116 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
9117 from char * to const char *. All callers updated.
9118 (xcoff_end_psymtab): Change type of include_list parameter
9119 from char ** to const char **. All callers updated.
9120 (swap_sym): Similarly for name parameter. All callers updated.
9121 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
9122 Use xstrdup.
9123 (process_coff_symbol): Use xstrdup.
9124 * stabsread.c (stabs_method_name_from_physname): Renamed from
9125 update_method_name_from_physname. Change result type from void
9126 to char *. All callers updated.
9127 (read_member_functions): In has_destructor case, store name in objfile
9128 obstack instead of malloc space. In !has_stub case, fix mem leak.
9129
9130 2012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
9131
9132 * configure: Rebuild.
9133 * configure.ac: Put -L../bfd and -L../libiberty at the front of
9134 LDFLAGS.
9135
9136 2012-02-03 Kevin Buettner <kevinb@redhat.com>
9137
9138 * configure.tgt (rl78-*-elf): New target.
9139 * rl78-tdep.c: New file.
9140
9141 2012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9142
9143 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
9144 and continue the loop. Add QUIT statement.
9145
9146 2012-02-03 Tom Tromey <tromey@redhat.com>
9147
9148 PR gdb/13596:
9149 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
9150 bfd_lookup_symbol_from_symtab.
9151 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
9152 gdb_bfd_lookup_symbol_from_symtab.
9153
9154 2012-02-03 Joel Brobecker <brobecker@adacore.com>
9155
9156 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
9157 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
9158 symbol. Add assertion that sym2 is never NULL.
9159
9160 2012-02-02 Doug Evans <dje@google.com>
9161
9162 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
9163 "name" parameter to const char ** from char **. All callers updated.
9164 (find_pc_partial_function): Ditto.
9165 (cache_pc_function_name): Change type to const char * from char *.
9166 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
9167 (find_pc_partial_function): Update.
9168 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
9169 type of "name" parameter to const char * from char *.
9170 All uses updated.
9171 * arch-utils.c (generic_in_solib_return_trampoline): Change
9172 type of "name" parameter to const char * from char *.
9173 * arch-utils.h (generic_in_solib_return_trampoline): Update.
9174 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
9175 type of "name" parameter to const char * from char *.
9176 * gdbarch.sh (in_solib_return_trampoline): Ditto.
9177 * gdbarch.c: Regenerate.
9178 * gdbarch.h: Regenerate.
9179 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
9180 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
9181 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
9182 type of "name" parameter to const char * from char *.
9183 * skip.c (skip_function_pc): Ditto.
9184 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
9185 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
9186 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
9187 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
9188 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
9189 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
9190 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
9191 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
9192 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
9193
9194 2012-02-02 Pedro Alves <palves@redhat.com>
9195
9196 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
9197 the current inferior has no execution. Make sure the current
9198 remote process matches gdb's current inferior.
9199
9200 2012-02-02 Tom Tromey <tromey@redhat.com>
9201
9202 PR gdb/13405:
9203 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
9204 read-only memory.
9205
9206 2012-02-02 Tom Tromey <tromey@redhat.com>
9207
9208 PR gdb/9307:
9209 * symtab.c (lookup_language_this): Set block_found.
9210
9211 2012-02-01 Tom Tromey <tromey@redhat.com>
9212
9213 PR gdb/13431:
9214 * jit.c (struct jit_inferior_data): Rewrite.
9215 (struct jit_objfile_data): New.
9216 (get_jit_objfile_data): New function.
9217 (add_objfile_entry): Update.
9218 (jit_read_descriptor): Return int. Replace descriptor_addr
9219 argument with inf_data. Update. Don't call error.
9220 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
9221 descriptor here.
9222 (jit_inferior_init): Don't look up descriptor. Don't call error.
9223 (jit_reset_inferior_data_and_breakpoints)
9224 (jit_inferior_created_observer): Remove.
9225 (jit_inferior_exit_hook): Update.
9226 (jit_executable_changed_observer): Remove.
9227 (jit_event_handler): Update.
9228 (free_objfile_data): Reset inferior data if needed.
9229 (_initialize_jit): Update.
9230
9231 2012-02-01 Tom Tromey <tromey@redhat.com>
9232
9233 * jit.c (bfd_open_from_target_memory): Move higher in file.
9234
9235 2012-02-01 Tristan Gingold <gingold@adacore.com>
9236
9237 * libunwind-frame.c (libunwind_load): Display message if dlopen
9238 failed.
9239
9240 2012-02-01 Gary Benson <gbenson@redhat.com>
9241
9242 * symtab.h (symbol_found_callback_ftype): New typedef.
9243 (iterate_over_symbols): Use the above.
9244 * symtab.c (iterate_over_symbols): Likewise.
9245 * language.h (language_defn->la_iterate_over_symbols): Likewise.
9246 * ada-lang.c (ada_iterate_over_symbols): Likewise.
9247 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
9248 (iterate_name_matcher): Document return values.
9249 (collect_one_symbol): Likewise.
9250 (collect_function_symbols): Likewise.
9251 (collect_symbols): Likewise.
9252
9253 2012-02-01 Tom Tromey <tromey@redhat.com>
9254
9255 * ada-lang.c (resolve_subexp): Update.
9256 (ada_lookup_symbol_list): Add 'full_search' argument.
9257 (ada_iterate_over_symbols): Pass 0 as full_search argument to
9258 ada_lookup_symbol_list.
9259 (ada_lookup_encoded_symbol): Update.
9260 (get_var_value): Update.
9261 * ada-exp.y (block_lookup): Update.
9262 (write_var_or_type): Update.
9263 (write_name_assoc): Update.
9264 * ada-lang.h (ada_lookup_symbol_list): Update.
9265
9266 2012-01-31 Tom Tromey <tromey@redhat.com>
9267
9268 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
9269 comment.
9270
9271 2012-01-31 Doug Evans <dje@google.com>
9272
9273 * symtab.h: Remove outdated comment.
9274 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
9275
9276 2012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
9277
9278 Fix build error in Darwin port.
9279 * i386-darwin-nat.c: Include i386-nat.h.
9280
9281 2012-01-30 Tom Tromey <tromey@redhat.com>
9282
9283 PR breakpoints/13568:
9284 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
9285 argument. Check for recursive includes.
9286 (dwarf_decode_macros): Create an include hash.
9287
9288 2012-01-30 Michael Eager <eager@eagercon.com>
9289
9290 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
9291 * ppc-linux-tdep.c: Include glibc-tdep.h.
9292 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
9293 (powerpc_linux_in_plt_stub): New function.
9294 (powerpc_linux_in_dynsym_resolve_code): New function.
9295 (ppc_skip_trampoline_code): New function.
9296 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
9297 Use glibc_skip_solib_resolver.
9298
9299 2012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
9300
9301 Code cleanup: Make 1440 bytes of data segment read-only.
9302 * arch-utils.c (endian_enum): Make it const char *const [].
9303 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
9304 Likewise.
9305 * breakpoint.c (always_inserted_enums): Likewise.
9306 * cli/cli-cmds.c (script_ext_enums): Likewise.
9307 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
9308 enumlist parameter const char *const *.
9309 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
9310 const char *const *.
9311 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
9312 parameter const char *const *.
9313 * cris-tdep.c (cris_modes): Make it const char *const [].
9314 * filesystem.c (target_file_system_kinds): Likewise.
9315 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
9316 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
9317 (can_use_displaced_stepping_enum, scheduler_enums)
9318 (exec_direction_names): Likewise.
9319 * language.c (_initialize_language): Make the type_or_range_names and
9320 case_sensitive_names variables const char *const [].
9321 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
9322 * python/python.c (python_excp_enums): Likewise.
9323 * remote.c (interrupt_sequence_modes): Likewise.
9324 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
9325 * serial.c (logbase_enums): Likewise.
9326 * sh-tdep.c (sh_cc_enum): Likewise.
9327 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
9328 Likewise.
9329 * symtab.c (multiple_symbols_modes): Likewise.
9330 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
9331 Likewise.
9332 * utils.c (internal_problem_modes): Likewise.
9333
9334 2012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
9335
9336 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
9337 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
9338 result.
9339
9340 2012-01-27 Doug Evans <dje@google.com>
9341
9342 * configure.ac (with_python): Fix absolute path handling for win32.
9343 * configure: Regenerate.
9344
9345 2012-01-26 Doug Evans <dje@google.com>
9346
9347 * symtab.c: Whitespace cleanup, no code changes.
9348
9349 * symtab.c (lookup_symbol_in_language): Improve comment.
9350 (lookup_symbol_aux): Fix comment.
9351
9352 * psymtab.c (add_psymbol_to_list): Result is now "void".
9353 * psympriv.h (add_psymbol_to_list): Update.
9354
9355 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
9356
9357 2012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9358
9359 Do not open script filenames twice.
9360 * cli/cli-cmds.c (source_script_from_stream): Pass to
9361 source_python_script also STREAM.
9362 * python/py-auto-load.c (source_section_scripts): Pass to
9363 source_python_script_for_objfile also STREAM.
9364 (auto_load_objfile_script): Pass to source_python_script_for_objfile
9365 also INPUT.
9366 * python/python-internal.h (source_python_script_for_objfile): New
9367 parameter file, rename parameter file to filename.
9368 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
9369 instead if !_WIN32. Update the function comment.
9370 (source_python_script, source_python_script_for_objfile)
9371 (source_python_script): New parameter file, rename parameter file to
9372 filename. Pass FILENAME to python_run_simple_file.
9373 * python/python.h (source_python_script): New parameter file, rename
9374 parameter file to filename.
9375
9376 2012-01-26 Pedro Alves <palves@redhat.com>
9377
9378 * corelow.c (core_has_fake_pid): Delete.
9379 (core_close): Delete references to `core_has_fake_pid'.
9380 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
9381 (core_open): Delete references to `core_has_fake_pid'.
9382 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
9383 the removed global.
9384
9385 2012-01-26 Joel Brobecker <brobecker@adacore.com>
9386
9387 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
9388 Remove language parameter from name_matcher. Adjust the comment.
9389 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
9390 Remove language parameter.
9391 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
9392 * linespec.c (iterate_name_matcher): Likewise.
9393 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
9394 name_matcher. Adjust call accordingly.
9395 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
9396 (maintenance_check_symtabs): Adjust type of parameter "fun".
9397 * psymtab.h (maintenance_check_symtabs): Likewise.
9398
9399 2012-01-26 Joel Brobecker <brobecker@adacore.com>
9400
9401 * language.h (symbol_name_match_p_ftype): New typedef.
9402 (struct language_defn): Replace field la_symbol_name_compare
9403 by la_get_symbol_name_match_p.
9404 * ada-lang.c (ada_get_symbol_name_match_p): New function.
9405 (ada_language_defn): Use it.
9406 * linespec.c (struct symbol_matcher_data): New type.
9407 (iterate_name_matcher): Rewrite.
9408 (iterate_over_all_matching_symtabs): Pass a pointer to
9409 a symbol_matcher_data struct to expand_symtabs_matching
9410 instead of just the lookup name.
9411 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
9412 opencl-lang.c, p-lang.c, language.c: Delete field
9413 la_symbol_name_compare, and replace by NULL for new field
9414 la_get_symbol_name_match_p.
9415 * symfile.h (struct quick_symbol_functions): Update comment.
9416
9417 2012-01-25 Tom Tromey <tromey@redhat.com>
9418
9419 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
9420 dereferencing.
9421
9422 2012-01-24 Tom Tromey <tromey@redhat.com>
9423
9424 PR symtab/12406:
9425 * solib.c (update_solib_list): Update the program space's
9426 added_solibs and deleted_solibs fields.
9427 * progspace.h (struct program_space) <added_solibs,
9428 deleted_solibs>: New fields.
9429 (clear_program_space_solib_cache): Declare.
9430 * progspace.c (release_program_space): Call
9431 clear_program_space_solib_cache.
9432 (clear_program_space_solib_cache): New function.
9433 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
9434 bpstat_stop_status. Use handle_solib_event.
9435 * breakpoint.c: Include gdb_regex.h.
9436 (print_solib_event): New function.
9437 (bpstat_print): Use print_solib_event.
9438 (bpstat_stop_status): Add special case for bp_shlib_event.
9439 (handle_solib_event): New function.
9440 (bpstat_what): Use handle_solib_event.
9441 (struct solib_catchpoint): New.
9442 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
9443 (breakpoint_hit_catch_solib, check_status_catch_solib)
9444 (print_it_catch_solib, print_one_catch_solib)
9445 (print_mention_catch_solib, print_recreate_catch_solib): New
9446 functions.
9447 (catch_solib_breakpoint_ops): New global.
9448 (catch_load_or_unload, catch_load_command_1)
9449 (catch_unload_command_1): New functions.
9450 (internal_bkpt_check_status): Add special case for
9451 bp_shlib_event.
9452 (internal_bkpt_print_it): Use print_solib_event.
9453 (initialize_breakpoint_ops): Initialize
9454 catch_solib_breakpoint_ops.
9455 (_initialize_breakpoint): Register "catch load" and "catch
9456 unload".
9457 * breakpoint.h (handle_solib_event): Declare.
9458 * NEWS: Add entry for "catch load" and "catch unload".
9459
9460 2012-01-24 Tom Tromey <tromey@redhat.com>
9461
9462 * ada-lang.c: Include gdb_vecs.h.
9463 * charset.c: Include gdb_vecs.h.
9464 * tracepoint.h: Include gdb_vecs.h.
9465 * gdb_vecs.h: New file.
9466
9467 2012-01-24 Pedro Alves <pedro@codesourcery.com>
9468
9469 * breakpoint.c (breakpoint_hit_catch_fork)
9470 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
9471 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
9472 * infrun.c (inferior_has_forked, inferior_has_vforked)
9473 (inferior_has_execd, inferior_has_called_syscall): Delete.
9474 (handle_syscall_event): Get syscall_number from the execution
9475 control state's wait status.
9476 (wait_for_inferior): Don't clear syscall_number.
9477
9478 2012-01-24 Pedro Alves <palves@redhat.com>
9479
9480 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
9481 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
9482 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
9483 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
9484 `ws' parameter.
9485 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
9486 false for events other than TARGET_SIGNAL_TRAP.
9487 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
9488 Add `ws' parameter.
9489 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
9490 events other than TARGET_SIGNAL_TRAP.
9491 (tracepoint_breakpoint_hit): Add `ws' parameter.
9492 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
9493 parameter.
9494 (bpstat_stop_status): Same.
9495 (pc_at_non_inline_function): Same.
9496 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
9497 to pass the current event's waitstatus to bpstat_stop_status
9498 and pc_at_non_inline_function.
9499
9500 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
9501
9502 Code cleanup.
9503 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
9504 Update the function comment for it.
9505 (source_script_with_search): Call make_cleanup_fclose for STREAM.
9506 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
9507 for STREAM.
9508
9509 2012-01-24 Pedro Alves <palves@redhat.com>
9510
9511 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
9512 outside `bs->stop' block.
9513 (bpstat_what): Rework bp_shlib_event handling.
9514 (internal_bkpt_check_status): If the breakpoint is a
9515 bp_shlib_event, then set bs->stop and bs->print if
9516 stop_on_solib_events is set.
9517
9518 2012-01-24 Gary Benson <gbenson@redhat.com>
9519
9520 Delete #if 0'd out code.
9521 * stack.c (print_frame_label_vars): Remove.
9522 (catch_info): Likewise.
9523 (_initialize_stack): Remove "info catch" command.
9524 * NEWS: Mention the above.
9525
9526 2012-01-24 Pedro Alves <palves@redhat.com>
9527
9528 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
9529 it.
9530 (remote_notice_new_inferior): If the remote end doesn't support
9531 the multiprocess extensions, then the PID is fake.
9532 (add_current_inferior_and_thread): New.
9533 (remote_start_remote): Use it.
9534 (extended_remote_attach_1): Adjust.
9535 (extended_remote_create_inferior_1): Use
9536 add_current_inferior_and_thread.
9537
9538 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
9539
9540 Fix watchpoints to be specific for each inferior.
9541 * breakpoint.c (watchpoint_in_thread_scope): Verify also
9542 current_program_space.
9543 * i386-nat.c (i386_inferior_data_cleanup): New.
9544 (i386_inferior_data_get): Replace variable inf_data_local by an
9545 inferior_data call.
9546 (i386_use_watchpoints): Initialize i386_inferior_data.
9547 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
9548 specific iterate_over_lwps.
9549
9550 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
9551
9552 Fix watchpoints across inferior fork.
9553 * amd64-linux-nat.c (update_debug_registers_callback): Update the
9554 comment for linux_nat_iterate_watchpoint_lwps.
9555 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
9556 linux_nat_iterate_watchpoint_lwps.
9557 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
9558 * i386-linux-nat.c (update_debug_registers_callback): Update the
9559 comment for linux_nat_iterate_watchpoint_lwps.
9560 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
9561 linux_nat_iterate_watchpoint_lwps.
9562 (i386_linux_prepare_to_resume): New comment on Linux kernel.
9563 * i386-nat.c: Include inferior.h.
9564 (dr_mirror): Remove.
9565 (i386_inferior_data, struct i386_inferior_data)
9566 (i386_inferior_data_get): New.
9567 (i386_debug_reg_state): Use i386_inferior_data_get.
9568 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
9569 (i386_insert_watchpoint, i386_remove_watchpoint)
9570 (i386_stopped_data_address, i386_insert_hw_breakpoint)
9571 (i386_remove_hw_breakpoint): New variable state, use
9572 i386_debug_reg_state instead of DR_MIRROR.
9573 * linux-nat.c (delete_lwp): New declaration.
9574 (num_lwps): Move here from downwards.
9575 (delete_lwp_cleanup): New.
9576 (linux_child_follow_fork): Create new child_lp, call
9577 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
9578 PTRACE_DETACH.
9579 (num_lwps): Move upwards.
9580 (linux_nat_iterate_watchpoint_lwps): New.
9581 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
9582 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
9583
9584 2012-01-24 Joel Brobecker <brobecker@adacore.com>
9585
9586 GDB 7.4 released.
9587
9588 2012-01-23 Pedro Alves <palves@redhat.com>
9589
9590 * top.c (caution): Rename to ...
9591 (confirm): ... this.
9592 (show_caution): Rename to ...
9593 (show_confirm): ... this.
9594 (quit_cover): Adjust.
9595 (init_main): Adjust.
9596 * top.h (caution): Rename to ...
9597 (confirm): ... this.
9598 * utils.c (internal_vproblem, defaulted_query): Adjust.
9599
9600 2012-01-23 Pedro Alves <palves@redhat.com>
9601
9602 * top.c (caution): Update comment.
9603 (execute_command): Don't consider the current value of `caution'.
9604
9605 2012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
9606
9607 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
9608
9609 2012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
9610
9611 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
9612 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
9613 * target.c (target_fileio_pwrite): Remove buffer address from
9614 debug output.
9615 (target_fileio_pread): Likewise.
9616
9617 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
9618
9619 * NEWS: Document remote "info proc" and "generate-core-file".
9620
9621 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
9622
9623 * gdbarch.sh (find_memory_regions): New callback.
9624 * gdbarch.c, gdbarch.h: Regenerate.
9625
9626 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
9627 callback before falling back to target method.
9628
9629 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
9630 (linux_target_install_ops): No longer install it.
9631
9632 * linux-tdep.c (linux_find_memory_regions): New function.
9633 (linux_init_abi): Install it.
9634
9635 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
9636
9637 * gdbarch.sh (make_corefile_notes): New architecture callback.
9638 * gdbarch.c: Regenerate.
9639 * gdbarch.h: Likewise.
9640
9641 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
9642 before target_make_corefile_notes. If NULL is returned, the
9643 target does not support core file generation.
9644
9645 * linux-nat.c: Include "linux-tdep.h".
9646 (find_signalled_thread, find_stop_signal): Remove.
9647 (linux_nat_do_thread_registers): Likewise.
9648 (struct linux_nat_corefile_thread_data): Likewise.
9649 (linux_nat_corefile_thread_callback): Likewise.
9650 (iterate_over_spus): Likewise.
9651 (struct linux_spu_corefile_data): Likewise.
9652 (linux_spu_corefile_callback): Likewise.
9653 (linux_spu_make_corefile_notes): Likewise.
9654 (linux_nat_collect_thread_registers): New function.
9655 (linux_nat_make_corefile_notes): Replace contents by call to
9656 linux_make_corefile_notes passing linux_nat_collect_thread_registers
9657 as native-only callback.
9658
9659 * linux-tdep.h: Include "bfd.h".
9660 (struct regcache): Add forward declaration.
9661 (linux_collect_thread_registers_ftype): New typedef.
9662 (linux_make_corefile_notes): Add prototype.
9663 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
9664 "regset.h", and "elf-bfd.h".
9665 (find_signalled_thread, find_stop_signal): New functions.
9666 (linux_spu_make_corefile_notes): Likewise.
9667 (linux_collect_thread_registers): Likewise.
9668 (struct linux_corefile_thread_data): New data structure.
9669 (linux_corefile_thread_callback): New funcion.
9670 (linux_make_corefile_notes): Likewise.
9671 (linux_make_corefile_notes_1): Likewise.
9672 (linux_init_abi): Install it.
9673
9674 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
9675
9676 * gdbarch.sh (info_proc): New callback.
9677 * gdbarch.c, gdbarch.h: Regenerate.
9678
9679 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
9680 before falling back to the target info_proc callback.
9681
9682 * linux-nat.c: Do not include "cli/cli-utils.h".
9683 (linux_nat_info_proc): Remove.
9684 (linux_target_install_ops): No longer install it.
9685
9686 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
9687 (read_mapping): New function.
9688 (linux_info_proc): Likewise.
9689 (linux_init_abi): Install it.
9690
9691 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
9692
9693 * defs.h (enum info_proc_what): Moved here from linux-nat.c
9694 * infcmd.c: (info_proc_cmd_1): New function.
9695 (info_proc_cmd): New function, moved here from equivalent routine
9696 orignally in linux-nat.c.
9697 (info_proc_cmd_mappings): Likewise.
9698 (info_proc_cmd_stat): Likewise.
9699 (info_proc_cmd_status): Likewise.
9700 (info_proc_cmd_cwd): Likewise.
9701 (info_proc_cmd_cmdline): Likewise.
9702 (info_proc_cmd_exe): Likewise.
9703 (info_proc_cmd_all): Likewise.
9704 (_initialize_infcmd): Install "info proc" command and subcommands.
9705
9706 * target.h (struct target_ops): Add to_info_proc.
9707 (target_info_proc): Add prototype.
9708 * target.c (target_info_proc): New function.
9709
9710 * procfs.c (procfs_info_proc): Add prototype.
9711 (info_proc_cmd): Rename into ...
9712 (procfs_info_proc): ... this. Update argument types as appropriate
9713 for a to_info_proc implementation. Handle "what" argument.
9714 (procfs_target): Install procfs_info_proc.
9715 (_initialize_procfs): No longer install "info proc" command.
9716
9717 * linux-nat.c: (enum info_proc_what): Remove.
9718 (linux_nat_info_proc_cmd_1): Rename into ...
9719 (linux_nat_info_proc): ... this. Update argument types as appropriate
9720 for a to_info_proc implementation.
9721 (linux_nat_info_proc_cmd): Remove.
9722 (linux_nat_info_proc_cmd_mappings): Likewise.
9723 (linux_nat_info_proc_cmd_stat): Likewise.
9724 (linux_nat_info_proc_cmd_status): Likewise.
9725 (linux_nat_info_proc_cmd_cwd): Likewise.
9726 (linux_nat_info_proc_cmd_cmdline): Likewise.
9727 (linux_nat_info_proc_cmd_exe): Likewise.
9728 (linux_nat_info_proc_cmd_all): Likewise.
9729 (linux_target_install_ops): Install linux_nat_info_proc.
9730 (_initialize_linux_nat): No longer install "info proc" command
9731 and subcommands.
9732
9733 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
9734
9735 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
9736 * config.in, configure: Regenerate.
9737
9738 * target.h (struct target_ops): Add to_fileio_readlink.
9739 (target_fileio_readlink): Add prototype.
9740 * target.c (target_fileio_readlink): New function.
9741
9742 * inf-child.c: Conditionally include <sys/param.h>.
9743 (inf_child_fileio_readlink): New function.
9744 (inf_child_target): Install it.
9745
9746 * remote.c (PACKET_vFile_readlink): New enum value.
9747 (remote_hostio_readlink): New function.
9748 (init_remote_ops): Install it.
9749 (_initialize_remote): Handle vFile:readlink packet type.
9750
9751 2012-01-20 Pedro Alves <palves@redhat.com>
9752 Ulrich Weigand <ulrich.weigand@linaro.org>
9753
9754 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
9755 * config.in, configure: Regenerate.
9756
9757 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
9758 to_fileio_pread, to_fileio_close, to_fileio_unlink.
9759 (target_fileio_open): Add prototype.
9760 (target_fileio_pwrite): Likewise.
9761 (target_fileio_pread): Likewise.
9762 (target_fileio_close): Likewise.
9763 (target_fileio_unlink): Likewise.
9764 (target_fileio_read_alloc): Likewise.
9765 (target_fileio_read_stralloc): Likewise.
9766
9767 * target.c: Include "gdb/fileio.h".
9768 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
9769 (default_fileio_target): New function.
9770 (target_fileio_open): Likewise.
9771 (target_fileio_pwrite): Likewise.
9772 (target_fileio_pread): Likewise.
9773 (target_fileio_close): Likewise.
9774 (target_fileio_unlink): Likewise.
9775 (target_fileio_close_cleanup): Likewise.
9776 (target_fileio_read_alloc_1): Likewise.
9777 (target_fileio_read_alloc): Likewise.
9778 (target_fileio_read_stralloc): Likewise.
9779
9780 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
9781 <fcntl.h>, and <unistd.h>.
9782 (inf_child_fileio_open_flags_to_host): New function.
9783 (inf_child_errno_to_fileio_error): Likewise.
9784 (inf_child_fileio_open): Likewise.
9785 (inf_child_fileio_pwrite): Likewise.
9786 (inf_child_fileio_pread): Likewise.
9787 (inf_child_fileio_close): Likewise.
9788 (inf_child_fileio_unlink): Likewise.
9789 (inf_child_target): Install to_fileio routines.
9790
9791 * remote.c (init_remote_ops): Install to_fileio routines.
9792
9793 2012-01-20 Pedro Alves <palves@redhat.com>
9794 Ulrich Weigand <ulrich.weigand@linaro.org>
9795
9796 * remote.c (remote_multi_process_p): Only check for multi-process
9797 protocol feature, do not check for extended protocol.
9798 (remote_supports_multi_process): Check for extended protocol here.
9799 (set_general_process): Likewise.
9800 (extended_remote_kill): Likewise.
9801 (remote_pid_to_str): Likewise.
9802 (remote_query_supported): Always query multiprocess mode.
9803
9804 2012-01-20 Pedro Alves <palves@redhat.com>
9805 Ulrich Weigand <ulrich.weigand@linaro.org>
9806
9807 * inferior.h (struct inferior): Add fake_pid_p.
9808 * inferior.c (exit_inferior_1): Clear fake_pid_p.
9809 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
9810 magic_null_ptid since the remote side doesn't provide a real PID.
9811
9812 2012-01-19 Tom Tromey <tromey@redhat.com>
9813
9814 * NEWS: Combine the two Python sections.
9815
9816 2012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9817
9818 * target.h (target_close): Update comment on the target's unpush state.
9819
9820 2012-01-19 Pedro Alves <palves@redhat.com>
9821
9822 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
9823 linux_nat_async directly instead of going through the target
9824 vector.
9825 * target.c (unpush_target): Close target after unpushing it, not
9826 before.
9827
9828 2012-01-19 Gary Benson <gbenson@redhat.com>
9829
9830 * mdebugread.c (sort_blocks): Replace integer constants with ones
9831 derived from FIRST_LOCAL_BLOCK.
9832
9833 2012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
9834 Jan Kratochvil <jan.kratochvil@redhat.com>
9835
9836 PR gdb/9538
9837 * symfile.c (find_separate_debug_file): New function.
9838 (terminate_after_last_dir_separator): Likewise.
9839 (find_separate_debug_file_by_debuglink): Also try realpath.
9840 * configure.ac (AC_CHECK_FUNCS): Add lstat.
9841 * configure: Regenerate.
9842 * config.in: Regenerate.
9843
9844 2012-01-18 Doug Evans <dje@google.com>
9845
9846 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
9847 (main.o): Remove rule.
9848 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
9849 (--with-sysroot): Rewrite.
9850 * configure: Regenerate.
9851 * config.in: Regenerate.
9852
9853 2012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
9854
9855 * parse.c (initialize_expout): New function.
9856 (reallocate_expout): Likewise.
9857 (parse_exp_in_context): Use `initialize_expout' and
9858 `reallocate_expout' when appropriate.
9859
9860 2012-01-18 Pedro Alves <palves@redhat.com>
9861
9862 * record.c (struct record_breakpoint, record_breakpoint_p)
9863 (record_breakpoints): New.
9864 (record_insert_breakpoint, record_remove_breakpoint): Manage
9865 record breakpoints list. Only remove breakpoints from the
9866 inferior if they had been inserted there in the first place.
9867
9868 2012-01-17 Doug Evans <dje@google.com>
9869
9870 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
9871 if we know we don't have a file name to look for.
9872
9873 2012-01-17 Pedro Alves <palves@redhat.com>
9874
9875 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
9876 the frame's stop reason is UNWIND_UNAVAILABLE.
9877
9878 2012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
9879
9880 Fix compilation error.
9881 * m2-exp.y (yyerror): Use ANSI C prototype.
9882
9883 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
9884
9885 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
9886 (growbuf_by_size): Likewise.
9887 (yyerror): Likewise.
9888 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
9889 (modblock): Remove variable (was #if 0'ed).
9890 (parse_number): Convert prototype from K&R to ANSI C.
9891 (yyerror): Likewise.
9892 * objc-exp.y (parse_number): Likewise.
9893 (yyerror): Likewise.
9894 (yylex): Remove #if 0'ed code.
9895 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
9896 (yyerror): Likewise.
9897
9898 2012-01-16 Tom Tromey <tromey@redhat.com>
9899
9900 * NEWS: Add item.
9901 * symtab.h (compare_filenames_for_search): Declare.
9902 * symtab.c (compare_filenames_for_search): New function.
9903 (iterate_over_some_symtabs): Use it.
9904 * symfile.h (struct quick_symbol_functions)
9905 <map_symtabs_matching_filename>: Change spec.
9906 * psymtab.c (partial_map_symtabs_matching_filename): Use
9907 compare_filenames_for_search. Update for new spec.
9908 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
9909 compare_filenames_for_search. Update for new spec.
9910 * breakpoint.c (clear_command): Use compare_filenames_for_search.
9911
9912 2012-01-16 Tom Tromey <tromey@redhat.com>
9913
9914 PR python/13281:
9915 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
9916 (struct main_type) <flag_flag_enum>: New field.
9917 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
9918 * NEWS: Add entries.
9919 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
9920 enums.
9921 * python/lib/gdb/printing.py (_EnumInstance): New class.
9922 (FlagEnumerationPrinter): Likewise.
9923
9924 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
9925
9926 * breakpoint.c (create_sals_from_address_default): New function.
9927 (create_breakpoints_sal_default): Likewise.
9928 (decode_linespec_default): Likewise.
9929 (is_marker_spec): Removed.
9930 (strace_marker_p): New function.
9931 (init_breakpoint_sal): Using `strace_marker_p' instead of
9932 `is_marker_spec'.
9933 (create_breakpoint): Call method `create_sals_from_address' from
9934 breakpoint_ops, replacing code that created SALs conditionally
9935 on the type of the breakpoint. Call method `create_breakpoints_sal',
9936 replacing code that created breakpoints conditionally on the type
9937 wanted.
9938 (base_breakpoint_create_sals_from_address): New function.
9939 (base_breakpoint_create_breakpoints_sal): Likewise.
9940 (base_breakpoint_decode_linespec): Likewise.
9941 (base_breakpoint_ops): Add methods
9942 `base_breakpoint_create_sals_from_address',
9943 `base_breakpoint_create_breakpoints_sal' and
9944 `base_breakpoint_decode_linespec'.
9945 (bkpt_create_sals_from_address): New function.
9946 (bkpt_create_breakpoints_sal): Likewise.
9947 (bkpt_decode_linespec): Likewise.
9948 (tracepoint_create_sals_from_address): Likewise.
9949 (tracepoint_create_breakpoints_sal): Likewise.
9950 (tracepoint_decode_linespec): Likewise.
9951 (strace_marker_create_sals_from_address): Likewise.
9952 (strace_marker_create_breakpoints_sal): Likewise.
9953 (strace_marker_decode_linespec): Likewise.
9954 (strace_marker_breakpoint_ops): New variable.
9955 (addr_string_to_sals): Remove `marker_spec'. Call method
9956 `decode_linespec' from breakpoint_ops, replacing code that decoded
9957 an address string into a SAL. Use `strace_marker_p' instead of
9958 `marker_spec'.
9959 (strace_command): Decide whether we are dealing with a static
9960 tracepoint with marker or not. Use the appropriate breakpoint_ops.
9961 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
9962 * breakpoint.h (linespec_result, linespec_sals): New forward
9963 declarations.
9964 (breakpoint_ops) <create_sals_from_address>,
9965 <create_breakpoints_sal>, <decode_linespec>: New methods.
9966
9967 2012-01-14 Doug Evans <dje@google.com>
9968
9969 * NEWS: Update text for "maint set python print-stack".
9970 It is deprecated in gdb 7.4 and deleted in 7.5.
9971
9972 2012-01-13 Eli Zaretskii <eliz@gnu.org>
9973
9974 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
9975 including curses.h.
9976
9977 2012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
9978
9979 * configure: Regenerate.
9980 * config.in: Regenerate.
9981
9982 2012-01-12 Keith Seitz <keiths@redhat.com>
9983
9984 PR mi/10586
9985 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
9986 (ANONYMOUS_UNION_NAME): Define.
9987 (is_path_expr_parent): New function.
9988 (get_path_expr_parent): New function.
9989 (is_anonymous_child): New function.
9990 (create_child_with_value): If the child is anonymous and without
9991 a name, assign an object name to it.
9992 (c_describe_child): Use get_path_expr_parent to determine
9993 the parent expression.
9994 If there field represents an anonymous struct or union and
9995 has no name, set an appropriate display name and expression.
9996 (cplus_describe_child): Likewise.
9997
9998 2012-01-12 Pedro Alves <palves@redhat.com>
9999
10000 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
10001 available when %ebp is found to be zero (outermost).
10002
10003 2012-01-11 Andreas Tobler <andreast@fgznet.ch>
10004
10005 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
10006 an internal gdb_static_assert.
10007 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
10008
10009 2012-01-11 Tom Tromey <tromey@redhat.com>
10010
10011 PR gdb/9598:
10012 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
10013 catch" and "catch throw".
10014
10015 2012-01-11 Paul Hilfinger <hilfingr@adacore.com>
10016
10017 * blockframe.c (block_innermost_frame): Start search from selected
10018 frame, if present, or otherwise the current frame.
10019
10020 * c-exp.y (variable): Update innermost_block for
10021 'block COLONCOLON NAME' clause.
10022 * m2-exp.y (variable): Ditto.
10023 * objc-exp.y (variable): Ditto.
10024
10025 2012-01-10 Tom Tromey <tromey@redhat.com>
10026
10027 PR python/13199:
10028 * python/python.c (finish_python_initialization): Set sys.argv.
10029
10030 2012-01-10 Doug Evans <dje@google.com>
10031
10032 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
10033 "want_line_info". All callers updated.
10034 (dwarf_decode_lines_1): New function.
10035 (handle_DW_AT_stmt_list): Add function comment.
10036 New arg "want_line_info". All callers updated.
10037 (read_file_scope,read_type_unit_scope): Move comment from
10038 handle_DW_AT_stmt_list to here.
10039
10040 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
10041
10042 Fix regression after libiberty/ update for GCC PR 6057 and others.
10043 * c-exp.y (operator) <OPERATOR DELETE>
10044 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
10045 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
10046 (make_builtin_type, make_name): New variable i, add gdb_assert.
10047 (operator) <OPERATOR NEW>: Update ARGS to 3.
10048 (operator) <OPERATOR DELETE>: Add trailing space.
10049 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
10050 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
10051 * cp-support.c (cp_canonicalize_string): Check NULL from
10052 cp_comp_to_string, call warning and return.
10053
10054 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
10055
10056 Fix duplicate .o files after omitting libbfd.a.
10057 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
10058 (SFILES): Add corelow.c.
10059 (COMMON_OBS): Add corelow.o.
10060 (ALLDEPFILES): Remove corelow.c.
10061 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
10062 * config/alpha/alpha-osf3.mh: Likewise.
10063 * config/alpha/fbsd.mh: Likewise.
10064 * config/arm/nbsdaout.mh: Likewise.
10065 * config/arm/nbsdelf.mh: Likewise.
10066 * config/i386/i386gnu.mh: Likewise.
10067 * config/ia64/hpux.mh: Likewise.
10068 * config/ia64/linux.mh: Likewise.
10069 * config/m32r/linux.mh: Likewise.
10070 * config/m68k/linux.mh: Likewise.
10071 * config/mips/irix5.mh: Likewise.
10072 * config/mips/irix6.mh: Likewise.
10073 * config/pa/hpux.mh: Likewise.
10074 * config/pa/linux.mh: Likewise.
10075 * config/powerpc/aix.mh: Likewise.
10076 * config/sparc/linux.mh: Likewise.
10077 * config/sparc/linux64.mh: Likewise.
10078 * config/sparc/sol2.mh: Likewise.
10079 * config/vax/vax.mh: Likewise.
10080 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
10081 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
10082 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
10083 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
10084 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
10085 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
10086 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
10087 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
10088 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
10089 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
10090 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
10091 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
10092 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
10093 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
10094 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
10095 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
10096 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
10097 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
10098 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
10099 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
10100 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
10101 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
10102 corelow.o from gdb_target_obs.
10103 * corefile.c (core_target): Update the comment on NULL value.
10104 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
10105 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
10106 MATCHES. Drop YUMMY set on NULL.
10107 (core_close): Do not call exit_inferior_silent on zero PID. Do not
10108 reclaim CORE_DATA if it is already NULL.
10109
10110 2012-01-09 Doug Evans <dje@google.com>
10111
10112 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
10113 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
10114
10115 2012-01-09 Keith Seitz <keiths@redhat.com>
10116
10117 * breakpoint.c (wrapper.h): Don't include.
10118
10119 2012-01-09 Keith Seitz <keiths@redhat.com>
10120
10121 * Makefile.in (SFILES): Remove wrapper.c.
10122 (HFILES_NO_SRCDIR): Remove wrapper.h.
10123 (COMMON_OBS): Remove wrapper.o.
10124 * cli/cli-interp.c: Don't inlude wrapper.h.
10125 * corelow.c: Likewise.
10126 (core_open): Replace gdb_target_find_new_threads with
10127 TRY_CATCH around target_find_new_threads.
10128 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
10129 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
10130 * varobj.c (varobj_create): Likewise for parse_exp_1 and
10131 evaluate_expression.
10132 (varobj_set_value): Likewise for evaluate_expression and
10133 value_assign.
10134 (install_new_variable): Likewise for value_fetch_lazy.
10135 (adjust_value_for_child_access): Likewise for value_ind.
10136 (c_describe_child): Likewise for value_subscript and
10137 value_ind.
10138 (c_value_of_root): Likewise for evaluate_expression.
10139 * wrapper.c: Remove.
10140 * wrapper.h: Remove.
10141
10142 2012-01-09 Doug Evans <dje@google.com>
10143
10144 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
10145 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
10146 "abfd" args with "section". All callers updated.
10147 Error checking code moved ...
10148 (error_check_comp_unit_head): ... here. New function.
10149 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
10150 Delete arg "abfd". New arg "type_offset". All callers updated.
10151 (create_debug_types_hash_table): Simplify by using
10152 read_and_check_type_unit_head.
10153
10154 * parser-defs.h (namecopy): Delete.
10155 * parse.c (namecopy, namecopy_size): Move into copy_name.
10156
10157 2012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
10158
10159 Partially fix duplicate .o files after omitting libbfd.a.
10160 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
10161 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
10162 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
10163 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
10164 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
10165 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
10166 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
10167
10168 2012-01-09 Pedro Alves <palves@redhat.com>
10169
10170 * MAINTAINERS: Update my email address.
10171
10172 2012-01-08 Doug Evans <dje@google.com>
10173
10174 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
10175 n_type_units. Rename type_comp_units to all_type_units.
10176 All uses updated.
10177 (add_signatured_type_cu_to_table): Renamed from
10178 add_signatured_type_cu_to_list. All callers updated.
10179
10180 * gdbtypes.h (struct cplus_struct_type): Delete member
10181 nfn_fields_total. All uses removed.
10182
10183 2012-01-06 Doug Evans <dje@google.com>
10184
10185 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
10186 to top of file.
10187 (dwarf2_find_comp_unit): Delete.
10188 (process_psymtab_comp_unit): Make result "void".
10189 Delete args buffer, info_ptr, buffer_size, and replace with
10190 "section". All callers updated.
10191 (dwarf2_build_psymtabs_hard): Simplify.
10192
10193 2012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
10194 Thiago Jung Bauermann <bauerman@br.ibm.com>
10195
10196 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
10197 before `struct gdb_exception'.
10198 * breakpoint.c (update_global_location_list_nothrow)
10199 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
10200 * cp-abi.c (value_rtti_type): Likewise.
10201 * cp-support.c (cp_validate_operator): Likewise.
10202 * infrun.c (insert_exception_resume_breakpoint)
10203 (check_exception_resume, keep_going): Likewise.
10204 * mi-interp.c (mi_breakpoint_created)
10205 (mi_breakpoint_modified): Likewise.
10206 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
10207 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
10208 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
10209
10210 2012-01-05 Doug Evans <dje@google.com>
10211
10212 * dwarf2read.c (statement_prologue): Delete, unused.
10213
10214 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
10215 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
10216
10217 * dwarf2read.c (comp_unit_header): Delete, unused.
10218
10219 2012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
10220
10221 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
10222 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
10223
10224 2012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
10225
10226 * infrun.c (normal_stop): Don't skip calling the normal_stop
10227 observers if the thread was doing a multi-step, but stopped for
10228 some reason other than stepping.
10229
10230 2012-01-05 Pedro Alves <alves.ped@gmail.com>
10231
10232 * cli/cli-decode.h: Add comments.
10233 (CMD_LIST_AMBIGUOUS): Moved to command.h
10234 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
10235 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
10236 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
10237 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
10238 (add_com, add_com_alias, add_info, add_info_alias)
10239 (complete_on_cmdlist, complete_on_enum, help_list): Remove
10240 declarations.
10241 * command.h: Add and adjust comments.
10242 (CMD_LIST_AMBIGUOUS): Moved here.
10243 (help_cmd, help_cmd_list): Delete declarations.
10244
10245 2012-01-04 Doug Evans <dje@google.com>
10246
10247 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
10248 All callers updated.
10249 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
10250 Replace all arguments with "per_cu". All callers updated.
10251
10252 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
10253
10254 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
10255 New arg "per_cu". All callers updated.
10256
10257 Delete #if 0'd out code.
10258 * language.c (binop_result_type): Delete.
10259 (simple_type, ordered_type, same_type, integral_type): Delete.
10260 (numeric_type, character_type, string_type, boolean_type): Delete.
10261 (float_type, structured_type): Delete.
10262 * language.h: Update.
10263
10264 2012-01-04 Tom Tromey <tromey@redhat.com>
10265
10266 * python/py-value.c (valpy_binop): Initialize 'res_val'.
10267
10268 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10269
10270 * corefile.c (close_exec_file): Delete.
10271 (reopen_exec_file): Remove commented out code that seems related
10272 to close_exec_file, which is being deleted here.
10273 * inferior.h (close_exec_file): Delete.
10274 * fork-child.c (fork_inferior): Remove call to fork_inferior.
10275
10276 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10277
10278 * ada-lang.c: #include "cli/cli-utils.h".
10279 (get_selections): Use skip_spaces.
10280 (ada_get_next_arg): Use skip_spaces and skip_to_space.
10281 (catch_ada_exception_command_split): Use skip_spaces.
10282 (ada_decode_assert_location): Likewise.
10283
10284 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10285
10286 * linespec.c (decode_line_internal): Check for C++ or Java
10287 compound constructs only if the current language is C, C++
10288 or Java.
10289
10290 2012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
10291
10292 Revert:
10293 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10294 Joel Brobecker <brobecker@adacore.com>
10295 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
10296 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
10297 3 times.
10298 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
10299 fall through into AT_ENTRY_POINT.
10300 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
10301 DUMMY_ADDR with it.
10302 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
10303 PPC_INSN_SIZE skip to 3 times.
10304
10305 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10306
10307 * linespec.c (add_minsym): Preserve function descriptors.
10308
10309 2012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
10310
10311 * breakpoint.c (all_locations_are_pending): Consider locations
10312 in program spaces executing during startup pending as well.
10313
10314 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10315
10316 Copyright year update in most files of the GDB Project.
10317
10318 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10319
10320 * copyright.sh: Delete.
10321 * copyright.py: Rewrite.
10322
10323 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10324
10325 * gnulib/extra/update-copyright: New file, imported from gnulib.
10326
10327 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10328
10329 * README (Copyright and License Notices): New section.
10330
10331 2012-01-03 Tom Tromey <tromey@redhat.com>
10332
10333 PR python/12533:
10334 * python/py-value.c (valpy_dereference, valpy_get_address
10335 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
10336 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
10337 (valpy_absolute, valpy_richcompare): Free intermediate values.
10338
10339 2011-01-03 Joel Brobecker <brobecker@adacore.com>
10340
10341 * ada-lang.c: Reformat the copyright notice.
10342
10343 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10344
10345 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
10346 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
10347 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
10348 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
10349 Revert this part of:
10350 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10351 Build gdb directly from *.o files not using libgdb.a.
10352 * Makefile.in (COMMON_OBS): Remove solib-target.o.
10353
10354 2012-01-02 Joel Brobecker <brobecker@adacore.com>
10355
10356 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
10357 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
10358 Reformat the copyright header.
10359
10360 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10361
10362 Revert this part of:
10363 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10364 Remove the gdbtui binary.
10365 * gdb.c (main): Remove args.interpreter_p initialization.
10366 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
10367 * main.h (struct captured_main_args): Remove interpreter_p.
10368
10369 2012-01-02 Joel Brobecker <brobecker@adacore.com>
10370
10371 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
10372
10373 2012-01-02 Joel Brobecker <brobecker@adacore.com>
10374
10375 * top.c (print_gdb_version): Update copyright year.
10376
10377 2012-01-02 Yao Qi <yao@codesourcery.com>
10378
10379 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
10380
10381 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10382 Joel Brobecker <brobecker@adacore.com>
10383
10384 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
10385 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
10386 3 times.
10387 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
10388 fall through into AT_ENTRY_POINT.
10389 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
10390 DUMMY_ADDR with it.
10391 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
10392 PPC_INSN_SIZE skip to 3 times.
10393
10394 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10395
10396 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
10397 the return value.
10398 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
10399
10400 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10401
10402 Build gdb directly from *.o files not using libgdb.a.
10403 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
10404 (COMMON_OBS): Remove solib-target.o.
10405 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
10406 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
10407 (LIBGDB_OBS, libgdb.a): Move it above.
10408 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
10409 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
10410 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
10411 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
10412 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
10413 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
10414 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
10415 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
10416 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
10417 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
10418 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
10419 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
10420 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
10421 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
10422 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
10423 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
10424 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
10425 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
10426 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
10427 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
10428 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
10429 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
10430 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
10431 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
10432 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
10433 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
10434 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
10435
10436 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10437
10438 Remove the gdbtui binary.
10439 * .gitignore (/gdbtui): Remove.
10440 * Makefile.in (TUI): Remove.
10441 (SUBDIR_TUI_OBS): Remove tui-main.o.
10442 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
10443 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
10444 (tui-main.o): Remove.
10445 (all_object_files): Remove tui-main.o.
10446 * NEWS: New note for the gdbtui removal.
10447 * configure: Rebuilt.
10448 * configure.ac: No longer add all-tui, clean-tui, install-tui and
10449 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
10450 CONFIG_UNINSTALL respectively.
10451 * gdb.c (main): Remove args.interpreter_p initialization.
10452 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
10453 * main.h (struct captured_main_args): Remove interpreter_p.
10454 * tui/tui-main.c: Remove.
10455
10456 2012-01-01 Doug Evans <dje@google.com>
10457
10458 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
10459 (dwarf2_physname, read_import_statement): Ditto.
10460 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
10461 (process_structure_scope read_subroutine_type): Ditto.
10462 (read_typedef, load_partial_dies, read_partial_die): Ditto.
10463 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
10464 (dwarf2_fetch_die_location_block): Ditto.
10465 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
10466
10467 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
10468 All callers updated.
10469 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
10470 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
10471 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
10472
10473 * dwarf2read.c (load_cu): Move assert to more useful location.
10474
10475 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
10476 All callers updated.
10477
10478 * dwarf2read.c (dwarf2_per_objfile): Add comment.
10479 (dwarf2_elf_names): Minor reformat.
10480 (dwarf2_per_cu_data): Tweak comment.
10481 (dwarf2_read_section): Fix comment.
10482 (create_all_comp_units): Fix comment.
10483 (load_full_comp_unit): Fix comment.
10484 (process_full_comp_unit): Fix comment.
10485 (read_signatured_type): Fix comment.
10486
10487 For older changes see ChangeLog-2011.
10488 \f
10489 Local Variables:
10490 mode: change-log
10491 left-margin: 8
10492 fill-column: 74
10493 version-control: never
10494 coding: utf-8
10495 End:
This page took 0.277686 seconds and 4 git commands to generate.