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