ChangeLog typo fix
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2014-12-04 Jan Kratochvil <jan.kratochvil@redhat.com>
2
3 * block.c (block_lookup_symbol_primary): New function.
4 * block.h (block_lookup_symbol_primary): New declaration.
5 * symtab.c (lookup_symbol_in_objfile_symtabs): Assert BLOCK_INDEX.
6 Call block_lookup_symbol_primary.
7
8 2014-12-03 Maciej W. Rozycki <macro@codesourcery.com>
9
10 * tramp-frame.h (tramp_frame): Add `validate' member.
11 * tramp-frame.c (tramp_frame_start): Validate trampoline before
12 scanning.
13 * mips-linux-tdep.c (MICROMIPS_INST_LI_V0): New macro.
14 (MICROMIPS_INST_POOL32A, MICROMIPS_INST_SYSCALL): Likewise.
15 (mips_linux_o32_sigframe): Initialize `validate' member.
16 (mips_linux_o32_rt_sigframe): Likewise.
17 (mips_linux_n32_rt_sigframe): Likewise.
18 (mips_linux_n64_rt_sigframe): Likewise.
19 (micromips_linux_o32_sigframe): New variable.
20 (micromips_linux_o32_rt_sigframe): Likewise.
21 (micromips_linux_n32_rt_sigframe): Likewise.
22 (micromips_linux_n64_rt_sigframe): Likewise.
23 (mips_linux_o32_sigframe_init): Handle microMIPS trampolines.
24 (mips_linux_n32n64_sigframe_init): Likewise.
25 (mips_linux_sigframe_validate): New function.
26 (micromips_linux_sigframe_validate): Likewise.
27 (mips_linux_init_abi): Install microMIPS trampoline unwinders.
28
29 2014-12-03 Ulrich Weigand  <uweigand@de.ibm.com>
30
31 * config/sparc/sol2.mh (NATDEPFILES): Remove core-regset.o.
32 * sparc-sol2-tdep.c: Include "regset.h".
33 (sparc32_sol2_supply_core_gregset): New function.
34 (sparc32_sol2_collect_core_gregset): Likewise.
35 (sparc32_sol2_supply_core_fpregset): Likewise.
36 (sparc32_sol2_collect_core_fpregset): Likewise.
37 (sparc32_sol2_gregset, sparc32_sol2_fpregset): New variables.
38 (sparc32_sol2_init_abi): Set tdep->gregset/sizeof_gregset and
39 tdep->fpregset/sizeof_fpregset.
40 * sparc64-sol2-tdep.c: Include "regset.h".
41 (sparc64_sol2_supply_core_gregset): New function.
42 (sparc64_sol2_collect_core_gregset): Likewise.
43 (sparc64_sol2_supply_core_fpregset): Likewise.
44 (sparc64_sol2_collect_core_fpregset): Likewise.
45 (sparc64_sol2_gregset, sparc64_sol2_fpregset): New variables.
46 (sparc64_sol2_init_abi): Set tdep->gregset/sizeof_gregset and
47 tdep->fpregset/sizeof_fpregset.
48
49 2014-12-03 Simon Marchi <simon.marchi@ericsson.com>
50
51 * common/cleanups.c (make_cleanup_dtor): Use typedef for dtor
52 type.
53
54 2014-12-02 Doug Evans <dje@google.com>
55
56 * symtab.c (symbol_init_cplus_specific): Delete.
57 (symbol_set_demangled_name): Remove special c++ support.
58 (symbol_get_demangled_name, symbol_set_language): Ditto.
59 * symtab.h (struct cplus_specific): Delete.
60 (struct general_symbol_info) <language_specific>: Remove
61 cplus_specific.
62
63 2014-12-02 Doug Evans <dje@google.com>
64
65 PR symtab/17602
66 * linespec.c (iterate_name_matcher): Fix arguments to symbol_name_cmp.
67
68 2014-12-02 Doug Evans <dje@google.com>
69
70 PR symtab/17591
71 * dwarf2read.c (find_slot_in_mapped_hash): Use cp_remove_params
72 to strip parameters.
73
74 2014-12-02 Doug Evans <dje@google.com>
75
76 * dwarf2read.c (peek_die_abbrev): Improve error message text.
77
78 2014-12-02 Doug Evans <dje@google.com>
79
80 * valops.c (do_search_struct_field): Remove remnant of Chill support.
81 Ref: commit 4c2260aa5c261f7bfb26dcf3aa7c67876720b17e
82
83 2014-12-02 Simon Marchi <simon.marchi@ericsson.com>
84
85 * common/cleanups.c (make_cleanup_dtor): Fix comment typo.
86
87 2014-12-02 Nick Bull <nicholaspbull@gmail.com>
88
89 * NEWS: Mention new Python events.
90 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-infevents.o.
91 (SUBDIR_PYTHON_SRCS): Add py-infevents.c.
92 (py-infevents.o): New rule.
93 * doc/observer.texi (inferior_call_pre, inferior_call_post)
94 (memory_changed, register_changed): New observers.
95 * infcall.c (call_function_by_hand): Notify observer before and
96 after inferior call.
97 * python/py-event.h (inferior_call_kind): New enum.
98 (emit_inferior_call_event): New prototype.
99 (emit_register_changed_event): New prototype.
100 (emit_memory_changed_event): New prototype.
101 * python/py-events.h (events_object): New registries
102 inferior_call, memory_changed and register_changed.
103 * python/py-evts.c (gdbpy_initialize_py_events): Add the
104 inferior_call, memory_changed and register_changed registries.
105 * python/py-infevents.c: New.
106 * python/py-inferior.c (python_on_inferior_call_pre)
107 (python_on_inferior_call_post, python_on_register_change)
108 (python_on_memory_change): New functions.
109 (gdbpy_initialize_inferior): Attach python handler to new
110 observers.
111 * python/py-infthread.c(gdbpy_create_ptid_object): New.
112 (thpy_get_ptid) Use gdbpy_create_ptid_object.
113 * python/python-internal.h:
114 (gdbpy_create_ptid_object)
115 (gdbpy_initialize_inferior_call_pre_event)
116 (gdbpy_initialize_inferior_call_post_event)
117 (gdbpy_initialize_register_changed_event)
118 (gdbpy_initialize_memory_changed_event): New prototypes.
119 * python/python.c (_initialize_python): Initialize new events.
120 * valops.c (value_assign): Notify register_changed observer.
121
122 2014-12-02 Doug Evans <dje@google.com>
123
124 * python/py-infthread.c: Whitespace fixes.
125
126 2014-12-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
127
128 * features/Makefile (s390-te-linux64-expedite): Replace
129 non-existant r14 and r15 by r14l and r15l, respectively.
130 * regformats/s390-te-linux64.dat: Regenerate.
131
132 2014-12-01 Simon Marchi <simon.marchi@ericsson.com>
133
134 * objfiles.c (allocate_objfile): Remove duplicate comment.
135
136 2014-12-01 Ulrich Weigand  <uweigand@de.ibm.com>
137
138 * config/i386/i386gnu.mh (NATDEPFILES): Remove core-regset.o.
139 * i386gnu-nat.c: Do not include <sys/procfs.h> or "gregset.h".
140 (CREG_OFFSET, creg_offset, CREG_ADDR): Remove.
141 (supply_gregset, supply_fpregset): Remove.
142 * i386gnu-tdep.c (i386gnu_gregset_reg_offset): New variable.
143 (i386gnu_init_abi): Set tdep->gregset_reg_offset, gregset_num_regs,
144 and sizeof_gregset.
145
146 2014-11-30 Jan Kratochvil <jan.kratochvil@redhat.com>
147
148 Add add-auto-load-scripts-directory.
149 * NEWS (Changes since GDB 7.8): Add add-auto-load-scripts-directory.
150 * auto-load.c (add_auto_load_dir): New function.
151 (_initialize_auto_load): Install it.
152
153 2014-11-30 Martin Galvan <martin.galvan@tallertechnologies.com> (tiny patch, obvious)
154
155 Pushed by Joel Brobecker <brobecker@adacore.com>.
156 * frame.c (frame_id_eq): Fix the check for FID_STACK_INVALID.
157
158 2014-11-29 Siva Chandra Reddy <sivachandra@google.com>
159
160 * eval.c (evaluate_subexp): Check that the thread stack temporaries
161 are not already enabled before enabling them.
162
163 2014-11-29 Yao Qi <yao@codesourcery.com>
164
165 * arm-tdep.c (arm_analyze_prologue): Move local variables
166 'framereg' and 'framesize' to inner block. Move code to
167 inner block too.
168
169 2014-11-28 Siva Chandra Reddy <sivachandra@google.com>
170
171 * eval.c: Include gdbthread.h.
172 (evaluate_subexp): Enable thread stack temporaries before
173 evaluating a complete expression and clean them up after the
174 evaluation is complete.
175 * gdbthread.h: Include common/vec.h.
176 (value_ptr): New typedef.
177 (VEC (value_ptr)): New vector type.
178 (value_vec): New typedef.
179 (struct thread_info): Add new fields stack_temporaries_enabled
180 and stack_temporaries.
181 (enable_thread_stack_temporaries)
182 (thread_stack_temporaries_enabled_p, push_thread_stack_temporary)
183 (get_last_thread_stack_temporary)
184 (value_in_thread_stack_temporaries): Declare.
185 * gdbtypes.c (class_or_union_p): New function.
186 * gdbtypes.h (class_or_union_p): Declare.
187 * infcall.c (call_function_by_hand): Store return values of class
188 type as temporaries on stack.
189 * thread.c (enable_thread_stack_temporaries): New function.
190 (thread_stack_temporaries_enabled_p, push_thread_stack_temporary)
191 (get_last_thread_stack_temporary): Likewise.
192 (value_in_thread_stack_temporaries): Likewise.
193 * value.c (value_force_lval): New function.
194 * value.h (value_force_lval): Declare.
195
196 2014-11-28 Pierre Muller <muller@sourceware.org>
197
198 Pushed by Joel Brobecker <brobecker@adacore.com>.
199 * amd64-tdep.c (amd64_dwarf_regmap array): Add missing MMX
200 registers.
201
202 2014-11-28 Ulrich Weigand  <uweigand@de.ibm.com>
203
204 * config/ia64/linux.mh (NATDEPFILES): Remove core-regset.o.
205 * config/sparc/linux.mh (NATDEPFILES): Likewise.
206 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
207 * m68klinux-nat.c (fetch_core_registers): Remove.
208 (linux_elf_core_fns): Remove.
209 (_initialize_m68k_linux_nat): Do not call deprecated_add_core_fns.
210
211 2014-11-28 Joel Brobecker <brobecker@adacore.com>
212
213 * utils.c (gdb_realpath): Rework comment about handling on
214 Windows.
215
216 2014-11-28 Yao Qi <yao@codesourcery.com>
217
218 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
219 rename.
220 * gnulib/aclocal.m4: Re-generated.
221 * gnulib/config.in: Re-generated.
222 * gnulib/configure: Re-generated.
223 * gnulib/import/Makefile.am: Re-generated.
224 * gnulib/import/Makefile.in: Re-generated.
225 * gnulib/import/m4/gnulib-cache.m4: Re-generated.
226 * gnulib/import/m4/gnulib-comp.m4: Re-generated.
227 * import/basename-lgpl.c: New file.
228 * import/dirname-lgpl.c: New file.
229 * import/dirname.h: New file.
230 * import/m4/dirname.m4: New file.
231 * import/m4/malloc.m4: New file.
232 * import/m4/rename.m4: New file.
233 * import/m4/rmdir.m4: New file.
234 * import/m4/stdio_h.m4: New file.
235 * import/malloc.c: New file.
236 * import/rename.c: New file.
237 * import/rmdir.c: New file.
238 * import/same-inode.h: New file.
239 * import/stdio.c: New file.
240 * import/stdio.in.h: New file.
241 * import/stripslash.c: New file.
242
243 2014-11-28 Yao Qi <yao@codesourcery.com>
244
245 * configure.ac (AC_CHECK_FUNCS): Remove canonicalize_file_name
246 and realpath.
247 * config.in: Re-generated.
248 * configure: Re-generated.
249 * utils.c (gdb_realpath): Remove code calling realpath,
250 canonicalize_file_name and pathconf.
251 [!_WIN32]: Call canonicalize_file_name.
252
253 2014-11-28 Yao Qi <yao@codesourcery.com>
254
255 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
256 canonicalize-lgpl.
257 * aclocal.m4: Re-generated.
258 * config.in: Re-generated.
259 * configure: Re-generated.
260 * import/Makefile.am: Re-generated.
261 * import/Makefile.in: Re-generated.
262 * import/m4/gnulib-cache.m4: Re-generated.
263 * import/m4/gnulib-comp.m4: Re-generated.
264 * import/canonicalize-lgpl.c: New file.
265 * import/extra/snippet/_Noreturn.h: New file.
266 * import/m4/canonicalize.m4: New file.
267 * import/m4/double-slash-root.m4: New file.
268 * import/m4/eealloc.m4: New file.
269 * import/m4/malloca.m4: New file.
270 * import/m4/nocrash.m4: New file.
271 * import/m4/stdlib_h.m4: New file.
272 * import/malloca.c: New file.
273 * import/malloca.h: New file.
274 * import/malloca.valgrind: New file.
275
276 2014-11-28 Yao Qi <yao@codesourcery.com>
277
278 * configure.ac (AC_CHECK_FUNCS): Remove lstat.
279 * config.in, configure: Regenerate.
280 * symfile.c (find_separate_debug_file_by_debuglink): Remove
281 code checking HAVE_LSTAT is defined.
282
283 2014-11-28 Yao Qi <yao@codesourcery.com>
284
285 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
286 lstat.
287 * gnulib/aclocal.m4: Re-generated.
288 * gnulib/config.in: Re-generated.
289 * gnulib/configure: Re-generated.
290 * gnulib/import/Makefile.am: Re-generated.
291 * gnulib/import/Makefile.in: Re-generated.
292 * gnulib/import/m4/gnulib-cache.m4: Re-generated.
293 * gnulib/import/m4/gnulib-comp.m4: Re-generated.
294 * gnulib/import/lstat.c: New file.
295 * gnulib/import/m4/lstat.m4: New file.
296
297 2014-11-28 Yao Qi <yao@codesourcery.com>
298
299 * configure.ac (AC_CHECK_FUNCS): Remove readlink.
300 * config.in, configure: Re-generate.
301 * inf-child.c (inf_child_fileio_readlink): Don't check
302 HAVE_READLINK is defined.
303
304 2014-11-28 Yao Qi <yao@codesourcery.com>
305
306 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add readlink.
307 * gnulib/aclocal.m4: Re-generated.
308 * gnulib/config.in: Likewise.
309 * gnulib/configure: Likewise.
310 * gnulib/import/Makefile.am: Likewise.
311 * gnulib/import/Makefile.in: Likewise.
312 * gnulib/import/m4/gnulib-cache.m4: Likewise.
313 * gnulib/import/m4/gnulib-comp.m4: Likewise.
314 * gnulib/import/dosname.h: New file
315 * gnulib/import/m4/largefile.m4: New file.
316 * gnulib/import/m4/readlink.m4: New file.
317 * gnulib/import/m4/stat.m4: New file.
318 * gnulib/import/readlink.c: New file.
319 * gnulib/import/stat.c: New file.
320
321 2014-11-26 Mark Wielaard <mjw@redhat.com>
322
323 * dwarf2read.c (set_cu_language): Recognize DW_LANG_C11,
324 DW_LANG_C_plus_plus_11, DW_LANG_C_plus_plus_14.
325
326 2014-11-25 Sandra Loosemore <sandra@codesourcery.com>
327
328 * nios2-tdep.c (nios2_analyze_prologue): Replace restriction
329 that there can be only one stack adjustment in the prologue
330 with tests to detect specific disallowed stack adjustments.
331
332 2014-11-25 Sandra Loosemore <sandra@codesourcery.com>
333
334 * nios2-tdep.c (nios2_in_epilogue_p): Handle multiple stack
335 adjustments.
336
337 2014-11-25 Sandra Loosemore <sandra@codesourcery.com>
338
339 * nios2-tdep.c (nios2_fetch_insn): Move up in file. Disassemble
340 the instruction as well as reading it from memory.
341 (nios2_match_add): New.
342 (nios2_match_sub): New.
343 (nios2_match_addi): New.
344 (nios2_match_orhi): New.
345 (nios2_match_stw): New.
346 (nios2_match_ldw): New.
347 (nios2_match_rdctl): New.
348 (enum branch_condition): New.
349 (nios2_match_branch): New.
350 (nios2_match_jmpi): New.
351 (nios2_match_calli): New.
352 (nios2_match_jmpr): New.
353 (nios2_match_callr): New.
354 (nios2_match_break): New.
355 (nios2_match_trap): New.
356 (nios2_in_epilogue_p): Rewrite to use new functions.
357 (nios2_analyze_prologue): Likewise.
358 (nios2_skip_prologue): Delete unused local limit_pc.
359 (nios2_breakpoint_from_pc): Make R1-specific encodings explicit.
360 (nios2_get_next_pc): Rewrite to use new functions.
361
362 2014-11-24 Jan Kratochvil <jan.kratochvil@redhat.com>
363
364 * gdbtypes.c (resolve_dynamic_type_internal): Reindent the code.
365
366 2014-11-24 Samuel Thibault <samuel.thibault@ens-lyon.org>
367
368 Pushed by Joel Brobecker <brobecker@adacore.com>
369 * gdb/gnu-nat.c (inf_validate_procinfo): Multiply the number of
370 elements pi_len by the size of the elements before calling
371 vm_deallocate.
372 (inf_validate_task_sc): Likewise, and properly deallocate the
373 noise array.
374
375 2014-11-23 Doug Evans <xdje42@gmail.com>
376
377 * gdbtypes.c (print_args): Renamed from print_arg_types. Print arg
378 number and name if present. All callers updated.
379 (dump_fn_fieldlists): Fix indentation of args.
380
381 2014-11-23 Patrick Palka <patrick@parcs.ath.cx>
382
383 * MAINTAINERS (Write After Approval): Add myself.
384
385 2014-11-23 Joel Brobecker <brobecker@adacore.com>
386
387 * breakpoint.c (bp_loc_is_permanent): Return 0 if LOC corresponds
388 to a bp_call_dummy breakpoint type.
389
390 2014-11-23 Patrick Palka <patrick@parcs.ath.cx>
391
392 * tui/tui-win.c (tui_initialize_win): Specify SA_RESTART when
393 registering the signal handler.
394
395 2014-11-23 Patrick Palka <patrick@parcs.ath.cx>
396
397 * event-top.h (call_stdin_event_handler_again_p): Declare.
398 * event-top.c (call_stdin_event_handler_again_p): Define.
399 (stdin_event_handler): Use it.
400 * tui/tui-io.c (tui_getc): Prepare to call the stdin event
401 handler again if there is pending input following a
402 start sequence.
403
404 2014-11-23 Patrick Palka <patrick@parcs.ath.cx>
405
406 Pushed by Joel Brobecker <brobecker@adacore.com>
407 * linux-fork.c (checkpoint_command): Print index of new
408 checkpoint in response message.
409
410 2014-11-23 Yao Qi <yao@codesourcery.com>
411
412 * valprint.c (read_string): Move local variables 'found_nul',
413 'chunksize' and 'limit' to inner scope. Update comments.
414
415 2014-11-22 Doug Evans <xdje42@gmail.com>
416
417 * symtab.c (lookup_symbol_in_objfile_from_linkage_name): Improve
418 function comment.
419 (search_symbols): Fix comments and whitespace.
420
421 2014-11-22 Doug Evans <xdje42@gmail.com>
422
423 * cp-namespace.c (cp_lookup_symbol_nonlocal): Fix comment.
424
425 2014-11-21 Doug Evans <dje@google.com>
426
427 * psymtab.c (psymtab_search_name): Fix whitespace.
428
429 2014-11-21 Yao Qi <yao@codesourcery.com>
430
431 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
432 errno.
433 * gnulib/import/Makefile.am: Re-generated.
434 * gnulib/import/Makefile.in: Likewise.
435 * gnulib/import/m4/gnulib-cache.m4: Likewise.
436
437 2014-11-21 Yao Qi <yao@codesourcery.com>
438
439 * gdb_wchar.h: Include wchar.h and wctype.h.
440 [HAVE_ICONV && HAVE_BTOWC]: Don't check HAVE_WCHAR_T and don't
441 include wchar.h and wctype.h.
442 Don't check HAVE_WCHAR_H.
443
444 2014-11-21 Yao Qi <yao@codesourcery.com>
445
446 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add wchar
447 and wctype-h.
448 * gnulib/import/Makefile.am: Re-generated.
449 * gnulib/import/Makefile.in: Likewise.
450 * gnulib/import/m4/gnulib-cache.m4: Likewise.
451
452 2014-11-21 Yao Qi <yao@codesourcery.com>
453
454 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
455 memchr.
456 * gnulib/import/Makefile.am: Re-generated.
457 * gnulib/import/Makefile.in: Likewise.
458 * gnulib/import/m4/gnulib-cache.m4: Likewise.
459
460 2014-11-21 Yao Qi <yao@codesourcery.com>
461
462 * common/common-defs.h: Include alloca.h
463 * configure.ac: Don't invoke AC_FUNC_ALLOCA.
464 * configure: Re-generated.
465 * defs.h: Remove code handling alloca.
466 * utils.c (gdb_realpath): Don't check HAVE_ALLOCA is defined
467 or not.
468
469 2014-11-21 Yao Qi <yao@codesourcery.com>
470
471 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULE): Add
472 alloca.
473 * gnulib/import/Makefile.am: Re-generated.
474 * gnulib/import/Makefile.in: Likewise..
475 * gnulib/import/m4/gnulib-cache.m4: Likewise.
476
477 2014-11-21 Yao Qi <yao@codesourcery.com>
478
479 * gnulib/update-gnulib.sh: Make IMPORTED_GNULIB_MODULES in
480 alphabetical order.
481
482 2014-11-21 Joel Brobecker <brobecker@adacore.com>
483
484 * gdbtypes.c (create_range_type): Unset RESULT_TYPE's
485 flag_unsigned if HIGH_BOUND is constant and negative.
486
487 2014-11-20 Sergio Durigan Junior <sergiodj@redhat.com>
488
489 PR breakpoints/10737
490 * xml-syscall.c (set_xml_syscall_file_name): Remove "const"
491 modifier from "struct gdbarch" when compiling without Expat (XML)
492 support.
493 (get_syscall_by_number): Likewise.
494 (get_syscall_by_name): Likewise.
495 (get_syscall_names): Likewise.
496
497 2014-11-20 Sergio Durigan Junior <sergiodj@redhat.com>
498
499 PR breakpoints/10737
500 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Adjust call to
501 set_xml_syscall_file_name to provide gdbarch.
502 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
503 * bfin-linux-tdep.c (bfin_linux_init_abi): Likewise.
504 * breakpoint.c (print_it_catch_syscall): Adjust call to
505 get_syscall_by_number to provide gdbarch.
506 (print_one_catch_syscall): Likewise.
507 (print_mention_catch_syscall): Likewise.
508 (print_recreate_catch_syscall): Likewise.
509 (catch_syscall_split_args): Adjust calls to get_syscall_by_number
510 and get_syscall_by_name to provide gdbarch.
511 (catch_syscall_completer): Adjust call to get_syscall_names to
512 provide gdbarch.
513 * gdbarch.c: Regenerate.
514 * gdbarch.h: Likewise.
515 * gdbarch.sh: Forward declare "struct syscalls_info".
516 (xml_syscall_file): New variable.
517 (syscalls_info): Likewise.
518 * i386-linux-tdep.c (i386_linux_init_abi): Adjust call to
519 set_xml_syscall_file_name to provide gdbarch.
520 * mips-linux-tdep.c (mips_linux_init_abi): Likewise.
521 * ppc-linux-tdep.c (ppc_linux_init_abi): Likewise.
522 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
523 * sparc-linux-tdep.c (sparc32_linux_init_abi): Likewise.
524 * sparc64-linux-tdep.c (sparc64_linux_init_abi): Likewise.
525 * xml-syscall.c: Include gdbarch.h.
526 (set_xml_syscall_file_name): Accept gdbarch parameter.
527 (get_syscall_by_number): Likewise.
528 (get_syscall_by_name): Likewise.
529 (get_syscall_names): Likewise.
530 (my_gdb_datadir): Delete global variable.
531 (struct syscalls_info) <my_gdb_datadir>: New variable.
532 (struct syscalls_info) <sysinfo>: Rename variable to
533 "syscalls_info".
534 (sysinfo): Delete global variable.
535 (have_initialized_sysinfo): Likewise.
536 (xml_syscall_file): Likewise.
537 (sysinfo_free_syscalls_desc): Rename to...
538 (syscalls_info_free_syscalls_desc): ... this.
539 (free_syscalls_info): Rename "sysinfo" to "syscalls_info". Adjust
540 code to the new layout of "struct syscalls_info".
541 (make_cleanup_free_syscalls_info): Rename parameter "sysinfo" to
542 "syscalls_info".
543 (syscall_create_syscall_desc): Likewise.
544 (syscall_start_syscall): Likewise.
545 (syscall_parse_xml): Likewise.
546 (xml_init_syscalls_info): Likewise. Drop "const" from return value.
547 (init_sysinfo): Rename to...
548 (init_syscalls_info): ...this. Add gdbarch as a parameter.
549 Adjust function to deal with gdbarch.
550 (xml_get_syscall_number): Delete parameter sysinfo. Accept
551 gdbarch as a parameter. Adjust code.
552 (xml_get_syscall_name): Likewise.
553 (xml_list_of_syscalls): Likewise.
554 (set_xml_syscall_file_name): Accept gdbarch as parameter.
555 (get_syscall_by_number): Likewise.
556 (get_syscall_by_name): Likewise.
557 (get_syscall_names): Likewise.
558 * xml-syscall.h (set_xml_syscall_file_name): Likewise.
559 (get_syscall_by_number): Likewise.
560 (get_syscall_by_name): Likewise.
561 (get_syscall_names): Likewise.
562
563 2014-11-20 Doug Evans <xdje42@gmail.com>
564
565 Split struct symtab into two: struct symtab and compunit_symtab.
566 * amd64-tdep.c (amd64_skip_xmm_prologue): Fetch producer from compunit.
567 * block.c (blockvector_for_pc_sect): Change "struct symtab *" argument
568 to "struct compunit_symtab *". All callers updated.
569 (set_block_compunit_symtab): Renamed from set_block_symtab. Change
570 "struct symtab *" argument to "struct compunit_symtab *".
571 All callers updated.
572 (get_block_compunit_symtab): Renamed from get_block_symtab. Change
573 result to "struct compunit_symtab *". All callers updated.
574 (find_iterator_compunit_symtab): Renamed from find_iterator_symtab.
575 Change result to "struct compunit_symtab *". All callers updated.
576 * block.h (struct global_block) <compunit_symtab>: Renamed from symtab.
577 hange type to "struct compunit_symtab *". All uses updated.
578 (struct block_iterator) <d.compunit_symtab>: Renamed from "d.symtab".
579 Change type to "struct compunit_symtab *". All uses updated.
580 * buildsym.c (struct buildsym_compunit): New struct.
581 (subfiles, buildsym_compdir, buildsym_objfile, main_subfile): Delete.
582 (buildsym_compunit): New static global.
583 (finish_block_internal): Update to fetch objfile from
584 buildsym_compunit.
585 (make_blockvector): Delete objfile argument.
586 (start_subfile): Rewrite to use buildsym_compunit. Don't initialize
587 debugformat, producer.
588 (start_buildsym_compunit): New function.
589 (free_buildsym_compunit): Renamed from free_subfiles_list.
590 All callers updated.
591 (patch_subfile_names): Rewrite to use buildsym_compunit.
592 (get_compunit_symtab): New function.
593 (get_macro_table): Delete argument comp_dir. All callers updated.
594 (start_symtab): Change result to "struct compunit_symtab *".
595 All callers updated. Create the subfile of the main source file.
596 (watch_main_source_file_lossage): Rewrite to use buildsym_compunit.
597 (reset_symtab_globals): Update.
598 (end_symtab_get_static_block): Update to use buildsym_compunit.
599 (end_symtab_without_blockvector): Rewrite.
600 (end_symtab_with_blockvector): Change result to
601 "struct compunit_symtab *". All callers updated.
602 Update to use buildsym_compunit. Don't set symtab->dirname,
603 instead set it in the compunit.
604 Explicitly make sure main symtab is first in its list.
605 Set debugformat, producer, blockvector, block_line_section, and
606 macrotable in the compunit.
607 (end_symtab_from_static_block): Change result to
608 "struct compunit_symtab *". All callers updated.
609 (end_symtab, end_expandable_symtab): Ditto.
610 (set_missing_symtab): Change symtab argument to
611 "struct compunit_symtab *". All callers updated.
612 (augment_type_symtab): Ditto.
613 (record_debugformat): Update to use buildsym_compunit.
614 (record_producer): Update to use buildsym_compunit.
615 * buildsym.h (struct subfile) <dirname>: Delete.
616 <producer, debugformat>: Delete.
617 <buildsym_compunit>: New member.
618 (get_compunit_symtab): Declare.
619 * dwarf2read.c (struct type_unit_group) <compunit_symtab>: Renamed
620 from primary_symtab. Change type to "struct compunit_symtab *".
621 All uses updated.
622 (dwarf2_start_symtab): Change result to "struct compunit_symtab *".
623 All callers updated.
624 (dwarf_decode_macros): Delete comp_dir argument. All callers updated.
625 (struct dwarf2_per_cu_quick_data) <compunit_symtab>: Renamed from
626 symtab. Change type to "struct compunit_symtab *". All uses updated.
627 (dw2_instantiate_symtab): Change result to "struct compunit_symtab *".
628 All callers updated.
629 (dw2_find_last_source_symtab): Ditto.
630 (dw2_lookup_symbol): Ditto.
631 (recursively_find_pc_sect_compunit_symtab): Renamed from
632 recursively_find_pc_sect_symtab. Change result to
633 "struct compunit_symtab *". All callers updated.
634 (dw2_find_pc_sect_compunit_symtab): Renamed from
635 dw2_find_pc_sect_symtab. Change result to
636 "struct compunit_symtab *". All callers updated.
637 (get_compunit_symtab): Renamed from get_symtab. Change result to
638 "struct compunit_symtab *". All callers updated.
639 (recursively_compute_inclusions): Change type of immediate_parent
640 argument to "struct compunit_symtab *". All callers updated.
641 (compute_compunit_symtab_includes): Renamed from
642 compute_symtab_includes. All callers updated. Rewrite to compute
643 includes of compunit_symtabs and not symtabs.
644 (process_full_comp_unit): Update to work with struct compunit_symtab.
645 (process_full_type_unit): Ditto.
646 (dwarf_decode_lines_1): Delete argument comp_dir. All callers updated.
647 (dwarf_decode_lines): Remove special case handling of main subfile.
648 (macro_start_file): Delete argument comp_dir. All callers updated.
649 (dwarf_decode_macro_bytes): Ditto.
650 * guile/scm-block.c (bkscm_print_block_syms_progress_smob): Update to
651 use struct compunit_symtab.
652 * i386-tdep.c (i386_skip_prologue): Fetch producer from compunit.
653 * jit.c (finalize_symtab): Build compunit_symtab.
654 * jv-lang.c (get_java_class_symtab): Change result to
655 "struct compunit_symtab *". All callers updated.
656 * macroscope.c (sal_macro_scope): Fetch macro table from compunit.
657 * macrotab.c (struct macro_table) <compunit_symtab>: Renamed from
658 comp_dir. Change type to "struct compunit_symtab *".
659 All uses updated.
660 (new_macro_table): Change comp_dir argument to cust,
661 "struct compunit_symtab *". All callers updated.
662 * maint.c (struct cmd_stats) <nr_compunit_symtabs>: Renamed from
663 nr_primary_symtabs. All uses updated.
664 (count_symtabs_and_blocks): Update to handle compunits.
665 (report_command_stats): Update output, "primary symtabs" renamed to
666 "compunits".
667 * mdebugread.c (new_symtab): Change result to
668 "struct compunit_symtab *". All callers updated.
669 (parse_procedure): Change type of search_symtab argument to
670 "struct compunit_symtab *". All callers updated.
671 * objfiles.c (objfile_relocate1): Loop over blockvectors in a
672 separate loop.
673 * objfiles.h (struct objfile) <compunit_symtabs>: Renamed from
674 symtabs. Change type to "struct compunit_symtab *". All uses updated.
675 (ALL_OBJFILE_FILETABS): Renamed from ALL_OBJFILE_SYMTABS.
676 All uses updated.
677 (ALL_OBJFILE_COMPUNITS): Renamed from ALL_OBJFILE_PRIMARY_SYMTABS.
678 All uses updated.
679 (ALL_FILETABS): Renamed from ALL_SYMTABS. All uses updated.
680 (ALL_COMPUNITS): Renamed from ALL_PRIMARY_SYMTABS. All uses updated.
681 * psympriv.h (struct partial_symtab) <compunit_symtab>: Renamed from
682 symtab. Change type to "struct compunit_symtab *". All uses updated.
683 * psymtab.c (psymtab_to_symtab): Change result type to
684 "struct compunit_symtab *". All callers updated.
685 (find_pc_sect_compunit_symtab_from_partial): Renamed from
686 find_pc_sect_symtab_from_partial. Change result type to
687 "struct compunit_symtab *". All callers updated.
688 (lookup_symbol_aux_psymtabs): Change result type to
689 "struct compunit_symtab *". All callers updated.
690 (find_last_source_symtab_from_partial): Ditto.
691 * python/py-symtab.c (stpy_get_producer): Fetch producer from compunit.
692 * source.c (forget_cached_source_info_for_objfile): Fetch debugformat
693 and macro_table from compunit.
694 * symfile-debug.c (debug_qf_find_last_source_symtab): Change result
695 type to "struct compunit_symtab *". All callers updated.
696 (debug_qf_lookup_symbol): Ditto.
697 (debug_qf_find_pc_sect_compunit_symtab): Renamed from
698 debug_qf_find_pc_sect_symtab, change result type to
699 "struct compunit_symtab *". All callers updated.
700 * symfile.c (allocate_symtab): Delete objfile argument.
701 New argument cust.
702 (allocate_compunit_symtab): New function.
703 (add_compunit_symtab_to_objfile): New function.
704 * symfile.h (struct quick_symbol_functions) <lookup_symbol>:
705 Change result type to "struct compunit_symtab *". All uses updated.
706 <find_pc_sect_compunit_symtab>: Renamed from find_pc_sect_symtab.
707 Change result type to "struct compunit_symtab *". All uses updated.
708 * symmisc.c (print_objfile_statistics): Compute blockvector count in
709 separate loop.
710 (dump_symtab_1): Update test for primary source symtab.
711 (maintenance_info_symtabs): Update to handle compunit symtabs.
712 (maintenance_check_symtabs): Ditto.
713 * symtab.c (set_primary_symtab): Delete.
714 (compunit_primary_filetab): New function.
715 (compunit_language): New function.
716 (iterate_over_some_symtabs): Change type of arguments "first",
717 "after_last" to "struct compunit_symtab *". All callers updated.
718 Update to loop over symtabs in each compunit.
719 (error_in_psymtab_expansion): Rename symtab argument to cust,
720 and change type to "struct compunit_symtab *". All callers updated.
721 (find_pc_sect_compunit_symtab): Renamed from find_pc_sect_symtab.
722 Change result type to "struct compunit_symtab *". All callers updated.
723 (find_pc_compunit_symtab): Renamed from find_pc_symtab.
724 Change result type to "struct compunit_symtab *". All callers updated.
725 (find_pc_sect_line): Only loop over symtabs within selected compunit
726 instead of all symtabs in the objfile.
727 * symtab.h (struct symtab) <blockvector>: Moved to compunit_symtab.
728 <compunit_symtab> New member.
729 <block_line_section>: Moved to compunit_symtab.
730 <locations_valid>: Ditto.
731 <epilogue_unwind_valid>: Ditto.
732 <macro_table>: Ditto.
733 <dirname>: Ditto.
734 <debugformat>: Ditto.
735 <producer>: Ditto.
736 <objfile>: Ditto.
737 <call_site_htab>: Ditto.
738 <includes>: Ditto.
739 <user>: Ditto.
740 <primary>: Delete
741 (SYMTAB_COMPUNIT): New macro.
742 (SYMTAB_BLOCKVECTOR): Update definition.
743 (SYMTAB_OBJFILE): Update definition.
744 (SYMTAB_DIRNAME): Update definition.
745 (struct compunit_symtab): New type. Common members among all source
746 symtabs within a compilation unit moved here. All uses updated.
747 (COMPUNIT_OBJFILE): New macro.
748 (COMPUNIT_FILETABS): New macro.
749 (COMPUNIT_DEBUGFORMAT): New macro.
750 (COMPUNIT_PRODUCER): New macro.
751 (COMPUNIT_DIRNAME): New macro.
752 (COMPUNIT_BLOCKVECTOR): New macro.
753 (COMPUNIT_BLOCK_LINE_SECTION): New macro.
754 (COMPUNIT_LOCATIONS_VALID): New macro.
755 (COMPUNIT_EPILOGUE_UNWIND_VALID): New macro.
756 (COMPUNIT_CALL_SITE_HTAB): New macro.
757 (COMPUNIT_MACRO_TABLE): New macro.
758 (ALL_COMPUNIT_FILETABS): New macro.
759 (compunit_symtab_ptr): New typedef.
760 (DEF_VEC_P (compunit_symtab_ptr)): New vector type.
761
762 2014-11-20 Joel Brobecker <brobecker@adacore.com>
763
764 * ada-lang.c (ada_is_redundant_range_encoding): Return 0
765 if the TYPE_CODE of range_type's base type does not match
766 the TYPE_CODE of encoding_type's base type.
767
768 2014-11-19 Joel Brobecker <brobecker@adacore.com>
769
770 * ada-lang.c (ada_unqualified_name): Return DECODED_NAME if
771 it starts with '<'.
772
773 2014-11-19 Joel Brobecker <brobecker@adacore.com>
774
775 * ada-lang.c (ada_is_redundant_range_encoding): New function.
776 (ada_is_redundant_index_type_desc): New function.
777 (to_fixed_array_type): Ignore parallel XA type if redundant.
778
779 2014-11-19 Joel Brobecker <brobecker@adacore.com>
780
781 * ada-lang.c (constrained_packed_array_type): Set the length
782 of the return array as if both bounds where zero if that
783 returned array's index type is dynamic.
784
785 2014-11-19 Yao Qi <yao@codesourcery.com>
786
787 * config/i386/go32.mh (CC): Remove.
788
789 2014-11-18 Doug Evans <xdje42@gmail.com>
790
791 * symtab.h (SYMTAB_BLOCKVECTOR): Renamed from BLOCKVECTOR. All uses
792 updated.
793
794 2014-11-18 Doug Evans <xdje42@gmail.com>
795
796 * buildsym.c (buildsym_objfile): New static global.
797 (buildsym_comp_dir): New static global.
798 (finish_block_internal): Delete arg objfile. All callers updated.
799 (finish_block): Delete arg objfile. All callers updated.
800 (start_subfile): Delete arg dirname. All callers updated.
801 (patch_subfile_names): Update buildsym_comp_dir.
802 (get_macro_table): Delete arg objfile. All callers updated.
803 (start_symtab): New arg objfile. All callers updated.
804 Rename arg dirname to comp_dir.
805 (reset_symtab_globals): Initialize buildsym_objfile, buildsym_comp_dir.
806 (end_symtab_get_static_block): Delete arg objfile. All callers
807 updated.
808 (end_symtab_without_blockvector): Ditto.
809 (end_symtab_with_blockvector): Ditto.
810 (end_symtab_from_static_block): Ditto.
811 (end_symtab): Ditto.
812 (end_expandable_symtab): Ditto.
813 (augment_type_symtab): Ditto.
814 * coffread.c (coff_start_symtab): New arg objfile. All callers
815 updated.
816
817 2014-11-18 Doug Evans <xdje42@gmail.com>
818
819 * symtab.h (SYMTAB_LINETABLE): Renamed from LINETABLE. All uses
820 updated.
821
822 2014-11-18 Doug Evans <xdje42@gmail.com>
823
824 * symtab.h (SYMTAB_DIRNAME): New macro. All uses of member
825 symtab.dirname updated to use it.
826
827 2014-11-18 Doug Evans <xdje42@gmail.com>
828
829 * symtab.h (SYMTAB_OBJFILE): New macro. All uses of member
830 symtab.objfile updated to use it.
831
832 2014-11-18 Doug Evans <xdje42@gmail.com>
833
834 * buildsym.c (watch_main_source_file_lossage): Fix memory leak.
835
836 2014-11-18 Doug Evans <xdje42@gmail.com>
837
838 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
839 SYMBOL_OBJFILE.
840 * findvar.c (default_read_var_value): Ditto.
841 * jv-lang.c (add_class_symtab_symbol): Ditto.
842 * parse.c (operator_check_standard): Ditto.
843 * printcmd.c (address_info): Ditto.
844 * symtab.c (fixup_symbol_section): Ditto.
845 (skip_prologue_sal): Ditto.
846 * tracepoint.c (scope_info): Ditto.
847 * valops.c (find_function_in_inferior): Ditto.
848 * guile/scm-symbol.c (syscm_eq_symbol_smob): Ditto.
849 * python/py-symbol.c (set_symbol): Ditto.
850
851 2014-11-18 Doug Evans <xdje42@gmail.com>
852
853 * buildsym.c (main_subfile): New static global.
854 (free_subfiles_list): New function.
855 (start_symtab): Set main_subfile.
856 (restart_symtab): Replace init of subfiles, current_subfile with
857 call to free_subfiles_list.
858 (watch_main_source_file_lossage): Use main_subfile.
859 (reset_symtab_globals): Replace init of current_subfile with call
860 to free_subfiles_list.
861 (end_symtab_without_blockvector, end_symtab_with_blockvector): New
862 functions, split out from ...
863 (end_symtab_from_static_block): ... here. Rewrite to call them.
864
865 2014-11-18 Doug Evans <xdje42@gmail.com>
866
867 The result of symtab expansion is always a primary symtab.
868 * dwarf2read.c (dw2_instantiate_symtab): Add assert.
869 (dw2_lookup_symbol): Remove unnecessary test for primary symbol table.
870 * psymtab.c (lookup_symbol_aux_psymtabs): Ditto.
871 (psymtab_to_symtab): Add comment and assert.
872 (map_matching_symbols_psymtab): Remove unnecessary test for
873 non-primary symtab.
874
875 2014-11-15 Doug Evans <xdje42@gmail.com>
876
877 PR symtab/17559
878 * symtab.c (find_pc_line_symtab): New function.
879 * symtab.h (find_pc_line_symtab): Declare.
880 * disasm.c (gdb_disassembly): Call find_pc_line_symtab instead of
881 find_pc_symtab.
882 * tui/tui-disasm.c (tui_set_disassem_content): Ditto.
883 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Ditto.
884 * tui/tui-source.c (tui_vertical_source_scroll): Ditto.
885 * tui/tui-win.c (make_visible_with_new_height): Ditto.
886 * tui/tui-winsource.c (tui_horizontal_source_scroll): Ditto.
887 (tui_display_main): Call find_pc_line_symtab instead of find_pc_line.
888
889 2014-11-15 Doug Evans <xdje42@gmail.com>
890
891 * symtab.c (expand_symtab_containing_pc): Renamed from
892 find_pc_sect_symtab_via_partial. All callers updated.
893
894 2014-11-15 Yao Qi <yao@codesourcery.com>
895
896 * go32-nat.c (go32_create_inferior): Add missing parenthesis.
897
898 2014-11-14 Joel Brobecker <brobecker@adacore.com>
899
900 * common/common-defs.h: Move <stdarg.h> #include ahead of
901 <stdio.h> #include.
902
903 2014-11-14 Pedro Alves <palves@redhat.com>
904
905 * charset.c [PHONY_ICONV && !EILSEQ] (EILSEQ): Don't define.
906 [!PHONY_ICONV] (gdb_iconv): New function.
907 [!PHONY_ICONV] (iconv): Redefine to gdb_iconv.
908
909 2014-11-13 Doug Evans <dje@google.com>
910
911 PR symtab/17591
912 * dwarf2read.c (find_slot_in_mapped_hash): Handle
913 "(anonymous namespace)".
914
915 2014-11-13 Doug Evans <dje@google.com>
916
917 * dwarf2read.c (update_enumeration_type_from_children): Avoid
918 infinite loop.
919
920 2014-11-13 Jan Kratochvil <jan.kratochvil@redhat.com>
921
922 * NEWS (maint set target-async): Fix typo.
923
924 2014-11-12 Pedro Alves <palves@redhat.com>
925
926 * infrun.c (enum infwait_states, infwait_state): Delete.
927
928 2014-11-12 Pedro Alves <palves@redhat.com>
929
930 * infrun.c (resume): Clear the thread's 'stepped_breakpoint' flag.
931 Rewrite stepping over a permanent breakpoint.
932 (thread_still_needs_step_over, proceed): Don't set
933 stepping_over_breakpoint for permanent breakpoints.
934 (handle_signal_stop): Don't clear stepped_breakpoint. Also pull
935 single-step breakpoints out of the target on hardware step
936 targets.
937 (process_event_stop_test): If stepping a permanent breakpoint
938 doesn't hit the step-resume breakpoint, delete the step-resume
939 breakpoint.
940 (switch_back_to_stepped_thread): Also check if the stepped thread
941 has advanced already on hardware step targets.
942 (currently_stepping): Return true if the thread stepped a
943 breakpoint.
944
945 2014-11-12 Pedro Alves <palves@redhat.com>
946
947 Mark locations as permanent, not the whole breakpoint.
948 * breakpoint.c (remove_breakpoint_1, remove_breakpoint): Adjust.
949 (mark_breakpoints_out): Don't mark permanent breakpoints as
950 uninserted.
951 (breakpoint_init_inferior): Use mark_breakpoints_out.
952 (breakpoint_here_p): Adjust.
953 (bpstat_stop_status, describe_other_breakpoints): Remove handling
954 of permanent breakpoints.
955 (make_breakpoint_permanent): Mark each location as permanent,
956 instead of marking the breakpoint.
957 (add_location_to_breakpoint): If the location is permanent, mark
958 it as such, and as inserted.
959 (init_breakpoint_sal): Don't make the breakpoint permanent here.
960 (bp_location_compare, update_global_location_list): Adjust.
961 (update_breakpoint_locations): Don't make the breakpoint permanent
962 here.
963 (disable_breakpoint, enable_breakpoint_disp): Don't skip permanent
964 breakpoints.
965 * breakpoint.h (enum enable_state) <bp_permanent>: Delete field.
966 (struct bp_location) <permanent>: New field.
967 * guile/scm-breakpoint.c (bpscm_enable_state_to_string): Remove
968 reference to bp_permanent.
969
970 2014-11-12 Pedro Alves <palves@redhat.com>
971
972 * arch-utils.c (default_skip_permanent_breakpoint): New function.
973 * arch-utils.h (default_skip_permanent_breakpoint): New
974 declaration.
975 * gdbarch.sh (skip_permanent_breakpoint): Now an 'f' function.
976 Install default_skip_permanent_breakpoint as default method.
977 * i386-tdep.c (i386_skip_permanent_breakpoint): Delete function.
978 (i386_gdbarch_init): Don't install it.
979 * infrun.c (resume): Assume there's always a
980 gdbarch_skip_permanent_breakpoint implementation.
981 * gdbarch.h, gdbarch.c: Regenerate.
982
983 2014-11-11 Daniel Colascione <dancol@dancol.org>
984
985 Warn about cross-PID-namespace debugging.
986 * nat/linux-procfs.h (linux_proc_pid_get_ns): New prototype.
987 * nat/linux-procfs.c (linux_proc_pid_get_ns): New function.
988 * linux-thread-db.c (check_pid_namespace_match): New function.
989 (thread_db_inferior_created): Call it.
990
991 2014-11-10 Doug Evans <xdje42@gmail.com>
992
993 * symmisc.c (print_objfile_statistics): Remove trailing whitespace.
994 (maintenance_info_symtabs, maintenance_check_symtabs): Ditto.
995
996 2014-11-10 Doug Evans <xdje42@gmail.com>
997
998 * source.c (select_source_symtab): Rewrite to use ALL_SYMTABS.
999
1000 2014-11-10 Doug Evans <xdje42@gmail.com>
1001
1002 PR symtab/17564
1003 * symtab.c (lookup_symbol_in_all_objfiles): Delete.
1004 (lookup_static_symbol): Move definition to new location and rewrite.
1005 (lookup_symbol_in_objfile): New function.
1006 (lookup_symbol_global_iterator_cb): Call it.
1007
1008 2014-11-10 Ulrich Weigand  <uweigand@de.ibm.com>
1009
1010 * eval.c (evaluate_subexp_standard): Work around GCC bug 63748.
1011
1012 2014-11-07 Pedro Alves <palves@redhat.com>
1013
1014 * infrun.c (process_event_stop_test) <subroutine check>: Don't
1015 check if we did a "nexti" inside a prologue.
1016 * symtab.c (in_prologue): Delete function.
1017 * symtab.h (in_prologue): Delete declaration.
1018
1019 2014-11-06 Doug Evans <xdje42@gmail.com>
1020
1021 * symtab.h (lookup_global_symbol): Improve function comment.
1022
1023 2014-11-06 Doug Evans <xdje42@gmail.com>
1024
1025 * symtab.c (lookup_global_symbol): Renamed from lookup_symbol_global.
1026 All callers updated.
1027 * symtab.h (lookup_global_symbol): Update decl.
1028 (lookup_static_symbol): Move decl to better location.
1029
1030 2014-11-06 Doug Evans <xdje42@gmail.com>
1031
1032 * symtab.c (basic_lookup_symbol_nonlocal): Add comment.
1033
1034 2014-11-06 Doug Evans <xdje42@gmail.com>
1035
1036 * symtab.c (lookup_local_symbol): Renamed from lookup_symbol_aux_local.
1037 All callers updated.
1038 (lookup_symbol_in_all_objfiles): Renamed from
1039 lookup_symbol_aux_symtabs. All callers updated.
1040 (lookup_symbol_via_quick_fns): Renamed from lookup_symbol_aux_quick.
1041 All callers updated.
1042 (lookup_symbol_in_objfile_symtabs): Renamed from
1043 lookup_symbol_aux_objfile. All callers updated.
1044
1045 2014-11-06 Doug Evans <xdje42@gmail.com>
1046
1047 * symtab.c (lookup_symbol_in_block): Renamed from
1048 lookup_symbol_aux_block. All callers updated.
1049
1050 2014-11-06 Doug Evans <xdje42@gmail.com>
1051
1052 * symtab.c (lookup_static_symbol): Renamed from
1053 lookup_static_symbol_aux. All callers updated.
1054 (lookup_symbol_in_static_block): Renamed from lookup_symbol_static.
1055 All callers updated.
1056
1057 2014-11-06 Doug Evans <xdje42@gmail.com>
1058
1059 * block.h (ALL_BLOCK_SYMBOLS_WITH_NAME): New macro.
1060 * block.c (block_lookup_symbol): Use it.
1061 * cp-support.c (make_symbol_overload_list_block): Use it.
1062 * symtab.c (iterate_over_symbols): Use it.
1063
1064 2014-11-06 Doug Evans <xdje42@gmail.com>
1065
1066 * symtab.c (lookup_block_symbol): Moved to ...
1067 * block.c (block_lookup_symbol): ... here and renamed.
1068 All callers updated.
1069 * block.h (block_lookup_symbol): Declare.
1070 * symtab.h (lookup_block_symbol): Delete.
1071
1072 2014-11-06 Doug Evans <xdje42@gmail.com>
1073
1074 * ada-lang.c (ada_make_symbol_completion_list): Use
1075 ALL_PRIMARY_SYMTABS instead of ALL_SYMTABS.
1076 * symtab.c (lookup_objfile_from_block): Ditto.
1077
1078 2014-11-06 Doug Evans <xdje42@gmail.com>
1079
1080 * gdbtypes.h (TYPE_CODE_CLASS): Delete. All uses changed to use
1081 TYPE_CODE_STRUCT.
1082
1083 2014-11-06 Doug Evans <xdje42@gmail.com>
1084
1085 * objfiles.c (get_objfile_arch): Constify.
1086 * objfiles.h (get_objfile_arch): Update prototype.
1087 * solib.c (solib_global_lookup): Fetch arch from objfile,
1088 not target_gdbarch.
1089
1090 2014-11-06 Sandra Loosemore <sandra@codesourcery.com>
1091
1092 * nios2-tdep.c (wild_insn): Delete.
1093 (profiler_insn, irqentry_insn): Delete.
1094 (nios2_match_sequence): Delete.
1095 (nios2_analyze_prologue): Update comments. Remove matching
1096 of obsolete profiler_insn and irqentry_insn sequences.
1097
1098 2014-11-05 Alan Modra <amodra@gmail.com>
1099
1100 * charset.c (convert_between_encodings): Shrink obstack using
1101 obstack_blank_fast.
1102 * minsyms.c (install_minimal_symbols): Likewise.
1103 * cp-valprint.c (cp_print_value_fields): Cast obstack_next_free
1104 to char* before doing pointer arithmetic.
1105
1106 2014-11-04 Simon Marchi <simon.marchi@ericsson.com>
1107
1108 * tui/tui.c (tui_enable): Pass stdout and stdin to newterm.
1109
1110 2014-11-04 Pedro Alves <palves@redhat.com>
1111
1112 * breakpoint.c (breakpoint_thread_match): Delete function.
1113 * breakpoint.h (breakpoint_thread_match): Delete declaration.
1114
1115 2014-11-03 Siva Chandra Reddy <sivachandra@google.com>
1116
1117 PR c++/17494
1118 * eval.c (evaluate_subexp_standard): Evaluate the "object" and
1119 the method args also under EVAL_SKIP when evaluating method
1120 calls under EVAL_SKIP.
1121
1122 2014-11-02 Victor Kamensky <victor.kamensky@linaro.org>
1123
1124 * dwarf2loc.c (read_pieced_value): Do big endian
1125 processing only if gdb_regnum is not -1.
1126 (write_pieced_value): Ditto.
1127
1128 2014-11-02 Victor Kamensky <victor.kamensky@linaro.org>
1129
1130 * arm-linux-tdep.c (arm_linux_init_abi): Use
1131 info.byte_order_for_code to choose endianity of breakpoint
1132 instructions snippets.
1133
1134 2014-11-02 Victor Kamensky <victor.kamensky@linaro.org>
1135
1136 * arm-tdep.c (extract_arm_insn): Use
1137 gdbarch_byte_order_for_code to read arm instruction.
1138
1139 2014-11-02 Doug Evans <xdje42@gmail.com>
1140
1141 * mdebugread.c (parse_procedure): Delete unnecessary forward decl.
1142
1143 2014-11-02 Doug Evans <xdje42@gmail.com>
1144
1145 * xcoffread.c (process_linenos): Delete unnecessary zeroing of
1146 main_subfile before returning.
1147
1148 2014-10-31 Doug Evans <xdje42@gmail.com>
1149
1150 * objfiles.h (ALL_PSPACE_OBJFILES_SAFE): Delete, unused.
1151 (ALL_PSPACE_SYMTABS, ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
1152
1153 2014-10-31 Doug Evans <xdje42@gmail.com>
1154
1155 * valops.c (value_cast_pointers): Fix whitespace.
1156 (typecmp, search_struct_method, value_struct_elt, find_oload_champ):
1157 Ditto.
1158
1159 2014-10-30 Doug Evans <dje@google.com>
1160
1161 * NEWS: Mention ability add attributes to gdb.Objfile and
1162 gdb.Progspace objects.
1163 * python/py-objfile.c (objfile_object): New member dict.
1164 (objfpy_dealloc): Py_XDECREF dict.
1165 (objfpy_initialize): Initialize dict.
1166 (objfile_getset): Add __dict__.
1167 (objfile_object_type): Set tp_dictoffset member.
1168 * python/py-progspace.c (progspace_object): New member dict.
1169 (pspy_dealloc): Py_XDECREF dict.
1170 (pspy_initialize): Initialize dict.
1171 (pspace_getset): Add __dict__.
1172 (pspace_object_type): Set tp_dictoffset member.
1173
1174 2014-10-30 Yao Qi <yao@codesourcery.com>
1175
1176 * python/lib/gdb/command/prompt.py (before_prompt_hook): Don't
1177 replace '\\' with '\\\\'.
1178
1179 2014-10-29 Joel Brobecker <brobecker@adacore.com>
1180
1181 GDB 7.8.1 released.
1182
1183 2014-10-29 Pedro Alves <palves@redhat.com>
1184
1185 PR gdb/17408
1186 * infrun.c (switch_back_to_stepped_thread): Use currently_stepping
1187 instead of assuming a thread with a stepping range is always
1188 stepping.
1189
1190 2014-10-29 Pedro Alves <palves@redhat.com>
1191
1192 PR python/17372
1193 * event-top.c (change_line_handler): Call
1194 gdb_rl_callback_handler_remove instead of
1195 rl_callback_handler_remove.
1196 (callback_handler_installed): New global.
1197 (gdb_rl_callback_handler_remove, gdb_rl_callback_handler_install)
1198 (gdb_rl_callback_handler_reinstall): New functions.
1199 (display_gdb_prompt): Call gdb_rl_callback_handler_remove and
1200 gdb_rl_callback_handler_install instead of
1201 rl_callback_handler_remove and rl_callback_handler_install.
1202 (gdb_disable_readline): Call gdb_rl_callback_handler_remove
1203 instead of rl_callback_handler_remove.
1204 * event-top.h (gdb_rl_callback_handler_remove)
1205 (gdb_rl_callback_handler_install)
1206 (gdb_rl_callback_handler_reinstall): New declarations.
1207 * infrun.c (reinstall_readline_callback_handler_cleanup): New
1208 cleanup function.
1209 (fetch_inferior_event): Install it.
1210 * top.c (gdb_readline_wrapper_line) Call
1211 gdb_rl_callback_handler_remove instead of
1212 rl_callback_handler_remove.
1213 (gdb_readline_wrapper_cleanup): Don't call
1214 rl_callback_handler_install.
1215
1216 2014-10-29 Pedro Alves <palves@redhat.com>
1217
1218 * event-top.c (command_line_handler): Clear the first byte of
1219 linebuffer, when it is first allocated.
1220
1221 2014-10-29 Pedro Alves <palves@redhat.com>
1222
1223 * tui/tui.c (tui_rl_switch_mode): Wrap tui_enable/tui_disable in
1224 TRY_CATCH.
1225
1226 2014-10-29 Pedro Alves <palves@redhat.com>
1227
1228 PR tui/16138
1229 PR tui/17519
1230 * tui/tui-interp.c (tui_is_toplevel): Delete global.
1231 (tui_allowed_p): Delete function.
1232 * tui/tui.c: Include "interps.h".
1233 (tui_enable): Don't use tui_allowed_p. Error out here with
1234 detailed error messages if the TUI is the top level interpreter,
1235 or if output is not a terminal. Use newterm instead of initscr,
1236 and error out if initializing the terminal fails. Also error out if
1237 the terminal doesn't support cursor addressing.
1238 * tui/tui.h (tui_allowed_p): Delete declaration.
1239
1240 2014-10-29 Joel Brobecker <brobecker@adacore.com>
1241
1242 * arm-tdep.c (arm_skip_stack_protector): Return early if
1243 address loaded by first "ldr" instruction does not have
1244 a corresponding minimal symbol. Update comment.
1245
1246 2014-10-29 Yao Qi <yao@codesourcery.com>
1247
1248 * arm-tdep.c (arm_analyze_load_stack_chk_guard): Compute the
1249 loaded address correctly of ldr instruction.
1250
1251 2014-10-28 Pedro Alves <palves@redhat.com>
1252
1253 PR gdb/12623
1254 * gdbthread.h (struct thread_info) <stepped_breakpoint>: New
1255 field.
1256 * infrun.c (resume) <stepping breakpoint instruction>: Set the
1257 thread's stepped_breakpoint field. Skip if reverse debugging.
1258 Add comment.
1259 (init_thread_stepping_state, handle_signal_stop): Clear the
1260 thread's stepped_breakpoint field.
1261
1262 2014-10-27 Pedro Alves <palves@redhat.com>
1263
1264 * remote.c (remote_thread_alive): New, factored out from ...
1265 (remote_thread_alive): ... this.
1266 (remote_update_thread_list): Bail out before deleting threads if
1267 the target returned an empty list, and, the current thread has a
1268 magic/fake ptid.
1269
1270 2014-10-27 Pedro Alves <palves@redhat.com>
1271
1272 * infrun.c (handle_signal_stop): Also skip handlers when a random
1273 signal arrives while handling a "stepi" or a "nexti". Set the
1274 thread's 'step_after_step_resume_breakpoint' flag.
1275
1276 2014-10-27 Luis Machado <lgustavo@codesourcery.com>
1277
1278 * arm-tdep.c (INSN_S_L_BIT_NUM): Document.
1279 (arm_record_ld_st_imm_offset): Reimplement to cover all
1280 load/store cases for ARM opcode 010.
1281 (arm_record_ld_st_multiple): Reimplement to cover all
1282 load/store cases for ARM opcode 100.
1283
1284 2014-10-26 Doug Evans <xdje42@gmail.com>
1285
1286 * symtab.c (lookup_symbol_aux_local): Fix typo in comment.
1287
1288 2014-10-26 Doug Evans <xdje42@gmail.com>
1289
1290 * symfile.h (struct quick_symbol_functions) <lookup_symbol>: Rename
1291 parameter "kind" to "block_index".
1292 * symtab.c (error_in_psymtab_expansion): Rename parameter "kind" to
1293 "block_index".
1294 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Ditto.
1295
1296 2014-10-26 Doug Evans <xdje42@gmail.com>
1297
1298 * block.h (ALL_BLOCK_SYMBOLS): Fix comment.
1299
1300 2014-10-26 Doug Evans <xdje42@gmail.com>
1301
1302 * block.c (allocate_block): Use OBSTACK_ZALLOC instead of
1303 obstack_alloc.
1304
1305 2014-10-26 Doug Evans <xdje42@gmail.com>
1306
1307 * parser-defs.h (block_found): Move decl from here ...
1308 * symtab.h (block_found): ... to here.
1309
1310 2014-10-26 Doug Evans <xdje42@gmail.com>
1311
1312 * symtab.h (struct field_of_this_result): Fix typo in comment.
1313 (lookup_symbol_in_language): Move function comment here.
1314 (lookup_symbol): Improve function comment.
1315 (basic_lookup_symbol_nonlocal): Ditto.
1316 (lookup_symbol_static, lookup_symbol_global): Ditto.
1317 (lookup_symbol_aux_block): Ditto.
1318 (lookup_language_this): Add function comment.
1319 (lookup_static_symbol_aux): Explicitly mark as extern. Improve
1320 function comment.
1321 (lookup_block_symbol): Improve function comment.
1322 (lookup_struct): Fix capitalization in function comment.
1323 (lookup_transparent_type): Add function comment.
1324 (lookup_global_symbol_from_objfile): Explicitly mark as extern.
1325 Improve function comment.
1326 (lookup_objfile_from_block): Add function comment.
1327 * symtab.c (lookup_symbol_in_language): Update function comment.
1328 (lookup_symbol, lookup_language_this): Ditto.
1329 (lookup_static_symbol_aux, lookup_objfile_from_block): Ditto.
1330 (lookup_symbol_aux_block, lookup_global_symbol_from_objfile): Ditto.
1331 (basic_lookup_symbol_nonlocal): Ditto.
1332 (lookup_symbol_static, lookup_symbol_global): Ditto.
1333 (lookup_transparent_type, lookup_block_symbol): Ditto.
1334
1335 2014-10-25 Doug Evans <xdje42@gmail.com>
1336
1337 * symtab.c (types_info): Delete forward decl.
1338 (functions_info, variables_info, sources_info): Ditto.
1339 (_initialize_symtab): Rewrite forward decl to use
1340 initialize_file_ftype.
1341
1342 2014-10-25 Doug Evans <xdje42@gmail.com>
1343
1344 * symtab.c (lookup_symbol_aux_quick): Set block_found upon success.
1345
1346 2014-10-25 Doug Evans <xdje42@gmail.com>
1347
1348 * dwarf2read.c (process_structure_scope): Remove second (nested) copy
1349 of local var child_die.
1350
1351 2014-10-24 Don Breazeal <donb@codesourcery.com>
1352
1353 * infrun.c (follow_fork_inferior): Update fork message printing
1354 to use target_terminal_ours_for_output instead of
1355 target_terminal_ours, to use _() for all format strings, to print
1356 "vfork" instead of "fork" for vforks, and to add a detach message.
1357 (handle_vfork_child_exec_or_exit): Update message printing to use
1358 target_terminal_ours_for_output instead of target_terminal_ours, to
1359 use _() for all format strings, and to fix some formatting.
1360
1361 2014-10-24 Pedro Alves <palves@redhat.com>
1362
1363 * Makefile.in (ALLDEPFILES): Remove vax-nat.c.
1364 * NEWS (Removed targets): Add VAX BSD and VAX Ultrix.
1365 * config/vax/vax.mh: Delete.
1366 * configure.host: Move vax-*-bsd* and vax-*-ultrix* to the
1367 obsolete configurations section.
1368 * configure.tgt (vax-*-*): Don't mention 4.2BSD nor Ultrix.
1369 * vax-nat.c: Delete file.
1370
1371 2014-10-24 Pedro Alves <palves@redhat.com>
1372
1373 * NEWS (Removed targets): Add OS/arch column.
1374
1375 2014-10-24 Siva Chandra Reddy <sivachandra@google.com>
1376
1377 * gnu-v3-abi.c (gnuv3_pass_by_reference): Call TYPE_TARGET_TYPE
1378 on the arg type of a constructor only if it is of reference type.
1379
1380 2014-10-23 Sandra Loosemore <sandra@codesourcery.com>
1381
1382 * nios2-tdep.c (nios2_analyze_prologue): Use new instruction field
1383 accessors and constants from nios2 opcodes update.
1384 (nios2_get_next_pc): Likewise.
1385
1386 2014-10-19 Doug Evans <xdje42@gmail.com>
1387
1388 * gdbthread.h (set_running): Fix comment.
1389 (set_executing, finish_thread_state): Fix comment.
1390
1391 2014-10-18 Doug Evans <xdje42@gmail.com>
1392
1393 * linux-nat.c (linux_nat_wait_1): Make local prev_mask non-static.
1394
1395 2014-10-17 Doug Evans <dje@google.com>
1396
1397 * NEWS: Mention new event gdb.clear_objfiles.
1398 * python/py-event.h (emit_clear_objfiles_event): Clear
1399 * python/py-events.h (events_object): New member clear_objfiles.
1400 * python/py-evts.c (gdbpy_initialize_py_events): Add clear_objfiles
1401 event.
1402 * python/py-inferior.c (python_new_objfile): If objfile is NULL,
1403 emit clear_objfiles event.
1404 * python/py-newobjfileevent.c (create_clear_objfiles_event_object): New
1405 function.
1406 (emit_clear_objfiles_event): New function.
1407 (clear_objfiles): New event.
1408 * python/python-internal.h (gdbpy_initialize_clear_objfiles_event):
1409 Declare.
1410 * python/python.c (_initialize_python): Call
1411 gdbpy_initialize_clear_objfiles_event.
1412
1413 2014-10-17 Doug Evans <dje@google.com>
1414
1415 * NEWS: Mention new gdb.Objfile.progspace attribute.
1416 * python/py-objfile.c (objfpy_get_progspace): New function.
1417 (objfile_getset): New entry for "progspace".
1418
1419 2014-10-17 Pedro Alves <palves@redhat.com>
1420
1421 PR gdb/17471
1422 * infcmd.c (strip_bg_char): Change prototype and rewrite. Now
1423 returns a copy of the input.
1424 (run_command_1, continue_command, step_1, jump_command)
1425 (signal_command, until_command, advance_command, finish_command)
1426 (attach_command): Adjust and install a cleanup to free the
1427 stripped args.
1428
1429 2014-10-17 Pedro Alves <palves@redhat.com>
1430
1431 PR gdb/17300
1432 * infcmd.c (continue_1): If continuing all threads in the
1433 foreground, make sure the inferior's terminal settings are put in
1434 effect.
1435
1436 2014-10-17 Pedro Alves <palves@redhat.com>
1437
1438 PR gdb/17472
1439 * annotate.c (annotate_breakpoints_invalid): Use
1440 target_terminal_our_for_output instead of target_terminal_ours.
1441 Give back the terminal to the target.
1442 (annotate_frames_invalid): Likewise.
1443
1444 2014-10-17 Pedro Alves <palves@redhat.com>
1445
1446 * target.c (enum terminal_state): New enum.
1447 (terminal_state): New global.
1448 (target_terminal_init): New function.
1449 (target_terminal_inferior): Skip if inferior already owns the
1450 terminal.
1451 (target_terminal_ours, target_terminal_ours_for_output): New
1452 functions.
1453 * target.h (target_terminal_init): Convert to function prototype.
1454 (target_terminal_ours_for_output): Convert to function prototype
1455 and tweak comment.
1456 (target_terminal_ours): Convert to function prototype and tweak
1457 comment.
1458 * windows-nat.c (do_initial_windows_stuff): Call
1459 target_terminal_init instead of child_terminal_init_with_pgrp.
1460
1461 2014-10-17 Pedro Alves <palves@redhat.com>
1462
1463 * Makefile.in (ALL_64_TARGET_OBS): Remove alpha-osf1-tdep.o.
1464 (HFILES_NO_SRCDIR): Remove config/alpha/nm-osf3.h.
1465 (ALLDEPFILES): Remove alpha-nat.c, alpha-osf1-tdep.c and
1466 solib-osf.c.
1467 * NEWS: Mention that support for alpha*-*-osf* has been removed.
1468 * ada-lang.h [__alpha__ && __osf__]
1469 (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Delete.
1470 * alpha-nat.c, alpha-osf1-tdep.c: Delete files.
1471 * alpha-tdep.c (alpha_gdbarch_init): Remove reference to
1472 GDB_OSABI_OSF1.
1473 * config/alpha/alpha-osf3.mh, config/alpha/nm-osf3.h: Delete
1474 files.
1475 * config/djgpp/fnchange.lst (config/alpha/alpha-osf1.mh)
1476 (config/alpha/alpha-osf2.mh, config/alpha/alpha-osf3.mh): Delete.
1477 * configure: Regenerate.
1478 * configure.ac: Remove references to osf.
1479 * configure.host: Handle alpha*-*-osf* in the obsolete hosts
1480 section. Remove all other references to osf.
1481 * configure.tgt: Add alpha*-*-osf* to the obsolete targets section.
1482 Remove all other references to osf.
1483 * dec-thread.c: Delete file.
1484 * defs.h (GDB_OSABI_OSF1): Delete.
1485 * inferior.h (START_INFERIOR_TRAPS_EXPECTED): New unconditionally
1486 defined.
1487 * osabi.c (gdb_osabi_names): Delete "OSF/1".
1488 * procfs.c (procfs_debug_inferior) [PROCFS_DONT_TRACE_FAULTS]:
1489 Delete code.
1490 (unconditionally_kill_inferior)
1491 [PROCFS_NEED_CLEAR_CURSIG_FOR_KILL]: Delete code.
1492 * solib-osf.c: Delete file.
1493
1494 2014-10-17 Pedro Alves <palves@redhat.com>
1495
1496 * remote.c (clear_threads_listing_context): Move higher up, out of
1497 the HAVE_LIBEXPAT guard.
1498
1499 2014-10-16 Tristan Gingold <gingold@adacore.com>
1500
1501 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers)
1502 (i386_darwin_store_inferior_registers): Sanitize gs and fs values
1503 on amd64.
1504
1505 2014-10-15 Pedro Alves <palves@redhat.com>
1506
1507 * dec-thread.c (dec_thread_count_gdb_threads)
1508 (dec_thread_add_gdb_thread): Delete.
1509 (dec_thread_update_thread_list): Delete.
1510 (dec_thread_find_new_threads): Rename to ...
1511 (dec_thread_update_thread_list): ... this. Delete GDB-size
1512 threads that are no longer found in dec_thread_list.
1513 (resync_thread_list): Delete.
1514 (dec_thread_wait): Call dec_thread_update_thread_list instead of
1515 resync_thread_list.
1516
1517 2014-10-15 Pedro Alves <palves@redhat.com>
1518
1519 * gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): New macro.
1520 * remote.c (remote_update_thread_list): Skip calling prune_threads
1521 if any thread listing method is supported, and instead walk over
1522 the set of remote threads listed, deleting those that are not
1523 found in GDB's thread list.
1524
1525 2014-10-15 Pedro Alves <palves@redhat.com>
1526
1527 * ada-tasks.c (print_ada_task_info, task_command_1): Adjust.
1528 * bsd-uthread.c (bsd_uthread_find_new_threads): Rename to ...
1529 (bsd_uthread_update_thread_list): ... this. Call prune_threads.
1530 (bsd_uthread_target): Adjust.
1531 * corelow.c (core_open): Adjust.
1532 * dec-thread.c (dec_thread_find_new_threads): Update comment.
1533 (dec_thread_update_thread_list): New function.
1534 (init_dec_thread_ops): Adjust.
1535 * gdbthread.h (prune_threads): New declaration.
1536 * linux-thread-db.c (thread_db_find_new_threads): Rename to ...
1537 (thread_db_update_thread_list): ... this. Call prune_threads.
1538 (init_thread_db_ops): Adjust.
1539 * nto-procfs.c (procfs_find_new_threads): Rename to ...
1540 (procfs_update_thread_list): ... this. Call prune_threads.
1541 (procfs_attach, procfs_create_inferior, init_procfs_targets):
1542 Adjust.
1543 * obsd-nat.c (obsd_find_new_threads): Rename to ...
1544 (obsd_update_thread_list): ... this. Call prune_threads.
1545 (obsd_add_target): Adjust.
1546 * procfs.c (procfs_target): Adjust.
1547 (procfs_notice_thread): Update comment.
1548 (procfs_find_new_threads): Rename to ...
1549 (procfs_update_thread_list): ... this. Call prune_threads.
1550 * ravenscar-thread.c (ravenscar_update_inferior_ptid): Update
1551 comment.
1552 (ravenscar_wait): Adjust.
1553 (ravenscar_find_new_threads): Rename to ...
1554 (ravenscar_update_thread_list): ... this. Call prune_threads.
1555 (init_ravenscar_thread_ops): Adjust.
1556 * record-btrace.c (record_btrace_find_new_threads): Rename to ...
1557 (record_btrace_update_thread_list): ... this. Adjust comment.
1558 (init_record_btrace_ops): Adjust.
1559 * remote.c (remote_threads_info): Rename to ...
1560 (remote_update_thread_list): ... this. Call prune_threads.
1561 (remote_start_remote, extended_remote_attach_1, init_remote_ops):
1562 Adjust.
1563 * sol-thread.c (check_for_thread_db): Adjust.
1564 (sol_find_new_threads_callback): Rename to ...
1565 (sol_update_thread_list_callback): ... this.
1566 (sol_find_new_threads): Rename to ...
1567 (sol_update_thread_list): ... this. Call prune_threads. Adjust.
1568 (sol_get_ada_task_ptid, init_sol_thread_ops): Adjust.
1569 * target-delegates.c: Regenerate.
1570 * target.c (target_find_new_threads): Rename to ...
1571 (target_update_thread_list): ... this.
1572 * target.h (struct target_ops): Rename to_find_new_threads field
1573 to to_update_thread_list.
1574 (target_find_new_threads): Rename to ...
1575 (target_update_thread_list): ... this.
1576 * thread.c (prune_threads): Make extern.
1577 (update_thread_list): Adjust.
1578
1579 2014-10-15 Pedro Alves <palves@redhat.com>
1580
1581 * remote.c (remote_get_threadlist, remote_threadlist_iterator):
1582 Add describing comment. Return -1 if the qL packet is not
1583 supported.
1584 (struct thread_item, thread_item_t): Move higher up in
1585 the file. Add comments.
1586 (struct threads_parsing_context): Move higher up in
1587 the file, add comments, and remote to ...
1588 (struct threads_listing_context): ... this.
1589 (remote_newthread_step): Don't add the thread to GDB's thread
1590 database here. Instead push it to the thread_listing_context
1591 list.
1592 (remote_find_new_threads): Rename to ...
1593 (remote_get_threads_with_ql): ... this. Add target_ops and
1594 targets_listing_context parameters. Pass down context.
1595 (start_thread): Adjust.
1596 (clear_threads_parsing_context): Rename to ...
1597 (clear_threads_listing_context): ... this.
1598 (remote_get_threads_with_qxfer): New, with parts salvaged from old
1599 remote_threads_info.
1600 (remote_get_threads_with_qthreadinfo): Ditto.
1601 (remote_threads_info): Reimplement.
1602
1603 2014-10-15 Pedro Alves <palves@redhat.com>
1604
1605 * infrun.c (resume): Don't force displaced-stepping for all
1606 single-steps on software single-stepping archs.
1607
1608 2014-10-15 Pedro Alves <palves@redhat.com>
1609
1610 * breakpoint.c (single_step_breakpoints): Delete global.
1611 (insert_single_step_breakpoint): Adjust to store the breakpoint
1612 pointer in the current thread.
1613 (single_step_breakpoints_inserted, remove_single_step_breakpoints)
1614 (cancel_single_step_breakpoints): Delete functions.
1615 (breakpoint_has_location_inserted_here): Make extern.
1616 (single_step_breakpoint_inserted_here_p): Adjust to walk the
1617 breakpoint list.
1618 * breakpoint.h (breakpoint_has_location_inserted_here): New
1619 declaration.
1620 (single_step_breakpoints_inserted, remove_single_step_breakpoints)
1621 (cancel_single_step_breakpoints): Remove declarations.
1622 * gdbthread.h (struct thread_control_state)
1623 <single_step_breakpoints>: New field.
1624 (delete_single_step_breakpoints)
1625 (thread_has_single_step_breakpoints_set)
1626 (thread_has_single_step_breakpoint_here): New declarations.
1627 * infrun.c (follow_exec): Also clear the single-step breakpoints.
1628 (singlestep_breakpoints_inserted_p, singlestep_ptid)
1629 (singlestep_pc): Delete globals.
1630 (infrun_thread_ptid_changed): Remove references to removed
1631 globals.
1632 (resume_cleanups): Delete the current thread's single-step
1633 breakpoints.
1634 (maybe_software_singlestep): Remove references to removed globals.
1635 (resume): Adjust to use thread_has_single_step_breakpoints_set and
1636 delete_single_step_breakpoints.
1637 (init_wait_for_inferior): Remove references to removed globals.
1638 (delete_thread_infrun_breakpoints): Delete the thread's
1639 single-step breakpoints too.
1640 (delete_just_stopped_threads_infrun_breakpoints): Don't delete
1641 single-step breakpoints here.
1642 (delete_stopped_threads_single_step_breakpoints): New function.
1643 (adjust_pc_after_break): Adjust to use
1644 thread_has_single_step_breakpoints_set.
1645 (handle_inferior_event): Remove references to removed globals.
1646 Use delete_stopped_threads_single_step_breakpoints.
1647 (handle_signal_stop): Adjust to per-thread single-step
1648 breakpoints. Swap test order to do cheaper tests first.
1649 (switch_back_to_stepped_thread): Extend debug output. Remove
1650 references to removed globals.
1651 * record-full.c (record_full_wait_1): Adjust to per-thread
1652 single-step breakpoints.
1653 * thread.c (delete_single_step_breakpoints)
1654 (thread_has_single_step_breakpoints_set)
1655 (thread_has_single_step_breakpoint_here): New functions.
1656 (clear_thread_inferior_resources): Also delete the thread's
1657 single-step breakpoints.
1658
1659 2014-10-15 Pedro Alves <palves@redhat.com>
1660
1661 * thread.c (delete_thread_breakpoint): New function.
1662 (delete_step_resume_breakpoint)
1663 (delete_exception_resume_breakpoint): Use it.
1664 (delete_at_next_stop): New function.
1665 (clear_thread_inferior_resources): Use delete_at_next_stop.
1666
1667 2014-10-15 Pedro Alves <palves@redhat.com>
1668
1669 * breakpoint.c (regular_breakpoint_inserted_here_p): Inline ...
1670 (breakpoint_inserted_here_p): ... here. Remove special case for
1671 software single-step breakpoints.
1672 (find_non_raw_software_breakpoint_inserted_here): Inline ...
1673 (software_breakpoint_inserted_here_p): ... here. Remove special
1674 case for software single-step breakpoints.
1675 (bp_target_info_copy_insertion_state)
1676 (deprecated_insert_raw_breakpoint)
1677 (deprecated_remove_raw_breakpoint): Delete functions.
1678 * breakpoint.h (deprecated_insert_raw_breakpoint)
1679 (deprecated_remove_raw_breakpoint): Remove declarations.
1680
1681 2014-10-15 Pedro Alves <palves@redhat.com>
1682
1683 PR breakpoints/9649
1684 * breakpoint.c (single_step_breakpoints, single_step_gdbarch):
1685 Delete array globals.
1686 (single_step_breakpoints): New global.
1687 (breakpoint_xfer_memory): Remove special handling for single-step
1688 breakpoints.
1689 (update_breakpoints_after_exec): Delete bp_single_step
1690 breakpoints.
1691 (detach_breakpoints): Remove special handling for single-step
1692 breakpoints.
1693 (breakpoint_init_inferior): Delete bp_single_step breakpoints.
1694 (bpstat_stop_status): Add comment.
1695 (bpstat_what, bptype_string, print_one_breakpoint_location)
1696 (adjust_breakpoint_address, init_bp_location): Handle
1697 bp_single_step.
1698 (new_single_step_breakpoint): New function.
1699 (set_momentary_breakpoint, bkpt_remove_location): Remove special
1700 handling for single-step breakpoints.
1701 (insert_single_step_breakpoint, single_step_breakpoints_inserted)
1702 (remove_single_step_breakpoints, cancel_single_step_breakpoints):
1703 Rewrite.
1704 (detach_single_step_breakpoints, find_single_step_breakpoint):
1705 Delete functions.
1706 (breakpoint_has_location_inserted_here): New function.
1707 (single_step_breakpoint_inserted_here_p): Rewrite.
1708 * breakpoint.h: Remove FIXME.
1709 (enum bptype) <bp_single_step>: New enum value.
1710 (insert_single_step_breakpoint): Update comment.
1711 * infrun.c (resume_cleanups)
1712 (delete_step_thread_step_resume_breakpoint): Remove single-step
1713 breakpoints.
1714 (fetch_inferior_event): Install a cleanup that removes infrun
1715 breakpoints.
1716 (switch_back_to_stepped_thread) <expect thread advanced also>:
1717 Clear step-over info.
1718
1719 2014-10-15 Pedro Alves <palves@redhat.com>
1720
1721 * infrun.c (delete_step_resume_breakpoint_callback): Delete.
1722 (delete_thread_infrun_breakpoints): New function, with parts
1723 salvaged from delete_step_resume_breakpoint_callback.
1724 (delete_step_thread_step_resume_breakpoint): Delete.
1725 (for_each_just_stopped_thread_callback_func): New typedef.
1726 (for_each_just_stopped_thread): New function.
1727 (delete_just_stopped_threads_infrun_breakpoints): New function.
1728 (delete_step_thread_step_resume_breakpoint_cleanup): Rename to ...
1729 (delete_just_stopped_threads_infrun_breakpoints_cleanup):
1730 ... this. Adjust.
1731 (wait_for_inferior, fetch_inferior_event): Adjust to renames.
1732
1733 2014-10-15 Pedro Alves <palves@redhat.com>
1734
1735 * breakpoint.c (should_be_inserted): Don't insert watchpoints if
1736 trying to step past a non-steppable watchpoint.
1737 * gdbthread.h (struct thread_info) <stepping_over_watchpoint>: New
1738 field.
1739 * infrun.c (struct step_over_info): Add new field
1740 'nonsteppable_watchpoint_p' and adjust comments.
1741 (set_step_over_info): New 'nonsteppable_watchpoint_p' parameter.
1742 Adjust.
1743 (clear_step_over_info): Clear nonsteppable_watchpoint_p as well.
1744 (stepping_past_nonsteppable_watchpoint): New function.
1745 (step_over_info_valid_p): Also return true if stepping past a
1746 nonsteppable watchpoint.
1747 (proceed): Adjust call to set_step_over_info. Remove reference to
1748 init_infwait_state.
1749 (init_wait_for_inferior): Remove reference to init_infwait_state.
1750 (waiton_ptid): Delete global.
1751 (struct execution_control_state)
1752 <stepped_after_stopped_by_watchpoint>: Delete field.
1753 (wait_for_inferior, fetch_inferior_event): Always pass
1754 minus_one_ptid to target_wait.
1755 (init_thread_stepping_state): Clear 'stepping_over_watchpoint'
1756 field.
1757 (init_infwait_state): Delete function.
1758 (handle_inferior_event): Remove infwait_state handling.
1759 (handle_signal_stop) <watchpoints handling>: Adjust after
1760 stepped_after_stopped_by_watchpoint removal. Don't remove
1761 breakpoints here nor set infwait_state. Set the thread's
1762 stepping_over_watchpoint flag, and call keep_going instead.
1763 (keep_going): Handle stepping_over_watchpoint. Adjust
1764 set_step_over_info calls.
1765 * infrun.h (stepping_past_nonsteppable_watchpoint): Declare
1766 function.
1767
1768 2014-10-15 Pedro Alves <palves@redhat.com>
1769
1770 * infrun.c (step_over_info_valid_p): New function.
1771 (resume): Use step_over_info_valid_p instead of checking the
1772 threads's trap_expected flag.
1773
1774 2014-10-15 Doug Evans <dje@google.com>
1775 Walfred Tedeschi <walfred.tedeschi@intel.com>
1776
1777 PR python/17364
1778 * python/lib/gdb/__init__.py (packages): Add "printer".
1779 * python/lib/gdb/command/bound_registers.py: Moved to ...
1780 * python/lib/gdb/printer/bound_registers.py: ... here.
1781 Add printer to global set of builtin printers. Rename printer from
1782 "bound" to "mpx_bound128".
1783 * python/lib/gdb/printing.py (_builtin_pretty_printers): New global,
1784 registered as global "builtin" printer.
1785 (add_builtin_pretty_printer): New function.
1786 * data-directory/Makefile.in (PYTHON_FILE_LIST): Update, and add
1787 gdb/printer/__init__.py.
1788
1789 2014-10-15 Iain Buclaw <ibuclaw@gdcproject.org>
1790
1791 * Makefile.in (SFILES): Remove d-support.c.
1792 (COMMON_OBS): Remove d-support.o.
1793 * d-lang.h (d_parse_symbol): Remove declaration.
1794 * d-lang.c (d_demangle): Use gdb_demangle to demangle D symbols.
1795 * d-support.c: Remove file.
1796
1797 2014-10-15 Andreas Arnez <arnez@linux.vnet.ibm.com>
1798
1799 * gdb/infrun.c (process_event_stop_test): Apply
1800 gdbarch_addr_bits_remove to longjmp resume address.
1801
1802 2014-10-15 Pedro Alves <palves@redhat.com>
1803
1804 * regformats/microblaze.dat: Delete file.
1805
1806 2014-10-15 Ajit Agarwal <ajitkum@xilinx.com>
1807
1808 * features/Makefile (microblaze-expedite): Replace pc with rpc.
1809 * regformats/microblaze-with-stack-protect.dat: Regenerate.
1810
1811 2014-10-15 Siva Chandra Reddy <sivachandra@google.com>
1812
1813 * gnu-v3-abi.c (gnuv3_pass_by_reference): Treat dynamic classes
1814 as non-trivial.
1815
1816 2014-10-15 Siva Chandra Reddy <sivachandra@google.com>
1817
1818 PR c++/13403
1819 PR c++/15154
1820 * gnu-v3-abi.c (gnuv3_pass_by_reference): Lookup copy constructors
1821 with qualified args.
1822
1823 2014-10-14 Joel Brobecker <brobecker@adacore.com>
1824
1825 * ada-lang.c (ada_evaluate_subexp) <BINOP_ADD>: Add handling
1826 of the case where the second operand is a pointer.
1827 <BINOP_SUB>: Likewise.
1828
1829 2014-10-14 Sergio Durigan Junior <sergiodj@redhat.com>
1830
1831 * breakpoint.c (bkpt_probe_insert_location): Call set_semaphore
1832 only if it is not NULL.
1833 (bkpt_probe_remove_location): Likewise, for clear_semaphore.
1834 * probe.h (struct probe_ops) <set_semaphore>: Update comment.
1835 (struct probe_ops) <clear_semaphore>: Likewise.
1836 * tracepoint.c (start_tracing): Call set_semaphore only if it is
1837 not NULL.
1838 (stop_tracing): Likewise, for clear_semaphore.
1839
1840 2014-10-14 Sergio Durigan Junior <sergiodj@redhat.com>
1841
1842 * stap-probe.c (stap_parse_argument): Initialize expout explicitly
1843 using language_c, instead of current_language.
1844
1845 2014-10-13 Doug Evans <dje@google.com>
1846
1847 * python/py-objfile.c (objfpy_initialize): New function.
1848 (objfpy_new, objfile_to_objfile_object): Call it.
1849 * python/py-progspace.c (pspy_initialize): New function.
1850 (pspy_new, pspace_to_pspace_object): Call it.
1851
1852 2014-10-13 Miroslav Franc <mfranc@redhat.com>
1853 Jan Kratochvil <jan.kratochvil@redhat.com>
1854
1855 Fix "save breakpoints" for "catch" command.
1856 * break-catch-sig.c (signal_catchpoint_print_recreate): Add trailing
1857 newline.
1858
1859 2014-10-12 Miroslav Franc <mfranc@redhat.com>
1860
1861 Fix "save breakpoints" for "disable $bpnum" command.
1862 * breakpoint.c (save_breakpoints): Add $bpnum for disable.
1863
1864 2014-10-10 Pedro Alves <palves@redhat.com>
1865
1866 * Makefile.in (ALL_TARGET_OBS): Remove mips-irix-tdep.o and solib-irix.o.
1867 (ALLDEPFILES): Remove mips-irix-tdep.c and solib-irix.c.
1868 (HFILES_NO_SRCDIR): Remove solib-irix.h.
1869 * NEWS: Mention that support for mips-sgi-irix5* mips-sgi-irix6*
1870 and been removed.
1871 * config/mips/irix5.mh, config/mips/irix6.mh: Delete files.
1872 * configure.ac: Remove references to IRIX.
1873 * configure.host: Add *-*-irix* to the obsolete hosts section.
1874 Remove all other references to irix.
1875 * irix5-nat.c, mips-irix-tdep.c, solib-irix.c, solib-irix.h:
1876 Delete files.
1877
1878 2014-10-10 Ajit Agarwal <ajitkum@xilinx.com>
1879
1880 * microblaze-tdep.c (microblaze_gdbarch_init): If the description
1881 isn't valid, release the tdesc arch data and return NULL.
1882
1883 2014-10-10 Pedro Alves <palves@redhat.com>
1884
1885 * linux-tdep.c: Include observer.h.
1886 (linux_inferior_data): New global.
1887 (struct linux_info): New structure.
1888 (invalidate_linux_cache_inf, linux_inferior_data_cleanup)
1889 (get_linux_inferior_data): New functions.
1890 (linux_vsyscall_range): Rename to ...
1891 (linux_vsyscall_range_raw): ... this.
1892 (linux_vsyscall_range): New function; handles caching.
1893 (_initialize_linux_tdep): Register linux_inferior_data. Install
1894 inferior_exit and inferior_appeared observers.
1895
1896 2014-10-10 Jan Kratochvil <jan.kratochvil@redhat.com>
1897 Pedro Alves <palves@redhat.com>
1898
1899 PR symtab/14466
1900 * solib-svr4.c (svr4_read_so_list): Rename to ...
1901 (svr4_current_sos_1): ... this and change the function comment.
1902 (svr4_current_sos): New function.
1903
1904 2014-10-10 Pedro Alves <palves@redhat.com>
1905
1906 * arch-utils.c (default_vsyscall_range): New function.
1907 * arch-utils.h (default_vsyscall_range): New declaration.
1908 * gdbarch.sh (vsyscall_range): New hook.
1909 * gdbarch.h, gdbarch.c: Regenerate.
1910 * linux-tdep.c (linux_vsyscall_range): New function.
1911 (linux_init_abi): Install linux_vsyscall_range as
1912 vsyscall_range gdbarch hook.
1913 * memrange.c (address_in_mem_range): New function.
1914 * memrange.h (address_in_mem_range): New declaration.
1915 * symfile-mem.c (find_vdso_size): Delete function.
1916 (add_vsyscall_page): Use gdbarch_vsyscall_range.
1917
1918 2014-10-10 Pedro Alves <palves@redhat.com>
1919
1920 * infrun.c (normal_stop): Fix typo in comment.
1921
1922 2014-10-09 Sergio Durigan Junior <sergiodj@redhat.com>
1923
1924 PR tdep/9390
1925 * xstorxstormy16-tdep.c (xstormy16_analyze_prologue): Fix possible
1926 typo when using logical AND to determine instruction type.
1927
1928 2014-10-09 Yao Qi <yao@codesourcery.com>
1929
1930 * infrun.c (handle_signal_stop): Remove local variable
1931 'printed'.
1932
1933 2014-10-08 Stan Shebs <stan@codesourcery.com>
1934
1935 * MAINTAINERS (GLOBAL MAINTAINERS): Add Yao Qi.
1936
1937 2014-10-08 Gary Benson <gbenson@redhat.com>
1938
1939 * fbsd-tdep.c: Do not include string.h or gdb_assert.h.
1940
1941 2014-10-08 Gary Benson <gbenson@redhat.com>
1942
1943 * common/common-defs.h: Include common-exceptions.h.
1944 * exceptions.h: Do not include common-exceptions.h.
1945
1946 2014-10-08 Gary Benson <gbenson@redhat.com>
1947
1948 * common/common-defs.h: Include cleanups.h.
1949 * common/common-exceptions.c: Do not include cleanups.h.
1950 * utils.h: Likewise.
1951
1952 2014-10-08 Gary Benson <gbenson@redhat.com>
1953
1954 * ada-lang.c: Do not include exceptions.h.
1955 * ada-valprint.c: Likewise.
1956 * amd64-tdep.c: Likewise.
1957 * auto-load.c: Likewise.
1958 * block.c: Likewise.
1959 * break-catch-throw.c: Likewise.
1960 * breakpoint.c: Likewise.
1961 * btrace.c: Likewise.
1962 * c-lang.c: Likewise.
1963 * cli/cli-cmds.c: Likewise.
1964 * cli/cli-interp.c: Likewise.
1965 * cli/cli-script.c: Likewise.
1966 * completer.c: Likewise.
1967 * corefile.c: Likewise.
1968 * corelow.c: Likewise.
1969 * cp-abi.c: Likewise.
1970 * cp-support.c: Likewise.
1971 * cp-valprint.c: Likewise.
1972 * darwin-nat.c: Likewise.
1973 * dwarf2-frame-tailcall.c: Likewise.
1974 * dwarf2-frame.c: Likewise.
1975 * dwarf2loc.c: Likewise.
1976 * dwarf2read.c: Likewise.
1977 * eval.c: Likewise.
1978 * event-loop.c: Likewise.
1979 * event-top.c: Likewise.
1980 * f-valprint.c: Likewise.
1981 * frame-unwind.c: Likewise.
1982 * frame.c: Likewise.
1983 * gdbtypes.c: Likewise.
1984 * gnu-v2-abi.c: Likewise.
1985 * gnu-v3-abi.c: Likewise.
1986 * guile/scm-auto-load.c: Likewise.
1987 * guile/scm-breakpoint.c: Likewise.
1988 * guile/scm-cmd.c: Likewise.
1989 * guile/scm-frame.c: Likewise.
1990 * guile/scm-lazy-string.c: Likewise.
1991 * guile/scm-param.c: Likewise.
1992 * guile/scm-symbol.c: Likewise.
1993 * guile/scm-type.c: Likewise.
1994 * hppa-hpux-tdep.c: Likewise.
1995 * i386-tdep.c: Likewise.
1996 * inf-loop.c: Likewise.
1997 * infcall.c: Likewise.
1998 * infcmd.c: Likewise.
1999 * infrun.c: Likewise.
2000 * interps.c: Likewise.
2001 * interps.h: Likewise.
2002 * jit.c: Likewise.
2003 * linespec.c: Likewise.
2004 * linux-nat.c: Likewise.
2005 * linux-thread-db.c: Likewise.
2006 * m32r-rom.c: Likewise.
2007 * main.c: Likewise.
2008 * memory-map.c: Likewise.
2009 * mi/mi-cmd-break.c: Likewise.
2010 * mi/mi-cmd-stack.c: Likewise.
2011 * mi/mi-interp.c: Likewise.
2012 * mi/mi-main.c: Likewise.
2013 * monitor.c: Likewise.
2014 * nto-procfs.c: Likewise.
2015 * objc-lang.c: Likewise.
2016 * p-valprint.c: Likewise.
2017 * parse.c: Likewise.
2018 * ppc-linux-tdep.c: Likewise.
2019 * printcmd.c: Likewise.
2020 * probe.c: Likewise.
2021 * python/py-auto-load.c: Likewise.
2022 * python/py-breakpoint.c: Likewise.
2023 * python/py-cmd.c: Likewise.
2024 * python/py-finishbreakpoint.c: Likewise.
2025 * python/py-frame.c: Likewise.
2026 * python/py-framefilter.c: Likewise.
2027 * python/py-function.c: Likewise.
2028 * python/py-gdb-readline.c: Likewise.
2029 * python/py-inferior.c: Likewise.
2030 * python/py-infthread.c: Likewise.
2031 * python/py-lazy-string.c: Likewise.
2032 * python/py-linetable.c: Likewise.
2033 * python/py-param.c: Likewise.
2034 * python/py-prettyprint.c: Likewise.
2035 * python/py-symbol.c: Likewise.
2036 * python/py-type.c: Likewise.
2037 * python/py-value.c: Likewise.
2038 * python/python-internal.h: Likewise.
2039 * python/python.c: Likewise.
2040 * record-btrace.c: Likewise.
2041 * record-full.c: Likewise.
2042 * regcache.c: Likewise.
2043 * remote-fileio.c: Likewise.
2044 * remote-mips.c: Likewise.
2045 * remote.c: Likewise.
2046 * rs6000-aix-tdep.c: Likewise.
2047 * rs6000-nat.c: Likewise.
2048 * skip.c: Likewise.
2049 * solib-darwin.c: Likewise.
2050 * solib-dsbt.c: Likewise.
2051 * solib-frv.c: Likewise.
2052 * solib-ia64-hpux.c: Likewise.
2053 * solib-spu.c: Likewise.
2054 * solib-svr4.c: Likewise.
2055 * solib.c: Likewise.
2056 * spu-tdep.c: Likewise.
2057 * stack.c: Likewise.
2058 * stap-probe.c: Likewise.
2059 * symfile-mem.c: Likewise.
2060 * symmisc.c: Likewise.
2061 * target.c: Likewise.
2062 * thread.c: Likewise.
2063 * top.c: Likewise.
2064 * tracepoint.c: Likewise.
2065 * tui/tui-interp.c: Likewise.
2066 * typeprint.c: Likewise.
2067 * utils.c: Likewise.
2068 * valarith.c: Likewise.
2069 * valops.c: Likewise.
2070 * valprint.c: Likewise.
2071 * value.c: Likewise.
2072 * varobj.c: Likewise.
2073 * windows-nat.c: Likewise.
2074 * xml-support.c: Likewise.
2075
2076 2014-10-05 Maciej W. Rozycki <macro@codesourcery.com>
2077
2078 * mips-tdep.c (add_offset_16): Rewrite to implement what the
2079 name implies.
2080 (extended_mips16_next_pc): Update accordingly.
2081
2082 2014-10-05 Maciej W. Rozycki <macro@codesourcery.com>
2083
2084 * mips-tdep.c (mips16_instruction_is_compact_branch): New
2085 function.
2086 (micromips_instruction_is_compact_branch): Likewise.
2087 (mips16_scan_prologue): Terminate scanning upon seeing a branch
2088 or a compact jump, reaching a jump delay slot, or seeing a
2089 second non-prologue instruction.
2090 (micromips_scan_prologue): Also terminate scanning upon seeing a
2091 compact branch or jump, or reaching a branch or jump delay slot.
2092 (mips32_scan_prologue): Terminate scanning upon reaching a branch
2093 or jump delay slot, or seeing a second non-prologue instruction.
2094 (mips32_instruction_has_delay_slot): Retain instruction
2095 examination code only, update arguments accordingly and move
2096 instruction fetch pieces to...
2097 (mips32_insn_at_pc_has_delay_slot): ... this new function.
2098 (micromips_instruction_has_delay_slot): Likewise and to...
2099 (micromips_insn_at_pc_has_delay_slot): ... this new function.
2100 (mips16_instruction_has_delay_slot): Likewise and to...
2101 (mips16_insn_at_pc_has_delay_slot): ... this new function.
2102 (mips_single_step_through_delay): Update accordingly.
2103 (mips_adjust_breakpoint_address): Likewise.
2104
2105 2014-10-05 Maciej W. Rozycki <macro@codesourcery.com>
2106
2107 * mips-tdep.c (micromips_instruction_has_delay_slot): When
2108 !mustbe32 also return 1 for 32-bit instructions.
2109 (mips16_instruction_has_delay_slot): Likewise. Add an
2110 explanatory comment.
2111
2112 2014-10-03 Maciej W. Rozycki <macro@codesourcery.com>
2113
2114 * elfread.c (elf_symtab_read): Also mark solib trampoline minimal
2115 symbols special.
2116
2117 2014-10-03 Maciej W. Rozycki <macro@codesourcery.com>
2118
2119 * breakpoint.h (bp_target_info): Add `reqstd_address' member,
2120 update comments.
2121 * breakpoint.c (one_breakpoint_xfer_memory): Use `reqstd_address'
2122 for the breakpoint's address. Don't preinitialize `placed_size'.
2123 (insert_bp_location): Set `reqstd_address' rather than
2124 `placed_address'.
2125 (bp_target_info_copy_insertion_state): Also copy `placed_address'.
2126 (bkpt_insert_location): Use `reqstd_address' for the breakpoint's
2127 address.
2128 (bkpt_remove_location): Likewise.
2129 (deprecated_insert_raw_breakpoint): Likewise.
2130 (deprecated_remove_raw_breakpoint): Likewise.
2131 (find_single_step_breakpoint): Likewise.
2132 * mem-break.c (default_memory_insert_breakpoint): Use
2133 `reqstd_address' for the breakpoint's address. Don't set
2134 `placed_address' or `placed_size' if breakpoint contents couldn't
2135 have been determined.
2136 * remote.c (remote_insert_breakpoint): Use `reqstd_address' for
2137 the breakpoint's address.
2138 (remote_insert_hw_breakpoint): Likewise. Don't set
2139 `placed_address' or `placed_size' if breakpoint couldn't have been
2140 set.
2141 * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Use
2142 `reqstd_address' for the breakpoint's address.
2143 * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Likewise.
2144 * ia64-tdep.c (ia64_memory_insert_breakpoint): Likewise.
2145 * m32r-tdep.c (m32r_memory_insert_breakpoint): Likewise.
2146 * microblaze-linux-tdep.c
2147 (microblaze_linux_memory_remove_breakpoint): Likewise.
2148 * monitor.c (monitor_insert_breakpoint): Likewise.
2149 * nto-procfs.c (procfs_insert_breakpoint): Likewise.
2150 (procfs_insert_hw_breakpoint): Likewise.
2151 * ppc-linux-nat.c (ppc_linux_insert_hw_breakpoint): Likewise.
2152 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Likewise.
2153 * remote-m32r-sdi.c (m32r_insert_breakpoint): Likewise.
2154 * remote-mips.c (mips_insert_breakpoint): Likewise.
2155 * x86-nat.c (x86_insert_hw_breakpoint): Likewise.
2156
2157 2014-10-03 Luis Machado <lgustavo@codesourcery.com>
2158
2159 * valops.c (value_assign): Check for bit field assignments
2160 before calling architecture-specific register value
2161 conversion functions.
2162
2163 2014-10-03 Pierre Muller <muller@sourceware.org>
2164
2165 * dbxread.c (read_dbx_symtab): Also ignore N_BNSYM/N_ENSYM.
2166
2167 2014-10-02 Pedro Alves <palves@redhat.com>
2168
2169 * breakpoint.c (breakpoints_should_be_inserted_now): Use
2170 threads_are_executing.
2171 * breakpoint.h (breakpoints_should_be_inserted_now): Add
2172 describing comment.
2173 * gdbthread.h (threads_are_executing): Declare.
2174 (handle_signal_stop) <random signals>: Don't print about the
2175 signal here if stopping.
2176 (end_stepping_range): Don't notify observers here.
2177 (normal_stop): Update the thread list. If stopped by a random
2178 signal or a stepping range ended, notify observers.
2179 * thread.c (threads_executing): New global.
2180 (init_thread_list): Clear 'threads_executing'.
2181 (set_executing): Set or clear 'threads_executing'.
2182 (threads_are_executing): New function.
2183 (update_threads_executing): New function.
2184 (update_thread_list): Use it.
2185
2186 2014-10-02 Pedro Alves <palves@redhat.com>
2187
2188 PR breakpoints/17431
2189 * breakpoint.c (update_breakpoints_after_exec): Don't create
2190 overlay, longjmp, std terminate nor exception breakpoints here.
2191
2192 2014-10-02 Pedro Alves <palves@redhat.com>
2193
2194 * gdbthread.h (any_thread_of_process, any_live_thread_of_process):
2195 Adjust comments.
2196 * inferior.c (find_inferior_for_program_space): Give preference to
2197 the current inferior.
2198 * inferior.h (find_inferior_for_program_space): Update comment.
2199 * progspace.c (switch_to_program_space_and_thread): Prefer the
2200 current inferior if it's bound to the program space requested. If
2201 the inferior found doesn't have a PID yet, don't bother looking up
2202 a thread.
2203 * progspace.h (switch_to_program_space_and_thread): Adjust
2204 comment.
2205 * thread.c (any_thread_of_process, any_live_thread_of_process):
2206 Give preference to the current thread.
2207
2208 2014-10-01 Pedro Alves <palves@redhat.com>
2209
2210 * breakpoint.c (insert_bp_location): Error out if inserting a
2211 software breakpoint at a read-only address.
2212 * target.c (memory_xfer_check_region): New function, factored out
2213 from ...
2214 (memory_xfer_partial_1): ... this. Make the 'reg_len' local a
2215 ULONGEST.
2216 (target_xfer_partial) <TARGET_OBJECT_RAW_MEMORY>: Check the access
2217 against the memory region attributes.
2218
2219 2014-10-01 Simon Marchi <simon.marchi@ericsson.com>
2220
2221 * NEWS: Announce new exit-code field in -list-thread-groups
2222 output.
2223 * inferior.c (exit_inferior_1): Don't clear exit code.
2224 (inferior_appeared): Clear exit code.
2225 * mi/mi-main.c (print_one_inferior): Add printing of the exit
2226 code.
2227
2228 2014-10-01 Pedro Alves <palves@redhat.com>
2229
2230 * features/Makefile ($(outdir)/%.dat): Output "THIS FILE IS
2231 GENERATED" along with emacs/vi read-only markers.
2232 * regformats/aarch64.dat: Regenerate.
2233 * regformats/arm-with-iwmmxt.dat: Regenerate.
2234 * regformats/arm-with-neon.dat: Regenerate.
2235 * regformats/arm-with-vfpv2.dat: Regenerate.
2236 * regformats/arm-with-vfpv3.dat: Regenerate.
2237 * regformats/i386/amd64-avx-linux.dat: Regenerate.
2238 * regformats/i386/amd64-avx.dat: Regenerate.
2239 * regformats/i386/amd64-avx512-linux.dat: Regenerate.
2240 * regformats/i386/amd64-avx512.dat: Regenerate.
2241 * regformats/i386/amd64-linux.dat: Regenerate.
2242 * regformats/i386/amd64-mpx-linux.dat: Regenerate.
2243 * regformats/i386/amd64-mpx.dat: Regenerate.
2244 * regformats/i386/amd64.dat: Regenerate.
2245 * regformats/i386/i386-avx-linux.dat: Regenerate.
2246 * regformats/i386/i386-avx.dat: Regenerate.
2247 * regformats/i386/i386-avx512-linux.dat: Regenerate.
2248 * regformats/i386/i386-avx512.dat: Regenerate.
2249 * regformats/i386/i386-linux.dat: Regenerate.
2250 * regformats/i386/i386-mmx-linux.dat: Regenerate.
2251 * regformats/i386/i386-mmx.dat: Regenerate.
2252 * regformats/i386/i386-mpx-linux.dat: Regenerate.
2253 * regformats/i386/i386-mpx.dat: Regenerate.
2254 * regformats/i386/i386.dat: Regenerate.
2255 * regformats/i386/x32-avx-linux.dat: Regenerate.
2256 * regformats/i386/x32-avx.dat: Regenerate.
2257 * regformats/i386/x32-avx512-linux.dat: Regenerate.
2258 * regformats/i386/x32-avx512.dat: Regenerate.
2259 * regformats/i386/x32-linux.dat: Regenerate.
2260 * regformats/i386/x32.dat: Regenerate.
2261 * regformats/microblaze-with-stack-protect.dat: Regenerate.
2262 * regformats/mips-dsp-linux.dat: Regenerate.
2263 * regformats/mips-linux.dat: Regenerate.
2264 * regformats/mips64-dsp-linux.dat: Regenerate.
2265 * regformats/mips64-linux.dat: Regenerate.
2266 * regformats/nios2-linux.dat: Regenerate.
2267 * regformats/rs6000/powerpc-32.dat: Regenerate.
2268 * regformats/rs6000/powerpc-32l.dat: Regenerate.
2269 * regformats/rs6000/powerpc-64l.dat: Regenerate.
2270 * regformats/rs6000/powerpc-altivec32l.dat: Regenerate.
2271 * regformats/rs6000/powerpc-altivec64l.dat: Regenerate.
2272 * regformats/rs6000/powerpc-cell32l.dat: Regenerate.
2273 * regformats/rs6000/powerpc-cell64l.dat: Regenerate.
2274 * regformats/rs6000/powerpc-e500l.dat: Regenerate.
2275 * regformats/rs6000/powerpc-vsx32l.dat: Regenerate.
2276 * regformats/rs6000/powerpc-vsx64l.dat: Regenerate.
2277 * regformats/s390-linux32.dat: Regenerate.
2278 * regformats/s390-linux32v1.dat: Regenerate.
2279 * regformats/s390-linux32v2.dat: Regenerate.
2280 * regformats/s390-linux64.dat: Regenerate.
2281 * regformats/s390-linux64v1.dat: Regenerate.
2282 * regformats/s390-linux64v2.dat: Regenerate.
2283 * regformats/s390-te-linux64.dat: Regenerate.
2284 * regformats/s390x-linux64.dat: Regenerate.
2285 * regformats/s390x-linux64v1.dat: Regenerate.
2286 * regformats/s390x-linux64v2.dat: Regenerate.
2287 * regformats/s390x-te-linux64.dat: Regenerate.
2288 * regformats/tic6x-c62x-linux.dat: Regenerate.
2289 * regformats/tic6x-c62x.dat: Regenerate.
2290 * regformats/tic6x-c64x-linux.dat: Regenerate.
2291 * regformats/tic6x-c64x.dat: Regenerate.
2292 * regformats/tic6x-c64xp-linux.dat: Regenerate.
2293 * regformats/tic6x-c64xp.dat: Regenerate.
2294
2295 2014-10-01 Pedro Alves <palves@redhat.com>
2296
2297 * features/Makefile: Update comments.
2298 (XMLTOC): List all xml files we build C files from.
2299 (clean-cfiles): New rule.
2300
2301 2014-10-01 Pedro Alves <palves@redhat.com>
2302
2303 * features/i386/amd64-avx512-linux.c: Regenerate.
2304 * features/i386/amd64-avx512.c: Regenerate.
2305 * features/i386/x32-avx512-linux.c: Regenerate.
2306 * features/i386/x32-avx512.c: Regenerate.
2307
2308 2014-10-01 Pedro Alves <palves@redhat.com>
2309
2310 * features/Makefile (WHICH): Remove arm-with-m,
2311 arm-with-m-fpa-layout and arm-with-m-vfp-d16.
2312
2313 2014-10-01 Pedro Alves <palves@redhat.com>
2314
2315 * features/Makefile (clean): New rule.
2316
2317 2014-10-01 Pedro Alves <palves@redhat.com>
2318
2319 * features/i386/64bit-avx512.xml (zmm10h, zmm11h, zmm12h, zmm13h)
2320 (zmm14h): Add missing end quotes.
2321
2322 2014-10-01 Pedro Alves <palves@redhat.com>
2323
2324 * features/aarch64-core.xml (cpsr): Change back to 32-bit.
2325 * features/aarch64.c: Regenerate.
2326
2327 2014-09-30 Don Breazeal <donb@codesourcery.com>
2328
2329 * inf-ptrace.c (inf_ptrace_follow_fork): Remove target-independent
2330 code so as to work with follow_fork_inferior.
2331 * inf-ttrace.c (inf_ttrace_follow_fork): Ditto.
2332 (inf_ttrace_create_inferior): Remove reference to
2333 inf_ttrace_vfork_ppid.
2334 (inf_ttrace_attach): Ditto.
2335 (inf_ttrace_detach): Ditto.
2336 (inf_ttrace_kill): Use current_inferior instead of
2337 inf_ttrace_vfork_ppid.
2338 (inf_ttrace_wait): Eliminate use of inf_ttrace_vfork_ppid, report
2339 TARGET_WAITKIND_VFORK_DONE event, delete HACK that switched the
2340 inferior away from the parent.
2341 * infrun.c (follow_fork): Call follow_fork_inferior instead of
2342 target_follow_fork.
2343 (follow_fork_inferior): New function.
2344 (follow_inferior_reset_breakpoints): Make function static.
2345 * infrun.h (follow_inferior_reset_breakpoints): Remove declaration.
2346 * linux-nat.c (linux_child_follow_fork): Move target-independent
2347 code to infrun.c:follow_fork_inferior.
2348
2349 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2350
2351 * gdbarch.sh (regset_from_core_section): Remove gdbarch method.
2352 * gdbarch.c: Regenerate.
2353 * gdbarch.h: Likewise.
2354 * corelow.c (sniff_core_bfd): Drop presence check for deleted
2355 gdbarch method 'regset_from_core_section'.
2356 (get_core_register_section): Remove handling for the case that
2357 regset == NULL and regset_from_core_section is defined.
2358 (get_core_registers): Drop check for deleted method.
2359 * procfs.c (procfs_do_thread_registers): Adjust comment.
2360
2361 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2362
2363 * linux-nat.c (linux_nat_collect_thread_registers): Remove.
2364 (linux_nat_make_corefile_notes): Remove.
2365 (linux_target_install_ops): Do not set target method
2366 'make_corefile_notes'.
2367 * linux-tdep.c (struct linux_corefile_thread_data)<collect>:
2368 Remove field.
2369 (linux_corefile_thread_callback): Instead of args->collect, call
2370 linux_collect_thread_registers.
2371 (linux_make_corefile_notes): Remove 'collect' parameter. Return
2372 NULL unless there is a regset iterator.
2373 (linux_make_corefile_notes_1): Remove.
2374 (linux_init_abi): Replace reference to linux_make_corefile_notes_1
2375 by linux_make_corefile_notes.
2376 * linux-tdep.h (linux_make_corefile_notes): Remove prototype.
2377
2378 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2379
2380 * fbsd-nat.c (find_signalled_thread, find_stop_signal)
2381 (fbsd_collect_regset_section_cb, fbsd_make_corefile_notes):
2382 Remove.
2383 * fbsd-nat.h (fbsd_make_corefile_notes): Remove prototype.
2384
2385 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2386
2387 * xtensa-tdep.c (xtensa_regset_from_core_section): Remove.
2388 (xtensa_iterate_over_regset_sections): New.
2389 (xtensa_gdbarch_init): Adjust gdbarch initialization.
2390
2391 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2392
2393 * vax-tdep.c (vax_regset_from_core_section): Remove.
2394 (vax_iterate_over_regset_sections): New.
2395 (vax_gdbarch_init): Adjust gdbarch initialization.
2396
2397 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2398
2399 * tilegx-linux-tdep.c (TILEGX_LINUX_SIZEOF_GREGSET): New macro.
2400 (tilegx_regset_from_core_section): Remove.
2401 (tilegx_iterate_over_regset_sections): New.
2402 (tilegx_linux_init_abi): Adjust gdbarch initialization.
2403
2404 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2405
2406 * sparc-tdep.c (sparc_regset_from_core_section): Remove.
2407 (sparc_iterate_over_regset_sections): New.
2408 (sparc32_gdbarch_init): Adjust gdbarch initialization.
2409 * configure.tgt (gdb_target_obs): Add fbsd-tdep.o for SPARC FreeBSD
2410 targets.
2411 * sparc64fbsd-tdep.c (fbsd-tdep.h): Include.
2412 (sparc64fbsd_init_abi): Call fbsd_init_abi.
2413 * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Do not set
2414 target method 'make_corefile_notes'.
2415
2416 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2417
2418 * sh-linux-tdep.c (sh_linux_init_abi): Set tdep fields
2419 'sizeof_gregset' and 'sizeof_fpregset'.
2420 * sh-tdep.c (sh_regset_from_core_section): Remove.
2421 (sh_iterate_over_regset_sections): New.
2422 (sh_gdbarch_init): Adjust gdbarch initialization.
2423 * sh-tdep.h (struct gdbarch_tdep): New fields sizeof_gregset and
2424 sizeof_fpregset.
2425 * shnbsd-tdep.c (shnbsd_init_abi): Set tdep field
2426 'sizeof_gregset'.
2427
2428 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2429
2430 * score-tdep.c (score7_linux_regset_from_core_section): Remove.
2431 (score7_linux_iterate_over_regset_sections): New.
2432 (score_gdbarch_init): Adjust gdbarch initialization.
2433
2434 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2435
2436 * configure.tgt (gdb_target_obs): Add fbsd-tdep.o for PowerPC
2437 FreeBSD targets.
2438 * ppcfbsd-nat.c (_initialize_ppcfbsd_nat): Do not set target
2439 method 'make_corefile_notes'.
2440 * ppcfbsd-tdep.c (fbsd-tdep.h): Include.
2441 (ppcfbsd_regset_from_core_section): Remove.
2442 (ppcfbsd_iterate_over_regset_sections): New.
2443 (ppcfbsd_init_abi): Call fbsd_init_abi. Adjust gdbarch
2444 initialization.
2445 * ppcnbsd-tdep.c (ppcnbsd_regset_from_core_section): Remove.
2446 (ppcnbsd_iterate_over_regset_sections): New.
2447 (ppcnbsd_init_abi): Adjust.
2448 * ppcobsd-tdep.c (ppcobsd_regset_from_core_section): Remove.
2449 (ppcobsd_iterate_over_regset_sections): New.
2450 (ppcobsd_init_abi): Adjust.
2451 * rs6000-aix-tdep.c (rs6000_aix_regset_from_core_section): Remove.
2452 (rs6000_aix_iterate_over_regset_sections): New.
2453 (rs6000_aix_init_osabi): Adjust.
2454
2455 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2456
2457 * nios2-linux-tdep.c (NIOS2_GREGS_SIZE): New macro.
2458 (nios2_regset_from_core_section): Remove.
2459 (nios2_iterate_over_regset_sections): New.
2460 (nios2_linux_init_abi): Adjust gdbarch initialization.
2461
2462 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2463
2464 * mn10300-linux-tdep.c (am33_regset_from_core_section): Remove.
2465 (am33_iterate_over_regset_sections): New.
2466 (am33_linux_init_osabi): Adjust gdbarch initialization.
2467
2468 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2469
2470 * mips-linux-tdep.c (mips_linux_regset_from_core_section): Remove.
2471 (mips_linux_iterate_over_regset_sections): New.
2472 (mips_linux_init_abi): Adjust gdbarch initialization.
2473 * mips64obsd-tdep.c (mips64obsd_regset_from_core_section): Remove.
2474 (mips64obsd_iterate_over_regset_sections): New.
2475 (mips64obsd_init_abi): Adjust.
2476 * mipsnbsd-tdep.c (mipsnbsd_regset_from_core_section): Remove.
2477 (mipsnbsd_iterate_over_regset_sections): New.
2478 (mipsnbsd_init_abi): Adjust.
2479
2480 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2481
2482 * m88k-tdep.c (m88k_regset_from_core_section): Remove.
2483 (m88k_iterate_over_regset_sections): New.
2484 (m88k_gdbarch_init): Adjust gdbarch initialization.
2485
2486 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2487
2488 * ia64-linux-tdep.c (ia64_linux_regset_from_core_section): Remove.
2489 (ia64_linux_iterate_over_regset_sections): New.
2490 (ia64_linux_init_abi): Adjust gdbarch initialization.
2491
2492 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2493
2494 * m68kbsd-tdep.c (m68kbsd_regset_from_core_section): Remove.
2495 (m68kbsd_iterate_over_regset_sections): New.
2496 (m68kbsd_init_abi): Adjust gdbarch initialization.
2497 * m68klinux-tdep.c (m68k_linux_regset_from_core_section): Remove.
2498 (m68k_linux_iterate_over_regset_sections): New.
2499 (m68k_linux_init_abi): Adjust gdbarch initialization.
2500
2501 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2502
2503 * m32r-linux-tdep.c (M32R_LINUX_GREGS_SIZE): New macro.
2504 (m32r_linux_regset_from_core_section): Remove.
2505 (m32r_linux_iterate_over_regset_sections): New.
2506 (m32r_linux_init_abi): Adjust gdbarch initialization.
2507
2508 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2509
2510 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Remove.
2511 (amd64obsd_iterate_over_regset_sections): New.
2512 (amd64obsd_core_init_abi): Adjust gdbarch initialization.
2513 * i386-cygwin-tdep.c (i386_windows_regset_from_core_section):
2514 Remove.
2515 (i386_cygwin_init_abi): Clear tdep->sizeof_fpregset. Drop
2516 regset_from_core_section initialization.
2517 * i386-tdep.c (i386_regset_from_core_section): Remove.
2518 (i386_iterate_over_regset_sections): New.
2519 (i386_gdbarch_init): Adjust gdbarch initialization.
2520 * i386-tdep.h (i386_regset_from_core_section): Remove prototype.
2521 (i386_iterate_over_regset_sections): New prototype.
2522 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section):
2523 Remove.
2524 (i386obsd_aout_iterate_over_regset_sections): New.
2525 (i386obsd_aout_init_abi): Adjust gdbarch initialization.
2526 * configure.tgt (gdb_target_obs): Add fbsd-tdep.o for all x86 FreeBSD
2527 targets.
2528 * amd64fbsd-tdep.c (fbsd-tdep.h): Include.
2529 (amd64fbsd_init_abi): Call fbsd_init_abi.
2530 * i386fbsd-tdep.c (fbsd-tdep.h): Include.
2531 (i386fbsd4_init_abi): Call fbsd_init_abi.
2532 * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): No longer set
2533 target method 'make_corefile_notes'.
2534 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Likewise.
2535
2536 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2537
2538 * hppa-hpux-tdep.c (hppa_hpux_regset_from_core_section): Remove.
2539 (hppa_hpux_iterate_over_regset_sections): New.
2540 (hppa_hpux_init_abi): Adjust gdbarch initialization.
2541 * hppa-linux-tdep.c (hppa_linux_regset_from_core_section): Remove.
2542 (hppa_linux_iterate_over_regset_sections): New.
2543 (hppa_linux_init_abi): Adjust.
2544 * hppanbsd-tdep.c (hppaobsd_regset_from_core_section): Remove.
2545 (hppanbsd_iterate_over_regset_sections): New.
2546 (hppanbsd_init_abi): Adjust.
2547 * hppaobsd-tdep.c (hppaobsd_regset_from_core_section): Remove.
2548 (hppaobsd_iterate_over_regset_sections): New.
2549 (hppaobsd_init_abi): Adjust.
2550
2551 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2552
2553 * frv-linux-tdep.c (frv_linux_regset_from_core_section): Remove.
2554 (frv_linux_iterate_over_regset_sections): New.
2555 (frv_linux_init_abi): Adjust gdbarch initialization.
2556
2557 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2558
2559 * arm-tdep.h (armbsd_regset_from_core_section): Remove prototype.
2560 (armbsd_iterate_over_regset_sections): New prototype.
2561 * armbsd-tdep.c (armbsd_regset_from_core_section): Remove.
2562 (armbsd_iterate_over_regset_sections): New.
2563 * armobsd-tdep.c (armobsd_init_abi): Adjust gdbarch
2564 initialization.
2565
2566 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2567
2568 * alpha-linux-tdep.c (alpha_linux_regset_from_core_section): Remove.
2569 (alpha_linux_iterate_over_regset_sections): New.
2570 (alpha_linux_init_abi): Adjust gdbarch initialization.
2571 * alphabsd-tdep.h (alphanbsd_regset_from_core_section): Remove
2572 prototype.
2573 (alphanbsd_iterate_over_regset_sections): New prototype.
2574
2575 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2576
2577 * aarch64-linux-tdep.c (aarch64_linux_regset_from_core_section):
2578 Remove.
2579 (aarch64_linux_iterate_over_regset_sections): New.
2580 (aarch64_linux_init_abi): Adjust gdbarch initialization.
2581
2582 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2583
2584 * fbsd-tdep.c: New file.
2585 * fbsd-tdep.h: New file.
2586 * Makefile.in (ALL_TARGET_OBS): Add fbsd-tdep.o.
2587 (HFILES_NO_SRCDIR): Add fbsd-tdep.h.
2588 (ALLDEPFILES): Add fbsd-tdep.c.
2589
2590 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2591
2592 * gdbarch.sh (iterate_over_regset_sections_cb): Add regset
2593 parameter.
2594 * gdbarch.h: Regenerate.
2595 * corelow.c (sniff_core_bfd): Don't sniff if gdbarch has a regset
2596 iterator.
2597 (get_core_register_section): Add parameter 'regset' and use it, if
2598 set. Add parameter 'min_size' and verify the bfd section size
2599 against it.
2600 (get_core_registers_cb): Add parameter 'regset' and pass it to
2601 get_core_register section. For the "standard" register sections
2602 ".reg" and ".reg2", set an appropriate default for human_name.
2603 (get_core_registers): Don't abort when the gdbarch has an iterator
2604 but no regset_from_core_section. Add NULL/0 for parameters
2605 'regset'/'min_size' in calls to get_core_register_section.
2606 * linux-tdep.c (linux_collect_regset_section_cb): Add parameter
2607 'regset' and use it instead of calling the
2608 regset_from_core_section gdbarch method.
2609 * i386-tdep.h (struct gdbarch_tdep): Add field 'fpregset'.
2610 * i386-tdep.c (i386_supply_xstateregset)
2611 (i386_collect_xstateregset, i386_xstateregset): Moved to
2612 i386-linux-tdep.c.
2613 (i386_regset_from_core_section): Drop handling for .reg-xfp and
2614 .reg-xstate.
2615 (i386_gdbarch_init): Set tdep field 'fpregset'. Enable generic
2616 core file support only if the regset iterator hasn't been set.
2617 * i386-linux-tdep.c (i386_linux_supply_xstateregset)
2618 (i386_linux_collect_xstateregset, i386_linux_xstateregset): New.
2619 Moved from i386-tdep.c and renamed to *_linux*.
2620 (i386_linux_iterate_over_regset_sections): Add regset parameter to
2621 each callback invocation. Allow any .reg-xstate size when reading
2622 from a core file.
2623 * amd64-tdep.c (amd64_supply_xstateregset)
2624 (amd64_collect_xstateregset, amd64_xstateregset): Moved to
2625 amd64-linux-tdep.c.
2626 (amd64_regset_from_core_section): Remove.
2627 (amd64_init_abi): Set new tdep field 'fpregset'. No longer
2628 install an amd64-specific regset_from_core_section gdbarch method.
2629 * amd64-linux-tdep.c (amd64_linux_supply_xstateregset)
2630 (amd64_linux_collect_xstateregset, amd64_linux_xstateregset): New.
2631 Moved from amd64-tdep.c and renamed to *_linux*.
2632 (amd64_linux_iterate_over_regset_sections): Add regset parameter
2633 to each callback invocation. Allow any .reg-xstate size when
2634 reading from a core file.
2635 * arm-linux-tdep.c (arm_linux_regset_from_core_section): Remove.
2636 (arm_linux_iterate_over_regset_sections): Add regset parameter to
2637 each callback invocation.
2638 (arm_linux_init_abi): No longer set the regset_from_core_section
2639 gdbarch method.
2640 * ppc-linux-tdep.c (ppc_linux_regset_from_core_section): Remove.
2641 (ppc_linux_iterate_over_regset_sections): Add regset parameter to
2642 each callback invocation.
2643 (ppc_linux_init_abi): No longer set the regset_from_core_section
2644 gdbarch method.
2645 * s390-linux-tdep.c (struct gdbarch_tdep): Remove the fields
2646 gregset, sizeof_gregset, fpregset, and sizeof_fpregset.
2647 (s390_regset_from_core_section): Remove.
2648 (s390_iterate_over_regset_sections): Add regset parameter to each
2649 callback invocation.
2650 (s390_gdbarch_init): No longer set the regset_from_core_section
2651 gdbarch method. Drop initialization of deleted tdep fields.
2652
2653 2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2654
2655 * amd64-linux-tdep.c (amd64_linux_regset_sections): Remove.
2656 (amd64_linux_iterate_over_regset_sections): New.
2657 (amd64_linux_init_abi_common): Don't install the regset section
2658 list, but the new iterator in gdbarch.
2659 * arm-linux-tdep.c (arm_linux_fpa_regset_sections)
2660 (arm_linux_vfp_regset_sections): Remove. Move combined logic...
2661 (arm_linux_iterate_over_regset_sections): ...here. New function.
2662 (arm_linux_init_abi): Set iterator instead of section list.
2663 * corelow.c (get_core_registers_cb): New function, logic moved
2664 from...
2665 (get_core_registers): ...loop body here. Use new iterator method
2666 instead of walking through the regset section list.
2667 * gdbarch.sh: Remove 'core_regset_sections'. New method
2668 'iterate_over_regset_sections'. New typedef
2669 'iterate_over_regset_sections_cb'.
2670 * gdbarch.c: Regenerate.
2671 * gdbarch.h: Likewise.
2672 * i386-linux-tdep.c (i386_linux_regset_sections)
2673 (i386_linux_sse_regset_sections, i386_linux_avx_regset_sections):
2674 Remove.
2675 (i386_linux_iterate_over_regset_sections): New.
2676 (i386_linux_init_abi): Don't choose a regset section list, but
2677 install new iterator in gdbarch.
2678 * linux-tdep.c (struct linux_collect_regset_section_cb_data): New.
2679 (linux_collect_regset_section_cb): New function, logic moved
2680 from...
2681 (linux_collect_thread_registers): ...loop body here. Use iterator
2682 method instead of walking through list.
2683 (linux_make_corefile_notes_1): Check for presence of iterator
2684 method instead of regset section list.
2685 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections)
2686 (ppc_linux_vmx_regset_sections, ppc_linux_fp_regset_sections)
2687 (ppc64_linux_vsx_regset_sections, ppc64_linux_vmx_regset_sections)
2688 (ppc64_linux_fp_regset_sections): Remove. Move combined logic...
2689 (ppc_linux_iterate_over_regset_sections): ...here. New function.
2690 (ppc_linux_init_abi): Don't choose from above regset section
2691 lists, but install new iterator in gdbarch.
2692 * regset.h (struct core_regset_section): Remove.
2693 * s390-linux-tdep.c (struct gdbarch_tdep): Add new fields
2694 have_linux_v1, have_linux_v2, and have_tdb.
2695 (s390_linux32_regset_sections, s390_linux32v1_regset_sections)
2696 (s390_linux32v2_regset_sections, s390_linux64_regset_sections)
2697 (s390_linux64v1_regset_sections, s390_linux64v2_regset_sections)
2698 (s390x_linux64_regset_sections, s390x_linux64v1_regset_sections)
2699 (s390x_linux64v2_regset_sections): Remove. Move combined logic...
2700 (s390_iterate_over_regset_sections): ...here. New function. Use
2701 new tdep fields.
2702 (s390_gdbarch_init): Set new tdep fields. Don't choose from above
2703 regset section lists, but install new iterator.
2704
2705 2014-09-29 Jan Kratochvil <jan.kratochvil@redhat.com>
2706
2707 * solib-svr4.c (svr4_parse_libraries): Use "library-list-svr4.dtd".
2708
2709 2014-09-26 Simon Marchi <simon.marchi@ericsson.com>
2710
2711 * progspace.c (print_program_space): Don't prune program spaces
2712 before printing them.
2713
2714 2014-09-25 Pedro Alves <palves@redhat.com>
2715
2716 * infrun.c (user_visible_resume_ptid): Don't check
2717 singlestep_breakpoints_inserted_p.
2718
2719 2014-09-25 Pedro Alves <palves@redhat.com>
2720
2721 * breakpoint.c (should_be_inserted): Add debug output.
2722
2723 2014-09-25 Pedro Alves <palves@redhat.com>
2724
2725 * infrun.c (stepping_past_instruction_at)
2726 (clear_exit_convenience_vars): Point at infrun.h instead of
2727 inferior.h.
2728 (handle_signal_stop): Fix typo.
2729
2730 2014-09-24 Yao Qi <yao@codesourcery.com>
2731
2732 * arm-tdep.c (thumb_in_function_epilogue_p): Fix typo in the
2733 bitmask.
2734
2735 2014-09-22 Gary Benson <gbenson@redhat.com>
2736
2737 * target.c (target_stop): Updated comment.
2738
2739 2014-09-22 Gary Benson <gbenson@redhat.com>
2740
2741 * target/target.h (target_stop_ptid): Renamed as...
2742 (target_stop_and_wait): New function. Updated comment.
2743 All uses updated.
2744 (target_continue_ptid): Renamed as...
2745 (target_continue_no_signal): New function. Updated comment.
2746 All uses updated.
2747
2748 2014-09-22 Pedro Alves <palves@redhat.com>
2749
2750 * NEWS: Mention merge of "breakpoint always-inserted" modes "off"
2751 and "auto" merged.
2752 * breakpoint.c (enum ugll_insert_mode): New enum.
2753 (always_inserted_mode): Now a plain boolean.
2754 (show_always_inserted_mode): No longer handle AUTO_BOOLEAN_AUTO.
2755 (breakpoints_always_inserted_mode): Delete.
2756 (breakpoints_should_be_inserted_now): New function.
2757 (insert_breakpoints): Pass UGLL_INSERT to
2758 update_global_location_list instead of calling
2759 insert_breakpoint_locations manually.
2760 (create_solib_event_breakpoint_1): New, factored out from ...
2761 (create_solib_event_breakpoint): ... this.
2762 (create_and_insert_solib_event_breakpoint): Use
2763 create_solib_event_breakpoint_1 instead of calling
2764 insert_breakpoint_locations manually.
2765 (update_global_location_list): Change parameter type from boolean
2766 to enum ugll_insert_mode. All callers adjusted. Adjust to use
2767 breakpoints_should_be_inserted_now and handle UGLL_INSERT.
2768 (update_global_location_list_nothrow): Change parameter type from
2769 boolean to enum ugll_insert_mode.
2770 (_initialize_breakpoint): "breakpoint always-inserted" option is
2771 now a boolean command. Update help text.
2772 * breakpoint.h (breakpoints_always_inserted_mode): Delete declaration.
2773 (breakpoints_should_be_inserted_now): New declaration.
2774 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>:
2775 Remove breakpoints_always_inserted_mode check.
2776 (normal_stop): Adjust to use breakpoints_should_be_inserted_now.
2777 * remote.c (remote_start_remote): Likewise.
2778
2779 2014-09-22 Pedro Alves <palves@redhat.com>
2780
2781 * breakpoint.c (enum ugll_insert_mode): Add UGLL_INSERT.
2782 (insert_breakpoints): Don't call insert_breakpoint_locations here.
2783 Instead, pass UGLL_INSERT to update_global_location_list.
2784 (update_global_location_list): Change parameter type from boolean
2785 to enum ugll_insert_mode. All callers adjusted. Adjust to use
2786 breakpoints_should_be_inserted_now and handle UGLL_INSERT.
2787 (create_solib_event_breakpoint_1): New, factored out from ...
2788 (create_solib_event_breakpoint): ... this.
2789 (create_and_insert_solib_event_breakpoint): Use
2790 create_solib_event_breakpoint_1 instead of calling
2791 insert_breakpoint_locations manually.
2792 (update_global_location_list): Handle UGLL_INSERT.
2793
2794 2014-09-22 Pedro Alves <palves@redhat.com>
2795
2796 * breakpoint.c (enum ugll_insert_mode): New enum.
2797 (update_global_location_list)
2798 (update_global_location_list_nothrow): Change parameter type from
2799 boolean to enum ugll_insert_mode. All callers adjusted.
2800
2801 2014-09-19 Joel Brobecker <brobecker@adacore.com>
2802
2803 * MAINTAINERS: Add Sergio Durigan Junior as maintainer of
2804 SystemTap support in GDB.
2805
2806 2014-09-19 Don Breazeal <donb@codesourcery.com>
2807
2808 * linux-nat.c (linux_handle_extended_wait): Call
2809 linux_ptrace_get_extended_event.
2810 (wait_lwp): Call linux_is_extended_waitstatus.
2811 (linux_nat_filter_event): Call linux_ptrace_get_extended_event
2812 and linux_is_extended_waitstatus.
2813 * nat/linux-ptrace.c (linux_test_for_tracefork): Call
2814 linux_ptrace_get_extended_event.
2815 (linux_ptrace_get_extended_event): New function.
2816 (linux_is_extended_waitstatus): New function.
2817 * nat/linux-ptrace.h (linux_ptrace_get_extended_event)
2818 (linux_is_extended_waitstatus): New declarations.
2819
2820 2014-09-19 Yao Qi <yao@codesourcery.com>
2821
2822 * dwarf2read.c (dwarf_decode_lines): Update declaration.
2823 (handle_DW_AT_stmt_list): Add argument 'lowpc'. Update
2824 comments. Callers update.
2825 (dwarf_decode_lines): Likewise.
2826 (dwarf_decode_lines_1): Add argument 'lowpc'. Update
2827 comments. Skip the line table if 'lowpc' is greater than
2828 'address'. Don't check
2829 dwarf2_per_objfile->has_section_at_zero.
2830
2831 2014-09-18 Doug Evans <dje@google.com>
2832
2833 * NEWS: Mention new "producer" attribute of gdb.Symtab.
2834 * python/py-symtab.c (stpy_get_producer): New function.
2835 (symtab_object_getset): Add "producer" attribute.
2836
2837 2014-09-17 Ulrich Weigand  <uweigand@de.ibm.com>
2838
2839 PR gdb/17384
2840 * corefile.c (struct captured_read_memory_integer_arguments): Remove.
2841 (do_captured_read_memory_integer): Remove.
2842 (safe_read_memory_integer): Use target_read_memory directly instead
2843 of catching errors in do_captured_read_memory_integer.
2844
2845 2014-09-16 Maciej W. Rozycki <macro@codesourcery.com>
2846
2847 * CONTRIBUTE (Coding Standards): For internals refer to wiki,
2848 not gdb/doc.
2849
2850 2014-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
2851
2852 * objc-lang.c (find_implementation_from_class): Remove dead code.
2853
2854 2014-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
2855
2856 PR cli/7233
2857 * linux-nat.c (linux_nat_wait_1): Replace "fprintf (stderr..." by
2858 "fprintf_unfiltered (gdb_stdlog...)".
2859
2860 2014-09-16 Patrick Palka <patrick@parcs.ath.cx>
2861
2862 PR breakpoints/12526
2863 * breakpoint.h (struct watchpoint): New fields val_bitpos and
2864 val_bitsize.
2865 * breakpoint.c (watch_command_1): Use these fields to retain
2866 bitfield information.
2867 (extract_bitfield_from_watchpoint_value): New function.
2868 (watchpoint_check): Use it.
2869 (update_watchpoint): Use it. Optimize the address and length of a
2870 HW watchpoint pointing to a bitfield.
2871 * value.h (unpack_value_bitfield): New prototype.
2872 * value.c (unpack_value_bitfield): Make extern.
2873
2874 2014-09-16 Samuel Thibault <samuel.thibault@ens-lyon.org>
2875
2876 * config/i386/i386gnu.mh (NATDEPFILES): Add x86-nat.o and
2877 x86-dregs.o.
2878 * gnu-nat.c (inf_threads): New function.
2879 * gnu-nat.h (inf_threads_ftype): New typedef.
2880 (inf_threads): New declaration.
2881 * i386gnu-nat.c: Include "x86-nat.h" and "inf-child.h".
2882 [i386_DEBUG_STATE] (i386_gnu_dr_get, i386_gnu_dr_set)
2883 (i386_gnu_dr_set_control_one, i386_gnu_dr_set_control)
2884 (i386_gnu_dr_set_addr_one, i386_gnu_dr_set_addr)
2885 (i386_gnu_dr_get_reg, i386_gnu_dr_get_addr, 386_gnu_dr_get_status)
2886 (i386_gnu_dr_get_control): New functions.
2887 (reg_addr): New structure.
2888 (_initialize_i386gnu_nat) [i386_DEBUG_STATE]: Initialize hardware
2889 i386 debugging register hooks.
2890 * NEWS: Mention this.
2891
2892 2014-08-13 Omair Javaid <omair.javaid@linaro.org>
2893
2894 * arm-tdep.c (arm_record_vdata_transfer_insn): Added record handler for
2895 vector data transfer instructions.
2896 (arm_record_coproc_data_proc): Updated.
2897
2898 2014-08-13 Omair Javaid <omair.javaid@linaro.org>
2899
2900 * arm-tdep.c (arm_record_asimd_vfp_coproc): Replace stub handler with
2901 arm_record_exreg_ld_st_insn.
2902 (arm_record_exreg_ld_st_insn): Add record handler for ex-register
2903 load/store insns.
2904
2905 2014-08-13 Omair Javaid <omair.javaid@linaro.org>
2906
2907 * arm-tdep.c (arm_record_coproc_data_proc): Updated.
2908 (arm_record_vfp_data_proc_insn): Added record handler for VFP data
2909 processing instructions.
2910
2911 2014-08-13 Omair Javaid <omair.javaid@linaro.org>
2912
2913 * arm-tdep.c (thumb2_record_asimd_struct_ld_st): Add record handler
2914 for advance SIMD struct ld/st insn.
2915 (thumb2_record_decode_insn_handler): Replace stub handler with
2916 thumb2_record_asimd_struct_ld_st.
2917
2918 2014-08-13 Omair Javaid <omair.javaid@linaro.org>
2919
2920 * arm-tdep.c (arm_record_coproc_data_proc): Add record handler stubs
2921 for asimd, vfp and coprocessor insns.
2922 (arm_record_asimd_vfp_coproc): Add record handler for asimd, vfp
2923 and coprocessor insns.
2924 (thumb2_record_coproc_insn): New function.
2925 (thumb2_record_decode_insn_handler): Update coprocessor insns record
2926 handlers.
2927 (decode_insn): Install arm_record_asimd_vfp_coproc as handler for
2928 opcode 110 insns.
2929
2930 2014-09-13 Doug Evans <xdje42@gmail.com>
2931
2932 * NEWS: Mention new "queue-signal" command.
2933 * infcmd.c (queue_signal_command): New function.
2934 (_initialize_infcmd): Add new queue-signal command.
2935
2936 2014-09-13 Doug Evans <xdje42@gmail.com>
2937
2938 * linux-nat.c (wait_lwp): Add debugging printf.
2939 (linux_nat_wait_1): Ditto.
2940
2941 2014-09-12 Pedro Alves <palves@redhat.com>
2942
2943 * breakpoint.c (remove_solib_event_breakpoints_at_next_stop)
2944 (create_and_insert_solib_event_breakpoint): New functions.
2945 * breakpoint.h (create_and_insert_solib_event_breakpoint)
2946 (remove_solib_event_breakpoints_at_next_stop): New declarations.
2947 * procfs.c (dbx_link_bpt_addr, dbx_link_bpt): Delete globals.
2948 (remove_dbx_link_breakpoint): Delete function.
2949 (insert_dbx_link_bpt_in_file): Use
2950 create_and_insert_solib_event_breakpoint instead of
2951 deprecated_insert_raw_breakpoint.
2952 (procfs_wait): Don't check whether we hit __dbx_link here.
2953 (procfs_mourn_inferior): Don't delete the __dbx_link breakpoint
2954 here.
2955 * solib-irix.c (base_breakpoint): Delete global.
2956 (disable_break): Delete function.
2957 (enable_break): Use create_solib_event_breakpoint
2958 instead of deprecated_insert_raw_breakpoint.
2959 (irix_solib_handle_event): New function.
2960 (irix_solib_create_inferior_hook): Don't run the target or disable
2961 the mapping-complete breakpoint here.
2962 (_initialize_irix_solib): Install irix_solib_handle_event as
2963 so_ops->handle_event hook.
2964
2965 2014-09-12 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
2966 Ulrich Weigand  <uweigand@de.ibm.com>
2967
2968 PR tdep/17379
2969 * rs6000-tdep.c (rs6000_frame_cache): Use safe_read_memory_integer
2970 instead of read_memory_unsigned_integer.
2971
2972 2014-09-12 Gary Benson <gbenson@redhat.com>
2973
2974 * nat/linux-waitpid.c: Include common-defs.h.
2975 [GDBSERVER]: Add FIXME comment.
2976 [!GDBSERVER]: Don't include defs.h or signal.h.
2977 (linux_debug) [!GDBSERVER]: Remove empty block.
2978
2979 2014-09-12 Gary Benson <gbenson@redhat.com>
2980
2981 * nat/x86-dregs.c: Include common-defs.h and break-common.h.
2982 Don't include defs.h or server.h.
2983
2984 2014-09-12 Gary Benson <gbenson@redhat.com>
2985
2986 * nat/linux-btrace.c: Include common-defs.h.
2987 Don't include defs.h, server.h or gdbthread.h.
2988 * nat/linux-btrace.h (struct target_ops): New forward declaration.
2989
2990 2014-09-12 Gary Benson <gbenson@redhat.com>
2991
2992 * common/agent.c: Include common-defs.h.
2993 Don't include defs.h or server.h.
2994 * common/buffer.c: Likewise.
2995 * common/common-debug.c: Likewise.
2996 * common/common-utils.c: Likewise.
2997 * common/errors.c: Likewise.
2998 * common/filestuff.c: Likewise.
2999 * common/format.c: Likewise.
3000 * common/gdb_vecs.c: Likewise.
3001 * common/print-utils.c: Likewise.
3002 * common/ptid.c: Likewise.
3003 * common/rsp-low.c: Likewise.
3004 * common/signals.c: Likewise.
3005 * common/vec.c: Likewise.
3006 * common/xml-utils.c: Likewise.
3007 * nat/linux-osdata.c: Likewise.
3008 * nat/linux-procfs.c: Likewise.
3009 * nat/linux-ptrace.c: Likewise.
3010 * nat/mips-linux-watch.c: Likewise.
3011 * target/waitstatus.c: Likewise.
3012
3013 2014-09-12 Tom Tromey <tromey@redhat.com>
3014 Gary Benson <gbenson@redhat.com>
3015
3016 * common/common-regcache.h: New file.
3017 * Makefile.in (HFILES_NO_SRCDIR): Add common/common-regcache.h.
3018 * regcache.h: Include common-regcache.h.
3019 (regcache_read_pc): Don't declare.
3020 * regcache.c (get_thread_regcache_for_ptid): New function.
3021 * nat/linux-btrace.c: Don't include regcache.h.
3022 Include common-regcache.h.
3023 (perf_event_read_bts): Use get_thread_regcache_for_ptid.
3024
3025 2014-09-11 Thomas Schwinge <thomas@codesourcery.com>
3026
3027 * regcache.h (struct regset): Declare.
3028
3029 2014-09-11 Pedro Alves <palves@redhat.com>
3030
3031 PR gdb/17347
3032 * main.c: Include "infrun.h".
3033 (catch_command_errors, catch_command_errors_const): Wait for the
3034 foreground command to complete.
3035 * top.c (maybe_wait_sync_command_done): New function, factored out
3036 from ...
3037 (maybe_wait_sync_command_done): ... here.
3038 * top.h (maybe_wait_sync_command_done): New declaration.
3039
3040 2014-09-11 Tom Tromey <tromey@redhat.com>
3041 Gary Benson <gbenson@redhat.com>
3042
3043 * common/symbol.h: New file.
3044 * Makefile.in (HFILES_NO_SRCDIR): Add common/symbol.h.
3045 * minsyms.c (find_minimal_symbol_address): New function.
3046 * common/agent.c: Include common/symbol.h.
3047 [!GDBSERVER]: Don't include objfiles.h.
3048 (agent_look_up_symbols): Use find_minimal_symbol_address.
3049
3050 2014-09-11 Gary Benson <gbenson@redhat.com>
3051
3052 * target/target.h (target_stop_ptid, target_continue_ptid):
3053 Declare.
3054 * target.c (target_stop_ptid, target_continue_ptid): New
3055 functions.
3056 * common/agent.c [!GDBSERVER]: Don't include infrun.h.
3057 (agent_run_command): Always use target_stop_ptid and
3058 target_continue_ptid.
3059
3060 2014-09-11 Tom Tromey <tromey@redhat.com>
3061 Gary Benson <gbenson@redhat.com>
3062
3063 * target/target.h: New file.
3064 * Makefile.in (HFILES_NO_SRCDIR): Add target/target.h.
3065 * target.h: Include target/target.h.
3066 (target_read_memory, target_write_memory): Don't declare.
3067 * target.c (target_read_uint32): New function.
3068 * common/agent.c: Include target/target.h.
3069 [!GDBSERVER]: Don't include target.h.
3070 (helper_thread_id): Type changed to uint32_t.
3071 (agent_get_helper_thread_id): Use target_read_uint32.
3072 (agent_run_command): Always use target_read_memory and
3073 target_write_memory.
3074 (agent_capability): Type changed to uint32_t.
3075 (agent_capability_check): Use target_read_uint32.
3076
3077 2014-09-11 Gary Benson <gbenson@redhat.com>
3078
3079 * common/common-debug.h (show_debug_regs): Declare.
3080 * common/common-debug.c (show_debug_regs): Define.
3081 * aarch64-linux-nat.c (debug_hw_points): Don't define. Replace
3082 all uses with show_debug_regs. Replace all uses that considered
3083 debug_hw_points as a multi-value integer with straight boolean
3084 uses.
3085 * x86-nat.c (debug_hw_points): Don't define. Replace all uses
3086 with show_debug_regs.
3087 * nat/x86-dregs.c (debug_hw_points): Don't declare. Replace
3088 all uses with show_debug_regs.
3089 * mips-linux-nat.c (maint_show_dr): Don't define. Replace all
3090 uses with show_debug_regs.
3091
3092 2014-09-10 Ulrich Weigand  <uweigand@de.ibm.com>
3093
3094 * findvar.c (address_from_register): Handle targets requiring
3095 a special conversion routine even for plain pointer types.
3096
3097 2014-09-10 Ulrich Weigand  <uweigand@de.ibm.com>
3098
3099 * rs6000-nat.c (exec_one_dummy_insn): Remove.
3100 (store_register): Do not call exec_one_dummy_insn.
3101
3102 2014-09-10 Joel Brobecker <brobecker@adacore.com>
3103
3104 * ada-lang.c (ada_array_bound): If ARR is a TYPE_CODE_PTR,
3105 dereference it first. Use value_enclosing_type instead of
3106 value_type.
3107 (ada_array_length): Likewise.
3108
3109 2014-09-10 Joel Brobecker <brobecker@adacore.com>
3110
3111 * ada-lang.c (ada_value_ptr_subscript): Remove parameter "type".
3112 Adjust function implementation and documentation accordingly.
3113 (ada_evaluate_subexp) <OP_FUNCALL>: Only assign "type" if
3114 NOSIDE is EVAL_AVOID_SIDE_EFFECTS.
3115 Update call to ada_value_ptr_subscript.
3116
3117 2014-09-10 Joel Brobecker <brobecker@adacore.com>
3118
3119 * ada-valprint.c (ada_value_print): Use VAL's enclosing type
3120 instead of VAL's type.
3121
3122 2014-09-10 Joel Brobecker <brobecker@adacore.com>
3123
3124 * amd64-linux-nat.c: Add <sys/uio.h> #include.
3125
3126 2014-09-09 Doug Evans <xdje42@gmail.com>
3127
3128 PR guile/17367
3129 * acinclude.m4 (GDB_GUILE_PROGRAM_NAMES): Pass guile version as
3130 last parameter to pkg-config, not first.
3131 * configure.ac: Pass --with-guile provided pkg-config path to
3132 GDB_GUILE_PROGRAM_NAMES.
3133 * configure: Regenerate.
3134
3135 2014-09-09 Gabriel Krisman Bertazi <gabriel@krisman.be>
3136
3137 * MAINTAINERS (Write After Approval): Add "Gabriel Krisman
3138 Bertazi".
3139
3140 2014-09-09 Maciej W. Rozycki <macro@codesourcery.com>
3141
3142 * mips-irix-tdep.c (mips_irix_elf_osabi_sniff_abi_tag_sections):
3143 Exclude `.MIPS.abiflags', `.MIPS.options' and `.MIPS.stubs' from
3144 the list of sections determining GDB_OSABI_IRIX.
3145
3146 2014-09-09 James Hogan <james.hogan@imgtec.com>
3147
3148 * MAINTAINERS (Write After Approval): Add "James Hogan".
3149
3150 2014-09-09 James Hogan <james.hogan@imgtec.com>
3151
3152 * trad-frame.h (trad_frame_set_reg_unknown): Remove declaration.
3153
3154 2014-09-09 Joel Brobecker <brobecker@adacore.com>
3155
3156 * i386-linux-nat.c, x86-linux-nat.c: Add <sys/uio.h> #include.
3157
3158 2014-09-08 Doug Evans <xdje42@gmail.com>
3159
3160 PR 17247
3161 * guile.c: #include <signal.h>.
3162 (_initialize_guile): Block SIGCHLD while initializing Guile.
3163
3164 Replaces the following, which is reverted.
3165
3166 2014-07-26 Doug Evans <xdje42@gmail.com>
3167
3168 PR 17185
3169 * configure.ac: Add check for header gc/gc.h.
3170 Add check for function setenv.
3171 * configure: Regenerate.
3172 * config.in: Regenerate.
3173 * guile/guile.c (_initialize_guile): Add workaround for libgc 7.4.0.
3174
3175 2014-09-08 Doug Evans <xdje42@gmail.com>
3176
3177 * guile/scm-cmd.c (gdbscm_parse_command_name): Replace magic number
3178 with named constant. Fix style of pointer comparison.
3179 * python/py-cmd.c (gdbpy_parse_command_name): Ditto.
3180
3181 2014-09-07 Gabriel Krisman Bertazi <gabriel@krisman.be>
3182
3183 PR gdb/17035
3184 * cli/cli-cmds.c (show_user): Use cli_user_command_p to
3185 decide whether we display the command on "show user".
3186 * cli/cli-script.c (show_user_1): Only verify cmdlines after
3187 printing command name.
3188 * cli/cli-decode.h (cli_user_command_p): Declare new function.
3189 * cli/cli-decode.c (cli_user_command_p): Create helper function
3190 to verify whether cmd_list_element is a user-defined command.
3191
3192 2014-09-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3193
3194 PR python/17355
3195 * python/py-framefilter.c (py_print_single_arg): Handle NULL FA->VAL.
3196 Fix goto out of TRY_CATCH.
3197
3198 2014-09-06 Doug Evans <xdje42@gmail.com>
3199 Tom Tromey <tromey@redhat.com>
3200
3201 PR 15276
3202 * NEWS: Mention $_caller_is, $_caller_matches, $_any_caller_is,
3203 $_any_caller_matches.
3204 * data-directory/Makefile.in (PYTHON_FILE_LIST): Add caller_is.py.
3205 * python/lib/gdb/function/caller_is.py: New file.
3206
3207 2014-09-06 Doug Evans <xdje42@gmail.com>
3208
3209 * infcmd.c (program_info): Fix typo.
3210
3211 2014-09-05 Sergio Durigan Junior <sergiodj@redhat.com>
3212
3213 PR gdb/17235
3214 * stap-probe.c (stap_parse_single_operand): Delete unused variable
3215 'number'. New variable 'has_digit'. Rewrite code to deal with
3216 subexpressions on SDT probes.
3217
3218 2014-09-04 Pedro Alves <palves@redhat.com>
3219
3220 * c-exp.y (parse_number): Skip handling base-switching prefixes if
3221 the input is only one character long.
3222
3223 2014-09-04 Sergio Durigan Junior <sergiodj@redhat.com>
3224
3225 PR fortran/17237
3226 * f-valprint.c (f_val_print): Specify the correct print option to
3227 use when printing integer values.
3228
3229 2014-09-04 Gary Benson <gbenson@redhat.com>
3230
3231 * x86-linux-nat.c (x86_linux_dr_get, x86_linux_dr_set):
3232 Remove code to cope with LWPs wrapped as PIDs.
3233 Add assertions to ensure no wrapped LWPs are passed.
3234
3235 2014-09-04 Pedro Alves <palves@redhat.com>
3236
3237 * value.c (value_ranges_copy_adjusted): New function, factored out
3238 from ...
3239 (value_contents_copy_raw): ... here.
3240 (unpack_value_bits_as_long_1): Rename back to ...
3241 (unpack_bits_as_long): ... this. Remove 'original_value' and
3242 'result' parameters. Change return type to LONGEST.
3243 (unpack_value_bits_as_long): Delete.
3244 (unpack_value_field_as_long_1): Delete.
3245 (unpack_value_field_as_long, unpack_field_as_long): Reimplement.
3246 (unpack_value_bitfield): New function.
3247 (value_field_bitfield): Reimplement using unpack_value_bitfield.
3248 (value_fetch_lazy): Use unpack_value_bitfield.
3249 * value.h (unpack_value_bits_as_long): Delete declaration.
3250
3251 2014-09-03 Sasha Smundak <asmundak@google.com>
3252
3253 * python/py-frame.c (frapy_read_register): New function.
3254
3255 2014-09-03 James Hogan <james.hogan@imgtec.com>
3256
3257 * mips-linux-nat.c (mips_linux_read_description): Reset errno to 0
3258 prior to reading DSP_CONTROL with PTRACE_PEEKUSER ptrace call.
3259
3260 2014-09-03 Sergio Durigan Junior <sergiodj@redhat.com>
3261
3262 PR python/16699
3263 * cli/cli-decode.c (set_cmd_completer_handle_brkchars): New
3264 function.
3265 (add_cmd): Set "completer_handle_brkchars" to NULL.
3266 * cli/cli-decode.h (struct cmd_list_element)
3267 <completer_handle_brkchars>: New field.
3268 * command.h (completer_ftype_void): New typedef.
3269 (set_cmd_completer_handle_brkchars): New prototype.
3270 * completer.c (set_gdb_completion_word_break_characters): New
3271 function.
3272 (complete_line_internal): Call "completer_handle_brkchars"
3273 callback from command.
3274 * completer.h: Include "command.h".
3275 (set_gdb_completion_word_break_characters): New prototype.
3276 * python/py-cmd.c (cmdpy_completer_helper): New function.
3277 (cmdpy_completer_handle_brkchars): New function.
3278 (cmdpy_completer): Adjust to use cmdpy_completer_helper.
3279 (cmdpy_init): Set completer_handle_brkchars to
3280 cmdpy_completer_handle_brkchars.
3281
3282 2014-09-03 Gary Benson <gbenson@redhat.com>
3283
3284 * nat/x86-dregs.h (ALL_DEBUG_REGISTERS): Renamed as...
3285 (ALL_DEBUG_ADDRESS_REGISTERS): New macro. All uses updated.
3286 Loop conditions changed to equivalent form.
3287 (struct x86_debug_reg_state): Updated dr_ref_count comment.
3288 * x86-linux-nat.c (x86_linux_prepare_to_resume): Use
3289 ALL_DEBUG_ADDRESS_REGISTERS.
3290
3291 2014-09-03 Joel Brobecker <brobecker@adacore.com>
3292
3293 * dwarf2loc.h (dwarf2_evaluate_property): Minor function
3294 description fix.
3295
3296 2014-09-02 Doug Evans <dje@google.com>
3297
3298 * typeprint.c (find_global_typedef): Fix comment.
3299
3300 2014-09-02 Gary Benson <gbenson@redhat.com>
3301
3302 * i386-nat.h: Renamed as...
3303 * x86-nat.h: New file. All type, function and variable name
3304 prefixes changed from "i386_" to "x86_". All references updated.
3305 * i386-nat.c: Renamed as...
3306 * x86-nat.c: New file. All type, function and variable name
3307 prefixes changed from "i386_" to "x86_". All references updated.
3308 * common/i386-xstate.h: Renamed as...
3309 * common/x86-xstate.h: New file. All type, function and variable
3310 name prefixes changed from "i386_" to "x86_". All references
3311 updated.
3312 * nat/i386-cpuid.h: Renamed as...
3313 * nat/x86-cpuid.h: New file. All type, function and variable name
3314 prefixes changed from "i386_" to "x86_". All references updated.
3315 * nat/i386-gcc-cpuid.h: Renamed as...
3316 * nat/x86-gcc-cpuid.h: New file. All type, function and variable
3317 name prefixes changed from "i386_" to "x86_". All references
3318 updated.
3319 * nat/i386-dregs.h: Renamed as...
3320 * nat/x86-dregs.h: New file. All type, function and variable name
3321 prefixes changed from "i386_" to "x86_". All references updated.
3322 * nat/i386-dregs.c: Renamed as...
3323 * nat/x86-dregs.c: New file. All type, function and variable name
3324 prefixes changed from "i386_" to "x86_". All references updated.
3325
3326 2014-09-01 Maciej W. Rozycki <macro@codesourcery.com>
3327
3328 * varobj.c (_initialize_varobj): Move to the end of file.
3329
3330 2014-08-29 Gary Benson <gbenson@redhat.com>
3331
3332 * common/common-exceptions.h: New file.
3333 * common/common-exceptions.c: Likewise.
3334 * Makefile.in (SFILES): Add common/common-exceptions.c.
3335 (HFILES_NO_SRCDIR): Add common/common-exceptions.h.
3336 (COMMON_OBS): Add common-exceptions.o.
3337 (common-exceptions.o): New rule.
3338 * exceptions.h (common-exceptions.h): Include.
3339 (gdb_setjmp.h): Do not include.
3340 (return_reason): Moved to common-exceptions.h.
3341 (enum return_reason): Likewise.
3342 (RETURN_MASK): Likewise.
3343 (typedef return_mask): Likewise.
3344 (enum errors): Likewise.
3345 (struct gdb_exception): Likewise.
3346 (exceptions_state_mc_init): Likewise.
3347 (exceptions_state_mc_action_iter): Likewise.
3348 (exceptions_state_mc_action_iter_1): Likewise.
3349 (TRY_CATCH): Likewise.
3350 (throw_exception): Likewise.
3351 (throw_verror): Likewise.
3352 (throw_vquit): Likewise.
3353 (throw_error): Likewise.
3354 (throw_quit): Likewise.
3355 * exceptions.c (enum catcher_state): Moved to common-exceptions.c.
3356 (enum catcher_action): Likewise.
3357 (struct catcher): Likewise.
3358 (current_catcher): Likewise.
3359 (catcher_list_size): Likewise.
3360 (exceptions_state_mc_init): Likewise.
3361 (catcher_pop): Likewise.
3362 (exceptions_state_mc): Likewise.
3363 (exceptions_state_mc_action_iter): Likewise.
3364 (exceptions_state_mc_action_iter_1): Likewise.
3365 (throw_exception): Likewise.
3366 (exception_messages): Likewise.
3367 (exception_messages_size): Likewise.
3368 (throw_it): Likewise.
3369 (throw_verror): Likewise.
3370 (throw_vquit): Likewise.
3371 (throw_error): Likewise.
3372 (throw_quit): Likewise.
3373 (prepare_to_throw_exception): New function.
3374
3375 2014-08-29 Gary Benson <gbenson@redhat.com>
3376
3377 * common/gdb_setjmp.h: New file.
3378 * Makefile.in (HFILES_NO_SRCDIR): Add common/gdb_setjmp.h.
3379 * configure.ac: Move sigsetjmp check...
3380 * common/common.m4: ...here.
3381 * configure: Regenerate.
3382 * cp-support.c (SIGJMP_BUF): Delete.
3383 (SIGSETJMP): Likewise.
3384 (SIGLONGJMP): Likewise.
3385 * exceptions.h (gdb_setjmp.h): Include.
3386 (setjmp.h): Do not include.
3387 (EXCEPTIONS_SIGJMP_BUF): Delete.
3388 (EXCEPTIONS_SIGSETJMP): Likewise.
3389 (EXCEPTIONS_SIGLONGJMP): Likewise.
3390 Replace all uses of EXCEPTIONS_SIG* macros with SIG* macros
3391 from gdb_setjmp.h.
3392 * exceptions.c: Likewise.
3393
3394 2014-08-29 Gary Benson <gbenson@redhat.com>
3395
3396 * cleanups.h: Moved to...
3397 * common/cleanups.h: New file.
3398 * cleanups.c: Moved to...
3399 * common/cleanups.c: New file. Include common-defs.h and
3400 cleanups.h. Do not include defs.h.
3401 * Makefile.in (SFILES): Replace cleanups.c with common/cleanups.c.
3402 (HFILES_NO_SRCDIR): Replace cleanups.h with common/cleanups.h.
3403 (cleanups.o): New rule.
3404
3405 2014-08-29 Gary Benson <gbenson@redhat.com>
3406
3407 * common/errors.h (internal_warning): New declaration.
3408 (internal_vwarning): Likewise.
3409 * common/errors.c (internal_warning): New function.
3410 * utils.h (internal_warning): Don't declare.
3411 (internal_vwarning): Likewise.
3412 * utils.c (internal_warning): Removed.
3413
3414 2014-08-29 Gary Benson <gbenson@redhat.com>
3415
3416 * main.c (captured_main): Use warning during startup.
3417 Prefix startup warning messages with command name.
3418
3419 2014-08-29 Gary Benson <gbenson@redhat.com>
3420
3421 * main.c (captured_main): Handle usage errors with error.
3422
3423 2014-08-29 Gary Benson <gbenson@redhat.com>
3424
3425 * go32-nat.c (go32_create_inferior): Replace a fprintf/
3426 exit pair with a call to error. Wrap the message with _().
3427
3428 2014-08-29 Gary Benson <gbenson@redhat.com>
3429
3430 * main.c (captured_main): Replace a fprintf/exit
3431 pair with a call to error. Wrap the message with _().
3432
3433 2014-08-29 Gary Benson <gbenson@redhat.com>
3434
3435 * tui/tui-io.c (tui_initialize_io): Replace two fprintf/exit
3436 pairs with calls to error. Wrap the message with _().
3437
3438 2014-08-29 Gary Benson <gbenson@redhat.com>
3439
3440 * utils.c (vwarning): Protect calls to target_terminal_ours
3441 and wrap_here.
3442
3443 2014-08-29 Gary Benson <gbenson@redhat.com>
3444
3445 * exceptions.c (print_flush): Protect calls to
3446 target_terminal_ours and wrap_here.
3447
3448 2014-08-29 Gary Benson <gbenson@redhat.com>
3449
3450 * utils.h (filtered_printing_initialized): New declaration.
3451 * utils.c (abort_with_message): New function.
3452 (internal_vproblem): Use abort_with_message for first level
3453 recursive internal problems, and if gdb_stderr is not set up.
3454 Protect calls to target_terminal_ours, begin_line and query.
3455
3456 2014-08-28 Doug Evans <dje@google.com>
3457
3458 * symtab.c (in_prologue): Move definition to better spot.
3459 (skip_prologue_using_sal): Ditto.
3460
3461 2014-08-28 Doug Evans <dje@google.com>
3462
3463 * symtab.c (find_function_start_sal): Move definition to better spot.
3464
3465 2014-08-28 Yao Qi <yao@codesourcery.com>
3466
3467 * arm-tdep.c (thumb_in_function_epilogue_p): Don't set
3468 found_stack_adjust in forward scan. Remove condition check
3469 on found_stack_adjust which is always true. Indent the code.
3470
3471 2014-08-28 Yao Qi <yao@codesourcery.com>
3472
3473 * dwarf2read.c (dwarf_decode_lines): Update declaration.
3474 (handle_DW_AT_stmt_list): Remove comment about WANT_LINE_INFO.
3475 (dwarf_decode_lines): Remove argument
3476 want_line_info. Remove condition check on want_line_info.
3477 Callers update.
3478
3479 2014-08-27 Doug Evans <dje@google.com>
3480
3481 * dwarf2read.c (dwarf_record_line): Fix typo.
3482
3483 2014-08-27 Patrick Palka <patrick@parcs.ath.cx>
3484
3485 * target.h (struct target_ops::to_terminal_save_ours): Remove
3486 declaration.
3487 (target_terminal_save_ours): Remove macro.
3488 * target-delegates.c: Regenerate.
3489 * inf-child.c (inf_child_target): Don't set the nonexistent
3490 field to_terminal_save_ours.
3491 * inferior.h (child_terminal_save_ours): Remove declaration.
3492 * terminal.h (gdb_save_tty_state): New declaration.
3493 * inflow.c (child_terminal_save_ours): Rename to ...
3494 (gdb_save_tty_state): ... this.
3495 * tui/tui.c: Include terminal.h.
3496 (tui_enable): Use gdb_save_tty_state instead of
3497 target_terminal_save_ours.
3498 (tui_disable): Likewise.
3499
3500 2014-08-25 Doug Evans <dje@google.com>
3501
3502 * linux-nat.c (linux_nat_close): Don't pass NULL for "this".
3503 Pass NULL instead of 0 for context pointer.
3504
3505 2014-08-25 Yao Qi <yao@codesourcery.com>
3506
3507 * dwarf2read.c: Fix grammatical error.
3508
3509 2014-08-24 Yao Qi <yao@codesourcery.com>
3510
3511 * dwarf2read.c (scan_partial_symbols): Update comments.
3512 Rename argument 'need_pc' with 'set_addrmap'.
3513 (add_partial_namespace): Rename argument 'need_pc' with
3514 'set_addrmap'.
3515 (add_partial_module): Likewise.
3516 (add_partial_subprogram): Likewise. Update comments.
3517 (dwarf2_name): Fix typo.
3518
3519 2014-08-22 Doug Evans <dje@google.com>
3520
3521 PR 17276
3522 * dwarf2read.c (dwarf_record_line_p): New function.
3523 (dwarf_decode_lines_1): Ignore subsequent line number entries
3524 for the same line if any entry had a non-zero discriminator.
3525
3526 2014-08-22 Doug Evans <dje@google.com>
3527
3528 * buildsym.h (record_line_ftype): New typedef.
3529 (record_line): Use it.
3530 * dwarf2read.c (dwarf_record_line, dwarf_finish_line): New functions.
3531 (dwarf_decode_lines_1): Call them.
3532
3533 2014-08-22 Yao Qi <yao@codesourcery.com>
3534
3535 * ctf.c (CTF_FILE_MIN_SIZE): Remove.
3536 (ctf_end): Remove code.
3537
3538 2014-08-21 Jan Kratochvil <jan.kratochvil@redhat.com>
3539
3540 * linux-tdep.c (linux_corefile_thread_callback): Ignore THREAD_EXITED.
3541 (linux_make_corefile_notes): call update_thread_list, protected against
3542 exceptions.
3543
3544 2014-08-21 Pedro Alves <palves@redhat.com>
3545
3546 * infcmd.c (attach_command): Remove comment.
3547
3548 2014-08-21 Bin Cheng <bin.cheng@arm.com>
3549
3550 * aarch64-linux-nat.c (dr_changed_t): Change the type from
3551 unsigned LONGEST to ULONGEST.
3552
3553 2014-08-20 Pedro Alves <palves@redhat.com>
3554
3555 * Makefile.in (check-read1): New rule.
3556
3557 2014-08-20 Joel Brobecker <brobecker@adacore.com>
3558
3559 * value.c (value_from_contents_and_address): Strip resolved_type's
3560 typedef layers before checking its TYPE_DATA_LOCATION.
3561
3562 2014-08-20 Pedro Alves <palves@redhat.com>
3563
3564 * value.c (value_contents_bits_eq): Initialize l,h for gcc -Wall.
3565
3566 2014-08-20 Yao Qi <yao@codesourcery.com>
3567
3568 * amd64-tdep.c (amd64_classify): Add a blank line after the
3569 example. Move "*/" to a new line.
3570 * arm-tdep.c (arm_vfp_cprc_sub_candidate): Likewise.
3571 * arm-wince-tdep.c (arm_pe_skip_trampoline_code): Likewise.
3572 * dwarf2read.c (psymtab_include_file_name): Likewise.
3573
3574 2014-08-19 Andrew Burgess <aburgess@broadcom.com>
3575 Pedro Alves <palves@redhat.com>
3576
3577 PR symtab/14604
3578 PR symtab/14605
3579 * ada-lang.c (coerce_unspec_val_to_type): Use
3580 value_contents_copy_raw.
3581 * ada-valprint.c (val_print_packed_array_elements): Adjust.
3582 * c-valprint.c (c_val_print): Use value_bits_any_optimized_out.
3583 * cp-valprint.c (cp_print_value_fields): Let the common printing
3584 code handle optimized out values.
3585 (cp_print_value_fields_rtti): Use value_bits_any_optimized_out.
3586 * d-valprint.c (dynamic_array_type): Use
3587 value_bits_any_optimized_out.
3588 * dwarf2loc.c (entry_data_value_funcs): Remove check_validity and
3589 check_any_valid fields.
3590 (check_pieced_value_bits): Delete and inline ...
3591 (check_pieced_synthetic_pointer): ... here.
3592 (check_pieced_value_validity): Delete.
3593 (check_pieced_value_invalid): Delete.
3594 (pieced_value_funcs): Remove check_validity and check_any_valid
3595 fields.
3596 (read_pieced_value): Use mark_value_bits_optimized_out.
3597 (write_pieced_value): Switch to use
3598 mark_value_bytes_optimized_out.
3599 (dwarf2_evaluate_loc_desc_full): Copy the value contents instead
3600 of assuming the whole value is optimized out.
3601 * findvar.c (read_frame_register_value): Remove special handling
3602 of optimized out registers.
3603 (value_from_register): Use mark_value_bytes_optimized_out.
3604 * frame-unwind.c (frame_unwind_got_optimized): Use
3605 mark_value_bytes_optimized_out.
3606 * jv-valprint.c (java_value_print): Adjust.
3607 (java_print_value_fields): Let the common printing code handle
3608 optimized out values.
3609 * mips-tdep.c (mips_print_register): Remove special handling of
3610 optimized out registers.
3611 * opencl-lang.c (lval_func_check_validity): Delete.
3612 (lval_func_check_any_valid): Delete.
3613 (opencl_value_funcs): Remove check_validity and check_any_valid
3614 fields.
3615 * p-valprint.c (pascal_object_print_value_fields): Let the common
3616 printing code handle optimized out values.
3617 * stack.c (read_frame_arg): Remove special handling of optimized
3618 out values. Fetch both VAL and ENTRYVAL before comparing
3619 contents. Adjust to value_available_contents_eq rename.
3620 * valprint.c (valprint_check_validity)
3621 (val_print_scalar_formatted): Use value_bits_any_optimized_out.
3622 (val_print_array_elements): Adjust.
3623 * value.c (struct value) <optimized_out>: Now a VEC(range_s).
3624 (value_bits_any_optimized_out): New function.
3625 (value_entirely_covered_by_range_vector): New function, factored
3626 out from value_entirely_unavailable.
3627 (value_entirely_unavailable): Reimplement.
3628 (value_entirely_optimized_out): New function.
3629 (insert_into_bit_range_vector): New function, factored out from
3630 mark_value_bits_unavailable.
3631 (mark_value_bits_unavailable): Reimplement.
3632 (struct ranges_and_idx): New struct.
3633 (find_first_range_overlap_and_match): New function, factored out
3634 from value_available_contents_bits_eq.
3635 (value_available_contents_bits_eq): Rename to ...
3636 (value_contents_bits_eq): ... this. Check both unavailable
3637 contents and optimized out contents.
3638 (value_available_contents_eq): Rename to ...
3639 (value_contents_eq): ... this.
3640 (allocate_value_lazy): Remove reference to the old optimized_out
3641 boolean.
3642 (allocate_optimized_out_value): Use
3643 mark_value_bytes_optimized_out.
3644 (require_not_optimized_out): Adjust to check whether the
3645 optimized_out vec is empty.
3646 (ranges_copy_adjusted): New function, factored out from
3647 value_contents_copy_raw.
3648 (value_contents_copy_raw): Also copy the optimized out ranges.
3649 Assert the destination ranges aren't optimized out.
3650 (value_contents_copy): Update comment, remove call to
3651 require_not_optimized_out.
3652 (value_contents_equal): Adjust to check whether the optimized_out
3653 vec is empty.
3654 (set_value_optimized_out, value_optimized_out_const): Delete.
3655 (mark_value_bytes_optimized_out, mark_value_bits_optimized_out):
3656 New functions.
3657 (value_entirely_optimized_out, value_bits_valid): Delete.
3658 (value_copy): Take a VEC copy of the 'optimized_out' field.
3659 (value_primitive_field): Remove special handling of optimized out.
3660 (value_fetch_lazy): Assert that lazy values have no unavailable
3661 regions. Use value_bits_any_optimized_out. Remove some special
3662 handling for optimized out values.
3663 * value.h: Add intro comment about <optimized out> and
3664 <unavailable>.
3665 (struct lval_funcs): Remove check_validity and check_any_valid
3666 fields.
3667 (set_value_optimized_out, value_optimized_out_const): Remove.
3668 (mark_value_bytes_optimized_out, mark_value_bits_optimized_out):
3669 New declarations.
3670 (value_bits_any_optimized_out): New declaration.
3671 (value_bits_valid): Delete declaration.
3672 (value_available_contents_eq): Rename to ...
3673 (value_contents_eq): ... this, and extend comments.
3674
3675 2014-08-19 Jan Kratochvil <jan.kratochvil@redhat.com>
3676
3677 Fix -fsanitize=address on unreadable inferior strings.
3678 * valprint.c (val_print_string): Fix access before BUFFER.
3679
3680 2014-08-19 Simon Marchi <simon.marchi@ericsson.com>
3681
3682 * target.c (target_struct_size): Remove.
3683 (target_struct_allocsize): Remove.
3684 (DEFAULT_ALLOCSIZE): Remove.
3685 (target_ops_p): New typedef.
3686 (DEF_VEC_P (target_ops_p)): New vector type.
3687 (target_structs): Change type to VEC (target_ops_p).
3688 (add_target_with_completer): Replace "push" code by VEC_safe_push.
3689 (find_default_run_target): Rewrite for loop following changes to
3690 target_structs.
3691
3692 2014-08-19 Joel Brobecker <brobecker@adacore.com>
3693
3694 * value.c (value_from_pointer): Remove use of resolve_dynamic_type.
3695 Adjust code accordingly. Adjust function description comment.
3696
3697 2014-08-19 Yao Qi <yao@codesourcery.com>
3698
3699 * arm-tdep.c (arm_vfp_cprc_sub_candidate): Handle _Complex
3700 types.
3701
3702 2014-08-19 Alan Modra <amodra@gmail.com>
3703
3704 * acinclude.m4 (GDB_AC_CHECK_BFD): Don't add -ldl.
3705 * config.in: Regenerate.
3706 * configure: Regenerate.
3707
3708 2014-08-19 Tom Tromey <tromey@redhat.com>
3709 Gary Benson <gbenson@redhat.com>
3710
3711 * common/common-debug.h: New file.
3712 * common/common-debug.c: Likewise.
3713 * debug.c: Likewise.
3714 * Makefile.in (SFILES): Add common/common-debug.c.
3715 (HFILES_NO_SRCDIR): Add common/common-debug.h.
3716 (COMMON_OBS): Add common-debug.o and debug.o.
3717 (common-debug.o): New rule.
3718 * common/common-defs.h: Include common-debug.h.
3719 * common/agent.c (debug_agent_printf): New function.
3720 (DEBUG_AGENT): Redefine.
3721 * nat/i386-dregs.c (debug_printf): Undefine.
3722
3723 2014-08-19 Gary Benson <gbenson@redhat.com>
3724
3725 * common/common-defs.h: Include print-utils.h.
3726 * utils.h: Do not include print-utils.h.
3727
3728 2014-08-19 Tom Tromey <tromey@redhat.com>
3729 Gary Benson <gbenson@redhat.com>
3730
3731 * common/common-types.h: New file.
3732 * Makefile.in (HFILES_NO_SRCDIR): Add common/common-types.h.
3733 * common/common-defs.h: Include common-types.h.
3734 * defs.h (gdb_byte, CORE_ADDR, CORE_ADDR_MAX, LONGEST)
3735 (ULONGEST): Remove.
3736
3737 2014-08-19 Tom Tromey <tromey@redhat.com>
3738 Gary Benson <gbenson@redhat.com>
3739
3740 * common/errors.h: New file.
3741 * common/errors.c: Likewise.
3742 * Makefile.in (SFILES): Add common/errors.c.
3743 (HFILES_NO_SRCDIR): Add common/errors.h.
3744 (COMMON_OBS): Add errors.o.
3745 (errors.o): New rule.
3746 * common/common-defs.h: Include errors.h.
3747 * utils.h (perror_with_name, error, verror, warning, vwarning):
3748 Don't declare.
3749 * common/common-utils.h: (malloc_failure, internal_error):
3750 Likewise.
3751
3752 2014-08-19 Gary Benson <gbenson@redhat.com>
3753
3754 * utils.c (internal_vproblem): Always print the message.
3755
3756 2014-08-18 Doug Evans <dje@google.com>
3757
3758 * ada-typeprint.c (print_range): Initialize lo,hi for gcc -Wall.
3759
3760 2014-08-18 Joel Brobecker <brobecker@adacore.com>
3761
3762 * ada-typeprint.c (type_is_full_subrange_of_target_type):
3763 Return 0 if TYPE is dynamic.
3764 (print_range): Add handling of dynamic ranges.
3765
3766 2014-08-18 Keven Boell <keven.boell@intel.com>
3767 Joel Brobecker <brobecker@adacore.com>
3768
3769 * gdbtypes.h (struct main_type): Add field "data_location".
3770 (TYPE_DATA_LOCATION, TYPE_DATA_LOCATION_BATON)
3771 (TYPE_DATA_LOCATION_ADDR, TYPE_DATA_LOCATION_KIND): New macros.
3772 * gdbtypes.c (is_dynamic_type): Return 1 if the type has
3773 a dynamic data location.
3774 (resolve_dynamic_type): Add DW_AT_data_location handling.
3775 (copy_recursive, copy_type): Copy the data_location information
3776 when present.
3777 * dwarf2read.c (set_die_type): Add DW_AT_data_location handling.
3778 * value.c (value_from_contents_and_address): Add
3779 DW_AT_data_location handling.
3780
3781 2014-08-18 Keven Boell <keven.boell@intel.com>
3782 Joel Brobecker <brobecker@adacore.com>
3783
3784 * dwarf2expr.h (struct dwarf_expr_context_funcs): Uncomment
3785 field "get_object_address".
3786 * dwarf2expr.c (execute_stack_op): Add handling for
3787 DW_OP_push_object_address.
3788 * dwarf2loc.h (dwarf2_evaluate_property): Add "address" field.
3789 * dwarf2loc.c (struct dwarf_expr_baton): Add field "obj_address".
3790 (dwarf_expr_push_dwarf_reg_entry_value): Set baton_local.obj_address.
3791 (dwarf_expr_get_obj_addr): New function.
3792 (dwarf_expr_ctx_funcs): Add get_object_address field.
3793 (dwarf2_evaluate_loc_desc_full): Set baton.obj_address.
3794 (dwarf2_locexpr_baton_eval): Add parameter "addr". Use it.
3795 (dwarf2_evaluate_property): Add parameter "address". Use it.
3796 (needs_get_obj_addr): New function.
3797 (needs_frame_ctx_funcs): Add get_object_address field.
3798 (dwarf2_compile_expr_to_ax): Add DW_OP_push_object_address handling.
3799 * gdbtypes.c (resolve_dynamic_range): Add "addr" field. Use it.
3800 (resolve_dynamic_array): Likewise.
3801
3802 2014-08-18 Joel Brobecker <brobecker@adacore.com>
3803
3804 * ada-lang.c (ada_evaluate_subexp) <OP_VAR_VALUE>:
3805 When noside is EVAL_AVOID_SIDE_EFFECTS, only return a statically
3806 fixed value for records and unions for which some GNAT encodings
3807 are present.
3808
3809 2014-08-18 Joel Brobecker <brobecker@adacore.com>
3810
3811 * ada-lang.c (ada_evaluate_subexp) <OP_VAR_VALUE>: Slight code
3812 rewrite to avoid "else if" and "else" constructs. Should be
3813 a no-op in practice.
3814
3815 2014-08-18 Joel Brobecker <brobecker@adacore.com>
3816
3817 * ada-lang.c (ada_evaluate_subexp) <OP_VAR_VALUE>: Fix identation
3818 of lexical block.
3819
3820 2014-08-15 Siva Chandra Reddy <sivachandra@google.com>
3821
3822 PR c++/17132
3823 * eval.c: Update all calls to find_overload_match.
3824 * valarith.c: Likewise.
3825 (value_user_defined_cpp_op, value_user_defined_op): New
3826 argument NOSIDE. Update all callers.
3827 * valops.c (find_overload_match): New argument NOSIDE.
3828 * value.h (find_overload_match): Update signature.
3829
3830 2014-08-15 Siva Chandra Reddy <sivachandra@google.com>
3831
3832 * python/lib/gdb/command/xmethods.py (set_xm_status1): Use the
3833 'items' methods instead of 'iteritems' method on dictionaries.
3834
3835 2014-08-15 Doug Evans <dje@google.com>
3836
3837 * dwarf2read.c (dwarf_decode_lines_1): Move definition of adj_opcode
3838 closer to use.
3839
3840 2014-08-15 Doug Evans <dje@google.com>
3841
3842 * dwarf2read.c (dwarf_decode_lines_1): Add comment.
3843
3844 2014-08-15 Doug Evans <dje@google.com>
3845
3846 * dwarf2read.c (dwarf_decode_lines_1): Delete local "column", unused.
3847
3848 2014-08-15 Doug Evans <dje@google.com>
3849
3850 * dwarf2read.c (dwarf_decode_lines_1): Delete local basic_block,
3851 unused.
3852
3853 2014-08-15 Eli Zaretskii <eliz@gnu.org>
3854
3855 * dcache.h: Include target.h, to avoid compile time warnings.
3856
3857 2014-08-15 Joel Brobecker <brobecker@adacore.com>
3858
3859 * gdbarch.sh: #include "frame.h" in gdbarch.h. Delete "struct
3860 frame_info" partial declaration.
3861 * gdbarch.h: Regenerate.
3862
3863 2014-08-15 Yao Qi <yao@codesourcery.com>
3864
3865 * dwarf2read.c (dwarf_decode_lines_1): Remove parameter 'pst'.
3866 Add parameter 'decode_for_pst_p'. Callers update.
3867
3868 2014-08-13 Yao Qi <yao@codesourcery.com>
3869
3870 PR build/17104
3871 * configure.ac: Use local variable 'pos'.
3872 * configure: Regenerated.
3873
3874 2014-08-11 Doug Evans <dje@google.com>
3875
3876 * solib.c (solib_read_symbols): Delete "Loaded symbols for ..."
3877 message, it is redundant with "Reading symbols from ..." message.
3878
3879 2014-08-10 Doug Evans <xdje42@gmail.com>
3880
3881 * linux-nat.c (linux_nat_thread_address_space): Delete dead code.
3882
3883 2014-08-09 Yao Qi <yao@codesourcery.com>
3884
3885 PR remote/9053
3886 * remote.c (remote_xfer_partial): Remove dead code.
3887
3888 2014-08-07 Andreas Arnez <arnez@linux.vnet.ibm.com>
3889
3890 * ia64-linux-tdep.c: Include "regset.h".
3891 (ia64_linux_gregmap, ia64_linux_fpregmap): New register maps.
3892 (IA64_LINUX_GREGS_SIZE, IA64_LINUX_FPREGS_SIZE): New macros.
3893 (ia64_linux_supply_fpregset): New function.
3894 (ia64_linux_gregset, ia64_linux_fpregset): New regsets.
3895 (ia64_linux_regset_from_core_section): New function.
3896 (ia64_linux_init_abi): Set regset_from_core_section gdbarch
3897 method.
3898
3899 2014-08-07 Andreas Arnez <arnez@linux.vnet.ibm.com>
3900
3901 * m68klinux-tdep.c: Include "regset.h".
3902 (m68k_linux_gregmap, m68k_linux_fpregmap): New register maps.
3903 (M68K_LINUX_GREGS_SIZE, M68K_LINUX_FPREGS_SIZE): New macros.
3904 (m68k_linux_gregset, m68k_linux_fpregset): New regsets.
3905 (m68k_linux_regset_from_core_section): New function.
3906 (m68k_linux_init_abi): Set regset_from_core_section gdbarch
3907 method.
3908
3909 2014-08-07 Andreas Arnez <arnez@linux.vnet.ibm.com>
3910
3911 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Delete
3912 function. Move logic to...
3913 (tilegx_linux_regmap): ... this new register map.
3914 (tilegx_linux_regset): Refer to register map, replace supply
3915 method by regcache_supply_regset, and add collect method.
3916 * tilegx-tdep.h (enum tilegx_regnum): New enum value
3917 TILEGX_FIRST_EASY_REGNUM.
3918
3919 2014-08-07 Andreas Arnez <arnez@linux.vnet.ibm.com>
3920
3921 * score-tdep.c (score7_linux_supply_gregset): Reduce to small stub
3922 that calls regcache_supply_regset and handles the EPC register
3923 separately. Move main logic to...
3924 (score7_linux_gregmap): ... this new register map.
3925 (SCORE7_LINUX_SIZEOF_GREGSET, SCORE7_LINUX_EPC_OFFSET): New macros.
3926 (score7_linux_gregset): Refer to register map. Add collect method.
3927 (score7_linux_regset_from_core_section): Replace
3928 sizeof elf_gregset_t by SCORE7_LINUX_SIZEOF_GREGSET.
3929 * score-tdep.h (enum gdb_regnum): New enum value SCORE_EPC_REGNUM.
3930 (struct regset): Delete unused forward declaraction.
3931 (struct pt_regs): Delete structure definition.
3932 (elf_gregset_t): Delete typedef.
3933
3934 2014-08-07 Andreas Arnez <arnez@linux.vnet.ibm.com>
3935
3936 * nios2-linux-tdep.c (nios2_collect_gregset): New function.
3937 (nios2_core_regset): Add collect method.
3938
3939 2014-08-07 Andreas Arnez <arnez@linux.vnet.ibm.com>
3940
3941 * m32r-linux-tdep.c (m32r_linux_supply_gregset): Make
3942 platform-independent and don't write to read-only input buffer.
3943 (m32r_linux_collect_gregset): New function.
3944 (m32r_linux_gregset): Add collect method.
3945
3946 2014-08-07 Andreas Arnez <arnez@linux.vnet.ibm.com>
3947
3948 * hppa-linux-tdep.c (greg_map): Rename to...
3949 (hppa_linux_gregmap): ... this. Also convert to
3950 regcache_map_entry format.
3951 (hppa_linux_supply_regset): Delete function.
3952 (hppa_linux_supply_fpregset): Delete function. Move logic to...
3953 (hppa_linux_fpregmap): ... this new register map.
3954 (hppa_linux_regset, hppa_linux_fpregset): Refer to appropriate
3955 register map, replace supply method by regcache_supply_regset, and
3956 add collect method regcache_collect_regset.
3957
3958 2014-08-07 Andreas Arnez <arnez@linux.vnet.ibm.com>
3959
3960 * frv-linux-tdep.c (FRV_PT_PSR, FRV_PT_ISR, FRV_PT_CCR)
3961 (FRV_PT_CCCR, FRV_PT_LR, FRV_PT_LCR, FRV_PT_PC, FRV_PT_GNER0)
3962 (FRV_PT_GNER1, FRV_PT_IACC0H, FRV_PT_IACC0L, FRV_PT_GR)
3963 (FRV_PT_TBR, FRV_PT_GR, FRV_PT_EXEC_FDPIC_LOADMAP)
3964 (FRV_PT_INTERP_FDPIC_LOADMAP): Delete macros.
3965 (frv_linux_gregmap, frv_linux_fpregmap): New register maps.
3966 (frv_linux_supply_gregset): Replace main logic by call to
3967 regcache_supply_regset, but keep clearing gr32-gr63.
3968 (frv_linux_supply_fpregset): Delete function.
3969 (frv_linux_gregset): Refer to appropriate register map and add
3970 regcache_collect_regset as the collect method.
3971 (frv_linux_fpregset): Likewise. Also exchange the supply method
3972 by regcache_supply_regset.
3973
3974 2014-08-07 Andreas Arnez <arnez@linux.vnet.ibm.com>
3975
3976 * alpha-linux-tdep.c (alpha_linux_supply_gregset): Replace logic
3977 by call to alpha_supply_int_regs.
3978 (alpha_linux_collect_gregset): New function.
3979 (alpha_linux_supply_fpregset): Replace logic by call to
3980 alpha_supply_fp_regs.
3981 (alpha_linux_collect_fpregset): New function.
3982 (alpha_linux_gregset, alpha_linux_fpregset): Add collect method.
3983
3984 2014-08-07 Andreas Arnez <arnez@linux.vnet.ibm.com>
3985
3986 * aarch64-linux-nat.c (fill_gregset, fill_fpregset): Replace logic
3987 by call to regcache_collect_regset.
3988 (supply_gregset, supply_fpregset): Call regcache_supply_regset
3989 instead of aarch64_linux_supply_gregset/_fpregset.
3990 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET)
3991 (AARCH64_LINUX_SIZEOF_FPREGSET): Delete macros here, move to
3992 header file instead.
3993 (aarch64_linux_supply_gregset, supply_gregset_from_core)
3994 (aarch64_linux_suply_fpregset, supply_fpregset_from_core): Delete
3995 functions. Move logic to ...
3996 (aarch64_linux_gregmap, aarch64_linux_fpregmap): ... these new
3997 register maps.
3998 (aarch64_linux_gregset, aarch64_linux_fpregset): Make global,
3999 refer to new register maps, replace *_regset_from_core by
4000 regcache_supply_regset, and also use regcache_collect_regset.
4001 * aarch64-linux-tdep.h: Include "regset.h".
4002 (aarch64_linux_supply_gregset, aarch64_linux_supply_fpregset):
4003 Delete prototypes.
4004 (AARCH64_LINUX_SIZEOF_GREGSET, AARCH64_LINUX_SIZEOF_FPREGSET): New
4005 macros, moved from C source file.
4006 (aarch64_linux_gregset, aarch64_linux_fpregset): New global
4007 variable declarations.
4008
4009 2014-08-07 Andreas Arnez <arnez@linux.vnet.ibm.com>
4010
4011 * s390-linux-nat.c: Include "regset.h".
4012 (regmap_gregset): Delete macro.
4013 (s390_64_regmap_gregset): New register map for
4014 regcache_supply/_collect_regset.
4015 (s390_64_gregset): New regset.
4016 (S390_PSWM_OFFSET, S390_PSWA_OFFSET): New macros.
4017 (regmap_fpregset): Delete macro.
4018 (s390_native_supply, s390_native_collect): Delete functions.
4019 (supply_gregset, fill_gregset): Replace s390-specific regmap
4020 handling by a call to regcache_supply/_collect_regset.
4021 (supply_fpregset, fill_fpregset): Call regcache_supply/
4022 _collect_regset instead of s390_native_supply/_collect.
4023 (fetch_regset, store_regset): Likewise. Also change the last
4024 parameter to a regset instead of a regmap.
4025 (s390_linux_fetch_inferior_registers)
4026 (390_linux_store_inferior_registers): Adjust last parameter in
4027 calls to fetch_regset and store_regset.
4028 * s390-linux-tdep.c (s390_regmap_gregset): Rename to...
4029 (s390_gregmap): ... this. Also make static const and convert to
4030 regcache_map_entry format.
4031 (s390x_regmap_gregset): Delete.
4032 (s390_regmap_fpregset): Rename to...
4033 (s390_fpregmap): ... this. Make static const and convert to
4034 regcache_map_entry format.
4035 (s390_regmap_upper, s390_regmap_last_break)
4036 (s390x_regmap_last_break, s390_regmap_system_call)
4037 (s390_regmap_tdb): Likewise.
4038 (s390_supply_regset, s390_collect_regset): Remove functions.
4039 (s390_supply_tdb_regset): Call regcache_supply_regset instead of
4040 s390_supply_regset.
4041 (s390_gregset, s390_fpregset, s390_upper_regset)
4042 (s390_last_break_regset, s390x_last_break_regset)
4043 (s390_system_call_regset, s390_tdb_regset): Make global and
4044 replace s390_supply/_collect_regset by regcache_supply/
4045 _collect_regset.
4046 (s390x_gregset): Delete.
4047 (s390_gdbarch_init): Replace s390x_gregset by s390_gregset.
4048 * s390-linux-tdep.h (s390_regmap_gregset, s390x_regmap_gregset)
4049 (s390_regmap_fpregset, s390_regmap_last_break)
4050 (s390x_regmap_last_break, s390_regmap_system_call)
4051 (s390_regmap_tdb): Delete global variable declarations.
4052 (s390_gregset, s390_fpregset, s390_last_break_regset)
4053 (s390x_last_break_regset, s390_system_call_regset)
4054 (s390_tdb_regset): New global variable declarations.
4055
4056 2014-08-07 Andreas Arnez <arnez@linux.vnet.ibm.com>
4057
4058 * regcache.c: Include "regset.h".
4059 (regcache_transfer_regset): New local function.
4060 (regcache_supply_regset, regcache_collect_regset): New functions.
4061 * regcache.h (struct regcache_map_entry): New structure.
4062 (REGCACHE_MAP_SKIP): New enum value.
4063 (regcache_supply_regset, regcache_collect_regset): New prototypes.
4064
4065 2014-08-07 Andreas Arnez <arnez@linux.vnet.ibm.com>
4066
4067 * regset.h (struct regset): Rename 'descr' field to 'regmap'.
4068 * ppc-linux-tdep.c (ppc_linux_supply_gregset)
4069 (ppc_linux_collect_gregset ): Likewise.
4070 * rs6000-tdep.c (ppc_supply_gregset, ppc_supply_fpregset)
4071 (ppc_supply_vrregset, ppc_collect_gregset, ppc_collect_fpregset)
4072 (ppc_collect_vrregset): Likewise.
4073 * s390-linux-tdep.c (s390_supply_regset, s390_collect_regset):
4074 Likewise.
4075
4076 2014-08-07 Yao Qi <yao@codesourcery.com>
4077
4078 * corelow.c (core_xfer_partial): Replace 0 with TARGET_XFER_EOF.
4079 * remote-m32r-sdi.c (m32r_xfer_memory): Likewise.
4080 * remote.c (remote_read_bytes): Likewise.
4081
4082 2014-08-07 Yao Qi <yao@codesourcery.com>
4083
4084 * dwarf2read.c (struct dwarf2_per_cu_data) <u>: Tweak comments.
4085
4086 2014-08-07 Yao Qi <yao@codesourcery.com>
4087
4088 PR remote/17230
4089 * remote-mips.c (mips_xfer_memory): Set *xfered_len and return
4090 TARGET_XFER_OK instead of 0.
4091
4092 2014-08-07 Gary Benson <gbenson@redhat.com>
4093
4094 * common/common-defs.h: Include errno.h.
4095 * defs.h: Do not include errno.h.
4096 * ada-typeprint.c: Likewise.
4097 * c-typeprint.c: Likewise.
4098 * core-regset.c: Likewise.
4099 * corefile.c: Likewise.
4100 * corelow.c: Likewise.
4101 * event-loop.c: Likewise.
4102 * f-typeprint.c: Likewise.
4103 * gnu-nat.c: Likewise.
4104 * go32-nat.c: Likewise.
4105 * i386gnu-nat.c: Likewise.
4106 * m2-typeprint.c: Likewise.
4107 * nat/linux-btrace.c: Likewise.
4108 * p-typeprint.c: Likewise.
4109 * procfs.c: Likewise.
4110 * remote-sim.c: Likewise.
4111 * rs6000-nat.c: Likewise.
4112 * target.c: Likewise.
4113 * typeprint.c: Likewise.
4114 * ui-file.c: Likewise.
4115 * valops.c: Likewise.
4116 * valprint.c: Likewise.
4117
4118 2014-08-07 Gary Benson <gbenson@redhat.com>
4119
4120 * common/common-defs.h: Include string.h.
4121 * aarch64-tdep.c: Do not include string.h.
4122 * ada-exp.y: Likewise.
4123 * ada-lang.c: Likewise.
4124 * ada-lex.l: Likewise.
4125 * ada-typeprint.c: Likewise.
4126 * ada-valprint.c: Likewise.
4127 * aix-thread.c: Likewise.
4128 * alpha-linux-tdep.c: Likewise.
4129 * alpha-mdebug-tdep.c: Likewise.
4130 * alpha-nat.c: Likewise.
4131 * alpha-osf1-tdep.c: Likewise.
4132 * alpha-tdep.c: Likewise.
4133 * alphanbsd-tdep.c: Likewise.
4134 * amd64-dicos-tdep.c: Likewise.
4135 * amd64-linux-tdep.c: Likewise.
4136 * amd64-nat.c: Likewise.
4137 * amd64-sol2-tdep.c: Likewise.
4138 * amd64fbsd-tdep.c: Likewise.
4139 * amd64obsd-tdep.c: Likewise.
4140 * arch-utils.c: Likewise.
4141 * arm-linux-nat.c: Likewise.
4142 * arm-linux-tdep.c: Likewise.
4143 * arm-tdep.c: Likewise.
4144 * arm-wince-tdep.c: Likewise.
4145 * armbsd-tdep.c: Likewise.
4146 * armnbsd-nat.c: Likewise.
4147 * armnbsd-tdep.c: Likewise.
4148 * armobsd-tdep.c: Likewise.
4149 * avr-tdep.c: Likewise.
4150 * ax-gdb.c: Likewise.
4151 * ax-general.c: Likewise.
4152 * bcache.c: Likewise.
4153 * bfin-tdep.c: Likewise.
4154 * breakpoint.c: Likewise.
4155 * build-id.c: Likewise.
4156 * buildsym.c: Likewise.
4157 * c-exp.y: Likewise.
4158 * c-lang.c: Likewise.
4159 * c-typeprint.c: Likewise.
4160 * c-valprint.c: Likewise.
4161 * charset.c: Likewise.
4162 * cli-out.c: Likewise.
4163 * cli/cli-cmds.c: Likewise.
4164 * cli/cli-decode.c: Likewise.
4165 * cli/cli-dump.c: Likewise.
4166 * cli/cli-interp.c: Likewise.
4167 * cli/cli-logging.c: Likewise.
4168 * cli/cli-script.c: Likewise.
4169 * cli/cli-setshow.c: Likewise.
4170 * cli/cli-utils.c: Likewise.
4171 * coffread.c: Likewise.
4172 * common/agent.c: Likewise.
4173 * common/buffer.c: Likewise.
4174 * common/buffer.h: Likewise.
4175 * common/common-utils.c: Likewise.
4176 * common/filestuff.c: Likewise.
4177 * common/filestuff.c: Likewise.
4178 * common/format.c: Likewise.
4179 * common/print-utils.c: Likewise.
4180 * common/rsp-low.c: Likewise.
4181 * common/signals.c: Likewise.
4182 * common/vec.h: Likewise.
4183 * common/xml-utils.c: Likewise.
4184 * core-regset.c: Likewise.
4185 * corefile.c: Likewise.
4186 * corelow.c: Likewise.
4187 * cp-abi.c: Likewise.
4188 * cp-name-parser.y: Likewise.
4189 * cp-support.c: Likewise.
4190 * cp-valprint.c: Likewise.
4191 * cris-tdep.c: Likewise.
4192 * d-exp.y: Likewise.
4193 * darwin-nat.c: Likewise.
4194 * dbxread.c: Likewise.
4195 * dcache.c: Likewise.
4196 * demangle.c: Likewise.
4197 * dicos-tdep.c: Likewise.
4198 * disasm.c: Likewise.
4199 * doublest.c: Likewise.
4200 * dsrec.c: Likewise.
4201 * dummy-frame.c: Likewise.
4202 * dwarf2-frame.c: Likewise.
4203 * dwarf2loc.c: Likewise.
4204 * dwarf2read.c: Likewise.
4205 * elfread.c: Likewise.
4206 * environ.c: Likewise.
4207 * eval.c: Likewise.
4208 * event-loop.c: Likewise.
4209 * exceptions.c: Likewise.
4210 * exec.c: Likewise.
4211 * expprint.c: Likewise.
4212 * f-exp.y: Likewise.
4213 * f-lang.c: Likewise.
4214 * f-typeprint.c: Likewise.
4215 * f-valprint.c: Likewise.
4216 * fbsd-nat.c: Likewise.
4217 * findcmd.c: Likewise.
4218 * findvar.c: Likewise.
4219 * fork-child.c: Likewise.
4220 * frame.c: Likewise.
4221 * frv-linux-tdep.c: Likewise.
4222 * frv-tdep.c: Likewise.
4223 * gdb.c: Likewise.
4224 * gdb_bfd.c: Likewise.
4225 * gdbarch.c: Likewise.
4226 * gdbarch.sh: Likewise.
4227 * gdbtypes.c: Likewise.
4228 * gnu-nat.c: Likewise.
4229 * gnu-v2-abi.c: Likewise.
4230 * gnu-v3-abi.c: Likewise.
4231 * go-exp.y: Likewise.
4232 * go-lang.c: Likewise.
4233 * go32-nat.c: Likewise.
4234 * guile/guile.c: Likewise.
4235 * guile/scm-auto-load.c: Likewise.
4236 * hppa-hpux-tdep.c: Likewise.
4237 * hppa-linux-nat.c: Likewise.
4238 * hppanbsd-tdep.c: Likewise.
4239 * hppaobsd-tdep.c: Likewise.
4240 * i386-cygwin-tdep.c: Likewise.
4241 * i386-dicos-tdep.c: Likewise.
4242 * i386-linux-tdep.c: Likewise.
4243 * i386-nto-tdep.c: Likewise.
4244 * i386-sol2-tdep.c: Likewise.
4245 * i386-tdep.c: Likewise.
4246 * i386bsd-tdep.c: Likewise.
4247 * i386gnu-nat.c: Likewise.
4248 * i386nbsd-tdep.c: Likewise.
4249 * i386obsd-tdep.c: Likewise.
4250 * i387-tdep.c: Likewise.
4251 * ia64-libunwind-tdep.c: Likewise.
4252 * ia64-linux-nat.c: Likewise.
4253 * inf-child.c: Likewise.
4254 * inf-ptrace.c: Likewise.
4255 * inf-ttrace.c: Likewise.
4256 * infcall.c: Likewise.
4257 * infcmd.c: Likewise.
4258 * inflow.c: Likewise.
4259 * infrun.c: Likewise.
4260 * interps.c: Likewise.
4261 * iq2000-tdep.c: Likewise.
4262 * irix5-nat.c: Likewise.
4263 * jv-exp.y: Likewise.
4264 * jv-lang.c: Likewise.
4265 * jv-typeprint.c: Likewise.
4266 * jv-valprint.c: Likewise.
4267 * language.c: Likewise.
4268 * linux-fork.c: Likewise.
4269 * linux-nat.c: Likewise.
4270 * lm32-tdep.c: Likewise.
4271 * m2-exp.y: Likewise.
4272 * m2-typeprint.c: Likewise.
4273 * m32c-tdep.c: Likewise.
4274 * m32r-linux-nat.c: Likewise.
4275 * m32r-linux-tdep.c: Likewise.
4276 * m32r-rom.c: Likewise.
4277 * m32r-tdep.c: Likewise.
4278 * m68hc11-tdep.c: Likewise.
4279 * m68k-tdep.c: Likewise.
4280 * m68kbsd-tdep.c: Likewise.
4281 * m68klinux-nat.c: Likewise.
4282 * m68klinux-tdep.c: Likewise.
4283 * m88k-tdep.c: Likewise.
4284 * machoread.c: Likewise.
4285 * macrocmd.c: Likewise.
4286 * main.c: Likewise.
4287 * mdebugread.c: Likewise.
4288 * mem-break.c: Likewise.
4289 * memattr.c: Likewise.
4290 * memory-map.c: Likewise.
4291 * mep-tdep.c: Likewise.
4292 * mi/mi-cmd-break.c: Likewise.
4293 * mi/mi-cmd-disas.c: Likewise.
4294 * mi/mi-cmd-env.c: Likewise.
4295 * mi/mi-cmd-stack.c: Likewise.
4296 * mi/mi-cmd-var.c: Likewise.
4297 * mi/mi-cmds.c: Likewise.
4298 * mi/mi-console.c: Likewise.
4299 * mi/mi-getopt.c: Likewise.
4300 * mi/mi-interp.c: Likewise.
4301 * mi/mi-main.c: Likewise.
4302 * mi/mi-parse.c: Likewise.
4303 * microblaze-rom.c: Likewise.
4304 * microblaze-tdep.c: Likewise.
4305 * mingw-hdep.c: Likewise.
4306 * minidebug.c: Likewise.
4307 * minsyms.c: Likewise.
4308 * mips-irix-tdep.c: Likewise.
4309 * mips-linux-tdep.c: Likewise.
4310 * mips-tdep.c: Likewise.
4311 * mips64obsd-tdep.c: Likewise.
4312 * mipsnbsd-tdep.c: Likewise.
4313 * mipsread.c: Likewise.
4314 * mn10300-linux-tdep.c: Likewise.
4315 * mn10300-tdep.c: Likewise.
4316 * monitor.c: Likewise.
4317 * moxie-tdep.c: Likewise.
4318 * mt-tdep.c: Likewise.
4319 * nat/linux-btrace.c: Likewise.
4320 * nat/linux-osdata.c: Likewise.
4321 * nat/linux-procfs.c: Likewise.
4322 * nat/linux-ptrace.c: Likewise.
4323 * nat/linux-waitpid.c: Likewise.
4324 * nbsd-tdep.c: Likewise.
4325 * nios2-linux-tdep.c: Likewise.
4326 * nto-procfs.c: Likewise.
4327 * nto-tdep.c: Likewise.
4328 * objc-lang.c: Likewise.
4329 * objfiles.c: Likewise.
4330 * opencl-lang.c: Likewise.
4331 * osabi.c: Likewise.
4332 * osdata.c: Likewise.
4333 * p-exp.y: Likewise.
4334 * p-lang.c: Likewise.
4335 * p-typeprint.c: Likewise.
4336 * parse.c: Likewise.
4337 * posix-hdep.c: Likewise.
4338 * ppc-linux-nat.c: Likewise.
4339 * ppc-sysv-tdep.c: Likewise.
4340 * ppcfbsd-tdep.c: Likewise.
4341 * ppcnbsd-tdep.c: Likewise.
4342 * ppcobsd-tdep.c: Likewise.
4343 * printcmd.c: Likewise.
4344 * procfs.c: Likewise.
4345 * prologue-value.c: Likewise.
4346 * python/py-auto-load.c: Likewise.
4347 * python/py-gdb-readline.c: Likewise.
4348 * ravenscar-thread.c: Likewise.
4349 * regcache.c: Likewise.
4350 * registry.c: Likewise.
4351 * remote-fileio.c: Likewise.
4352 * remote-m32r-sdi.c: Likewise.
4353 * remote-mips.c: Likewise.
4354 * remote-notif.c: Likewise.
4355 * remote-sim.c: Likewise.
4356 * remote.c: Likewise.
4357 * reverse.c: Likewise.
4358 * rs6000-aix-tdep.c: Likewise.
4359 * ser-base.c: Likewise.
4360 * ser-go32.c: Likewise.
4361 * ser-mingw.c: Likewise.
4362 * ser-pipe.c: Likewise.
4363 * ser-tcp.c: Likewise.
4364 * ser-unix.c: Likewise.
4365 * serial.c: Likewise.
4366 * sh-tdep.c: Likewise.
4367 * sh64-tdep.c: Likewise.
4368 * shnbsd-tdep.c: Likewise.
4369 * skip.c: Likewise.
4370 * sol-thread.c: Likewise.
4371 * solib-dsbt.c: Likewise.
4372 * solib-frv.c: Likewise.
4373 * solib-osf.c: Likewise.
4374 * solib-som.c: Likewise.
4375 * solib-spu.c: Likewise.
4376 * solib-target.c: Likewise.
4377 * solib.c: Likewise.
4378 * somread.c: Likewise.
4379 * source.c: Likewise.
4380 * sparc-nat.c: Likewise.
4381 * sparc-sol2-tdep.c: Likewise.
4382 * sparc-tdep.c: Likewise.
4383 * sparc64-tdep.c: Likewise.
4384 * sparc64fbsd-tdep.c: Likewise.
4385 * sparc64nbsd-tdep.c: Likewise.
4386 * sparcnbsd-tdep.c: Likewise.
4387 * spu-linux-nat.c: Likewise.
4388 * spu-multiarch.c: Likewise.
4389 * spu-tdep.c: Likewise.
4390 * stabsread.c: Likewise.
4391 * stack.c: Likewise.
4392 * std-regs.c: Likewise.
4393 * symfile.c: Likewise.
4394 * symmisc.c: Likewise.
4395 * symtab.c: Likewise.
4396 * target.c: Likewise.
4397 * thread.c: Likewise.
4398 * tilegx-linux-nat.c: Likewise.
4399 * tilegx-tdep.c: Likewise.
4400 * top.c: Likewise.
4401 * tracepoint.c: Likewise.
4402 * tui/tui-command.c: Likewise.
4403 * tui/tui-data.c: Likewise.
4404 * tui/tui-disasm.c: Likewise.
4405 * tui/tui-file.c: Likewise.
4406 * tui/tui-layout.c: Likewise.
4407 * tui/tui-out.c: Likewise.
4408 * tui/tui-regs.c: Likewise.
4409 * tui/tui-source.c: Likewise.
4410 * tui/tui-stack.c: Likewise.
4411 * tui/tui-win.c: Likewise.
4412 * tui/tui-windata.c: Likewise.
4413 * tui/tui-winsource.c: Likewise.
4414 * typeprint.c: Likewise.
4415 * ui-file.c: Likewise.
4416 * ui-out.c: Likewise.
4417 * user-regs.c: Likewise.
4418 * utils.c: Likewise.
4419 * v850-tdep.c: Likewise.
4420 * valarith.c: Likewise.
4421 * valops.c: Likewise.
4422 * valprint.c: Likewise.
4423 * value.c: Likewise.
4424 * varobj.c: Likewise.
4425 * vax-tdep.c: Likewise.
4426 * vaxnbsd-tdep.c: Likewise.
4427 * vaxobsd-tdep.c: Likewise.
4428 * windows-nat.c: Likewise.
4429 * xcoffread.c: Likewise.
4430 * xml-support.c: Likewise.
4431 * xstormy16-tdep.c: Likewise.
4432 * xtensa-linux-nat.c: Likewise.
4433
4434 2014-08-07 Gary Benson <gbenson@redhat.com>
4435
4436 * common/common-defs.h: Include gdb_assert.h.
4437 * aarch64-tdep.c: Do not include gdb_assert.h.
4438 * addrmap.c: Likewise.
4439 * aix-thread.c: Likewise.
4440 * alpha-linux-tdep.c: Likewise.
4441 * alpha-mdebug-tdep.c: Likewise.
4442 * alphanbsd-tdep.c: Likewise.
4443 * amd64-nat.c: Likewise.
4444 * amd64-tdep.c: Likewise.
4445 * amd64bsd-nat.c: Likewise.
4446 * amd64fbsd-nat.c: Likewise.
4447 * amd64fbsd-tdep.c: Likewise.
4448 * amd64nbsd-nat.c: Likewise.
4449 * amd64nbsd-tdep.c: Likewise.
4450 * amd64obsd-nat.c: Likewise.
4451 * amd64obsd-tdep.c: Likewise.
4452 * arch-utils.c: Likewise.
4453 * arm-tdep.c: Likewise.
4454 * armbsd-tdep.c: Likewise.
4455 * auxv.c: Likewise.
4456 * bcache.c: Likewise.
4457 * bfin-tdep.c: Likewise.
4458 * blockframe.c: Likewise.
4459 * breakpoint.c: Likewise.
4460 * bsd-kvm.c: Likewise.
4461 * bsd-uthread.c: Likewise.
4462 * buildsym.c: Likewise.
4463 * c-exp.y: Likewise.
4464 * c-lang.c: Likewise.
4465 * charset.c: Likewise.
4466 * cleanups.c: Likewise.
4467 * cli-out.c: Likewise.
4468 * cli/cli-decode.c: Likewise.
4469 * cli/cli-dump.c: Likewise.
4470 * cli/cli-logging.c: Likewise.
4471 * cli/cli-script.c: Likewise.
4472 * cli/cli-utils.c: Likewise.
4473 * coffread.c: Likewise.
4474 * common/common-utils.c: Likewise.
4475 * common/queue.h: Likewise.
4476 * common/signals.c: Likewise.
4477 * common/vec.h: Likewise.
4478 * complaints.c: Likewise.
4479 * completer.c: Likewise.
4480 * corelow.c: Likewise.
4481 * cp-abi.c: Likewise.
4482 * cp-name-parser.y: Likewise.
4483 * cp-namespace.c: Likewise.
4484 * cp-support.c: Likewise.
4485 * cris-tdep.c: Likewise.
4486 * dbxread.c: Likewise.
4487 * dictionary.c: Likewise.
4488 * doublest.c: Likewise.
4489 * dsrec.c: Likewise.
4490 * dummy-frame.c: Likewise.
4491 * dwarf2-frame-tailcall.c: Likewise.
4492 * dwarf2-frame.c: Likewise.
4493 * dwarf2expr.c: Likewise.
4494 * dwarf2loc.c: Likewise.
4495 * dwarf2read.c: Likewise.
4496 * eval.c: Likewise.
4497 * event-loop.c: Likewise.
4498 * exceptions.c: Likewise.
4499 * expprint.c: Likewise.
4500 * f-valprint.c: Likewise.
4501 * fbsd-nat.c: Likewise.
4502 * findvar.c: Likewise.
4503 * frame-unwind.c: Likewise.
4504 * frame.c: Likewise.
4505 * frv-tdep.c: Likewise.
4506 * gcore.c: Likewise.
4507 * gdb-dlfcn.c: Likewise.
4508 * gdb_bfd.c: Likewise.
4509 * gdbarch.c: Likewise.
4510 * gdbarch.sh: Likewise.
4511 * gdbtypes.c: Likewise.
4512 * gnu-nat.c: Likewise.
4513 * gnu-v3-abi.c: Likewise.
4514 * go-lang.c: Likewise.
4515 * guile/scm-exception.c: Likewise.
4516 * guile/scm-gsmob.c: Likewise.
4517 * guile/scm-lazy-string.c: Likewise.
4518 * guile/scm-math.c: Likewise.
4519 * guile/scm-pretty-print.c: Likewise.
4520 * guile/scm-safe-call.c: Likewise.
4521 * guile/scm-utils.c: Likewise.
4522 * guile/scm-value.c: Likewise.
4523 * h8300-tdep.c: Likewise.
4524 * hppa-hpux-nat.c: Likewise.
4525 * hppa-tdep.c: Likewise.
4526 * hppanbsd-tdep.c: Likewise.
4527 * hppaobsd-tdep.c: Likewise.
4528 * i386-darwin-nat.c: Likewise.
4529 * i386-darwin-tdep.c: Likewise.
4530 * i386-nto-tdep.c: Likewise.
4531 * i386-tdep.c: Likewise.
4532 * i386bsd-nat.c: Likewise.
4533 * i386fbsd-tdep.c: Likewise.
4534 * i386gnu-nat.c: Likewise.
4535 * i386nbsd-tdep.c: Likewise.
4536 * i386obsd-tdep.c: Likewise.
4537 * i387-tdep.c: Likewise.
4538 * ia64-libunwind-tdep.c: Likewise.
4539 * ia64-tdep.c: Likewise.
4540 * inf-ptrace.c: Likewise.
4541 * inf-ttrace.c: Likewise.
4542 * infcall.c: Likewise.
4543 * infcmd.c: Likewise.
4544 * infrun.c: Likewise.
4545 * inline-frame.c: Likewise.
4546 * interps.c: Likewise.
4547 * jv-lang.c: Likewise.
4548 * jv-typeprint.c: Likewise.
4549 * linux-fork.c: Likewise.
4550 * linux-nat.c: Likewise.
4551 * linux-thread-db.c: Likewise.
4552 * m32c-tdep.c: Likewise.
4553 * m32r-linux-nat.c: Likewise.
4554 * m32r-tdep.c: Likewise.
4555 * m68k-tdep.c: Likewise.
4556 * m68kbsd-nat.c: Likewise.
4557 * m68kbsd-tdep.c: Likewise.
4558 * m88k-tdep.c: Likewise.
4559 * machoread.c: Likewise.
4560 * macroexp.c: Likewise.
4561 * macrotab.c: Likewise.
4562 * maint.c: Likewise.
4563 * mdebugread.c: Likewise.
4564 * memory-map.c: Likewise.
4565 * mep-tdep.c: Likewise.
4566 * mi/mi-common.c: Likewise.
4567 * microblaze-tdep.c: Likewise.
4568 * mingw-hdep.c: Likewise.
4569 * mips-linux-nat.c: Likewise.
4570 * mips-linux-tdep.c: Likewise.
4571 * mips-tdep.c: Likewise.
4572 * mips64obsd-tdep.c: Likewise.
4573 * mipsnbsd-tdep.c: Likewise.
4574 * mn10300-linux-tdep.c: Likewise.
4575 * mn10300-tdep.c: Likewise.
4576 * moxie-tdep.c: Likewise.
4577 * mt-tdep.c: Likewise.
4578 * nat/linux-btrace.c: Likewise.
4579 * nat/linux-osdata.c: Likewise.
4580 * nat/linux-ptrace.c: Likewise.
4581 * nat/mips-linux-watch.c: Likewise.
4582 * nios2-linux-tdep.c: Likewise.
4583 * nios2-tdep.c: Likewise.
4584 * objc-lang.c: Likewise.
4585 * objfiles.c: Likewise.
4586 * obsd-nat.c: Likewise.
4587 * opencl-lang.c: Likewise.
4588 * osabi.c: Likewise.
4589 * parse.c: Likewise.
4590 * ppc-linux-nat.c: Likewise.
4591 * ppc-sysv-tdep.c: Likewise.
4592 * ppcfbsd-nat.c: Likewise.
4593 * ppcfbsd-tdep.c: Likewise.
4594 * ppcnbsd-nat.c: Likewise.
4595 * ppcnbsd-tdep.c: Likewise.
4596 * ppcobsd-nat.c: Likewise.
4597 * ppcobsd-tdep.c: Likewise.
4598 * printcmd.c: Likewise.
4599 * procfs.c: Likewise.
4600 * prologue-value.c: Likewise.
4601 * psymtab.c: Likewise.
4602 * python/py-lazy-string.c: Likewise.
4603 * python/py-value.c: Likewise.
4604 * regcache.c: Likewise.
4605 * reggroups.c: Likewise.
4606 * registry.c: Likewise.
4607 * remote-sim.c: Likewise.
4608 * remote.c: Likewise.
4609 * rs6000-aix-tdep.c: Likewise.
4610 * rs6000-tdep.c: Likewise.
4611 * s390-linux-tdep.c: Likewise.
4612 * score-tdep.c: Likewise.
4613 * ser-base.c: Likewise.
4614 * ser-mingw.c: Likewise.
4615 * sh-tdep.c: Likewise.
4616 * sh64-tdep.c: Likewise.
4617 * solib-darwin.c: Likewise.
4618 * solib-spu.c: Likewise.
4619 * solib-svr4.c: Likewise.
4620 * source.c: Likewise.
4621 * sparc-nat.c: Likewise.
4622 * sparc-sol2-tdep.c: Likewise.
4623 * sparc-tdep.c: Likewise.
4624 * sparc64-sol2-tdep.c: Likewise.
4625 * sparc64-tdep.c: Likewise.
4626 * sparc64fbsd-tdep.c: Likewise.
4627 * sparc64nbsd-tdep.c: Likewise.
4628 * sparc64obsd-tdep.c: Likewise.
4629 * sparcnbsd-tdep.c: Likewise.
4630 * sparcobsd-tdep.c: Likewise.
4631 * spu-multiarch.c: Likewise.
4632 * spu-tdep.c: Likewise.
4633 * stabsread.c: Likewise.
4634 * stack.c: Likewise.
4635 * symfile.c: Likewise.
4636 * symtab.c: Likewise.
4637 * target-descriptions.c: Likewise.
4638 * target-memory.c: Likewise.
4639 * target.c: Likewise.
4640 * tic6x-linux-tdep.c: Likewise.
4641 * tic6x-tdep.c: Likewise.
4642 * tilegx-linux-nat.c: Likewise.
4643 * tilegx-tdep.c: Likewise.
4644 * top.c: Likewise.
4645 * tramp-frame.c: Likewise.
4646 * tui/tui-out.c: Likewise.
4647 * tui/tui-winsource.c: Likewise.
4648 * ui-out.c: Likewise.
4649 * user-regs.c: Likewise.
4650 * utils.c: Likewise.
4651 * v850-tdep.c: Likewise.
4652 * valops.c: Likewise.
4653 * value.c: Likewise.
4654 * varobj.c: Likewise.
4655 * vax-nat.c: Likewise.
4656 * xml-syscall.c: Likewise.
4657 * xml-tdesc.c: Likewise.
4658 * xstormy16-tdep.c: Likewise.
4659 * xtensa-linux-nat.c: Likewise.
4660 * xtensa-tdep.c: Likewise.
4661
4662 2014-08-07 Gary Benson <gbenson@redhat.com>
4663
4664 * common/common-defs.h: Include common-utils.h.
4665 * defs.h: Do not include common-utils.h.
4666 * common/gdb_assert.h: Likewise.
4667 * darwin-nat.h: Likewise.
4668 * nat/linux-btrace.c: Likewise.
4669 * target/waitstatus.h: Likewise.
4670
4671 2014-08-07 Gary Benson <gbenson@redhat.com>
4672
4673 * common/common-defs.h: Include ptid.h.
4674 * defs.h: Do not include ptid.h.
4675 * inferior.h: Likewise.
4676 * infrun.h: Likewise.
4677 * nat/linux-btrace.h: Likewise.
4678 * nat/linux-osdata.h: Likewise.
4679 * target/waitstatus.h: Likewise.
4680
4681 2014-08-07 Gary Benson <gbenson@redhat.com>
4682
4683 * common/common-defs.h: Include gdb_locale.h.
4684 * defs.h: Do not include gdb_locale.h.
4685
4686 2014-08-07 Gary Benson <gbenson@redhat.com>
4687
4688 * common/common-defs.h: Include gdb/signals.h.
4689 * defs.h: Do not include gdb/signals.h.
4690
4691 2014-08-07 Gary Benson <gbenson@redhat.com>
4692
4693 * common/common-defs.h: Include pathmax.h.
4694 * defs.h: Do not include pathmax.h.
4695
4696 2014-08-07 Gary Benson <gbenson@redhat.com>
4697
4698 * common/common-defs.h: Include libiberty.h.
4699 * defs.h: Do not include libiberty.h.
4700 * common/queue.h: Likewise.
4701 * cp-name-parser.y: Likewise.
4702 * mi/mi-cmd-catch.c: Likewise.
4703 * python/python.c: Likewise.
4704
4705 2014-08-07 Gary Benson <gbenson@redhat.com>
4706
4707 * common/common-defs.h: Include ansidecl.h.
4708 * defs.h: Do not include ansidecl.h.
4709 * common/buffer.h: Likewise.
4710 * common/common-utils.h: Likewise.
4711
4712 2014-08-07 Gary Benson <gbenson@redhat.com>
4713
4714 * common/common-defs.h: Include stddef.h.
4715 * defs.h: Do not include stddef.h.
4716 * common/common-utils.h: Likewise.
4717 * amd64fbsd-nat.c: Likewise.
4718 * bcache.c: Likewise.
4719 * charset.c: Likewise.
4720 * common/buffer.h: Likewise.
4721 * common/vec.h: Likewise.
4722 * i386bsd-nat.c: Likewise.
4723 * nat/linux-btrace.h: Likewise.
4724 * ppcfbsd-nat.c: Likewise.
4725 * ppcnbsd-tdep.h: Likewise.
4726 * ppcobsd-nat.c: Likewise.
4727 * ppcobsd-tdep.h: Likewise.
4728 * python/py-gdb-readline.c: Likewise.
4729
4730 2014-08-07 Gary Benson <gbenson@redhat.com>
4731
4732 * common/common-defs.h: Include stdarg.h.
4733 * defs.h: Do not include stdarg.h.
4734 * ada-lang.c: Likewise.
4735 * common/common-utils.h: Likewise.
4736 * guile/scm-string.c: Likewise.
4737 * guile/scm-utils.c: Likewise.
4738 * m32c-tdep.c: Likewise.
4739
4740 2014-08-07 Gary Benson <gbenson@redhat.com>
4741
4742 * common/common-defs.h: Include stdlib.h.
4743 * defs.h: Do not include stdlib.h.
4744 * addrmap.c: Likewise.
4745 * bcache.c: Likewise.
4746 * common/buffer.c: Likewise.
4747 * common/common-utils.c: Likewise.
4748 * cp-name-parser.y: Likewise.
4749 * go32-nat.c: Likewise.
4750 * mn10300-linux-tdep.c: Likewise.
4751 * nat/linux-osdata.c: Likewise.
4752 * tui/tui.c: Likewise.
4753 * windows-nat.c: Likewise.
4754
4755 2014-08-07 Gary Benson <gbenson@redhat.com>
4756
4757 * common/common-defs.h: Include stdio.h.
4758 * defs.h: Do not include stdio.h.
4759 * ada-lang.c: Likewise.
4760 * common/buffer.c: Likewise.
4761 * common/common-utils.c: Likewise.
4762 * cp-name-parser.y: Likewise.
4763 * gnu-nat.c: Likewise.
4764 * go32-nat.c: Likewise.
4765 * i386gnu-nat.c: Likewise.
4766 * proc-api.c: Likewise.
4767 * proc-events.c: Likewise.
4768 * proc-flags.c: Likewise.
4769 * proc-why.c: Likewise.
4770 * python/python-internal.h: Likewise.
4771 * target-memory.c: Likewise.
4772 * tui/tui-io.c: Likewise.
4773 * tui/tui.c: Likewise.
4774
4775 2014-08-06 Simon Marchi <simon.marchi@ericsson.com>
4776
4777 * solib-svr4.c (scan_dyntag): Rename dyntag and dyn_tag variables.
4778 (scan_dyntag_auxv): Same.
4779
4780 2014-08-06 Yao Qi <yao@codesourcery.com>
4781
4782 * amd64-linux-nat.c: Remove duplicated include
4783 "x86-linux-nat.h".
4784 * i386-linux-nat.c: Likewise.
4785
4786 2014-08-06 Yao Qi <yao@codesourcery.com>
4787
4788 * dwarf2read.c (dwarf_decode_lines_1): Replace "Special
4789 operand" with "Special opcode" in comments.
4790
4791 2014-08-05 Gary Benson <gbenson@redhat.com>
4792
4793 * interps.c (initialize_interps): Remove prototype.
4794 (interpreter_initialized): Remove static global.
4795 (interp_add): Do not call initialize_interps.
4796 (initialize_interps): Remove function.
4797
4798 2014-08-05 Gary Benson <gbenson@redhat.com>
4799
4800 * utils.c (vwarning): Remove spurious va_end.
4801
4802 2014-08-05 Alan Modra <amodra@gmail.com>
4803
4804 * charset.c (convert_between_encodings): Cast result of obstack_base.
4805 * cp-valprint.c (cp_print_value_fields): Use size_t locals.
4806 * hppa-tdep.c (internalize_unwinds): Change "size" parm to size_t.
4807 (read_unwind_info): Use size_t for some locals.
4808 * jit.c (finalize_symtab): Likewise.
4809 * utils.c (hashtab_obstack_allocate): Likewise.
4810 * symmisc.c (print_objfile_statistics): Update format strings.
4811
4812 2014-08-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4813
4814 * NEWS (Changes in GDB-4.0): Move Intel MPX and Intel AVX-512 items ...
4815 (Changes in GDB 7.8): ... here.
4816
4817 2014-08-04 Tom Tromey <tromey@redhat.com>
4818
4819 * target.c (set_targetdebug): New function.
4820 (initialize_targets): Pass set_targetdebug when creating "set
4821 debug target".
4822
4823 2014-08-01 Joel Brobecker <brobecker@adacore.com>
4824
4825 * gdbtypes.c (resolve_dynamic_struct): Do not generate an error
4826 if detecting a variable-sized field that is not the last field.
4827 Fix struct type length computation.
4828
4829 2014-08-01 Joel Brobecker <brobecker@adacore.com>
4830
4831 * amd64-windows-tdep.c (amd64_windows_frame_decode_insns):
4832 Add debug trace.
4833
4834 2014-08-01 Joel Brobecker <brobecker@adacore.com>
4835
4836 * amd64-windows-tdep.c (amd64_windows_frame_decode_insns):
4837 Remove "+ 8" offset in computation of CHAIN_VMA.
4838
4839 2014-07-31 Doug Evans <dje@google.com>
4840
4841 * inflow.c (child_terminal_inferior): Add comment.
4842 (child_terminal_ours_for_output): Add comment.
4843 (child_terminal_ours): Add comment.
4844 * linux-nat.c (linux_nat_terminal_inferior): Add comment.
4845 (linux_nat_terminal_ours): Add comment.
4846
4847 2014-07-31 Gary Benson <gbenson@redhat.com>
4848
4849 * common/btrace-common.h: Do not include defs.h or server.h.
4850 * nat/mips-linux-watch.h: Likewise.
4851 * gdb-dlfcn.h: Do not include defs.h.
4852 * tracefile.h: Likewise.
4853
4854 2014-07-30 Roland McGrath <mcgrathr@google.com>
4855
4856 * remote-sim.c (gdbsim_open): Apply constification to forward decl.
4857
4858 2014-07-30 Tom Tromey <tromey@redhat.com>
4859
4860 * bsd-kvm.c (bsd_kvm_open): Constify.
4861 * corelow.c (core_open): Constify.
4862 * ctf.c (ctf_open): Constify.
4863 * dbug-rom.c (dbug_open): Constify.
4864 * exec.c (exec_open): Constify.
4865 * m32r-rom.c (m32r_open, mon2000_open): Constify.
4866 * microblaze-rom.c (picobug_open): Constify.
4867 * nto-procfs.c (procfs_open_1, procfs_open, procfs_native_open):
4868 Constify.
4869 * ppcbug-rom.c (ppcbug_open0, ppcbug_open1): Constify.
4870 * record-btrace.c (record_btrace_open): Constify.
4871 * record-full.c (record_full_core_open_1, record_full_open_1)
4872 (record_full_open): Constify.
4873 * remote-m32r-sdi.c (m32r_open): Constify.
4874 * remote-mips.c (common_open, mips_open, pmon_open, ddb_open)
4875 (rockhopper_open, lsi_open): Constify.
4876 * remote-sim.c (gdbsim_open): Constify.
4877 * remote.c (remote_open, extended_remote_open, remote_open_1):
4878 Constify.
4879 * target.h (struct target_ops) <to_open>: Make "arg" const.
4880 * tracefile-tfile.c (tfile_open): Constify.
4881
4882 2014-07-30 Tom Tromey <tromey@redhat.com>
4883
4884 * breakpoint.c (map_breakpoint_numbers): Update.
4885 * cli/cli-utils.c (get_number_trailer): Make "pp" const. Update.
4886 (get_number_const): New function.
4887 (get_number): Rewrite using get_number_const.
4888 (init_number_or_range): Make "string" const.
4889 (number_is_in_list): Make "list" const.
4890 * cli/cli-utils.h (get_number_const): Declare.
4891 (struct get_number_or_range_state) <string, end_ptr>: Now const.
4892 (init_number_or_range, number_is_in_list): Update.
4893 * printcmd.c (map_display_numbers): Update.
4894 * value.c (value_from_history_ref): Constify.
4895 * value.h (value_from_history_ref): Update.
4896
4897 2014-07-30 Tom Tromey <tromey@redhat.com>
4898
4899 * corefile.c (hook_type, call_extra_exec_file_hooks)
4900 (specify_exec_file_hook): Constify.
4901 * exec.c (exec_file_attach): Make "filename" const.
4902 * gdbcore.h (deprecated_exec_file_display_hook)
4903 (specify_exec_file_hook, exec_file_attach): Constify.
4904 * main.c (captured_main): Use catch_command_errors_const.
4905
4906 2014-07-30 Tom Tromey <tromey@redhat.com>
4907
4908 * target.c (open_target): New function.
4909 (add_target_with_completer, add_deprecated_target_alias): Use
4910 set_cmd_sfunc, set_cmd_context.
4911 (debug_to_open): Remove.
4912 (setup_target_debug): Update.
4913
4914 2014-07-30 Yao Qi <yao@codesourcery.com>
4915
4916 * parser-defs.h (struct exp_descriptor) <operator_check>: Update
4917 comments.
4918 * parse.c (exp_iterate): Update comments.
4919
4920 2014-07-30 Gary Benson <gbenson@redhat.com>
4921
4922 * common/common-defs.h: New file.
4923 * Makefile.in (HFILES_NO_SRCDIR): Add common/common-defs.h.
4924 * defs.h: Include common-defs.h.
4925 Do not include config.h or build-gnulib/config.h.
4926
4927 2014-07-30 Gary Benson <gbenson@redhat.com>
4928
4929 * common/common-utils.h: Do not include config.h.
4930 * nat/linux-btrace.h: Likewise.
4931
4932 2014-07-30 Gary Benson <gbenson@redhat.com>
4933
4934 * btrace.c: Include defs.h.
4935 * common/ptid.c: Include defs.h or server.h as appropriate.
4936 * nat/mips-linux-watch.c: Likewise.
4937
4938 2014-07-29 Tom Tromey <tromey@redhat.com>
4939
4940 * target.c (target_is_pushed): Simplify.
4941
4942 2014-07-29 Joel Brobecker <brobecker@adacore.com>
4943
4944 GDB 7.8 released.
4945
4946 2014-07-29 Yao Qi <yao@codesourcery.com>
4947
4948 PR gdb/17206
4949 * infcmd.c (until_next_command): Set step_range_end to PC + 1.
4950
4951 2014-07-28 Doug Evans <xdje42@gmail.com>
4952
4953 PR guile/17203
4954 * guile/scm-param.c (pascm_parameter_defined_p): New function.
4955 (gdbscm_register_parameter_x): Call it. Raise error for pre-existing
4956 parameters.
4957
4958 2014-07-28 Will Newton <will.newton@linaro.org>
4959
4960 * arm-linux-tdep.c (THUMB2_SET_R7_SIGRETURN1): New define.
4961 (THUMB2_SET_R7_SIGRETURN2): Likewise.
4962 (THUMB2_SET_R7_RT_SIGRETURN1): Likewise.
4963 (THUMB2_SET_R7_RT_SIGRETURN2): Likewise.
4964 (THUMB2_EABI_SYSCALL): Likewise.
4965 (thumb2_eabi_linux_sigreturn_tramp_frame): Create new
4966 struct tramp_frame.
4967 (thumb2_eabi_linux_rt_sigreturn_tramp_frame): Likewise.
4968 (arm_linux_init_abi): Add Thumb2 tramp frame unwinders.
4969
4970 2014-07-27 Doug Evans <xdje42@gmail.com>
4971
4972 * guile/scm-param.c (pascm_print_param_smob): Fix output.
4973
4974 2014-07-27 Doug Evans <xdje42@gmail.com>
4975
4976 * guile/guile.c (gdbscm_execute_gdb_command): Fix typo in comment.
4977
4978 2014-07-26 Ludovic Courtès <ludo@gnu.org>
4979 Doug Evans <xdje42@gmail.com>
4980
4981 PR guile/17146
4982 * acinclude.m4 (GDB_GUILE_PROGRAM_NAMES): New macro.
4983 (GDB_GUILD_TARGET_FLAG, GDB_TRY_GUILD): New macros.
4984 * configure.ac: Try to use guild to compile an scm file, if it fails
4985 then disable guile support.
4986 * configure: Regenerate.
4987 * data-directory/Makefile.in (GUILE_SOURCE_FILES): Renamed from
4988 GUILE_FILE_LIST.
4989 (GUILE_COMPILED_FILES): New variable.
4990 (GUILE_FILES) Update.
4991 (GUILD, GUILD_TARGET_FLAG, GUILD_COMPILE_FLAGS): New variables.
4992 (stamp-guile): Compile scm files.
4993 * guile/guile.c (boot_guile_support): New function.
4994 (standard_throw_args_p): New function.
4995 (print_standard_throw_error, print_throw_error): New functions.
4996 (handle_boot_error): New function.
4997 (initialize_scheme_side): Rewrite to call boot_guile_support.
4998 * guile/lib/gdb/boot.scm: Update %load-compiled-path. Load gdb.go.
4999 * guile/lib/gdb/init.scm (%silence-compiler-warnings%): New function.
5000
5001 2014-07-26 Ludovic Courtès <ludo@gnu.org>
5002 Doug Evans <xdje42@gmail.com>
5003
5004 PR guile/17146
5005 * data-directory/Makefile.in (GUILE_FILES): Add support.scm.
5006 * guile/lib/gdb/support.scm: New file.
5007 * guile/guile.c (gdbscm_init_module_name): Change to "gdb".
5008 * guile/lib/gdb.scm: Load gdb/init.scm as an include file.
5009 All uses updated.
5010 * guile/lib/gdb/init.scm (SCM_ARG1, SCM_ARG2): Moved to support.scm.
5011 All uses updated.
5012 (%assert-type): Ditto, and renamed to assert-type.
5013 (%exception-print-style): Delete.
5014
5015 2014-07-26 Doug Evans <xdje42@gmail.com>
5016
5017 PR build/17105
5018 * configure.ac: Add AM_CONDITIONALs for HAVE_PYTHON, HAVE_GUILE.
5019 * configure: Regenerate.
5020 * data-directory/Makefile.in (PYTHON_FILE_LIST): Renamed from
5021 PYTHON_FILES.
5022 (PYTHON_FILES): New variable.
5023 (GUILE_FILE_LIST): Renamed from GUILE_FILES.
5024 (GUILE_FILES): New variable.
5025 (stamp-python, install-python, uninstall-python): Handle empty
5026 file list.
5027 (stamp-guile, install-guile, uninstall-guile): Ditto.
5028
5029 2014-07-26 Doug Evans <xdje42@gmail.com>
5030
5031 PR guile/17177
5032 * guile/lib/gdb.scm (pretty-printers): Export.
5033 (set-pretty-printers!): Export.
5034 * guile/lib/gdb/printing.scm (gdb module): Update.
5035 (prepend-pretty-printer!, append-pretty-printer!): Update.
5036 * guile/scm-pretty-print.c (pretty_printer_list_name): Delete.
5037 (pretty_printer_list_var): Delete.
5038 (pretty_printer_list): New static global.
5039 (gdbscm_pretty_printers): New function.
5040 (gdbscm_set_pretty_printers_x): New function.
5041 (ppscm_find_pretty_printer_from_gdb): Update.
5042 (pretty_printer_functions): Add pretty-printers, set-pretty-printers!.
5043 (gdbscm_initialize_pretty_printers): Update.
5044
5045 2014-07-26 Doug Evans <xdje42@gmail.com>
5046
5047 PR 17185
5048 * configure.ac: Add check for header gc/gc.h.
5049 Add check for function setenv.
5050 * configure: Regenerate.
5051 * config.in: Regenerate.
5052 * guile/guile.c (_initialize_guile): Add workaround for libgc 7.4.0.
5053
5054 2014-07-25 Maciej W. Rozycki <macro@codesourcery.com>
5055
5056 * mips-tdep.c (mips_gdbarch_init): Also check the compressed ISA
5057 variation in gdbarch matching.
5058
5059 2014-07-25 Tom Tromey <tromey@redhat.com>
5060
5061 * exec.c (using_exec_ops): Remove.
5062 (exec_close_1): Update. Remove extraneous block, reindent.
5063 (add_target_sections): Use target_is_pushed.
5064
5065 2014-07-25 Pedro Alves <palves@redhat.com>
5066
5067 * go32-nat.c (go32_create_inferior): Pass 0 to clear_proceed_status.
5068 * monitor.c (monitor_create_inferior): Likewise.
5069 * remote-m32r-sdi.c (m32r_create_inferior): Likewise.
5070 * remote-sim.c (gdbsim_create_inferior): Likewise.
5071 * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
5072 * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
5073 * windows-nat.c (do_initial_windows_stuff): Likewise.
5074
5075 2014-07-25 Pedro Alves <palves@redhat.com>
5076
5077 * NEWS: Mention signal passing and "signal" command changes.
5078 * gdbthread.h (struct thread_suspend_state) <stop_signal>: Extend
5079 comment.
5080 * breakpoint.c (until_break_command): Adjust clear_proceed_status
5081 call.
5082 * infcall.c (run_inferior_call): Adjust clear_proceed_status call.
5083 * infcmd.c (proceed_thread_callback, continue_1, step_once)
5084 (jump_command): Adjust clear_proceed_status call.
5085 (signal_command): Warn if other thread that are resumed have
5086 signals that will be delivered. Adjust clear_proceed_status call.
5087 (until_next_command, finish_command)
5088 (proceed_after_attach_callback, attach_command_post_wait)
5089 (attach_command): Adjust clear_proceed_status call.
5090 * infrun.c (proceed_after_vfork_done): Likewise.
5091 (proceed_after_attach_callback): Adjust comment.
5092 (clear_proceed_status_thread): Clear stop_signal if not in pass
5093 state.
5094 (clear_proceed_status_callback): Delete.
5095 (clear_proceed_status): New 'step' parameter. Only clear the
5096 proceed status of threads the command being prepared is about to
5097 resume.
5098 (proceed): If passed in an explicit signal, override stop_signal
5099 with it. Don't pass the last stop signal to the thread we're
5100 resuming.
5101 (init_wait_for_inferior): Adjust clear_proceed_status call.
5102 (switch_back_to_stepped_thread): Clear the signal if it should not
5103 be passed.
5104 * infrun.h (clear_proceed_status): New 'step' parameter.
5105 (user_visible_resume_ptid): Add comment.
5106 * linux-nat.c (linux_nat_resume_callback): Don't check whether the
5107 signal is in pass state.
5108 * remote.c (append_pending_thread_resumptions): Likewise.
5109 * mi/mi-main.c (proceed_thread): Adjust clear_proceed_status call.
5110
5111 2014-07-25 Tom Tromey <tromey@redhat.com>
5112
5113 * target.h (target_stopped_data_address)
5114 (target_watchpoint_addr_within_range): Use "->", not ".". Fix
5115 parentheses.
5116
5117 2014-07-25 Pierre Langlois <pierre.langlois@embecosm.com>
5118
5119 * avr-tdep.c (avr_address_to_pointer): Clarify the conversion in the
5120 comments.
5121 (avr_pointer_to_address): Likewise.
5122
5123 2014-07-24 Tom Tromey <tromey@redhat.com>
5124
5125 * monitor.c (compile_pattern): Update.
5126 * target.h (struct target_ops) <to_shortname, to_longname,
5127 to_doc>: Now const.
5128
5129 2014-07-24 Tom Tromey <tromey@redhat.com>
5130
5131 * cli/cli-decode.c (add_cmd, add_prefix_cmd)
5132 (add_abbrev_prefix_cmd, add_set_or_show_cmd, add_info)
5133 (add_info_alias, add_com): Make "doc" const.
5134 (print_doc_line): Make "str" const.
5135 (delete_cmd): Update.
5136 * cli/cli-decode.h (struct cmd_list_element) <doc>: Now const.
5137 (print_doc_line): Update.
5138 * cli/cli-script.c (document_command): Update.
5139 * command.h (add_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
5140 (add_com, add_info, add_info_alias): Update.
5141 * guile/scm-cmd.c (cmdscm_destroyer): Update.
5142 * python/py-cmd.c (cmdpy_destroyer): Update.
5143
5144 2014-07-24 Tom Tromey <tromey@redhat.com>
5145
5146 * cli/cli-decode.c (print_help_for_command): Make "prefix" const.
5147 (add_prefix_cmd, add_abbrev_prefix_cmd, apropos_cmd, help_list)
5148 (help_cmd_list): Constify.
5149 (lookup_cmd): Update.
5150 * cli/cli-decode.h (struct cmd_list_element) <prefixname>: Now
5151 const.
5152 (help_cmd_list, apropos_cmd): Update.
5153 * cli/cli-script.c (show_user): Update.
5154 * cli/cli-setshow.c (cmd_show_list): Make "prefix" const.
5155 * cli/cli-setshow.h (cmd_show_list): Update.
5156 * command.h (add_prefix_cmd, add_abbrev_prefix_cmd, help_list)
5157 (cmd_show_list): Update.
5158 * guile/scm-cmd.c (cmdscm_destroyer): Update.
5159 * python/py-cmd.c (cmdpy_destroyer): Update.
5160
5161 2014-07-24 Tom Tromey <tromey@redhat.com>
5162
5163 * cli/cli-decode.c (deprecate_cmd): Make "replacement" const.
5164 * cli/cli-decode.h (struct cmd_list_element) <replacement>: Now
5165 const.
5166 * command.h (deprecate_cmd): Update.
5167 * maint.c (maintenance_do_deprecate): Add casts.
5168
5169 2014-07-24 Tom Tromey <tromey@redhat.com>
5170
5171 * cli/cli-decode.c (help_cmd): Make parameter "const".
5172 * cli/cli-decode.h (help_cmd): Update.
5173
5174 2014-07-24 Tom Tromey <tromey@redhat.com>
5175
5176 * stack.c (up_silently_base, down_silently_base): Make argument
5177 const.
5178
5179 2014-07-24 Tom Tromey <tromey@redhat.com>
5180
5181 * solib.c (solib_add): Make "pattern" const.
5182 * solib.h (solib_add): Update.
5183
5184 2014-07-24 Tom Tromey <tromey@redhat.com>
5185
5186 * remote.c (remote_serial_open, print_packet, putpkt)
5187 (putpkt_binary): Constify.
5188 * remote.h (putpkt): Update.
5189
5190 2014-07-24 Tom Tromey <tromey@redhat.com>
5191
5192 * monitor.c (monitor_open): Make "args" const.
5193 * monitor.h (monitor_open): Update.
5194
5195 2014-07-24 Tom Tromey <tromey@redhat.com>
5196
5197 * maint.c (match_bfd_flags): Make "string" const.
5198 (print_bfd_section_info): Remove casts.
5199 (print_objfile_section_info): Make "string" const.
5200
5201 2014-07-24 Tom Tromey <tromey@redhat.com>
5202
5203 * inf-child.c (inf_child_open_target): Make "arg" const.
5204 * inf-child.h (inf_child_open_target): Update.
5205
5206 2014-07-24 Tom Tromey <tromey@redhat.com>
5207
5208 * environ.c (unset_in_environ): Make "var" const.
5209 * environ.h (unset_in_environ): Update.
5210
5211 2014-07-24 Tom Tromey <tromey@redhat.com>
5212
5213 * cli/cli-dump.c (scan_expression_with_cleanup): Return const.
5214 Make "cmd" const.
5215 (scan_filename_with_cleanup): Likewise.
5216 (dump_memory_to_file, dump_value_to_file, restore_binary_file):
5217 Make arguments const.
5218 (restore_command): Update.
5219
5220 2014-07-24 Pedro Alves <palves@redhat.com>
5221
5222 * tui/tui-io.c (tui_prep_terminal): Handle NULL rl_prompt.
5223
5224 2014-07-24 Tom Tromey <tromey@redhat.com>
5225 Gary Benson <gbenson@redhat.com>
5226
5227 * nat/linux-ptrace.c (additional_flags): New global.
5228 (linux_test_for_tracesysgood, linux_test_for_tracefork): Use
5229 additional_flags; don't check GDBSERVER.
5230 (linux_ptrace_set_additional_flags): New function.
5231 * nat/linux-ptrace.h (linux_ptrace_set_additional_flags):
5232 Declare.
5233 * linux-nat.c (_initialize_linux_nat): Call
5234 linux_ptrace_set_additional_flags.
5235
5236 2014-07-24 Tom Tromey <tromey@redhat.com>
5237
5238 * make-target-delegates (munge_type, write_debugmethod): New
5239 functions.
5240 (debug_names): New global.
5241 ($TARGET_DEBUG_PRINTER): New global.
5242 (write_function_header): Strip TARGET_DEBUG_PRINTER from the type
5243 name.
5244 Write debug methods. Generate init_debug_target.
5245 * target-debug.h: New file.
5246 * target-delegates.c: Rebuild.
5247 * target.c: Include target-debug.h.
5248 (debug_target): Hoist definition.
5249 (target_kill, target_get_section_table, target_memory_map)
5250 (target_flash_erase, target_flash_done, target_detach)
5251 (target_disconnect, target_wait, target_resume)
5252 (target_pass_signals, target_program_signals, target_follow_fork)
5253 (target_mourn_inferior, target_search_memory)
5254 (target_thread_address_space, target_close)
5255 (target_find_new_threads, target_core_of_thread)
5256 (target_verify_memory, target_insert_mask_watchpoint)
5257 (target_remove_mask_watchpoint): Remove targetdebug code.
5258 (debug_to_post_attach, debug_to_prepare_to_store)
5259 (debug_to_files_info, debug_to_insert_breakpoint)
5260 (debug_to_remove_breakpoint, debug_to_can_use_hw_breakpoint)
5261 (debug_to_region_ok_for_hw_watchpoint)
5262 (debug_to_can_accel_watchpoint_condition)
5263 (debug_to_stopped_by_watchpoint, debug_to_stopped_data_address)
5264 (debug_to_watchpoint_addr_within_range)
5265 (debug_to_insert_hw_breakpoint, debug_to_remove_hw_breakpoint)
5266 (debug_to_insert_watchpoint, debug_to_remove_watchpoint)
5267 (debug_to_terminal_init, debug_to_terminal_inferior)
5268 (debug_to_terminal_ours_for_output, debug_to_terminal_ours)
5269 (debug_to_terminal_save_ours, debug_to_terminal_info)
5270 (debug_to_load, debug_to_post_startup_inferior)
5271 (debug_to_insert_fork_catchpoint)
5272 (debug_to_remove_fork_catchpoint)
5273 (debug_to_insert_vfork_catchpoint)
5274 (debug_to_remove_vfork_catchpoint)
5275 (debug_to_insert_exec_catchpoint)
5276 (debug_to_remove_exec_catchpoint, debug_to_has_exited)
5277 (debug_to_can_run, debug_to_thread_architecture, debug_to_stop)
5278 (debug_to_rcmd, debug_to_pid_to_exec_file): Remove.
5279 (setup_target_debug): Call init_debug_target.
5280 * target.h (TARGET_DEBUG_PRINTER): New macro.
5281 (struct target_ops) <to_resume, to_wait, to_pass_signals,
5282 to_program_signals>: Use TARGET_DEBUG_PRINTER.
5283
5284 2014-07-24 Gary Benson <gbenson@redhat.com>
5285
5286 * exceptions.h (throw_vfatal): Renamed to...
5287 (throw_vquit): New declaration.
5288 (throw_quit): Likewise.
5289 * exceptions.c (throw_vfatal): Renamed to...
5290 (throw_vquit): New function.
5291 (throw_quit): Likewise.
5292 (throw_error): Call throw_verror rather than throw_it.
5293 * utils.h (vfatal): Removed.
5294 (fatal): Likewise.
5295 * utils.c (vfatal): Removed.
5296 (fatal): Likewise.
5297 (internal_verror): Replaced call to fatal with call to throw_quit.
5298 (quit): Replaced calls to fatal with calls to throw_quit.
5299
5300 2014-07-23 Ajit Agarwal <ajitkum@xilinx.com>
5301
5302 * microblaze-tdep.c (microblaze_fetch_instruction): Use of
5303 target_read_code.
5304
5305 2014-07-23 Chen Gang <gang.chen.5i5j@gmail.com>
5306
5307 * microblaze-tdep.c (microblaze_dwarf2_reg_to_regnum): Check whether
5308 less than zero in conditional expression.
5309
5310 2014-07-23 Tom Tromey <tromey@redhat.com>
5311
5312 * make-target-delegates ($ARGS_PART): Match trailing close paren.
5313 ($INTRO_PART): Don't match whitespace.
5314 ($METHOD_TRAILER): Move earlier. Remove trailing semicolon and
5315 argument matching.
5316 ($METHOD): Add $METHOD_TRAILER.
5317 (trim): Rewrite.
5318 (scan_target_h): New sub.
5319 Change main loop not to collect state.
5320 * target-delegates.c: Rebuild.
5321
5322 2014-07-23 Gary Benson <gbenson@redhat.com>
5323
5324 * cp-support.c (gdb_demangle): Fix build on systems without
5325 sigaltstack.
5326
5327 2014-07-22 Jan Kratochvil <jan.kratochvil@redhat.com>
5328
5329 * dwarf2loc.c (value_of_dwarf_reg_entry): Remove setting value address
5330 for reference entry value target data value.
5331
5332 2014-07-22 Jan Kratochvil <jan.kratochvil@redhat.com>
5333
5334 * stack.c (read_frame_arg): Verify value_optimized_out before calling
5335 value_available_contents_eq.
5336
5337 2014-07-22 Pedro Alves <palves@redhat.com>
5338
5339 * value.c (allocate_optimized_out_value): Don't mark value as
5340 non-lazy.
5341
5342 2014-07-22 Jiong Wang <jiong.wang@arm.com>
5343
5344 * MAINTAINERS (Write After Approval): Update my email address.
5345
5346 2014-07-20 Doug Evans <dje@google.com>
5347
5348 PR server/17147
5349 * remote.c (putpkt_binary): Add text to error message.
5350
5351 2014-07-20 Yao Qi <yao@codesourcery.com>
5352
5353 * eval.c: Remove "Chill" from comments.
5354 * gdbtypes.h: Likewise.
5355 * symtab.h: Likewise.
5356
5357 2014-07-20 Yao Qi <yao@codesourcery.com>
5358
5359 * std-operator.def: Update comments to TERNOP_SLICE.
5360
5361 2014-07-20 Yao Qi <yao@codesourcery.com>
5362
5363 * std-operator.def: Remove BINOP_RANGE.
5364 * breakpoint.c (watchpoint_exp_is_const): Update.
5365 * expprint.c (dump_subexp_body_standard): Likewise.
5366 * eval.c (init_array_element): Remove dead code.
5367 (evaluate_subexp_standard): Likewise.
5368
5369 2014-07-20 Yao Qi <yao@codesourcery.com>
5370
5371 * std-operator.def: Remove BINOP_IN.
5372 * breakpoint.c (watchpoint_exp_is_const): Update.
5373 * eval.c (evaluate_subexp_standard): Likewise.
5374 * expprint.c (dump_subexp_body_standard): Likewise.
5375
5376 2014-07-19 Ajit Agarwal <ajitkum@xilinx.com>
5377
5378 * microblaze-tdep.c (microblaze_register_names): Add
5379 the rshr and rslr register names.
5380 (microblaze_gdbarch_init): Use of tdesc_has_registers.
5381 Use of tdesc_find_feature. Use of tdesc_data_alloc.
5382 Use of tdesc_numbered_register. Use of
5383 microblaze_register_g_packet_guesses. Use of
5384 tdesc_use_registers. Use of set_gdbarch_register_type.
5385 (microblaze_register_g_packet_guesses): New.
5386 * microblaze-tdep.h (microblaze_reg_num): Add
5387 field MICROBLAZE_SLR_REGNUM MICROBLAZE_SHR_REGNUM
5388 MICROBLAZE_NUM_REGS and MICROBLAZE_NUM_CORE_REGS.
5389 (microblaze_frame_cache): Use of MICROBLAZE_NUM_REGS.
5390 * features/microblaze-core.xml: New file.
5391 * features/microblaze-stack-protect.xml: New file.
5392 * features/microblaze-with-stack-protect.c: New file.
5393 * features/microblaze-with-stack-protect.xml: New file.
5394 * features/microblaze.xml: New file.
5395 * features/microblaze.c: New file.
5396 * features/Makefile (microblaze-with-stack-protect): Add
5397 microblaze-with-stack-protect microblaze and microblaze-expedite.
5398 * regformats/microblaze-with-stack-protect.dat: New file.
5399 * regformats/microblaze.dat: New file.
5400 * doc/gdb.texinfo (MicroBlaze Features): Added.
5401
5402 2014-07-18 Tom Tromey <tromey@redhat.com>
5403
5404 * exec.c (exec_ops): Now static.
5405 * exec.h (exec_ops): Don't declare.
5406
5407 2014-07-18 Tom Tromey <tromey@redhat.com>
5408
5409 * spu-multiarch.c (spu_region_ok_for_hw_watchpoint): Pass "self"
5410 to find_target_beneath.
5411 * ravenscar-thread.c (ravenscar_prepare_to_store): Pass "ops" to
5412 find_target_beneath.
5413 (ravenscar_mourn_inferior): Pass "self" to find_target_beneath.
5414
5415 2014-07-18 Tom Tromey <tromey@redhat.com>
5416
5417 PR gdb/17130:
5418 * utils.c (quit): Use target_supports_terminal_ours.
5419 * target.h (target_supports_terminal_ours): Declare.
5420 * target.c (target_supports_delete_record): Don't check
5421 to_delete_record against NULL.
5422 (target_supports_terminal_ours): New function.
5423
5424 2014-07-18 Tom Tromey <tromey@redhat.com>
5425
5426 PR gdb/17130:
5427 * spu-multiarch.c (spu_region_ok_for_hw_watchpoint)
5428 (spu_fetch_registers, spu_store_registers, spu_xfer_partial)
5429 (spu_search_memory, spu_mourn_inferior): Simplify delegation.
5430 * linux-thread-db.c (thread_db_pid_to_str): Always delegate.
5431 * windows-nat.c (windows_xfer_partial): Always delegate.
5432 * record-btrace.c (record_btrace_xfer_partial): Simplify
5433 delegation.
5434 (record_btrace_fetch_registers, record_btrace_store_registers)
5435 (record_btrace_prepare_to_store, record_btrace_resume)
5436 (record_btrace_wait, record_btrace_find_new_threads)
5437 (record_btrace_thread_alive): Likewise.
5438 * procfs.c (procfs_xfer_partial): Always delegate.
5439 * corelow.c (core_xfer_partial): Always delegate.
5440 * sol-thread.c (sol_find_new_threads): Simplify delegation.
5441
5442 2014-07-18 Tom Tromey <tromey@redhat.com>
5443
5444 * exec.c (exec_make_note_section): Move earlier.
5445
5446 2014-07-17 Doug Evans <dje@google.com>
5447
5448 PR gdb/17170
5449 * maint.c (count_symtabs_and_blocks): Handle NULL
5450 current_program_space.
5451 (report_command_stats): Check global enabled flag in addition to
5452 recorded enabled flag.
5453 (make_command_stats_cleanup): Handle msg_type == 0, startup.
5454
5455 2014-07-16 Pedro Alves <palves@redhat.com>
5456
5457 * linux-nat.c (kill_callback): Use kill_lwp, not kill.
5458
5459 2014-07-16 Tom Tromey <tromey@redhat.com>
5460
5461 * target.h (struct target_ops) <to_delete_record>: Reformat
5462 comment.
5463
5464 2014-07-16 Tom Tromey <tromey@redhat.com>
5465
5466 * target-delegates.c: Rebuild.
5467
5468 2014-07-15 Pierre Langlois <pierre.langlois@embecosm.com>
5469
5470 * avr-tdep.c (AVR_TYPE_ADDRESS_CLASS_FLASH): New macro.
5471 (AVR_TYPE_INSTANCE_FLAG_ADDRESS_CLASS_FLASH): Likewise.
5472 (avr_address_to_pointer): Check for AVR_TYPE_ADDRESS_CLASS_FLASH.
5473 (avr_pointer_to_address): Likewise.
5474 (avr_address_class_type_flags): New function.
5475 (avr_address_class_type_flags_to_name): Likewise.
5476 (avr_address_class_name_to_type_flags): Likewise.
5477 (avr_gdbarch_init): Set address_class_type_flags,
5478 address_class_type_flags_to_name and
5479 address_class_name_to_type_flags.
5480
5481 2014-07-15 Pedro Alves <palves@redhat.com>
5482
5483 * linux-nat.c (kill_callback): Save errno and work with saved
5484 copy.
5485
5486 2014-07-15 Simon Marchi <simon.marchi@ericsson.com>
5487
5488 * expprint.c (dump_subexp_body_standard): Handle OP_STRING.
5489
5490 2014-07-14 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
5491
5492 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): Report no hardware
5493 breakpoint support correctly.
5494
5495 2014-07-14 Pedro Alves <palves@redhat.com>
5496
5497 * utils.c (prompt_for_continue): Call target_terminal_ours.
5498
5499 2014-07-14 Pedro Alves <palves@redhat.com>
5500
5501 * inf-loop.c (inferior_event_handler): Use TRY_CATCH instead of
5502 catch_errors. Don't re-enable stdin or notify observers where,
5503 and rethrow error.
5504 (fetch_inferior_event_wrapper): Delete.
5505
5506 2014-07-14 Pedro Alves <palves@redhat.com>
5507
5508 PR gdb/17072
5509 * top.c: Include "inf-loop.h".
5510 (struct gdb_readline_wrapper_cleanup) <target_is_async_orig>: New
5511 field.
5512 (gdb_readline_wrapper_cleanup): Make the target async again, if it
5513 was async before.
5514 (gdb_readline_wrapper): Store whether the target is async, and
5515 make it sync.
5516
5517 2014-07-14 Pedro Alves <palves@redhat.com>
5518
5519 PR gdb/17072
5520 * top.c (gdb_readline_wrapper_line): Tweak comment.
5521 (gdb_readline_wrapper_cleanup): If readline is enabled, reinstall
5522 the input handler callback.
5523
5524 2014-07-14 Pedro Alves <palves@redhat.com>
5525
5526 PR gdb/17072
5527 * main.c: Include event-top.h.
5528 (handle_command_errors): New function.
5529 (catch_command_errors, catch_command_errors_const): Use it.
5530
5531 2014-07-14 Pedro Alves <palves@redhat.com>
5532
5533 * exceptions.c (catch_command_errors, catch_command_errors_const):
5534 Moved to main.c.
5535 * exceptions.h (catch_command_errors_ftype)
5536 (catch_command_errors_const_ftype): Moved to main.c.
5537 (catch_command_errors, catch_command_errors_const): Delete
5538 declarations.
5539 * main.c (catch_command_errors_ftype)
5540 (catch_command_errors_const_ftype): Moved here from exceptions.h.
5541 (catch_command_errors, catch_command_errors_const)): Moved here
5542 from exceptions.c and make static.
5543
5544 2014-07-14 Pedro Alves <palves@redhat.com>
5545
5546 * exceptions.c (print_any_exception): Delete.
5547 (catch_exceptions_with_msg): Use exception_print instead of
5548 print_any_exception.
5549 (catch_errors): Use exception_fprintf instead of
5550 print_any_exception.
5551 (catch_command_errors, catch_command_errors_const): Use
5552 exception_print instead of print_any_exception.
5553
5554 2014-07-14 Pedro Alves <palves@redhat.com>
5555
5556 * infcall.c (run_inferior_call): Set 'sync_execution' while
5557 running the inferior call.
5558
5559 2014-07-14 Pedro Alves <palves@redhat.com>
5560
5561 * value.c (value_contents_equal): Delete function.
5562 * value.h (value_contents_equal): Delete declaration.
5563
5564 2014-07-14 Tom Tromey <tromey@redhat.com>
5565
5566 PR exp/17106:
5567 * gdbtypes.c (is_dynamic_type_internal): New function, from
5568 is_dynamic_type.
5569 (is_dynamic_type): Rewrite.
5570 (resolve_dynamic_union): Use resolve_dynamic_type_internal.
5571 (resolve_dynamic_struct): Likewise.
5572 (resolve_dynamic_type_internal): New function, from
5573 resolve_dynamic_type.
5574 (resolve_dynamic_type): Rewrite.
5575
5576 2014-07-14 Tom Tromey <tromey@redhat.com>
5577
5578 * target.c (target_require_runnable): Also check record_stratum.
5579 Update comment.
5580
5581 2014-07-11 Yao Qi <yao@codesourcery.com>
5582
5583 * arm-tdep.c (thumb_analyze_prologue): Break the loop if
5584 thumb_instruction_restores_sp return true.
5585
5586 2014-07-11 Yao Qi <yao@codesourcery.com>
5587
5588 * arm-tdep.c (thumb_instruction_restores_sp): New function.
5589 (thumb_in_function_epilogue_p): Call
5590 thumb_instruction_restores_sp.
5591
5592 2014-07-11 Yao Qi <yao@codesourcery.com>
5593
5594 * arm-tdep.c (thumb_analyze_prologue): Don't match instruction
5595 'add sp, #imm'.
5596 (thumb_in_function_epilogue_p): Don't match 'sub sp, #imm'.
5597
5598 2014-07-11 Gary Benson <gbenson@redhat.com>
5599
5600 * amd64-linux-nat.c (gdbcore.h): Remove include.
5601 (regset.h): Likewise.
5602 (nat/linux-btrace.h): Likewise.
5603 (btrace.h): Likewise.
5604 (gdb_assert.h): Likewise.
5605 (string.h): Likewise.
5606 (sys/uio.h): Likewise.
5607 (sys/debugreg.h): Likewise.
5608 (sys/syscall.h): Likewise.
5609 (sys/procfs.h): Likewise.
5610 (sys/user.h): Likewise.
5611 (asm/ptrace.h): Likewise.
5612 (i386-nat.h): Likewise.
5613 * i386-linux-nat.c (i386-nat.h): Likewise.
5614 (regset.h): Likewise.
5615 (target.h): Likewise.
5616 (linux-nat.h): Likewise.
5617 (nat/linux-btrace.h): Likewise.
5618 (btrace.h): Likewise.
5619 (gdb_assert.h): Likewise.
5620 (string.h): Likewise.
5621 (sys/uio.h): Likewise.
5622 (sys/user.h): Likewise.
5623 (sys/procfs.h): Likewise.
5624 (sys/reg.h): Likewise.
5625 (sys/debugreg.h): Likewise.
5626 (ORIG_EAX): Remove definition.
5627
5628 2014-07-11 Gary Benson <gbenson@redhat.com>
5629
5630 * i386-linux-nat.h: New file.
5631 * x86-linux-nat.h: Likewise.
5632 * x86-linux-nat.c: Likewise.
5633 * Makefile.in (HFILES_NO_SRCDIR): Add the above new headers.
5634 * config/i386/linux.mh (NATDEPFILES): Add x86-linux-nat.o.
5635 * config/i386/linux64.mh (NATDEPFILES): Likewise.
5636 * amd64-linux-nat.c (x86-linux-nat.h): New include.
5637 (PTRACE_GETREGSET): Now in x86-linux-nat.h.
5638 (PTRACE_SETREGSET): Likewise.
5639 (arch_lwp_info): Now in x86-linux-nat.c.
5640 (have_ptrace_getregset): Now in x86-linux-nat.h.
5641 (x86_linux_dr_get): Now in x86-linux-nat.c.
5642 (x86_linux_dr_set): Likewise.
5643 (x86_linux_dr_get_addr): Likewise.
5644 (x86_linux_dr_get_control): Likewise.
5645 (x86_linux_dr_get_status): Likewise.
5646 (update_debug_registers_callback): Likewise.
5647 (x86_linux_dr_set_control): Likewise.
5648 (x86_linux_dr_set_addr): Likewise.
5649 (x86_linux_prepare_to_resume): Likewise.
5650 (x86_linux_new_thread): Likewise.
5651 (x86_linux_new_fork): Likewise.
5652 (x86_linux_get_thread_area): Likewise.
5653 (super_post_startup_inferior): Likewise.
5654 (x86_linux_child_post_startup_inferior): Likewise.
5655 (AMD64_LINUX_USER64_CS): Likewise.
5656 (AMD64_LINUX_X32_DS): Likewise.
5657 (x86_linux_read_description): Likewise.
5658 (x86_linux_enable_btrace): Likewise.
5659 (x86_linux_disable_btrace): Likewise.
5660 (x86_linux_teardown_btrace): Likewise.
5661 (x86_linux_read_btrace): Likewise.
5662 (x86_linux_create_target): Likewise.
5663 (x86_linux_add_target): Likewise.
5664 * i386-linux-nat.c (x86-linux-nat.h): New include.
5665 (PTRACE_GETREGSET): Now in x86-linux-nat.h.
5666 (PTRACE_SETREGSET): Likewise.
5667 (arch_lwp_info): Now in x86-linux-nat.c.
5668 (have_ptrace_getregset): Now in x86-linux-nat.h.
5669 (x86_linux_dr_get): Now in x86-linux-nat.c.
5670 (x86_linux_dr_set): Likewise.
5671 (x86_linux_dr_get_addr): Likewise.
5672 (x86_linux_dr_get_control): Likewise.
5673 (x86_linux_dr_get_status): Likewise.
5674 (update_debug_registers_callback): Likewise.
5675 (x86_linux_dr_set_control): Likewise.
5676 (x86_linux_dr_set_addr): Likewise.
5677 (x86_linux_prepare_to_resume): Likewise.
5678 (x86_linux_new_thread): Likewise.
5679 (x86_linux_new_fork): Likewise.
5680 (x86_linux_get_thread_area): Likewise.
5681 (super_post_startup_inferior): Likewise.
5682 (x86_linux_child_post_startup_inferior): Likewise.
5683 (AMD64_LINUX_USER64_CS): Likewise.
5684 (AMD64_LINUX_X32_DS): Likewise.
5685 (x86_linux_read_description): Likewise.
5686 (x86_linux_enable_btrace): Likewise.
5687 (x86_linux_disable_btrace): Likewise.
5688 (x86_linux_teardown_btrace): Likewise.
5689 (x86_linux_read_btrace): Likewise.
5690 (x86_linux_create_target): Likewise.
5691 (x86_linux_add_target): Likewise.
5692
5693 2014-07-11 Gary Benson <gbenson@redhat.com>
5694
5695 * amd64-linux-nat.c: Comment and whitespace changes.
5696 * i386-linux-nat.c: Comment and whitespace changes.
5697
5698 2014-07-11 Gary Benson <gbenson@redhat.com>
5699
5700 * amd64-linux-nat.c (x86_linux_create_target): New function.
5701 (x86_linux_add_target): Likewise.
5702 (_initialize_amd64_linux_nat): Delegate to the above new functions.
5703 * i386-linux-nat.c (x86_linux_create_target): New function.
5704 (x86_linux_add_target): Likewise.
5705 (_initialize_i386_linux_nat): Delegate to the above new functions.
5706
5707 2014-07-11 Gary Benson <gbenson@redhat.com>
5708
5709 * amd64-linux-nat.c (x86_linux_get_thread_area): New function.
5710 (ps_get_thread_area): Delegate to the above in 32-bit mode.
5711 * i386-linux-nat.c (x86_linux_get_thread_area): New function.
5712 (ps_get_thread_area): Delegate to the above.
5713
5714 2014-07-11 Gary Benson <gbenson@redhat.com>
5715
5716 * amd64-linux-nat.c (amd64_linux_read_description): Renamed to
5717 x86_linux_read_description. All uses updated. amd64-specific
5718 code conditionalized. Conditionalized i386-specific code added.
5719 Redundant cast removed.
5720 * i386-linux-nat.c (i386_linux_read_description): Renamed to
5721 x86_linux_read_description. All uses updated. i386-specific
5722 code conditionalized. Conditionalized amd64-specific code added.
5723 One sizeof replaced with the actual type it is describing.
5724
5725 2014-07-11 Gary Benson <gbenson@redhat.com>
5726
5727 * amd64-linux-nat.c (amd64_linux_dr_get): Renamed to
5728 x86_linux_dr_get. All uses updated.
5729 (amd64_linux_dr_set): Renamed to
5730 x86_linux_dr_set. All uses updated.
5731 (amd64_linux_dr_get_addr): Renamed to
5732 x86_linux_dr_get_addr. All uses updated.
5733 (amd64_linux_dr_get_control): Renamed to
5734 x86_linux_dr_get_control. All uses updated.
5735 (amd64_linux_dr_get_status): Renamed to
5736 x86_linux_dr_get_status. All uses updated.
5737 (amd64_linux_dr_set_control): Renamed to
5738 x86_linux_dr_set_control. All uses updated.
5739 (amd64_linux_dr_set_addr): Renamed to
5740 x86_linux_dr_set_addr. All uses updated.
5741 (amd64_linux_prepare_to_resume): Renamed to
5742 x86_linux_prepare_to_resume. All uses updated.
5743 (amd64_linux_new_thread): Renamed to
5744 x86_linux_new_thread. All uses updated.
5745 (amd64_linux_new_fork): Renamed to
5746 x86_linux_new_fork. All uses updated.
5747 (amd64_linux_child_post_startup_inferior): Renamed to
5748 x86_linux_child_post_startup_inferior. All uses updated.
5749 (amd64_linux_enable_btrace): Renamed to
5750 x86_linux_enable_btrace. All uses updated.
5751 (amd64_linux_disable_btrace): Renamed to
5752 x86_linux_disable_btrace. All uses updated.
5753 (amd64_linux_teardown_btrace): Renamed to
5754 x86_linux_teardown_btrace. All uses updated.
5755 (amd64_linux_read_btrace): Renamed to
5756 x86_linux_read_btrace. All uses updated.
5757 * i386-linux-nat.c (i386_linux_dr_get): Renamed to
5758 x86_linux_dr_get. All uses updated.
5759 (i386_linux_dr_set): Renamed to
5760 x86_linux_dr_set. All uses updated.
5761 (i386_linux_dr_get_addr): Renamed to
5762 x86_linux_dr_get_addr. All uses updated.
5763 (i386_linux_dr_get_control): Renamed to
5764 x86_linux_dr_get_control. All uses updated.
5765 (i386_linux_dr_get_status): Renamed to
5766 x86_linux_dr_get_status. All uses updated.
5767 (i386_linux_dr_set_control): Renamed to
5768 x86_linux_dr_set_control. All uses updated.
5769 (i386_linux_dr_set_addr): Renamed to
5770 x86_linux_dr_set_addr. All uses updated.
5771 (i386_linux_prepare_to_resume): Renamed to
5772 x86_linux_prepare_to_resume. All uses updated.
5773 (i386_linux_new_thread): Renamed to
5774 x86_linux_new_thread. All uses updated.
5775 (i386_linux_new_fork): Renamed to
5776 x86_linux_new_fork. All uses updated.
5777 (i386_linux_child_post_startup_inferior): Renamed to
5778 x86_linux_child_post_startup_inferior. All uses updated.
5779 (i386_linux_enable_btrace): Renamed to
5780 x86_linux_enable_btrace. All uses updated.
5781 (i386_linux_disable_btrace): Renamed to
5782 x86_linux_disable_btrace. All uses updated.
5783 (i386_linux_teardown_btrace): Renamed to
5784 x86_linux_teardown_btrace. All uses updated.
5785 (i386_linux_read_btrace): Renamed to
5786 x86_linux_read_btrace. All uses updated.
5787
5788 2014-07-11 Adrian Sendroiu <adrian.sendroiu@freescale.com>
5789
5790 * remote.c (extended_remote_post_attach): New function.
5791 (init_extended_remote_ops): Install it as to_post_attach method.
5792
5793 2014-07-09 Pedro Alves <palves@redhat.com>
5794
5795 * infcmd.c (attach_command_post_wait): Don't call
5796 target_terminal_inferior here.
5797 (attach_command): Call it here instead.
5798
5799 2014-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5800
5801 * ada-varobj.c (ada_varobj_ops): Fill in is_path_expr_parent
5802 field.
5803 * c-varobj.c (c_is_path_expr_parent): New function, moved core
5804 from varobj.c, with additional checks.
5805 (c_varobj_ops): Fill in is_path_expr_parent field.
5806 (cplus_varobj_ops): Fill in is_path_expr_parent field.
5807 * jv-varobj.c (java_varobj_ops): Fill in is_path_expr_parent
5808 field.
5809 * varobj.c (is_path_expr_parent): Call is_path_expr_parent varobj
5810 ops method.
5811 (varobj_default_is_path_expr_parent): New function.
5812 * varobj.h (lang_varobj_ops): Add is_path_expr_parent field.
5813 (varobj_default_is_path_expr_parent): Declare new function.
5814
5815 2014-07-08 Markus Metzger <markus.t.metzger@intel.com>
5816
5817 * infcmd.c (finish_backward): Turn internal error into normal error.
5818
5819 2014-07-07 Pedro Alves <palves@redhat.com>
5820
5821 PR gdb/17096
5822 * remote.c (async_handle_remote_sigint)
5823 (async_handle_remote_sigint_twice): Call
5824 gdb_call_async_signal_handler instead of
5825 mark_async_signal_handler.
5826
5827 2014-07-07 Tom Tromey <tromey@redhat.com>
5828
5829 * target-delegates.c: Rebuild.
5830 * target.c (target_info_record): Remove.
5831 * record.c (info_record_command): Unconditionally call
5832 to_info_record.
5833 * target.h (struct target_ops) <to_info_record>: Use
5834 TARGET_DEFAULT_IGNORE.
5835 (target_info_record): Remove.
5836
5837 2014-07-07 Tom Tromey <tromey@redhat.com>
5838
5839 * target.h (struct target_ops) <to_get_thread_local_address>: Use
5840 TARGET_DEFAULT_NORETURN.
5841 * target.c (generic_tls_error): New function.
5842 (target_translate_tls_address): Don't search target stack.
5843 * target-delegates.c: Rebuild.
5844 * ppc-linux-tdep.c (ppc_linux_spe_context): Don't search target
5845 stack.
5846 * linux-thread-db.c (thread_db_get_thread_local_address):
5847 Unconditionally call beneath target.
5848
5849 2014-07-03 Marc Khouzam <marc.khouzam@ericsson.com>
5850
5851 * cli/cli-logging.c (pop_output_files): Assign targerr to
5852 gdb_stdtargerr.
5853
5854 2014-07-03 Andrew Burgess <andrew.burgess@embecosm.com>
5855
5856 * MAINTAINERS (Write After Approval): Update my email address.
5857
5858 2014-07-02 Gary Benson <gbenson@redhat.com>
5859
5860 * proc-service.c (ps_xfer_memory): Update comment.
5861 (ps_pstop): Remove unused function.
5862 (ps_pcontinue): Likewise.
5863 (ps_lstop): Likewise.
5864 (ps_lcontinue): Likewise.
5865 (ps_lgetxregsize): Likewise.
5866 (ps_lgetxregs): Likewise.
5867 (ps_lsetxregs): Likewise.
5868 (ps_plog): Likewise.
5869 (ps_ptread): Likewise.
5870 (ps_ptwrite): Likewise.
5871
5872 2014-07-01 Mark Wielaard <mjw@redhat.com>
5873
5874 * dwarf2read.c (add_array_cv_type): New function.
5875 (read_tag_const_type): Call add_array_cv_type for TYPE_CODE_ARRAY.
5876 (read_tag_volatile_type): Likewise.
5877
5878 2014-07-01 Tom Tromey <tromey@redhat.com>
5879
5880 * breakpoint.c (add_catch_command): Use cmd_sfunc_ftype.
5881 * breakpoint.h (add_catch_command): Use cmd_sfunc_ftype.
5882 * cli/cli-decode.c (cmd_cfunc_eq, add_cmd, add_prefix_cmd)
5883 (add_abbrev_prefix_cmd, add_info, add_com): Use cmd_cfunc_ftype.
5884 * command.h (cmd_cfunc_ftype): Move earlier.
5885 (add_cmd, add_prefix_cmd, add_abbrev_prefix_cmd, cmd_cfunc_eq)
5886 (add_com, add_info): Use cmd_cfunc_ftype.
5887
5888 2014-06-30 Tom Tromey <tromey@redhat.com>
5889
5890 * symtab.c (operator_chars): Make parameters and return type
5891 const.
5892 (file_matches): Make "files" const.
5893 (struct search_symbols_data) <files>: Now const.
5894 (search_symbols): Make "regexp" and "files" parameters const.
5895 Update.
5896 (symtab_symbol_info): Remove cast.
5897 (rbreak_command): Update.
5898 * symtab.h (search_symbols): Update.
5899
5900 2014-06-27 Yao Qi <yao@codesourcery.com>
5901
5902 * breakpoint.c (check_longjmp_breakpoint_for_call_dummy):
5903 Change parameter type to 'struct thread_info *'. Caller
5904 updated.
5905 * breakpoint.h (check_longjmp_breakpoint_for_call_dummy):
5906 Update declaration.
5907 * dummy-frame.c (struct dummy_frame_id): New.
5908 (dummy_frame_id_eq): New function.
5909 (struct dummy_frame) <id>: Change its type to 'struct
5910 dummy_frame_id'.
5911 (dummy_frame_push): Add parameter ptid and save it in
5912 dummy_frame_id.
5913 (pop_dummy_frame_bpt): Use ptid of dummy_frame instead of
5914 inferior_ptid.
5915 (pop_dummy_frame): Assert that the ptid of dummy_frame equals
5916 to inferior_ptid.
5917 (lookup_dummy_frame): Change parameter type to 'struct
5918 dummy_frame_id *'. Callers updated. Call dummy_frame_id_eq
5919 instead of frame_id_eq.
5920 (dummy_frame_pop): Add parameter ptid. Callers updated.
5921 Update comments. Compose dummy_frame_id and pass it to
5922 lookup_dummy_frame.
5923 (dummy_frame_discard): Add parameter ptid.
5924 (dummy_frame_sniffer): Compose dummy_frame_id and call
5925 dummy_frame_id_eq instead of frame_id_eq.
5926 (fprint_dummy_frames): Print ptid.
5927 * dummy-frame.h: Remove comments.
5928 (dummy_frame_push): Add ptid in declaration.
5929 (dummy_frame_pop, dummy_frame_discard): Likewise.
5930
5931 2014-06-26 Tom Tromey <tromey@redhat.com>
5932
5933 * cli/cli-cmds.c (error_no_arg): Make "why" const.
5934 * command.h (error_no_arg): Update.
5935
5936 2014-06-26 Tom Tromey <tromey@redhat.com>
5937
5938 * cli/cli-setshow.c (do_set_command): Make "arg" const.
5939 (do_show_command): Make "arg" const.
5940 * cli/cli-setshow.h (do_set_command, do_show_command): Update.
5941
5942 2014-06-26 Tom Tromey <tromey@redhat.com>
5943
5944 * record-full.c (record_full_get_bookmark): Make "args" const.
5945 (record_full_goto_bookmark): Make "raw_bookmark" const.
5946 * record.c (record_goto): New function.
5947 (cmd_record_goto): Use it. Now static.
5948 * record.h (record_goto): Declare.
5949 (cmd_record_goto): Remove declaration.
5950 * target-delegates.c: Rebuild.
5951 * target.h (struct target_ops) <to_get_bookmark,
5952 to_goto_bookmark>: Make parameter const.
5953
5954 2014-06-26 Tom Tromey <tromey@redhat.com>
5955
5956 * defs.h (generic_load): Update.
5957 * m32r-rom.c (m32r_load_gen): Make "filename" const.
5958 * monitor.c (monitor_load): Make "args" const.
5959 * remote-m32r-sdi.c (m32r_load): Make "args" const.
5960 * remote-mips.c (mips_load_srec, pmon_load_fast): Make "args"
5961 const.
5962 (mips_load): Make "file" const.
5963 * remote-sim.c (gdbsim_load): Make "args" const.
5964 * remote.c (remote_load): Make "name" const.
5965 * symfile.c (generic_load): Make "args" const.
5966 * target-delegates.c: Rebuild.
5967 * target.c (target_load): Make "arg" const.
5968 (debug_to_load): Make "args" const.
5969 * target.h (struct target_ops) <to_load>: Make parameter const.
5970 (target_load): Update.
5971
5972 2014-06-26 Tom Tromey <tromey@redhat.com>
5973
5974 PR symtab/16902:
5975 * dwarf2read.c (fixup_go_packaging, dwarf2_compute_name)
5976 (dwarf2_physname, read_partial_die)
5977 (guess_partial_die_structure_name, fixup_partial_die)
5978 (guess_full_die_structure_name, anonymous_struct_prefix)
5979 (dwarf2_name): Use per-BFD obstack.
5980
5981 2014-06-26 Yao Qi <yao@codesourcery.com>
5982
5983 * dummy-frame.c (dummy_frame_sniffer): Move local variables
5984 dummyframe and this_id into inner block below.
5985
5986 2014-06-26 Yao Qi <yao@codesourcery.com>
5987
5988 * infrun.c (_initialize_infrun): Replace "signal_program[0]"
5989 with "signal_pass[0]" in the initialization of signal_pass.
5990
5991 2014-06-25 Markus Metzger <markus.t.metzger@intel.com>
5992
5993 * record-btrace.c (record_btrace_generating_corefile)
5994 (record_btrace_prepare_to_generate_core)
5995 (record_btrace_done_generating_core): New.
5996 (record_btrace_xfer_partial, record_btrace_fetch_registers)
5997 (record_btrace_store_registers, record_btrace_prepare_to_store):
5998 Forward request when generating a core file.
5999 (record_btrace_open): Set record_btrace_generating_corefile to zero.
6000 (init_record_btrace_ops): Set to_prepare_to_generate_core and
6001 to_done_generating_core.
6002
6003 2014-06-25 Markus Metzger <markus.t.metzger@intel.com>
6004
6005 * target.h (target_ops) <to_prepare_to_generate_core>
6006 <to_done_generating_core>: New.
6007 (target_prepare_to_generate_core, target_done_generating_core): New.
6008 * target.c (target_prepare_to_generate_core)
6009 (target_done_generating_core): New.
6010 * target-delegates.c: Regenerate.
6011 * gcore.c: (write_gcore_file): Rename to ...
6012 (write_gcore_file_1): ...this.
6013 (write_gcore_file): Call target_prepare_to_generate_core
6014 and target_done_generating_core.
6015
6016 2014-06-25 Markus Metzger <markus.t.metzger@intel.com>
6017
6018 * fbsd-nat.c (fbsd_make_corefile_notes): Remove make_cleanup call.
6019 * gcore.c (write_gcore_file): Free memory returned from
6020 make_corefile_notes.
6021 * linux-tdep.c (linux_make_corefile_notes): Remove make_cleanup call.
6022 * procfs.c (procfs_make_note_section): Remove make_cleanup call.
6023
6024 2014-06-24 Yao Qi <yao@codesourcery.com>
6025
6026 * arm-linux-tdep.c (arm_linux_skip_trampoline_code): New.
6027 (arm_linux_init_abi): Set skip_trampoline_code with
6028 gdbarch_skip_trampoline_code instead of
6029 find_solib_trampoline_target.
6030
6031 2014-06-24 Yao Qi <yao@codesourcery.com>
6032
6033 * arm-tdep.c (arm_stub_unwind_sniffer): Return 1 if
6034 arm_skip_bx_reg returns non-zero.
6035
6036 2014-06-24 Yao Qi <yao@codesourcery.com>
6037
6038 * arm-tdep.c (arm_skip_bx_reg): New function.
6039 (arm_skip_stub): Call arm_skip_bx_reg.
6040
6041 2014-06-23 Don Breazeal <donb@codesourcery.com>
6042
6043 * MAINTAINERS: Add myself as write-after-approval maintainer.
6044
6045 2014-06-23 Pedro Alves <palves@redhat.com>
6046
6047 * amd64-linux-nat.c (amd64_linux_prepare_to_resume): Clear
6048 DR_CONTROL before setting DR0..DR3.
6049 * i386-linux-nat.c (i386_linux_prepare_to_resume): Likewise.
6050 * nat/i386-dregs.c (i386_remove_aligned_watchpoint): Clear all
6051 bits of DR_CONTROL related to the debug register slot being
6052 disabled. If all slots are vacant, clear local slowdown as well,
6053 and assert DR_CONTROL is 0.
6054
6055 2014-06-23 Siva Chandra Reddy <sivachandra@google.com>
6056
6057 * python/lib/gdb/command/xmethods.py
6058 (get_method_matchers_in_loci): Lookup xmethod matchers in the
6059 current progspace only if the string "progspace" matches LOCUS_RE.
6060
6061 2014-06-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6062
6063 Fix --with-system-readline with readline-6.3 patch 5.
6064 * tui/tui-io.c (tui_old_rl_getc_function, tui_old_rl_redisplay_function)
6065 (tui_old_rl_prep_terminal, tui_old_rl_deprep_terminal): Use rl_*_t
6066 types.
6067
6068 2014-06-20 Tom Tromey <tromey@redhat.com>
6069
6070 * dwarf2read.c (dw2_get_real_path): Use correct type in
6071 OBSTACK_CALLOC.
6072 * gdb_obstack.h (OBSTACK_ZALLOC, OBSTACK_CALLOC): Cast result.
6073
6074 2014-06-20 Gary Benson <gbenson@redhat.com>
6075
6076 * common/gdb_thread_db.h: Moved to nat. All includes updated.
6077 * common/glibc_thread_db.h: Likewise.
6078 * common/i386-cpuid.h: Likewise.
6079 * common/i386-gcc-cpuid.h: Likewise.
6080 * common/linux-btrace.h: Likewise.
6081 * common/linux-osdata.h: Likewise.
6082 * common/linux-procfs.h: Likewise.
6083 * common/linux-ptrace.h: Likewise.
6084 * common/mips-linux-watch.h: Likewise.
6085 * common/linux-btrace.c: Moved to nat.
6086 * common/linux-osdata.c: Likewise.
6087 * common/linux-procfs.c: Likewise.
6088 * common/linux-ptrace.c: Likewise.
6089 * common/mips-linux-watch.c: Likewise.
6090 * nat/gdb_thread_db.h: Moved from common.
6091 * nat/glibc_thread_db.h: Likewise.
6092 * nat/i386-cpuid.h: Likewise.
6093 * nat/i386-gcc-cpuid.h: Likewise.
6094 * nat/linux-btrace.c: Likewise.
6095 * nat/linux-btrace.h: Likewise.
6096 * nat/linux-osdata.c: Likewise.
6097 * nat/linux-osdata.h: Likewise.
6098 * nat/linux-procfs.c: Likewise.
6099 * nat/linux-procfs.h: Likewise.
6100 * nat/linux-ptrace.c: Likewise.
6101 * nat/linux-ptrace.h: Likewise.
6102 * nat/mips-linux-watch.c: Likewise.
6103 * nat/mips-linux-watch.h: Likewise.
6104 * Makefile.in (HFILES_NO_SRCDIR): Reflect new locations.
6105 (object file files): Reordered.
6106 * gdb/copyright.py (EXCLUDE_LIST): Reflect new location
6107 of glibc_thread_db.h.
6108
6109 2014-06-20 Gary Benson <gbenson@redhat.com>
6110
6111 * i386-nat.h (debug_hw_points): Moved to nat/i386-dregs.c.
6112 (i386_dr_low_type): Moved to nat/i386-dregs.h.
6113 (i386_dr_low): Likewise.
6114 (i386_dr_low_can_set_addr): Moved to nat/i386-dregs.c.
6115 (i386_dr_low_set_addr): Likewise.
6116 (i386_dr_low_get_addr): Likewise.
6117 (i386_dr_low_can_set_control): Likewise.
6118 (i386_dr_low_set_control): Likewise.
6119 (i386_dr_low_get_control): Likewise.
6120 (i386_dr_low_get_status): Likewise.
6121 (i386_get_debug_register_length): Likewise.
6122 * nat/i386-dregs.h (i386_dr_low_type): Moved from i386-nat.h.
6123 (i386_dr_low): Likewise.
6124 * nat/i386-dregs.c (i386-low.h): Remove include.
6125 (i386-nat.h): Likewise.
6126 (nat/i386-dregs.h): New include.
6127 (i386_dr_low_can_set_addr): Moved from i386-nat.h.
6128 (i386_dr_low_set_addr): Likewise.
6129 (i386_dr_low_get_addr): Likewise.
6130 (i386_dr_low_can_set_control): Likewise.
6131 (i386_dr_low_set_control): Likewise.
6132 (i386_dr_low_get_control): Likewise.
6133 (i386_dr_low_get_status): Likewise.
6134 (i386_get_debug_register_length): Likewise.
6135 (debug_hw_points): Likewise.
6136
6137 2014-06-19 Iain Buclaw <ibuclaw@gdcproject.org>
6138
6139 * Makefile.in (SFILES): Add d-exp.y.
6140 (YYFILES): Add d-exp.c.
6141 (YYOBJ): Add d-exp.o.
6142 (local-maintainer-clean): Delete d-exp.c.
6143 * d-exp.y: New file.
6144 * d-lang.h (d_parse): New declaration.
6145 (d_error): New declaration.
6146 * d-lang.c (d_op_print_tab): Add entry for BINOP_CONCAT and BINOP_EXP.
6147 Set BINOP_EQUAL and BINOP_NOTEQUAL to same precedence as other
6148 PREC_ORDER operators.
6149 (d_language_defn): Use d_parse, d_error instead of c_parse, c_error.
6150
6151 2014-06-19 Yao Qi <yao@codesourcery.com>
6152
6153 * gdbthread.h (any_running): Remove the declaration.
6154 * thread.c (any_running): Remove.
6155
6156 2014-06-19 Yao Qi <yao@codesourcery.com>
6157
6158 * gdbthread.h (struct thread_info) <state>: Change its type to
6159 'enum thread_state'. Update comments.
6160
6161 2014-06-19 Pedro Alves <palves@redhat.com>
6162
6163 * gdbthread.h (ALL_THREADS): Delete.
6164 (ALL_NON_EXITED_THREADS): New macro.
6165 * btrace.c (btrace_free_objfile): Use ALL_NON_EXITED_THREADS
6166 instead of ALL_THREADS.
6167 * infrun.c (find_thread_needs_step_over)
6168 (switch_back_to_stepped_thread): Use ALL_NON_EXITED_THREADS
6169 instead of ALL_THREADS.
6170 * record-btrace.c (record_btrace_open)
6171 (record_btrace_stop_recording, record_btrace_close)
6172 (record_btrace_is_replaying, record_btrace_resume)
6173 (record_btrace_find_thread_to_move, record_btrace_wait): Likewise.
6174 * remote.c (append_pending_thread_resumptions): Likewise.
6175 * thread.c (thread_apply_all_command): Likewise.
6176
6177 2014-06-19 Gary Benson <gbenson@redhat.com>
6178
6179 * i386-nat.c (i386_stopped_by_watchpoint):
6180 Use i386_dr_stopped_by_watchpoint.
6181 (i386_insert_hw_breakpoint): Use i386_dr_insert_watchpoint.
6182 (i386_remove_hw_breakpoint): Use i386_dr_remove_watchpoint.
6183
6184 2014-06-19 Gary Benson <gbenson@redhat.com>
6185
6186 * nat/i386-dregs.c: New file.
6187 * Makefile.in (i386-dregs.o): New rule.
6188 * config/i386/cygwin.mh (NATDEPFILES): Add i386-dregs.o.
6189 * config/i386/cygwin64.mh (NATDEPFILES): Likewise.
6190 * config/i386/darwin.mh (NATDEPFILES): Likewise.
6191 * config/i386/fbsd.mh (NATDEPFILES): Likewise.
6192 * config/i386/fbsd64.mh (NATDEPFILES): Likewise.
6193 * config/i386/go32.mh (NATDEPFILES): Likewise.
6194 * config/i386/linux.mh (NATDEPFILES): Likewise.
6195 * config/i386/linux64.mh (NATDEPFILES): Likewise.
6196 * config/i386/mingw.mh (NATDEPFILES): Likewise.
6197 * config/i386/mingw64.mh (NATDEPFILES): Likewise.
6198 * i386-nat.h (debug_hw_points): New declaration.
6199 * i386-nat.c (breakpoint.h): Remove include.
6200 (command.h): Likewise.
6201 (target.h): Likewise.
6202 (gdb_assert.h): Likewise.
6203 (debug_hw_points): Made nonstatic.
6204 (debug_printf): Now in i386-dregs.c.
6205 (TARGET_HAS_DR_LEN_8): Likewise.
6206 (DR_CONTROL_SHIFT): Likewise.
6207 (DR_CONTROL_SIZE): Likewise.
6208 (DR_RW_EXECUTE): Likewise.
6209 (DR_RW_WRITE): Likewise.
6210 (DR_RW_READ): Likewise.
6211 (DR_RW_IORW): Likewise.
6212 (DR_LEN_1): Likewise.
6213 (DR_LEN_2): Likewise.
6214 (DR_LEN_4): Likewise.
6215 (DR_LEN_8): Likewise.
6216 (DR_LOCAL_ENABLE_SHIFT): Likewise.
6217 (DR_GLOBAL_ENABLE_SHIFT): Likewise.
6218 (DR_ENABLE_SIZE): Likewise.
6219 (DR_LOCAL_SLOWDOWN): Likewise.
6220 (DR_GLOBAL_SLOWDOWN): Likewise.
6221 (DR_CONTROL_RESERVED): Likewise.
6222 (I386_DR_CONTROL_MASK): Likewise.
6223 (I386_DR_VACANT): Likewise.
6224 (I386_DR_LOCAL_ENABLE): Likewise.
6225 (I386_DR_GLOBAL_ENABLE): Likewise.
6226 (I386_DR_DISABLE): Likewise.
6227 (I386_DR_SET_RW_LEN): Likewise.
6228 (I386_DR_GET_RW_LEN): Likewise.
6229 (I386_DR_WATCH_HIT): Likewise.
6230 (i386_wp_op_t): Likewise.
6231 (i386_show_dr): Likewise.
6232 (i386_length_and_rw_bits): Likewise.
6233 (i386_insert_aligned_watchpoint): Likewise.
6234 (i386_remove_aligned_watchpoint): Likewise.
6235 (i386_handle_nonaligned_watchpoint): Likewise.
6236 (i386_update_inferior_debug_regs): Likewise.
6237 (i386_insert_watchpoint): Use i386_dr_insert_watchpoint.
6238 (i386_remove_watchpoint): Use i386_dr_remove_watchpoint.
6239 (i386_region_ok_for_watchpoint):
6240 Use i386_dr_region_ok_for_watchpoint.
6241 (i386_stopped_data_address): Use i386_dr_stopped_data_address.
6242
6243 2014-06-19 Gary Benson <gbenson@redhat.com>
6244
6245 * i386-nat.c (i386_insert_hw_breakpoint): Use
6246 i386_insert_watchpoint.
6247 (i386_remove_hw_breakpoint): Use i386_remove_watchpoint.
6248
6249 2014-06-19 Gary Benson <gbenson@redhat.com>
6250
6251 * i386-nat.c (i386_dr_show): Renamed to
6252 i386_show_dr and made static. All uses updated.
6253 (i386_dr_length_and_rw_bits): Renamed to
6254 i386_length_and_rw_bits and made static.
6255 All uses updated.
6256 (i386_dr_insert_aligned_watchpoint): Renamed to
6257 i386_insert_aligned_watchpoint and made static.
6258 All uses updated.
6259 (i386_dr_remove_aligned_watchpoint): Renamed to
6260 i386_remove_aligned_watchpoint and made static.
6261 All uses updated.
6262 (i386_dr_update_inferior_debug_regs): Renamed to
6263 i386_update_inferior_debug_regs and made static.
6264 All uses updated.
6265 * nat/i386-dregs.h (i386_dr_show): Removed.
6266 (i386_dr_length_and_rw_bits): Likewise.
6267 (i386_dr_insert_aligned_watchpoint): Likewise.
6268 (i386_dr_remove_aligned_watchpoint): Likewise.
6269 (i386_dr_update_inferior_debug_regs): Likewise.
6270
6271 2014-06-19 Gary Benson <gbenson@redhat.com>
6272
6273 * configure.ac [AC_CHECK_FUNCS] <sigaltstack>: New check.
6274 * configure: Regenerate.
6275 * config.in: Likewise.
6276 * main.c (signal.h): New include.
6277 (setup_alternate_signal_stack): New function.
6278 (captured_main): Call the above.
6279 * cp-support.c (signal.h): New include.
6280 (catch_demangler_crashes): New flag.
6281 (SIGJMP_BUF): New define.
6282 (SIGSETJMP): Likewise.
6283 (SIGLONGJMP): Likewise.
6284 (gdb_demangle_jmp_buf): New static global.
6285 (gdb_demangle_attempt_core_dump): Likewise.
6286 (gdb_demangle_signal_handler): New function.
6287 (gdb_demangle): If catch_demangler_crashes is set, install the
6288 above signal handler before calling bfd_demangle, and restore
6289 the original signal handler afterwards. Display the offending
6290 symbol and call demangler_warning the first time a segmentation
6291 fault is caught.
6292 (_initialize_cp_support): New maint set/show command.
6293
6294 2014-06-19 Gary Benson <gbenson@redhat.com>
6295
6296 * utils.h (resource_limit_kind): New enum.
6297 (can_dump_core): New declaration.
6298 (warn_cant_dump_core): Likewise.
6299 (dump_core): Likewise.
6300 * utils.c (dump_core): Made nonstatic. Added new
6301 parameter "limit_kind".
6302 (can_dump_core): Made nonstatic. Moved printing code to...
6303 (warn_cant_dump_core): New function.
6304 (can_dump_core_warn): Likewise.
6305 (internal_vproblem): Replace calls to can_dump_core with
6306 calls to can_dump_core_warn. Supply new argument to each.
6307
6308 2014-06-19 Gary Benson <gbenson@redhat.com>
6309
6310 * utils.h (demangler_vwarning): New declaration.
6311 (demangler_warning): Likewise.
6312 * utils.c (struct internal_problem)
6313 <user_settable_should_quit>: New field.
6314 <user_settable_should_dump_core>: Likewise
6315 (internal_error_problem): Add values for above new fields.
6316 (internal_warning_problem): Likewise.
6317 (demangler_warning_problem): New static global.
6318 (demangler_vwarning): New function.
6319 (demangler_warning): Likewise.
6320 (add_internal_problem_command): Selectively add commands.
6321 (_initialize_utils): New internal problem command.
6322 * maint.c (maintenance_demangler_warning): New function.
6323 (_initialize_maint_cmds): New command.
6324
6325 2014-06-18 Tom Tromey <tromey@redhat.com>
6326
6327 * f-valprint.c (info_common_command_for_block): Update.
6328 * symtab.h (struct general_symbol_info) <common_block>: Now
6329 const.
6330
6331 2014-06-18 Tom Tromey <tromey@redhat.com>
6332
6333 * symtab.h (struct symtab) <blockvector>: Now const.
6334 * ada-lang.c (ada_add_global_exceptions): Update.
6335 * buildsym.c (augment_type_symtab): Update.
6336 * dwarf2read.c (dw2_lookup_symbol): Update.
6337 * jit.c (finalize_symtab): Update.
6338 * jv-lang.c (add_class_symtab_symbol): Update.
6339 * mdebugread.c (parse_symbol, add_block, sort_blocks, new_symtab):
6340 Update.
6341 * objfiles.c (objfile_relocate1): Update.
6342 * psymtab.c (lookup_symbol_aux_psymtabs)
6343 (maintenance_check_psymtabs): Update.
6344 * python/py-symtab.c (stpy_global_block, stpy_static_block):
6345 Update.
6346 * spu-tdep.c (spu_catch_start): Update.
6347 * symmisc.c (dump_symtab_1): Update.
6348 * symtab.c (lookup_global_symbol_from_objfile)
6349 (lookup_symbol_aux_objfile, lookup_symbol_aux_quick)
6350 (basic_lookup_transparent_type_quick)
6351 (basic_lookup_transparent_type, find_pc_sect_symtab)
6352 (find_pc_sect_line, search_symbols): Update.
6353 * block.c (find_block_in_blockvector): Make "bl" const.
6354 (blockvector_for_pc_sect, blockvector_for_pc): Make return type
6355 const.
6356 (blockvector_contains_pc): Make "bv" const.
6357 (block_for_pc_sect): Update.
6358 * block.h (blockvector_for_pc, blockvector_for_pc_sect)
6359 (blockvector_contains_pc): Update.
6360 * breakpoint.c (resolve_sal_pc): Update.
6361 * inline-frame.c (block_starting_point_at): Update.
6362
6363 2014-06-18 Tom Tromey <tromey@redhat.com>
6364
6365 * completer.c (complete_line): Make "line_buffer" const.
6366 * completer.h (complete_line): Update.
6367
6368 2014-06-18 Tom Tromey <tromey@redhat.com>
6369
6370 * symtab.c (add_macro_name): Remove unneeded cast.
6371
6372 2014-06-18 Tom Tromey <tromey@redhat.com>
6373
6374 * cli/cli-setshow.h (parse_cli_boolean_value): Update.
6375 * cli/cli-setshow.c (parse_cli_boolean_value): Make "arg" const.
6376
6377 2014-06-18 Tom Tromey <tromey@redhat.com>
6378
6379 * probe.c (info_probes_for_ops): Make "arg" const.
6380 * probe.h (info_probes_for_ops): Update.
6381
6382 2014-06-18 Tom Tromey <tromey@redhat.com>
6383
6384 * varobj.c (varobj_create): Update.
6385 * valops.c (value_of_this): Update.
6386 * tracepoint.c (add_local_symbols, scope_info): Update.
6387 * symtab.h (struct general_symbol_info) <block>: Now const.
6388 * symtab.c (skip_prologue_sal)
6389 (default_make_symbol_completion_list_break_on)
6390 (skip_prologue_using_sal): Update.
6391 * stack.h (iterate_over_block_locals)
6392 (iterate_over_block_local_vars): Update.
6393 * stack.c (print_frame_args): Update.
6394 (iterate_over_block_locals, iterate_over_block_local_vars): Make
6395 parameter const.
6396 (get_selected_block): Make return type const.
6397 * python/py-frame.c (frapy_block): Update.
6398 * python/py-block.c (gdbpy_block_for_pc): Update.
6399 * p-exp.y (%union) <bval>: Now const.
6400 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
6401 * mdebugread.c (mylookup_symbol, parse_procedure): Update.
6402 * m2-exp.y (%union) <bval>: Now const.
6403 * linespec.c (get_current_search_block): Make return type const.
6404 (create_sals_line_offset, find_label_symbols): Update.
6405 * inline-frame.c (inline_frame_sniffer, skip_inline_frames):
6406 Update.
6407 (block_starting_point_at): Make "block" const.
6408 * infrun.c (insert_exception_resume_breakpoint): Make "b" const.
6409 (check_exception_resume): Update.
6410 * guile/scm-frame.c (gdbscm_frame_block): Update.
6411 * guile/scm-block.c (gdbscm_lookup_block): Update.
6412 * frame.h (get_frame_block): Update.
6413 (get_selected_block): Make return type const.
6414 * frame.c (frame_id_inner): Update.
6415 * f-valprint.c (info_common_command_for_block)
6416 (info_common_command): Update.
6417 * dwarf2loc.c (dwarf2_find_location_expression)
6418 (dwarf_expr_frame_base, dwarf2_compile_expr_to_ax)
6419 (locexpr_describe_location_piece): Update.
6420 * c-exp.y (%union) <bval>: Now const.
6421 * breakpoint.c (resolve_sal_pc): Update.
6422 * blockframe.c (get_frame_block):Make return type const.
6423 (get_pc_function_start, get_frame_function, find_pc_sect_function)
6424 (block_innermost_frame): Update.
6425 * block.h (blockvector_for_pc, blockvector_for_pc_sect)
6426 (block_for_pc, block_for_pc_sect): Update.
6427 * block.c (blockvector_for_pc_sect, blockvector_for_pc): Make
6428 'pblock' const.
6429 (block_for_pc_sect, block_for_pc): Make return type const.
6430 * ax-gdb.c (gen_expr): Update.
6431 * alpha-mdebug-tdep.c (find_proc_desc): Update.
6432 * ada-lang.c (ada_read_renaming_var_value): Make 'block' const.
6433 (ada_make_symbol_completion_list, ada_add_exceptions_from_frame)
6434 (ada_read_var_value): Update.
6435 * ada-exp.y (struct name_info) <block>: Now const.
6436 (%union): Likewise.
6437 (block_lookup): Constify.
6438
6439 2014-06-18 Gary Benson <gbenson@redhat.com>
6440
6441 * nat/i386-dregs.h: New file.
6442 * Makefile.in (HFILES_NO_SRCDIR): Add the above.
6443 * i386-nat.h (i386-dregs.h): New include.
6444 (DR_FIRSTADDR): Now in i386-dregs.h.
6445 (DR_LASTADDR): Likewise.
6446 (DR_NADDR): Likewise.
6447 (DR_STATUS): Likewise.
6448 (DR_CONTROL): Likewise.
6449 (i386_debug_reg_state): Likewise.
6450 * i386-nat.c (ALL_DEBUG_REGISTERS): Likewise.
6451
6452 2014-06-18 Don Breazeal <donb@codesourcery.com>
6453
6454 * breakpoint.c (set_longjmp_breakpoint): Call
6455 momentary_breakpoint_from_master with additional argument.
6456 (set_longjmp_breakpoint_for_call_dummy): Call
6457 momentary_breakpoint_from_master with additional argument.
6458 (set_std_terminate_breakpoint): Call
6459 momentary_breakpoint_from_master with additional argument.
6460 (momentary_breakpoint_from_master): Add argument to function
6461 definition and use it to initialize structure member flag.
6462 (clone_momentary_breakpoint): Call
6463 momentary_breakpoint_from_master with additional argument.
6464 * infrun.c (follow_inferior_reset_breakpoints): Clear structure
6465 member flags set in momentary_breakpoint_from_master.
6466
6467 2014-06-18 Gary Benson <gbenson@redhat.com>
6468
6469 * i386-nat.c (i386_show_dr): Renamed to
6470 i386_dr_show and made nonstatic. All uses updated.
6471 (i386_length_and_rw_bits): Renamed to
6472 i386_dr_length_and_rw_bits and made nonstatic.
6473 All uses updated.
6474 (i386_insert_aligned_watchpoint): Renamed to
6475 i386_dr_insert_aligned_watchpoint and made nonstatic.
6476 All uses updated.
6477 (i386_remove_aligned_watchpoint): Renamed to
6478 i386_dr_remove_aligned_watchpoint and made nonstatic.
6479 All uses updated.
6480 (i386_update_inferior_debug_regs): Renamed to
6481 i386_dr_update_inferior_debug_regs and made nonstatic.
6482 All uses updated.
6483
6484 2014-06-18 Gary Benson <gbenson@redhat.com>
6485
6486 * i386-nat.c (i386_dr_low_can_set_addr): New macro.
6487 (i386_dr_low_can_set_control): Likewise.
6488 (i386_dr_low_set_addr): Likewise.
6489 (i386_dr_low_set_control): Likewise.
6490 (i386_dr_low_get_addr): Likewise.
6491 (i386_dr_low_get_status): Likewise.
6492 (i386_dr_low_get_control): Likewise.
6493 (i386_insert_aligned_watchpoint): Use new macros.
6494 (i386_update_inferior_debug_regs): Likewise.
6495 (i386_stopped_data_address): Likewise.
6496
6497 2014-06-18 Gary Benson <gbenson@redhat.com>
6498
6499 * i386-nat.c (i386_update_inferior_debug_regs) <state>:
6500 New parameter. All uses updated.
6501
6502 2014-06-18 Gary Benson <gbenson@redhat.com>
6503
6504 * i386-nat.c (maint_show_dr): Renamed to debug_hw_points.
6505 All uses updated.
6506
6507 2014-06-18 Gary Benson <gbenson@redhat.com>
6508
6509 * i386-nat.c (debug_printf): New macro.
6510 (i386_get_debug_register_length): Likewise.
6511 (TARGET_HAS_DR_LEN_8): Use above macro.
6512 (i386_show_dr): Use debug_printf instead of puts_unfiltered
6513 and printf_unfiltered. Use phex to format values.
6514
6515 2014-06-18 Gary Benson <gbenson@redhat.com>
6516
6517 * i386-nat.c (i386_handle_nonaligned_watchpoint) <size_try_array>:
6518 Make const.
6519
6520 2014-06-18 Gary Benson <gbenson@redhat.com>
6521
6522 * i386-nat.c: Comment changes.
6523
6524 2014-06-18 Gary Benson <gbenson@redhat.com>
6525
6526 * i386-nat.c (I386_DR_WATCH_MASK): Remove macro.
6527
6528 2014-06-18 Gary Benson <gbenson@redhat.com>
6529
6530 * i386-nat.c (i386_length_and_rw_bits): Remove prototype.
6531 (i386_insert_aligned_watchpoint): Likewise.
6532 (i386_remove_aligned_watchpoint): Likewise.
6533 (i386_handle_nonaligned_watchpoint): Likewise.
6534
6535 2014-06-18 Gary Benson <gbenson@redhat.com>
6536
6537 * i386-nat.c: Whitespace changes.
6538
6539 2014-06-17 Samuel Bronson <naesten@gmail.com>
6540
6541 * MAINTAINERS: Update Roland McGrath's email address.
6542 Thanks to Sergio Durigan Junior for pointing out that he left
6543 Red Hat a while ago, and giving me a current address.
6544
6545 2014-06-17 Tom Tromey <tromey@redhat.com>
6546
6547 * utils.h (savestring): Remove declaration.
6548
6549 2014-06-17 Tom Tromey <tromey@redhat.com>
6550
6551 * remote.c (extended_remote_run): Use make_cleanup_freeargv.
6552
6553 2014-06-16 Keith Seitz <keiths@redhat.com>
6554
6555 PR mi/15863
6556 * mi/mi-cmd-var.c (mi_cmd_var_update_iter): Do not attempt
6557 to update the varobj if inferior_ptid is null_ptid.
6558
6559 2014-06-16 Tom Tromey <tromey@redhat.com>
6560
6561 * target.h (struct target_ops) <to_info_proc>: Make parameter
6562 const.
6563 (target_info_proc): Update.
6564 * target.c (target_info_proc): Make "args" const.
6565 * procfs.c (procfs_info_proc): Update.
6566 * linux-tdep.c (linux_info_proc): Update.
6567 (linux_core_info_proc_mappings): Make "args" const.
6568 (linux_core_info_proc): Update.
6569 * gdbarch.sh (info_proc, core_info_proc): Make "args" const.
6570 * gdbarch.c: Rebuild.
6571 * gdbarch.h: Rebuild.
6572 * corelow.c (core_info_proc): Update.
6573
6574 2014-06-16 Tom Tromey <tromey@redhat.com>
6575
6576 * target.h (struct target_ops) <to_disconnect>: Make parameter
6577 const.
6578 (target_disconnect): Update.
6579 * target.c (target_disconnect): Make "args" const.
6580 * target-delegates.c: Rebuild.
6581 * remote.c (remote_disconnect): Update.
6582 * record.h (record_disconnect): Update.
6583 * record.c (record_disconnect): Update.
6584 * inf-child.c (inf_child_disconnect): Update.
6585
6586 2014-06-16 Tom Tromey <tromey@redhat.com>
6587
6588 * target.h (struct target_ops) <to_rcmd>: Make "command" const.
6589 * target.c (debug_to_rcmd, default_rcmd): Update.
6590 * target-delegates.c: Rebuild.
6591 * remote.c (remote_rcmd): Update.
6592 * monitor.c (monitor_rcmd): Update.
6593
6594 2014-06-16 Pedro Alves <palves@redhat.com>
6595
6596 * breakpoint.c (insert_bp_location, remove_breakpoint_1): Adjust.
6597 (disable_breakpoints_in_freed_objfile): Skip objfiles that don't
6598 have OBJF_SHARED set.
6599 * objfiles.c (userloaded_objfile_contains_address_p): Rename to...
6600 (shared_objfile_contains_address_p): ... this. Check OBJF_SHARED
6601 instead of OBJF_USERLOADED.
6602 * objfiles.h (OBJF_SHARED): Update comment.
6603 (userloaded_objfile_contains_address_p): Rename to ...
6604 (shared_objfile_contains_address_p): ... this, and update
6605 comments.
6606 * symfile.c (add_symbol_file_command): Also set OBJF_SHARED in the
6607 new objfile.
6608 (remove_symbol_file_command): Skip objfiles that don't have
6609 OBJF_SHARED set.
6610
6611 2014-06-16 Tom Tromey <tromey@redhat.com>
6612
6613 * minsyms.h (prim_record_minimal_symbol)
6614 (prim_record_minimal_symbol_and_info): Update comments.
6615
6616 2014-06-14 Eli Zaretskii <eliz@gnu.org>
6617
6618 * top.c (print_gdb_configuration) [HAVE_GUILE]: Print --with-guile
6619 or --without-guile, according to how GDB was built.
6620
6621 2014-06-13 Tom Tromey <tromey@redhat.com>
6622
6623 * cp-support.c (maint_cplus_command): Pass all_commands, not -1,
6624 to help_list.
6625 * guile/guile.c (info_guile_command): Pass all_commands, not -1,
6626 to help_list.
6627 * tui/tui-win.c (tui_command): Pass all_commands, not -1, to
6628 help_list.
6629 * tui/tui-regs.c (tui_reg_command): Pass all_commands, not -1, to
6630 help_list.Pass all_commands, not -1, to help_list.
6631 * cli/cli-dump.c (dump_command, append_command)
6632 (srec_dump_command, ihex_dump_command, tekhex_dump_command)
6633 (binary_dump_command, binary_append_command): Pass all_commands,
6634 not -1, to help_list.
6635 * cli/cli-cmds.c (info_command, set_debug): Pass all_commands, not
6636 -1, to help_list.
6637 * valprint.c (set_print, set_print_raw): Pass all_commands, not
6638 -1, to help_list.
6639 * typeprint.c (set_print_type): Pass all_commands, not -1, to
6640 help_list.
6641 * top.c (set_history): Pass all_commands, not -1, to help_list.
6642 * target-descriptions.c (set_tdesc_cmd, unset_tdesc_cmd): Pass
6643 all_commands, not -1, to help_list.
6644 * symfile.c (overlay_command): Pass all_commands, not -1, to
6645 help_list.
6646 * spu-tdep.c (info_spu_command): Pass all_commands, not -1, to
6647 help_list.
6648 * serial.c (serial_set_cmd): Pass all_commands, not -1, to
6649 help_list.
6650 * ser-tcp.c (set_tcp_cmd, show_tcp_cmd): Pass all_commands, not
6651 -1, to help_list.
6652 * remote.c (remote_command, set_remote_cmd): Pass all_commands,
6653 not -1, to help_list.
6654 * ravenscar-thread.c (set_ravenscar_command): Pass all_commands,
6655 not -1, to help_list.
6656 * maint.c (maintenance_command, maintenance_info_command)
6657 (maintenance_print_command, maintenance_set_cmd): Pass
6658 all_commands, not -1, to help_list.
6659 * macrocmd.c (macro_command): Pass all_commands, not -1, to
6660 help_list.
6661 * language.c (set_check): Pass all_commands, not -1, to help_list.
6662 * infcmd.c (unset_command): Pass all_commands, not -1, to
6663 help_list.
6664 * frame.c (set_backtrace_cmd): Pass all_commands, not -1, to
6665 help_list.
6666 * dwarf2read.c (set_dwarf2_cmd): Pass all_commands, not -1, to
6667 help_list.
6668 * dcache.c (set_dcache_command): Pass all_commands, not -1, to
6669 help_list.
6670 * breakpoint.c (save_command): Pass all_commands, not -1, to
6671 help_list.
6672 * ada-lang.c (maint_set_ada_cmd, set_ada_command): Pass
6673 all_commands, not -1, to help_list.
6674
6675 2014-06-12 Pierre Langlois <pierre.langlois@embecosm.com>
6676
6677 * regcache.c (struct register_to_invalidate): New structure.
6678 (do_register_invalidate, make_cleanup_regcache_invalidate): New
6679 functions.
6680 (regcache_raw_write): Call make_cleanup_regcache_invalidate.
6681
6682 2014-06-12 Yao Qi <yao@codesourcery.com>
6683
6684 * varobj.c (varobj_get_num_children): Call
6685 varobj_is_dynamic_p.
6686 (varobj_list_children): Likewise.
6687 (varobj_update): Likewise. Update comments.
6688
6689 2014-06-12 Yao Qi <yao@codesourcery.com>
6690
6691 * varobj.c (varobj_pretty_printed_p): Rename to ...
6692 (varobj_is_dynamic_p): ... this. New function.
6693 * varobj.h (varobj_pretty_printed_p): Remove declaration.
6694 (varobj_is_dynamic_p): Declare.
6695 * mi/mi-cmd-var.c (print_varobj): All callers updated.
6696 (mi_print_value_p, varobj_update_one): Likewise.
6697
6698 2014-06-12 Pedro Alves <pedro@codesourcery.com>
6699 Yao Qi <yao@codesourcery.com>
6700
6701 * varobj.c: Remove "#if HAVE_PYTHON" and "#endif".
6702 (varobj_get_iterator): Wrap up code for pretty-printer by
6703 "#if HAVE_PYTHON" and "#endif".
6704 (update_dynamic_varobj_children): Likewise.
6705
6706 2014-06-12 Pedro Alves <pedro@codesourcery.com>
6707 Yao Qi <yao@codesourcery.com>
6708
6709 * python/py-varobj.c (py_varobj_iter_next): Return NULL if
6710 gdb_python_initialized is false. Move some code from varobj.c.
6711 * varobj-iter.h (struct varobj_item): Moved from varobj.c.
6712 * varobj.c: Move "varobj-iter.h" inclusion earlier.
6713 (struct varobj_item): Moved to varobj-iter.h".
6714 (varobj_clear_saved_item): New function.
6715 (update_dynamic_varobj_children): Move python-related code to
6716 py-varobj.c.
6717 (free_variable): Call varobj_clear_saved_item and
6718 varobj_iter_delete.
6719
6720 2014-06-12 Pedro Alves <pedro@codesourcery.com>
6721 Yao Qi <yao@codesourcery.com>
6722
6723 * Makefile.in (SUBDIR_PYTHON_OBS): Add "py-varobj.o".
6724 (SUBDIR_PYTHON_SRCS): Add "python/py-varobj.c".
6725 (HFILES_NO_SRCDIR): Add "varobj-iter.h".
6726 (py-varobj.o): New rule.
6727 * python/py-varobj.c: New file.
6728 * python/python-internal.h (py_varobj_get_iterator): Declare.
6729 * varobj-iter.h: New file.
6730 * varobj.c: Include "varobj-iter.h"
6731 (struct varobj) <child_iter>: Change its type from "PyObject *"
6732 to "struct varobj_iter *".
6733 <saved_item>: Likewise.
6734 [HAVE_PYTHON] (varobj_ensure_python_env): Make it extern.
6735 [HAVE_PYTHON] (varobj_get_iterator): New function.
6736 (update_dynamic_varobj_children) [HAVE_PYTHON]: Move
6737 python-specific code to python/py-varobj.c.
6738 (install_visualizer): Call varobj_iter_delete instead of
6739 Py_XDECREF.
6740 * varobj.h (varobj_ensure_python_env): Declare.
6741
6742 2014-06-12 Yao Qi <yao@codesourcery.com>
6743
6744 * varobj.c (struct varobj_item): New structure.
6745 (create_child_with_value): Update declaration.
6746 (varobj_add_child): Replace arguments 'name' and 'value' with
6747 'item'. All callers updated.
6748 (install_dynamic_child): Likewise.
6749 (update_dynamic_varobj_children): Likewise.
6750 (varobj_add_child): Likewise.
6751 (create_child_with_value): Likewise.
6752
6753 2014-06-11 Joel Brobecker <brobecker@adacore.com>
6754
6755 * NEWS: Create a new section for the next release branch.
6756 Rename the section of the current branch, now that it has
6757 been cut.
6758
6759 2014-06-11 Joel Brobecker <brobecker@adacore.com>
6760
6761 GDB 7.8 branch created (173373c6f6388171d1d62a217fae90a052395be2):
6762 * version.in: Bump version to 7.8.50.DATE-cvs.
6763
6764 2014-06-11 Pedro Alves <palves@redhat.com>
6765
6766 PR remote/17028
6767 * ser-mingw.c (net_windows_socket_check_pending): New function.
6768 (net_windows_select_thread): Ignore spurious wakeups. Use
6769 net_windows_socket_check_pending.
6770 (net_windows_wait_handle): Check for pending events with
6771 ioctlsocket, through net_windows_socket_check_pending, instead of
6772 checking the socket's event.
6773
6774 2014-06-10 Siva Chandra Reddy <sivachandra@google.com>
6775
6776 * python/python-internal.h (gdb_PyObject_GetAttrString)
6777 (gdb_PyObject_HasAttrString): New inline function definitions.
6778 * py-value.c (get_field_flag): Remove the now unnecessary cast to
6779 char * of the second argument to PyObject_GetAttrString.
6780
6781 2014-06-10 Joel Brobecker <brobecker@adacore.com>
6782
6783 * serial.c (serial_write): Fix index of character to be printed
6784 in call to serial_logchar when serial debug traces are enabled.
6785
6786 2014-06-10 Joel Brobecker <brobecker@adacore.com>
6787
6788 * gdbtypes (resolve_dynamic_range): Add function description.
6789
6790 2014-06-09 Pedro Alves <palves@redhat.com>
6791
6792 * linux-nat.c (linux_child_follow_fork): Initialize status with
6793 W_STOPCODE (0) instead of 0. Remove shodowing 'status' local from
6794 inner block. Only pass the signal to PTRACE_DETACH if in pass
6795 state.
6796
6797 2014-06-09 Gary Benson <gbenson@redhat.com>
6798
6799 * common/signals.c (gdb_signal_from_host): Reorder to separate
6800 the always-available ANSI-standard signals from the signals that
6801 require checking.
6802 (do_gdb_signal_to_host): Likewise.
6803 * proc-events.c (signal_table): Likewise.
6804
6805 2014-06-08 Hui Zhu <hui@codesourcery.com>
6806
6807 * common/linux-ptrace.c (linux_disable_event_reporting): New
6808 function.
6809 * common/linux-ptrace.h (linux_disable_event_reporting): New
6810 declaration.
6811 * linux-nat.c (linux_child_follow_fork): Do a single step before
6812 detach.
6813
6814 2014-06-07 Keith Seitz <keiths@redhat.com>
6815
6816 Revert:
6817 PR c++/16253
6818 * ada-lang.c (ada_symbol_matches_domain): Moved here and renamed
6819 from symbol_matches_domain in symtab.c. All local callers
6820 of symbol_matches_domain updated.
6821 (standard_lookup): If DOMAIN is VAR_DOMAIN and no symbol is found,
6822 search STRUCT_DOMAIN.
6823 (ada_find_any_type_symbol): Do not search STRUCT_DOMAIN
6824 independently. standard_lookup will do that automatically.
6825 * cp-namespace.c (cp_lookup_symbol_nonlocal): Explain when/why
6826 VAR_DOMAIN searches may return a STRUCT_DOMAIN match.
6827 (cp_lookup_symbol_in_namespace): Likewise.
6828 If no VAR_DOMAIN symbol is found, search STRUCT_DOMAIN.
6829 (cp_lookup_symbol_exports): Explain when/why VAR_DOMAIN searches
6830 may return a STRUCT_DOMAIN match.
6831 (lookup_symbol_file): Search for the class name in STRUCT_DOMAIN.
6832 * cp-support.c: Include language.h.
6833 (inspect_type): Explicitly search STRUCT_DOMAIN before searching
6834 VAR_DOMAIN.
6835 * psymtab.c (match_partial_symbol): Compare the requested
6836 domain with the symbol's domain directly.
6837 (lookup_partial_symbol): Likewise.
6838 * symtab.c (lookup_symbol_in_language): Explain when/why
6839 VAR_DOMAIN searches may return a STRUCT_DOMAIN match.
6840 If no VAR_DOMAIN symbol is found, search STRUCT_DOMAIN for
6841 appropriate languages.
6842 (symbol_matches_domain): Renamed `ada_symbol_matches_domain'
6843 and moved to ada-lang.c
6844 (lookup_block_symbol): Explain that this function only returns
6845 symbol matching the requested DOMAIN.
6846 Compare the requested domain with the symbol's domain directly.
6847 (iterate_over_symbols): Compare the requested domain with the
6848 symbol's domain directly.
6849 * symtab.h (symbol_matches_domain): Remove.
6850
6851 2014-06-06 Doug Evans <xdje42@gmail.com>
6852
6853 * guile/guile-internal.h (gdbscm_guile_major_version): Declare.
6854 (gdbscm_guile_minor_version, gdbscm_guile_micro_version): Declare.
6855 (gdbscm_guile_version_is_at_least): Declare.
6856 (gdbscm_scm_string_to_int): Declare.
6857 * guile/guile.c (gdbscm_guile_major_version): New global.
6858 (gdbscm_guile_minor_version, gdbscm_guile_micro_version): New globals.
6859 (guile_datadir): New static global.
6860 (gdbscm_guile_data_directory): New function.
6861 (initialize_scheme_side): Update.
6862 (misc_guile_functions): Add guile-data-directory.
6863 (initialize_gdb_module): Fetch guile version number.
6864 * guile/lib/gdb.scm: Remove call to add-to-load-path.
6865 * guile/lib/gdb/init.scm (%initialize!): Ditto.
6866 * guile/lib/gdb/boot.scm: Use guile-data-directory.
6867 * guile/scm-exception.c (gdbscm_print_exception_with_stack): Fix
6868 comments.
6869 * guile/scm-string.c (gdbscm_scm_string_to_int): New function.
6870 * guile/scm-utils.c (gdbscm_guile_version_is_at_least): New function.
6871 * guile/scm-value.c (gdbscm_value_to_string): Only call
6872 scm_port_conversion_strategy if Guile version >= 2.0.6.
6873
6874 2014-06-06 Mingjie Xing <mingjie.xing@gmail.com>
6875
6876 * main.c (print_gdb_help): Add -q and --silent.
6877
6878 2014-06-06 Gary Benson <gbenson@redhat.com>
6879
6880 * common/signals.c: Remove preprocessor conditionals for
6881 always-defined signals SIGINT, SIGILL, SIGABRT, SIGFPE,
6882 SIGSEGV and SIGTERM.
6883 * proc-events.c: Likewise.
6884
6885 2014-06-06 Markus Metzger <markus.t.metzger@intel.com>
6886
6887 * symfile.c (symfile_free_objfile): Remove restriction to
6888 OBJF_USERLOADED.
6889 * symfile-mem.c (symbol_file_add_from_memory): Call
6890 add_target_sections_of_objfile.
6891
6892 2014-06-05 Ludovic Courtès <ludo@gnu.org>
6893
6894 * guile/scm-value.c (gdbscm_history_append_x): Use
6895 'vlscm_get_value_smob_arg_unsafe' instead of
6896 'vlscm_scm_to_value'.
6897
6898 2014-06-05 Simon Marchi <simon.marchi@ericsson.com>
6899
6900 PR mi/15806
6901 * utils.c (printchar): Don't escape at all if quoter is NUL.
6902 Update function documentation to clarify effect of parameter
6903 QUOTER.
6904 * remote.c (escape_buffer): Pass '\\' as the quoter to
6905 fputstrn_unfiltered.
6906 * mi/mi-interp.c (mi_solib_loaded): Use ui_out_field_* functions to
6907 generate the output.
6908 (mi_solib_unloaded): Same.
6909
6910 2014-06-05 Joel Brobecker <brobecker@adacore.com>
6911
6912 * development.sh: Delete.
6913 * Makefile.in (config.status): Adjust dependency on development.sh.
6914 * configure.ac: Adjust development.sh source call.
6915 * configure: Regenerate.
6916
6917 2014-06-04 Doug Evans <xdje42@gmail.com>
6918
6919 * guile/scm-breakpoint.c (struct gdbscm_breakpoint_object): New members
6920 is_scheme_bkpt, spec.
6921 (bpscm_make_breakpoint_smob): Initialize new members.
6922 (gdbscm_create_breakpoint_x): Split into two ...
6923 (gdbscm_make_breakpoint, gdbscm_register_breakpoint_x): New functions.
6924 (bpscm_breakpoint_deleted): Reset breakpoint number and stop function.
6925 (scheme_function breakpoint_functions): Update.
6926 * guile/lib/gdb.scm: Delete create-breakpoint!. Rename
6927 breakpoint-delete! to delete-breakpoint!. Add make-breakpoint,
6928 register-breakpoint!.
6929
6930 2014-06-04 Joel Brobecker <brobecker@adacorer.com>
6931
6932 PR server/17023
6933 * mem-break.c (z_type_supported): Return zero if
6934 THE_TARGET->SUPPORTS_Z_POINT_TYPE is NULL.
6935
6936 2014-06-04 Tom Tromey <tromey@redhat.com>
6937
6938 * ada-lang.c (ada_template_to_fixed_record_type_1): Use
6939 value_from_contents_and_address_unresolved.
6940 (ada_template_to_fixed_record_type_1): Likewise.
6941 (ada_which_variant_applies): Likewise.
6942 * value.h (value_from_contents_and_address_unresolved): Declare.
6943 * value.c (value_from_contents_and_address_unresolved): New
6944 function.
6945 * gdbtypes.c (is_dynamic_type, resolve_dynamic_type)
6946 <TYPE_CODE_STRUCT, TYPE_CODE_UNION>: New cases.
6947 (resolve_dynamic_struct, resolve_dynamic_union): New functions.
6948
6949 2014-06-04 Tom Tromey <tromey@redhat.com>
6950
6951 * gdbtypes.c (is_dynamic_type): Remove unneeded "break"s.
6952
6953 2014-06-04 Tom Tromey <tromey@redhat.com>
6954
6955 * procfs.c (procfs_attach): Make "args" const.
6956 * windows-nat.c (windows_attach): Make "args" const.
6957 * nto-procfs.c (procfs_attach): Make "args" const.
6958 * inf-ttrace.c (inf_ttrace_attach): Make "args" const.
6959 * go32-nat.c (go32_attach): Make "args" const.
6960 * gnu-nat.c (gnu_attach): Make "args" const.
6961 * darwin-nat.c (darwin_attach): Make "args" const.
6962 * inf-ptrace.c (inf_ptrace_attach): Make "args" const.
6963 * linux-nat.c (linux_nat_attach): Make "args" const.
6964 * remote.c (extended_remote_attach_1, extended_remote_attach):
6965 Make "args" const.
6966 * target.h (struct target_ops) <to_attach>: Make "args" const.
6967 (find_default_attach): Likewise.
6968 * utils.c (parse_pid_to_attach): Make "args" const.
6969 * utils.h (parse_pid_to_attach): Update.
6970
6971 2014-06-04 Tom Tromey <tromey@redhat.com>
6972
6973 * target-delegates.c: Rebuild.
6974 * target.c (default_thread_address_space): New function.
6975 (target_thread_address_space): Simplify.
6976 * target.h (struct target_ops) <to_thread_address_space>: Add
6977 TARGET_DEFAULT_FUNC.
6978
6979 2014-06-04 Doug Evans <xdje42@gmail.com>
6980
6981 * guile/scm-type.c (type_smob): Remove duplicate typedef.
6982
6983 2014-06-04 Markus Metzger <markus.t.metzger@intel.com>
6984
6985 * record-btrace.c: Include event-loop.h and inf-loop.h.
6986 (record_btrace_resume_exec_dir)
6987 (record_btrace_async_inferior_event_handler)
6988 (record_btrace_handle_async_inferior_event): New.
6989 (record_btrace_open): Create async event handler.
6990 (record_btrace_close): Delete async event handler.
6991 (record_btrace_resume): Set record_btrace_resume_exec_dir,
6992 Mark async event handler.
6993 (record_btrace_execution_direction): New.
6994 (init_record_btrace_ops): Initialize to_execution_direction.
6995
6996 2014-06-03 Doug Evans <xdje42@gmail.com>
6997
6998 * guile/scm-param.c (pascm_make_param_smob): Add ARI comment.
6999 (gdbscm_make_parameter): Ditto.
7000
7001 2014-06-03 Doug Evans <dje@google.com>
7002
7003 * exec.c (exec_close_1): Call clear_section_table instead of
7004 resize_section_table.
7005 (clear_section_table): New function.
7006 (resize_section_table): Make static. Rename arg num_added to
7007 adjustment.
7008 * exec.h (clear_section_table): Declare.
7009 (resize_section_table): Delete.
7010 * progspace.c (release_program_space): Call clear_section_table
7011 instead of resize_section_table.
7012
7013 2014-06-03 Siva Chandra Reddy <sivachandra@google.com>
7014
7015 * NEWS (Python Scripting): Add entry about the new xmethods
7016 feature.
7017
7018 2014-06-03 Siva Chandra Reddy <sivachandra@google.com>
7019
7020 * python/py-xmethods.c: New file.
7021 * python/py-objfile.c (objfile_object): New field 'xmethods'.
7022 (objfpy_dealloc): XDECREF on the new xmethods field.
7023 (objfpy_new, objfile_to_objfile_object): Initialize xmethods
7024 field.
7025 (objfpy_get_xmethods): New function.
7026 (objfile_getset): New entry 'xmethods'.
7027 * python/py-progspace.c (pspace_object): New field 'xmethods'.
7028 (pspy_dealloc): XDECREF on the new xmethods field.
7029 (pspy_new, pspace_to_pspace_object): Initialize xmethods
7030 field.
7031 (pspy_get_xmethods): New function.
7032 (pspace_getset): New entry 'xmethods'.
7033 * python/python-internal.h: Add declarations for new functions.
7034 * python/python.c (_initialize_python): Invoke
7035 gdbpy_initialize_xmethods.
7036 * python/lib/gdb/__init__.py (xmethods): New
7037 attribute.
7038 * python/lib/gdb/xmethod.py: New file.
7039 * python/lib/gdb/command/xmethods.py: New file.
7040
7041 2014-06-03 Siva Chandra Reddy <sivachandra@google.com>
7042
7043 * eval.c (evaluate_subexp_standard): Call the xmethod if the
7044 best match method returned by find_overload_match is an xmethod.
7045 * valarith.c (value_x_binop, value_x_unop): Call the xmethod if
7046 the best matching operator returned by find_overload_match is an
7047 xmethod.
7048 * valops.c: #include "extension.h".
7049 (find_method_list): Add "fn_list" and "xm_worker_vec" arguments.
7050 Return void. The list of matching source methods is returned in
7051 "fn_list" and a vector of matching debug method workers is
7052 returned in "xm_worker_vec". Update all callers.
7053 (value_find_oload_method_list): Likewise.
7054 (find_oload_champ): Add "xm_worker_vec" parameter. If it is
7055 non-NULL, then the index of the best matching method in this
7056 vector is returned. Update all callers.
7057 (find_overload_match): Include xmethods while performing overload
7058 resolution.
7059
7060 2014-06-03 Siva Chandra Reddy <sivachandra@google.com>
7061
7062 * defs.h (enum lval_type): New enumerator "lval_xcallable".
7063 * extension-priv.h (struct extension_language_ops): Add the
7064 xmethod interface.
7065 * extension.c (new_xmethod_worker, clone_xmethod_worker,
7066 get_matching_xmethod_workers, get_xmethod_argtypes,
7067 invoke_xmethod, free_xmethod_worker,
7068 free_xmethod_worker_vec): New functions.
7069 * extension.h: #include "common/vec.h".
7070 New function declarations.
7071 (struct xmethod_worker): New struct.
7072 (VEC (xmethod_worker_ptr)): New vector type.
7073 (xmethod_worker_ptr): New typedef.
7074 (xmethod_worker_vec): Likewise.
7075 * gdbtypes.c (gdbtypes_post_init): Initialize "xmethod" field of
7076 builtin_type.
7077 * gdbtypes.h (enum type_code): New enumerator TYPE_CODE_XMETHOD.
7078 (struct builtin_type): New field "xmethod".
7079 * valarith.c (value_ptradd): Assert that the value argument is not
7080 lval_xcallable.
7081 * valops.c (value_must_coerce_to_target): Return 0 for
7082 lval_xcallable values.
7083 * value.c (struct value): New field XM_WORKER in the field
7084 LOCATION.
7085 (value_address, value_raw_address): Return 0 for lval_xcallable
7086 values.
7087 (set_value_address): Assert that the value is not an
7088 lval_xcallable.
7089 (value_free): Free the associated xmethod worker when freeing
7090 lval_xcallable values.
7091 (set_value_component_location): Assert that the WHOLE value is not
7092 lval_xcallable.
7093 (value_of_xmethod, call_xmethod): New functions.
7094 * value.h: Declare "struct xmethod_worker".
7095 Declare new functions value_of_xmethod, call_xmethod.
7096
7097 2014-06-03 Joel Brobecker <brobecker@adacore.com>
7098 Pedro Alves <palves@redhat.com>
7099
7100 PR breakpoints/17000
7101 * breakpoint.c (find_non_raw_software_breakpoint_inserted_here):
7102 New function, extracted from software_breakpoint_inserted_here_p.
7103 (software_breakpoint_inserted_here_p): Replace factored out code
7104 by call to find_non_raw_software_breakpoint_inserted_here.
7105 (bp_target_info_copy_insertion_state): New function.
7106 (bkpt_insert_location): Handle the case of a single-step
7107 breakpoint already inserted at the same address.
7108 (bkpt_remove_location): Handle the case of a single-step
7109 breakpoint still inserted at the same address.
7110 (deprecated_insert_raw_breakpoint): Handle the case of non-raw
7111 breakpoint already inserted at the same address.
7112 (deprecated_remove_raw_breakpoint): Handle the case of a
7113 non-raw breakpoint still inserted at the same address.
7114 (find_single_step_breakpoint): New function, extracted from
7115 single_step_breakpoint_inserted_here_p.
7116 (find_single_step_breakpoint): New function,
7117 factored out from single_step_breakpoint_inserted_here_p.
7118 (single_step_breakpoint_inserted_here_p): Reimplement.
7119
7120 2014-06-03 Brad Mouring <bmouring@ni.com> (tiny patch)
7121
7122 Pushed by Joel Brobecker <brobecker@adacore.com>
7123 * source.c (show_substitute_path_command): Fix display of matching
7124 substitution rules.
7125
7126 2014-06-03 Gary Benson <gbenson@redhat.com>
7127
7128 * gnu-v2-abi.c (gnuv2_value_rtti_type): Use gdb_demangle.
7129
7130 2014-06-02 Doug Evans <xdje42@gmail.com>
7131
7132 Add parameter support for Guile.
7133 * Makefile.in (SUBDIR_GUILE_OBS): Add scm-param.o.
7134 (SUBDIR_GUILE_SRCS): Add scm-param.c.
7135 (scm-param.o): New rule.
7136 * guile/guile-internal.h (gdbscm_gc_dup_argv): Declare.
7137 (gdbscm_misc_error): Declare.
7138 (gdbscm_canonicalize_command_name): Declare.
7139 (gdbscm_scm_to_host_string): Declare.
7140 (gdbscm_scm_from_host_string): Declare.
7141 (gdbscm_initialize_parameters): Declare.
7142 * guile/guile.c (initialize_gdb_module): Call
7143 gdbscm_initialize_parameters.
7144 * guile/lib/gdb.scm: Export parameter symbols.
7145 * guile/scm-cmd.c (gdbscm_canonicalize_command_name): Renamed from
7146 cmdscm_canonicalize_name and made public. All callers updated.
7147 * guile/scm-exception.c (gdbscm_misc_error): New function.
7148 * guile/scm-param.c: New file.
7149 * guile/scm-string.c (gdbscm_scm_to_string): Add comments.
7150 (gdbscm_scm_to_host_string): New function.
7151 (gdbscm_scm_from_host_string): New function.
7152 * scm-utils.c (gdbscm_gc_dup_argv): New function.
7153
7154 2014-06-02 Doug Evans <xdje42@gmail.com>
7155
7156 Add command support for Guile.
7157 * Makefile.in (SUBDIR_GUILE_OBS): Add scm-cmd.o.
7158 (SUBDIR_GUILE_SRCS): Add scm-cmd.c.
7159 (scm-cmd.o): New rule.
7160 * guile/guile-internal.h (gdbscm_gc_xstrdup): Declare.
7161 (gdbscm_user_error_p): Declare.
7162 (gdbscm_parse_command_name): Declare.
7163 (gdbscm_valid_command_class_p): Declare.
7164 (gdbscm_initialize_commands): Declare.
7165 * guile/guile.c (initialize_gdb_module): Call
7166 gdbscm_initialize_commands.
7167 * guile/lib/gdb.scm: Export command symbols.
7168 * guile/lib/gdb/init.scm (%exception-keys): Add gdb:user-error.
7169 (throw-user-error): New function.
7170 * guile/scm-cmd.c: New file.
7171 * guile/scm-exception.c (user_error_symbol): New static global.
7172 (gdbscm_user_error_p): New function.
7173 (gdbscm_initialize_exceptions): Set user_error_symbol.
7174 * scm-utils.c (gdbscm_gc_xstrdup): New function.
7175
7176 2014-06-02 Phil Muldoon <pmuldoon@redhat.com>
7177
7178 * top.c (command_loop): Handle comments here...
7179 (command_line_input): ... not here.
7180
7181 2014-06-02 Doug Evans <xdje42@gmail.com>
7182
7183 Add progspace support for Guile.
7184 * Makefile.in (SUBDIR_GUILE_OBS): Add scm-progspace.o.
7185 (SUBDIR_GUILE_SRCS): Add scm-progspace.c.
7186 (scm-progspace.o): New rule.
7187 * guile/guile-internal.h (pspace_smob): New typedef.
7188 (psscm_pspace_smob_pretty_printers): Declare.
7189 (psscm_pspace_smob_from_pspace): Declare.
7190 (psscm_scm_from_pspace): Declare.
7191 * guile/guile.c (initialize_gdb_module): Call
7192 gdbscm_initialize_pspaces.
7193 * guile/lib/gdb.scm: Export progspace symbols.
7194 * guile/lib/gdb/printing.scm (prepend-pretty-printer!): Add progspace
7195 support.
7196 (append-pretty-printer!): Ditto.
7197 * guile/scm-pretty-print.c (ppscm_find_pretty_printer_from_progspace):
7198 Implement.
7199 * guile/scm-progspace.c: New file.
7200
7201 2014-06-03 Alan Modra <amodra@gmail.com>
7202
7203 * ppc64-tdep.c (ppc64_standard_linkage8): New.
7204 (ppc64_skip_trampoline_code): Recognise ELFv2 stub supporting fusion.
7205
7206 2014-06-02 Doug Evans <dje@google.com>
7207
7208 Add support for skeletonless type units.
7209 * dwarf2read.c (struct dwarf2_per_objfile): New member
7210 n_allocated_type_units.
7211 (struct dwarf2_per_objfile) <tu_stats>: New member
7212 nr_all_type_units_reallocs.
7213 (create_signatured_type_table_from_index): Initialize
7214 n_allocated_type_units
7215 (create_all_type_units): Ditto.
7216 (add_type_unit): Move up in file. New arg slot.
7217 All callers updated. Increase space for all_type_units more
7218 efficiently.
7219 (fill_in_sig_entry_from_dwo_entry): Handle psymtabs.
7220 (lookup_dwo_signatured_type): Handle skeletonless TUs.
7221 (lookup_dwp_signatured_type): Ditto.
7222 (init_tu_and_read_dwo_dies): New arg use_existing_cu.
7223 All callers updated.
7224 (build_type_psymtabs_1): Leave type_unit_groups as
7225 NULL if no TUs present.
7226 (print_tu_stats): New function.
7227 (process_skeletonless_type_unit): New function.
7228 (process_dwo_file_for_skeletonless_type_units): New
7229 function.
7230 (process_skeletonless_type_units): New function.
7231 (dwarf2_build_psymtabs_hard): Handle skeletonless TUs.
7232 Call print tu_stats if debugging enabled.
7233
7234 2014-06-02 Pedro Alves <palves@redhat.com>
7235
7236 * breakpoint.c (build_target_command_list): Don't build a command
7237 list if we have any duplicate location that isn't a dprintf.
7238
7239 2014-06-02 Pedro Alves <palves@redhat.com>
7240
7241 * breakpoint.c (dprintf_breakpoint_hit): New function.
7242 (initialize_breakpoint_ops): Install it as dprintf's
7243 breakpoint_hit method.
7244
7245 2014-06-02 Joel Brobecker <brobecker@adacore.com>
7246
7247 * source.c (substitute_path_rule_matches): Simplify using
7248 filename_ncmp instead of FILENAME_CMP.
7249
7250 2014-06-02 Joel Brobecker <brobecker@adacore.com>
7251
7252 * source.c (substitute_path_rule_matches): Remove trailing spaces.
7253
7254 2014-06-01 Ludovic Courtès <ludo@gnu.org>
7255
7256 * configure.ac: When Guile is available, check for the
7257 availability of 'scm_new_smob'.
7258 * configure, config.h.in: Regenerate.
7259 * guile/guile-internal.h (scm_new_smob) [!HAVE_SCM_NEW_SMOB]: New
7260 function.
7261
7262 2014-05-30 Andrew Burgess <aburgess@broadcom.com>
7263
7264 * frame.c (struct frame_info): Add stop_string field.
7265 (get_prev_frame_always_1): Renamed from get_prev_frame_always.
7266 (get_prev_frame_always): Old content moved into
7267 get_prev_frame_always_1. Call get_prev_frame_always_1 inside
7268 TRY_CATCH, handle MEMORY_ERROR exceptions.
7269 (frame_stop_reason_string): New function definition.
7270 * frame.h (unwind_stop_reason_to_string): Extend comment to
7271 mention frame_stop_reason_string.
7272 (frame_stop_reason_string): New function declaration.
7273 * stack.c (frame_info): Switch to frame_stop_reason_string.
7274 (backtrace_command_1): Switch to frame_stop_reason_string.
7275 * unwind_stop_reason.def: Add UNWIND_MEMORY_ERROR.
7276 (LAST_ENTRY): Changed to UNWIND_MEMORY_ERROR.
7277 * guile/lib/gdb.scm: Add FRAME_UNWIND_MEMORY_ERROR to export list.
7278
7279 2014-05-30 Andrew Burgess <aburgess@broadcom.com>
7280
7281 * frame.c (frame_stop_reason_string): Rename to ...
7282 (unwind_stop_reason_to_string): this.
7283 * frame.h (frame_stop_reason_string): Rename to ...
7284 (unwind_stop_reason_to_string): this.
7285 * stack.c (frame_info): Update call to frame_stop_reason_string.
7286 (backtrace_command_1): Likewise.
7287 * guile/scm-frame.c (gdbscm_unwind_stop_reason_string): Likewise.
7288 * python/py-frame.c (gdbpy_frame_stop_reason_string): Likewise.
7289
7290 2014-05-30 Andrew Burgess <aburgess@broadcom.com>
7291
7292 * frame.c (remove_prev_frame): New function.
7293 (get_prev_frame_if_no_cycle): Create / discard cleanup using
7294 remove_prev_frame.
7295
7296 2014-05-29 Pedro Alves <palves@redhat.com>
7297
7298 * infrun.c (resume): Rename local 'hw_step' to 'entry_step'
7299 and make it const. When a single-step decays to a continue,
7300 clear 'step', not 'hw_step'. Pass whether the caller wanted
7301 to step to user_visible_resume_ptid, not what we ask the
7302 target to do.
7303
7304 2014-05-29 Pedro Alves <palves@redhat.com>
7305
7306 * infrun.c (process_event_stop_test, handle_step_into_function)
7307 (handle_step_into_function_backward): Adjust.
7308 Don't set the even thread's stop_step and call stop_waiting before
7309 calling end_stepping_range. Instead do that ...
7310 (end_stepping_range): ... here. Take an ecs pointer parameter.
7311
7312 2014-05-29 Pedro Alves <palves@redhat.com>
7313
7314 * infrun.c (stop_stepping): Rename to ...
7315 (stop_waiting): ... this.
7316 (proceed): Update comment.
7317 (process_event_stop_test, handle_inferior_event)
7318 (handle_signal_stop, handle_step_into_function)
7319 (handle_step_into_function_backward): Update.
7320
7321 2014-05-29 Pedro Alves <palves@redhat.com>
7322
7323 * infcall.c (run_inferior_call): Don't check whether the current
7324 thread is running after the proceed call.
7325
7326 2014-05-29 Pedro Alves <palves@redhat.com>
7327 Tom Tromey <tromey@redhat.com>
7328
7329 * NEWS: Mention "maint set target-async", "set mi-async", and that
7330 background execution commands are now always available.
7331 * target.h (target_async_permitted): Update comment.
7332 * target.c (target_async_permitted, target_async_permitted_1):
7333 Default to 1.
7334 (set_target_async_command): Rename to ...
7335 (maint_set_target_async_command): ... this.
7336 (show_target_async_command): Rename to ...
7337 (maint_show_target_async_command): ... this.
7338 (_initialize_target): Adjust.
7339 * infcmd.c (prepare_execution_command): Make extern.
7340 * inferior.h (prepare_execution_command): Declare.
7341 * infrun.c (set_observer_mode): Leave target async alone.
7342 * mi/mi-interp.c (mi_interpreter_init): Install
7343 mi_on_sync_execution_done as sync_execution_done observer.
7344 (mi_on_sync_execution_done): New function.
7345 (mi_execute_command_input_handler): Don't print the prompt if we
7346 just started a synchronous command with an async target.
7347 (mi_on_resume): Check sync_execution before printing prompt.
7348 * mi/mi-main.h (mi_async_p): Declare.
7349 * mi/mi-main.c: Include gdbcmd.h.
7350 (mi_async_p): New function.
7351 (mi_async, mi_async_1): New globals.
7352 (set_mi_async_command, show_mi_async_command, mi_async): New
7353 functions.
7354 (exec_continue): Call prepare_execution_command.
7355 (run_one_inferior, mi_cmd_exec_run, mi_cmd_list_target_features)
7356 (mi_execute_async_cli_command): Use mi_async_p.
7357 (_initialize_mi_main): Install "set mi-async". Make
7358 "target-async" a deprecated alias.
7359
7360 2014-05-29 Pedro Alves <palves@redhat.com>
7361
7362 * cli/cli-interp.c (cli_interpreter_display_prompt_p): Delete.
7363 (_initialize_cli_interp): Adjust.
7364 * event-loop.c: Include "observer.h".
7365 (start_event_loop): Notify 'command_error' observers instead of
7366 calling display_gdb_prompt. Remove FIXME comment.
7367 * event-top.c (display_gdb_prompt): Remove call into the
7368 interpreters.
7369 * inf-loop.c: Include "observer.h".
7370 (inferior_event_handler): Notify 'command_error' observers instead
7371 of calling display_gdb_prompt.
7372 * infrun.c (fetch_inferior_event): Notify 'sync_execution_done'
7373 observers instead of calling display_gdb_prompt.
7374 * interps.c (interp_set): Don't call display_gdb_prompt.
7375 (current_interp_display_prompt_p): Delete.
7376 * interps.h (interp_prompt_p): Delete declaration.
7377 (interp_prompt_p_ftype): Delete.
7378 (struct interp_procs) <prompt_proc_p>: Delete field.
7379 (current_interp_display_prompt_p): Delete declaration.
7380 * mi-interp.c (mi_interpreter_prompt_p): Delete.
7381 (_initialize_mi_interp): Adjust.
7382 * tui-interp.c (tui_init): Install 'sync_execution_done' and
7383 'command_error' observers.
7384 (tui_on_sync_execution_done, tui_on_command_error): New
7385 functions.
7386 (tui_display_prompt_p): Delete.
7387 (_initialize_tui_interp): Adjust.
7388
7389 2014-05-29 Pedro Alves <palves@redhat.com>
7390
7391 PR gdb/13860
7392 * cli/cli-interp.c: Include infrun.h and observer.h.
7393 (cli_uiout, cli_interp): New globals.
7394 (cli_on_signal_received, cli_on_end_stepping_range)
7395 (cli_on_signal_exited, cli_on_exited, cli_on_no_history): New
7396 functions.
7397 (cli_interpreter_init): Install them as 'end_stepping_range',
7398 'signal_received' 'signal_exited', 'exited' and 'no_history'
7399 observers.
7400 (_initialize_cli_interp): Remove cli_interp local.
7401 * infrun.c (handle_inferior_event): Call the several stop reason
7402 observers instead of printing the stop reason directly.
7403 (end_stepping_range): New function.
7404 (print_end_stepping_range_reason, print_signal_exited_reason)
7405 (print_exited_reason, print_signal_received_reason)
7406 (print_no_history_reason): Make static, and add an uiout
7407 parameter. Print to that instead of to CURRENT_UIOUT.
7408 * infrun.h (print_end_stepping_range_reason)
7409 (print_signal_exited_reason, print_exited_reason)
7410 (print_signal_received_reason print_no_history_reason): New
7411 declarations.
7412 * mi/mi-common.h (struct mi_interp): Rename 'uiout' field to
7413 'mi_uiout'.
7414 <cli_uiout>: New field.
7415 * mi/mi-interp.c (mi_interpreter_init): Adjust. Create the new
7416 uiout for CLI output. Install 'signal_received',
7417 'end_stepping_range', 'signal_exited', 'exited' and 'no_history'
7418 observers.
7419 (find_mi_interpreter, mi_interp_data, mi_on_signal_received)
7420 (mi_on_end_stepping_range, mi_on_signal_exited, mi_on_exited)
7421 (mi_on_no_history): New functions.
7422 (ui_out_free_cleanup): Delete function.
7423 (mi_on_normal_stop): Don't allocate a new uiout for CLI output,
7424 instead use the one already stored in the MI interpreter data.
7425 (mi_ui_out): Adjust.
7426 * tui/tui-interp.c: Include infrun.h and observer.h.
7427 (tui_interp): New global.
7428 (tui_on_signal_received, tui_on_end_stepping_range)
7429 (tui_on_signal_exited, tui_on_exited)
7430 (tui_on_no_history): New functions.
7431 (tui_init): Install them as 'end_stepping_range',
7432 'signal_received' 'signal_exited', 'exited' and 'no_history'
7433 observers.
7434 (_initialize_tui_interp): Delete tui_interp local.
7435
7436 2014-05-29 Pedro Alves <palves@redhat.com>
7437
7438 PR gdb/15713
7439 * linux-nat.c (linux_nat_resume_callback): Rename the second
7440 parameter to 'except'. Skip LP if it points to EXCEPT.
7441 (linux_nat_resume): Don't mark the event lwp as not stopped
7442 before resuming sibling lwps. Instead ask
7443 linux_nat_resume_callback to skip the event lwp. Mark it as not
7444 stopped after actually resuming it.
7445 (linux_handle_syscall_trap): Mark the lwp as not stopped after
7446 resuming it.
7447 (wait_lwp): Mark the lwp as stopped here.
7448 (stop_wait_callback): Mark the lwp as not stopped right after
7449 resuming it. Don't mark lwps as stopped here.
7450 (linux_nat_filter_event): Mark the lwp as stopped earlier.
7451 (linux_nat_wait_1): Don't mark dead lwps as stopped here.
7452
7453 2014-05-29 Pedro Alves <palves@redhat.com>
7454
7455 PR PR15693
7456 * infrun.c (resume): Determine how much to resume depending on
7457 whether the caller wanted a step, not whether we can hardware step
7458 the target. Mark all threads that we intend to run as running,
7459 unless we're calling an inferior function.
7460 (normal_stop): If the thread is running an infcall, don't finish
7461 thread state.
7462 * target.c (target_resume): Don't mark threads as running here.
7463
7464 2014-05-28 Joel Brobecker <brobecker@adacore.com>
7465
7466 * serial.c (_initialize_serial): Remove support for
7467 the "set remotebaud" and "show remotebaud" commands.
7468 * NEWS: Add entry documenting the removal of that command.
7469
7470 2014-05-28 Yao Qi <yao@codesourcery.com>
7471
7472 * charset.c: Fix typo in comments.
7473
7474 2014-05-27 Gary Benson <gbenson@redhat.com>
7475
7476 * utils.c (internal_vproblem): Prompt for a bug report.
7477
7478 2014-05-26 Andy Wingo <wingo@igalia.com>
7479
7480 * guile/scm-arch.c (arscm_mark_arch_smob):
7481 * guile/scm-block.c (bkscm_mark_block_smob)
7482 (bkscm_mark_block_syms_progress_smob):
7483 * guile/scm-breakpoint.c (bpscm_mark_breakpoint_smob):
7484 * guile/scm-exception.c (exscm_mark_exception_smob):
7485 * guile/scm-frame.c (frscm_mark_frame_smob):
7486 * guile/scm-iterator.c (itscm_mark_iterator_smob):
7487 * guile/scm-lazy-string.c (lsscm_mark_lazy_string_smob):
7488 * guile/scm-objfile.c (ofscm_mark_objfile_smob):
7489 * guile/scm-pretty-print.c (ppscm_mark_pretty_printer_smob)
7490 (ppscm_mark_pretty_printer_worker_smob):
7491 * guile/scm-symbol.c (syscm_mark_symbol_smob):
7492 * guile/scm-symtab.c (stscm_mark_symtab_smob, stscm_mark_sal_smob):
7493 * guile/scm-type.c (tyscm_mark_type_smob, tyscm_mark_field_smob):
7494 * guile/scm-value.c (vlscm_mark_value_smob): Remove unnecessary
7495 mark functions.
7496 * guile/scm-symtab.c (stscm_free_sal_smob): Remove unnecessary free
7497 function.
7498
7499 2014-05-26 Andy Wingo <wingo@igalia.com>
7500 Doug Evans <xdje42@gmail.com>
7501
7502 * guile/guile-internal.h (GDB_SMOB_HEAD): Replace properties with
7503 empty_base_class. All uses updated.
7504 (gdbscm_mark_gsmob, gdbscm_mark_chained_gsmob)
7505 (gdbscm_mark_eqable_gsmob): Remove these now-unneeded functions.
7506 Adapt all callers.
7507 * guile/scm-gsmob.c (gdbscm_mark_gsmob)
7508 (gdbscm_mark_chained_gsmob, gdbscm_mark_eqable_gsmob): Remove.
7509 (gdbscm_gsmob_property, gdbscm_set_gsmob_property_x)
7510 (gdbscm_gsmob_has_property_p, add_property_name)
7511 (gdbscm_gsmob_properties): Remove, and remove them from gsmob_functions.
7512 * guile/lib/gdb.scm (gdb-object-property, set-gdb-object-property)
7513 (gdb-object-has-property?, gdb-object-properties): Remove.
7514 (gdb-object-kind): Renamed from gsmob-kind.
7515
7516 2014-05-26 Andy Wingo <wingo@igalia.com>
7517
7518 * configure.ac (try_guile_versions): Allow building with guile 2.2.
7519 * configure: Regenerate.
7520
7521 2014-05-23 Markus Metzger <markus.t.metzger@intel.com>
7522
7523 * symfile-mem.c (symbol_file_add_from_memory): Add BFD sections.
7524
7525 2014-05-23 Markus Metzger <markus.t.metzger@intel.com>
7526
7527 * record-btrace.c (record_btrace_allow_memory_access): Remove.
7528 (replay_memory_access_read_only, replay_memory_access_read_write)
7529 (replay_memory_access_types, replay_memory_access)
7530 (set_record_btrace_cmdlist, show_record_btrace_cmdlist)
7531 (cmd_set_record_btrace, cmd_show_record_btrace)
7532 (cmd_show_replay_memory_access): New.
7533 (record_btrace_xfer_partial, record_btrace_insert_breakpoint)
7534 (record_btrace_remove_breakpoint): Replace
7535 record_btrace_allow_memory_access with replay_memory_access.
7536 (_initialize_record_btrace): Add commands.
7537 * NEWS: Announce it.
7538
7539 2014-05-22 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
7540
7541 * aarch64-linux-nat.c (asm/ptrace.h): Include.
7542
7543 2014-05-22 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
7544
7545 * MAINTAINERS (Write After Approval): Move self back from
7546 paper trail.
7547
7548 2014-05-22 Pedro Alves <palves@redhat.com>
7549
7550 * inferior.h (debug_infrun, debug_displaced, stop_on_solib_events)
7551 (sync_execution, sched_multi, step_stop_if_no_debug, non_stop)
7552 (disable_randomization, enum exec_direction_kind)
7553 (execution_direction, stop_registers, start_remote)
7554 (clear_proceed_status, proceed, resume, user_visible_resume_ptid)
7555 (wait_for_inferior, normal_stop, get_last_target_status)
7556 (prepare_for_detach, fetch_inferior_event, init_wait_for_inferior)
7557 (insert_step_resume_breakpoint_at_sal)
7558 (follow_inferior_reset_breakpoints, stepping_past_instruction_at)
7559 (set_step_info, print_stop_event, signal_stop_state)
7560 (signal_print_state, signal_pass_state, signal_stop_update)
7561 (signal_print_update, signal_pass_update)
7562 (update_signals_program_target, clear_exit_convenience_vars)
7563 (displaced_step_dump_bytes, update_observer_mode)
7564 (signal_catch_update, gdb_signal_from_command): Move
7565 declarations ...
7566 * infrun.h: ... to this new file.
7567 * amd64-tdep.c: Include infrun.h.
7568 * annotate.c: Include infrun.h.
7569 * arch-utils.c: Include infrun.h.
7570 * arm-linux-tdep.c: Include infrun.h.
7571 * arm-tdep.c: Include infrun.h.
7572 * break-catch-sig.c: Include infrun.h.
7573 * breakpoint.c: Include infrun.h.
7574 * common/agent.c: Include infrun.h instead of inferior.h.
7575 * corelow.c: Include infrun.h.
7576 * event-top.c: Include infrun.h.
7577 * go32-nat.c: Include infrun.h.
7578 * i386-tdep.c: Include infrun.h.
7579 * inf-loop.c: Include infrun.h.
7580 * infcall.c: Include infrun.h.
7581 * infcmd.c: Include infrun.h.
7582 * infrun.c: Include infrun.h.
7583 * linux-fork.c: Include infrun.h.
7584 * linux-nat.c: Include infrun.h.
7585 * linux-thread-db.c: Include infrun.h.
7586 * monitor.c: Include infrun.h.
7587 * nto-tdep.c: Include infrun.h.
7588 * procfs.c: Include infrun.h.
7589 * record-btrace.c: Include infrun.h.
7590 * record-full.c: Include infrun.h.
7591 * remote-m32r-sdi.c: Include infrun.h.
7592 * remote-mips.c: Include infrun.h.
7593 * remote-notif.c: Include infrun.h.
7594 * remote-sim.c: Include infrun.h.
7595 * remote.c: Include infrun.h.
7596 * reverse.c: Include infrun.h.
7597 * rs6000-tdep.c: Include infrun.h.
7598 * s390-linux-tdep.c: Include infrun.h.
7599 * solib-irix.c: Include infrun.h.
7600 * solib-osf.c: Include infrun.h.
7601 * solib-svr4.c: Include infrun.h.
7602 * target.c: Include infrun.h.
7603 * top.c: Include infrun.h.
7604 * windows-nat.c: Include infrun.h.
7605 * mi/mi-interp.c: Include infrun.h.
7606 * mi/mi-main.c: Include infrun.h.
7607 * python/py-threadevent.c: Include infrun.h.
7608
7609 2014-05-22 Pedro Alves <palves@redhat.com>
7610
7611 * infrun.c (handle_inferior_event): Store the exit code for
7612 --return-child-result here, instead of ...
7613 (print_exited_reason): ... here.
7614
7615 2014-05-21 Pedro Alves <palves@redhat.com>
7616
7617 PR gdb/13860
7618 * gdbthread.h (struct thread_control_state): New field
7619 `command_interp'.
7620 * infrun.c (follow_fork): Copy the new thread control field to the
7621 child fork thread.
7622 (clear_proceed_status_thread): Clear the new thread control field.
7623 (proceed): Set the new thread control field.
7624 * interps.h (command_interp): Declare.
7625 * interps.c (command_interpreter): New global.
7626 (command_interp): New function.
7627 (interp_exec): Set `command_interpreter' while here.
7628 * cli-out.c (cli_uiout_dtor): New function.
7629 (cli_ui_out_impl): Install it.
7630 * mi/mi-interp.c: Include cli-out.h.
7631 (mi_cmd_interpreter_exec): Add comment.
7632 (restore_current_uiout_cleanup): New function.
7633 (ui_out_free_cleanup): New function.
7634 (mi_on_normal_stop): If finishing an execution command started by
7635 a CLI command, or any kind of breakpoint-like event triggered,
7636 print the stop event to the output (CLI) stream.
7637 * mi/mi-out.c (mi_ui_out_impl): Install NULL `dtor' handler.
7638
7639 2014-05-21 Pedro Alves <palves@redhat.com>
7640
7641 * cli/cli-cmds.c (list_command): Handle the first "list" after the
7642 current source line having changed.
7643 * frame.h (set_current_sal_from_frame): Remove 'center' parameter.
7644 * infrun.c (normal_stop): Adjust call to
7645 set_current_sal_from_frame.
7646 * source.c (clear_lines_listed_range): New function.
7647 (set_current_source_symtab_and_line, identify_source_line): Clear
7648 the lines listed range.
7649 (line_info): Handle the first "info line" after the current source
7650 line having changed.
7651 * stack.c (print_stack_frame): Remove center handling.
7652 (set_current_sal_from_frame): Remove 'center' parameter. Don't
7653 center sal.line.
7654
7655 2014-05-21 Pedro Alves <palves@redhat.com>
7656
7657 * inf-child.c (inf_child_mourn_inferior): New function.
7658 * inf-child.h (inf_child_mourn_inferior): New declaration.
7659 * darwin-nat.c (darwin_mourn_inferior): Use
7660 inf_child_mourn_inferior.
7661 * gnu-nat.c (gnu_mourn_inferior): Likewise.
7662 * inf-ptrace.c (inf_ptrace_mourn_inferior): Likewise.
7663 * inf-ttrace.c (inf_ttrace_mourn_inferior): Likewise.
7664 * nto-procfs.c (procfs_mourn_inferior): Likewise.
7665 * windows-nat.c (windows_mourn_inferior): Likewise.
7666
7667 2014-05-21 Doug Evans <xdje42@gmail.com>
7668
7669 * guile/scm-breakpoint.c (breakpoint_functions): Fix typo.
7670
7671 2014-05-21 Doug Evans <xdje42@gmail.com>
7672
7673 * guile/scm-exception.c (gdbscm_invalid_object_error): Make result void.
7674 (gdbscm_out_of_range_error): Ditto.
7675 (gdbscm_memory_error): Ditto.
7676 * guile/scm-string.c (gdbscm_scm_to_target_string_unsafe): Delete.
7677 * guile/guile-internal.h (gdbscm_invalid_object_error): Update.
7678 (gdbscm_out_of_range_error): Update.
7679 (gdbscm_memory_error): Update.
7680 (gdbscm_scm_to_target_string_unsafe): Delete.
7681
7682 2014-05-21 Pedro Alves <palves@redhat.com>
7683
7684 * inf-child.c (inf_child_ops, inf_child_explicitly_opened): New
7685 globals.
7686 (inf_child_open_target): New function.
7687 (inf_child_open): Use inf_child_open_target to push the target
7688 instead of erroring out.
7689 (inf_child_disconnect, inf_child_close)
7690 (inf_child_maybe_unpush_target): New functions.
7691 (inf_child_target): Install inf_child_disconnect and
7692 inf_child_close. Store a pointer to the returned object.
7693 * inf-child.h (inf_child_open_target, inf_child_maybe_unpush): New
7694 declarations.
7695 * target.c (auto_connect_native_target): New global.
7696 (show_default_run_target): New function.
7697 (find_default_run_target): Return NULL if automatically connecting
7698 to the native target is disabled.
7699 (_initialize_target): Install set/show auto-connect-native-target.
7700 * NEWS: Mention "set auto-connect-native-target", and "target
7701 native".
7702 * linux-nat.c (super_close): New global.
7703 (linux_nat_close): Call super_close.
7704 (linux_nat_add_target): Store a pointer to the base class's
7705 to_close method.
7706 * inf-ptrace.c (inf_ptrace_mourn_inferior, inf_ptrace_detach): Use
7707 inf_child_maybe_unpush.
7708 * inf-ttrace.c (inf_ttrace_him): Don't push the target if it is
7709 already pushed.
7710 (inf_ttrace_mourn_inferior): Only unpush the target after mourning
7711 the inferior. Use inf_child_maybe_unpush_target.
7712 (inf_ttrace_attach): Don't push the target if it is already
7713 pushed.
7714 (inf_ttrace_detach): Use inf_child_maybe_unpush_target.
7715 * darwin-nat.c (darwin_mourn_inferior): Only unpush the target
7716 after mourning the inferior. Use inf_child_maybe_unpush_target.
7717 (darwin_attach_pid): Don't push the target if it is already
7718 pushed.
7719 * gnu-nat.c (gnu_mourn_inferior): Only unpush the target after
7720 mourning the inferior. Use inf_child_maybe_unpush_target.
7721 (gnu_detach): Use inf_child_maybe_unpush_target.
7722 * go32-nat.c (go32_create_inferior): Don't push the target if it
7723 is already pushed.
7724 (go32_mourn_inferior): Use inf_child_maybe_unpush_target.
7725 * nto-procfs.c (procfs_is_nto_target): Adjust comment.
7726 (procfs_open): Rename to ...
7727 (procfs_open_1): ... this. Add target_ops parameter. Adjust
7728 comments. Can target_preopen before changing node. Call
7729 inf_child_open_target to push the target explicitly.
7730 (procfs_attach): Don't push the target if it is already pushed.
7731 (procfs_detach): Use inf_child_maybe_unpush_target.
7732 (procfs_create_inferior): Don't push the target if it is already
7733 pushed.
7734 (nto_native_ops): New global.
7735 (procfs_open): Reimplement.
7736 (procfs_native_open): New function.
7737 (init_procfs_targets): Install procfs_native_open as to_open of
7738 "target native". Store a pointer to the "native" target in
7739 nto_native_ops.
7740 * procfs.c (procfs_attach): Don't push the target if it is already
7741 pushed.
7742 (procfs_detach): Use inf_child_maybe_unpush_target.
7743 (procfs_mourn_inferior): Only unpush the target after mourning the
7744 inferior. Use inf_child_maybe_unpush_target.
7745 (procfs_init_inferior): Don't push the target if it is already
7746 pushed.
7747 * windows-nat.c (do_initial_windows_stuff): Don't push the target
7748 if it is already pushed.
7749
7750 2014-05-21 Pedro Alves <palves@redhat.com>
7751
7752 * NEWS: Mention that the "child", "GNU, "djgpp", "darwin-child"
7753 and "procfs" targets are now called "native" instead.
7754
7755 2014-05-21 Pedro Alves <palves@redhat.com>
7756
7757 * go32-nat.c (go32_open): Delete.
7758 (go32_target): Don't override the to_open method.
7759
7760 2014-05-21 Pedro Alves <palves@redhat.com>
7761
7762 * nto-procfs.c (procfs_can_run): New function.
7763 (nto_procfs_ops): New global.
7764 (init_procfs_targets): New, based on procfs_target. Install
7765 "target native" in addition to "target procfs".
7766 (_initialize_procfs): Call init_procfs_targets instead of adding
7767 the target here.
7768
7769 2014-05-21 Pedro Alves <palves@redhat.com>
7770
7771 * windows-nat.c (windows_target): Don't override to_shortname,
7772 to_longname or to_doc.
7773
7774 2014-05-21 Pedro Alves <palves@redhat.com>
7775
7776 * gnu-nat.c (gnu): Don't override to_shortname, to_longname or
7777 to_doc.
7778
7779 2014-05-21 Pedro Alves <palves@redhat.com>
7780
7781 * darwin-nat.c (_initialize_darwin_inferior): Don't override
7782 to_shortname, to_longname or to_doc.
7783
7784 2014-05-21 Pedro Alves <palves@redhat.com>
7785
7786 * go32-nat.c (go32_target): Don't override to_shortname,
7787 to_longname or to_doc.
7788
7789 2014-05-21 Pedro Alves <palves@redhat.com>
7790
7791 * inf-child.c (inf_child_open): Remove mention of "child".
7792 (inf_child_target): Rename target to "native" instead of "child".
7793
7794 2014-05-21 Andreas Arnez <arnez@linux.vnet.ibm.com>
7795
7796 * Makefile.in (SFILES): Delete "regset.c".
7797 (COMMON_OBS): Delete "regset.o".
7798 * regset.c: Remove.
7799 * regset.h (regset_alloc): Delete prototype.
7800
7801 2014-05-21 Andreas Arnez <arnez@linux.vnet.ibm.com>
7802
7803 * sparc-linux-tdep.c (sparc32_linux_gregset)
7804 (sparc32_linux_fpregset): New static regset structures.
7805 (sparc32_linux_init_abi): Drop dynamic regset allocations.
7806 * sparc-tdep.h (struct gdbarch_tdep): Constify 'gregset' and
7807 'fpregset' fields.
7808 * sparc64-linux-tdep.c: (sparc64_linux_gregset)
7809 (sparc64_linux_fpregset): New static regset structures.
7810 (sparc64_linux_init_abi): Drop dynamic regset allocations.
7811 * sparc64fbsd-tdep.c (sparc64fbsd_gregset, sparc64fbsd_fpregset):
7812 New static regset structures.
7813 (sparc64fbsd_init_abi): Drop dynamic regset allocations.
7814 * sparc64nbsd-tdep.c (sparc64nbsd_gregset, sparc64nbsd_fpregset):
7815 New static regset structures.
7816 (sparc64nbsd_init_abi): Drop dynamic regset allocations.
7817 * sparc64obsd-tdep.c (sparc64obsd_gregset, sparc64obsd_fpregset):
7818 New static regset structures.
7819 (sparc64obsd_init_abi): Drop dynamic regset allocations.
7820 * sparcnbsd-tdep.c (sparc32nbsd_gregset, sparc32nbsd_fpregset):
7821 New static regset structures.
7822 (sparc32nbsd_init_abi): Drop dynamic regset allocations.
7823
7824 2014-05-21 Andreas Arnez <arnez@linux.vnet.ibm.com>
7825
7826 * sparc-linux-nat.c (supply_gregset, supply_fpregset)
7827 (fill_gregset, fill_fpregset, _initialize_sparc_linux_nat): Rename
7828 register maps ("regmaps") from "*regset" to "*regmap". Do this
7829 for all regmap types and variables.
7830 * sparc-linux-tdep.c (sparc32_linux_step_trap)
7831 (sparc32_linux_supply_core_gregset)
7832 (sparc32_linux_collect_core_gregset)
7833 (sparc32_linux_supply_core_fpregset)
7834 (sparc32_linux_collect_core_fpregset): Likewise.
7835 * sparc-nat.c (sparc_gregset, sparc_fpregset): Rename to...
7836 (sparc_gregmap, sparc_fpregmap): ... these.
7837 (sparc_supply_gregset, sparc_collect_gregset)
7838 (sparc_supply_fpregset, sparc_collect_fpregset): Likewise.
7839 (sparc_fetch_inferior_registers, sparc_store_inferior_registers)
7840 (_initialize_sparc_nat): Rename regmaps.
7841 * sparc-nat.h (sparc_gregset, sparc_fpregset): Rename to...
7842 (sparc_gregmap, sparc_fpregmap): ... these.
7843 (sparc_supply_gregset, sparc_collect_gregset)
7844 (sparc_supply_fpregset, sparc_collect_fpregset): Likewise.
7845 * sparc-sol2-nat.c (sparc_sol2_gregset, sparc_sol2_fpregset):
7846 Rename macros to...
7847 (sparc_sol2_gregmap, sparc_sol2_fpregmap): ... these.
7848 (supply_gregset, supply_fpregset, fill_gregset, fill_fpregset):
7849 Likewise.
7850 * sparc-sol2-tdep.c (sparc32_sol2_gregset, sparc32_sol2_fpregset):
7851 Rename to...
7852 (sparc32_sol2_gregmap, sparc32_sol2_fpregmap): ... these.
7853 * sparc-tdep.c (sparc32_supply_gregset, sparc32_collect_gregset)
7854 (sparc32_supply_fpregset, sparc32_collect_fpregset): Rename
7855 regmaps.
7856 (sparc32_sunos4_gregset, sparc32_sunos4_fpregset)
7857 (sparc32_bsd_fpregset): Rename to...
7858 (sparc32_sunos4_gregmap, sparc32_sunos4_fpregmap)
7859 (sparc32_bsd_fpregmap): ... these.
7860 * sparc-tdep.h (struct sparc_gregset, struct sparc_fpregset)
7861 (sparc32_sunos4_gregset, sparc32_sunos4_fpregset)
7862 (sparc32_bsd_fpregset, sparc32_sol2_gregset)
7863 (sparc32_sol2_fpregset, sparc32nbsd_gregset): Rename to...
7864 (struct sparc_gregmap, struct sparc_fpregmap)
7865 (sparc32_sunos4_gregmap, sparc32_sunos4_fpregmap)
7866 (sparc32_bsd_fpregmap, sparc32_sol2_gregmap)
7867 (sparc32_sol2_fpregmap, sparc32nbsd_gregmap): ... these.
7868 (sparc32_supply_regset, sparc32_collect_gregset)
7869 (sparc32_supply_fpregset, sparc32_collect_fpregset): Adjust
7870 prototypes.
7871 * sparc64-linux-nat.c (sparc64_linux_ptrace_gregset): Rename to...
7872 (sparc64_linux_ptrace_gregmap): ... this.
7873 (supply_gregset, supply_fpregset, fill_gregset, fill_fpregset)
7874 (_initialize_sparc64_linux_nat): Rename regmaps.
7875 * sparc64-linux-tdep.c (sparc64_linux_core_gregset): Rename to...
7876 (sparc64_linux_core_gregmap): ... this.
7877 (sparc64_linux_supply_core_gregset)
7878 (sparc64_linux_collect_core_gregset)
7879 (sparc64_linux_supply_core_fpregset)
7880 (sparc64_linux_collect_core_fpregset): Rename regmaps.
7881 * sparc64-sol2-tdep.c (sparc64_sol2_gregset)
7882 (sparc64_sol2_fpregset): Rename to...
7883 (sparc64_sol2_gregmap, sparc64_sol2_fpregmap): ... these.
7884 * sparc64-tdep.c (sparc64_supply_gregset, sparc64_collect_gregset)
7885 (sparc64_supply_fpregset, sparc64_collect_fpregset): Rename
7886 regmaps.
7887 * sparc64-tdep.h (struct sparc_gregset, sparc64_sol2_gregset)
7888 (sparc64_sol2_fpregset, sparc64fbsd_gregset, sparc64nbsd_gregset)
7889 (sparc64_bsd_fpregset): Rename to...
7890 (struct sparc_gregmap, sparc64_sol2_gregmap)
7891 (sparc64_sol2_fpregmap, sparc64fbsd_gregmap, sparc64nbsd_gregmap)
7892 (sparc64_bsd_fpregmap): ... these.
7893 (sparc64_supply_gregset, sparc64_collect_gregset)
7894 (sparc64_supply_fpregset, sparc64_collect_fpregset): Adjust
7895 prototypes.
7896 * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Rename regmaps.
7897 * sparc64fbsd-tdep.c (sparc64fbsd_gregset): Rename to...
7898 (sparc64fbsd_gregmap): ... this.
7899 (sparc64fbsd_supply_gregset, sparc64fbsd_collect_gregset)
7900 (sparc64fbsd_supply_fpregset, sparc64fbsd_collect_fpregset):
7901 Rename regmaps.
7902 * sparc64nbsd-nat.c (sparc64nbsd_supply_gregset)
7903 (sparc64nbsd_collect_gregset, sparc64nbsd_supply_fpregset)
7904 (sparc64nbsd_collect_fpregset): Likewise.
7905 * sparc64nbsd-tdep.c (sparc64nbsd_gregset): Rename to...
7906 (sparc64nbsd_gregmap): ... this.
7907 (sparc64nbsd_supply_gregset, sparc64nbsd_supply_fpregset): Rename
7908 regmaps.
7909 * sparc64obsd-nat.c (_initialize_sparc64obsd_nat): Likewise.
7910 * sparc64obsd-tdep.c (sparc64obsd_gregset): Rename to...
7911 (sparc64obsd_gregmap): ... this.
7912 (sparc64obsd_supply_gregset, sparc64obsd_supply_fpregset): Rename
7913 regmaps.
7914 * sparcnbsd-nat.c (_initialize_sparcnbsd_nat): Likewise.
7915 * sparcnbsd-tdep.c (sparc32nbsd_gregset): Rename to...
7916 (sparc32nbsd_gregmap): ... this.
7917 (sparc32nbsd_supply_gregset, sparc32nbsd_supply_fpregset): Rename
7918 regmaps.
7919
7920 2014-05-21 Andreas Arnez <arnez@linux.vnet.ibm.com>
7921
7922 * score-tdep.c (score7_linux_gregset): New static regset
7923 structure.
7924 (score7_linux_regset_from_core_section): Remove dynamic regset
7925 allocation.
7926 (score_gdbarch_init): Drop allocation of tdep structure.
7927 * score-tdep.h (struct gdbarch_tdep): Remove declaration.
7928
7929 2014-05-21 Andreas Arnez <arnez@linux.vnet.ibm.com>
7930
7931 * mn10300-linux-tdep.c (am33_gregset, am33_fpregset): New static
7932 regset structures.
7933 (am33_regset_from_core_section): Remove dynamic regset
7934 allocations.
7935
7936 2014-05-21 Andreas Arnez <arnez@linux.vnet.ibm.com>
7937
7938 * mips-linux-tdep.c (mips_linux_gregset, mips64_linux_gregset)
7939 (mips_linux_fpregset, mips64_linux_fpregset): New static regset
7940 structures.
7941 (mips_linux_regset_from_core_section): Remove dynamic regset
7942 allocations.
7943 * mips-tdep.h (struct gdbarch_tdep): Remove fields 'gregset',
7944 'gregset64', 'fpregset', and 'fpregset64'.
7945 * mips-tdep.c (mips_gdbarch_init): Remove initialization of
7946 deleted tdep fields.
7947
7948 2014-05-21 Andreas Arnez <arnez@linux.vnet.ibm.com>
7949
7950 * amd64-tdep.c (amd64_fpregset, amd64_xstateregset): New static
7951 regset structures.
7952 (amd64_regset_from_core_section): Remove dynamic regset
7953 allocations.
7954 * amd64obsd-tdep.c (amd64obsd_combined_regset): New static regset
7955 structure.
7956 (amd64obsd_regset_from_core_section): Remove dynamic regset
7957 allocation.
7958 * i386-cygwin-tdep.c (i386_windows_regset_from_core_section):
7959 Likewise.
7960 * i386-nto-tdep.c (i386nto_supply_gregset): Adjust call to
7961 x86-common regset supply function.
7962 * i386-tdep.c (i386_collect_gregset): Make static.
7963 (i386_gregset): New global regset structure.
7964 (i386_fpregset, i386_xstateregset): New static regset structures.
7965 (i386_regset_from_core_section): Remove dynamic regset
7966 allocations.
7967 (i386_gdbarch_init): Remove initialization of tdep fields
7968 'gregset', 'fpregset', and 'xstateregset'.
7969 * i386-tdep.h (struct gdbarch_tdep): Remove fields 'gregset',
7970 'fpregset', and 'xstateregset'.
7971 (i386_collect_gregset): Remove prototype.
7972 (i386_gregset): New declaration.
7973 * i386obsd-tdep.c (i386obsd_aout_gregset): New static regset
7974 structure.
7975 (i386obsd_aout_regset_from_core_section): Remove dynamic regset
7976 allocation.
7977
7978 2014-05-21 Andreas Arnez <arnez@linux.vnet.ibm.com>
7979
7980 * arm-linux-tdep.c (arm_linux_gregset, arm_linux_fpregset)
7981 (arm_linux_vfpregset): New static regset structures.
7982 (arm_linux_regset_from_core_section): Remove dynamic allocation of
7983 regset structures.
7984 * arm-tdep.h (struct gdbarch_tdep): Remove 'gregset', 'fpregset',
7985 and 'vfpregset' fields.
7986
7987 2014-05-21 Andreas Arnez <arnez@linux.vnet.ibm.com>
7988
7989 * aarch64-linux-tdep.c (aarch64_linux_gregset)
7990 (aarch64_linux_fpregset): New static regset structures.
7991 (aarch64_linux_regset_from_core_section): Drop dynamic allocation
7992 of regset structures.
7993 * aarch64-tdep.h (struct gdbarch_tdep): Remove 'gregset' and
7994 'fpregset' fields.
7995
7996 2014-05-21 Andreas Arnez <arnez@linux.vnet.ibm.com>
7997
7998 * regset.h (struct regset): Remove gdbarch field.
7999 * regset.c (regset_alloc): Drop initialization of gdbarch field.
8000 * nios2-linux-tdep.c (nios2_core_regset): Likewise.
8001 * ppcfbsd-tdep.c (ppc32_fbsd_gregset, ppc64_fbsd_gregset):
8002 Likewise.
8003 * ppc-linux-tdep.c (ppc32_linux_gregset, ppc64_linux_gregset)
8004 (ppc32_linux_fpregset, ppc32_linux_vrregset)
8005 (ppc32_linux_vsxregset): Likewise.
8006 * i386obsd-tdep.c (i386obsd_aout_supply_regset): Get the gdbarch
8007 via the regcache instead of the regset.
8008 * i386-tdep.c (i386_supply_gregset, i386_collect_gregset)
8009 (i386_supply_fpregset, i386_collect_fpregset): Likewise.
8010 * amd64obsd-tdep.c (amd64obsd_supply_regset): Likewise.
8011 * amd64-tdep.c (amd64_supply_fpregset, amd64_collect_fpregset):
8012 Likewise.
8013
8014 2014-05-21 Andreas Arnez <arnez@linux.vnet.ibm.com>
8015
8016 * alpha-linux-tdep.c (alpha_linux_gregset, alpha_linux_fpregset):
8017 Constify structures.
8018 * alphanbsd-tdep.c (alphanbsd_gregset, alphanbsd_fpregset)
8019 (alphanbsd_aout_gregset): Likewise.
8020 * armbsd-tdep.c (armbsd_gregset, armbsd_fpregset): Likewise.
8021 * frv-linux-tdep.c (frv_linux_gregset, frv_linux_fpregset):
8022 Likewise.
8023 * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise.
8024 * hppa-linux-tdep.c (hppa_linux_regset, hppa_linux_fpregset):
8025 Likewise.
8026 * hppanbsd-tdep.c (hppanbsd_gregset): Likewise.
8027 * hppaobsd-tdep.c (hppaobsd_gregset, hppaobsd_fpregset): Likewise.
8028 * m32r-linux-tdep.c (m32r_linux_gregset): Likewise.
8029 * m68kbsd-tdep.c (m68kbsd_gregset, m68kbsd_fpregset): Likewise.
8030 * m88k-tdep.c (m88k_gregset): Likewise.
8031 * mips64obsd-tdep.c (mips64obsd_gregset): Likewise.
8032 * mipsnbsd-tdep.c (mipsnbsd_gregset, mipsnbsd_fpregset): Likewise.
8033 * nios2-linux-tdep.c (nios2_core_regset): Likewise.
8034 * ppcfbsd-tdep.c (ppc32_fbsd_fpregset): Likewise.
8035 * ppcnbsd-tdep.c (ppcnbsd_gregset, ppcnbsd_fpregset): Likewise.
8036 * ppcnbsd-tdep.h (ppcnbsd_gregset, ppcnbsd_fpregset): Likewise.
8037 * ppcobsd-tdep.c (ppcobsd_gregset, ppcobsd_fpregset): Likewise.
8038 * ppcobsd-tdep.h (ppcobsd_gregset, ppcobsd_fpregset): Likewise.
8039 * rs6000-aix-tdep.c (rs6000_aix32_regset, rs6000_aix64_regset):
8040 Likewise.
8041 * sh-tdep.c (sh_corefile_gregset, sh_corefile_fpregset): Likewise.
8042 * sh-tdep.h (sh_corefile_gregset): Likewise.
8043 * tilegx-linux-tdep.c (tilegx_linux_regset): Likewise.
8044 * vax-tdep.c (vax_gregset): Likewise.
8045
8046 2014-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
8047
8048 Fix TLS access for -static -pthread.
8049 * linux-thread-db.c (struct thread_db_info): Add td_thr_tlsbase_p.
8050 (try_thread_db_load_1): Initialize it.
8051 (thread_db_get_thread_local_address): Call it if LM is zero.
8052 * target.c (target_translate_tls_address): Remove LM_ADDR zero check.
8053 * target.h (struct target_ops) (to_get_thread_local_address): Add
8054 load_module_addr comment.
8055
8056 2014-05-21 Pedro Alves <palves@redhat.com>
8057
8058 * dcache.c (dcache_read_memory_partial): If reading the cache line
8059 fails, fallback to reading just the memory the caller wanted.
8060
8061 2014-05-20 Doug Evans <dje@google.com>
8062
8063 * python/py-progspace.c (py_free_pspace): Call target_gdbarch
8064 instead of get_current_arch.
8065
8066 2014-05-20 Pedro Alves <palves@redhat.com>
8067
8068 * NEWS: Mention that compare-sections now works with all targets.
8069
8070 * remote.c (PACKET_qCRC): New enum value.
8071 (remote_verify_memory): Don't send qCRC if the target has no
8072 execution. Use packet_support/packet_ok. If the target doesn't
8073 support the qCRC packet, fallback to a deep memory copy.
8074 (compare_sections_command): Say "target image" instead of "remote
8075 executable".
8076 (_initialize_remote): Add PACKET_qCRC to the list of config
8077 packets that have no associated command. Extend comment.
8078 * target.c (simple_verify_memory, default_verify_memory): New
8079 function.
8080 * target.h (struct target_ops) <to_verify_memory>: Default to
8081 default_verify_memory.
8082 (simple_verify_memory): New declaration.
8083 * target-delegates.c: Regenerate.
8084
8085 2014-05-20 Markus Metzger <markus.t.metzger@intel.com>
8086
8087 * record-btrace.c (record_btrace_step_thread): Check for empty history.
8088
8089 2014-05-20 Hui Zhu <hui@codesourcery.com>
8090 Yao Qi <yao@codesourcery.com>
8091
8092 PR backtrace/16558
8093 * aarch64-linux-tdep.c (aarch64_linux_sigframe_init): Update comments
8094 and change address of sp and pc.
8095
8096 2014-05-19 Tom Tromey <tromey@redhat.com>
8097
8098 * gdbtypes.c (rank_function): Use XNEWVEC.
8099 * mi/mi-cmds.c (build_table): Use XCNEWVEC.
8100
8101 2014-05-19 Doug Evans <dje@google.com>
8102
8103 * dwarf2read.c (build_type_psymtabs_1): Renamed from
8104 build_type_unit_groups and moved closer to only caller. Remove
8105 arguments. All references updated. Remove outdated .gdb_index
8106 comment.
8107 (struct tu_abbrev_offset, sort_tu_by_abbrev_offset): Move with
8108 build_type_psymtabs_1.
8109
8110 2014-05-19 Doug Evans <dje@google.com>
8111
8112 * dwarf2read.c (struct dwarf2_per_objfile): Delete unused members
8113 n_type_unit_groups, all_type_unit_groups. All uses removed.
8114 (get_type_unit_group, build_type_unit_groups): Delete forward decls.
8115 (dw2_get_cutu): Renamed from dw2_get_cu. All callers updated.
8116 (dw2_get_cu): Renamed from dw2_get_primary_cu. All callers updated.
8117 (add_type_unit_group_to_table): Delete.
8118
8119 2014-05-19 Doug Evans <dje@google.com>
8120
8121 * eval.c (evaluate_subexp_standard): Add some comments.
8122
8123 2014-05-17 Doug Evans <xdje42@gmail.com>
8124
8125 * progspace.c (remove_program_space): Delete, unused.
8126 * progspace.h (remove_program_space): Ditto.
8127
8128 2014-05-17 Doug Evans <xdje42@gmail.com>
8129
8130 * inferior.c (prune_inferiors): Fix comment.
8131 (remove_inferior_command): Call prune_program_spaces.
8132
8133 2014-05-16 Doug Evans <dje@google.com>
8134
8135 New command line option -D.
8136 * NEWS: Mention it.
8137 * main.c (set_gdb_data_directory): New function.
8138 (captured_main): Recognize -D. Flag error for --data-directory "".
8139 Call set_gdb_data_directory.
8140 (print_gdb_help): Print --data-directory, -D.
8141 * main.h (set_gdb_data_directory): Declare.
8142 * top.c (staged_gdb_datadir): New static global.
8143 (set_gdb_datadir): Call set_gdb_data_directory
8144 (show_gdb_datadir): New function.
8145 (init_main): Update init of data-directory parameter.
8146
8147 2014-05-16 Gregory Fong <gregory.0xf0@gmail.com>
8148
8149 Import the "dirfd" gnulib module.
8150 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add dirfd.
8151 * gnulib/aclocal.m4: Update.
8152 * gnulib/config.in: Update.
8153 * gnulib/configure: Update.
8154 * gnulib/import/Makefile.am: Update.
8155 * gnulib/import/Makefile.in: Update.
8156 * gnulib/import/dirfd.c: New.
8157 * gnulib/import/m4/dirfd.m4: New.
8158 * gnulib/import/m4/gnulib-cache.m4: Update.
8159 * gnulib/import/m4/gnulib-comp.m4: Update.
8160
8161 2014-05-16 Pierre Muller <muller@sourceware.org>
8162 Yao Qi <yao@codesourcery.com>
8163
8164 * valprint.c (print_wchar): Move the code on checking whether
8165 W is a printable wide char to the default branch of switch
8166 statement below. Call wchar_printable instead of gdb_iswprint.
8167
8168 2014-05-16 Taimoor Mirza <tmirza@codesourcery.com>
8169
8170 * arm-tdep.c (thumb_analyze_prologue): Fix offset calculation for
8171 ldr.w and ldrd instructions.
8172
8173 2014-05-15 Doug Evans <dje@google.com>
8174
8175 * dwarf2read.c (read_structure_type): Delete outdated comments.
8176
8177 2014-05-14 Tom Tromey <tromey@redhat.com>
8178
8179 * macrocmd.c (print_macro_definition): Reindent.
8180
8181 2014-05-13 Doug Evans <xdje42@gmail.com>
8182
8183 * python/py-cmd.c (cmdpy_completer): Add comment.
8184 (completers): Make const.
8185
8186 2014-05-13 Simon Marchi <simon.marchi@ericsson.com>
8187
8188 * infrun.c (resume): Remove should_resume (unused). Move up
8189 declaration of resume_ptid.
8190
8191 2014-05-13 Tom Tromey <tromey@redhat.com>
8192
8193 * language.h (unop_type_check): Remove.
8194 (binop_type_check): Don't declare.
8195
8196 2014-05-13 Andreas Arnez <arnez@vnet.linux.ibm.com>
8197
8198 * s390-linux-nat.c (fill_gregset): Remove erroneous offset 4 in
8199 call to regcache_raw_collect.
8200
8201 2014-05-12 Simon Marchi <simon.marchi@ericsson.com>
8202
8203 * mi/mi-console.c (mi_console_raw_packet): Use the value from
8204 mi_console->quote as the quoting character.
8205
8206 2014-05-12 Simon Marchi <simon.marchi@ericsson.com>
8207
8208 * MAINTAINERS (Write After Approval): Add "Simon Marchi".
8209
8210 2014-04-29 Tom Tromey <tromey@redhat.com>
8211
8212 * varobj.c (_initialize_varobj): Rename to "set debug varobj" and
8213 "show debug varobj".
8214
8215 2014-05-07 Kyle McMartin <kyle@redhat.com>
8216
8217 Pushed by Joel Brobecker <brobecker@adacore.com>.
8218 * aarch64-tdep.c (aarch64_software_single_step): New function.
8219 (aarch64_gdbarch_init): Handle single stepping of atomic sequences
8220 with aarch64_software_single_step.
8221
8222 2014-05-05 Joel Brobecker <brobecker@adacore.com>
8223
8224 GDB 7.7.1 released.
8225
8226 2014-05-05 Keith Seitz <keiths@redhat.com>
8227
8228 * linespec.c (linespec_parse_basic): Run cleanups if a convenience
8229 variable or history value is successfully parsed.
8230
8231 2014-05-05 Yao Qi <yao@codesourcery.com>
8232 Pedro Alves <palves@redhat.com>
8233
8234 * tracefile-tfile.c (tfile_xfer_partial): Record the lowest
8235 address of blocks that intersects the requested range. Trim
8236 LEN up to LOW_ADDR_AVAILABLE if read from executable read-only
8237 sections.
8238 * ctf.c (ctf_xfer_partial): Likewise.
8239
8240 2014-05-05 Yao Qi <yao@codesourcery.com>
8241
8242 * printcmd.c (display_command): Remove the check to
8243 target_has_execution.
8244
8245 2014-05-03 Mark Kettenis <kettenis@gnu.org>
8246
8247 * ppcobsd-nat.c: Include "obsd-nat.h".
8248 (_initialize_ppcobsd_nat): Call obsd_add_target instead of
8249 add_target.
8250 * config/powerpc/obsd.mh (NATDEPFILES): Add obsd-nat.o.
8251
8252 2014-05-02 Sergio Durigan Junior <sergiodj@redhat.com>
8253
8254 * stap-probe.c (enum stap_arg_bitness): New enums to represent 8
8255 and 16-bit signed and unsigned arguments. Update comment.
8256 (stap_parse_probe_arguments): Extend code to handle such
8257 arguments. Use warning instead of complaint to notify about
8258 unrecognized bitness.
8259
8260 2014-05-02 Sergio Durigan Junior <sergiodj@redhat.com>
8261
8262 PR breakpoints/16889
8263 * stap-probe.c (stap_parse_probe_arguments): Simplify
8264 check for non-prefixed probes (i.e., probes whose
8265 arguments do not start with "N@"). Always set the
8266 argument type to a sane value.
8267
8268 2014-05-01 David Taylor <dtaylor@emc.com>
8269
8270 * remote.c (compare_sections_command): Add -r option to compare
8271 all loadable read-only sections.
8272
8273 2014-04-30 Siva Chandra Reddy <sivachandra@google.com>
8274
8275 * dwarf2loc.c (dwarf2_locexpr_baton_eval,
8276 dwarf2_evaluate_property): Remove unused CORE_ADDR argument.
8277 Update all callers.
8278 * dwarf2loc.h (dwarf2_evaluate_property): Update signature.
8279 * gdbtypes.c (resolve_dynamic_range, resolve_dynamic_array):
8280 Remove unused CORE_ADDR argument. Update all callers.
8281
8282 2014-04-29 Pedro Alves <palves@redhat.com>
8283
8284 * remote.c (struct packet_config) <detect>: Extend comment.
8285 (add_packet_config_cmd): Don't set the config's detect or support
8286 fields here.
8287 (init_all_packet_configs): Also initialize the config's 'detect'
8288 field.
8289 (reset_all_packet_configs_support): New function.
8290 (remote_open_1): Call reset_all_packet_configs_support instead of
8291 init_all_packet_configs.
8292 (_initialize_remote): Initialize all packet configs. Assert that
8293 all packets have an associated command, except a few known
8294 outliers.
8295
8296 2014-04-28 Joel Brobecker <brobecker@adacore.com>
8297
8298 * dwarf2read.c (read_subrange_type): Handle dynamic
8299 DW_AT_lower_bound attributes.
8300
8301 2014-04-28 Joel Brobecker <brobecker@adacore.com>
8302
8303 * ada-lang.c (ada_discrete_type_high_bound): Resolve the type's
8304 dynamic bounds before computing its upper bound.
8305 (ada_discrete_type_low_bound): Same as above with the lower bound.
8306
8307 2014-04-28 Joel Brobecker <brobecker@adacore.com>
8308
8309 * dwarf2read.c (is_dynamic_type): Return true for dynamic
8310 range types. Adjust the array handling implementation to
8311 take advantage of this change.
8312 (resolve_dynamic_range): New function, mostly extracted from
8313 resolve_dynamic_bounds.
8314 (resolve_dynamic_array): New function, mostly extracted from
8315 resolve_dynamic_bounds.
8316 (resolve_dynamic_bounds): Delete.
8317 (resolve_dynamic_type): Reimplement. Add handling of
8318 TYPE_CODE_RANGE types.
8319
8320 2014-04-28 Joel Brobecker <brobecker@adacore.com>
8321
8322 * ada-varobj.c (ada_varobj_describe_simple_array_child): Remove
8323 handling of parallel ___XA types.
8324
8325 2014-04-28 Joel Brobecker <brobecker@adacore.com>
8326
8327 * ada-lang.c (ada_evaluate_subexp) <OP_VAR_VALUE>: Remove
8328 unnecessary second call to static_unwrap_type.
8329
8330 2014-04-27 Hui Zhu <hui@codesourcery.com>
8331
8332 * stack.c (print_frame_info): Call do_gdb_disassembly with
8333 DUMMY_FRAME, SIGTRAMP_FRAME and ARCH_FRAME.
8334
8335 2014-04-26 Doug Evans <xdje42@gmail.com>
8336
8337 * guile/scm-safe-call.c (scscm_eval_scheme_string): Fix comment.
8338
8339 2014-04-25 Pedro Alves <palves@redhat.com>
8340
8341 PR server/16255
8342 * common/linux-ptrace.c (linux_ptrace_attach_warnings): Rename to ...
8343 (linux_ptrace_attach_fail_reason): ... this. Remove "warning: "
8344 and newline from built string.
8345 * common/linux-ptrace.h (linux_ptrace_attach_warnings): Rename to ...
8346 (linux_ptrace_attach_fail_reason): ... this.
8347 * linux-nat.c (linux_nat_attach): Adjust to use
8348 linux_ptrace_attach_fail_reason.
8349
8350 2014-04-25 Pedro Alves <palves@redhat.com>
8351
8352 * remote.c (struct remote_state): Remove multi_process_aware,
8353 non_stop_aware, cond_tracepoints, cond_breakpoints,
8354 breakpoint_commands, fast_tracepoints, static_tracepoints,
8355 install_in_trace, disconnected_tracing,
8356 enable_disable_tracepoints, string_tracing, and
8357 augmented_libraries_svr4_read fields.
8358 (remote_multi_process_p): Move further below in the file.
8359 (struct packet_config): Add comments.
8360 (update_packet_config): Delete function.
8361 (show_packet_config_cmd): Use packet_config_support.
8362 (add_packet_config_cmd): Use NULL as set callback.
8363 (packet_ok): "set remote foo-packet"-style commands no longer
8364 change config->supported -- adjust.
8365 (PACKET_ConditionalTracepoints, PACKET_ConditionalBreakpoints)
8366 (PACKET_BreakpointCommands, PACKET_FastTracepoints)
8367 (PACKET_StaticTracepoints, PACKET_InstallInTrace): Add comments.
8368 (PACKET_QNonStop, PACKET_multiprocess_feature)
8369 (PACKET_EnableDisableTracepoints_feature, PACKET_tracenz_feature)
8370 (PACKET_DisconnectedTracing_feature)
8371 (PACKET_augmented_libraries_svr4_read_feature): New enum values.
8372 (set_remote_protocol_packet_cmd): Delete function.
8373 (packet_config_support, packet_support): New functions.
8374 (set_remote_protocol_Z_packet_cmd): Don't call
8375 update_packet_config.
8376 (remote_query_attached, remote_pass_signals)
8377 (remote_program_signals, remote_threads_info)
8378 (remote_threads_extra_info, remote_start_remote): Use
8379 packet_support.
8380 (remote_start_remote): Use packet_config_support and
8381 packet_support.
8382 (init_all_packet_configs): Set all packets to unknown support,
8383 instead of calling update_packet_config.
8384 (remote_check_symbols): Use packet_support.
8385 (remote_supported_packet): Unconditionally set the packet config's
8386 support status.
8387 (remote_multi_process_feature, remote_non_stop_feature)
8388 (remote_cond_tracepoint_feature, remote_cond_breakpoint_feature)
8389 (remote_breakpoint_commands_feature)
8390 (remote_fast_tracepoint_feature, remote_static_tracepoint_feature)
8391 (remote_install_in_trace_feature)
8392 (remote_disconnected_tracing_feature)
8393 (remote_enable_disable_tracepoint_feature)
8394 (remote_string_tracing_feature)
8395 (remote_augmented_libraries_svr4_read_feature): Delete functions.
8396 (remote_protocol_features): Adjust to use remote_supported_packet
8397 for "augmented-libraries-svr4-read", "multiprocess", "QNonStop",
8398 "ConditionalTracepoints", "ConditionalBreakpoints",
8399 "BreakpointCommands", "FastTracepoints", "StaticTracepoints",
8400 "InstallInTrace", "DisconnectedTracing", "DisconnectedTracing",
8401 "EnableDisableTracepoints", and "tracenz".
8402 (remote_query_supported): Use packet_support.
8403 (remote_open_1): Adjust.
8404 (extended_remote_attach_1): Use packet_support. Switch on the
8405 result of packet_ok instead of checking whether the packet ended
8406 up disabled.
8407 (remote_vcont_resume): Use packet_support.
8408 (remote_resume, remote_stop_ns, fetch_register_using_p)
8409 (remote_prepare_to_store, store_register_using_P)
8410 (check_binary_download, remote_write_bytes): Use packet_support.
8411 (remote_vkill): Use packet_support. Switch on the result of
8412 packet_ok instead of checking whether the packet ended up
8413 disabled.
8414 (extended_remote_supports_disable_randomization): Use
8415 packet_support.
8416 (extended_remote_run): Switch on the result of packet_ok instead
8417 of checking whether the packet ended up disabled.
8418 (remote_insert_breakpoint, remote_remove_breakpoint)
8419 (remote_insert_watchpoint, remote_remove_watchpoint)
8420 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Use
8421 packet_support.
8422 (remote_search_memory): Use packet_config_support.
8423 (remote_get_thread_local_address, remote_get_tib_address)
8424 (remote_hostio_send_command, remote_can_execute_reverse): Use
8425 packet_support.
8426 (remote_supports_cond_tracepoints)
8427 (remote_supports_cond_breakpoints)
8428 (remote_supports_fast_tracepoints)
8429 (remote_supports_static_tracepoints)
8430 (remote_supports_install_in_trace)
8431 (remote_supports_enable_disable_tracepoint)
8432 (remote_supports_string_tracing)
8433 (remote_can_run_breakpoint_commands): Rewrite, checking whether
8434 the packet config says the feature is enabled or disabled.
8435 (remote_download_tracepoint, remote_trace_set_readonly_regions)
8436 (remote_get_trace_status): Use packet_support.
8437 (remote_set_disconnected_tracing): Adjust to check whether the
8438 feature is enabled with packet_support.
8439 (remote_set_trace_buffer_size, remote_use_agent)
8440 (remote_can_use_agent, remote_supports_btrace): Use
8441 packet_support.
8442 (remote_enable_btrace, remote_disable_btrace, remote_read_btrace):
8443 Use packet_config_support.
8444 (remote_augmented_libraries_svr4_read): Rewrite, checking whether
8445 the packet config says the feature is enabled or disabled.
8446 (set_range_stepping): Use packet_support.
8447
8448 2014-04-25 Tom Tromey <tromey@redhat.com>
8449
8450 * cli/cli-cmds.c (_initialize_cli_cmds): Document "quit" command's
8451 argument.
8452
8453 2014-04-24 Sanimir Agovic <sanimir.agovic@intel.com>
8454
8455 * NEWS: Mention support for C99 variable length arrays.
8456
8457 2014-04-24 Joel Brobecker <brobecker@adacore.com>
8458
8459 * ada-lang.c (standard_exc): Expand introductory comment.
8460
8461 2014-04-24 Michael Sturm <michael.sturm@mintel.com>
8462 Walfred Tedeschi <walfred.tedeschi@intel.com>
8463
8464 * amd64-linux-nat.c (amd64_linux_gregset32_reg_offset): Add
8465 AVX512 registers.
8466 (amd64_linux_read_description): Add code to handle AVX512 xstate
8467 mask and return respective tdesc.
8468 * amd64-linux-tdep.c: Include features/i386/amd64-avx512-linux.c
8469 and features/i386/x32-avx512-linux.c.
8470 (amd64_linux_gregset_reg_offset): Add AVX512 registers.
8471 (amd64_linux_core_read_description): Add code to handle AVX512
8472 xstate mask and return respective tdesc.
8473 (_initialize_amd64_linux_tdep): Initialize AVX512 tdesc.
8474 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM): Adjust regnum
8475 calculation.
8476 (AMD64_LINUX_NUM_REGS): Adjust to new number of registers.
8477 (tdesc_amd64_avx512_linux): New prototype.
8478 (tdesc_x32_avx512_linux): Likewise.
8479 * amd64-tdep.c: Include features/i386/amd64-avx512.c and
8480 features/i386/x32-avx512.c.
8481 (amd64_ymm_avx512_names): New register names for pseudo
8482 registers YMM16-31.
8483 (amd64_ymmh_avx512_names): New register names for raw registers
8484 YMMH16-31.
8485 (amd64_k_names): New register names for K registers.
8486 (amd64_zmmh_names): New register names for ZMM raw registers.
8487 (amd64_zmm_names): New registers names for ZMM pseudo registers.
8488 (amd64_xmm_avx512_names): New register names for XMM16-31
8489 registers.
8490 (amd64_pseudo_register_name): Add code to return AVX512 pseudo
8491 registers.
8492 (amd64_init_abi): Add code to intitialize AVX512 tdep variables
8493 if feature is present.
8494 (_initialize_amd64_tdep): Call AVX512 tdesc initializers.
8495 * amd64-tdep.h (enum amd64_regnum): Add AVX512 registers.
8496 (AMD64_NUM_REGS): Adjust to new number of registers.
8497 * i386-linux-nat.c (GETXSTATEREGS_SUPPLIES): Extend range of
8498 registers supplied via XSTATE by AVX512 registers.
8499 (i386_linux_read_description): Add case for AVX512.
8500 * i386-linux-tdep.c: Include i386-avx512-linux.c.
8501 (i386_linux_gregset_reg_offset): Add AVX512 registers.
8502 (i386_linux_core_read_description): Add case for AVX512.
8503 (i386_linux_init_abi): Install supported register note section
8504 for AVX512.
8505 (_initialize_i386_linux_tdep): Add call to tdesc init function for
8506 AVX512.
8507 * i386-linux-tdep.h (I386_LINUX_NUM_REGS): Set number of
8508 registers to be number of zmm7h + 1.
8509 (tdesc_i386_avx512_linux): Add tdesc for AVX512 registers.
8510 * i386-tdep.c: Include features/i386/i386-avx512.c.
8511 (i386_zmm_names): Add ZMM pseudo register names array.
8512 (i386_zmmh_names): Add ZMM raw register names array.
8513 (i386_k_names): Add K raw register names array.
8514 (num_lower_zmm_regs): Add constant for the number of lower ZMM
8515 registers. AVX512 has 16 more ZMM registers than there are YMM
8516 registers.
8517 (i386_zmmh_regnum_p): Add function to look up register number of
8518 ZMM raw registers.
8519 (i386_zmm_regnum_p): Likewise for ZMM pseudo registers.
8520 (i386_k_regnum_p): Likewise for K raw registers.
8521 (i386_ymmh_avx512_regnum_p): Likewise for additional YMM raw
8522 registers added by AVX512.
8523 (i386_ymm_avx512_regnum_p): Likewise for additional YMM pseudo
8524 registers added by AVX512.
8525 (i386_xmm_avx512_regnum_p): Likewise for additional XMM registers
8526 added by AVX512.
8527 (i386_register_name): Add code to hide YMMH16-31 and ZMMH0-31.
8528 (i386_pseudo_register_name): Add ZMM pseudo registers.
8529 (i386_zmm_type): Construct and return vector registers type for ZMM
8530 registers.
8531 (i386_pseudo_register_type): Return appropriate type for YMM16-31,
8532 ZMM0-31 pseudo registers and K registers.
8533 (i386_pseudo_register_read_into_value): Add code to read K, ZMM
8534 and YMM16-31 registers from register cache.
8535 (i386_pseudo_register_write): Add code to write K, ZMM and
8536 YMM16-31 registers.
8537 (i386_register_reggroup_p): Add code to include/exclude AVX512
8538 registers in/from respective register groups.
8539 (i386_validate_tdesc_p): Handle AVX512 feature, add AVX512
8540 registers if feature is present in xcr0.
8541 (i386_gdbarch_init): Add code to initialize AVX512 feature
8542 variables in tdep structure, wire in pseudo registers and call
8543 initialize_tdesc_i386_avx512.
8544 * i386-tdep.h (struct gdbarch_tdep): Add AVX512 related
8545 variables.
8546 (i386_regnum): Add AVX512 registers.
8547 (I386_SSE_NUM_REGS): New define for number of SSE registers.
8548 (I386_AVX_NUM_REGS): Likewise for AVX registers.
8549 (I386_AVX512_NUM_REGS): Likewise for AVX512 registers.
8550 (I386_MAX_REGISTER_SIZE): Change to 64 bytes, ZMM registers are
8551 512 bits wide.
8552 (i386_xmm_avx512_regnum_p): New prototype for register look up.
8553 (i386_ymm_avx512_regnum_p): Likewise.
8554 (i386_k_regnum_p): Likewise.
8555 (i386_zmm_regnum_p): Likewise.
8556 (i386_zmmh_regnum_p): Likewise.
8557 * i387-tdep.c : Update year in copyright notice.
8558 (xsave_ymm_avx512_offset): New table for YMM16-31 offsets in
8559 XSAVE buffer.
8560 (XSAVE_YMM_AVX512_ADDR): New macro.
8561 (xsave_xmm_avx512_offset): New table for XMM16-31 offsets in
8562 XSAVE buffer.
8563 (XSAVE_XMM_AVX512_ADDR): New macro.
8564 (xsave_avx512_k_offset): New table for K register offsets in
8565 XSAVE buffer.
8566 (XSAVE_AVX512_K_ADDR): New macro.
8567 (xsave_avx512_zmm_h_offset): New table for ZMM register offsets
8568 in XSAVE buffer.
8569 (XSAVE_AVX512_ZMM_H_ADDR): New macro.
8570 (i387_supply_xsave): Add code to supply AVX512 registers to XSAVE
8571 buffer.
8572 (i387_collect_xsave): Add code to collect AVX512 registers from
8573 XSAVE buffer.
8574 * i387-tdep.h (I387_NUM_XMM_AVX512_REGS): New define for number
8575 of XMM16-31 registers.
8576 (I387_NUM_K_REGS): New define for number of K registers.
8577 (I387_K0_REGNUM): New define for K0 register number.
8578 (I387_NUM_ZMMH_REGS): New define for number of ZMMH registers.
8579 (I387_ZMM0H_REGNUM): New define for ZMM0H register number.
8580 (I387_NUM_YMM_AVX512_REGS): New define for number of YMM16-31
8581 registers.
8582 (I387_YMM16H_REGNUM): New define for YMM16H register number.
8583 (I387_XMM16_REGNUM): New define for XMM16 register number.
8584 (I387_YMM0_REGNUM): New define for YMM0 register number.
8585 (I387_KEND_REGNUM): New define for last K register number.
8586 (I387_ZMMENDH_REGNUM): New define for last ZMMH register number.
8587 (I387_YMMH_AVX512_END_REGNUM): New define for YMM31 register
8588 number.
8589 (I387_XMM_AVX512_END_REGNUM): New define for XMM31 register
8590 number.
8591 * common/i386-xstate.h: Add AVX 3.1 feature bits, mask and XSTATE
8592 size.
8593 * features/Makefile: Add AVX512 related files.
8594 * features/i386/32bit-avx512.xml: New file.
8595 * features/i386/64bit-avx512.xml: Likewise.
8596 * features/i386/amd64-avx512-linux.c: Likewise.
8597 * features/i386/amd64-avx512-linux.xml: Likewise.
8598 * features/i386/amd64-avx512.c: Likewise.
8599 * features/i386/amd64-avx512.xml: Likewise.
8600 * features/i386/i386-avx512-linux.c: Likewise.
8601 * features/i386/i386-avx512-linux.xml: Likewise.
8602 * features/i386/i386-avx512.c: Likewise.
8603 * features/i386/i386-avx512.xml: Likewise.
8604 * features/i386/x32-avx512-linux.c: Likewise.
8605 * features/i386/x32-avx512-linux.xml: Likewise.
8606 * features/i386/x32-avx512.c: Likewise.
8607 * features/i386/x32-avx512.xml: Likewise.
8608 * regformats/i386/amd64-avx512-linux.dat: New file.
8609 * regformats/i386/amd64-avx512.dat: Likewise.
8610 * regformats/i386/i386-avx512-linux.dat: Likewise.
8611 * regformats/i386/i386-avx512.dat: Likewise.
8612 * regformats/i386/x32-avx512-linux.dat: Likewise.
8613 * regformats/i386/x32-avx512.dat: Likewise.
8614 * NEWS: Add note about new support for AVX512.
8615
8616
8617 2014-04-23 Pedro Alves <palves@redhat.com>
8618
8619 * breakpoint.c (insert_bp_location): Tolerate errors if the
8620 breakpoint is set in a user-loaded objfile.
8621 (remove_breakpoint_1): Likewise. Also tolerate errors if the
8622 location is marked shlib_disabled. If the breakpoint is set in a
8623 user-loaded objfile is a GDB-side memory breakpoint, validate it
8624 before uninsertion. (disable_breakpoints_in_freed_objfile): Skip
8625 non-OBJF_USERLOADED objfiles. Don't clear the location's inserted
8626 flag.
8627 * mem-break.c (memory_validate_breakpoint): New function.
8628 * objfiles.c (userloaded_objfile_contains_address_p): New
8629 function.
8630 * objfiles.h (userloaded_objfile_contains_address_p): Declare.
8631 * target.h (memory_validate_breakpoint): New declaration.
8632
8633 2014-04-23 Pedro Alves <palves@redhat.com>
8634
8635 * breakpoint.c (insert_bp_location, remove_breakpoint_1): If
8636 the breakpoint is set in a shared library, only suppress
8637 errors for software breakpoints, not hardware breakpoints.
8638
8639 2014-04-22 Pedro Alves <palves@redhat.com>
8640
8641 * infrun.c (schedlock_applies): New function, factored out from
8642 find_thread_needs_step_over.
8643 (find_thread_needs_step_over): Use it.
8644 (switch_back_to_stepped_thread): Always clear trap_expected if the
8645 step over is finished. Return early if scheduler locking applies.
8646 Look for the stepping thread and a potential step-over thread with
8647 a single loop.
8648 (currently_stepping_or_nexting_callback): Delete.
8649
8650 2014-04-22 Nick Clifton <nickc@redhat.com>
8651
8652 * NEWS: Mention that ARM sim now supports tracing.
8653
8654 2014-04-22 Yao Qi <yao@codesourcery.com>
8655
8656 * tracefile-tfile.c (tfile_fetch_registers): Move the bottom
8657 to ...
8658 * tracefile.c (tracefile_fetch_registers): ... it. New
8659 function.
8660 * tracefile.h (tracefile_fetch_registers): Declare.
8661 * ctf.c (ctf_fetch_registers): Remove the bottom. Call
8662 tracefile_fetch_registers.
8663
8664 2014-04-19 Eli Zaretskii <eliz@gnu.org>
8665
8666 PR gdb/14018
8667 * windows-nat.c (thread_rec): Don't display a warning when
8668 SuspendThread fails with ERROR_ACCESS_DENIED. If SuspendThread
8669 fails for any reason, set th->suspended to -1, so that we don't
8670 try to resume such a thread. Also, don't return NULL in these
8671 cases, to avoid completely ruin the session due to "PC register is
8672 not available" error.
8673 (do_windows_fetch_inferior_registers): Check errors in
8674 GetThreadContext call.
8675 (windows_continue): Accept an additional argument KILLED; if not
8676 zero, ignore errors in the SetThreadContext call, since the
8677 inferior was killed and is shutting down.
8678 (windows_resume, get_windows_debug_event)
8679 (windows_create_inferior, windows_mourn_inferior)
8680 (windows_kill_inferior): All callers of windows_continue changed
8681 to adjust to its new calling sequence.
8682
8683 2014-04-19 Yao Qi <yao@codesourcery.com>
8684
8685 * ctf.c (ctf_open): Call post_create_inferior.
8686
8687 2014-04-19 Yao Qi <yao@codesourcery.com>
8688
8689 * ctf.c (handle_id): New static variable.
8690 (ctf_open_dir): Get handle_id from bt_context_add_trace return
8691 value. Get the declaration of event "register" and get length
8692 of field "contents".
8693
8694 2014-04-19 Yao Qi <yao@codesourcery.com>
8695
8696 * ctf.c (ctf_xfer_partial): Check 'name' is NULL before strcmp.
8697
8698 2014-04-18 Siva Chandra Reddy <sivachandra@google.com>
8699
8700 * valops.c (oload_method_static): Remove unnecessary argument
8701 METHOD. Update all callers.
8702
8703 2014-04-18 Pedro alves <palves@redhat.com>
8704 Tom Tromey <tromey@redhat.com>
8705
8706 PR backtrace/15558
8707 * frame.c (get_prev_frame_1): Rename to ...
8708 (get_prev_frame_always): ... this, and make extern. Adjust.
8709 (skip_artificial_frames): Use get_prev_frame_always.
8710 (frame_unwind_caller_id, frame_pop, get_prev_frame)
8711 (get_frame_unwind_stop_reason): Adjust to rename.
8712 * frame.h (get_prev_frame_always): Declare.
8713 * inline-frame.c: Include frame.h.
8714 (inline_frame_this_id): Use get_prev_frame_always.
8715
8716 2014-04-18 Tristan Gingold <gingold@adacore.com>
8717
8718 * solib-darwin.c (darwin_solib_create_inferior_hook): Simplify
8719 code by using bfd_mach_o_get_base_address.
8720
8721 2014-04-17 Ulrich Weigand  <uweigand@de.ibm.com>
8722
8723 * spu-tdep.c: Include "dwarf2-frame.h" and "ax.h".
8724 (spu_ax_pseudo_register_collect): New function.
8725 (spu_ax_pseudo_register_push_stack): Likewise.
8726 (spu_dwarf_reg_to_regnum): Likewise.
8727 (spu_gdbarch_init): Install them. Append DWARF unwinders.
8728
8729 2014-04-17 Ulrich Weigand  <uweigand@de.ibm.com>
8730
8731 * gdbarch.sh (value_from_register): Make class "m" instead of "f".
8732 Replace FRAME argument with FRAME_ID.
8733 * gdbarch.c, gdbarch.h: Regenerate.
8734 * findvar.c (default_value_from_register): Add GDBARCH argument;
8735 replace FRAME by FRAME_ID. No longer call get_frame_id.
8736 (value_from_register): Update call to gdbarch_value_from_register.
8737 * value.h (default_value_from_register): Update prototype.
8738 * s390-linux-tdep.c (s390_value_from_register): Update interface
8739 and call to default_value_from_register.
8740 * spu-tdep.c (spu_value_from_register): Likewise.
8741
8742 * findvar.c (address_from_register): Remove TYPE argument.
8743 Do not call value_from_register; use gdbarch_value_from_register
8744 with null_frame_id instead.
8745 * value.h (address_from_register): Update prototype.
8746 * dwarf2-frame.c (read_addr_from_reg): Use address_from_register.
8747 * dwarf2loc.c (dwarf_expr_read_addr_from_reg): Update for
8748 address_from_register interface change.
8749
8750 2014-04-17 Yao Qi <yao@codesourcery.com>
8751
8752 * gdbtypes.h: Update comments to link to types and macros'
8753 definitions.
8754
8755 2014-04-16 Siva Chandra Reddy <sivachandra@google.com>
8756
8757 * gdbtypes.h: Remove definition of the macro TYPE_FN_FIELDS.
8758
8759 2014-04-16 Keith Seitz <keiths@redhat.com>
8760
8761 PR gdb/15827
8762 * dwarf2read.c (skip_one_die): Check that all relative-offset
8763 sibling DIEs fall within range of the current reader's buffer.
8764 (read_partial_die): Likewise.
8765
8766 2014-04-16 Keith Seitz <keiths@redhat.com>
8767
8768 PR c++/16597
8769 * cp-namespace.c (lookup_symbol_file): If the type name of
8770 `this' is NULL, return immediately.
8771
8772 2014-04-14 Keith Seitz <keiths@redhat.com>
8773
8774 PR c++/16253
8775 * ada-lang.c (ada_symbol_matches_domain): Moved here and renamed
8776 from symbol_matches_domain in symtab.c. All local callers
8777 of symbol_matches_domain updated.
8778 (standard_lookup): If DOMAIN is VAR_DOMAIN and no symbol is found,
8779 search STRUCT_DOMAIN.
8780 (ada_find_any_type_symbol): Do not search STRUCT_DOMAIN
8781 independently. standard_lookup will do that automatically.
8782 * cp-namespace.c (cp_lookup_symbol_nonlocal): Explain when/why
8783 VAR_DOMAIN searches may return a STRUCT_DOMAIN match.
8784 (cp_lookup_symbol_in_namespace): Likewise.
8785 If no VAR_DOMAIN symbol is found, search STRUCT_DOMAIN.
8786 (cp_lookup_symbol_exports): Explain when/why VAR_DOMAIN searches
8787 may return a STRUCT_DOMAIN match.
8788 (lookup_symbol_file): Search for the class name in STRUCT_DOMAIN.
8789 * cp-support.c: Include language.h.
8790 (inspect_type): Explicitly search STRUCT_DOMAIN before searching
8791 VAR_DOMAIN.
8792 * psymtab.c (match_partial_symbol): Compare the requested
8793 domain with the symbol's domain directly.
8794 (lookup_partial_symbol): Likewise.
8795 * symtab.c (lookup_symbol_in_language): Explain when/why
8796 VAR_DOMAIN searches may return a STRUCT_DOMAIN match.
8797 If no VAR_DOMAIN symbol is found, search STRUCT_DOMAIN for
8798 appropriate languages.
8799 (symbol_matches_domain): Renamed `ada_symbol_matches_domain'
8800 and moved to ada-lang.c
8801 (lookup_block_symbol): Explain that this function only returns
8802 symbol matching the requested DOMAIN.
8803 Compare the requested domain with the symbol's domain directly.
8804 (iterate_over_symbols): Compare the requested domain with the
8805 symbol's domain directly.
8806 * symtab.h (symbol_matches_domain): Remove.
8807
8808 2014-04-14 Tom Tromey <tromey@redhat.com>
8809
8810 PR c++/15246:
8811 * c-exp.y (type_aggregate_p): New function.
8812 (qualified_name, classify_inner_name): Use it.
8813 * c-typeprint.c (c_type_print_base): Handle TYPE_DECLARED_CLASS
8814 and TYPE_TARGET_TYPE of an enum type.
8815 * dwarf2read.c (read_enumeration_type): Set TYPE_DECLARED_CLASS on
8816 an enum type.
8817 (determine_prefix) <case DW_TAG_enumeration_type>: New case;
8818 handle TYPE_DECLARED_CLASS.
8819 * gdbtypes.c (rank_one_type): Handle TYPE_DECLARED_CLASS on enum
8820 types.
8821 * gdbtypes.h (TYPE_DECLARED_CLASS): Update comment.
8822 * valops.c (enum_constant_from_type): New function.
8823 (value_aggregate_elt): Use it.
8824 * cp-namespace.c (cp_lookup_nested_symbol): Handle
8825 TYPE_CODE_ENUM.
8826
8827 2014-04-14 Tom Tromey <tromey@redhat.com>
8828
8829 * valops.c (value_aggregate_elt, value_struct_elt_for_reference)
8830 (value_namespace_elt, value_maybe_namespace_elt): Make "name"
8831 const.
8832 * value.h (value_aggregate_elt): Update.
8833
8834 2014-04-14 Tom Tromey <tromey@redhat.com>
8835
8836 * dwarf2read.c (read_enumeration_type): Handle DW_AT_type.
8837
8838 2014-04-14 Sanimir Agovic <sanimir.agovic@intel.com>
8839
8840 * eval.c (evaluate_subexp_for_sizeof): Add enum noside argument.
8841 (evaluate_subexp_standard): Pass noside argument.
8842 (evaluate_subexp_for_sizeof) <BINOP_SUBSCRIPT>: Handle subscript case
8843 if noside equals EVAL_NORMAL. If the subscript yields a vla type
8844 re-evaluate subscript operation with EVAL_NORMAL to enable sideffects.
8845 * gdbtypes.c (resolve_dynamic_bounds): Mark bound as evaluated.
8846 * gdbtypes.h (enum range_flags): Add RANGE_EVALUATED case.
8847
8848 2014-04-14 Sanimir Agovic <sanimir.agovic@intel.com>
8849
8850 * findvar.c (default_read_var_value): Resolve dynamic bounds if location
8851 points to a constant blob.
8852
8853 2014-04-14 Sanimir Agovic <sanimir.agovic@intel.com>
8854
8855 * dwarf2read.c (read_subrange_type): Convert DW_AT_count to a dynamic
8856 property and store it as the high bound and flag the range accordingly.
8857 * gdbtypes.c (resolve_dynamic_bounds): If range is flagged as
8858 RANGE_UPPER_BOUND_IS_COUNT assign low + high - 1 as the new high bound.
8859 * gdbtypes.h (enum range_flags): New enum.
8860 (struct range_bounds): Add flags member.
8861
8862 2014-04-14 Sanimir Agovic <sanimir.agovic@intel.com>
8863
8864 * c-typeprint.c (c_type_print_varspec_suffix): Added
8865 check for not yet resolved high bound. If unresolved, print
8866 "variable length" string to the console instead of random
8867 length.
8868
8869 2014-04-14 Sanimir Agovic <sanimir.agovic@intel.com>
8870
8871 * ada-lang.c (ada_value_primitive_packed_val): Re-fetch type from
8872 value.
8873 (ada_template_to_fixed_record_type_1): Likewise.
8874 (ada_to_fixed_type_1): Likewise.
8875 * cp-valprint.c (cp_print_value_fields_rtti): Likewise.
8876 (cp_print_value): Likewise.
8877 * d-valprint.c (dynamic_array_type): Likewise.
8878 * findvar.c (address_of_variable): Likewise.
8879 * jv-valprint.c (java_value_print): Likewise.
8880 * valops.c (value_ind): Likewise.
8881 * value.c (coerce_ref): Likewise.
8882
8883 2014-04-14 Sanimir Agovic <sanimir.agovic@intel.com>
8884
8885 * eval.c (evaluate_subexp_for_sizeof) <UNOP_IND>: Create an indirect
8886 value and retrieve the dynamic type size.
8887
8888 2014-04-14 Sanimir Agovic <sanimir.agovic@intel.com>
8889
8890 * eval.c (evaluate_subexp_for_sizeof) <OP_VAR_VALUE>: If the type
8891 passed to sizeof is dynamic evaluate the argument to compute the length.
8892
8893 2014-04-14 Sanimir Agovic <sanimir.agovic@intel.com>
8894 Joel Brobecker <brobecker@adacore.com>
8895
8896 * dwarf2loc.c (dwarf2_locexpr_baton_eval): New function.
8897 (dwarf2_evaluate_property): New function.
8898 * dwarf2loc.h (dwarf2_evaluate_property): New function prototype.
8899 * dwarf2read.c (attr_to_dynamic_prop): New function.
8900 (read_subrange_type): Use attr_to_dynamic_prop to read high bound
8901 attribute.
8902 * gdbtypes.c: Include dwarf2loc.h.
8903 (is_dynamic_type): New function.
8904 (resolve_dynamic_type): New function.
8905 (resolve_dynamic_bounds): New function.
8906 (get_type_length): New function.
8907 (check_typedef): Use get_type_length to compute type length.
8908 * gdbtypes.h (TYPE_HIGH_BOUND_KIND): New macro.
8909 (TYPE_LOW_BOUND_KIND): New macro.
8910 (is_dynamic_type): New function prototype.
8911 * value.c (value_from_contents_and_address): Call resolve_dynamic_type
8912 to resolve dynamic properties of the type. Update comment.
8913 * valops.c (get_value_at, value_at, value_at_lazy): Update comment.
8914
8915 2014-04-14 Richard Henderson <rth@redhat.com>
8916
8917 * alpha-linux-nat.c (_initialize_alpha_linux_nat): Fix prototype.
8918
8919 2014-04-12 Siva Chandra Reddy <sivachandra@google.com>
8920 Doug Evans <xdje42@gmail.com>
8921
8922 * guile/scm-value.c (gdbscm_value_dynamic_type): Use coerce_ref to
8923 dereference TYPE_CODE_REF values.
8924
8925 2014-04-11 Joel Brobecker <brobecker@adacore.com>
8926
8927 Revert the following changes due to regressions:
8928
8929 * dwarf2loc.c (dwarf2_locexpr_baton_eval): New function.
8930 (dwarf2_evaluate_property): New function.
8931 * dwarf2loc.h (dwarf2_evaluate_property): New function prototype.
8932 * dwarf2read.c (attr_to_dynamic_prop): New function.
8933 (read_subrange_type): Use attr_to_dynamic_prop to read high bound
8934 attribute.
8935 * gdbtypes.c: Include dwarf2loc.h.
8936 (is_dynamic_type): New function.
8937 (resolve_dynamic_type): New function.
8938 (resolve_dynamic_bounds): New function.
8939 (get_type_length): New function.
8940 (check_typedef): Use get_type_length to compute type length.
8941 * gdbtypes.h (TYPE_HIGH_BOUND_KIND): New macro.
8942 (TYPE_LOW_BOUND_KIND): New macro.
8943 (is_dynamic_type): New function prototype.
8944 * value.c (value_from_contents_and_address): Call resolve_dynamic_type
8945 to resolve dynamic properties of the type. Update comment.
8946 * valops.c (get_value_at, value_at, value_at_lazy): Update comment.
8947
8948 * eval.c (evaluate_subexp_for_sizeof) <OP_VAR_VALUE>: If the type
8949 passed to sizeof is dynamic evaluate the argument to compute the length.
8950
8951 * eval.c (evaluate_subexp_for_sizeof) <UNOP_IND>: Create an indirect
8952 value and retrieve the dynamic type size.
8953
8954 * ada-lang.c (ada_value_primitive_packed_val): Re-fetch type from value.
8955 (ada_template_to_fixed_record_type_1): Likewise.
8956 (ada_to_fixed_type_1): Likewise.
8957 * cp-valprint.c (cp_print_value_fields_rtti): Likewise.
8958 (cp_print_value): Likewise.
8959 * d-valprint.c (dynamic_array_type): Likewise.
8960 * eval.c (evaluate_subexp_with_coercion): Likewise.
8961 * findvar.c (address_of_variable): Likewise.
8962 * jv-valprint.c (java_value_print): Likewise.
8963 * valops.c (value_ind): Likewise.
8964 * value.c (coerce_ref): Likewise.
8965
8966 * c-typeprint.c (c_type_print_varspec_suffix): Added
8967 check for not yet resolved high bound. If unresolved, print
8968 "variable length" string to the console instead of random
8969 length.
8970
8971 * dwarf2read.c (read_subrange_type): Convert DW_AT_count to a dynamic
8972 property and store it as the high bound and flag the range accordingly.
8973 * gdbtypes.c (resolve_dynamic_bounds): If range is flagged as
8974 RANGE_UPPER_BOUND_IS_COUNT assign low + high - 1 as the new high bound.
8975 * gdbtypes.h (enum range_flags): New enum.
8976 (struct range_bounds): Add flags member.
8977
8978 * findvar.c (default_read_var_value): Resolve dynamic bounds if location
8979 points to a constant blob.
8980
8981 * eval.c (evaluate_subexp_for_sizeof): Add enum noside argument.
8982 (evaluate_subexp_standard): Pass noside argument.
8983 (evaluate_subexp_for_sizeof) <BINOP_SUBSCRIPT>: Handle subscript case
8984 if noside equals EVAL_NORMAL. If the subscript yields a vla type
8985 re-evaluate subscript operation with EVAL_NORMAL to enable sideffects.
8986 * gdbtypes.c (resolve_dynamic_bounds): Mark bound as evaluated.
8987 * gdbtypes.h (enum range_flags): Add RANGE_EVALUATED case.
8988
8989 2014-04-11 Keith Seitz <keiths@redhat.com>
8990
8991 PR c++/16675
8992 * c-exp.y (exp : SIZEOF '(' type ')'): Handle reference types.
8993 * eval.c (evaluate_subexp_for_sizeof): Refactor and handle
8994 reference types.
8995
8996 2014-04-11 Sanimir Agovic <sanimir.agovic@intel.com>
8997
8998 * eval.c (evaluate_subexp_for_sizeof): Add enum noside argument.
8999 (evaluate_subexp_standard): Pass noside argument.
9000 (evaluate_subexp_for_sizeof) <BINOP_SUBSCRIPT>: Handle subscript case
9001 if noside equals EVAL_NORMAL. If the subscript yields a vla type
9002 re-evaluate subscript operation with EVAL_NORMAL to enable sideffects.
9003 * gdbtypes.c (resolve_dynamic_bounds): Mark bound as evaluated.
9004 * gdbtypes.h (enum range_flags): Add RANGE_EVALUATED case.
9005
9006 2014-04-11 Sanimir Agovic <sanimir.agovic@intel.com>
9007
9008 * findvar.c (default_read_var_value): Resolve dynamic bounds if location
9009 points to a constant blob.
9010
9011 2014-04-11 Sanimir Agovic <sanimir.agovic@intel.com>
9012
9013 * dwarf2read.c (read_subrange_type): Convert DW_AT_count to a dynamic
9014 property and store it as the high bound and flag the range accordingly.
9015 * gdbtypes.c (resolve_dynamic_bounds): If range is flagged as
9016 RANGE_UPPER_BOUND_IS_COUNT assign low + high - 1 as the new high bound.
9017 * gdbtypes.h (enum range_flags): New enum.
9018 (struct range_bounds): Add flags member.
9019
9020 2014-04-11 Sanimir Agovic <sanimir.agovic@intel.com>
9021
9022 * c-typeprint.c (c_type_print_varspec_suffix): Added
9023 check for not yet resolved high bound. If unresolved, print
9024 "variable length" string to the console instead of random
9025 length.
9026
9027 2014-04-11 Sanimir Agovic <sanimir.agovic@intel.com>
9028
9029 * ada-lang.c (ada_value_primitive_packed_val): Re-fetch type from value.
9030 (ada_template_to_fixed_record_type_1): Likewise.
9031 (ada_to_fixed_type_1): Likewise.
9032 * cp-valprint.c (cp_print_value_fields_rtti): Likewise.
9033 (cp_print_value): Likewise.
9034 * d-valprint.c (dynamic_array_type): Likewise.
9035 * eval.c (evaluate_subexp_with_coercion): Likewise.
9036 * findvar.c (address_of_variable): Likewise.
9037 * jv-valprint.c (java_value_print): Likewise.
9038 * valops.c (value_ind): Likewise.
9039 * value.c (coerce_ref): Likewise.
9040
9041 2014-04-11 Sanimir Agovic <sanimir.agovic@intel.com>
9042
9043 * eval.c (evaluate_subexp_for_sizeof) <UNOP_IND>: Create an indirect
9044 value and retrieve the dynamic type size.
9045
9046 2014-04-11 Sanimir Agovic <sanimir.agovic@intel.com>
9047
9048 * eval.c (evaluate_subexp_for_sizeof) <OP_VAR_VALUE>: If the type
9049 passed to sizeof is dynamic evaluate the argument to compute the length.
9050
9051 2014-04-11 Sanimir Agovic <sanimir.agovic@intel.com>
9052
9053 * dwarf2loc.c (dwarf2_locexpr_baton_eval): New function.
9054 (dwarf2_evaluate_property): New function.
9055 * dwarf2loc.h (dwarf2_evaluate_property): New function prototype.
9056 * dwarf2read.c (attr_to_dynamic_prop): New function.
9057 (read_subrange_type): Use attr_to_dynamic_prop to read high bound
9058 attribute.
9059 * gdbtypes.c: Include dwarf2loc.h.
9060 (is_dynamic_type): New function.
9061 (resolve_dynamic_type): New function.
9062 (resolve_dynamic_bounds): New function.
9063 (get_type_length): New function.
9064 (check_typedef): Use get_type_length to compute type length.
9065 * gdbtypes.h (TYPE_HIGH_BOUND_KIND): New macro.
9066 (TYPE_LOW_BOUND_KIND): New macro.
9067 (is_dynamic_type): New function prototype.
9068 * value.c (value_from_contents_and_address): Call resolve_dynamic_type
9069 to resolve dynamic properties of the type. Update comment.
9070 * valops.c (get_value_at, value_at, value_at_lazy): Update comment.
9071
9072 2014-04-11 Sanimir Agovic <sanimir.agovic@intel.com>
9073
9074 * dwarf2read.c (read_subrange_type): Use struct bound_prop for
9075 declaring high/low bounds and change uses accordingly. Call
9076 create_range_type instead of create_static_range_type.
9077 * gdbtypes.c (create_range_type): New function.
9078 (create_range_type): Convert bounds into struct bound_prop and pass
9079 them to create_range_type.
9080 * gdbtypes.h (struct bound_prop): New struct.
9081 (create_range_type): New function prototype.
9082 (struct range_bounds): Use struct bound_prop instead of LONGEST for
9083 high/low bounds. Remove low_undefined/high_undefined and adapt all uses.
9084 (TYPE_LOW_BOUND,TYPE_HIGH_BOUND): Adapt macros to refer to the static
9085 part of the bound.
9086 * parse.c (follow_types): Set high bound kind to BOUND_UNDEFINED.
9087
9088 2014-04-11 Sanimir Agovic <sanimir.agovic@intel.com>
9089
9090 * gdbtypes.c (create_static_range_type): Renamed from create_range_type.
9091 * gdbtypes.h (create_static_range_type): Renamed from create_range_type.
9092 * ada-lang.c: All uses of create_range_type updated.
9093 * coffread.c: All uses of create_range_type updated.
9094 * dwarf2read.c: All uses of create_range_type updated.
9095 * f-exp.y: All uses of create_range_type updated.
9096 * m2-valprint.c: All uses of create_range_type updated.
9097 * mdebugread.c: All uses of create_range_type updated.
9098 * stabsread.c: All uses of create_range_type updated.
9099 * valops.c: All uses of create_range_type updated.
9100 * valprint.c: All uses of create_range_type updated.
9101
9102 2014-04-10 Pedro Alves <palves@redhat.com>
9103
9104 * breakpoint.c (single_step_breakpoints)
9105 (single_step_gdbarch): Move up in the file.
9106 (one_breakpoint_xfer_memory): New function, factored out from ...
9107 (breakpoint_xfer_memory): ... here. Also process single-step
9108 breakpoints.
9109
9110 2014-04-09 Tristan Gingold <gingold@adacore.com>
9111
9112 * darwin-nat.c (darwin_check_new_threads): Fix port leak, add
9113 comments.
9114 (darwin_decode_exception_message): Free port only after use.
9115
9116 2014-04-08 Pierre Langlois <pierre.langlois@embecosm.com>
9117
9118 * avr-tdep.c (struct gdbarch_tdep): Mention avrxmega in the comment.
9119 (avr_gdbarch_init): Add xmega architectures given by bfd_architecture
9120 when setting the size of call_length.
9121
9122 2014-04-07 Siva Chandra Reddy <sivachandra@google.com>
9123
9124 * python/py-value.c (valpy_get_dynamic_type): Use coerce_ref to
9125 dereference TYPE_CODE_REF values.
9126
9127 2014-04-07 Joel Brobecker <brobecker@adacore.com>
9128
9129 * darwin-nat.c (darwin_decode_message): Remove trailing '\n' at
9130 end of warning message.
9131
9132 2014-04-03 Doug Evans <dje@google.com>
9133
9134 * dwarf2read.c (read_cutu_die_from_dwo): Fix assertion, at most one
9135 of stub_comp_unit_die, stub_comp_dir is non-NULL.
9136
9137 2014-04-02 Alan Modra <amodra@gmail.com>
9138
9139 * symfile-mem.c (symbol_file_add_from_memory): Add size parameter.
9140 Pass to bfd_elf_bfd_from_remote_memory. Adjust all callers.
9141 (struct symbol_file_add_from_memory_args): Add size field.
9142 (find_vdso_size): New function.
9143 (add_vsyscall_page): Attempt to find vdso size.
9144
9145 2014-04-01 Doug Evans <dje@google.com>
9146
9147 * dwarf2read.c (read_cutu_die_from_dwo): Improve comment.
9148
9149 2014-04-01 Tristan Gingold <gingold@adacore.com>
9150
9151 * darwin-nat.c (darwin_encode_reply): Add prototype.
9152 (darwin_decode_exception_message): Reply to unknown inferiors.
9153 (darwin_decode_message): Handle message by id. Ignore message
9154 to unknown inferior.
9155 (darwin_wait): Discard unknown messages, add debug trace.
9156
9157 2014-03-31 Doug Evans <dje@google.com>
9158
9159 * dwarf2read.c (read_cutu_die_from_dwo): Delete unused local
9160 comp_dir_string.
9161
9162 2014-03-31 Doug Evans <dje@google.com>
9163
9164 New option "set print symbol-loading".
9165 * NEWS: Mention it.
9166 * solib.c (solib_read_symbols): Only print symbol loading messages
9167 if requested.
9168 (solib_add): If symbol loading is in "brief" mode, notify user
9169 symbols are being loaded.
9170 (reload_shared_libraries_1): Ditto.
9171 * symfile.c (print_symbol_loading_off): New static global.
9172 (print_symbol_loading_brief): New static global.
9173 (print_symbol_loading_full): New static global.
9174 (print_symbol_loading_enums): New static global.
9175 (print_symbol_loading): New static global.
9176 (print_symbol_loading_p): New function.
9177 (symbol_file_add_with_addrs): Only print symbol loading messages
9178 if requested.
9179 (_initialize_symfile): Register "print symbol-loading" set/show
9180 command.
9181 * symfile.h (print_symbol_loading_p): Declare.
9182
9183 2014-03-30 Doug Evans <xdje42@gmail.com>
9184
9185 * infrun.c (set_last_target_status): New function.
9186 (handle_inferior_event): Call it.
9187
9188 2014-03-30 Doug Evans <xdje42@gmail.com>
9189
9190 * inferior.h (enum stop_kind): Improve comment.
9191
9192 2014-03-28 Joel Brobecker <brobecker@adacore.com>
9193
9194 * varobj.c (varobj_value_has_mutated): If NEW_VALUE is
9195 a reference, strip the reference layer before calling
9196 the lang_ops value_has_mutated callback.
9197
9198 2014-03-27 Sergio Durigan Junior <sergiodj@redhat.com>
9199
9200 Remove some globals from our parser.
9201 * language.c (unk_lang_parser): Add "struct parser_state"
9202 argument.
9203 * language.h (struct language_defn) <la_parser>: Likewise.
9204 * parse.c (expout, expout_size, expout_ptr): Remove variables.
9205 (initialize_expout): Add "struct parser_state" argument.
9206 Rewrite function to use the parser state.
9207 (reallocate_expout, write_exp_elt, write_exp_elt_opcode,
9208 write_exp_elt_sym, write_exp_elt_block, write_exp_elt_objfile,
9209 write_exp_elt_longcst, write_exp_elt_dblcst,
9210 write_exp_elt_decfloatcst, write_exp_elt_type,
9211 write_exp_elt_intern, write_exp_string, write_exp_string_vector,
9212 write_exp_bitstring, write_exp_msymbol, mark_struct_expression,
9213 write_dollar_variable): Likewise.
9214 (parse_exp_in_context_1): Use parser state.
9215 (insert_type_address_space): Add "struct parser_state" argument.
9216 Use parser state.
9217 (increase_expout_size): New function.
9218 * parser-defs.h: Forward declare "struct language_defn" and
9219 "struct parser_state".
9220 (expout, expout_size, expout_ptr): Remove extern declarations.
9221 (parse_gdbarch, parse_language): Rewrite macro declarations to
9222 accept the parser state.
9223 (struct parser_state): New struct.
9224 (initialize_expout, reallocate_expout, write_exp_elt_opcode,
9225 write_exp_elt_sym, write_exp_elt_longcst, write_exp_elt_dblcst,
9226 write_exp_elt_decfloatcst, write_exp_elt_type,
9227 write_exp_elt_intern, write_exp_string, write_exp_string_vector,
9228 write_exp_bitstring, write_exp_elt_block, write_exp_elt_objfile,
9229 write_exp_msymbol, write_dollar_variable,
9230 mark_struct_expression, insert_type_address_space): Add "struct
9231 parser_state" argument.
9232 (increase_expout_size): New function.
9233 * utils.c (do_clear_parser_state): New function.
9234 (make_cleanup_clear_parser_state): Likewise.
9235 * utils.h (make_cleanup_clear_parser_state): New function
9236 prototype.
9237 * aarch64-linux-tdep.c (aarch64_stap_parse_special_token):
9238 Update calls to write_exp* in order to pass the parser state.
9239 * arm-linux-tdep.c (arm_stap_parse_special_token): Likewise.
9240 * i386-tdep.c (i386_stap_parse_special_token_triplet): Likewise.
9241 (i386_stap_parse_special_token_three_arg_disp): Likewise.
9242 * ppc-linux-tdep.c (ppc_stap_parse_special_token): Likewise.
9243 * stap-probe.c (stap_parse_register_operand): Likewise.
9244 (stap_parse_single_operand): Likewise.
9245 (stap_parse_argument_1): Likewise.
9246 (stap_parse_argument): Use parser state.
9247 * stap-probe.h: Include "parser-defs.h".
9248 (struct stap_parse_info) <pstate>: New field.
9249 * c-exp.y (parse_type): Rewrite to use parser state.
9250 (yyparse): Redefine to c_parse_internal.
9251 (pstate): New global variable.
9252 (parse_number): Add "struct parser_state" argument.
9253 (write_destructor_name): Likewise.
9254 (type_exp): Update calls to write_exp* and similars in order to
9255 use parser state.
9256 (exp1, exp, variable, qualified_name, space_identifier,
9257 typename, typebase): Likewise.
9258 (write_destructor_name, parse_number, lex_one_token,
9259 classify_name, classify_inner_name, c_parse): Add "struct
9260 parser_state" argument. Update function to use parser state.
9261 * c-lang.h: Forward declare "struct parser_state".
9262 (c_parse): Add "struct parser_state" argument.
9263 * ada-exp.y (parse_type): Rewrite macro to use parser state.
9264 (yyparse): Redefine macro to ada_parse_internal.
9265 (pstate): New variable.
9266 (write_int, write_object_renaming, write_var_or_type,
9267 write_name_assoc, write_exp_op_with_string, write_ambiguous_var,
9268 type_int, type_long, type_long_long, type_float, type_double,
9269 type_long_double, type_char, type_boolean, type_system_address):
9270 Add "struct parser_state" argument.
9271 (exp1, primary, simple_exp, relation, and_exp, and_then_exp,
9272 or_exp, or_else_exp, xor_exp, type_prefix, opt_type_prefix,
9273 var_or_type, aggregate, aggregate_component_list,
9274 positional_list, others, component_group,
9275 component_associations): Update calls to write_exp* and similar
9276 functions in order to use parser state.
9277 (ada_parse, write_var_from_sym, write_int,
9278 write_exp_op_with_string, write_object_renaming,
9279 find_primitive_type, write_selectors, write_ambiguous_var,
9280 write_var_or_type, write_name_assoc, type_int, type_long,
9281 type_long_long, type_float, type_double, type_long_double,
9282 type_char, type_boolean, type_system_address): Add "struct
9283 parser_state" argument. Adjust function to use parser state.
9284 * ada-lang.c (parse): Likewise.
9285 * ada-lang.h: Forward declare "struct parser_state".
9286 (ada_parse): Add "struct parser_state" argument.
9287 * ada-lex.l (processInt, processReal): Likewise. Adjust all
9288 calls to both functions.
9289 * f-exp.y (parse_type, parse_f_type): Rewrite macros to use
9290 parser state.
9291 (yyparse): Redefine macro to f_parse_internal.
9292 (pstate): New variable.
9293 (parse_number): Add "struct parser_state" argument.
9294 (type_exp, exp, subrange, typebase): Update calls to write_exp*
9295 and similars in order to use parser state.
9296 (parse_number): Adjust code to use parser state.
9297 (yylex): Likewise.
9298 (f_parse): New function.
9299 * f-lang.h: Forward declare "struct parser_state".
9300 (f_parse): Add "struct parser_state" argument.
9301 * jv-exp.y (parse_type, parse_java_type): Rewrite macros to use
9302 parser state.
9303 (yyparse): Redefine macro for java_parse_internal.
9304 (pstate): New variable.
9305 (push_expression_name, push_expression_name, insert_exp): Add
9306 "struct parser_state" argument.
9307 (type_exp, StringLiteral, Literal, PrimitiveType, IntegralType,
9308 FloatingPointType, exp1, PrimaryNoNewArray, FieldAccess,
9309 FuncStart, MethodInvocation, ArrayAccess, PostfixExpression,
9310 PostIncrementExpression, PostDecrementExpression,
9311 UnaryExpression, PreIncrementExpression, PreDecrementExpression,
9312 UnaryExpressionNotPlusMinus, CastExpression,
9313 MultiplicativeExpression, AdditiveExpression, ShiftExpression,
9314 RelationalExpression, EqualityExpression, AndExpression,
9315 ExclusiveOrExpression, InclusiveOrExpression,
9316 ConditionalAndExpression, ConditionalOrExpression,
9317 ConditionalExpression, Assignment, LeftHandSide): Update
9318 calls to write_exp* and similars in order to use parser state.
9319 (parse_number): Ajust code to use parser state.
9320 (yylex): Likewise.
9321 (java_parse): New function.
9322 (push_variable): Add "struct parser_state" argument. Adjust
9323 code to user parser state.
9324 (push_fieldnames, push_qualified_expression_name,
9325 push_expression_name, insert_exp): Likewise.
9326 * jv-lang.h: Forward declare "struct parser_state".
9327 (java_parse): Add "struct parser_state" argument.
9328 * m2-exp.y (parse_type, parse_m2_type): Rewrite macros to use
9329 parser state.
9330 (yyparse): Redefine macro to m2_parse_internal.
9331 (pstate): New variable.
9332 (type_exp, exp, fblock, variable, type): Update calls to
9333 write_exp* and similars to use parser state.
9334 (yylex): Likewise.
9335 (m2_parse): New function.
9336 * m2-lang.h: Forward declare "struct parser_state".
9337 (m2_parse): Add "struct parser_state" argument.
9338 * objc-lang.c (end_msglist): Add "struct parser_state" argument.
9339 * objc-lang.h: Forward declare "struct parser_state".
9340 (end_msglist): Add "struct parser_state" argument.
9341 * p-exp.y (parse_type): Rewrite macro to use parser state.
9342 (yyparse): Redefine macro to pascal_parse_internal.
9343 (pstate): New variable.
9344 (parse_number): Add "struct parser_state" argument.
9345 (type_exp, exp1, exp, qualified_name, variable): Update calls to
9346 write_exp* and similars in order to use parser state.
9347 (parse_number, yylex): Adjust code to use parser state.
9348 (pascal_parse): New function.
9349 * p-lang.h: Forward declare "struct parser_state".
9350 (pascal_parse): Add "struct parser_state" argument.
9351 * go-exp.y (parse_type): Rewrite macro to use parser state.
9352 (yyparse): Redefine macro to go_parse_internal.
9353 (pstate): New variable.
9354 (parse_number): Add "struct parser_state" argument.
9355 (type_exp, exp1, exp, variable, type): Update calls to
9356 write_exp* and similars in order to use parser state.
9357 (parse_number, lex_one_token, classify_name, yylex): Adjust code
9358 to use parser state.
9359 (go_parse): Likewise.
9360 * go-lang.h: Forward declare "struct parser_state".
9361 (go_parse): Add "struct parser_state" argument.
9362
9363 2014-03-27 Doug Evans <dje@google.com>
9364
9365 * dwarf2read.c (read_str_index): Delete arg cu. All callers updated.
9366
9367 2014-03-27 Doug Evans <dje@google.com>
9368
9369 * dwarf2read.c (init_cutu_and_read_dies_no_follow): Fix comments.
9370 Remove argument abbrev_section. All callers updated.
9371
9372 2014-03-27 Doug Evans <dje@google.com>
9373
9374 * dwarf2read.c (struct dwarf2_cu): Improve comments for members
9375 addr_base, ranges_base.
9376
9377 2014-03-26 Keith Seitz <keiths@redhat.com>
9378
9379 * ada-tasks.c (get_tcb_types_info): Search STRUCT_DOMAIN for
9380 types, not VAR_DOMAIN.
9381
9382 2014-03-25 Sandra Loosemore <sandra@codesourcery.com>
9383
9384 * features/nios2-cpu.xml: Correct types of "gp", "fp", "ea", and
9385 "ra" registers.
9386 * features/nios2-linux.c: Regenerated.
9387 * features/nios2.c: Regenerated.
9388
9389 2014-03-25 Pedro Alves <palves@redhat.com>
9390
9391 * cli/cli-script.c (script_from_file): Force the interpreter to
9392 sync mode.
9393
9394 2014-03-24 Pierre Langlois <pierre.langlois@embecosm.com>
9395
9396 * avr-tdep.c (avr_scan_prologue): Accept push r1 instruction for
9397 small stack allocation.
9398
9399 2014-03-24 Tristan Gingold <gingold@adacore.com>
9400
9401 * darwin-nat.c (exc_server): Remove unused prototype.
9402 (darwin_dump_message): Correctly display data on x86_64.
9403 (darwin_encode_reply): Fix style.
9404 Add comments and fix indentation.
9405
9406 2014-03-24 Pierre Langlois <pierre.langlois@embecosm.com>
9407
9408 * MAINTAINERS (Write After Approval): Add "Pierre Langlois".
9409
9410 2014-03-22 Doug Evans <xdje42@gmail.com>
9411
9412 * infcmd.c: Whitespace fixes.
9413 (interrupt_command): Merge two function comments into one.
9414
9415 2014-03-22 Doug Evans <xdje42@gmail.com>
9416
9417 * infcmd.c (interrupt_command): Renamed from interrupt_target_command.
9418 All uses updated.
9419
9420 2014-03-22 Yao Qi <yao@codesourcery.com>
9421
9422 * remote.c (target_read_live_memory): Remove.
9423 (memory_xfer_live_readonly_partial): Rename it to
9424 remote_xfer_live_readonly_partial. Remove argument 'object'.
9425 All callers updated. Call remote_read_bytes_1
9426 instead of target_read_live_memory.
9427 * tracepoint.c (set_traceframe_number): Remove.
9428 (make_cleanup_restore_traceframe_number): Likewise .
9429 * tracepoint.h (set_traceframe_number): Remove declaration.
9430 (make_cleanup_restore_traceframe_number): Likewise.
9431
9432 2014-03-22 Yao Qi <yao@codesourcery.com>
9433
9434 * remote.c (remote_read_bytes): Move code on reading from the
9435 remote stub to ...
9436 (remote_read_bytes_1): ... here. New function.
9437
9438 2014-03-22 Yao Qi <yao@codesourcery.com>
9439
9440 * ctf.c (ctf_xfer_partial): Check the return value of
9441 exec_read_partial_read_only, if it is not TARGET_XFER_OK,
9442 return TARGET_XFER_UNAVAILABLE.
9443 * tracefile-tfile.c (tfile_xfer_partial): Likewise.
9444 * target.c (target_read_live_memory): Move it to remote.c.
9445 (memory_xfer_live_readonly_partial): Likewise.
9446 (memory_xfer_partial_1): Move some code to remote_read_bytes.
9447 * remote.c (target_read_live_memory): Moved from target.c.
9448 (memory_xfer_live_readonly_partial): Likewise.
9449 (remote_read_bytes): Factored out from
9450 memory_xfer_partial_1.
9451
9452 2014-03-21 Daniel Gutson <daniel.gutson@tallertechnologies.com>
9453
9454 * extension.c (eval_ext_lang_from_control_command): Avoid dereferencing
9455 NULL pointer.
9456
9457 2014-03-21 Pedro Alves <palves@redhat.com>
9458
9459 * infrun.c (normal_stop): Extend comment.
9460
9461 2014-03-21 Hui Zhu <hui@codesourcery.com>
9462 Pedro Alves <palves@redhat.com>
9463
9464 * darwin-nat.c (darwin_pid_to_exec_file): Change xmalloc to
9465 static buffer.
9466 * fbsd-nat.c (fbsd_pid_to_exec_file): Ditto.
9467 * linux-nat.c (linux_child_pid_to_exec_file): Ditto.
9468 * nbsd-nat.c (nbsd_pid_to_exec_file): Ditto.
9469
9470 2014-03-20 Maciej W. Rozycki <macro@codesourcery.com>
9471
9472 * mi/mi-interp.c (mi_memory_changed): Avoid using the ISO C99
9473 `z' formatted output modifier.
9474
9475 2014-03-20 Tom Tromey <tromey@redhat.com>
9476 Sergio Durigan Junior <sergiodj@redhat.com>
9477
9478 * probe.c (parse_probes): Turn assert into an ordinary error.
9479 * break-catch-throw.c (re_set_exception_catchpoint): Ignore
9480 exceptions when parsing probes. Rearrange the code for clarity.
9481
9482 2014-03-20 Tom Tromey <tromey@redhat.com>
9483
9484 PR gdb/14135
9485 * top.c (execute_command): Only dispatch events if the command
9486 started the target.
9487
9488 2014-03-20 Tom Tromey <tromey@redhat.com>
9489
9490 PR cli/15718
9491 * infcall.c: Include event-top.h.
9492 (run_inferior_call): Call async_disable_stdin if needed.
9493
9494 2014-03-20 Pedro Alves <palves@redhat.com>
9495
9496 * infrun.c (prepare_to_proceed): Delete.
9497 (thread_still_needs_step_over): New function.
9498 (find_thread_needs_step_over): New function.
9499 (proceed): If the current thread needs a step-over, set its
9500 steping_over_breakpoint flag. Adjust to use
9501 find_thread_needs_step_over instead of prepare_to_proceed.
9502 (process_event_stop_test): For BPSTAT_WHAT_STOP_NOISY and
9503 BPSTAT_WHAT_STOP_SILENT, assume the thread stopped for a
9504 breakpoint.
9505 (switch_back_to_stepped_thread): Step over breakpoints of all
9506 threads not the stepping thread, before switching back to the
9507 stepping thread.
9508
9509 2014-03-20 Pedro Alves <palves@redhat.com>
9510
9511 * breakpoint.c (single_step_breakpoint_inserted_here_p): Make
9512 extern.
9513 * breakpoint.h (single_step_breakpoint_inserted_here_p): Declare.
9514 * infrun.c (saved_singlestep_ptid)
9515 (stepping_past_singlestep_breakpoint): Delete.
9516 (resume): Remove stepping_past_singlestep_breakpoint handling.
9517 (proceed): Store the prev_pc of the stepping thread too.
9518 (init_wait_for_inferior): Adjust. Clear singlestep_ptid and
9519 singlestep_pc.
9520 (enum infwait_states): Delete infwait_thread_hop_state.
9521 (struct execution_control_state) <hit_singlestep_breakpoint>: New
9522 field.
9523 (handle_inferior_event): Adjust.
9524 (handle_signal_stop): Delete stepping_past_singlestep_breakpoint
9525 handling and the thread-hop code. Before removing single-step
9526 breakpoints, check whether the thread hit a single-step breakpoint
9527 of another thread. If it did, the trap is not a random signal.
9528 (switch_back_to_stepped_thread): If the event thread hit a
9529 single-step breakpoint, unblock it before switching to the
9530 stepping thread. Handle the case of the stepped thread having
9531 advanced already.
9532 (keep_going): Handle the case of the current thread moving past a
9533 single-step breakpoint.
9534
9535 2014-03-20 Pedro Alves <palves@redhat.com>
9536
9537 PR breakpoints/7143
9538 * breakpoint.c (should_be_inserted): Don't insert breakpoints that
9539 are being stepped over.
9540 (breakpoint_address_match): Make extern.
9541 * breakpoint.h (breakpoint_address_match): New declaration.
9542 * inferior.h (stepping_past_instruction_at): New declaration.
9543 * infrun.c (struct step_over_info): New type.
9544 (step_over_info): New global.
9545 (set_step_over_info, clear_step_over_info)
9546 (stepping_past_instruction_at): New functions.
9547 (handle_inferior_event): Clear the step-over info when
9548 trap_expected is cleared.
9549 (resume): Remove now stale comment.
9550 (clear_proceed_status): Clear step-over info.
9551 (proceed): Adjust step-over handling to set or clear the step-over
9552 info instead of removing all breakpoints.
9553 (handle_signal_stop): When setting up a thread-hop, don't remove
9554 breakpoints here.
9555 (stop_stepping): Clear step-over info.
9556 (keep_going): Adjust step-over handling to set or clear step-over
9557 info and then always inserting breakpoints, instead of removing
9558 all breakpoints when stepping over one.
9559
9560 2014-03-20 Pedro Alves <palves@redhat.com>
9561
9562 * infrun.c (previous_inferior_ptid): Adjust comment.
9563 (deferred_step_ptid): Delete.
9564 (infrun_thread_ptid_changed, prepare_to_proceed)
9565 (init_wait_for_inferior): Adjust.
9566 (handle_signal_stop): Delete deferred_step_ptid handling.
9567
9568 2014-03-18 Jan Kratochvil <jan.kratochvil@redhat.com>
9569
9570 PR gdb/15358
9571 * defs.h (sync_quit_force_run): New declaration.
9572 (QUIT): Check also SYNC_QUIT_FORCE_RUN.
9573 * event-top.c (async_sigterm_handler): New declaration.
9574 (async_sigterm_token): New variable.
9575 (async_init_signals): Create also async_sigterm_token.
9576 (async_sigterm_handler): New function.
9577 (sync_quit_force_run): New variable.
9578 (handle_sigterm): Replace quit_force call by other calls.
9579 * utils.c (quit): Call quit_force if SYNC_QUIT_FORCE_RUN.
9580
9581 2014-03-18 Maciej W. Rozycki <macro@codesourcery.com>
9582
9583 * rs6000-tdep.c (rs6000_frame_cache): Correct little-endian GPR
9584 offset into SPE pseudo registers.
9585
9586 2014-03-18 Pedro Alves <palves@redhat.com>
9587
9588 PR gdb/13860
9589 * inferior.h (print_stop_event): Declare.
9590 * infrun.c (print_stop_event): New, factored out from ...
9591 (normal_stop): ... this.
9592 * mi/mi-interp.c (mi_on_normal_stop): Use print_stop_event instead
9593 of bpstat_print/print_stack_frame.
9594
9595 2014-03-17 Tom Tromey <tromey@redhat.com>
9596
9597 * ui-out.c (clear_table, ui_out_new): Clear uiout->table.id.
9598
9599 2014-03-17 Pierre-Marie de Rodat <derodat@adacore.com>
9600
9601 * ada-lang.c (decode_constrained_packed_array): Perform a
9602 minimal coercion for reference with coerce_ref instead of
9603 ada_coerce_ref.
9604
9605 2014-03-17 Tristan Gingold <gingold@adacore.com>
9606
9607 * solib-darwin.c (DYLD_VERSION_MAX): Increase value.
9608 (darwin_solib_create_inferior_hook): Emit a warning if version
9609 is unhandled.
9610
9611 2014-03-16 Ulrich Weigand  <uweigand@de.ibm.com>
9612
9613 * python/py-value.c (get_field_flag): Cast flag_name argument to
9614 PyObject_GetAttrString to support Python 2.4.
9615
9616 2014-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9617
9618 * MAINTAINERS (The Official FSF-appointed GDB Maintainers)
9619 (Global Maintainers): Remove Jan Kratochvil.
9620
9621 2014-03-14 Pedro Alves <palves@redhat.com>
9622
9623 * inferior.h (terminal_ours_for_output): Rename to ...
9624 (child_terminal_ours_for_output): ... this.
9625 (terminal_save_ours): Rename to ...
9626 (child_terminal_save_ours): ... this.
9627 (terminal_ours): Rename to ...
9628 (child_terminal_ours): ... this.
9629 (terminal_inferior): Rename to ...
9630 (child_terminal_inferior): ... this.
9631 (terminal_init_inferior): Rename to ...
9632 (child_terminal_init_inferior): ... this.
9633 (terminal_init_inferior_with_pgrp): Rename to ...
9634 (child_terminal_init_inferior_with_pgrp): ... this.
9635 * inflow.c (terminal_init_inferior_with_pgrp): Rename to ...
9636 (child_terminal_init_with_pgrp): ... this.
9637 (terminal_save_ours): Rename to ...
9638 (child_terminal_save_ours): ... this.
9639 (terminal_init_inferior): Rename to ...
9640 (child_terminal_init): ... this. Adjust.
9641 (terminal_inferior): Rename to ...
9642 (child_terminal_inferior): ... this.
9643 (terminal_ours_for_output): Rename to ...
9644 (child_terminal_ours_for_output): ... this. Adjust.
9645 (terminal_ours): Rename to ...
9646 (child_terminal_ours): ... this.
9647 (terminal_ours_1): Rename to ...
9648 (child_terminal_ours_1): ... this. Adjust.
9649 * linux-nat.c (linux_nat_terminal_inferior): Adjust.
9650 * windows-nat.c (do_initial_windows_stuff): Adjust.
9651 * gnu-nat.c (gnu_terminal_init_inferior): Rename to ...
9652 (gnu_terminal_init): ... this. Adjust.
9653 (gnu_target): Adjust.
9654 * inf-child.c (inf_child_target): Adjust.
9655
9656 2014-03-13 Doug Evans <xdje42@gmail.com>
9657
9658 PR guile/16612
9659 * guile/scm-type.c (tyscm_copy_type_recursive): Move type to its
9660 new eq?-hashtab.
9661
9662 2014-03-13 Doug Evans <xdje42@gmail.com>
9663
9664 * value.c (record_latest_value): Call release_value_or_incref
9665 instead of release_value.
9666
9667 2014-03-13 Pedro Alves <palves@redhat.com>
9668
9669 * procfs.c (procfs_target): Don't override to_shortname,
9670 to_longname or to_doc.
9671
9672 2014-03-13 Pedro Alves <palves@redhat.com>
9673
9674 * inf-child.c (inf_child_open, inf_child_target): Don't mention
9675 Unix in user visible strings.
9676
9677 2014-03-12 Stan Shebs <stan@codesourcery.com>
9678
9679 * gdbtypes.h: Annotate comments for Doxygen, add a page
9680 block comment with some general info.
9681
9682 2014-03-12 Pedro Alves <palves@redhat.com>
9683
9684 * infcmd.c (prepare_execution_command): New function, factored out
9685 from several execution commands.
9686 (run_command_1, continue_command, step_1, jump_command)
9687 (signal_command, until_command, advance_command, finish_command)
9688 (attach_command): Use prepare_execution_command.
9689
9690 2014-03-12 Omair Javaid <omair.javaid@linaro.org>
9691
9692 * arm-linux-nat.c (arm_linux_get_hwbp_cap): Updated.
9693 (MAX_BPTS): Define.
9694 (MAX_WPTS): Define.
9695 (struct arm_linux_thread_points): Removed.
9696 (struct arm_linux_process_info): New.
9697 (DEF_VEC_P (arm_linux_thread_points_p)): Removed.
9698 (VEC(arm_linux_thread_points_p) *arm_threads): Removed.
9699 (arm_linux_find_breakpoints_by_tid): Removed.
9700 (struct arch_lwp_info): New.
9701 (arm_linux_find_process_pid): New functions.
9702 (arm_linux_add_process): New functions.
9703 (arm_linux_process_info_get): New functions.
9704 (arm_linux_forget_process): New function.
9705 (arm_linux_get_debug_reg_state): New function.
9706 (struct update_registers_data): New.
9707 (update_registers_callback): New function.
9708 (arm_linux_insert_hw_breakpoint1): Updated.
9709 (arm_linux_remove_hw_breakpoint1): Updated.
9710 (arm_linux_insert_hw_breakpoint): Updated.
9711 (arm_linux_remove_hw_breakpoint): Updated.
9712 (arm_linux_insert_watchpoint): Updated.
9713 (arm_linux_remove_watchpoint): Updated.
9714 (arm_linux_new_thread): Updated.
9715 (arm_linux_prepare_to_resume): New function.
9716 (arm_linux_new_fork): New function.
9717 (_initialize_arm_linux_nat): Updated.
9718
9719 2014-03-12 Pedro Alves <palves@redhat.com>
9720
9721 * Makefile.in (TARGET_FLAGS_TO_PASS): Add TESTS.
9722
9723 2014-03-12 Tom Tromey <tromey@redhat.com>
9724
9725 * inf-child.c (return_zero): New function.
9726 (inf_child_target): Set to_can_async_p, to_supports_non_stop.
9727 * aix-thread.c (aix_thread_inferior_created): New function.
9728 (aix_thread_attach): Remove.
9729 (init_aix_thread_ops): Don't set to_attach.
9730 (_initialize_aix_thread): Register inferior_created observer.
9731 * corelow.c (init_core_ops): Don't set to_attach or
9732 to_create_inferior.
9733 * exec.c (init_exec_ops): Don't set to_attach or
9734 to_create_inferior.
9735 * infcmd.c (run_command_1): Use find_run_target. Make direct
9736 target calls.
9737 (attach_command): Use find_attach_target. Make direct target
9738 calls.
9739 * record-btrace.c (init_record_btrace_ops): Don't set
9740 to_create_inferior.
9741 * record-full.c (record_full_can_async_p, record_full_is_async_p):
9742 Remove.
9743 (init_record_full_ops, init_record_full_core_ops): Update. Don't
9744 set to_create_inferior.
9745 * target.c (complete_target_initialization): Add assertion.
9746 (target_create_inferior): Remove.
9747 (find_default_attach, find_default_create_inferior): Remove.
9748 (find_attach_target, find_run_target): New functions.
9749 (find_default_is_async_p, find_default_can_async_p)
9750 (target_supports_non_stop, target_attach): Remove.
9751 (init_dummy_target): Don't set to_create_inferior or
9752 to_supports_non_stop.
9753 * target.h (struct target_ops) <to_attach>: Add comment. Remove
9754 TARGET_DEFAULT_FUNC.
9755 <to_create_inferior>: Add comment.
9756 <to_can_async_p, to_is_async_p, to_supports_non_stop>: Use
9757 TARGET_DEFAULT_RETURN.
9758 <to_can_async_p, to_supports_non_stop, to_can_run>: Add comments.
9759 (find_attach_target, find_run_target): Declare.
9760 (target_create_inferior): Remove.
9761 (target_has_execution_1): Update comment.
9762 (target_supports_non_stop): Remove.
9763 * target-delegates.c: Rebuild.
9764
9765 2014-03-12 Pedro Alves <palves@redhat.com>
9766
9767 * inf-child.h: Update comment to not mention Unix.
9768
9769 2014-03-12 Pedro Alves <palves@redhat.com>
9770
9771 * inf-child.c: Update top comment to not mention Unix. Add
9772 generic comment describing how this target is meant to be used.
9773 (inf_child_post_attach, inf_child_post_startup_inferior)
9774 (inf_child_follow_fork, inf_child_pid_to_exec_file): Don't mention
9775 Unix in comment.
9776
9777 2014-03-12 Pedro Alves <palves@redhat.com>
9778
9779 * nto-procfs.c: Include inf-child.h.
9780 (procfs_ops): Delete global.
9781 (procfs_can_run): Delete method.
9782 (procfs_detach, procfs_mourn_inferior): Unpush the passed in
9783 target pointer instead of referencing procfs_ops.
9784 (procfs_prepare_to_store): Delete.
9785 (init_procfs_ops): Delete function.
9786 (procfs_target): New function, based on init_procfs_ops, but
9787 inherit inf_child_target.
9788 (_initialize_procfs): Use procfs_target.
9789
9790 2014-03-12 Pedro Alves <palves@redhat.com>
9791
9792 * windows-nat.c: Include inf-child.h.
9793 (windows_ops): Delete global.
9794 (windows_open, windows_prepare_to_store, windows_can_run): Delete
9795 methods.
9796 (init_windows_ops): Delete function.
9797 (windows_target): New function, based on init_windows_ops, but
9798 inherit inf_child_target.
9799 (_initialize_windows_nat): Use windows_target. Install x86
9800 specific target methods here.
9801
9802 2014-03-10 Doug Evans <xdje42@gmail.com>
9803
9804 * guile/guile.c (call_initialize_gdb_module): New function.
9805 (initialize_guile): Replace call to scm_init_guile with call to
9806 scm_with_guile.
9807
9808 2014-03-10 Joel Brobecker <brobecker@adacore.com>
9809
9810 * ada-lang.c (ada_evaluate_subexp): Add missing space before '('
9811 in call to TYPE_CODE macro.
9812
9813 2014-03-10 Jerome Guitton <guitton@adacore.com>
9814
9815 * ada-lang.c (ada_evaluate_subexp) <UNOP_IND, STRUCTOP_STRUCT>:
9816 Resolve tagged types to full view.
9817
9818 2014-03-10 Hui Zhu <hui@codesourcery.com>
9819
9820 * target.h (target_insert_breakpoint): Remove "hardware" from its
9821 comments.
9822
9823 2014-03-07 Doug Evans <dje@google.com>
9824
9825 * dwarf2read.c (read_str_index): Rename local dwo_name to objf_name.
9826
9827 2014-03-07 Doug Evans <dje@google.com>
9828
9829 * dwarf2read.c (read_cutu_die_from_dwo): Fix function comment.
9830 Remove unused local comp_dir_attr. Assert exactly one of
9831 stub_comp_unit_die, stub_comp_dir is non-NULL.
9832
9833 2014-03-07 Joel Brobecker <brobecker@adacore.com>
9834
9835 * target.h (complete_target_initialization, add_target):
9836 Add comment.
9837
9838 2014-03-07 Pedro Alves <palves@redhat.com>
9839
9840 * go32-nat.c: Include inf-child.h.
9841 (go32_ops): Delete global.
9842 (go32_close, go32_detach, go32_prepare_to_store, go32_can_run):
9843 Delete methods.
9844 (go32_create_inferior): Push the passed in target pointer instead
9845 of referencing go32_ops.
9846 (init_go32_ops): Delete function. Moved parts to _initialize_go32_nat.
9847 (go32_target): New function, based on init_go32_ops, but inherit
9848 inf_child_target.
9849 (_initialize_go32_nat): Use go32_target. Move parts of
9850 init_go32_ops here.
9851
9852 2014-03-06 Joel Brobecker <brobecker@adacore.com>
9853
9854 * sol-thread.c: #include "symtab.h", "minsym.h" and "objfiles.h".
9855 (ps_pglobal_lookup): Use BMSYMBOL_VALUE_ADDRESS instead of
9856 SYMBOL_VALUE_ADDRESS.
9857 (info_cb): MSYMBOL_PRINT_NAME instead of SYMBOL_PRINT_NAME.
9858
9859 2014-03-06 Yao Qi <yao@codesourcery.com>
9860
9861 * breakpoint.c (get_tracepoint_by_number): Remove argument
9862 optional_p. All callers updated. Adjust comments. Update
9863 output message.
9864 * breakpoint.h (get_tracepoint_by_number): Update declaration.
9865
9866 2014-03-06 Yao Qi <yao@codesourcery.com>
9867
9868 * reverse.c (goto_bookmark_command): Add local 'p'. Emit error
9869 early if get_number returns zero. Use 'p' instead of 'args'.
9870
9871 2014-03-06 Yao Qi <yao@codesourcery.com>
9872
9873 * cli/cli-utils.c (get_number_trailer): Add '\n' at the end of
9874 message.
9875
9876 2014-03-06 Yao Qi <yao@codesourcery.com>
9877
9878 PR breakpoints/16508
9879 * tracepoint.c (check_trace_running): New function.
9880 (trace_find_command): Move code to check_trace_running and
9881 call check_trace_running.
9882 (trace_find_pc_command): Likewise.
9883 (trace_find_tracepoint_command): Likewise.
9884 (trace_find_line_command): Likewise.
9885 (trace_find_range_command): Likewise.
9886 * tracepoint.h (check_trace_running): Likewise.
9887 * mi/mi-main.c (mi_cmd_trace_find): Call check_trace_running.
9888
9889 2014-03-06 Yao Qi <yao@codesourcery.com>
9890
9891 * target.h (struct target_ops) <to_traceframe_info>: Use
9892 TARGET_DEFAULT_NORETURN (tcomplain ()).
9893 * target-delegates.c: Regenerated.
9894
9895 2014-03-05 Pedro Alves <palves@redhat.com>
9896
9897 PR gdb/16575
9898 * dcache.c (dcache_poke_byte): Constify ptr parameter. Return
9899 void. Update comment.
9900 (dcache_xfer_memory): Delete.
9901 (dcache_read_memory_partial): New, based on the read bits of
9902 dcache_xfer_memory.
9903 (dcache_update): Add status parameter. Use ULONGEST for len, and
9904 adjust. Discard cache lines if the reason for the update was
9905 error.
9906 * dcache.h (dcache_xfer_memory): Delete declaration.
9907 (dcache_read_memory_partial): New declaration.
9908 (dcache_update): Update prototype.
9909 * target.c (raw_memory_xfer_partial): Update the dcache here.
9910 (memory_xfer_partial_1): Don't handle dcache writes here.
9911
9912 2014-03-05 Mike Frysinger <vapier@gentoo.org>
9913
9914 * remote-sim.c (gdbsim_load): Add const to prog.
9915
9916 2014-03-03 Tom Tromey <tromey@redhat.com>
9917
9918 * elfread.c (probe_key): Change to bfd_data.
9919 (elf_get_probes, probe_key_free, _initialize_elfread): Probes are
9920 now per-BFD, not per-objfile.
9921 * stap-probe.c (stap_probe_destroy): Update comment.
9922 (handle_stap_probe): Allocate on the per-BFD obstack.
9923
9924 2014-03-03 Tom Tromey <tromey@redhat.com>
9925
9926 * break-catch-throw.c (fetch_probe_arguments): Use bound probes.
9927 * breakpoint.c (create_longjmp_master_breakpoint): Use
9928 get_probe_address.
9929 (add_location_to_breakpoint, bkpt_probe_insert_location)
9930 (bkpt_probe_remove_location): Update.
9931 * breakpoint.h (struct bp_location) <probe>: Now a bound_probe.
9932 * elfread.c (elf_symfile_relocate_probe): Remove.
9933 (elf_probe_fns): Update.
9934 (insert_exception_resume_breakpoint): Change type of "probe"
9935 parameter to bound_probe.
9936 (check_exception_resume): Update.
9937 * objfiles.c (objfile_relocate1): Don't relocate probes.
9938 * probe.c (bound_probe_s): New typedef.
9939 (parse_probes): Use get_probe_address. Set sal's objfile.
9940 (find_probe_by_pc): Return a bound_probe.
9941 (collect_probes): Return a VEC(bound_probe_s).
9942 (compare_probes): Update.
9943 (gen_ui_out_table_header_info): Change type of "probes"
9944 parameter. Update.
9945 (info_probes_for_ops): Update.
9946 (get_probe_address): New function.
9947 (probe_safe_evaluate_at_pc): Update.
9948 * probe.h (struct probe_ops) <get_probe_address>: New field.
9949 <set_semaphore, clear_semaphore>: Add objfile parameter.
9950 (struct probe) <objfile>: Remove field.
9951 <arch>: New field.
9952 <address>: Update comment.
9953 (struct bound_probe): New.
9954 (find_probe_by_pc): Return a bound_probe.
9955 (get_probe_address): Declare.
9956 * solib-svr4.c (struct probe_and_action) <address>: New field.
9957 (hash_probe_and_action, equal_probe_and_action): Update.
9958 (register_solib_event_probe): Add address parameter.
9959 (solib_event_probe_at): Update.
9960 (svr4_create_probe_breakpoints): Add objfile parameter. Use
9961 get_probe_address.
9962 * stap-probe.c (struct stap_probe) <sem_addr>: Update comment.
9963 (stap_get_probe_address): New function.
9964 (stap_can_evaluate_probe_arguments, compute_probe_arg)
9965 (compile_probe_arg): Update.
9966 (stap_set_semaphore, stap_clear_semaphore): Compute semaphore's
9967 address.
9968 (handle_stap_probe): Don't relocate the probe.
9969 (stap_relocate): Remove.
9970 (stap_gen_info_probes_table_values): Update.
9971 (stap_probe_ops): Remove stap_relocate.
9972 * symfile-debug.c (debug_sym_relocate_probe): Remove.
9973 (debug_sym_probe_fns): Update.
9974 * symfile.h (struct sym_probe_fns) <sym_relocate_probe>: Remove.
9975 * symtab.c (init_sal): Use memset.
9976 * symtab.h (struct symtab_and_line) <objfile>: New field.
9977 * tracepoint.c (start_tracing, stop_tracing): Update.
9978
9979 2014-03-03 Tom Tromey <tromey@redhat.com>
9980
9981 * probe.h (parse_probes, find_probe_by_pc)
9982 (find_probes_in_objfile): Fix comments.
9983
9984 2014-03-02 Doug Evans <xdje42@gmail.com>
9985
9986 * infrun.c (handle_signal_stop): Replace test for
9987 TARGET_WAITKIND_STOPPED with an assert.
9988
9989 2014-03-02 Doug Evans <xdje42@gmail.com>
9990
9991 * guile/scm-objfile.c (ofscm_mark_objfile_smob): Fix typo in comment.
9992
9993 2014-03-02 Doug Evans <xdje42@gmail.com>
9994
9995 * guile/lib/gdb/printing.scm (append-pretty-printer!): Fix thinko.
9996
9997 2014-03-01 Mark Kettenis <kettenis@gnu.org>
9998
9999 * obsd-nat.c: Include "gdb_wait.h" instead of <sys/wait.h>.
10000
10001 2014-03-01 Mark Kettenis <kettenis@gnu.org>
10002
10003 * i386obsd-nat.c: Include "obsd-nat.h".
10004 (_initialize_i386obsd_nat): Call obsd_add_target instead of
10005 add_target.
10006 * config/i386/obsd.mh (NATDEPFILES): Add obsd-nat.o.
10007
10008 2014-03-01 Mark Kettenis <kettenis@gnu.org>
10009
10010 * i386obsd-nat.c (i386obsd_supply_pcb): Cast 'sf' to 'gdb_byte *'.
10011
10012 2014-03-01 Mark Kettenis <kettenis@gnu.org>
10013
10014 * mips64obsd-nat.c: Include "obsd-nath".
10015 (_initialize_mips64obsd_nat): Call obsd_add_target instead of
10016 add_target
10017 * config/mips/obsd64.mh (NATDEPFILES): Add obsd-nat.o.
10018
10019 2014-03-01 Mark Kettenis <kettenis@gnu.org>
10020
10021 * amd64obsd-nat.c: Include "obsd-nat,h.
10022 (_initialize_amd64obsd_nat): Call obsd_add_target instead of
10023 add_target.
10024 * config/i386/obsd64.mh (NATDEPFILES): Add obsd-nat.o.
10025
10026 2014-02-28 Siva Chandra Reddy <sivachandra@google.com>
10027
10028 * valops.c (find_oload_champ): Remove unneccesary argument METHOD.
10029 (find_overload_match): Update call to find_oload_champ.
10030 (find_oload_champ_namespace_loop): Likewise
10031
10032 2014-02-28 Mark Kettenis <kettenis@gnu.org>
10033
10034 * Makefile.in (ALLDEPFILES): Add sparc64obsd-nat.c.
10035
10036 * configure.host (sparc64-*-openbsd*): Set gdb_host to obsd64.
10037 * config/sparc/obsd64.mh: New file.
10038 * sparc64obsd-nat.c: New file.
10039
10040 * obsd-nat.h: New file.
10041 * obsd-nat.c: New file.
10042 * Makefile.in (HFILES_NO_SRCDIR): Add obsd-nat.h.
10043 (ALLDEPFILES): Add obsd-nat.c.
10044
10045 2014-02-28 Tom Tromey <tromey@redhat.com>
10046
10047 * cli-out.c (cli_ui_out_impl): Now const. Remove comment.
10048 * cli-out.h (cli_ui_out_impl): Now const.
10049 * mi/mi-out.c (mi_ui_out_impl): Now const. Remove comment.
10050 * ui-out.c (struct ui_out) <impl>: Now const.
10051 (default_ui_out_impl): Now const.
10052 (ui_out_new): Make 'impl' parameter const.
10053 * ui-out.h (ui_out_new): Update.
10054
10055 2014-02-27 Mark Kettenis <kettenis@gnu.org>
10056
10057 * solib-svr4.c (svr4_read_so_list): Initialize first_l_name to 0.
10058
10059 2014-02-27 Mark Kettenis <kettenis@gnu.org>
10060
10061 * sparc-nat.c (sparc_xfer_wcookie): Always use process ID.
10062
10063 2014-02-27 Jan Kratochvil <jan.kratochvil@redhat.com>
10064
10065 Additional PR 8882 fix.
10066 * solib-svr4.c (svr4_read_so_list): Change first to first_l_name.
10067
10068 2014-02-27 Pedro Alves <palves@redhat.com>
10069
10070 * nat/linux-waitpid.c (my_waitpid): Only block signals if WNOHANG
10071 isn't set.
10072
10073 2014-02-27 Pedro Alves <palves@redhat.com>
10074
10075 PR 12702
10076 * linux-nat.c (status_to_str): Moved to nat/linux-waitpid.c.
10077 * nat/linux-waitpid.c: Include string.h.
10078 (status_to_str): Moved here and made extern.
10079 * nat/linux-waitpid.h (status_to_str): New declaration.
10080
10081 2014-02-27 Hui Zhu <hui@codesourcery.com>
10082
10083 PR 12702
10084 * infrun.c (ptid_match): Move ...
10085 * common/ptid.c (ptid_match): ... here.
10086 * inferior.h (ptid_match): Move ...
10087 * common/ptid.h (ptid_match): ... here.
10088
10089 2014-02-27 Mark Kettenis <kettenis@gnu.org>
10090
10091 * mips64obsd-tdep.c (mips64obsd_init_abi): Call obsd_init_abi.
10092 * configure.tgt (mips64*-*-openbsd*): Add obsd-tdep.c to
10093 gdb_target_obs.
10094
10095 2014-02-27 Mark Kettenis <kettenis@gnu.org>
10096
10097 * obsd-tdep.c (obsd_auxv_parse): New function.
10098 (obsd_init_abi): Set auxv_parse.
10099
10100 * gdbarch.sh (auxv_parse): New.
10101 * gdbarch.h: Regenerated.
10102 * gdbarch.c: Regenerated.
10103 * auxv.c (target_auxv_parse): Call gdbarch_parse_auxv if provided.
10104
10105 2014-02-26 Ludovic Courtès <ludo@gnu.org>
10106
10107 * guile/scm-value.c (gdbscm_history_append_x): New function.
10108 (value_functions): Add it.
10109
10110 2014-02-27 Joel Brobecker <brobecker@adacore.com>
10111
10112 * dwarf2read.c (attr_value_as_address): New function.
10113 (dwarf2_find_base_address, read_call_site_scope): Use
10114 attr_value_as_address in place of DW_ADDR.
10115 (dwarf2_get_pc_bounds): Use attr_value_as_address to get
10116 the low and high addresses. Slight rework of the handling
10117 of the high pc being a constant form, and limit it to
10118 DWARF verson 4 or higher.
10119 (dwarf2_record_block_ranges): Likewise.
10120 (read_partial_die): Likewise.
10121 (new_symbol_full): Use attr_value_as_address in place of DW_ADDR.
10122
10123 2014-02-26 Tom Tromey <tromey@redhat.com>
10124
10125 * exec.c (exec_file_attach): Hold a reference to exec_bfd.
10126
10127 2014-02-26 Tom Tromey <tromey@redhat.com>
10128
10129 * elfread.c (elf_read_minimal_symbols): Return early if
10130 minimal symbols have already been read. Add "ei" parameter.
10131 (elf_symfile_read): Call elf_read_minimal_symbols earlier.
10132 * minsyms.c (prim_record_minimal_symbol_full): Update.
10133 * objfiles.h (struct objstats) <n_minsyms>: Move...
10134 (struct objfile_per_bfd_storage) <n_minsyms>: ... here.
10135 * symmisc.c (print_objfile_statistics): Update.
10136
10137 2014-02-26 Tom Tromey <tromey@redhat.com>
10138
10139 * elfread.c (elf_read_minimal_symbols): New function, from
10140 elf_symfile_read.
10141 (elf_symfile_read): Call it.
10142
10143 2014-02-26 Tom Tromey <tromey@redhat.com>
10144
10145 * minsyms.c (lookup_minimal_symbol, iterate_over_minimal_symbols)
10146 (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name)
10147 (lookup_minimal_symbol_solib_trampoline)
10148 (lookup_minimal_symbol_by_pc_section_1)
10149 (lookup_minimal_symbol_and_objfile): Update.
10150 (prim_record_minimal_symbol_full): Use the per-BFD obstack.
10151 Don't allocate a minimal symbol if minsyms have already been read.
10152 (build_minimal_symbol_hash_tables): Update.
10153 (install_minimal_symbols): Do nothing if minsyms already read.
10154 Use the per-BFD obstack.
10155 (terminate_minimal_symbol_table): Use the per-BFD obstack.
10156 * objfiles.c (allocate_objfile): Call
10157 terminate_minimal_symbol_table later.
10158 (have_minimal_symbols): Update.
10159 * objfiles.h (struct objfile_per_bfd_storage) <msymbols,
10160 minimal_symbol_count, msymbol_hash, msymbol_demangled_hash>:
10161 Move from struct objfile.
10162 <minsyms_read>: New field.
10163 (struct objfile) <msymbols, minimal_symbol_count,
10164 msymbol_hash, msymbol_demangled_hash>: Move.
10165 (ALL_OBJFILE_MSYMBOLS): Update.
10166 * symfile.c (read_symbols): Set minsyms_read.
10167 (reread_symbols): Update.
10168 * symmisc.c (dump_objfile, dump_msymbols): Update.
10169
10170 2014-02-26 Tom Tromey <tromey@redhat.com>
10171
10172 * minsyms.c (msymbols_sort): Remove.
10173 * minsyms.h (msymbols_sort): Remove.
10174 * objfiles.c (objfile_relocate1): Don't relocate minsyms.
10175 * symtab.h (MSYMBOL_VALUE_ADDRESS): Use objfile offsets.
10176 * elfread.c (elf_symtab_read): Don't add section offsets.
10177 * xcoffread.c (record_minimal_symbol): Don't add section offset
10178 to minimal symbol address.
10179 * somread.c (text_offset, data_offset): Remove.
10180 (som_symtab_read): Don't add section offsets to minimal symbol
10181 addresses.
10182 * coff-pe-read.c (add_pe_forwarded_sym, read_pe_exported_syms):
10183 Don't add section offsets to minimal symbols.
10184 * coffread.c (coff_symtab_read): Don't add section offsets
10185 to minimal symbol addresses.
10186 * machoread.c (macho_symtab_add_minsym): Don't add section offset
10187 to minimal symbol addresses.
10188 * mipsread.c (read_alphacoff_dynamic_symtab): Don't add
10189 section offset to minimal symbol addresses.
10190 * mdebugread.c (parse_partial_symbols): Don't add section
10191 offset to minimal symbol addresses.
10192 * dbxread.c (read_dbx_dynamic_symtab): Don't add section
10193 offset to minimal symbol addresses.
10194
10195 2014-02-26 Tom Tromey <tromey@redhat.com>
10196
10197 * ada-lang.c (ada_main_name): Update.
10198 (ada_add_standard_exceptions): Update.
10199 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Update.
10200 * aix-thread.c (pdc_symbol_addrs, pd_enable): Update.
10201 * arm-tdep.c (skip_prologue_function, arm_skip_stub): Update.
10202 * auxv.c (ld_so_xfer_auxv): Update.
10203 * avr-tdep.c (avr_scan_prologue): Update.
10204 * ax-gdb.c (gen_var_ref): Update.
10205 * blockframe.c (get_pc_function_start)
10206 (find_pc_partial_function_gnu_ifunc): Update.
10207 * breakpoint.c (create_overlay_event_breakpoint)
10208 (create_longjmp_master_breakpoint)
10209 (create_std_terminate_master_breakpoint)
10210 (create_exception_master_breakpoint): Update.
10211 * bsd-uthread.c (bsd_uthread_lookup_address): Update.
10212 * c-valprint.c (c_val_print): Update.
10213 * coff-pe-read.c (add_pe_forwarded_sym): Update.
10214 * common/agent.c (agent_look_up_symbols): Update.
10215 * dbxread.c (find_stab_function_addr, end_psymtab): Update.
10216 * dwarf2loc.c (call_site_to_target_addr): Update.
10217 * dwarf2read.c (dw2_find_pc_sect_symtab): Update.
10218 * elfread.c (elf_gnu_ifunc_record_cache)
10219 (elf_gnu_ifunc_resolve_by_got): Update.
10220 * findvar.c (default_read_var_value): Update.
10221 * frame.c (inside_main_func): Update.
10222 * frv-tdep.c (frv_frame_this_id): Update.
10223 * glibc-tdep.c (glibc_skip_solib_resolver): Update.
10224 * gnu-v3-abi.c (gnuv3_get_typeid, gnuv3_skip_trampoline):
10225 Update.
10226 * hppa-hpux-tdep.c (hppa64_hpux_search_dummy_call_sequence)
10227 (hppa_hpux_find_dummy_bpaddr): Update.
10228 * hppa-tdep.c (hppa_symbol_address): Update.
10229 * infcmd.c (until_next_command): Update.
10230 * jit.c (jit_read_descriptor, jit_breakpoint_re_set_internal):
10231 Update.
10232 * linespec.c (minsym_found, add_minsym): Update.
10233 * linux-nat.c (get_signo): Update.
10234 * linux-thread-db.c (inferior_has_bug): Update.
10235 * m32c-tdep.c (m32c_return_value)
10236 (m32c_m16c_address_to_pointer): Update.
10237 * m32r-tdep.c (m32r_frame_this_id): Update.
10238 * m68hc11-tdep.c (m68hc11_get_register_info): Update.
10239 * machoread.c (macho_resolve_oso_sym_with_minsym): Update.
10240 * maint.c (maintenance_translate_address): Update.
10241 * minsyms.c (lookup_minimal_symbol_by_pc_name): Update.
10242 (frob_address): New function.
10243 (lookup_minimal_symbol_by_pc_section_1): Use raw addresses,
10244 frob_address. Rename parameter to "pc_in".
10245 (compare_minimal_symbols, compact_minimal_symbols): Use raw
10246 addresses.
10247 (find_solib_trampoline_target, minimal_symbol_upper_bound):
10248 Update.
10249 * mips-linux-tdep.c (mips_linux_skip_resolver): Update.
10250 * mips-tdep.c (mips_skip_pic_trampoline_code): Update.
10251 * objc-lang.c (find_objc_msgsend): Update.
10252 * objfiles.c (objfile_relocate1): Update.
10253 * obsd-tdep.c (obsd_skip_solib_resolver): Update.
10254 * p-valprint.c (pascal_val_print): Update.
10255 * parse.c (write_exp_msymbol): Update.
10256 * ppc-linux-tdep.c (ppc_linux_spe_context_lookup)
10257 (ppc_elfv2_skip_entrypoint): Update.
10258 * ppc-sysv-tdep.c (convert_code_addr_to_desc_addr): Update.
10259 * printcmd.c (build_address_symbolic, msym_info)
10260 (address_info): Update.
10261 * proc-service.c (ps_pglobal_lookup): Update.
10262 * psymtab.c (find_pc_sect_psymtab_closer)
10263 (find_pc_sect_psymtab, find_pc_sect_symtab_from_partial):
10264 Change msymbol parameter to bound_minimal_symbol.
10265 * ravenscar-thread.c (get_running_thread_id): Update.
10266 * remote.c (remote_check_symbols): Update.
10267 * sh64-tdep.c (sh64_elf_make_msymbol_special): Use raw
10268 address.
10269 * sol2-tdep.c (sol2_skip_solib_resolver): Update.
10270 * solib-dsbt.c (lm_base): Update.
10271 * solib-frv.c (lm_base, main_got): Update.
10272 * solib-irix.c (locate_base): Update.
10273 * solib-som.c (som_solib_create_inferior_hook)
10274 (link_map_start): Update.
10275 * solib-spu.c (spu_enable_break, ocl_enable_break): Update.
10276 * solib-svr4.c (elf_locate_base, enable_break): Update.
10277 * spu-tdep.c (spu_get_overlay_table, spu_catch_start)
10278 (flush_ea_cache): Update.
10279 * stabsread.c (define_symbol, scan_file_globals): Update.
10280 * stack.c (find_frame_funname): Update.
10281 * symfile-debug.c (debug_qf_expand_symtabs_matching)
10282 (debug_qf_find_pc_sect_symtab): Update.
10283 * symfile.c (simple_read_overlay_table)
10284 (simple_overlay_update): Update.
10285 * symfile.h (struct quick_symbol_functions)
10286 <find_pc_sect_symtab>: Change type of msymbol to
10287 bound_minimal_symbol.
10288 * symmisc.c (dump_msymbols): Update.
10289 * symtab.c (find_pc_sect_symtab_via_partial)
10290 (find_pc_sect_psymtab, find_pc_sect_line, skip_prologue_sal)
10291 (search_symbols, print_msymbol_info): Update.
10292 * symtab.h (MSYMBOL_VALUE_RAW_ADDRESS): New macro.
10293 (MSYMBOL_VALUE_ADDRESS): Redefine.
10294 (BMSYMBOL_VALUE_ADDRESS): New macro.
10295 * tracepoint.c (scope_info): Update.
10296 * tui/tui-disasm.c (tui_find_disassembly_address)
10297 (tui_get_begin_asm_address): Update.
10298 * valops.c (find_function_in_inferior): Update.
10299 * value.c (value_static_field, value_fn_field): Update.
10300
10301 2014-02-26 Tom Tromey <tromey@redhat.com>
10302
10303 * ada-lang.c (ada_update_initial_language): Update.
10304 (ada_main_name, ada_has_this_exception_support): Update.
10305 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Update.
10306 * aix-thread.c (pdc_symbol_addrs, pd_enable): Update.
10307 * arm-tdep.c (arm_skip_stub): Update.
10308 * auxv.c (ld_so_xfer_auxv): Update.
10309 * avr-tdep.c (avr_scan_prologue): Update.
10310 * ax-gdb.c (gen_var_ref): Update.
10311 * breakpoint.c (struct breakpoint_objfile_data)
10312 <overlay_msym, longjmp_msym, terminate_msym, exception_msym>: Change
10313 type to bound_minimal_symbol.
10314 (create_overlay_event_breakpoint)
10315 (create_longjmp_master_breakpoint)
10316 (create_std_terminate_master_breakpoint)
10317 (create_exception_master_breakpoint): Update.
10318 * bsd-uthread.c (bsd_uthread_lookup_address): Update.
10319 * c-exp.y (classify_name): Update.
10320 * coffread.c (coff_symfile_read): Update.
10321 * common/agent.c (agent_look_up_symbols): Update.
10322 * d-lang.c (d_main_name): Update.
10323 * dbxread.c (find_stab_function_addr, end_psymtab): Update.
10324 * dec-thread.c (enable_dec_thread): Update.
10325 * dwarf2loc.c (call_site_to_target_addr): Update.
10326 * elfread.c (elf_gnu_ifunc_resolve_by_got): Update.
10327 * eval.c (evaluate_subexp_standard): Update.
10328 * findvar.c (struct minsym_lookup_data) <result>: Change type
10329 to bound_minimal_symbol.
10330 <objfile>: Remove.
10331 (minsym_lookup_iterator_cb, default_read_var_value): Update.
10332 * frame.c (inside_main_func): Update.
10333 * frv-tdep.c (frv_frame_this_id): Update.
10334 * gcore.c (call_target_sbrk): Update.
10335 * glibc-tdep.c (glibc_skip_solib_resolver): Update.
10336 * gnu-v3-abi.c (gnuv3_get_typeid, gnuv3_skip_trampoline):
10337 Update.
10338 * go-lang.c (go_main_name): Update.
10339 * hppa-hpux-tdep.c (hppa_hpux_skip_trampoline_code)
10340 (hppa_hpux_find_import_stub_for_addr): Update.
10341 * hppa-tdep.c (hppa_extract_17, hppa_lookup_stub_minimal_symbol):
10342 Update. Change return type.
10343 * hppa-tdep.h (hppa_lookup_stub_minimal_symbol): Change return
10344 type.
10345 * jit.c (jit_breakpoint_re_set_internal): Update.
10346 * linux-fork.c (inferior_call_waitpid, checkpoint_command):
10347 Update.
10348 * linux-nat.c (get_signo): Update.
10349 * linux-thread-db.c (inferior_has_bug): Update
10350 * m32c-tdep.c (m32c_return_value)
10351 (m32c_m16c_address_to_pointer): Update.
10352 * m32r-tdep.c (m32r_frame_this_id): Update.
10353 * m68hc11-tdep.c (m68hc11_get_register_info): Update.
10354 * machoread.c (macho_resolve_oso_sym_with_minsym): Update.
10355 * minsyms.c (lookup_minimal_symbol_internal): Rename to
10356 lookup_minimal_symbol. Change return type.
10357 (lookup_minimal_symbol): Remove.
10358 (lookup_bound_minimal_symbol): Update.
10359 (lookup_minimal_symbol_text): Change return type.
10360 (lookup_minimal_symbol_solib_trampoline): Change return type.
10361 * minsyms.h (lookup_minimal_symbol, lookup_minimal_symbol_text)
10362 (lookup_minimal_symbol_solib_trampoline): Change return type.
10363 * mips-linux-tdep.c (mips_linux_skip_resolver): Update.
10364 * objc-lang.c (lookup_objc_class, lookup_child_selector)
10365 (value_nsstring, find_imps): Update.
10366 * obsd-tdep.c (obsd_skip_solib_resolver): Update.
10367 * p-lang.c (pascal_main_name): Update.
10368 * ppc-linux-tdep.c (ppc_linux_spe_context_lookup): Update.
10369 * ppc-sysv-tdep.c (convert_code_addr_to_desc_addr): Update.
10370 * proc-service.c (ps_pglobal_lookup): Update.
10371 * ravenscar-thread.c (get_running_thread_msymbol): Change
10372 return type.
10373 (has_ravenscar_runtime, get_running_thread_id): Update.
10374 * remote.c (remote_check_symbols): Update.
10375 * sol-thread.c (ps_pglobal_lookup): Update.
10376 * sol2-tdep.c (sol2_skip_solib_resolver): Update.
10377 * solib-dsbt.c (lm_base): Update.
10378 * solib-frv.c (lm_base, frv_relocate_section_addresses):
10379 Update.
10380 * solib-irix.c (locate_base): Update.
10381 * solib-som.c (som_solib_create_inferior_hook)
10382 (som_solib_desire_dynamic_linker_symbols, link_map_start):
10383 Update.
10384 * solib-spu.c (spu_enable_break): Update.
10385 * solib-svr4.c (elf_locate_base, enable_break): Update.
10386 * spu-tdep.c (spu_get_overlay_table, spu_catch_start)
10387 (flush_ea_cache): Update.
10388 * stabsread.c (define_symbol): Update.
10389 * symfile.c (simple_read_overlay_table): Update.
10390 * symtab.c (find_pc_sect_line): Update.
10391 * tracepoint.c (scope_info): Update.
10392 * tui-disasm.c (tui_get_begin_asm_address): Update.
10393 * value.c (value_static_field): Update.
10394
10395 2014-02-26 Tom Tromey <tromey@redhat.com>
10396
10397 * minsyms.c (prim_record_minimal_symbol_full): Use
10398 SET_MSYMBOL_VALUE_ADDRESS.
10399 * objfiles.c (objfile_relocate1): Use SET_MSYMBOL_VALUE_ADDRESS.
10400 * sh64-tdep.c (sh64_elf_make_msymbol_special): Use
10401 SET_MSYMBOL_VALUE_ADDRESS.
10402 * symtab.h (MSYMBOL_VALUE_ADDRESS): Expand to an rvalue.
10403 (SET_MSYMBOL_VALUE_ADDRESS): New macro.
10404
10405 2014-02-26 Tom Tromey <tromey@redhat.com>
10406
10407 * symtab.h (struct minimal_symbol) <mginfo>: Rename from ginfo.
10408 (MSYMBOL_VALUE, MSYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_BYTES)
10409 (MSYMBOL_BLOCK_VALUE, MSYMBOL_VALUE_CHAIN, MSYMBOL_LANGUAGE)
10410 (MSYMBOL_SECTION, MSYMBOL_OBJ_SECTION, MSYMBOL_NATURAL_NAME)
10411 (MSYMBOL_LINKAGE_NAME, MSYMBOL_PRINT_NAME, MSYMBOL_DEMANGLED_NAME)
10412 (MSYMBOL_SET_LANGUAGE, MSYMBOL_SEARCH_NAME)
10413 (MSYMBOL_MATCHES_SEARCH_NAME, MSYMBOL_SET_NAMES): New macros.
10414 * ada-lang.c (ada_main_name): Update.
10415 (ada_lookup_simple_minsym): Update.
10416 (ada_make_symbol_completion_list): Update.
10417 (ada_add_standard_exceptions): Update.
10418 * ada-tasks.c (read_atcb, ada_tasks_inferior_data_sniffer): Update.
10419 * aix-thread.c (pdc_symbol_addrs, pd_enable): Update.
10420 * amd64-windows-tdep.c (amd64_skip_main_prologue): Update.
10421 * arm-tdep.c (skip_prologue_function): Update.
10422 (arm_skip_stack_protector, arm_skip_stub): Update.
10423 * arm-wince-tdep.c (arm_pe_skip_trampoline_code): Update.
10424 (arm_wince_skip_main_prologue): Update.
10425 * auxv.c (ld_so_xfer_auxv): Update.
10426 * avr-tdep.c (avr_scan_prologue): Update.
10427 * ax-gdb.c (gen_var_ref): Update.
10428 * block.c (call_site_for_pc): Update.
10429 * blockframe.c (get_pc_function_start): Update.
10430 (find_pc_partial_function_gnu_ifunc): Update.
10431 * breakpoint.c (create_overlay_event_breakpoint): Update.
10432 (create_longjmp_master_breakpoint): Update.
10433 (create_std_terminate_master_breakpoint): Update.
10434 (create_exception_master_breakpoint): Update.
10435 (resolve_sal_pc): Update.
10436 * bsd-uthread.c (bsd_uthread_lookup_address): Update.
10437 * btrace.c (ftrace_print_function_name, ftrace_function_switched):
10438 Update.
10439 * c-valprint.c (c_val_print): Update.
10440 * coff-pe-read.c (add_pe_forwarded_sym): Update.
10441 * coffread.c (coff_symfile_read): Update.
10442 * common/agent.c (agent_look_up_symbols): Update.
10443 * dbxread.c (find_stab_function_addr): Update.
10444 (end_psymtab): Update.
10445 * dwarf2loc.c (call_site_to_target_addr): Update.
10446 (func_verify_no_selftailcall): Update.
10447 (tailcall_dump): Update.
10448 (call_site_find_chain_1): Update.
10449 (dwarf_expr_reg_to_entry_parameter): Update.
10450 * elfread.c (elf_gnu_ifunc_record_cache): Update.
10451 (elf_gnu_ifunc_resolve_by_got): Update.
10452 * f-valprint.c (info_common_command): Update.
10453 * findvar.c (read_var_value): Update.
10454 * frame.c (get_prev_frame_1): Update.
10455 (inside_main_func): Update.
10456 * frv-tdep.c (frv_skip_main_prologue): Update.
10457 (frv_frame_this_id): Update.
10458 * glibc-tdep.c (glibc_skip_solib_resolver): Update.
10459 * gnu-v2-abi.c (gnuv2_value_rtti_type): Update.
10460 * gnu-v3-abi.c (gnuv3_rtti_type): Update.
10461 (gnuv3_skip_trampoline): Update.
10462 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline): Update.
10463 (hppa64_hpux_in_solib_call_trampoline): Update.
10464 (hppa_hpux_skip_trampoline_code): Update.
10465 (hppa64_hpux_search_dummy_call_sequence): Update.
10466 (hppa_hpux_find_import_stub_for_addr): Update.
10467 (hppa_hpux_find_dummy_bpaddr): Update.
10468 * hppa-tdep.c (hppa_symbol_address)
10469 (hppa_lookup_stub_minimal_symbol): Update.
10470 * i386-tdep.c (i386_skip_main_prologue): Update.
10471 (i386_pe_skip_trampoline_code): Update.
10472 * ia64-tdep.c (ia64_convert_from_func_ptr_addr): Update.
10473 * infcall.c (get_function_name): Update.
10474 * infcmd.c (until_next_command): Update.
10475 * jit.c (jit_breakpoint_re_set_internal): Update.
10476 (jit_inferior_init): Update.
10477 * linespec.c (minsym_found): Update.
10478 (add_minsym): Update.
10479 * linux-fork.c (info_checkpoints_command): Update.
10480 * linux-nat.c (get_signo): Update.
10481 * linux-thread-db.c (inferior_has_bug): Update.
10482 * m32c-tdep.c (m32c_return_value): Update.
10483 (m32c_m16c_address_to_pointer): Update.
10484 (m32c_m16c_pointer_to_address): Update.
10485 * m32r-tdep.c (m32r_frame_this_id): Update.
10486 * m68hc11-tdep.c (m68hc11_get_register_info): Update.
10487 * machoread.c (macho_resolve_oso_sym_with_minsym): Update.
10488 * maint.c (maintenance_translate_address): Update.
10489 * minsyms.c (add_minsym_to_hash_table): Update.
10490 (add_minsym_to_demangled_hash_table): Update.
10491 (msymbol_objfile): Update.
10492 (lookup_minimal_symbol): Update.
10493 (iterate_over_minimal_symbols): Update.
10494 (lookup_minimal_symbol_text): Update.
10495 (lookup_minimal_symbol_by_pc_name): Update.
10496 (lookup_minimal_symbol_solib_trampoline): Update.
10497 (lookup_minimal_symbol_by_pc_section_1): Update.
10498 (lookup_minimal_symbol_and_objfile): Update.
10499 (prim_record_minimal_symbol_full): Update.
10500 (compare_minimal_symbols): Update.
10501 (compact_minimal_symbols): Update.
10502 (build_minimal_symbol_hash_tables): Update.
10503 (install_minimal_symbols): Update.
10504 (terminate_minimal_symbol_table): Update.
10505 (find_solib_trampoline_target): Update.
10506 (minimal_symbol_upper_bound): Update.
10507 * mips-linux-tdep.c (mips_linux_skip_resolver): Update.
10508 * mips-tdep.c (mips_stub_frame_sniffer): Update.
10509 (mips_skip_pic_trampoline_code): Update.
10510 * msp430-tdep.c (msp430_skip_trampoline_code): Update.
10511 * objc-lang.c (selectors_info): Update.
10512 (classes_info): Update.
10513 (find_methods): Update.
10514 (find_imps): Update.
10515 (find_objc_msgsend): Update.
10516 * objfiles.c (objfile_relocate1): Update.
10517 * objfiles.h (ALL_OBJFILE_MSYMBOLS): Update.
10518 * obsd-tdep.c (obsd_skip_solib_resolver): Update.
10519 * p-valprint.c (pascal_val_print): Update.
10520 * parse.c (write_exp_msymbol): Update.
10521 * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code)
10522 (ppc_linux_spe_context_lookup, ppc_elfv2_skip_entrypoint): Update.
10523 * ppc-sysv-tdep.c (convert_code_addr_to_desc_addr): Update.
10524 * printcmd.c (build_address_symbolic): Update.
10525 (sym_info): Update.
10526 (address_info): Update.
10527 * proc-service.c (ps_pglobal_lookup): Update.
10528 * psymtab.c (find_pc_sect_psymtab_closer): Update.
10529 (find_pc_sect_psymtab): Update.
10530 * python/py-framefilter.c (py_print_frame): Update.
10531 * ravenscar-thread.c (get_running_thread_id): Update.
10532 * record-btrace.c (btrace_call_history, btrace_get_bfun_name):
10533 Update.
10534 * remote.c (remote_check_symbols): Update.
10535 * rs6000-tdep.c (rs6000_skip_main_prologue): Update.
10536 (rs6000_skip_trampoline_code): Update.
10537 * sh64-tdep.c (sh64_elf_make_msymbol_special): Update.
10538 * sol2-tdep.c (sol2_skip_solib_resolver): Update.
10539 * solib-dsbt.c (lm_base): Update.
10540 * solib-frv.c (lm_base): Update.
10541 (main_got): Update.
10542 * solib-irix.c (locate_base): Update.
10543 * solib-som.c (som_solib_create_inferior_hook): Update.
10544 (som_solib_desire_dynamic_linker_symbols): Update.
10545 (link_map_start): Update.
10546 * solib-spu.c (spu_enable_break): Update.
10547 (ocl_enable_break): Update.
10548 * solib-svr4.c (elf_locate_base): Update.
10549 (enable_break): Update.
10550 * spu-tdep.c (spu_get_overlay_table): Update.
10551 (spu_catch_start): Update.
10552 (flush_ea_cache): Update.
10553 * stabsread.c (define_symbol): Update.
10554 (scan_file_globals): Update.
10555 * stack.c (find_frame_funname): Update.
10556 (frame_info): Update.
10557 * symfile.c (simple_read_overlay_table): Update.
10558 (simple_overlay_update): Update.
10559 * symmisc.c (dump_msymbols): Update.
10560 * symtab.c (fixup_section): Update.
10561 (find_pc_sect_line): Update.
10562 (skip_prologue_sal): Update.
10563 (search_symbols): Update.
10564 (print_msymbol_info): Update.
10565 (rbreak_command): Update.
10566 (MCOMPLETION_LIST_ADD_SYMBOL): New macro.
10567 (completion_list_objc_symbol): Update.
10568 (default_make_symbol_completion_list_break_on): Update.
10569 * tracepoint.c (scope_info): Update.
10570 * tui/tui-disasm.c (tui_find_disassembly_address): Update.
10571 (tui_get_begin_asm_address): Update.
10572 * valops.c (find_function_in_inferior): Update.
10573 * value.c (value_static_field): Update.
10574 (value_fn_field): Update.
10575
10576 2014-02-26 Tom Tromey <tromey@redhat.com>
10577
10578 * blockframe.c (find_pc_partial_function_gnu_ifunc): Use
10579 bound minimal symbols. Move code that knows about minsym
10580 table layout...
10581 * minsyms.c (minimal_symbol_upper_bound): ... here. New
10582 function.
10583 * minsyms.h (minimal_symbol_upper_bound): Declare.
10584 * objc-lang.c (find_objc_msgsend): Use bound minimal symbols,
10585 minimal_symbol_upper_bound.
10586
10587 2014-02-27 Joel Brobecker <brobecker@adacore.com>
10588
10589 * python/lib/gdb/printing.py (RegexpCollectionPrettyPrinter):
10590 Use the type's name if its basic type does not have a tag.
10591
10592 2014-02-27 Joel Brobecker <brobecker@adacore.com>
10593
10594 * dwarf2read.c (read_subrange_type): Add comment.
10595
10596 2014-02-27 Joel Brobecker <brobecker@adacore.com>
10597
10598 * dwarf2read.c (update_enumeration_type_from_children): New
10599 function, mostly extracted from process_structure_scope.
10600 (read_enumeration_type): Call update_enumeration_type_from_children.
10601 (process_enumeration_scope): Do not set THIS_TYPE's flag_unsigned
10602 and flag_flag_enum fields.
10603
10604 2014-02-26 Pedro Alves <palves@redhat.com>
10605
10606 * bsd-uthread.c (bsd_uthread_xfer_partial): Delete function.
10607 (bsd_uthread_target): Don't install bsd_uthread_xfer_partial as
10608 to_xfer_partial method.
10609
10610 2014-02-26 Pedro Alves <palves@redhat.com>
10611
10612 * target.c (complete_target_initialization): Don't install
10613 default_xfer_partial as to_xfer_partial hook.
10614 (nomemory): Delete.
10615 (update_current_target): Don't INHERIT nor de_fault
10616 deprecated_xfer_memory. Delete de_fault macro.
10617 (default_xfer_partial, deprecated_debug_xfer_memory): Delete.
10618 (setup_target_debug): Don't install a deprecated_xfer_memory hook.
10619 * target.h (struct target_ops) <deprecated_xfer_memory>: Delete
10620 field.
10621
10622 2014-02-26 Pedro Alves <palves@redhat.com>
10623
10624 * go32-nat.c (my_write_child): New function.
10625 (go32_xfer_memory): Rewrite as to_xfer_partial helper.
10626 (go32_xfer_partial): New function.
10627 (init_go32_ops): Don't install a deprecated_xfer_memory hook.
10628 Instead install a to_xfer_partial hook.
10629
10630 2014-02-26 Pedro Alves <palves@redhat.com>
10631
10632 * nto-procfs.c (procfs_xfer_memory): Adjust interface as a
10633 to_xfer_partial helper. Rewrite.
10634 (procfs_xfer_partial): New function.
10635 (init_procfs_ops): Don't install a deprecated_xfer_memory hook.
10636 Install a to_xfer_partial hook.
10637
10638 2014-02-26 Pedro Alves <palves@redhat.com>
10639
10640 * remote-m32r-sdi.c (send_data): Constify 'buf' parameter.
10641 (m32r_xfer_memory): Adjust as a to_xfer_partial helper.
10642 (m32r_xfer_partial): New function.
10643 (init_m32r_ops): Don't install a deprecated_xfer_memory hook.
10644 Install a to_xfer_partial hook.
10645
10646 2014-02-26 Pedro Alves <palves@redhat.com>
10647
10648 * remote-mips.c (mips_xfer_memory): Adjust as to_xfer_partial
10649 helper.
10650 (mips_xfer_partial): New function.
10651 (_initialize_remote_mips): Don't install a deprecated_xfer_memory
10652 hook. Install a to_xfer_partial hook.
10653
10654 2014-02-26 Joel Brobecker <brobecker@adacore.com>
10655
10656 * gdbtypes.h (create_array_type_with_stride): Add declaration.
10657 * gdbtypes.c (create_array_type_with_stride): New function,
10658 renaming create_array_type, but with an added parameter
10659 called "bit_stride".
10660 (create_array_type): Re-implement using
10661 create_array_type_with_stride.
10662 * dwarf2read.c (read_array_type): Add support for DW_AT_byte_stride
10663 and DW_AT_bit_stride attributes.
10664
10665 2014-02-26 Pedro Alves <palves@redhat.com>
10666
10667 * breakpoint.c (bpstat_check_breakpoint_conditions): Handle
10668 task-specific breakpoints.
10669
10670 2014-02-25 Pedro Alves <palves@redhat.com>
10671
10672 * ia64-linux-nat.c (ia64_linux_xfer_partial): Reimplement
10673 handling of object == TARGET_OBJECT_UNWIND_TABLE.
10674
10675 2014-02-25 Stan Shebs <stan@codesourcery.com>
10676
10677 * defs.h: Annotate comments for Doxygen.
10678
10679 2014-02-25 Tom Tromey <tromey@redhat.com>
10680
10681 * target.h (target_ignore): Don't declare.
10682 * target.c (target_ignore): Remove.
10683
10684 2014-02-25 Jan Kratochvil <jan.kratochvil@redhat.com>
10685
10686 PR gdb/16626
10687 * auto-load.c (auto_load_objfile_script_1): Change filename to
10688 debugfile.
10689
10690 2014-02-25 Joel Brobecker <brobecker@adacore.com>
10691
10692 * ia64-linux-nat.c (ia64_linux_xfer_partial): Add function
10693 documentation. Adjust prototype to match the target_ops
10694 to_xfer_partial method. Adjust implementation accordingly.
10695
10696 2014-02-25 Hui Zhu <hui@codesourcery.com>
10697
10698 * target.h (target_ops): Fix TARGET_DEFAULT_RETURN of
10699 to_traceframe_info.
10700
10701 2014-02-25 Kevin Buettner <kevinb@redhat.com>
10702
10703 * rl78-tdep.c (RL78_BANK0_RP0_PTR_REGNUM, RL78_BANK0_RP1_PTR_REGNUM)
10704 (RL78_BANK0_RP2_PTR_REGNUM, RL78_BANK0_RP3_PTR_REGNUM)
10705 (RL78_BANK1_RP0_PTR_REGNUM, RL78_BANK1_RP1_PTR_REGNUM)
10706 (RL78_BANK1_RP2_PTR_REGNUM, RL78_BANK1_RP3_PTR_REGNUM)
10707 (RL78_BANK2_RP0_PTR_REGNUM, RL78_BANK2_RP1_PTR_REGNUM)
10708 (RL78_BANK2_RP2_PTR_REGNUM, RL78_BANK2_RP3_PTR_REGNUM)
10709 (RL78_BANK3_RP0_PTR_REGNUM, RL78_BANK3_RP1_PTR_REGNUM)
10710 (RL78_BANK3_RP2_PTR_REGNUM, RL78_BANK3_RP3_PTR_REGNUM):
10711 New constants.
10712 (rl78_register_type): Use a data pointer type for SP and
10713 new pseudo registers mentioned above. Use a 16 bit integer
10714 type for all other register pairs.
10715 (rl78_register_name, rl78_g10_register_name): Update for
10716 new pseudo registers.
10717 (rl78_pseudo_register_read): Likewise.
10718 (rl78_pseudo_register_write): Likewise.
10719 (rl78_dwarf_reg_to_regnum): Return register numbers representing
10720 to the newly added pseudo registers.
10721
10722 2014-02-24 Doug Evans <dje@google.com>
10723
10724 * value.c (record_latest_value): Fix comment.
10725 * printcmd.c (print_command_1): Remove code to handle -1 return from
10726 record_latest_value.
10727
10728 2014-02-24 Pedro Alves <palves@redhat.com>
10729
10730 * procfs.c (procfs_target): Don't install procfs_xfer_memory as
10731 deprecated_xfer_memory hook.
10732 (procfs_xfer_partial): Call procfs_xfer_memory instead
10733 of the deprecated_xfer_memory target hook.
10734 (procfs_xfer_memory): Adjust interface as a to_xfer_partial
10735 helper.
10736
10737 2014-02-24 Yuanhui Zhang <asmwarrior@gmail.com>
10738
10739 * windows-nat.c (windows_xfer_shared_libraries): Return
10740 TARGET_XFER_EOF if LEN is zero to fix an assert failure when
10741 requested object is TARGET_OBJECT_LIBRARIES.
10742
10743 2014-02-24 Yao Qi <yao@codesourcery.com>
10744
10745 * target.h (enum target_xfer_status)
10746 <TARGET_XFER_E_UNAVAILABLE>: Rename it to ...
10747 <TARGET_XFER_UNAVAILABLE>: ... it with setting value 2
10748 explicitly. New.
10749 * corefile.c (memory_error_message): User updated.
10750 * exec.c (section_table_read_available_memory): Likewise.
10751 * record-btrace.c (record_btrace_xfer_partial): Likewise.
10752 * target.c (target_xfer_status_to_string): Likewise.
10753 (raw_memory_xfer_partial): Likewise.
10754 (memory_xfer_partial_1, target_xfer_partial): Likewise.
10755 * valops.c (read_value_memory): Likewise.
10756 * exec.h: Update comments.
10757
10758 2014-02-24 Yao Qi <yao@codesourcery.com>
10759
10760 * target.c (target_xfer_status_to_string): Rename argument err
10761 to status.
10762 * target.h (target_xfer_status_to_string): Update declaration.
10763 Replace target_xfer_error_to_string with
10764 target_xfer_status_to_string in comment.
10765
10766 2014-02-24 Yao Qi <yao@codesourcery.com>
10767
10768 * mips-linux-nat.c (super_close): Update its type.
10769 (mips_linux_close): Pass 'self' to super_close.
10770
10771 2014-02-24 Yao Qi <yao@codesourcery.com>
10772
10773 * target.h (TARGET_XFER_STATUS_ERROR_P): Remove.
10774 * corefile.c (read_memory): Adjusted.
10775 * target.c (target_write_with_progress): Adjusted.
10776
10777 2014-02-23 Yao Qi <yao@codesourcery.com>
10778
10779 Revert two patches:
10780
10781 2013-10-25 Yao Qi <yao@codesourcery.com>
10782
10783 * remote.c (remote_traceframe_info): Return early if
10784 traceframe is not selected.
10785
10786 2013-07-19 Yao Qi <yao@codesourcery.com>
10787
10788 * target.c (update_current_target): Change the default action
10789 of 'to_traceframe_info' from tcomplain to return_zero.
10790 * target.h (struct target_ops) <to_traceframe_info>: Add more
10791 comments.
10792
10793 2014-02-23 Yao Qi <yao@codesourcery.com>
10794
10795 * valops.c (read_value_memory): Rewrite it. Call
10796 target_xfer_partial in a loop.
10797 * exec.h (section_table_available_memory): Remove declaration.
10798 Move comments to ...
10799 * exec.c (section_table_available_memory): ... here. Make it
10800 static.
10801
10802 2014-02-23 Yao Qi <yao@codesourcery.com>
10803
10804 * exec.c (section_table_read_available_memory): New function.
10805 * exec.h (section_table_read_available_memory): Declare.
10806 * ctf.c (ctf_xfer_partial): Call
10807 section_table_read_available_memory.
10808 * tracefile-tfile.c (tfile_xfer_partial): Likewise.
10809
10810 2014-02-23 Yao Qi <yao@codesourcery.com>
10811
10812 * ctf.c (ctf_xfer_partial): Move code to ...
10813 * exec.c (exec_read_partial_read_only): ... it. New function.
10814 * tracefile-tfile.c (tfile_xfer_partial): Likewise.
10815 * tracefile.c: Include "exec.h".
10816 * exec.h (exec_read_partial_read_only): Declare.
10817
10818 2014-02-23 Yao Qi <yao@codesourcery.com>
10819
10820 * tracefile-tfile.c (tfile_has_all_memory): Remove.
10821 (tfile_has_memory): Remove.
10822 (init_tfile_ops): Don't set fields to_has_all_memory and
10823 to_has_memory of tfile_ops.
10824 * tracefile.c (tracefile_has_all_memory): New function.
10825 (tracefile_has_memory): New function.
10826 (init_tracefile_ops): Initialize fields to_has_all_memory and
10827 to_has_memory of 'ops'.
10828
10829 2014-02-23 Yao Qi <yao@codesourcery.com>
10830
10831 * ctf.c (ctf_has_stack, ctf_has_registers): Remove.
10832 (ctf_thread_alive, ctf_get_trace_status): Remove.
10833 (init_ctf_ops): Don't set some fields of ctf_ops. Call
10834 init_tracefile_ops.
10835 * tracefile-tfile.c (tfile_get_trace_status): Remove.
10836 (tfile_has_stack, tfile_has_registers): Remove.
10837 (tfile_thread_alive): Remove.
10838 (init_tfile_ops): Don't set some fields of tfile_ops. Call
10839 init_tracefile_ops.
10840 * tracefile.c (tracefile_has_stack): New function.
10841 (tracefile_has_registers): New function.
10842 (tracefile_thread_alive): New function.
10843 (tracefile_get_trace_status): New function.
10844 (init_tracefile_ops): New function.
10845 * tracefile.h (init_tracefile_ops): Declare.
10846
10847 2014-02-23 Yao Qi <yao@codesourcery.com>
10848
10849 * tracepoint.c (TFILE_PID): Move it to tracefile-tfile.c.
10850 (O_LARGEFILE): Likewise.
10851 (tfile_ops): Likewise.
10852 (TRACE_HEADER_SIZE): Likewise.
10853 (trace_fd, trace_frames_offset, cur_offset): Likewise.
10854 (cur_data_size): Likewise.
10855 (tfile_read, tfile_open, tfile_interp_line): Likewise.
10856 (tfile_close, tfile_files_info): Likewise.
10857 (tfile_get_trace_status): Likewise.
10858 (tfile_get_tracepoint_status): Likewise.
10859 (tfile_get_traceframe_address): Likewise.
10860 (tfile_trace_find, match_blocktype): Likewise.
10861 (traceframe_walk_blocks, traceframe_find_block_type): Likewise.
10862 (tfile_fetch_registers, tfile_xfer_partial): Likewise.
10863 (tfile_get_trace_state_variable_value): Likewise.
10864 (tfile_has_all_memory, tfile_has_memory): Likewise.
10865 (tfile_has_stack, tfile_has_registers): Likewise.
10866 (tfile_thread_alive, build_traceframe_info): Likewise.
10867 (tfile_traceframe_info, init_tfile_ops): Likewise.
10868 (_initialize_tracepoint): Don't call init_tfile_ops
10869 and add_target_with_completer.
10870 * tracefile-tfile.c: Include regcache.h, inferior.h, gdbthread.h,
10871 exec.h, completer.h and filenames.h.
10872 (_initialize_tracefile_tfile): New function.
10873
10874 2014-02-23 Yao Qi <yao@codesourcery.com>
10875
10876 * Makefile.in (REMOTE_OBS): Append tracefile.o and
10877 tracefile-tfile.o.
10878 (HFILES_NO_SRCDIR): Add tracefile.h.
10879 * ctf.c: Include "tracefile.h".
10880 * tracefile.h: New file.
10881 * tracefile.c: New file
10882 * tracefile-tfile.c: New file.
10883 * tracepoint.c: Include "tracefile.h".
10884 (free_uploaded_tps, free_uploaded_tsvs): Remove declarations.
10885 (stop_reason_names): Add const.
10886 (trace_file_writer_xfree): Move it to tracefile.c.
10887 (trace_save, trace_save_command, trace_save_tfile): Likewise.
10888 (trace_save_ctf): Likewise.
10889 (struct tfile_trace_file_writer): Move it to tracefile-tfile.c.
10890 (tfile_target_save, tfile_dtor, tfile_start): Likewise.
10891 (tfile_write_header, tfile_write_regblock_type): Likewise.
10892 (tfile_write_status, tfile_write_uploaded_tsv): Likewise.
10893 (tfile_write_uploaded_tp, tfile_write_definition_end): Likewise.
10894 (tfile_write_raw_data, tfile_end): Likewise.
10895 (tfile_trace_file_writer_new): Likewise.
10896 (free_uploaded_tp): Make it extern.
10897 (free_uploaded_tsv): Make it extern.
10898 (_initialize_tracepoint): Move code to register command 'tsave'
10899 to tracefile.c.
10900 * tracepoint.h (stop_reason_names): Declare.
10901 (struct trace_frame_write_ops): Move it to tracefile.h.
10902 (struct trace_file_write_ops): Likewise.
10903 (struct trace_file_writer): Likewise.
10904 (free_uploaded_tsvs, free_uploaded_tps): Declare.
10905
10906 2014-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
10907
10908 PR gdb/16594
10909 * common/linux-osdata.c (linux_common_core_of_thread): Find the end of
10910 process name.
10911 (get_cores_used_by_process): New parameter num_cores, use it.
10912 (linux_xfer_osdata_processes): Pass num_cores to it.
10913 * linux-tdep.c (linux_info_proc, linux_fill_prpsinfo): Find the end of
10914 process name.
10915
10916 2014-02-21 Andreas Arnez <arnez@vnet.linux.ibm.com>
10917
10918 * target.c (memory_xfer_partial): Fix length arg in call to
10919 breakpoint_xfer_memory.
10920
10921 2014-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
10922
10923 PR tdep/16397
10924 * i386-tdep.c (i386_stap_parse_special_token_triplet): Check if a
10925 number comes after the + or - signs. Adjust length of register
10926 name to be extracted.
10927
10928 2014-02-20 Tom Tromey <tromey@redhat.com>
10929
10930 * varobj.h (c_varobj_ops, cplus_varobj_ops, java_varobj_ops)
10931 (ada_varobj_ops): Mark "extern".
10932
10933 2014-02-20 Tom Tromey <tromey@redhat.com>
10934
10935 * dbxread.c (read_dbx_symtab): Remove last_o_file_start.
10936
10937 2014-02-20 Doug Evans <xdje42@gmail.com>
10938
10939 * guile/scm-gsmob.c (gdbscm_init_eqable_gsmob): New arg containing_scm.
10940 All callers updated.
10941 (gdbscm_fill_eqable_gsmob_ptr_slot): Delete arg containing_scm.
10942 All callers updated.
10943 * guile/guile-internal.h (gdbscm_init_eqable_gsmob): Update.
10944 (gdbscm_fill_eqable_gsmob_ptr_slot): Update.
10945
10946 2014-02-20 lin zuojian <manjian2006@gmail.com>
10947 Joel Brobecker <brobecker@adacore.com>
10948 Doug Evans <xdje42@gmail.com>
10949
10950 PR symtab/16581
10951 * dwarf2read.c (struct die_info): New member in_process.
10952 (reset_die_in_process): New function.
10953 (process_die): Set it at the start, reset when returning.
10954 (inherit_abstract_dies): Only call process_die if origin_child_die
10955 not already being processed.
10956
10957 2014-02-20 Joel Brobecker <brobecker@adacore.com>
10958
10959 * windows-nat.c (handle_unload_dll): Add function documentation.
10960 (do_initial_windows_stuff): Add comment explaining why we wait
10961 until after inferior initialization has finished before
10962 processing all DLLs.
10963
10964 2014-02-20 Joel Brobecker <brobecker@adacore.com>
10965
10966 * windows-nat.c (get_module_name): Delete.
10967 (windows_get_exec_module_filename): New function, mostly
10968 inspired from get_module_name.
10969 (windows_pid_to_exec_file): Replace call to get_module_name
10970 by call to windows_get_exec_module_filename.
10971
10972 2014-02-20 Joel Brobecker <brobecker@adacore.com>
10973
10974 * windows-nat.c (handle_load_dll): Rewrite this function's
10975 introductory comment. Remove code using get_module_name
10976 to get the DLL's name.
10977
10978 2014-02-20 Joel Brobecker <brobecker@adacore.com>
10979
10980 * windows-nat.c (get_windows_debug_event): Ignore
10981 LOAD_DLL_DEBUG_EVENT and UNLOAD_DLL_DEBUG_EVENT
10982 if windows_initialization_done == 0.
10983 (windows_add_all_dlls): Renames windows_ensure_ntdll_loaded.
10984 Adjust implementation to always load all DLLs.
10985 (do_initial_windows_stuff): Replace call to
10986 windows_ensure_ntdll_loaded by call to windows_add_all_dlls.
10987
10988 2014-02-20 Joel Brobecker <brobecker@adacore.com>
10989
10990 * windows-nat.c (_initialize_windows_nat): Deprecate the
10991 "dll-symbols" command. Turn the "add-shared-symbol-files"
10992 and "assf" aliases into commands, and deprecate them as well.
10993 * NEWS: Add entry explaining that "dll-symbols" and its two
10994 aliases are now deprecated.
10995
10996 2014-02-20 Joel Brobecker <brobecker@adacore.com>
10997
10998 * dec-thread.c (dec_thread_get_ada_task_ptid): Avoid unescaped
10999 new-line in debug string. Remove trailing spaces.
11000
11001 2014-02-19 Stan Shebs <stan@codesourcery.com>
11002
11003 * darwin-nat.c (darwin_xfer_partial): Fix return type.
11004
11005 2014-02-19 Siva Chandra Reddy <sivachandra@google.com>
11006
11007 * NEWS: Add entry for the new feature
11008 * python/py-value.c (valpy_binop): Call value_x_binop for struct
11009 and class values.
11010
11011 2014-02-19 Stan Shebs <stan@codesourcery.com>
11012
11013 * MAINTAINERS: List Yao Qi as nios2 maintainer.
11014
11015 2014-02-19 Pedro Alves <palves@redhat.com>
11016
11017 * common/ptid.h (struct ptid): Mention that process_stratum
11018 targets should prefer ptid.lwp.
11019
11020 2014-02-19 Pedro Alves <palves@redhat.com>
11021
11022 * remote.c (remote_thread_alive, write_ptid, read_ptid)
11023 (read_ptid, remote_newthread_step, remote_threads_extra_info)
11024 (remote_get_ada_task_ptid, append_resumption, remote_stop_ns)
11025 (threadalive_test, remote_pid_to_str): Use the ptid.lwp field to
11026 store remote thread ids rather than ptid.tid.
11027 (_initialize_remote): Adjust.
11028
11029 2014-02-19 Tom Tromey <tromey@redhat.com>
11030
11031 * target.c (target_get_unwinder): Rewrite.
11032 (target_get_tailcall_unwinder): Rewrite.
11033 * record-btrace.c (record_btrace_to_get_unwinder): New function.
11034 (record_btrace_to_get_tailcall_unwinder): New function.
11035 (init_record_btrace_ops): Update.
11036 * target.h (struct target_ops) <to_get_unwinder,
11037 to_get_tailcall_unwinder>: Now function pointers. Use
11038 TARGET_DEFAULT_RETURN.
11039
11040 2014-02-19 Tom Tromey <tromey@redhat.com>
11041
11042 * nto-procfs.c (procfs_remove_hw_breakpoint): Add 'self'
11043 argument.
11044 (init_procfs_ops): Correctly set to_remove_hw_breakpoint.
11045
11046 2014-02-19 Tom Tromey <tromey@redhat.com>
11047
11048 * record-btrace.c (record_btrace_decr_pc_after_break): Delegate
11049 directly.
11050 * target-delegates.c: Rebuild.
11051 * target.h (struct target_ops) <to_decr_pc_after_break>: Use
11052 TARGET_DEFAULT_FUNC.
11053 * target.c (default_target_decr_pc_after_break): Rename from
11054 forward_target_decr_pc_after_break. Simplify.
11055 (target_decr_pc_after_break): Rely on delegation.
11056
11057 2014-02-19 Tom Tromey <tromey@redhat.com>
11058
11059 * target.c (update_current_target): Do not INHERIT to_doc or
11060 to_magic. Do not de_fault to_open or to_close.
11061
11062 2014-02-19 Tom Tromey <tromey@redhat.com>
11063
11064 * gcore.h (objfile_find_memory_regions): Declare.
11065 * gcore.c (objfile_find_memory_regions): No longer static. Add
11066 "self" argument.
11067 (_initialize_gcore): Don't call exec_set_find_memory_regions.
11068 * exec.c: Include gcore.h.
11069 (exec_set_find_memory_regions): Remove.
11070 (exec_find_memory_regions): Remove.
11071 (exec_do_find_memory_regions): Remove.
11072 (init_exec_ops): Update.
11073 * defs.h (exec_set_find_memory_regions): Remove.
11074
11075 2014-02-19 Tom Tromey <tromey@redhat.com>
11076
11077 * target-delegates.c: Rebuild.
11078 * target.h (struct target_ops) <to_extra_thread_info,
11079 to_thread_name, to_pid_to_exec_file, to_get_section_table,
11080 to_memory_map, to_read_description, to_traceframe_info>: Use NULL,
11081 not 0, in TARGET_DEFAULT_RETURN.
11082
11083 2014-02-19 Tom Tromey <tromey@redhat.com>
11084
11085 * target.c (complete_target_initialization): Remove casts. Use
11086 return_zero_has_execution.
11087 (return_zero): Add "ignore" argument.
11088 (return_zero_has_execution): New function.
11089 (init_dummy_target): Remove casts. Use
11090 return_zero_has_execution.
11091
11092 2014-02-19 Tom Tromey <tromey@redhat.com>
11093
11094 * target.c (update_current_target): Update comments. Do not
11095 INHERIT to_stratum.
11096
11097 2014-02-19 Tom Tromey <tromey@redhat.com>
11098
11099 * arm-linux-nat.c (arm_linux_read_description): Delegate when
11100 needed.
11101 * corelow.c (core_read_description): Delegate when needed.
11102 * remote.c (remote_read_description): Delegate when needed.
11103 * target-delegates.c: Rebuild.
11104 * target.c (target_read_description): Rewrite.
11105 * target.h (struct target_ops) <to_read_description>: Update
11106 comment. Use TARGET_DEFAULT_RETURN.
11107
11108 2014-02-19 Tom Tromey <tromey@redhat.com>
11109
11110 * target-delegates.c: Rebuild.
11111 * target.c (update_current_target): Don't inherit or default
11112 to_can_run.
11113 (find_default_run_target): Check against delegate_can_run.
11114 * target.h (struct target_ops) <to_can_run>: Use
11115 TARGET_DEFAULT_RETURN.
11116
11117 2014-02-19 Tom Tromey <tromey@redhat.com>
11118
11119 * target-delegates.c: Rebuild.
11120 * target.c (target_disconnect): Unconditionally delegate.
11121 * target.h (struct target_ops) <to_disconnect>: Use
11122 TARGET_DEFAULT_NORETURN.
11123
11124 2014-02-19 Tom Tromey <tromey@redhat.com>
11125
11126 * record.c (record_stop): Unconditionally delegate.
11127 * target-delegates.c: Rebuild.
11128 * target.c (target_stop_recording): Unconditionally delegate.
11129 * target.h (struct target_ops) <to_stop_recording>: Use
11130 TARGET_DEFAULT_IGNORE.
11131
11132 2014-02-19 Tom Tromey <tromey@redhat.com>
11133
11134 * target-delegates.c: Rebuild.
11135 * target.c (target_enable_btrace): Unconditionally delegate.
11136 * target.h (struct target_ops) <to_enable_btrace>: Use
11137 TARGET_DEFAULT_NORETURN.
11138
11139 2014-02-19 Tom Tromey <tromey@redhat.com>
11140
11141 * target-delegates.c: Rebuild.
11142 * target.c (target_read_btrace): Unconditionally delegate.
11143 * target.h (struct target_ops) <to_read_btrace>: Use
11144 TARGET_DEFAULT_NORETURN.
11145
11146 2014-02-19 Tom Tromey <tromey@redhat.com>
11147
11148 * target-delegates.c: Rebuild.
11149 * target.c (target_teardown_btrace): Unconditionally delegate.
11150 * target.h (struct target_ops) <to_teardown_btrace>: Use
11151 TARGET_DEFAULT_NORETURN.
11152
11153 2014-02-19 Tom Tromey <tromey@redhat.com>
11154
11155 * target-delegates.c: Rebuild.
11156 * target.c (target_disable_btrace): Unconditionally delegate.
11157 * target.h (struct target_ops) <to_disable_btrace>: Use
11158 TARGET_DEFAULT_NORETURN.
11159
11160 2014-02-19 Tom Tromey <tromey@redhat.com>
11161
11162 * target-delegates.c: Rebuild.
11163 * target.c (default_search_memory): New function.
11164 (simple_search_memory): Update comment.
11165 (target_search_memory): Unconditionally delegate.
11166 * target.h (struct target_ops) <to_search_memory>: Use
11167 TARGET_DEFAULT_FUNC.
11168
11169 2014-02-19 Tom Tromey <tromey@redhat.com>
11170
11171 * auxv.c (default_auxv_parse): No longer static.
11172 (target_auxv_parse): Unconditionally delegate.
11173 * auxv.h (default_auxv_parse): Declare.
11174 * target-delegates.c: Rebuild.
11175 * target.c: Include auxv.h.
11176 * target.h (struct target_ops) <to_auxv_parse>: Use
11177 TARGET_DEFAULT_FUNC.
11178
11179 2014-02-19 Tom Tromey <tromey@redhat.com>
11180
11181 * target-delegates.c: Rebuild.
11182 * target.c (target_memory_map): Unconditionally delegate.
11183 * target.h (struct target_ops) <to_memory_map>: Use
11184 TARGET_DEFAULT_RETURN.
11185
11186 2014-02-19 Tom Tromey <tromey@redhat.com>
11187
11188 * target-delegates.c: Rebuild.
11189 * target.c (target_thread_alive): Unconditionally delegate.
11190 * target.h (struct target_ops) <to_thread_alive>: Use
11191 TARGET_DEFAULT_RETURN.
11192
11193 2014-02-19 Tom Tromey <tromey@redhat.com>
11194
11195 * target-delegates.c: Rebuild.
11196 * target.c (target_save_record): Unconditionally delegate.
11197 * target.h (struct target_ops) <to_save_record>: Use
11198 TARGET_DEFAULT_NORETURN.
11199
11200 2014-02-19 Tom Tromey <tromey@redhat.com>
11201
11202 * target-delegates.c: Rebuild.
11203 * target.c (target_delete_record): Unconditionally delegate.
11204 * target.h (struct target_ops) <to_delete_record>: Use
11205 TARGET_DEFAULT_NORETURN.
11206
11207 2014-02-19 Tom Tromey <tromey@redhat.com>
11208
11209 * target-delegates.c: Rebuild.
11210 * target.c (target_record_is_replaying): Unconditionally
11211 delegate.
11212 * target.h (struct target_ops) <to_record_is_replaying>: Use
11213 TARGET_DEFAULT_RETURN.
11214
11215 2014-02-19 Tom Tromey <tromey@redhat.com>
11216
11217 * target-delegates.c: Rebuild.
11218 * target.c (target_goto_record_begin): Unconditionally delegate.
11219 * target.h (struct target_ops) <to_goto_record_begin>: Use
11220 TARGET_DEFAULT_NORETURN.
11221
11222 2014-02-19 Tom Tromey <tromey@redhat.com>
11223
11224 * target-delegates.c: Rebuild.
11225 * target.c (target_goto_record_end): Unconditionally delegate.
11226 * target.h (struct target_ops) <to_goto_record_end>: Use
11227 TARGET_DEFAULT_NORETURN.
11228
11229 2014-02-19 Tom Tromey <tromey@redhat.com>
11230
11231 * target-delegates.c: Rebuild.
11232 * target.c (target_goto_record): Unconditionally delegate.
11233 * target.h (struct target_ops) <to_goto_record>: Use
11234 TARGET_DEFAULT_NORETURN.
11235
11236 2014-02-19 Tom Tromey <tromey@redhat.com>
11237
11238 * target-delegates.c: Rebuild.
11239 * target.c (target_insn_history): Unconditionally delegate.
11240 * target.h (struct target_ops) <to_insn_history>: Use
11241 TARGET_DEFAULT_NORETURN.
11242
11243 2014-02-19 Tom Tromey <tromey@redhat.com>
11244
11245 * target-delegates.c: Rebuild.
11246 * target.c (target_insn_history_from): Unconditionally delegate.
11247 * target.h (struct target_ops) <to_insn_history_from>: Use
11248 TARGET_DEFAULT_NORETURN.
11249
11250 2014-02-19 Tom Tromey <tromey@redhat.com>
11251
11252 * target-delegates.c: Rebuild.
11253 * target.c (target_insn_history_range): Unconditionally delegate.
11254 * target.h (struct target_ops) <to_insn_history_range>: Use
11255 TARGET_DEFAULT_NORETURN.
11256
11257 2014-02-19 Tom Tromey <tromey@redhat.com>
11258
11259 * target-delegates.c: Rebuild.
11260 * target.c (target_call_history): Unconditionally delegate.
11261 * target.h (struct target_ops) <to_call_history>: Use
11262 TARGET_DEFAULT_NORETURN.
11263
11264 2014-02-19 Tom Tromey <tromey@redhat.com>
11265
11266 * target-delegates.c: Rebuild.
11267 * target.c (target_call_history_from): Unconditionally delegate.
11268 * target.h (struct target_ops) <to_call_history_from>: Use
11269 TARGET_DEFAULT_NORETURN.
11270
11271 2014-02-19 Tom Tromey <tromey@redhat.com>
11272
11273 * target-delegates.c: Rebuild.
11274 * target.c (target_call_history_range): Unconditionally delegate.
11275 * target.h (struct target_ops) <to_call_history_range>: Use
11276 TARGET_DEFAULT_NORETURN.
11277
11278 2014-02-19 Tom Tromey <tromey@redhat.com>
11279
11280 * target-delegates.c: Rebuild.
11281 * target.c (target_verify_memory): Unconditionally delegate.
11282 * target.h (struct target_ops) <to_verify_memory>: Use
11283 TARGET_DEFAULT_NORETURN.
11284
11285 2014-02-19 Tom Tromey <tromey@redhat.com>
11286
11287 * target-delegates.c: Rebuild.
11288 * target.c (target_core_of_thread): Unconditionally delegate.
11289 * target.h (struct target_ops) <to_core_of_thread>: Use
11290 TARGET_DEFAULT_RETURN.
11291
11292 2014-02-19 Tom Tromey <tromey@redhat.com>
11293
11294 * target-delegates.c: Rebuild.
11295 * target.c (target_flash_done): Unconditionally delegate.
11296 * target.h (struct target_ops) <to_flash_done>: Use
11297 TARGET_DEFAULT_NORETURN.
11298
11299 2014-02-19 Tom Tromey <tromey@redhat.com>
11300
11301 * target-delegates.c: Rebuild.
11302 * target.c (target_flash_erase): Unconditionally delegate.
11303 * target.h (struct target_ops) <to_flash_erase>: Use
11304 TARGET_DEFAULT_NORETURN.
11305
11306 2014-02-19 Tom Tromey <tromey@redhat.com>
11307
11308 * target-delegates.c: Rebuild.
11309 * target.c (target_get_section_table): Unconditionally delegate.
11310 * target.h (struct target_ops) <to_get_section_table>: Use
11311 TARGET_DEFAULT_RETURN.
11312
11313 2014-02-19 Tom Tromey <tromey@redhat.com>
11314
11315 * target-delegates.c: Rebuild.
11316 * target.c (target_pid_to_str): Unconditionally delegate.
11317 (init_dummy_target): Don't initialize to_pid_to_str.
11318 (default_pid_to_str): Rename from dummy_pid_to_str.
11319 * target.h (struct target_ops) <to_pid_to_str>: Use
11320 TARGET_DEFAULT_FUNC.
11321
11322 2014-02-19 Tom Tromey <tromey@redhat.com>
11323
11324 * target-delegates.c: Rebuild.
11325 * target.c (target_find_new_threads): Unconditionally delegate.
11326 * target.h (struct target_ops) <to_find_new_threads>: Use
11327 TARGET_DEFAULT_RETURN.
11328
11329 2014-02-19 Tom Tromey <tromey@redhat.com>
11330
11331 * target-delegates.c: Rebuild.
11332 * target.c (target_program_signals): Unconditionally delegate.
11333 * target.h (struct target_ops) <to_program_signals>: Use
11334 TARGET_DEFAULT_IGNORE.
11335
11336 2014-02-19 Tom Tromey <tromey@redhat.com>
11337
11338 * target-delegates.c: Rebuild.
11339 * target.c (target_pass_signals): Unconditionally delegate.
11340 * target.h (struct target_ops) <to_pass_signals>: Use
11341 TARGET_DEFAULT_IGNORE.
11342
11343 2014-02-19 Tom Tromey <tromey@redhat.com>
11344
11345 * target-delegates.c: Rebuild.
11346 * target.c (default_mourn_inferior): New function.
11347 (target_mourn_inferior): Unconditionally delegate.
11348 * target.h (struct target_ops) <to_mourn_inferior>: Use
11349 TARGET_DEFAULT_FUNC.
11350
11351 2014-02-19 Tom Tromey <tromey@redhat.com>
11352
11353 * target-delegates.c: Rebuild.
11354 * target.c (default_follow_fork): New function.
11355 (target_follow_fork): Unconditionally delegate.
11356 * target.h (struct target_ops) <to_follow_fork>: Use
11357 TARGET_DEFAULT_FUNC.
11358
11359 2014-02-19 Tom Tromey <tromey@redhat.com>
11360
11361 * target-delegates.c: Rebuild.
11362 * target.c (target_kill): Unconditionally delegate.
11363 * target.h (struct target_ops) <to_kill>: Use
11364 TARGET_DEFAULT_NORETURN.
11365
11366 2014-02-19 Tom Tromey <tromey@redhat.com>
11367
11368 * target-delegates.c: Rebuild.
11369 * target.c (target_masked_watch_num_registers): Unconditionally
11370 delegate.
11371 * target.h (struct target_ops) <to_masked_watch_num_registers>:
11372 Use TARGET_DEFAULT_RETURN.
11373
11374 2014-02-19 Tom Tromey <tromey@redhat.com>
11375
11376 * target-delegates.c: Rebuild.
11377 * target.c (target_remove_mask_watchpoint): Unconditionally
11378 delegate.
11379 * target.h (struct target_ops) <to_remove_mask_watchpoint>: Use
11380 TARGET_DEFAULT_RETURN.
11381
11382 2014-02-19 Tom Tromey <tromey@redhat.com>
11383
11384 * target-delegates.c: Rebuild.
11385 * target.c (target_insert_mask_watchpoint): Unconditionally
11386 delegate.
11387 * target.h (struct target_ops) <to_insert_mask_watchpoint>: Use
11388 TARGET_DEFAULT_RETURN.
11389
11390 2014-02-19 Tom Tromey <tromey@redhat.com>
11391
11392 * target-delegates.c: Rebuild.
11393 * target.c (target_ranged_break_num_registers): Unconditionally
11394 delegate.
11395 * target.h (struct target_ops) <to_ranged_break_num_registers>:
11396 Use TARGET_DEFAULT_RETURN.
11397
11398 2014-02-19 Tom Tromey <tromey@redhat.com>
11399
11400 * target-delegates.c: Rebuild.
11401 * target.c (target_fetch_registers): Unconditionally delegate.
11402 * target.h (struct target_ops) <to_fetch_registers>: Use
11403 TARGET_DEFAULT_NORETURN.
11404
11405 2014-02-19 Tom Tromey <tromey@redhat.com>
11406
11407 * target-delegates.c: Rebuild.
11408 * target.c (update_current_target): Don't inherit or default
11409 to_stop.
11410 * target.h (struct target_ops) <to_stop>: Use
11411 TARGET_DEFAULT_IGNORE.
11412
11413 2014-02-19 Tom Tromey <tromey@redhat.com>
11414
11415 * target-delegates.c: Rebuild.
11416 * target.c (update_current_target): Don't inherit or default
11417 to_can_run_breakpoint_commands.
11418 * target.h (struct target_ops) <to_can_run_breakpoint_commands>:
11419 Use TARGET_DEFAULT_RETURN.
11420
11421 2014-02-19 Tom Tromey <tromey@redhat.com>
11422
11423 * target-delegates.c: Rebuild.
11424 * target.c (update_current_target): Don't inherit or default
11425 to_supports_evaluation_of_breakpoint_conditions.
11426 * target.h (struct target_ops)
11427 <to_supports_evaluation_of_breakpoint_conditions>: Use
11428 TARGET_DEFAULT_RETURN.
11429
11430 2014-02-19 Tom Tromey <tromey@redhat.com>
11431
11432 * target-delegates.c: Rebuild.
11433 * target.c (update_current_target): Don't inherit or default
11434 to_augmented_libraries_svr4_read.
11435 * target.h (struct target_ops) <to_augmented_libraries_svr4_read>:
11436 Use TARGET_DEFAULT_RETURN.
11437
11438 2014-02-19 Tom Tromey <tromey@redhat.com>
11439
11440 * target-delegates.c: Rebuild.
11441 * target.c (update_current_target): Don't inherit or default
11442 to_can_use_agent.
11443 * target.h (struct target_ops) <to_can_use_agent>: Use
11444 TARGET_DEFAULT_RETURN.
11445
11446 2014-02-19 Tom Tromey <tromey@redhat.com>
11447
11448 * target-delegates.c: Rebuild.
11449 * target.c (update_current_target): Don't inherit or default
11450 to_use_agent.
11451 * target.h (struct target_ops) <to_use_agent>: Use
11452 TARGET_DEFAULT_NORETURN.
11453
11454 2014-02-19 Tom Tromey <tromey@redhat.com>
11455
11456 * target-delegates.c: Rebuild.
11457 * target.c (update_current_target): Don't inherit or default
11458 to_traceframe_info.
11459 (return_null): Remove.
11460 * target.h (struct target_ops) <to_traceframe_info>: Use
11461 TARGET_DEFAULT_RETURN.
11462
11463 2014-02-19 Tom Tromey <tromey@redhat.com>
11464
11465 * target-delegates.c: Rebuild.
11466 * target.c (update_current_target): Don't inherit or default
11467 to_static_tracepoint_markers_by_strid.
11468 * target.h (struct target_ops)
11469 <to_static_tracepoint_markers_by_strid>: Use
11470 TARGET_DEFAULT_NORETURN.
11471
11472 2014-02-19 Tom Tromey <tromey@redhat.com>
11473
11474 * target-delegates.c: Rebuild.
11475 * target.c (update_current_target): Don't inherit or default
11476 to_static_tracepoint_marker_at.
11477 * target.h (struct target_ops) <to_static_tracepoint_marker_at>:
11478 Use TARGET_DEFAULT_RETURN.
11479
11480 2014-02-19 Tom Tromey <tromey@redhat.com>
11481
11482 * target-delegates.c: Rebuild.
11483 * target.c (update_current_target): Don't inherit or default
11484 to_set_permissions.
11485 * target.h (struct target_ops) <to_set_permissions>: Use
11486 TARGET_DEFAULT_IGNORE.
11487
11488 2014-02-19 Tom Tromey <tromey@redhat.com>
11489
11490 * target-delegates.c: Rebuild.
11491 * target.c (update_current_target): Don't inherit or default
11492 to_get_tib_address.
11493 * target.h (struct target_ops) <to_get_tib_address>: Use
11494 TARGET_DEFAULT_NORETURN.
11495
11496 2014-02-19 Tom Tromey <tromey@redhat.com>
11497
11498 * target-delegates.c: Rebuild.
11499 * target.c (update_current_target): Don't inherit or default
11500 to_set_trace_notes.
11501 * target.h (struct target_ops) <to_set_trace_notes>: Use
11502 TARGET_DEFAULT_RETURN.
11503
11504 2014-02-19 Tom Tromey <tromey@redhat.com>
11505
11506 * target-delegates.c: Rebuild.
11507 * target.c (update_current_target): Don't initialize
11508 to_set_trace_buffer_size.
11509 * target.h (struct target_ops) <to_set_trace_buffer_size>: Use
11510 TARGET_DEFAULT_IGNORE.
11511
11512 2014-02-19 Tom Tromey <tromey@redhat.com>
11513
11514 * target-delegates.c: Rebuild.
11515 * target.c (update_current_target): Don't inherit or default
11516 to_set_circular_trace_buffer.
11517 * target.h (struct target_ops) <to_set_circular_trace_buffer>: Use
11518 TARGET_DEFAULT_IGNORE.
11519
11520 2014-02-19 Tom Tromey <tromey@redhat.com>
11521
11522 * target-delegates.c: Rebuild.
11523 * target.c (update_current_target): Don't inherit or default
11524 to_set_disconnected_tracing.
11525 * target.h (struct target_ops) <to_set_disconnected_tracing>: Use
11526 TARGET_DEFAULT_IGNORE.
11527
11528 2014-02-19 Tom Tromey <tromey@redhat.com>
11529
11530 * target-delegates.c: Rebuild.
11531 * target.c (update_current_target): Don't inherit or default
11532 to_get_min_fast_tracepoint_insn_len.
11533 (return_minus_one): Remove.
11534 * target.h (struct target_ops)
11535 <to_get_min_fast_tracepoint_insn_len>: Use TARGET_DEFAULT_RETURN.
11536
11537 2014-02-19 Tom Tromey <tromey@redhat.com>
11538
11539 * target-delegates.c: Rebuild.
11540 * target.c (update_current_target): Don't inherit or default
11541 to_get_raw_trace_data.
11542 * target.h (struct target_ops) <to_get_raw_trace_data>: Use
11543 TARGET_DEFAULT_NORETURN.
11544
11545 2014-02-19 Tom Tromey <tromey@redhat.com>
11546
11547 * target-delegates.c: Rebuild.
11548 * target.c (update_current_target): Don't inherit or default
11549 to_upload_trace_state_variables.
11550 * target.h (struct target_ops) <to_upload_trace_state_variables>:
11551 Use TARGET_DEFAULT_RETURN.
11552
11553 2014-02-19 Tom Tromey <tromey@redhat.com>
11554
11555 * target-delegates.c: Rebuild.
11556 * target.c (update_current_target): Don't inherit or default
11557 to_upload_tracepoints.
11558 * target.h (struct target_ops) <to_upload_tracepoints>: Use
11559 TARGET_DEFAULT_RETURN.
11560
11561 2014-02-19 Tom Tromey <tromey@redhat.com>
11562
11563 * target-delegates.c: Rebuild.
11564 * target.c (update_current_target): Don't inherit or default
11565 to_save_trace_data.
11566 * target.h (struct target_ops) <to_save_trace_data>: Use
11567 TARGET_DEFAULT_NORETURN.
11568
11569 2014-02-19 Tom Tromey <tromey@redhat.com>
11570
11571 * target-delegates.c: Rebuild.
11572 * target.c (update_current_target): Don't inherit or default
11573 to_get_trace_state_variable_value.
11574 * target.h (struct target_ops)
11575 <to_get_trace_state_variable_value>: Use TARGET_DEFAULT_RETURN.
11576
11577 2014-02-19 Tom Tromey <tromey@redhat.com>
11578
11579 * target-delegates.c: Rebuild.
11580 * target.c (update_current_target): Don't inherit or default
11581 to_trace_find.
11582 * target.h (struct target_ops): Use TARGET_DEFAULT_RETURN.
11583
11584 2014-02-19 Tom Tromey <tromey@redhat.com>
11585
11586 * target-delegates.c: Rebuild.
11587 * target.c (update_current_target): Don't inherit or default
11588 to_trace_stop.
11589 * target.h (struct target_ops) <to_trace_stop>: Use
11590 TARGET_DEFAULT_NORETURN.
11591
11592 2014-02-19 Tom Tromey <tromey@redhat.com>
11593
11594 * target-delegates.c: Rebuild.
11595 * target.c (update_current_target): Don't inherit or default
11596 to_get_tracepoint_status.
11597 * target.h (struct target_ops) <to_get_tracepoint_status>: Use
11598 TARGET_DEFAULT_NORETURN.
11599
11600 2014-02-19 Tom Tromey <tromey@redhat.com>
11601
11602 * target-delegates.c: Rebuild.
11603 * target.c (update_current_target): Don't inherit or default
11604 to_get_trace_status.
11605 * target.h (struct target_ops) <to_get_trace_status>: Use
11606 TARGET_DEFAULT_RETURN.
11607
11608 2014-02-19 Tom Tromey <tromey@redhat.com>
11609
11610 * target-delegates.c: Rebuild.
11611 * target.c (update_current_target): Don't inherit or default
11612 to_trace_start.
11613 * target.h (struct target_ops) <to_trace_start>: Use
11614 TARGET_DEFAULT_NORETURN.
11615
11616 2014-02-19 Tom Tromey <tromey@redhat.com>
11617
11618 * target-delegates.c: Rebuild.
11619 * target.c (update_current_target): Don't inherit or default
11620 to_trace_set_readonly_regions.
11621 * target.h (struct target_ops) <to_trace_set_readonly_regions>:
11622 Use TARGET_DEFAULT_NORETURN.
11623
11624 2014-02-19 Tom Tromey <tromey@redhat.com>
11625
11626 * target-delegates.c: Rebuild.
11627 * target.c (update_current_target): Don't inherit or default
11628 to_disable_tracepoint.
11629 * target.h (struct target_ops) <to_disable_tracepoint>: Use
11630 TARGET_DEFAULT_NORETURN.
11631
11632 2014-02-19 Tom Tromey <tromey@redhat.com>
11633
11634 * target-delegates.c: Rebuild.
11635 * target.c (update_current_target): Don't inherit or default
11636 to_enable_tracepoint.
11637 * target.h (struct target_ops) <to_enable_tracepoint>: Use
11638 TARGET_DEFAULT_NORETURN.
11639
11640 2014-02-19 Tom Tromey <tromey@redhat.com>
11641
11642 * target-delegates.c: Rebuild.
11643 * target.c (update_current_target): Don't inherit or default
11644 to_download_trace_state_variable.
11645 * target.h (struct target_ops) <to_download_trace_state_variable>:
11646 Use TARGET_DEFAULT_NORETURN.
11647
11648 2014-02-19 Tom Tromey <tromey@redhat.com>
11649
11650 * target-delegates.c: Rebuild.
11651 * target.c (update_current_target): Don't inherit or default
11652 to_can_download_tracepoint.
11653 * target.h (struct target_ops) <to_can_download_tracepoint>: Use
11654 TARGET_DEFAULT_RETURN.
11655
11656 2014-02-19 Tom Tromey <tromey@redhat.com>
11657
11658 * target-delegates.c: Rebuild.
11659 * target.c (update_current_target): Don't inherit or default
11660 to_download_tracepoint.
11661 * target.h (struct target_ops) <to_download_tracepoint>: Use
11662 TARGET_DEFAULT_NORETURN.
11663
11664 2014-02-19 Tom Tromey <tromey@redhat.com>
11665
11666 * target-delegates.c: Rebuild.
11667 * target.c (update_current_target): Don't inherit or default
11668 to_trace_init.
11669 * target.h (struct target_ops) <to_trace_init>: Use
11670 TARGET_DEFAULT_RETURN.
11671
11672 2014-02-19 Tom Tromey <tromey@redhat.com>
11673
11674 * target-delegates.c: Rebuild.
11675 * target.c (update_current_target): Don't inherit or default
11676 to_supports_string_tracing.
11677 * target.h (struct target_ops) <to_supports_string_tracing>: Use
11678 TARGET_DEFAULT_RETURN.
11679
11680 2014-02-19 Tom Tromey <tromey@redhat.com>
11681
11682 * target-delegates.c: Rebuild.
11683 * target.c (update_current_target): Don't inherit or default
11684 to_supports_enable_disable_tracepoint.
11685 * target.h (struct target_ops)
11686 <to_supports_enable_disable_tracepoint>: Use
11687 TARGET_DEFAULT_RETURN.
11688
11689 2014-02-19 Tom Tromey <tromey@redhat.com>
11690
11691 * target-delegates.c: Rebuild.
11692 * target.c (update_current_target): Don't inherit or default
11693 to_supports_multi_process.
11694 * target.h (struct target_ops) <to_supports_multi_process>: Use
11695 TARGET_DEFAULT_RETURN.
11696
11697 2014-02-19 Tom Tromey <tromey@redhat.com>
11698
11699 * target-delegates.c: Rebuild.
11700 * target.c (update_current_target): Don't inherit or default
11701 to_get_ada_task_ptid.
11702 * target.h (struct target_ops) <to_get_ada_task_ptid>: Use
11703 TARGET_DEFAULT_FUNC.
11704
11705 2014-02-19 Tom Tromey <tromey@redhat.com>
11706
11707 * target-delegates.c: Rebuild.
11708 * target.c (update_current_target): Don't inherit or default
11709 to_thread_architecture.
11710 * target.h (struct target_ops) <to_thread_architecture>: Use
11711 TARGET_DEFAULT_FUNC.
11712
11713 2014-02-19 Tom Tromey <tromey@redhat.com>
11714
11715 * target-delegates.c: Rebuild.
11716 * target.c (update_current_target): Don't inherit or default
11717 to_execution_direction.
11718 * target.h (struct target_ops) <to_execution_direction>: Use
11719 TARGET_DEFAULT_FUNC.
11720
11721 2014-02-19 Tom Tromey <tromey@redhat.com>
11722
11723 * target-delegates.c: Rebuild.
11724 * target.c (update_current_target): Don't inherit or default
11725 to_can_execute_reverse.
11726 * target.h (struct target_ops) <to_can_execute_reverse>: Use
11727 TARGET_DEFAULT_RETURN.
11728 (target_can_execute_reverse): Unconditionally delegate.
11729
11730 2014-02-19 Tom Tromey <tromey@redhat.com>
11731
11732 * target-delegates.c: Rebuild.
11733 * target.c (update_current_target): Don't inherit or default
11734 to_goto_bookmark.
11735 (dummy_goto_bookmark): Remove.
11736 (init_dummy_target): Don't inherit or default to_goto_bookmark.
11737 * target.h (struct target_ops) <to_goto_bookmark>: Use
11738 TARGET_DEFAULT_NORETURN.
11739
11740 2014-02-19 Tom Tromey <tromey@redhat.com>
11741
11742 * target-delegates.c: Rebuild.
11743 * target.c (update_current_target): Don't inherit or default
11744 to_get_bookmark.
11745 (dummy_get_bookmark): Remove.
11746 (init_dummy_target): Don't inherit or default to_get_bookmark.
11747 * target.h (struct target_ops) <to_get_bookmark>: Use
11748 TARGET_DEFAULT_NORETURN
11749
11750 2014-02-19 Tom Tromey <tromey@redhat.com>
11751
11752 * target-delegates.c: Rebuild.
11753 * target.c (update_current_target): Don't inherit or default
11754 to_make_corefile_notes.
11755 (init_dummy_target): Don't initialize to_make_corefile_notes.
11756 * target.h (struct target_ops) <to_make_corefile_notes>: Use
11757 TARGET_DEFAULT_FUNC.
11758
11759 2014-02-19 Tom Tromey <tromey@redhat.com>
11760
11761 * target-delegates.c: Rebuild.
11762 * target.c (update_current_target): Don't inherit or default
11763 to_find_memory_regions.
11764 (init_dummy_target): Don't initialize to_find_memory_regions.
11765 * target.h (struct target_ops) <to_find_memory_regions>: Use
11766 TARGET_DEFAULT_FUNC.
11767
11768 2014-02-19 Tom Tromey <tromey@redhat.com>
11769
11770 * target-delegates.c: Rebuild.
11771 * target.c (update_current_target): Don't inherit or default
11772 to_log_command.
11773 * target.h (struct target_ops) <to_log_command>: Use
11774 TARGET_DEFAULT_IGNORE.
11775 (target_log_command): Unconditionally delegate.
11776
11777 2014-02-19 Tom Tromey <tromey@redhat.com>
11778
11779 * target-delegates.c: Rebuild.
11780 * target.c (update_current_target): Don't inherit or default
11781 to_pid_to_exec_file.
11782 * target.h (struct target_ops) <to_pid_to_exec_file>: Use
11783 TARGET_DEFAULT_RETURN.
11784
11785 2014-02-19 Tom Tromey <tromey@redhat.com>
11786
11787 * target-delegates.c: Rebuild.
11788 * target.c (update_current_target): Don't inherit or default
11789 to_thread_name.
11790 (target_thread_name): Unconditionally delegate.
11791 * target.h (struct target_ops) <to_thread_name>: Use
11792 TARGET_DEFAULT_RETURN.
11793
11794 2014-02-19 Tom Tromey <tromey@redhat.com>
11795
11796 * target-delegates.c: Rebuild.
11797 * target.c (update_current_target): Don't inherit or default
11798 to_extra_thread_info.
11799 * target.h (struct target_ops) <to_extra_thread_info>: Use
11800 TARGET_DEFAULT_RETURN.
11801
11802 2014-02-19 Tom Tromey <tromey@redhat.com>
11803
11804 * target-delegates.c: Rebuild.
11805 * target.c (update_current_target): Don't inherit or default
11806 to_has_exited.
11807 * target.h (struct target_ops) <to_has_exited>: Use
11808 TARGET_DEFAULT_RETURN..
11809
11810 2014-02-19 Tom Tromey <tromey@redhat.com>
11811
11812 * target-delegates.c: Rebuild.
11813 * target.c (update_current_target): Don't inherit or default
11814 to_set_syscall_catchpoint.
11815 (return_one): Remove.
11816 * target.h (struct target_ops) <to_set_syscall_catchpoint>: Use
11817 TARGET_DEFAULT_RETURN.
11818
11819 2014-02-19 Tom Tromey <tromey@redhat.com>
11820
11821 * target-delegates.c: Rebuild.
11822 * target.c (update_current_target): Don't inherit or default
11823 to_insert_exec_catchpoint.
11824 * target.h (struct target_ops) <to_insert_exec_catchpoint>: Use
11825 TARGET_DEFAULT_RETURN.
11826
11827 2014-01-08 Tom Tromey <tromey@redhat.com>
11828
11829 * target-delegates.c: Rebuild.
11830 * target.c (update_current_target): Don't inherit or default
11831 to_insert_exec_catchpoint.
11832 * target.h (struct target_ops) <to_insert_exec_catchpoint>: Use
11833 TARGET_DEFAULT_RETURN.
11834
11835 2014-02-19 Tom Tromey <tromey@redhat.com>
11836
11837 * target-delegates.c: Rebuild.
11838 * target.c (update_current_target): Don't inherit or default
11839 to_remove_vfork_catchpoint.
11840 * target.h (struct target_ops) <to_remove_vfork_catchpoint>: Use
11841 TARGET_DEFAULT_RETURN.
11842
11843 2014-02-19 Tom Tromey <tromey@redhat.com>
11844
11845 * target-delegates.c: Rebuild.
11846 * target.c (update_current_target): Don't inherit or default
11847 to_insert_vfork_catchpoint.
11848 * target.h (struct target_ops) <to_insert_vfork_catchpoint>: Use
11849 TARGET_DEFAULT_RETURN.
11850
11851 2014-02-19 Tom Tromey <tromey@redhat.com>
11852
11853 * target-delegates.c: Rebuild.
11854 * target.c (update_current_target): Don't inherit or default
11855 to_remove_fork_catchpoint.
11856 * target.h (struct target_ops) <to_remove_fork_catchpoint>: Use
11857 TARGET_DEFAULT_RETURN.
11858
11859 2014-02-19 Tom Tromey <tromey@redhat.com>
11860
11861 * target-delegates.c: Rebuild.
11862 * target.c (update_current_target): Don't inherit or default
11863 to_insert_fork_catchpoint.
11864 * target.h (struct target_ops) <to_insert_fork_catchpoint>: Use
11865 TARGET_DEFAULT_RETURN.
11866
11867 2014-02-19 Tom Tromey <tromey@redhat.com>
11868
11869 * target-delegates.c: Rebuild.
11870 * target.c (update_current_target): Don't inherit or default
11871 to_post_startup_inferior.
11872 * target.h (struct target_ops) <to_post_startup_inferior>: Use
11873 TARGET_DEFAULT_IGNORE.
11874
11875 2014-02-19 Tom Tromey <tromey@redhat.com>
11876
11877 * target-delegates.c: Rebuild.
11878 * target.c (update_current_target): Don't inherit or default
11879 to_load.
11880 * target.h (struct target_ops) <to_load>: Use
11881 TARGET_DEFAULT_NORETURN.
11882
11883 2014-02-19 Tom Tromey <tromey@redhat.com>
11884
11885 * target-delegates.c: Rebuild.
11886 * target.c (update_current_target): Don't inherit or default
11887 to_terminal_info.
11888 * target.h (struct target_ops) <to_terminal_info>: Use
11889 TARGET_DEFAULT_FUNC.
11890
11891 2014-02-19 Tom Tromey <tromey@redhat.com>
11892
11893 * target-delegates.c: Rebuild.
11894 * target.c (update_current_target): Don't inherit or default
11895 to_terminal_save_ours.
11896 * target.h (struct target_ops) <to_terminal_save_ours>: Use
11897 TARGET_DEFAULT_IGNORE.
11898
11899 2014-02-19 Tom Tromey <tromey@redhat.com>
11900
11901 * target-delegates.c: Rebuild.
11902 * target.c (update_current_target): Don't inherit or default
11903 to_terminal_ours.
11904 * target.h (struct target_ops) <to_terminal_ours>: Use
11905 TARGET_DEFAULT_IGNORE.
11906
11907 2014-02-19 Tom Tromey <tromey@redhat.com>
11908
11909 * target-delegates.c: Rebuild.
11910 * target.c (update_current_target): Don't inherit or default
11911 to_terminal_ours_for_output.
11912 * target.h (struct target_ops) <to_terminal_ours_for_output>: Use
11913 TARGET_DEFAULT_IGNORE.
11914
11915 2014-02-19 Tom Tromey <tromey@redhat.com>
11916
11917 * target-delegates.c: Rebuild.
11918 * target.c (update_current_target): Don't inherit or default
11919 to_terminal_inferior.
11920 * target.h (struct target_ops) <to_terminal_inferior>: Use
11921 TARGET_DEFAULT_IGNORE.
11922
11923 2014-02-19 Tom Tromey <tromey@redhat.com>
11924
11925 * target-delegates.c: Rebuild.
11926 * target.c (update_current_target): Don't inherit or default
11927 to_terminal_init.
11928 * target.h (struct target_ops) <to_terminal_init>: Use
11929 TARGET_DEFAULT_IGNORE.
11930
11931 2014-02-19 Tom Tromey <tromey@redhat.com>
11932
11933 * target-delegates.c: Rebuild.
11934 * target.c (update_current_target): Don't inherit or default
11935 to_can_accel_watchpoint_condition.
11936 * target.h (struct target_ops)
11937 <to_can_accel_watchpoint_condition>: Use TARGET_DEFAULT_RETURN.
11938
11939 2014-02-19 Tom Tromey <tromey@redhat.com>
11940
11941 * target-delegates.c: Rebuild.
11942 * target.c (update_current_target): Don't inherit or default
11943 to_region_ok_for_hw_watchpoint.
11944 * target.h (struct target_ops) <to_region_ok_for_hw_watchpoint>:
11945 Use TARGET_DEFAULT_FUNC.
11946
11947 2014-02-19 Tom Tromey <tromey@redhat.com>
11948
11949 * target-delegates.c: Rebuild.
11950 * target.c (update_current_target): Don't inherit or default
11951 to_watchpoint_addr_within_range.
11952 * target.h (struct target_ops) <to_watchpoint_addr_within_range>:
11953 Use TARGET_DEFAULT_FUNC.
11954
11955 2014-02-19 Tom Tromey <tromey@redhat.com>
11956
11957 * target-delegates.c: Rebuild.
11958 * target.c (update_current_target): Don't inherit or default
11959 to_remove_watchpoint.
11960 * target.h (struct target_ops) <to_remove_watchpoint>: Use
11961 TARGET_DEFAULT_NORETURN.
11962
11963 2014-02-19 Tom Tromey <tromey@redhat.com>
11964
11965 * target-delegates.c: Rebuild.
11966 * target.c (update_current_target): Don't inherit or default
11967 to_insert_watchpoint.
11968 * target.h (struct target_ops) <to_insert_watchpoint>: Use
11969 TARGET_DEFAULT_RETURN.
11970
11971 2014-02-19 Tom Tromey <tromey@redhat.com>
11972
11973 * target-delegates.c: Rebuild.
11974 * target.c (update_current_target): Don't inherit or default
11975 to_remove_hw_breakpoint.
11976 * target.h (struct target_ops) <to_remove_hw_breakpoint>: Use
11977 TARGET_DEFAULT_RETURN.
11978
11979 2014-02-19 Tom Tromey <tromey@redhat.com>
11980
11981 * target-delegates.c: Rebuild.
11982 * target.c (update_current_target): Don't inherit or default
11983 to_insert_hw_breakpoint.
11984 * target.h (struct target_ops) <to_insert_hw_breakpoint>: Use
11985 TARGET_DEFAULT_RETURN.
11986
11987 2014-02-19 Tom Tromey <tromey@redhat.com>
11988
11989 * target-delegates.c: Rebuild.
11990 * target.c (update_current_target): Don't inherit or default
11991 to_can_use_hw_breakpoint.
11992 * target.h (struct target_ops) <to_can_use_hw_breakpoint>: Use
11993 TARGET_DEFAULT_RETURN.
11994
11995 2014-02-19 Tom Tromey <tromey@redhat.com>
11996
11997 * target-delegates.c: Rebuild.
11998 * target.c (update_current_target): Don't inherit or default
11999 to_files_info.
12000 * target.h (struct target_ops) <to_files_info>: Use
12001 TARGET_DEFAULT_IGNORE.
12002
12003 2014-02-19 Tom Tromey <tromey@redhat.com>
12004
12005 * target-delegates.c: Rebuild.
12006 * target.c (update_current_target): Don't inherit or default
12007 to_store.
12008 * target.h (struct target_ops) <to_store>: Use
12009 TARGET_DEFAULT_NORETURN.
12010
12011 2014-02-19 Tom Tromey <tromey@redhat.com>
12012
12013 * target-delegates.c: Rebuild.
12014 * target.c (update_current_target): Don't inherit or default
12015 to_post_attach.
12016 * target.h (struct target_ops) <to_post_attach>: Use
12017 TARGET_DEFAULT_IGNORE.
12018
12019 2014-02-19 Tom Tromey <tromey@redhat.com>
12020
12021 * target-delegates.c: Rebuild.
12022 * target.c (update_current_target): Don't inherit or default
12023 to_rcmd.
12024 (default_rcmd): New function.
12025 (do_monitor_command): Unconditionally delegate.
12026 * target.h (struct target_ops) <to_rmcd>: Use
12027 TARGET_DEFAULT_FUNC.
12028
12029 2014-02-19 Tom Tromey <tromey@redhat.com>
12030
12031 * target-delegates.c: Rebuild.
12032 * target.c (init_dummy_target): Don't initialize to_attach.
12033 (target_attach): Unconditionally delegate.
12034 * target.h (struct target_ops) <to_attach>: Use
12035 TARGET_DEFAULT_FUNC.
12036
12037 2014-02-19 Tom Tromey <tromey@redhat.com>
12038
12039 * target-delegates.c: Rebuild.
12040 * target.c (target_detach): Unconditionally delegate.
12041 (init_dummy_target): Don't initialize to_detach.
12042 * target.h (struct target_ops) <to_detach>: Use
12043 TARGET_DEFAULT_IGNORE.
12044
12045 2014-02-19 Tom Tromey <tromey@redhat.com>
12046
12047 * target.h (struct target_ops) <to_augmented_libraries_svr4_read>:
12048 Add argument.
12049 (target_augmented_libraries_svr4_read): Add argument.
12050 * target.c (update_current_target): Update.
12051 * remote.c (remote_augmented_libraries_svr4_read): Add 'self'
12052 argument.
12053
12054 2014-02-19 Tom Tromey <tromey@redhat.com>
12055
12056 * target.h (struct target_ops) <to_call_history_range>: Add
12057 argument.
12058 * target.c (target_call_history_range): Add argument.
12059 * record-btrace.c (record_btrace_call_history_range): Add 'self'
12060 argument.
12061 (record_btrace_call_history_from): Update.
12062
12063 2014-02-19 Tom Tromey <tromey@redhat.com>
12064
12065 * target.h (struct target_ops) <to_call_history_from>: Add
12066 argument.
12067 * target.c (target_call_history_from): Add argument.
12068 * record-btrace.c (record_btrace_call_history_from): Add 'self'
12069 argument.
12070
12071 2014-02-19 Tom Tromey <tromey@redhat.com>
12072
12073 * target.h (struct target_ops) <to_call_history>: Add argument.
12074 * target.c (target_call_history): Add argument.
12075 * record-btrace.c (record_btrace_call_history): Add 'self'
12076 argument.
12077
12078 2014-02-19 Tom Tromey <tromey@redhat.com>
12079
12080 * target.h (struct target_ops) <to_insn_history_range>: Add
12081 argument.
12082 * target.c (target_insn_history_range): Add argument.
12083 * record-btrace.c (record_btrace_insn_history_range): Add 'self'
12084 argument.
12085 (record_btrace_insn_history_from): Update.
12086
12087 2014-02-19 Tom Tromey <tromey@redhat.com>
12088
12089 * target.h (struct target_ops) <to_insn_history_from>: Add
12090 argument.
12091 * target.c (target_insn_history_from): Add argument.
12092 * record-btrace.c (record_btrace_insn_history_from): Add 'self'
12093 argument.
12094
12095 2014-02-19 Tom Tromey <tromey@redhat.com>
12096
12097 * target.h (struct target_ops) <to_insn_history>: Add argument.
12098 * target.c (target_insn_history): Add argument.
12099 * record-btrace.c (record_btrace_insn_history): Add 'self'
12100 argument.
12101
12102 2014-02-19 Tom Tromey <tromey@redhat.com>
12103
12104 * target.h (struct target_ops) <to_goto_record>: Add argument.
12105 * target.c (target_goto_record): Add argument.
12106 * record-full.c (record_full_goto): Add 'self' argument.
12107 * record-btrace.c (record_btrace_goto): Add 'self' argument.
12108
12109 2014-02-19 Tom Tromey <tromey@redhat.com>
12110
12111 * target.h (struct target_ops) <to_goto_record_end>: Add argument.
12112 * target.c (target_goto_record_end): Add argument.
12113 * record-full.c (record_full_goto_end): Add 'self' argument.
12114 * record-btrace.c (record_btrace_goto_end): Add 'self' argument.
12115
12116 2014-02-19 Tom Tromey <tromey@redhat.com>
12117
12118 * target.h (struct target_ops) <to_goto_record_begin>: Add
12119 argument.
12120 * target.c (target_goto_record_begin): Add argument.
12121 * record-full.c (record_full_goto_begin): Add 'self' argument.
12122 * record-btrace.c (record_btrace_goto_begin): Add 'self'
12123 argument.
12124
12125 2014-02-19 Tom Tromey <tromey@redhat.com>
12126
12127 * target.h (struct target_ops) <to_record_is_replaying>: Add
12128 argument.
12129 * target.c (target_record_is_replaying): Add argument.
12130 * record-full.c (record_full_is_replaying): Add 'self' argument.
12131 * record-btrace.c (record_btrace_is_replaying): Add 'self'
12132 argument.
12133 (record_btrace_xfer_partial, record_btrace_store_registers)
12134 (record_btrace_prepare_to_store, record_btrace_resume)
12135 (record_btrace_wait, record_btrace_decr_pc_after_break)
12136 (record_btrace_find_new_threads, record_btrace_thread_alive):
12137 Update.
12138
12139 2014-02-19 Tom Tromey <tromey@redhat.com>
12140
12141 * target.h (struct target_ops) <to_delete_record>: Add argument.
12142 * target.c (target_delete_record): Add argument.
12143 * record-full.c (record_full_delete): Add 'self' argument.
12144
12145 2014-02-19 Tom Tromey <tromey@redhat.com>
12146
12147 * target.h (struct target_ops) <to_save_record>: Add argument.
12148 * target.c (target_save_record): Add argument.
12149 * record-full.c (record_full_save): Add 'self' argument.
12150 (record_full_save): Add 'self' argument.
12151
12152 2014-02-19 Tom Tromey <tromey@redhat.com>
12153
12154 * target.h (struct target_ops) <to_info_record>: Add argument.
12155 * target.c (target_info_record): Add argument.
12156 * record.c (info_record_command): Add argument.
12157 * record-full.c (record_full_info): Add 'self' argument.
12158 * record-btrace.c (record_btrace_info): Add 'self' argument.
12159
12160 2014-02-19 Tom Tromey <tromey@redhat.com>
12161
12162 * target.h (struct target_ops) <to_stop_recording>: Add argument.
12163 * target.c (target_stop_recording): Add argument.
12164 * record.c (record_stop): Add argument.
12165 * record-btrace.c (record_btrace_stop_recording): Add 'self'
12166 argument.
12167
12168 2014-02-19 Tom Tromey <tromey@redhat.com>
12169
12170 * target.h (struct target_ops) <to_read_btrace>: Add argument.
12171 * target.c (struct target_ops) <to_read_btrace>: Add argument.
12172 * remote.c (struct target_ops) <to_read_btrace>: Add 'self'
12173 argument.
12174 * amd64-linux-nat.c (amd64_linux_read_btrace): New function.
12175 (_initialize_amd64_linux_nat): Use it.
12176 * i386-linux-nat.c (i386_linux_read_btrace): New function.
12177 (_initialize_i386_linux_nat): Use it.
12178
12179 2014-02-19 Tom Tromey <tromey@redhat.com>
12180
12181 * target.h (struct target_ops) <to_teardown_btrace>: Add argument.
12182 * target.c (target_teardown_btrace): Add argument.
12183 * remote.c (remote_teardown_btrace): Add 'self' argument.
12184 * i386-linux-nat.c (i386_linux_teardown_btrace): Add 'self'
12185 argument.
12186 * amd64-linux-nat.c (amd64_linux_teardown_btrace): Add 'self'
12187 argument.
12188
12189 2014-02-19 Tom Tromey <tromey@redhat.com>
12190
12191 * target.h (struct target_ops) <to_disable_btrace>: Add argument.
12192 * target.c (target_disable_btrace): Add argument.
12193 * remote.c (remote_disable_btrace): Add 'self' argument.
12194 * i386-linux-nat.c (i386_linux_disable_btrace): Add 'self'
12195 argument.
12196 * amd64-linux-nat.c (amd64_linux_disable_btrace): Add 'self'
12197 argument.
12198
12199 2014-02-19 Tom Tromey <tromey@redhat.com>
12200
12201 * target.h (struct target_ops) <to_enable_btrace>: Add argument.
12202 * target.c (target_enable_btrace): Add argument.
12203 * remote.c (remote_enable_btrace): Add 'self' argument.
12204 * i386-linux-nat.c (i386_linux_enable_btrace): Add 'self'
12205 argument.
12206 * amd64-linux-nat.c (amd64_linux_enable_btrace): Add 'self'
12207 argument.
12208
12209 2014-02-19 Tom Tromey <tromey@redhat.com>
12210
12211 * target.h (struct target_ops) <to_can_use_agent>: Add argument.
12212 (target_can_use_agent): Add argument.
12213 * target.c (update_current_target): Update.
12214 * remote.c (remote_can_use_agent): Add 'self' argument.
12215 * inf-child.c (inf_child_can_use_agent): Add 'self' argument.
12216
12217 2014-02-19 Tom Tromey <tromey@redhat.com>
12218
12219 * target.h (struct target_ops) <to_use_agent>: Add argument.
12220 (target_use_agent): Add argument.
12221 * target.c (update_current_target): Update.
12222 * remote.c (remote_use_agent): Add 'self' argument.
12223 * inf-child.c (inf_child_use_agent): Add 'self' argument.
12224
12225 2014-02-19 Tom Tromey <tromey@redhat.com>
12226
12227 * tracepoint.c (tfile_traceframe_info): Add 'self' argument.
12228 * target.h (struct target_ops) <to_traceframe_info>: Add argument.
12229 (target_traceframe_info): Add argument.
12230 * target.c (update_current_target): Update.
12231 * remote.c (remote_traceframe_info): Add 'self' argument.
12232 * ctf.c (ctf_traceframe_info): Add 'self' argument.
12233
12234 2014-02-19 Tom Tromey <tromey@redhat.com>
12235
12236 * target.h (target_static_tracepoint_markers_by_strid): Add
12237 argument.
12238 (struct target_ops) <to_static_tracepoint_markers_by_strid>: Add
12239 'self' argument.
12240 * target.c (update_current_target): Update.
12241 * remote.c (struct target_ops)
12242 <to_static_tracepoint_markers_by_strid>: Add 'self' argument.
12243 * linux-nat.c (struct target_ops)
12244 <to_static_tracepoint_markers_by_strid>: Add 'self' argument.
12245
12246 2014-02-19 Tom Tromey <tromey@redhat.com>
12247
12248 * target.h (struct target_ops) <to_static_tracepoint_marker_at>:
12249 Add argument.
12250 (target_static_tracepoint_marker_at): Add argument.
12251 * target.c (update_current_target): Update.
12252 * remote.c (remote_static_tracepoint_marker_at): Add 'self'
12253 argument.
12254
12255 2014-02-19 Tom Tromey <tromey@redhat.com>
12256
12257 * target.h (struct target_ops) <to_set_permissions>: Add argument.
12258 (target_set_permissions): Add argument.
12259 * target.c (update_current_target): Update.
12260 * remote.c (remote_set_permissions): Add 'self' argument.
12261 (remote_start_remote): Update.
12262
12263 2014-02-19 Tom Tromey <tromey@redhat.com>
12264
12265 * windows-nat.c (windows_get_tib_address): Add 'self' argument.
12266 * target.h (struct target_ops) <to_get_tib_address>: Add argument.
12267 (target_get_tib_address): Add argument.
12268 * target.c (update_current_target): Update.
12269 * remote.c (remote_get_tib_address): Add 'self' argument.
12270
12271 2014-02-19 Tom Tromey <tromey@redhat.com>
12272
12273 * target.h (struct target_ops) <to_set_trace_notes>: Add argument.
12274 (target_set_trace_notes): Add argument.
12275 * target.c (update_current_target): Update.
12276 * remote.c (remote_set_trace_notes): Add 'self' argument.
12277
12278 2014-02-19 Tom Tromey <tromey@redhat.com>
12279
12280 * target.h (struct target_ops) <to_set_trace_buffer_size>: Add
12281 argument.
12282 (target_set_trace_buffer_size): Add argument.
12283 * target.c (update_current_target): Update.
12284 * remote.c (remote_set_trace_buffer_size): Add 'self' argument.
12285
12286 2014-02-19 Tom Tromey <tromey@redhat.com>
12287
12288 * target.h (struct target_ops) <to_set_circular_trace_buffer>: Add
12289 argument.
12290 (target_set_circular_trace_buffer): Add argument.
12291 * target.c (update_current_target): Update.
12292 * remote.c (remote_set_circular_trace_buffer): Add 'self'
12293 argument.
12294
12295 2014-02-19 Tom Tromey <tromey@redhat.com>
12296
12297 * target.h (struct target_ops) <to_set_disconnected_tracing>: Add
12298 argument.
12299 (target_set_disconnected_tracing): Add argument.
12300 * target.c (update_current_target): Update.
12301 * remote.c (remote_set_disconnected_tracing): Add 'self' argument.
12302
12303 2014-02-19 Tom Tromey <tromey@redhat.com>
12304
12305 * target.h (struct target_ops)
12306 <to_get_min_fast_tracepoint_insn_len>: Add argument.
12307 (target_get_min_fast_tracepoint_insn_len): Add argument.
12308 * target.c (update_current_target): Update.
12309 * remote.c (remote_get_min_fast_tracepoint_insn_len): Add 'self'
12310 argument.
12311
12312 2014-02-19 Tom Tromey <tromey@redhat.com>
12313
12314 * target.h (struct target_ops) <to_get_raw_trace_data>: Add
12315 argument.
12316 (target_get_raw_trace_data): Add argument.
12317 * target.c (update_current_target): Update.
12318 * remote.c (remote_get_raw_trace_data): Add 'self' argument.
12319
12320 2014-02-19 Tom Tromey <tromey@redhat.com>
12321
12322 * target.h (struct target_ops) <to_upload_trace_state_variables>:
12323 Add argument.
12324 (target_upload_trace_state_variables): Add argument.
12325 * target.c (update_current_target): Update.
12326 * remote.c (remote_upload_trace_state_variables): Add 'self'
12327 argument.
12328 (remote_start_remote): Update.
12329
12330 2014-02-19 Tom Tromey <tromey@redhat.com>
12331
12332 * target.h (struct target_ops) <to_upload_tracepoints>: Add
12333 argument.
12334 (target_upload_tracepoints): Add argument.
12335 * target.c (update_current_target): Update.
12336 * remote.c (remote_upload_tracepoints): Add 'self' argument.
12337 (remote_start_remote): Update.
12338
12339 2014-02-19 Tom Tromey <tromey@redhat.com>
12340
12341 * target.h (struct target_ops) <to_save_trace_data>: Add argument.
12342 (target_save_trace_data): Add argument.
12343 * target.c (update_current_target): Update.
12344 * remote.c (remote_save_trace_data): Add 'self' argument.
12345
12346 2014-02-19 Tom Tromey <tromey@redhat.com>
12347
12348 * tracepoint.c (tfile_get_trace_state_variable_value): Add 'self'
12349 argument.
12350 * target.h (struct target_ops)
12351 <to_get_trace_state_variable_value>: Add argument.
12352 (target_get_trace_state_variable_value): Add argument.
12353 * target.c (update_current_target): Update.
12354 * remote.c (remote_get_trace_state_variable_value): Add 'self'
12355 argument.
12356 * ctf.c (ctf_get_trace_state_variable_value): Add 'self' argument.
12357
12358 2014-02-19 Tom Tromey <tromey@redhat.com>
12359
12360 * tracepoint.c (tfile_trace_find): Add 'self' argument.
12361 * target.h (struct target_ops) <to_trace_find>: Add argument.
12362 (target_trace_find): Add argument.
12363 * target.c (update_current_target): Update.
12364 * remote.c (remote_trace_find): Add 'self' argument.
12365 * ctf.c (ctf_trace_find): Add 'self' argument.
12366
12367 2014-02-19 Tom Tromey <tromey@redhat.com>
12368
12369 * target.h (struct target_ops) <to_trace_stop>: Add argument.
12370 (target_trace_stop): Add argument.
12371 * target.c (update_current_target): Update.
12372 * remote.c (remote_trace_stop): Add 'self' argument.
12373
12374 2014-02-19 Tom Tromey <tromey@redhat.com>
12375
12376 * tracepoint.c (tfile_get_tracepoint_status): Add 'self' argument.
12377 * target.h (struct target_ops) <to_get_tracepoint_status>: Add
12378 argument.
12379 (target_get_tracepoint_status): Add argument.
12380 * target.c (update_current_target): Update.
12381 * remote.c (remote_get_tracepoint_status): Add 'self' argument.
12382
12383 2014-02-19 Tom Tromey <tromey@redhat.com>
12384
12385 * tracepoint.c (tfile_get_trace_status): Add 'self' argument.
12386 * target.h (struct target_ops) <to_get_trace_status>: Add
12387 argument.
12388 (target_get_trace_status): Add argument.
12389 * target.c (update_current_target): Update.
12390 * remote.c (remote_get_trace_status): Add 'self' argument.
12391 (remote_start_remote, remote_can_download_tracepoint): Update.
12392 * ctf.c (ctf_get_trace_status): Add 'self' argument.
12393
12394 2014-02-19 Tom Tromey <tromey@redhat.com>
12395
12396 * target.h (struct target_ops) <to_trace_start>: Add argument.
12397 (target_trace_start): Add argument.
12398 * target.c (update_current_target): Update.
12399 * remote.c (remote_trace_start): Add 'self' argument.
12400
12401 2014-02-19 Tom Tromey <tromey@redhat.com>
12402
12403 * target.h (struct target_ops) <to_trace_set_readonly_regions>:
12404 Add argument.
12405 (target_trace_set_readonly_regions): Add argument.
12406 * target.c (update_current_target): Update.
12407 * remote.c (remote_trace_set_readonly_regions): Add 'self'
12408 argument.
12409
12410 2014-02-19 Tom Tromey <tromey@redhat.com>
12411
12412 * target.h (struct target_ops) <to_disable_tracepoint>: Add
12413 argument.
12414 (target_disable_tracepoint): Add argument.
12415 * target.c (update_current_target): Update.
12416 * remote.c (remote_disable_tracepoint): Add 'self' argument.
12417
12418 2014-02-19 Tom Tromey <tromey@redhat.com>
12419
12420 * target.h (struct target_ops) <to_enable_tracepoint>: Add
12421 argument.
12422 (target_enable_tracepoint): Add argument.
12423 * target.c (update_current_target): Update.
12424 * remote.c (remote_enable_tracepoint): Add 'self' argument.
12425
12426 2014-02-19 Tom Tromey <tromey@redhat.com>
12427
12428 * target.h (struct target_ops) <to_download_trace_state_variable>:
12429 Add argument.
12430 (target_download_trace_state_variable): Add argument.
12431 * target.c (update_current_target): Update.
12432 * remote.c (remote_download_trace_state_variable): Add 'self'
12433 argument.
12434
12435 2014-02-19 Tom Tromey <tromey@redhat.com>
12436
12437 * target.h (struct target_ops) <to_can_download_tracepoint>: Add
12438 argument.
12439 (target_can_download_tracepoint): Add argument.
12440 * target.c (update_current_target): Update.
12441 * remote.c (remote_can_download_tracepoint): Add 'self' argument.
12442
12443 2014-02-19 Tom Tromey <tromey@redhat.com>
12444
12445 * target.h (struct target_ops) <to_download_tracepoint>: Add
12446 argument.
12447 (target_download_tracepoint): Add argument.
12448 * target.c (update_current_target): Update.
12449 * remote.c (remote_download_tracepoint): Add 'self' argument.
12450
12451 2014-02-19 Tom Tromey <tromey@redhat.com>
12452
12453 * target.h (struct target_ops) <to_trace_init>: Add argument.
12454 (target_trace_init): Add argument.
12455 * target.c (update_current_target): Update.
12456 * remote.c (remote_trace_init): Add 'self' argument.
12457
12458 2014-02-19 Tom Tromey <tromey@redhat.com>
12459
12460 * target.h (struct target_ops) <to_fileio_readlink>: Add argument.
12461 * target.c (target_fileio_readlink): Add argument.
12462 * remote.c (remote_hostio_readlink): Add 'self' argument.
12463 * inf-child.c (inf_child_fileio_readlink): Add 'self' argument.
12464
12465 2014-02-19 Tom Tromey <tromey@redhat.com>
12466
12467 * target.h (struct target_ops) <to_fileio_unlink>: Add argument.
12468 * target.c (target_fileio_unlink): Add argument.
12469 * remote.c (remote_hostio_unlink): Add 'self' argument.
12470 (remote_file_delete): Update.
12471 * inf-child.c (inf_child_fileio_unlink): Add 'self' argument.
12472
12473 2014-02-19 Tom Tromey <tromey@redhat.com>
12474
12475 * target.h (struct target_ops) <to_fileio_close>: Add argument.
12476 * target.c (target_fileio_close): Add argument.
12477 * remote.c (remote_hostio_close): Add 'self' argument.
12478 (remote_hostio_close_cleanup): Update.
12479 (remote_bfd_iovec_close, remote_file_put, remote_file_get):
12480 Update.
12481 * inf-child.c (inf_child_fileio_close): Add 'self' argument.
12482
12483 2014-02-19 Tom Tromey <tromey@redhat.com>
12484
12485 * target.h (struct target_ops) <to_fileio_pread>: Add argument.
12486 * target.c (target_fileio_pread): Add argument.
12487 * remote.c (remote_hostio_pread): Add 'self' argument.
12488 (remote_bfd_iovec_pread, remote_file_get): Update.
12489 * inf-child.c (inf_child_fileio_pread): Add 'self' argument.
12490
12491 2014-02-19 Tom Tromey <tromey@redhat.com>
12492
12493 * target.h (struct target_ops) <to_fileio_pwrite>: Add argument.
12494 * target.c (target_fileio_pwrite): Add argument.
12495 * remote.c (remote_hostio_pwrite): Add 'self' argument.
12496 (remote_file_put): Update.
12497 * inf-child.c (inf_child_fileio_pwrite): Add 'self' argument.
12498
12499 2014-02-19 Tom Tromey <tromey@redhat.com>
12500
12501 * target.h (struct target_ops) <to_fileio_open>: Add argument.
12502 * target.c (target_fileio_open): Add argument.
12503 * remote.c (remote_hostio_open): Add 'self' argument.
12504 (remote_bfd_iovec_open): Add 'self' argument.
12505 (remote_file_put): Add 'self' argument.
12506 (remote_file_get): Add 'self' argument.
12507 * inf-child.c (inf_child_fileio_open): Add 'self' argument.
12508
12509 2014-02-19 Tom Tromey <tromey@redhat.com>
12510
12511 * target.h (struct target_ops) <to_can_run_breakpoint_commands>:
12512 Add argument.
12513 (target_can_run_breakpoint_commands): Add argument.
12514 * target.c (update_current_target): Update.
12515 * remote.c (remote_can_run_breakpoint_commands): Add 'self'
12516 argument.
12517 (remote_insert_breakpoint): Add 'self' argument.
12518 (remote_insert_hw_breakpoint): Add 'self' argument.
12519 (remote_can_run_breakpoint_commands): Add 'self' argument.
12520
12521 2014-02-19 Tom Tromey <tromey@redhat.com>
12522
12523 * target.h (struct target_ops)
12524 <to_supports_evaluation_of_breakpoint_conditions>: Add argument.
12525 (target_supports_evaluation_of_breakpoint_conditions): Add
12526 argument.
12527 * target.c (update_current_target): Update.
12528 * remote.c (remote_supports_cond_breakpoints): Add 'self'
12529 argument.
12530 (remote_insert_breakpoint): Add 'self' argument.
12531 (remote_insert_hw_breakpoint): Add 'self' argument.
12532 (remote_supports_cond_breakpoints): Add 'self' argument.
12533
12534 2014-02-19 Tom Tromey <tromey@redhat.com>
12535
12536 * target.h (struct target_ops) <to_supports_string_tracing>: Add
12537 argument.
12538 (target_supports_string_tracing): Add argument.
12539 * target.c (update_current_target): Update.
12540 * remote.c (remote_supports_string_tracing): Add 'self' argument.
12541
12542 2014-02-19 Tom Tromey <tromey@redhat.com>
12543
12544 * target.h (struct target_ops)
12545 <to_supports_disable_randomization>: Add argument.
12546 * target.c (find_default_supports_disable_randomization): Add
12547 argument.
12548 (target_supports_disable_randomization): Add argument.
12549 (find_default_supports_disable_randomization): Add 'self'
12550 argument.
12551 * remote.c (extended_remote_supports_disable_randomization): Add
12552 'self' argument.
12553 (remote_supports_disable_randomization): Add 'self' argument.
12554 (extended_remote_create_inferior): Update.
12555 * linux-nat.c (linux_nat_supports_disable_randomization): Add
12556 'self' argument.
12557
12558 2014-02-19 Tom Tromey <tromey@redhat.com>
12559
12560 * target.h (struct target_ops)
12561 <to_supports_enable_disable_tracepoint>: Add argument.
12562 (target_supports_enable_disable_tracepoint): Add argument.
12563 * target.c (update_current_target): Update.
12564 * remote.c (remote_supports_enable_disable_tracepoint): Add 'self'
12565 argument.
12566
12567 2014-02-19 Tom Tromey <tromey@redhat.com>
12568
12569 * target.h (struct target_ops) <to_supports_multi_process>: Add
12570 argument.
12571 (target_supports_multi_process): Add argument.
12572 * target.c (update_current_target): Update.
12573 * remote.c (remote_supports_multi_process): Add 'self' argument.
12574 * linux-nat.c (linux_nat_supports_multi_process): Add 'self'
12575 argument.
12576 * darwin-nat.c (darwin_supports_multi_process): Add 'self'
12577 argument.
12578
12579 2014-02-19 Tom Tromey <tromey@redhat.com>
12580
12581 * target.h (struct target_ops) <to_execution_direction>: Add
12582 argument.
12583 (target_execution_direction): Add argument.
12584 * target.c (default_execution_direction): Add 'self' argument.
12585 * record-full.c (record_full_execution_direction): Add 'self'
12586 argument.
12587
12588 2014-02-19 Tom Tromey <tromey@redhat.com>
12589
12590 * target.h (struct target_ops) <to_can_execute_reverse>: Add
12591 argument.
12592 (target_can_execute_reverse): Add argument.
12593 * remote.c (remote_can_execute_reverse): Add 'self' argument.
12594 * record-full.c (record_full_can_execute_reverse): Add 'self'
12595 argument.
12596 * record-btrace.c (record_btrace_can_execute_reverse): Add 'self'
12597 argument.
12598
12599 2014-02-19 Tom Tromey <tromey@redhat.com>
12600
12601 * windows-nat.c (windows_get_ada_task_ptid): Add 'self' argument.
12602 * target.h (struct target_ops) <to_get_ada_task_ptid>: Add
12603 argument.
12604 (target_get_ada_task_ptid): Add argument.
12605 * target.c (update_current_target): Update.
12606 (default_get_ada_task_ptid): Add 'self' argument.
12607 * sol-thread.c (sol_get_ada_task_ptid): Add 'self' argument.
12608 * remote.c (remote_get_ada_task_ptid): Add 'self' argument.
12609 * ravenscar-thread.c (ravenscar_get_ada_task_ptid): Add 'self'
12610 argument.
12611 * linux-thread-db.c (thread_db_get_ada_task_ptid): Add 'self'
12612 argument.
12613 * inf-ttrace.c (inf_ttrace_get_ada_task_ptid): Add 'self'
12614 argument.
12615 * dec-thread.c (dec_thread_get_ada_task_ptid): Add 'self'
12616 argument.
12617 * darwin-nat.c (darwin_get_ada_task_ptid): Add 'self' argument.
12618 * aix-thread.c (aix_thread_get_ada_task_ptid): Add 'self'
12619 argument.
12620
12621 2014-02-19 Tom Tromey <tromey@redhat.com>
12622
12623 * target.h (struct target_ops) <to_goto_bookmark>: Add argument.
12624 (target_goto_bookmark): Add argument.
12625 * target.c (dummy_goto_bookmark): Add 'self' argument.
12626 * record-full.c (record_full_goto_bookmark): Add 'self' argument.
12627
12628 2014-02-19 Tom Tromey <tromey@redhat.com>
12629
12630 * target.h (struct target_ops) <to_get_bookmark>: Add argument.
12631 (target_get_bookmark): Add argument.
12632 * target.c (dummy_get_bookmark): Add 'self' argument.
12633 * record-full.c (record_full_get_bookmark): Add 'self' argument.
12634
12635 2014-02-19 Tom Tromey <tromey@redhat.com>
12636
12637 * target.h (struct target_ops) <to_make_corefile_notes>: Add
12638 argument.
12639 (target_make_corefile_notes): Add argument.
12640 * target.c (dummy_make_corefile_notes): Add 'self' argument.
12641 * procfs.c (procfs_make_note_section): Add 'self' argument.
12642 (procfs_make_note_section): Add 'self' argument.
12643 (procfs_make_note_section): Add 'self' argument.
12644 * linux-nat.c (linux_nat_make_corefile_notes): Add 'self'
12645 argument.
12646 * fbsd-nat.h (fbsd_make_corefile_notes): Add 'self' argument.
12647 * fbsd-nat.c (fbsd_make_corefile_notes): Add 'self' argument.
12648 * exec.c (exec_make_note_section): Add 'self' argument.
12649 (exec_make_note_section): Add 'self' argument.
12650
12651 2014-02-19 Tom Tromey <tromey@redhat.com>
12652
12653 * target.h (struct target_ops) <to_find_memory_regions>: Add
12654 argument.
12655 (target_find_memory_regions): Add argument.
12656 * target.c (dummy_find_memory_regions): Add 'self' argument.
12657 * procfs.c (proc_find_memory_regions): Add 'self' argument.
12658 * gnu-nat.c (gnu_find_memory_regions): Add 'self' argument.
12659 * fbsd-nat.h (fbsd_find_memory_regions): Add 'self' argument.
12660 * fbsd-nat.c (fbsd_find_memory_regions): Add 'self' argument.
12661 * exec. (exec_do_find_memory_regions): New global.
12662 (exec_set_find_memory_regions): Rewrite.
12663 (exec_find_memory_regions): New function.
12664 (init_exec_ops): Use exec_find_memory_regions.
12665
12666 2014-02-19 Tom Tromey <tromey@redhat.com>
12667
12668 * target.h (struct target_ops) <to_supports_non_stop>: Add
12669 argument.
12670 * target.c (find_default_supports_non_stop): Add argument.
12671 (target_supports_non_stop): Add argument.
12672 (find_default_supports_non_stop): Add 'self' argument.
12673 * remote.c (remote_supports_non_stop): Add 'self' argument.
12674 * linux-nat.c (linux_nat_supports_non_stop): Add 'self' argument.
12675
12676 2014-02-19 Tom Tromey <tromey@redhat.com>
12677
12678 * target.h (struct target_ops) <to_log_command>: Add argument.
12679 (target_log_command): Add argument.
12680 * serial.h (serial_log_command): Add 'self' argument.
12681 * serial.c (serial_log_command): Add 'self' argument.
12682
12683 2014-02-19 Tom Tromey <tromey@redhat.com>
12684
12685 * windows-nat.c (windows_pid_to_exec_file): Add 'self' argument.
12686 * target.h (struct target_ops) <to_pid_to_exec_file>: Add
12687 argument.
12688 (target_pid_to_exec_file): Add argument.
12689 * target.c (debug_to_pid_to_exec_file): Add argument.
12690 (update_current_target): Update.
12691 * nbsd-nat.h (nbsd_pid_to_exec_file): Add 'self' argument.
12692 * nbsd-nat.c (nbsd_pid_to_exec_file): Add 'self' argument.
12693 * linux-nat.c (linux_child_pid_to_exec_file): Add 'self' argument.
12694 (linux_handle_extended_wait): Update.
12695 * inf-child.c (inf_child_pid_to_exec_file): Add 'self' argument.
12696 * fbsd-nat.h (fbsd_pid_to_exec_file): Add 'self' argument.
12697 * fbsd-nat.c (fbsd_pid_to_exec_file): Add 'self' argument.
12698 * darwin-nat.c (darwin_pid_to_exec_file): Add 'self' argument.
12699
12700 2014-02-19 Tom Tromey <tromey@redhat.com>
12701
12702 * target.h (struct target_ops) <to_rcmd>: Add argument.
12703 (target_rcmd): Add argument.
12704 * target.c (debug_to_rcmd): Add argument.
12705 (update_current_target, do_monitor_command): Update.
12706 * remote.c (remote_rcmd): Add 'self' argument.
12707 * monitor.c (monitor_rcmd): Add 'self' argument.
12708
12709 2014-02-19 Tom Tromey <tromey@redhat.com>
12710
12711 * windows-nat.c (windows_stop): Add 'self' argument.
12712 * target.h (struct target_ops) <to_stop>: Add argument.
12713 * target.c (target_stop): Add argument.
12714 (debug_to_stop): Add argument.
12715 (update_current_target): Update.
12716 * remote.c (remote_stop): Add 'self' argument.
12717 * remote-sim.c (gdbsim_stop): Add 'self' argument.
12718 (gdbsim_cntrl_c): Update.
12719 * remote-m32r-sdi.c (m32r_stop): Add 'self' argument.
12720 * procfs.c (procfs_stop): Add 'self' argument.
12721 * nto-procfs.c (procfs_stop): Add 'self' argument.
12722 * monitor.c (monitor_stop): Add 'self' argument.
12723 (monitor_open): Update.
12724 * linux-nat.c (linux_nat_stop): Add argument.
12725 * inf-ptrace.c (inf_ptrace_stop): Add 'self' argument.
12726 * gnu-nat.c (gnu_stop): Add 'self' argument.
12727 * darwin-nat.c (darwin_stop): Add 'self' argument.
12728
12729 2014-02-19 Tom Tromey <tromey@redhat.com>
12730
12731 * target.h (struct target_ops) <to_thread_name>: Add argument.
12732 * target.c (target_thread_name): Add argument.
12733 (update_current_target): Update.
12734 * linux-nat.c (linux_nat_thread_name): Add 'self' argument.
12735
12736 2014-02-19 Tom Tromey <tromey@redhat.com>
12737
12738 * target.h (struct target_ops) <to_extra_thread_info>: Add
12739 argument.
12740 (target_extra_thread_info): Add argument.
12741 * target.c (update_current_target): Update.
12742 * remote.c (remote_threads_extra_info): Add 'self' argument.
12743 * ravenscar-thread.c (ravenscar_extra_thread_info): Add 'self'
12744 argument.
12745 * nto-tdep.h (nto_extra_thread_info): Add 'self' argument.
12746 * nto-tdep.c (nto_extra_thread_info): Add 'self' argument.
12747 * linux-thread-db.c (thread_db_extra_thread_info): Add 'self'
12748 argument.
12749 * inf-ttrace.c (inf_ttrace_extra_thread_info): Add 'self'
12750 argument.
12751 * bsd-uthread.c (bsd_uthread_extra_thread_info): Add 'self'
12752 argument.
12753 * aix-thread.c (aix_thread_extra_thread_info): Add 'self'
12754 argument.
12755
12756 2014-02-19 Tom Tromey <tromey@redhat.com>
12757
12758 * target.h (struct target_ops) <to_program_signals>: Add argument.
12759 * target.c (target_program_signals): Add argument.
12760 * remote.c (remote_program_signals): Add 'self' argument.
12761
12762 2014-02-19 Tom Tromey <tromey@redhat.com>
12763
12764 * target.h (struct target_ops) <to_pass_signals>: Add argument.
12765 * target.c (target_pass_signals): Add argument.
12766 * remote.c (remote_pass_signals): Add 'self' argument.
12767 (remote_start_remote): Update.
12768 * procfs.c (procfs_pass_signals): Add 'self' argument.
12769 * nto-procfs.c (procfs_pass_signals): Add 'self' argument.
12770 * linux-nat.c (linux_nat_pass_signals): Add 'self' argument.
12771 (linux_nat_create_inferior, linux_nat_attach): Update.
12772
12773 2014-02-19 Tom Tromey <tromey@redhat.com>
12774
12775 * windows-nat.c (windows_can_run): Add 'self' argument.
12776 * target.h (struct target_ops) <to_can_run>: Add argument.
12777 (target_can_run): Add argument.
12778 * target.c (debug_to_can_run): Add argument.
12779 (update_current_target): Update.
12780 * nto-procfs.c (procfs_can_run): Add 'self' argument.
12781 * inf-child.c (inf_child_can_run): Add 'self' argument.
12782 * go32-nat.c (go32_can_run): Add 'self' argument.
12783
12784 2014-02-19 Tom Tromey <tromey@redhat.com>
12785
12786 * target.h (struct target_ops) <to_has_exited>: Add argument.
12787 (target_has_exited): Add argument.
12788 * target.c (debug_to_has_exited): Add argument.
12789 (update_current_target): Update.
12790
12791 2014-02-19 Tom Tromey <tromey@redhat.com>
12792
12793 * target.h (struct target_ops) <to_set_syscall_catchpoint>: Add
12794 argument.
12795 (target_set_syscall_catchpoint): Add argument.
12796 * linux-nat.c (linux_child_set_syscall_catchpoint): Add 'self'
12797 argument.
12798 * target.c (update_current_target): Update.
12799
12800 2014-02-19 Tom Tromey <tromey@redhat.com>
12801
12802 * target.h (struct target_ops) <to_remove_exec_catchpoint>: Add
12803 argument.
12804 (target_remove_exec_catchpoint): Add argument.
12805 * target.c (debug_to_remove_exec_catchpoint): Add argument.
12806 (update_current_target): Update.
12807 * linux-nat.c (linux_child_remove_exec_catchpoint): Add 'self'
12808 argument.
12809
12810 2014-02-19 Tom Tromey <tromey@redhat.com>
12811
12812 * target.h (struct target_ops) <to_insert_exec_catchpoint>: Add
12813 argument.
12814 (target_insert_exec_catchpoint): Add argument.
12815 * target.c (debug_to_insert_exec_catchpoint): Add argument.
12816 (update_current_target): Update.
12817 * linux-nat.c (linux_child_insert_exec_catchpoint): Add 'self'
12818 argument.
12819
12820 2014-02-19 Tom Tromey <tromey@redhat.com>
12821
12822 * target.h (struct target_ops) <to_remove_vfork_catchpoint>: Add
12823 argument.
12824 (target_remove_vfork_catchpoint): Add argument.
12825 * target.c (debug_to_remove_vfork_catchpoint): Add argument.
12826 (update_current_target): Update.
12827 * linux-nat.c (linux_child_remove_vfork_catchpoint): Add 'self'
12828 argument.
12829
12830 2014-02-19 Tom Tromey <tromey@redhat.com>
12831
12832 * target.h (struct target_ops) <to_insert_vfork_catchpoint>: Add
12833 argument.
12834 (target_insert_vfork_catchpoint): Add argument.
12835 * target.c (debug_to_insert_vfork_catchpoint): Add argument.
12836 (update_current_target): Update.
12837 * linux-nat.c (linux_child_insert_vfork_catchpoint): Add 'self'
12838 argument.
12839
12840 2014-02-19 Tom Tromey <tromey@redhat.com>
12841
12842 * target.h (struct target_ops) <to_remove_fork_catchpoint>: Add
12843 argument.
12844 (target_remove_fork_catchpoint): Add argument.
12845 * target.c (debug_to_remove_fork_catchpoint): Add argument.
12846 (update_current_target): Update.
12847 * linux-nat.c (linux_child_remove_fork_catchpoint): Add 'self'
12848 argument.
12849
12850 2014-02-19 Tom Tromey <tromey@redhat.com>
12851
12852 * target.h (struct target_ops) <to_insert_fork_catchpoint>: Add
12853 argument.
12854 (target_insert_fork_catchpoint): Add argument.
12855 * target.c (debug_to_insert_fork_catchpoint): Add argument.
12856 (update_current_target): Update.
12857 * linux-nat.c (linux_child_insert_fork_catchpoint): Add 'self'
12858 argument.
12859
12860 2014-02-19 Tom Tromey <tromey@redhat.com>
12861
12862 * target.h (struct target_ops) <to_post_startup_inferior>: Add
12863 argument.
12864 (target_post_startup_inferior): Add argument.
12865 * target.c (debug_to_post_startup_inferior): Add argument.
12866 (update_current_target): Update.
12867 * spu-linux-nat.c (spu_child_post_startup_inferior): Add 'self'
12868 argument.
12869 * linux-nat.c (linux_child_post_startup_inferior): Add 'self'
12870 argument.
12871 * inf-ptrace.c (inf_ptrace_post_startup_inferior): Add 'self'
12872 argument.
12873 * inf-child.c (inf_child_post_startup_inferior): Add 'self'
12874 argument.
12875 * i386-linux-nat.c (i386_linux_child_post_startup_inferior): Add
12876 'self' argument.
12877 (super_post_startup_inferior): Likewise.
12878 * amd64-linux-nat.c (amd64_linux_child_post_startup_inferior): Add
12879 'self' argument.
12880 (super_post_startup_inferior): Likewise.
12881 * aarch64-linux-nat.c (aarch64_linux_child_post_startup_inferior):
12882 Add 'self' argument.
12883 (super_post_startup_inferior): Likewise.
12884
12885 2014-02-19 Tom Tromey <tromey@redhat.com>
12886
12887 * target.h (struct target_ops) <to_load>: Add argument.
12888 * target.c (target_load): Add argument.
12889 (debug_to_load): Add argument.
12890 (update_current_target): Update.
12891 * remote.c (remote_load): Add 'self' argument.
12892 * remote-sim.c (gdbsim_load): Add 'self' argument.
12893 * remote-mips.c (mips_load): Add 'self' argument.
12894 * remote-m32r-sdi.c (m32r_load): Add 'self' argument.
12895 * monitor.c (monitor_load): Add 'self' argument.
12896 * m32r-rom.c (m32r_load_gen): Add 'self' argument.
12897
12898 2014-02-19 Tom Tromey <tromey@redhat.com>
12899
12900 * target.h (struct target_ops) <to_terminal_info>: Add argument.
12901 (target_terminal_info): Add argument.
12902 * target.c (debug_to_terminal_info): Add argument.
12903 (default_terminal_info): Likewise.
12904 * inflow.c (child_terminal_info): Add 'self' argument.
12905 * inferior.h (child_terminal_info): Add 'self' argument.
12906 * go32-nat.c (go32_terminal_info): Add 'self' argument.
12907
12908 2014-02-19 Tom Tromey <tromey@redhat.com>
12909
12910 * target.h (struct target_ops) <to_terminal_save_ours>: Add
12911 argument.
12912 (target_terminal_save_ours): Add argument.
12913 * target.c (debug_to_terminal_save_ours): Add argument.
12914 (update_current_target): Update.
12915 * inflow.c (terminal_save_ours): Add 'self' argument.
12916 * inferior.h (terminal_save_ours): Add 'self' argument.
12917
12918 2014-02-19 Tom Tromey <tromey@redhat.com>
12919
12920 * target.h (struct target_ops) <to_terminal_ours>: Add argument.
12921 (target_terminal_ours): Add argument.
12922 * target.c (debug_to_terminal_ours): Add argument.
12923 (update_current_target): Update.
12924 * remote.c (remote_terminal_ours): Add 'self' argument.
12925 (remote_close): Update.
12926 * linux-nat.c (linux_nat_terminal_ours): Add 'self' argument.
12927 * inflow.c (terminal_ours): Add 'self' argument.
12928 * inferior.h (terminal_ours): Add 'self' argument.
12929 * go32-nat.c (go32_terminal_ours): Add 'self' argument.
12930
12931 2014-02-19 Pedro Alves <palves@redhat.com>
12932 Tom Tromey <tromey@redhat.com>
12933
12934 * target.h (struct target_ops) <to_terminal_ours_for_output>: Add
12935 argument.
12936 (target_terminal_ours_for_output): Add argument.
12937 * target.c (debug_to_terminal_ours_for_output): Add argument.
12938 (update_current_target): Update.
12939 * inflow.c (terminal_ours_for_output): Add 'self' argument.
12940 * inferior.h (terminal_ours_for_output): Add 'self' argument.
12941 * go32-nat.c (go32_terminal_ours): Add 'self' argument.
12942
12943 2014-02-19 Tom Tromey <tromey@redhat.com>
12944
12945 * target.h (struct target_ops) <to_terminal_inferior>: Add
12946 argument.
12947 * target.c (target_terminal_inferior): Add argument.
12948 (update_current_target): Update.
12949 * remote.c (remote_terminal_inferior): Add 'self' argument.
12950 * linux-nat.c (linux_nat_terminal_inferior): Add 'self' argument.
12951 * inflow.c (terminal_inferior): Add 'self' argument.
12952 * inferior.h (terminal_inferior): Add 'self' argument.
12953 * go32-nat.c (go32_terminal_inferior): Add 'self' argument.
12954 (go32_terminal_inferior): Add 'self' argument.
12955
12956 2014-02-19 Tom Tromey <tromey@redhat.com>
12957
12958 * target.h (struct target_ops) <to_terminal_init>: Add argument.
12959 (target_terminal_init): Add argument.
12960 * target.c (debug_to_terminal_init): Add argument.
12961 (update_current_target): Update.
12962 * inflow.c (terminal_init_inferior): Add 'self' argument.
12963 * inferior.h (terminal_init_inferior): Add 'self' argument.
12964 * go32-nat.c (go32_terminal_init): Add 'self' argument.
12965 * gnu-nat.c (gnu_terminal_init_inferior): Add 'self' argument.
12966
12967 2014-02-19 Tom Tromey <tromey@redhat.com>
12968
12969 * target.h (struct target_ops)
12970 <to_can_accel_watchpoint_condition>: Add argument.
12971 (target_can_accel_watchpoint_condition): Add argument.
12972 * target.c (debug_to_can_accel_watchpoint_condition): Add
12973 argument.
12974 (update_current_target): Update.
12975 * ppc-linux-nat.c (ppc_linux_can_accel_watchpoint_condition): Add
12976 'self' argument.
12977
12978 2014-02-19 Tom Tromey <tromey@redhat.com>
12979
12980 * target.h (struct target_ops) <to_region_ok_for_hw_watchpoint>:
12981 Add argument.
12982 (target_region_ok_for_hw_watchpoint): Add argument.
12983 * target.c (debug_to_region_ok_for_hw_watchpoint): Add argument.
12984 (default_region_ok_for_hw_watchpoint): Add argument.
12985 * spu-multiarch.c (spu_region_ok_for_hw_watchpoint): Add argument.
12986 * s390-linux-nat.c (s390_region_ok_for_hw_watchpoint): Add 'self'
12987 argument.
12988 * remote.c (remote_region_ok_for_hw_watchpoint): Add 'self'
12989 argument.
12990 * procfs.c (procfs_region_ok_for_hw_watchpoint): Add 'self'
12991 argument.
12992 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Add
12993 'self' argument.
12994 * mips-linux-nat.c (mips_linux_region_ok_for_hw_watchpoint): Add
12995 'self' argument.
12996 * inf-ttrace.c (inf_ttrace_region_ok_for_hw_watchpoint): Add
12997 'self' argument.
12998 * i386-nat.c (i386_region_ok_for_watchpoint): Add 'self' argument.
12999 * arm-linux-nat.c (arm_linux_region_ok_for_hw_watchpoint): Add
13000 'self' argument.
13001 * aarch64-linux-nat.c (aarch64_linux_region_ok_for_hw_watchpoint):
13002 Add 'self' argument.
13003
13004 2014-02-19 Tom Tromey <tromey@redhat.com>
13005
13006 * target.h (struct target_ops) <to_insert_watchpoint>: Add
13007 argument.
13008 (target_insert_watchpoint): Add argument.
13009 * target.c (debug_to_insert_watchpoint): Add argument.
13010 (update_current_target): Update.
13011 * s390-linux-nat.c (s390_insert_watchpoint): Add 'self' argument.
13012 * remote.c (remote_insert_watchpoint): Add 'self' argument.
13013 * remote-mips.c (mips_insert_watchpoint): Add 'self' argument.
13014 * remote-m32r-sdi.c (m32r_insert_watchpoint): Add 'self' argument.
13015 * procfs.c (procfs_insert_watchpoint): Add 'self' argument.
13016 * ppc-linux-nat.c (ppc_linux_insert_watchpoint): Add 'self'
13017 argument.
13018 * nto-procfs.c (procfs_insert_hw_watchpoint): Add 'self' argument.
13019 (procfs_insert_hw_watchpoint): Add 'self' argument.
13020 * mips-linux-nat.c (mips_linux_insert_watchpoint): Add 'self'
13021 argument.
13022 * inf-ttrace.c (inf_ttrace_insert_watchpoint): Add 'self'
13023 argument.
13024 * ia64-linux-nat.c (ia64_linux_insert_watchpoint): Add 'self'
13025 argument.
13026 * i386-nat.c (i386_insert_watchpoint): Add 'self' argument.
13027 * arm-linux-nat.c (arm_linux_insert_watchpoint): Add 'self'
13028 argument.
13029 * aarch64-linux-nat.c (aarch64_linux_insert_watchpoint): Add
13030 'self' argument.
13031
13032 2014-02-19 Tom Tromey <tromey@redhat.com>
13033
13034 * target.h (struct target_ops) <to_remove_watchpoint>: Add
13035 argument.
13036 (target_remove_watchpoint): Add argument.
13037 * target.c (debug_to_remove_watchpoint): Add argument.
13038 (update_current_target): Update.
13039 * s390-linux-nat.c (s390_remove_watchpoint): Add 'self' argument.
13040 * remote.c (remote_remove_watchpoint): Add 'self' argument.
13041 * remote-mips.c (mips_remove_watchpoint): Add 'self' argument.
13042 * remote-m32r-sdi.c (m32r_remove_watchpoint): Add 'self' argument.
13043 * procfs.c (procfs_remove_watchpoint): Add 'self' argument.
13044 * ppc-linux-nat.c (ppc_linux_remove_watchpoint): Add 'self'
13045 argument.
13046 * nto-procfs.c (procfs_remove_hw_watchpoint): Add 'self' argument.
13047 * mips-linux-nat.c (mips_linux_remove_watchpoint): Add 'self'
13048 argument.
13049 * inf-ttrace.c (inf_ttrace_remove_watchpoint): Add 'self'
13050 argument.
13051 * ia64-linux-nat.c (ia64_linux_remove_watchpoint): Add 'self'
13052 argument.
13053 * i386-nat.c (i386_remove_watchpoint): Add 'self' argument.
13054 * arm-linux-nat.c (arm_linux_remove_watchpoint): Add 'self'
13055 argument.
13056 * aarch64-linux-nat.c (aarch64_linux_remove_watchpoint): Add
13057 'self' argument.
13058
13059 2014-02-19 Tom Tromey <tromey@redhat.com>
13060
13061 * target.h (struct target_ops) <to_remove_hw_breakpoint>: Add
13062 argument.
13063 (target_remove_hw_breakpoint): Add argument.
13064 * target.c (debug_to_remove_hw_breakpoint): Add argument.
13065 (update_current_target): Update.
13066 * remote.c (remote_remove_hw_breakpoint): Add 'self' argument.
13067 * ppc-linux-nat.c (ppc_linux_remove_hw_breakpoint): Add 'self'
13068 argument.
13069 * i386-nat.c (i386_remove_hw_breakpoint): Add 'self' argument.
13070 * arm-linux-nat.c (arm_linux_remove_hw_breakpoint): Add 'self'
13071 argument.
13072 * aarch64-linux-nat.c (aarch64_linux_remove_hw_breakpoint): Add
13073 'self' argument.
13074
13075 2014-02-19 Tom Tromey <tromey@redhat.com>
13076
13077 * target.h (struct target_ops) <to_insert_hw_breakpoint>: Add
13078 argument.
13079 (target_insert_hw_breakpoint): Add argument.
13080 * target.c (debug_to_insert_hw_breakpoint): Add argument.
13081 (update_current_target): Update.
13082 * remote.c (remote_insert_hw_breakpoint): Add 'self' argument.
13083 * ppc-linux-nat.c (ppc_linux_insert_hw_breakpoint): Add 'self'
13084 argument.
13085 * nto-procfs.c (procfs_insert_hw_breakpoint): Add 'self' argument.
13086 * i386-nat.c (i386_insert_hw_breakpoint): Add 'self' argument.
13087 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint): Add 'self'
13088 argument.
13089 * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Add
13090 'self' argument.
13091
13092 2014-02-19 Tom Tromey <tromey@redhat.com>
13093
13094 * target.h (struct target_ops) <to_can_use_hw_breakpoint>: Add
13095 argument.
13096 (target_can_use_hardware_watchpoint): Add argument.
13097 * target.c (debug_to_can_use_hw_breakpoint): Add argument.
13098 (update_current_target): Update.
13099 * spu-linux-nat.c (spu_can_use_hw_breakpoint): Add 'self'
13100 argument.
13101 * s390-linux-nat.c (s390_can_use_hw_breakpoint): Add 'self'
13102 argument.
13103 * remote.c (remote_check_watch_resources): Add 'self' argument.
13104 * remote-mips.c (mips_can_use_watchpoint): Add 'self' argument.
13105 * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint): Add 'self'
13106 argument.
13107 * procfs.c (procfs_can_use_hw_breakpoint): Add 'self' argument.
13108 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): Add 'self'
13109 argument.
13110 * nto-procfs.c (procfs_can_use_hw_breakpoint): Add 'self'
13111 argument.
13112 * mips-linux-nat.c (mips_linux_can_use_hw_breakpoint): Add 'self'
13113 argument.
13114 * inf-ttrace.c (inf_ttrace_can_use_hw_breakpoint): Add 'self'
13115 argument.
13116 * ia64-linux-nat.c (ia64_linux_can_use_hw_breakpoint): Add 'self'
13117 argument.
13118 * ia64-hpux-nat.c (ia64_hpux_can_use_hw_breakpoint): Add 'self'
13119 argument.
13120 * i386-nat.c (i386_can_use_hw_breakpoint): Add 'self' argument.
13121 * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Add 'self'
13122 argument.
13123 * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): Add
13124 'self' argument.
13125
13126 2014-02-19 Tom Tromey <tromey@redhat.com>
13127
13128 * target.h (struct target_ops) <to_post_attach>: Add argument.
13129 (target_post_attach): Add argument.
13130 * target.c (debug_to_post_attach): Add argument.
13131 (update_current_target): Update.
13132 * spu-linux-nat.c (spu_child_post_attach): Add 'self' argument.
13133 * nto-procfs.c (procfs_post_attach): Add 'self' argument.
13134 * linux-nat.c (linux_child_post_attach): Add 'self' argument.
13135 * inf-ptrace.c (inf_ptrace_post_attach): Add 'self' argument.
13136 * inf-child.c (inf_child_post_attach): Add 'self' argument.
13137
13138 2014-02-19 Tom Tromey <tromey@redhat.com>
13139
13140 * windows-nat.c (windows_close): Add 'self' argument.
13141 * tracepoint.c (tfile_close): Add 'self' argument.
13142 * target.h (struct target_ops) <to_close>: Add argument.
13143 * target.c (target_close): Add argument.
13144 (update_current_target): Update.
13145 * remote.c (remote_close): Add 'self' argument.
13146 * remote-sim.c (gdbsim_close): Add 'self' argument.
13147 * remote-mips.c (mips_close): Add 'self' argument.
13148 * remote-m32r-sdi.c (m32r_close): Add 'self' argument.
13149 * record-full.c (record_full_close): Add 'self' argument.
13150 * record-btrace.c (record_btrace_close): Add 'self' argument.
13151 * monitor.h (monitor_close): Add 'self' argument.
13152 * monitor.c (monitor_close): Add 'self' argument.
13153 * mips-linux-nat.c (mips_linux_close): Add 'self' argument.
13154 * linux-nat.c (linux_nat_close): Add argument.
13155 * go32-nat.c (go32_close): Add 'self' argument.
13156 * exec.c (exec_close_1): Add 'self' argument.
13157 * ctf.c (ctf_close): Add 'self' argument.
13158 * corelow.c (core_close): Add 'self' argument.
13159 (core_close_cleanup): Update.
13160 * bsd-uthread.c (bsd_uthread_close): Add 'self' argument.
13161 * bsd-kvm.c (bsd_kvm_close): Add 'self' argument.
13162
13163 2014-02-19 Tom Tromey <tromey@redhat.com>
13164
13165 * remote.c (remote_load): New function.
13166 (init_remote_ops): Use it.
13167
13168 2014-02-19 Tom Tromey <tromey@redhat.com>
13169
13170 * common/linux-btrace.c (linux_supports_btrace): Add "ops"
13171 argument.
13172 * common/linux-btrace.h (linux_supports_btrace): Update.
13173 * remote.c (remote_supports_btrace): Add "self" argument.
13174 * target-delegates.c: Rebuild.
13175 * target.c (target_supports_btrace): Remove.
13176 * target.h (struct target_ops) <to_supports_btrace>: Add
13177 target_ops argument.
13178 (target_supports_btrace): New define.
13179
13180 2014-02-19 Tom Tromey <tromey@redhat.com>
13181
13182 * record-full.c (record_full_beneath_to_resume_ops)
13183 (record_full_beneath_to_resume, record_full_beneath_to_wait_ops)
13184 (record_full_beneath_to_wait)
13185 (record_full_beneath_to_store_registers_ops)
13186 (record_full_beneath_to_store_registers)
13187 (record_full_beneath_to_xfer_partial_ops)
13188 (record_full_beneath_to_xfer_partial)
13189 (record_full_beneath_to_insert_breakpoint_ops)
13190 (record_full_beneath_to_insert_breakpoint)
13191 (record_full_beneath_to_remove_breakpoint_ops)
13192 (record_full_beneath_to_remove_breakpoint)
13193 (record_full_beneath_to_stopped_by_watchpoint)
13194 (record_full_beneath_to_stopped_data_address)
13195 (record_full_beneath_to_async, tmp_to_resume_ops, tmp_to_resume)
13196 (tmp_to_wait_ops, tmp_to_wait, tmp_to_store_registers_ops)
13197 (tmp_to_store_registers, tmp_to_xfer_partial_ops)
13198 (tmp_to_xfer_partial, tmp_to_instmp_to_insert_breakpoint_ops)
13199 (tmp_to_insert_breakpoint, tmp_to_remove_breakpoint_ops)
13200 (tmp_to_remove_breakpoint, tmp_to_stopped_by_watchpoint)
13201 (tmp_to_stopped_data_address, tmp_to_async): Remove.
13202 (record_full_open_1, record_full_open): Update. Use RECORD_IS_USED.
13203 (record_full_resume, record_full_wait_1)
13204 (record_full_stopped_by_watchpoint, record_full_stopped_data_address)
13205 (record_full_store_registers, record_full_xfer_partial)
13206 (record_full_insert_breakpoint, record_full_remove_breakpoint)
13207 (record_full_async, record_full_core_xfer_partial): Use target
13208 delegation.
13209 * target-delegates.c: Rebuild.
13210 * target.c (current_xfer_partial): Remove.
13211 (update_current_target): Do not INHERIT or de_fault
13212 to_insert_breakpoint, to_remove_breakpoint,
13213 to_stopped_data_address, to_stopped_by_watchpoint, to_can_async_p,
13214 to_is_async_p, to_async. Do not set to_xfer_partial field.
13215 (default_xfer_partial): Simplify.
13216 (current_xfer_partial): Remove.
13217 (target_wait, target_resume): Simplify.
13218 (find_default_can_async_p, find_default_is_async_p): Update.
13219 (init_dummy_target): Don't set to_can_async_p, to_is_async_p,
13220 to_xfer_partial, to_stopped_by_watchpoint,
13221 to_stopped_data_address.
13222 (target_store_registers): Simplify.
13223 (forward_target_remove_breakpoint)
13224 (forward_target_insert_breakpoint): Remove.
13225 (target_remove_breakpoint, target_insert_breakpoint)
13226 (debug_to_insert_breakpoint, debug_to_remove_breakpoint): Update.
13227 * target.h (struct target_ops) <to_resume, to_wait,
13228 to_store_registers, to_insert_breakpoint, to_remove_breakpoint,
13229 to_stopped_by_watchpoint, to_stopped_data_address, to_can_async_p,
13230 to_is_async_p, to_async, to_xfer_partial>: Add TARGET_DEFAULT
13231 markup.
13232 (forward_target_remove_breakpoint)
13233 (forward_target_insert_breakpoint): Remove.
13234 * record-btrace.c (record_btrace_remove_breakpoint): Delegate
13235 directly.
13236 (record_btrace_insert_breakpoint): Delegate directly.
13237
13238 2014-02-19 Tom Tromey <tromey@redhat.com>
13239
13240 PR build/7701:
13241 * target-delegates.c: New file.
13242 * target.c: Include target-delegates.c.
13243 (init_dummy_target): Call install_dummy_methods.
13244 (complete_target_initialization): Call install_delegators.
13245 * target.h (TARGET_DEFAULT_IGNORE, TARGET_DEFAULT_NORETURN)
13246 (TARGET_DEFAULT_RETURN, TARGET_DEFAULT_FUNC): New defines.
13247 * make-target-delegates: New file.
13248
13249 2014-02-19 Tom Tromey <tromey@redhat.com>
13250
13251 * record.c (find_record_target): Use find_target_at.
13252 * target.c (find_target_at): New function.
13253 * target.h (find_target_at): Declare.
13254
13255 2014-02-19 Tom Tromey <tromey@redhat.com>
13256
13257 * aarch64-linux-nat.c (aarch64_linux_stopped_by_watchpoint):
13258 Add 'ops' argument.
13259 * arm-linux-nat.c (arm_linux_stopped_by_watchpoint): Add
13260 'ops' argument.
13261 * i386-nat.c (i386_stopped_by_watchpoint): Add 'ops' argument.
13262 * ia64-linux-nat.c (ia64_linux_stopped_by_watchpoint): Add
13263 'ops' argument.
13264 * inf-ttrace.c (inf_ttrace_stopped_by_watchpoint): Add 'ops'
13265 argument.
13266 * linux-nat.c (save_sigtrap): Update.
13267 (linux_nat_stopped_by_watchpoint, linux_nat_is_async_p)
13268 (linux_nat_can_async_p, linux_nat_async): Add 'ops' argument.
13269 (linux_nat_close): Update.
13270 * mips-linux-nat.c (mips_linux_stopped_by_watchpoint): Add 'ops'
13271 argument.
13272 * ppc-linux-nat.c (ppc_linux_stopped_by_watchpoint): Add 'ops'
13273 argument.
13274 * procfs.c (procfs_stopped_by_watchpoint): Add 'ops' argument.
13275 * record-full.c (record_full_beneath_to_stopped_by_watchpoint)
13276 (record_full_beneath_to_async, tmp_to_stopped_by_watchpoint)
13277 (tmp_to_async): Add 'ops' argument.
13278 (record_full_stopped_by_watchpoint, record_full_async)
13279 (record_full_can_async_p, record_full_is_async_p): Add 'ops'
13280 argument.
13281 * remote-m32r-sdi.c (m32r_insert_breakpoint, m32r_remove_breakpoint)
13282 (m32r_stopped_by_watchpoint): Add 'ops' argument.
13283 * remote-mips.c (mips_stopped_by_watchpoint): Add 'ops' argument.
13284 * remote.c (remote_stopped_by_watchpoint_p, remote_can_async_p)
13285 (remote_is_async_p, remote_async): Add 'ops' argument.
13286 (remote_stopped_data_address): Update.
13287 * s390-nat.c (s390_stopped_by_watchpoint): Add 'ops' argument.
13288 * target.c (update_current_target)
13289 (find_default_can_async_p, find_default_is_async_p): Update.
13290 (init_dummy_target): Update.
13291 (debug_to_stopped_by_watchpoint): Add 'ops' argument.
13292 * target.h (struct target_ops) <to_stopped_by_watchpoint,
13293 to_can_async_p, to_is_async_p, to_async>: Add 'ops' argument.
13294 (target_can_async_p, target_is_async_p, target_async)
13295 (target_stopped_by_watchpoint): Update.
13296
13297 2014-02-19 Yao Qi <yao@codesourcery.com>
13298
13299 PR gdb/16220
13300 * gdbarch.sh: Remove startup_gdbarch.
13301 * gdbarch.c: Regenerated.
13302 * gdbarch.h: Likewise.
13303
13304 2014-02-17 Kevin Buettner <kevinb@redhat.com>
13305
13306 * rl78-tdep.c (rl78_g10_register_name): New function.
13307 (rl78_return_value): Add g10 support.
13308 (rl78_gdbarch_init): Register rl78_g10_register_name for the
13309 g10.
13310
13311 2014-02-17 Doug Evans <xdje42@gmail.com>
13312
13313 * Makefile.in (SUBDIR_GUILE_OBS): Resort alphabetically.
13314 (SUBDIR_GUILE_SRCS): Ditto.
13315 (scm-gsmob.o): Ditto.
13316
13317 2014-02-17 Yao Qi <yao@codesourcery.com>
13318
13319 * gnu-nat.c (ILL_RPC): Declare defined function.
13320
13321 2014-02-17 Yao Qi <yao@codesourcery.com>
13322
13323 * gnu-nat.c (gnu_read_inferior): Change 'copy_count' type to
13324 mach_msg_type_number_t.
13325 (gnu_write_inferior): Likewise.
13326
13327 2014-02-17 Yao Qi <yao@codesourcery.com>
13328
13329 * gnu-nat.c (proc_get_exception_port): Use 'lu' insetad of 'd'
13330 in format string.
13331 (proc_steal_exc_port, make_proc, inf_set_pid): Likewise.
13332 (inf_validate_procs, inf_signal): Likewise.
13333 (S_exception_raise_request): Likewise.
13334 (do_mach_notify_dead_name): Likewise.
13335 (steal_exc_port): Likewise.
13336 (gnu_read_inferior): Change 'copy_count''s type to
13337 mach_msg_type_number_t.
13338 (gnu_write_inferior): Likewise. Use 'lx' instead of 'x' in
13339 format string.
13340
13341 2014-02-16 Thomas Schwinge <thomas@codesourcery.com>
13342
13343 * gnu-nat.c (struct inf): Change pending_execs member to a 1-bit
13344 flag. Adjust all users; in particular...
13345 (gnu_wait): ..., don't decrement its value in here...
13346 (gnu_create_inferior): ..., and instead set the flag in here,
13347 around the startup_inferior call, and call that one with
13348 START_INFERIOR_TRAPS_EXPECTED.
13349
13350 * gnu-nat.c (ill_rpc): Remove function; replaced with this...
13351 (ILL_RPC): ... new macro.
13352 (do_mach_notify_no_senders, do_mach_notify_port_deleted)
13353 (do_mach_notify_msg_accepted, do_mach_notify_port_destroyed)
13354 (do_mach_notify_send_once, S_proc_setmsgport_reply)
13355 (S_proc_getmsgport_reply, S_msg_sig_post_reply): Generate stub
13356 functions with ILL_RPC macro.
13357 (S_proc_pid2task_reply, S_proc_task2pid_reply)
13358 (S_proc_task2proc_reply, S_proc_proc2task_reply)
13359 (S_proc_pid2proc_reply, S_proc_getprocinfo_reply)
13360 (S_proc_getprocargs_reply, S_proc_getprocenv_reply)
13361 (S_proc_getloginid_reply, S_proc_getloginpids_reply)
13362 (S_proc_getlogin_reply, S_proc_getsid_reply)
13363 (S_proc_getsessionpgids_reply, S_proc_getsessionpids_reply)
13364 (S_proc_getsidport_reply, S_proc_getpgrp_reply)
13365 (S_proc_getpgrppids_reply, S_proc_get_tty_reply)
13366 (S_proc_getnports_reply, S_proc_is_important_reply)
13367 (S_proc_get_code_reply): New stub functions, generated with
13368 ILL_RPC macro.
13369
13370 * reply_mig_hack.awk: In phase 5, keep going if we have not yet
13371 collected the type check structures.
13372
13373 * reply_mig_hack.awk: Don't expect to see the auto keyword.
13374
13375 2014-02-14 Doug Evans <dje@google.com>
13376
13377 * target.c (target_write_partial): Fix result type.
13378
13379 2014-02-14 Jose E. Marchesi <jose.marchesi@oracle.com>
13380
13381 * sparc64-linux-nat.c (_initialize_sparc64_linux_nat): Register
13382 the proper offsets to access fpregset_t.
13383
13384 2014-02-13 Sanimir Agovic <sanimir.agovic@intel.com>
13385
13386 * cris-tdep.c (cris_supply_gregset): Remove zerobuf.
13387 (_initialize_cris_tdep): Remove cris_set_cmdlist, cris_show_cmdlist.
13388 * h8300-tdep.c (setmachinelist): Remove global.
13389 * hppa-tdep.c (hppa_sigtramp): Remove global.
13390 * mipsnbsd-tdep.c (sigtramp_retcode_mipsel, sigtramp_retcode_mipseb
13391 RETCODE_NWORDS, RETCODE_SIZE): Wrap code with #if 0.
13392 * ravenscar-thread.c (update_target_observer): Remove global.
13393 * rs6000-tdep.c (rs6000_gdbarch_init): Remove segment_regs.
13394
13395 2014-02-12 Tom Tromey <tromey@redhat.com>
13396
13397 * common/rsp-low.c: Update comments.
13398 * common/rsp-low.h: Update comments.
13399
13400 2014-02-12 Tom Tromey <tromey@redhat.com>
13401
13402 * common/rsp-low.c (convert_ascii_to_int): Remove.
13403 * common/rsp-low.h (convert_ascii_to_int): Don't declare.
13404
13405 2014-02-12 Tom Tromey <tromey@redhat.com>
13406
13407 * common/rsp-low.h (unhexify): Don't declare.
13408 * common/rsp-low.c (unhexify): Remove.
13409
13410 2014-02-12 Tom Tromey <tromey@redhat.com>
13411
13412 * common/rsp-low.h (convert_int_to_ascii): Don't declare.
13413 * common/rsp-low.c (convert_int_to_ascii): Remove.
13414
13415 2014-02-12 Tom Tromey <tromey@redhat.com>
13416
13417 * common/rsp-low.h (hexify): Don't declare.
13418 * common/rsp-low.c (hexify): Remove.
13419
13420 2014-02-12 Tom Tromey <tromey@redhat.com>
13421
13422 * common/rsp-low.c (hexify): Never take strlen of argument.
13423
13424 2014-02-12 Tom Tromey <tromey@redhat.com>
13425
13426 * common/rsp-low.c (bin2hex): Never take strlen of argument.
13427 * remote.c (extended_remote_run, remote_rcmd)
13428 (remote_download_trace_state_variable, remote_save_trace_data)
13429 (remote_set_trace_notes): Update.
13430 * tracepoint.c (encode_source_string, tfile_write_status)
13431 (tfile_write_uploaded_tsv): Update.
13432
13433 2014-02-12 Tom Tromey <tromey@redhat.com>
13434
13435 * tracepoint.c: Include rsp-low.h.
13436 * remote.h (hex2bin, bin2hex, unpack_varlen_hex): Don't declare.
13437 * remote.c: Include rsp-low.h.
13438 (hexchars, ishex, unpack_varlen_hex, pack_nibble, pack_hex_byte)
13439 (fromhex, hex2bin, tohex, bin2hex, remote_escape_output)
13440 (remote_unescape_input): Move to common/rsp-low.c.
13441 * common/rsp-low.h: New file.
13442 * common/rsp-low.c: New file.
13443 * Makefile.in (SFILES): Add common/rsp-low.c.
13444 (HFILES_NO_SRCDIR): Add common/rsp-low.h.
13445 (COMMON_OBS): Add rsp-low.o.
13446 (rsp-low.o): New target.
13447
13448 2014-02-12 Tom Tromey <tromey@redhat.com>
13449
13450 * utils.h: Include print-utils.h.
13451 (host_address_to_string, plongest, pulongest, phex, phex_nz)
13452 (int_string, core_addr_to_string, core_addr_to_string_nz)
13453 (hex_string, hex_string_custom): Don't declare.
13454 * utils.c (NUMCELLS, CELLSIZE, get_cell, decimal2str, pulongest)
13455 (plongest, thirty_two, phex, phex_nz, octal2str, hex_string)
13456 (hex_string_custom, int_string, core_addr_to_string)
13457 (core_addr_to_string_nz, host_address_to_string): Move to
13458 common/print-utils.c.
13459 * common/print-utils.h: New file.
13460 * common/print-utils.c: New file
13461 * Makefile.in (SFILES): Add common/print-utils.c.
13462 (HFILES_NO_SRCDIR): Add common/print-utils.h.
13463 (COMMON_OBS): Add print-utils.o.
13464 (print-utils.o): New target.
13465
13466 2014-02-12 Tom Tromey <tromey@redhat.com>
13467
13468 * nios2-tdep.c (nios2_stub_frame_base_address): Remove.
13469
13470 2014-02-12 Mark Kettenis <kettenis@gnu.org>
13471
13472 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Call obsd_init_abi.
13473
13474 2014-02-12 Mark Kettenis <kettenis@gnu.org>
13475
13476 * inf-ptrace.c (inf_ptrace_xfer_partial): Return TARGET_XFER_EOF
13477 if a PT_IO ptrace request returns sucessfully but indicates that 0
13478 bytes were transferred.
13479
13480 2014-02-12 Pedro Alves <palves@redhat.com>
13481 Kevin Buettner <kevinb@redhat.com>
13482
13483 * gnu-v3-abi.c (build_gdb_vtable_type): Return a type marked with
13484 TYPE_INSTANCE_FLAG_CODE_SPACE.
13485
13486 2014-02-12 Pedro Alves <palves@redhat.com>
13487
13488 * h8300-tdep.c (pseudo_from_raw_register)
13489 (raw_from_pseudo_register): New functions.
13490 (h8300_pseudo_register_read, h8300_pseudo_register_write): Use
13491 them.
13492
13493 2014-02-12 Pedro Alves <palves@redhat.com>
13494
13495 * h8300-tdep.c (h8300_register_sim_regno): New function.
13496 (h8300_gdbarch_init): Install h8300_register_sim_regno as
13497 gdbarch_register_sim_regno hook.
13498
13499 2014-02-12 Sanimir Agovic <sanimir.agovic@intel.com>
13500
13501 * nios2-tdep.c (nios2_stub_frame_base): Remove global.
13502
13503 2014-02-12 Sanimir Agovic <sanimir.agovic@intel.com>
13504
13505 * tic6x-tdep.c (tic6x_gdbarch_init): Call frame_base_set_default.
13506
13507 2014-02-12 Mark Kettenis <kettenis@gnu.org>
13508
13509 * obsd-tdep.h (obsd_init_abi): New prototype.
13510 * obsd-tdep.c: Define enum with OpenBSD signal numbers.
13511 (obsd_gdb_signal_from_target, obsd_gdb_signal_to_target)
13512 (obsd_init_abi): New functions.
13513 * i386obsd-tdep.c: Include "obsd-tdep.h".
13514 (i386obsd_init_abi): Call obsd_init_abi.
13515 * amd64obsd-tdep.c: Include "obsd-tdep.h".
13516 (amd64obsd_init_abi): Call obsd_init_abi.
13517 * configure.tgt (i[34567]86-*-openbsd*, x86_64-*-openbsd*): Add
13518 obsd-tdep.c to gdb_target_obs.
13519
13520 2014-02-11 Jose E. Marchesi <jose.marchesi@oracle.com>
13521
13522 * sparc64-tdep.c (sparc64_store_arguments): Do not align complex
13523 double float arguments to 16-byte in the argument slots.
13524
13525 2014-02-11 Doug Evans <xdje42@gmail.com>
13526
13527 * configure.ac: Don't crash if pkg-config is not found and guile
13528 wasn't explicitly requested. Use AC_MSG_ERROR instead of AC_ERROR
13529 in guile checks.
13530 * configure: Regenerate.
13531
13532 2014-02-11 Yao Qi <yao@codesourcery.com>
13533
13534 * aix-thread.c (aix_thread_xfer_partial): Update comments.
13535 * auxv.c (procfs_xfer_auxv, memory_xfer_auxv): Likewise.
13536 * bsd-uthread.c (bsd_uthread_xfer_partial): Likewise.
13537 * gnu-nat.c (gnu_xfer_memory): Likewise.
13538 * inf-ptrace.c (inf_ptrace_xfer_partial): Likewise.
13539 * rs6000-nat.c (rs6000_xfer_partial): Likewise.
13540 * sparc-nat.c (sparc_xfer_wcookie): Likewise.
13541 * spu-linux-nat.c (spu_proc_xfer_spu): Likewise.
13542
13543 2014-02-11 Yao Qi <yao@codesourcery.com>
13544
13545 * target.h (enum target_xfer_error): Rename to ...
13546 (enum target_xfer_status): ... it. New. All users updated.
13547 (enum target_xfer_status) <TARGET_XFER_OK>, <TARGET_XFER_EOF>:
13548 New.
13549 (TARGET_XFER_STATUS_ERROR_P): New macro.
13550 (target_xfer_error_to_string): Remove declaration.
13551 (target_xfer_status_to_string): Declare.
13552 (target_xfer_partial_ftype): Adjust it.
13553 (struct target_ops) <to_xfer_partial>: Return
13554 target_xfer_status. Add argument xfered_len. Update
13555 comments.
13556 * target.c (target_xfer_error_to_string): Rename to ...
13557 (target_xfer_status_to_string): ... it. New. All callers
13558 updated.
13559 (target_read_live_memory): Likewise. Call target_xfer_partial
13560 instead of target_read.
13561 (memory_xfer_live_readonly_partial): Return
13562 target_xfer_status. Add argument xfered_len.
13563 (raw_memory_xfer_partial): Likewise.
13564 (memory_xfer_partial_1): Likewise.
13565 (memory_xfer_partial): Likewise.
13566 (target_xfer_partial): Likewise. Check *XFERED_LEN is set
13567 properly. Update debug message.
13568 (default_xfer_partial, current_xfer_partial): Likewise.
13569 (target_write_partial): Likewise.
13570 (target_read_partial): Likewise. All callers updated.
13571 (read_whatever_is_readable): Likewise.
13572 (target_write_with_progress): Likewise.
13573 (target_read_alloc_1): Likewise.
13574
13575 * aix-thread.c (aix_thread_xfer_partial): Likewise.
13576 * auxv.c (procfs_xfer_auxv): Likewise.
13577 (ld_so_xfer_auxv, memory_xfer_auxv): Likewise.
13578 * bfd-target.c (target_bfd_xfer_partial): Likewise.
13579 * bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
13580 * bsd-uthread.c (bsd_uthread_xfer_partia): Likewise.
13581 * corefile.c (read_memory): Adjust.
13582 * corelow.c (core_xfer_partial): Likewise.
13583 * ctf.c (ctf_xfer_partial): Likewise.
13584 * darwin-nat.c (darwin_read_dyld_info): Likewise. All callers
13585 updated.
13586 (darwin_xfer_partial): Likewise.
13587 * exec.c (section_table_xfer_memory_partial): Likewise. All
13588 callers updated.
13589 (exec_xfer_partial): Likewise.
13590 * exec.h (section_table_xfer_memory_partial): Update
13591 declaration.
13592 * gnu-nat.c (gnu_xfer_memory): Likewise. Assert 'res' is not
13593 negative.
13594 (gnu_xfer_partial): Likewise.
13595 * ia64-hpux-nat.c (ia64_hpux_xfer_memory_no_bs): Likewise.
13596 (ia64_hpux_xfer_memory, ia64_hpux_xfer_uregs): Likewise.
13597 (ia64_hpux_xfer_solib_got): Likewise.
13598 * inf-ptrace.c (inf_ptrace_xfer_partial): Likewise. Change
13599 type of 'partial_len' to ULONGEST.
13600 * inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
13601 * linux-nat.c (linux_xfer_siginfo ): Likewise.
13602 (linux_nat_xfer_partial): Likewise.
13603 (linux_proc_xfer_partial, linux_xfer_partial): Likewise.
13604 (linux_proc_xfer_spu, linux_nat_xfer_osdata): Likewise.
13605 * monitor.c (monitor_xfer_memory): Likewise.
13606 (monitor_xfer_partial): Likewise.
13607 * procfs.c (procfs_xfer_partial): Likewise.
13608 * record-btrace.c (record_btrace_xfer_partial): Likewise.
13609 * record-full.c (record_full_xfer_partial): Likewise.
13610 (record_full_core_xfer_partial): Likewise.
13611 * remote-sim.c (gdbsim_xfer_memory): Likewise.
13612 (gdbsim_xfer_partial): Likewise.
13613 * remote.c (remote_write_bytes_aux): Likewise. All callers
13614 updated.
13615 (remote_write_bytes, remote_read_bytes): Likewise. All
13616 callers updated.
13617 (remote_flash_erase): Likewise. All callers updated.
13618 (remote_write_qxfer): Likewise. All callers updated.
13619 (remote_read_qxfer): Likewise. All callers updated.
13620 (remote_xfer_partial): Likewise.
13621 * rs6000-nat.c (rs6000_xfer_partial): Likewise.
13622 (rs6000_xfer_shared_libraries): Likewise.
13623 * sol-thread.c (sol_thread_xfer_partial): Likewise.
13624 (sol_thread_xfer_partial): Likewise.
13625 * sparc-nat.c (sparc_xfer_wcookie): Likewise.
13626 (sparc_xfer_partial): Likewise.
13627 * spu-linux-nat.c (spu_proc_xfer_spu): Likewise. All callers
13628 updated.
13629 (spu_xfer_partial): Likewise.
13630 * spu-multiarch.c (spu_xfer_partial): Likewise.
13631 * tracepoint.c (tfile_xfer_partial): Likewise.
13632 * windows-nat.c (windows_xfer_memory): Likewise.
13633 (windows_xfer_shared_libraries): Likewise.
13634 (windows_xfer_partial): Likewise.
13635 * valprint.c: Replace 'target_xfer_error' with
13636 'target_xfer_status' in comments.
13637
13638 2014-02-11 Simon Marchi <simon.marchi@ericsson.com> (tiny patch)
13639
13640 Checked in by Joel Brobecker <brobecker@adacore.com>.
13641 * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Fix comment.
13642
13643 2014-02-11 Joel Brobecker <brobecker@adacore.com>
13644
13645 * symfile-debug.c (debug_qf_expand_symtabs_matching): Reformat
13646 function parameters.
13647
13648 2014-02-10 Will Newton <will.newton@linaro.org>
13649
13650 * elfread.c (elf_rel_plt_read): Look for a .got section if
13651 looking up .got.plt fails.
13652 (elf_gnu_ifunc_resolve_by_got): Call gdbarch_addr_bits_remove
13653 on address passed to elf_gnu_ifunc_record_cache.
13654 (elf_gnu_ifunc_resolve_addr): Likewise.
13655 (elf_gnu_ifunc_resolver_return_stop): Likewise.
13656
13657 2014-02-10 Jose E. Marchesi <jose.marchesi@oracle.com>
13658
13659 * sparc-tdep.c (sparc_in_function_epilogue_p): New function.
13660 (X_RETTURN): New macro.
13661 * sparc-tdep.h: sparc_in_function_epilogue_p prototype.
13662
13663 * sparc64-tdep.c (sparc64_init_abi): Hook
13664 sparc_in_function_epilogue_p.
13665
13666 2014-02-10 Gary Benson <gbenson@redhat.com>
13667
13668 * symfile-debug.c (debug_qf_expand_symtabs_matching):
13669 Rename name_matcher to symbol_matcher.
13670
13671 2014-02-10 Gary Benson <gbenson@redhat.com>
13672
13673 * symfile-debug.c (debug_qf_expand_symtabs_matching):
13674 Use expand_symtabs_file_matcher_ftype and
13675 expand_symtabs_symbol_matcher_ftype.
13676
13677 2014-02-10 Joel Brobecker <brobecker@adacore.com>
13678
13679 * ada-lang.c (struct cache_entry, HASH_SIZE): Move definition up.
13680 (struct ada_symbol_cache): New.
13681 (ada_free_symbol_cache): Forward declare.
13682 (struct ada_pspace_data): New.
13683 (ada_pspace_data_handle): New static global.
13684 (get_ada_pspace_data, ada_pspace_data_cleanup)
13685 (ada_init_symbol_cache, ada_free_symbol_cache): New functions.
13686 (cache_space, cache): Delete, now folded inside struct
13687 ada_pspace_data.
13688 (ada_get_symbol_cache): New function.
13689 (ada_clear_symbol_cache, find_entry, cache_symbol): Adjust
13690 implementation.
13691 (_initialize_ada_language): Remove initialization of cache_space.
13692 Move call to observer_attach_inferior_exit up, grouping it
13693 with the other observer registrations inside this function.
13694 Rename command to be more general. Add call to
13695 register_program_space_data_with_cleanup.
13696
13697 2014-02-10 Joel Brobecker <brobecker@adacore.com>
13698
13699 * ada-tasks.c (ada_tasks_new_objfile_observer): Renames
13700 ada_new_objfile_observer.
13701 (ada_tasks_normal_stop_observer): Renames ada_normal_stop_observer.
13702 (_initialize_tasks): Update uses of ada_new_objfile_observer
13703 and ada_tasks_normal_stop_observer.
13704
13705 2014-02-10 Joel Brobecker <brobecker@adacore.com>
13706
13707 * ada-lang.c (ada_evaluate_subexp): Set the type of the value
13708 returned by the 'Length attribute to integer.
13709
13710 2014-02-10 Joel Brobecker <brobecker@adacore.com>
13711
13712 * ada-lang.c (_initialize_ada_language): Initialize
13713 cache_space obstack.
13714
13715 2014-02-10 Joel Brobecker <brobecker@adacore.com>
13716
13717 * ada-lang.c (HASH_SIZE): New macro.
13718 (struct cache_entry): New type.
13719 (cache_space, cache): New static globals.
13720 (ada_clear_symbol_cache, find_entry): New functions.
13721 (lookup_cached_symbol, cache_symbol): Implement.
13722 (ada_new_objfile_observer, ada_free_objfile_observer): New.
13723 (_initialize_ada_language): Attach ada_new_objfile_observer
13724 and ada_free_objfile_observer.
13725
13726 2014-02-10 Joel Brobecker <brobecker@adacore.com>
13727
13728 * ada-lang.c (ada_add_block_symbols, add_defn_to_vec)
13729 (lookup_cached_symbol, ada_add_local_symbols): Add "const" to
13730 struct block * parameter.
13731 (ada_lookup_symbol_list_worker): Constify local variable "block".
13732 Remove cast which is no longer necessary.
13733
13734 2014-02-10 Doug Evans <xdje42@gmail.com>
13735
13736 Add Guile as an extension language.
13737 * NEWS: Mention Guile scripting.
13738 * Makefile.in (SUBDIR_GUILE_OBS): New variable.
13739 (SUBDIR_GUILE_SRCS, SUBDIR_GUILE_DEPS): New variables
13740 (SUBDIR_GUILE_LDFLAGS, SUBDIR_GUILE_CFLAGS): New variables.
13741 (INTERNAL_CPPFLAGS): Add GUILE_CPPFLAGS.
13742 (CLIBS): Add GUILE_LIBS.
13743 (install-guile): New rule.
13744 (guile.o): New rule.
13745 (scm-arch.o, scm-auto-load.o, scm-block.o): New rules.
13746 (scm-breakpoint.o, scm-disasm.o, scm-exception.o): New rules.
13747 (scm-frame.o, scm-iterator.o, scm-lazy-string.o): New rules.
13748 (scm-math.o, scm-objfile.o, scm-ports.o): New rules.
13749 (scm-pretty-print.o, scm-safe-call.o, scm-gsmob.o): New rules.
13750 (scm-string.o, scm-symbol.o, scm-symtab.o): New rules.
13751 (scm-type.o, scm-utils.o, scm-value.o): New rules.
13752 * configure.ac: New option --with-guile.
13753 * configure: Regenerate.
13754 * config.in: Regenerate.
13755 * auto-load.c: Remove #include "python/python.h". Add #include
13756 "gdb/section-scripts.h".
13757 (source_section_scripts): Handle Guile scripts.
13758 (_initialize_auto_load): Add name of Guile objfile script to
13759 scripts-directory help text.
13760 * breakpoint.c (condition_command): Tweak comment to include Scheme.
13761 * breakpoint.h (gdbscm_breakpoint_object): Add forward decl.
13762 (struct breakpoint): New member scm_bp_object.
13763 * defs.h (enum command_control_type): New value guile_control.
13764 * cli/cli-cmds.c: Remove #include "python/python.h". Add #include
13765 "extension.h".
13766 (show_user): Update comment.
13767 (_initialize_cli_cmds): Update help text for "show user". Update help
13768 text for max-user-call-depth.
13769 * cli/cli-script.c: Remove #include "python/python.h". Add #include
13770 "extension.h".
13771 (multi_line_command_p): Add guile_control.
13772 (print_command_lines): Handle guile_control.
13773 (execute_control_command, recurse_read_control_structure): Ditto.
13774 (process_next_line): Recognize "guile" commands.
13775 * disasm.c (gdb_disassemble_info): Make non-static.
13776 * disasm.h: #include "dis-asm.h".
13777 (struct gdbarch): Add forward decl.
13778 (gdb_disassemble_info): Declare.
13779 * extension.c: #include "guile/guile.h".
13780 (extension_languages): Add guile.
13781 (get_ext_lang_defn): Handle EXT_LANG_GDB.
13782 * extension.h (enum extension_language): New value EXT_LANG_GUILE.
13783 * gdbtypes.c (get_unsigned_type_max): New function.
13784 (get_signed_type_minmax): New function.
13785 * gdbtypes.h (get_unsigned_type_max): Declare.
13786 (get_signed_type_minmax): Declare.
13787 * guile/README: New file.
13788 * guile/guile-internal.h: New file.
13789 * guile/guile.c: New file.
13790 * guile/guile.h: New file.
13791 * guile/scm-arch.c: New file.
13792 * guile/scm-auto-load.c: New file.
13793 * guile/scm-block.c: New file.
13794 * guile/scm-breakpoint.c: New file.
13795 * guile/scm-disasm.c: New file.
13796 * guile/scm-exception.c: New file.
13797 * guile/scm-frame.c: New file.
13798 * guile/scm-gsmob.c: New file.
13799 * guile/scm-iterator.c: New file.
13800 * guile/scm-lazy-string.c: New file.
13801 * guile/scm-math.c: New file.
13802 * guile/scm-objfile.c: New file.
13803 * guile/scm-ports.c: New file.
13804 * guile/scm-pretty-print.c: New file.
13805 * guile/scm-safe-call.c: New file.
13806 * guile/scm-string.c: New file.
13807 * guile/scm-symbol.c: New file.
13808 * guile/scm-symtab.c: New file.
13809 * guile/scm-type.c: New file.
13810 * guile/scm-utils.c: New file.
13811 * guile/scm-value.c: New file.
13812 * guile/lib/gdb.scm: New file.
13813 * guile/lib/gdb/boot.scm: New file.
13814 * guile/lib/gdb/experimental.scm: New file.
13815 * guile/lib/gdb/init.scm: New file.
13816 * guile/lib/gdb/iterator.scm: New file.
13817 * guile/lib/gdb/printing.scm: New file.
13818 * guile/lib/gdb/types.scm: New file.
13819 * data-directory/Makefile.in (GUILE_SRCDIR): New variable.
13820 (VPATH): Add $(GUILE_SRCDIR).
13821 (GUILE_DIR): New variable.
13822 (GUILE_INSTALL_DIR, GUILE_FILES): New variables.
13823 (all): Add stamp-guile dependency.
13824 (stamp-guile): New rule.
13825 (clean-guile, install-guile, uninstall-guile): New rules.
13826 (install-only): Add install-guile dependency.
13827 (uninstall): Add uninstall-guile dependency.
13828 (clean): Add clean-guile dependency.
13829
13830 2014-02-09 Doug Evans <xdje42@gmail.com>
13831
13832 Revert this patch (which I approved, mea culpa).
13833
13834 2014-02-08 Mark Kettenis <kettenis@gnu.org>
13835
13836 * Makefile.in (all-lib): Remove.
13837 ($(LIBGNU) $(GNULIB_H)): Replace with gits of remove all-lib target.
13838
13839 2014-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
13840
13841 Fix Python stack corruption.
13842 * python/py-linetable.c (ltpy_get_pcs_for_line, ltpy_has_line): Use
13843 gdb_py_longest.
13844
13845 2014-02-08 Mark Kettenis <kettenis@gnu.org>
13846
13847 * Makefile.in (all-lib): Remove.
13848 ($(LIBGNU) $(GNULIB_H)): Replace with gits of remove all-lib target.
13849
13850 2014-02-07 Doug Evans <dje@google.com>
13851
13852 * extension-priv.h (extension_language_script_ops): Add comment.
13853 (extension_language_ops): Add comment.
13854 (active_ext_lang_state): Fix typo in comment.
13855
13856 2014-02-07 Pedro Alves <palves@redhat.com>
13857
13858 PR breakpoints/16292
13859 * infrun.c (handle_signal_stop) <signal arrives while stepping
13860 over a breakpoint>: Switch back to the stepping thread.
13861
13862 2014-02-07 Yao Qi <yao@codesourcery.com>
13863
13864 * target.c (target_xfer_partial): Return zero if LEN is zero.
13865
13866 2014-02-07 Yao Qi <yao@codesourcery.com>
13867
13868 * auxv.c (procfs_xfer_auxv): Replace -1 with TARGET_XFER_E_IO.
13869 (ld_so_xfer_auxv): Likewise.
13870 * bfd-target.c (target_bfd_xfer_partial): Likewise.
13871 * bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
13872 * corelow.c (core_xfer_partial): Likewise.
13873 * ctf.c (ctf_xfer_partial): Likewise.
13874 * darwin-nat.c (darwin_read_dyld_info): Likewise.
13875 (darwin_xfer_partial): Likewise.
13876 * exec.c (exec_xfer_partial): Likewise.
13877 * gnu-nat.c (gnu_xfer_partial): Likewise.
13878 * ia64-hpux-nat.c (ia64_hpux_xfer_uregs): Likewise.
13879 * inf-ptrace.c (inf_ptrace_xfer_partial): Likewise.
13880 * inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
13881 * linux-nat.c (linux_xfer_siginfo): Likewise.
13882 (linux_proc_xfer_spu): Likewise.
13883 * procfs.c (procfs_xfer_partial): Likewise.
13884 * record-full.c (record_full_xfer_partial): Likewise.
13885 (record_full_core_xfer_partial): Likewise.
13886 * remote-sim.c (gdbsim_xfer_partial): Likewise.
13887 * remote.c (remote_write_qxfer): Likewise.
13888 (remote_write_qxfer, remote_read_qxfer): Likewise.
13889 (remote_xfer_partial): Likewise.
13890 * rs6000-nat.c (rs6000_xfer_partial): Likewise.
13891 (rs6000_xfer_shared_libraries): Likewise.
13892 * sparc-nat.c (sparc_xfer_wcookie): Likewise.
13893 * spu-linux-nat.c (spu_proc_xfer_spu): Likewise.
13894 (spu_xfer_partial): Likewise.
13895 * target.c (memory_xfer_partial_1): Likewise.
13896 * tracepoint.c (tfile_xfer_partial): Likewise.
13897 * windows-nat.c (windows_xfer_shared_libraries): Likewise.
13898 (windows_xfer_partial): Likewise.
13899
13900 2014-02-07 Yao Qi <yao@codesourcery.com>
13901
13902 * gdbarch.sh (core_xfer_shared_libraries): Returns ULONGEST. Add
13903 comments.
13904 (core_xfer_shared_libraries_aix): Likewise.
13905 * gdbarch.c, gdbarch.h: Regenerated.
13906 * i386-cygwin-tdep.c (windows_core_xfer_shared_libraries): Return
13907 ULONGEST. Change 'len_avail' type to ULONGEST.
13908 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
13909 * rs6000-aix-tdep.h (rs6000_aix_ld_info_to_xml): Update
13910 declaration.
13911 (rs6000_aix_core_xfer_shared_libraries_aix): Return ULONGEST.
13912
13913 2014-02-07 Yao Qi <yao@codesourcery.com>
13914
13915 * corefile.c (memory_error): Get 'exception' from ERR and pass
13916 'exception' to throw_error.
13917
13918 2014-02-06 Doug Evans <xdje42@gmail.com>
13919
13920 * configure.ac (libpython checking): Remove all but python.o from
13921 CONFIG_OBS. Remove all but python.c from CONFIG_SRCS.
13922 * configure: Regenerate.
13923
13924 * Makefile.in (SFILES): Add extension.c.
13925 (HFILES_NO_SRCDIR): Add extension.h, extension-priv.h
13926 (COMMON_OBS): Add extension.o.
13927 * extension.h: New file.
13928 * extension-priv.h: New file.
13929 * extension.c: New file.
13930
13931 * python/python-internal.h: #include "extension.h".
13932 (gdbpy_auto_load_enabled): Declare.
13933 (gdbpy_apply_val_pretty_printer): Declare.
13934 (gdbpy_apply_frame_filter): Declare.
13935 (gdbpy_preserve_values): Declare.
13936 (gdbpy_breakpoint_cond_says_stop): Declare.
13937 (gdbpy_breakpoint_has_cond): Declare.
13938 (void source_python_script_for_objfile): Delete.
13939 * python/python.c: #include "extension-priv.h".
13940 Delete inclusion of "observer.h".
13941 (extension_language_python): Moved here and renamed from
13942 script_language_python in py-auto-load.c.
13943 Redefined to be of type extension_language_defn.
13944 (python_extension_script_ops): New global.
13945 (python_extension_ops): New global.
13946 (struct python_env): New member previous_active.
13947 (restore_python_env): Call restore_active_ext_lang.
13948 (ensure_python_env): Call set_active_ext_lang.
13949 (gdbpy_clear_quit_flag): Renamed from clear_quit_flag, made static.
13950 New arg extlang.
13951 (gdbpy_set_quit_flag): Renamed from set_quit_flag, made static.
13952 New arg extlang.
13953 (gdbpy_check_quit_flag): Renamed from check_quit_flag, made static.
13954 New arg extlang.
13955 (gdbpy_eval_from_control_command): Renamed from
13956 eval_python_from_control_command, made static. New arg extlang.
13957 (gdbpy_source_script) Renamed from source_python_script, made static.
13958 New arg extlang.
13959 (gdbpy_before_prompt_hook): Renamed from before_prompt_hook. Change
13960 result to int. New arg extlang.
13961 (gdbpy_source_objfile_script): Renamed from
13962 source_python_script_for_objfile, made static. New arg extlang.
13963 (gdbpy_start_type_printers): Renamed from start_type_printers, made
13964 static. New args extlang, extlang_printers. Change result type to
13965 "void".
13966 (gdbpy_apply_type_printers): Renamed from apply_type_printers, made
13967 static. New arg extlang. Rename arg printers to extlang_printers
13968 and change type to ext_lang_type_printers *.
13969 (gdbpy_free_type_printers): Renamed from free_type_printers, made
13970 static. Replace argument arg with extlang, extlang_printers.
13971 (!HAVE_PYTHON, eval_python_from_control_command): Delete.
13972 (!HAVE_PYTHON, source_python_script): Delete.
13973 (!HAVE_PYTHON, gdbpy_should_stop): Delete.
13974 (!HAVE_PYTHON, gdbpy_breakpoint_has_py_cond): Delete.
13975 (!HAVE_PYTHON, start_type_printers): Delete.
13976 (!HAVE_PYTHON, apply_type_printers): Delete.
13977 (!HAVE_PYTHON, free_type_printers): Delete.
13978 (_initialize_python): Delete call to observer_attach_before_prompt.
13979 (finalize_python): Set/restore active extension language.
13980 (gdbpy_finish_initialization) Renamed from
13981 finish_python_initialization, made static. New arg extlang.
13982 (gdbpy_initialized): New function.
13983 * python/python.h: #include "extension.h". Delete #include
13984 "value.h", "mi/mi-cmds.h".
13985 (extension_language_python): Declare.
13986 (GDBPY_AUTO_FILE_NAME): Delete.
13987 (enum py_bt_status): Moved to extension.h and renamed to
13988 ext_lang_bt_status.
13989 (enum frame_filter_flags): Moved to extension.h.
13990 (enum py_frame_args): Moved to extension.h and renamed to
13991 ext_lang_frame_args.
13992 (finish_python_initialization): Delete.
13993 (eval_python_from_control_command): Delete.
13994 (source_python_script): Delete.
13995 (apply_val_pretty_printer): Delete.
13996 (apply_frame_filter): Delete.
13997 (preserve_python_values): Delete.
13998 (gdbpy_script_language_defn): Delete.
13999 (gdbpy_should_stop, gdbpy_breakpoint_has_py_cond): Delete.
14000 (start_type_printers, apply_type_printers, free_type_printers): Delete.
14001
14002 * auto-load.c: #include "extension.h".
14003 (GDB_AUTO_FILE_NAME): Delete.
14004 (auto_load_gdb_scripts_enabled): Make public. New arg extlang.
14005 (script_language_gdb): Delete, moved to extension.c and renamed to
14006 extension_language_gdb.
14007 (source_gdb_script_for_objfile): Delete.
14008 (auto_load_pspace_info): New member unsupported_script_warning_printed.
14009 (loaded_script): Change type of language member to
14010 struct extension_language_defn *.
14011 (init_loaded_scripts_info): Initialize
14012 unsupported_script_warning_printed.
14013 (maybe_add_script): Make static. Change type of language arg to
14014 struct extension_language_defn *.
14015 (clear_section_scripts): Reset unsupported_script_warning_printed.
14016 (auto_load_objfile_script_1): Rewrite to use extension language API.
14017 (auto_load_objfile_script): Make public. Remove support-compiled-in
14018 and auto-load-enabled checks, moved to auto_load_scripts_for_objfile.
14019 (source_section_scripts): Rewrite to use extension language API.
14020 (load_auto_scripts_for_objfile): Rewrite to use
14021 auto_load_scripts_for_objfile.
14022 (collect_matching_scripts_data): Change type of language member to
14023 struct extension_language_defn *.
14024 (auto_load_info_scripts): Change type of language arg to
14025 struct extension_language_defn *.
14026 (unsupported_script_warning_print): New function.
14027 (script_not_found_warning_print): Make static.
14028 (_initialize_auto_load): Rewrite construction of scripts-directory
14029 help.
14030 * auto-load.h (struct objfile): Add forward decl.
14031 (struct script_language): Delete.
14032 (struct auto_load_pspace_info): Add forward decl.
14033 (struct extension_language_defn): Add forward decl.
14034 (maybe_add_script): Delete.
14035 (auto_load_objfile_script): Declare.
14036 (script_not_found_warning_print): Delete.
14037 (auto_load_info_scripts): Update prototype.
14038 (auto_load_gdb_scripts_enabled): Declare.
14039 * python/py-auto-load.c (gdbpy_auto_load_enabled): Renamed from
14040 auto_load_python_scripts_enabled and made public.
14041 (script_language_python): Delete, moved to python.c.
14042 (gdbpy_script_language_defn): Delete.
14043 (info_auto_load_python_scripts): Update to use
14044 extension_language_python.
14045
14046 * breakpoint.c (condition_command): Replace call to
14047 gdbpy_breakpoint_has_py_cond with call to get_breakpoint_cond_ext_lang.
14048 (bpstat_check_breakpoint_conditions): Replace call to gdbpy_should_stop
14049 with call to breakpoint_ext_lang_cond_says_stop.
14050 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Renamed
14051 from gdbpy_should_stop. Change result type to enum scr_bp_stop.
14052 New arg slang. Return SCR_BP_STOP_UNSET if py_bp_object is NULL.
14053 (gdbpy_breakpoint_has_cond): Renamed from gdbpy_breakpoint_has_py_cond.
14054 New arg slang.
14055 (local_setattro): Print name of extension language with existing
14056 stop condition.
14057
14058 * valprint.c (val_print, value_print): Update to call
14059 apply_ext_lang_val_pretty_printer.
14060 * cp-valprint.c (cp_print_value): Update call to
14061 apply_ext_lang_val_pretty_printer.
14062 * python/py-prettyprint.c: Remove #ifdef HAVE_PYTHON.
14063 (gdbpy_apply_val_pretty_printer): Renamed from
14064 apply_val_pretty_printer. New arg extlang.
14065 (!HAVE_PYTHON, apply_val_pretty_printer): Delete.
14066
14067 * cli/cli-cmds.c (source_script_from_stream): Rewrite to use
14068 extension language API.
14069 * cli/cli-script.c (execute_control_command): Update to call
14070 eval_ext_lang_from_control_command.
14071
14072 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Update to use
14073 enum ext_lang_bt_status values. Update call to
14074 apply_ext_lang_frame_filter.
14075 (mi_cmd_stack_list_locals): Ditto.
14076 (mi_cmd_stack_list_args): Ditto.
14077 (mi_cmd_stack_list_variables): Ditto.
14078 * mi/mi-main.c: Delete #include "python/python-internal.h".
14079 Add #include "extension.h".
14080 (mi_cmd_list_features): Replace reference to python internal variable
14081 gdb_python_initialized with call to ext_lang_initialized_p.
14082
14083 * stack.c (backtrace_command_1): Update to use enum ext_lang_bt_status.
14084 Update to use enum ext_lang_frame_args. Update to call
14085 apply_ext_lang_frame_filter.
14086 * python/py-framefilter.c (extract_sym): Update to use enum
14087 ext_lang_bt_status.
14088 (extract_value, py_print_type, py_print_value): Ditto.
14089 (py_print_single_arg, enumerate_args, enumerate_locals): Ditto.
14090 (py_mi_print_variables, py_print_locals, py_print_args): Ditto.
14091 (py_print_frame): Ditto.
14092 (gdbpy_apply_frame_filter): Renamed from apply_frame_filter.
14093 New arg extlang. Update to use enum ext_lang_bt_status.
14094
14095 * top.c (gdb_init): Delete #ifdef HAVE_PYTHON call to
14096 finish_python_initialization. Replace with call to
14097 finish_ext_lang_initialization.
14098
14099 * typeprint.c (do_free_global_table): Update to call
14100 free_ext_lang_type_printers.
14101 (create_global_typedef_table): Update to call
14102 start_ext_lang_type_printers.
14103 (find_global_typedef): Update to call apply_ext_lang_type_printers.
14104 * typeprint.h (struct ext_lang_type_printers): Add forward decl.
14105 (type_print_options): Change type of global_printers from "void *"
14106 to "struct ext_lang_type_printers *".
14107
14108 * value.c (preserve_values): Update to call preserve_ext_lang_values.
14109 * python/py-value.c: Remove #ifdef HAVE_PYTHON.
14110 (gdbpy_preserve_values): Renamed from preserve_python_values.
14111 New arg extlang.
14112 (!HAVE_PYTHON, preserve_python_values): Delete.
14113
14114 * utils.c (quit_flag): Delete, moved to extension.c.
14115 (clear_quit_flag, set_quit_flag, check_quit_flag): Delete, moved to
14116 extension.c.
14117
14118 * eval.c: Delete #include "python/python.h".
14119 * main.c: Delete #include "python/python.h".
14120
14121 * defs.h: Update comment.
14122
14123 2014-02-06 Joel Brobecker <brobecker@adacore.com>
14124
14125 GDB 7.7 released.
14126
14127 2014-02-05 Mark Kettenis <kettenis@gnu.org>
14128
14129 * c-exp.y (YYPRINT, c_print_token): Only define if YYBISON is
14130 defined.
14131
14132 2014-02-05 Yao Qi <yao@codesourcery.com>
14133
14134 * remote.c (remote_pass_signals): Remove local 'buf' and use
14135 rs->buf.
14136 (remote_program_signals): Likewise.
14137
14138 2014-02-05 Yao Qi <yao@codesourcery.com>
14139
14140 * ctf.c: Include "inferior.h" and "gdbthread.h".
14141 (CTF_PID): A new macro.
14142 (ctf_open): Call inferior_appeared and add_thread_silent.
14143 (ctf_close): Call exit_inferior_silent and set inferior_ptid.
14144 (ctf_thread_alive): New function.
14145 (init_ctf_ops): Install ctf_thread_alive to to_thread_alive.
14146
14147 2014-02-05 Yao Qi <yao@codesourcery.com>
14148
14149 Revert this patch:
14150
14151 2013-05-24 Yao Qi <yao@codesourcery.com>
14152
14153 * tracepoint.c (TFILE_PID): Remove.
14154 (tfile_open): Don't add thread and inferior.
14155 (tfile_close): Don't set 'inferior_ptid'. Don't call
14156 exit_inferior_silent.
14157 (tfile_thread_alive): Remove.
14158 (init_tfile_ops): Don't set field 'to_thread_alive' of
14159 tfile_ops.
14160
14161 2014-02-04 Christian Eggers <ceggers@gmx.de> (tiny change)
14162
14163 * remote.c (remote_start_remote): Call remote_check_symbols even
14164 if only symbol-file (not file) has been given.
14165
14166 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
14167
14168 * gdbarch.sh (skip_entrypoint): New callback.
14169 * gdbarch.c, gdbarch.h: Regenerate.
14170 * symtab.c (skip_prologue_sal): Call gdbarch_skip_entrypoint.
14171 * infrun.c (fill_in_stop_func): Likewise.
14172 * ppc-linux-tdep.c: Include "elf/ppc64.h".
14173 (ppc_elfv2_elf_make_msymbol_special): New function.
14174 (ppc_elfv2_skip_entrypoint): Likewise.
14175 (ppc_linux_init_abi): Install them for ELFv2.
14176
14177 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
14178
14179 * ppc-sysv-tdep.c (ppc64_aggregate_candidate): New routine.
14180 (ppc64_elfv2_abi_homogeneous_aggregate): Likewise.
14181 (ppc64_sysv_abi_push_param): Handle ELFv2 homogeneous structs.
14182 (ppc64_sysv_abi_return_value): Likewise. Also, handle small
14183 structures returned in GPRs.
14184
14185 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
14186
14187 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Use correct
14188 offset to the stack parameter list for the ELFv2 ABI.
14189
14190 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
14191
14192 * ppc-linux-tdep.c (ppc_linux_init_abi): Only call
14193 set_gdbarch_convert_from_func_ptr_addr and
14194 set_gdbarch_elf_make_msymbol_special for ELFv1.
14195 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_param): Only handle
14196 function descriptors on ELFv1.
14197 (ppc64_sysv_abi_push_dummy_call): Likewise. On ELFv2,
14198 set up r12 at function entry.
14199
14200 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
14201
14202 * ppc-tdep.h (enum powerpc_elf_abi): New data type.
14203 (struct gdbarch_tdep): New member elf_abi.
14204
14205 * rs6000-tdep.c: Include "elf/ppc64.h".
14206 (rs6000_gdbarch_init): Detect ELF ABI version.
14207
14208 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
14209
14210 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_freg): Use correct order
14211 within a register pair holding a DFP 128-bit value on little-endian.
14212 (ppc64_sysv_abi_return_value_base): Likewise.
14213 * rs6000-tdep.c (dfp_pseudo_register_read): Likewise.
14214 (dfp_pseudo_register_write): Likewise.
14215
14216 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
14217
14218 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_freg): Use correct
14219 offset on little-endian when passing _Decimal32.
14220 (ppc64_sysv_abi_return_value_base): Likewise for return values.
14221
14222 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
14223
14224 * rs6000-tdep.c (efpr_pseudo_register_read): Use correct offset
14225 of the overlapped FP register within the VSX register on little-
14226 endian platforms.
14227 (efpr_pseudo_register_write): Likewise.
14228
14229 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
14230
14231 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_val): Use correct
14232 offset on little-endian when passing small structures.
14233
14234 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
14235
14236 * ppc-sysv-tdep.c (get_decimal_float_return_value): Update comment.
14237 (struct ppc64_sysv_argpos): New data structure.
14238 (ppc64_sysv_abi_push_float): Remove.
14239 (ppc64_sysv_abi_push_val): New function.
14240 (ppc64_sysv_abi_push_integer): Likewise.
14241 (ppc64_sysv_abi_push_freg): Likewise.
14242 (ppc64_sysv_abi_push_vreg): Likewise.
14243 (ppc64_sysv_abi_push_param): Likewise.
14244 (ppc64_sysv_abi_push_dummy_call): Refactor to use those new routines.
14245 (ppc64_sysv_abi_return_value_base): New function.
14246 (ppc64_sysv_abi_return_value): Refactor to use it.
14247
14248 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
14249
14250 * NEWS: Document new target powerpc64le-*-linux*.
14251
14252 2014-02-04 Mark Kettenis <kettenis@gnu.org>
14253
14254 * sparc64obsd-tdep.c (sparc64obsd_gregset): New variable.
14255 (sparc64obsd_supply_gregset): Handle registers sets used in ELF
14256 core dumps.
14257 (sparc64obsd_init_abi): Adjust minimum size of the general purpose
14258 register set used in ELF core dumps. Add floating-point register set.
14259
14260 2014-02-03 Kevin Buettner <kevinb@redhat.com>
14261
14262 * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Rewrite
14263 dwarf2_to_gdb[] table using symbolic constants. Adjust
14264 penultimate entry from number representing the PC register
14265 to symbolic constant representing the MDR register. Add
14266 constant for the PC register to the end of the table.
14267
14268 2014-02-03 Mark Kettenis <kettenis@gnu.org>
14269
14270 * bsd-kvm.c: Include <sys/param.h>
14271
14272 2014-02-03 Mark Kettenis <kettenis@gnu.org>
14273
14274 * sparc64nbsd-nat.c (sparc64nbsd_supply_fpregset): Fix prototype.
14275
14276 2014-01-31 Joel Brobecker <brobecker@adacore.com>
14277
14278 * ada-lang.h (clear_ada_sym_cache): Delete.
14279
14280 2014-01-30 Ulrich Weigand  <uweigand@de.ibm.com>
14281
14282 * auxv.c (fprint_target_auxv): Handle AT_HWCAP2.
14283
14284 2014-01-29 Jose E. Marchesi <jose.marchesi@oracle.com>
14285
14286 * sparc64-linux-tdep.c (sparc64_linux_step_trap): Get PC from
14287 the sigreturn register save area only if the syscall is
14288 sigreturn.
14289
14290 2014-01-29 Joel Brobecker <brobecker@adacore.com>
14291
14292 * valops.c (value_slice): Minor reformatting.
14293
14294 2014-01-28 Ulrich Weigand  <uweigand@de.ibm.com>
14295
14296 * ppc64-tdep.c (ppc64_standard_linkage7): Fix typo.
14297
14298 2014-01-28 Joel Brobecker <brobecker@adacore.com>
14299
14300 * ada-lang.c (maint_set_ada_cmdlist, maint_show_ada_cmdlist):
14301 New static globals.
14302 (maint_set_ada_cmd, maint_show_ada_cmd): New functions.
14303 (ada_ignore_descriptive_types_p): New static global.
14304 (find_parallel_type_by_descriptive_type): Return immediately
14305 if ada_ignore_descriptive_types_p is set.
14306 (_initialize_ada_language): Register new commands "maintenance
14307 set ada", "maintenance show ada", "maintenance set ada
14308 ignore-descriptive-types" and "maintenance show ada
14309 ignore-descriptive-types".
14310 * NEWS: Add entry for new "maint ada set/show
14311 ignore-descriptive-types" commands.
14312
14313 2014-01-27 Markus Metzger <markus.t.metzger@intel.com>
14314
14315 * record-btrace.c (record_btrace_close): Call btrace_teardown
14316 for all threads.
14317
14318 2014-01-27 Joel Brobecker <brobecker@adacore.com>
14319
14320 * ada-lang.c: Remove "#ifdef UI_OUT" condition for including
14321 "ui-out.h".
14322
14323 2014-01-27 Joel Brobecker <brobecker@adacore.com>
14324
14325 * ada-typeprint (type_is_full_subrange_of_target_type):
14326 New function.
14327 (print_range): Add parameter bounds_prefered_p. If not set,
14328 try printing range types using the name of their base type.
14329 (print_range_type): Add parameter bounds_prefered_p.
14330 Use it in call to print_range.
14331 (print_array_type, ada_print_type): Update calls to print_range
14332 and print_range_type.
14333
14334 2014-01-27 Joel Brobecker <brobecker@adacore.com>
14335
14336 * ada-typeprint.c (print_array_type, print_choices, print_range)
14337 (print_range_bound, print_dynamic_range_bound, print_range_type):
14338 Remove declaration.
14339
14340 2014-01-27 Joel Brobecker <brobecker@adacore.com>
14341
14342 * ada-typeprint.c (print_range): Add missing empty line
14343 after local declaration.
14344
14345 2014-01-27 Joel Brobecker <brobecker@adacore.com>
14346
14347 * ada-valprint.c (print_optional_low_bound): Get index_type's
14348 target type for as long as it is a TYPE_CODE_RANGE.
14349
14350 2014-01-27 Joel Brobecker <brobecker@adacore.com>
14351
14352 * procfs.c (procfs_make_note_section): Remove assertion and
14353 associated comment.
14354
14355 2014-01-24 Yao Qi <yao@codesourcery.com>
14356
14357 * remote.c (remote_read_bytes): Change type of len to ULONGEST.
14358 * corelow.c (get_core_siginfo): Likewise.
14359
14360 2014-01-24 Yao Qi <yao@codesourcery.com>
14361
14362 * remote.c (remote_write_bytes_aux): Change type of 'len' to
14363 ULONGEST. Don't check 'len' is negative.
14364 (remote_write_bytes): Change type of 'len' to ULONGEST.
14365
14366 2014-01-23 Tom Tromey <tromey@redhat.com>
14367
14368 PR python/16485:
14369 * python/lib/gdb/FrameDecorator.py: (FrameVars.fetch_frame_args):
14370 Handle exception from frame.block.
14371 (FrameVars.fetch_frame_locals): Likewise.
14372
14373 2014-01-23 Tom Tromey <tromey@redhat.com>
14374
14375 PR python/16487:
14376 * python/py-framefilter.c (py_print_frame): Don't call Py_DECREF
14377 on a NULL pointer. Move "goto error" to correct place.
14378
14379 2014-01-23 Tom Tromey <tromey@redhat.com>
14380
14381 PR python/16491:
14382 * python/py-framefilter.c (apply_frame_filter): Call
14383 ensure_python_env after computing gdbarch.
14384
14385 2014-01-23 Yao Qi <yao@codesourcery.com>
14386
14387 * target.c (raw_memory_xfer_partial): Change argument type
14388 from void * to gdb_byte *.
14389 (memory_xfer_partial_1, memory_xfer_partial): Likewise.
14390
14391 2014-01-22 Doug Evans <dje@google.com>
14392
14393 New gdbserver option --debug-format=timestamp.
14394 * NEWS: Mention it.
14395
14396 2014-01-22 Andreas Arnez <arnez@vnet.linux.ibm.com>
14397
14398 * syscalls/s390x-linux.xml: New file.
14399 * syscalls/s390-linux.xml: New file.
14400 * s390-linux-tdep.c (XML_SYSCALL_FILENAME_S390): New macro.
14401 (XML_SYSCALL_FILENAME_S390X): Likewise.
14402 (op_svc): New enum value for SVC opcode.
14403 (s390_sigtramp_frame_sniffer): Replace literal by 'op_svc'.
14404 (s390_linux_get_syscall_number): New function.
14405 (s390_gdbarch_init): Register '*get_syscall_number' and the
14406 syscall xml file name.
14407 * data-directory/Makefile.in (SYSCALLS_FILES): Add
14408 "s390-linux.xml" and "s390x-linux.xml".
14409 * NEWS: Announce new feature.
14410
14411 2014-01-22 Baruch Siach <baruch@tkos.co.il>
14412
14413 * xtensa-tdep.h (xtensa_elf_greg_t): Change type to uint32_t.
14414
14415 2014-01-22 Pedro Alves <palves@redhat.com>
14416
14417 * xtensa-config.c: Include defs.h.
14418
14419 2014-01-22 Joel Brobecker <brobecker@adacore.com>
14420
14421 * common/common-utils.h: Add "ARI:" comment beside __func__
14422 reference.
14423
14424 2014-01-22 Joel Brobecker <brobecker@adacore.com>
14425
14426 * common/common-utils.h (FUNCTION_NAME): Expand the macro's
14427 documentation a bit.
14428
14429 2014-01-21 Roland McGrath <mcgrathr@google.com>
14430
14431 * configure.ac: Call AM_PROG_INSTALL_STRIP.
14432 * configure: Regenerate.
14433 * aclocal.m4: Regenerate.
14434 * Makefile.in (install_sh, INSTALL_STRIP_PROGRAM, STRIP):
14435 New substituted variables.
14436 (install-strip): New target.
14437 (INSTALL_SCRIPT): New substituted variable.
14438 (FLAGS_TO_PASS): Add it.
14439 (install-only): Use $(INSTALL_SCRIPT) rather than
14440 $(INSTALL_PROGRAM) for gcore.
14441
14442 2014-01-20 Tom Tromey <tromey@redhat.com>
14443
14444 * cli/cli-decode.h (struct cmd_list_element): Move all bitfields
14445 together.
14446
14447 2014-01-20 Tom Tromey <tromey@redhat.com>
14448
14449 * cli/cli-decode.c (add_cmd, deprecate_cmd, add_alias_cmd)
14450 (add_setshow_cmd_full, delete_cmd, lookup_cmd_1)
14451 (deprecated_cmd_warning, complete_on_cmdlist): Update.
14452 * cli/cli-decode.h (CMD_DEPRECATED, DEPRECATED_WARN_USER)
14453 (MALLOCED_REPLACEMENT, DOC_ALLOCATED): Remove.
14454 (struct cmd_list_element) <flags>: Remove.
14455 <cmd_deprecated, deprecated_warn_user, malloced_replacement,
14456 doc_allocated>: New fields.
14457 <hook_in, allow_unknown, abbrev_flag, type, var_type>: Now
14458 bitfields.
14459 * maint.c (maintenance_do_deprecate): Update.
14460 * top.c (execute_command): Update.
14461
14462 2014-01-20 Baruch Siach <baruch@tkos.co.il>
14463
14464 * xtensa-linux-nat.c: Include asm/ptrace.h.
14465
14466 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
14467
14468 * Makefile.in (SFILES): Add d-support.c.
14469 (COMMON_OBS): Add d-support.o.
14470 * d-lang.h (d_parse_symbol): Add comment, now defined in
14471 d-support.c.
14472 * d-lang.c (parse_call_convention)
14473 (parse_attributes, parse_function_types)
14474 (parse_function_args, parse_type, parse_identifier)
14475 (call_convention_p, d_parse_symbol): Move functions to ...
14476 * d-support.c: ... New file.
14477
14478 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
14479
14480 * d-lang.h (d_parse_symbol): Add declaration.
14481 * d-lang.c (extract_identifiers)
14482 (extract_type_info): Remove functions.
14483 (parse_call_convention, parse_attributes)
14484 (parse_function_types, parse_function_args)
14485 (parse_type, parse_identifier, call_convention_p)
14486 (d_parse_symbol): New functions.
14487 (d_demangle): Use d_parse_symbol to demangle D symbols.
14488
14489 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
14490
14491 * d-lang.h (struct builtin_d_type): New data type.
14492 (builtin_d_type): Add declaration.
14493 * d-lang.c (d_language_arch_info, build_d_types)
14494 (builtin_d_type): New functions.
14495 (enum d_primitive_types): New data type.
14496 (d_language_defn): Change c_language_arch_info to
14497 d_language_arch_info.
14498 (d_type_data): New static variable.
14499 (_initialize_d_language): Initialize d_type_data.
14500
14501 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
14502
14503 * d-lang.h (d_main_name): Add declaration.
14504 * d-lang.c (d_main_name): New function.
14505 * symtab.c (find_main_name): Add call to d_main_name.
14506
14507 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
14508
14509 * d-lang.c (d_language_defn): Change macro_expansion_c to
14510 macro_expansion_no.
14511
14512 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
14513
14514 * MAINTAINERS: Add myself as a write-after-approval maintainer.
14515
14516 2014-01-17 Sergio Durigan Junior <sergiodj@redhat.com>
14517
14518 * breakpoint.c (insert_bp_location): Add "volatile" keyword to "struct
14519 gdb_exception" declaration.
14520 * remote.c (getpkt_or_notif_sane): Likewise.
14521
14522 2014-01-17 Doug Evans <dje@google.com>
14523
14524 * common/gdb_vecs.c (delim_string_to_char_ptr_vec_append): New
14525 function, contents of dirnames_to_char_ptr_vec_append moved here.
14526 (delim_string_to_char_ptr_vec): New function.
14527 (dirnames_to_char_ptr_vec_append): Rewrite.
14528 * common/gdb_vecs.h (delim_string_to_char_ptr_vec): Declare.
14529
14530 2014-01-17 Doug Evans <dje@google.com>
14531
14532 * common/common-utils.h (FUNCTION_NAME): Renamed from ASSERT_FUNCTION,
14533 and moved here ...
14534 * common/gdb_assert.h (ASSERT_FUNCTION): ... from here.
14535 #include "common-utils.h".
14536 (gdb_assert, gdb_assert_fail, gdb_assert_not_reached): Update.
14537 * common/vec.h (VEC_ASSERT_PASS): Update.
14538 * darwin-nat.h: Replace #include of gdb_assert.h with common-utils.h.
14539 (MACH_CHECK_ERROR): Update.
14540
14541 2014-01-17 Simon Marchi <simon.marchi@ericsson.com>
14542
14543 * gdbarch.sh (gdbarch_address_class_name_to_type_flags): Add
14544 comments.
14545 * gdbarch.h: Regenerate.
14546
14547 2014-01-16 Tom Tromey <tromey@redhat.com>
14548
14549 * value.c (struct value) <regnum>: Move earlier.
14550
14551 2014-01-16 Tom Tromey <tromey@redhat.com>
14552
14553 * remote.c (extended_remote_create_inferior): Rename from
14554 extended_remote_create_inferior_1. Add "ops" argument. Remove
14555 old implementation.
14556
14557 2014-01-16 Pedro Alves <palves@redhat.com>
14558
14559 * s390-linux-tdep.c (s390_frame_unwind_cache): Swallow
14560 NOT_AVAILABLE_ERROR errors while parsing the prologue or reading
14561 the backchain.
14562
14563 2014-01-16 Doug Evans <dje@google.com>
14564
14565 * dwarf2read.c (open_and_init_dwp_file): Fix typo in comment.
14566
14567 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14568
14569 * btrace.h (btrace_thread_flag): New.
14570 (struct btrace_thread_info) <flags>: New.
14571 * record-btrace.c (record_btrace_resume_thread)
14572 (record_btrace_find_thread_to_move, btrace_step_no_history)
14573 (btrace_step_stopped, record_btrace_start_replaying)
14574 (record_btrace_step_thread, record_btrace_decr_pc_after_break)
14575 (record_btrace_find_resume_thread): New.
14576 (record_btrace_resume, record_btrace_wait): Extend.
14577 (record_btrace_can_execute_reverse): New.
14578 (record_btrace_open): Fail in non-stop mode.
14579 (record_btrace_set_replay): Split into this, ...
14580 (record_btrace_stop_replaying): ... this, ...
14581 (record_btrace_clear_histories): ... and this.
14582 (init_record_btrace_ops): Init to_can_execute_reverse.
14583 * NEWS: Announce it.
14584
14585 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14586
14587 * target.h (struct target_ops) <to_decr_pc_after_break>: New.
14588 (forward_target_decr_pc_after_break)
14589 (target_decr_pc_after_break): New.
14590 * target.c (forward_target_decr_pc_after_break)
14591 (target_decr_pc_after_break): New.
14592 * aix-thread.c (aix_thread_wait): Call target_decr_pc_after_break
14593 instead of gdbarch_decr_pc_after_break.
14594 * darwin-nat.c (cancel_breakpoint): Call target_decr_pc_after_break
14595 instead of gdbarch_decr_pc_after_break.
14596 * infrun.c (adjust_pc_after_break): Call target_decr_pc_after_break
14597 instead of gdbarch_decr_pc_after_break.
14598 * linux-nat.c (cancel_breakpoint): Call target_decr_pc_after_break
14599 instead of gdbarch_decr_pc_after_break.
14600 * linux-thread-db.c (check_event): Call target_decr_pc_after_break
14601 instead of gdbarch_decr_pc_after_break.
14602 * record-full.c (record_full_wait_1): Call target_decr_pc_after_break
14603 instead of gdbarch_decr_pc_after_break.
14604
14605 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14606
14607 * btrace.c: Include regcache.h.
14608 (btrace_add_pc): New.
14609 (btrace_enable): Call btrace_add_pc.
14610 (btrace_is_empty): New.
14611 * btrace.h (btrace_is_empty): New.
14612 * record-btrace.c (require_btrace, record_btrace_info): Call
14613 btrace_is_empty.
14614
14615 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14616
14617 * common/linux-btrace.c (perf_event_read_bts, linux_read_btrace):
14618 Support delta reads.
14619 (linux_disable_btrace): Change return type.
14620 * common/linux-btrace.h (linux_read_btrace): Change parameters
14621 and return type to allow error reporting. Update users.
14622 (linux_disable_btrace): Change return type. Update users.
14623 * common/btrace-common.h (btrace_read_type) <BTRACE_READ_DELTA>:
14624 New.
14625 (btrace_error): New.
14626 (btrace_block) <begin>: Comment on BEGIN == 0.
14627 * btrace.c (btrace_compute_ftrace): Start from the end of
14628 the current trace.
14629 (btrace_stitch_trace, btrace_clear_history): New.
14630 (btrace_fetch): Read delta trace, return if replaying.
14631 (btrace_clear): Move clear history code to btrace_clear_history.
14632 (parse_xml_btrace): Throw an error if parsing failed.
14633 * target.h (struct target_ops) <to_read_btrace>: Change parameters
14634 and return type to allow error reporting.
14635 (target_read_btrace): Change parameters and return type to allow
14636 error reporting.
14637 * target.c (target_read_btrace): Update.
14638 * remote.c (remote_read_btrace): Support delta reads. Pass
14639 errors on.
14640 * NEWS: Announce it.
14641
14642 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14643
14644 * record.h (record_btrace_frame_unwind)
14645 (record_btrace_tailcall_frame_unwind): New declarations.
14646 * dwarf2-frame: Include record.h
14647 (dwarf2_frame_cfa): Throw an error for btrace frames.
14648 * record-btrace.c: Include hashtab.h.
14649 (btrace_get_bfun_name): New.
14650 (btrace_call_history): Call btrace_get_bfun_name.
14651 (struct btrace_frame_cache): New.
14652 (bfcache): New.
14653 (bfcache_hash, bfcache_eq, bfcache_new): New.
14654 (btrace_get_frame_function): New.
14655 (record_btrace_frame_unwind_stop_reason): Allow unwinding.
14656 (record_btrace_frame_this_id): Compute own id.
14657 (record_btrace_frame_prev_register): Provide PC, throw_error
14658 for all other registers.
14659 (record_btrace_frame_sniffer): Detect btrace frames.
14660 (record_btrace_tailcall_frame_sniffer): New.
14661 (record_btrace_frame_dealloc_cache): New.
14662 (record_btrace_frame_unwind): Add new functions.
14663 (record_btrace_tailcall_frame_unwind): New.
14664 (_initialize_record_btrace): Allocate cache.
14665 * btrace.c (btrace_clear): Call reinit_frame_cache.
14666 * NEWS: Announce it.
14667
14668 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14669
14670 * record-btrace.c (record_btrace_set_replay)
14671 (record_btrace_goto_begin, record_btrace_goto_end)
14672 (record_btrace_goto): New.
14673 (init_record_btrace_ops): Initialize them.
14674 * NEWS: Announce it.
14675
14676 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14677
14678 * record-btrace.c (record_btrace_find_new_threads)
14679 (record_btrace_thread_alive): New.
14680 (init_record_btrace_ops): Initialize to_find_new_threads and
14681 to_thread_alive.
14682
14683 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14684
14685 * record-btrace.c (record_btrace_resume): New.
14686 (record_btrace_wait): New.
14687 (init_record_btrace_ops): Initialize to_wait and to_resume.
14688
14689 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14690
14691 * record-btrace.c (record_btrace_xfer_partial)
14692 (record_btrace_insert_breakpoint, record_btrace_remove_breakpoint)
14693 (record_btrace_allow_memory_access): New.
14694 (init_record_btrace_ops): Initialize new methods.
14695 * target.c (raw_memory_xfer_partial): Bail out if target reports
14696 that this memory is not available.
14697
14698 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14699
14700 * target.h (target_ops) <to_insert_breakpoint>
14701 <to_remove_breakpoint>: Add target_ops parameter.
14702 (forward_target_insert_breakpoint): New.
14703 (forward_target_remove_breakpoint): New.
14704 (memory_remove_breakpoint, memory_insert_breakpoint):
14705 Add target_ops parameter.
14706 * target.c (target_insert_breakpoint): Split into this and ...
14707 (forward_target_insert_breakpoint): ... this.
14708 (target_remove_breakpoint): Split into this and ...
14709 (forward_target_remove_breakpoint): ... this.
14710 (debug_to_insert_breakpoint): Add target_ops parameter.
14711 Call forward_target_insert_breakpoint.
14712 (debug_to_remove_breakpoint): Add target_ops parameter.
14713 Call forward_target_remove_breakpoint.
14714 (update_current_target): Do not inherit or default to_insert_breakpoint
14715 and to_remove_breakpoint.
14716 * corelow.c (ignore): Add target_ops parameter.
14717 * exec.c (ignore): Add target_ops parameter.
14718 * mem-break.c (memory_insert_breakpoint, memory_remove_breakpoint):
14719 Add target_ops parameter.
14720 * monitor.c (monitor_insert_breakpoint, monitor_remove_breakpoint):
14721 Add target_ops parameter.
14722 * nto-procfs.c (procfs_insert_breakpoint, procfs_remove_breakpoint):
14723 Add target_ops parameter.
14724 * record-full.c (record_full_beneath_to_insert_breakpoint)
14725 (record_full_beneath_to_remove_breakpoint, tmp_to_insert_breakpoint)
14726 (tmp_to_remove_breakpoint, record_full_insert_breakpoint)
14727 (record_full_remove_breakpoint, record_full_core_insert_breakpoint)
14728 (record_full_core_remove_breakpoint): Add target_ops parameter.
14729 Update users.
14730 (record_full_beneath_to_insert_breakpoint_ops)
14731 (record_full_beneath_to_remove_breakpoint_ops)
14732 (tmp_to_insert_breakpoint_ops, tmp_to_remove_breakpoint_ops): New.
14733 (record_full_open): Initialize tmp_to_insert_breakpoint_ops,
14734 tmp_to_remove_breakpoint_ops,
14735 record_full_beneath_to_insert_breakpoint_ops, and
14736 record_full_beneath_to_remove_breakpoint_ops.
14737 * remote-m32r-sdi.c (m32r_insert_breakpoint)
14738 (m32r_remove_breakpoint): Add target_ops parameter.
14739 * remote-mips.c (mips_insert_breakpoint, mips_remove_breakpoint):
14740 Add target_ops parameter.
14741 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint):
14742 Add target_ops parameter.
14743
14744 2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
14745 Markus Metzger <markus.t.metzger@intel.com>
14746
14747 * record-btrace.c: Include frame-unwind.h.
14748 (record_btrace_frame_unwind_stop_reason)
14749 (record_btrace_frame_this_id, record_btrace_frame_prev_register)
14750 (record_btrace_frame_sniffer, record_btrace_frame_unwind):
14751 New.
14752 (init_record_btrace_ops): Install it.
14753
14754 2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
14755
14756 * frame.c (get_frame_unwind_stop_reason): Unconditionally call
14757 get_prev_frame_1.
14758
14759 2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
14760
14761 * dwarf2-frame.c (dwarf2_frame_cfa): Move UNWIND_UNAVAILABLE check
14762 earlier.
14763
14764 2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
14765
14766 * frame-unwind.c: Include target.h.
14767 (frame_unwind_try_unwinder): New function with code from ...
14768 (frame_unwind_find_by_frame): ... here. New variable
14769 unwinder_from_target, call also target_get_unwinder)
14770 (target_get_tailcall_unwinder, and frame_unwind_try_unwinder for it.
14771 * target.c (target_get_unwinder, target_get_tailcall_unwinder): New.
14772 * target.h (struct target_ops): New fields to_get_unwinder and
14773 to_get_tailcall_unwinder.
14774 (target_get_unwinder, target_get_tailcall_unwinder): New declarations.
14775
14776 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14777
14778 * record-btrace.c (record_btrace_fetch_registers)
14779 (record_btrace_store_registers)
14780 (record_btrace_to_prepare_to_store): New.
14781 (init_record_btrace_ops): Add the above.
14782
14783 2014-01-16 Tom Tromey <tromey@redhat.com>
14784
14785 * windows-nat.c (windows_prepare_to_store): Add 'self' argument.
14786 * target.h (struct target_ops) <to_prepare_to_store>: Add
14787 argument.
14788 (target_prepare_to_store): Add argument.
14789 * target.c (debug_to_prepare_to_store): Add argument.
14790 (update_current_target): Update.
14791 * remote.c (remote_prepare_to_store): Add 'self' argument.
14792 * remote-sim.c (gdbsim_prepare_to_store): Add 'self' argument.
14793 * remote-mips.c (mips_prepare_to_store): Add 'self' argument.
14794 * remote-m32r-sdi.c (m32r_prepare_to_store): Add 'self' argument.
14795 * record-full.c (record_full_core_prepare_to_store): Add 'self'
14796 argument.
14797 * ravenscar-thread.c (ravenscar_prepare_to_store): Add argument.
14798 * nto-procfs.c (procfs_prepare_to_store): Add 'self' argument.
14799 * monitor.c (monitor_prepare_to_store): Add 'self' argument.
14800 * inf-child.c (inf_child_prepare_to_store): Add 'self' argument.
14801 * go32-nat.c (go32_prepare_to_store): Add 'self' argument.
14802
14803 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14804
14805 * btrace.h (replay) <replay>: New.
14806 (btrace_is_replaying): New.
14807 * btrace.c (btrace_clear): Free replay iterator.
14808 (btrace_is_replaying): New.
14809 * record-btrace.c (record_btrace_is_replaying): New.
14810 (record_btrace_info): Print insn number if replaying.
14811 (record_btrace_insn_history): Start at replay position.
14812 (record_btrace_call_history): Start at replay position.
14813 (init_record_btrace_ops): Init to_record_is_replaying.
14814
14815 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14816
14817 * record-btrace.c (record_btrace_insn_history_range): Include
14818 end.
14819 (record_btrace_insn_history_from): Adjust range.
14820 (record_btrace_call_history_range): Include
14821 end.
14822 (record_btrace_call_history_from): Adjust range.
14823 * NEWS: Announce changes.
14824
14825 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14826
14827 * record.h (enum record_print_flag)
14828 <record_print_indent_calls>: New.
14829 * record.c (get_call_history_modifiers): Recognize /c modifier.
14830 (_initialize_record): Document /c modifier.
14831 * record-btrace.c (btrace_call_history): Add btinfo parameter.
14832 Reorder fields. Optionally indent the function name. Update
14833 all users.
14834 * NEWS: Announce changes.
14835
14836 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14837
14838 * common/linux-btrace.c (linux_enable_btrace): Enlarge buffer.
14839
14840 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14841
14842 * btrace.c (ftrace_new_function): Start counting at one.
14843 * record-btrace.c (record_btrace_info): Adjust number of calls
14844 and insns.
14845 * NEWS: Announce it.
14846
14847 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14848
14849 * record-btrace.c (btrace_call_history_insn_range): Print
14850 insn range as [begin, end].
14851
14852 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14853
14854 * btrace.h (struct btrace_func_link): New.
14855 (enum btrace_function_flag): New.
14856 (struct btrace_inst): Rename to ...
14857 (struct btrace_insn): ...this. Update all users.
14858 (struct btrace_func) <ibegin, iend>: Remove.
14859 (struct btrace_func_link): New.
14860 (struct btrace_func): Rename to ...
14861 (struct btrace_function): ...this. Update all users.
14862 (struct btrace_function) <segment, flow, up, insn, insn_offset)
14863 (number, level, flags>: New.
14864 (struct btrace_insn_iterator): Rename to ...
14865 (struct btrace_insn_history): ...this.
14866 Update all users.
14867 (struct btrace_insn_iterator, btrace_call_iterator): New.
14868 (struct btrace_target_info) <btrace, itrace, ftrace>: Remove.
14869 (struct btrace_target_info) <begin, end, level>
14870 <insn_history, call_history>: New.
14871 (btrace_insn_get, btrace_insn_number, btrace_insn_begin)
14872 (btrace_insn_end, btrace_insn_prev, btrace_insn_next)
14873 (btrace_insn_cmp, btrace_find_insn_by_number, btrace_call_get)
14874 (btrace_call_number, btrace_call_begin, btrace_call_end)
14875 (btrace_call_prev, btrace_call_next, btrace_call_cmp)
14876 (btrace_find_function_by_number, btrace_set_insn_history)
14877 (btrace_set_call_history): New.
14878 * btrace.c (btrace_init_insn_iterator)
14879 (btrace_init_func_iterator, compute_itrace): Remove.
14880 (ftrace_print_function_name, ftrace_print_filename)
14881 (ftrace_skip_file): Change
14882 parameter to const.
14883 (ftrace_init_func): Remove.
14884 (ftrace_debug): Use new btrace_function fields.
14885 (ftrace_function_switched): Also consider gaining and
14886 losing symbol information).
14887 (ftrace_print_insn_addr, ftrace_new_call, ftrace_new_return)
14888 (ftrace_new_switch, ftrace_find_caller, ftrace_new_function)
14889 (ftrace_update_caller, ftrace_fixup_caller, ftrace_new_tailcall):
14890 New.
14891 (ftrace_new_function): Move. Remove debug print.
14892 (ftrace_update_lines, ftrace_update_insns): New.
14893 (ftrace_update_function): Check for call, ret, and jump.
14894 (compute_ftrace): Renamed to ...
14895 (btrace_compute_ftrace): ...this. Rewritten to compute call
14896 stack.
14897 (btrace_fetch, btrace_clear): Updated.
14898 (btrace_insn_get, btrace_insn_number, btrace_insn_begin)
14899 (btrace_insn_end, btrace_insn_prev, btrace_insn_next)
14900 (btrace_insn_cmp, btrace_find_insn_by_number, btrace_call_get)
14901 (btrace_call_number, btrace_call_begin, btrace_call_end)
14902 (btrace_call_prev, btrace_call_next, btrace_call_cmp)
14903 (btrace_find_function_by_number, btrace_set_insn_history)
14904 (btrace_set_call_history): New.
14905 * record-btrace.c (require_btrace): Use new btrace thread
14906 info fields.
14907 (record_btrace_info, btrace_insn_history)
14908 (record_btrace_insn_history, record_btrace_insn_history_range):
14909 Use new btrace thread info fields and new iterator.
14910 (btrace_func_history_src_line): Rename to ...
14911 (btrace_call_history_src_line): ...this. Use new btrace
14912 thread info fields.
14913 (btrace_func_history): Rename to ...
14914 (btrace_call_history): ...this. Use new btrace thread info
14915 fields and new iterator.
14916 (record_btrace_call_history, record_btrace_call_history_range):
14917 Use new btrace thread info fields and new iterator.
14918
14919 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14920
14921 * frame.h (frame_id_build_unavailable_stack_special): New.
14922 * frame.c (frame_id_build_unavailable_stack_special): New.
14923
14924 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14925
14926 * amd64-tdep.c (amd64_classify_insn_at, amd64_insn_is_call)
14927 (amd64_insn_is_ret, amd64_insn_is_jump, amd64_jmp_p): New.
14928 (amd64_init_abi): Add insn_is_call, insn_is_ret, and insn_is_jump
14929 to gdbarch.
14930 * i386-tdep.c (i386_insn_is_call, i386_insn_is_ret)
14931 (i386_insn_is_jump, i386_jmp_p): New.
14932 (i386_gdbarch_init): Add insn_is_call, insn_is_ret, and
14933 insn_is_jump to gdbarch.
14934 * gdbarch.sh (insn_is_call, insn_is_ret, insn_is_jump): New.
14935 * gdbarch.h: Regenerated.
14936 * gdbarch.c: Regenerated.
14937 * arch-utils.h (default_insn_is_call, default_insn_is_ret)
14938 (default_insn_is_jump): New.
14939 * arch-utils.c (default_insn_is_call, default_insn_is_ret)
14940 (default_insn_is_jump): New.
14941
14942 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14943
14944 * common/btrace-common.h (btrace_read_type) <btrace_read_all>:
14945 Change to ...
14946 (btrace_read_type) <BTRACE_READ_ALL>: ... this. Update users.
14947 (btrace_read_type) <btrace_read_new>: Change to ...
14948 (btrace_read_type) <BTRACE_READ_NEW>: ... this. Update users.
14949
14950 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
14951
14952 * common/linux-btrace.c (linux_read_btrace): Free trace from
14953 previous iteration.
14954
14955 2014-01-15 Doug Evans <dje@google.com>
14956
14957 * dwarf2read.c (open_and_init_dwp_file): Use pulongest to print
14958 uint32_t.
14959
14960 2014-01-15 Tom Tromey <tromey@redhat.com>
14961
14962 * dbxread.c (process_one_symbol): Use set_objfile_main_name.
14963 * dwarf2read.c (read_partial_die): Use set_objfile_main_name.
14964 * objfiles.c (get_objfile_bfd_data): Initialize language_of_main.
14965 (set_objfile_main_name): New function.
14966 * objfiles.h (struct objfile_per_bfd_storage) <name_of_main,
14967 language_of_main>: New fields.
14968 (set_objfile_main_name): Declare.
14969 * symtab.c (find_main_name): Loop over objfiles to find the main
14970 name and language.
14971 (set_main_name): Now static.
14972 (get_main_info): Add comment.
14973 * symtab.h (set_main_name): Don't declare.
14974
14975 2014-01-15 Tom Tromey <tromey@redhat.com>
14976
14977 * symtab.c (main_progspace_key): New global.
14978 (struct main_info): New.
14979 (name_of_main, language_of_main): Remove.
14980 (get_main_info, main_info_cleanup): New function.
14981 (set_main_name, main_name, main_language): Use get_main_info.
14982 (_initialize_symtab): Initialize main_progspace_key.
14983
14984 2014-01-15 Tom Tromey <tromey@redhat.com>
14985
14986 * dbxread.c (process_one_symbol): Update.
14987 * dwarf2read.c (read_partial_die): Update.
14988 * symfile.c (set_initial_language): Call main_language.
14989 * symtab.c (language_of_main): Now static.
14990 (set_main_name): Add 'lang' parameter.
14991 (find_main_name): Update.
14992 (main_language): New function.
14993 (symtab_observer_executable_changed): Update.
14994 * symtab.h (set_main_name): Update.
14995 (language_of_main): Remove.
14996 (main_language): Declare.
14997
14998 2014-01-15 Tom Tromey <tromey@redhat.com>
14999
15000 * symfile.c (init_entry_point_info): Use new "initialized" field.
15001 Update.
15002 * objfiles.h (struct entry_point) <initialized>: New field.
15003 (struct objfile_per_bfd_storage) <ei>: New field, moved from...
15004 (struct objfile) <ei>: ...here. Remove.
15005 * objfiles.c (entry_point_address_query): Update.
15006
15007 2014-01-15 Tom Tromey <tromey@redhat.com>
15008
15009 * objfiles.c (entry_point_address_query): Relocate entry point
15010 address.
15011 (objfile_relocate1): Do not relocate entry point address.
15012 * objfiles.h (struct entry_info) <entry_point>: Update comment.
15013 <the_bfd_section_index>: New field.
15014 * symfile.c (init_entry_point_info): Find the entry point's
15015 section.
15016
15017 2014-01-15 Tom Tromey <tromey@redhat.com>
15018
15019 * solib-frv.c (enable_break): Use entry_point_address_query.
15020
15021 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
15022
15023 * NEWS: Add note on improved process record-replay on
15024 arm*-linux* targets.
15025
15026 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
15027
15028 * arm-tdep.c (enum arm_record_result): New enum.
15029 (arm_record_unsupported_insn): New function.
15030 (arm_record_coproc_data_proc): Removed.
15031 (thumb2_record_ld_st_multiple): New function.
15032 (thumb2_record_ld_st_dual_ex_tbb): New function.
15033 (thumb2_record_data_proc_sreg_mimm): New function.
15034 (thumb2_record_ps_dest_generic): New function.
15035 (thumb2_record_branch_misc_cntrl): New function.
15036 (thumb2_record_str_single_data): New function.
15037 (thumb2_record_ld_mem_hints): New function.
15038 (thumb2_record_ld_word): New function.
15039 (thumb2_record_lmul_lmla_div): New function.
15040 (thumb2_record_decode_insn_handler): New function.
15041 (decode_insn): Add thumb32 instruction handlers.
15042
15043 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
15044
15045 * arm-linux-tdep.c: Include "record-full.h" and "linux-record.h".
15046 (struct arm_linux_record_tdep): Declare.
15047 (arm_canonicalize_syscall): New function.
15048 (arm_all_but_pc_registers_record): New function.
15049 (arm_linux_syscall_record): New function.
15050 (arm_linux_init_abi): Add syscall recording constructs.
15051 * arm-tdep.c (thumb_record_ldm_stm_swi): Update thumb syscall
15052 decoding. (arm_record_coproc_data_proc): Update arm syscall
15053 decoding.
15054 * arm-tdep.h (struct gdbarch_tdep) <arm_swi_record>: Remove.
15055 <arm_syscall_record>: New field.
15056 * configure.tgt (arm*-*-linux*): Add linux-record.o to
15057 gdb_target_obs.
15058
15059 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
15060
15061 * arm-tdep.c (thumb_record_misc): Update to use sp as base
15062 register for push instruction recording.
15063
15064 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
15065
15066 * arm-tdep.c (thumb_record_misc): Update to correct logical
15067 error while recording ldm, ldmia and pop instructions.
15068
15069 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
15070
15071 * arm-tdep.c (struct arm_mem_r) <addr>: Change type to uint32_t.
15072
15073 2014-01-15 Pedro Alves <palves@redhat.com>
15074
15075 * go32-nat.c (go32_open, go32_close, go32_attach, go32_detach)
15076 (go32_resume, go32_fetch_registers, store_register)
15077 (go32_store_registers, go32_prepare_to_store)
15078 (go32_xfer_memory, go32_files_info, go32_kill_inferior)
15079 (go32_create_inferior, go32_can_run, go32_terminal_init)
15080 (go32_terminal_inferior, go32_terminal_ours): Delete forward
15081 declarations.
15082
15083 2014-01-15 Tom Tromey <tromey@redhat.com>
15084
15085 * target.h (async_callback_ftype): New typedef.
15086 (struct target_ops) <to_async>: Use it.
15087
15088 2014-01-15 Joel Brobecker <brobecker@adacore.com>
15089
15090 * python/py-value.c (get_field_type): Remove unnecessary curly
15091 braces for single-statement if block.
15092
15093 2014-01-15 Joel Brobecker <brobecker@adacore.com>
15094
15095 * python/py-type.c (convert_field): Add missing empty line
15096 after declarations.
15097
15098 2014-01-14 Doug Evans <dje@google.com>
15099
15100 * symfile.h (expand_symtabs_matching): Renamed from
15101 expand_partial_symbol_names. Update prototype.
15102 (map_symbol_filenames): Renamed from map_partial_symbol_filenames.
15103 * symfile.c (expand_symtabs_matching): Renamed from
15104 expand_partial_symbol_names. New args file_matcher, kind.
15105 Rename arg fun to symbol_matcher.
15106 (map_symbol_filenames): Renamed from map_partial_symbol_filenames.
15107 * ada-lang.c (ada_complete_symbol_matcher): Renamed from
15108 ada_expand_partial_symbol_name.
15109 (ada_make_symbol_completion_list): Update to call
15110 expand_symtabs_matching.
15111 (ada_add_global_exceptions): Call expand_symtabs_matching.
15112 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update to
15113 call map_symbol_filenames.
15114 * symtab.c (sources_info): Update to call map_symbol_filenames.
15115 (search_symbols): Call expand_symtabs_matching.
15116 (symbol_completion_matcher): Renamed from expand_partial_symbol_name.
15117 (default_make_symbol_completion_list_break_on): Update to call
15118 expand_symtabs_matching.
15119 (make_source_files_completion_list): Update to call
15120 map_symbol_filenames.
15121
15122 2014-01-14 Doug Evans <dje@google.com>
15123
15124 * symfile.h (expand_symtabs_file_matcher_ftype): New typedef.
15125 (expand_symtabs_symbol_matcher_ftype): New typedef.
15126 (quick_symbol_functions.expand_symtabs_matching): Update to use.
15127 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
15128 * symfile.c (expand_partial_symbol_names): Update to use
15129 expand_symtabs_symbol_matcher_ftype.
15130 * dwarf2read.c (dw2_expand_symtabs_matching): Update to use
15131 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
15132 Arg name_matcher renamed to symbol_matcher.
15133 * psymtab.c (recursively_search_psymtabs): Update to use
15134 expand_symtabs_symbol_matcher_ftype. Arg name_matcher renamed to
15135 sym_matcher.
15136 (expand_symtabs_matching_via_partial): Update to use
15137 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
15138 Arg name_matcher renamed to symbol_matcher.
15139
15140 2014-01-14 Doug Evans <dje@google.com>
15141
15142 * psymtab.c (expand_partial_symbol_names): Delete, moved to symfile.c.
15143 (map_partial_symbol_filenames): Ditto.
15144 * psymtab.h (expand_partial_symbol_names): Delete, moved to symfile.h.
15145 (map_partial_symbol_filenames): Ditto.
15146 * symfile.c (expand_partial_symbol_names): Moved here from psymtab.c.
15147 (map_partial_symbol_filenames): Ditto.
15148 * symfile.h (expand_partial_symbol_names): Moved here from psymtab.h.
15149 (map_partial_symbol_filenames): Ditto.
15150 * symtab.c: Delete #include "psymtab.h".
15151
15152 2014-01-14 Pedro Alves <palves@redhat.com>
15153 Tom Tromey <tromey@redhat.com>
15154
15155 * infrun.c (use_displaced_stepping): Use find_record_target
15156 instead of RECORD_IS_USED.
15157 (adjust_pc_after_break): Use record_full_is_used instead of
15158 RECORD_IS_USED.
15159 * record-btrace.c (record_btrace_open): Call record_preopen
15160 instead of checking RECORD_IS_USED.
15161 * record-full.c (record_full_shortname)
15162 (record_full_core_shortname): New globals.
15163 (record_full_is_used): New function.
15164 (find_full_open): Call record_preopen instead of checking
15165 RECORD_IS_USED.
15166 (init_record_full_ops): Set the target's shortname to
15167 record_full_shortname.
15168 (init_record_full_core_ops): Set the target's shortname to
15169 record_full_core_shortname.
15170 * record-full.h (record_full_is_used): Declare.
15171 * record.c (find_record_target): Make extern.
15172 (record_preopen): New function.
15173 * record.h (RECORD_IS_USED): Delete macro.
15174 (find_record_target, record_preopen): Declare functions.
15175
15176 2014-01-14 Yao Qi <yao@codesourcery.com>
15177
15178 * gdbarch.sh (core_xfer_shared_libraries): Change its argument
15179 'len''s type to ULONGEST.
15180 (core_xfer_shared_libraries_aix): Likewise.
15181 * gdbarch.c, gdbarch.h: Regenerated.
15182 * i386-cygwin-tdep.c (windows_core_xfer_shared_libraries):
15183 Change type of 'len' to ULONGEST.
15184 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
15185 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
15186
15187 2014-01-14 Yao Qi <yao@codesourcery.com>
15188
15189 * common/linux-osdata.c (linux_xfer_osdata_processes): Change
15190 type of 'len' to ULONGEST.
15191 (linux_xfer_osdata_processgroups): Likewise.
15192 (linux_xfer_osdata_threads): Likewise.
15193 (linux_xfer_osdata_fds): Likewise.
15194 (linux_xfer_osdata_isockets): Likewise.
15195 (linux_xfer_osdata_shm): Likewise.
15196 (linux_xfer_osdata_sem): Likewise.
15197 (linux_xfer_osdata_msg): Likewise.
15198 (linux_common_xfer_osdata): Likewise.
15199 (struct osdata_type) <getter>: Likewise.
15200 * common/linux-osdata.h (linux_common_xfer_osdata): Update
15201 the declaration.
15202
15203 2014-01-14 Yao Qi <yao@codesourcery.com>
15204
15205 * target.h (target_xfer_partial_ftype): Update.
15206 (struct target_ops) <to_xfer_partial>: Change 'len' type to
15207 ULONGEST.
15208 * aix-thread.c (aix_thread_xfer_partial): Change type of
15209 argument 'len' to ULONGEST.
15210 * auxv.c (procfs_xfer_auxv): Likewise.
15211 (ld_so_xfer_auxv): Likewise.
15212 (memory_xfer_auxv): Likewise.
15213 * bfd-target.c (target_bfd_xfer_partial): Likewise.
15214 * bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
15215 * bsd-uthread.c (bsd_uthread_xfer_partial): Likewise.
15216 * corelow.c (core_xfer_partial): Likewise.
15217 * ctf.c (ctf_xfer_partial): Likewise.
15218 * darwin-nat.c (darwin_read_write_inferior): Likewise. Use
15219 '%u'.
15220 (darwin_read_dyld_info): Likewise.
15221 (darwin_xfer_partial): Likewise.
15222 * exec.c (section_table_xfer_memory_partial): Likewise.
15223 (exec_xfer_partial): Likewise.
15224 * exec.h (section_table_xfer_memory_partial): Update
15225 declaration.
15226 * gnu-nat.c (gnu_xfer_memory): Likewise. Call pulongest
15227 instead of plongest.
15228 (gnu_xfer_partial): Likewise.
15229 * ia64-hpux-nat.c (ia64_hpux_xfer_memory): Likewise.
15230 (ia64_hpux_xfer_solib_got): Likewise.
15231 (ia64_hpux_xfer_partial): Likewise.
15232 * ia64-linux-nat.c (ia64_linux_xfer_partial):
15233 * inf-ptrace.c (inf_ptrace_xfer_partial):
15234 * inf-ttrace.c (inf_ttrace_xfer_partial):
15235 * linux-nat.c (linux_xfer_siginfo): Likewise.
15236 (linux_nat_xfer_partial): Likewise.
15237 (spu_enumerate_spu_ids, linux_proc_xfer_spu): Likewise.
15238 (linux_nat_xfer_osdata, linux_xfer_partial): Likewise.
15239 * monitor.c (monitor_xfer_memory): Likewise.
15240 (monitor_xfer_partial): Likewise.
15241 * procfs.c (procfs_xfer_partial): Likewise.
15242 * record-full.c (record_full_xfer_partial): Likewise.
15243 (record_full_core_xfer_partial): Likewise.
15244 * remote-sim.c (gdbsim_xfer_memory): Likewise. Call pulongest
15245 instead of plongest.
15246 (gdbsim_xfer_partial): Likewise.
15247 * remote.c (remote_xfer_partial): Likewise.
15248 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
15249 * rs6000-aix-tdep.h (rs6000_aix_ld_info_to_xml): Update
15250 declaration.
15251 * rs6000-nat.c (rs6000_xfer_partial): Likewise.
15252 (rs6000_xfer_shared_libraries): Likewise.
15253 * sol-thread.c (sol_thread_xfer_partial): Likewise.
15254 * sparc-nat.c (sparc_xfer_wcookie): Likewise.
15255 (sparc_xfer_partial): Likewise.
15256 * spu-linux-nat.c (spu_proc_xfer_spu): Likewise.
15257 (spu_xfer_partial): Likewise.
15258 * spu-multiarch.c (spu_xfer_partial): Likewise.
15259 * target.c (target_read_live_memory): Likewise.
15260 (memory_xfer_live_readonly_partial): Likewise.
15261 (memory_xfer_partial, memory_xfer_partial_1): Likewise.
15262 (target_xfer_partial, default_xfer_partial): Likewise.
15263 (current_xfer_partial): Likewise.
15264 * tracepoint.c (tfile_xfer_partial): Likewise.
15265 * windows-nat.c (windows_xfer_memory): Likewise. Call
15266 pulongest instead of plongest.
15267 (windows_xfer_partial): Likewise.
15268 (windows_xfer_shared_libraries): Likewise.
15269
15270 2014-01-14 Yao Qi <yao@codesourcery.com>
15271
15272 * rs6000-nat.c (rs6000_xfer_shared_libraries): Use
15273 target_xfer_partial_ftype.
15274
15275 2014-01-13 Siva Chandra Reddy <sivachandra@google.com>
15276
15277 PR python/15464
15278 PR python/16113
15279 * valops.c (value_struct_elt_bitpos): New function
15280 * py-type.c (convert_field): Set 'name' attribute of a gdb.Field
15281 object to 'None' if the field name is an empty string ("").
15282 * python/py-value.c (valpy_getitem): Use 'bitpos' and 'type'
15283 attribute to look for a field when 'name' is 'None'.
15284 (get_field_type): New function
15285
15286 2014-01-13 Doug Evans <dje@google.com>
15287
15288 PR symtab/16426
15289 * dwarf2read.c (dwarf2_get_dwz_file): Call gdb_bfd_record_inclusion.
15290 (try_open_dwop_file): Ditto.
15291 * gdb_bfd.c: #include "vec.h".
15292 (bfdp): New typedef.
15293 (struct gdb_bfd_data): New member included_bfds.
15294 (gdb_bfd_unref): Unref all included bfds.
15295 (gdb_bfd_record_inclusion): New function.
15296 * gdb_bfd.h (gdb_bfd_record_inclusion): Declare.
15297
15298 2014-01-13 Tom Tromey <tromey@redhat.com>
15299
15300 * gdbcore.h (deprecated_core_resize_section_table): Remove.
15301
15302 2014-01-13 Tom Tromey <tromey@redhat.com>
15303
15304 * defs.h (use_windows): Remove.
15305 * gdb.c (main): Update.
15306 * main.c (captured_main, gdb_main): Update.
15307 * main.h (struct captured_main_args) <use_windows>: Remove.
15308 * top.c (use_windows): Remove.
15309
15310 2014-01-13 Tom Tromey <tromey@redhat.com>
15311
15312 * defs.h (deprecated_flush_hook): Remove.
15313
15314 2014-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
15315
15316 PR threads/16216
15317 * linux-thread-db.c (try_thread_db_load): Add parameter
15318 check_auto_load_safe. Move here the file_is_auto_load_safe call.
15319 (try_thread_db_load_from_pdir_1): Move it there from here.
15320 (try_thread_db_load_from_sdir): Update caller.
15321 (try_thread_db_load_from_dir): Move it there from here.
15322
15323 2014-01-13 Patrick Palka <patrick@parcs.ath.cx>
15324
15325 * regformats/regdat.sh: Always rewrite the register file.
15326
15327 2014-01-13 Pedro Alves <palves@redhat.com>
15328
15329 * Makefile.in (CHECK_HEADERS): New variable.
15330 (check-headers:): New rule.
15331
15332 2014-01-13 Tom Tromey <tromey@redhat.com>
15333
15334 * cli/cli-setshow.c (do_set_command): Update.
15335 * defs.h (deprecated_set_hook): Remove.
15336 * top.c (deprecated_set_hook): Remove.
15337
15338 2014-01-13 Pedro Alves <palves@redhat.com>
15339
15340 * tracepoint.c (tfile_fetch_registers): Don't infer the PC from
15341 the tracepoint if the PC is a pseudo-register.
15342
15343 2014-01-13 Tom Tromey <tromey@redhat.com>
15344
15345 * defs.h (XCALLOC): Remove.
15346 * bcache.c (bcache_xmalloc): Use XCNEW, not XCALLOC.
15347 (print_bcache_statistics): Use XCNEWVEC, not XCALLOC.
15348 * dwarf2loc.c (allocate_piece_closure): Likewise.
15349 * elfread.c (elf_symfile_segments): Likewise.
15350 (elf_symfile_segments): Likewise.
15351 * gdbtypes.c (copy_type_recursive): Likewise.
15352 * i386-tdep.c (i386_gdbarch_init): Use XCNEW, not XCALLOC.
15353 * jit.c (jit_frame_sniffer): Use XCNEWVEC, not XCALLOC.
15354 * minsyms.c (prim_record_minimal_symbol_full): Use XCNEW, not
15355 XCALLOC.
15356 * mt-tdep.c (mt_gdbarch_init): Likewise.
15357 * opencl-lang.c (allocate_lval_closure): Use XCNEWVEC, not
15358 XCALLOC.
15359 * psymtab.c (psymbol_compare): Use XCNEW, not XCALLOC.
15360 * regcache.c (regcache_xmalloc_1): Use XCNEWVEC, not XCALLOC.
15361 * registry.c (registry_alloc_data): Likewise.
15362 * rs6000-tdep.c (rs6000_gdbarch_init): Use XCNEW, not XCALLOC.
15363 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
15364 * serial.c (serial_fdopen_ops): Likewise.
15365 * solib-aix.c (solib_aix_get_section_offsets): Use XCNEWVEC, not
15366 XCALLOC.
15367 * spu-tdep.c (spu_gdbarch_init): Use XCNEW, not XCALLOC.
15368 * symfile.c (default_symfile_segments): Use XCNEW and XCNEWVEC,
15369 not XCALLOC.
15370
15371 2014-01-13 Tom Tromey <tromey@redhat.com>
15372
15373 * defs.h (XMALLOC): Remove.
15374 * avr-tdep.c (avr_gdbarch_init): Use XNEW, not XMALLOC.
15375 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
15376 * cli-out.c (struct ui_out *): Likewise.
15377 * cli/cli-dump.c (add_dump_command): Likewise.
15378 (add_dump_command): Likewise.
15379 * complaints.c (get_complaints): Likewise.
15380 (find_complaint): Likewise.
15381 * dwarf2-frame.c (execute_cfa_program): Likewise.
15382 * dwarf2read.c (abbrev_table_read_table): Likewise.
15383 * gdbarch.sh: Likewise.
15384 * gdbarch.c: Rebuild.
15385 * inf-ttrace.c (inf_ttrace_add_page): Likewise.
15386 * interps.c (interp_new): Likewise.
15387 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
15388 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
15389 * mi/mi-console.c (mi_console_file_new): Likewise.
15390 * mi/mi-interp.c (mi_interpreter_init): Likewise.
15391 * mi/mi-out.c (mi_out_new): Likewise.
15392 * mi/mi-parse.c (mi_parse): Likewise.
15393 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
15394 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
15395 * observer.c (xalloc_observer_list_node): Likewise.
15396 * regcache.c (regcache_xmalloc_1): Likewise.
15397 * reggroups.c (reggroup_new): Likewise.
15398 (_initialize_reggroup): Likewise.
15399 * registry.c (register_data_with_cleanup): Likewise.
15400 * remote.c (remote_notif_stop_alloc_reply): Likewise.
15401 * ser-base.c (serial_ttystate): Likewise.
15402 * ser-mingw.c (make_pipe_state): Likewise.
15403 * ser-pipe.c (pipe_open): Likewise.
15404 * serial.c (serial_open): Likewise.
15405 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
15406 * tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
15407 (tui_alloc_win_info): Likewise.
15408 (tui_add_content_elements): Likewise.
15409 * tui/tui-file.c (tui_file_new): Likewise.
15410 * tui/tui-out.c (tui_out_new): Likewise.
15411 * ui-file.c (mem_file_new): Likewise.
15412 * ui-out.c (push_level): Likewise.
15413 (make_cleanup_ui_out_end): Likewise.
15414 (append_header_to_list): Likewise.
15415 (ui_out_new): Likewise.
15416 * user-regs.c (user_reg_add_builtin): Likewise.
15417
15418 2014-01-13 Tom Tromey <tromey@redhat.com>
15419
15420 * defs.h (XZALLOC): Remove.
15421 * ada-lang.c (get_ada_inferior_data): Use XCNEW, not XZALLOC.
15422 * ada-tasks.c (get_ada_tasks_pspace_data): Likewise.
15423 (get_ada_tasks_inferior_data): Likewise.
15424 * auto-load.c (get_auto_load_pspace_data): Likewise.
15425 * auxv.c (get_auxv_inferior_data): Likewise.
15426 * bfd-target.c (target_bfd_reopen): Likewise.
15427 * breakpoint.c (get_catch_syscall_inferior_data): Likewise.
15428 (deprecated_insert_raw_breakpoint): Likewise.
15429 * bsd-uthread.c (bsd_uthread_pid_to_str): Likewise.
15430 * corelow.c (core_open): Likewise.
15431 * darwin-nat.c (darwin_check_new_threads): Likewise.
15432 (darwin_attach_pid): Likewise.
15433 * dummy-frame.c (dummy_frame_push): Likewise.
15434 * dwarf2-frame.c (dwarf2_frame_cache): Likewise.
15435 * dwarf2loc.c (allocate_piece_closure): Likewise.
15436 * elfread.c (elf_symfile_segments): Likewise.
15437 * eval.c (ptrmath_type_p): Likewise.
15438 * exceptions.c (EXCEPTIONS_SIGJMP_BUF): Likewise.
15439 * gdbtypes.c (alloc_type_arch): Likewise.
15440 (alloc_type_instance): Likewise.
15441 * hppa-tdep.c (hppa_gdbarch_init): Likewise.
15442 * inf-child.c (inf_child_can_use_agent): Likewise.
15443 * inflow.c (get_inflow_inferior_data): Likewise.
15444 * infrun.c (save_infcall_suspend_state): Likewise.
15445 * jit.c (jit_reader_load): Likewise.
15446 (get_jit_objfile_data): Likewise.
15447 (get_jit_program_space_data): Likewise.
15448 (jit_object_open_impl): Likewise.
15449 (jit_symtab_open_impl): Likewise.
15450 (jit_block_open_impl): Likewise.
15451 (jit_frame_sniffer): Likewise.
15452 * linux-fork.c (add_fork): Likewise.
15453 * maint.c (make_command_stats_cleanup): Likewise.
15454 * objfiles.c (get_objfile_pspace_data): Likewise.
15455 * opencl-lang.c (struct lval_closure): Likewise.
15456 * osdata.c (osdata_start_osdata): Likewise.
15457 * progspace.c (new_address_space): Likewise.
15458 (add_program_space): Likewise.
15459 * remote-sim.c (get_sim_inferior_data): Likewise.
15460 * sh-tdep.c (sh_gdbarch_init): Likewise.
15461 * skip.c (Ignore): Likewise.
15462 (skip_delete_command): Likewise.
15463 * solib-aix.c (get_solib_aix_inferior_data): Likewise.
15464 (library_list_start_library): Likewise.
15465 (solib_aix_current_sos): Likewise.
15466 * solib-darwin.c (get_darwin_info): Likewise.
15467 (darwin_current_sos): Likewise.
15468 * solib-dsbt.c (get_dsbt_info): Likewise.
15469 * solib-ia64-hpux.c (new_so_list): Likewise.
15470 (ia64_hpux_get_solib_linkage_addr): Likewise.
15471 * solib-spu.c (append_ocl_sos): Likewise.
15472 (spu_current_sos): Likewise.
15473 * solib-svr4.c (get_svr4_info): Likewise.
15474 (svr4_keep_data_in_core): Likewise.
15475 (library_list_start_library): Likewise.
15476 (svr4_default_sos): Likewise.
15477 (svr4_read_so_list): Likewise.
15478 * solib-target.c (library_list_start_library): Likewise.
15479 (solib_target_current_sos): Likewise.
15480 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
15481 * symfile-debug.c (install_symfile_debug_logging): Likewise.
15482 * symfile.c (default_symfile_segments): Likewise.
15483 * target-descriptions.c (tdesc_data_init): Likewise.
15484 (tdesc_create_reg): Likewise.
15485 (struct tdesc_type *): Likewise.
15486 (tdesc_create_vector): Likewise.
15487 (tdesc_set_struct_size): Likewise.
15488 (struct tdesc_type *): Likewise.
15489 (tdesc_free_feature): Likewise.
15490 (tdesc_create_feature): Likewise.
15491 * windows-nat.c (windows_add_thread): Likewise.
15492 (windows_make_so): Likewise.
15493 * xml-support.c (gdb_xml_body_text): Likewise.
15494 (gdb_xml_create_parser_and_cleanup): Likewise.
15495 (xml_process_xincludes): Likewise.
15496 * xml-syscall.c (allocate_syscalls_info): Likewise.
15497 (syscall_create_syscall_desc): Likewise.
15498
15499 2014-01-12 Sergio Durigan Junior <sergiodj@redhat.com>
15500
15501 * i386-tdep.c (i386_stap_parse_special_token_triplet): New
15502 function, with code from i386_stap_parse_special_token.
15503 (i386_stap_parse_special_token_three_arg_disp): Likewise.
15504 (i386_stap_parse_special_token): Move code to the two functions
15505 above; simplify it.
15506
15507 2014-01-09 Pedro Alves <palves@redhat.com>
15508 Hui Zhu <hui@codesourcery.com>
15509
15510 PR gdb/16101
15511 * breakpoint.c (insert_bp_location): Rename hw_bp_err_string to
15512 bp_err_string. Don't mark the location shlib_disabled if the
15513 error thrown wasn't a generic or memory error. Catch errors
15514 thrown while inserting breakpoints in overlayed code. Output
15515 error message of software breakpoints.
15516 * remote.c (remote_insert_breakpoint): If this breakpoint has
15517 target-side commands but this stub doesn't support Z0 packets,
15518 throw NOT_SUPPORTED_ERROR error.
15519 * exceptions.h (enum errors) <NOT_SUPPORTED_ERROR>: New error.
15520 * target.h (target_insert_breakpoint): Extend comment.
15521 (target_insert_hw_breakpoint): Add comment.
15522
15523 2014-01-08 Pedro Alves <palves@redhat.com>
15524
15525 * remote.c (remote_add_thread): Add threads silently if starting
15526 up.
15527 (remote_notice_new_inferior): If in all-stop, and starting up,
15528 don't call notice_new_inferior.
15529 (get_current_thread): New function, factored out from ...
15530 (add_current_inferior_and_thread): ... this. Adjust.
15531 (remote_start_remote) <all-stop>: Fetch the thread list. If we
15532 found any thread, then select the remote's current thread as GDB's
15533 current thread too.
15534
15535 2014-01-08 Joel Brobecker <brobecker@adacore.com>
15536
15537 * NEWS: Create a new section for the next release branch.
15538 Rename the section of the current branch, now that it has
15539 been cut.
15540
15541 2014-01-08 Joel Brobecker <brobecker@adacore.com>
15542
15543 GDB 7.7 branch created (79301218fa0f074c5656db0ec8972a5ddcf91fb5):
15544 * version.in: Bump version to 7.7.50.DATE-cvs.
15545
15546 2014-01-08 Yao Qi <yao@codesourcery.com>
15547
15548 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Change
15549 type of 'id' to gdb_byte. Cast 'id' to 'const char *'.
15550 (spu_xfer_partial): Cast 'buf' to 'const char *'.
15551
15552 2014-01-08 Yao Qi <yao@codesourcery.com>
15553
15554 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Pass
15555 return value of bfd_get_filename to symbol_file_add_from_bfd.
15556
15557 2014-01-08 Pierre Muller <muller@sourceware.org>
15558
15559 Fix PR16201.
15560 * coff-pe-read.c (struct read_pe_section_data): Add index field.
15561 (add_pe_exported_sym): Use SECTION_DATA->INDEX for call
15562 to prim_record_mininal_symbol_and_info.
15563 (add_pe_forwarded_sym): Use known section number of forwarded symbol
15564 in call to prim_record_minimal_symbol_and_info.
15565 (read_pe_exported_syms): Set index field of section_data.
15566
15567 2014-01-07 Andrew Pinski <apinski@cavium.com>
15568
15569 * features/aarch64-core.xml (cpsr): Change to be 64bit.
15570 * features/aarch64.c: Regenerate.
15571
15572 2014-01-07 Andreas Schwab <schwab@linux-m68k.org>
15573
15574 * target.c (return_null): Define.
15575 (update_current_target): Use it instead of return_zero for
15576 functions that return a pointer.
15577
15578 2014-01-07 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
15579
15580 * source.c (add_path): Fix check for duplicated paths in the previously
15581 included paths.
15582
15583 2014-01-07 Honggyu Kim <hong.gyu.kim@lge.com>
15584
15585 * ada-lang.c: Remove duplicated include statements.
15586 * alphabsd-nat.c: Ditto.
15587 * amd64-darwin-tdep.c: Ditto.
15588 * amd64fbsd-nat.c: Ditto.
15589 * auto-load.c: Ditto.
15590 * ax-gdb.c: Ditto.
15591 * breakpoint.c: Ditto.
15592 * dbxread.c: Ditto.
15593 * fork-child.c: Ditto.
15594 * gdb_usleep.c: Ditto.
15595 * i386-darwin-tdep.c: Ditto.
15596 * i386fbsd-nat.c: Ditto.
15597 * infcmd.c: Ditto.
15598 * inferior.c: Ditto.
15599 * jv-lang.c: Ditto.
15600 * linux-nat.c: Ditto.
15601 * linux-tdep.c: Ditto.
15602 * m68kbsd-nat.c: Ditto.
15603 * m68klinux-nat.c: Ditto.
15604 * microblaze-tdep.c: Ditto.
15605 * mips-linux-tdep.c: Ditto.
15606 * mn10300-tdep.c: Ditto.
15607 * nto-tdep.c: Ditto.
15608 * opencl-lang.c: Ditto.
15609 * osdata.c: Ditto.
15610 * printcmd.c: Ditto.
15611 * regcache.c: Ditto.
15612 * remote-m32r-sdi.c: Ditto.
15613 * remote.c: Ditto.
15614 * symfile.c: Ditto.
15615 * symtab.c: Ditto.
15616 * tilegx-linux-nat.c: Ditto.
15617 * tilegx-tdep.c: Ditto.
15618 * tracepoint.c: Ditto.
15619 * valops.c: Ditto.
15620 * vaxbsd-nat.c: Ditto.
15621 * windows-nat.c: Ditto.
15622 * xtensa-tdep.c: Ditto.
15623
15624 2014-01-07 Yao Qi <yao@codesourcery.com>
15625
15626 * spu-linux-nat.c (_initialize_spu_nat): Declare.
15627
15628 2014-01-07 Yao Qi <yao@codesourcery.com>
15629 Joel Brobecker <brobecker@adacore.com>
15630
15631 * aix-thread.c (pdc_read_regs): Cast parameter to uintptr_t.
15632 (pdc_write_regs): Likewise.
15633 (fetch_regs_kernel_thread): Likewise.
15634 (store_regs_kernel_thread): Likewise.
15635
15636 2014-01-07 Joel Brobecker <brobecker@adacore.com>
15637
15638 * ada-varobj.c (ada_varobj_adjust_for_child_access): Convert
15639 tagged type objects to their actual type.
15640
15641 2014-01-07 Joel Brobecker <brobecker@adacore.com>
15642
15643 * ada-valprint.c (print_field_values): Add "language" parameter.
15644 Update calls to print_field_values and print_variant_part.
15645 Pass new parameter "language" in call to val_print instead
15646 of "current_language". Replace call to ada_val_print by call
15647 to val_print.
15648 (print_variant_part): Add "language" parameter.
15649 (ada_val_print_struct_union): Update call to print_field_values.
15650
15651 2014-01-07 Joel Brobecker <brobecker@adacore.com>
15652
15653 * ada-valprint.c (ui_memcpy): Delete.
15654 (ada_print_floating): Update documentation. Add empty line
15655 between between function documentation and implementation.
15656 Delete variable "buffer". Use ui_file_xstrdup in place of
15657 ui_file_put. Minor adjustments following this change.
15658
15659 2014-01-07 Joel Brobecker <brobecker@adacore.com>
15660
15661 * ada-valprint.c (ada_val_print_string): New function,
15662 extracted from ada_val_print_array.
15663 (ada_val_print_array): Replace extracted code by call
15664 to ada_val_print_string followed by a return. Move
15665 "else" branch to the function's top block.
15666
15667 2014-01-07 Joel Brobecker <brobecker@adacore.com>
15668
15669 * ada-valprint.c (ada_val_print_array): Move implementation
15670 down. Rename parameter "offset" and "val" into "offset_aligned"
15671 and "original_value" respectively. Add parameter "offset".
15672
15673 2014-01-07 Joel Brobecker <brobecker@adacore.com>
15674
15675 * ada-valprint.c (ada_val_print_ref): Rewrite by mostly
15676 re-organizing the code. Change the "???" message printed
15677 when target type is a TYPE_CODE_UNDEF into
15678 "<ref to undefined type>".
15679
15680 2014-01-07 Joel Brobecker <brobecker@adacore.com>
15681
15682 * ada-valprint.c (print_record): Delete, implementation inlined...
15683 (ada_val_print_struct_union): ... here. Remove call to
15684 ada_check_typedef in inlined implementation.
15685
15686 2014-01-07 Joel Brobecker <brobecker@adacore.com>
15687
15688 * ada-valprint.c (ada_val_print_gnat_array): New function,
15689 extracted from ada_val_print_1;
15690 (ada_val_print_ptr, ada_val_print_num, ada_val_print_enum)
15691 (ada_val_print_flt, ada_val_print_struct_union)
15692 (ada_val_print_ref): Likewise.
15693 (ada_val_print_1): Delete variables i and elttype.
15694 Replace extracted-out code by call to corresponding
15695 new functions.
15696
15697 2014-01-07 Joel Brobecker <brobecker@adacore.com>
15698
15699 * ada-valprint.c (ada_val_print_1): Remove call to gdb_flush.
15700
15701 2014-01-07 Joel Brobecker <brobecker@adacore.com>
15702
15703 * ada-valprint.c (ada_val_print_1): Replace calls to
15704 ada_val_print_1 by calls to val_print.
15705
15706 2014-01-07 Joel Brobecker <brobecker@adacore.com>
15707
15708 * ada-valprint.c (ada_val_print_1): Add parameter "language".
15709 Update calls to self accordingly. Replace calls to c_val_print
15710 by calls to val_print.
15711
15712 2014-01-07 Joel Brobecker <brobecker@adacore.com>
15713
15714 * ada-valprint.c (print_record): Delete declaration.
15715 (adjust_type_signedness, ada_val_print_1): Likewise.
15716 (ada_val_print): Move function implementation down.
15717 (print_variant_part, print_field_values, print_record):
15718 Move function implementation up.
15719
15720 2014-01-07 Joel Brobecker <brobecker@adacore.com>
15721
15722 * python/py-type.c (typy_get_name): New function.
15723 (type_object_getset): Add entry for attribute "name".
15724 * NEWS: Add entry mentioning this new attribute.
15725
15726 2014-01-07 Yao Qi <yao@codesourcery.com>
15727
15728 * gnu-nat.c (set_exceptions_cmd): Remove an empty body 'if'
15729 statement.
15730
15731 2014-01-07 Yao Qi <yao@codesourcery.com>
15732
15733 * gnu-nat.c (info_port_rights): Add qualifier const to
15734 argument args.
15735
15736 2014-01-07 Yao Qi <yao@codesourcery.com>
15737
15738 * gnu-nat.c (trace_me): Use 'void' for empty argument list.
15739
15740 2014-01-07 Yao Qi <yao@codesourcery.com>
15741
15742 * gnu-nat.c (make_inf) Update declaration.
15743 (make_inf): Make it static.
15744 (inf_set_traced): Likewise.
15745 (inf_port_to_thread, inf_task_died_status): Likewise.
15746
15747 2014-01-07 Yao Qi <yao@codesourcery.com>
15748
15749 * gnu-nat.c (inf_tid_to_proc): Remove declaration.
15750
15751 2014-01-07 Yao Qi <yao@codesourcery.com>
15752
15753 * gnu-nat.c (_initialize_gnu_nat): Declare.
15754
15755 2014-01-07 Yao Qi <yao@codesourcery.com>
15756
15757 * gdbarch.sh (byte_order, byte_order_for_code): Change type to
15758 'enum bfd_endian'.
15759 (struct gdbarch_info) <byte_order>: Change type to
15760 'enum bfd_endian'.
15761 <byte_order_for_code>: Likewise.
15762 * gdbarch.c, gdbarch.h: Regenerated.
15763
15764 2014-01-06 Sasha Smundak <asmundak@google.com>
15765
15766 * jit.c: (jit_reader_load_command): Fix JIT reader path creation.
15767
15768 2014-01-06 Tom Tromey <tromey@redhat.com>
15769
15770 * doublest.c (convert_doublest_to_floatformat): Use const, not
15771 CONST.
15772 * somread.c (som_symtab_read): Likewise.
15773
15774 2014-01-07 Hui Zhu <hui@codesourcery.com>
15775
15776 * gdb_bfd.c (gdb_bfd_stash_filename): Removed.
15777 (gdb_bfd_open): Removed gdb_bfd_stash_filename.
15778 (gdb_bfd_fopen): Ditto.
15779 (gdb_bfd_openr): Ditto.
15780 (gdb_bfd_openw): Ditto.
15781 (gdb_bfd_openr_iovec): Ditto.
15782 (gdb_bfd_fdopenr): Ditto.
15783 * gdb_bfd.h (gdb_bfd_stash_filename): Removed.
15784 * solib-aix.c (solib_aix_bfd_open): Alloc object_bfd->filename
15785 with xstrdup.
15786 * solib-darwin.c (darwin_bfd_open): Alloc res->filename
15787 with xstrdup.
15788 * symfile-mem.c (symbol_file_add_from_memory): Removed
15789 gdb_bfd_stash_filename.
15790
15791 2014-01-03 Doug Evans <dje@google.com>
15792
15793 * nat/linux-waitpid.c (linux_debug): Remove extraneous \n from
15794 output.
15795
15796 2014-01-01 Joel Brobecker <brobecker@adacore.com>
15797
15798 Update year range in copyright notice of all files.
15799
15800 2014-01-01 Joel Brobecker <brobecker@adacore.com>
15801
15802 * top.c (print_gdb_version): Set copyright year to 2014.
15803
15804 2014-01-01 Joel Brobecker <brobecker@adacore.com>
15805
15806 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2013.
15807
15808 For older changes see ChangeLog-2013.
15809 \f
15810 Local Variables:
15811 mode: change-log
15812 left-margin: 8
15813 fill-column: 74
15814 version-control: never
15815 coding: utf-8
15816 End:
This page took 0.40618 seconds and 4 git commands to generate.