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