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