]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/ChangeLog
gdb/
[thirdparty/binutils-gdb.git] / gdb / ChangeLog
1 2013-09-03 Yao Qi <yao@codesourcery.com>
2
3 * config/djgpp/fnchange.lst: Remove entry of
4 i386-interix-nat.c and i386-interix-tdep.c.
5 * configure.ac: Remove '*-*-interix*'.
6 * configure: Re-generated.
7 * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
8 * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
9 obsolete comments.
10 * osabi.c (gdb_osabi_names): Remove "Interix".
11
12 2013-09-03 Yao Qi <yao@codesourcery.com>
13
14 * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
15
16 2013-09-02 Markus Metzger <markus.t.metzger@intel.com>
17
18 * record.h (record_print_flag) <record_print_src_line,
19 record_print_insn_range>: Rename into ...
20 (record_print_flag) <record_print_src_line,
21 record_print_insn_range>: ... this. Update all users.
22
23 2013-09-02 Pierre Muller <muller@sourceware.org>
24
25 * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
26 error code.
27
28 2013-09-02 Pierre Muller <muller@sourceware.org>
29
30 * windows-nat.c (windows_xfer_memory): Fix compilation failure
31 by use of plongest function.
32
33 2013-09-02 Tristan Gingold <gingold@adacore.com>
34
35 * NEWS: Add entry mentioning support for native Windows x64
36 SEH data.
37
38 * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
39 "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
40 (struct amd64_windows_frame_cache): New struct.
41 (amd64_windows_w2gdb_regnum): New global.
42 (pc_in_range, amd64_windows_frame_decode_epilogue)
43 (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
44 (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
45 (amd64_windows_frame_this_id): New functions.
46 (amd64_windows_frame_unwind): New static global.
47 (amd64_windows_skip_prologue): New function.
48 (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
49 with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
50 with amd64_windows_skip_prologue.
51
52 2013-08-30 Joel Brobecker <brobecker@adacore.com>
53
54 GDB 7.6.1 released.
55
56 2013-08-30 Pedro Alves <palves@redhat.com>
57
58 * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
59 SRC_AND_LOC.
60
61 2013-08-30 Pedro Alves <palves@redhat.com>
62
63 * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
64 warning text.
65
66 2013-08-30 Pedro Alves <palves@redhat.com>
67
68 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
69 Adjust arguments to print_stack_frame.
70
71 2013-08-30 Pedro Alves <palves@redhat.com>
72
73 * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
74
75 2013-08-30 Pedro Alves <palves@redhat.com>
76
77 * frame.h (show_and_print_stack_frame): Delete declaration.
78
79 2013-08-30 Phil Muldoon <pmuldoon@redhat.com>
80
81 PR python/15461
82
83 * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
84 (archpy_name): Check for valid architecture.
85 (archpy_disassemble): Ditto.
86
87 2013-08-29 Joel Brobecker <brobecker@adacore.com>
88
89 * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
90 instead of "long long" in call to ptrace64.
91
92 2013-08-29 Andrew Burgess <aburgess@broadcom.com>
93
94 * mi/mi-interp.c (mi_command_loop): Change signature to match
95 interp_command_loop_ftype.
96 (mi1_command_loop): Remove.
97 (mi2_command_loop): Remove.
98 (mi3_command_loop): Remove.
99 (mi_interpreter_resume): Remove setting of
100 deprecated_command_loop_hook.
101 (_initialize_mi_interp): Set mi_command_loop as the command loop
102 callback.
103
104 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
105
106 * valops.c (do_search_struct_field): Pass v2 instead of base_type to
107 value_type.
108
109 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
110
111 * value.c (allocate_value_contents): Make static.
112 * value.h (allocate_value_contents): Remove prototype.
113
114 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
115
116 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
117 of assembling value via allocate_value_lazy and attribute setter.
118 * findvar.c (default_read_var_value): Use value_at_lazy instead of
119 assembling value via allocate_value_lazy and attribute setter.
120 * valops.c (do_search_struct_field): Use value_at_lazy instead of
121 assembling value via allocate_value_lazy and attribute setter.
122
123 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
124
125 * value.c (value_from_contents_and_address): Replace allocate_value and
126 memcpy with value_from_contents.
127
128 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
129
130 * python/py-framefilter.c (py_print_frame): Remove usage of
131 PyString_AsString. Use python_string_to_host_string instead.
132 Refactor function to work with a string as a new allocation
133 instead of a pointer.
134 (py_print_frame): Ditto.
135 * python/lib/gdb/frames.py (return_list): Cain iterators together
136 instead of adding them as a list.
137 (_sort_list): Call return_list, and remove duplicate code.
138 (execute_frame_filters): Convert iterator to a list with list().
139 * python/lib/gdb/command/frame_filters.py
140 (SetFrameFilterPriority._set_filter_priority): Convert priority
141 attribute to an integer.
142 * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
143 wrapper function __next__.
144 * python/lib/gdb/FrameDecorator.py: If basestring not defined,
145 define as "str".
146
147 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
148
149 PR python/15752
150 * python/py-framefilter.c (apply_frame_filter): Check
151 gdb_python_initialized. Exit if the Python frame-filter code
152 cannot be initialized.
153
154 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
155
156 PR cli/15842
157 * top.c (print_gdb_version): Remove erroneous newline after help
158 text.
159
160 2013-08-29 Yao Qi <yao@codesourcery.com>
161
162 * varobj.c (install_dynamic_child): Remove trailing space.
163 Add one blank line after variable declaration.
164
165 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
166
167 PR gdb/15415
168 * corefile.c (get_exec_file): Use exec_filename.
169 * defs.h (OPF_DISABLE_REALPATH): New definition. Add new comment.
170 * exec.c (exec_close): Free EXEC_FILENAME.
171 (exec_file_attach): New variable canonical_pathname. Use
172 OPF_DISABLE_REALPATH. Call gdb_realpath explicitly. Set
173 EXEC_FILENAME.
174 * exec.h (exec_filename): New.
175 * inferior.c (print_inferior, inferior_command): Use
176 PSPACE_EXEC_FILENAME.
177 * mi/mi-main.c (print_one_inferior): Likewise.
178 * progspace.c (clone_program_space, print_program_space): Likewise.
179 * progspace.h (struct program_space): New field pspace_exec_filename.
180 * source.c (openp): Describe OPF_DISABLE_REALPATH. New variable
181 realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
182
183 2013-08-28 Will Newton <will.newton@linaro.org>
184
185 * common/linux-ptrace.c: Include stdint.h unconditionally.
186
187 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
188
189 Code cleanup.
190 * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
191
192 2013-08-28 Yao Qi <yao@codesourcery.com>
193 Pedro Alves <palves@redhat.com>
194
195 * event-top.c (gdb_setup_readline): Call stderr_fileopen
196 instead of stdio_fileopen.
197 * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
198 .Call stderr_fileopen instead of stdio_fileopen.
199 * ui-file.c [__MINGW32__] (stderr_file_write): New function.
200 [__MINGW32__] (stderr_file_fputs): New function.
201 (stderr_fileopen): New function.
202 * ui-file.h (stderr_fileopen): Declare.
203
204 2013-08-27 Doug Evans <dje@google.com>
205
206 * dwarf2read.c (struct dwarf2_cu): Tweak comment.
207 (struct dwarf2_per_cu_data): Ditto.
208 (maybe_queue_comp_unit): Delete forward decl. Add comment.
209 (process_imported_unit_die): Ditto.
210 (follow_die_sig_1): Simplify assert.
211
212 2013-08-27 Pedro Alves <palves@redhat.com>
213
214 * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
215 xfer_partial's interface. Return TARGET_XFER_E_IO on error.
216 (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
217 windows_xfer_memory directly.
218 (init_windows_ops): Don't install a deprecated_xfer_memory method.
219
220 2013-08-27 Pedro Alves <palves@redhat.com>
221
222 * darwin-nat.c (darwin_xfer_memory): Delete.
223 (_initialize_darwin_inferior): Don't install a
224 deprecated_xfer_memory method.
225
226 2013-08-27 Pedro Alves <pedro@codesourcery.com>
227 Yao Qi <yao@codesourcery.com>
228
229 * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
230 (parse_no_frames_option): Remove.
231 (mi_cmd_stack_list_locals): Handle --skip-unavailable.
232 (mi_cmd_stack_list_args): Adjust.
233 (mi_cmd_stack_list_variables): Handle --skip-unavailable.
234 (list_arg_or_local): Add new parameter 'skip_unavailable'. Return
235 early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
236 Caller update.
237 (list_args_or_locals): New parameter 'skip_unavailable'.
238 Handle it.
239 * valprint.c (scalar_type_p): Rename to ...
240 (val_print_scalar_type_p): ... this. Make extern.
241 (val_print, value_check_printable): Adjust.
242 * valprint.h (val_print_scalar_type_p): Declare.
243 * value.c (value_entirely_unavailable): New function.
244 * value.h (value_entirely_unavailable): Declare.
245
246 * NEWS: Mention the new option "--skip-unavailable" to MI
247 commands '-stack-list-locals', '-stack-list-arguments' and
248 '-stack-list-variables'.
249
250 2013-08-27 Yao Qi <yao@codesourcery.com>
251
252 * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
253 (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
254 options.
255 * mi/mi-getopt.c (mi_getopt): Remove.
256 (mi_getopt_1): Renamed from mi_getopt. Add one parameter
257 'error_on_unknown'.
258 (mi_getopt): Call mi_getopt_1.
259 (mi_getopt_silent): New.
260 * mi/mi-getopt.h (mi_getopt_silent): Declare.
261
262 2013-08-26 Doug Evans <dje@google.com>
263
264 PR symtab/15885
265 * dwarf2read.c (dw2_dump): Print some minimal information indicating
266 .gdb_index is in use.
267 * symfile.c (reread_symbols): Reset objfile->sf.
268
269 * NEWS: Document "mt print objfiles" now takes optional regexp.
270 * symmisc.c (maintenance_print_objfiles): Argument is now an optional
271 regexp of objfiles to print.
272 (_initialize_symmisc): Update doc string for "mt print objfiles".
273
274 * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
275 missing debug info checks.
276
277 2013-08-26 Raunaq Bathija <raunaq12@in.ibm.com>
278 Ulrich Weigand <uweigand@de.ibm.com>
279
280 * xcoffread.c (arrange_linetable): Add fix to correctly handle
281 line tables generated by XLC compiled binaries.
282
283 2013-08-23 Doug Evans <dje@google.com>
284
285 * symmisc.c (dump_symtab): Delete prototype.
286 (dump_msymbols, dump_objfile): Ditto.
287 (maintenance_info_symtabs): Mark as dont_repeat.
288 (_initialize_symmisc): Improve doc string for "mt info symtabs".
289
290 * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
291 debugging printf to better location.
292
293 2013-08-23 Pedro Alves <palves@redhat.com>
294
295 * target.c (target_read_live_memory): Change type of 'ret' local
296 to LONGEST.
297
298 2013-08-23 Pedro Alves <palves@redhat.com>
299
300 * remote.c (remote_write_bytes_aux, remote_write_bytes)
301 (remote_read_bytes): Change return type to LONGEST, and adjust to
302 return a target_xfer_error on error.
303 (remote_xfer_memory): Delete.
304 (remote_flash_write): Change type of 'ret' local to LONGEST.
305 (remote_xfer_partial, remote_xfer_partial): Adjust.
306 (init_remote_ops): Don't install a deprecated_xfer_memory hook.
307
308 2013-08-23 Pierre Muller <muller@sourceware.org>
309
310 ARI fix: Push # directives to start of line.
311 * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
312
313 2013-08-12 Muhammad Waqas <mwaqas@codesourcery.com>
314
315 PR gdb/15501
316 * breakpoint.c (enable_command, disable_command): Iterate over
317 all specified breakpoint locations.
318
319 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
320
321 * common/linux-ptrace.c (linux_fork_to_function): Push #
322 directives to the start of the line.
323 (linux_check_ptrace_features): Fix warning message to use
324 the "_" markup.
325
326 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
327
328 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
329 nat/linux-waitpid.h.
330 (linux-waitpid.o): New object file rule.
331 * common/linux-ptrace.c: Include nat/linux-waitpid.h.
332 (current_ptrace_options): Moved from linux-nat.c.
333 (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
334 parameters.
335 (linux_fork_to_function): New function.
336 (linux_grandchild_function): Likewise.
337 (linux_child_function): Likewise.
338 (linux_check_ptrace_features): New function, heavily
339 based on linux-nat.c:linux_test_for_tracefork.
340 (linux_enable_event_reporting): New function.
341 (ptrace_supports_feature): Likewise.
342 (linux_supports_tracefork): Likewise.
343 (linux_supports_traceclone): Likewise.
344 (linux_supports_tracevforkdone): Likewise.
345 (linux_supports_tracesysgood): Likewise.
346 * common/linux-ptrace.h (HAS_NOMMU): Moved from
347 gdbserver/linux-low.c.
348 (linux_enable_event_reporting): New declaration.
349 (linux_supports_tracefork): Likewise.
350 (linux_supports_traceclone): Likewise.
351 (linux_supports_tracevforkdone): Likewise.
352 (linux_supports_tracesysgood): Likewise.
353 * config.in (PTRACE_TYPE_ARG4): Regenerate.
354 * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
355 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
356 * config/arm/linux.mh (NATDEPFILES): Likewise.
357 * config/i386/linux.mh (NATDEPFILES): Likewise.
358 * config/i386/linux64.mh (NATDEPFILES): Likewise.
359 * config/ia64/linux.mh (NATDEPFILES): Likewise.
360 * config/m32r/linux.mh (NATDEPFILES): Likewise.
361 * config/m68k/linux.mh (NATDEPFILES): Likewise.
362 * config/mips/linux.mh (NATDEPFILES): Likewise.
363 * config/pa/linux.mh (NATDEPFILES): Likewise..
364 * config/powerpc/linux.mh (NATDEPFILES): Likewise..
365 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
366 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
367 * config/sparc/linux.mh (NATDEPFILES): Likewise.
368 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
369 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
370 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
371 * configure.ac (AC_CACHE_CHECK): Add void * to the list of
372 ptrace's 4th argument's types.
373 Check the type of PTRACE_TYPE_ARG4.
374 * configure: Regenerate.
375 * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
376 (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
377 (linux_supports_tracefork_flag): Remove.
378 (linux_supports_tracesysgood_flag): Likewise.
379 (linux_supports_tracevforkdone_flag): Likewise.
380 (current_ptrace_options): Moved to
381 common/linux-ptrace.c.
382 (linux_tracefork_child): Remove.
383 (my_waitpid): Remove.
384 (linux_test_for_tracefork): Renamed to
385 linux_check_ptrace_features and moved to common/linux-ptrace.c.
386 (linux_test_for_tracesysgood): Remove.
387 (linux_supports_tracesysgood): Remove.
388 (linux_supports_tracefork): Remove.
389 (linux_supports_tracevforkdone): Remove.
390 (linux_enable_tracesysgood): Remove.
391 (linux_enable_event_reporting): Remove.
392 (linux_init_ptrace): New function.
393 (linux_child_post_attach): Call linux_init_ptrace.
394 (linux_child_post_startup_inferior): Call linux_init_ptrace.
395 (linux_child_follow_fork): Call linux_supports_tracefork
396 and linux_supports_tracevforkdone.
397 (linux_child_insert_fork_catchpoint): Call
398 linux_supports_tracefork.
399 (linux_child_insert_vfork_catchpoint): Likewise.
400 (linux_child_set_syscall_catchpoint): Call
401 linux_supports_tracesysgood.
402 (lin_lwp_attach_lwp): Call linux_supports_tracefork.
403 * nat/linux-nat.h: New file.
404 * nat/linux-waitpid.c: New file.
405 * nat/linux-waitpid.h: New file.
406
407 2013-08-22 Samuel Bronson <naesten@gmail.com>
408
409 ARM Linux support for `catch syscall'.
410 * syscalls/arm-linux.py: New file.
411 * syscalls/arm-linux.xml: Likewise.
412 * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
413 (arm_linux_init_abi): Register the new function and syscall xml file.
414 * data-directory/Makefile.in: Install the new syscall xml file.
415 * NEWS: Brag about this.
416
417 2013-08-22 Pedro Alves <palves@redhat.com>
418
419 PR gdb/15871
420 * corefile.c (target_xfer_memory_error): New function.
421 (memory_error): Defer EIO to target_memory_error.
422 (read_memory): Use target_xfer_partial, and handle finer-grained
423 target xfer errors.
424 * target.c (target_xfer_error_to_string): New function.
425 (memory_xfer_partial_1): If memory is known to be
426 unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
427 (target_xfer_partial): Make extern.
428 * target.h (enum target_xfer_error): New enum.
429 (target_xfer_error_to_string): Declare function.
430 (target_xfer_partial): Declare function.
431 (struct target_ops) <xfer_partial>: Adjust describing comment.
432
433 2013-08-22 Alan Modra <amodra@gmail.com>
434
435 * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
436 * configure.tgt: Likewise as targets.
437
438 2013-08-20 Doug Evans <dje@google.com>
439
440 * buildsym.c (subfile_stack): Move here from buildsym.h.
441 (pending_macros): Ditto.
442 (get_macro_table): New function.
443 (buildsym_init): Initialize subfile_stack.
444 * coffread.c (type_vector,type_vector_length): Moved here from
445 buildsym.h.
446 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
447 (coff_symtab_read): Use it.
448 * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
449 * dwarf2read.c (macro_start_file): Replace uses of pending_macros
450 with call to get_macro_table.
451 * stabsread.c (type_vector,type_vector_length): Moved here from
452 buildsym.h.
453 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
454 * buildsym.h (get_macro_table): Declare.
455
456 2013-08-20 Tom Tromey <tromey@redhat.com>
457
458 * dbxread.c (record_minimal_symbol): Make 'name' argument const.
459 Update.
460 (read_dbx_dynamic_symtab): Make 'name' const. Remove casts.
461
462 2013-08-20 Doug Evans <dje@google.com>
463
464 * blockframe.c: Remove #include "psymtab.h".
465 * cp-support.c: Ditto.
466 * source.c: Ditto.
467 * stack.c: Ditto.
468
469 2013-08-20 Tom Tromey <tromey@redhat.com>
470
471 PR python/15816:
472 * exceptions.h (return_mask): Now an enum.
473 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
474 enum constants.
475
476 2013-08-20 Tom Tromey <tromey@redhat.com>
477
478 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
479 get_objfile_arch.
480 * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
481 (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
482 * jit.c (jit_object_close_impl): Update.
483 * jv-lang.c (get_dynamics_objfile): Update.
484 * linespec.c (add_minsym): Use get_dynamics_objfile.
485 * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
486 (allocate_objfile): Don't initialize 'gdbarch' field.
487 (get_objfile_arch): Update.
488 * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
489 moved from...
490 (struct objfile) <gdbarch>: ... here. Remove.
491 * stap-probe.c (stap_can_evaluate_probe_arguments): Use
492 get_objfile_arch.
493 * symfile.c (init_entry_point_info): Use get_objfile_arch.
494
495 2013-08-20 Alan Modra <amodra@gmail.com>
496
497 * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
498 for IBM long double nan and inf.
499 (floatformat_is_negative, floatformat_classify,
500 floatformat_mantissa): Similarly.
501 (floatformat_ieee_single, floatformat_ieee_double,
502 floatformat_ieee_quad, floatformat_arm_ext,
503 floatformat_ia64_spill): Delete unused vars.
504 (_initialize_doublest): Delete unused function.
505 * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
506 little-endian variants of floatformat_ibm_long_double.
507
508 2013-08-19 Luis Machado <lgustavo@codesourcery.com>
509
510 * Makefile.in (SFILES): Remove common/target-common.c and
511 add target/waitstatus.c.
512 (HFILES_NO_SRCDIR): Remove common/target-common.h and add
513 target/resume.h, target/wait.h and target/waitstatus.h.
514 (COMMON_OBS): Remove target-common.o and add
515 waitstatus.o.
516 (target-common.o): Remove.
517 (waitstatus.o): New target object file.
518 * common/target-common.c: Move contents to
519 target/waitstatus.c and remove.
520 * common/target-common.h: Move contents to other files and
521 remove.
522 (enum resume_kind: Move to target/resume.h.
523 (TARGET_WNOHANG): Move to target/wait.h.
524 (enum target_waitkind): Move to target/waitstatus.h.
525 (struct target_waitstatus): Likewise.
526 * target.h: Do not include target-common.h and
527 include target/resume.h, target/wait.h and
528 target/waitstatus.h.
529 * target/resume.h: New file.
530 * target/wait.h: New file.
531 * target/waitstatus.h: New file.
532 * target/waitstatus.c: New file.
533
534 2013-08-19 Pedro Alves <palves@redhat.com>
535
536 * linux-nat.c (linux_test_for_tracefork)
537 (linux_test_for_tracesysgood, linux_child_follow_fork)
538 (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
539 (linux_nat_wait_1): Extend comment.
540 (linux_async_pipe): Add comment.
541
542 2013-08-15 Kevin Buettner <kevinb@redhat.com>
543
544 * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
545 (RL78_PC_REGNUM): Move to list of pseudo-register enums.
546 (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
547 Update to account for fact that PC is now a pseudo-register.
548 (rl78_pseudo_register_write, rl78_pseudo_register_read): Add
549 cases for RL78_PC_REGNUM.
550
551 2013-08-15 Muhammad Bilal <mbilal@codesourcery.com>
552
553 PR cli/15841
554 * top.c (quit_force): Skip writing history file
555 if input is not from terminal.
556
557 2013-08-14 Tom Tromey <tromey@redhat.com>
558
559 * remote.c (struct remote_state) <echo_nextthread, nextthread,
560 resultthreadlist>: New fields.
561 (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
562 (remote_get_threadlist, remote_threadlist_iterator): Use
563 new fields. Remove static variables.
564
565 2013-08-14 Tom Tromey <tromey@redhat.com>
566
567 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
568 remote_watch_data_address>: New fields.
569 (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
570 (process_stop_reply, remote_wait_as)
571 (remote_check_watch_resources, remote_stopped_data_address): Update.
572
573 2013-08-14 Tom Tromey <tromey@redhat.com>
574
575 * remote.c (struct remote_state) <async_client_callback,
576 async_client_context>: New fields.
577 (async_client_callback, async_client_context): Remove.
578 (remote_async_serial_handler, remote_async): Update.
579
580 2013-08-14 Tom Tromey <tromey@redhat.com>
581
582 * remote.c (sizeof_pkt): Remove.
583 (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
584
585 2013-08-14 Tom Tromey <tromey@redhat.com>
586
587 * remote.c (struct remote_state) <use_threadinfo_query,
588 use_threadextra_query>: New fields.
589 (remote_threads_info, remote_threads_extra_info)
590 (remote_open_1): Update.
591
592 2013-08-14 Tom Tromey <tromey@redhat.com>
593
594 * remote.c (struct remote_state) <finished_object,
595 finished_annex, finished_offset>: New fields.
596 (remote_read_qxfer): Use remote_state fields; remove static
597 variables.
598
599 2013-08-14 Tom Tromey <tromey@redhat.com>
600
601 * remote.c (struct remote_state) <last_sent_step>:
602 New field.
603 (last_sent_step): Remove.
604 (remote_resume, remote_wait_as): Update.
605
606 2013-08-14 Tom Tromey <tromey@redhat.com>
607
608 * remote.c (struct remote_state) <last_sent_signal>:
609 New field.
610 (last_sent_signal): Remove.
611 (new_remote_state, remote_resume, remote_wait_as): Update.
612
613 2013-08-14 Tom Tromey <tromey@redhat.com>
614
615 * remote.c (struct remote_state) <last_program_signals_packet>:
616 New field.
617 (last_program_signals_packet): Remove.
618 (remote_program_signals, remote_open_1): Update.
619
620 2013-08-14 Tom Tromey <tromey@redhat.com>
621
622 * remote.c (struct remote_state) <last_pass_packet>:
623 New field.
624 (last_pass_packet): Remove.
625 (remote_pass_signals, remote_open_1): Update.
626
627 2013-08-14 Tom Tromey <tromey@redhat.com>
628
629 * remote.c (struct remote_state) <remote_traceframe_number>:
630 New field.
631 (remote_traceframe_number): Remove.
632 (new_remote_state, remote_open_1, set_remote_traceframe)
633 (remote_trace_find): Update.
634
635 2013-08-14 Tom Tromey <tromey@redhat.com>
636
637 * remote.c (struct remote_state) <general_thread, continue_thread>:
638 New fields.
639 (general_thread, continue_thread): Remove.
640 (record_currthread, set_thread, set_general_process)
641 (remote_open_1, extended_remote_attach_1, remote_wait_as)
642 (extended_remote_mourn_1): Update.
643
644 2013-08-14 Tom Tromey <tromey@redhat.com>
645
646 * remote.c (struct remote_state) <remote_desc>: New field.
647 (remote_desc): Remove.
648 (remote_threads_info, remote_threads_extra_info, remote_close)
649 (send_interrupt_sequence, remote_start_remote, remote_open_1)
650 (readchar, remote_xfer_partial, remote_rcmd, packet_command)
651 (remote_hostio_send_command, remote_file_put, remote_file_get)
652 (remote_file_delete, remote_can_async_p, remote_is_async_p)
653 (remote_async, remote_new_objfile, set_range_stepping): Update.
654
655 2013-08-14 Tom Tromey <tromey@redhat.com>
656
657 * remote.c (remote_state): Now a pointer.
658 (get_remote_state_raw): Update.
659 (new_remote_state): New function.
660 (_initialize_remote): Use new_remote_state.
661
662 2013-08-14 Tom Tromey <tromey@redhat.com>
663
664 * remote.c (remote_protocol_features): Now const.
665
666 2013-08-14 Tom Tromey <tromey@redhat.com>
667
668 * remote.c (crc32_table, crc32): Remove.
669 (remote_verify_memory): Use xcrc32.
670
671 2013-08-13 Sergio Durigan Junior <sergiodj@redhat.com>
672
673 * value.h (create_internalvar_type_lazy): Adjust prototype
674 declaration.
675
676 2013-08-13 Andrew Burgess <aburgess@broadcom.com>
677
678 * common/format.c (parse_format_string): Don't allow '#' flag for
679 pointer arguments in format string.
680
681 2013-08-13 Pierre Muller <muller@sourceware.org>
682
683 * utils.c (init_page_info): Only call tgetnum function
684 if rl_get_screen_size did not return useful values.
685
686 2013-08-12 Ali Anwar <ali_anwar@codesourcery.com>
687
688 PR breakpoints/15117
689 * linespec.c (linespec_parse_basic): Check for convenience
690 variable or history value while parsing.
691
692 2013-08-12 Sergio Durigan Junior <sergiodj@redhat.com>
693
694 Revert implementation of gdbarch_gdb_signal_{to,from}_target for
695 AVR.
696 * avr-tdep.c: Remove include of "linux-tdep.h". Remove enum with
697 different signals between the generic Linux kernel implementation
698 and AVR's.
699 (avr_linux_gdb_signal_from_target): Delete.
700 (avr_linux_gdb_signal_to_target): Delete.
701 (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
702
703 2013-08-09 Doug Evans <dje@google.com>
704
705 * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
706 entries.
707
708 2013-08-09 Sergio Durigan Junior <sergiodj@redhat.com>
709
710 * linux-tdep.c: Define enum with generic signal numbers.
711 (linux_gdb_signal_from_target): New function.
712 (linux_gdb_signal_to_target): Likewise.
713 (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
714 methods to the functions above.
715 * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
716 (linux_gdb_signal_to_target): Likewise.
717 * alpha-linux-tdep.c: Define new enum with signals different
718 from generic Linux kernel.
719 (alpha_linux_gdb_signal_from_target): New function.
720 (alpha_linux_gdb_signal_to_target): Likewise.
721 (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
722 with the functions mentioned above.
723 * avr-tdep.c: Define enum with differences between Linux kernel
724 and AVR signals.
725 (avr_linux_gdb_signal_from_target): New function.
726 (avr_linux_gdb_signal_to_target): Likewise.
727 (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
728 the functions mentioned above.
729 * sparc-linux-tdep.c: Define enum with differences between SPARC
730 and generic Linux kernel signal numbers.
731 (sparc32_linux_gdb_signal_from_target): New function.
732 (sparc32_linux_gdb_signal_to_target): Likewise.
733 (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
734 to the functions defined above.
735 * xtensa-linux-tdep.c: Define enum with differences between
736 Xtensa and Linux kernel generic signals.
737 (xtensa_linux_gdb_signal_from_target): New function.
738 (xtensa_linux_gdb_signal_to_target): Likewise.
739 (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
740 to the functions defined above.
741 * mips-linux-tdep.c: Define enum with differences between
742 signals in MIPS and Linux kernel generic ones.
743 (mips_gdb_signal_to_target): New function.
744 (mips_gdb_signal_from_target): Redefine to use new enum, handle
745 only different signals from the Linux kernel generic.
746 (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
747 the functions defined above.
748 * mips-linux-tdep.h (enum mips_signals): Remove.
749
750 2013-08-09 Pedro Alves <palves@redhat.com>
751
752 * avr-tdep.c (XMALLOC): Delete macro.
753 * cli/cli-dump.c (XMALLOC): Delete macro.
754
755 2013-08-09 Pedro Alves <palves@redhat.com>
756
757 * cli/cli-dump.c: Don't include cli/cli-dump.h.
758 (scan_expression_with_cleanup, scan_filename_with_cleanup)
759 (fopen_with_cleanup, add_dump_command): Make static.
760 * cli/cli-dump.h: Delete file.
761 * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
762 cli/cli-dump.h.
763
764 2013-08-09 Pedro Alves <palves@redhat.com>
765
766 * tracepoint.c (tfile_start): Show tilde-expanded filename in
767 error message.
768
769 2013-08-09 Pedro Alves <palves@redhat.com>
770
771 * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
772 error message.
773
774 2013-08-09 Pedro Alves <palves@redhat.com>
775
776 * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
777 (gcore_command): Use tilde_expand here, and when showing the
778 filename to the user, show the expanded version.
779
780 2013-08-09 Yao Qi <yao@codesourcery.com>
781
782 * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
783 'entryval' is set.
784
785 2013-08-08 Azat Khuzhin <a3at.mail@gmail.com> (tiny change)
786
787 * gcore.c (create_gcore_bfd): Use tilde_expand.
788
789 2013-08-08 Yao Qi <yao@codesourcery.com>
790
791 * frame.h (read_frame_local): Declare.
792 * mi/mi-cmd-stack.c (list_args_or_locals): Call
793 read_frame_local.
794 * stack.c (read_frame_local): New.
795
796 2013-08-08 Yao Qi <yao@codesourcery.com>
797
798 * mi/mi-cmd-stack.c: Update comments to function
799 list_args_or_locals.
800
801 2013-08-07 Tom Tromey <tromey@redhat.com>
802
803 PR symtab/15028:
804 * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
805 (process_psymtab_comp_unit_reader): Use it.
806 (process_psymtab_comp_unit): Update. Add "pretend_language"
807 argument.
808 (dwarf2_build_psymtabs_hard): Update.
809 (scan_partial_symbols): Pass CU's language to
810 process_psymtab_comp_unit.
811
812 2013-08-07 Tom Tromey <tromey@redhat.com>
813
814 * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
815 (dwarf2_gdb_index_functions): Update.
816 * psymtab.c (find_symbol_file_from_partial): Remove.
817 (psym_functions): Update.
818 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
819 Remove.
820
821 2013-08-07 Tom Tromey <tromey@redhat.com>
822
823 * symfile.c (set_initial_language): Look up "main" symbol
824 and use its language.
825 * symtab.c (find_main_filename): Remove.
826 * symtab.h (find_main_filename): Remove.
827
828 2013-08-07 Tom Tromey <tromey@redhat.com>
829
830 * dwarf2read.c (recursively_compute_inclusions): Add
831 "immediate_parent" argument. Set symtab's "user" field
832 if not set.
833 (compute_symtab_includes): Update.
834
835 2013-08-07 Tom Tromey <tromey@redhat.com>
836
837 * linespec.c (convert_linespec_to_sals): Use maybe_add_address
838 when adding label symbols.
839
840 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
841 Ulrich Weigand <uweigand@de.ibm.com>
842
843 * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
844 * configure.host (powerpc64-*-aix*): Likewise.
845
846 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
847 Ulrich Weigand <uweigand@de.ibm.com>
848
849 * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
850 is defined.
851 * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
852 (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
853 (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
854 * configure.ac: Check for ptrace64.
855 * configure, config.in: Regenerate.
856
857 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
858 Ulrich Weigand <uweigand@de.ibm.com>
859
860 * aixthread.c: Call ptrace64 instead of ptracex if defined.
861 Call ptrace64 instead of ptrace if defined.
862 Add macro addr_ptr to take care of ptrace address argument.
863 (pdc_read_regs): Likewise.
864 (pdc_write_regs): Likewise.
865 (aix_thread_resume): Likewise.
866 (fetch_regs_kernel_thread): Likewise.
867 (store_regs_kernel_thread): Likewise.
868
869 2013-08-07 Anton Blanchard <anton@samba.org>
870
871 * MAINTAINERS: Add myself to Write After Approval.
872
873 2013-08-05 Tom Tromey <tromey@redhat.com>
874
875 * aix-thread.c (_initialize_aix_thread): Use
876 complete_target_initialization.
877 * bsd-uthread.c (_initialize_bsd_uthread): Use
878 complete_target_initialization.
879 * dec-thread.c (_initialize_dec_thread): Use
880 complete_target_initialization.
881 * ravenscar-thread.c (_initialize_ravenscar): Use
882 complete_target_initialization.
883 * sol-thread.c (_initialize_sol_thread): Use
884 complete_target_initialization.
885 * spu-multiarch.c (_initialize_spu_multiarch): Use
886 complete_target_initialization.
887
888 2013-08-05 Tom Tromey <tromey@redhat.com>
889
890 * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
891 * ada-lang.c (ada_lookup_simple_minsym): Return
892 bound_minimal_symbol.
893 * ada-lang.h (ada_lookup_simple_minsym): Update.
894 * c-exp.y (variable): Use lookup_bound_minimal_symbol.
895 * f-exp.y (variable): Use lookup_bound_minimal_symbol.
896 * go-exp.y (variable): Use lookup_bound_minimal_symbol.
897 * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
898 * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
899 * minsyms.c (msymbol_objfile): Remove.
900 (lookup_minimal_symbol_internal): New function, from
901 lookup_minimal_symbol.
902 (lookup_minimal_symbol): Rewrite using
903 lookup_minimal_symbol_internal.
904 (lookup_bound_minimal_symbol): New function.
905 * minsyms.h (msymbol_objfile): Remove.
906 (lookup_bound_minimal_symbol): Declare.
907 * p-exp.y (variable): Use lookup_bound_minimal_symbol.
908 * parse.c (write_exp_msymbol): Change parameter to a
909 bound_minimal_symbol.
910 (write_dollar_variable): Use lookup_bound_minimal_symbol.
911 * parser-defs.h (write_exp_msymbol): Update.
912 * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
913 * symfile.c (simple_read_overlay_table): Use
914 lookup_bound_minimal_symbol.
915 * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
916 (search_symbols): Likewise.
917 (print_msymbol_info): Take a bound_minimal_symbol argument.
918 (symtab_symbol_info, rbreak_command): Update.
919 * symtab.h (struct symbol_search) <msymbol>: Change type
920 to bound_minimal_symbol.
921 * valops.c (find_function_in_inferior): Use
922 lookup_bound_minimal_symbol.
923 * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
924
925 2013-08-05 Jan Kratochvil <jan.kratochvil@redhat.com>
926
927 Code cleanup.
928 * remote.c (cleanup_sigint_signal_handler): Rename the declaration
929 to ...
930 (async_cleanup_sigint_signal_handler): ... this.
931 (initialize_sigint_signal_handler): Remove declaration.
932 (handle_remote_sigint): Rename the declaration to ...
933 (async_handle_remote_sigint): ... this.
934 (handle_remote_sigint_twice): Rename the declaration to ...
935 (async_handle_remote_sigint_twice): ... this.
936 (async_remote_interrupt, async_remote_interrupt_twice)
937 (remote_interrupt): Remove the declarations.
938 (remote_interrupt_twice): Rename the declaration ...
939 (sync_remote_interrupt_twice): ... this.
940 (sigint_remote_twice_token): Rename the variable to ...
941 (async_sigint_remote_twice_token): ... this.
942 (sigint_remote_token): Rename the variable to ...
943 (async_sigint_remote_token): ... this.
944 (initialize_sigint_signal_handler): Rename the function to ...
945 (async_initialize_sigint_signal_handler): ... this. Update the name
946 inside.
947 (handle_remote_sigint): Rename the function to ...
948 (async_handle_remote_sigint): ... this. Update the names inside.
949 (handle_remote_sigint_twice): Rename the function to ...
950 (async_handle_remote_sigint_twice): ... this. Update the names inside.
951 (cleanup_sigint_signal_handler): Rename the function to ...
952 (async_cleanup_sigint_signal_handler): ... this.
953 (remote_interrupt): Rename the function to ...
954 (sync_remote_interrupt): this. Update the names inside.
955 (remote_interrupt_twice): Rename the function to ...
956 (sync_remote_interrupt_twice): this. Update the names inside.
957 (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
958 (_initialize_remote): Update the names inside.
959
960 2013-08-02 Tom Tromey <tromey@redhat.com>
961
962 PR symtab/15719:
963 * breakpoint.c (update_watchpoint, watchpoint_check)
964 (watch_command_1): Update.
965 * eval.c (fetch_subexp_value): Add "preserve_errors"
966 parameter.
967 * ppc-linux-nat.c (check_condition): Update.
968 * value.h (fetch_subexp_value): Update.
969
970 2013-08-02 Andrew Burgess <aburgess@broadcom.com>
971
972 * mi/mi-interp.c (mi_interpreter_resume): Remove call to
973 add_file_handler.
974
975 2013-08-01 Doug Evans <dje@google.com>
976
977 PR symtab/15691
978 * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
979 (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
980 Add assert of sig_entry->dwo_unit == NULL.
981 (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
982 had already been read.
983 (read_signatured_type): Set per_cu.tu_read.
984
985 PR symtab/15695
986 * valops.c (value_struct_elt): Add missing call to check_typedef.
987 (value_find_oload_method_list): Ditto.
988
989 * symtab.c (do_free_search_symbols_cleanup): Change arg to,
990 effectively, struct symbol_search **.
991 (make_cleanup_free_search_symbols): Change arg to struct
992 symbol_search **. All callers updated.
993 (compare_search_syms): Compare symtab file name and block as well.
994 (search_symbols_equal): New function.
995 (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
996 New args new_head, new_tail. Result is now void. Remove dups after
997 sorting the symbols.
998 (search_symbols): Sort all found symbols once, after all have been
999 found, and remove duplicates. Simplify cleanup tracking of result.
1000 * symtab.h (make_cleanup_free_search_symbols): Update prototype.
1001
1002 Further workarounds for binutils/15021.
1003 * dwarf2read.c (recursively_compute_inclusions): Change type of result
1004 parameter to VEC (symtab_ptr) **. New parameter all_type_symtabs.
1005 Watch for duplicate symtabs coming from type units.
1006 (compute_symtab_includes): Update call to
1007 recursively_compute_inclusions. Build vector of included symtabs
1008 instead of per_cus.
1009 * symtab.h (symtab_ptr): New typedef.
1010 (DEF_VEC_P (symtab_ptr)): New VEC type.
1011 * linespec.c (symtab_p): Delete. All uses updated to use symtab_ptr
1012 instead.
1013
1014 2013-08-01 Andrew Burgess <aburgess@broadcom.com>
1015
1016 * cli/cli-script.c (script_from_file): Remove use of
1017 error_pre_print.
1018 * main.c (captured_main): Remove use of error_pre_print and
1019 quit_pre_print.
1020 * utils.c (error_pre_print, quit_pre_print): Remove.
1021 * utils.h (error_pre_print, quit_pre_print): Likewise.
1022
1023 2013-08-01 Yao Qi <yao@codesourcery.com>
1024
1025 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
1026 with mi_getopt.
1027 (mi_cmd_stack_list_variables): Likewise.
1028
1029 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
1030
1031 * exceptions.c (deprecated_throw_reason): Remove.
1032 * exceptions.h (deprecated_throw_reason): Remove.
1033
1034 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
1035
1036 * remote-mips.c (mips_error): Replace use of
1037 deprecated_throw_reason with throw_verror. Use the error message
1038 passed to mips_error as the error message for throw_verror.
1039
1040 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
1041
1042 * monitor.c (monitor_interrupt_query): Replace use of
1043 deprecated_throw_reason with quit.
1044 * nto-procfs.c (interrupt_query): Likewise.
1045 * remote-fileio.c (remote_fileio_sig_exit): Likewise.
1046 * remote-mips.c (mips_kill): Likewise.
1047 * remote.c (interrupt_query): Likewise.
1048
1049 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
1050
1051 * utils.c (internal_verror): Replace use of deprecated_throw_reason
1052 with call to fatal.
1053
1054 2013-07-31 Pedro Alves <pedro@codesourcery.com>
1055 Yao Qi <yao@codesourcery.com>
1056
1057 * tracepoint.c (trace_dump_command): Select the current frame.
1058
1059 2013-07-30 Doug Evans <dje@google.com>
1060
1061 * dwarf2read.c (process_queue): Add type signature to debug output.
1062
1063 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
1064
1065 * value.c (value_fetch_lazy): Mark optimized out values as such
1066 rather than raising an error.
1067
1068 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
1069
1070 * value.c (value_fetch_lazy): Ensure parent value is not lazy
1071 before checking which bits of the parent, not the child, value are
1072 valid.
1073
1074 2013-07-30 Muhammad Bilal <mbilal@codesorcery.com>
1075
1076 PR gdb/15715
1077 * top.c: Include "filenames.h".
1078 (set_history_filename): New function.
1079 (init_main): Install it as set hook of the "set history filename"
1080 command.
1081
1082 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
1083
1084 * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
1085 attribute parameter.
1086 (dwarf2_const_value_data): Constify struct attribute parameter.
1087 (dwarf2_const_value): Constify struct attribute parameter.
1088 (dwarf2_const_value_attr): Constify struct attribute parameter.
1089 (lookup_die_type): Constify struct attribute parameter.
1090 (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
1091 (follow_die_ref_or_sig): Constify struct attribute parameter.
1092 (follow_die_ref): Constify struct attribute parameter.
1093 (follow_die_sig): Constify struct attribute parameter.
1094 (get_DW_AT_signature_type): Constify struct attribute parameter.
1095 (get_type_unit_group): Constify struct attribute parameter.
1096 (fill_in_loclist_baton): Constify struct attribute parameter.
1097 (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
1098 (type_unit_group): Constify struct attribute parameter.
1099
1100 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
1101
1102 * dwarf2read.c (attr_form_is_block): Make argument const.
1103 (attr_form_is_section_offset): Make argument const.
1104 (attr_form_is_constant): Make argument const.
1105 (attr_form_is_ref): Make argument const.
1106
1107 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
1108
1109 * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
1110 All uses updated.
1111 (attr_form_is_ref): Moved below attr_form_is_constant.
1112
1113 2013-07-29 Doug Evans <dje@google.com>
1114
1115 * main.c (captured_command_loop): Tweak comment.
1116
1117 * target.c (target_async_permitted_1): Fix comment.
1118
1119 * symtab.c (iterate_over_some_symtabs): Add comment.
1120
1121 * symtab.c (iterate_over_some_symtabs): Fix indentation.
1122
1123 2013-07-27 Yao Qi <yao@codesourcery.com>
1124
1125 * NEWS: Mention that GDBserver now supports hardware
1126 watchpoints on the MIPS GNU/Linux target.
1127
1128 2013-07-27 Yao Qi <yao@codesourcery.com>
1129
1130 * Makefile.in (HFILES_NO_SRCDIR): Add
1131 common/mips-linux-watch.h.
1132 (mips-linux-watch.o): New rule.
1133 * common/mips-linux-watch.c: New.
1134 * common/mips-linux-watch.h: New.
1135 * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
1136 * mips-linux-nat.c: Include mips-linux-watch.h.
1137 (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
1138 to common/mips-linux-watch.h.
1139 (MAX_DEBUG_REGISTER): Likewise.
1140 (enum pt_watch_style): Likewise.
1141 (struct mips32_watch_regs): Likewise.
1142 (struct mips64_watch_regs): Likewise.
1143 (struct pt_watch_regs): Likewise.
1144 (struct mips_watchpoint): Likewise.
1145 (mips_linux_watch_get_irw_mask): Move to
1146 common/mips-linux-watch.c.
1147 (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
1148 (mips_linux_watch_get_watchlo): Likewise.
1149 (mips_linux_watch_set_watchlo): Likewise.
1150 (mips_linux_watch_get_watchhi): Likewise.
1151 (mips_linux_watch_set_watchhi): Likewise.
1152 (mips_linux_read_watch_registers): Likewise.
1153 (mips_linux_watch_type_to_irw): Likewise.
1154 (mips_linux_stopped_data_address, fill_mask): Likewise.
1155 (mips_linux_watch_try_one_watch): Likewise.
1156 (mips_linux_watch_populate_regs): Likewise.
1157
1158 2013-07-27 Yao Qi <yao@codesourcery.com>
1159
1160 * mips-linux-nat.c (get_irw_mask): Rename to ...
1161 (mips_linux_watch_get_irw_mask): ... this. Rename parameter
1162 'set' to 'n'. Update function comment. All callers changed.
1163 (get_reg_mask): Rename parameter 'set' to 'n'. Update
1164 function comment. All callers changed.
1165 (get_num_valid): Rename to ...
1166 (mips_linux_watch_get_num_valid): ... this. Rename parameter
1167 'set' to 'n'. Update function comment. All callers changed.
1168 (get_watchlo): Rename to ...
1169 (mips_linux_watch_get_watchlo): ... this. Rename parameter
1170 'set' to 'n'. Update function comment. All callers changed.
1171 (set_watchlo): Rename to ...
1172 (mips_linux_watch_set_watchlo): ... this. Rename parameter
1173 'set' to 'n'. Update function comment. All callers changed.
1174 (get_watchhi): Rename to ...
1175 (mips_linux_watch_get_watchhi): ... this. Update function
1176 comment. All callers changed.
1177 (set_watchhi): Rename to ...
1178 (mips_linux_watch_set_watchhi): ... this. Update function
1179 comment. All callers changed.
1180 (mips_linux_read_watch_registers): Update function comment.
1181 Add new parameters 'lwpid', 'watch_readback', and
1182 'watch_readback_valid'. Update.
1183 (type_to_irw): Rename to ...
1184 (mips_linux_watch_type_to_irw): ... this. Update function
1185 comment. All callers changed.
1186 (fill_mask): Update function comment.
1187 (try_one_watch): Rename to ...
1188 (mips_linux_watch_try_one_watch): ... this. Change the type
1189 of parameter 'irw' from 'unsigned' to 'uint32_t'.
1190 (populate_regs_from_watches): Rename to ...
1191 (mips_linux_watch_populate_regs): ... this. Add parameter
1192 'current_watches'. All callers changed.
1193
1194 2013-07-27 Yao Qi <yao@codesourcery.com>
1195
1196 * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
1197 the code.
1198 (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
1199 (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
1200 (struct pt_watch_regs): Likewise.
1201 [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
1202 [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
1203 [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
1204 [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
1205 [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
1206
1207 2013-07-27 Yao Qi <yao@codesourcery.com>
1208
1209 * breakpoint.h: Include break-common.h.
1210 (enum target_hw_bp_type): Move to ...
1211 * common/break-common.h: ... here. New.
1212
1213 2013-07-26 Cyril Nikolaev <cyril@nichtverstehen.de>
1214
1215 * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
1216 process group regardless of having tty on stdin.
1217
1218 2013-07-25 Doug Evans <dje@google.com>
1219
1220 * linux-fork.h (detach_fork): Delete.
1221
1222 2013-07-25 Tom Tromey <tromey@redhat.com>
1223
1224 PR remote/15256, PR remote/15266:
1225 * bfd-target.c (target_bfd_reopen): Initialize to_magic.
1226 * monitor.c (monitor_detach): Use unpush_target.
1227 * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
1228 * remote-mips.c (mips_detach): Use unpush_target. Don't
1229 call mips_close.
1230 * remote-sim.c (gdbsim_detach): Use unpush_target.
1231 * target.c (pop_target): Remove.
1232 (pop_all_targets_above): Don't call target_close.
1233 (target_close): Assert that the target is unpushed.
1234 * target.h (pop_target): Don't declare.
1235 * tracepoint.c (tfile_open): Use unpush_target.
1236
1237 2013-07-25 Tom Tromey <tromey@redhat.com>
1238
1239 * linux-thread-db.c (init_thread_db_ops): Call
1240 complete_target_initialization.
1241 (_initialize_thread_db): Don't call add_target.
1242 * target.c (complete_target_initialization): New function.
1243 (add_target_with_completer): Call it.
1244 * target.h (complete_target_initialization): Declare.
1245
1246 2013-07-25 Mark Kettenis <kettenis@gnu.org>
1247
1248 * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
1249 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
1250 (HPPANBSD_SIZEOF_GREGS): New define.
1251 (hppaobsd_supply_gregset): Handle additional registers.
1252 * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
1253 we provide more registers now.
1254 (hppabsd_supply_gregset): Supply additional registers.
1255 (hppabsd_collect_gregset): Collect additional registers.
1256
1257 2013-07-25 Mark Kettenis <kettenis@gnu.org>
1258
1259 * hppabsd-tdep.c: Include "dwarf2-frame.h".
1260 (hppabsd_dwarf2_frame_init_reg): New function.
1261 (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
1262
1263 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
1264
1265 * mi/mi-main.c (output_register): Make MI 'r' format use standard
1266 'z' format code. Remove error for optimized out values, standard
1267 code will handle these fine.
1268
1269 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
1270
1271 * NEWS: Mention new 'z' formatter.
1272 * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
1273 (_initialize_printcmd): Mention 'z' formatter in help text of the
1274 'x' command.
1275
1276 2013-07-24 Maciej W. Rozycki <macro@codesourcery.com>
1277
1278 * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
1279 formatting.
1280
1281 2013-07-24 Sergio Durigan Junior <sergiodj@redhat.com>
1282
1283 * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
1284 interface can evaluate arguments. Fallback to the old mode if it
1285 cannot.
1286 (create_exception_master_breakpoint): Likewise.
1287 * elfread.c (elf_can_evaluate_probe_arguments): New function.
1288 (struct sym_probe_fns elf_probe_fns): Export function above to the
1289 probe interface.
1290 * probe.c (can_evaluate_probe_arguments): New function.
1291 * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
1292 function pointer.
1293 (can_evaluate_probe_arguments): New function prototype.
1294 * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
1295 probe interface can evaluate arguments. Fallback to the old mode
1296 if it cannot.
1297 * stap-probe.c (stap_get_probe_argument_count): Check if probe
1298 interface can evaluate arguments. Warning the user if it cannot.
1299 (stap_can_evaluate_probe_arguments): New function.
1300 (struct probe_ops stap_probe_ops): Export function above to the
1301 probe interface.
1302 * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
1303 New function pointer.
1304
1305 2013-07-24 Luis Machado <lgustavo@codesourcery.com>
1306
1307 * Makefile.in (SFILES): Add common/target-common.c.
1308 Add common/target-common.h to headers.
1309 (COMMON_OBS): Add target-common.o.
1310 (target-common.o): New target.
1311 * linux-nat.h (resume_kind): Move to common/target-common.h.
1312 * target.c (target_waitstatus_to_string): Move to
1313 common/target-common.c.
1314 * target.h: Include target-common.h.
1315 (target_waitkind): Move to common/target-common.h.
1316 (target_waitstatus): Likewise.
1317 (TARGET_WNOHANG): Likewise.
1318 * common/target-common.c: New file.
1319 * common/target-common.h: New file.
1320
1321 2013-07-24 Doug Evans <dje@google.com>
1322
1323 * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
1324 a warning.
1325
1326 2013-07-23 Yao Qi <yao@codesourcery.com>
1327
1328 * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
1329 parameter 'gdbarch'.
1330 (i386_stack_tramp_frame_sniffer): Caller update.
1331 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
1332 parameter 'gdbarch' and 'target'.
1333 (i386_linux_core_read_description): Caller update.
1334 * amd64-linux-tdep.c (amd64_linux_core_read_description):
1335 Likewise.
1336 * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
1337 declaration.
1338
1339 2013-07-23 Tom Tromey <tromey@redhat.com>
1340
1341 * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
1342 2013-07-22.
1343
1344 2013-07-22 Doug Evans <dje@google.com>
1345
1346 * exec.h (remove_target_sections): Delete arg abfd.
1347 * exec.c (exec_close): Update call to remove_target_sections.
1348 (remove_target_sections): Delete arg abfd.
1349 * solib.c (update_solib_list): Ditto.
1350 (reload_shared_libraries_1): Ditto.
1351 (clear_solib): Ditto, and unconditionally call remove_target_sections.
1352 * target.h (struct target_section): Rename key to owner.
1353 All uses updated.
1354
1355 2013-07-22 Tom Tromey <tromey@redhat.com>
1356
1357 * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
1358
1359 2013-07-22 Tom Tromey <tromey@redhat.com>
1360
1361 * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
1362 Simplify cleanup handling.
1363
1364 2013-07-22 Tom Tromey <tromey@redhat.com>
1365
1366 * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
1367 on all return paths.
1368
1369 2013-07-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
1370
1371 * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
1372 (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
1373 DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
1374
1375 2013-07-22 Phil Muldoon <pmuldoon@redhat.com>
1376
1377 * top.c (print_gdb_version): Add help, apropos description and
1378 url to online documentation.
1379
1380 2013-07-19 Hui Zhu <hui@codesourcery.com>
1381
1382 PR gdb/15692
1383 * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
1384
1385 2013-07-19 Yao Qi <yao@codesourcery.com>
1386
1387 * target.c (update_current_target): Change the default action
1388 of 'to_traceframe_info' from tcomplain to return_zero.
1389 * target.h (struct target_ops) <to_traceframe_info>: Add more
1390 comments.
1391 * valops.c (read_value_memory): Call
1392 traceframe_available_memory unconditionally.
1393
1394 2013-07-18 Yao Qi <yao@codesourcery.com>
1395
1396 * coffread.c (coff_symfile_read): Iterate over minimal symbols,
1397 if the name is prefixed by "__imp_" or "_imp_", look for minimal
1398 symbol without prefix. If found, set its type to
1399 'mst_solib_trampoline'.
1400
1401 2013-07-17 Doug Evans <dje@google.com>
1402
1403 * NEWS: Mention "set print raw frame-arguments".
1404 * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
1405 * stack.c (print_raw_frame_arguments): New static global.
1406 (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
1407 (_initialize_stack): New command "set/show print raw frame-arguments".
1408 * valprint.c (setprintrawlist, showprintrawlist): New globals.
1409 (set_print_raw, show_print_raw): New functions.
1410 (_initialize_valprint): New prefix command "set/show print raw".
1411 * valprint.h (value_print_options): Improve comments.
1412
1413 * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
1414 of all *list variables.
1415
1416 * gdbcmd.h (togglelist): Delete.
1417 * cli/cli-cmds.c (togglelist): Delete.
1418 (init_cmd_lists): Update.
1419 * cli/cli-cmds.h (togglelist): Delete.
1420
1421 2013-07-17 Tom Tromey <tromey@redhat.com>
1422
1423 * dwarf2read.c (dwarf2_per_objfile_free): Clear
1424 dwarf2_per_objfile.
1425
1426 2013-07-16 Doug Evans <dje@google.com>
1427
1428 * nto-tdep.c (nto_relocate_section_addresses): Update,
1429 target_section.bfd deleted.
1430 * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
1431 * s390-tdep.c (s390_load): Ditto.
1432 * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
1433
1434 2013-07-16 Andrew Burgess <aburgess@broadcom.com>
1435
1436 * common/format.c (parse_format_string): Add checks for NULL
1437 character before calling strchr.
1438
1439 2013-07-16 Doug Evans <dje@google.com>
1440
1441 * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
1442 temp_pathname argument.
1443 * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
1444 when opening the file fails.
1445
1446 * target.h (struct target_section): Delete member bfd.
1447 All users updated to use the_bfd_section->owner instead.
1448 * exec.c (add_to_section_table): Assert bfd is expected value.
1449 Remove initialization of target_section.bfd.
1450 (remove_target_sections): Update.
1451 (section_table_available_memory): Update.
1452 (section_table_xfer_memory_partial): Update.
1453 (print_section_info): Update.
1454 (exec_set_section_address): Update.
1455 * record-full.c (record_full_core_xfer_partial): Update.
1456 * solib-svr4.c (svr4_relocate_section_addresses): Update.
1457 * solib-target.c (solib_target_relocate_section_addresses): Update.
1458 * symfile.c (build_section_addr_info_from_section_table): Update.
1459 * target.c (memory_xfer_live_readonly_partial): Update.
1460 (memory_xfer_partial_1): Update.
1461
1462 2013-07-15 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
1463
1464 * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
1465 now available for embedded (BookE) and server (BookS) processors,
1466 correct mentions of 'booke' and adjust comments accordingly in order to
1467 avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
1468 (have_ptrace_booke_interface): Rename function and variable
1469 'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
1470 Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
1471 (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
1472 'hwdebug_point_cmp'. Update all uses.
1473 (booke_find_thread_points_by_tid): Rename function
1474 'booke_find_thread_points_by_tid' to
1475 'hwdebug_find_thread_points_by_tid'. Update all uses.
1476 (booke_insert_point): Rename function 'booke_insert_point' to
1477 'hwdebug_insert_point'. Update all uses.
1478 (booke_remove_point): Rename function 'booke_remove_point' to
1479 'hwdebug_remove_point'. Update all uses.
1480
1481 2013-07-15 Maciej W. Rozycki <macro@codesourcery.com>
1482
1483 * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
1484 numbers with enum values.
1485
1486 2013-07-15 Ali Anwar <ali_anwar@codesourcery.com>
1487
1488 PR threads/13217
1489 * thread.c (thread_apply_all_command): Check for valid threads
1490 and thread count.
1491 (thread_array_cleanup): New struct.
1492 (set_thread_refcount): New function.
1493
1494 2013-07-11 Andrew Burgess <aburgess@broadcom.com>
1495
1496 * infcmd.c (default_print_one_register_info): Reuse function
1497 print_hex_chars.
1498
1499 2013-07-10 Tom Tromey <tromey@redhat.com>
1500
1501 * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
1502 (ada-exp.o): New target.
1503
1504 2013-07-10 Sergio Durigan Junior <sergiodj@redhat.com>
1505
1506 * mt-tdep.c (mt_registers_info): Call
1507 get_no_prettyformat_print_options instead of
1508 get_raw_print_options (regression by last patch from Doug
1509 Evans).
1510
1511 2013-07-09 Pedro Alves <palves@redhat.com>
1512
1513 Checked in by Joel Brobecker <brobecker@adacore.com>.
1514 * ada-lang.c (coerce_unspec_val_to_type): Use
1515 value_optimized_out_const.
1516 * value.c (value_optimized_out_const): New function.
1517 * value.h (value_optimized_out_const): New declaration.
1518
1519 2013-07-09 Doug Evans <dje@google.com>
1520
1521 * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
1522 Enum values rename as well. All uses updated.
1523 * valprint.h (value_print_options): Rename member pretty to
1524 pretty format. Rename member prettyprint_arrays to
1525 prettyformat_arrays. Rename member prettyprint_structs to
1526 prettyformat_structs. All uses updated.
1527 (get_no_prettyformat_print_options): Renamed from
1528 get_raw_print_options.
1529 * valprint.c (get_no_prettyformat_print_options): Renamed from
1530 get_raw_print_options. All callers updated.
1531 (show_prettyformat_structs): Renamed from show_prettyprint_structs.
1532 All callers updated.
1533 (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
1534 All callers updated.
1535 (_initialize_valprint): Improve help text for "set print pretty" and
1536 "set print arrays".
1537
1538 2013-07-09 Andrew Burgess <aburgess@broadcom.com>
1539
1540 * value.c (value_bits_valid): Revert previous change, and change
1541 by Pedro on 2013-07-04, due to regressions in
1542 gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
1543
1544 2013-07-08 Andrew Burgess <aburgess@broadcom.com>
1545 Pedro Alves <palves@redhat.com>
1546
1547 * value.c (value_bits_valid): If the value is not lval_computed
1548 or has no check validity handler then the answer is the
1549 optimized_out flag, otherwise defer to the handler.
1550
1551 2013-07-06 Eli Zaretskii <eliz@gnu.org>
1552
1553 * top.c (print_gdb_configuration): Explain in output of
1554 --configuration what does "relocatable" mean.
1555
1556 * main.c (print_gdb_help): Regroup options in the --help text.
1557 See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
1558 the relevant discussions.
1559
1560 2013-07-06 Yao Qi <yao@codesourcery.com>
1561
1562 * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
1563 Remove parameter 'lsal'.
1564 * breakpoint.c (create_breakpoint): Move local variable 'lsal'
1565 to inner block. Caller update.
1566 (base_breakpoint_create_breakpoints_sal): Update.
1567 (bkpt_create_breakpoints_sal): Likewise.
1568 (tracepoint_create_breakpoints_sal): Likewise.
1569 (strace_marker_create_breakpoints_sal): Get 'lsal' from the
1570 element 0 of vector 'canonical->sals'.
1571
1572 2013-07-05 Luis Machado <lgustavo@codesourcery.com>
1573
1574 * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
1575 register number instead of the pseudo register one.
1576 (rs6000_dwarf2_reg_to_regnum): Likewise.
1577
1578 2013-07-04 Pedro Alves <palves@redhat.com>
1579
1580 * findvar.c (value_of_register): Use allocate_optimized_out_value
1581 if the register has been optimized out, instead of
1582 set_value_optimized_out.
1583 * frame-unwind.c (frame_unwind_got_optimized): Use
1584 allocate_optimized_out_value.
1585
1586 2013-07-04 Pedro Alves <palves@redhat.com>
1587
1588 * value.c (value_bits_valid): If the value is not lval_computed,
1589 or doesn't have a check_validity hook, assume the value is entirely
1590 valid.
1591
1592 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
1593
1594 * stack.c (read_frame_arg): No longer fetch lazy values.
1595 * value.c (value_optimized_out): If the value is not already
1596 marked optimized out, and is lazy then fetch it.
1597 (value_primitive_field): Move optimized out check to later in the
1598 function, after we have loaded any lazy values.
1599 (value_fetch_lazy): Use optimized out flag directly rather than
1600 calling optimized_out method.
1601
1602 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
1603
1604 * valops.c: Don't include "user-regs.h".
1605 (value_fetch_lazy): Moved to value.c.
1606 * value.c: Include "user-regs.h".
1607 (value_fetch_lazy): Moved from valops.c.
1608
1609 2013-07-04 Yao Qi <yao@codesourcery.com>
1610
1611 Revert:
1612 2013-06-27 Yao Qi <yao@codesourcery.com>
1613
1614 * common/create-version.sh: Update comments. Handle the case
1615 that TARGET_ALIAS is empty.
1616
1617 2013-07-03 Pedro Alves <palves@redhat.com>
1618
1619 * Makefile.in (config.status): Depend on development.sh.
1620 (aclocal_m4_deps): Add libmcheck.m4.
1621 * acinclude.m4: Include libmcheck.m4.
1622 * configure.ac: Source development.sh instead of setting
1623 'development' here. --enable-libmcheck/--disable-libmcheck code
1624 factored out to GDB_AC_LIBMCHECK. Run it.
1625 * development.sh: New file.
1626 * libmcheck.m4: New file.
1627 * configure: Regenerate.
1628
1629 2013-07-02 Tom Tromey <tromey@redhat.com>
1630
1631 * contrib/ari/update-web-ari.sh: Update for version.in change.
1632
1633 2013-07-02 Tom Tromey <tromey@redhat.com>
1634
1635 * common/ptid.h: Comment fixes.
1636
1637 2013-07-01 Tom Tromey <tromey@redhat.com>
1638
1639 * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
1640 .gnu_debugaltlink not found. Use bfd_get_alt_debug_link_info.
1641 (dwarf2_read_index, create_all_comp_units): Update.
1642
1643 2013-07-01 Tom Tromey <tromey@redhat.com>
1644
1645 * configure.ac (build_warnings): Add -Wold-style-definition.
1646 * configure: Rebuild.
1647 * machoread.c (_initialize_machoread): Use "(void)".
1648 * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
1649 use "(void)".
1650
1651 2013-07-01 Tom Tromey <tromey@redhat.com>
1652
1653 * configure.ac (build_warnings): Add -Wold-style-declaration.
1654 * configure: Rebuild.
1655 * dsrec.c (make_srec): Use "static const", not "const static".
1656 * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
1657 not "const static".
1658 * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
1659 Use "static const", not "const static".
1660 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
1661 not "const static".
1662 * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
1663 not "const static".
1664 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
1665 not "const static".
1666 * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
1667 not "const static".
1668 (v850_dbtrap_breakpoint_from_pc): Likewise.
1669 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
1670 not "const static".
1671
1672 2013-07-01 Tom Tromey <tromey@redhat.com>
1673
1674 * configure.ac (build_warnings): Add -Wmissing-parameter-type.
1675 * configure: Rebuild.
1676
1677 2013-07-01 Pedro Alves <palves@redhat.com>
1678
1679 * defs.h: Include "pathmax.h".
1680 * utils.c: Don't include sys/param.h.
1681 (gdb_realpath): Remove code that checks for MAXPATHLEN.
1682 * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
1683 instead of MAXPATHLEN.
1684 * solib-sunos.c: Don't include sys/param.h.
1685 * xcoffread.c: Don't include sys/param.h.
1686 * bsd-kvm.c: Don't include sys/param.h.
1687 * darwin-nat.c: Don't include sys/param.h.
1688 (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
1689 * darwin-nat-info.c: Don't include sys/param.h.
1690 * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
1691 MAXPATHLEN.
1692 * i386obsd-nat.c: Don't include sys/param.h.
1693 * inf-child.c: Don't include sys/param.h.
1694 (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
1695 * linux-fork.c: Don't include sys/param.h.
1696 (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
1697 * linux-nat.c: Don't include sys/param.h.
1698 (linux_child_pid_to_exec_file, linux_proc_pending_signals)
1699 (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
1700 * m68klinux-nat.c: Don't include sys/param.h.
1701 * nbsd-nat.c: Don't include sys/param.h.
1702 (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
1703 * ppc-linux-nat.c: Don't include sys/param.h.
1704 * rs6000-nat.c: Don't include sys/param.h.
1705 * spu-linux-nat.c. Don't include sys/param.h.
1706 * windows-nat.c: Don't include sys/param.h.
1707 * xtensa-linux-nat.c: Don't include sys/param.h.
1708 * config/i386/nm-fbsd.h: Don't include sys/param.h.
1709
1710 2013-07-01 Pedro Alves <palves@redhat.com>
1711
1712 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
1713 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
1714 * gnulib/aclocal.m4: Regenerate.
1715 * gnulib/config.in: Regenerate.
1716 * gnulib/configure: Regenerate.
1717 * gnulib/import/pathmax.h: New file.
1718 * gnulib/import/Makefile.am: Regenerate.
1719 * gnulib/import/Makefile.in: Regenerate.
1720 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
1721 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
1722 * gnulib/import/m4/pathmax.m4: New file.
1723
1724 2013-07-01 Pedro Alves <palves@redhat.com>
1725
1726 * configure.ac (GDBINIT): Define, depending on host.
1727 * go32-nat.c (init_go32_ops): Don't override gdbinit here.
1728 * top.c (PATH_MAX): Delete fallback definition.
1729 (GDBINIT_FILENAME): Delete.
1730 (gdbinit): Reimplement as const char array set to the GDBINIT
1731 string constant.
1732 * top.h (gdbinit): Make const.
1733 * configure, config.in: Regenerate.
1734
1735 2013-07-01 Pedro Alves <palves@redhat.com>
1736
1737 * cli/cli-cmds.c (source_script): Make 'file' parameter const.
1738 * cli/cli-cmds.h (source_script): Likewise.
1739 * exceptions.c (catch_command_errors_const): New function.
1740 * exceptions.h (catch_command_errors_const): Declare.
1741 * main.c (get_init_files): Make parameters const, and adjust.
1742 (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
1743 'local_gdbinit' locals const. Adjust to use
1744 catch_command_errors_const.
1745 (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
1746 'local_gdbinit' locals const.
1747
1748 2013-07-01 Pedro Alves <palves@redhat.com>
1749
1750 * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
1751 (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
1752 * tracepoint.c: Don't check HAVE_UNISTD_H before including
1753 <unistd.h>.
1754
1755 2013-07-01 Pedro Alves <palves@redhat.com>
1756
1757 Import the "unistd" gnulib module.
1758 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
1759 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
1760 import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
1761 import/m4/unistd_h.m4.
1762 * gnulib/aclocal.m4: Renenerate.
1763 * gnulib/config.in: Renenerate.
1764 * gnulib/configure: Renenerate.
1765 * gnulib/import/Makefile.am: Renenerate.
1766 * gnulib/import/Makefile.in: Renenerate.
1767 * gnulib/import/m4/gnulib-cache.m4: Renenerate.
1768 * gnulib/import/m4/gnulib-comp.m4: Renenerate.
1769 * gnulib/import/m4/off_t.m4: New file.
1770 * gnulib/import/m4/ssize_t.m4: New file.
1771 * gnulib/import/m4/sys_types_h.m4: New file.
1772 * gnulib/import/m4/unistd_h.m4: New file.
1773 * gnulib/import/sys_types.in.h: New file.
1774 * gnulib/import/unistd.c: New file.
1775 * gnulib/import/unistd.in.h: New file.
1776
1777 2013-07-01 Pedro Alves <palves@redhat.com>
1778
1779 * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
1780 defined instead of checking HAVE_UNISTD_H.
1781
1782 2013-07-01 Pedro Alves <palves@redhat.com>
1783
1784 Reimport gnulib from scratch.
1785 * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
1786 import/m4/onceonly.m4.
1787 * gnulib/aclocal.m4: Renegerate.
1788 * gnulib/config.in: Renegerate.
1789 * gnulib/configure: Renegerate.
1790 * gnulib/import/Makefile.in: Renegerate.
1791 * gnulib/import/extra/update-copyright: Renegerate.
1792 * gnulib/import/m4/onceonly.m4: Delete.
1793
1794 2013-07-01 Pedro Alves <palves@redhat.com>
1795
1796 * tui/tui-regs.c (pagination_enabled): Delete declaration.
1797
1798 2013-06-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1799
1800 Code cleanup.
1801 * remote.c (async_remote_interrupt_twice): Make it static.
1802 * remote.h (async_remote_interrupt_twice): Remove the declaration.
1803
1804 2013-06-29 Sergio Durigan Junior <sergiodj@redhat.com>
1805
1806 * ia64-linux-tdep.c: Include <ctype.h>.
1807 (ia64_linux_stap_is_single_operand): New function.
1808 (ia64_linux_init_abi): Initialize SystemTap related attributes.
1809
1810 2013-06-28 Tom Tromey <tromey@redhat.com>
1811
1812 * Makefile.in (version.c): Use version.in, not
1813 common/version.in.
1814 * common/create-version.sh: Likewise.
1815 * common/version.in: Move...
1816 * version.in: ...here.
1817
1818 2013-06-28 Pedro Alves <palves@redhat.com>
1819
1820 * infrun.c (set_observer_mode): Don't declare pagination_enabled
1821 here.
1822 * utils.h (pagination_enabled): Declare.
1823
1824 2013-06-28 Pedro Alves <palves@redhat.com>
1825
1826 * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
1827 Move higher up in file.
1828
1829 2013-06-28 Tom Tromey <tromey@redhat.com>
1830
1831 * tracepoint.c (deprecated_readline_begin_hook)
1832 (deprecated_readline_hook, deprecated_readline_end_hook): Don't
1833 declare.
1834
1835 2013-06-28 Pedro Alves <palves@redhat.com>
1836
1837 PR tui/14880
1838 * tui/tui-regs.c (tui_get_register): Fetch value contents before
1839 checking if they're available.
1840 * value.c (value_available_contents_eq): Change comment.
1841 * value.h (value_available_contents_eq): Expand comment.
1842
1843 2013-06-27 Tom Tromey <tromey@redhat.com>
1844
1845 * target.c (find_run_target): Remove.
1846 * target.h (find_run_target): Remove.
1847
1848 2013-06-27 Tom Tromey <tromey@redhat.com>
1849
1850 * corelow.c (core_gdbarch): Now static.
1851
1852 2013-06-27 Tom Tromey <tromey@redhat.com>
1853
1854 * target.c (target_struct_index): Remove.
1855
1856 2013-06-27 Pedro Alves <palves@redhat.com>
1857
1858 * infrun.c: Remove comment describing the 'stepping over runtime
1859 loader dynamic symbol resolution code' mechanism; moved to
1860 gdbint.texinfo.
1861
1862 2013-06-27 Pedro Alves <palves@redhat.com>
1863
1864 * exceptions.c (catch_command_errors): Remove spurious space.
1865 * exceptions.h (catch_command_errors): Second parameter is "arg",
1866 not "command".
1867
1868 2013-06-27 Yao Qi <yao@codesourcery.com>
1869
1870 * common/create-version.sh: Update comments. Handle the case
1871 that TARGET_ALIAS is empty.
1872
1873 2013-06-26 Pedro Alves <palves@redhat.com>
1874
1875 * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
1876 comment.
1877
1878 2013-06-26 Pedro Alves <palves@redhat.com>
1879
1880 * infrun.c: Update comments on stepping over runtime loader
1881 dynamic symbol resolution code.
1882
1883 2013-06-26 Sergio Durigan Junior <sergiodj@redhat.com>
1884
1885 * ax-gdb.h (union exp_element): Forward declare.
1886 * parser-defs.h: Include expression.h.
1887
1888 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
1889
1890 * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
1891
1892 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
1893
1894 * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
1895
1896 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
1897
1898 Fix trace-status to output proper start-time and stop-time.
1899 * tracepoint.c (trace_status_command): Fix type of printf arg to
1900 prevent improper type conversion.
1901 (trace_status_mi): Likewise.
1902
1903 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
1904
1905 * mips-tdep.c (mips_next_pc): Fix a typo.
1906
1907 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
1908
1909 * mips-tdep.c (micromips_scan_prologue): Fix a typo.
1910
1911 2013-06-26 Pedro Alves <pedro@codesourcery.com>
1912 Yao Qi <yao@codesourcery.com>
1913
1914 * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
1915 * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
1916 * mi/mi-main.c (print_variable_or_computed): New function.
1917 (mi_cmd_trace_frame_collected): New function.
1918 * tracepoint.c (find_trace_state_variable_by_number): New.
1919 (struct traceframe_info): Move to tracepoint.h
1920 (struct collection_list): Likewise.
1921 (do_collect_symbol): Include locals and arguments in the
1922 collected variables list.
1923 (clear_collection_list): Clear wholly collected variables list
1924 and computed variables list.
1925 (append_exp): New function.
1926 (encode_actions_1): Include variables in the wholly
1927 collected variables list. Include memory ranges and
1928 full-fledged expressions in the computed expressions list.
1929 (encode_actions): Move some code to ...
1930 Return the cleanup chain.
1931 (encode_actions_rsp): ... here. New function.
1932 (get_traceframe_location, get_traceframe_info): Remove static.
1933 * tracepoint.h (struct memrange): Moved from tracepoint.c.
1934 (struct collection_list): Moved from tracepoint.c. Add two
1935 new fields 'wholly_collected' and 'computed'.
1936 (find_trace_state_variable_by_number): Declare.
1937 (encode_actions): Adjust declaration.
1938 (encode_actions_rsp): Declare.
1939 (get_traceframe_info, get_traceframe_location): Declare.
1940
1941 * NEWS: Mention new MI command -trace-frame-collected.
1942
1943 2013-06-26 Pedro Alves <pedro@codesourcery.com>
1944 Yao Qi <yao@codesourcery.com>
1945
1946 * ctf.c (ctf_traceframe_info): Push trace state variables
1947 present in the trace data into the traceframe info object.
1948 * breakpoint.c (DEF_VEC_I): Remove.
1949 * common/filestuff.c (DEF_VEC_I): Likewise.
1950 * dwarf2loc.c (DEF_VEC_I): Likewise.
1951 * mi/mi-main.c (DEF_VEC_I): Likewise.
1952 * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
1953 * features/traceframe-info.dtd: Add tvar element and its
1954 attributes.
1955 * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
1956 (build_traceframe_info): Push trace state variables present in
1957 the trace data into the traceframe info object.
1958 (traceframe_info_start_tvar): New function.
1959 (tvar_attributes): New.
1960 (traceframe_info_children): Add "tvar" element.
1961 * tracepoint.h (struct traceframe_info) <tvars>: New field.
1962
1963 * NEWS: Mention the change in GDB and GDBserver.
1964
1965 2013-06-26 Pedro Alves <pedro@codesourcery.com>
1966 Yao Qi <yao@codesourcery.com>
1967
1968 * tracepoint.c (trace_dump_command): Move code to ...
1969 (get_traceframe_location): ... here. New.
1970
1971 2013-06-26 Pedro Alves <pedro@codesourcery.com>
1972 Yao Qi <yao@codesourcery.com>
1973
1974 * tracepoint.c (trace_dump_command): GDB emits an error
1975 instead of a warning when a traceframe is not selected.
1976
1977 2013-06-26 Pedro Alves <pedro@codesourcery.com>
1978 Yao Qi <yao@codesourcery.com>
1979
1980 * tracepoint.c (tracepoint_list, stepping_list): Remove.
1981 (clear_collection_list): Free fields 'aexpre_list' and 'list'
1982 in collection_list.
1983 (do_clear_collection_list, init_collection_list): New.
1984 (encode_actions): Add local variables 'tracepoint_list' and
1985 'stepping_list'. Call init_collection_list and make cleanup
1986 which calls do_clear_collection_list. Don't call
1987 clear_collection_list.
1988 (_initialize_tracepoint): Delete references to
1989 'tracepoint_list' and 'stepping_list'.
1990
1991 2013-06-25 Tom Tromey <tromey@redhat.com>
1992
1993 * common/create-version.sh (date): Use "$", not "$$" in sed
1994 expression.
1995
1996 2013-06-25 Kevin Buettner <kevinb@redhat.com>
1997
1998 * NEWS (New targets): Add entry for TI MSP430.
1999
2000 2013-06-25 Yao Qi <yao@codesourcery.com>
2001
2002 * remote.c (remote_start_remote): Move code to upload tsv
2003 earlier.
2004
2005 2013-06-25 Yao Qi <yao@codesourcery.com>
2006 Hui Zhu <hui@codesourcery.com>
2007 Pedro Alves <palves@redhat.com>
2008
2009 PR breakpoints/15075
2010 PR breakpoints/15434
2011 * breakpoint.c (bpstat_stop_status): Call
2012 b->ops->after_condition_true.
2013 (update_dprintf_command_list): Don't append "continue" command
2014 to the command list of dprintf breakpoint.
2015 (base_breakpoint_after_condition_true): New function.
2016 (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
2017 (dprintf_after_condition_true): New function.
2018 (initialize_breakpoint_ops): Set dprintf_after_condition_true.
2019 * breakpoint.h (breakpoint_ops): Add after_condition_true.
2020
2021 2013-06-24 Kevin Buettner <kevinb@redhat.com>
2022
2023 * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
2024 (ALLDEPFILES): Add msp430-tdep.c.
2025 * configure.tgt (msp430*-*-elf): New target.
2026 * msp430-tdep.c: New file.
2027
2028 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
2029
2030 * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
2031 microMIPS synthetic symbols.
2032
2033 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
2034
2035 * objfiles.h (pc_in_section): New prototype.
2036 (in_plt_section): Remove name argument, replace prototype with
2037 static inline function.
2038 * mips-tdep.h: Include "objfiles.h".
2039 (in_mips_stubs_section): New function.
2040 * hppa-tdep.h (gdbarch_tdep): Remove name argument of
2041 in_solib_call_trampoline member.
2042 (hppa_in_solib_call_trampoline): Remove name argument.
2043 * objfiles.c (pc_in_section): New function.
2044 (in_plt_section): Remove function.
2045 * mips-linux-tdep.c: Include "objfiles.h".
2046 (mips_linux_in_dynsym_stub): Call in_mips_stubs_section. Remove
2047 name argument. Return 1 rather than the low 16-bit halfword of
2048 any instruction examined.
2049 (mips_linux_in_dynsym_resolve_code): Update
2050 mips_linux_in_dynsym_stub call accordingly.
2051 * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
2052 rather than an equivalent hand-coded sequence.
2053 * hppa-hpux-tdep.c (in_opd_section): Remove function.
2054 (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
2055 (hppa64_hpux_in_solib_call_trampoline): Likewise.
2056 (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
2057 in_opd_section.
2058 * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
2059 on call to tdep->in_solib_call_trampoline.
2060 (hppa_in_solib_call_trampoline): Remove name argument, update
2061 according to in_plt_section change.
2062 (hppa_skip_trampoline_code): Update according to in_plt_section
2063 change.
2064 * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
2065 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
2066 Likewise.
2067 * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
2068 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
2069 * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
2070 * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
2071 * nto-tdep.c (nto_relocate_section_addresses): Likewise.
2072 * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
2073 * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
2074 * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
2075 * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
2076 * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
2077 * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
2078 * sparc-tdep.c (sparc_analyze_prologue): Likewise.
2079 * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
2080
2081 2013-06-24 Joel Brobecker <brobecker@adacore.com>
2082
2083 * common/create-version.sh: Fix expansion of $host_alias
2084 and $target_alias in generation of HOST_NAME and TARGET_NAME
2085 (resp.).
2086
2087 2013-06-24 Tom Tromey <tromey@redhat.com>
2088
2089 * common/create-version.sh: New file.
2090 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
2091 create-version.sh.
2092 (HFILES_NO_SRCDIR): Use common/version.h.
2093 * version.in: Move to ...
2094 * common/version.in: ... here. Replace date with "DATE".
2095 * version.h: Move to ...
2096 * common/version.h: ... here.
2097
2098 2013-06-21 Joel Brobecker <brobecker@adacore.com>
2099
2100 * gdb/gnulib/Makefile.in: Update date in copyright header.
2101 * gdb/gnulib/configure.ac: Ditto.
2102 * gdb/gnulib/update-gnulib.sh: Ditto.
2103
2104 2013-06-21 Joel Brobecker <brobecker@adacore.com>
2105
2106 * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
2107 "gdb/gnulib/import".
2108
2109 2013-06-21 Will Newton <will.newton@linaro.org>
2110
2111 * doublest.c (ldfrexp): Remove function.
2112 (convert_doublest_to_floatformat): Call frexpl instead of
2113 ldfrexp.
2114
2115 2013-06-21 Will Newton <will.newton@linaro.org>
2116
2117 * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
2118 * gnulib/aclocal.m4: Regenerate.
2119 * gnulib/config.in: Regenerate.
2120 * gnulib/configure: Regenerate.
2121 * gnulib/import/Makefile.am: Update.
2122 * gnulib/import/Makefile.in: Update.
2123 * gnulib/import/m4/gnulib-cache.m4: Update.
2124 * gnulib/import/m4/gnulib-comp.m4: Update.
2125 * gnulib/import/float+.h: Import.
2126 * gnulib/import/float.c: Import.
2127 * gnulib/import/float.in.h: Import.
2128 * gnulib/import/fpucw.h: Import.
2129 * gnulib/import/frexp.c: Import.
2130 * gnulib/import/frexpl.c: Import.
2131 * gnulib/import/isnan.c: Import.
2132 * gnulib/import/isnand-nolibm.h: Import.
2133 * gnulib/import/isnand.c: Import.
2134 * gnulib/import/isnanl-nolibm.h: Import.
2135 * gnulib/import/isnanl.c: Import.
2136 * gnulib/import/itold.c: Import.
2137 * gnulib/import/m4/exponentd.m4: Import.
2138 * gnulib/import/m4/exponentl.m4: Import.
2139 * gnulib/import/m4/float_h.m4: Import.
2140 * gnulib/import/m4/fpieee.m4: Import.
2141 * gnulib/import/m4/frexp.m4: Import.
2142 * gnulib/import/m4/frexpl.m4: Import.
2143 * gnulib/import/m4/isnand.m4: Import.
2144 * gnulib/import/m4/isnanl.m4: Import.
2145 * gnulib/import/m4/math_h.m4: Import.
2146 * gnulib/import/math.c: Import.
2147 * gnulib/import/math.in.h: Import.
2148
2149 2013-06-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2150
2151 * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
2152 replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
2153 signature_INTEL_edx comparisons.
2154
2155 2013-06-20 Doug Evans <dje@google.com>
2156
2157 symtab/15652
2158 * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
2159 All callers updated.
2160 (open_dwp_file): If we can't find the dwp file, search the basename
2161 in debug-file-directory.
2162
2163 * dwarf2read.c (struct dwp_file): Fix comment.
2164 (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
2165
2166 * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
2167 better.
2168
2169 2013-06-20 Yao Qi <yao@codesourcery.com>
2170
2171 * breakpoint.c (create_breakpoint): Fix code indentation.
2172
2173 2013-06-20 Yao Qi <yao@codesourcery.com>
2174
2175 * breakpoint.c (create_breakpoints_sal_default): Remove
2176 parameter 'lsal'. Update declaration.
2177 (bkpt_create_breakpoints_sal): Caller update.
2178 (tracepoint_create_breakpoints_sal): Likewise.
2179
2180 2013-06-20 Pedro Alves <pedro@codesourcery.com>
2181 Yao Qi <yao@codesourcery.com>
2182
2183 * NEWS: Mention the new option '--skip-unavailable' of command
2184 -data-list-register-values.
2185 * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
2186 --skip-unavailable option. Adjust to use output_register.
2187 (output_register): Add new 'skip_unavailable' parameter.
2188 Handle it.
2189
2190 2013-06-19 Mike Frysinger <vapier@gentoo.org>
2191
2192 * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
2193 common/i386-gcc-cpuid.h.
2194 * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
2195 * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
2196 Copy the latest version from upstream gcc.
2197 * common/linux-btrace.c: Include i386-cpuid.h.
2198 (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
2199 call to i386_cpuid.
2200 (cpu_supports_btrace): Likewise.
2201 * go32-nat.c: Include i386-cpuid.h.
2202 (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
2203
2204 2013-06-19 Doug Evans <dje@google.com>
2205
2206 * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
2207 (get_section_index): Ditto.
2208
2209 2013-06-19 Tom Tromey <tromey@redhat.com>
2210
2211 * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
2212 "dprintf" help.
2213
2214 2013-06-18 Doug Evans <dje@google.com>
2215
2216 * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
2217 before using it.
2218 (dw2_expand_symtabs_matching): Fix symbol kind validity check.
2219 Move test of cu_index closer to use. Print complaint if cu_index
2220 is bad.
2221
2222 2013-06-18 Joel Brobecker <brobecker@adacore.com>
2223
2224 * machoread.c (oso_vector): Delete this global.
2225 (macho_register_oso): Add new parameter "oso_vector_ptr".
2226 Use it instead of the "oso_vector" global.
2227 (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
2228 (macho_symfile_read): Use a local oso_vector, to be free'ed
2229 at the end of this function, in place of the old "oso_vector"
2230 global. Update various function calls accordingly. Use one
2231 single cleanup chain for the entire function.
2232
2233 2013-06-18 Joel Brobecker <brobecker@adacore.com>
2234
2235 * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
2236 DWARF2_PER_OBJFILE by uses of DATA instead.
2237
2238 2013-06-18 Tom Tromey <tromey@redhat.com>
2239
2240 * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
2241 argument.
2242 * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
2243 Special case signals other than GDB_SIGNAL_TRAP.
2244 (explains_signal_watchpoint): New function.
2245 (base_breakpoint_explains_signal): Add 'sig' argument.
2246 (initialize_breakpoint_ops): Set 'explains_signal' method for
2247 watchpoints.
2248 * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
2249 signal argument.
2250 (bpstat_explains_signal): Likewise.
2251 * infrun.c (handle_syscall_event, handle_inferior_event): Update.
2252
2253 2013-06-18 Tom Tromey <tromey@redhat.com>
2254
2255 * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
2256
2257 2013-06-18 Tom Tromey <tromey@redhat.com>
2258
2259 * python/python.c (finish_python_initialization): Decref
2260 'pythondir' on failure path as well.
2261
2262 2013-06-18 Tom Tromey <tromey@redhat.com>
2263
2264 PR symtab/15391:
2265 * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
2266 after taking bits_to_skip into account. Sign extend byte_offset.
2267 * utils.h (gdb_sign_extend): Declare.
2268 * utils.c (gdb_sign_extend): New function.
2269
2270 2013-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
2271
2272 * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
2273
2274 2013-06-17 Pierre Muller <muller@sourceware.org>
2275
2276 * corelow.c (core_open): Print GDB signal name instead of target
2277 signal number.
2278
2279 2013-06-17 Mike Frysinger <vapier@gentoo.org>
2280
2281 * .gitignore: Add /gcore.
2282
2283 2013-06-13 Doug Evans <dje@google.com>
2284
2285 * dwarf2read.c (try_open_dwop_file): Work around behaviour of
2286 OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
2287
2288 2013-06-12 Phil Muldoon <pmuldoon@redhat.com>
2289
2290 * stack.c (backtrace_command_1): Fix indentation.
2291
2292 2013-06-11 Joel Brobecker <brobecker@adacore.com>
2293
2294 * window-nat.c (thread_rec): Add missing empty line after
2295 local variable declaration.
2296
2297 2013-06-11 Joel Brobecker <brobecker@adacore.com>
2298
2299 * windows-nat.c (thread_rec): Revert format used to print
2300 error code returned by SuspendThread from %d back to %u.
2301
2302 2013-06-11 Joel Brobecker <brobecker@adacore.com>
2303
2304 * windows-nat.c (windows_continue): Add "0x" prefix for thread
2305 ID in debug trace.
2306 (get_windows_debug_event): Likewise, for all debug traces.
2307
2308 2013-06-11 Joel Brobecker <brobecker@adacore.com>
2309
2310 * window-nat.c (thread_rec): Add thread ID in SuspendThread
2311 warning message.
2312
2313 2013-06-08 Pedro Alves <pedro@codesourcery.com>
2314 Yao Qi <yao@codesourcery.com>
2315
2316 * mi/mi-main.c (get_register): Remove declaration.
2317 (output_register): Declare.
2318 (mi_cmd_data_list_register_values): Remove local variable
2319 'tuple_cleanup'. Move some code into output_register.
2320 (get_register): Renamed to ...
2321 (output_register): ... this. Output the register's
2322 "number" ui_out tuple here.
2323
2324 2013-06-07 Pedro Alves <palves@redhat.com>
2325
2326 * darwin-nat.c: Fix formating in copyright header.
2327 * darwin-nat.h: Likewise.
2328 * gnu-nat.c: Likewise.
2329 * machoread.c: Likewise.
2330
2331 2013-06-07 Pedro Alves <palves@redhat.com>
2332
2333 PR server/14823
2334 * regformats/regdat.sh: Output #include tdesc.h. Make globals
2335 static. Output a global target description pointer.
2336 (init_registers_${name}): Adjust to initialize a
2337 target description structure.
2338
2339 2013-06-07 Will Newton <will.newton@linaro.org>
2340
2341 * printcmd.c (build_address_symbolic): Call
2342 gdbarch_addr_bits_remove for text minimal symbols.
2343
2344 2013-06-07 Will Newton <will.newton@linaro.org>
2345
2346 * MAINTAINERS: Add myself to Write After Approval.
2347
2348 2013-06-07 Yao Qi <yao@codesourcery.com>
2349
2350 * tracepoint.c (start_tracing): Move code to ...
2351 (trace_reset_local_state): ... here. New.
2352 (disconnect_tracing): Don't call set_current_traceframe,
2353 set_tracepoint_num, and set_traceframe_context. Call
2354 trace_reset_local_state instead.
2355 (tfile_close): Call trace_reset_local_state.
2356 * ctf.c (ctf_close): Likewise.
2357 * remote.c (remote_close): Likewise.
2358 * tracepoint.h (trace_reset_local_state): Declare.
2359
2360 2013-06-06 Doug Evans <dje@google.com>
2361
2362 * dwarf2read.c: Whitespace fixes for DWP file format documentation,
2363 and fix header docs.
2364
2365 2013-06-05 Doug Evans <dje@google.com>
2366 Keith Seitz <keiths@redhat.com>
2367
2368 PR 15519
2369 * cp-namespace.c (find_symbol_in_baseclass): Call
2370 cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
2371 Check result of call to lookup_symbol_static.
2372 Call lookup_static_symbol_aux unconditionally.
2373 Call check_typedef on base types before accessing them.
2374 (cp_lookup_nested_symbol): Fix comment.
2375
2376 2013-06-05 Luis Machado <lgustavo@codesourcery.com>
2377
2378 * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
2379 minimal symbols pointing to function descriptors.
2380
2381 2013-06-05 Tom Tromey <tromey@redhat.com>
2382
2383 * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
2384
2385 2013-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
2386 Pedro Alves <palves@redhat.com>
2387
2388 * remote.c (remote_wait_as): Restore signal handler before returning
2389 when GDB gets a notification.
2390
2391 2013-06-04 Gary Benson <gbenson@redhat.com>
2392
2393 PR 2328
2394 * breakpoint.h (handle_solib_event): Moved function declaration
2395 to solib.h.
2396 * breakpoint.c (handle_solib_event): Moved function to solib.c.
2397 (bpstat_stop_status): Pass new argument to handle_solib_event.
2398 * solib.h (update_solib_breakpoints): New function declaration.
2399 (handle_solib_event): Moved function declaration from
2400 breakpoint.h.
2401 * solib.c (update_solib_breakpoints): New function.
2402 (handle_solib_event): Moved function from breakpoint.c.
2403 Updated to call solib_ops->handle_event if not NULL.
2404 * solist.h (target_so_ops): New fields "update_breakpoints" and
2405 "handle_event".
2406 * infrun.c (set_stop_on_solib_events): New function.
2407 (_initialize_infrun): Use the above for "set
2408 stop-on-solib-events".
2409 (handle_inferior_event): Pass new argument to handle_solib_event.
2410 * solib-svr4.c (probe.h): New include.
2411 (svr4_free_library_list): New forward declaration.
2412 (probe_action): New enum.
2413 (probe_info): New struct.
2414 (probe_info): New static variable.
2415 (NUM_PROBES): New definition.
2416 (svr4_info): New fields "using_xfer", "probes_table" and
2417 "solib_list".
2418 (free_probes_table): New function.
2419 (free_solib_list): New function.
2420 (svr4_pspace_data_cleanup): Free probes table and solib list.
2421 (svr4_copy_library_list): New function.
2422 (svr4_current_sos_via_xfer_libraries): New parameter "annex".
2423 (svr4_read_so_list): New parameter "prev_lm".
2424 (svr4_current_sos_direct): Renamed from "svr4_current_sos".
2425 (svr4_current_sos): New function.
2426 (probe_and_action): New struct.
2427 (hash_probe_and_action): New function.
2428 (equal_probe_and_action): Likewise.
2429 (register_solib_event_probe): Likewise.
2430 (solib_event_probe_at): Likewise.
2431 (solib_event_probe_action): Likewise.
2432 (solist_update_full): Likewise.
2433 (solist_update_incremental): Likewise.
2434 (disable_probes_interface_cleanup): Likewise.
2435 (svr4_handle_solib_event): Likewise.
2436 (svr4_update_solib_event_breakpoint): Likewise.
2437 (svr4_update_solib_event_breakpoints): Likewise.
2438 (svr4_create_solib_event_breakpoints): Likewise.
2439 (enable_break): Free probes table before creating breakpoints.
2440 Use svr4_create_solib_event_breakpoints to create breakpoints.
2441 (svr4_solib_create_inferior_hook): Free the solib list.
2442 (_initialize_svr4_solib): Initialise
2443 svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
2444
2445 2013-06-04 Gary Benson <gbenson@redhat.com>
2446
2447 * target.h (target_ops): New field
2448 "to_augmented_libraries_svr4_read".
2449 (target_augmented_libraries_svr4_read): New macro.
2450 * target.c (update_current_target): Handle
2451 to_augmented_libraries_svr4_read.
2452 * remote.c (remote_state): New field
2453 "augmented_libraries_svr4_read".
2454 (remote_augmented_libraries_svr4_read_feature): New function.
2455 (remote_protocol_features): Add entry for
2456 "augmented-libraries-svr4-read".
2457 (remote_augmented_libraries_svr4_read): New function.
2458 (init_remote_ops): Initialize
2459 remote_ops.to_augmented_libraries_svr4_read.
2460
2461 2013-06-04 Gary Benson <gbenson@redhat.com>
2462
2463 * NEWS: Update.
2464
2465 2013-06-04 Gary Benson <gbenson@redhat.com>
2466
2467 * objfiles.h (inhibit_section_map_updates): New function
2468 declaration.
2469 (resume_section_map_updates): Likewise.
2470 (resume_section_map_updates_cleanup): Likewise.
2471 * objfiles.c (objfile_pspace_info): Removed field
2472 "objfiles_changed_p". New fields "new_objfiles_available",
2473 "section_map_dirty" and "inhibit_updates".
2474 (allocate_objfile): Set new_objfiles_available.
2475 (free_objfile): Set section_map_dirty.
2476 (objfile_relocate1): Likewise.
2477 (in_plt_section): Likewise.
2478 (find_pc_section): Update the conditions under which the
2479 section map will be updated.
2480 (inhibit_section_map_updates): New function.
2481 (resume_section_map_updates): Likewise.
2482 (resume_section_map_updates_cleanup): Likewise.
2483
2484 2013-06-04 Gary Benson <gbenson@redhat.com>
2485
2486 * probe.h (get_probe_argument_count): New declaration.
2487 (evaluate_probe_argument): Likewise.
2488 * probe.c (get_probe_argument_count): New function.
2489 (evaluate_probe_argument): Likewise.
2490 (probe_safe_evaluate_at_pc): Use the above new functions.
2491
2492 2013-06-04 Alan Modra <amodra@gmail.com>
2493
2494 * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
2495 * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
2496 (ppc_insns_match_pattern): Add frame param. Avoid multiple
2497 target mem reads on optional insns.
2498 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
2499 ppc_insns_match_pattern calls.
2500 * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
2501 Add match for power7 thread safety insns, and new order of
2502 std 2,40(1) insn. Correct code shown for _dl_runtime_resolve
2503 invocation in comment, and update rest of comment.
2504 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
2505 PPC64_STANDARD_LINKAGE3_LEN): Delete.
2506 (ppc64_standard_linkage2_target): Update insn offsets.
2507 (ppc64_skip_trampoline_code): Use a single insn buffer. Match newer
2508 stubs first. Update calls.
2509
2510 2013-06-04 Yao Qi <yao@codesourcery.com>
2511
2512 * solib.c (solib_find): Don't need dir separator if path has
2513 drive spec.
2514
2515 2013-06-03 Joel Brobecker <brobecker@adacore.com>
2516
2517 Revert (indirectly causes a SIGSEGV):
2518 * machoread.c (macho_symfile_read): Assign first cleanup to
2519 'back_to'.
2520
2521 2013-06-03 Yao Qi <yao@codesourcery.com>
2522
2523 * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
2524 mi-parse.c. Make them static.
2525 (mi_all_values): Likewise.
2526 (mi_parse_values_option): Move to mi-parse.c. Rename it to
2527 mi_parse_print_values. Make it external.
2528 * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
2529 Remove the declarations.
2530 * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
2531 * mi/mi-parse.h (mi_parse_print_values): Declare.
2532 * mi/mi-cmd-stack.c: Include mi-parse.h.
2533 (parse_print_values): Remove
2534 (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
2535 of parse_print_values.
2536 (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
2537
2538 2013-05-31 Pedro Alves <pedro@codesourcery.com>
2539 Yao Qi <yao@codesourcery.com>
2540
2541 * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
2542 (encode_actions): Move code to ...
2543 (all_tracepoint_actions_and_cleanup): ... here. New.
2544 (trace_dump_command): Likewise.
2545
2546 2013-05-30 Tom Tromey <tromey@redhat.com>
2547
2548 * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
2549
2550 2013-05-30 Tom Tromey <tromey@redhat.com>
2551
2552 * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
2553 gdb_xml_create_parser_and_cleanup_1. Return a cleanup. Remove
2554 'old_chain' argument. Add 'parser_result' argument.
2555 (gdb_xml_create_parser_and_cleanup): Remove old version.
2556 (gdb_xml_parse_quick): Update.
2557 (xml_process_xincludes): Update.
2558 * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
2559 declare.
2560
2561 2013-05-30 Tom Tromey <tromey@redhat.com>
2562
2563 * probe.c (collect_probes): Check arguments for NULL before
2564 calling compile_rx_or_error.
2565 * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
2566 Remove NULL return.
2567
2568 2013-05-30 Tom Tromey <tromey@redhat.com>
2569
2570 * infrun.c (adjust_pc_after_break): Introduce an outer null
2571 cleanup.
2572
2573 2013-05-30 Tom Tromey <tromey@redhat.com>
2574
2575 * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
2576
2577 2013-05-30 Tom Tromey <tromey@redhat.com>
2578
2579 * cli/cli-script.c (read_command_lines_1): Use a null cleanup
2580 for 'old_chain'. Do not check 'head' before processing
2581 cleanups.
2582
2583 2013-05-30 Tom Tromey <tromey@redhat.com>
2584
2585 * mi/mi-cmd-stack.c (list_arg_or_local): Remove
2586 "cleanup_tuple".
2587
2588 2013-05-30 Tom Tromey <tromey@redhat.com>
2589
2590 * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
2591 inner scope. Unconditionally call do_cleanups.
2592
2593 2013-05-30 Tom Tromey <tromey@redhat.com>
2594
2595 * source.c (find_and_open_source): Call do_cleanups.
2596
2597 2013-05-30 Tom Tromey <tromey@redhat.com>
2598
2599 * linux-thread-db.c (thread_db_load_search): Unconditionally
2600 call do_cleanups.
2601
2602 2013-05-30 Tom Tromey <tromey@redhat.com>
2603
2604 * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
2605 for 'cleanup'; instead use a later one.
2606
2607 2013-05-30 Tom Tromey <tromey@redhat.com>
2608
2609 * python/py-breakpoint.c (bppy_get_commands): Use
2610 explicit, unconditional return.
2611 * python/py-frame.c (frapy_read_var): Likewise.
2612 * python/python.c (gdbpy_decode_line): Likewise.
2613
2614 2013-05-30 Tom Tromey <tromey@redhat.com>
2615
2616 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
2617 do_cleanups on all return paths.
2618
2619 2013-05-30 Tom Tromey <tromey@redhat.com>
2620
2621 * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
2622
2623 2013-05-30 Tom Tromey <tromey@redhat.com>
2624
2625 * stabsread.c (read_struct_type): Call do_cleanups along
2626 all return paths.
2627
2628 2013-05-30 Maciej W. Rozycki <macro@codesourcery.com>
2629
2630 * mips-linux-tdep.c: Adjust formatting throughout.
2631
2632 2013-05-30 Tom Tromey <tromey@redhat.com>
2633
2634 * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
2635 along all return paths.
2636
2637 2013-05-30 Tom Tromey <tromey@redhat.com>
2638
2639 * symfile.c (find_separate_debug_file): Call do_cleanups
2640 along all return paths.
2641
2642 2013-05-30 Tom Tromey <tromey@redhat.com>
2643
2644 * symtab.c (search_symbols): Introduce a null cleanup for
2645 'retval_chain'.
2646
2647 2013-05-30 Tom Tromey <tromey@redhat.com>
2648
2649 * python/py-value.c (valpy_binop): Call do_cleanups before
2650 exiting loop.
2651
2652 2013-05-30 Tom Tromey <tromey@redhat.com>
2653
2654 * python/py-prettyprint.c (print_children): Remove extra
2655 do_cleanups call.
2656
2657 2013-05-30 Tom Tromey <tromey@redhat.com>
2658
2659 * python/py-frame.c (frapy_read_var): Call do_cleanups along
2660 all return paths.
2661
2662 2013-05-30 Tom Tromey <tromey@redhat.com>
2663
2664 * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
2665 along all return paths.
2666
2667 2013-05-30 Tom Tromey <tromey@redhat.com>
2668
2669 * cli/cli-logging.c (set_logging_redirect): Unconditionally
2670 call do_cleanups.
2671
2672 2013-05-30 Tom Tromey <tromey@redhat.com>
2673
2674 * varobj.c (c_value_of_root): Call do_cleanups along all
2675 return paths.
2676
2677 2013-05-30 Tom Tromey <tromey@redhat.com>
2678
2679 * tracepoint.c (trace_dump_command): Unconditionally call
2680 do_cleanups.
2681
2682 2013-05-30 Tom Tromey <tromey@redhat.com>
2683
2684 * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
2685 do_cleanups earlier.
2686
2687 2013-05-30 Tom Tromey <tromey@redhat.com>
2688
2689 * machoread.c (macho_symfile_read): Assign first cleanup to
2690 'back_to'.
2691
2692 2013-05-30 Tom Tromey <tromey@redhat.com>
2693
2694 * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
2695
2696 2013-05-30 Tom Tromey <tromey@redhat.com>
2697
2698 * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
2699
2700 2013-05-30 Tom Tromey <tromey@redhat.com>
2701
2702 * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
2703 call discard_cleanups.
2704 (inf_ptrace_attach): Likewise.
2705
2706 2013-05-30 Tom Tromey <tromey@redhat.com>
2707
2708 * remote-mips.c (mips_exit_debug): Call do_cleanups on all
2709 return paths.
2710 (mips_initialize): Likewise.
2711 (common_open): Call do_cleanups.
2712
2713 2013-05-30 Tom Tromey <tromey@redhat.com>
2714
2715 * utils.c (internal_vproblem): Call do_cleanups.
2716
2717 2013-05-30 Tom Tromey <tromey@redhat.com>
2718
2719 * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
2720
2721 2013-05-30 Tom Tromey <tromey@redhat.com>
2722
2723 * cli/cli-script.c (setup_user_args): Don't return after error.
2724
2725 2013-05-30 Tom Tromey <tromey@redhat.com>
2726
2727 * somread.c (som_symtab_read): Call do_cleanups.
2728
2729 2013-05-30 Tom Tromey <tromey@redhat.com>
2730
2731 * printcmd.c (print_command_1): Unconditionally call do_cleanups.
2732
2733 2013-05-30 Tom Tromey <tromey@redhat.com>
2734
2735 * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
2736 * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
2737 * interps.c (interpreter_exec_cmd): Call do_cleanups.
2738 * source.c (show_substitute_path_command): Call do_cleanups.
2739 (unset_substitute_path_command, set_substitute_path_command):
2740 Likewise.
2741 * symfile.c (load_command): Call do_cleanups.
2742
2743 2013-05-30 Tom Tromey <tromey@redhat.com>
2744
2745 * contrib/cleanup_check.py: New file.
2746 * contrib/gcc-with-excheck: Add option parsing.
2747
2748 2013-05-30 Joel Brobecker <brobecker@adacore.com>
2749
2750 * windows-nat.c (windows_delete_thread): Add missing space
2751 in cast expression.
2752
2753 2013-05-30 Hafiz Abid Qadeer <abidh@codesourcery.com>
2754
2755 * inferior.c (top level): Include tilde.h.
2756 (add_inferior_command): Call tilde_expand on the value of 'exec'
2757 argument.
2758
2759 2013-05-30 Pedro Alves <pedro@codesourcery.com>
2760 Yao Qi <yao@codesourcery.com>
2761
2762 * tracepoint.c (encode_actions_1): Remove parameter 't'.
2763 Caller update.
2764 (encode_actions): Likewise.
2765 * remote.c (remote_download_tracepoint): Caller update.
2766 * tracepoint.h (encode_actions): Update declaration.
2767
2768 2013-05-30 Pedro Alves <palves@redhat.com>
2769
2770 * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
2771 pointer.
2772
2773 2013-05-30 Yao Qi <yao@codesourcery.com>
2774
2775 * remote.c (remote_check_symbols): Remove unused parameter
2776 'objfile'.
2777 Declaration update.
2778 (remote_start_remote, remote_new_objfile): Caller update.
2779
2780 2013-05-30 Yao Qi <yao@codesourcery.com>
2781
2782 * mi/mi-cmds.c (mi_cmds): Define MI command
2783 '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
2784 DEF_MI_CMD_CLI.
2785
2786 2013-05-29 Pedro Alves <palves@redhat.com>
2787
2788 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
2789 (remote_insert_watchpoint, remote_remove_watchpoint)
2790 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
2791 (remote_verify_memory, compare_sections_command)
2792 (remote_search_memory): Set the general process/thread on the
2793 remote side.
2794
2795 2013-05-29 Pedro Alves <palves@redhat.com>
2796
2797 * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
2798 (_initialize_aarch64_tdep): Don't call
2799 initialize_tdesc_aarch64_without_fpu.
2800 * features/Makefile (WHICH): Remove reference to
2801 aarch64-without-fpu.
2802 * features/aarch64-without-fpu.c: Delete file.
2803 * regformats/aarch64-without-fpu.dat: Delete file.
2804
2805 2013-05-28 Yao Qi <yao@codesourcery.com>
2806
2807 * tracepoint.c (stringify_collection_list): Remove parameter
2808 'string'.
2809 (encode_actions): Caller update. Remove local variables.
2810
2811 2013-05-24 Yao Qi <yao@codesourcery.com>
2812
2813 * tracepoint.c (TFILE_PID): Remove.
2814 (tfile_open): Don't add thread and inferior.
2815 (tfile_close): Don't set 'inferior_ptid'. Don't call
2816 exit_inferior_silent.
2817 (tfile_thread_alive): Remove.
2818 (init_tfile_ops): Don't set field 'to_thread_alive' of
2819 tfile_ops.
2820
2821 2013-05-23 Doug Evans <dje@google.com>
2822
2823 * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
2824
2825 2013-05-23 Pedro Alves <palves@redhat.com>
2826
2827 * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
2828 [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
2829 (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
2830 Only define if HAVE_SOCKETS is defined.
2831 * configure.ac: Check for sys/socket.h.
2832 * config.in, configure: Regenerate.
2833
2834 2013-05-23 Pedro Alves <palves@redhat.com>
2835
2836 * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
2837 (open_and_init_dwp_file): Use %s/pulongest instead of %u for
2838 printing uint32_t variables.
2839
2840 2013-05-23 Pedro Alves <palves@redhat.com>
2841
2842 * NEWS: Mention GDBserver range stepping support.
2843
2844 2013-05-23 Yao Qi <yao@codesourcery.com>
2845 Pedro Alves <palves@redhat.com>
2846
2847 * gdbthread.h (struct thread_control_state) <may_range_step>: New
2848 field.
2849 * infcmd.c (step_once, until_next_command): Enable range stepping.
2850 * infrun.c (displaced_step_prepare): Disable range stepping.
2851 (resume): Disable range stepping if stepping over a breakpoint or
2852 we have software watchpoints. If range stepping is enabled,
2853 assert the thread is in the stepping range.
2854 (clear_proceed_status_thread): Clear may_range_step.
2855 (handle_inferior_event): Disable range stepping as soon as we know
2856 the thread that hit the event. Re-enable it whenever we're going
2857 to step with a step range.
2858 * remote.c (struct vCont_action_support) <r>: New field.
2859 (use_range_stepping): New global.
2860 (remote_vcont_probe): Handle 'r' action.
2861 (append_resumption): Append an 'r' action if the thread may range
2862 step.
2863 (show_range_stepping): New function.
2864 (set_range_stepping): New function.
2865 (_initialize_remote): Call add_setshow_boolean_cmd to register the
2866 'set range-stepping' and 'show range-stepping' commands.
2867 * NEWS: Mention range stepping, the new vCont;r action, and the
2868 new "set/show range-stepping" commands.
2869
2870 2013-05-23 Yao Qi <yao@codesourcery.com>
2871 Pedro Alves <palves@redhat.com>
2872
2873 * remote.c (struct vCont_action_support): New struct.
2874 (struct remote_state) <support_vCont_t>: Remove field.
2875 <vCont_actions_support>: New field.
2876 (remote_vcont_probe, remote_stop_ns): Update.
2877
2878 2013-05-23 Yao Qi <yao@codesourcery.com>
2879 Pedro Alves <palves@redhat.com>
2880
2881 * gdbthread.h (pc_in_thread_step_range): New declaration.
2882 * thread.c (pc_in_thread_step_range): New function.
2883 * infrun.c (handle_inferior_event): Use it.
2884
2885 2013-05-23 Joel Brobecker <brobecker@adacore.com>
2886
2887 * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
2888 of sprintf.
2889
2890 2013-05-22 Keith Seitz <keiths@redhat.com>
2891
2892 * ada-lang.c (is_known_support_routine): Add explicit free of
2893 'func_name' from find_frame_funname.
2894 (ada_unhandled_exception_name_addr_from_raise): Add cleanups
2895 for func_name from find_frame_funname.
2896 * python/py-frame.c (frapy_name): Add explicit free of
2897 'name' from find_frame_funname.
2898 * stack.c (find_frame_funname): Add comment explaining that
2899 funcp must be freed by the caller.
2900 Return copy of symbol names instead of pointers.
2901 (print_frame): Add a cleanup for 'funname' from
2902 find_frame_funname.
2903 * stack.h (find_frame_funname): Remove "const" from
2904 'funname' parameter.
2905
2906 2013-05-22 Tom Tromey <tromey@redhat.com>
2907
2908 PR c++/15401:
2909 * c-valprint.c (c_value_print): Use value_addr for
2910 references. Convert back to reference type with value_ref.
2911
2912 2013-05-22 Eli Zaretskii <eliz@gnu.org>
2913
2914 * windows-nat.c (handle_unload_dll): Don't call solib_add for the
2915 unloaded DLL, it will be done by handle_solib_event. See
2916 http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
2917 details.
2918
2919 2013-05-22 Phil Muldoon <pmuldoon@redhat.com>
2920
2921 * ui-out.c: Create typedef ui_out_level_p and define vector
2922 operations for that type.
2923 (struct ui_out): Use a vector instead of an array.
2924 (current_level): Return level from a vector.
2925 (push_level): Create a level in a vector.
2926 (pop_level): Delete a level in a vector.
2927 (ui_out_new): Create initial level zero level, and store in a
2928 vector.
2929 (ui_out_destroy): Add vector cleanup.
2930
2931 2013-05-22 Pedro Alves <palves@redhat.com>
2932
2933 * python/python-internal.h (gdb_Py_DECREF): Tag with
2934 "ARI: editCase function".
2935
2936 2013-05-21 Paul Pluzhnikov <ppluzhnikov@google.com>
2937
2938 * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
2939
2940 2013-05-21 Pedro Alves <palves@redhat.com>
2941
2942 * python/py-prettyprint.c (apply_val_pretty_printer): Check
2943 whether PRINTER is NULL before installing a Py_DECREF cleanup.
2944 * python/py-utils.c (py_decref): Don't check for NULL before
2945 calling Py_DECREF.
2946
2947 2013-05-21 Pedro Alves <palves@redhat.com>
2948
2949 * python/py-utils.c (py_decref): Remove extra braces.
2950 (gdb_pymodule_addobject): Remove extra braces.
2951 * python-internal.h (gdb_Py_DECREF): New static inline function.
2952 (Py_DECREF): Redefine as calling gdb_Py_DECREF.
2953
2954 2013-05-21 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2955
2956 * breakpoints.c (detach_breakpoints): Do not
2957 detach breakpoints locations with loc_type bp_loc_other.
2958
2959 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2960
2961 Workaround Python 2.6.
2962 * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
2963 a block.
2964
2965 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2966
2967 Code cleanup: constification.
2968 * solib.c (solib_ops): Make return type and ops variable type const.
2969 (set_solib_ops): Make the new_ops parameter and ops variable const.
2970 (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
2971 (solib_add, solib_keep_data_in_core, clear_solib)
2972 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
2973 (reload_shared_libraries, solib_global_lookup): Make the ops variable
2974 const.
2975 * solib.h (set_solib_ops): Make the new_ops parameter const.
2976
2977 2013-05-21 Joel Brobecker <brobecker@adacore.com>
2978
2979 * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
2980 variable.
2981 (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
2982 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
2983 (SYSTEM_GDBINIT_FILES): New variables.
2984 (all): Add stamp-system-gdbinit.
2985 (stamp-system-gdbinit): New rule.
2986 (clean-system-gdbinit, install-system-gdbinit)
2987 (uninstall-system-gdbinit): New rules. Make them .PHONY.
2988 (install-only): Add dependency on install-system-gdbinit.
2989 (uninstall): Add dependency on uninstall-system-gdbinit.
2990 (clean): Add dependency on clean-system-gdbinit.
2991 * system-gdbinit/elinos.py: New file.
2992 * system-gdbinit/wrs-linux.py: New file.
2993
2994 2013-05-21 Joel Brobecker <brobecker@adacore.com>
2995
2996 * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
2997
2998 2013-05-21 Hui Zhu <hui@codesourcery.com>
2999
3000 * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
3001 * breakpoint.h (dprintf_breakpoint_ops): Add extern.
3002 * mi/mi-cmd-break.c (ctype.h): New include.
3003 (gdb_obstack.h): New include.
3004 (mi_argv_to_format, mi_cmd_break_insert_1): New.
3005 (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
3006 (mi_cmd_dprintf_insert): New.
3007 * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
3008 * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
3009
3010 2013-05-20 Tom Tromey <tromey@redhat.com>
3011
3012 * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
3013
3014 2013-05-20 Tom Tromey <tromey@redhat.com>
3015
3016 * python/py-value.c (valpy_get_dynamic_type): Simplify
3017 dynamic_type assignment. Use Py_XINCREF.
3018
3019 2013-05-20 Tom Tromey <tromey@redhat.com>
3020
3021 * python/py-type.c (typy_fields): Unconditionally decref 'r'.
3022
3023 2013-05-20 Tom Tromey <tromey@redhat.com>
3024
3025 * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
3026 (gdbpy_selected_frame): Move object-construction code
3027 out of TRY_CATCH.
3028
3029 2013-05-20 Tom Tromey <tromey@redhat.com>
3030
3031 * python/py-arch.c (gdbpy_initialize_arch): Use
3032 gdb_pymodule_addobject.
3033 * python/py-block.c (gdbpy_initialize_blocks): Use
3034 gdb_pymodule_addobject.
3035 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
3036 gdb_pymodule_addobject.
3037 * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
3038 gdb_pymodule_addobject.
3039 * python/py-event.c (gdbpy_initialize_event_generic): Use
3040 gdb_pymodule_addobject.
3041 * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
3042 gdb_pymodule_addobject.
3043 * python/py-evts.c (add_new_registry): Use
3044 gdb_pymodule_addobject.
3045 (gdbpy_initialize_py_events): Likewise.
3046 * python/py-finishbreakpoint.c
3047 (gdbpy_initialize_finishbreakpoints): Use
3048 gdb_pymodule_addobject.
3049 * python/py-frame.c (gdbpy_initialize_frames): Use
3050 gdb_pymodule_addobject.
3051 * python/py-function.c (gdbpy_initialize_functions): Use
3052 gdb_pymodule_addobject.
3053 * python/py-inferior.c (gdbpy_initialize_inferior): Use
3054 gdb_pymodule_addobject.
3055 * python/py-infthread.c (gdbpy_initialize_thread): Use
3056 gdb_pymodule_addobject.
3057 * python/py-objfile.c (gdbpy_initialize_objfile): Use
3058 gdb_pymodule_addobject.
3059 * python/py-param.c (gdbpy_initialize_parameters): Use
3060 gdb_pymodule_addobject.
3061 * python/py-progspace.c (gdbpy_initialize_pspace): Use
3062 gdb_pymodule_addobject.
3063 * python/py-symbol.c (gdbpy_initialize_symbols): Use
3064 gdb_pymodule_addobject.
3065 * python/py-symtab.c (gdbpy_initialize_symtabs): Use
3066 gdb_pymodule_addobject.
3067 * python/py-type.c (gdbpy_initialize_types): Use
3068 gdb_pymodule_addobject.
3069 * python/py-utils.c (gdb_pymodule_addobject): New function.
3070 * python/py-value.c (gdbpy_initialize_values): Use
3071 gdb_pymodule_addobject.
3072 * python/python-internal.h (gdb_pymodule_addobject): Declare.
3073 * python/python.c (_initialize_python): Use
3074 gdb_pymodule_addobject.
3075
3076 2013-05-20 Tom Tromey <tromey@redhat.com>
3077
3078 * python/py-cmd.c (cmdpy_completer): Use explicit decref.
3079 * python/py-param.c (get_set_value, get_show_value): Use
3080 explicit decrefs.
3081 * python/python.c (start_type_printers, apply_type_printers):
3082 Use explicit decrefs.
3083
3084 2013-05-20 Tom Tromey <tromey@redhat.com>
3085
3086 * python/py-evts.c (gdbpy_initialize_py_events): Don't
3087 incref the module.
3088
3089 2013-05-20 Tom Tromey <tromey@redhat.com>
3090
3091 * python/python.c (gdbpy_run_events): Decref the result
3092 of PyObject_CallObject.
3093
3094 2013-05-20 Tom Tromey <tromey@redhat.com>
3095
3096 * python/py-symtab.c (set_sal): Use
3097 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION. Return -1 on error.
3098 (symtab_and_line_to_sal_object): Update.
3099
3100 2013-05-20 Tom Tromey <tromey@redhat.com>
3101
3102 * python/py-param.c (compute_enum_values): Decref 'item'.
3103
3104 2013-05-20 Tom Tromey <tromey@redhat.com>
3105
3106 * mi/mi-main.c: Include python-internal.h.
3107 (mi_cmd_list_features): Check gdb_python_initialized.
3108 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
3109 (python_inferior_exit, python_new_objfile, add_thread_object)
3110 (delete_thread_object, py_free_inferior): Check
3111 gdb_python_initialized.
3112 * python/py-prettyprint.c (apply_val_pretty_printer): Check
3113 gdb_python_initialized.
3114 * python/py-type.c (save_objfile_types): Check
3115 gdb_python_initialized.
3116 * python/python-internal.h (gdb_python_initialized): Declare.
3117 * python/python.c (ensure_python_env): Throw exception if
3118 Python not initialized.
3119 (before_prompt_hook, source_python_script_for_objfile)
3120 (start_type_printers, apply_type_printers,
3121 free_type_printers): Check gdb_python_initialized.
3122 * varobj.c (varobj_get_display_hint)
3123 (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
3124 (install_new_value_visualizer, varobj_set_visualizer)
3125 (value_get_print_value): Check gdb_python_initialized.
3126
3127 2013-05-20 Tom Tromey <tromey@redhat.com>
3128
3129 * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
3130 Check errors.
3131 * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
3132 * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
3133 Check errors.
3134 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
3135 Check errors.
3136 * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
3137 Check errors.
3138 * python/py-event.c (gdbpy_initialize_event): Return 'int'.
3139 Check errors.
3140 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
3141 init function to return 'int'.
3142 * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
3143 Return 'int'. Check errors.
3144 * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
3145 Check errors.
3146 * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
3147 Return 'int'. Check errors.
3148 * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
3149 Check errors.
3150 * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
3151 Check errors.
3152 * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
3153 Check errors.
3154 * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
3155 Check errors.
3156 * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
3157 Check errors.
3158 * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
3159 Check errors.
3160 * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
3161 Check errors.
3162 * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
3163 Check errors.
3164 * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
3165 Check errors.
3166 * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
3167 Check errors.
3168 * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
3169 Check errors.
3170 * python/py-type.c (gdbpy_initialize_types): Return 'int'.
3171 Check errors.
3172 * python/py-value.c (gdbpy_initialize_values): Return 'int'.
3173 Check errors.
3174 * python/python-internal.h (gdbpy_initialize_auto_load,
3175 gdbpy_initialize_values, gdbpy_initialize_frames,
3176 gdbpy_initialize_symtabs, gdbpy_initialize_commands,
3177 gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
3178 gdbpy_initialize_blocks, gdbpy_initialize_types,
3179 gdbpy_initialize_functions, gdbpy_initialize_pspace,
3180 gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
3181 gdbpy_initialize_finishbreakpoints,
3182 gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
3183 gdbpy_initialize_thread, gdbpy_initialize_inferior,
3184 gdbpy_initialize_eventregistry, gdbpy_initialize_event,
3185 gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
3186 gdbpy_initialize_signal_event,
3187 gdbpy_initialize_breakpoint_event,
3188 gdbpy_initialize_continue_event,
3189 gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
3190 gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
3191 Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
3192 * python/python.c (gdb_python_initialized): New global.
3193 (gdbpy_initialize_events): Return 'int'. Check errors.
3194 (_initialize_python): Check errors. Set
3195 gdb_python_initialized.
3196
3197 2013-05-20 Tom Tromey <tromey@redhat.com>
3198
3199 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
3200 Decref the reslut of PyObject_CallMethod.
3201
3202 2013-05-20 Tom Tromey <tromey@redhat.com>
3203
3204 * python/py-event.c (gdbpy_initialize_event_generic): Return
3205 early if PyType_Ready fails.
3206
3207 2013-05-20 Tom Tromey <tromey@redhat.com>
3208
3209 * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
3210 as 'default' in the switch.
3211
3212 2013-05-20 Tom Tromey <tromey@redhat.com>
3213
3214 * python/py-inferior.c (gdbpy_inferiors): Update. Hoist
3215 get_addr_from_python calls out of TRY_CATCH.
3216 (infpy_write_memory, infpy_search_memory): Likewise.
3217 * python/py-utils.c (get_addr_from_python): Return negative
3218 value on error. Use TRY_CATCH.
3219 * python/python-internal.h (get_addr_from_python): Use
3220 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
3221
3222 2013-05-20 Tom Tromey <tromey@redhat.com>
3223
3224 * python/py-event.c (evpy_emit_event): Decref the
3225 result of PyObject_CallFunctionObjArgs.
3226
3227 2013-05-20 Tom Tromey <tromey@redhat.com>
3228
3229 * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
3230 Correctly decref.
3231
3232 2013-05-20 Tom Tromey <tromey@redhat.com>
3233
3234 * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
3235
3236 2013-05-20 Tom Tromey <tromey@redhat.com>
3237
3238 * python/py-event.h (gdbpy_initialize_event_generic): Use
3239 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
3240 * python/py-evts.c (add_new_registry): Use
3241 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
3242 * python/python-internal.h
3243 (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
3244
3245 2013-05-20 Tom Tromey <tromey@redhat.com>
3246
3247 * python/py-arch.c (archpy_disassemble): Update.
3248 * python/py-type.c (typy_get_composite, typy_lookup_typename)
3249 (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
3250 * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
3251 * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
3252 macro.
3253 (GDB_PY_HANDLE_EXCEPTION): Update.
3254 (gdbpy_convert_exception): Update. Use CPYCHECKER_SETS_EXCEPTION.
3255
3256 2013-05-20 Tom Tromey <tromey@redhat.com>
3257
3258 * python/python-internal.h (events_object_type): Remove.
3259
3260 2013-05-20 Tom Tromey <tromey@redhat.com>
3261
3262 * python/py-event.h (evpy_emit_event): Use
3263 CPYCHECKER_STEALS_REFERENCE_TO_ARG.
3264 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
3265 New macro.
3266
3267 2013-05-20 Tom Tromey <tromey@redhat.com>
3268
3269 * py-evtregistry.c (create_event_object): Decref
3270 eventregistry_object if PyList_New fails.
3271
3272 2013-05-20 Tom Tromey <tromey@redhat.com>
3273
3274 * py-cmd.c (gdbpy_string_to_argv): Check result of
3275 PyList_New.
3276
3277 2013-05-20 Tom Tromey <tromey@redhat.com>
3278
3279 * python/python.c (before_prompt_hook): Add cleanup to
3280 decref 'hook'.
3281
3282 2013-05-20 Tom Tromey <tromey@redhat.com>
3283
3284 * python/py-function.c (fnpy_init): Decref result of
3285 PyObject_GetAttrString.
3286
3287 2013-05-20 Tom Tromey <tromey@redhat.com>
3288
3289 * python/py-threadevent.c (get_event_thread): Use
3290 CPYCHECKER_RETURNS_BORROWED_REF.
3291 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
3292 New define.
3293 (pspace_to_pspace_object, objfile_to_objfile_object)
3294 (find_thread_object): Use it.
3295
3296 2013-05-20 Tom Tromey <tromey@redhat.com>
3297
3298 * python/py-arch.c (arch_object_type): Use
3299 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3300 * python/py-block.c (block_syms_iterator_object_type):
3301 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3302 * python/py-bpevent.c (breakpoint_event_object_type):
3303 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3304 * python/py-cmd.c (cmdpy_object_type): Use
3305 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3306 * python/py-continueevent.c (continue_event_object_type):
3307 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3308 * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
3309 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3310 * python/py-events.h (thread_event_object_type):
3311 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3312 * python/py-evtregistry.c (eventregistry_object_type): Use
3313 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3314 * python/py-exitedevent.c (exited_event_object_type):
3315 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3316 * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
3317 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3318 * python/py-function.c (fnpy_object_type): Use
3319 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3320 * python/py-inferior.c (inferior_object_type, membuf_object_type):
3321 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3322 * python/py-infthread.c (thread_object_type): Use
3323 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3324 * python/py-lazy-string.c (lazy_string_object_type):
3325 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3326 * python/py-newobjfileevent.c (new_objfile_event_object_type):
3327 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3328 * python/py-objfile.c (objfile_object_type): Use
3329 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3330 * python/py-param.c (parmpy_object_type):
3331 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3332 * python/py-progspace.c (pspace_object_type):
3333 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3334 * python/py-signalevent.c (signal_event_object_type):
3335 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3336 * python/py-symtab.c (symtab_object_type, sal_object_type): Use
3337 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3338 * python/py-type.c (type_object_type, field_object_type)
3339 (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3340 * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
3341 define.
3342 (value_object_type, block_object_type, symbol_object_type)
3343 (event_object_type, stop_event_object_type, breakpoint_object_type)
3344 (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
3345
3346 2013-05-20 Andreas Tobler <andreas@fgznet.ch>
3347
3348 * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
3349 (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
3350
3351 2013-05-20 Doug Evans <dje@google.com>
3352
3353 When reading CU, stay in DWO. Be more tolerent of bad debug info.
3354 For Fission.
3355 * dwarf2read.c (struct dwarf2_per_cu_data): New member
3356 reading_dwo_directly.
3357 (struct signatured_type): New member dwo_unit.
3358 (struct die_reader_specs): New member comp_dir.
3359 (create_signatured_type_table_from_index): Use malloc for
3360 all_type_units instead of objfile's obstack.
3361 (create_all_type_units): Ditto.
3362 (fill_in_sig_entry_from_dwo_entry): New function.
3363 (add_type_unit): New function.
3364 (lookup_dwo_signatured_type): New function.
3365 (lookup_dwp_signatured_type): New function.
3366 (lookup_signatured_type): New arg cu. All callers updated.
3367 (init_cu_die_reader): Initialize comp_dir.
3368 (read_cutu_die_from_dwo): New arg stub_comp_dir. All callers updated.
3369 Change assert of matching type signatures to call error on mismatch.
3370 (lookup_dwo_unit): Add assert.
3371 (init_tu_and_read_dwo_dies): New function.
3372 (init_cutu_and_read_dies): Call it.
3373 (build_type_unit_groups): Handle case of no type unit groups created.
3374 (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
3375 (lookup_dwo_cutu): Tweak complaint.
3376 (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
3377 (dwarf2_per_objfile_free): Free all_type_units.
3378
3379 2013-05-20 Joel Brobecker <brobecker@adacore.com>
3380
3381 * windows-nat.c (handle_unload_dll): Add missing empty line.
3382
3383 2013-05-20 Joel Brobecker <brobecker@adacore.com>
3384
3385 * dwarf2read.c (prototyped_function_p): New function.
3386 (read_subroutine_type): Use it.
3387
3388 2013-05-20 Joel Brobecker <brobecker@adacore.com>
3389
3390 * rs6000-aix-tdep.c: De-indent some example code provided
3391 as a comment.
3392
3393 2013-05-17 Edjunior Machado <emachado@linux.vnet.ibm.com>
3394
3395 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
3396 region is ok for a hardware watchpoint using the new ptrace interface
3397 on Power servers.
3398
3399 2013-05-17 Doug Evans <dje@google.com>
3400
3401 * NEWS: Mention new maintenance commands check-symtabs, and
3402 expand-symtabs, and renamed check-psymtabs.
3403 * psymtab.c (maintenance_check_psymtabs): Renamed from
3404 maintenance_check_symtabs. Only process already-expanded symbol
3405 tables.
3406 (_initialize_psymtab): Update.
3407 * symmisc.c (maintenance_check_symtabs): New function.
3408 (maintenance_expand_name_matcher): New function
3409 (maintenance_expand_file_matcher): New function
3410 (maintenance_expand_symtabs): New function.
3411 (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
3412 commands.
3413
3414 2013-05-17 Tom Tromey <tromey@redhat.com>
3415
3416 * python/py-inferior.c (infpy_read_memory): Don't call
3417 PyErr_SetString if PyObject_New fails.
3418 * python/py-frame.c (frame_info_to_frame_object): Don't call
3419 PyErr_SetString if PyObject_New fails.
3420
3421 2013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
3422
3423 * acinclude.m4: Add check for dlopen in libdl.
3424 * configure.ac: Ditto.
3425 * configure: Regenerate.
3426
3427 2013-05-17 Phil Muldoon <pmuldoon@redhat.com>
3428
3429 * frame.c (frame_stash): Convert to htab.
3430 (frame_addr_hash): New function.
3431 (frame_addr_hash_eq): New function.
3432 (frame_stash_create): Convert function to create
3433 a hash table.
3434 (frame_stash_add): Convert function to add an entry to a hash
3435 table.
3436 (frame_stash_find): Convert function to search the hash table.
3437 (frame_stash_invalidate): Convert function to empty the hash
3438 table.
3439 (get_frame_id): Only add to stash if a frame_id is created.
3440 (_initialize_frame): Call frame_stash_create.
3441
3442 2013-05-16 Yue Lu <hacklu.newborn@gmail.com> (tiny change)
3443
3444 * configure.ac: Ensure MIG is available when building for GNU Hurd
3445 hosts.
3446 * configure: Regenerate.
3447
3448 2013-05-16 Joel Brobecker <brobecker@adacore.com>
3449
3450 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
3451
3452 2013-05-16 Joel Brobecker <brobecker@adacore.com>
3453
3454 * ada-lang.c (ada_make_symbol_completion_list): Make sure
3455 all cleanups are done before returning from this function.
3456
3457 2013-05-15 Joel Brobecker <brobecker@adacore.com>
3458
3459 * utils.h: #include "exceptions.h".
3460 (enum errors): Remove partial declaration.
3461
3462 2013-05-15 Joel Brobecker <brobecker@adacore.com>
3463
3464 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
3465 * gdbarch.h, gdbarch.c: Regenerate.
3466 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
3467 handling.
3468
3469 * rs6000-aix-tdep.h: New file.
3470 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
3471 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
3472 "xml-utils.h".
3473 (struct field_info, struct ld_info_desc): New types.
3474 (ld_info32_desc, ld_info64_desc): New static constants.
3475 (struct ld_info): New type.
3476 (rs6000_aix_extract_ld_info): New function.
3477 (rs6000_aix_shared_library_to_xml): Likewise.
3478 (rs6000_aix_ld_info_to_xml): Likewise.
3479 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
3480 (rs6000_aix_init_osabi): Add call to
3481 set_gdbarch_core_xfer_shared_libraries_aix.
3482 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
3483 Remove "xml-utils.h" include.
3484 (LdInfo): Delete typedef.
3485 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
3486 Delete macros.
3487 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
3488 Adjust code accordingly.
3489 (rs6000_core_ldinfo): Delete, folded into
3490 rs6000_aix_core_xfer_shared_libraries_aix.
3491 (rs6000_xfer_shared_library): Delete.
3492 (rs6000_xfer_shared_libraries): Reimplement.
3493
3494 2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
3495
3496 * record.c (record_goto_cmdlist): New.
3497 (cmd_record_goto): Split into this ...
3498 (cmd_record_goto_begin): ... this
3499 (cmd_record_goto_end): ... and this.
3500 (_initialize_record): Change "record goto" to prefix command.
3501 Add commands for "record goto begin" and "record goto end".
3502 Add an alias for "record goto start" to "record goto begin".
3503
3504 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
3505
3506 * linespec.c (convert_linespec_to_sals): New comment for
3507 SOURCE_FILENAME assignment.
3508
3509 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
3510
3511 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
3512 internal_warning.
3513
3514 2013-05-14 Tom Tromey <tromey@redhat.com>
3515
3516 * eval.c (parse_and_eval_long): Make 'exp' const.
3517 * value.h (parse_and_eval_long): Update.
3518
3519 2013-05-14 Tom Tromey <tromey@redhat.com>
3520
3521 * ui-file.c (gdb_fopen): Make arguments const.
3522 * ui-file.h (gdb_fopen): Make arguments const.
3523
3524 2013-05-14 Tom Tromey <tromey@redhat.com>
3525
3526 * remote.c (remote_set_trace_notes): Make arguments const.
3527 * target.c (update_current_target): Update cast.
3528 * target.h (to_set_trace_notes): Make arguments const.
3529
3530 2013-05-14 Tom Tromey <tromey@redhat.com>
3531
3532 * go32-nat.c (go32_terminal_info): Make 'args' const.
3533 * inferior.h (child_terminal_info): Update.
3534 * inflow.c (child_terminal_info): Make 'args' const.
3535 * target.c (default_terminal_info): Make 'args' const.
3536 (debug_to_terminal_save_ours): Likewise.
3537 * target.h (struct target_ops) <to_terminal_info>: Make argument
3538 const.
3539
3540 2013-05-13 Tom Tromey <tromey@redhat.com>
3541
3542 * gcore.c (create_gcore_bfd): Make 'filename' const.
3543 * gcore.h (create_gcore_bfd): Make 'filename' const.
3544 * record-full.c (record_full_save): Make 'recfilename' const.
3545 * target.c (target_save_record): Make 'filename' const.
3546 * target.h (struct target_ops) <to_save_record>: Make 'filename'
3547 const.
3548 (target_save_record): Likewise.
3549
3550 2013-05-13 Tom Tromey <tromey@redhat.com>
3551
3552 PR gdb/15338:
3553 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
3554 ranges section has been read.
3555
3556 2013-05-13 Tom Tromey <tromey@redhat.com>
3557
3558 PR exp/15364:
3559 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
3560 STRUCTOP_PTR>: Return a not_lval value for
3561 EVAL_AVOID_SIDE_EFFECTS.
3562 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
3563 for EVAL_AVOID_SIDE_EFFECTS.
3564
3565 2013-05-13 Joel Brobecker <brobecker@adacore.com>
3566
3567 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
3568 floating point registers to register type before storing
3569 value.
3570 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
3571 Likewise.
3572
3573 2013-05-10 Joel Brobecker <brobecker@adacore.com>
3574 Tom Tromey <tromey@redhat.com>
3575
3576 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
3577 New functions.
3578 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
3579 Declare.
3580 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
3581 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
3582 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
3583 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
3584
3585 2013-05-10 Freddie Chopin <freddie_chopin@op.pl>
3586 Tom Tromey <tromey@redhat.com>
3587
3588 PR build/15414:
3589 * configure: Rebuild.
3590 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
3591 with -Wno-format.
3592
3593 2013-05-10 Pedro Alves <palves@redhat.com>
3594
3595 * remote.c (_initialize_remote): Fix spelling of
3596 qXfer:traceframe-info:read packet in packet config command.
3597
3598 2013-05-10 David Taylor <dtaylor@emc.com>
3599
3600 PR remote/15455
3601
3602 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
3603 "QTro" at start of packet.
3604
3605 2013-05-10 Joel Brobecker <brobecker@adacore.com>
3606
3607 * solib-aix.c (solib_aix_relocate_section_addresses):
3608 For the .bss section action, apply the same offset as
3609 the .data section.
3610
3611 2013-05-10 Joel Brobecker <brobecker@adacore.com>
3612
3613 * solib-aix.c (solib_aix_relocate_section_addresses):
3614 Remove FIXME comment.
3615
3616 2013-05-10 Joel Brobecker <brobecker@adacore.com>
3617
3618 PR tdep/15420:
3619 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
3620 New functions, directly copied from sparc-sol-thread.c.
3621 * sparc-sol-thread.c: Delete.
3622 * configure.ac: Remove code handling sparc-solaris-thread.c.
3623 * configure: Regenerate.
3624
3625 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
3626
3627 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
3628 filter logic.
3629 (backtrace_command): Add "no-filters" option parsing.
3630 (_initialize_stack): Alter help to reflect "no-filters" option.
3631 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
3632 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
3633 (py-frame.o): Add target
3634 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
3635 filter files.
3636 * python/python.h: Add new frame filter constants, and flag enum.
3637 (apply_frame_filter): Add definition.
3638 * python/python.c (apply_frame_filter): New non-Python
3639 enabled function.
3640 * python/py-utils.c (py_xdecref): New function.
3641 (make_cleanup_py_xdecref): Ditto.
3642 * python/py-objfile.c: Declare frame_filters dictionary.
3643 (objfpy_dealloc): Add frame_filters dealloc.
3644 (objfpy_new): Initialize frame_filters attribute.
3645 (objfile_to_objfile_object): Ditto.
3646 (objfpy_get_frame_filters): New function.
3647 (objfpy_set_frame_filters): New function.
3648 * python/py-progspace.c: Declare frame_filters dictionary.
3649 (pspy_dealloc): Add frame_filters dealloc.
3650 (pspy_new): Initialize frame_filters attribute.
3651 (pspacee_to_pspace_object): Ditto.
3652 (pspy_get_frame_filters): New function.
3653 (pspy_set_frame_filters): New function.
3654 * python/py-framefilter.c: New file.
3655 * python/lib/gdb/command/frame_filters.py: New file.
3656 * python/lib/gdb/frames.py: New file.
3657 * python/lib/gdb/__init__.py: Initialize global frame_filters
3658 dictionary
3659 * python/lib/gdb/FrameDecorator.py: New file.
3660 * python/lib/gdb/FrameIterator.py: New file.
3661 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
3662 * mi/mi-cmds.h: Declare.
3663 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
3664 --no-frame-filter logic, and Python frame filter logic.
3665 (stack_enable_frame_filters): New function.
3666 (parse_no_frame_option): Ditto.
3667 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
3668 filter logic.
3669 (mi_cmd_stack_list_locals): Ditto.
3670 (mi_cmd_stack_list_args): Ditto.
3671 (mi_cmd_stack_list_variables): Ditto.
3672 * NEWS: Add frame filter note.
3673
3674 2013-05-09 Doug Evans <dje@google.com>
3675
3676 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
3677 All callers updated.
3678 (syms_from_objfile): Ditto. Make static.
3679 (symbol_file_add_with_addrs): Renamed from
3680 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
3681 num_offsets. All callers updated.
3682 * symfile.h (syms_from_objfile): Delete.
3683
3684 * symfile.c (decrement_reading_symtab): Add assert.
3685 (increment_reading_symtab): Ditto.
3686
3687 2013-05-09 Joel Brobecker <brobecker@adacore.com>
3688
3689 * source.c (forward_search_command): Replace call to getc
3690 by call to fgetc.
3691 (reverse_search_command): Likewise.
3692
3693 2013-05-08 Doug Evans <dje@google.com>
3694
3695 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
3696 matching test.
3697
3698 2013-05-08 Joel Brobecker <brobecker@adacore.com>
3699
3700 * sol-thread.c (info_cb): Factorize the code a little.
3701
3702 2013-05-08 Joel Brobecker <brobecker@adacore.com>
3703
3704 * sol-thread.c (info_cb): Rework the output of the "maintenance
3705 info sol-threads" command a bit.
3706
3707 2013-05-08 Joel Brobecker <brobecker@adacore.com>
3708
3709 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
3710 Replace ti.ti_startfunc by ti.ti_pc.
3711
3712 2013-05-08 Joel Brobecker <brobecker@adacore.com>
3713
3714 * solib-aix.c (solib_aix_free_library_list): New function
3715 for the case where HAVE_LIBEXPAT is not defined.
3716
3717 2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
3718
3719 PR breakpoints/15413:
3720 * breakpoint.c (condition_completer): Simplify the code to
3721 disconsider multiple locations of breakpoints when completing the
3722 "condition" command.
3723
3724 2013-05-07 Pierre Muller <muller@sourceware.org>
3725
3726 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
3727 instead of <sys/wait.h>.
3728
3729 2013-05-07 Pierre Muller <muller@sourceware.org>
3730
3731 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
3732 trailing new line from warning message.
3733
3734 2013-05-07 Pierre Muller <muller@sourceware.org>
3735
3736 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
3737 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
3738
3739 2013-05-07 Joel Brobecker <brobecker@adacore.com>
3740
3741 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
3742 error message (ARI fix).
3743
3744 2013-05-07 Joel Brobecker <brobecker@adacore.com>
3745
3746 * features/library-list-aix.dtd: Replace library-list by
3747 library-list-aix.
3748 * rs6000-nat.c: Replace library-list by library-list-aix
3749 throughout.
3750 * solib-aix.c: Likewise.
3751
3752 2013-05-07 Joel Brobecker <brobecker@adacore.com>
3753
3754 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
3755 Renames TARGET_OBJECT_AIX_LIBRARIES.
3756 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
3757 TARGET_OBJECT_LIBRARIES_AIX throughout.
3758 * solib-aix.c: Likwise.
3759
3760 2013-05-07 Yao Qi <yao@codesourcery.com>
3761
3762 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
3763 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
3764
3765 2013-05-07 Yao Qi <yao@codesourcery.com>
3766
3767 * solib-dsbt.c (enable_break): Declare.
3768 (dsbt_current_sos): Remove call to enable_break2.
3769 (enable_break2): Rename to enable_break. Set solib breakpoint
3770 on '_dl_debug_state'.
3771 (enable_break): Remove.
3772
3773 2013-05-07 Luis Machado <lgustavo@codesourcery.com>
3774
3775 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
3776 debug state prior to replicating existing hardware watchpoints or
3777 breakpoints.
3778
3779 2013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3780
3781 * gcore.c (gcore_create_callback): Ignore sections with
3782 separate_debug_objfile_backlink != NULL.
3783
3784 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
3785 Andrew Jenner <andrew@codesourcery.com>
3786 Chung-Lin Tang <cltang@codesourcery.com>
3787 Julian Brown <julian@codesourcery.com>
3788
3789 Based on the nios2-elf port from Altera Corporation.
3790
3791 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
3792 nios2-linux-tdep.o.
3793 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
3794 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
3795 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
3796 * nios2-tdep.h: New.
3797 * nios2-tdep.c: New.
3798 * nios2-linux-tdep.c: New.
3799 * features/Makefile (WHICH): Add nios2-linux.
3800 (nios2-linux-expedite): Set.
3801 * features/nios2-cpu.xml: New.
3802 * features/nios2.xml: New.
3803 * features/nios2-linux.xml: New.
3804 * features/nios2.c: New (autogenerated).
3805 * features/nios2-linux.c: New (autogenerated).
3806 * regformats/nios2-linux.dat: New (autogenerated).
3807 * NEWS (Changes since GDB 7.6): Add new Nios II targets
3808 and commands.
3809
3810 2013-05-06 Doug Evans <dje@google.com>
3811
3812 * symfile.c: Whitespace cleanup.
3813
3814 * solist.h (struct target_so_ops): New member clear_so.
3815 * solib-svr4.c (svr4_clear_so): New function.
3816 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
3817 * solib.c (clear_so): Renamed from free_so_symbols.
3818 All callers updated. Call target clear_so if it exists.
3819
3820 2013-05-06 Tom Tromey <tromey@redhat.com>
3821
3822 * ada-lang.c (ada_value_primitive_packed_val): Don't
3823 call value_incref.
3824 * value.c (set_value_parent): Incref the new parent and decref
3825 the old parent.
3826 (value_copy, value_primitive_field): Use set_value_parent.
3827
3828 2013-05-06 Tom Tromey <tromey@redhat.com>
3829
3830 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
3831 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
3832 if needed.
3833 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
3834 * dwarf2read.c (write_constant_as_bytes)
3835 (dwarf2_fetch_constant_bytes): New functions.
3836
3837 2013-05-06 Tom Tromey <tromey@redhat.com>
3838
3839 * dwarf2read.c (dwarf2_const_value_data): Remove unused
3840 parameters.
3841 (dwarf2_const_value_attr): Update.
3842
3843 2013-05-06 Tom Tromey <tromey@redhat.com>
3844
3845 * somread.c (som_symfile_offsets): Add 'const' to addrs.
3846 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
3847 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
3848 Remove declaration.
3849
3850 2013-05-06 Tom Tromey <tromey@redhat.com>
3851
3852 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
3853 objfile's obstack.
3854
3855 2013-05-06 Doug Evans <dje@google.com>
3856
3857 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
3858 * stabsread.h (process_one_symbol): Update declaration.
3859 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
3860 * elfread.c (elf_symfile_relocate_probe): Ditto.
3861 * psymtab.c (relocate_psymtabs): Ditto.
3862 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
3863 (objfile_relocate): Ditto.
3864 * objfiles.h (objfile_relocate): Update declaration.
3865 * symfile.c (relative_addr_info_to_section_offsets): Constify
3866 addrs parameter.
3867 (default_symfile_offsets): Ditto.
3868 (syms_from_objfile_1): Constify offsets parameter.
3869 (syms_from_objfile): Ditto.
3870 (symbol_file_add_with_addrs_or_offsets): Ditto.
3871 (symfile_map_offsets_to_segments): Constify data parameter.
3872 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
3873 delta parameters of member relocate.
3874 (struct sym_probe_fns): Constify new_offsets,
3875 delta parameters of member sym_relocate_probe.
3876 (struct sym_fns): Constify section_addr_info parameter of member
3877 sym_offsets.
3878 (relative_addr_info_to_section_offsets): Update declaration.
3879 (default_symfile_offsets): Ditto.
3880 (syms_from_objfile): Ditto.
3881 (symfile_map_offsets_to_segments): Ditto.
3882
3883 * symfile.c (syms_from_objfile_1): Use correct section count when
3884 objfile->sf == NULL.
3885
3886 2013-05-06 Mike Frysinger <vapier@gentoo.org>
3887
3888 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
3889
3890 2013-05-06 Doug Evans <dje@google.com>
3891
3892 * psympriv.h (struct partial_symtab): Augment comment for member
3893 section_offsets.
3894
3895 2013-05-06 Joel Brobecker <brobecker@adacore.com>
3896
3897 Reimplement shared library support on ppc-aix...
3898 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
3899 * features/library-list-aix.dtd: New file.
3900 * solib-aix.h, solib-aix.c: New file.
3901 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
3902 (rs6000_find_toc_address_hook): Delete.
3903 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
3904 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
3905 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
3906 "xml-utils.h".
3907 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
3908 (vmap_symtab, fixup_breakpoints): Delete.
3909 (rs6000_xfer_shared_libraries): New function.
3910 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
3911 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
3912 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
3913 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
3914 (rs6000_xfer_shared_library): New function.
3915 (find_toc_address): Delete.
3916 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
3917 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
3918 * xcoffread.c (record_minimal_symbol): Reloate symbol address
3919 before creating minimal symbol. Adjust function description
3920 accordingly.
3921 (scan_xcoff_symtab): Replace call to
3922 prim_record_minimal_symbol_and_info by call to
3923 record_minimal_symbol.
3924 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
3925 around default_symfile_offsets.
3926 * configure.tgt: Add solib-aix.o to gdb_target_obs for
3927 powerpc-aix targets.
3928 * config/rs6000/nm-rs6000.h: Delete.
3929 * config/powerpc/aix.mh (NAT_FILE): Delete.
3930 (NATDEPFILES): Remove xcoffsolib.o.
3931 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
3932 (ALL_TARGET_OBS): Add solib-aix.o.
3933 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
3934 config/rs6000/nm-rs6000.h. Add solib-aix.h.
3935 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
3936 * xcoffsolib.h, xcoffsolib.c: Delete.
3937
3938 * solib.c (reload_shared_libraries): Remove reference to
3939 SOLIB_CREATE_INFERIOR_HOOK.
3940 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
3941 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
3942 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
3943 comment.
3944 * corelow.c (deprecated_core_resize_section_table): Delete.
3945 * exec.c: Remove include of xcoffsolib.h".
3946 (map_vmap, vmap): Delete.
3947 (exec_close_1): Remove references to vmap.
3948 (exec_file_attach): Remove vmap handling code, and reference
3949 to DEPRECATED_IBM6000_TARGET.
3950 (bfdsec_to_vmap): Delete.
3951 (exec_files_info): Remove block of code handling VMAP.
3952 * infcmd.c (post_create_inferior): Remove reference to
3953 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
3954 * infrun.c (follow_exec): Remove reference to
3955 SOLIB_CREATE_INFERIOR_HOOK.
3956 * stack.c (print_frame): Remove reference to PC_SOLIB.
3957 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
3958 (dsbt_relocate_main_executable): Likewise.
3959 * solib-frv.c (frv_current_sos): Likewise.
3960
3961 2013-05-06 Joel Brobecker <brobecker@adacore.com>
3962
3963 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
3964 to target_write_memory and target_read_memory.
3965
3966 2013-05-06 Joel Brobecker <brobecker@adacore.com>
3967
3968 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
3969 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
3970
3971 2013-05-06 Joel Brobecker <brobecker@adacore.com>
3972
3973 * darwin-nat.c: Replace all "%x" instances in format strings
3974 into "0x%x" throughout.
3975
3976 2013-05-06 Joel Brobecker <brobecker@adacore.com>
3977
3978 * darwin-nat.c (darwin_mourn_inferior): Replace call to
3979 gdb_assert by call to MACH_CHECK_ERROR.
3980 (darwin_attach_pid): Raise an error rather than a failed
3981 assertion when various system calls failed. Report a warning
3982 instead of raising a failed assertion when PREV_NOT is not NULL
3983 after call to mach_port_request_notification.
3984 (darwin_ptrace_me): Raise an error rather than a failed
3985 assertion when read returns nonzero.
3986
3987 2013-05-06 Joel Brobecker <brobecker@adacore.com>
3988
3989 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
3990
3991 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3992
3993 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
3994
3995 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3996
3997 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
3998 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
3999 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
4000 a stale cleanup. Fix double free of NAME.
4001
4002 2013-05-04 Eli Zaretskii <eliz@gnu.org>
4003
4004 * windows-nat.c (windows_delete_thread): Accept an additional
4005 argument, the thread's exit code, and announce thread death when
4006 print_thread_events is non-zero and we are deleting a thread that
4007 is not the main thread.
4008 (get_windows_debug_event): Pass thread exit code to
4009 windows_delete_thread.
4010
4011 2013-05-03 Kevin Buettner <kevinb@redhat.com>
4012
4013 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
4014 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
4015 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
4016 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
4017 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
4018 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
4019 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
4020 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
4021 (gdbarch_tdep): New struct.
4022 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
4023 E_NUM_REGS.
4024 (v850e3v5_register_name): New function.
4025 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
4026 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
4027 code handling the struct return conventions for the RH850 ABI.
4028 Update all callers.
4029 (v850_eight_byte_align_p): New function.
4030 (v850_push_call_dummy): Push structs by value, not by reference
4031 for the RH850 ABI. Add support for eight byte alignment.
4032 (v850_dbtrap_breakpoint_from_pc): New function.
4033 (v850_gdbarch_init): Add ABI detection code. Register
4034 v850e3v5_register_name for the v850e3v5 architecture. Set the
4035 number of registers for v850e3v5. Register
4036 v850_dbtrap_breakpoint_from_pc as appropriate.
4037 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
4038
4039 2013-05-03 Doug Evans <dje@google.com>
4040
4041 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
4042 of bfd_count_sections.
4043 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
4044 * symfile.c (default_symfile_offsets): Ditto.
4045 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
4046 one entry, not bfd_count_sections entries.
4047
4048 2013-05-03 Kevin Buettner <kevinb@redhat.com>
4049
4050 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
4051 `save' and `restore' register groups. Don't include SPL
4052 or SPH in these groups.
4053 (rl78_dwarf_reg_to_regnum): Adjust mapping for
4054 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
4055 RL78_ES_REGNUM, and RL78_CS_REGNUM.
4056 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
4057 dwarf2_append_unwinders().
4058
4059 2013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4060
4061 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
4062 ignore SIGINT and SIGTRAP in case these internal signals are
4063 caught explicitely.
4064
4065 2013-05-01 Joel Brobecker <brobecker@adacore.com>
4066
4067 * darwin-nat.c (darwin_read_write_inferior): Change types
4068 of parameters rdaddr and wraddr to "gdb_byte *". Change type
4069 of copy_count to "mach_msg_type_number_t".
4070 (darwin_read_dyld_info): Change type of parameter
4071 rdaddr to "gdb_byte *".
4072
4073 2013-05-01 Joel Brobecker <brobecker@adacore.com>
4074
4075 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
4076 of &info->load_map from "char *" to "gdb_byte *".
4077
4078 2013-05-01 Joel Brobecker <brobecker@adacore.com>
4079
4080 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
4081 from "char *" to "gdb_byte *".
4082 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
4083
4084 2013-04-30 Doug Evans <dje@google.com>
4085
4086 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
4087 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
4088 DWO stub. If DWO isn't found, just use stub.
4089 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
4090
4091 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
4092 calling init_cutu_and_read_dies.
4093
4094 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
4095
4096 * target-descriptions.c (maint_print_c_tdesc_cmd):
4097 Add case to parse structures as register types and
4098 bitfields.
4099
4100 2013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
4101
4102 * MAINTAINERS (Write After Approval): Add myself to the list.
4103
4104 2013-04-30 Joel Brobecker <brobecker@adacore.com>
4105
4106 * sol-thread.c (rw_common): Change type of parameter "buf"
4107 to "gdb_byte *".
4108 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
4109 rw_common to "gdb_byte *" instead of "char *".
4110
4111 2013-04-30 Joel Brobecker <brobecker@adacore.com>
4112
4113 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
4114 of local variable msym to const struct bound_minimal_symbol.
4115 Adjust use accordingly.
4116 [ti.ti_state == TD_THR_SLEEP]: Likewise.
4117
4118 2013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
4119
4120 * i386gnu-nat.c (CREG_OFFSET): New macro.
4121 (creg_offset): New array.
4122 (CREG_ADDR): Use creg_offset instead of reg_offset.
4123
4124 2013-04-30 Joel Brobecker <brobecker@adacore.com>
4125
4126 * mep-tdep.c (mep_write_pc): Delete.
4127 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
4128 Add call to set_gdbarch_pc_regnum.
4129
4130 2013-04-30 Joel Brobecker <brobecker@adacore.com>
4131
4132 * common/filestuff.c: Replace #include <dirent.h> by
4133 #include "gdb_dirent.h".
4134
4135 2013-04-30 Joel Brobecker <brobecker@adacore.com>
4136
4137 * common/filestuff.c: Replace #include <sys/stat.h> by
4138 #include "gdb_stat.h".
4139
4140 2013-04-29 Pierre Muller <muller@sourceware.org>
4141
4142 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
4143 editCase function rule.
4144 (get_DW_AT_signature_type): Likewise.
4145
4146 2013-04-29 Joel Brobecker <brobecker@adacore.com>
4147
4148 * m32r-tdep.c (m32r_write_pc): Delete.
4149 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
4150 Add call to set_gdbarch_pc_regnum.
4151
4152 2013-04-29 Pierre Muller <muller@sourceware.org>
4153
4154 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
4155
4156 2013-04-29 Joel Brobecker <brobecker@adacore.com>
4157
4158 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
4159
4160 2013-04-28 Yao Qi <yao@codesourcery.com>
4161
4162 * solib-dsbt.c (fetch_loadmap): Re-indent.
4163 (displacement_from_map, enable_break2): Likewise.
4164 (dsbt_relocate_section_addresses): Likewise.
4165
4166 2013-04-26 Joel Brobecker <brobecker@adacore.com>
4167
4168 GDB 7.6 released.
4169
4170 2013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
4171
4172 PR corefiles/14983:
4173 * dwarf2read.c (process_full_comp_unit): Always create a static
4174 block.
4175
4176 2013-04-25 Hui Zhu <hui@codesourcery.com>
4177
4178 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
4179 to loc->cmd_bytecode.
4180
4181 2013-04-24 Doug Evans <dje@google.com>
4182
4183 * dwarf2read.c (setup_type_unit_groups): Fix comment.
4184
4185 2013-04-22 Keith Seitz <keiths@redhat.com>
4186
4187 * tracepoint.c (trace_save): Call the writer's start method.
4188
4189 2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
4190
4191 PR gdb/10462
4192 * cli/cli-decode.c (lookup_command): Show an error if there is no space
4193 before argument.
4194
4195 2013-04-23 Tom Tromey <tromey@redhat.com>
4196
4197 * common/filestuff.c: Check USE_WIN32API before including
4198 sys/socket.h.
4199 (HAVE_F_GETFD): New define.
4200 (mark_cloexec): Check HAVE_F_GETFD.
4201 (gdb_open_cloexec): Change 'mode' to unsigned long.
4202 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
4203 (gdb_pipe_cloexec): Check HAVE_PIPE.
4204 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
4205 long.
4206
4207 2013-04-23 Hui Zhu <hui@codesourcery.com>
4208
4209 PR gdb/15293
4210 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
4211
4212 2013-04-23 Hui Zhu <hui@codesourcery.com>
4213
4214 PR gdb/15165
4215 * breakpoint.c (dprintf_print_recreate): New.
4216 (save_breakpoints): Let it not save dprintf commands.
4217 (initialize_breakpoint_ops): Set dprintf_print_recreate.
4218
4219 2013-04-22 Tom Tromey <tromey@redhat.com>
4220
4221 PR gdb/7912:
4222 * Makefile.in (SFILES): Add filestuff.c
4223 (COMMON_OBS): Add filestuff.o.
4224 (filestuff.o): New target.
4225 * auto-load.c (auto_load_objfile_script_1): Use
4226 gdb_fopen_cloexec.
4227 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
4228 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
4229 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
4230 * common/agent.c (gdb_connect_sync_socket): Use
4231 gdb_socket_cloexec.
4232 * common/filestuff.c: New file.
4233 * common/filestuff.h: New file.
4234 * common/linux-osdata.c (linux_common_core_of_thread)
4235 (command_from_pid, commandline_from_pid, print_source_lines)
4236 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
4237 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
4238 gdb_fopen_cloexec.
4239 * common/linux-procfs.c (linux_proc_get_int)
4240 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
4241 * config.in, configure: Rebuild.
4242 * configure.ac: Don't check for sys/socket.h. Check for
4243 fdwalk, pipe2.
4244 * corelow.c (core_open): Use gdb_open_cloexec.
4245 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
4246 * fork-child.c (fork_inferior): Call close_most_fds.
4247 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
4248 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
4249 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
4250 Use gdb_fopen_cloexec.
4251 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
4252 gdb_open_cloexec.
4253 (linux_async_pipe): Use gdb_pipe_cloexec.
4254 * remote-fileio.c (remote_fileio_func_open): Use
4255 gdb_open_cloexec.
4256 * remote.c (remote_file_put, remote_file_get): Use
4257 gdb_fopen_cloexec.
4258 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
4259 close_most_fds.
4260 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
4261 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
4262 * solib.c (solib_find): Use gdb_open_cloexec.
4263 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
4264 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
4265 (tfile_open): Use gdb_open_cloexec.
4266 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
4267 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
4268 * xml-support.c (xml_fetch_content_from_file): Use
4269 gdb_fopen_cloexec.
4270 * main.c (captured_main): Call notice_open_fds.
4271
4272 2013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
4273
4274 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
4275 'char *' to 'gdb_byte *'.
4276 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
4277 'gdb_byte'.
4278
4279 2013-04-22 Yao Qi <yao@codesourcery.com>
4280
4281 * infrun.c: Fix typo in comment.
4282
4283 2013-04-22 Andrew Haley <aph@redhat.com>
4284
4285 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
4286 instead of "long".
4287
4288 2013-04-20 Yao Qi <yao@codesourcery.com>
4289
4290 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
4291 'char *' to 'gdb_byte *'. Cast the return value of
4292 'bt_ctf_get_char_array' to 'gdb_byte *'.
4293
4294 2013-04-19 Pedro Alves <palves@redhat.com>
4295
4296 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
4297 -Wpointer-sign.
4298 * configure: Regenerate.
4299
4300 2013-04-19 Pedro Alves <palves@redhat.com>
4301
4302 * ser-tcp.c (net_read_prim): Cast second argument to recv to
4303 'void *'.
4304
4305 2013-04-19 Pedro Alves <palves@redhat.com>
4306
4307 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
4308 Change type of 'myaddr' parameter to gdb_byte pointer.
4309 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
4310 to 'long long' pointer instead of to 'unsigned long long'.
4311 (monitor_write_memory_block, monitor_read_memory_single)
4312 (monitor_read_memory): Change type of 'myaddr' parameter to
4313 gdb_byte pointer.
4314
4315 2013-04-19 Pedro Alves <palves@redhat.com>
4316
4317 * record.c (validate_history_size): Make parameter 'setting'
4318 unsigned.
4319
4320 2013-04-19 Pedro Alves <palves@redhat.com>
4321
4322 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
4323 to 'gdb_byte *'.
4324
4325 2013-04-19 Pedro Alves <palves@redhat.com>
4326
4327 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
4328 local to int.
4329
4330 2013-04-19 Pedro Alves <palves@redhat.com>
4331
4332 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
4333 * ada-tasks.c (read_fat_string_value): Likewise.
4334
4335 2013-04-19 Pedro Alves <palves@redhat.com>
4336
4337 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
4338 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
4339 'offset', and adjust.
4340
4341 2013-04-19 Pedro Alves <palves@redhat.com>
4342
4343 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
4344 (read_index_from_section): Add cast to 'char *'.
4345
4346 2013-04-19 Pedro Alves <palves@redhat.com>
4347
4348 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
4349
4350 2013-04-19 Pedro Alves <palves@redhat.com>
4351
4352 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
4353
4354 2013-04-19 Pedro Alves <palves@redhat.com>
4355
4356 * record-full.c (record_full_get_bookmark): Change local 'ret'
4357 type to char * and add cast to gdb_byte *.
4358 (record_full_goto_bookmark): Handle 'bookmark' argument as a
4359 string.
4360 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
4361
4362 2013-04-19 Pedro Alves <palves@redhat.com>
4363
4364 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
4365 * python/py-prettyprint.c (print_string_repr): Change type of
4366 'output' local to char *. Add cast to gdb_byte * in
4367 LA_PRINT_STRING call.
4368 (print_children): Change type of 'output' local to char *.
4369 * python/py-value.c (valpy_string): Add cast to const char * in
4370 PyUnicode_Decode call.
4371
4372 2013-04-19 Pedro Alves <palves@redhat.com>
4373
4374 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
4375 and change its type to 'const char *'. Adjust.
4376 (mips_send_packet): Add cast to 'char *', and remove cast to
4377 'unsigned char *'.
4378 (mips_receive_packet): Remove cast to 'unsigned char *'.
4379 (mips_load_srec): Use bfd_byte.
4380 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
4381 (pmon_checkset): Make 'value' parameter unsigned.
4382
4383 2013-04-19 Pedro Alves <palves@redhat.com>
4384
4385 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
4386
4387 2013-04-19 Pedro Alves <palves@redhat.com>
4388
4389 * remote.c (remote_write_bytes_aux, compare_sections_command)
4390 (remote_read_qxfer)
4391 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
4392 (remote_hostio_readlink, remote_bfd_iovec_pread)
4393 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
4394 binary buffer, and char when buffer is used as string.
4395 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
4396 (trace_save, tfile_open, traceframe_walk_blocks)
4397 (tfile_fetch_registers): Likewise.
4398
4399 2013-04-19 Pedro Alves <palves@redhat.com>
4400
4401 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
4402 buffer and size_t size. Adjust.
4403 * ser-base.h (ser_base_write): Adjust.
4404 * ser-go32.c (cnts): Change type to size_t.
4405 (dos_write): Change prototype -- take 'void *'
4406 buffer and size_t size. Adjust.
4407 (dos_info): Print elements of 'cnts' as unsigned long.
4408 * serial.c (serial_write): Likewise.
4409 * serial.h (serial_write): Adjust.
4410 (struct serial_ops) <write>: Change prototype -- take 'void *'
4411 buffer and size_t size. Adjust.
4412
4413 2013-04-19 Pedro Alves <palves@redhat.com>
4414
4415 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
4416 gdb_byte *.
4417 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
4418
4419 2013-04-19 Pedro Alves <palves@redhat.com>
4420
4421 * alpha-tdep.c (alpha_extract_return_value): Use
4422 regcache_cooked_read_unsigned to read 'v0'.
4423
4424 2013-04-19 Pedro Alves <palves@redhat.com>
4425
4426 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
4427 parameters 'at', 'as' and 'offset' to uint32_t.
4428
4429 2013-04-19 Pedro Alves <palves@redhat.com>
4430
4431 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
4432 'is64' to signed 'int'.
4433
4434 2013-04-19 Pedro Alves <palves@redhat.com>
4435
4436 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
4437 parameter to int *.
4438
4439 2013-04-19 Pedro Alves <palves@redhat.com>
4440
4441 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
4442 'insnbuf' buffer type to unsigned int[].
4443
4444 2013-04-19 Pedro Alves <palves@redhat.com>
4445
4446 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
4447
4448 2013-04-19 Pedro Alves <palves@redhat.com>
4449
4450 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
4451 unsigned long *.
4452
4453 2013-04-19 Pedro Alves <palves@redhat.com>
4454
4455 * alpha-tdep.c (heuristic_fence_post): Change type to int.
4456 (alpha_heuristic_proc_start): Adjust to check -1 instead of
4457 UINT_MAX.
4458 * mips-tdep.c (heuristic_fence_post): Change type to int.
4459 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
4460
4461 2013-04-19 Pedro Alves <palves@redhat.com>
4462
4463 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
4464 (struct gdbarch_tdep) <cris_version>: Make unsigned.
4465 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
4466
4467 2013-04-19 Pedro Alves <palves@redhat.com>
4468
4469 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
4470 it to get a string view of the byte buffer.
4471 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
4472 type to gdb_byte *. Adjust.
4473 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
4474 Change local to char *.
4475 * solib-darwin.c (find_program_interpreter): Change return type to
4476 char *. Adjust.
4477 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
4478 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
4479 * solib-frv.c (enable_break2): Change local 'buf' to char *.
4480 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
4481 * solib-svr4.c (find_program_interpreter): Change return type to
4482 char *. Adjust.
4483 (enable_break): Change local 'interp_name' to char *.
4484 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
4485 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
4486 (spu_pseudo_register_write_spu): Use char for string buffer.
4487 Adjust.
4488 (info_spu_event_command, info_spu_signal_command): Add casts to
4489 'char *'.
4490
4491 2013-04-19 Pedro Alves <palves@redhat.com>
4492
4493 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
4494 gdb_byte[].
4495 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
4496 * ada-lang.c (ada_value_assign): Use gdb_byte.
4497 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
4498 (alphanbsd_sigtramp_offset): Use gdb_byte.
4499 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
4500 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
4501 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
4502 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
4503 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
4504 * arm-tdep.c (arm_stub_unwind_sniffer)
4505 (arm_displaced_init_closure): Use gdb_byte.
4506 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
4507 (arm_default_thumb_le_breakpoint)
4508 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
4509 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
4510 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
4511 * arm-wince-tdep.c (arm_wince_le_breakpoint)
4512 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
4513 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
4514 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
4515 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
4516 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
4517 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
4518 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
4519 (cris_store_return_value, cris_extract_return_value): Use
4520 gdb_byte.
4521 (constraint): Change type of parameter to char * from signed
4522 char*. Use gdb_byte.
4523 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
4524 of local buffer to gdb_byte *.
4525 * dwarf2read.c (read_index_from_section): Use gdb_byte.
4526 (create_dwp_hash_table): Change type of locals to gdb_byte *.
4527 (add_address_entry): Change type of local buffer to gdb_byte[].
4528 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
4529 (frv_push_dummy_call): Use gdb_byte.
4530 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
4531 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
4532 (hppa_hpux_supply_save_state): Use gdb_byte.
4533 * hppa-tdep.c (hppa32_push_dummy_call)
4534 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
4535 * ia64-tdep.c (extract_bit_field, replace_bit_field)
4536 (slotN_contents, replace_slotN_contents): Change type of parameter
4537 to gdb_byte *.
4538 (fetch_instruction, ia64_pseudo_register_write)
4539 (ia64_register_to_value, ia64_value_to_register)
4540 (ia64_extract_return_value, ia64_store_return_value)
4541 (ia64_push_dummy_call): Use gdb_byte.
4542 * m32c-tdep.c (m32c_return_value): Remove cast.
4543 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
4544 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
4545 gdb_byte.
4546 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
4547 * mn10300-tdep.c (mn10300_store_return_value)
4548 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
4549 gdb_byte.
4550 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
4551 (moxie_process_record): Remove casts.
4552 * ppc-ravenscar-thread.c (supply_register_at_address)
4553 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
4554 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
4555 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
4556 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
4557 * remote.c (compare_sections_command): Use gdb_byte.
4558 * score-tdep.c (score7_free_memblock): Change type of parameter to
4559 gdb_byte *.
4560 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
4561 gdb_byte *. Use gdb_byte.
4562 (sh_push_dummy_call_fpu): Use gdb_byte.
4563 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
4564 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
4565 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
4566 Change parameter type to 'gdb_byte *'. Use gdb_byte.
4567 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
4568 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
4569 (sh64_store_return_value, sh64_register_convert_to_virtual):
4570 Change parameter type to 'gdb_byte *'. Use gdb_byte.
4571 (sh64_pseudo_register_write): Use gdb_byte.
4572 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
4573 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
4574 buffer.
4575 (irix_current_sos): Use gdb_byte.
4576 * solib-som.c (som_current_sos): Use gdb_byte.
4577 * sparc-ravenscar-thread.c (supply_register_at_address)
4578 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
4579 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
4580 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
4581 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
4582 'gdb_byte *'.
4583 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
4584 'gdb_byte *'.
4585 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
4586 * xstormy16-tdep.c (xstormy16_extract_return_value)
4587 (xstormy16_store_return_value): Change parameter type to
4588 'gdb_byte *'. Adjust.
4589 (xstormy16_push_dummy_call): Use gdb_byte.
4590 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
4591 (call0_analyze_prologue, execute_code): Use gdb_byte.
4592
4593 2013-04-19 Vladimir Kargov <kargov@gmail.com>
4594 Pedro Alves <palves@redhat.com>
4595
4596 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
4597 value contents.
4598
4599 2013-04-17 Doug Evans <dje@google.com>
4600
4601 * dwarf2read.c (struct signatured_type): New member type.
4602 (struct attribute): Replace member signatured_type with signature.
4603 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
4604 (read_call_site_scope): Call follow_die_ref instead of
4605 follow_die_ref_or_sig.
4606 (read_structure_type): Rewrite handling of signatured types.
4607 (read_enumeration_type): Ditto.
4608 (read_attribute_value): Update.
4609 (build_error_marker_type): New function.
4610 (lookup_die_type): Add assert. Rewrite handling of signatured types.
4611 Don't call error for bad types, just build an error marker type.
4612 (dump_die_shallow): Update.
4613 (follow_die_sig_1): Renamed from follow_die_sig.
4614 Don't call error for bad types, instead return NULL.
4615 (follow_die_sig): New function.
4616 (get_signatured_type, get_DW_AT_signature_type): New functions.
4617
4618 2013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
4619
4620 * aarch64-tdep.c (aarch64_write_pc): Removed.
4621 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
4622 function.
4623
4624 2013-04-17 Yao Qi <yao@codesourcery.com>
4625
4626 * top.c (print_gdb_configuration): Print configure-time
4627 parameter on using libbabeltrace or not.
4628
4629 2013-04-16 Pedro Alves <palves@redhat.com>
4630
4631 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
4632
4633 2013-04-16 Pedro Alves <palves@redhat.com>
4634
4635 * common/glibc_thread_db.h: Update from upstream glibc
4636 (git 568035b7874a099087b77f7bba3e36a1173787b0).
4637
4638 2013-04-16 Pedro Alves <palves@redhat.com>
4639
4640 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
4641 * common/glibc_thread_db.h: ... this new file ...
4642 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
4643
4644 2013-04-16 Will Newton <will.newton@gmail.com>
4645 Pedro Alves <palves@redhat.com>
4646
4647 PR build/11881
4648
4649 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
4650 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
4651 HAVE_THREAD_DB_H.
4652
4653 2013-04-16 Pedro Alves <palves@redhat.com>
4654 Eli Zaretskii <eliz@gnu.org>
4655
4656 * NEWS: Mention "set foo unlimited".
4657
4658 2013-04-15 Doug Evans <dje@google.com>
4659
4660 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
4661 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
4662 (create_dwo_cu_reader): Renamed from
4663 create_dwo_debug_info_hash_table_reader.
4664 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
4665 Remove support for multiple CUs in a DWO file.
4666 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
4667
4668 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
4669 instead of phex.
4670 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
4671 (create_dwo_in_dwp): Ditto.
4672
4673 2013-04-15 Tom Tromey <tromey@redhat.com>
4674
4675 * NEWS: Move recent entries into "since 7.6" section.
4676
4677 2013-04-15 Tom Tromey <tromey@redhat.com>
4678
4679 PR c++/13588:
4680 * NEWS: Update.
4681 * break-catch-throw.c (struct exception_catchpoint)
4682 <exception_rx, pattern>: New fields.
4683 (fetch_probe_arguments, dtor_exception_catchpoint)
4684 (check_status_exception_catchpoint)
4685 (print_one_detail_exception_catchpoint): New functions.
4686 (handle_gnu_v3_exceptions): Add "except_rx" argument.
4687 Compile regular expression if needed.
4688 (extract_exception_regexp): New function.
4689 (catch_exception_command_1): Use extract_exception_regexp.
4690 (compute_exception): Use fetch_probe_arguments.
4691 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
4692 and check_status fields.
4693 * cp-abi.c (cplus_typename_from_type_info): New function.
4694 * cp-abi.h (cplus_typename_from_type_info): Declare.
4695 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
4696 * gdb_regex.h (compile_rx_or_error): Declare.
4697 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
4698 comment.
4699 (init_gnuv3_ops): Set get_type_from_type_info field.
4700 * probe.c (compile_rx_or_error): Move...
4701 * utils.c (compile_rx_or_error): ... here.
4702
4703 2013-04-15 Tom Tromey <tromey@redhat.com>
4704
4705 PR c++/15176:
4706 * NEWS: Update.
4707 * break-catch-throw.c (compute_exception): New function.
4708 (exception_funcs): New global.
4709 (_initialize_break_catch_throw): Create $_exception.
4710 * cp-abi.c (cplus_type_from_type_info): New function.
4711 * cp-abi.h (cplus_type_from_type_info): Declare.
4712 (struct cp_abi_ops) <get_type_from_type_info>: New field.
4713 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
4714 (gnuv3_get_type_from_type_info): New functions.
4715 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
4716
4717 2013-04-15 Tom Tromey <tromey@redhat.com>
4718
4719 * break-catch-throw.c (struct exception_names): New.
4720 (exception_functions): Change type.
4721 (re_set_exception_catchpoint): Look for SDT probes.
4722
4723 2013-04-15 Tom Tromey <tromey@redhat.com>
4724
4725 PR c++/10119:
4726 * break-catch-throw.c (exception_functions): New global.
4727 (gnu_v3_exception_catchpoint_ops): Move earlier.
4728 (struct exception_catchpoint): New.
4729 (classify_exception_breakpoint): Rewrite.
4730 (re_set_exception_catchpoint): New function.
4731 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
4732 Allocate a struct exception_catchpoint.
4733 (catch_exception_command_1): Update.
4734 (initialize_throw_catchpoint_ops): Set 're_set' method.
4735
4736 2013-04-15 Tom Tromey <tromey@redhat.com>
4737
4738 * Makefile.in (SFILES): Add break-catch-throw.c
4739 (COMMON_OBS): Add break-catch-throw.o.
4740 * break-catch-throw.c: New file.
4741 * breakpoint.c: Move exception-catching code to new file.
4742 (ep_parse_optional_if_clause): No longer static.
4743 * breakpoint.h (ep_parse_optional_if_clause): Declare.
4744
4745 2013-04-15 Tom Tromey <tromey@redhat.com>
4746
4747 PR c++/9065:
4748 * NEWS: Update.
4749 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
4750 * c-exp.y (TYPEID): New token.
4751 (exp): Add new TYPEID productions.
4752 (ident_tokens): Add "typeid".
4753 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
4754 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
4755 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
4756 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
4757 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
4758 case.
4759 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
4760 (build_std_type_info_type, gnuv3_get_typeid_type)
4761 (gnuv3_get_typeid): New functions.
4762 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
4763 new fields on ABI object.
4764 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
4765 * std-operator.def (OP_TYPEID): New.
4766
4767 2013-04-15 Tom Tromey <tromey@redhat.com>
4768
4769 * elfread.c (elf_symtab_read): Install versioned symbol under
4770 unversioned name as well.
4771
4772 2013-04-15 Tom Tromey <tromey@redhat.com>
4773
4774 PR c++/11990:
4775 * c-lang.c (cplus_language_defn): Use gdb_demangle.
4776 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
4777 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
4778 (gdb_demangle): New function.
4779 * cp-support.h (gdb_demangle): Declare.
4780 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
4781 (dwarf2_name): Use gdb_demangle.
4782 * gdbtypes.c (check_stub_method): Use gdb_demangle.
4783 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
4784 suffixes from name.
4785 (gnuv3_print_method_ptr): Use gdb_demangle.
4786 * jv-lang.c (java_demangle): Use gdb_demangle.
4787 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
4788 * language.c (unk_lang_demangle): Use gdb_demangle.
4789 * symtab.c (symbol_find_demangled_name)
4790 (demangle_for_lookup): Use gdb_demangle.
4791
4792 2013-04-15 Tom Tromey <tromey@redhat.com>
4793
4794 PR c++/12824:
4795 * NEWS: Update.
4796 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
4797 New constant.
4798 (classify_exception_breakpoint): New function.
4799 (print_it_exception_catchpoint, print_one_exception_catchpoint)
4800 (print_mention_exception_catchpoint)
4801 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
4802 (catch_exception_command_1): Handle "rethrow" catchpoint.
4803 (catch_rethrow_command): New function.
4804 (_initialize_breakpoint): Add "catch rethrow" command.
4805
4806 2013-04-15 Pierre Muller <muller@sourceware.org>
4807
4808 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
4809 set_gdbarch_write_pc as deprecated anymore.
4810
4811 2013-04-15 Joel Brobecker <brobecker@adacore.com>
4812
4813 * spu-tdep.c (spu_write_pc): Add empty line after local variable
4814 declarations.
4815
4816 2013-04-13 Yao Qi <yao@codesourcery.com>
4817
4818 * ctf.c (_initialize_ctf): Include "completer.h".
4819 Call add_target_with_completer instead of add_target.
4820
4821 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
4822
4823 Fix GDB regression related to PR binutils/14813.
4824 * jit.c (mem_bfd_iovec_close): Return 0 for success.
4825 * minidebug.c (lzma_close): Add return value comment.
4826 * remote.c (remote_bfd_iovec_close): Return 0 for success.
4827 * solib-spu.c (spu_bfd_iovec_close): Likewise.
4828 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
4829
4830 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
4831
4832 * config.in: Regenerate.
4833
4834 2013-04-12 Tom Tromey <tromey@redhat.com>
4835
4836 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
4837 const.
4838 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
4839 (struct die_reader_specs) <buffer>: Likewise.
4840 (die_reader_func_ftype): Make 'info_ptr' const.
4841 (struct line_header) <include_dirs, statement_program_start,
4842 statement_program_end>: Now const.
4843 (struct file_entry) <name>: Likewise.
4844 (struct partial_die_info) <sibling>: Likewise.
4845 (struct dwarf_block) <data>: Likewise.
4846 (dwarf2_read_section): Remove cast.
4847 (dwarf2_get_section_info): Make 'bufp' const.
4848 (read_index_from_section): Constify.
4849 (dw2_get_file_names_reader): Make 'info_ptr' const.
4850 (dw2_get_primary_filename_reader): Likewise.
4851 (read_comp_unit_head): Make 'info_ptr' and return type const.
4852 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
4853 Likewise.
4854 (read_abbrev_offset): Constify.
4855 (dwarf2_create_include_psymtab): Make 'name' const.
4856 (create_debug_types_hash_table): Update.
4857 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
4858 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
4859 Constify.
4860 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
4861 (load_partial_comp_unit_reader): Make 'info_ptr' const.
4862 (read_comp_units_from_section): Constify.
4863 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
4864 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
4865 const.
4866 (dwarf2_compute_name, setup_type_unit_groups): Constify.
4867 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
4868 (create_dwp_hash_table, dwarf2_ranges_read)
4869 (dwarf2_record_block_ranges): Constify.
4870 (read_die_and_children, read_die_and_siblings_1)
4871 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
4872 const.
4873 (read_full_die_1, read_full_die): Make 'info_ptr' const.
4874 (abbrev_table_read_table): Constify.
4875 (load_partial_dies): Make 'info_ptr' const.
4876 (read_partial_die, read_attribute_value, read_attribute): Make
4877 'info_ptr' and return type const.
4878 (read_address, read_initial_length)
4879 (read_checked_initial_length_and_offset, read_offset)
4880 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
4881 const.
4882 (read_direct_string): Make 'buf' and return type const.
4883 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
4884 (read_indirect_string): Make return type const.
4885 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
4886 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
4887 'info_ptr' const.
4888 (read_str_index): Make return type const.
4889 (add_include_dir): Make 'include_dir' const.
4890 (add_file_name): Make 'name' const.
4891 (dwarf_decode_line_header): Constify.
4892 (psymtab_include_file_name): Make return type const.
4893 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
4894 (dwarf2_start_subfile): Make 'filename' const.
4895 (dwarf2_const_value_attr): Make 'bytes' const.
4896 (read_signatured_type_reader): Make 'info_ptr' const.
4897 (decode_locdesc): Constify.
4898 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
4899 const.
4900 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
4901 'mac_end', and return type const.
4902 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
4903 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
4904 type const.
4905 (per_cu_header_read_in): Constify.
4906 * symfile.h (dwarf2_get_section_info): Update.
4907
4908 2013-04-12 Tom Tromey <tromey@redhat.com>
4909
4910 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
4911
4912 2013-04-12 Eli Zaretskii <eliz@gnu.org>
4913
4914 * NEWS: Mention "show configuration", --configuration.
4915 * top.c (print_gdb_configuration): New function, displays the
4916 details about GDB configure-time parameters.
4917 (print_gdb_version): Mention "show configuration".
4918 * cli/cli-cmds.c (show_configuration): New function.
4919 (_initialize_cli_cmds): Add the "show configuration" command.
4920 * main.c (captured_main) <print_configuration>: New static var.
4921 <long_options>: Use it.
4922 If --configuration was given, call print_gdb_configuration.
4923
4924 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4925 Pedro Alves <palves@redhat.com>
4926
4927 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
4928 (generated_files): Add gcore.
4929 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
4930 HAVE_NATIVE_GCORE_HOST.
4931 (gcore): New.
4932 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
4933 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
4934 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
4935 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
4936 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
4937 Add HAVE_NATIVE_GCORE_HOST.
4938 * configure: Regenerate.
4939 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
4940 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
4941 AC_CONFIG_FILES for gcore.
4942 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
4943 gdb_have_gcore.
4944 * gdb_gcore.sh: Rename to ...
4945 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
4946 and GCORE_TRANSFORM_NAME substitutions.
4947
4948 Fix parsing tabs in ${gdb_target_obs}.
4949 * configure.tgt (gdb_have_gcore): Replace case with for and if.
4950
4951 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4952
4953 * remote.c (unpush_and_perror): Add output message final dot.
4954
4955 2013-04-11 Yao Qi <yao@codesourcery.com>
4956
4957 * tracepoint.c (tfile_interp_line): Fit parameters line and
4958 utpp in one line.
4959
4960 2013-04-10 Joel Brobecker <brobecker@adacore.com>
4961
4962 * solib.c (solib_map_sections): Remove code overwriting
4963 SO->SO_NAME with the bfd's filename.
4964
4965 2013-04-10 Pedro Alves <palves@redhat.com>
4966
4967 * cli/cli-decode.c (integer_unlimited_completer): New function.
4968 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
4969 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
4970 completer.
4971 * cli/cli-setshow.c: Include "cli/cli-utils.h".
4972 (is_unlimited_literal): New function.
4973 (do_set_command): Handle literal "unlimited" arguments.
4974 * frame.c (_initialize_frame) <set backtrace limit>: Document
4975 "unlimited".
4976 * printcmd.c (_initialize_printcmd) <set print
4977 max-symbolic-offset>: Add help text.
4978 * record-full.c (_initialize_record_full) <set record full
4979 insn-number-max>: Likewise.
4980 * record.c (_initialize_record) <set record
4981 instruction-history-size, set record function-call-history-size>:
4982 Add help text.
4983 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
4984 help text.
4985 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
4986 Likewise.
4987 * source.c (_initialize_source) <set listsize>: Add help text.
4988 * utils.c (initialize_utils) <set height, set width>: Likewise.
4989 <set pagination>: Mention "set height unlimited".
4990 * valprint.c (_initialize_valprint) <set print elements, set print
4991 repeats>: Document "unlimited".
4992
4993 2013-04-10 Pedro Alves <palves@redhat.com>
4994
4995 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
4996 instead of disconnect_tracing.
4997 * infcmd.c (detach_command, disconnect_command): Call
4998 query_if_trace_running. Adjust.
4999 * top.c: Include "tracepoint.h".
5000 (quit_target): Delete. Contents moved ...
5001 (quit_force): ... here. Wrap each stage of teardown in
5002 TRY_CATCH. Call disconnect_tracing before detaching.
5003
5004 2013-04-10 Hui Zhu <hui@codesourcery.com>
5005 Yao Qi <yao@codesourcery.com>
5006
5007 * configure.ac: Check libbabeltrace is installed.
5008 * config.in: Regenerate.
5009 * configure: Regenerate.
5010 * Makefile.in (LIBBABELTRACE): New.
5011 (CLIBS): Add LIBBABELTRACE.
5012 * ctf.c: Include "exec.h".
5013 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
5014 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
5015 (ctf_save_metadata_header): Define new type aliases in
5016 metadata.
5017 (ctf_write_header): Define event type "tsv_def" and "tp_def"
5018 in metadata. Start a new faked packet for trace status.
5019 (ctf_write_status): Write trace status to CTF.
5020 (ctf_write_uploaded_tsv): Write TSV to CTF.
5021 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
5022 (ctf_write_definition_end): End the faked packet.
5023
5024 (ctx, ctf_iter, trace_dirname): New.
5025 (start_pos): New variable.
5026 (ctf_destroy, ctf_open_dir, ctf_open): New.
5027 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
5028 macros.
5029 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
5030 (ctf_fetch_registers, ctf_xfer_partial): New.
5031 (ctf_get_trace_state_variable_value): New.
5032 (ctf_get_tpnum_from_frame_event): New.
5033 (ctf_get_traceframe_address): New.
5034 (ctf_trace_find, ctf_has_stack): New.
5035 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
5036 (ctf_get_trace_status, ctf_read_status): New.
5037 (_initialize_ctf): New.
5038 * tracepoint.c (get_tracepoint_number): New
5039 (get_uploaded_tsv): Remove 'static'.
5040 (struct traceframe_info, trace_regblock_size): Move it to ...
5041 * tracepoint.h: ... here.
5042 (get_tracepoint_number): Declare it.
5043 (get_uploaded_tsv): Declare it.
5044
5045 * NEWS: Mention new configure option.
5046
5047 2013-04-10 Pedro Alves <palves@redhat.com>
5048 Hui Zhu <hui@codesourcery.com>
5049
5050 * breakpoint.c (dprintf_re_set): New.
5051 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
5052 to dprintf_re_set.
5053
5054 2013-04-09 Joel Brobecker <brobecker@adacore.com>
5055
5056 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
5057 Remove solib-svr4.o from the list.
5058
5059 2013-04-09 Joel Brobecker <brobecker@adacore.com>
5060
5061 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
5062 Use gdb_assert_not_reached instead of invalid boolean expression.
5063
5064 2013-04-09 Pedro Alves <palves@redhat.com>
5065
5066 * remote.c (unpush_and_perror): New function.
5067 (readchar, remote_serial_write): Use it.
5068
5069 2013-04-09 Markus Metzger <markus.t.metzger@intel.com>
5070
5071 * NEWS: Mention new btrace RSP packets.
5072
5073 2013-04-08 Tom Tromey <tromey@redhat.com>
5074
5075 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
5076 long.
5077
5078 2013-04-08 Tom Tromey <tromey@redhat.com>
5079
5080 * maint.c (print_bfd_section_info): Print the section index.
5081 * symmisc.c (dump_msymbols): Print the section index.
5082
5083 2013-04-08 Tom Tromey <tromey@redhat.com>
5084
5085 PR symtab/8424:
5086 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
5087 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
5088 * breakpoint.c (resolve_sal_pc): Update.
5089 * elfread.c (elf_gnu_ifunc_record_cache): Update.
5090 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
5091 (minsym_lookup_iterator_cb): Use it.
5092 (default_read_var_value): Update.
5093 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
5094 Update.
5095 * infcmd.c (jump_command): Update.
5096 * linespec.c (minsym_found): Update.
5097 * maint.c (maintenance_translate_address): Update.
5098 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
5099 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
5100 * parse.c (write_exp_msymbol): Update.
5101 * printcmd.c (address_info): Update.
5102 * psymtab.c (find_pc_sect_psymbol): Update.
5103 (fixup_psymbol_section): Check SYMBOL_SECTION, not
5104 SYMBOL_OBJ_SECTION.
5105 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
5106 Don't initialize SYMBOL_OBJ_SECTION.
5107 * spu-tdep.c (spu_catch_start): Update.
5108 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
5109 * symmisc.c (dump_msymbols, print_symbol): Update.
5110 * symtab.c (fixup_section): Don't set 'obj_section'. Change
5111 how fallback section is computed.
5112 (fixup_symbol_section): Update.
5113 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
5114 Update.
5115 (allocate_symbol, initialize_symbol, allocate_template_symbol):
5116 Initialize SYMBOL_SECTION.
5117 * symtab.h (struct general_symbol_info) <section>: Update comment.
5118 <obj_section>: Remove.
5119 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
5120 (SYMBOL_OBJFILE): New macro.
5121
5122 2013-04-08 Tom Tromey <tromey@redhat.com>
5123
5124 * coffread.c (record_minimal_symbol): Update.
5125 * dbxread.c (record_minimal_symbol): Update.
5126 * elfread.c (record_minimal_symbol): Update.
5127 * machoread.c (macho_symtab_add_minsym): Update.
5128 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
5129 Update.
5130 * minsyms.c (prim_record_minimal_symbol): Update.
5131 (prim_record_minimal_symbol_full): Remove 'bfd_section'
5132 argument.
5133 (prim_record_minimal_symbol_and_info): Likewise.
5134 * minsyms.h (prim_record_minimal_symbol_full)
5135 (prim_record_minimal_symbol_and_info): Update.
5136 * symtab.c (allocate_symbol, initialize_symbol)
5137 (allocate_template_symbol): Initialize SYMBOL_SECTION.
5138 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
5139 Update.
5140
5141 2013-04-08 Tom Tromey <tromey@redhat.com>
5142
5143 PR symtab/8423:
5144 * solib-som.c (som_solib_section_offsets): Use BFD section
5145 indices. Set offsets for all sections.
5146 * somread.c (som_symtab_read): Compute BFD section for
5147 symbol. Use prim_record_minimal_symbol_and_info.
5148 (som_symfile_read): Fix comment.
5149 (struct find_section_offset_arg): New.
5150 (find_section_offset, set_section_index): New functions.
5151 (som_symfile_offsets): Use set_section_index to compute
5152 section indices.
5153
5154 2013-04-08 Tom Tromey <tromey@redhat.com>
5155
5156 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
5157 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
5158 gdb_bfd_section_index.
5159 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
5160 New functions.
5161 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
5162 Declare.
5163 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
5164 Update.
5165 * objfiles.c (add_to_objfile_sections_full): New function.
5166 (add_to_objfile_sections): Use it.
5167 (build_section_table): Rewrite.
5168 (objfile_relocate1): Use gdb_bfd_section_index. Update.
5169 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
5170 (struct objfile) <sections>: Update comment.
5171 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
5172 is NULL.
5173 (ALL_OBJSECTIONS): Use it.
5174 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
5175 * solib-frv.c (frv_relocate_main_executable): Update.
5176 * solib-target.c (solib_target_relocate_section_addresses):
5177 Use gdb_bfd_section_index.
5178 * symfile.c (build_section_addr_info_from_section_table):
5179 Use gdb_bfd_section_index.
5180 (build_section_addr_info_from_bfd, place_section): Likewise.
5181 * symtab.c (fixup_section): Update.
5182 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
5183
5184 2013-04-08 Tom Tromey <tromey@redhat.com>
5185
5186 * minsyms.h (struct bound_minimal_symbol): New.
5187 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
5188 Remove objfile argument.
5189 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
5190 Return bound_minimal_symbol.
5191 * minsyms.c (lookup_minimal_symbol_by_pc_1)
5192 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
5193 Return bound_minimal_symbol.
5194 (in_gnu_ifunc_stub): Update.
5195 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
5196 Remove 'objfile_p' argument.
5197 (lookup_solib_trampoline_symbol_by_pc): Update.
5198 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
5199 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
5200 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
5201 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
5202 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
5203 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
5204 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
5205 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
5206 stack.c, symtab.c, tui/tui-disasm.c: Update.
5207
5208 2013-04-08 Tom Tromey <tromey@redhat.com>
5209
5210 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
5211 Use symbol's obstack, not an objfile.
5212 * coffread.c (process_coff_symbol): Update.
5213 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
5214 * jv-lang.c (add_class_symbol): Update.
5215 * mdebugread.c (new_symbol): Update.
5216 * minsyms.c (prim_record_minimal_symbol_full)
5217 (terminate_minimal_symbol_table): Update.
5218 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
5219 * stabsread.c (define_symbol, read_enum_type): Update.
5220 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
5221 Handle Ada specially.
5222 (symbol_set_language): Add 'obstack' argument.
5223 (symbol_set_names): Update.
5224 (symbol_natural_name, symbol_demangled_name): Always use
5225 ada_decode_symbol.
5226 * symtab.h (struct general_symbol_info)
5227 <language_specific::obstack>: New field.
5228 <ada_mangled>: New field.
5229 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
5230 (symbol_set_language): Update.
5231
5232 2013-04-08 Tom Tromey <tromey@redhat.com>
5233
5234 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
5235 Take an obstack, not an objfile.
5236 (symbol_set_names): Update.
5237 * symtab.h (symbol_set_demangled_name): Update.
5238
5239 2013-04-08 Tom Tromey <tromey@redhat.com>
5240
5241 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
5242 allocate_symbol.
5243 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
5244 (read_func_scope): Call allocate_template_symbol.
5245 (new_symbol_full): Call allocate_symbol.
5246 * jit.c (finalize_symtab): Call allocate_symbol.
5247 * jv-lang.c (add_class_symbol): Call allocate_symbol.
5248 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
5249 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
5250 (common_block_end): Call allocate_symbol.
5251 * symtab.c (allocate_symbol, initialize_symbol)
5252 (allocate_template_symbol): New functions.
5253 * symtab.c (allocate_symbol, initialize_symbol)
5254 (allocate_template_symbol): Declare.
5255 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
5256
5257 2013-04-08 Pedro Alves <palves@redhat.com>
5258 Keith Seitz <keiths@redhat.com>
5259
5260 * breakpoint.c (create_breakpoint): Rename
5261 "parse_condition_and_thread" parameter to "parse_arg". Update
5262 describing comment. If !PARSE_ARG, then error out if ARG is not
5263 the empty string after extracting the location.
5264 * breakpoint.h (create_breakpoint): Rename
5265 "parse_condition_and_thread" parameter to "parse_arg".
5266
5267 2013-04-08 Aleksandar Ristovski <aristovski@qnx.com
5268
5269 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
5270
5271 2013-04-07 Yao Qi <yao@codesourcery.com>
5272
5273 * remote.c (remote_trace_find): Change type of parameters 'addr1'
5274 and 'addr2' to CORE_ADDR.
5275 * target.c (update_current_target): Update.
5276 * target.h (struct target_ops) <to_trace_find>: Change parameter
5277 type to CORE_ADDR.
5278 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
5279 'addr2' to CORE_ADDR.
5280 (tfile_trace_find): Likewise.
5281 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
5282 Change local variable 'addr' to type CORE_ADDR.
5283 * tracepoint.h (tfind_1): Update declaration.
5284
5285 2013-04-06 Eli Zaretskii <eliz@gnu.org>
5286
5287 * windows-nat.c (windows_get_absolute_argv0): Move from here...
5288 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
5289 Include main.h.
5290
5291 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
5292 here...
5293 * main.h (windows_get_absolute_argv0): ...to here.
5294
5295 2013-04-05 Doug Evans <dje@google.com>
5296
5297 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
5298 (read_cutu_die_from_dwo): Add comments.
5299 (read_structure_type): Update comment.
5300 (read_enumeration_type, read_namespace_type): Update comment.
5301 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
5302
5303 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5304
5305 Convert man pages to texinfo, new gdbinit.5 texinfo page.
5306 * Makefile.in (gdb.z): Remove.
5307 (install-only): Remove $(man1dir) and gdb.1 installation.
5308 * gdb.1: Remove.
5309
5310 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5311
5312 Fix compatibility with Linux kernel 3.8.3.
5313 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
5314 to more inner block. Remove parsing of NUMBER from outer block.
5315 Parse NUMBER only if KEYWORD has been identified.
5316
5317 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5318
5319 Fix variable name shadowing.
5320 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
5321 filename to mapsfilename and update its uses.
5322
5323 2013-04-05 Eli Zaretskii <eliz@gnu.org>
5324
5325 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
5326 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
5327 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
5328 details of the problem.
5329
5330 2013-04-04 Pedro Alves <palves@redhat.com>
5331 Hui Zhu <hui@codesourcery.com>
5332
5333 * breakpoint.c (validate_commands_for_breakpoint): If validating a
5334 tracepoint, reset its STEP_COUNT and call validate_actionline.
5335
5336 2013-04-03 Doug Evans <dje@google.com>
5337
5338 * dwarf2read.c (read_die_and_siblings_1): Renamed from
5339 read_die_and_siblings.
5340 (read_die_and_siblings): New function.
5341 (read_cutu_die_from_dwo): Dump die if requested.
5342 (read_die_and_children): Call read_full_die_1 and
5343 read_die_and_siblings_1.
5344 (read_full_die): Dump die if requested.
5345
5346 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
5347
5348 * dwarf2read.c (struct dwo_file): New member comp_dir.
5349 Rename member name to dwo_name. All uses updated.
5350 (hash_dwo_file): Include comp_dir in computation.
5351 (eq_dwo_file): Ditto.
5352 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
5353 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
5354
5355 * psymtab.c (read_psymtabs_with_fullname): Don't call
5356 psymtab_to_fullname if the basenames are different.
5357
5358 2013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5359
5360 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
5361 New entry about "fullname" presence.
5362
5363 2013-04-03 Pedro Alves <palves@redhat.com>
5364
5365 * NEWS: Mention x86_64/Cygwin as new native configuration.
5366
5367 2013-04-02 Doug Evans <dje@google.com>
5368
5369 * dwarf2read.c (read_structure_type): Fix typo in comment.
5370
5371 2013-04-02 Pedro Alves <palves@redhat.com>
5372
5373 * NEWS: Mention "set/show debug aarch64", "set/show debug
5374 coff-pe-read" and "set/show debug mach-o".
5375
5376 2013-04-02 Pedro Alves <palves@redhat.com>
5377
5378 * NEWS: Mention "set/show remote trace-buffer-size-packet".
5379
5380 2013-04-02 Eli Zaretskii <eliz@gnu.org>
5381
5382 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
5383 gdb_string.h is now in common/.
5384
5385 2013-04-02 Pedro Alves <palves@redhat.com>
5386
5387 * NEWS: Move "set debug notification" and "set trace-buffer-size"
5388 under "New options".
5389
5390 2013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5391
5392 Revert this patch:
5393 PR gdb/15275
5394 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
5395
5396 2013-04-02 Pedro Alves <palves@redhat.com>
5397
5398 PR gdb/15275
5399
5400 * remote.c (send_interrupt_sequence): Use remote_serial_write.
5401 (remote_serial_write): New function.
5402 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
5403
5404 2013-04-01 Jiong Wang <jiwang@tilera.com>
5405
5406 * NEWS: Mention TILE-Gx in "New native configurations" and
5407 "New targets" sections.
5408
5409 2013-04-01 Doug Evans <dje@google.com>
5410
5411 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
5412 (process_enumeration_scope): Simplify.
5413
5414 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
5415 type_unit_group ...
5416 (struct signatured_type): ... to here.
5417 (sig_type_ptr): New typedef.
5418 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
5419 out of union 't'. All uses updated.
5420 (dw2_get_file_names_reader): Assert not called for a type unit.
5421 (dw2_get_file_names): Assert not called for a type unit or type
5422 unit group.
5423 (build_type_psymtabs_reader): Assert called for a type unit.
5424 (build_type_psymtab_dependencies): Assert called for a type unit group.
5425
5426 * dwarf2read.c (free_dwo_file): Add comment.
5427 (dwarf2_per_objfile_free): Unref dwp bfd.
5428
5429 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
5430
5431 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
5432 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
5433 (read_pe_exported_syms): Remove unused 'exportix'.
5434 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
5435 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
5436 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
5437
5438 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
5439
5440 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
5441 (print_it_watchpoint): Remove unused 'bl'.
5442 (say_where): Remove unused 'uiout'.
5443 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
5444 (bkpt_breakpoint_hit): Remove unused 'b'.
5445 (internal_bkpt_print_it): Remove unused 'uiout'.
5446 * buildsym.c (augment_type_symtab): Remove unused 'i'.
5447
5448 2013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
5449
5450 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
5451 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
5452
5453 2013-03-29 Doug Evans <dje@google.com>
5454
5455 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
5456 Delete arg is_dwp. All callers updated.
5457 (open_dwp_file): New function.
5458 (open_and_init_dwp_file): Call it.
5459 (get_dwp_file): New function.
5460 (lookup_dwo_cutu): Call it.
5461
5462 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
5463 unnecessary, cleanup.
5464
5465 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
5466
5467 * dwarf2read.c (read_cutu_die_from_dwo): New function.
5468 (lookup_dwo_unit): New function.
5469 (init_cutu_and_read_dies): Move DWO handling to new functions.
5470
5471 * dwarf2read.c (struct signatured_type): Tweak comment.
5472 (struct dwo_unit): Tweak comment.
5473 (create_debug_types_hash_table): Tweak comment. Reformat long line.
5474 (create_dwo_debug_info_hash_table): Tweak comment.
5475 (dwarf2_per_cu_offset_and_type): Tweak comment.
5476
5477 * dwarf2read.c (lookup_signatured_type): Remove complaint about
5478 missing .debug_types section.
5479
5480 2013-03-29 Yao Qi <yao@codesourcery.com>
5481
5482 * corelow.c: Include "completer.h".
5483 (_initialize_corelow): Call add_target_with_completer with
5484 argument 'filename_completer'.
5485 * tracepoint.c: Likewise.
5486 * exec.c (_initialize_exec): Likewise.
5487 * target.c (add_target): Rename to ...
5488 (add_target_with_completer): ... this. Call set_cmd_completer
5489 if parameter completer is not NULL.
5490 (add_target): New.
5491 * target.h: Include "command.h".
5492 (add_target_with_completer): Declare it.
5493
5494 2013-03-28 Joel Brobecker <brobecker@adacore.com>
5495
5496 * coffread.c (is_import_fixup_symbol): New function.
5497 (record_minimal_symbol): Use is_import_fixup_symbol to
5498 detect import fixup symbols, and discard them.
5499
5500 2013-03-28 Doug Evans <dje@google.com>
5501
5502 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
5503 types hash table until we know we need it.
5504
5505 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
5506 index numbers.
5507
5508 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
5509 All callers updated.
5510 (dw2_print_stats): Print #read CUs too.
5511 (dump_die_shallow): Print signatured types better.
5512
5513 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
5514 info_or_types_section to section. All uses updated.
5515 (struct dwo_unit): Ditto.
5516
5517 2013-03-28 Pedro Alves <palves@redhat.com>
5518
5519 * NEWS (New options): New section.
5520 (New options): Mention set/show remote trace-status-packet.
5521 * remote.c (PACKET_qTStatus): New enumeration value.
5522 (remote_get_trace_status): Skip sending qTStatus if the packet is
5523 disabled. Use packet_ok.
5524 (_initialize_remote): Register a configuration command for
5525 qTStatus packet.
5526
5527 2013-03-28 Doug Evans <dje@google.com>
5528
5529 * symfile.c (find_separate_debug_file): Add comment.
5530 (terminate_after_last_dir_separator): Tweak comment.
5531
5532 * dwarf2read.c (create_partial_symtab): Add forward decl.
5533 (create_partial_symtab): Move to be closer to other psymtab functions.
5534 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
5535
5536 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
5537 (compute_symtab_includes): Remove unnecessary forward declaration.
5538 (die_needs_namespace): Add comment marking group of functions for
5539 dwarf2 name computation.
5540
5541 * typeprint.c (_initialize_typeprint): Improve type help text.
5542
5543 * python/python.c (finish_python_initialization): Provide suggestion
5544 for how to tell gdb to find its python files.
5545
5546 2013-03-28 Pedro Alves <palves@redhat.com>
5547
5548 PR gdb/15294
5549
5550 * source.c (_initialize_source): Change back "set listsize" to an
5551 integer command.
5552
5553 2013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
5554
5555 PR gdb/15275
5556 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
5557
5558 2013-03-27 Pedro Alves <palves@redhat.com>
5559
5560 * top.c (history_size): Rename to ...
5561 (history_size_setshow_var): ... this. Add comment.
5562 (show_commands): Use readline's 'history_length' instead of
5563 computing the history length by calling history_get in a loop.
5564 (set_history_size_command): Error out for sizes over INT_MAX.
5565 Restore previous history size on invalid size.
5566 (init_history): If HISTSIZE is negative, leave the history size as
5567 zero. Add comments.
5568 (init_main): Adjust.
5569
5570 2013-03-27 Pedro Alves <palves@redhat.com>
5571
5572 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
5573 coff_pe_read" command to "set debug coff-pe-read".
5574
5575 2013-03-27 Markus Metzger <markus.t.metzger@intel.com>
5576
5577 * record.c (command_size_to_target_size): Fix size comparison.
5578 Change parameter type from pointer to integer to integer.
5579 Update all users.
5580
5581 2013-03-27 Pierre Muller <muller@sourceware.org>
5582
5583 * windows-nat.c (handle_output_debug_string): Avoid typecast
5584 from integer of different size warning.
5585
5586 2013-03-26 Joel Brobecker <brobecker@adacore.com>
5587
5588 * windows-nat.c (handle_output_debug_string): Add empty line
5589 after local block variable definition.
5590
5591 2013-03-26 Pedro Alves <palves@redhat.com>
5592
5593 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
5594 (net_open): Make 'polls' local unsigned.
5595
5596 2013-03-26 Pedro Alves <palves@redhat.com>
5597
5598 * remote.c (_initialize_remote): Make "set remoteaddresssize"
5599 a zuinteger command instead of uinteger.
5600
5601 2013-03-26 Pedro Alves <palves@redhat.com>
5602
5603 * record-full.c (record_full_insn_num): Make it unsigned.
5604 (record_full_check_insn_num, record_full_message)
5605 (record_full_registers_change, record_full_xfer_partial): Remove
5606 record_full_insn_max_num check (it's always != 0).
5607 (record_full_info, record_full_restore): Use %u as format string.
5608 (): Use %u as format string.
5609 (set_record_full_insn_max_num): Remove record_full_insn_max_num
5610 check (it's always != 0).
5611
5612 2013-03-26 Pedro Alves <palves@redhat.com>
5613
5614 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
5615 and "set dcache size" commands zuinteger instead of uinteger.
5616
5617 2013-03-26 Pedro Alves <palves@redhat.com>
5618
5619 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
5620 command zuinteger instead of uinteger.
5621
5622 2013-03-26 Pedro Alves <palves@redhat.com>
5623
5624 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
5625 zuinteger instead of uinteger.
5626
5627 2013-03-26 Pedro Alves <palves@redhat.com>
5628
5629 * record.c (record_insn_history_size_setshow_var)
5630 (record_call_history_size_setshow_var): New globals.
5631 (command_size_to_target_size): New function.
5632 (cmd_record_insn_history, cmd_record_call_history): Use
5633 command_size_to_target_size instead of cast.
5634 (validate_history_size, set_record_insn_history_size)
5635 (set_record_call_history_size): New functions.
5636 (_initialize_record): Install set_record_insn_history_size and
5637 set_record_call_history_size as "set" hooks of "set record
5638 instruction-history-size" and "set record
5639 function-call-history-size".
5640
5641 2013-03-26 Pedro Alves <palves@redhat.com>
5642
5643 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
5644 use with history_max_entries use. Remove FIXME note.
5645
5646 2013-03-26 Markus Metzger <markus.t.metzger@intel.com>
5647
5648 * record-btrace.c (record_btrace_close): Call
5649 record_btrace_auto_disable.
5650
5651 2013-03-25 Joel Brobecker <brobecker@adacore.com>
5652
5653 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
5654
5655 2013-03-25 Doug Evans <dje@google.com>
5656
5657 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
5658
5659 2013-03-25 Tom Tromey <tromey@redhat.com>
5660
5661 PR symtab/11462:
5662 * c-exp.y (exp): Add new productions for destructors after '.' and
5663 '->'.
5664 (write_destructor_name): New function.
5665
5666 2013-03-25 Tom Tromey <tromey@redhat.com>
5667
5668 PR c++/9197:
5669 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
5670 value_struct_elt, not lookup_struct_elt_type.
5671 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
5672 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
5673 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
5674
5675 2013-03-25 Yao Qi <yao@codesourcery.com>
5676
5677 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
5678 instead of '_mkdir'.
5679
5680 2013-03-23 Eli Zaretskii <eliz@gnu.org>
5681
5682 * windows-nat.c (windows_get_absolute_argv0): New function.
5683 * windows-nat.h: Add its prototype.
5684
5685 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
5686 Use IS_DIR_SEPARATOR instead of looking for a character inside
5687 SLASH_STRING. Include filenames.h.
5688 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
5689 relocate_gdb_directory works when passed gdb_program_name.
5690 Include windows-nat.h.
5691
5692 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
5693
5694 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
5695 * remote.c (trace_error): Remove the special handling of '2'.
5696 (readchar) <SERIAL_EOF>
5697 (readchar) <SERIAL_ERROR>
5698 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
5699 (remote_get_trace_status): Call throw_exception if EX is
5700 TARGET_CLOSE_ERROR.
5701 * utils.c (perror_with_name): Rename to ...
5702 (throw_perror_with_name): ... here. New parameter errcode, describe it
5703 in the function comment.
5704 (perror_with_name): New function wrapper.
5705 * utils.h (enum errors): New stub declaration.
5706 (throw_perror_with_name): New declaration.
5707
5708 2013-03-22 Pedro Alves <palves@redhat.com>
5709 Yao Qi <yao@codesourcery.com>
5710 Mark Kettenis <kettenis@gnu.org>
5711
5712 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
5713 Don't let the user set the value to UINT_MAX directly.
5714 <var_integer>: Don't let the user set the value to INT_MAX
5715 directly.
5716
5717 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
5718
5719 * remote.c (remote_unpush_target): New function.
5720 (remote_open_1): Remove two pop_target calls, update one comment, add
5721 comment to target_preopen call. Replace pop_target call by
5722 remote_unpush_target call.
5723 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
5724 pop_target calls by remote_unpush_target calls.
5725
5726 2013-03-22 Pedro Alves <palves@redhat.com>
5727
5728 * linux-nat.c (linux_child_follow_fork): Don't call
5729 linux_enable_event_reporting.
5730 (linux_handle_extended_wait): Don't call
5731 linux_enable_event_reporting.
5732
5733 2013-03-22 Pedro Alves <palves@redhat.com>
5734
5735 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
5736 use it to rewrite the trampoline buffers with type gdb_byte[], and
5737 undefine the macro. Remove char* cast.
5738
5739 2013-03-21 Doug Evans <dje@google.com>
5740
5741 New commands "mt set per-command {space,time,symtab} {on,off}".
5742 * NEWS: Add entry.
5743 * event-top.c: #include "maint.h".
5744 * main.c: #include "maint.h".
5745 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
5746 timeval-utils.h, maint.h, cli/cli-setshow.h.
5747 (per_command_time, per_command_space): New static globals.
5748 (per_command_symtab): New static global.
5749 (per_command_setlist, per_command_showlist): New static globals.
5750 (struct cmd_stats): Move here from utils.c.
5751 (set_per_command_time): Renamed from set_display_time in utils.c
5752 and moved here. All callers updated.
5753 (set_per_command_space): Renamed from set_display_space in utils.c
5754 and moved here. All callers updated.
5755 (count_symtabs_and_blocks): New function.
5756 (report_command_stats): Moved here from utils.c. Add support for
5757 printing symtab stats. Only print data if enabled before command
5758 executed.
5759 (make_command_stats_cleanup): Ditto.
5760 (sert_per_command_cmd, show_per_command_cmd): New functions.
5761 (_initialize_maint_cmds): Add new commands
5762 mt set per-command {space,time,symtab} {on,off}.
5763 * maint.h: New file.
5764 * top.c: #include "maint.h".
5765 * utils.c (reset_prompt_for_continue_wait_time): New function.
5766 (get_prompt_for_continue_wait_time): New function.
5767 * utils.h (reset_prompt_for_continue_wait_time): Declare
5768 (get_prompt_for_continue_wait_time): Declare.
5769 (make_command_stats_cleanup): Moved to maint.h.
5770 (set_display_time, set_display_space): Moved to maint.h and renamed
5771 to set_per_command_time, set_per_command_space.
5772 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
5773 parse_binary_operation and made non-static. Don't call error,
5774 just return an error marker. All callers updated.
5775 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
5776
5777 2013-03-21 Tom Tromey <tromey@redhat.com>
5778
5779 * symfile.c (alloc_section_addr_info): Update header. Don't set
5780 'num_sections' field.
5781 (build_section_addr_info_from_section_table): Set 'num_sections'.
5782 (build_section_addr_info_from_bfd): Likewise.
5783 (build_section_addr_info_from_objfile): Remove dead loop
5784 condition.
5785 (free_section_addr_info): Unconditionally call xfree.
5786 (relative_addr_info_to_section_offsets, addrs_section_sort)
5787 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
5788 condition.
5789 (syms_from_objfile_1): Remove dead 'if' condition. Check
5790 'num_sections'.
5791 (add_symbol_file_command): Set 'num_sections'.
5792 * symfile-mem.c (symbol_file_add_from_memory): Set
5793 'num_sections'.
5794 * somread.c (som_symfile_offsets): Remove dead loop condition.
5795 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
5796 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
5797
5798 2013-03-21 Tom Tromey <tromey@redhat.com>
5799
5800 * tracepoint.h (decode_agent_options): Add 'trace_string'
5801 argument.
5802 * tracepoint.c (decode_agent_options): Add 'trace_string'
5803 argument.
5804 (validate_actionline): Update.
5805 (collect_symbol): Add 'trace_string' argument.
5806 (struct add_local_symbols_data) <trace_string>: New field.
5807 (do_collect_symbol): Update.
5808 (add_local_symbols): Add 'trace_string' argument.
5809 (encode_actions_1): Update.
5810 (trace_dump_actions): Update.
5811 * dwarf2loc.c (access_memory): Update.
5812 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
5813 * ax-general.c (new_agent_expr): Update.
5814 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
5815 (gen_trace_for_return_address): Add argument.
5816 (trace_kludge, trace_string_kludge): Remove.
5817 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
5818 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
5819 (gen_trace_for_var): Add 'trace_string' argument.
5820 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
5821 (gen_printf, agent_eval_command_one): Update.
5822
5823 2013-03-21 Tom Tromey <tromey@redhat.com>
5824
5825 PR exp/15109:
5826 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
5827 Handle FILENAME token.
5828
5829 2013-03-21 Tom Tromey <tromey@redhat.com>
5830
5831 * c-exp.y (YYPRINT): Define.
5832 (c_print_token): New function.
5833
5834 2013-03-21 Tom Tromey <tromey@redhat.com>
5835
5836 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
5837
5838 2013-03-21 Yao Qi <yao@codesourcery.com>
5839
5840 * ctf.c: Include "gdb_stat.h".
5841 [USE_WIN32API]: New macro 'mkdir'.
5842 (ctf_start): Use permission bits macros if they are defined.
5843
5844 2013-03-20 Keith Seitz <keiths@redhat.com>
5845
5846 * breakpoint.h (struct breakpoint): Add comment to
5847 extra_string indicating that this member is mallod'd.
5848 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
5849
5850 2013-03-20 Pedro Alves <palves@redhat.com>
5851
5852 PR gdb/15289
5853
5854 * cli/cli-setshow.c (do_set_command)
5855 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
5856 the result of parsing the command argument. Throw error if the
5857 value is greater than UINT_MAX. Print the invalid value with
5858 plongest.
5859 <var_integer, var_zinteger>: Use LONGEST for variable holding the
5860 result of parsing the command argument. Throw error if the value
5861 is greater than INT_MAX, not greater or equal. Also throw error
5862 if the value is less than INT_MIN. Print the invalid value with
5863 plongest.
5864 <var_zuinteger_unlimited>: Throw error if the value is greater
5865 than INT_MAX, not greater or equal.
5866 (do_show_command) <var_integer, var_zinteger,
5867 var_zuinteger_unlimited>: Use %d for printing int, not %u.
5868
5869 2013-03-20 Tom Tromey <tromey@redhat.com>
5870
5871 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
5872 if possible.
5873 * dwarf2read.c (read_func_scope): Remove old FIXME.
5874 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
5875 not LOC_COMPUTED.
5876 * findvar.c (symbol_read_needs_frame, default_read_var_value):
5877 Unconditionally call via computed ops, if possible.
5878 * printcmd.c (address_info): Unconditionally call via computed ops,
5879 if possible.
5880 * stack.c (read_frame_arg): Unconditionally call via computed ops,
5881 if possible.
5882 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
5883 * tracepoint.c (scope_info): Unconditionally call via computed ops,
5884 if possible.
5885
5886 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5887 Tom Tromey <tromey@redhat.com>
5888
5889 PR symtab/8421:
5890 * coffread.c (coff_register_index): New global.
5891 (process_coff_symbol, coff_read_enum_type): Set
5892 SYMBOL_ACLASS_INDEX.
5893 (_initialize_coffread): Initialize new global.
5894 * dwarf2loc.c (locexpr_find_frame_base_location)
5895 (dwarf2_block_frame_base_locexpr_funcs)
5896 (loclist_find_frame_base_location)
5897 (dwarf2_block_frame_base_loclist_funcs): New.
5898 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
5899 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
5900 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
5901 (dwarf2_block_frame_base_loclist_funcs): New.
5902 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
5903 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
5904 globals.
5905 (read_func_scope): Update.
5906 (fixup_go_packaging, mark_common_block_symbol_computed)
5907 (var_decode_location, new_symbol_full, dwarf2_const_value):
5908 Set SYMBOL_ACLASS_INDEX.
5909 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
5910 (_initialize_dwarf2_read): Initialize new globals.
5911 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
5912 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
5913 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
5914 globals.
5915 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
5916 (_initialize_mdebugread): Initialize new globals.
5917 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
5918 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
5919 (stab_register_index, stab_regparm_index): New globals.
5920 (define_symbol, read_enum_type, common_block_end): Set
5921 SYMBOL_ACLASS_INDEX.
5922 (_initialize_stabsread): Initialize new globals.
5923 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
5924 globals.
5925 (MAX_SYMBOL_IMPLS): New define.
5926 (register_symbol_computed_impl, register_symbol_block_impl)
5927 (register_symbol_register_impl)
5928 (initialize_ordinary_address_classes): New functions.
5929 (_initialize_symtab): Call initialize_ordinary_address_classes.
5930 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
5931 (struct symbol_impl): New.
5932 (SYMBOL_ACLASS_BITS): New define.
5933 (struct symbol) <aclass, ops>: Remove fields.
5934 <aclass_index>: New field.
5935 (symbol_impls): Declare.
5936 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
5937 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
5938 (register_symbol_computed_impl, register_symbol_block_impl)
5939 (register_symbol_register_impl): Declare.
5940 (struct symbol_computed_ops): Add location_has_loclist.
5941 (struct symbol_block_ops): New.
5942 (SYMBOL_BLOCK_OPS): New.
5943 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
5944
5945 2013-03-20 Tom Tromey <tromey@redhat.com>
5946
5947 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
5948 (print_partial_symbols, recursively_search_psymtabs): Use
5949 PSYMBOL_CLASS.
5950
5951 2013-03-20 Pierre Muller <muller@sourceware.org>
5952
5953 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
5954 addtion, subtraction, multiplication and division binary operator.
5955
5956 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5957
5958 Code cleanup.
5959 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
5960 * bsd-kvm.c (bsd_kvm_close): Likewise.
5961 * bsd-uthread.c (bsd_uthread_close): Likewise.
5962 * corelow.c (core_close): Likewise.
5963 (core_close_cleanup): Remove parameter quitting from a caller.
5964 * event-top.c (async_disconnect): Likewise.
5965 * exec.c (exec_close_1): Remove parameter quitting.
5966 * go32-nat.c (go32_close): Likewise.
5967 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
5968 parameter quitting from a caller.
5969 * mips-linux-nat.c (super_close): Remove parameter quitting from the
5970 variable.
5971 (mips_linux_close): Remove parameter quitting. Remove parameter
5972 quitting from a caller.
5973 * monitor.c (monitor_close): Remove parameter quitting.
5974 * monitor.h (monitor_close): Likewise.
5975 * record-btrace.c (record_btrace_close): Likewise.
5976 * record-full.c (record_full_close): Likewise.
5977 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
5978 it also from fprintf_unfiltered.
5979 * remote-mips.c (mips_close): Remove parameter quitting.
5980 (mips_detach): Remove parameter quitting from a caller.
5981 * remote-sim.c (gdbsim_close): Remove parameter quitting.
5982 (gdbsim_close): Remove duplicate function comment. Remove parameter
5983 quitting and remove it also from printf_filtered.
5984 * remote.c (remote_close): Remove parameter quitting.
5985 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
5986 * target.c (update_current_target): Remove parameter int from to_close
5987 de_fault.
5988 (push_target, unpush_target, pop_target): Remove parameter quitting from
5989 a caller.
5990 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
5991 Remove parameter quitting from a caller.
5992 (target_preopen): Remove parameter quitting from a caller.
5993 (target_close): Remove parameter quitting. Remove parameter quitting
5994 from a caller two times. Remove parameter quitting also from
5995 fprintf_unfiltered.
5996 * target.h (struct target_ops): Remove parameter quitting and as int
5997 from fields to_xclose and to_close.
5998 (extern struct target_ops current_target):
5999 (target_close, pop_all_targets): Remove parameter quitting. Update the
6000 comment.
6001 (pop_all_targets_above): Remove parameter quitting.
6002 * top.c (quit_target): Remove parameter quitting from a caller.
6003 * tracepoint.c (tfile_close): Remove parameter quitting.
6004 * windows-nat.c (windows_close): Remove parameter quitting.
6005
6006 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
6007
6008 * windows-nat.c (handle_output_debug_string): Replace call
6009 to string_to_core_addr with call to strtoull.
6010
6011 2013-03-20 Yao Qi <yao@codesourcery.com>
6012
6013 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
6014 and write it to CTF metadata.
6015
6016 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
6017
6018 * windows-nat.c (handle_output_debug_string): Change type of n to
6019 SIZE_T to avoid crash on 64 bit systems.
6020
6021 2013-03-17 Eli Zaretskii <eliz@gnu.org>
6022
6023 * python/python-internal.h (HAVE_SNPRINTF)
6024 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
6025 about redefinition of snprintf by pyerrors.h.
6026
6027 2013-03-15 Steve Ellcey <sellcey@mips.com>
6028
6029 * remote-sim.c (sim_command_completer): Make char arguments const.
6030
6031 2013-03-15 Tom Tromey <tromey@redhat.com>
6032
6033 PR c++/15116:
6034 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
6035
6036 2013-03-14 Tom Tromey <tromey@redhat.com>
6037
6038 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
6039 New fields.
6040 (get_file_crc): Move from symfile.c.
6041 (gdb_bfd_crc): New function.
6042 * gdb_bfd.h (gdb_bfd_crc): Declare.
6043 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
6044 * symfile.c (get_file_crc): Move to gdb_bfd.c.
6045 (separate_debug_file_exists): Use gdb_bfd_crc.
6046
6047 2013-03-14 Tom Tromey <tromey@redhat.com>
6048
6049 * symfile.c (get_debug_link_info): Remove.
6050 (find_separate_debug_file_by_debuglink): Use
6051 bfd_get_debug_link_info.
6052
6053 2013-03-14 Tom Tromey <tromey@redhat.com>
6054
6055 * symtab.c (error_in_psymtab_expansion): New function.
6056 (lookup_symbol_aux_quick)
6057 (basic_lookup_transparent_type_quick): Remove "last resort"
6058 code. Use error_in_psymtab_expansion.
6059
6060 2013-03-14 Doug Evans <dje@google.com>
6061 Jan Kratochvil <jan.kratochvil@redhat.com>
6062
6063 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
6064 any successful compare_filenames_for_search or FILENAME_CMP.
6065 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
6066 * symtab.c (iterate_over_some_symtabs): Likewise.
6067
6068 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6069
6070 * source.c (print_source_lines_base): Make a local copy of
6071 symtab_to_fullname.
6072
6073 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
6074 Jan Kratochvil <jan.kratochvil@redhat.com>
6075
6076 * source.c (print_source_lines_base): Suppress "file" for TUI.
6077
6078 2013-03-14 Keith Seitz <keiths@redhat.com>
6079 Alan Matsuoka <alanm@redhat.com>
6080
6081 PR c++/15203
6082 PR c++/15210
6083 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
6084 TYPE_CODE_METHOD.
6085 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
6086 symbols.
6087
6088 2013-03-14 Yao Qi <yao@codesourcery.com>
6089
6090 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
6091 status to tfile if trace is stopped by command 'tstop'.
6092
6093 2013-03-14 Yao Qi <yao@codesourcery.com>
6094
6095 * tracepoint.c (tfile_write_status): Write trace notes and user
6096 name into tfile if they are not NULL.
6097
6098 2013-03-14 Hui Zhu <hui@codesourcery.com>
6099 Yao Qi <yao@codesourcery.com>
6100
6101 * Makefile.in (REMOTE_OBS): Add ctf.o.
6102 (SFILES): Add ctf.c.
6103 (HFILES_NO_SRCDIR): Add ctf.h.
6104 * ctf.c, ctf.h: New files.
6105 * tracepoint.c: Include 'ctf.h'.
6106 (collect_pseudocommand): Remove static.
6107 (trace_save_command): Parse option "-ctf".
6108 Produce different trace file writers per option.
6109 Adjust output message.
6110 (trace_save_tfile, trace_save_ctf): New.
6111 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
6112 * mi/mi-main.c: Include 'ctf.h'.
6113 (mi_cmd_trace_save): Handle option '-ctf'. Call either
6114 trace_save_tfile or trace_save_ctf.
6115 * NEWS: Mention these changes.
6116
6117 2013-03-14 Yao Qi <yao@codesourcery.com>
6118
6119 * tracepoint.c (trace_file_writer_xfree): New.
6120 (struct tfile_writer_data): New.
6121 (tfile_dtor, tfile_can_target_save, tfile_start): New.
6122 (tfile_write_header, tfile_write_regblock_type): New.
6123 (tfile_write_status, tfile_write_uploaded_tsv): New.
6124 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
6125 (tfile_write_raw_data, (tfile_end): New.
6126 (tfile_write_ops): New global variable.
6127 (TRACE_WRITE_R_BLOCK): New macro.
6128 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
6129 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
6130 (TRACE_WRITE_V_BLOCK): New macro.
6131 (trace_save): Add extra one parameter WRITER. Make it static.
6132 Use WRITER to writer trace.
6133 (tfile_trace_file_writer_new): New.
6134 (trace_save_command): Caller update.
6135 (trace_save_tfile): Write trace data in TFILE format.
6136 * tracepoint.h (struct trace_frame_write_ops): New.
6137 (struct trace_file_write_ops): New.
6138 (struct trace_file_writer): New.
6139 (trace_save): Remove its declaration.
6140 (trace_save_tfile): Declare it.
6141 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
6142 instead of trace_save.
6143
6144 2013-03-13 Pedro Alves <palves@redhat.com>
6145
6146 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
6147
6148 2013-03-13 Pedro Alves <palves@redhat.com>
6149
6150 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
6151 commented out code.
6152 * demangle.c (current_demangling_style_string): Make it const.
6153 (set_demangling_command): Assert the demangling style is known.
6154 Remove all handling of unknown styles. Set
6155 'current_demangling_style_string' to an element of the
6156 demangling_style_names array.
6157 (set_demangling_style): Delete.
6158 (_initialize_demangler): Set current_demangling_style_string to the
6159 element of the demangling_style_names array that corresponds to
6160 the default demangling style. Remove FIXME note. Don't call
6161 set_demangling_style.
6162 * gdb-demangle.h (set_demangling_style): Remove declaration.
6163
6164 2013-03-13 Pedro Alves <palves@redhat.com>
6165
6166 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
6167 fields const.
6168 (ada_make_symbol_completion_list): Make "text0" parameter const.
6169 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
6170 * breakpoint.c (condition_completer): Make "text" and "word"
6171 parameters const. Adjust.
6172 (check_tracepoint_command): Adjust to validate_actionline
6173 prototype change.
6174 (catch_syscall_completer): Make "text" and "word" parameters
6175 const.
6176 * cli/cli-cmds.c (show_user): Make "comname" local const.
6177 (valid_command_p): Make "command" parameter const.
6178 (alias_command): Make "alias_prefix" and "command_prefix" locals
6179 const.
6180 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
6181 (add_alias_cmd): Make "name" and "oldname" parameters const.
6182 Adjust. No longer make copy of OLDNAME.
6183 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
6184 (add_setshow_cmd_full, add_setshow_enum_cmd)
6185 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
6186 (add_setshow_filename_cmd, add_setshow_string_cmd)
6187 (add_setshow_string_noescape_cmd)
6188 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
6189 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
6190 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
6191 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
6192 Make "name" parameter const.
6193 (help_cmd): Rename "command" parameter to "arg". New const local
6194 "command".
6195 (find_cmd): Make "command" parameter const.
6196 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
6197 deprecated_cmd_warning prototype change.
6198 (undef_cmd_error): Make "cmdtype" parameter const.
6199 (lookup_cmd): Make "line" parameter const.
6200 (deprecated_cmd_warning): Change type of "text" parameter to
6201 pointer to const char, from pointer to pointer to char. Adjust.
6202 (lookup_cmd_composition): Make "text" parameter const.
6203 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
6204 parameters const.
6205 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
6206 const.
6207 * cli/cli-script.c (validate_comname): Make "tem" local const.
6208 (define_command): New const local "tem_c". Use it in calls to
6209 lookup_cmd.
6210 (document_command): Make "tem" and "comfull" locals const.
6211 (show_user_1): Make "prefix" and "name" parameters const.
6212 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
6213 const.
6214 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
6215 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
6216 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
6217 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
6218 (complete_on_enum, add_setshow_enum_cmd)
6219 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
6220 (add_setshow_filename_cmd, add_setshow_string_cmd)
6221 (add_setshow_string_noescape_cmd)
6222 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
6223 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
6224 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
6225 Change prototypes, constifying strings.
6226 * completer.c (noop_completer, filename_completer): Make "text"
6227 and "prefix" parameters const.
6228 (location_completer, expression_completer)
6229 (complete_line_internal): Make "text" and "prefix" parameters
6230 const and adjust.
6231 (command_completer, signal_completer): Make "text" and "prefix"
6232 parameters const.
6233 * completer.h (noop_completer, filename_completer)
6234 (expression_completer, location_completer, command_completer)
6235 (signal_completer): Change prototypes.
6236 * corefile.c (complete_set_gnutarget): Make "text" and "word"
6237 parameters const.
6238 * cp-abi.c (cp_abi_completer): Likewise.
6239 * expression.h (parse_expression_for_completion): Change
6240 prototype.
6241 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
6242 parameters const.
6243 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
6244 * infrun.c (handle_completer): Make "text" and "word" parameters
6245 const.
6246 * interps.c (interpreter_completer): Make "text" and "word"
6247 parameters const.
6248 * language.h (struct language_defn)
6249 <la_make_symbol_completion_list>: Make "text" and "word"
6250 parameters const.
6251 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
6252 (parse_exp_in_context): Rename to ...
6253 (parse_exp_in_context_1): ... this.
6254 (parse_exp_in_context): Reimplement, with const hack from
6255 parse_exp_1.
6256 (parse_expression_for_completion): Make "string" parameter const.
6257 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
6258 to pointer to const char. Adjust.
6259 (print_command_1): Make "exp" parameter const.
6260 (output_command): Rename to ...
6261 (output_command_const): ... this. Make "exp" parameter const.
6262 (output_command): Reimplement.
6263 (x_command): Adjust.
6264 (display_command): Rename "exp" parameter to "arg". New "exp"
6265 local, const version of "arg".
6266 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
6267 "cmd_name" local const.
6268 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
6269 call.
6270 (cmdpy_completer): Make "text" and "word" parameters const.
6271 (gdbpy_parse_command_name): Make "prefix_text2" local const.
6272 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
6273 const.
6274 * remote.c (_initialize_remote): Make "cmd_name" local const.
6275 * symtab.c (language_search_unquoted_string): Make "text" and "p"
6276 parameters const. Adjust.
6277 (completion_list_add_fields): Make "sym_text", "text" and "word"
6278 parameters const.
6279 (struct add_name_data) <sym_text, text, word>: Make fields const.
6280 (default_make_symbol_completion_list_break_on): Make "text" and
6281 "word" parameters const. Adjust locals.
6282 (default_make_symbol_completion_list)
6283 (make_symbol_completion_list, make_symbol_completion_type)
6284 (make_symbol_completion_list_fn): Make "text" and "word"
6285 parameters const.
6286 (make_file_symbol_completion_list): Make "text", "word" and
6287 "srcfile" parameters const. Adjust locals.
6288 (add_filename_to_list): Make "text" and "word" parameters const.
6289 (struct add_partial_filename_data) <text, word>: Make fields
6290 const.
6291 (make_source_files_completion_list): Make "text" and "word"
6292 parameters const.
6293 * symtab.h (default_make_symbol_completion_list_break_on)
6294 (default_make_symbol_completion_list, make_symbol_completion_list)
6295 (make_symbol_completion_type enum type_code)
6296 (make_symbol_completion_list_fn make_file_symbol_completion_list)
6297 (make_source_files_completion_list): Change prototype.
6298 * top.c (execute_command): Adjust to pass pointer to pointer to
6299 const char to lookup_cmd, and to deprecated_cmd_warning prototype
6300 change.
6301 (set_verbose): Make "cmdname" local const.
6302 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
6303 and adjust.
6304 (validate_actionline): Make "line" parameter a pointer to const
6305 char, and adjust.
6306 (encode_actions_1): Make "action_exp" local const, and adjust.
6307 (encode_actions): Adjust.
6308 (replace_comma): Delete.
6309 (trace_dump_actions): Make "action_exp" and "next_comma" locals
6310 const, and adjust. Don't frob the action string while splitting
6311 it at commas. Instead, make a copy of each split substring in
6312 turn.
6313 (trace_dump_command): Adjust to validate_actionline prototype
6314 change.
6315 * tracepoint.h (decode_agent_options, decode_agent_options)
6316 (encode_actions, validate_actionline): Change prototypes.
6317 * valprint.h (output_command): Delete declaration.
6318 (output_command_const): Declare.
6319 * value.c (function_destroyer): Cast const away in xfree call.
6320
6321 2013-03-13 Pedro Alves <palves@redhat.com>
6322
6323 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
6324 rather than casting 'const char * const *' to 'const char **'.
6325 * ada-lex.l (processInt): Make "trailer" local const. Remove
6326 'const char **' cast.
6327 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
6328 locals, and use those as strtol output pointer, instead than doing
6329 invalid casts to from 'const char **' to 'char **'.
6330 (_initialize_demangle): Remove cast.
6331 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
6332 locals, and use those as strtol output pointer, instead than doing
6333 invalid casts to from 'const char **' to 'char **'.
6334 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
6335 casts.
6336 * stap-probe.c (stap_parse_register_operand)
6337 (stap_parse_single_operand): Likewise.
6338
6339 2013-03-13 Yao Qi <yao@codesourcery.com>
6340
6341 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
6342 the last matched 'V' blcok in trace frame.
6343
6344 2013-03-12 Joel Brobecker <brobecker@adacore.com>
6345
6346 * NEWS: Create a new section for the next release branch.
6347 Rename the section of the current branch, now that it has
6348 been cut.
6349
6350 2013-03-12 Joel Brobecker <brobecker@adacore.com>
6351
6352 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
6353 * version.in: Bump version to 7.6.50.20130312-cvs.
6354
6355 2013-03-12 Keith Seitz <keiths@redhat.com>
6356
6357 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
6358 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
6359 Remove temporary copy of input string.
6360 (mi_execute_command_wrapper): Make "cmd" const.
6361 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
6362 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
6363 Use const strings.
6364 (mi_parse): Make "cmd" const.
6365 Use const strings.
6366 * mi/mi-parse.h (mi_parse): Make "cmd" const.
6367
6368 2013-03-12 Keith Seitz <keiths@redhat.com>
6369
6370 * ada-lang.c (ada_read_renaming_var_value): Pass const
6371 pointer to expression string to parse_exp_1.
6372 (create_excep_cond_exprs): Likewise.
6373 * ax-gdb.c (agent_eval_command_one): Likewise.
6374 (maint_agent_printf_command): Likewise.
6375 Constify much of the string handling/parsing.
6376 * breakpoint.c (set_breakpoint_condition): Pass const
6377 pointer to expression string to parse_exp_1.
6378 (update_watchpoint): Likewise.
6379 (parse_cmd_to_aexpr): Constify string handling.
6380 Pass const pointer to parse_exp_1.
6381 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
6382 (find_condition_and_thread): Likewise.
6383 Make TOK const.
6384 (watch_command_1): Make "arg" const.
6385 Constify string handling.
6386 Copy the expression string instead of changing the input
6387 string.
6388 (update_breakpoint_location): Pass const pointer to
6389 parse_exp_1.
6390 * eval.c (parse_and_eval_address): Make "exp" const.
6391 (parse_to_comma_and_eval): Make "expp" const.
6392 (parse_and_eval): Make "exp" const.
6393 * expression.h (parse_expression): Make argument const.
6394 (parse_exp_1): Make first argument const.
6395 * findcmd.c (parse_find_args): Treat "args" as const.
6396 * linespec.c (parse_linespec): Pass const pointer to
6397 linespec_expression_to_pc.
6398 (linespec_expression_to_pc): Make "exp_ptr" const.
6399 * parse.c (parse_exp_1): Make "stringptr" const.
6400 Make a copy of the expression to pass to parse_exp_in_context until
6401 this whole interface can be constified.
6402 (parse_expression): Make "string" const.
6403 * printcmd.c (ui_printf): Treat "arg" as const.
6404 Handle const strings.
6405 * tracepoint.c (validate_actionline): Pass const pointer to
6406 all calls to parse_exp_1.
6407 (encode_actions_1): Likewise.
6408 * value.h (parse_to_comma_and_eval): Make argument const.
6409 (parse_and_eval_address): Likewise.
6410 (parse_and_eval): Likewise.
6411 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
6412 (varobj_set_value): Likewise.
6413 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
6414 constify string handling.
6415 Pass const pointers to parse_and_eval_address and
6416 parse_to_comman_and_eval.
6417 * cli/cli-utils.c (skip_to_space): Rename to ...
6418 (skip_to_space_const): ... this. Handle const strings.
6419 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
6420 skip_to_space_const.
6421 (skip_to_space_const): Declare.
6422 * common/format.c (parse_format_string): Make "arg" const.
6423 Handle const strings.
6424 * common/format.h (parse_format_string): Make "arg" const.
6425 * gdbserver/ax.c (ax_printf): Make "format" const.
6426 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
6427 of the expression string.
6428
6429 2013-03-12 Hui Zhu <hui@codesourcery.com>
6430
6431 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
6432
6433 2013-03-12 Yao Qi <yao@codesourcery.com>
6434 Hui Zhu <hui@codesourcery.com>
6435
6436 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
6437 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
6438 DW_OP_deref_size.
6439
6440 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
6441
6442 * ada-lex.l (rules): Only recognize 'thread' as a
6443 delimiter when followed by numerals, as for c-exp.y.
6444 Use new rewind_to_char function to rewind the input for
6445 expression-delimiting tokens.
6446 (rewind_to_char): New function.
6447
6448 2013-03-11 Pedro Alves <palves@redhat.com>
6449 Jan Kratochvil <jan.kratochvil@redhat.com>
6450
6451 * configure: Regenerate.
6452 * configure.ac (check dynamic export flag): Link python test with
6453 $PYTHON_LIBS.
6454
6455 2013-03-11 Doug Evans <dje@google.com>
6456 Keith Seitz <keiths@redhat.com>
6457
6458 * linespec.c (find_linespec_symbols): Call find_function_symbols
6459 first, and then call lookup_prefix_sym/find_method.
6460
6461 2013-03-11 Pedro Alves <palves@redhat.com>
6462
6463 * charset.c (convert_between_encodings): Don't cast between
6464 different pointer to pointer types. Instead, make the 'inp' local
6465 be of the type iconv expects.
6466 (wchar_iterate): Don't cast between different pointer to pointer
6467 types. Instead, use new pointer local of the type iconv expects.
6468 * target.c (target_read_stralloc, target_fileio_read_stralloc):
6469 Add new local of type char pointer, and use it to get a
6470 char/string view of the byte buffer, instead of casting between
6471 pointer to pointer types.
6472
6473 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
6474
6475 * remote.c (remote_set_trace_buffer_size): Move != operator
6476 to the start of next line to fix an ARI warning.
6477
6478 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6479
6480 * NEWS: Add record changes.
6481
6482 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6483
6484 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
6485 the instruction history disassembly.
6486 * disasm.c (dump_insns): Omit the pc prefix, if requested.
6487 * disasm.h (DISASSEMBLY_OMIT_PC): New.
6488
6489 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6490
6491 * Makefile.in (SFILES): Add record-btrace.c
6492 (COMMON_OBS): Add record-btrace.o
6493 * record-btrace.c: New.
6494 * objfiles.c: Include btrace.h.
6495 (free_objfile): call btrace_free_objfile.
6496
6497 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6498
6499 * target.c (target_call_history, target_call_history_from,
6500 target_call_history_range): New.
6501 * target.h (target_ops) <to_call_history, to_call_history_from,
6502 to_call_history_range>: New fields.
6503 (target_call_history, target_call_history_from,
6504 target_call_history_range): New declaration.
6505 * record.c (get_call_history_modifiers, cmd_record_call_history,
6506 record_call_history_size): New.
6507 (_initialize_record): Add the "record function-call-history" command.
6508 Add "set/show record function-call-history-size" commands.
6509 * record.h (record_print_flag): New.
6510
6511 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6512
6513 * target.h (target_ops) <to_insn_history, to_insn_history_from,
6514 to_insn_history_range>: New fields.
6515 (target_insn_history): New.
6516 (target_insn_history_from): New.
6517 (target_insn_history_range): New.
6518 * target.c (target_insn_history): New.
6519 (target_insn_history_from): New.
6520 (target_insn_history_range): New.
6521 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
6522 (record_insn_history_size): New.
6523 (get_insn_number): New.
6524 (get_context_size): New.
6525 (no_chunk): New.
6526 (get_insn_history_modifiers): New.
6527 (cmd_record_insn_history): New.
6528 (_initialize_record): Add "set/show record instruction-history-size"
6529 command. Add "record instruction-history" command.
6530
6531 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6532
6533 * record.h (record_disconnect): New.
6534 (record_detach): New.
6535 (record_mourn_inferior): New.
6536 (record_kill): New.
6537 * record-full.c (record_disconnect, record_detach,
6538 record_mourn_inferior, record_kill): Move to...
6539 * record.c: ...here.
6540 (DEBUG): New.
6541 (record_stop): New.
6542 (record_unpush): New.
6543 (cmd_record_stop): Call record_stop. Replace unpush_target
6544 call with record_unpush call.
6545 (record_disconnect, record_detach): Assert that the target
6546 is of record stratum. Call record_unpush, record_stop, and
6547 DEBUG.
6548 (record_mourn_inferior, record_kill): Assert that the target
6549 is of record stratum. Call record_unpush and DEBUG.
6550
6551 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6552
6553 * record-full.h, record-full.c (record_memory_query): Rename
6554 to ...
6555 (record_full_memory_query): ...this. Update all users.
6556 (record_arch_list_add_reg): Rename to ...
6557 (record_full_arch_list_add_reg): ...this. Update all users.
6558 (record_arch_list_add_mem): Rename to ...
6559 (record_full_arch_list_add_mem): ...this. Update all users.
6560 (record_arch_list_add_end): Rename to ...
6561 (record_full_arch_list_add_end): ...this. Update all users.
6562 (record_gdb_operation_disable_set): Rename to ...
6563 (record_full_gdb_operation_disable_set): ...this.
6564 Update all users.
6565
6566 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6567
6568 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
6569 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
6570 (RECORD_IS_REPLAY): Renamed to ...
6571 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
6572 (RECORD_FILE_MAGIC): Renamed to ...
6573 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
6574 (record_mem_entry): Renamed to ...
6575 (record_full_mem_entry): ... this. Updated all users.
6576 (record_reg_entry): Renamed to ...
6577 (record_full_reg_entry): ... this. Updated all users.
6578 (record_end_entry): Renamed to ...
6579 (record_full_end_entry): ... this. Updated all users.
6580 (record_type) <record_end, record_reg, record_mem>: Renamed
6581 to ...
6582 (record_full_type) <record_full_end, record_full_reg,
6583 record_full_mem>: ... this. Updated all users.
6584 (record_entry): Renamed to ...
6585 (record_full_entry): ... this. Updated all users.
6586 (record_core_buf_entry): Renamed to ...
6587 (record_full_core_buf_entry): ... this. Updated all users.
6588 (record_core_regbuf): Renamed to ...
6589 (record_full_core_regbuf): ... this. Updated all users.
6590 (record_core_start): Renamed to ...
6591 (record_full_core_start): ... this. Updated all users.
6592 (record_core_end): Renamed to ...
6593 (record_full_core_end): ... this. Updated all users.
6594 (record_core_buf_list): Renamed to ...
6595 (record_full_core_buf_list): ... this. Updated all users.
6596 (record_first): Renamed to ...
6597 (record_full_first): ... this. Updated all users.
6598 (record_list): Renamed to ...
6599 (record_full_list): ... this. Updated all users.
6600 (record_arch_list_head): Renamed to ...
6601 (record_full_arch_list_head): ... this. Updated all users.
6602 (record_arch_list_tail): Renamed to ...
6603 (record_full_arch_list_tail): ... this. Updated all users.
6604 (record_stop_at_limit): Renamed to ...
6605 (record_full_stop_at_limit): ... this. Updated all users.
6606 (record_insn_max_num): Renamed to ...
6607 (record_full_insn_max_num): ... this. Updated all users.
6608 (record_insn_num): Renamed to ...
6609 (record_full_insn_num): ... this. Updated all users.
6610 (record_insn_count): Renamed to ...
6611 (record_full_insn_count): ... this. Updated all users.
6612 (record_ops): Renamed to ...
6613 (record_full_ops): ... this. Updated all users.
6614 (record_core_ops): Renamed to ...
6615 (record_full_core_ops): ... this. Updated all users.
6616 (set_record_cmdlist): Renamed to ...
6617 (set_record_full_cmdlist): ... this. Updated all users.
6618 (show_record_cmdlist): Renamed to ...
6619 (show_record_full_cmdlist): ... this. Updated all users.
6620 (record_cmdlist): Renamed to ...
6621 (record_full_cmdlist): ... this. Updated all users.
6622 (record_beneath_to_resume_ops): Renamed to ...
6623 (record_full_beneath_to_resume_ops): ... this. Updated all users.
6624 (record_beneath_to_resume): Renamed to ...
6625 (record_full_beneath_to_resume): ... this. Updated all users.
6626 (record_beneath_to_wait_ops): Renamed to ...
6627 (record_full_beneath_to_wait_ops): ... this. Updated all users.
6628 (record_beneath_to_wait): Renamed to ...
6629 (record_full_beneath_to_wait): ... this. Updated all users.
6630 (record_beneath_to_store_registers_ops): Renamed to ...
6631 (record_full_beneath_to_store_registers_ops): ... this.
6632 Updated all users.
6633 (record_beneath_to_store_registers): Renamed to ...
6634 (record_full_beneath_to_store_registers): ... this.
6635 Updated all users.
6636 (record_beneath_to_xfer_partial_ops): Renamed to ...
6637 (record_full_beneath_to_xfer_partial_ops): ... this.
6638 Updated all users.
6639 (record_beneath_to_xfer_partial): Renamed to ...
6640 (record_full_beneath_to_xfer_partial): ... this.
6641 Updated all users.
6642 (record_beneath_to_insert_breakpoint): Renamed to ...
6643 (record_full_beneath_to_insert_breakpoint): ... this.
6644 Updated all users.
6645 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
6646 (record_full_beneath_to_stopped_by_watchpoint): ... this.
6647 Updated all users.
6648 (record_beneath_to_stopped_data_address): Renamed to ...
6649 (record_full_beneath_to_stopped_data_address): ... this.
6650 Updated all users.
6651 (record_beneath_to_async): Renamed to ...
6652 (record_full_beneath_to_async): ... this. Updated all users.
6653 (record_goto_insn): Renamed to ...
6654 (record_full_goto_insn): ... this. Updated all users.
6655 (record_save): Renamed to ...
6656 (record_full_save): ... this. Updated all users.
6657 (record_reg_alloc): Renamed to ...
6658 (record_full_reg_alloc): ... this. Updated all users.
6659 (record_reg_release): Renamed to ...
6660 (record_full_reg_release): ... this. Updated all users.
6661 (record_mem_alloc): Renamed to ...
6662 (record_full_mem_alloc): ... this. Updated all users.
6663 (record_mem_release): Renamed to ...
6664 (record_full_mem_release): ... this. Updated all users.
6665 (record_end_alloc): Renamed to ...
6666 (record_full_end_alloc): ... this. Updated all users.
6667 (record_end_release): Renamed to ...
6668 (record_full_end_release): ... this. Updated all users.
6669 (record_entry_release): Renamed to ...
6670 (record_full_entry_release): ... this. Updated all users.
6671 (record_list_release): Renamed to ...
6672 (record_full_list_release): ... this. Updated all users.
6673 (record_list_release_following): Renamed to ...
6674 (record_full_list_release_following): ... this.
6675 Updated all users.
6676 (record_list_release_first): Renamed to ...
6677 (record_full_list_release_first): ... this. Updated all users.
6678 (record_arch_list_add): Renamed to ...
6679 (record_full_arch_list_add): ... this. Updated all users.
6680 (record_get_loc): Renamed to ...
6681 (record_full_get_loc): ... this. Updated all users.
6682 (record_check_insn_num): Renamed to ...
6683 (record_full_check_insn_num): ... this. Updated all users.
6684 (record_arch_list_cleanups): Renamed to ...
6685 (record_full_arch_list_cleanups): ... this. Updated all users.
6686 (record_message): Renamed to ...
6687 (record_full_message): ... this. Updated all users.
6688 (record_message_wrapper): Renamed to ...
6689 (record_full_message_wrapper): ... this. Updated all users.
6690 (record_message_wrapper_safe): Renamed to ...
6691 (record_full_message_wrapper_safe): ... this. Updated all users.
6692 (record_gdb_operation_disable): Renamed to ...
6693 (record_full_gdb_operation_disable): ... this. Updated all users.
6694 (record_hw_watchpoint): Renamed to ...
6695 (record_full_hw_watchpoint): ... this. Updated all users.
6696 (record_exec_insn): Renamed to ...
6697 (record_full_exec_insn): ... this. Updated all users.
6698 (record_restore): Renamed to ...
6699 (record_full_restore): ... this. Updated all users.
6700 (record_async_inferior_event_token): Renamed to ...
6701 (record_full_async_inferior_event_token): ... this.
6702 Updated all users.
6703 (record_async_inferior_event_handler): Renamed to ...
6704 (record_full_async_inferior_event_handler): ... this.
6705 Updated all users.
6706 (record_core_open_1): Renamed to ...
6707 (record_full_core_open_1): ... this. Updated all users.
6708 (record_open_1): Renamed to ...
6709 (record_full_open_1): ... this. Updated all users.
6710 (record_open): Renamed to ...
6711 (record_full_open): ... this. Updated all users.
6712 (record_close): Renamed to ...
6713 (record_full_close): ... this. Updated all users.
6714 (record_resume_step): Renamed to ...
6715 (record_full_resume_step): ... this. Updated all users.
6716 (record_resumed): Renamed to ...
6717 (record_full_resumed): ... this. Updated all users.
6718 (record_execution_dir): Renamed to ...
6719 (record_full_execution_dir): ... this. Updated all users.
6720 (record_resume): Renamed to ...
6721 (record_full_resume): ... this. Updated all users.
6722 (record_get_sig): Renamed to ...
6723 (record_full_get_sig): ... this. Updated all users.
6724 (record_sig_handler): Renamed to ...
6725 (record_full_sig_handler): ... this. Updated all users.
6726 (record_wait_cleanups): Renamed to ...
6727 (record_full_wait_cleanups): ... this. Updated all users.
6728 (record_wait_1): Renamed to ...
6729 (record_full_wait_1): ... this. Updated all users.
6730 (record_wait): Renamed to ...
6731 (record_full_wait): ... this. Updated all users.
6732 (record_stopped_by_watchpoint): Renamed to ...
6733 (record_full_stopped_by_watchpoint): ... this. Updated all users.
6734 (record_disconnect): Renamed to ...
6735 (record_full_disconnect): ... this. Updated all users.
6736 (record_detach): Renamed to ...
6737 (record_full_detach): ... this. Updated all users.
6738 (record_mourn_inferior): Renamed to ...
6739 (record_full_mourn_inferior): ... this. Updated all users.
6740 (record_kill): Renamed to ...
6741 (record_full_kill): ... this. Updated all users.
6742 (record_stopped_data_address): Renamed to ...
6743 (record_full_stopped_data_address): ... this. Updated all users.
6744 (record_registers_change): Renamed to ...
6745 (record_full_registers_change): ... this. Updated all users.
6746 (record_store_registers): Renamed to ...
6747 (record_full_store_registers): ... this. Updated all users.
6748 (record_xfer_partial): Renamed to ...
6749 (record_full_xfer_partial): ... this. Updated all users.
6750 (record_breakpoint): Renamed to ...
6751 (record_full_breakpoint): ... this. Updated all users.
6752 (record_breakpoint_p): Renamed to ...
6753 (record_full_breakpoint_p): ... this. Updated all users.
6754 (record_breakpoints): Renamed to ...
6755 (record_full_breakpoints): ... this. Updated all users.
6756 (record_sync_record_breakpoints): Renamed to ...
6757 (record_full_sync_record_breakpoints): ... this.
6758 Updated all users.
6759 (record_init_record_breakpoints): Renamed to ...
6760 (record_full_init_record_breakpoints): ... this.
6761 Updated all users.
6762 (record_insert_breakpoint): Renamed to ...
6763 (record_full_insert_breakpoint): ... this. Updated all users.
6764 (record_remove_breakpoint): Renamed to ...
6765 (record_full_remove_breakpoint): ... this. Updated all users.
6766 (record_can_execute_reverse): Renamed to ...
6767 (record_full_can_execute_reverse): ... this. Updated all users.
6768 (record_get_bookmark): Renamed to ...
6769 (record_full_get_bookmark): ... this. Updated all users.
6770 (record_goto_bookmark): Renamed to ...
6771 (record_full_goto_bookmark): ... this. Updated all users.
6772 (record_async): Renamed to ...
6773 (record_full_async): ... this. Updated all users.
6774 (record_can_async_p): Renamed to ...
6775 (record_full_can_async_p): ... this. Updated all users.
6776 (record_is_async_p): Renamed to ...
6777 (record_full_is_async_p): ... this. Updated all users.
6778 (record_execution_direction): Renamed to ...
6779 (record_full_execution_direction): ... this. Updated all users.
6780 (record_info): Renamed to ...
6781 (record_full_info): ... this. Updated all users.
6782 (record_delete): Renamed to ...
6783 (record_full_delete): ... this. Updated all users.
6784 (record_is_replaying): Renamed to ...
6785 (record_full_is_replaying): ... this. Updated all users.
6786 (record_goto_entry): Renamed to ...
6787 (record_full_goto_entry): ... this. Updated all users.
6788 (record_goto_begin): Renamed to ...
6789 (record_full_goto_begin): ... this. Updated all users.
6790 (record_goto_end): Renamed to ...
6791 (record_full_goto_end): ... this. Updated all users.
6792 (record_goto): Renamed to ...
6793 (record_full_goto): ... this. Updated all users.
6794 (init_record_ops): Renamed to ...
6795 (init_record_full_ops): ... this. Updated all users.
6796 (record_core_resume): Renamed to ...
6797 (record_full_core_resume): ... this. Updated all users.
6798 (record_core_kill): Renamed to ...
6799 (record_full_core_kill): ... this. Updated all users.
6800 (record_core_fetch_registers): Renamed to ...
6801 (record_full_core_fetch_registers): ... this. Updated all users.
6802 (record_core_prepare_to_store): Renamed to ...
6803 (record_full_core_prepare_to_store): ... this. Updated all users.
6804 (record_core_store_registers): Renamed to ...
6805 (record_full_core_store_registers): ... this. Updated all users.
6806 (record_core_xfer_partial): Renamed to ...
6807 (record_full_core_xfer_partial): ... this. Updated all users.
6808 (record_core_insert_breakpoint): Renamed to ...
6809 (record_full_core_insert_breakpoint): ... this. Updated all users.
6810 (record_core_remove_breakpoint): Renamed to ...
6811 (record_full_core_remove_breakpoint): ... this. Updated all users.
6812 (record_core_has_execution): Renamed to ...
6813 (record_full_core_has_execution): ... this. Updated all users.
6814 (init_record_core_ops): Renamed to ...
6815 (init_record_full_core_ops): ... this. Updated all users.
6816 (cmd_record_restore): Renamed to ...
6817 (cmd_record_full_restore): ... this. Updated all users.
6818 (record_save_cleanups): Renamed to ...
6819 (record_full_save_cleanups): ... this. Updated all users.
6820 (cmd_record_start): Renamed to ...
6821 (cmd_record_full_start): ... this. Updated all users.
6822 (set_record_insn_max_num): Renamed to ...
6823 (set_record_full_insn_max_num): ... this. Updated all users.
6824 (set_record_command): Renamed to ...
6825 (set_record_full_command): ... this. Updated all users.
6826 (show_record_command): Renamed to ...
6827 (show_record_full_command): ... this. Updated all users.
6828 (_initialize_record): Renamed to ...
6829 (_initialize_record_full): ... this. Updated all users.
6830
6831 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6832
6833 * record.h: Split into this and ...
6834 * record-full.h: ... this.
6835 * record.c: Split into this and ...
6836 * record-full.c: ... this.
6837 * target.h (target_ops): Add new fields to_info_record,
6838 to_save_record, to_delete_record, to_record_is_replaying,
6839 to_goto_record_begin, to_goto_record_end, to_goto_record.
6840 (target_info_record): New.
6841 (target_save_record): New.
6842 (target_supports_delete_record): New.
6843 (target_delete_record): New.
6844 (target_record_is_replaying): New.
6845 (target_goto_record_begin): New.
6846 (target_goto_record_end): New.
6847 (target_goto_record): New.
6848 * target.c (target_info_record): New.
6849 (target_save_record): New.
6850 (target_supports_delete_record): New.
6851 (target_delete_record): New.
6852 (target_record_is_replaying): New.
6853 (target_goto_record_begin): New.
6854 (target_goto_record_end): New.
6855 (target_goto_record): New.
6856 * record.h: Declare struct cmd_list_element.
6857 (record_cmdlist): New declaration.
6858 (set_record_cmdlist): New declaration.
6859 (show_record_cmdlist): New declaration.
6860 (info_record_cmdlist): New declaration.
6861 (cmd_record_goto): New declaration.
6862 * record.c: Remove unnecessary includes.
6863 Include inferior.h.
6864 (cmd_record_goto): Remove declaration.
6865 (record_cmdlist): Now extern. Initialize.
6866 (set_record_cmdlist): Now extern. Initialize.
6867 (show_record_cmdlist): Now extern. Initialize.
6868 (info_record_cmdlist): Now extern. Initialize.
6869 (find_record_target): New.
6870 (require_record_target): New.
6871 (cmd_record_start): Update.
6872 (cmd_record_delete): Remove target-specific code.
6873 Call target_delete_record.
6874 (cmd_record_stop): Unpush any record target.
6875 (set_record_insn_max_num): Move to record-full.c
6876 (set_record_command): Add comment.
6877 (show_record_command): Add comment.
6878 (info_record_command): Update comment.
6879 Remove target-specific code.
6880 Call the record target's to_info_record.
6881 (cmd_record_start): New.
6882 (cmd_record_goto): Now extern.
6883 Remove target-specific code.
6884 Call target_goto_begin, target_goto_end, or target_goto.
6885 (_initialize_record): Move record target ops initialization to
6886 record-full.c.
6887 Change "record" command help text.
6888 Move "record restore", "record set", and "record show" commands to
6889 record-full.c.
6890 * Makefile.in (SFILES): Add record-full.c.
6891 (HFILES_NO_SRCDIR): Add record-full.h.
6892 (COMMON_OBS): Add record-full.o.
6893 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
6894 * arm-tdep.c: Include record-full.h.
6895 * i386-linux-tdep.c: Include record-full.h instead of record.h.
6896 * i386-tdep.c: Include record-full.h.
6897 * infrun.c: Include record-full.h.
6898 * linux-record.c: Include record-full.h.
6899 * moxie-tdep.c: Include record-full.h.
6900 * record-full.c: Include record-full.h.
6901 Change module comment.
6902 (set_record_full_cmdlist): New.
6903 (show_record_full_cmdlist): New.
6904 (record_full_cmdlist): New.
6905 (record_goto_insn): New declaration.
6906 (record_save): New declaration.
6907 (record_check_insn_num): Change query string.
6908 (record_info): New.
6909 (record_delete): New.
6910 (record_is_replaying): New.
6911 (record_goto_entry): New.
6912 (record_goto_begin): New.
6913 (record_goto_end): New.
6914 (record_goto): New.
6915 (init_record_ops): Update.
6916 (init_record_core_ops): Update.
6917 (cmd_record_save): Rename to record_save. Remove target and arg checks.
6918 (cmd_record_start): New.
6919 (set_record_insn_max_num): Moved from record.c
6920 (set_record_full_command): New.
6921 (show_record_full_command): New.
6922 (_initialize_record_full): New.
6923
6924 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6925
6926 * target.h (add_deprecated_target_alias): New.
6927 * target.c (add_deprecated_target_alias): New.
6928
6929 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6930
6931 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
6932 and signal.h.
6933 (linux_supports_btrace): Add kernel and
6934 cpuid check.
6935 (kernel_supports_btrace): New function.
6936 (cpu_supports_btrace): New function.
6937 (intel_supports_btrace): New function.
6938
6939 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6940
6941 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
6942 * remote.c: Include btrace.h.
6943 (struct btrace_target_info): New struct.
6944 (remote_supports_btrace): New function.
6945 (send_Qbtrace): New function.
6946 (remote_enable_btrace): New function.
6947 (remote_disable_btrace): New function.
6948 (remote_teardown_btrace): New function.
6949 (remote_read_btrace): New function.
6950 (init_remote_ops): Add btrace ops.
6951 (enum <unnamed>): Add btrace packets.
6952 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
6953 (_initialize_remote): Add packet configuration for branch tracing.
6954
6955 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6956
6957 * features/btrace.dtd: New file.
6958 * Makefile.in (XMLFILES): Add btrace.dtd.
6959 * btrace.h (parse_xml_btrace): New declaration.
6960 * btrace.c: Include xml-support.h.
6961 (parse_xml_btrace): New function.
6962 (parse_xml_btrace_block): New function.
6963 (block_attributes): New struct.
6964 (btrace_attributes): New struct.
6965 (btrace_children): New struct.
6966 (btrace_elements): New struct.
6967
6968 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6969
6970 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
6971 (amd64_linux_enable_btrace): New.
6972 (amd64_linux_disable_btrace): New.
6973 (amd64_linux_teardown_btrace): New.
6974 (_initialize_amd64_linux_nat): Initialize btrace ops.
6975 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
6976 (i386_linux_enable_btrace): New.
6977 (i386_linux_disable_btrace): New.
6978 (i386_linux_teardown_btrace): New.
6979 (_initialize_i386_linux_nat): Initialize btrace ops.
6980 * config/i386/linux.mh: Add linux-btrace.o.
6981 * config/i386/linux64.mh: Add linux-btrace.o.
6982
6983 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6984
6985 * common/linux_btrace.h: New file.
6986 * common/linux_btrace.c: New file.
6987 * Makefile.in (SFILES): Add btrace.c.
6988 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
6989 (COMMON_OBS): Add btrace.o.
6990 (linux-btrace.o): New rule.
6991
6992 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
6993
6994 * target.h: Include btrace.h.
6995 (struct target_ops) <to_supports_btrace, to_enable_btrace,
6996 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
6997 * target.c (target_supports_btrace): New function.
6998 (target_enable_btrace): New function.
6999 (target_disable_btrace): New function.
7000 (target_teardown_btrace): New function.
7001 (target_read_btrace): New function.
7002 * btrace.h: New file.
7003 * btrace.c: New file.
7004 * Makefile.in: Add btrace.c.
7005 * gdbthread.h: Include btrace.h.
7006 (struct thread_info): Add btrace field.
7007 * thread.c: Include btrace.h.
7008 (clear_thread_inferior_resources): Call target_teardown_btrace.
7009 * common/btrace-common.h: New file.
7010
7011 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7012
7013 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
7014 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
7015 kill_status to outer block.
7016
7017 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7018
7019 Fix entry-values if the callee called a noreturn function.
7020 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
7021 get_frame_address_in_block. Add new comment.
7022
7023 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7024
7025 Fix entry-values in C++ across CUs.
7026 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
7027 lookup_minimal_symbol. Add a comment.
7028 * dwarf2read.c
7029 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
7030 DW_AT_linkage_name.
7031
7032 2013-03-08 Yao Qi <yao@codesourcery.com>
7033
7034 * tracepoint.c (_initialize_tracepoint): Indent the code.
7035
7036 2013-03-08 Pedro Alves <palves@redhat.com>
7037
7038 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
7039 (parse_find_args, find_command): Change type of pattern buffer
7040 locals to 'gdb_byte *'.
7041
7042 2013-03-08 Stan Shebs <stan@codesourcery.com>
7043 Hafiz Abid Qadeer <abidh@codesourcery.com>
7044
7045 * NEWS: Mention set and show trace-buffer-size commands.
7046 Mention new packet.
7047 * target.h (struct target_ops): New method
7048 to_set_trace_buffer_size.
7049 (target_set_trace_buffer_size): New macro.
7050 * target.c (update_current_target): Set up new method.
7051 * tracepoint.c (trace_buffer_size): New global.
7052 (start_tracing): Send it to the target.
7053 (set_trace_buffer_size): New function.
7054 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
7055 * remote.c (remote_set_trace_buffer_size): New function.
7056 (_initialize_remote): Use it.
7057 (QTBuffer:size) New remote command.
7058 (PACKET_QTBuffer_size): New enum.
7059 (remote_protocol_features): Add an entry for
7060 PACKET_QTBuffer_size.
7061
7062 2013-03-08 Tom Tromey <tromey@redhat.com>
7063
7064 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
7065 variable.
7066
7067 2013-03-07 Pedro Alves <palves@redhat.com>
7068
7069 * target.c (target_read_stralloc, target_fileio_read_alloc):
7070 *Cast pointer to 'gdb_byte *' in target call.
7071
7072 2013-03-07 Pedro Alves <palves@redhat.com>
7073
7074 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
7075 call.
7076
7077 2013-03-07 Keith Seitz <keiths@redhat.com>
7078
7079 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
7080 (trace_pass_command): Likewise.
7081 * cli/cli-cmds.c: Include cli/cli-utils.h.
7082 (source_command): Use skip-spaces.
7083 (disassemble_command): Likewise.
7084 * findcmd.c: Include cli/cli-utils.h.
7085 (parse_find_args): Use skip_spaces.
7086 * go32-nat.c: Include cli/cli-utils.h.
7087 (go32_sldt): Use skip_spaces.
7088 (go32_sgdt): Likewise.
7089 (go32_sidt): Likewise.
7090 (go32_pde): Likewise.
7091 (go32_pte): Likewise.
7092 (go32_pte_for_address): Likewise.
7093 * infcmd.c: Include cli/cli-utils.h.
7094 (registers_info): Use skip_spaces.
7095 * linux-tdep.c (read_mapping): Use skip_spaces_const.
7096 (linux_info_proc): Likewise.
7097 * linux-thread-db.c: Include cli/cli-utils.h.
7098 (info_auto_load_libthread_db): Use skip_spaces_const.
7099 * m32r-rom.c: Include cli/cli-utils.h.
7100 (m32r_upload_command): Use skip_spaces.
7101 * maint.c: Include cli/cli-utils.h.
7102 (maintenance_translate_address): Use skip_spaces.
7103 * mi/mi-parse.c: Include cli/cli-utils.h.
7104 (mi_parse_argv): Use skip_spaces.
7105 (mi_parse): Likewise.
7106 * minsyms.c: Include cli/cli-utils.h.
7107 (msymbol_hash_iw): Use skip_spaces_const.
7108 * objc-lang.c: Include cli/cli-utils.h.
7109 (parse_selector): Use skip_spaces.
7110 (parse_method): Likewise.
7111 * python/python.c: Include cli/cli-utils.h.
7112 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
7113 (python_command)[HAVE_PYTHON]: Likewise.
7114 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
7115 * remote-m32r-sdi.c: Include cli/cli-utils.h.
7116 (m32r_load): Use skip_spaces.
7117 * serial.c: Include cli/cli-utils.h.
7118 (serial_open): Use skip_spaces_const.
7119 * stack.c: Include cli/cli-utils.h.
7120 (parse_frame_specification_1): Use skip_spaces_const.
7121 * symfile.c: Include cli/cli-utils.h.
7122 (set_ext_lang_command): Use skip_spaces.
7123 * symtab.c: Include cli/cli-utils.h.
7124 (rbreak_command): Use skip_spaces.
7125 * thread.c (thread_name_command): Use skip_spaces.
7126 * tracepoint.c (validate_actionline): Use skip_spaces.
7127 (encode_actions_1): Likewise.
7128 (trace_find_range_command): Likewise.
7129 (trace_find_outside_command): Likewise.
7130 (trace_dump_actions): Likewise.
7131
7132 2013-03-07 Pedro Alves <palves@redhat.com>
7133
7134 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
7135 * expprint.c (print_subexp_standard): Likewise.
7136 * utils.c (host_char_to_target): Likewise.
7137 * valprint.c (generic_emit_char, generic_printstr): Likewise.
7138 * varobj.c (value_get_print_value): Change type of local to char*.
7139 Cast it gdb_byte * in call to language printer.
7140
7141 2013-03-07 Pedro Alves <palves@redhat.com>
7142
7143 * charset.c (struct wchar_iterator) <input>: Change type to 'const
7144 gdb_byte *'.
7145 (make_wchar_iterator): Remove cast to char*.
7146 (wchar_iterate): Change type of local.
7147
7148 2013-03-07 Pedro Alves <palves@redhat.com>
7149
7150 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
7151 for 'regcache->register_status'.
7152
7153 2013-03-07 Pedro Alves <palves@redhat.com>
7154
7155 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
7156 int.
7157
7158 2013-03-07 Pedro Alves <palves@redhat.com>
7159
7160 * stap-probe.c (handle_stap_probe): Add cast to char*.
7161
7162 2013-03-07 Pedro Alves <palves@redhat.com>
7163
7164 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
7165 RECORD_MSGRCV>: Pass a signed variable to
7166 regcache_raw_read_signed, instead of an unsigned one.
7167
7168 2013-03-07 Pedro Alves <palves@redhat.com>
7169
7170 * remote-notif.c (notif_debug): Change type to int.
7171 * remote-notif.h (notif_debug): Likewise.
7172
7173 2013-03-07 Pedro Alves <palves@redhat.com>
7174
7175 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
7176
7177 2013-03-07 Pedro Alves <palves@redhat.com>
7178
7179 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
7180 * remote.h (hex2bin, bin2hex): ... here.
7181 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
7182
7183 2013-03-07 Eli Zaretskii <eliz@gnu.org>
7184
7185 * utils.c (initialize_utils): Improve doc strings of "set/show
7186 width", "set/show height", and "set/show pagination".
7187
7188 2013-03-06 Keith Seitz <keiths@redhat.com>
7189
7190 * ax-gdb.c (gen_printf): Make FORMAT const.
7191 * ax-gdb.h (gen_printf): Likewise.
7192 * ax-general.c (ax_string): Make STR const.
7193 * ax.h (ax_string): Likewise.
7194
7195 2013-03-06 Doug Evans <dje@google.com>
7196
7197 * elfread.c (elf_symfile_read): Move debugging printf to more
7198 logical location.
7199
7200 2013-03-06 Pedro Alves <palves@redhat.com>
7201
7202 * python/py-utils.c (target_string_to_unicode): Delete function.
7203 * python/python-internal.h (target_string_to_unicode): Delete
7204 declaration.
7205
7206 2013-03-06 Pierre Muller <muller@sourceware.org>
7207
7208 * linespec.c (get_current_search_block): ARI fix, use (void)
7209 for empty parameter list.
7210
7211 2013-03-05 Doug Evans <dje@google.com>
7212
7213 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
7214 of old ada_lookup_symbol_list. In !full_search case, don't
7215 search superblocks.
7216 (ada_lookup_symbol_list): Delete arg full_search, all callers
7217 updated. Call ada_lookup_symbol_list_worker.
7218 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
7219 * ada-lang.h (ada_lookup_symbol_list): Update.
7220 * language.h (language_defn): Update comment for
7221 la_iterate_over_symbols.
7222 * linespec.c (iterate_over_file_blocks): New function.
7223 (iterate_over_all_matching_symtabs): Call it.
7224 (lookup_prefix_sym): Ditto.
7225 (get_current_search_block): New function.
7226 (get_search_block): Delete.
7227 (find_label_symbols): Call get_current_search_block.
7228 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
7229 * symtab.c (iterate_over_symbols): Don't search superblocks.
7230
7231 2013-03-05 Yao Qi <yao@codesourcery.com>
7232
7233 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
7234 parameter VAR's type from "unsigned int" to "int".
7235 * command.h (var_zuinteger_unlimited): Update its comments.
7236 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
7237
7238 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
7239
7240 * NEWS: Mention new target x86_64-*-cygwin*.
7241
7242 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
7243
7244 * configure.host: Add x86_64-*-cygwin* as host.
7245 * configure.tgt: Add x86_64-*-cygwin* as target.
7246 * config/i386/cygwin64.mh: New file.
7247
7248 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
7249
7250 * linespec.c (decode_line_2): Fix duplicate request off by two message.
7251
7252 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
7253
7254 * linespec.c (struct linespec_canonical_name): New.
7255 (struct linespec_state): Change canonical_names type to it.
7256 (add_sal_to_sals): Change variable canonical_name to canonical. Change
7257 xrealloc element size. Initialize the different CANONICAL fields.
7258 (canonical_to_fullform): New.
7259 (filter_results): Use it. Add variables canonical, fullform and
7260 cleanup.
7261 (struct decode_line_2_item, decode_line_2_compare_items): New.
7262 (decode_line_2): Remove variables iter and item_names, add variables
7263 items and items_count. Modify the code for these new variables.
7264
7265 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
7266
7267 * coff-pe-read.c (read_pe_exported_syms): Don't return without
7268 calling do_cleanup.
7269
7270 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
7271
7272 * tracepoint.c (build_traceframe_info): Add code for byte order.
7273
7274 2013-03-02 Kevin Buettner <kevinb@redhat.com>
7275
7276 * v850-tdep.c: (v850e2_register_name): Revise system register
7277 names to match current V850E2M architecture specifications.
7278 Update register number enum comments too.
7279
7280 2013-03-01 Jiong Wang <jiwang@tilera.com>
7281 Pedro Alves <palves@redhat.com>
7282
7283 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
7284 to END_ADDR.
7285 (tilegx_skip_prologue): Limit prologue analysis to section end.
7286
7287 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
7288
7289 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
7290 use it.
7291
7292 2013-03-01 Pedro Alves <palves@redhat.com>
7293
7294 Use gdb_byte for bytes from the program being debugged.
7295
7296 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
7297 Change type of local 'buf' to gdb_byte.
7298 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
7299 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
7300 * cris-tdep.c (cris_sigcontext_addr)
7301 (cris_sigtramp_frame_unwind_cache): Likewise.
7302 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
7303 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
7304 Likewise.
7305 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
7306 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
7307 (hppa32_hpux_search_dummy_call_sequence)
7308 (hppa_hpux_supply_save_state): Likewise.
7309 * hppa-linux-tdep.c (insns_match_pattern)
7310 (hppa_linux_find_global_pointer): Likewise.
7311 * hppa-tdep.c (hppa_in_function_epilogue_p)
7312 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
7313 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
7314 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
7315 (i386fbsd_collect_uthread): Likewise.
7316 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
7317 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
7318 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
7319 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
7320 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
7321 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
7322 (ia64_libunwind_frame_prev_register)
7323 (ia64_libunwind_sigtramp_frame_this_id)
7324 (ia64_find_global_pointer_from_dynamic_section)
7325 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
7326 (ia64_unwind_pc): Likewise.
7327 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
7328 * m68hc11-tdep.c (m68hc11_push_dummy_call)
7329 (m68hc11_extract_return_value): Likewise.
7330 * m68klinux-nat.c (fetch_register, store_register): Likewise.
7331 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
7332 (mep_get_insn, mep_push_dummy_call): Likewise.
7333 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
7334 (mips_linux_in_dynsym_stub): Likewise.
7335 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
7336 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
7337 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
7338 to gdb_byte.
7339 * remote-mips.c (mips_set_register): Likewise.
7340 * remote-sim.c (gdbsim_fetch_register): Likewise.
7341 * score-tdep.c (score7_fetch_inst): Change type of parameter
7342 'memblock' and local 'buf' to gdb_byte.
7343 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
7344 Change type of local 'buf' to gdb_byte. Adjust.
7345 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
7346 to gdb_byte**.
7347 (score7_analyze_prologue): Change type of 'memblock' and
7348 'memblock_ptr' locals to gdb_byte*.
7349 * sh64-tdep.c (sh64_extract_return_value)
7350 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
7351 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
7352 * solib-pa64.c (pa64_solib_create_inferior_hook)
7353 (pa64_open_symbol_file_object): Remove local 'buf'.
7354 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
7355 (som_open_symbol_file_object): Likewise.
7356 * solib-spu.c (spu_current_sos): Likewise.
7357 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
7358 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
7359 (spu_store_registers): Likewise.
7360 * target.c (debug_print_register): Likewise.
7361 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
7362 * xstormy16-tdep.c (xstormy16_store_return_value)
7363 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
7364 (xstormy16_find_jmp_table_entry): Likewise.
7365
7366 2013-03-01 Jiong Wang <jiwang@tilera.com>
7367
7368 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
7369 (tilegx_gdbarch_init): Install it.
7370
7371 2013-02-28 Tom Tromey <tromey@redhat.com>
7372
7373 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
7374 PyLong_Check.
7375
7376 2013-02-28 Doug Evans <dje@google.com>
7377
7378 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
7379 * python/python.c (gdbpy_find_pc_line): Ditto.
7380
7381 2013-02-28 Tom Tromey <tromey@redhat.com>
7382
7383 * contrib/excheck.py: New file.
7384 * contrib/exsummary.py: New file.
7385 * contrib/gcc-with-excheck: New file.
7386
7387 2013-02-28 Tom Tromey <tromey@redhat.com>
7388
7389 * python/python.c (gdbpy_print_stack): Call begin_line and
7390 fprintf_filtered inside TRY_CATCH.
7391
7392 2013-02-28 Tom Tromey <tromey@redhat.com>
7393
7394 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
7395 inside TRY_CATCH.
7396
7397 2013-02-28 Tom Tromey <tromey@redhat.com>
7398
7399 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
7400 frame_object_to_frame_info inside TRY_CATCH.
7401
7402 2013-02-28 Tom Tromey <tromey@redhat.com>
7403
7404 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
7405 TRY_CATCH.
7406
7407 2013-02-28 Tom Tromey <tromey@redhat.com>
7408
7409 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
7410
7411 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
7412
7413 * windows-nat.c: Throughout, fix format strings and casts of
7414 printf-like functions to avoid type related warnings on all
7415 platforms.
7416 (handle_output_debug_string): Fetch context information address
7417 from debug string using string_to_core_addr.
7418
7419 2013-02-27 Jiong Wang <jiwang@tilera.com>
7420
7421 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
7422 * regformats/reg-tilegx32.dat: New.
7423
7424 2013-02-27 Jiong Wang <jiwang@tilera.com>
7425
7426 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
7427
7428 2013-02-27 Jiong Wang <jiwang@tilera.com>
7429
7430 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
7431
7432 2013-02-27 Yao Qi <yao@codesourcery.com>
7433 Pedro Alves <palves@redhat.com>
7434
7435 * tracepoint.c (tfile_trace_find): For tfind
7436 pc/tp/range/outside, look for the next trace frame instead of
7437 always starting from frame 0.
7438
7439 2013-02-26 Anthony Green <green@moxielogic.com>
7440
7441 * configure.tgt: Add support for moxie-*-rtems* target.
7442
7443 2013-02-25 Pedro Alves <palves@redhat.com>
7444
7445 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
7446 warning text.
7447
7448 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
7449
7450 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
7451 if $fp is used as the virtual frame pointer.
7452
7453 2013-02-23 Alan Modra <amodra@gmail.com>
7454
7455 * elfread.c (elf_symtab_read): Do not use udata.p here to find
7456 symbol size.
7457 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
7458 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
7459 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
7460 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
7461
7462 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
7463
7464 Code cleanup.
7465 * elfread.c (build_id_bfd_get): Make the return type const.
7466 (build_id_verify): Make the check parameter const.
7467 (build_id_to_debug_filename): Make the build_id parameter and variable
7468 data const.
7469 (find_separate_debug_file_by_buildid): Make the variable build_id const.
7470
7471 2013-02-21 Alan Modra <amodra@gmail.com>
7472
7473 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
7474
7475 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
7476
7477 Add a new method 'disassemble' to gdb.Architecture class.
7478 * python/py-arch.c (archpy_disassmble): Implementation of the
7479 new method gdb.Architecture.disassemble.
7480 (arch_object_methods): Add entry for the new method.
7481
7482 2013-02-20 Jiong Wang <jiwang@tilera.com>
7483
7484 * MAINTAINERS (Write After Approval): Add myself to the list.
7485
7486 2013-02-19 Pedro Alves <palves@redhat.com>
7487
7488 Garbage collect 'struct monitor_ops'::load_routine.
7489
7490 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
7491 * monitor.c (monitor_load): No longer call
7492 current_monitor->load_routine.
7493 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
7494 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
7495 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
7496
7497 2013-02-19 Pedro Alves <palves@redhat.com>
7498
7499 PR gdb/15161
7500
7501 Harmonize with generic_load.
7502
7503 * monitor.c: Include "readline/readline.h".
7504 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
7505 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
7506 long/strtol for the 'load_offset' local. Error out if no argument
7507 is given or if too many arguments are given. Tilde expand the
7508 passed in file name.
7509
7510 2013-02-19 Kai Tietz <ktietz@redhat.com>
7511
7512 PR gdb/15161
7513 * symfile.c (load_section_data): Change type of load_offset
7514 to CORE_ADDR.
7515 (generic_load): User strtoulst instead of strtoul for conversion
7516 of load_offset.
7517
7518 2013-02-19 Jiong Wang <jiwang@tilera.com>
7519
7520 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
7521 for return address, "lr" register, saved on stack.
7522 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
7523 after we invoke tilegx_analyze_prologue.
7524
7525 2013-02-19 Jiong Wang <jiwang@tilera.com>
7526
7527 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
7528
7529 2013-02-19 Jiong Wang <jiwang@tilera.com>
7530
7531 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
7532
7533 2013-02-19 Jiong Wang <jiwang@tilera.com>
7534
7535 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
7536 (tilegx_write_pc): New function.
7537 (tilegx_cannot_reference_register): Return zero if REGNO
7538 is TILEGX_FAULTNUM_REGNUM.
7539 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
7540 (tilegx_register_name): Add handling of "faultnum" register.
7541 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
7542 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
7543 handling of TILEGX_FAULTNUM_REGNUM.
7544 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
7545
7546 2013-02-19 Jiong Wang <jiwang@tilera.com>
7547
7548 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
7549 should be aligned to 64bit.
7550
7551 2013-02-19 Kai Tietz <ktietz@redhat.com>
7552
7553 * windows-nat.c (windows_xfer_memory): Fix debug-output
7554 for LLP64.
7555
7556 2013-02-19 Lei Liu <lei.liu2@windriver.com>
7557
7558 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
7559 Don't check DSP register number if HAVE_DSP is not set.
7560
7561 2013-02-19 Alan Modra <amodra@gmail.com>
7562
7563 * elfread.c (struct build_id): Delete. Use struct elf_build_id
7564 throughout file instead.
7565 (build_id_bfd_get): Update to use new elf_tdata build_id field.
7566 Don't xmalloc return value.
7567 (build_id_verify): Similarly. Don't xfree.
7568 (build_id_to_debug_filename): Update.
7569 (find_separate_debug_file_by_buildid): Update, don't xfree.
7570
7571 2013-02-18 Tom Tromey <tromey@redhat.com>
7572
7573 PR gdb/15102:
7574 * dwarf2read.c (read_subrange_type): Use result of
7575 'check_typedef'.
7576
7577 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
7578
7579 * frame.c: Remove one extra white space after #include
7580 directive.
7581
7582 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
7583
7584 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
7585
7586 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
7587
7588 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
7589 and dir commands into an if block.
7590
7591 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
7592
7593 * python/py-breakpoint (struct pybp_code): Use int instead of
7594 enum type_code.
7595
7596 2013-02-15 Pedro Alves <pedro@codesourcery.com>
7597 Hafiz Abid Qadeer <abidh@codesourcery.com>
7598
7599 * NEWS: Mention new field "trace-file".
7600 * tracepoint.c (trace_status_mi): Output "trace-file" field.
7601 (tfile_open): Record the trace file's filename in the trace
7602 status.
7603 (tfile_files_info): Mention the name of the trace file.
7604 Check the "filename" field explicitely.
7605 (trace_status_command): Explicitely check "filename" field.
7606 (trace_find_command): Ditto.
7607 (trace_find_pc_command): Ditto.
7608 (trace_find_tracepoint_command): Ditto.
7609 (trace_find_line_command): Ditto.
7610 (trace_find_range_command): Ditto.
7611 (trace_find_outside_command): Ditto.
7612 * tracepoint.h (struct trace_status) <from_file>: Rename it
7613 to "filename" and make it hold the trace file's filename
7614 instead of a boolean.
7615 * remote.c (remote_get_trace_status): Initialize "filename"
7616 field with NULL instead of 0.
7617
7618 2013-02-15 Yao Qi <yao@codesourcery.com>
7619
7620 * remote.c: Fix a typo.
7621
7622 2013-02-14 Pierre Muller <muller@sourceware.org>
7623
7624 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
7625
7626 2013-02-14 Pedro Alves <palves@redhat.com>
7627
7628 * utils.c (savestring): Don't #undef it. Move function to
7629 common/common-utils.c.
7630 * common/common-utils.c: Include gdb_string.h.
7631 (savestring): Move here from utils.c.
7632 * common/common-utils.h (savestring): Declare.
7633
7634 2013-02-14 Pedro Alves <palves@redhat.com>
7635
7636 * utils.c (savestring): Rename parameter 'size' to 'len'.
7637
7638 2013-02-14 Pedro Alves <palves@redhat.com>
7639 Yufeng Zhang <yufeng.zhang@arm.com>
7640
7641 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
7642 (aarch64_inferior_data, struct aarch64_inferior_data):
7643 Delete.
7644 (struct aarch64_process_info): New.
7645 (aarch64_process_list): New global.
7646 (aarch64_find_process_pid, aarch64_add_process)
7647 (aarch64_process_info_get): New functions.
7648 (aarch64_inferior_data_get): Delete.
7649 (aarch64_process_info_get): New function.
7650 (aarch64_forget_process): New function.
7651 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
7652 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
7653 aarch64_get_debug_reg_state.
7654 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
7655 instead of linux_nat_iterate_watchpoint_lwps.
7656 (aarch64_linux_new_fork): New function.
7657 (aarch64_linux_child_post_startup_inferior): Use
7658 aarch64_forget_process instead of aarch64_init_debug_reg_state.
7659 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
7660 (aarch64_linux_remove_hw_breakpoint)
7661 (aarch64_handle_aligned_watchpoint)
7662 (aarch64_handle_unaligned_watchpoint)
7663 (aarch64_linux_insert_watchpoint)
7664 (aarch64_linux_remove_watchpoint)
7665 (aarch64_linux_stopped_data_address): Adjust to pass the current
7666 process id to aarch64_debug_reg_state.
7667 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
7668 linux_nat_new_fork hook, and aarch64_forget_process as
7669 linux_nat_forget_process hook; remove the call to
7670 register_inferior_data_with_cleanup.
7671
7672 2013-02-14 Pedro Alves <palves@redhat.com>
7673
7674 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
7675 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
7676 lval_memory.
7677
7678 2013-02-14 Pedro Alves <pedro@codesourcery.com>
7679 Hafiz Abid Qadeer <abidh@codesourcery.com>
7680
7681 * tracepoint.h (validate_trace_state_variable_name): Declare.
7682 * tracepoint.c (validate_trace_state_variable_name): New.
7683 (trace_variable_command): Parse the trace state variable's name
7684 without using parse_expression. Do several validations.
7685 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
7686 trace state variable's name with parse_expression. Validate it.
7687
7688 2013-02-14 Yao Qi <yao@codesourcery.com>
7689
7690 * infcmd.c (breakpoint_proceeded): Remove it.
7691
7692 2013-02-14 Yao Qi <yao@codesourcery.com>
7693
7694 * tracepoint.c (end_actions_pseudocommand): Make it static.
7695 (while_stepping_pseudocommand): Likewise.
7696 * tracepoint.h (end_actions_pseudocommand): Remove the
7697 declaration.
7698 (while_stepping_pseudocommand): Likewise.
7699
7700 2013-02-14 Yao Qi <yao@codesourcery.com>
7701
7702 * cli/cli-decode.c (help_cmd): Remove the declaration of
7703 "cmdlist".
7704 (help_all): Likewise.
7705
7706 2013-02-13 Pedro Alves <palves@redhat.com>
7707
7708 * amd64-linux-nat.c (update_debug_registers_callback):
7709 Update comment.
7710 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
7711 iterate_over_lwps.
7712 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
7713 i386_debug_reg_state.
7714 (amd64_linux_new_fork): New function.
7715 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
7716 linux_nat_new_fork hook, and i386_forget_process as
7717 linux_nat_forget_process hook.
7718 * i386-linux-nat.c (update_debug_registers_callback):
7719 Update comment.
7720 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
7721 iterate_over_lwps.
7722 (i386_linux_prepare_to_resume): Pass the lwp's pid to
7723 i386_debug_reg_state.
7724 (i386_linux_new_fork): New function.
7725 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
7726 linux_nat_new_fork hook, and i386_forget_process as
7727 linux_nat_forget_process hook.
7728 * i386-nat.c (i386_init_dregs): Delete.
7729 (i386_inferior_data, struct i386_inferior_data):
7730 Delete.
7731 (struct i386_process_info): New.
7732 (i386_process_list): New global.
7733 (i386_find_process_pid, i386_add_process, i386_process_info_get):
7734 New functions.
7735 (i386_inferior_data_get): Delete.
7736 (i386_process_info_get): New function.
7737 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
7738 (i386_forget_process): New function.
7739 (i386_cleanup_dregs): Rewrite.
7740 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
7741 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
7742 (i386_stopped_data_address, i386_insert_hw_breakpoint)
7743 (i386_remove_hw_breakpoint): Adjust to pass the current process id
7744 to i386_debug_reg_state.
7745 (i386_use_watchpoints): Don't register inferior data.
7746 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
7747 adjust comment.
7748 (i386_forget_process): Declare.
7749 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
7750 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
7751 New static globals.
7752 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
7753 (add_initial_lwp): New, factored out from ...
7754 (add_lwp): ... this. Don't check the number of lwps before
7755 calling linux_nat_new_thread.
7756 (linux_nat_iterate_watchpoint_lwps): Delete.
7757 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
7758 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
7759 forks and vforks.
7760 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
7761 initial lwp.
7762 (linux_nat_kill, linux_nat_mourn_inferior): Call
7763 linux_nat_forget_process.
7764 (linux_nat_set_new_fork, linux_nat_set_forget_process)
7765 (linux_nat_forget_process): New functions.
7766 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
7767 type.
7768 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
7769 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
7770 types.
7771 (linux_nat_set_new_fork, linux_nat_set_forget_process)
7772 (linux_nat_forget_process): New declarations.
7773
7774 * amd64fbsd-nat.c (super_mourn_inferior): New global.
7775 (amd64fbsd_mourn_inferior): New function.
7776 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
7777 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
7778
7779 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
7780
7781 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
7782 Adding _().
7783
7784 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
7785
7786 * aarch64-linux-nat.c (debug_reg_change_callback)
7787 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
7788 %s and phex().
7789
7790 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
7791
7792 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
7793 with LONGEST.
7794
7795 2013-02-13 Pedro Alves <palves@redhat.com>
7796 Hafiz Abid Qadeer <abidh@codesourcery.com>
7797
7798 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
7799
7800 2013-02-12 Tom Tromey <tromey@redhat.com>
7801
7802 PR symtab/11464:
7803 * c-exp.y (lex_one_token): Initialize other fields of yylval on
7804 NAME return.
7805 (classify_inner_name): Remove 'first_name' argument, add
7806 'context'. Remove unused variable.
7807 (yylex): Explicitly maintain the context type. Exit loop earlier
7808 if NAME result is seen.
7809
7810 2013-02-12 Pedro Alves <palves@redhat.com>
7811
7812 * amd64-darwin-tdep.c: Add (C) after Copyright.
7813 * cli/cli-cmds.h: Ditto.
7814 * cli/cli-decode.c: Ditto.
7815 * cli/cli-decode.h: Ditto.
7816 * cli/cli-dump.c: Ditto.
7817 * cli/cli-dump.h: Ditto.
7818 * cli/cli-interp.c: Ditto.
7819 * cli/cli-logging.c: Ditto.
7820 * cli/cli-script.c: Ditto.
7821 * cli/cli-script.h: Ditto.
7822 * cli/cli-setshow.c: Ditto.
7823 * cli/cli-setshow.h: Ditto.
7824 * cli/cli-utils.c: Ditto.
7825 * cli/cli-utils.h: Ditto.
7826 * config/alpha/nm-osf3.h: Ditto.
7827 * config/djgpp/djconfig.sh: Ditto.
7828 * config/i386/nm-fbsd.h: Ditto.
7829 * config/i386/nm-i386gnu.h: Ditto.
7830 * config/nm-linux.h: Ditto.
7831 * config/nm-nto.h: Ditto.
7832 * config/rs6000/nm-rs6000.h: Ditto.
7833 * config/sparc/nm-sol2.h: Ditto.
7834 * darwin-nat-info.c: Ditto.
7835 * dfp.c: Ditto.
7836 * dfp.h: Ditto.
7837 * gdb-demangle.h: Ditto.
7838 * i386-darwin-nat.c: Ditto.
7839 * i386-darwin-tdep.c: Ditto.
7840 * linux-fork.h: Ditto.
7841 * m32c-tdep.c: Ditto.
7842 * microblaze-linux-tdep.c: Ditto.
7843 * microblaze-rom.c: Ditto.
7844 * microblaze-tdep.c: Ditto.
7845 * microblaze-tdep.h: Ditto.
7846 * mips-linux-tdep.h: Ditto.
7847 * ppc-ravenscar-thread.c: Ditto.
7848 * ppc-ravenscar-thread.h: Ditto.
7849 * prologue-value.c: Ditto.
7850 * prologue-value.h: Ditto.
7851 * ravenscar-thread.c: Ditto.
7852 * ravenscar-thread.h: Ditto.
7853 * sparc-ravenscar-thread.c: Ditto.
7854 * sparc-ravenscar-thread.h: Ditto.
7855 * tilegx-linux-tdep.c: Ditto.
7856 * unwind_stop_reasons.def: Ditto.
7857 * windows-nat.h: Ditto.
7858 * xtensa-linux-tdep.c: Ditto.
7859 * xtensa-xtregs.c: Ditto.
7860 * regformats/regdat.sh: Ditto.
7861 * regformats/regdef.h: Ditto.
7862
7863 2013-02-12 Pedro Alves <palves@redhat.com>
7864
7865 * break-catch-sig.c: Update copyright years.
7866
7867 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
7868
7869 Add support for a destructor for ui_out data and use it to
7870 provide a ui_out destructor.
7871 * ui-out.h: Declare the new ui_out destructor.
7872 (ui_out_impl): Add a field for data destructor in ui_out_impl.
7873 * ui-out.c (default_data_destroy): Add a default data destructor
7874 which does nothing.
7875 (default_ui_out_impl): Set the new data_destroy field to
7876 default_data_destroy
7877 (uo_data_destroy): Local function which invokes the data
7878 destructor if present.
7879 (clear_table): Local function which clears the table data of a
7880 ui_out object.
7881 (ui_out_destroy): Public function which frees a ui_out object.
7882 (ui_out_table_end): Use the new clear_table function.
7883 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
7884 NULL.
7885 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
7886 to NULL.
7887
7888 2013-02-11 Doug Evans <dje@google.com>
7889
7890 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
7891 (printf_decfloat): New function. Broken out from ui_printf.
7892 Remove unnecessary code to shift the entire format string down.
7893 (printf_pointer): New function.
7894 (ui_printf): Code to print C strings, wide C strings, decfloats,
7895 and pointers moved to separate functions.
7896
7897 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
7898
7899 * valops.c (value_assign): Handling bitfield offset in
7900 `lval_internalvar_component' case.
7901
7902 2013-02-08 Doug Evans <dje@google.com>
7903
7904 * common/format.c (parse_format_string): Fix whitespace.
7905
7906 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
7907
7908 * stack.c (return_command): Work around uninitialized variable
7909 warning.
7910
7911 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
7912
7913 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
7914 number of the registers from 36 to 34.
7915
7916 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
7917
7918 * NEWS: Mention new AArch64 native and target support.
7919
7920 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
7921
7922 * MAINTAINERS (Write After Approval): Add myself.
7923
7924 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
7925 Marcus Shawcroft <marcus.shawcroft@arm.com>
7926 Nigel Stephens <nigel.stephens@arm.com>
7927 Yufeng Zhang <yufeng.zhang@arm.com>
7928
7929 * aarch64-linux-nat.c: New file.
7930 * config/aarch64/linux.mh: New file.
7931 * configure.host: Add AArch64.
7932 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
7933
7934 2013-02-07 Doug Evans <dje@google.com>
7935
7936 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
7937 disassemble command.
7938
7939 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
7940
7941 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
7942 set_gdbarch_fetch_tls_load_module_address.
7943
7944 2013-02-06 David S. Miller <davem@davemloft.net>
7945
7946 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
7947 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
7948 * value.c (struct_return_convention): New function.
7949 (using_struct_return): Implement in terms of struct_return_convention.
7950 * value.h (struct_return_convention): Declare.
7951 * stack.c (return_command): Allow successful overriding of the return
7952 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
7953
7954 2013-02-06 Tom Tromey <tromey@redhat.com>
7955
7956 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
7957 outside of TRY_CATCH.
7958
7959 2013-02-06 Yao Qi <yao@codesourcery.com>
7960
7961 * mi/mi-interp.c: Include "tracepoint.h".
7962 (mi_tsv_modified): Declare.
7963 (mi_tsv_created, mi_tsv_deleted): Update declaration.
7964 (mi_interpreter_init): Call observer_attach_tsv_modified.
7965 (mi_tsv_modified): New.
7966 (mi_tsv_created, mi_tsv_deleted): Update.
7967 * tracepoint.c (trace_variable_command): Call
7968 observer_notify_tsv_modified if the initial value of tsv is
7969 changed.
7970 (delete_trace_state_variable): Call
7971 observer_notify_tsv_deleted earlier.
7972 (trace_variable_command): Caller update.
7973 (create_tsv_from_upload): Likewise.
7974 * observer.sh: Declare "struct trace_state_variable".
7975
7976 * NEWS: Mention the new MI notification "=tsv-modified".
7977
7978 2013-02-05 Doug Evans <dje@google.com>
7979
7980 * completer.c (location_completer): Fix typo in comment.
7981
7982 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7983
7984 * breakpoint.c (add_location_to_breakpoint): Insert the location with
7985 ADDRESS sorted.
7986
7987 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
7988
7989 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
7990 Refactor if statement to avoid trailing || operator.
7991
7992 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
7993
7994 * NEWS: Add PowerPC FreeBSD as a new native configuration.
7995
7996 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
7997
7998 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
7999 * configure.host: Add powerpc*-*-freebsd* target.
8000 * configure.tgt: Add target info for powerpc*-*-freebsd*.
8001 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
8002 * config/powerpc/fbsd.mh: New file.
8003
8004 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
8005 Denys Vlasenko <dvlasenk@redhat.com>
8006 Pedro Alves <palves@redhat.com>
8007
8008 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
8009 (struct elf_internal_linux_prpsinfo): Forward declare.
8010 * gdbarch.h, gdbarch.c: Regenerate.
8011 * linux-tdep.c: Include `cli/cli-utils.h'.
8012 (linux_fill_prpsinfo): New function.
8013 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
8014 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
8015 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
8016 depending on gdbarch pointer bitness.
8017 * ppc-linux-tdep.c: Include elf-bfd.h.
8018 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
8019 on 32-bit.
8020
8021 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
8022 Marcus Shawcroft <marcus.shawcroft@arm.com>
8023 Nigel Stephens <nigel.stephens@arm.com>
8024 Yufeng Zhang <yufeng.zhang@arm.com>
8025
8026 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
8027
8028 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
8029 Marcus Shawcroft <marcus.shawcroft@arm.com>
8030 Nigel Stephens <nigel.stephens@arm.com>
8031 Yufeng Zhang <yufeng.zhang@arm.com>
8032
8033 * aarch64-newlib-tdep.c: New file.
8034 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
8035 aarch64*-*-elf.
8036 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
8037 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
8038 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
8039 * osabi.c (gdb_osabi_names): Add "Newlib".
8040
8041 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
8042 Marcus Shawcroft <marcus.shawcroft@arm.com>
8043 Nigel Stephens <nigel.stephens@arm.com>
8044 Yufeng Zhang <yufeng.zhang@arm.com>
8045
8046 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
8047 (ALLDEPFILES): Add aarch64-linux-tdep.c.
8048 * aarch64-linux-tdep.c: New file.
8049 * aarch64-linux-tdep.h: New file.
8050 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
8051 * configure.tgt: Add aarch64-none-linux-gnu.
8052
8053 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
8054 Marcus Shawcroft <marcus.shawcroft@arm.com>
8055 Nigel Stephens <nigel.stephens@arm.com>
8056 Yufeng Zhang <yufeng.zhang@arm.com>
8057
8058 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
8059 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
8060 (ALLDEPFILES): Add aarch64-tdep.c.
8061 * aarch64-tdep.c: New file.
8062 * aarch64-tdep.h: New file.
8063 * configure.tgt: Add AArch64.
8064 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
8065 (aarch64-expedite): New definition.
8066 * features/aarch64-core.xml: New file.
8067 * features/aarch64-fpu.xml: New file.
8068 * features/aarch64-without-fpu.c: New file (generated).
8069 * features/aarch64-without-fpu.xml: New file.
8070 * features/aarch64.c: New file (generated).
8071 * features/aarch64.xml: New file.
8072 * regformats/aarch64-without-fpu.dat: New file (generated).
8073 * regformats/aarch64.dat: New file (generated).
8074
8075 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8076
8077 * contrib/expect-read1.c: New file.
8078 * contrib/expect-read1.sh: New file.
8079
8080 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8081
8082 * dwarf2read.c (file_file_name): New function with code from
8083 file_full_name.
8084 (file_full_name): Move most of the code to file_file_name.
8085 (macro_start_file): Rename variable full_name to file_name and use
8086 file_file_name for it. Add comp_dir parameter to new_macro_table.
8087 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
8088 macro_source_file->filename access by macro_source_fullname call.
8089 * macroscope.c (_initialize_macroscope): Update the new_macro_table
8090 caller.
8091 * macrotab.c (struct macro_table): New field comp_dir.
8092 (macro_include): New variables link_fullname and source_fullname.
8093 Replace any macro_source_file->filename access by macro_source_fullname
8094 call.
8095 (macro_lookup_inclusion): Remove the partial filenames checking code.
8096 (check_for_redefinition): New variables source_fullname and
8097 found_key_fullname. Replace any macro_source_file->filename access by
8098 macro_source_fullname call.
8099 (macro_undef): New variables source_fullname and key_fullname. Replace
8100 any macro_source_file->filename access by macro_source_fullname call.
8101 (macro_lookup_definition): New variables retval and source_fullname.
8102 Replace any macro_source_file->filename access by macro_source_fullname
8103 call.
8104 (foreach_macro): New variable key_fullname. Replace any
8105 macro_source_file->filename access by macro_source_fullname call.
8106 (foreach_macro_in_scope): New variable datum_fullname. Replace any
8107 macro_source_file->filename access by macro_source_fullname call.
8108 (new_macro_table): Add parameter comp_dir. Initialize T with it.
8109 (macro_source_fullname): New function.
8110 * macrotab.h (struct macro_source_file): Extent the filename field
8111 comment.
8112 (new_macro_table): New parameter comp_dir, add a comment for it.
8113 (macro_source_fullname): new declaration.
8114
8115 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8116
8117 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
8118 this_real_name to outer block. Use it also for
8119 compare_filenames_for_search.
8120 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
8121 with dw2_get_real_path for file_matcher, considering also
8122 BASENAMES_MAY_DIFFER.
8123 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
8124
8125 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8126
8127 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
8128 to the file_matcher parameter. Pass 0 to it.
8129 (dwarf2_create_include_psymtab): Copy also DIRNAME.
8130 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
8131 NULL psymtab_to_fullname result.
8132 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
8133 an expected filename instead.
8134 (expand_symtabs_matching_via_partial): Add basenames parameter to the
8135 file_matcher parameter. Call also psymtab_to_fullname, after newly
8136 considering BASENAMES_MAY_DIFFER.
8137 * source.c (rewrite_source_path): Remove static.
8138 * source.h (rewrite_source_path): New declaration.
8139 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
8140 the expand_symtabs_matching field. Comment it.
8141 * symtab.c (file_matches): New function comment. Add parameter
8142 basenames, implement it.
8143 (search_symbols_file_matches): Add basenames parameter. Update the
8144 file_matches caller.
8145 (search_symbols): Match FILES also against symtab_to_fullname.
8146 Optimize it for BASENAMES_MAY_DIFFER.
8147
8148 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8149
8150 * source.c (print_source_lines_base): Print for TUI also "fullname".
8151 * tui/tui-data.c (init_content_element): Change tui_locator_element
8152 field to full_name.
8153 * tui/tui-data.h (struct tui_locator_element): Likewise.
8154 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
8155 tui_update_locator_filename calls to tui_update_locator_fullname.
8156 Replace symtab->filename refererence by symtab_to_fullname call.
8157 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
8158 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
8159 field to full_name. Replace symtab->filename refererence by
8160 symtab_to_fullname call.
8161 (tui_show_symtab_source): Rename parameter to fullname. Change
8162 tui_locator_element field to full_name.
8163 * tui/tui-stack.c: Include source.h.
8164 (tui_set_locator_filename): Rename the declaration to ...
8165 (tui_set_locator_fullname): ... here. Rename its parameter to
8166 fullname, updates its comment.
8167 (tui_set_locator_info): Rename its parameter to fullname.
8168 (tui_set_locator_filename): Rename the definition to ...
8169 (tui_set_locator_fullname): ... here. Rename its parameter to
8170 fullname, updates its comment. Change tui_locator_element field to
8171 full_name.
8172 (tui_set_locator_info): Rename its parameter to fullname.
8173 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
8174 (tui_update_locator_filename): Rename to ...
8175 (tui_update_locator_fullname): ... here. Rename callee to
8176 tui_set_locator_fullname.
8177 (tui_show_frame_info): Replace symtab->filename refererence by
8178 symtab_to_fullname call.
8179 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
8180 (tui_update_locator_fullname): ... here.
8181 * tui/tui-winsource.c (tui_display_main): Rename the callee to
8182 tui_update_locator_fullname. Replace symtab->filename refererence by
8183 symtab_to_fullname call.
8184 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
8185 Rename the callee to tui_update_locator_fullname.
8186 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
8187
8188 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8189
8190 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
8191 by symtab_to_filename_for_display calls.
8192 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
8193 (clear_command): New variable sal_fullname, initialize it. Replace
8194 compare_filenames_for_search by filename_cmp with sal_fullname.
8195 (say_where, update_static_tracepoint): Replace symtab->filename
8196 refererences by symtab_to_filename_for_display calls.
8197 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
8198 Likewise.
8199 * dwarf2read.c: Include source.h.
8200 (fixup_go_packaging): Replace symtab->filename refererences by
8201 symtab_to_filename_for_display calls.
8202 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
8203 Replace symtab->filename refererences by symtab_to_filename_for_display
8204 calls.
8205 (create_sals_line_offset, convert_linespec_to_sals): New variable
8206 fullname, initialize it, replace symtab->filename reference by the
8207 variable.
8208 * linux-fork.c: Include source.h.
8209 (info_checkpoints_command): Replace symtab->filename refererences by
8210 symtab_to_filename_for_display calls.
8211 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
8212 by symtab_to_filename_for_display calls.
8213 * mdebugread.c: Include source.h.
8214 (psymtab_to_symtab_1): Replace symtab->filename refererences by
8215 symtab_to_filename_for_display calls.
8216 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
8217 (mi_cmd_file_list_exec_source_files): Likewise.
8218 * printcmd.c: Include source.h.
8219 (build_address_symbolic): Replace symtab->filename refererences by
8220 symtab_to_filename_for_display calls.
8221 * psymtab.c (partial_map_symtabs_matching_filename)
8222 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
8223 with psymtab_to_fullname.
8224 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
8225 by symtab_to_filename_for_display calls.
8226 (stpy_get_filename): New variable filename, initialize it, use instead
8227 of symtab->filename refererences.
8228 (salpy_str): Make variable filename const char *. Replace
8229 symtab->filename refererences by symtab_to_filename_for_display calls.
8230 * skip.c: Include source.h and filenames.h.
8231 (skip_file_command): Remove const from the symtab variable. Replace
8232 symtab->filename refererences by symtab_to_fullname call.
8233 (function_name_is_marked_for_skip): New variables searched_for_fullname
8234 and fullname. Use them to search also with symtab's fullname.
8235 * source.c (find_source_lines): Replace symtab->filename refererences
8236 by symtab_to_filename_for_display calls.
8237 (print_source_lines_base): New variable filename, use it instead of
8238 symtab->filename. Replace symtab->filename refererences by
8239 symtab_to_filename_for_display calls.
8240 (line_info, forward_search_command): Replace symtab->filename
8241 refererences by symtab_to_filename_for_display calls.
8242 (reverse_search_command): Replace symtab->filename refererences by
8243 symtab_to_filename_for_display calls. New variable filename for it.
8244 * stack.c (frame_info): Likewise.
8245 * symmisc.c: Include source.h.
8246 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
8247 (maintenance_info_symtabs): Replace symtab->filename refererences by
8248 symtab_to_filename_for_display calls.
8249 * symtab.c (iterate_over_some_symtabs): Call
8250 compare_filenames_for_search also with symtab_to_fullname.
8251 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
8252 symtab->filename refererences by symtab_to_filename_for_display calls.
8253 (find_line_symtab): Replace symtab->filename refererences by
8254 symtab_to_filename_for_display calls.
8255 (file_matches): Replace filename_cmp by compare_filenames_for_search.
8256 (print_symbol_info): Make the last parameter const char *. New
8257 variable s_filename. Use it in the function.
8258 (symtab_symbol_info): Make the last_filename variable const char *.
8259 Replace symtab->filename refererences by symtab_to_filename_for_display
8260 calls.
8261 (rbreak_command): New variable fullname. Use it. Replace
8262 symtab->filename refererence by symtab_to_filename_for_display call.
8263 * tracepoint.c (set_traceframe_context, trace_find_line_command)
8264 (print_one_static_tracepoint_marker): Replace symtab->filename
8265 refererences by symtab_to_filename_for_display calls.
8266 * tui/tui-source.c (tui_set_source_content): New variables filename and
8267 s_filename. Replace symtab->filename refererences by this variable.
8268 Replace other symtab->filename refererences by
8269 symtab_to_filename_for_display calls.
8270
8271 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
8272 Jan Kratochvil <jan.kratochvil@redhat.com>
8273
8274 Add a new variable that controls a way in which filenames are
8275 displayed.
8276 * NEWS (set filename-display): New entry.
8277 * source.c (filename_display_basename, filename_display_relative)
8278 (filename_display_absolute, filename_display_kind_names)
8279 (filename_display_string, show_filename_display_string)
8280 (symtab_to_filename_for_display): New.
8281 (_initialize_source): Added initialization of 'filename-display'
8282 variable.
8283 * source.h (symtab_to_filename_for_display): Added declaration.
8284 * stack.c (print_frame): Added new variable and calling of a new
8285 function and condition with this variable. Changed third argument of
8286 calling of a function.
8287
8288 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8289
8290 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
8291 Rename field reference filename to fullname.
8292 * tui/tui-data.h (struct tui_source_info): Rename field filename to
8293 fullname. New comment for it.
8294 * tui/tui-source.c (tui_set_source_content): Rename field reference
8295 filename to fullname. Initialize field by symtab_to_fullname now.
8296 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
8297 reference filename to fullname. Use symtab_to_fullname during
8298 comparison.
8299
8300 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8301
8302 Code cleanup.
8303 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
8304 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
8305 filename to fullname. Rename variable this_name to this_fullname.
8306 Lowercase FILENAME_CMP call.
8307 (dw2_find_symbol_file): New comment for the returned string.
8308 (dwarf2_gdb_index_functions): Rename the function to
8309 dw2_expand_symtabs_with_fullname.
8310 * psymtab.c (read_psymtabs_with_filename): Rename to ...
8311 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
8312 fullname.
8313 (psym_functions): Rename the function to read_psymtabs_with_fullname.
8314 * symfile.h (struct quick_symbol_functions): Rename field
8315 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
8316 parameter filename to fullname. Document returned string meaning for
8317 find_symbol_file.
8318 * symtab.c (find_line_symtab): Rename the called function to
8319 expand_symtabs_with_fullname.
8320
8321 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8322
8323 Code cleanup.
8324 * breakpoint.c (clear_command): Remove variable is_abs, unify the
8325 call of filename_cmp with compare_filenames_for_search.
8326 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
8327 is_abs, unify the call of FILENAME_CMP with
8328 compare_filenames_for_search. New gdb_asserts for real_path and name.
8329 Unify the call of compare_filenames_for_search with FILENAME_CMP.
8330 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
8331 * symfile.h (struct quick_symbol_functions): Extend the comment for
8332 map_symtabs_matching_filename.
8333 * symtab.c (compare_filenames_for_search): Remove the function comment
8334 relative path requirement. Handle absolute filenames, with a comment.
8335 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
8336 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
8337 real_path and name. Unify the call of compare_filenames_for_search
8338 with FILENAME_CMP.
8339 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
8340
8341 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8342
8343 Code cleanup.
8344 * breakpoint.c (print_breakpoint_location): Replace bp_location field
8345 source_file references by symtab field references. Remove variables
8346 sal and fullname.
8347 (momentary_breakpoint_from_master, add_location_to_breakpoint):
8348 (clear_command, say_where): Replace bp_location field source_file
8349 references by symtab field references.
8350 (bp_location_dtor): Remove the source_file reference.
8351 (update_static_tracepoint): Replace bp_location field source_file
8352 references by symtab field references.
8353 (breakpoint_free_objfile): New function.
8354 * breakpoint.h (struct bp_location): Extend the comment for line_number.
8355 Replace the field source_file by field symtab, extend its comment.
8356 (breakpoint_free_objfile): New declaration.
8357 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
8358 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
8359 field source_file references by symtab field references.
8360
8361 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8362
8363 Replace xfullpath calls by gdb_realpath calls.
8364 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
8365 function comment.
8366 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
8367 Remove it from the iterate_over_some_symtabs call.
8368 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
8369 Remove it from the dw2_map_expand_apply calls, remove a block handling
8370 it.
8371 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
8372 Remove it from the iterate_over_some_symtabs call.
8373 (partial_map_symtabs_matching_filename): Remove parameter full_path.
8374 Remove it from the partial_map_expand_apply calls, remove a block
8375 handling it. Drop gdb_realpath call and cleanups from the real_path
8376 handling.
8377 * source.c (openp): Drop the comment part about xfullpath. Replace
8378 xfullpath calls by gdb_realpath calls.
8379 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
8380 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
8381 from method map_symtabs_matching_filename and its comment.
8382 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
8383 gdb_realpath call.
8384 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
8385 remove it also from the function comment, remove a block handling it.
8386 Drop gdb_realpath call and cleanups from the real_path handling.
8387 (iterate_over_symtabs): Drop variable full_path and its use.
8388 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
8389 * utils.c (xfullpath): Remove.
8390 * utils.h (xfullpath): Remove.
8391
8392 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
8393
8394 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
8395 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
8396 (ALLDEPFILES): Add ppc64-tdep.c.
8397 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
8398 ppc64-tdep.o to gdb_target_obs.
8399 * ppc64-tdep.h: New file.
8400 * ppc64-tdep.c: New file.
8401 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
8402 ppc-linux-tdep.c to here.
8403 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
8404 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
8405 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
8406 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
8407 from ppc-linux-tdep.c to here.
8408 (ppc64_convert_from_func_ptr_addr): Rename from
8409 ppc64_linux_convert_from_func_ptr_addr to
8410 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
8411 here.
8412 * rs6000-tdep.c:
8413 (read_insn): Move from ppc-linux-tdep.c to here.
8414 (insns_match_pattern, insn_d_field, insn_ds_field): Move
8415 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
8416 * ppc-linux-tdep.c: Include ppc64-tdep.h.
8417 Removed above functions.
8418 (ppc_linux_init_abi): Adjust.
8419
8420 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
8421
8422 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
8423
8424 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
8425
8426 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
8427
8428 2013-02-01 Pedro Alves <palves@redhat.com>
8429
8430 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
8431 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
8432
8433 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8434
8435 * elfread.c (elf_symfile_read): Limit separate debug info additions to
8436 files with no separate debug info.
8437 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
8438 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
8439 only for files with no separate debug info.
8440
8441 2013-01-31 Tom Tromey <tromey@redhat.com>
8442
8443 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
8444 change type.
8445 (struct jit_program_space_data): Rename from jit_inferior_data.
8446 Update comments.
8447 (get_jit_program_space_data): Rename from get_jit_inferior_data.
8448 Change return type. Attach data to program space.
8449 (jit_program_space_data_cleanup): Rename from
8450 jit_inferior_data_cleanup; change argument type.
8451 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
8452 change type.
8453 (jit_register_code): Update.
8454 (jit_update_inferior_cache): Remove.
8455 (jit_breakpoint_deleted): Get jit data from the location's program
8456 space.
8457 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
8458 'ps_data', change type.
8459 (jit_inferior_init, jit_breakpoint_re_set_internal)
8460 (jit_event_handler): Update.
8461 (free_objfile_data): Get data from objfile's program space.
8462 (_initialize_jit): Update.
8463
8464 2013-01-31 Tom Tromey <tromey@redhat.com>
8465
8466 PR gdb/13987:
8467 * jit.c (struct jit_inferior_data) <cached_code_address,
8468 jit_breakpoint>: New fields.
8469 (jit_breakpoint_re_set_internal): Fix logging. Only create
8470 breakpoint if cached address has changed.
8471 (jit_update_inferior_cache, jit_breakpoint_deleted): New
8472 functions.
8473 (_initialize_jit): Register breakpoint deleted observer.
8474
8475 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
8476
8477 * infrun.c (handle_syscall_event): Remove unused gdbarch.
8478 (save_infcall_suspend_state): Ifdef out unused inf.
8479 (restore_infcall_suspend_state): Ifdef out unused inf.
8480 * jit.c (jit_register_code): Remove unused i, b, inf_data.
8481 (jit_frame_sniffer): Remove unused inf_data.
8482
8483 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
8484
8485 * c-exp.y (classify_inner_name): Remove unused type.
8486 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
8487 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
8488 need_escape.
8489 (c_get_string): Remove unused kind.
8490 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
8491
8492 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
8493
8494 * charset.c (intermediate_encoding): Remove unused i.
8495 * completer.c (signal_completer): Remove unused i.
8496 * continuations.c (discard_my_continuations_1): Remove unused
8497 continuation_ptr.
8498 * corelow.c (core_close): Remove unuseD name.
8499 (get_core_siginfo): Remove unused pid.
8500 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
8501 i, cps.
8502 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
8503 (loclist_describe_location): Remove unused first.
8504 * event-top.c (command_line_handler): Remove unused got_eof.
8505 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
8506 (resize_section_table): Remove unused old_value.
8507 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
8508 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
8509 * i386-tdep.c (i386_process_record): Remove unused rex.
8510 * infcmd.c (get_return_value): Remove unused uiout.
8511 * jv-lang.c (type_from_class): Remove unused is_array.
8512 * jv-valprint.c (java_val_print): Remove unused i.
8513 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
8514 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
8515 * m2-typeprint.c (m2_print_type): Remove unused code.
8516 * macroexp.c (get_character_constant): Remove unused body_start.
8517 (macro_stringify): Remove unused result.
8518 * objc-lang.c (find_methods): Remove unused gdbarch.
8519 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
8520 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
8521 * stack.c (print_frame_args): Remove unused summary.
8522 * thread.c (thread_apply_command): Remove unused p.
8523 * valarith.c (value_x_unop): Remove unused mangle_ptr.
8524 * valops.c (search_struct_method): Remove unused skip.
8525 * valprint.c (generic_val_print): Remove unused byte_order.
8526 * varobj.c (varobj_update): Remove unused changed.
8527 * cli/cli-cmds.c (complete_command): Remove unused next_item.
8528 (alias_command): Remove unused c.
8529 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
8530 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
8531 format.
8532 (mi_cmd_data_write_memory): Remove unused word_format.
8533 (mi_cmd_data_write_memory_bytes): Remove unused r.
8534 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
8535 p_start, p_end.
8536 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
8537 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
8538 line_width.
8539
8540 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
8541
8542 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
8543 * symtab.c (iterate_over_symtabs): Remove unused s.
8544 (find_pc_sect_symtab): Remove unused pspAce.
8545 (find_pc_sect_line): Remove unused alt_symtab.
8546 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
8547 (completion_list_add_name): Remove unused newsize.
8548
8549 2013-01-31 Tom Tromey <tromey@redhat.com>
8550
8551 PR c++/14998:
8552 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
8553 TYPE_CODE_FUNC.
8554
8555 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
8556
8557 * target.c (target_read_string): Remove unused origlen.
8558
8559 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
8560
8561 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
8562 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
8563 * ax-general.c (ax_print): Remove unused is_float.
8564 * blockframe.c (block_innermost_frame): Remove unused start, end.
8565 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
8566
8567 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
8568
8569 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
8570 (svr4_read_so_list): Remove unused lmo.
8571 * solib-target.c (solib_target_relocate_section_addresses): Remove
8572 unused flags.
8573
8574 2013-01-30 Tom Tromey <tromey@redhat.com>
8575
8576 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
8577
8578 2013-01-30 Tom Tromey <tromey@redhat.com>
8579
8580 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
8581 * utils.c (gnu_debuglink_crc32): Remove.
8582 * utils.h (gnu_debuglink_crc32): Don't declare.
8583
8584 2013-01-30 Tom Tromey <tromey@redhat.com>
8585
8586 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
8587 (read_structure_type, read_enumeration_type): Remove cast.
8588
8589 2013-01-30 Tom Tromey <tromey@redhat.com>
8590
8591 * dwarf2read.c (read_namespace_type): Remove cast.
8592 (read_typedef): Likewise.
8593
8594 2013-01-29 Tom Tromey <tromey@redhat.com>
8595
8596 * dwarf2read.c (free_dwo_file): Remove assert.
8597
8598 2013-01-29 Tom Tromey <tromey@redhat.com>
8599
8600 * value.c (deprecated_set_value_modifiable): Remove.
8601 * value.h (deprecated_set_value_modifiable): Remove.
8602
8603 2013-01-28 Doug Evans <dje@google.com>
8604
8605 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
8606 to addresses from dwo files.
8607
8608 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
8609
8610 * valops.c (find_overload_match): Remove unused argument 'lax'.
8611 * value.h: Remove unused argument 'lax' from the declaration of
8612 find_overload_match.
8613 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
8614 to find_overload_match.
8615 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
8616 argument to find_overload_match.
8617
8618 2013-01-25 Tom Tromey <tromey@redhat.com>
8619
8620 * dwarf2read.c (processing_has_namespace_info): Remove.
8621 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
8622 (process_die, read_func_scope, dwarf2_start_symtab)
8623 (new_symbol_full): Update.
8624
8625 2013-01-25 Tom Tromey <tromey@redhat.com>
8626
8627 * cp-namespace.c (cp_set_block_scope): Remove.
8628 * cp-support.h (cp_set_block_scope): Remove.
8629 * dbxread.c: Include block.h.
8630 (cp_set_block_scope): New function.
8631 (process_one_symbol): Update.
8632 * dwarf2read.c (read_func_scope): Use block_set_scope.
8633
8634 2013-01-25 Pedro Alves <palves@redhat.com>
8635
8636 * remote.c (add_current_inferior_and_thread): Tweak comment.
8637
8638 2013-01-25 Tom Tromey <tromey@redhat.com>
8639
8640 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
8641 (cp_add_using_directive): Add 'copy_names' argument.
8642 * cp-support.h (cp_add_using_directive): Update.
8643 (struct using_direct) <import_src, import_dest, alias,
8644 declaration>: Now const.
8645 * dwarf2read.c (read_import_statement): Use obconcat.
8646 Don't copy names passed to cp_add_using_directive.
8647
8648 2013-01-25 Tom Tromey <tromey@redhat.com>
8649
8650 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
8651
8652 2013-01-25 Pedro Alves <palves@redhat.com>
8653
8654 * remote.c (stop_reply_extract_thread): New.
8655 (add_current_inferior_and_thread): New parameter 'wait_status'.
8656 Handle it.
8657 (remote_start_remote): Pass wait status to
8658 add_current_inferior_and_thread.
8659 (extended_remote_run): Update comment.
8660 (extended_remote_create_inferior_1): Pass wait status to
8661 add_current_inferior_and_thread.
8662
8663 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
8664 Ulrich Weigand <uweigand@de.ibm.com>
8665
8666 * valarith.c (value_vector_widen): New function for replicating a
8667 scalar into a vector.
8668 (value_binop): Use value_vector_widen to widen scalar to vector
8669 rather than casting, this better matches gcc C behaviour.
8670 * valops.c (value_casst): Update logic for casting between vector
8671 types, and for casting from scalar to vector, try to match gcc C
8672 behaviour.
8673 * value.h (value_vector_widen): Declare.
8674 * opencl-lang.c (opencl_value_cast): New opencl specific casting
8675 function, handle special case for casting scalar to vector.
8676 (opencl_relop): Use opencl_value_cast.
8677 (evaluate_subexp_opencl): Use opencl_value_cast instead of
8678 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
8679 in order to use opencl_value_cast.
8680
8681 2013-01-25 Yao Qi <yao@codesourcery.com>
8682
8683 * event-loop.c: Include "queue.h".
8684 (gdb_event_p): New typedef.
8685 (DECLARE_QUEUE_P): Use.
8686 (DEFINE_QUEUE_P): Use.
8687 (async_queue_event): Remove.
8688 (gdb_event_xfree): New.
8689 (initialize_event_loop): New.
8690 (process_event): Use QUEUE macros.
8691 (event_queue): Remove.
8692 (gdb_wait_for_event): Caller update.
8693 (check_async_event_handlers): Likewise.
8694 (poll_timers): Likewise.
8695 * event-loop.h (initialize_event_loop): Declare.
8696 * event-loop.c (gdb_event_xfree): New.
8697 * top.c (gdb_init): Call initialize_event_loop.
8698
8699 2013-01-25 Yao Qi <yao@codesourcery.com>
8700
8701 * event-loop.c (async_queue_event): Remove one parameter
8702 'position'. Remove code handling 'position' == TAIL.
8703 (gdb_wait_for_event): Caller update.
8704 (check_async_event_handlers): Caller update.
8705 (poll_timers): Caller update.
8706 * event-loop.h (enum queue_position): Remove.
8707
8708 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
8709
8710 * MAINTAINERS: Update my email.
8711
8712 2013-01-25 Yao Qi <yao@codesourcery.com>
8713
8714 * main.c (print_gdb_help): Remove "--epoch" from the help
8715 message.
8716
8717 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
8718
8719 * symtab.c (skip_prologue_using_sal): Consider a file
8720 change the same as an increased line number
8721
8722 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
8723
8724 * MAINTAINERS (Write After Approval): Add myself to the list.
8725
8726 2013-01-24 Tom Tromey <tromey@redhat.com>
8727
8728 * ada-lang.h (ada_decode_symbol): Make return type const.
8729 * ada-lang.c (ada_decode_symbol): Likewise.
8730
8731 2013-01-23 Doug Evans <dje@google.com>
8732
8733 * linespec.c (find_linespec_symbols): Make static.
8734
8735 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
8736
8737 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
8738 type on float conversion for complex type.
8739
8740 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
8741
8742 Add a new class gdb.Architecture which exposes GDB's
8743 internal representation of architecture via GDB Python API.
8744 * Makefile.in: Add entries corresponding to the new file
8745 python/py-arch.c.
8746 * NEWS (Python Scripting): Add entries for the new class
8747 gdb.Architecture and the new method gdb.Frame.architecture.
8748 * python/py-arch.c: Implement gdb.Architecture class.
8749 * python/py-frame.c (frapy_arch): Implement the method
8750 gdb.Frame.architecture().
8751 (frame_object_methods): Add 'architecture' to the method table.
8752 * python/python-internal.h: Add declarations of new utility
8753 functions.
8754 * python/python.c (_initialize_python): Initialize
8755 gdb.Architecture class.
8756
8757 2013-01-23 Doug Evans <dje@google.com>
8758
8759 Work around binutils/15021.
8760 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
8761 type_unit_group out of union s. All uses updated.
8762 (read_index_from_section): Watch for index version 8.
8763 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
8764 an imported symtab.
8765 (write_psymtabs_to_index): Increment version number to 8.
8766
8767 2013-01-22 Pedro Alves <palves@redhat.com>
8768
8769 * annotate.c (breakpoint_changed): Skip if breakpoint is not
8770 user-visible.
8771
8772 2013-01-22 Pedro Alves <palves@redhat.com>
8773
8774 * annotate.c (annotate_breakpoints_changed): Rename to ...
8775 (annotate_breakpoints_invalid): ... this. Make static.
8776 (breakpoint_changed): Adjust.
8777 (_initialize_annotate): Always install the observers. Install a
8778 "breakpoint_created" observer.
8779 * annotate.h (annotate_breakpoints_changed): Delete declaration.
8780 * breakpoint.c (set_breakpoint_condition)
8781 (breakpoint_set_commands, do_map_commands_command)
8782 (init_raw_breakpoint, clear_command, set_ignore_count)
8783 (enable_breakpoint_disp): No longer call
8784 annotate_breakpoints_changed.
8785
8786 2013-01-22 Pedro Alves <palves@redhat.com>
8787
8788 * annotate.c: Include "inferior.h".
8789 (frames_invalid_emitted)
8790 (breakpoints_invalid_emitted): New globals.
8791 (async_background_execution_p): New function.
8792 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
8793 emitting the annotation if it has already been emitted.
8794 (annotate_display_prompt): New function.
8795 * annotate.h (annotate_display_prompt): New declaration.
8796 * event-top.c: Include annotate.h.
8797 (display_gdb_prompt): Call annotate_display_prompt.
8798
8799 2013-01-22 Pedro Alves <palves@redhat.com>
8800
8801 * annotate.c (ignore_count_changed): Delete.
8802 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
8803 (annotate_ignore_count_change): Delete.
8804 (annotate_stopped): Don't emit a delayed breakpoints-changed
8805 annotation.
8806 * annotate.h (annotate_ignore_count_change): Delete.
8807 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
8808 annotate_ignore_count_change.
8809
8810 2013-01-22 Tom Tromey <tromey@redhat.com>
8811
8812 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
8813 require_rvalue for a register location.
8814
8815 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
8816
8817 * breakpoint.c (print_one_breakpoint_location): Add MI
8818 field 'thread-groups' when printing a breakpoint.
8819 (output_thread_groups): New function.
8820
8821 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
8822
8823 * python/lib/gdb/commands/explore.py
8824 (CompoundExplorer.explore_expr): Correct the name of a method
8825 being invoked.
8826 (ExploreTypeCommand.invoke): Add a missing 'return'.
8827
8828 2013-01-21 Tom Tromey <tromey@redhat.com>
8829
8830 * gdb_obstack.h (obconcat): Move declaration here, from...
8831 * symfile.h (obconcat): ... here.
8832 * gdb_obstack.c: New file.
8833 (obconcat): Move from...
8834 * symfile.c (obconcat): ... here.
8835 * Makefile.in (SFILES): Add gdb_obstack.c.
8836 (COMMON_OBS): Add gdb_obstack.o.
8837
8838 2013-01-21 Tom Tromey <tromey@redhat.com>
8839
8840 * symfile.h (obsavestring): Don't declare.
8841 * symfile.c (obsavestring): Remove.
8842 * ada-exp.y: Use obstack_copy0, not obsavestring.
8843 * ada-lang.c: Use obstack_copy0, not obsavestring.
8844 * coffread.c: Use obstack_copy0, not obsavestring.
8845 * cp-namespace.c: Use obstack_copy0, not obsavestring.
8846 * dbxread.c: Use obstack_copy0, not obsavestring.
8847 * dwarf2read.c: Use obstack_copy0, not obsavestring.
8848 * jit.c: Use obstack_copy0, not obsavestring.
8849 * mdebugread.c: Use obstack_copy0, not obsavestring.
8850 * psymtab.c: Use obstack_copy0, not obsavestring.
8851 * stabsread.c: Use obstack_copy0, not obsavestring.
8852 * xcoffread.c: Use obstack_copy0, not obsavestring.
8853
8854 2013-01-21 Tom Tromey <tromey@redhat.com>
8855
8856 * dwarf2read.c (fixup_go_packaging): Save package name
8857 on objfile obstack.
8858 * gdbtypes.c (init_type): Don't copy name.
8859
8860 2013-01-21 Tom Tromey <tromey@redhat.com>
8861
8862 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
8863 const.
8864 (struct attribute) <u.str>: Now const.
8865 (struct fnfieldlist) <name>: Now const.
8866 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
8867 (partial_die_parent_scope): Make return type const.
8868 (partial_die_full_name, add_partial_symbol): Update.
8869 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
8870 'name' const.
8871 (find_file_and_directory): Make 'name' and 'comp_dir' const.
8872 (read_file_scope, read_func_scope, dwarf2_add_field)
8873 (dwarf2_add_member_fn, read_structure_type)
8874 (process_enumeration_scope, read_array_type, read_module_type)
8875 (read_base_type, read_subrange_type): Update.
8876 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
8877 (new_symbol_full, guess_full_die_structure_name): Update.
8878 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
8879 (dwarf2_name): Return const type.
8880 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
8881 const.
8882
8883 2013-01-21 Tom Tromey <tromey@redhat.com>
8884
8885 * gdbtypes.c (init_type): Make 'name' const.
8886 * gdbtypes.h (init_type): Update.
8887
8888 2013-01-21 Tom Tromey <tromey@redhat.com>
8889
8890 * buildsym.c (patch_subfile_names): Use set_last_source_file.
8891 (start_symtab): Make 'name' and 'dirname' const. Use
8892 set_last_source_file.
8893 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
8894 (last_source_file): Define. Now static.
8895 (set_last_source_file, get_last_source_file): New functions.
8896 * buildsym.h (last_source_file): Don't declare.
8897 (start_symtab): Update.
8898 (set_last_source_file, get_last_source_file): Declare.
8899 * coffread.c (complete_symtab): Use set_last_source_file.
8900 (coff_end_symtab): Likewise.
8901 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
8902 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
8903 set_last_source_file.
8904 (process_one_symbol): Use get_last_source_file.
8905 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
8906 (psymtab_to_symtab_1): Use get_last_source_file.
8907 * xcoffread.c (process_linenos): Use get_last_source_file.
8908 (complete_symtab): Use set_last_source_file.
8909 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
8910 (scan_xcoff_symtab): Use set_last_source_file.
8911
8912 2013-01-21 Tom Tromey <tromey@redhat.com>
8913
8914 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
8915 (symbol_set_names): Remove casts. Handle field const-ness.
8916
8917 2013-01-21 Tom Tromey <tromey@redhat.com>
8918
8919 * dwarf2read.c (new_symbol_full): Remove cast.
8920 * symtab.c (symbol_set_demangled_name): Make 'name' const.
8921 * symtab.h (symbol_set_demangled_name): Update.
8922
8923 2013-01-21 Tom Tromey <tromey@redhat.com>
8924
8925 * main.c (captured_main): Call bfd_init.
8926
8927 2013-01-21 Tom Tromey <tromey@redhat.com>
8928
8929 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
8930 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
8931 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
8932 * NEWS: Update.
8933
8934 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
8935
8936 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
8937
8938 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
8939
8940 Fix gdb.fortran/common-block.exp crash in PIE mode.
8941 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
8942 LOC_COMMON_BLOCK.
8943 * f-valprint.c (info_common_command_for_block): Expect
8944 LOC_COMMON_BLOCK in gdb_assert.
8945 * symtab.h (struct general_symbol_info): Update comment for the
8946 common_block member.
8947 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
8948 (enum address_class): New member LOC_COMMON_BLOCK.
8949
8950 2013-01-18 David Blaikie <dblaikie@gmail.com>
8951
8952 * MAINTAINERS (Write After Approval): Add "David Blaikie".
8953
8954 2013-01-18 Tom Tromey <tromey@redhat.com>
8955
8956 PR c++/14999:
8957 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
8958 Call require_rvalue.
8959
8960 2013-01-18 Yao Qi <yao@codesourcery.com>
8961
8962 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
8963 (dbx_read_symtab): New declaration.
8964 (dbx_psymtab_to_symtab): Delete.
8965 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
8966 Rename parameter PST to SELF. Exchanged two parameters.
8967 (start_psymtab): Caller update.
8968 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
8969 (dwarf2_read_symtab): New declaration.
8970 (dwarf2_psymtab_to_symtab): Delete.
8971 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
8972 Rename parameter PST to SELF. Exchanged two parameters.
8973 (create_partial_symtab): Caller update.
8974 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
8975 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
8976 Rename parameter PST to SELF. Exchanged two parameters.
8977 (parse_partial_symbols, new_psymtab): Caller update.
8978 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
8979 two parameters.
8980 * psymtab.c (psymtab_to_symtab): Caller update.
8981 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
8982 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
8983 Rename parameter PST to SELF. Exchanged two parameters.
8984 (xcoff_start_psymtab): Caller update.
8985
8986 2013-01-18 Yao Qi <yao@codesourcery.com>
8987
8988 * infrun.c (proceed): Rename local variable 'oneproc' to
8989 'force_step'.
8990
8991 2013-01-17 Doug Evans <dje@google.com>
8992
8993 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
8994 (dw2_build_type_unit_groups): Delete. All uses updated.
8995
8996 * symtab.h (struct symbol_search): Add comment.
8997
8998 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8999
9000 * symtab.c (compare_filenames_for_search): New comment for
9001 HAS_DRIVE_SPEC.
9002
9003 2013-01-17 Tom Tromey <tromey@redhat.com>
9004
9005 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
9006
9007 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
9008
9009 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
9010 initialize it by existing make_cleanup. Call new do_cleanups.
9011
9012 2013-01-17 Tom Tromey <tromey@redhat.com>
9013
9014 * cp-abi.c (cp_abi_completer): New function.
9015 (_initialize_cp_abi): Set completer for "set cp-abi".
9016
9017 2013-01-17 Tom Tromey <tromey@redhat.com>
9018
9019 * mem-break.c: Remove obsolete comment.
9020 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
9021
9022 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
9023
9024 * jit.c (jit_reader_load_command): Interpret the jit reader name
9025 as an absolute path if it begins with a forward slash.
9026
9027 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
9028
9029 PR gdb/14550
9030
9031 * jit.c (finalize_symtab): Ensure that only the global block has a
9032 NULL superblock.
9033
9034 2013-01-17 Pedro Alves <palves@redhat.com>
9035
9036 * acinclude.m4: Include ../config/plugins.m4,
9037 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
9038 * Makefile.in (aclocal_m4_deps): Update.
9039 * aclocal.m4: Renegerate.
9040
9041 2013-01-16 Doug Evans <dje@google.com>
9042
9043 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
9044
9045 2013-01-16 Pedro Alves <palves@redhat.com>
9046 Tom Tromey <tromey@redhat.com>
9047
9048 PR cli/7221:
9049 * NEWS: Add "catch signal".
9050 * breakpoint.c (base_breakpoint_ops): No longer static.
9051 (bpstat_explains_signal): New function.
9052 (init_catchpoint): No longer static.
9053 (base_breakpoint_explains_signal): New function.
9054 (base_breakpoint_ops): Initialize new field.
9055 * breakpoint.h (enum bpstat_signal_value): New.
9056 (struct breakpoint_ops) <explains_signal>: New field.
9057 (bpstat_explains_signal): Remove macro, declare as function.
9058 (base_breakpoint_ops, init_catchpoint): Declare.
9059 * break-catch-sig.c: New file.
9060 * inferior.h (signal_catch_update): Declare.
9061 * infrun.c (signal_catch): New global.
9062 (handle_syscall_event): Update for change to
9063 bpstat_explains_signal.
9064 (handle_inferior_event): Likewise. Always handle random signals
9065 via bpstats.
9066 (signal_cache_update): Check signal_catch.
9067 (signal_catch_update): New function.
9068 (_initialize_infrun): Initialize signal_catch.
9069 * Makefile.in (SFILES): Add break-catch-sig.c.
9070 (COMMON_OBS): Add break-catch-sig.o.
9071
9072 2013-01-16 Tom Tromey <tromey@redhat.com>
9073
9074 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
9075 (print_one_catch_solib, print_one_catch_syscall)
9076 (print_one_catch_exec, print_one_exception_catchpoint): Emit
9077 "catch-type".
9078
9079 2013-01-16 Yao Qi <yao@codesourcery.com>
9080
9081 * printcmd.c (current_display_number): Make it static.
9082
9083 2013-01-16 Yao Qi <yao@codesourcery.com>
9084
9085 * infcmd.c (step_once): Don't check '!single_inst' as it was
9086 checked before.
9087
9088 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9089
9090 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
9091
9092 2013-01-14 Tom Tromey <tromey@redhat.com>
9093
9094 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
9095 set command.
9096 * command.h (add_setshow_string_noescape_cmd): Update.
9097 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
9098 (complete_set_gnutarget): New function.
9099 (_initialize_core): Set the "set gnutarget" completer.
9100
9101 2013-01-14 Tom Tromey <tromey@redhat.com>
9102
9103 PR symtab/14442:
9104 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
9105 (c_type_print_modifier): Likewise.
9106 * dwarf2read.c (read_tag_restrict_type): New function.
9107 (read_type_die_1): Handle DW_TAG_restrict_type.
9108 * gdbtypes.c (make_restrict_type): New function.
9109 (recursive_dump_type): Handle TYPE_RESTRICT.
9110 * gdbtypes.h (enum type_flag_values): Renumber.
9111 (enum type_instance_flag_value): Add
9112 TYPE_INSTANCE_FLAG_RESTRICT.
9113 (TYPE_RESTRICT): New macro.
9114 (make_restrict_type): Declare.
9115
9116 2013-01-14 Tom Tromey <tromey@redhat.com>
9117
9118 PR symtab/14931:
9119 * psymtab.c (struct psymtab_state): New.
9120 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
9121 functions.
9122 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
9123 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
9124
9125 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
9126 Pedro Alves <palves@redhat.com>
9127
9128 PR remote/14786
9129
9130 * remote.c (remote_threads_info): Make a copy of the reply from
9131 qfThreadInfo and use that instead of rs->buf.
9132
9133 2013-01-14 Yao Qi <yao@codesourcery.com>
9134
9135 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
9136 (dbx_psymtab_to_symtab): Likewise.
9137 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
9138 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
9139 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
9140
9141 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9142
9143 * parse.c (parse_exp_in_context): New variable inner_chain. Call
9144 make_cleanup_restore_current_language. Call set_language. Move
9145 OLD_CHAIN and INNER_CHAIN cleanups.
9146 * utils.c (do_restore_current_language)
9147 (make_cleanup_restore_current_language): New functions.
9148 * utils.h (make_cleanup_restore_current_language): New declaration.
9149
9150 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9151
9152 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
9153 non-existing files.
9154
9155 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
9156 non-existing files if FILENAME is already absolute.
9157
9158 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9159
9160 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
9161 fputs_filtered. Append trailing newline.
9162
9163 2013-01-11 Yao Qi <yao@codesourcery.com>
9164 Stan Shebs <stan@codesourcery.com>
9165
9166 * psymtab.c (init_psymbol_list): Clarify the comment.
9167
9168 2013-01-11 Yao Qi <yao@codesourcery.com>
9169
9170 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
9171 (update_dprintf_command_list): Assert that 'printf_line' is
9172 non-null. Remove condition check.
9173
9174 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9175
9176 Code cleanup.
9177 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
9178 type const char *.
9179 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
9180 const char *.
9181 * tui/tui-source.h (tui_source_is_displayed): Likewise.
9182
9183 2013-01-09 Anthony Green <green@moxielogic.com>
9184
9185 * cp-abi.c (cplus_print_vtable): Don't return value from void
9186 function.
9187 * ada-lang.c (re_set_catch_assert): Ditto.
9188
9189 2013-01-09 Doug Evans <dje@google.com>
9190
9191 * symfile.h (quick_symbol_functions): Delete member
9192 pre_expand_symtabs_matching. All uses removed.
9193 * dwarf2read.c (dw2_lookup_symbol): Implement.
9194 (dw2_do_expand_symtabs_matching): Delete.
9195 (dw2_pre_expand_symtabs_matching): Delete.
9196 (struct dw2_symtab_iterator): New type.
9197 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
9198 (dw2_expand_symtabs_for_function): Rewrite.
9199 (dwarf2_gdb_index_functions): Update.
9200 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
9201 (psym_functions): Update.
9202
9203 2013-01-09 Tom Tromey <tromey@redhat.com>
9204
9205 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
9206 * configure: Rebuild.
9207 * configure.ac: Add somread.o to the build if BFD has SOM
9208 support.
9209 * somread.c: Include som/aout.h, not syms.h.
9210 (som_symtab_read): Use som_external_symbol_dictionary_record.
9211 Unpack records manually.
9212 (_initialize_somread): Declare.
9213
9214 2012-01-08 Mike Frysinger <vapier@gentoo.org>
9215
9216 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
9217 Cast return_address to 64bits.
9218
9219 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
9220
9221 * printcmd.c: Remove define of function output_command.
9222 * tracepoint.c: Remove extern of function output_command.
9223 * valprint.h: (output_command): New extern.
9224
9225 2013-01-07 Tom Tromey <tromey@redhat.com>
9226
9227 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
9228 Remove.
9229 (objc_language_defn): Use c_printchar, c_printstr,
9230 c_emit_char.
9231
9232 2013-01-07 Tom Tromey <tromey@redhat.com>
9233
9234 PR cli/7719:
9235 * NEWS: Update.
9236 * ada-valprint.c (printstr, print_field_values): Remove
9237 "inspect_it" code.
9238 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
9239 code.
9240 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
9241 code.
9242 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
9243 * main.c (captured_main): Remove "epoch" argument.
9244 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
9245 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
9246 * p-valprint.c (pascal_object_print_value_fields): Remove
9247 "inspect_it" code.
9248 * printcmd.c (print_command_1): Remove 'inspect' argument.
9249 (print_command, call_command): Update.
9250 (inspect_command): Remove.
9251 (_initialize_printcmd): Make "inspect" an alias for "print".
9252 * top.c (epoch_interface): Remove.
9253 * top.h (epoch_interface): Remove.
9254 * valprint.c (user_print_options): Update.
9255 (print_converted_chars_to_obstack): Remove "inspect_it" code.
9256 * valprint.h (struct value_print_options) <inspect_it>: Remove
9257 field.
9258
9259 2013-01-04 Tom Tromey <tromey@redhat.com>
9260
9261 * valprint.h (read_string): Add 'extern'.
9262
9263 2013-01-07 Joel Brobecker <brobecker@adacore.com>
9264
9265 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
9266 used to decide whether to define darwin_read_dyld_info or not.
9267
9268 2013-01-03 Pierre Muller <muller@sourceware.org>
9269
9270 * main.c (relocate_gdb_directory): Avoid calling stat function
9271 if DIR is empty.
9272
9273 2013-01-03 Yao Qi <yao@codesourcery.com>
9274
9275 * psymtab.c (fixup_psymbol_section): Update declaration.
9276 (fixup_psymbol_section): Remove code returning value.
9277
9278 2013-01-03 Yao Qi <yao@codesourcery.com>
9279
9280 * symtab.h: Remove some out of date comments.
9281 (enum exception_event_kind): Move it ...
9282 * breakpoint.c: ... here.
9283
9284 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
9285
9286 PR gdb/14405
9287 * darwin-nat.c (darwin_read_dyld_info): Only build if
9288 TASK_DYLD_INFO_COUNT is defined.
9289 (darwin_xfer_partial): Call darwin_read_dyld_info only if
9290 TASK_DYLD_INFO_COUNT is defined.
9291
9292 2013-01-02 Tom Tromey <tromey@redhat.com>
9293
9294 * symfile.h (struct ecoff_debug_hack): Remove.
9295 * objfiles.c: Don't include mdebugread.h.
9296
9297 2013-01-02 Tom Tromey <tromey@redhat.com>
9298
9299 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
9300 * configure.ac: Check for Mach-O support in BFD. Update
9301 CONFIG_OBS.
9302 * configure: Rebuild.
9303
9304 2013-01-02 Tom Tromey <tromey@redhat.com>
9305
9306 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
9307 * configure.ac: Use GDB_AC_CHECK_BFD.
9308 * configure: Rebuild.
9309
9310 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
9311
9312 * MAINTAINERS: Update my email.
9313
9314 2013-01-01 Joel Brobecker <brobecker@adacore.com>
9315
9316 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
9317
9318 2013-01-01 Joel Brobecker <brobecker@adacore.com>
9319
9320 * rs6000-nat.c (bss_data_overlap): New function.
9321 (vmap_symtab): Use it to adjust the .bss section's offset.
9322
9323 2013-01-01 Joel Brobecker <brobecker@adacore.com>
9324
9325 Update year range in copyright notice of all files.
9326
9327 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
9328
9329 * top.c (print_gdb_version): Update copyright year.
9330
9331 For older changes see ChangeLog-2012.
9332 \f
9333 Local Variables:
9334 mode: change-log
9335 left-margin: 8
9336 fill-column: 74
9337 version-control: never
9338 coding: utf-8
9339 End: