cc9d32dca12ebcc7489a1580ac78612861f464f5
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2013-11-15 Joel Brobecker <brobecker@adacore.com>
2
3 * dwarf2expr.h (struct dwarf_expr_context_funcs) <read_reg>:
4 Extend the documentation a bit.
5 <get_reg_value>: New field.
6 * dwarf2loc.c (dwarf_expr_get_reg_value)
7 (needs_frame_get_reg_value): New functions.
8 (dwarf_expr_ctx_funcs, needs_frame_ctx_funcs): Add "get_reg_value"
9 callback.
10 * dwarf2-frame.c (get_reg_value): New function.
11 (dwarf2_frame_ctx_funcs): Add "get_reg_value" callback.
12 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_regval_type>:
13 Use new callback to compute result_val.
14
15 2013-11-15 Alan Modra <amodra@gmail.com>
16
17 * ppc64-tdep.c (ppc64_plt_entry_point): Renamed from..
18 (ppc64_desc_entry_point): ..this. Update comments here and at
19 call points.
20 (ppc64_standard_linkage1, ppc64_standard_linkage2,
21 ppc64_standard_linkage3): Update comments.
22 (ppc64_standard_linkage4, ppc64_standard_linkage5,
23 (ppc64_standard_linkage6, ppc64_standard_linkage7): New insn
24 patterns.
25 (ppc64_standard_linkage4_target): New function.
26 (ppc64_skip_trampoline_code): Skip ELFv2 patterns too.
27 * rs6000-tdep.c (skip_prologue): Skip ELFv2 r2 setup. Correct
28 nop match. Fix comment wrap.
29
30 2013-11-14 Pedro Alves <palves@redhat.com>
31
32 * infrun.c (handle_signal_stop): Move STOP_QUIETLY,
33 STOP_QUIETLY_REMOTE and 'stop_after_trap' handling earlier.
34
35 2013-11-14 Pedro Alves <palves@redhat.com>
36
37 * infrun.c (struct execution_control_state)
38 <stepped_after_stopped_by_watchpoint>: New field.
39 (get_inferior_stop_soon): New function.
40 (handle_inferior_event): 'stepped_after_stopped_by_watchpoint' was
41 moved to struct execution_control_state -- adjust. Use
42 get_inferior_stop_soon. Split TARGET_WAITKIND_STOPPED handling to
43 new function.
44 (handle_signal_stop): New function, factored out from
45 handle_inferior_event.
46
47 2013-11-14 Pedro Alves <palves@redhat.com>
48
49 * break-catch-sig.c (signal_catchpoint_explains_signal): Adjust to
50 return a boolean.
51 * breakpoint.c (bpstat_explains_signal): Adjust to return a
52 boolean.
53 (explains_signal_watchpoint, base_breakpoint_explains_signal):
54 Adjust to return a boolean.
55 * breakpoint.h (enum bpstat_signal_value): Delete.
56 (struct breakpoint_ops) <explains_signal>: New returns a boolean.
57 (bpstat_explains_signal): Likewise.
58 * infrun.c (handle_inferior_event) <random signal checks>:
59 bpstat_explains_signal now returns a boolean - adjust. No longer
60 consider hiding signals.
61
62 2013-11-14 Pedro Alves <palves@redhat.com>
63
64 * breakpoint.c (bpstat_explains_signal) <Moribund locations>:
65 Return BPSTAT_SIGNAL_PASS instead of BPSTAT_SIGNAL_HIDE.
66 (explains_signal_watchpoint): Return BPSTAT_SIGNAL_PASS instead of
67 BPSTAT_SIGNAL_HIDE.
68 (base_breakpoint_explains_signal): Return BPSTAT_SIGNAL_PASS
69 instead of BPSTAT_SIGNAL_HIDE.
70 * infrun.c (handle_inferior_event): Rework random signal checks.
71
72 2013-11-14 Pedro Alves <palves@redhat.com>
73
74 * infrun.c (struct execution_control_state): Remove
75 'random_signal' field.
76 (handle_syscall_event): Use bpstat_causes_stop instead of
77 bpstat_explains_signal. Don't set ecs->random_signal.
78 (handle_inferior_event): New 'random_signal' local.
79 <TARGET_WAITKIND_FORKED, TARGET_WAITKIND_VFORKED,
80 TARGET_WAITKIND_EXECD>: Use bpstat_causes_stop instead of
81 bpstat_explains_signal. Don't set ecs->random_signal.
82 <TARGET_WAITKIND_STOPPED>: Adjust to use local instead of
83 ecs->random_signal.
84
85 2013-11-14 Pedro Alves <palves@redhat.com>
86
87 * infrun.c (handle_inferior_event): Move comment from the
88 function's body to the function's description, adjusted.
89
90 2013-11-14 Pedro Alves <palves@redhat.com>
91
92 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>:
93 Handle STOP_QUIETLY_NO_SIGSTOP and STOP_QUIETLY_REMOTE here.
94 Assert we never fall through out of the TARGET_WAITKIND_LOADED
95 case.
96
97 2013-11-14 Tom Tromey <tromey@redhat.com>
98
99 * python/py-linetable.c (ltpy_has_line)
100 (ltpy_get_all_source_lines): Fix loop termination condition.
101
102 2013-11-14 Joel Brobecker <brobecker@adacore.com>
103
104 * mi/mi-parse.h (struct mi_parse) <language>: New field.
105 * mi/mi-main.c (mi_cmd_execute): Temporarily set language to
106 PARSE->LANGUAGE during command execution, if set.
107 * mi/mi-parse.c: Add "language.h" #include.
108 (mi_parse): Add parsing of "--language" command option.
109
110 * NEWS: Add entry mentioning the new "--language" command option.
111
112 2013-11-14 Pedro Alves <palves@redhat.com>
113 Joel Brobecker <brobecker@adacore.com>
114
115 * cli/cli-utils.h (extract_arg_const): Add declaration.
116 * cli/cli-utils.c (extract_arg_const): New function.
117 (extract_arg): Reimplement using extract_arg_const.
118
119 2013-11-14 Joel Brobecker <brobecker@adacore.com>
120
121 * language.h: Add "symtab.h" #include.
122
123 2013-11-13 Doug Evans <xdje42@gmail.com>
124
125 * breakpoint.c (bpstat_check_breakpoint_conditions): For thread
126 specific breakpoints, don't evaluate breakpoint condition if
127 different thread.
128
129 2013-11-13 Keith Seitz <keiths@redhat.com>
130
131 PR c++/7935
132 PR c++/10541
133 * cp-support.c (insepct_type): Add support for substituting
134 namespace aliases, too.
135 * dwarf2read.c (scan_partial_symbols): Add a partial symbol
136 for DW_TAG_imported_declaration.
137 (add_partial_symbol): Likewise.
138 (process_die): Handle namespace aliases with
139 read_namespace_alias.
140 (die_needs_namespace): Add DW_TAG_imported_declaration.
141 (read_namespace_alias): New function.
142 (load_partial_dies): Load DW_TAG_imported_declaration, too.
143 (new_symbol_full): Handle DW_TAG_imported_declaration.
144
145 2013-11-13 Keith Seitz <keiths@redhat.com>
146
147 * p-exp.y (uptok): Make first parameter const.
148 (yylex): Make `tokstart' and `tokptr' const.
149 Don't copy the lexer input to a temporary buffer.
150 Make `p' const.
151 Remove const workaround for parse_escape.
152 Create a temporary buffer for a convenience variable instead
153 of doing in-place modification of the input.
154 If a match is found with a different case from the input,
155 do not change the input at all.
156 Use `tmp' to construct the resultant stoken instead of
157 `tokstart'.
158
159 2013-11-13 Doug Evans <xdje42@gmail.com>
160
161 * breakpoint.c (breakpoint_cond_eval): Fix and enhance comment.
162
163 2013-11-13 Joel Brobecker <brobecker@adacore.com>
164
165 * mi/mi-main.c (mi_cmd_list_features): Replace "info-ada-exceptions"
166 entry with "ada-exceptions".
167
168 2013-11-13 Joel Brobecker <brobecker@adacore.com>
169
170 * symfile.c (reread_symbols): Move call to set_objfile_per_bfd
171 after re-initialization of OBJFILE's obstack.
172
173 2013-11-12 Doug Evans <xdje42@gmail.com>
174
175 * breakpoint.c (bpstat_check_breakpoint_conditions): Assert
176 bs->stop != 0 on entry. Update function comment. Simplify early
177 exit for frame mismatch. Reindent rest of function.
178
179 2013-11-12 Andreas Arnez <arnez@linux.vnet.ibm.com>
180
181 * objc-lang.c (uniquify_strings): Prevent invoking qsort with
182 NULL.
183
184 2013-11-12 Doug Evans <dje@google.com>
185
186 Work around gold/15646.
187 * dwarf2read.c (read_index_from_section): Update comment.
188 (struct dw2_symtab_iterator): New member global_seen.
189 (dw2_symtab_iter_init): Initialize it.
190 (dw2_symtab_iter_next): Skip duplicate global symbols.
191 (dw2_expand_symtabs_matching): Ditto.
192
193 2013-11-12 Joel Brobecker <brobecker@adacore.com>
194
195 * mi/mi-cmds.h (mi_cmd_info_ada_exceptions): Add declaration.
196 * mi/mi-cmds.c (mi_cmds): Add entry for -info-ada-exceptions
197 command.
198 * mi/mi-cmd-info.c: #include "ada-lang.c" and "arch-utils.c".
199 (mi_cmd_info_ada_exceptions): New function.
200 * mi/mi-main.c (mi_cmd_list_features): Add "info-ada-exceptions".
201
202 2013-11-12 Joel Brobecker <brobecker@adacore.com>
203
204 * ada-lang.h: #include "vec.h".
205 (struct ada_exc_info): New.
206 (ada_exc_info): New typedef.
207 (DEF_VEC_O(ada_exc_info)): New vector.
208 (ada_exceptions_list): Add declaration.
209 * ada-lang.c (ada_is_exception_sym)
210 (ada_is_non_standard_exception_sym, compare_ada_exception_info)
211 (sort_remove_dups_ada_exceptions_list)
212 (ada_exc_search_name_matches, ada_add_standard_exceptions)
213 (ada_add_exceptions_from_frame, ada_add_global_exceptions)
214 (ada_exceptions_list_1, ada_exceptions_list)
215 (info_exceptions_command): New function.
216 (_initialize_ada_language): Add "info exception" command.
217
218 2013-11-11 Phil Muldoon <pmuldoon@redhat.com>
219
220 PR python/15629
221 * NEWS: Add linetable feature.
222 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-linetable entries.
223 * python/py-linetable.c: New file.
224 * python/py-symtab.c (stpy_get_linetable): New function.
225 * python/python-internal.h (symtab_to_linetable_object): Declare.
226 (gdbpy_initialize_linetable): Ditto.
227 * python/python.c (_initialize_python): Call
228 gdbpy_initialize_linetable.
229
230 2013-11-11 Joel Brobecker <brobecker@adacore.com>
231
232 * ada-lang.c (create_ada_exception_catchpoint): Enhance
233 the documentation of fields "except_string" and "condition".
234 * mi/mi-cmd-catch.c (mi_cmd_catch_assert): Reallocate
235 CONDITION on the heap before passing it to
236 create_ada_exception_catchpoint.
237 (mi_cmd_catch_exception): Likewise for EXCEPTION_NAME and
238 CONDITION.
239
240 2013-11-11 Tom Tromey <tromey@redhat.com>
241
242 * config.in, configure: Rebuild.
243 * configure.ac (HAVE_TKILL_SYSCALL): Check for "syscall".
244
245 2013-11-11 Joel Brobecker <brobecker@adacore.com>
246
247 * remote-sim.c (gdbsim_detach): Break declaration into
248 shorter lines. No code change.
249
250 2013-11-11 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
251
252 * remote-sim.c (gdbsim_detach): Fix prototype.
253
254 2013-11-08 Doug Evans <dje@google.com>
255
256 * dwarf2read.c (dwarf2_read_debug): Change to unsigned int.
257 (create_debug_types_hash_table): Only print debugging messages for
258 each TU if dwarf2-read >= 2.
259 (process_queue): Ditto.
260 (_initialize_dwarf2_read): Make "set debug dwarf2-read" a zuinteger.
261 Update doc string.
262
263 2013-11-08 Tom Tromey <tromey@redhat.com>
264
265 * configure: Rebuild.
266 * configure.ac: Remove mentions of HAVE_MULTIPLE_PROC_FDS.
267
268 2013-11-08 Tom Tromey <tromey@redhat.com>
269
270 * configure, config.in: Rebuild.
271 * configure.ac: Remove unused configury.
272
273 2013-11-08 Tom Tromey <tromey@redhat.com>
274
275 * m32c-tdep.c: Use gdb_string.h.
276
277 2013-11-08 Tom Tromey <tromey@redhat.com>
278
279 * configure, config.in: Rebuild.
280 * configure.ac: Remove all link.h-related checks.
281
282 2013-11-08 Tom Tromey <tromey@redhat.com>
283
284 * acinclude.m4: Include common.m4.
285 * common/common.m4: New file.
286 * configure, config.in: Rebuild.
287 * configure.ac: Use GDB_AC_COMMON.
288
289 2013-11-08 Doug Evans <dje@google.com>
290
291 * NEWS: Mention that "set debug symtab-create" now accepts a
292 verbosity level.
293 * buildsym.c (end_symtab_from_static_block): Call set_symtab_primary
294 to set the symtab's primary flag.
295 * jit.c (finalize_symtab): Ditto.
296 * mdebugread.c (psymtab_to_symtab_1): Ditto.
297 * symfile.c (allocate_symtab): Only print debugging messages for
298 symtab_create_debug levels 2 and higher.
299 * symtab.c (symtab_create_debug): Change type to unsigned int.
300 (set_symtab_primary): New function.
301 (_initialize_symtab): Change "set debug symtab-create" to a
302 zuinteger option.
303 * symtab.h (set_symtab_primary): Declare.
304 (symtab_create_debug): Update decl.
305
306 2013-11-08 Tom Tromey <tromey@redhat.com>
307
308 * aix-thread.c (aix_thread_detach): Update.
309 * corelow.c (core_detach): Update.
310 * darwin-nat.c (darwin_detach): Update.
311 * dec-thread.c (dec_thread_detach): Update.
312 * gnu-nat.c (gnu_detach): Update.
313 * go32-nat.c (go32_detach): Update.
314 * inf-ptrace.c (inf_ptrace_detach): Update.
315 * inf-ttrace.c (inf_ttrace_detach): Update.
316 * linux-fork.c (linux_fork_detach): Update.
317 * linux-fork.h (linux_fork_detach): Update.
318 * linux-nat.c (linux_nat_detach): Update. Introduce "tem"
319 local for const-correctness.
320 * linux-thread-db.c (thread_db_detach): Update.
321 * monitor.c (monitor_detach): Update.
322 * nto-procfs.c (procfs_detach): Update.
323 * procfs.c (procfs_detach): Update.
324 * record.c (record_detach): Update.
325 * record.h (record_detach): Update.
326 * remote-m32r-sdi.c (m32r_detach): Update.
327 * remote-mips.c (mips_detach): Update.
328 * remote-sim.c (gdbsim_detach): Update.
329 * remote.c (remote_detach_1, remote_detach)
330 (extended_remote_detach): Update.
331 * sol-thread.c (sol_thread_detach): Update.
332 * target.c (target_detach): Make "args" const.
333 (init_dummy_target): Update.
334 * target.h (struct target_ops) <to_detach>: Make argument const.
335 (target_detach): Likewise.
336 * windows-nat.c (windows_detach): Update.
337
338 2013-11-07 Doug Evans <dje@google.com>
339
340 PR 11786
341 * solib-svr4.c (svr4_exec_displacement): Ignore filesz, memsz, flags
342 and align fields for PT_GNU_RELRO segments.
343
344 2013-11-07 Phil Muldoon <pmuldoon@redhat.com>
345
346 PR python/15747
347 * python/py-cmd.c: Add COMPLETE_EXPRESSION constant.
348
349 2013-11-07 Phil Muldoon <pmuldoon@redhat.com>
350
351 * NEWS: Document Python temporary breakpoint support.
352 * python/py-breakpoint.c (bppy_get_temporary): New function.
353 (bppy_init): New keyword: temporary. Parse it and set breakpoint
354 to temporary if True.
355
356 2013-11-07 Jose E. Marchesi <jose.marchesi@oracle.com>
357
358 * sparc-tdep.c (sparc_analyze_control_transfer): Assertion
359 removed to allow analyzing unconditional branch instructions
360 with PC-relative offsets of zero.
361
362 2013-11-07 Yao Qi <yao@codesourcery.com>
363
364 * mi/mi-cmd-var.c: Include "language.h".
365 (mi_cmd_var_info_expression): Get language name from
366 language_defn.
367 * varobj.c (varobj_language_string): Remove.
368 (variable_language): Remove declaration.
369 (languages): Remove.
370 (varobj_get_language): Change the type of return value.
371 (variable_language): Remove.
372 * varobj.h (enum varobj_languages): Remove.
373 (varobj_language_string): Remove declaration.
374 (varobj_get_language): Update declaration.
375
376 2013-11-07 Yao Qi <yao@codesourcery.com>
377
378 * language.h (struct language_defn) <la_natural_name>: New
379 field.
380 * ada-lang.c (ada_language_defn): Initialize field
381 'la_natural_name'.
382 * c-lang.c (c_language_defn): Likewise.
383 (cplus_language_defn, asm_language_defn): Likewise.
384 * d-lang.c (d_language_defn): Likewise.
385 * f-lang.c (f_language_defn): Likewise.
386 * go-lang.c (go_language_defn): Likewise.
387 * jv-lang.c (java_language_defn): Likewise.
388 * language.c (unknown_language_defn ): Likewise.
389 (auto_language_defn): Likewise.
390 * m2-lang.c (m2_language_defn): Likewise.
391 * objc-lang.c (objc_language_defn): Likewise.
392 * opencl-lang.c (opencl_language_defn): Likewise.
393 * p-lang.c (pascal_language_defn): Likewise.
394
395 2013-11-07 Yao Qi <yao@codesourcery.com>
396
397 * language.c (language_str): Return const char *.
398 (add_language): Add const to 'language_names'
399 * language.h (struct language_defn) <la_name>: Add const.
400 (language_str: Update declaration.
401
402 2013-11-06 Andreas Arnez <arnez@linux.vnet.ibm.com>
403
404 * s390-linux-nat.c (s390_read_description): Consider the TE field
405 in the HWCAP for determining 'have_regset_tdb'.
406
407 2013-11-06 Will Newton <will.newton@linaro.org>
408
409 PR gdb/12866
410 * dwarf2read.c (skip_one_die): Sanity check DW_AT_sibling
411 values. (read_partial_die): Likewise.
412
413 2013-11-06 Muhammad Bilal <mbilal@codesourcery.com>
414
415 PR cli/16122
416 * top.c (command_line_input): Unify interactivity tests to use
417 input_from_terminal_p.
418 * event-top.c (command_line_handler): Likewise.
419
420 2013-11-06 Yao Qi <yao@codesourcery.com>
421
422 * Makefile.in (check-perf): New target.
423
424 2013-11-05 Will Newton <will.newton@linaro.org>
425
426 PR gdb/7670
427 * arm-tdep.c (print_fpu_flags): Use filtered output routines.
428 (arm_print_float_info): Likewise.
429
430 2013-11-04 Anton Blanchard <anton@samba.org>
431
432 * target.c (memory_xfer_partial): Cap write to 4KB.
433
434 2013-11-01 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
435
436 * breakpoint.c (create_longjmp_master_breakpoint): Allow libc
437 probe scan even when the arch provides no get_longjmp_target.
438
439 2013-10-31 Pedro Alves <palves@redhat.com>
440
441 * infrun.c (handle_syscall_event): Don't set or clear stop_signal.
442 (handle_inferior_event) <TARGET_WAITKIND_FORKED,
443 TARGET_WAITKIND_VFORKED>: Don't set stop_signal to
444 GDB_SIGNAL_TRAP, or clear it. Pass GDB_SIGNAL_0 to
445 bpstat_explains signal, instead of GDB_SIGNAL_TRAP.
446 <bpstat handling>: If the bpstat chain wants the signal to be
447 hidden, then set stop_signal to GDB_SIGNAL_0 instead of
448 GDB_SIGNAL_TRAP.
449
450 2013-10-31 Andrew Burgess <aburgess@broadcom.com>
451
452 * breakpoint.c (update_watchpoint): Update error message and add
453 an additional error message.
454
455 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
456
457 * s390-tdep.h: Rename to...
458 * s390-linux-tdep.h: ...here.
459 * s390-tdep.c: Rename to...
460 * s390-linux-tdep.c: ...here. Adjust #include.
461 * s390-nat.c: Rename to...
462 * s390-linux-nat.c: ...here. Adjust #include.
463 * config/s390/s390.mh: Rename to...
464 * config/s390/linux.mh: ...here. Reflect rename s390-nat.o ->
465 s390-linux-nat.o.
466 * configure.host: Reflect host rename "s390" -> "linux".
467 * configure.tgt: Reflect rename s390-tdep.o -> s390-linux-tdep.o.
468 * Makefile.in (ALL_TARGET_OBS): Likewise.
469 (HFILES_NO_SRCDIR): Reflect rename s390-tdep.h ->
470 s390-linux-tdep.h.
471 (ALLDEPFILES): Reflect rename of .c files.
472
473 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
474
475 * s390-nat.c: Whitespace cleanup.
476 * s390-tdep.c: Likewise.
477 * s390-tdep.h: Remove empty line at end of file.
478
479 2013-10-30 Maciej W. Rozycki <macro@codesourcery.com>
480
481 * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
482 siginfo_size.
483
484 2013-10-29 Tom Tromey <tromey@redhat.com>
485
486 * utils.c (reg): Move undefinition...
487 * gdb_curses.h: ... here. Update comment to mention AIX.
488
489 2013-10-29 Nicolas Blanc <nicolas.blanc@intel.com>
490
491 * exec.h (add_target_sections_of_objfile): New declaration.
492 * exec.c (add_target_sections_of_objfile): New function.
493 * symfile.c (add_symbol_file_command): Update current target sections.
494 (remove_symbol_file_command): New command.
495 (symfile_free_objfile): New function.
496 (_initialize_symfile): Register observer for free_objfile events.
497 * NEWS: Add description of the remove-symbol-file command.
498 * breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
499 * objfiles.c (free_objfile): Notify free_objfile.
500 (is_addr_in_objfile): New function.
501 * objfiles.h (is_addr_in_objfile): New declaration.
502 * printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
503 events instead of solib_unloaded events.
504 (_initialize_printcmd): Register observer for free_objfile instead
505 of solib_unloaded notifications.
506 * solib.c (remove_user_added_objfile): New function.
507 (_initialize_symfile): Add remove-symbol-file.
508
509 2013-10-29 Andrew Burgess <aburgess@broadcom.com>
510
511 * infcmd.c (default_print_one_register_info): Use val_print to
512 print all values even optimized out or unavailable ones. Don't
513 try to print a raw form of optimized out or unavailable values.
514
515 2013-10-29 Yao Qi <yao@codesourcery.com>
516
517 * auto-load.c (auto_load_pspace_data_cleanup): Get data from
518 parameter 'arg' instead of from program_space_data.
519 * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
520 * solib-darwin.c (darwin_pspace_data_cleanup): Likewise.
521 * solib-dsbt.c (dsbt_pspace_data_cleanup): Likewise.
522 * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
523 * inflow.c (inflow_inferior_data_cleanup): Get data from
524 parameter 'arg' instead of inferior_data.
525 * registry.h: Add comments.
526
527 2013-10-28 Pedro Alves <palves@redhat.com>
528
529 * breakpoint.c (watchpoints_triggered)
530 <!target_stopped_data_address>: Hardcode return 1.
531
532 2013-10-28 Pedro Alves <palves@redhat.com>
533
534 * infrun.c (process_event_stop_test): Remove unnecessary scoping
535 level and reindent.
536
537 2013-10-28 Pedro Alves <palves@redhat.com>
538
539 * infrun.c (process_event_stop_test): New function, factored out
540 from handle_inferior_event.
541 (handle_inferior_event): 'process_event_stop_test' is now a
542 function instead of a goto label -- adjust.
543
544 2013-10-28 Pedro Alves <palves@redhat.com>
545
546 * infrun.c (handle_inferior_event): Move process_event_stop_test
547 goto label to the else branch of the ecs->random_signal check,
548 along with FRAME and GDBARCH re-fetching.
549
550 2013-10-28 Pedro Alves <palves@redhat.com>
551
552 * infrun.c (switch_back_to_stepped_thread): New function, factored
553 out from handle_inferior_event.
554 (handle_inferior_event): Adjust to call
555 switch_back_to_stepped_thread. Call it also at the tail of the
556 random signal handling, and return, instead of also handling
557 random signals just before the stepping tests.
558
559 2013-10-28 Pedro Alves <palves@redhat.com>
560
561 * infrun.c (clear_stop_func): Delete.
562 (handle_inferior_event): Don't call clear_stop_func and don't
563 clear 'ecs->random_signal'.
564
565 2013-10-27 Yao Qi <yao@codesourcery.com>
566
567 * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
568 (varobj_create, varobj_get_path_expr): Update.
569 (varobj_value_has_mutated, varobj_update): Likewise.
570 (create_child_with_value, new_root_variable): Likewise.
571 (number_of_children, name_of_variable): Likewise.
572 (value_of_child, my_value_of_variable): Likewise.
573 (varobj_value_is_changeable_p): Likewise.
574
575 2013-10-25 Yao Qi <yao@codesourcery.com>
576
577 * language.h (struct lang_varobj_ops): Declare.
578 (struct language_defn) <la_varobj_ops>: New field.
579 * ada-lang.c: Include "varobj.h"
580 (defn ada_language_defn): Initialize field 'la_varobj_ops' with
581 ada_varobj_ops.
582 * c-lang.c: Include "varobj.h"
583 (c_language_defn): Initialize field 'la_varobj_ops' with
584 c_varobj_ops.
585 (cplus_language_defn): Initialize field 'la_varobj_ops' with
586 cplus_varobj_ops.
587 (asm_language_defn): Initialize field 'la_varobj_ops' with
588 default_varobj_ops.
589 (minimal_language_defn): Likewise.
590 * d-lang.c (d_language_defn): Likewise.
591 * f-lang.c (f_language_defn): Likewise.
592 * go-lang.c (go_language_defn): Likewise.
593 * m2-lang.c (m2_language_defn): Likewise.
594 * objc-lang.c (objc_language_defn): Likewise.
595 * opencl-lang.c (opencl_language_defn): Likewise.
596 * p-lang.c (pascal_language_defn): Likewise.
597 * language.c (unknown_language_defn): Likewise.
598 (auto_language_defn): Likewise.
599 (local_language_defn): Likewise.
600 * jv-lang.c (java_language_defn): Initialize field
601 'la_varobj_ops' with java_varobj_ops.
602 * varobj.c (varobj_create): Update.
603 * varobj.h (default_varobj_ops): Define macro.
604
605 2013-10-25 Pedro Alves <palves@redhat.com>
606
607 * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
608 static field value.
609 (cp_print_static_field): If the value is entirely optimized out,
610 print <optimized out> here.
611 * jv-valprint.c (java_print_value_fields): No longer handle a NULL
612 static field value.
613 * p-valprint.c (pascal_object_print_static_field): If the value is
614 entirely optimized out, print <optimized out> here.
615 * valops.c (do_search_struct_field)
616 (value_struct_elt_for_reference): No longer handle a NULL static
617 field value.
618 * value.c (value_static_field): Return an optimized out value
619 instead of NULL.
620
621 2013-10-25 Yao Qi <yao@codesourcery.com>
622
623 * remote.c (remote_traceframe_info): Return early if
624 traceframe is not selected.
625
626 2013-10-25 Yao Qi <yao@codesourcery.com>
627
628 * tracepoint.c (traceframe_fun): Remove.
629 (traceframe_sal): Remove.
630 (set_traceframe_context): Add local variables.
631
632 2013-10-25 Joel Brobecker <brobecker@adacore.com>
633
634 * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
635 and parameter name.
636
637 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
638
639 * linux-tdep.c (linux_corefile_thread_callback): Propagate any
640 failure from register information collection.
641
642 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
643
644 * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
645 member.
646 (linux_corefile_thread_callback): Update accordingly.
647 (linux_make_corefile_notes): Likewise.
648
649 2013-10-24 Pedro Alves <palves@redhat.com>
650
651 * NEWS (New options): Mention set/show startup-with-shell.
652 * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
653 instead of 3.
654 * fork-child.c (fork_inferior, startup_inferior): Handle 'set
655 startup-with-shell'.
656 (show_startup_with_shell): New function.
657 (_initialize_fork_child): Register the set/show startup-with-shell
658 commands.
659 * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
660 * inf-ttrace.c (inf_ttrace_him): Remove comment.
661 * procfs.c (procfs_init_inferior): Remove comment.
662 * infcmd.c (startup_with_shell): New global.
663 * inferior.h (startup_with_shell): Declare global.
664 (STARTUP_WITH_SHELL): Delete.
665 (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
666
667 2013-10-23 Pedro Alves <palves@redhat.com>
668
669 * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
670 * common/signals.c: Include "gdb_assert.h".
671 (signals): New field 'symbol'.
672 (SET): Use the 'symbol' parameter.
673 (gdb_signal_to_symbol_string): New function.
674 * infrun.c (handle_inferior_event) <random signal>: In debug
675 output, print the random signal enum as string in addition to its
676 number.
677 * target/waitstatus.c (target_waitstatus_to_string): Print the
678 signal's enum value as string instead of the (POSIX) signal name.
679
680 2013-10-23 Gary Benson <gbenson@redhat.com>
681
682 PR 16013
683 * common/linux-osdata.c (command_from_pid): Reduced size of cmd
684 from 32 to 18. Adjusted fscanf format string accordingly.
685 (Avoids leaving cmd unterminated.)
686 (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
687 trun, retn or extra. (Avoids leaving extra unterminated.) Check
688 that local_address and remote_address will not overflow.
689 (linux_xfer_osdata_modules): Parse lines using strtok to avoid
690 leaving dependencies unterminated. Parse size as "%u" to match
691 definition.
692
693 2013-10-22 Pedro Alves <palves@redhat.com>
694
695 * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
696 set ecs->random signal.
697
698 2013-10-22 Pedro Alves <palves@redhat.com>
699
700 * infrun.c (keep_going): Update comments.
701
702 2013-10-22 Pedro Alves <palves@redhat.com>
703
704 * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
705 invalid signal numbers to GDB_SIGNAL_UNKNOWN.
706
707 2013-10-22 Pedro Alves <palves@redhat.com>
708
709 * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
710 GDB_EXC_BAD_ACCESS.
711 (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
712 (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
713 (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
714 (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
715 (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
716 (GDB_SIGNAL_LAST): Change description string.
717 * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
718 Adjust to signal renaming.
719 * darwin-nat.c (darwin_decode_message): Likewise.
720
721 2013-10-22 Jose E. Marchesi <jose.marchesi@oracle.com>
722
723 * MAINTAINERS (Write After Approval): Add myself to the list.
724
725 2013-10-18 Andrew Burgess <aburgess@broadcom.com>
726
727 * breakpoint.c (update_watchpoint): If hardware watchpoints are
728 forced off, downgrade them to software watchpoints if possible,
729 and error out if not possible.
730 (watch_command_1): Move watchpoint type selection closer to
731 watchpoint creation, and extend the comments.
732
733 2013-10-18 Pedro Alves <palves@redhat.com>
734
735 PR gdb/16062
736 * infrun.c (handle_inferior_event): Keep going if we got a random
737 signal we should not stop for, instead of falling through to the
738 step tests.
739
740 2013-10-18 Yao Qi <yao@codesourcery.com>
741
742 * c-varobj.c (cplus_number_of_children): Fix indentation.
743
744 2013-10-17 Tom Tromey <tromey@redhat.com>
745
746 PR gdb/15995:
747 * printcmd.c (printcmd): Call gdb_flush.
748
749 2013-10-17 Tom Tromey <tromey@redhat.com>
750
751 * elfread.c (struct elfinfo) <stabindexsect>: Remove.
752 (elf_locate_sections): Update.
753
754 2013-10-17 Yao Qi <yao@codesourcery.com>
755
756 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
757 * ada-varobj.c: Remove the include of ada-varobj.h.
758 (ada_varobj_get_number_of_children): Declare.
759 (ada_varobj_get_name_of_child): Make it static.
760 (ada_varobj_get_path_expr_of_child): Likewise.
761 (ada_varobj_get_value_of_child): Likewise.
762 (ada_varobj_get_type_of_child): Likewise.
763 (ada_varobj_get_value_of_array_variable): Likewise.
764 * ada-varobj.h: Remove.
765
766 2013-10-17 Yao Qi <yao@codesourcery.com>
767
768 * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
769 (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
770 * ada-varobj.c: Include "varobj.h".
771 (ada_number_of_children): New. Moved from varobj.c.
772 (ada_name_of_variable, ada_name_of_child): Likewise.
773 (ada_path_expr_of_child, ada_value_of_child): Likewise.
774 (ada_type_of_child, ada_value_of_variable): Likewise.
775 (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
776 (ada_varobj_ops): New.
777 * c-varobj.c, jv-varobj.c: New file. Moved from varobj.c.
778 * gdbtypes.c (get_target_type): New. Moved from varobj.c.
779 * gdbtypes.h (get_target_type): Declare.
780 * varobj.c: Remove the inclusion of "ada-varobj.h" and
781 "ada-lang.h".
782 (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
783 (ANONYMOUS_UNION_NAME): Likewise.
784 (get_type, get_value_type, get_target_type): Remove declarations.
785 (value_get_print_value, varobj_value_get_print_value): Likewise.
786 (c_number_of_children, c_name_of_variable): Likewise.
787 (c_name_of_child, c_path_expr_of_child): Likewise.
788 (c_value_of_child, c_type_of_child): Likewise.
789 (c_value_of_variable, cplus_number_of_children): Likewise.
790 (cplus_class_num_children, cplus_name_of_variable): Likewise.
791 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
792 (cplus_value_of_child, cplus_type_of_child): Likewise.
793 (cplus_value_of_variable, java_number_of_children): Likewise.
794 (java_name_of_variable, java_name_of_child): Likewise.
795 (java_path_expr_of_child, java_value_of_child): Likewise.
796 (java_type_of_child, java_value_of_variable): Likewise.
797 (ada_number_of_children, ada_name_of_variable): Likewise.
798 (ada_name_of_child, ada_path_expr_of_child): Likewise.
799 (ada_value_of_child, ada_type_of_child): Likewise.
800 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
801 (ada_value_has_mutated): Likewise.
802 (struct language_specific): Move it to varobj.h.
803 (CPLUS_FAKE_CHILD): Move it to varobj.h.
804 (restrict_range): Rename it varobj_restrict_range. Make it extern.
805 Callers update.
806 (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
807 Make it extern.
808 (is_anonymous_child): Move it to c-varobj.c and rename to
809 varobj_is_anonymous_child. Caller update.
810 (get_type): Move it to c-varobj.c.
811 (get_value_type): Rename it varobj_get_value_type. Make it
812 extern.
813 (get_target_type): Move it gdbtypes.c.
814 (varobj_formatted_print_options): New function.
815 (value_get_print_value): Rename it to
816 varobj_value_get_print_value and make it extern.
817 (varobj_value_is_changeable_p): Make it extern.
818 (adjust_value_for_child_access): Move it to c-varobj.c.
819 (default_value_is_changeable_p): Rename it to
820 varobj_default_value_is_changeable_p. Make it extern.
821 (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
822 (c_name_of_child, c_path_expr_of_child): Likewise.
823 (c_value_of_child, c_type_of_child): Likewise.
824 (c_value_of_variable, cplus_number_of_children): Likewise.
825 (cplus_class_num_children, cplus_name_of_variable): Likewise.
826 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
827 (cplus_value_of_child, cplus_type_of_child): Likewise.
828 (cplus_value_of_variable): Likewise.
829 (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
830 (java_name_of_child, java_path_expr_of_child): Likewise.
831 (java_value_of_child, java_type_of_child): Likewise.
832 (java_value_of_variable): Likewise.
833 (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
834 (ada_name_of_child, ada_path_expr_of_child): Likewise.
835 (ada_value_of_child, ada_type_of_child): Likewise.
836 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
837 (ada_value_has_mutated): Likewise.
838 * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
839 (struct lang_varobj_ops): New. Renamed by 'struct language_specific'.
840 (c_varobj_ops, cplus_varobj_ops): Declare.
841 (java_varobj_ops, ada_varobj_ops): Declare.
842 (varobj_default_value_is_changeable_p): Declare.
843 (varobj_value_is_changeable_p): Declare.
844 (varobj_get_value_type, varobj_is_anonymous_child): Declare.
845 (varobj_get_path_expr_parent): Declare.
846 (varobj_value_get_print_value): Declare.
847 (varobj_formatted_print_options): Declare.
848 (varobj_restrict_range): Declare.
849
850 2013-10-17 Luis Machado <lgustavo@codesourcery.com>
851
852 * target/waitstatus.h (target_waitkind): Remove spurious
853 character from the comments.
854
855 2013-10-17 Joel Brobecker <brobecker@adacore.com>
856
857 * gdbarch.sh (get_longjmp_target): Add method documentation.
858 * gdbarch.h: Regenerate.
859
860 2013-10-16 Tom Tromey <tromey@redhat.com>
861
862 * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
863 label.
864
865 2013-10-16 Luis Machado <lgustavo@codesourcery.com>
866
867 * gcore.in: Call GDB using the full path to the gcore script.
868 Error out if the GDB binary is not found.
869
870 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
871
872 PR gdb/16014
873 * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
874 sizeof.
875
876 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
877
878 PR gdb/16042
879 * target.c (target_disable_btrace): Fix invalid return value for
880 void function.
881 (target_teardown_btrace): Likewise.
882
883 2013-10-14 Yao Qi <yao@codesourcery.com>
884
885 * varobj.c (struct varobj): Move most of the fields to
886 varobj.h.
887 (struct varobj_dynamic): New struct.
888 (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
889 (varobj_has_more): Likewise.
890 (dynamic_varobj_has_child_method): Likewise.
891 (update_dynamic_varobj_children): Likewise.
892 (varobj_get_num_children): Likewise.
893 (varobj_list_children, varobj_pretty_printed_p): Likewise.
894 (install_new_value_visualizer): Likewise.
895 (install_new_value_visualizer, install_new_value): Likewise.
896 (varobj_update, new_variable, free_variable): Likewise.
897 (my_value_of_variable, value_get_print_value): Likewise.
898 (install_visualizer): Change the type of parameter 'var' to
899 'struct varobjd_dynamic *'. Callers update.
900 * varobj.h (struct varobj): Moved from varobj.c.
901 (struct varobj) <dynamic>: New field.
902
903 2013-10-13 Sandra Loosemore <sandra@codesourcery.com>
904
905 * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
906 as the preferred name of r30.
907 * nios2-linux-tdep.c (reg_offsets): Likewise.
908 * features/nios2-cpu.xml: Likewise.
909 * features/nios2-linux.c: Regenerated.
910 * features/nios2.c: Regenerated.
911 * regformats/nios2-linux.dat: Regenerated.
912
913 2013-10-13 Jan Kratochvil <jan.kratochvil@redhat.com>
914
915 Canonicalize directories for EXEC_FILENAME.
916 * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
917 exec_filename.
918 * utils.c (gdb_realpath_keepfile): New function.
919 * utils.h (gdb_realpath_keepfile): New declaration.
920
921 2013-10-11 Doug Evans <dje@google.com>
922
923 * Makefile.in (GDBFLAGS): New variable.
924 (run): New rule.
925
926 2013-10-11 Joel Brobecker <brobecker@adacore.com>
927
928 * NEWS: Add entry documenting the new "-catch-assert" and
929 "-catch-exception" GDB/MI commands.
930
931 2013-10-11 Joel Brobecker <brobecker@adacore.com>
932
933 * breakpoint.h (init_ada_exception_breakpoint): Add parameter
934 "enabled".
935 * breakpoint.c (init_ada_exception_breakpoint): Add parameter
936 "enabled". Set B->ENABLE_STATE accordingly.
937 * ada-lang.h (ada_exception_catchpoint_kind): Move here from
938 ada-lang.c.
939 (create_ada_exception_catchpoint): Add declaration.
940 * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
941 (create_ada_exception_catchpoint): Make non-static. Add new
942 parameter "disabled". Use it in call to
943 init_ada_exception_breakpoint.
944 (catch_ada_exception_command): Add parameter "enabled" in call
945 to create_ada_exception_catchpoint.
946 (catch_assert_command): Likewise.
947
948 * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
949 Add declarations.
950 * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
951 "catch-exception" commands.
952 * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
953 (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
954
955 2013-10-11 Joel Brobecker <brobecker@adacore.com>
956
957 * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
958 "enum exception_catchpoint_kind". Replace the "ex_" prefix
959 of all its enumerates with "ada_". Update the rest of this
960 file throughout.
961
962 2013-10-11 Joel Brobecker <brobecker@adacore.com>
963
964 * ada-lang.c (ada_decode_exception_location): Delete.
965 (create_ada_exception_catchpoint): Remove arguments "sal",
966 "addr_string" and "ops". Add argument "ex_kind" instead.
967 Adjust implementation accordingly, calling ada_exception_sal
968 to get the entities it no longer gets passed as arguments.
969 Document the function's arguments.
970 (catch_ada_exception_command): Use catch_ada_exception_command_split
971 instead of ada_decode_exception_location, and update call to
972 create_ada_exception_catchpoint.
973 (catch_ada_assert_command_split): Renames
974 ada_decode_assert_location. Remove parameters "addr_string" and
975 "ops", and now returns void. Adjust implementation accordingly.
976 Update the function documentation.
977 (catch_assert_command): Use catch_ada_assert_command_split
978 instead of ada_decode_assert_location. Update call to
979 create_ada_exception_catchpoint.
980
981 2013-10-11 Joel Brobecker <brobecker@adacore.com>
982
983 * utils.h (perror_warning_with_name): Add declaration.
984 * utils.c (perror_warning_with_name): New function.
985 * cli/cli-cmds.c (source_script_with_search): Add call to
986 perror_warning_with_name if from_tty is nul.
987
988 2013-10-11 Joel Brobecker <brobecker@adacore.com>
989
990 * utils.c (perror_string): New function, extracted out of
991 throw_perror_with_name.
992 (throw_perror_with_name): Rework to use perror_string.
993
994 2013-10-11 Yao Qi <yao@codesourcery.com>
995
996 * remote.c (discard_pending_stop_replies_in_queue): Update
997 declaration.
998 (struct stop_reply) <rs>: New field.
999 (remove_stop_reply_of_remote_state): New function.
1000 (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
1001 Callers update. Pass remove_stop_reply_of_remote_state to
1002 QUEUE_iterate.
1003 (remote_parse_stop_reply): Initialize field 'rs'.
1004
1005 2013-10-10 Will Newton <will.newton@linaro.org>
1006
1007 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
1008 linux_init_abi.
1009
1010 2013-10-10 Joel Brobecker <brobecker@adacore.com>
1011
1012 * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
1013 serial_baud_show_cmd.
1014 (_initialize_cli_cmds): Delete the code creating the
1015 "set/show remotebaud" commands.
1016 * serial.c (baud_rate): Move here from top.c.
1017 (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
1018 (_initialize_serial): Create "set/show serial baud" commands.
1019 Add "set/show remotebaud" command aliases.
1020 * top.c (baud_rate): Moved to serial.c.
1021 * NEWS: Document the new "set/show serial baud" commands,
1022 replacing "set/show remotebaud".
1023
1024 2013-10-09 Pedro Alves <palves@redhat.com>
1025
1026 * breakpoint.c (insert_bp_location): Use memory_error_message to
1027 build the memory error string.
1028 * c-lang.c: Include "gdbcore.h".
1029 (c_get_string): Use memory_error to throw error.
1030 (target_xfer_memory_error): Delete.
1031 (memory_error_message): New, factored out from
1032 target_xfer_memory_error.
1033 (memory_error): Change parameter type to target_xfer_error.
1034 Rewrite.
1035 (read_memory): Use memory_error instead of
1036 target_xfer_memory_error.
1037 * gdbcore.h: Include "target.h".
1038 (memory_error): Change parameter type to target_xfer_error.
1039 (memory_error_message): Declare function.
1040 * target.c (target_read_memory, target_read_stack)
1041 (target_write_memory, target_write_raw_memory): Return
1042 TARGET_XFER_E_IO on error. Adjust comments.
1043 (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
1044 instead of EIO.
1045 * target.h (target_read, target_insert_breakpoint)
1046 (target_remove_breakpoint): Adjust comments.
1047 * valprint.c (partial_memory_read): Rename parameter, and adjust
1048 comment.
1049 (val_print_string): Use memory_error_message to build the memory
1050 error string.
1051
1052 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1053
1054 * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
1055 result variable. Rename variable fopen_e_ever_failed to
1056 fopen_e_ever_failed_einval. Retry fopen only for errno EINVAL.
1057
1058 2013-10-09 Pedro Alves <palves@redhat.com>
1059
1060 * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
1061 (monitor_write_memory_longlongs, monitor_write_memory_block):
1062 Constify 'myaddr' parameter.
1063 (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
1064 helper.
1065 (monitor_xfer_partial): New function.
1066 (init_base_monitor_ops): Don't install a deprecated_xfer_memory
1067 hook. Install a to_xfer_partial hook.
1068
1069 2013-10-09 Tom Tromey <tromey@redhat.com>
1070
1071 * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
1072 bfd_get_alt_debug_link_info.
1073
1074 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1075
1076 New flag OBJF_NOT_FILENAME.
1077 * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
1078 * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
1079 allocate_objfile.
1080 (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
1081 symbol_file_add_from_bfd.
1082 * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
1083 allocate_objfile.
1084 * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
1085 NULL.
1086 * objfiles.h (OBJF_NOT_FILENAME): New.
1087
1088 2013-10-08 Tom Tromey <tromey@redhat.com>
1089
1090 * Makefile.in (SFILES): Add build-id.c.
1091 (HFILES_NO_SRCDIR): Add build-id.h.
1092 * build-id.c: New file, largely from elfread.c. Modified
1093 most functions.
1094 * build-id.h: New file.
1095 * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
1096 bfd_get_alt_debug_link_info. Verify dwz file's build-id.
1097 Search for dwz file using build-id.
1098 * elfread.c (build_id_bfd_get, build_id_verify)
1099 (build_id_to_debug_filename, find_separate_debug_file): Remove.
1100
1101 2013-10-08 Joel Brobecker <brobecker@adacore.com>
1102
1103 * ada-lang.c (compare_names_with_case): Renamed from
1104 compare_names, adding a new parameter "casing" and its handling.
1105 New function documentation.
1106 (compare_names): New function, implemented using
1107 compare_names_with_case.
1108
1109 2013-10-08 Joel Brobecker <brobecker@adacore.com>
1110
1111 * ada-lang.c (ada_exception_sal): Remove advance declaration.
1112
1113 2013-10-07 Tom Tromey <tromey@redhat.com>
1114
1115 * objfiles.c (free_objfile_per_bfd_storage): Delete the
1116 demangled_names_hash.
1117 (free_objfile): Don't delete the demangled_names_hash.
1118 * objfiles.h (struct objfile_per_bfd_storage)
1119 <demangled_names_hash>: New field.
1120 (struct objfile) <demangled_names_hash>: Move to
1121 objfile_per_bfd_storage.
1122 * symfile.c (reread_symbols): Don't delete the
1123 demangled_names_hash.
1124 * symtab.c (create_demangled_names_hash): Update.
1125 (symbol_set_names): Update.
1126
1127 2013-10-07 Tom Tromey <tromey@redhat.com>
1128
1129 * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
1130 needs_relocations>: New fields.
1131 (gdb_bfd_requires_relocations): New function.
1132 * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
1133 * objfiles.c (get_objfile_bfd_data): Disallow sharing if
1134 the BFD needs relocations applied.
1135
1136 2013-10-07 Pedro Alves <palves@redhat.com>
1137
1138 PR breakpoints/11568
1139 * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
1140 the thread list" instead of "gone".
1141
1142 2013-10-06 Sergio Durigan Junior <sergiodj@redhat.com>
1143
1144 * NEWS: Mention new convenience variable $_exitsignal.
1145 * corelow.c (core_open): Reset exit convenience variables. Set
1146 $_exitsignal to the uncaught signal which generated the corefile.
1147 * infrun.c (handle_inferior_event): Reset exit convenience
1148 variables. Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
1149 (clear_exit_convenience_vars): New function.
1150 * inferior.h (clear_exit_convenience_vars): New prototype.
1151
1152 2013-10-06 Yao Qi <yao@codesourcery.com>
1153
1154 * varobj.h: Add comments to enum varobj_languages.
1155
1156 2013-10-04 Doug Evans <dje@google.com>
1157
1158 Add support for DWP file format version 2.
1159 * NEWS: Mention support for DWP file format version 2.
1160 * dwarf2read.c (dwarf2_section_info): Convert asection field to a
1161 union of asection, containing_section. New fields virtual_offset
1162 and is_virtual. Change type of readin filed from int to char.
1163 (dwo_sections, dwo_file): Tweak comments.
1164 (dwp_v2_section_ids): New enum.
1165 (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
1166 str_offsets, types.
1167 (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
1168 All uses updated.
1169 (virtual_v2_dwo_sections): New struct.
1170 (dwp_hash_table): New fields version, nr_columns. Change type of
1171 section_pool field to a union.
1172 (dwp_file): New field version.
1173 (dwarf2_has_info): Check for virtual sections.
1174 (get_containing_section): New function.
1175 (get_section_bfd_owner, get_section_bfd_section): Call it.
1176 (dwarf2_locate_sections): Update.
1177 (dwarf2_section_empty_p): Update.
1178 (dwarf2_read_section): Handle virtual sections.
1179 (locate_dwz_sections): Update.
1180 (create_dwp_hash_table): Document and handle V2 format.
1181 (locate_v1_virtual_dwo_sections): Renamed from
1182 locate_virtual_dwo_sections and update. All callers updated.
1183 (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
1184 Delete arg htab. Rename arg section_index to unit_index.
1185 All callers updated.
1186 (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
1187 All uses updated.
1188 (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
1189 (lookup_dwo_unit_in_dwp): Add V2 support.
1190 (dwarf2_locate_dwo_sections): Update.
1191 (dwarf2_locate_common_dwp_sections): Renamed from
1192 dwarf2_locate_dwp_sections and update. All callers updated.
1193 (dwarf2_locate_v2_dwp_sections): New function.
1194 (open_and_init_dwp_file): Add V2 support.
1195 (read_str_index): New locals str_section, str_offsets_section.
1196
1197 2013-10-04 Pedro Alves <palves@redhat.com>
1198
1199 * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
1200 (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
1201 (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
1202 describing comments with references to ptid.h.
1203 * common/ptid.h: Remove intro description of constructors,
1204 accessors and predicates.
1205 (struct ptid): Reformat.
1206 (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
1207 (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
1208 describing comments.
1209
1210 2013-10-04 Joel Brobecker <brobecker@adacore.com>
1211
1212 * aix-thread.c (sync_threadlists): Add missing ')' in call
1213 to ptid_build.
1214
1215 2013-10-04 Joel Brobecker <brobecker@adacore.com>
1216
1217 * procfs.c (procfs_init_inferior): Fix typo causing the build
1218 to fail.
1219
1220 2013-10-04 Joel Brobecker <brobecker@adacore.com>
1221
1222 * aix-thread.c (ptrace32): Remove cast to addr_ptr.
1223
1224 2013-10-04 Joel Brobecker <brobecker@adacore.com>
1225
1226 * mi/mi-main.c (run_one_inferior): Add function description.
1227 Make ARG a pointer to an integer whose value determines whether
1228 we should "run" or "start" the program.
1229 (mi_cmd_exec_run): Add handling of the "--start" option.
1230 Reject all other command-line options.
1231 * NEWS: Add entry for "-exec-run"'s new "--start" option.
1232
1233 2013-10-04 Yao Qi <yao@codesourcery.com>
1234
1235 * remote-notif.h (REMOTE_NOTIF_ID): New enum.
1236 (struct notif_client) <pending_event>: Moved
1237 to struct remote_notif_state.
1238 <id>: New field.
1239 (struct remote_notif_state) <pending_event>: New field.
1240 (notif_event_xfree): Declare.
1241 * remote-notif.c (handle_notification): Adjust.
1242 (notif_event_xfree): New function.
1243 (do_notif_event_xfree): Call notif_event_xfree.
1244 (remote_notif_state_xfree): Call notif_event_xfree to free
1245 each element in field pending_event.
1246 * remote.c (discard_pending_stop_replies): Remove declaration.
1247 (discard_pending_stop_replies_in_queue): Declare.
1248 (remote_close): Call discard_pending_stop_replies_in_queue
1249 instead of discard_pending_stop_replies.
1250 (remote_start_remote): Adjust.
1251 (stop_reply_xfree): Call notif_event_xfree.
1252 (notif_client_stop): Adjust initialization.
1253 (remote_notif_remove_all): Rename it to ...
1254 (remove_stop_reply_for_inferior): ... this. Update comments.
1255 Don't check INF is NULL.
1256 (discard_pending_stop_replies): Return early if notif_state is
1257 NULL. Adjust. Don't check INF is NULL.
1258 (remote_notif_get_pending_events): Adjust.
1259 (discard_pending_stop_replies_in_queue): New function.
1260 (remote_wait_ns): Likewise.
1261
1262 2013-10-04 Yao Qi <yao@codesourcery.com>
1263
1264 * remote-notif.c (DECLARE_QUEUE_P): Remove.
1265 (notif_queue): Remove.
1266 (remote_notif_process): Add one parameter 'notif_queue'.
1267 Update comments. Callers update.
1268 (remote_async_get_pending_events_token): Remove.
1269 (remote_notif_register_async_event_handler): Remove.
1270 (remote_notif_unregister_async_event_handler): Remove.
1271 (handle_notification): Add parameter 'notif_queue'. Update
1272 comments. Callers update.
1273 (notif_xfree): Remove.
1274 (remote_notif_state_allocate): New function.
1275 (remote_notif_state_xfree): New function.
1276 (_initialize_notif): Remove code to allocate queue.
1277 * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
1278 (struct remote_notif_state): New.
1279 (handle_notification): Update declaration.
1280 (remote_notif_process): Likewise.
1281 (remote_notif_register_async_event_handler): Remove.
1282 (remote_notif_unregister_async_event_handler): Remove.
1283 (remote_notif_state_allocate): Declare.
1284 (remote_notif_state_xfree): Declare.
1285 * remote.c (struct remote_state) <notif_state>: New field.
1286 (remote_close): Don't call
1287 remote_notif_unregister_async_event_handler. Call
1288 remote_notif_state_xfree.
1289 (remote_open_1): Don't call
1290 remote_notif_register_async_event_handler. Call
1291 remote_notif_state_allocate.
1292
1293 2013-10-04 Yao Qi <yao@codesourcery.com>
1294
1295 * varobj.c (create_child_with_value): Remove 'const' from the
1296 type of parameter 'name'.
1297 (varobj_add_child): Likewise.
1298 (install_dynamic_child): Remove 'const' from the type of
1299 parameter 'name'.
1300 (varobj_add_child): Likewise.
1301 (create_child_with_value): Likewise. Update comments. Don't
1302 duplicate 'name'.
1303 (update_dynamic_varobj_children): Duplicate 'name'
1304 and pass it to install_dynamic_child.
1305
1306 2013-10-03 Phil Muldoon <pmuldoon@redhat.com>
1307
1308 * python/py-value.c (convert_value_from_python): Move PyInt_Check
1309 conversion logic to occur after PyLong_Check. Comment on order
1310 change significance.
1311 * python/py-arch.c (archpy_disassemble): Comment on order of
1312 conversion for integers and longs.
1313
1314 2013-10-03 Pedro Alves <palves@redhat.com>
1315
1316 * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
1317 the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
1318 functions. Always test for PTRACE_O_TRACESYSGOOD even if
1319 PTRACE_O_TRACEFORK is not supported.
1320 (linux_test_for_tracesysgood): New function.
1321 (linux_test_for_tracefork): New function, factored out from
1322 linux_check_ptrace_features, and also don't kill child_pid here.
1323
1324 2013-10-03 Tristan Gingold <gingold@adacore.com>
1325
1326 * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
1327 Remove verbose error reporting. Use detected state to
1328 thread_set_state call.
1329 (i386_darwin_dr_get): Fix return type. Remove verbose error
1330 report.
1331 Remove trailing spaces.
1332
1333 2013-10-02 Pedro Alves <palves@redhat.com>
1334
1335 * cp-valprint.c (cp_print_value_fields): Adjust calls to
1336 val_print_optimized_out.
1337 * jv-valprint.c (java_print_value_fields): Likewise.
1338 * p-valprint.c (pascal_object_print_value_fields): Likewise.
1339 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
1340 <DWARF_VALUE_REGISTER>: If the register was not saved, return a
1341 new optimized out value.
1342 * findvar.c (address_from_register): Likewise.
1343 * frame.c (put_frame_register): Tweak error string to say the
1344 register was not saved, rather than optimized out.
1345 * infcmd.c (default_print_one_register_info): Adjust call to
1346 val_print_optimized_out. Use value_of_register instead of
1347 get_frame_register_value.
1348 * mi/mi-main.c (output_register): Use value_of_register instead of
1349 get_frame_register_value.
1350 * valprint.c (valprint_check_validity): Likewise.
1351 (val_print_optimized_out): New value parameter. If the value is
1352 lval_register, print <not saved> instead.
1353 (value_check_printable, val_print_scalar_formatted): Adjust calls
1354 to val_print_optimized_out.
1355 * valprint.h (val_print_optimized_out): New value parameter.
1356 * value.c (struct value) <optimized_out>: Extend comment.
1357 (error_value_optimized_out): New function.
1358 (require_not_optimized_out): Use it. Use a different string for
1359 lval_register values.
1360 * value.h (error_value_optimized_out): New declaration.
1361 * NEWS: Mention <not saved>.
1362
1363 2013-10-02 Joel Brobecker <brobecker@adacore.com>
1364
1365 * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
1366 strcmp to compare two symtab filenames.
1367
1368 2013-10-02 Joel Brobecker <brobecker@adacore.com>
1369
1370 * symtab.c (search_symbols_equal): Delete.
1371 (sort_search_symbols_remove_dups): Replace call to
1372 search_symbols_equal by call to compare_search_syms,
1373 adjusting as necessary.
1374
1375 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
1376
1377 PR python/15579
1378 * python/python.c: Document gdb.execute command in Python help.
1379
1380 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
1381
1382 * python/py-frame.c (frame_info_to_frame_object): Use
1383 gdbpy_convert_exception. Clean up Python object on failure.
1384
1385 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
1386
1387 * python/lib/gdb/command/frame_filters.py
1388 (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
1389 (ShowFrameFilterPriority.invoke): Ditto.
1390
1391 2013-10-01 Keith Seitz <keiths@redhat.com>
1392
1393 * linespec.c (struct ls_parser): Make 'saved_arg' const.
1394 (parse_linespec): Make 'argptr' const.
1395 Remove temporary cast of 'argptr' to const char **.
1396 (decode_line_full): Pass const pointer to parse_linespec.
1397 (decode_line_1): Likewise.
1398 (decode_objc): Make local variable 'new_argptr' const.
1399 (find_function_symbols): Remove temporary cast to char *
1400 to find_imps.
1401 * objc-lang.c (find_imps): Make argument 'method' const.
1402 Return const.
1403 * objc-lang.h (find_imps): Likewise.
1404
1405 2013-10-01 Keith Seitz <keiths@redhat.com>
1406
1407 * completer.c (skip_quoted_chars): Make all arguments const.
1408 Return const.
1409 (skip_quoted): Likewise.
1410 * completer.h (skip_quoted_chars): Likewise.
1411 (skip_quoted): Likewise.
1412 * defs.h (skip_quoted): Remove duplicate declaration.
1413 * jv-exp.y: Include completer.h.
1414 (yylex): Remove unneccessary cast to char * fro skip_quoted.
1415 * p-exp.y: Include completer.h.
1416
1417 2013-10-01 Keith Seitz <keiths@redhat.com>
1418
1419 * c-exp.y (parse_number): Make first argument const.
1420 Make a copy of the input to manipulate.
1421 (c_parse_escape): Make first argument const.
1422 Make local variable 'tokptr' const.
1423 (parse_string_or_char): Make first two arguments const.
1424 (macro_original_text): Make const.
1425 (lex_one_token): Make local variable 'tokstart' const.
1426 Likewise for local variables named 'p'.
1427 Cast away const for struct stoken (temporary).
1428 * c-lang.h (c_parse_escpae): Make first argument const.
1429 * cli/cli-cmds.c (echo_command): Make local variable 'p'
1430 const.
1431 * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
1432 var_string case.
1433 * f-exp.y (parse_number): Make first argument const.
1434 (match_string_literal): Make local variable 'tokstart'
1435 const.
1436 (yylex): Make local variable 'p' const.
1437 Cast away const for struct stoken (temporary).
1438 * go-exp.y (parse_number): Make first argument const.
1439 (parse_string_or_char): Likewise.
1440 Make local variable 'tokstart' const.
1441 (lex_one_token): Likewise for numerous locals called 'p'.
1442 Cast away const for struct stoken (temporary).
1443 * jv-exp.y (parse_number): Make first argument const.
1444 Make local variables 'tokstart' and 'tokptr' const.
1445 Cast away const for call to skip_quoted (temporary).
1446 (yylex): Make local variable 'p' const.
1447 Cast away const for struct stoken (temporary).
1448 * m2-exp.y (parse_number): Make local variable 'p' const.
1449 (yylex): Likewise for 'tokstart'.
1450 Cast away const for struct stoken (temporary).
1451 Make local variable 'p' const.
1452 * macroexp.c (get_character_constant): Pass a const string
1453 to c_parse_escape.
1454 (get_string_literal): Likewise.
1455 (macro_expand_next): Make first argument const.
1456 Cast away const for init_shared_buffer.
1457 * macroexp.h (macro_expand_next): Make first argument const.
1458 * p-exp.y (yylex): Make a local copy of 'lexptr'.
1459 Pass a const string to c_parse_escape.
1460 Make local variables 'p' and 'namestart' const.
1461 * parse.c (lexptr): Make const.
1462 (prev_lexptr): Likewise.
1463 (find_template_name_end): Return const.
1464 Make argument const, too.
1465 (parse_exp_in_context): Make first argument const.
1466 Remove the entire const_hack.
1467 (parse_exp_in_context_1): Make first argument const.
1468 * parser-defs.h (find_template_name_end): Return const.
1469 Make argument const, too.
1470 (lexptr): Make const.
1471 (prev_lexptr): Likewise.
1472 * utils.c (parse_escape): Make second argument const.
1473 * utils.h (parse_escape): Likewise.
1474
1475 2013-10-01 Keith Seitz <keiths@redhat.com>
1476
1477 * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
1478 is now const.
1479 (block_lookup): Make 'raw_name' and 'name' const.
1480 * ada-lex.l (processString): Update for struct stoken.ptr.
1481 * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
1482 (operator_stoken): Likewise.
1483 (lex_one_token): Remove temporary cast to char * for
1484 'yylval.sval.ptr'.
1485 * f-exp.y (yylex): Likewise.
1486 * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
1487 * gdbtypes.h (lookup_struct_elt_type): Likewisee.
1488 * go-exp.y (lex_one_token): Remove temporary cast to char * for
1489 'yylval.sval.ptr'.
1490 * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
1491 (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
1492 * linespec.c (struct ls_parser): Make 'stream' const.
1493 (find_parameter_list_end): Make argument 'input' and local
1494 variable 'p' const.
1495 (linespec_lexer_lex_string): Make local variables 'start' and
1496 'p' const.
1497 Use skip_spaces_const instead of skip_spaces.
1498 (linespec_lexer_peek_token): Make local variable 'saved_stream'
1499 const.
1500 (parse_linespec): Temporarily cast 'argptr' to const for
1501 'parser->lexer.stream'.
1502 * m2-exp.y (yylex): Remove temporary cast to char * for
1503 'yylval.sval.ptr'.
1504 * objc-lang.c (add_msglist): Make local variable 'p' const.
1505 * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
1506 (exp : STRING): Make 'sp' const.
1507 (parse_number): Make argument 'p' const.
1508 * parser-defs.h (struct stoken): Make 'ptr' const.
1509
1510 2013-10-01 Doug Evans <dje@google.com>
1511
1512 * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
1513
1514 2013-10-01 Yao Qi <yao@codesourcery.com>
1515
1516 * varobj.c (c_value_of_root): Remove declaration.
1517 (cplus_value_of_root, java_value_of_root): Likewise.
1518 (ada_value_of_root): Likewise.
1519 (struct language_specific) <value_of_root>: Remove.
1520 (languages): Update initialization.
1521 (check_scope): Move earlier.
1522 (c_value_of_root): Move earlier and rename to ...
1523 (value_of_root_1): ... this.
1524 (value_of_root): Caller update.
1525 (cplus_value_of_root, java_value_of_root): Remove.
1526 (ada_value_of_root): Remove.
1527
1528 2013-10-01 Yao Qi <yao@codesourcery.com>
1529
1530 * varobj.c (varobj_format_string): Remove "unknown".
1531 (languages): Remove the first element.
1532 * varobj.h (enum varobj_languages): Remove vlang_c.
1533
1534 2013-10-01 Yao Qi <yao@codesourcery.com>
1535
1536 * varobj.c (struct language_specific) <language>: Remove.
1537 (languages): Update the initialization.
1538
1539 2013-10-01 Yao Qi <yao@codesourcery.com>
1540
1541 * arm-wince-tdep.c: Remove inclusion of "solib.h" and
1542 "solib-target.h". Include "windows-tdep.h".
1543 (arm_wince_init_abi): Call windows_init_abi. Remove call to
1544 set_solib_ops and set_gdbarch_has_dos_based_file_system.
1545 * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
1546 windows-tdep.o to gdb_target_obs.
1547
1548 2013-10-01 Yao Qi <yao@codesourcery.com>
1549
1550 * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
1551 "solib-target.h".
1552 (amd64_windows_init_abi): Don't call set_solib_ops and
1553 set_gdbarch_iterate_over_objfiles_in_search_order. Call
1554 windows_init_abi instead.
1555 * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
1556 "solib-target.h".
1557 (i386_cygwin_init_abi): Don't call set_solib_ops,
1558 set_gdbarch_has_dos_based_file_system and
1559 set_gdbarch_iterate_over_objfiles_in_search_order. Call
1560 windows_init_abi instead.
1561 * windows-tdep.c: Include "solib.h" and "solib-target.h".
1562 (windows_init_abi): New function.
1563 (windows_iterate_over_objfiles_in_search_order): Make it
1564 static.
1565 * windows-tdep.h (windows_init_abi): Declare.
1566 (windows_iterate_over_objfiles_in_search_order): Remove
1567 declaration.
1568
1569 2013-10-01 Jerome Guitton <guitton@adacore.com>
1570
1571 Checked in by Joel Brobecker <brobecker@adacore.com>
1572 * system-gdbinit/elinos.py (get_elinos_environment): Return an
1573 incomplete dictionnary instead of None in case of missing
1574 environment variables.
1575 (elinos_init): in case of an incomplete environment, best
1576 effort to load system libraries instead of abort.
1577
1578 2013-10-01 Joel Brobecker <brobecker@adacore.com>
1579
1580 * ada-lang.c (ada_has_this_exception_support): Ignore
1581 mst_solib_trampoline minimal symbols.
1582
1583 2013-09-30 Tristan Gingold <gingold@adacore.com>
1584
1585 * i386-darwin-nat.c (darwin_complete_target): Install methods for
1586 hardware watchpoint.
1587 (i386_darwin_dr_set): Support 32 and 64 bit states.
1588 (i386_darwin_dr_get): Likewise.
1589 (i386_darwin_dr_set_control): Make static.
1590 (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
1591 (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
1592
1593 2013-09-30 Luis Machado <lgustavo@codesourcery.com>
1594
1595 * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1596 Replace TIDGET with ptid_get_lwp.
1597 Replace GET_LWP with ptid_get_lwp.
1598 * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
1599 Replace BUILD_THREAD with ptid_build.
1600 Replace BUILD_LWP with ptid_build.
1601 Replace PIDGET with ptid_get_pid.
1602 Replace TIDGET with ptid_get_lwp.
1603 * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
1604 * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1605 Replace TIDGET with ptid_get_lwp.
1606 * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
1607 * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
1608 Replace TIDGET with ptid_get_lwp.
1609 Replace GET_LWP with ptid_get_lwp.
1610 * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
1611 * auxv.c: Likewise.
1612 * breakpoint.c: Likewise.
1613 * common/ptid.c (ptid_is_pid): Condense check for
1614 null_ptid and minus_one_ptid.
1615 (ptid_lwp_p): New function.
1616 (ptid_tid_p): New function.
1617 * common/ptid.h: Update comments for accessors.
1618 (ptid_lwp_p): New prototype.
1619 (ptid_tid_p): New prototype.
1620 * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
1621 * gcore.c: Replace PIDGET with ptid_get_pid.
1622 * gdbthread.h: Likewise.
1623 * gnu-nat.c: Likewise.
1624 * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
1625 Replace TIDGET with ptid_get_lwp.
1626 * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
1627 * hppanbsd-nat.c: Likewise.
1628 * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
1629 Replace TIDGET with ptid_get_lwp.
1630 * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
1631 * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1632 * infcmd.c: Likewise.
1633 * inferior.h: Likewise.
1634 * inflow.c: Likewise.
1635 * infrun.c: Likewise.
1636 * linux-fork.c: Likewise.
1637 * linux-nat.c: Replace PIDGET with ptid_get_pid.
1638 Replace GET_PID with ptid_get_pid.
1639 Replace is_lwp with ptid_lwp_p.
1640 Replace GET_LWP with ptid_get_lwp.
1641 Replace BUILD_LWP with ptid_build.
1642
1643 2013-09-28 Mike Frysinger <vapier@gentoo.org>
1644
1645 * common/linux-btrace.c: Move sys/syscall.h out of the
1646 HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
1647 Also check for SYS_perf_event_open before attempting to buid.
1648
1649 2013-09-27 Doug Evans <dje@google.com>
1650
1651 * dwarf2read.c (dwarf2_section_info): Add comment.
1652 (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
1653 All uses updated.
1654 (dwarf2_section_empty_p): Rename arg from "info" to "section".
1655 (dwarf2_read_section): Delete unused local "header". Add section
1656 name to error message.
1657 (create_dwo_in_dwp): Tweak comment.
1658 (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
1659
1660 * dwarf2read.c (die_reader_specs): Tweak comment.
1661 (get_section_bfd_owner, get_section_bfd_section): New functions.
1662 (get_section_name, get_section_file_name): New functions.
1663 (get_section_id, get_section_flags): New functions.
1664 (*): Use new functions to access section fields.
1665
1666 * dwarf2read.c (struct dwo_file): Add/tweak comments.
1667 (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp. Remove
1668 arg "htab". All callers updated.
1669 (create_debug_types_hash_table): Remove redundant copy of
1670 abbrev_section.
1671 (create_dwo_in_dwp): Tweak comments.
1672 (read_str_index): Tweak comment. Record dwarf form name in static
1673 local.
1674
1675 2013-09-27 Pedro Alves <palves@redhat.com>
1676
1677 * remote.h (REMOTE_SYSROOT_PREFIX): New define.
1678 (remote_filename_p): Add comment.
1679 * remote.c (remote_filename_p): Adjust to use
1680 REMOTE_SYSROOT_PREFIX.
1681 * solib.c (solib_find): When deciding whether we need to add a
1682 directory separator, check whether the sysroot is "remote:"
1683 instead of checking whether the patch has a drive spec. Add
1684 comments.
1685
1686 2013-09-27 Pedro Alves <palves@redhat.com>
1687
1688 * remote.c (struct stop_reply) <solibs_changed, replay_event>:
1689 Delete fields.
1690 (remote_parse_stop_reply): Adjust, setting event->ws.kind
1691 directly.
1692
1693 2013-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1694
1695 Fix set debug frame output.
1696 * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry. Move
1697 SENTINEL_FRAME entry lower to match enum frame_type order.
1698
1699 2013-09-26 Pierre Muller <muller@sourceware.org>
1700
1701 Replace constant values 8 to 15 by AMD64_R8_REGNUM to
1702 AMD64_R15_REGNUM when a register index is expected.
1703 * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
1704 Substitute in array.
1705 * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
1706 (amd64_push_arguments): Substitute in integer_regnum array.
1707
1708 2013-09-25 Doug Evans <dje@google.com>
1709
1710 * objfiles.c (allocate_objfile): Move comment to better place.
1711
1712 New option "set debug symfile on".
1713 * NEWS: Mention "set debug symfile".
1714 * Makefile.in (SFILES): Add symfile-debug.c.
1715 (COMMON_OBS): Add symfile-debug.o.
1716 * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
1717 objfile's symbol functions.
1718 * objfiles.h (objfile_set_sym_fns): Declare.
1719 * symfile-debug.c: New file.
1720 * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
1721 objfile's symbol functions.
1722 (reread_symbols): Ditto.
1723
1724 * symfile.h (struct sym_fns): Delete member "sym_flavour".
1725 All uses updated.
1726 (add_symtab_fns): Update prototype.
1727 * symfile.c (sym_fns_ptr): Delete. Replace with ...
1728 (registered_sym_fns): ... this.
1729 (symtab_fns): Update.
1730 (add_symtab_fns): New arg "flavour". All callers updated.
1731 (find_sym_fns): Rewrite to use new sym_fns registry.
1732
1733 * symfile.h (struct sym_fns): Add "objfile" argument to
1734 sym_read_linetable. All uses updated.
1735
1736 * symtab.c (domain_name, search_domain_name): New functions.
1737 * symtab.h (domain_name, search_domain_name): Declare.
1738
1739 * symfile.h (struct quick_symbol_functions): Reorg arg list of
1740 map_matching_symbols so objfile is first. All uses updated.
1741 * dwarf2read.c (dw2_map_matching_symbols): Update signature.
1742 * psymtab.c (map_matching_symbols_psymtab): Update signature.
1743
1744 2013-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
1745
1746 PR shlibs/8882
1747 * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
1748 link map entries.
1749
1750 2013-09-24 Doug Evans <dje@google.com>
1751
1752 * objfiles.c (free_objfile): Move comment.
1753
1754 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1755
1756 * ada-exp.y (string_to_operator): Delete.
1757 (dummy_string_to_ada_operator): Delete.
1758
1759 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1760
1761 Revert:
1762 * i386-tdep.h (enum amd64_reg_class): New, moved here from
1763 amd64-tdep.c.
1764 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
1765 call_dummy_integer_regs, and classify.
1766 * amd64-tdep.h (amd64_classify): Add declaration.
1767 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
1768 (amd64_reg_class): Delete, moved to i386-tdep.h.
1769 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
1770 Replace call to amd64_classify by call to tdep->classify.
1771 (amd64_push_arguments): Get the list of registers to use for
1772 passing integer parameters from the gdbarch tdep structure,
1773 rather than using a hardcoded one. Replace calls to amd64_classify
1774 by calls to tdep->classify.
1775 (amd64_push_dummy_call): Get the register number used for
1776 the "hidden" argument from tdep->call_dummy_integer_regs.
1777 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
1778 and tdep->call_dummy_integer_regs. Set tdep->classify.
1779
1780 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1781
1782 Revert:
1783 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
1784 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
1785 where tdep->memory_args_by_pointer is non-zero.
1786
1787 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1788
1789 Revert:
1790 * i386-tdep.h (struct gdbarch_tdep): Add new field
1791 integer_param_regs_saved_in_caller_frame.
1792 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
1793 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
1794
1795 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1796
1797 * amd64-windows-tdep.c: #include "value.h"
1798 (amd64_windows_classify): Delete.
1799 (amd64_windows_passed_by_integer_register)
1800 (amd64_windows_passed_by_xmm_register)
1801 (amd64_windows_passed_by_pointer)
1802 (amd64_windows_adjust_args_passed_by_pointer)
1803 (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
1804 (amd64_windows_push_dummy_call): New functions.
1805 (amd64_windows_init_abi): Remove setting of
1806 tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
1807 tdep->classify, tdep->memory_args_by_pointer and
1808 tdep->integer_param_regs_saved_in_caller_frame.
1809 Add call to set_gdbarch_push_dummy_call.
1810
1811 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1812
1813 * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
1814 objfile->original_name.
1815
1816 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1817
1818 Pass down original filename for objfile.
1819 * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
1820 * elfread.c (elf_symfile_read): Likewise.
1821 * jit.c (jit_object_close_impl): Update allocate_objfile call, no
1822 longer set ORIGINAL_NAME.
1823 (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
1824 * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
1825 * machoread.c (macho_add_oso_symfile): Add parameter name. Update
1826 symbol_file_add_from_bfd call.
1827 (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
1828 (macho_check_dsym): Add parameter filenamep. Change function comment.
1829 Set *filenamep.
1830 (macho_symfile_read): New variable dsym_filename. Update
1831 macho_check_dsym call. Use it for symbol_file_add_separate.
1832 * objfiles.c (allocate_objfile): Add parameter name. New comment for
1833 it. Use it for objfile->original_name.
1834 (objfile_name): Return OBFD's filename, if available.
1835 * objfiles.h (allocate_objfile): Add new parameter name.
1836 * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
1837 * symfile-mem.c (symbol_file_add_from_memory): Update
1838 symbol_file_add_from_bfd call.
1839 * symfile.c (read_symbols): Update symbol_file_add_separate call, new
1840 comment for it.
1841 (symbol_file_add_with_addrs): New parameter name, add function comment
1842 for it. Remove variable name. Update allocate_objfile call.
1843 (symbol_file_add_separate): New parameter name, add function comment
1844 for it. Update symbol_file_add_with_addrs call.
1845 (symbol_file_add_from_bfd): New parameter name. Update
1846 symbol_file_add_with_addrs call.
1847 (symbol_file_add): Update symbol_file_add_from_bfd call.
1848 (reread_symbols): New variable original_name. Save
1849 objfile->original_name by it.
1850 * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
1851 second parameter.
1852
1853 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1854
1855 Code cleanup: Add objfile_name accessor function.
1856 * ada-lang.c (is_known_support_routine): Use objfile_name.
1857 * auto-load.c (source_gdb_script_for_objfile)
1858 (auto_load_objfile_script): Likewise.
1859 * coffread.c (coff_symtab_read, read_one_sym): Likewise.
1860 * dbxread.c (dbx_symfile_read): Likewise.
1861 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
1862 * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
1863 * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
1864 (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
1865 (lookup_dwp_signatured_type, lookup_dwo_unit)
1866 (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
1867 (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
1868 (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
1869 (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
1870 (dwarf2_record_block_ranges, read_common_block, read_typedef)
1871 (read_subrange_type, load_partial_dies, read_partial_die)
1872 (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
1873 (die_containing_type, build_error_marker_type, lookup_die_type)
1874 (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
1875 (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
1876 (get_DW_AT_signature_type, write_psymtabs_to_index)
1877 (save_gdb_index_command): Likewise.
1878 * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
1879 Likewise.
1880 * expprint.c (dump_subexp_body_standard): Likewise.
1881 * gdbtypes.c (type_name_no_tag_or_error): Likewise.
1882 * jit.c (jit_object_close_impl): Use the objfile field name renamed to
1883 original_name.
1884 * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
1885 obj_name, use objfile_name for it, use the variable.
1886 (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
1887 Use objfile_name.
1888 * machoread.c (macho_symtab_read, macho_check_dsym)
1889 (macho_symfile_relocate): Likewise.
1890 * maint.c (maintenance_translate_address): Likewise.
1891 * minidebug.c (find_separate_debug_file_in_section): Likewise.
1892 * minsyms.c (install_minimal_symbols): Likewise.
1893 * objfiles.c (allocate_objfile): Use the objfile field name renamed to
1894 original_name.
1895 (filter_overlapping_sections): Use objfile_name.
1896 (objfile_name): New function.
1897 * objfiles.h (struct objfile): Rename field name to original_name.
1898 (objfile_name): New prototype.
1899 * printcmd.c (sym_info, address_info): Use objfile_name.
1900 * probe.c (parse_probes, collect_probes, compare_probes)
1901 (info_probes_for_ops): Likewise.
1902 * progspace.c (clone_program_space): Likewise.
1903 * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
1904 (maintenance_info_psymtabs): Likewise.
1905 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
1906 (source_section_scripts): Likewise.
1907 * python/py-objfile.c (objfpy_get_filename): Likewise.
1908 * python/py-progspace.c (pspy_get_filename): Likewise.
1909 * solib-aix.c (solib_aix_get_toc_value): Likewise.
1910 * solib-som.c (match_main, som_solib_section_offsets): Likewise.
1911 * solib.c (solib_read_symbols): Likewise.
1912 * stabsread.c (scan_file_globals): Likewise.
1913 * stap-probe.c (handle_stap_probe): Likewise.
1914 * symfile.c (symbol_file_clear, separate_debug_file_exists)
1915 (find_separate_debug_file_by_debuglink): Likewise.
1916 (reread_symbols): Likewise. Use the objfile field name renamed to
1917 original_name.
1918 (allocate_symtab): Use objfile_name.
1919 * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
1920 (dump_objfile, dump_msymbols, dump_symtab_1)
1921 (maintenance_print_msymbols, maintenance_print_objfiles)
1922 (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
1923 * target.c (target_translate_tls_address, target_info): Likewise.
1924 * xcoffread.c (xcoff_initial_scan): Make variable name const. Use
1925 objfile_name.
1926
1927 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1928
1929 Code cleanup.
1930 * probe.c (parse_probes): Rename variable objfile_name to
1931 objfile_namestr.
1932
1933 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1934
1935 Remove solib-sunos.c.
1936 * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
1937 * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
1938 * objfiles.c (rt_common_objfile): Remove.
1939 (free_objfile): Remove rt_common_objfile comparison.
1940 * objfiles.h (rt_common_objfile): Remove.
1941 * solib-sunos.c: Remove.
1942 * symfile.c (reread_symbols): Remove solib-sunos.c comment.
1943
1944 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1945
1946 Remove a.out NetBSD and OpenBSD hosts.
1947 * NEWS (Removed native configurations): New.
1948 * config/arm/nbsdaout.mh: Remove.
1949 * config/i386/nbsdaout.mh: Remove.
1950 * config/i386/obsdaout.mh: Remove.
1951 * config/m68k/nbsdaout.mh: Remove.
1952 * config/sparc/nbsdaout.mh: Remove.
1953 * config/vax/nbsdaout.mh: Remove.
1954 * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
1955 (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
1956 (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
1957 error.
1958 (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
1959 (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
1960 (sparc-*-netbsd*, vax-*-netbsd*): Remove.
1961
1962 2013-09-23 Tom Tromey <tromey@redhat.com>
1963
1964 * linespec.c (struct minsym_and_objfile): Remove.
1965 (minsym_and_objfile_d): Remove.
1966 (struct linespec, struct collect_info, linespec_parse_basic)
1967 (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
1968 (compare_msymbols, find_method, find_function_symbols)
1969 (find_linespec_symbols, struct collect_minsyms, compare_msyms)
1970 (add_minsym, search_minsyms_for_name): Update.
1971
1972 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
1973
1974 * regcache.c: Add include of valprint.h.
1975 (dump_endian_bytes): Delete.
1976 (regcache_dump): Use print_hex_chars not dump_endian_bytes.
1977
1978 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
1979
1980 * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
1981
1982 2013-09-19 Pedro Alves <palves@redhat.com>
1983
1984 * breakpoint.c (remove_threaded_breakpoints): Skip non-user
1985 breakpoints.
1986
1987 2013-09-19 Pedro Alves <palves@redhat.com>
1988 Thomas Schwinge <thomas@codesourcery.com>
1989 Yue Lu <hacklu.newborn@gmail.com>
1990
1991 * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
1992 Take a gdb_byte pointer instead of a char pointer.
1993
1994 * gnu-nat.c (gnu_xfer_memory): Adjust interface as
1995 gnu_xfer_partial helper.
1996 (gnu_xfer_partial): New function.
1997 (gnu_target): Don't install a deprecated_xfer_memory hook.
1998 Install a to_xfer_partial hook.
1999
2000 2013-09-19 Jan Kratochvil <jan.kratochvil@redhat.com>
2001
2002 Constification.
2003 * main.c (captured_main): Replace catch_command_errors by
2004 catch_command_errors_const. Twice.
2005 * symfile.c (symbol_file_add_main_1): Make args parameter const.
2006 (symbol_file_add): Make name parameter const.
2007 (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
2008 (symfile_bfd_open): Make name parameter const, rename it to cname. Add
2009 variable name. Change their usage accordingly.
2010 * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
2011 const.
2012 (symbol_file_add_main): Make args parameter const.
2013
2014 2013-09-18 Raunaq Bathija <raunaq12@in.ibm.com>
2015 Ulrich Weigand <uweigand@de.ibm.com>
2016
2017 * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
2018 of c_value member.
2019 (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
2020
2021 2013-09-18 Pedro Alves <palves@redhat.com>
2022 Yue Lu <hacklu.newborn@gmail.com>
2023
2024 * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
2025 (gnu_create_inferior)
2026 (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
2027 (set_sig_thread_cmd): Use the lwpid field of ptids to
2028 store/extract thread ids instead of the tid field.
2029 * i386gnu-nat.c (gnu_fetch_registers): Adjust.
2030
2031 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
2032
2033 * infcmd.c (default_print_one_register_info): Add detection of
2034 optimized out values.
2035 (default_print_registers_info): Switch to using
2036 get_frame_register_value.
2037
2038 2013-09-18 Markus Metzger <markus.t.metzger@intel.com>
2039
2040 * infrun.c (handle_inferior_event): Check if we know the
2041 function start address before setting a resume breakpoint.
2042
2043 2013-09-18 Pedro Alves <palves@redhat.com>
2044
2045 * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
2046 minus_one_ptid instead of looking at the ptid's tid field and
2047 comparing that to -1.
2048
2049 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
2050
2051 * main.h (get_gdb_program_name): Remove extra whitespace.
2052
2053 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
2054
2055 * main.h (get_gdb_program_name): Add declaration.
2056 * main.c (get_gdb_program_name): Add definition.
2057
2058 2013-09-17 Doug Evans <dje@google.com>
2059
2060 * dwarf2read.c: Move definitions of complaint functions to after
2061 forward declarations of local functions.
2062
2063 2013-09-17 Muhammad Waqas <mwaqas@codesourcery.com>
2064 Pedro Alves <palves@redhat.com>
2065
2066 PR gdb/11568
2067 * breakpoint.c (remove_threaded_breakpoints): New function.
2068 (_initialize_breakpoint): Attach remove_threaded_breakpoints
2069 as thread_exit observer.
2070
2071 2013-09-17 Pedro Alves <palves@redhat.com>
2072
2073 PR gdb/15911
2074 * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
2075 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
2076 * corelow.c (core_open):
2077 * frame.h (print_stack_frame, print_frame_info): New
2078 'set_current_sal' parameter.
2079 * infcmd.c (finish_command, kill_command): Adjust call to
2080 print_stack_frame.
2081 * inferior.c (inferior_command): Likewise.
2082 * infrun.c (normal_stop): Likewise.
2083 * linux-fork.c (linux_fork_context): Likewise.
2084 * record-full.c (record_full_goto_entry, record_full_restore):
2085 Likewise.
2086 * remote-mips.c (common_open): Likewise.
2087 * stack.c (print_stack_frame): New 'set_current_sal' parameter.
2088 Use it.
2089 (print_frame_info): New 'set_current_sal' parameter. Set the last
2090 displayed sal depending on the new paremeter instead of looking at
2091 print_what.
2092 (backtrace_command_1, select_and_print_frame, frame_command)
2093 (current_frame_command, up_command, down_command): Adjust call to
2094 print_stack_frame.
2095 * thread.c (print_thread_info, restore_selected_frame)
2096 (do_captured_thread_select): Adjust call to print_stack_frame.
2097 * tracepoint.c (tfind_1): Likewise.
2098 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
2099 (mi_cmd_stack_info_frame): Likewise.
2100 * mi/mi-interp.c (mi_on_normal_stop): Likewise.
2101 * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
2102
2103 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
2104
2105 * value.c (isvoid_internal_fn): Replace "parameter" with
2106 "argument".
2107
2108 2013-09-16 Stan Shebs <stan@codesourcery.com>
2109
2110 * README: Update references to writing code for GDB.
2111 * configure.ac (build_warnings): Remove obsolete comment.
2112 * configure: Regenerate.
2113 * gdbarch.sh: Remove references to gdbint.texinfo.
2114 * gdbarch.h: Regenerate.
2115 * gdbtypes.c (objfile_type): Remove comments referencing internals
2116 manual and D10V.
2117
2118 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
2119
2120 * NEWS: Mention new convenience function $_isvoid.
2121 * value.c (isvoid_internal_fn): New function.
2122 (_initialize_values): Add new convenience function $_isvoid.
2123
2124 2013-09-16 Pierre Muller <muller@sourceware.org>
2125
2126 * arm-linux-tdep.c: Add "elf/common.h" header.
2127 Remove AT_HWCAP macro definintion as it is provided in
2128 added include file.
2129 * s390-tdep.c: Remove system header <elf.h>
2130 Add "elf/common.h" header for AT_HWCAP definition.
2131 (s390_core_read_description): Use correct CORE_ADDR
2132 for hwcap local variable used as third parameter
2133 of function target_auxv_search.
2134
2135 2013-09-14 Pierre Muller <muller@sourceware.org>
2136 Tom Tromey <tromey@redhat.com>
2137 Pedro Alves <palves@redhat.com>
2138
2139 * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
2140 mode if operating system doesn't know O_CLOEXEC.
2141
2142 2013-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2143
2144 Code cleanup.
2145 * symfile.c (reread_symbols): Move variable obfd_filename to a more
2146 inner block.
2147
2148 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
2149
2150 * NEWS: Mention TDB support.
2151 * features/s390-tdb.xml: New file.
2152 * features/s390-te-linux64.xml: New file.
2153 * features/s390x-te-linux64.xml: New file.
2154 * features/Makefile (WHICH): Add new tdescs above.
2155 (s390-te-linux64-expedite): Set.
2156 (s390x-te-linux64-expedite): Set.
2157 * features/s390-te-linux64.c: New file (generated).
2158 * features/s390x-te-linux64.c: New file (generated).
2159 * regformats/s390-te-linux64.dat: New file (generated).
2160 * regformats/s390x-te-linux64.dat: New file (generated).
2161 * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
2162 (HWCAP_S390_TE): Likewise.
2163 (S390_TDB_DWORD0_REGNUM): Likewise.
2164 (S390_TDB_DWORD0_REGNUM): Likewise.
2165 (S390_TDB_ABORT_CODE_REGNUM): Likewise.
2166 (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
2167 (S390_TDB_ATIA_REGNUM): Likewise.
2168 (S390_TDB_R0_REGNUM): Likewise.
2169 (S390_TDB_R1_REGNUM): Likewise.
2170 (S390_TDB_R2_REGNUM): Likewise.
2171 (S390_TDB_R3_REGNUM): Likewise.
2172 (S390_TDB_R4_REGNUM): Likewise.
2173 (S390_TDB_R5_REGNUM): Likewise.
2174 (S390_TDB_R6_REGNUM): Likewise.
2175 (S390_TDB_R7_REGNUM): Likewise.
2176 (S390_TDB_R8_REGNUM): Likewise.
2177 (S390_TDB_R9_REGNUM): Likewise.
2178 (S390_TDB_R10_REGNUM): Likewise.
2179 (S390_TDB_R11_REGNUM): Likewise.
2180 (S390_TDB_R12_REGNUM): Likewise.
2181 (S390_TDB_R13_REGNUM): Likewise.
2182 (S390_TDB_R14_REGNUM): Likewise.
2183 (S390_TDB_R15_REGNUM): Likewise.
2184 (S390_NUM_REGS): Increase.
2185 (S390_IS_TDBREGSET_REGNUM): New macro.
2186 (s390_regmap_tdb): Declare.
2187 (s390_sizeof_tdbregset): Define.
2188 (tdesc_s390_te_linux64): Declare.
2189 (tdesc_s390x_te_linux64): Likewise.
2190 * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
2191 "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
2192 (s390_regmap_tdb): New regmap.
2193 (s390_supply_tdb_regset): New function.
2194 (s390_tdb_regset): New regset.
2195 (s390_linux64v2_regset_sections): Add TDB regset to list.
2196 (s390x_linux64v2_regset_sections): Likewise.
2197 (s390_regset_from_core_section): Recognize TDB core note section.
2198 (s390_core_read_description): If HWCAP indicates TE support,
2199 select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
2200 (s390_gdbarch_init): Handle TDB regset.
2201 (_initialize_s390_tdep): Initialize new tdescs.
2202 * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
2203 (have_regset_tdb): New variable.
2204 (s390_native_supply): Support register invalidation.
2205 (fetch_regset): Invalidate registers if ptrace yields ENODATA.
2206 (check_regset): Treat ENODATA as "regset exists".
2207 (s390_linux_fetch_inferior_registers): Add TDB.
2208 (s390_read_description): Check for TDB existence and select
2209 appropriate tdesc.
2210 * gdbserver/Makefile.in (clean): Add removal of new makefile
2211 targets.
2212 (s390-te-linux64.c): New makefile target.
2213 (s390x-te-linux64.c): Likewise.
2214 * gdbserver/configure.srv (srv_regobj): Append new objects
2215 s390-te-linux64.o and s390x-te-linux64.o.
2216 (srv_xmlfiles): Append new files s390-te-linux64.xml,
2217 s390x-te-linux64.xml, and s390-tdb.xml.
2218 * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
2219 declaration.
2220 (tdesc_s390_te_linux64): Likewise.
2221 (init_registers_s390x_te_linux64): Likewise.
2222 (tdesc_s390x_te_linux64): Likewise.
2223 (s390_check_regset): Treat ENODATA as "regset exists".
2224 (s390_arch_setup): Add TDB regset support.
2225 (initialize_low_arch): Initialize registers for new tdescs.
2226
2227 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
2228
2229 * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
2230 (S390_IS_FPREGSET_REGNUM): New macro.
2231 * s390-tdep.c (s390_dwarf_regmap): Make const.
2232 (regnum_is_gpr_full): New function for replacing repeated code.
2233 (s390_pseudo_register_name): Use it.
2234 (s390_pseudo_register_type): Likewise.
2235 (s390_pseudo_register_read): Likewise.
2236 (s390_pseudo_register_write): Likewise.
2237 (s390_unwind_pseudo_register): Likewise.
2238 (s390_regmap_gregset): New format for regmap.
2239 (s390x_regmap_gregset): Likewise.
2240 (s390_regmap_fpregset): Likewise.
2241 (s390_regmap_upper): Likewise.
2242 (s390_regmap_last_break): Likewise.
2243 (s390_regmap_system_call): Likewise.
2244 (s390_supply_regset): Adjust to new regmap format.
2245 (s390_collect_regset): Likewise.
2246 * s390-nat.c (s390_native_supply): Adjust to new regmap format.
2247 (s390_native_collect): Likewise.
2248 (supply_gregset): Likewise.
2249 (fill_gregset): Likewise.
2250 (supply_fpregset): Likewise.
2251 (fill_fpregset): Likewise.
2252 (fetch_regset): Likewise.
2253 (store_regset): Likewise.
2254 (s390_linux_fetch_inferior_registers): Likewise.
2255 (s390_linux_fetch_inferior_registers): Likewise.
2256
2257 2013-09-12 Andrew Pinski <apinski@cavium.com>
2258
2259 * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
2260
2261 2013-09-10 Andreas Arnez <arnez@linux.vnet.ibm.com>
2262
2263 * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
2264
2265 2013-09-09 Andrew Burgess <aburgess@broadcom.com>
2266
2267 * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
2268
2269 2013-09-06 Pedro Alves <palves@redhat.com>
2270
2271 * remote-sim.c (dump_mem, gdbsim_fetch_register)
2272 (gdbsim_store_register, gdbsim_kill, gdbsim_load)
2273 (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
2274 (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
2275 (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
2276 gdb_stdlog.
2277
2278 2013-09-06 Pedro Alves <palves@redhat.com>
2279
2280 * remote-sim.c (dump_mem): Constify buf parameter.
2281 gdbsim_xfer_inferior_memory): Rename to ...
2282 (gdbsim_xfer_memory): ... this. Adjust interface as
2283 target_xfer_partial helper.
2284 (gdbsim_xfer_partial): New function.
2285 (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
2286 Install a to_xfer_partial hook. Send output to gdb_stdlog.
2287
2288 2013-09-06 Pedro Alves <palves@redhat.com>
2289
2290 * remote-sim.c (gdbsim_xfer_inferior_memory): Use
2291 host_address_to_string, and send debug output to gdb_stdlog.
2292
2293 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
2294
2295 * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
2296 * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
2297 gdb_target_obs for cris target.
2298 * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
2299 (cris_gdbarch_init): Move calls to
2300 set_gdbarch_fetch_tls_load_module_address and
2301 set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
2302 Add call to gdbarch_init_osabi.
2303 * cris-linux-tdep.c: New file.
2304 * cris-tdep.h: New file.
2305
2306 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
2307
2308 * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
2309 to deprecated_init_ui_hook.
2310
2311 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
2312
2313 * cli/cli-interp.c (_initialize_cli_interp): Add a
2314 command_loop_proc to interp_procs.
2315 * event-top.c (cli_command_loop): Change signature to match
2316 interp_command_loop_ftype.
2317 * event-top.h (cli_command_loop): Same.
2318 * interps.c (interp_new): Require every interpreter to have a
2319 command_loop_proc.
2320 (current_interp_command_loop): Just call the command_loop_proc on
2321 the current interpreter.
2322 * tui/tui-interp.c (_initialize_tui_interp): Add a
2323 command_loop_proc to interp_procs.
2324
2325 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
2326
2327 * cris-tdep.c (cris_gdbarch_init): Add call to
2328 get_gdbarch_fetch_tls_load_module_address.
2329
2330 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
2331
2332 * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
2333 (cris_elf_gregset_t): Rename from elf_gregset_t.
2334 (crisv32_elf_gregset_t): Adjust.
2335 (cris_supply_gregset, fetch_core_registers): Adjust.
2336
2337 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
2338
2339 * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
2340
2341 2013-09-05 Andrew Burgess <aburgess@broadcom.com>
2342
2343 * defs.h (deprecated_command_loop_hook): Remove, including
2344 references in comments.
2345 * interps.c (current_interp_command_loop): No longer use
2346 deprecated_command_loop_hook.
2347 (clear_interpreter_hooks): Remove deprecated_command_loop_hook
2348 setup.
2349 * top.c (deprecated_command_loop_hook): Remove.
2350
2351 2013-09-05 Pedro Alves <palves@redhat.com>
2352
2353 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
2354 local is now int instead of ULONGEST. Print it with %d
2355 instead of paddress.
2356
2357 2013-09-05 Tristan Gingold <gingold@adacore.com>
2358
2359 * MAINTAINERS: Remove avr maintainership.
2360
2361 2013-09-05 Pedro Alves <palves@redhat.com>
2362
2363 * findvar.c (value_of_register): Rework in terms of
2364 value_of_register_lazy.
2365
2366 2013-09-05 Muhammad Bilal <mbilal@codesourcery.com>
2367
2368 * symfile.c (add_symbol_file_command): Remove trailing
2369 whitespaces and blank line after comment.
2370
2371 2013-09-05 Pedro Alves <palves@redhat.com>
2372
2373 * tui/tui-regs.c (tui_register_format): Don't look at the
2374 register's name here. Return string representing register
2375 value instead of storing it in the data element.
2376 (tui_get_register): Compare register string representations
2377 instead of register value states and contents.
2378
2379 2013-09-05 Pedro Alves <palves@redhat.com>
2380
2381 PR tui/15933
2382 * tui/tui-regs.c (tui_show_registers): Show registers of the
2383 selected frame, not the current frame.
2384
2385 2013-09-05 Ricard Wanderlof <ricardw@axis.com>
2386
2387 * MAINTAINERS (Write After Approval): Add myself to the list.
2388
2389 2013-09-04 Doug Evans <dje@google.com>
2390
2391 * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
2392 (queue_and_load_dwo_tu): New function.
2393 (lookup_dwo_signatured_type): Set per_cu.tu_read.
2394 (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
2395 Make dependent_cu optional.
2396 (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
2397 and an older .gdb_index is in use, queue and load all its TUs too.
2398
2399 2013-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
2400
2401 Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
2402 * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
2403 variable search_flags.
2404 * defs.h (OPF_DISABLE_REALPATH): Rename to ...
2405 (OPF_RETURN_REALPATH): ... here.
2406 * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
2407 * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
2408 call. Twice.
2409 * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
2410 openp call.
2411 * solib.c (solib_find): Likewise. Four times.
2412 * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
2413 in the function comment and for the realpath_fptr variable.
2414 (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
2415 (find_and_open_source): Likewise. Twice.
2416 * symfile.c (symfile_bfd_open): Likewise, also twice.
2417
2418 2013-09-04 Doug Evans <dje@google.com>
2419
2420 * progspace.c (save_current_space_and_thread): Remove unnecessary
2421 call to save_current_inferior.
2422
2423 2013-09-04 Andrew Burgess <aburgess@broadcom.com>
2424
2425 * sh64-tdep.c (sh64_do_register): Return after printing message
2426 about unavailable register contents.
2427
2428 2013-09-04 Muhammad Bilal <mbilal@codesourcery.com>
2429 Pedro Alves <palves@redhat.com>
2430
2431 * symfile.c (add_symbol_file_command): Error out on unknown
2432 option. Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
2433 options and collapse into single conditional branch.
2434
2435 2013-09-03 Luis Machado <lgustavo@codesourcery.com>
2436
2437 * inf-child.c (inf_child_follow_fork): New parameter
2438 detach_fork.
2439 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
2440 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
2441 * inferior.h (detach_fork): Remove.
2442 * infrun.c (detach_fork): Adjust comment and make it
2443 static.
2444 (follow_fork): Pass detach_fork parameter to
2445 target_follow_fork.
2446 * linux-nat.c (linux_child_follow_fork): New parameter
2447 detach_fork.
2448 * target.c (target_follow_fork): New parameter detach_fork.
2449 Pass detach_fork as parameter and print its value.
2450 * target.h (struct target_ops) <to_follow_fork>: New int
2451 parameter.
2452 (target_follow_fork): New parameter detach_fork.
2453
2454 2013-09-03 Joel Brobecker <brobecker@adacore.com>
2455
2456 * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
2457 Replace sec->bfd by sec->the_bfd_section->owner.
2458
2459 2013-09-03 Yao Qi <yao@codesourcery.com>
2460
2461 * linux-tdep.c (linux_is_uclinux): New function. Code moved
2462 from linux_has_shared_address_space.
2463 (linux_has_shared_address_space): Call linux_is_uclinux.
2464 * linux-tdep.h (linux_is_uclinux): Declare.
2465 * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
2466 linux_is_uclinux.
2467
2468 2013-09-03 Yao Qi <yao@codesourcery.com>
2469
2470 * config/djgpp/fnchange.lst: Remove entry of
2471 i386-interix-nat.c and i386-interix-tdep.c.
2472 * configure.ac: Remove '*-*-interix*'.
2473 * configure: Re-generated.
2474 * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
2475 * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
2476 obsolete comments.
2477 * osabi.c (gdb_osabi_names): Remove "Interix".
2478
2479 2013-09-03 Yao Qi <yao@codesourcery.com>
2480
2481 * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
2482
2483 2013-09-02 Markus Metzger <markus.t.metzger@intel.com>
2484
2485 * record.h (record_print_flag) <record_print_src_line,
2486 record_print_insn_range>: Rename into ...
2487 (record_print_flag) <record_print_src_line,
2488 record_print_insn_range>: ... this. Update all users.
2489
2490 2013-09-02 Pierre Muller <muller@sourceware.org>
2491
2492 * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
2493 error code.
2494
2495 2013-09-02 Pierre Muller <muller@sourceware.org>
2496
2497 * windows-nat.c (windows_xfer_memory): Fix compilation failure
2498 by use of plongest function.
2499
2500 2013-09-02 Tristan Gingold <gingold@adacore.com>
2501
2502 * NEWS: Add entry mentioning support for native Windows x64
2503 SEH data.
2504
2505 * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
2506 "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
2507 (struct amd64_windows_frame_cache): New struct.
2508 (amd64_windows_w2gdb_regnum): New global.
2509 (pc_in_range, amd64_windows_frame_decode_epilogue)
2510 (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
2511 (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
2512 (amd64_windows_frame_this_id): New functions.
2513 (amd64_windows_frame_unwind): New static global.
2514 (amd64_windows_skip_prologue): New function.
2515 (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
2516 with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
2517 with amd64_windows_skip_prologue.
2518
2519 2013-08-30 Joel Brobecker <brobecker@adacore.com>
2520
2521 GDB 7.6.1 released.
2522
2523 2013-08-30 Pedro Alves <palves@redhat.com>
2524
2525 * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
2526 SRC_AND_LOC.
2527
2528 2013-08-30 Pedro Alves <palves@redhat.com>
2529
2530 * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
2531 warning text.
2532
2533 2013-08-30 Pedro Alves <palves@redhat.com>
2534
2535 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
2536 Adjust arguments to print_stack_frame.
2537
2538 2013-08-30 Pedro Alves <palves@redhat.com>
2539
2540 * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
2541
2542 2013-08-30 Pedro Alves <palves@redhat.com>
2543
2544 * frame.h (show_and_print_stack_frame): Delete declaration.
2545
2546 2013-08-30 Phil Muldoon <pmuldoon@redhat.com>
2547
2548 PR python/15461
2549 * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
2550 (archpy_name): Check for valid architecture.
2551 (archpy_disassemble): Ditto.
2552
2553 2013-08-29 Joel Brobecker <brobecker@adacore.com>
2554
2555 * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
2556 instead of "long long" in call to ptrace64.
2557
2558 2013-08-29 Andrew Burgess <aburgess@broadcom.com>
2559
2560 * mi/mi-interp.c (mi_command_loop): Change signature to match
2561 interp_command_loop_ftype.
2562 (mi1_command_loop): Remove.
2563 (mi2_command_loop): Remove.
2564 (mi3_command_loop): Remove.
2565 (mi_interpreter_resume): Remove setting of
2566 deprecated_command_loop_hook.
2567 (_initialize_mi_interp): Set mi_command_loop as the command loop
2568 callback.
2569
2570 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2571
2572 * valops.c (do_search_struct_field): Pass v2 instead of base_type to
2573 value_type.
2574
2575 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2576
2577 * value.c (allocate_value_contents): Make static.
2578 * value.h (allocate_value_contents): Remove prototype.
2579
2580 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2581
2582 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
2583 of assembling value via allocate_value_lazy and attribute setter.
2584 * findvar.c (default_read_var_value): Use value_at_lazy instead of
2585 assembling value via allocate_value_lazy and attribute setter.
2586 * valops.c (do_search_struct_field): Use value_at_lazy instead of
2587 assembling value via allocate_value_lazy and attribute setter.
2588
2589 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2590
2591 * value.c (value_from_contents_and_address): Replace allocate_value and
2592 memcpy with value_from_contents.
2593
2594 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2595
2596 * python/py-framefilter.c (py_print_frame): Remove usage of
2597 PyString_AsString. Use python_string_to_host_string instead.
2598 Refactor function to work with a string as a new allocation
2599 instead of a pointer.
2600 (py_print_frame): Ditto.
2601 * python/lib/gdb/frames.py (return_list): Cain iterators together
2602 instead of adding them as a list.
2603 (_sort_list): Call return_list, and remove duplicate code.
2604 (execute_frame_filters): Convert iterator to a list with list().
2605 * python/lib/gdb/command/frame_filters.py
2606 (SetFrameFilterPriority._set_filter_priority): Convert priority
2607 attribute to an integer.
2608 * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
2609 wrapper function __next__.
2610 * python/lib/gdb/FrameDecorator.py: If basestring not defined,
2611 define as "str".
2612
2613 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2614
2615 PR python/15752
2616 * python/py-framefilter.c (apply_frame_filter): Check
2617 gdb_python_initialized. Exit if the Python frame-filter code
2618 cannot be initialized.
2619
2620 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2621
2622 PR cli/15842
2623 * top.c (print_gdb_version): Remove erroneous newline after help
2624 text.
2625
2626 2013-08-29 Yao Qi <yao@codesourcery.com>
2627
2628 * varobj.c (install_dynamic_child): Remove trailing space.
2629 Add one blank line after variable declaration.
2630
2631 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2632
2633 PR gdb/15415
2634 * corefile.c (get_exec_file): Use exec_filename.
2635 * defs.h (OPF_DISABLE_REALPATH): New definition. Add new comment.
2636 * exec.c (exec_close): Free EXEC_FILENAME.
2637 (exec_file_attach): New variable canonical_pathname. Use
2638 OPF_DISABLE_REALPATH. Call gdb_realpath explicitly. Set
2639 EXEC_FILENAME.
2640 * exec.h (exec_filename): New.
2641 * inferior.c (print_inferior, inferior_command): Use
2642 PSPACE_EXEC_FILENAME.
2643 * mi/mi-main.c (print_one_inferior): Likewise.
2644 * progspace.c (clone_program_space, print_program_space): Likewise.
2645 * progspace.h (struct program_space): New field pspace_exec_filename.
2646 * source.c (openp): Describe OPF_DISABLE_REALPATH. New variable
2647 realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
2648
2649 2013-08-28 Will Newton <will.newton@linaro.org>
2650
2651 * common/linux-ptrace.c: Include stdint.h unconditionally.
2652
2653 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2654
2655 Code cleanup.
2656 * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
2657
2658 2013-08-28 Yao Qi <yao@codesourcery.com>
2659 Pedro Alves <palves@redhat.com>
2660
2661 * event-top.c (gdb_setup_readline): Call stderr_fileopen
2662 instead of stdio_fileopen.
2663 * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
2664 .Call stderr_fileopen instead of stdio_fileopen.
2665 * ui-file.c [__MINGW32__] (stderr_file_write): New function.
2666 [__MINGW32__] (stderr_file_fputs): New function.
2667 (stderr_fileopen): New function.
2668 * ui-file.h (stderr_fileopen): Declare.
2669
2670 2013-08-27 Doug Evans <dje@google.com>
2671
2672 * dwarf2read.c (struct dwarf2_cu): Tweak comment.
2673 (struct dwarf2_per_cu_data): Ditto.
2674 (maybe_queue_comp_unit): Delete forward decl. Add comment.
2675 (process_imported_unit_die): Ditto.
2676 (follow_die_sig_1): Simplify assert.
2677
2678 2013-08-27 Pedro Alves <palves@redhat.com>
2679
2680 * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
2681 xfer_partial's interface. Return TARGET_XFER_E_IO on error.
2682 (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
2683 windows_xfer_memory directly.
2684 (init_windows_ops): Don't install a deprecated_xfer_memory method.
2685
2686 2013-08-27 Pedro Alves <palves@redhat.com>
2687
2688 * darwin-nat.c (darwin_xfer_memory): Delete.
2689 (_initialize_darwin_inferior): Don't install a
2690 deprecated_xfer_memory method.
2691
2692 2013-08-27 Pedro Alves <pedro@codesourcery.com>
2693 Yao Qi <yao@codesourcery.com>
2694
2695 * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
2696 (parse_no_frames_option): Remove.
2697 (mi_cmd_stack_list_locals): Handle --skip-unavailable.
2698 (mi_cmd_stack_list_args): Adjust.
2699 (mi_cmd_stack_list_variables): Handle --skip-unavailable.
2700 (list_arg_or_local): Add new parameter 'skip_unavailable'. Return
2701 early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
2702 Caller update.
2703 (list_args_or_locals): New parameter 'skip_unavailable'.
2704 Handle it.
2705 * valprint.c (scalar_type_p): Rename to ...
2706 (val_print_scalar_type_p): ... this. Make extern.
2707 (val_print, value_check_printable): Adjust.
2708 * valprint.h (val_print_scalar_type_p): Declare.
2709 * value.c (value_entirely_unavailable): New function.
2710 * value.h (value_entirely_unavailable): Declare.
2711
2712 * NEWS: Mention the new option "--skip-unavailable" to MI
2713 commands '-stack-list-locals', '-stack-list-arguments' and
2714 '-stack-list-variables'.
2715
2716 2013-08-27 Yao Qi <yao@codesourcery.com>
2717
2718 * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
2719 (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
2720 options.
2721 * mi/mi-getopt.c (mi_getopt): Remove.
2722 (mi_getopt_1): Renamed from mi_getopt. Add one parameter
2723 'error_on_unknown'.
2724 (mi_getopt): Call mi_getopt_1.
2725 (mi_getopt_silent): New.
2726 * mi/mi-getopt.h (mi_getopt_silent): Declare.
2727
2728 2013-08-26 Doug Evans <dje@google.com>
2729
2730 PR symtab/15885
2731 * dwarf2read.c (dw2_dump): Print some minimal information indicating
2732 .gdb_index is in use.
2733 * symfile.c (reread_symbols): Reset objfile->sf.
2734
2735 * NEWS: Document "mt print objfiles" now takes optional regexp.
2736 * symmisc.c (maintenance_print_objfiles): Argument is now an optional
2737 regexp of objfiles to print.
2738 (_initialize_symmisc): Update doc string for "mt print objfiles".
2739
2740 * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
2741 missing debug info checks.
2742
2743 2013-08-26 Raunaq Bathija <raunaq12@in.ibm.com>
2744 Ulrich Weigand <uweigand@de.ibm.com>
2745
2746 * xcoffread.c (arrange_linetable): Add fix to correctly handle
2747 line tables generated by XLC compiled binaries.
2748
2749 2013-08-23 Doug Evans <dje@google.com>
2750
2751 * symmisc.c (dump_symtab): Delete prototype.
2752 (dump_msymbols, dump_objfile): Ditto.
2753 (maintenance_info_symtabs): Mark as dont_repeat.
2754 (_initialize_symmisc): Improve doc string for "mt info symtabs".
2755
2756 * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
2757 debugging printf to better location.
2758
2759 2013-08-23 Pedro Alves <palves@redhat.com>
2760
2761 * target.c (target_read_live_memory): Change type of 'ret' local
2762 to LONGEST.
2763
2764 2013-08-23 Pedro Alves <palves@redhat.com>
2765
2766 * remote.c (remote_write_bytes_aux, remote_write_bytes)
2767 (remote_read_bytes): Change return type to LONGEST, and adjust to
2768 return a target_xfer_error on error.
2769 (remote_xfer_memory): Delete.
2770 (remote_flash_write): Change type of 'ret' local to LONGEST.
2771 (remote_xfer_partial, remote_xfer_partial): Adjust.
2772 (init_remote_ops): Don't install a deprecated_xfer_memory hook.
2773
2774 2013-08-23 Pierre Muller <muller@sourceware.org>
2775
2776 ARI fix: Push # directives to start of line.
2777 * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
2778
2779 2013-08-12 Muhammad Waqas <mwaqas@codesourcery.com>
2780
2781 PR gdb/15501
2782 * breakpoint.c (enable_command, disable_command): Iterate over
2783 all specified breakpoint locations.
2784
2785 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
2786
2787 * common/linux-ptrace.c (linux_fork_to_function): Push #
2788 directives to the start of the line.
2789 (linux_check_ptrace_features): Fix warning message to use
2790 the "_" markup.
2791
2792 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
2793
2794 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
2795 nat/linux-waitpid.h.
2796 (linux-waitpid.o): New object file rule.
2797 * common/linux-ptrace.c: Include nat/linux-waitpid.h.
2798 (current_ptrace_options): Moved from linux-nat.c.
2799 (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
2800 parameters.
2801 (linux_fork_to_function): New function.
2802 (linux_grandchild_function): Likewise.
2803 (linux_child_function): Likewise.
2804 (linux_check_ptrace_features): New function, heavily
2805 based on linux-nat.c:linux_test_for_tracefork.
2806 (linux_enable_event_reporting): New function.
2807 (ptrace_supports_feature): Likewise.
2808 (linux_supports_tracefork): Likewise.
2809 (linux_supports_traceclone): Likewise.
2810 (linux_supports_tracevforkdone): Likewise.
2811 (linux_supports_tracesysgood): Likewise.
2812 * common/linux-ptrace.h (HAS_NOMMU): Moved from
2813 gdbserver/linux-low.c.
2814 (linux_enable_event_reporting): New declaration.
2815 (linux_supports_tracefork): Likewise.
2816 (linux_supports_traceclone): Likewise.
2817 (linux_supports_tracevforkdone): Likewise.
2818 (linux_supports_tracesysgood): Likewise.
2819 * config.in (PTRACE_TYPE_ARG4): Regenerate.
2820 * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
2821 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
2822 * config/arm/linux.mh (NATDEPFILES): Likewise.
2823 * config/i386/linux.mh (NATDEPFILES): Likewise.
2824 * config/i386/linux64.mh (NATDEPFILES): Likewise.
2825 * config/ia64/linux.mh (NATDEPFILES): Likewise.
2826 * config/m32r/linux.mh (NATDEPFILES): Likewise.
2827 * config/m68k/linux.mh (NATDEPFILES): Likewise.
2828 * config/mips/linux.mh (NATDEPFILES): Likewise.
2829 * config/pa/linux.mh (NATDEPFILES): Likewise..
2830 * config/powerpc/linux.mh (NATDEPFILES): Likewise..
2831 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
2832 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
2833 * config/sparc/linux.mh (NATDEPFILES): Likewise.
2834 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
2835 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
2836 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
2837 * configure.ac (AC_CACHE_CHECK): Add void * to the list of
2838 ptrace's 4th argument's types.
2839 Check the type of PTRACE_TYPE_ARG4.
2840 * configure: Regenerate.
2841 * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
2842 (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
2843 (linux_supports_tracefork_flag): Remove.
2844 (linux_supports_tracesysgood_flag): Likewise.
2845 (linux_supports_tracevforkdone_flag): Likewise.
2846 (current_ptrace_options): Moved to
2847 common/linux-ptrace.c.
2848 (linux_tracefork_child): Remove.
2849 (my_waitpid): Remove.
2850 (linux_test_for_tracefork): Renamed to
2851 linux_check_ptrace_features and moved to common/linux-ptrace.c.
2852 (linux_test_for_tracesysgood): Remove.
2853 (linux_supports_tracesysgood): Remove.
2854 (linux_supports_tracefork): Remove.
2855 (linux_supports_tracevforkdone): Remove.
2856 (linux_enable_tracesysgood): Remove.
2857 (linux_enable_event_reporting): Remove.
2858 (linux_init_ptrace): New function.
2859 (linux_child_post_attach): Call linux_init_ptrace.
2860 (linux_child_post_startup_inferior): Call linux_init_ptrace.
2861 (linux_child_follow_fork): Call linux_supports_tracefork
2862 and linux_supports_tracevforkdone.
2863 (linux_child_insert_fork_catchpoint): Call
2864 linux_supports_tracefork.
2865 (linux_child_insert_vfork_catchpoint): Likewise.
2866 (linux_child_set_syscall_catchpoint): Call
2867 linux_supports_tracesysgood.
2868 (lin_lwp_attach_lwp): Call linux_supports_tracefork.
2869 * nat/linux-nat.h: New file.
2870 * nat/linux-waitpid.c: New file.
2871 * nat/linux-waitpid.h: New file.
2872
2873 2013-08-22 Samuel Bronson <naesten@gmail.com>
2874
2875 ARM Linux support for `catch syscall'.
2876 * syscalls/arm-linux.py: New file.
2877 * syscalls/arm-linux.xml: Likewise.
2878 * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
2879 (arm_linux_init_abi): Register the new function and syscall xml file.
2880 * data-directory/Makefile.in: Install the new syscall xml file.
2881 * NEWS: Brag about this.
2882
2883 2013-08-22 Pedro Alves <palves@redhat.com>
2884
2885 PR gdb/15871
2886 * corefile.c (target_xfer_memory_error): New function.
2887 (memory_error): Defer EIO to target_memory_error.
2888 (read_memory): Use target_xfer_partial, and handle finer-grained
2889 target xfer errors.
2890 * target.c (target_xfer_error_to_string): New function.
2891 (memory_xfer_partial_1): If memory is known to be
2892 unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
2893 (target_xfer_partial): Make extern.
2894 * target.h (enum target_xfer_error): New enum.
2895 (target_xfer_error_to_string): Declare function.
2896 (target_xfer_partial): Declare function.
2897 (struct target_ops) <xfer_partial>: Adjust describing comment.
2898
2899 2013-08-22 Alan Modra <amodra@gmail.com>
2900
2901 * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
2902 * configure.tgt: Likewise as targets.
2903
2904 2013-08-20 Doug Evans <dje@google.com>
2905
2906 * buildsym.c (subfile_stack): Move here from buildsym.h.
2907 (pending_macros): Ditto.
2908 (get_macro_table): New function.
2909 (buildsym_init): Initialize subfile_stack.
2910 * coffread.c (type_vector,type_vector_length): Moved here from
2911 buildsym.h.
2912 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2913 (coff_symtab_read): Use it.
2914 * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
2915 * dwarf2read.c (macro_start_file): Replace uses of pending_macros
2916 with call to get_macro_table.
2917 * stabsread.c (type_vector,type_vector_length): Moved here from
2918 buildsym.h.
2919 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2920 * buildsym.h (get_macro_table): Declare.
2921
2922 2013-08-20 Tom Tromey <tromey@redhat.com>
2923
2924 * dbxread.c (record_minimal_symbol): Make 'name' argument const.
2925 Update.
2926 (read_dbx_dynamic_symtab): Make 'name' const. Remove casts.
2927
2928 2013-08-20 Doug Evans <dje@google.com>
2929
2930 * blockframe.c: Remove #include "psymtab.h".
2931 * cp-support.c: Ditto.
2932 * source.c: Ditto.
2933 * stack.c: Ditto.
2934
2935 2013-08-20 Tom Tromey <tromey@redhat.com>
2936
2937 PR python/15816:
2938 * exceptions.h (return_mask): Now an enum.
2939 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
2940 enum constants.
2941
2942 2013-08-20 Tom Tromey <tromey@redhat.com>
2943
2944 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
2945 get_objfile_arch.
2946 * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
2947 (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
2948 * jit.c (jit_object_close_impl): Update.
2949 * jv-lang.c (get_dynamics_objfile): Update.
2950 * linespec.c (add_minsym): Use get_dynamics_objfile.
2951 * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
2952 (allocate_objfile): Don't initialize 'gdbarch' field.
2953 (get_objfile_arch): Update.
2954 * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
2955 moved from...
2956 (struct objfile) <gdbarch>: ... here. Remove.
2957 * stap-probe.c (stap_can_evaluate_probe_arguments): Use
2958 get_objfile_arch.
2959 * symfile.c (init_entry_point_info): Use get_objfile_arch.
2960
2961 2013-08-20 Alan Modra <amodra@gmail.com>
2962
2963 * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
2964 for IBM long double nan and inf.
2965 (floatformat_is_negative, floatformat_classify,
2966 floatformat_mantissa): Similarly.
2967 (floatformat_ieee_single, floatformat_ieee_double,
2968 floatformat_ieee_quad, floatformat_arm_ext,
2969 floatformat_ia64_spill): Delete unused vars.
2970 (_initialize_doublest): Delete unused function.
2971 * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
2972 little-endian variants of floatformat_ibm_long_double.
2973
2974 2013-08-19 Luis Machado <lgustavo@codesourcery.com>
2975
2976 * Makefile.in (SFILES): Remove common/target-common.c and
2977 add target/waitstatus.c.
2978 (HFILES_NO_SRCDIR): Remove common/target-common.h and add
2979 target/resume.h, target/wait.h and target/waitstatus.h.
2980 (COMMON_OBS): Remove target-common.o and add
2981 waitstatus.o.
2982 (target-common.o): Remove.
2983 (waitstatus.o): New target object file.
2984 * common/target-common.c: Move contents to
2985 target/waitstatus.c and remove.
2986 * common/target-common.h: Move contents to other files and
2987 remove.
2988 (enum resume_kind: Move to target/resume.h.
2989 (TARGET_WNOHANG): Move to target/wait.h.
2990 (enum target_waitkind): Move to target/waitstatus.h.
2991 (struct target_waitstatus): Likewise.
2992 * target.h: Do not include target-common.h and
2993 include target/resume.h, target/wait.h and
2994 target/waitstatus.h.
2995 * target/resume.h: New file.
2996 * target/wait.h: New file.
2997 * target/waitstatus.h: New file.
2998 * target/waitstatus.c: New file.
2999
3000 2013-08-19 Pedro Alves <palves@redhat.com>
3001
3002 * linux-nat.c (linux_test_for_tracefork)
3003 (linux_test_for_tracesysgood, linux_child_follow_fork)
3004 (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
3005 (linux_nat_wait_1): Extend comment.
3006 (linux_async_pipe): Add comment.
3007
3008 2013-08-15 Kevin Buettner <kevinb@redhat.com>
3009
3010 * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
3011 (RL78_PC_REGNUM): Move to list of pseudo-register enums.
3012 (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
3013 Update to account for fact that PC is now a pseudo-register.
3014 (rl78_pseudo_register_write, rl78_pseudo_register_read): Add
3015 cases for RL78_PC_REGNUM.
3016
3017 2013-08-15 Muhammad Bilal <mbilal@codesourcery.com>
3018
3019 PR cli/15841
3020 * top.c (quit_force): Skip writing history file
3021 if input is not from terminal.
3022
3023 2013-08-14 Tom Tromey <tromey@redhat.com>
3024
3025 * remote.c (struct remote_state) <echo_nextthread, nextthread,
3026 resultthreadlist>: New fields.
3027 (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
3028 (remote_get_threadlist, remote_threadlist_iterator): Use
3029 new fields. Remove static variables.
3030
3031 2013-08-14 Tom Tromey <tromey@redhat.com>
3032
3033 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
3034 remote_watch_data_address>: New fields.
3035 (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
3036 (process_stop_reply, remote_wait_as)
3037 (remote_check_watch_resources, remote_stopped_data_address): Update.
3038
3039 2013-08-14 Tom Tromey <tromey@redhat.com>
3040
3041 * remote.c (struct remote_state) <async_client_callback,
3042 async_client_context>: New fields.
3043 (async_client_callback, async_client_context): Remove.
3044 (remote_async_serial_handler, remote_async): Update.
3045
3046 2013-08-14 Tom Tromey <tromey@redhat.com>
3047
3048 * remote.c (sizeof_pkt): Remove.
3049 (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
3050
3051 2013-08-14 Tom Tromey <tromey@redhat.com>
3052
3053 * remote.c (struct remote_state) <use_threadinfo_query,
3054 use_threadextra_query>: New fields.
3055 (remote_threads_info, remote_threads_extra_info)
3056 (remote_open_1): Update.
3057
3058 2013-08-14 Tom Tromey <tromey@redhat.com>
3059
3060 * remote.c (struct remote_state) <finished_object,
3061 finished_annex, finished_offset>: New fields.
3062 (remote_read_qxfer): Use remote_state fields; remove static
3063 variables.
3064
3065 2013-08-14 Tom Tromey <tromey@redhat.com>
3066
3067 * remote.c (struct remote_state) <last_sent_step>:
3068 New field.
3069 (last_sent_step): Remove.
3070 (remote_resume, remote_wait_as): Update.
3071
3072 2013-08-14 Tom Tromey <tromey@redhat.com>
3073
3074 * remote.c (struct remote_state) <last_sent_signal>:
3075 New field.
3076 (last_sent_signal): Remove.
3077 (new_remote_state, remote_resume, remote_wait_as): Update.
3078
3079 2013-08-14 Tom Tromey <tromey@redhat.com>
3080
3081 * remote.c (struct remote_state) <last_program_signals_packet>:
3082 New field.
3083 (last_program_signals_packet): Remove.
3084 (remote_program_signals, remote_open_1): Update.
3085
3086 2013-08-14 Tom Tromey <tromey@redhat.com>
3087
3088 * remote.c (struct remote_state) <last_pass_packet>:
3089 New field.
3090 (last_pass_packet): Remove.
3091 (remote_pass_signals, remote_open_1): Update.
3092
3093 2013-08-14 Tom Tromey <tromey@redhat.com>
3094
3095 * remote.c (struct remote_state) <remote_traceframe_number>:
3096 New field.
3097 (remote_traceframe_number): Remove.
3098 (new_remote_state, remote_open_1, set_remote_traceframe)
3099 (remote_trace_find): Update.
3100
3101 2013-08-14 Tom Tromey <tromey@redhat.com>
3102
3103 * remote.c (struct remote_state) <general_thread, continue_thread>:
3104 New fields.
3105 (general_thread, continue_thread): Remove.
3106 (record_currthread, set_thread, set_general_process)
3107 (remote_open_1, extended_remote_attach_1, remote_wait_as)
3108 (extended_remote_mourn_1): Update.
3109
3110 2013-08-14 Tom Tromey <tromey@redhat.com>
3111
3112 * remote.c (struct remote_state) <remote_desc>: New field.
3113 (remote_desc): Remove.
3114 (remote_threads_info, remote_threads_extra_info, remote_close)
3115 (send_interrupt_sequence, remote_start_remote, remote_open_1)
3116 (readchar, remote_xfer_partial, remote_rcmd, packet_command)
3117 (remote_hostio_send_command, remote_file_put, remote_file_get)
3118 (remote_file_delete, remote_can_async_p, remote_is_async_p)
3119 (remote_async, remote_new_objfile, set_range_stepping): Update.
3120
3121 2013-08-14 Tom Tromey <tromey@redhat.com>
3122
3123 * remote.c (remote_state): Now a pointer.
3124 (get_remote_state_raw): Update.
3125 (new_remote_state): New function.
3126 (_initialize_remote): Use new_remote_state.
3127
3128 2013-08-14 Tom Tromey <tromey@redhat.com>
3129
3130 * remote.c (remote_protocol_features): Now const.
3131
3132 2013-08-14 Tom Tromey <tromey@redhat.com>
3133
3134 * remote.c (crc32_table, crc32): Remove.
3135 (remote_verify_memory): Use xcrc32.
3136
3137 2013-08-13 Sergio Durigan Junior <sergiodj@redhat.com>
3138
3139 * value.h (create_internalvar_type_lazy): Adjust prototype
3140 declaration.
3141
3142 2013-08-13 Andrew Burgess <aburgess@broadcom.com>
3143
3144 * common/format.c (parse_format_string): Don't allow '#' flag for
3145 pointer arguments in format string.
3146
3147 2013-08-13 Pierre Muller <muller@sourceware.org>
3148
3149 * utils.c (init_page_info): Only call tgetnum function
3150 if rl_get_screen_size did not return useful values.
3151
3152 2013-08-12 Ali Anwar <ali_anwar@codesourcery.com>
3153
3154 PR breakpoints/15117
3155 * linespec.c (linespec_parse_basic): Check for convenience
3156 variable or history value while parsing.
3157
3158 2013-08-12 Sergio Durigan Junior <sergiodj@redhat.com>
3159
3160 Revert implementation of gdbarch_gdb_signal_{to,from}_target for
3161 AVR.
3162 * avr-tdep.c: Remove include of "linux-tdep.h". Remove enum with
3163 different signals between the generic Linux kernel implementation
3164 and AVR's.
3165 (avr_linux_gdb_signal_from_target): Delete.
3166 (avr_linux_gdb_signal_to_target): Delete.
3167 (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
3168
3169 2013-08-09 Doug Evans <dje@google.com>
3170
3171 * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
3172 entries.
3173
3174 2013-08-09 Sergio Durigan Junior <sergiodj@redhat.com>
3175
3176 * linux-tdep.c: Define enum with generic signal numbers.
3177 (linux_gdb_signal_from_target): New function.
3178 (linux_gdb_signal_to_target): Likewise.
3179 (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
3180 methods to the functions above.
3181 * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
3182 (linux_gdb_signal_to_target): Likewise.
3183 * alpha-linux-tdep.c: Define new enum with signals different
3184 from generic Linux kernel.
3185 (alpha_linux_gdb_signal_from_target): New function.
3186 (alpha_linux_gdb_signal_to_target): Likewise.
3187 (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
3188 with the functions mentioned above.
3189 * avr-tdep.c: Define enum with differences between Linux kernel
3190 and AVR signals.
3191 (avr_linux_gdb_signal_from_target): New function.
3192 (avr_linux_gdb_signal_to_target): Likewise.
3193 (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
3194 the functions mentioned above.
3195 * sparc-linux-tdep.c: Define enum with differences between SPARC
3196 and generic Linux kernel signal numbers.
3197 (sparc32_linux_gdb_signal_from_target): New function.
3198 (sparc32_linux_gdb_signal_to_target): Likewise.
3199 (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
3200 to the functions defined above.
3201 * xtensa-linux-tdep.c: Define enum with differences between
3202 Xtensa and Linux kernel generic signals.
3203 (xtensa_linux_gdb_signal_from_target): New function.
3204 (xtensa_linux_gdb_signal_to_target): Likewise.
3205 (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
3206 to the functions defined above.
3207 * mips-linux-tdep.c: Define enum with differences between
3208 signals in MIPS and Linux kernel generic ones.
3209 (mips_gdb_signal_to_target): New function.
3210 (mips_gdb_signal_from_target): Redefine to use new enum, handle
3211 only different signals from the Linux kernel generic.
3212 (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
3213 the functions defined above.
3214 * mips-linux-tdep.h (enum mips_signals): Remove.
3215
3216 2013-08-09 Pedro Alves <palves@redhat.com>
3217
3218 * avr-tdep.c (XMALLOC): Delete macro.
3219 * cli/cli-dump.c (XMALLOC): Delete macro.
3220
3221 2013-08-09 Pedro Alves <palves@redhat.com>
3222
3223 * cli/cli-dump.c: Don't include cli/cli-dump.h.
3224 (scan_expression_with_cleanup, scan_filename_with_cleanup)
3225 (fopen_with_cleanup, add_dump_command): Make static.
3226 * cli/cli-dump.h: Delete file.
3227 * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
3228 cli/cli-dump.h.
3229
3230 2013-08-09 Pedro Alves <palves@redhat.com>
3231
3232 * tracepoint.c (tfile_start): Show tilde-expanded filename in
3233 error message.
3234
3235 2013-08-09 Pedro Alves <palves@redhat.com>
3236
3237 * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
3238 error message.
3239
3240 2013-08-09 Pedro Alves <palves@redhat.com>
3241
3242 * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
3243 (gcore_command): Use tilde_expand here, and when showing the
3244 filename to the user, show the expanded version.
3245
3246 2013-08-09 Yao Qi <yao@codesourcery.com>
3247
3248 * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
3249 'entryval' is set.
3250
3251 2013-08-08 Azat Khuzhin <a3at.mail@gmail.com> (tiny change)
3252
3253 * gcore.c (create_gcore_bfd): Use tilde_expand.
3254
3255 2013-08-08 Yao Qi <yao@codesourcery.com>
3256
3257 * frame.h (read_frame_local): Declare.
3258 * mi/mi-cmd-stack.c (list_args_or_locals): Call
3259 read_frame_local.
3260 * stack.c (read_frame_local): New.
3261
3262 2013-08-08 Yao Qi <yao@codesourcery.com>
3263
3264 * mi/mi-cmd-stack.c: Update comments to function
3265 list_args_or_locals.
3266
3267 2013-08-07 Tom Tromey <tromey@redhat.com>
3268
3269 PR symtab/15028:
3270 * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
3271 (process_psymtab_comp_unit_reader): Use it.
3272 (process_psymtab_comp_unit): Update. Add "pretend_language"
3273 argument.
3274 (dwarf2_build_psymtabs_hard): Update.
3275 (scan_partial_symbols): Pass CU's language to
3276 process_psymtab_comp_unit.
3277
3278 2013-08-07 Tom Tromey <tromey@redhat.com>
3279
3280 * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
3281 (dwarf2_gdb_index_functions): Update.
3282 * psymtab.c (find_symbol_file_from_partial): Remove.
3283 (psym_functions): Update.
3284 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
3285 Remove.
3286
3287 2013-08-07 Tom Tromey <tromey@redhat.com>
3288
3289 * symfile.c (set_initial_language): Look up "main" symbol
3290 and use its language.
3291 * symtab.c (find_main_filename): Remove.
3292 * symtab.h (find_main_filename): Remove.
3293
3294 2013-08-07 Tom Tromey <tromey@redhat.com>
3295
3296 * dwarf2read.c (recursively_compute_inclusions): Add
3297 "immediate_parent" argument. Set symtab's "user" field
3298 if not set.
3299 (compute_symtab_includes): Update.
3300
3301 2013-08-07 Tom Tromey <tromey@redhat.com>
3302
3303 * linespec.c (convert_linespec_to_sals): Use maybe_add_address
3304 when adding label symbols.
3305
3306 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
3307 Ulrich Weigand <uweigand@de.ibm.com>
3308
3309 * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
3310 * configure.host (powerpc64-*-aix*): Likewise.
3311
3312 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
3313 Ulrich Weigand <uweigand@de.ibm.com>
3314
3315 * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
3316 is defined.
3317 * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
3318 (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
3319 (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
3320 * configure.ac: Check for ptrace64.
3321 * configure, config.in: Regenerate.
3322
3323 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
3324 Ulrich Weigand <uweigand@de.ibm.com>
3325
3326 * aixthread.c: Call ptrace64 instead of ptracex if defined.
3327 Call ptrace64 instead of ptrace if defined.
3328 Add macro addr_ptr to take care of ptrace address argument.
3329 (pdc_read_regs): Likewise.
3330 (pdc_write_regs): Likewise.
3331 (aix_thread_resume): Likewise.
3332 (fetch_regs_kernel_thread): Likewise.
3333 (store_regs_kernel_thread): Likewise.
3334
3335 2013-08-07 Anton Blanchard <anton@samba.org>
3336
3337 * MAINTAINERS: Add myself to Write After Approval.
3338
3339 2013-08-05 Tom Tromey <tromey@redhat.com>
3340
3341 * aix-thread.c (_initialize_aix_thread): Use
3342 complete_target_initialization.
3343 * bsd-uthread.c (_initialize_bsd_uthread): Use
3344 complete_target_initialization.
3345 * dec-thread.c (_initialize_dec_thread): Use
3346 complete_target_initialization.
3347 * ravenscar-thread.c (_initialize_ravenscar): Use
3348 complete_target_initialization.
3349 * sol-thread.c (_initialize_sol_thread): Use
3350 complete_target_initialization.
3351 * spu-multiarch.c (_initialize_spu_multiarch): Use
3352 complete_target_initialization.
3353
3354 2013-08-05 Tom Tromey <tromey@redhat.com>
3355
3356 * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
3357 * ada-lang.c (ada_lookup_simple_minsym): Return
3358 bound_minimal_symbol.
3359 * ada-lang.h (ada_lookup_simple_minsym): Update.
3360 * c-exp.y (variable): Use lookup_bound_minimal_symbol.
3361 * f-exp.y (variable): Use lookup_bound_minimal_symbol.
3362 * go-exp.y (variable): Use lookup_bound_minimal_symbol.
3363 * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
3364 * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
3365 * minsyms.c (msymbol_objfile): Remove.
3366 (lookup_minimal_symbol_internal): New function, from
3367 lookup_minimal_symbol.
3368 (lookup_minimal_symbol): Rewrite using
3369 lookup_minimal_symbol_internal.
3370 (lookup_bound_minimal_symbol): New function.
3371 * minsyms.h (msymbol_objfile): Remove.
3372 (lookup_bound_minimal_symbol): Declare.
3373 * p-exp.y (variable): Use lookup_bound_minimal_symbol.
3374 * parse.c (write_exp_msymbol): Change parameter to a
3375 bound_minimal_symbol.
3376 (write_dollar_variable): Use lookup_bound_minimal_symbol.
3377 * parser-defs.h (write_exp_msymbol): Update.
3378 * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
3379 * symfile.c (simple_read_overlay_table): Use
3380 lookup_bound_minimal_symbol.
3381 * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
3382 (search_symbols): Likewise.
3383 (print_msymbol_info): Take a bound_minimal_symbol argument.
3384 (symtab_symbol_info, rbreak_command): Update.
3385 * symtab.h (struct symbol_search) <msymbol>: Change type
3386 to bound_minimal_symbol.
3387 * valops.c (find_function_in_inferior): Use
3388 lookup_bound_minimal_symbol.
3389 * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
3390
3391 2013-08-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3392
3393 Code cleanup.
3394 * remote.c (cleanup_sigint_signal_handler): Rename the declaration
3395 to ...
3396 (async_cleanup_sigint_signal_handler): ... this.
3397 (initialize_sigint_signal_handler): Remove declaration.
3398 (handle_remote_sigint): Rename the declaration to ...
3399 (async_handle_remote_sigint): ... this.
3400 (handle_remote_sigint_twice): Rename the declaration to ...
3401 (async_handle_remote_sigint_twice): ... this.
3402 (async_remote_interrupt, async_remote_interrupt_twice)
3403 (remote_interrupt): Remove the declarations.
3404 (remote_interrupt_twice): Rename the declaration ...
3405 (sync_remote_interrupt_twice): ... this.
3406 (sigint_remote_twice_token): Rename the variable to ...
3407 (async_sigint_remote_twice_token): ... this.
3408 (sigint_remote_token): Rename the variable to ...
3409 (async_sigint_remote_token): ... this.
3410 (initialize_sigint_signal_handler): Rename the function to ...
3411 (async_initialize_sigint_signal_handler): ... this. Update the name
3412 inside.
3413 (handle_remote_sigint): Rename the function to ...
3414 (async_handle_remote_sigint): ... this. Update the names inside.
3415 (handle_remote_sigint_twice): Rename the function to ...
3416 (async_handle_remote_sigint_twice): ... this. Update the names inside.
3417 (cleanup_sigint_signal_handler): Rename the function to ...
3418 (async_cleanup_sigint_signal_handler): ... this.
3419 (remote_interrupt): Rename the function to ...
3420 (sync_remote_interrupt): this. Update the names inside.
3421 (remote_interrupt_twice): Rename the function to ...
3422 (sync_remote_interrupt_twice): this. Update the names inside.
3423 (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
3424 (_initialize_remote): Update the names inside.
3425
3426 2013-08-02 Tom Tromey <tromey@redhat.com>
3427
3428 PR symtab/15719:
3429 * breakpoint.c (update_watchpoint, watchpoint_check)
3430 (watch_command_1): Update.
3431 * eval.c (fetch_subexp_value): Add "preserve_errors"
3432 parameter.
3433 * ppc-linux-nat.c (check_condition): Update.
3434 * value.h (fetch_subexp_value): Update.
3435
3436 2013-08-02 Andrew Burgess <aburgess@broadcom.com>
3437
3438 * mi/mi-interp.c (mi_interpreter_resume): Remove call to
3439 add_file_handler.
3440
3441 2013-08-01 Doug Evans <dje@google.com>
3442
3443 PR symtab/15691
3444 * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
3445 (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
3446 Add assert of sig_entry->dwo_unit == NULL.
3447 (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
3448 had already been read.
3449 (read_signatured_type): Set per_cu.tu_read.
3450
3451 PR symtab/15695
3452 * valops.c (value_struct_elt): Add missing call to check_typedef.
3453 (value_find_oload_method_list): Ditto.
3454
3455 * symtab.c (do_free_search_symbols_cleanup): Change arg to,
3456 effectively, struct symbol_search **.
3457 (make_cleanup_free_search_symbols): Change arg to struct
3458 symbol_search **. All callers updated.
3459 (compare_search_syms): Compare symtab file name and block as well.
3460 (search_symbols_equal): New function.
3461 (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
3462 New args new_head, new_tail. Result is now void. Remove dups after
3463 sorting the symbols.
3464 (search_symbols): Sort all found symbols once, after all have been
3465 found, and remove duplicates. Simplify cleanup tracking of result.
3466 * symtab.h (make_cleanup_free_search_symbols): Update prototype.
3467
3468 Further workarounds for binutils/15021.
3469 * dwarf2read.c (recursively_compute_inclusions): Change type of result
3470 parameter to VEC (symtab_ptr) **. New parameter all_type_symtabs.
3471 Watch for duplicate symtabs coming from type units.
3472 (compute_symtab_includes): Update call to
3473 recursively_compute_inclusions. Build vector of included symtabs
3474 instead of per_cus.
3475 * symtab.h (symtab_ptr): New typedef.
3476 (DEF_VEC_P (symtab_ptr)): New VEC type.
3477 * linespec.c (symtab_p): Delete. All uses updated to use symtab_ptr
3478 instead.
3479
3480 2013-08-01 Andrew Burgess <aburgess@broadcom.com>
3481
3482 * cli/cli-script.c (script_from_file): Remove use of
3483 error_pre_print.
3484 * main.c (captured_main): Remove use of error_pre_print and
3485 quit_pre_print.
3486 * utils.c (error_pre_print, quit_pre_print): Remove.
3487 * utils.h (error_pre_print, quit_pre_print): Likewise.
3488
3489 2013-08-01 Yao Qi <yao@codesourcery.com>
3490
3491 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
3492 with mi_getopt.
3493 (mi_cmd_stack_list_variables): Likewise.
3494
3495 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3496
3497 * exceptions.c (deprecated_throw_reason): Remove.
3498 * exceptions.h (deprecated_throw_reason): Remove.
3499
3500 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3501
3502 * remote-mips.c (mips_error): Replace use of
3503 deprecated_throw_reason with throw_verror. Use the error message
3504 passed to mips_error as the error message for throw_verror.
3505
3506 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3507
3508 * monitor.c (monitor_interrupt_query): Replace use of
3509 deprecated_throw_reason with quit.
3510 * nto-procfs.c (interrupt_query): Likewise.
3511 * remote-fileio.c (remote_fileio_sig_exit): Likewise.
3512 * remote-mips.c (mips_kill): Likewise.
3513 * remote.c (interrupt_query): Likewise.
3514
3515 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3516
3517 * utils.c (internal_verror): Replace use of deprecated_throw_reason
3518 with call to fatal.
3519
3520 2013-07-31 Pedro Alves <pedro@codesourcery.com>
3521 Yao Qi <yao@codesourcery.com>
3522
3523 * tracepoint.c (trace_dump_command): Select the current frame.
3524
3525 2013-07-30 Doug Evans <dje@google.com>
3526
3527 * dwarf2read.c (process_queue): Add type signature to debug output.
3528
3529 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
3530
3531 * value.c (value_fetch_lazy): Mark optimized out values as such
3532 rather than raising an error.
3533
3534 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
3535
3536 * value.c (value_fetch_lazy): Ensure parent value is not lazy
3537 before checking which bits of the parent, not the child, value are
3538 valid.
3539
3540 2013-07-30 Muhammad Bilal <mbilal@codesorcery.com>
3541
3542 PR gdb/15715
3543 * top.c: Include "filenames.h".
3544 (set_history_filename): New function.
3545 (init_main): Install it as set hook of the "set history filename"
3546 command.
3547
3548 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3549
3550 * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
3551 attribute parameter.
3552 (dwarf2_const_value_data): Constify struct attribute parameter.
3553 (dwarf2_const_value): Constify struct attribute parameter.
3554 (dwarf2_const_value_attr): Constify struct attribute parameter.
3555 (lookup_die_type): Constify struct attribute parameter.
3556 (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
3557 (follow_die_ref_or_sig): Constify struct attribute parameter.
3558 (follow_die_ref): Constify struct attribute parameter.
3559 (follow_die_sig): Constify struct attribute parameter.
3560 (get_DW_AT_signature_type): Constify struct attribute parameter.
3561 (get_type_unit_group): Constify struct attribute parameter.
3562 (fill_in_loclist_baton): Constify struct attribute parameter.
3563 (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
3564 (type_unit_group): Constify struct attribute parameter.
3565
3566 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3567
3568 * dwarf2read.c (attr_form_is_block): Make argument const.
3569 (attr_form_is_section_offset): Make argument const.
3570 (attr_form_is_constant): Make argument const.
3571 (attr_form_is_ref): Make argument const.
3572
3573 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3574
3575 * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
3576 All uses updated.
3577 (attr_form_is_ref): Moved below attr_form_is_constant.
3578
3579 2013-07-29 Doug Evans <dje@google.com>
3580
3581 * main.c (captured_command_loop): Tweak comment.
3582
3583 * target.c (target_async_permitted_1): Fix comment.
3584
3585 * symtab.c (iterate_over_some_symtabs): Add comment.
3586
3587 * symtab.c (iterate_over_some_symtabs): Fix indentation.
3588
3589 2013-07-27 Yao Qi <yao@codesourcery.com>
3590
3591 * NEWS: Mention that GDBserver now supports hardware
3592 watchpoints on the MIPS GNU/Linux target.
3593
3594 2013-07-27 Yao Qi <yao@codesourcery.com>
3595
3596 * Makefile.in (HFILES_NO_SRCDIR): Add
3597 common/mips-linux-watch.h.
3598 (mips-linux-watch.o): New rule.
3599 * common/mips-linux-watch.c: New.
3600 * common/mips-linux-watch.h: New.
3601 * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
3602 * mips-linux-nat.c: Include mips-linux-watch.h.
3603 (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
3604 to common/mips-linux-watch.h.
3605 (MAX_DEBUG_REGISTER): Likewise.
3606 (enum pt_watch_style): Likewise.
3607 (struct mips32_watch_regs): Likewise.
3608 (struct mips64_watch_regs): Likewise.
3609 (struct pt_watch_regs): Likewise.
3610 (struct mips_watchpoint): Likewise.
3611 (mips_linux_watch_get_irw_mask): Move to
3612 common/mips-linux-watch.c.
3613 (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
3614 (mips_linux_watch_get_watchlo): Likewise.
3615 (mips_linux_watch_set_watchlo): Likewise.
3616 (mips_linux_watch_get_watchhi): Likewise.
3617 (mips_linux_watch_set_watchhi): Likewise.
3618 (mips_linux_read_watch_registers): Likewise.
3619 (mips_linux_watch_type_to_irw): Likewise.
3620 (mips_linux_stopped_data_address, fill_mask): Likewise.
3621 (mips_linux_watch_try_one_watch): Likewise.
3622 (mips_linux_watch_populate_regs): Likewise.
3623
3624 2013-07-27 Yao Qi <yao@codesourcery.com>
3625
3626 * mips-linux-nat.c (get_irw_mask): Rename to ...
3627 (mips_linux_watch_get_irw_mask): ... this. Rename parameter
3628 'set' to 'n'. Update function comment. All callers changed.
3629 (get_reg_mask): Rename parameter 'set' to 'n'. Update
3630 function comment. All callers changed.
3631 (get_num_valid): Rename to ...
3632 (mips_linux_watch_get_num_valid): ... this. Rename parameter
3633 'set' to 'n'. Update function comment. All callers changed.
3634 (get_watchlo): Rename to ...
3635 (mips_linux_watch_get_watchlo): ... this. Rename parameter
3636 'set' to 'n'. Update function comment. All callers changed.
3637 (set_watchlo): Rename to ...
3638 (mips_linux_watch_set_watchlo): ... this. Rename parameter
3639 'set' to 'n'. Update function comment. All callers changed.
3640 (get_watchhi): Rename to ...
3641 (mips_linux_watch_get_watchhi): ... this. Update function
3642 comment. All callers changed.
3643 (set_watchhi): Rename to ...
3644 (mips_linux_watch_set_watchhi): ... this. Update function
3645 comment. All callers changed.
3646 (mips_linux_read_watch_registers): Update function comment.
3647 Add new parameters 'lwpid', 'watch_readback', and
3648 'watch_readback_valid'. Update.
3649 (type_to_irw): Rename to ...
3650 (mips_linux_watch_type_to_irw): ... this. Update function
3651 comment. All callers changed.
3652 (fill_mask): Update function comment.
3653 (try_one_watch): Rename to ...
3654 (mips_linux_watch_try_one_watch): ... this. Change the type
3655 of parameter 'irw' from 'unsigned' to 'uint32_t'.
3656 (populate_regs_from_watches): Rename to ...
3657 (mips_linux_watch_populate_regs): ... this. Add parameter
3658 'current_watches'. All callers changed.
3659
3660 2013-07-27 Yao Qi <yao@codesourcery.com>
3661
3662 * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
3663 the code.
3664 (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
3665 (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
3666 (struct pt_watch_regs): Likewise.
3667 [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
3668 [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
3669 [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
3670 [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
3671 [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
3672
3673 2013-07-27 Yao Qi <yao@codesourcery.com>
3674
3675 * breakpoint.h: Include break-common.h.
3676 (enum target_hw_bp_type): Move to ...
3677 * common/break-common.h: ... here. New.
3678
3679 2013-07-26 Cyril Nikolaev <cyril@nichtverstehen.de>
3680
3681 * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
3682 process group regardless of having tty on stdin.
3683
3684 2013-07-25 Doug Evans <dje@google.com>
3685
3686 * linux-fork.h (detach_fork): Delete.
3687
3688 2013-07-25 Tom Tromey <tromey@redhat.com>
3689
3690 PR remote/15256, PR remote/15266:
3691 * bfd-target.c (target_bfd_reopen): Initialize to_magic.
3692 * monitor.c (monitor_detach): Use unpush_target.
3693 * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
3694 * remote-mips.c (mips_detach): Use unpush_target. Don't
3695 call mips_close.
3696 * remote-sim.c (gdbsim_detach): Use unpush_target.
3697 * target.c (pop_target): Remove.
3698 (pop_all_targets_above): Don't call target_close.
3699 (target_close): Assert that the target is unpushed.
3700 * target.h (pop_target): Don't declare.
3701 * tracepoint.c (tfile_open): Use unpush_target.
3702
3703 2013-07-25 Tom Tromey <tromey@redhat.com>
3704
3705 * linux-thread-db.c (init_thread_db_ops): Call
3706 complete_target_initialization.
3707 (_initialize_thread_db): Don't call add_target.
3708 * target.c (complete_target_initialization): New function.
3709 (add_target_with_completer): Call it.
3710 * target.h (complete_target_initialization): Declare.
3711
3712 2013-07-25 Mark Kettenis <kettenis@gnu.org>
3713
3714 * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
3715 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
3716 (HPPANBSD_SIZEOF_GREGS): New define.
3717 (hppaobsd_supply_gregset): Handle additional registers.
3718 * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
3719 we provide more registers now.
3720 (hppabsd_supply_gregset): Supply additional registers.
3721 (hppabsd_collect_gregset): Collect additional registers.
3722
3723 2013-07-25 Mark Kettenis <kettenis@gnu.org>
3724
3725 * hppabsd-tdep.c: Include "dwarf2-frame.h".
3726 (hppabsd_dwarf2_frame_init_reg): New function.
3727 (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
3728
3729 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
3730
3731 * mi/mi-main.c (output_register): Make MI 'r' format use standard
3732 'z' format code. Remove error for optimized out values, standard
3733 code will handle these fine.
3734
3735 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
3736
3737 * NEWS: Mention new 'z' formatter.
3738 * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
3739 (_initialize_printcmd): Mention 'z' formatter in help text of the
3740 'x' command.
3741
3742 2013-07-24 Maciej W. Rozycki <macro@codesourcery.com>
3743
3744 * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
3745 formatting.
3746
3747 2013-07-24 Sergio Durigan Junior <sergiodj@redhat.com>
3748
3749 * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
3750 interface can evaluate arguments. Fallback to the old mode if it
3751 cannot.
3752 (create_exception_master_breakpoint): Likewise.
3753 * elfread.c (elf_can_evaluate_probe_arguments): New function.
3754 (struct sym_probe_fns elf_probe_fns): Export function above to the
3755 probe interface.
3756 * probe.c (can_evaluate_probe_arguments): New function.
3757 * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
3758 function pointer.
3759 (can_evaluate_probe_arguments): New function prototype.
3760 * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
3761 probe interface can evaluate arguments. Fallback to the old mode
3762 if it cannot.
3763 * stap-probe.c (stap_get_probe_argument_count): Check if probe
3764 interface can evaluate arguments. Warning the user if it cannot.
3765 (stap_can_evaluate_probe_arguments): New function.
3766 (struct probe_ops stap_probe_ops): Export function above to the
3767 probe interface.
3768 * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
3769 New function pointer.
3770
3771 2013-07-24 Luis Machado <lgustavo@codesourcery.com>
3772
3773 * Makefile.in (SFILES): Add common/target-common.c.
3774 Add common/target-common.h to headers.
3775 (COMMON_OBS): Add target-common.o.
3776 (target-common.o): New target.
3777 * linux-nat.h (resume_kind): Move to common/target-common.h.
3778 * target.c (target_waitstatus_to_string): Move to
3779 common/target-common.c.
3780 * target.h: Include target-common.h.
3781 (target_waitkind): Move to common/target-common.h.
3782 (target_waitstatus): Likewise.
3783 (TARGET_WNOHANG): Likewise.
3784 * common/target-common.c: New file.
3785 * common/target-common.h: New file.
3786
3787 2013-07-24 Doug Evans <dje@google.com>
3788
3789 * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
3790 a warning.
3791
3792 2013-07-23 Yao Qi <yao@codesourcery.com>
3793
3794 * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
3795 parameter 'gdbarch'.
3796 (i386_stack_tramp_frame_sniffer): Caller update.
3797 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
3798 parameter 'gdbarch' and 'target'.
3799 (i386_linux_core_read_description): Caller update.
3800 * amd64-linux-tdep.c (amd64_linux_core_read_description):
3801 Likewise.
3802 * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
3803 declaration.
3804
3805 2013-07-23 Tom Tromey <tromey@redhat.com>
3806
3807 * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
3808 2013-07-22.
3809
3810 2013-07-22 Doug Evans <dje@google.com>
3811
3812 * exec.h (remove_target_sections): Delete arg abfd.
3813 * exec.c (exec_close): Update call to remove_target_sections.
3814 (remove_target_sections): Delete arg abfd.
3815 * solib.c (update_solib_list): Ditto.
3816 (reload_shared_libraries_1): Ditto.
3817 (clear_solib): Ditto, and unconditionally call remove_target_sections.
3818 * target.h (struct target_section): Rename key to owner.
3819 All uses updated.
3820
3821 2013-07-22 Tom Tromey <tromey@redhat.com>
3822
3823 * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
3824
3825 2013-07-22 Tom Tromey <tromey@redhat.com>
3826
3827 * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
3828 Simplify cleanup handling.
3829
3830 2013-07-22 Tom Tromey <tromey@redhat.com>
3831
3832 * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
3833 on all return paths.
3834
3835 2013-07-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
3836
3837 * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
3838 (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
3839 DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
3840
3841 2013-07-22 Phil Muldoon <pmuldoon@redhat.com>
3842
3843 * top.c (print_gdb_version): Add help, apropos description and
3844 url to online documentation.
3845
3846 2013-07-19 Hui Zhu <hui@codesourcery.com>
3847
3848 PR gdb/15692
3849 * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
3850
3851 2013-07-19 Yao Qi <yao@codesourcery.com>
3852
3853 * target.c (update_current_target): Change the default action
3854 of 'to_traceframe_info' from tcomplain to return_zero.
3855 * target.h (struct target_ops) <to_traceframe_info>: Add more
3856 comments.
3857 * valops.c (read_value_memory): Call
3858 traceframe_available_memory unconditionally.
3859
3860 2013-07-18 Yao Qi <yao@codesourcery.com>
3861
3862 * coffread.c (coff_symfile_read): Iterate over minimal symbols,
3863 if the name is prefixed by "__imp_" or "_imp_", look for minimal
3864 symbol without prefix. If found, set its type to
3865 'mst_solib_trampoline'.
3866
3867 2013-07-17 Doug Evans <dje@google.com>
3868
3869 * NEWS: Mention "set print raw frame-arguments".
3870 * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
3871 * stack.c (print_raw_frame_arguments): New static global.
3872 (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
3873 (_initialize_stack): New command "set/show print raw frame-arguments".
3874 * valprint.c (setprintrawlist, showprintrawlist): New globals.
3875 (set_print_raw, show_print_raw): New functions.
3876 (_initialize_valprint): New prefix command "set/show print raw".
3877 * valprint.h (value_print_options): Improve comments.
3878
3879 * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
3880 of all *list variables.
3881
3882 * gdbcmd.h (togglelist): Delete.
3883 * cli/cli-cmds.c (togglelist): Delete.
3884 (init_cmd_lists): Update.
3885 * cli/cli-cmds.h (togglelist): Delete.
3886
3887 2013-07-17 Tom Tromey <tromey@redhat.com>
3888
3889 * dwarf2read.c (dwarf2_per_objfile_free): Clear
3890 dwarf2_per_objfile.
3891
3892 2013-07-16 Doug Evans <dje@google.com>
3893
3894 * nto-tdep.c (nto_relocate_section_addresses): Update,
3895 target_section.bfd deleted.
3896 * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
3897 * s390-tdep.c (s390_load): Ditto.
3898 * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
3899
3900 2013-07-16 Andrew Burgess <aburgess@broadcom.com>
3901
3902 * common/format.c (parse_format_string): Add checks for NULL
3903 character before calling strchr.
3904
3905 2013-07-16 Doug Evans <dje@google.com>
3906
3907 * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
3908 temp_pathname argument.
3909 * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
3910 when opening the file fails.
3911
3912 * target.h (struct target_section): Delete member bfd.
3913 All users updated to use the_bfd_section->owner instead.
3914 * exec.c (add_to_section_table): Assert bfd is expected value.
3915 Remove initialization of target_section.bfd.
3916 (remove_target_sections): Update.
3917 (section_table_available_memory): Update.
3918 (section_table_xfer_memory_partial): Update.
3919 (print_section_info): Update.
3920 (exec_set_section_address): Update.
3921 * record-full.c (record_full_core_xfer_partial): Update.
3922 * solib-svr4.c (svr4_relocate_section_addresses): Update.
3923 * solib-target.c (solib_target_relocate_section_addresses): Update.
3924 * symfile.c (build_section_addr_info_from_section_table): Update.
3925 * target.c (memory_xfer_live_readonly_partial): Update.
3926 (memory_xfer_partial_1): Update.
3927
3928 2013-07-15 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
3929
3930 * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
3931 now available for embedded (BookE) and server (BookS) processors,
3932 correct mentions of 'booke' and adjust comments accordingly in order to
3933 avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
3934 (have_ptrace_booke_interface): Rename function and variable
3935 'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
3936 Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
3937 (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
3938 'hwdebug_point_cmp'. Update all uses.
3939 (booke_find_thread_points_by_tid): Rename function
3940 'booke_find_thread_points_by_tid' to
3941 'hwdebug_find_thread_points_by_tid'. Update all uses.
3942 (booke_insert_point): Rename function 'booke_insert_point' to
3943 'hwdebug_insert_point'. Update all uses.
3944 (booke_remove_point): Rename function 'booke_remove_point' to
3945 'hwdebug_remove_point'. Update all uses.
3946
3947 2013-07-15 Maciej W. Rozycki <macro@codesourcery.com>
3948
3949 * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
3950 numbers with enum values.
3951
3952 2013-07-15 Ali Anwar <ali_anwar@codesourcery.com>
3953
3954 PR threads/13217
3955 * thread.c (thread_apply_all_command): Check for valid threads
3956 and thread count.
3957 (thread_array_cleanup): New struct.
3958 (set_thread_refcount): New function.
3959
3960 2013-07-11 Andrew Burgess <aburgess@broadcom.com>
3961
3962 * infcmd.c (default_print_one_register_info): Reuse function
3963 print_hex_chars.
3964
3965 2013-07-10 Tom Tromey <tromey@redhat.com>
3966
3967 * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
3968 (ada-exp.o): New target.
3969
3970 2013-07-10 Sergio Durigan Junior <sergiodj@redhat.com>
3971
3972 * mt-tdep.c (mt_registers_info): Call
3973 get_no_prettyformat_print_options instead of
3974 get_raw_print_options (regression by last patch from Doug
3975 Evans).
3976
3977 2013-07-09 Pedro Alves <palves@redhat.com>
3978
3979 Checked in by Joel Brobecker <brobecker@adacore.com>.
3980 * ada-lang.c (coerce_unspec_val_to_type): Use
3981 value_optimized_out_const.
3982 * value.c (value_optimized_out_const): New function.
3983 * value.h (value_optimized_out_const): New declaration.
3984
3985 2013-07-09 Doug Evans <dje@google.com>
3986
3987 * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
3988 Enum values rename as well. All uses updated.
3989 * valprint.h (value_print_options): Rename member pretty to
3990 pretty format. Rename member prettyprint_arrays to
3991 prettyformat_arrays. Rename member prettyprint_structs to
3992 prettyformat_structs. All uses updated.
3993 (get_no_prettyformat_print_options): Renamed from
3994 get_raw_print_options.
3995 * valprint.c (get_no_prettyformat_print_options): Renamed from
3996 get_raw_print_options. All callers updated.
3997 (show_prettyformat_structs): Renamed from show_prettyprint_structs.
3998 All callers updated.
3999 (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
4000 All callers updated.
4001 (_initialize_valprint): Improve help text for "set print pretty" and
4002 "set print arrays".
4003
4004 2013-07-09 Andrew Burgess <aburgess@broadcom.com>
4005
4006 * value.c (value_bits_valid): Revert previous change, and change
4007 by Pedro on 2013-07-04, due to regressions in
4008 gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
4009
4010 2013-07-08 Andrew Burgess <aburgess@broadcom.com>
4011 Pedro Alves <palves@redhat.com>
4012
4013 * value.c (value_bits_valid): If the value is not lval_computed
4014 or has no check validity handler then the answer is the
4015 optimized_out flag, otherwise defer to the handler.
4016
4017 2013-07-06 Eli Zaretskii <eliz@gnu.org>
4018
4019 * top.c (print_gdb_configuration): Explain in output of
4020 --configuration what does "relocatable" mean.
4021
4022 * main.c (print_gdb_help): Regroup options in the --help text.
4023 See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
4024 the relevant discussions.
4025
4026 2013-07-06 Yao Qi <yao@codesourcery.com>
4027
4028 * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
4029 Remove parameter 'lsal'.
4030 * breakpoint.c (create_breakpoint): Move local variable 'lsal'
4031 to inner block. Caller update.
4032 (base_breakpoint_create_breakpoints_sal): Update.
4033 (bkpt_create_breakpoints_sal): Likewise.
4034 (tracepoint_create_breakpoints_sal): Likewise.
4035 (strace_marker_create_breakpoints_sal): Get 'lsal' from the
4036 element 0 of vector 'canonical->sals'.
4037
4038 2013-07-05 Luis Machado <lgustavo@codesourcery.com>
4039
4040 * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
4041 register number instead of the pseudo register one.
4042 (rs6000_dwarf2_reg_to_regnum): Likewise.
4043
4044 2013-07-04 Pedro Alves <palves@redhat.com>
4045
4046 * findvar.c (value_of_register): Use allocate_optimized_out_value
4047 if the register has been optimized out, instead of
4048 set_value_optimized_out.
4049 * frame-unwind.c (frame_unwind_got_optimized): Use
4050 allocate_optimized_out_value.
4051
4052 2013-07-04 Pedro Alves <palves@redhat.com>
4053
4054 * value.c (value_bits_valid): If the value is not lval_computed,
4055 or doesn't have a check_validity hook, assume the value is entirely
4056 valid.
4057
4058 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
4059
4060 * stack.c (read_frame_arg): No longer fetch lazy values.
4061 * value.c (value_optimized_out): If the value is not already
4062 marked optimized out, and is lazy then fetch it.
4063 (value_primitive_field): Move optimized out check to later in the
4064 function, after we have loaded any lazy values.
4065 (value_fetch_lazy): Use optimized out flag directly rather than
4066 calling optimized_out method.
4067
4068 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
4069
4070 * valops.c: Don't include "user-regs.h".
4071 (value_fetch_lazy): Moved to value.c.
4072 * value.c: Include "user-regs.h".
4073 (value_fetch_lazy): Moved from valops.c.
4074
4075 2013-07-04 Yao Qi <yao@codesourcery.com>
4076
4077 Revert:
4078 2013-06-27 Yao Qi <yao@codesourcery.com>
4079
4080 * common/create-version.sh: Update comments. Handle the case
4081 that TARGET_ALIAS is empty.
4082
4083 2013-07-03 Pedro Alves <palves@redhat.com>
4084
4085 * Makefile.in (config.status): Depend on development.sh.
4086 (aclocal_m4_deps): Add libmcheck.m4.
4087 * acinclude.m4: Include libmcheck.m4.
4088 * configure.ac: Source development.sh instead of setting
4089 'development' here. --enable-libmcheck/--disable-libmcheck code
4090 factored out to GDB_AC_LIBMCHECK. Run it.
4091 * development.sh: New file.
4092 * libmcheck.m4: New file.
4093 * configure: Regenerate.
4094
4095 2013-07-02 Tom Tromey <tromey@redhat.com>
4096
4097 * contrib/ari/update-web-ari.sh: Update for version.in change.
4098
4099 2013-07-02 Tom Tromey <tromey@redhat.com>
4100
4101 * common/ptid.h: Comment fixes.
4102
4103 2013-07-01 Tom Tromey <tromey@redhat.com>
4104
4105 * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
4106 .gnu_debugaltlink not found. Use bfd_get_alt_debug_link_info.
4107 (dwarf2_read_index, create_all_comp_units): Update.
4108
4109 2013-07-01 Tom Tromey <tromey@redhat.com>
4110
4111 * configure.ac (build_warnings): Add -Wold-style-definition.
4112 * configure: Rebuild.
4113 * machoread.c (_initialize_machoread): Use "(void)".
4114 * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
4115 use "(void)".
4116
4117 2013-07-01 Tom Tromey <tromey@redhat.com>
4118
4119 * configure.ac (build_warnings): Add -Wold-style-declaration.
4120 * configure: Rebuild.
4121 * dsrec.c (make_srec): Use "static const", not "const static".
4122 * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
4123 not "const static".
4124 * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
4125 Use "static const", not "const static".
4126 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
4127 not "const static".
4128 * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
4129 not "const static".
4130 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
4131 not "const static".
4132 * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
4133 not "const static".
4134 (v850_dbtrap_breakpoint_from_pc): Likewise.
4135 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
4136 not "const static".
4137
4138 2013-07-01 Tom Tromey <tromey@redhat.com>
4139
4140 * configure.ac (build_warnings): Add -Wmissing-parameter-type.
4141 * configure: Rebuild.
4142
4143 2013-07-01 Pedro Alves <palves@redhat.com>
4144
4145 * defs.h: Include "pathmax.h".
4146 * utils.c: Don't include sys/param.h.
4147 (gdb_realpath): Remove code that checks for MAXPATHLEN.
4148 * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
4149 instead of MAXPATHLEN.
4150 * solib-sunos.c: Don't include sys/param.h.
4151 * xcoffread.c: Don't include sys/param.h.
4152 * bsd-kvm.c: Don't include sys/param.h.
4153 * darwin-nat.c: Don't include sys/param.h.
4154 (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
4155 * darwin-nat-info.c: Don't include sys/param.h.
4156 * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
4157 MAXPATHLEN.
4158 * i386obsd-nat.c: Don't include sys/param.h.
4159 * inf-child.c: Don't include sys/param.h.
4160 (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
4161 * linux-fork.c: Don't include sys/param.h.
4162 (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
4163 * linux-nat.c: Don't include sys/param.h.
4164 (linux_child_pid_to_exec_file, linux_proc_pending_signals)
4165 (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
4166 * m68klinux-nat.c: Don't include sys/param.h.
4167 * nbsd-nat.c: Don't include sys/param.h.
4168 (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
4169 * ppc-linux-nat.c: Don't include sys/param.h.
4170 * rs6000-nat.c: Don't include sys/param.h.
4171 * spu-linux-nat.c. Don't include sys/param.h.
4172 * windows-nat.c: Don't include sys/param.h.
4173 * xtensa-linux-nat.c: Don't include sys/param.h.
4174 * config/i386/nm-fbsd.h: Don't include sys/param.h.
4175
4176 2013-07-01 Pedro Alves <palves@redhat.com>
4177
4178 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
4179 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
4180 * gnulib/aclocal.m4: Regenerate.
4181 * gnulib/config.in: Regenerate.
4182 * gnulib/configure: Regenerate.
4183 * gnulib/import/pathmax.h: New file.
4184 * gnulib/import/Makefile.am: Regenerate.
4185 * gnulib/import/Makefile.in: Regenerate.
4186 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
4187 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
4188 * gnulib/import/m4/pathmax.m4: New file.
4189
4190 2013-07-01 Pedro Alves <palves@redhat.com>
4191
4192 * configure.ac (GDBINIT): Define, depending on host.
4193 * go32-nat.c (init_go32_ops): Don't override gdbinit here.
4194 * top.c (PATH_MAX): Delete fallback definition.
4195 (GDBINIT_FILENAME): Delete.
4196 (gdbinit): Reimplement as const char array set to the GDBINIT
4197 string constant.
4198 * top.h (gdbinit): Make const.
4199 * configure, config.in: Regenerate.
4200
4201 2013-07-01 Pedro Alves <palves@redhat.com>
4202
4203 * cli/cli-cmds.c (source_script): Make 'file' parameter const.
4204 * cli/cli-cmds.h (source_script): Likewise.
4205 * exceptions.c (catch_command_errors_const): New function.
4206 * exceptions.h (catch_command_errors_const): Declare.
4207 * main.c (get_init_files): Make parameters const, and adjust.
4208 (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
4209 'local_gdbinit' locals const. Adjust to use
4210 catch_command_errors_const.
4211 (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
4212 'local_gdbinit' locals const.
4213
4214 2013-07-01 Pedro Alves <palves@redhat.com>
4215
4216 * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
4217 (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
4218 * tracepoint.c: Don't check HAVE_UNISTD_H before including
4219 <unistd.h>.
4220
4221 2013-07-01 Pedro Alves <palves@redhat.com>
4222
4223 Import the "unistd" gnulib module.
4224 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
4225 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
4226 import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
4227 import/m4/unistd_h.m4.
4228 * gnulib/aclocal.m4: Renenerate.
4229 * gnulib/config.in: Renenerate.
4230 * gnulib/configure: Renenerate.
4231 * gnulib/import/Makefile.am: Renenerate.
4232 * gnulib/import/Makefile.in: Renenerate.
4233 * gnulib/import/m4/gnulib-cache.m4: Renenerate.
4234 * gnulib/import/m4/gnulib-comp.m4: Renenerate.
4235 * gnulib/import/m4/off_t.m4: New file.
4236 * gnulib/import/m4/ssize_t.m4: New file.
4237 * gnulib/import/m4/sys_types_h.m4: New file.
4238 * gnulib/import/m4/unistd_h.m4: New file.
4239 * gnulib/import/sys_types.in.h: New file.
4240 * gnulib/import/unistd.c: New file.
4241 * gnulib/import/unistd.in.h: New file.
4242
4243 2013-07-01 Pedro Alves <palves@redhat.com>
4244
4245 * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
4246 defined instead of checking HAVE_UNISTD_H.
4247
4248 2013-07-01 Pedro Alves <palves@redhat.com>
4249
4250 Reimport gnulib from scratch.
4251 * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
4252 import/m4/onceonly.m4.
4253 * gnulib/aclocal.m4: Renegerate.
4254 * gnulib/config.in: Renegerate.
4255 * gnulib/configure: Renegerate.
4256 * gnulib/import/Makefile.in: Renegerate.
4257 * gnulib/import/extra/update-copyright: Renegerate.
4258 * gnulib/import/m4/onceonly.m4: Delete.
4259
4260 2013-07-01 Pedro Alves <palves@redhat.com>
4261
4262 * tui/tui-regs.c (pagination_enabled): Delete declaration.
4263
4264 2013-06-30 Jan Kratochvil <jan.kratochvil@redhat.com>
4265
4266 Code cleanup.
4267 * remote.c (async_remote_interrupt_twice): Make it static.
4268 * remote.h (async_remote_interrupt_twice): Remove the declaration.
4269
4270 2013-06-29 Sergio Durigan Junior <sergiodj@redhat.com>
4271
4272 * ia64-linux-tdep.c: Include <ctype.h>.
4273 (ia64_linux_stap_is_single_operand): New function.
4274 (ia64_linux_init_abi): Initialize SystemTap related attributes.
4275
4276 2013-06-28 Tom Tromey <tromey@redhat.com>
4277
4278 * Makefile.in (version.c): Use version.in, not
4279 common/version.in.
4280 * common/create-version.sh: Likewise.
4281 * common/version.in: Move...
4282 * version.in: ...here.
4283
4284 2013-06-28 Pedro Alves <palves@redhat.com>
4285
4286 * infrun.c (set_observer_mode): Don't declare pagination_enabled
4287 here.
4288 * utils.h (pagination_enabled): Declare.
4289
4290 2013-06-28 Pedro Alves <palves@redhat.com>
4291
4292 * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
4293 Move higher up in file.
4294
4295 2013-06-28 Tom Tromey <tromey@redhat.com>
4296
4297 * tracepoint.c (deprecated_readline_begin_hook)
4298 (deprecated_readline_hook, deprecated_readline_end_hook): Don't
4299 declare.
4300
4301 2013-06-28 Pedro Alves <palves@redhat.com>
4302
4303 PR tui/14880
4304 * tui/tui-regs.c (tui_get_register): Fetch value contents before
4305 checking if they're available.
4306 * value.c (value_available_contents_eq): Change comment.
4307 * value.h (value_available_contents_eq): Expand comment.
4308
4309 2013-06-27 Tom Tromey <tromey@redhat.com>
4310
4311 * target.c (find_run_target): Remove.
4312 * target.h (find_run_target): Remove.
4313
4314 2013-06-27 Tom Tromey <tromey@redhat.com>
4315
4316 * corelow.c (core_gdbarch): Now static.
4317
4318 2013-06-27 Tom Tromey <tromey@redhat.com>
4319
4320 * target.c (target_struct_index): Remove.
4321
4322 2013-06-27 Pedro Alves <palves@redhat.com>
4323
4324 * infrun.c: Remove comment describing the 'stepping over runtime
4325 loader dynamic symbol resolution code' mechanism; moved to
4326 gdbint.texinfo.
4327
4328 2013-06-27 Pedro Alves <palves@redhat.com>
4329
4330 * exceptions.c (catch_command_errors): Remove spurious space.
4331 * exceptions.h (catch_command_errors): Second parameter is "arg",
4332 not "command".
4333
4334 2013-06-27 Yao Qi <yao@codesourcery.com>
4335
4336 * common/create-version.sh: Update comments. Handle the case
4337 that TARGET_ALIAS is empty.
4338
4339 2013-06-26 Pedro Alves <palves@redhat.com>
4340
4341 * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
4342 comment.
4343
4344 2013-06-26 Pedro Alves <palves@redhat.com>
4345
4346 * infrun.c: Update comments on stepping over runtime loader
4347 dynamic symbol resolution code.
4348
4349 2013-06-26 Sergio Durigan Junior <sergiodj@redhat.com>
4350
4351 * ax-gdb.h (union exp_element): Forward declare.
4352 * parser-defs.h: Include expression.h.
4353
4354 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
4355
4356 * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
4357
4358 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
4359
4360 * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
4361
4362 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
4363
4364 Fix trace-status to output proper start-time and stop-time.
4365 * tracepoint.c (trace_status_command): Fix type of printf arg to
4366 prevent improper type conversion.
4367 (trace_status_mi): Likewise.
4368
4369 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
4370
4371 * mips-tdep.c (mips_next_pc): Fix a typo.
4372
4373 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
4374
4375 * mips-tdep.c (micromips_scan_prologue): Fix a typo.
4376
4377 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4378 Yao Qi <yao@codesourcery.com>
4379
4380 * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
4381 * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
4382 * mi/mi-main.c (print_variable_or_computed): New function.
4383 (mi_cmd_trace_frame_collected): New function.
4384 * tracepoint.c (find_trace_state_variable_by_number): New.
4385 (struct traceframe_info): Move to tracepoint.h
4386 (struct collection_list): Likewise.
4387 (do_collect_symbol): Include locals and arguments in the
4388 collected variables list.
4389 (clear_collection_list): Clear wholly collected variables list
4390 and computed variables list.
4391 (append_exp): New function.
4392 (encode_actions_1): Include variables in the wholly
4393 collected variables list. Include memory ranges and
4394 full-fledged expressions in the computed expressions list.
4395 (encode_actions): Move some code to ...
4396 Return the cleanup chain.
4397 (encode_actions_rsp): ... here. New function.
4398 (get_traceframe_location, get_traceframe_info): Remove static.
4399 * tracepoint.h (struct memrange): Moved from tracepoint.c.
4400 (struct collection_list): Moved from tracepoint.c. Add two
4401 new fields 'wholly_collected' and 'computed'.
4402 (find_trace_state_variable_by_number): Declare.
4403 (encode_actions): Adjust declaration.
4404 (encode_actions_rsp): Declare.
4405 (get_traceframe_info, get_traceframe_location): Declare.
4406
4407 * NEWS: Mention new MI command -trace-frame-collected.
4408
4409 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4410 Yao Qi <yao@codesourcery.com>
4411
4412 * ctf.c (ctf_traceframe_info): Push trace state variables
4413 present in the trace data into the traceframe info object.
4414 * breakpoint.c (DEF_VEC_I): Remove.
4415 * common/filestuff.c (DEF_VEC_I): Likewise.
4416 * dwarf2loc.c (DEF_VEC_I): Likewise.
4417 * mi/mi-main.c (DEF_VEC_I): Likewise.
4418 * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
4419 * features/traceframe-info.dtd: Add tvar element and its
4420 attributes.
4421 * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
4422 (build_traceframe_info): Push trace state variables present in
4423 the trace data into the traceframe info object.
4424 (traceframe_info_start_tvar): New function.
4425 (tvar_attributes): New.
4426 (traceframe_info_children): Add "tvar" element.
4427 * tracepoint.h (struct traceframe_info) <tvars>: New field.
4428
4429 * NEWS: Mention the change in GDB and GDBserver.
4430
4431 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4432 Yao Qi <yao@codesourcery.com>
4433
4434 * tracepoint.c (trace_dump_command): Move code to ...
4435 (get_traceframe_location): ... here. New.
4436
4437 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4438 Yao Qi <yao@codesourcery.com>
4439
4440 * tracepoint.c (trace_dump_command): GDB emits an error
4441 instead of a warning when a traceframe is not selected.
4442
4443 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4444 Yao Qi <yao@codesourcery.com>
4445
4446 * tracepoint.c (tracepoint_list, stepping_list): Remove.
4447 (clear_collection_list): Free fields 'aexpre_list' and 'list'
4448 in collection_list.
4449 (do_clear_collection_list, init_collection_list): New.
4450 (encode_actions): Add local variables 'tracepoint_list' and
4451 'stepping_list'. Call init_collection_list and make cleanup
4452 which calls do_clear_collection_list. Don't call
4453 clear_collection_list.
4454 (_initialize_tracepoint): Delete references to
4455 'tracepoint_list' and 'stepping_list'.
4456
4457 2013-06-25 Tom Tromey <tromey@redhat.com>
4458
4459 * common/create-version.sh (date): Use "$", not "$$" in sed
4460 expression.
4461
4462 2013-06-25 Kevin Buettner <kevinb@redhat.com>
4463
4464 * NEWS (New targets): Add entry for TI MSP430.
4465
4466 2013-06-25 Yao Qi <yao@codesourcery.com>
4467
4468 * remote.c (remote_start_remote): Move code to upload tsv
4469 earlier.
4470
4471 2013-06-25 Yao Qi <yao@codesourcery.com>
4472 Hui Zhu <hui@codesourcery.com>
4473 Pedro Alves <palves@redhat.com>
4474
4475 PR breakpoints/15075
4476 PR breakpoints/15434
4477 * breakpoint.c (bpstat_stop_status): Call
4478 b->ops->after_condition_true.
4479 (update_dprintf_command_list): Don't append "continue" command
4480 to the command list of dprintf breakpoint.
4481 (base_breakpoint_after_condition_true): New function.
4482 (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
4483 (dprintf_after_condition_true): New function.
4484 (initialize_breakpoint_ops): Set dprintf_after_condition_true.
4485 * breakpoint.h (breakpoint_ops): Add after_condition_true.
4486
4487 2013-06-24 Kevin Buettner <kevinb@redhat.com>
4488
4489 * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
4490 (ALLDEPFILES): Add msp430-tdep.c.
4491 * configure.tgt (msp430*-*-elf): New target.
4492 * msp430-tdep.c: New file.
4493
4494 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
4495
4496 * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
4497 microMIPS synthetic symbols.
4498
4499 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
4500
4501 * objfiles.h (pc_in_section): New prototype.
4502 (in_plt_section): Remove name argument, replace prototype with
4503 static inline function.
4504 * mips-tdep.h: Include "objfiles.h".
4505 (in_mips_stubs_section): New function.
4506 * hppa-tdep.h (gdbarch_tdep): Remove name argument of
4507 in_solib_call_trampoline member.
4508 (hppa_in_solib_call_trampoline): Remove name argument.
4509 * objfiles.c (pc_in_section): New function.
4510 (in_plt_section): Remove function.
4511 * mips-linux-tdep.c: Include "objfiles.h".
4512 (mips_linux_in_dynsym_stub): Call in_mips_stubs_section. Remove
4513 name argument. Return 1 rather than the low 16-bit halfword of
4514 any instruction examined.
4515 (mips_linux_in_dynsym_resolve_code): Update
4516 mips_linux_in_dynsym_stub call accordingly.
4517 * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
4518 rather than an equivalent hand-coded sequence.
4519 * hppa-hpux-tdep.c (in_opd_section): Remove function.
4520 (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
4521 (hppa64_hpux_in_solib_call_trampoline): Likewise.
4522 (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
4523 in_opd_section.
4524 * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
4525 on call to tdep->in_solib_call_trampoline.
4526 (hppa_in_solib_call_trampoline): Remove name argument, update
4527 according to in_plt_section change.
4528 (hppa_skip_trampoline_code): Update according to in_plt_section
4529 change.
4530 * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
4531 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
4532 Likewise.
4533 * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
4534 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
4535 * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
4536 * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
4537 * nto-tdep.c (nto_relocate_section_addresses): Likewise.
4538 * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
4539 * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
4540 * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
4541 * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
4542 * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
4543 * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
4544 * sparc-tdep.c (sparc_analyze_prologue): Likewise.
4545 * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
4546
4547 2013-06-24 Joel Brobecker <brobecker@adacore.com>
4548
4549 * common/create-version.sh: Fix expansion of $host_alias
4550 and $target_alias in generation of HOST_NAME and TARGET_NAME
4551 (resp.).
4552
4553 2013-06-24 Tom Tromey <tromey@redhat.com>
4554
4555 * common/create-version.sh: New file.
4556 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
4557 create-version.sh.
4558 (HFILES_NO_SRCDIR): Use common/version.h.
4559 * version.in: Move to ...
4560 * common/version.in: ... here. Replace date with "DATE".
4561 * version.h: Move to ...
4562 * common/version.h: ... here.
4563
4564 2013-06-21 Joel Brobecker <brobecker@adacore.com>
4565
4566 * gdb/gnulib/Makefile.in: Update date in copyright header.
4567 * gdb/gnulib/configure.ac: Ditto.
4568 * gdb/gnulib/update-gnulib.sh: Ditto.
4569
4570 2013-06-21 Joel Brobecker <brobecker@adacore.com>
4571
4572 * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
4573 "gdb/gnulib/import".
4574
4575 2013-06-21 Will Newton <will.newton@linaro.org>
4576
4577 * doublest.c (ldfrexp): Remove function.
4578 (convert_doublest_to_floatformat): Call frexpl instead of
4579 ldfrexp.
4580
4581 2013-06-21 Will Newton <will.newton@linaro.org>
4582
4583 * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
4584 * gnulib/aclocal.m4: Regenerate.
4585 * gnulib/config.in: Regenerate.
4586 * gnulib/configure: Regenerate.
4587 * gnulib/import/Makefile.am: Update.
4588 * gnulib/import/Makefile.in: Update.
4589 * gnulib/import/m4/gnulib-cache.m4: Update.
4590 * gnulib/import/m4/gnulib-comp.m4: Update.
4591 * gnulib/import/float+.h: Import.
4592 * gnulib/import/float.c: Import.
4593 * gnulib/import/float.in.h: Import.
4594 * gnulib/import/fpucw.h: Import.
4595 * gnulib/import/frexp.c: Import.
4596 * gnulib/import/frexpl.c: Import.
4597 * gnulib/import/isnan.c: Import.
4598 * gnulib/import/isnand-nolibm.h: Import.
4599 * gnulib/import/isnand.c: Import.
4600 * gnulib/import/isnanl-nolibm.h: Import.
4601 * gnulib/import/isnanl.c: Import.
4602 * gnulib/import/itold.c: Import.
4603 * gnulib/import/m4/exponentd.m4: Import.
4604 * gnulib/import/m4/exponentl.m4: Import.
4605 * gnulib/import/m4/float_h.m4: Import.
4606 * gnulib/import/m4/fpieee.m4: Import.
4607 * gnulib/import/m4/frexp.m4: Import.
4608 * gnulib/import/m4/frexpl.m4: Import.
4609 * gnulib/import/m4/isnand.m4: Import.
4610 * gnulib/import/m4/isnanl.m4: Import.
4611 * gnulib/import/m4/math_h.m4: Import.
4612 * gnulib/import/math.c: Import.
4613 * gnulib/import/math.in.h: Import.
4614
4615 2013-06-21 Jan Kratochvil <jan.kratochvil@redhat.com>
4616
4617 * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
4618 replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
4619 signature_INTEL_edx comparisons.
4620
4621 2013-06-20 Doug Evans <dje@google.com>
4622
4623 symtab/15652
4624 * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
4625 All callers updated.
4626 (open_dwp_file): If we can't find the dwp file, search the basename
4627 in debug-file-directory.
4628
4629 * dwarf2read.c (struct dwp_file): Fix comment.
4630 (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
4631
4632 * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
4633 better.
4634
4635 2013-06-20 Yao Qi <yao@codesourcery.com>
4636
4637 * breakpoint.c (create_breakpoint): Fix code indentation.
4638
4639 2013-06-20 Yao Qi <yao@codesourcery.com>
4640
4641 * breakpoint.c (create_breakpoints_sal_default): Remove
4642 parameter 'lsal'. Update declaration.
4643 (bkpt_create_breakpoints_sal): Caller update.
4644 (tracepoint_create_breakpoints_sal): Likewise.
4645
4646 2013-06-20 Pedro Alves <pedro@codesourcery.com>
4647 Yao Qi <yao@codesourcery.com>
4648
4649 * NEWS: Mention the new option '--skip-unavailable' of command
4650 -data-list-register-values.
4651 * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
4652 --skip-unavailable option. Adjust to use output_register.
4653 (output_register): Add new 'skip_unavailable' parameter.
4654 Handle it.
4655
4656 2013-06-19 Mike Frysinger <vapier@gentoo.org>
4657
4658 * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
4659 common/i386-gcc-cpuid.h.
4660 * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
4661 * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
4662 Copy the latest version from upstream gcc.
4663 * common/linux-btrace.c: Include i386-cpuid.h.
4664 (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
4665 call to i386_cpuid.
4666 (cpu_supports_btrace): Likewise.
4667 * go32-nat.c: Include i386-cpuid.h.
4668 (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
4669
4670 2013-06-19 Doug Evans <dje@google.com>
4671
4672 * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
4673 (get_section_index): Ditto.
4674
4675 2013-06-19 Tom Tromey <tromey@redhat.com>
4676
4677 * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
4678 "dprintf" help.
4679
4680 2013-06-18 Doug Evans <dje@google.com>
4681
4682 * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
4683 before using it.
4684 (dw2_expand_symtabs_matching): Fix symbol kind validity check.
4685 Move test of cu_index closer to use. Print complaint if cu_index
4686 is bad.
4687
4688 2013-06-18 Joel Brobecker <brobecker@adacore.com>
4689
4690 * machoread.c (oso_vector): Delete this global.
4691 (macho_register_oso): Add new parameter "oso_vector_ptr".
4692 Use it instead of the "oso_vector" global.
4693 (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
4694 (macho_symfile_read): Use a local oso_vector, to be free'ed
4695 at the end of this function, in place of the old "oso_vector"
4696 global. Update various function calls accordingly. Use one
4697 single cleanup chain for the entire function.
4698
4699 2013-06-18 Joel Brobecker <brobecker@adacore.com>
4700
4701 * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
4702 DWARF2_PER_OBJFILE by uses of DATA instead.
4703
4704 2013-06-18 Tom Tromey <tromey@redhat.com>
4705
4706 * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
4707 argument.
4708 * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
4709 Special case signals other than GDB_SIGNAL_TRAP.
4710 (explains_signal_watchpoint): New function.
4711 (base_breakpoint_explains_signal): Add 'sig' argument.
4712 (initialize_breakpoint_ops): Set 'explains_signal' method for
4713 watchpoints.
4714 * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
4715 signal argument.
4716 (bpstat_explains_signal): Likewise.
4717 * infrun.c (handle_syscall_event, handle_inferior_event): Update.
4718
4719 2013-06-18 Tom Tromey <tromey@redhat.com>
4720
4721 * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
4722
4723 2013-06-18 Tom Tromey <tromey@redhat.com>
4724
4725 * python/python.c (finish_python_initialization): Decref
4726 'pythondir' on failure path as well.
4727
4728 2013-06-18 Tom Tromey <tromey@redhat.com>
4729
4730 PR symtab/15391:
4731 * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
4732 after taking bits_to_skip into account. Sign extend byte_offset.
4733 * utils.h (gdb_sign_extend): Declare.
4734 * utils.c (gdb_sign_extend): New function.
4735
4736 2013-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4737
4738 * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
4739
4740 2013-06-17 Pierre Muller <muller@sourceware.org>
4741
4742 * corelow.c (core_open): Print GDB signal name instead of target
4743 signal number.
4744
4745 2013-06-17 Mike Frysinger <vapier@gentoo.org>
4746
4747 * .gitignore: Add /gcore.
4748
4749 2013-06-13 Doug Evans <dje@google.com>
4750
4751 * dwarf2read.c (try_open_dwop_file): Work around behaviour of
4752 OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
4753
4754 2013-06-12 Phil Muldoon <pmuldoon@redhat.com>
4755
4756 * stack.c (backtrace_command_1): Fix indentation.
4757
4758 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4759
4760 * window-nat.c (thread_rec): Add missing empty line after
4761 local variable declaration.
4762
4763 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4764
4765 * windows-nat.c (thread_rec): Revert format used to print
4766 error code returned by SuspendThread from %d back to %u.
4767
4768 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4769
4770 * windows-nat.c (windows_continue): Add "0x" prefix for thread
4771 ID in debug trace.
4772 (get_windows_debug_event): Likewise, for all debug traces.
4773
4774 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4775
4776 * window-nat.c (thread_rec): Add thread ID in SuspendThread
4777 warning message.
4778
4779 2013-06-08 Pedro Alves <pedro@codesourcery.com>
4780 Yao Qi <yao@codesourcery.com>
4781
4782 * mi/mi-main.c (get_register): Remove declaration.
4783 (output_register): Declare.
4784 (mi_cmd_data_list_register_values): Remove local variable
4785 'tuple_cleanup'. Move some code into output_register.
4786 (get_register): Renamed to ...
4787 (output_register): ... this. Output the register's
4788 "number" ui_out tuple here.
4789
4790 2013-06-07 Pedro Alves <palves@redhat.com>
4791
4792 * darwin-nat.c: Fix formating in copyright header.
4793 * darwin-nat.h: Likewise.
4794 * gnu-nat.c: Likewise.
4795 * machoread.c: Likewise.
4796
4797 2013-06-07 Pedro Alves <palves@redhat.com>
4798
4799 PR server/14823
4800 * regformats/regdat.sh: Output #include tdesc.h. Make globals
4801 static. Output a global target description pointer.
4802 (init_registers_${name}): Adjust to initialize a
4803 target description structure.
4804
4805 2013-06-07 Will Newton <will.newton@linaro.org>
4806
4807 * printcmd.c (build_address_symbolic): Call
4808 gdbarch_addr_bits_remove for text minimal symbols.
4809
4810 2013-06-07 Will Newton <will.newton@linaro.org>
4811
4812 * MAINTAINERS: Add myself to Write After Approval.
4813
4814 2013-06-07 Yao Qi <yao@codesourcery.com>
4815
4816 * tracepoint.c (start_tracing): Move code to ...
4817 (trace_reset_local_state): ... here. New.
4818 (disconnect_tracing): Don't call set_current_traceframe,
4819 set_tracepoint_num, and set_traceframe_context. Call
4820 trace_reset_local_state instead.
4821 (tfile_close): Call trace_reset_local_state.
4822 * ctf.c (ctf_close): Likewise.
4823 * remote.c (remote_close): Likewise.
4824 * tracepoint.h (trace_reset_local_state): Declare.
4825
4826 2013-06-06 Doug Evans <dje@google.com>
4827
4828 * dwarf2read.c: Whitespace fixes for DWP file format documentation,
4829 and fix header docs.
4830
4831 2013-06-05 Doug Evans <dje@google.com>
4832 Keith Seitz <keiths@redhat.com>
4833
4834 PR 15519
4835 * cp-namespace.c (find_symbol_in_baseclass): Call
4836 cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
4837 Check result of call to lookup_symbol_static.
4838 Call lookup_static_symbol_aux unconditionally.
4839 Call check_typedef on base types before accessing them.
4840 (cp_lookup_nested_symbol): Fix comment.
4841
4842 2013-06-05 Luis Machado <lgustavo@codesourcery.com>
4843
4844 * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
4845 minimal symbols pointing to function descriptors.
4846
4847 2013-06-05 Tom Tromey <tromey@redhat.com>
4848
4849 * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
4850
4851 2013-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
4852 Pedro Alves <palves@redhat.com>
4853
4854 * remote.c (remote_wait_as): Restore signal handler before returning
4855 when GDB gets a notification.
4856
4857 2013-06-04 Gary Benson <gbenson@redhat.com>
4858
4859 PR 2328
4860 * breakpoint.h (handle_solib_event): Moved function declaration
4861 to solib.h.
4862 * breakpoint.c (handle_solib_event): Moved function to solib.c.
4863 (bpstat_stop_status): Pass new argument to handle_solib_event.
4864 * solib.h (update_solib_breakpoints): New function declaration.
4865 (handle_solib_event): Moved function declaration from
4866 breakpoint.h.
4867 * solib.c (update_solib_breakpoints): New function.
4868 (handle_solib_event): Moved function from breakpoint.c.
4869 Updated to call solib_ops->handle_event if not NULL.
4870 * solist.h (target_so_ops): New fields "update_breakpoints" and
4871 "handle_event".
4872 * infrun.c (set_stop_on_solib_events): New function.
4873 (_initialize_infrun): Use the above for "set
4874 stop-on-solib-events".
4875 (handle_inferior_event): Pass new argument to handle_solib_event.
4876 * solib-svr4.c (probe.h): New include.
4877 (svr4_free_library_list): New forward declaration.
4878 (probe_action): New enum.
4879 (probe_info): New struct.
4880 (probe_info): New static variable.
4881 (NUM_PROBES): New definition.
4882 (svr4_info): New fields "using_xfer", "probes_table" and
4883 "solib_list".
4884 (free_probes_table): New function.
4885 (free_solib_list): New function.
4886 (svr4_pspace_data_cleanup): Free probes table and solib list.
4887 (svr4_copy_library_list): New function.
4888 (svr4_current_sos_via_xfer_libraries): New parameter "annex".
4889 (svr4_read_so_list): New parameter "prev_lm".
4890 (svr4_current_sos_direct): Renamed from "svr4_current_sos".
4891 (svr4_current_sos): New function.
4892 (probe_and_action): New struct.
4893 (hash_probe_and_action): New function.
4894 (equal_probe_and_action): Likewise.
4895 (register_solib_event_probe): Likewise.
4896 (solib_event_probe_at): Likewise.
4897 (solib_event_probe_action): Likewise.
4898 (solist_update_full): Likewise.
4899 (solist_update_incremental): Likewise.
4900 (disable_probes_interface_cleanup): Likewise.
4901 (svr4_handle_solib_event): Likewise.
4902 (svr4_update_solib_event_breakpoint): Likewise.
4903 (svr4_update_solib_event_breakpoints): Likewise.
4904 (svr4_create_solib_event_breakpoints): Likewise.
4905 (enable_break): Free probes table before creating breakpoints.
4906 Use svr4_create_solib_event_breakpoints to create breakpoints.
4907 (svr4_solib_create_inferior_hook): Free the solib list.
4908 (_initialize_svr4_solib): Initialise
4909 svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
4910
4911 2013-06-04 Gary Benson <gbenson@redhat.com>
4912
4913 * target.h (target_ops): New field
4914 "to_augmented_libraries_svr4_read".
4915 (target_augmented_libraries_svr4_read): New macro.
4916 * target.c (update_current_target): Handle
4917 to_augmented_libraries_svr4_read.
4918 * remote.c (remote_state): New field
4919 "augmented_libraries_svr4_read".
4920 (remote_augmented_libraries_svr4_read_feature): New function.
4921 (remote_protocol_features): Add entry for
4922 "augmented-libraries-svr4-read".
4923 (remote_augmented_libraries_svr4_read): New function.
4924 (init_remote_ops): Initialize
4925 remote_ops.to_augmented_libraries_svr4_read.
4926
4927 2013-06-04 Gary Benson <gbenson@redhat.com>
4928
4929 * NEWS: Update.
4930
4931 2013-06-04 Gary Benson <gbenson@redhat.com>
4932
4933 * objfiles.h (inhibit_section_map_updates): New function
4934 declaration.
4935 (resume_section_map_updates): Likewise.
4936 (resume_section_map_updates_cleanup): Likewise.
4937 * objfiles.c (objfile_pspace_info): Removed field
4938 "objfiles_changed_p". New fields "new_objfiles_available",
4939 "section_map_dirty" and "inhibit_updates".
4940 (allocate_objfile): Set new_objfiles_available.
4941 (free_objfile): Set section_map_dirty.
4942 (objfile_relocate1): Likewise.
4943 (in_plt_section): Likewise.
4944 (find_pc_section): Update the conditions under which the
4945 section map will be updated.
4946 (inhibit_section_map_updates): New function.
4947 (resume_section_map_updates): Likewise.
4948 (resume_section_map_updates_cleanup): Likewise.
4949
4950 2013-06-04 Gary Benson <gbenson@redhat.com>
4951
4952 * probe.h (get_probe_argument_count): New declaration.
4953 (evaluate_probe_argument): Likewise.
4954 * probe.c (get_probe_argument_count): New function.
4955 (evaluate_probe_argument): Likewise.
4956 (probe_safe_evaluate_at_pc): Use the above new functions.
4957
4958 2013-06-04 Alan Modra <amodra@gmail.com>
4959
4960 * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
4961 * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
4962 (ppc_insns_match_pattern): Add frame param. Avoid multiple
4963 target mem reads on optional insns.
4964 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
4965 ppc_insns_match_pattern calls.
4966 * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
4967 Add match for power7 thread safety insns, and new order of
4968 std 2,40(1) insn. Correct code shown for _dl_runtime_resolve
4969 invocation in comment, and update rest of comment.
4970 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
4971 PPC64_STANDARD_LINKAGE3_LEN): Delete.
4972 (ppc64_standard_linkage2_target): Update insn offsets.
4973 (ppc64_skip_trampoline_code): Use a single insn buffer. Match newer
4974 stubs first. Update calls.
4975
4976 2013-06-04 Yao Qi <yao@codesourcery.com>
4977
4978 * solib.c (solib_find): Don't need dir separator if path has
4979 drive spec.
4980
4981 2013-06-03 Joel Brobecker <brobecker@adacore.com>
4982
4983 Revert (indirectly causes a SIGSEGV):
4984 * machoread.c (macho_symfile_read): Assign first cleanup to
4985 'back_to'.
4986
4987 2013-06-03 Yao Qi <yao@codesourcery.com>
4988
4989 * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
4990 mi-parse.c. Make them static.
4991 (mi_all_values): Likewise.
4992 (mi_parse_values_option): Move to mi-parse.c. Rename it to
4993 mi_parse_print_values. Make it external.
4994 * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
4995 Remove the declarations.
4996 * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
4997 * mi/mi-parse.h (mi_parse_print_values): Declare.
4998 * mi/mi-cmd-stack.c: Include mi-parse.h.
4999 (parse_print_values): Remove
5000 (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
5001 of parse_print_values.
5002 (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
5003
5004 2013-05-31 Pedro Alves <pedro@codesourcery.com>
5005 Yao Qi <yao@codesourcery.com>
5006
5007 * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
5008 (encode_actions): Move code to ...
5009 (all_tracepoint_actions_and_cleanup): ... here. New.
5010 (trace_dump_command): Likewise.
5011
5012 2013-05-30 Tom Tromey <tromey@redhat.com>
5013
5014 * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
5015
5016 2013-05-30 Tom Tromey <tromey@redhat.com>
5017
5018 * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
5019 gdb_xml_create_parser_and_cleanup_1. Return a cleanup. Remove
5020 'old_chain' argument. Add 'parser_result' argument.
5021 (gdb_xml_create_parser_and_cleanup): Remove old version.
5022 (gdb_xml_parse_quick): Update.
5023 (xml_process_xincludes): Update.
5024 * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
5025 declare.
5026
5027 2013-05-30 Tom Tromey <tromey@redhat.com>
5028
5029 * probe.c (collect_probes): Check arguments for NULL before
5030 calling compile_rx_or_error.
5031 * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
5032 Remove NULL return.
5033
5034 2013-05-30 Tom Tromey <tromey@redhat.com>
5035
5036 * infrun.c (adjust_pc_after_break): Introduce an outer null
5037 cleanup.
5038
5039 2013-05-30 Tom Tromey <tromey@redhat.com>
5040
5041 * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
5042
5043 2013-05-30 Tom Tromey <tromey@redhat.com>
5044
5045 * cli/cli-script.c (read_command_lines_1): Use a null cleanup
5046 for 'old_chain'. Do not check 'head' before processing
5047 cleanups.
5048
5049 2013-05-30 Tom Tromey <tromey@redhat.com>
5050
5051 * mi/mi-cmd-stack.c (list_arg_or_local): Remove
5052 "cleanup_tuple".
5053
5054 2013-05-30 Tom Tromey <tromey@redhat.com>
5055
5056 * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
5057 inner scope. Unconditionally call do_cleanups.
5058
5059 2013-05-30 Tom Tromey <tromey@redhat.com>
5060
5061 * source.c (find_and_open_source): Call do_cleanups.
5062
5063 2013-05-30 Tom Tromey <tromey@redhat.com>
5064
5065 * linux-thread-db.c (thread_db_load_search): Unconditionally
5066 call do_cleanups.
5067
5068 2013-05-30 Tom Tromey <tromey@redhat.com>
5069
5070 * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
5071 for 'cleanup'; instead use a later one.
5072
5073 2013-05-30 Tom Tromey <tromey@redhat.com>
5074
5075 * python/py-breakpoint.c (bppy_get_commands): Use
5076 explicit, unconditional return.
5077 * python/py-frame.c (frapy_read_var): Likewise.
5078 * python/python.c (gdbpy_decode_line): Likewise.
5079
5080 2013-05-30 Tom Tromey <tromey@redhat.com>
5081
5082 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
5083 do_cleanups on all return paths.
5084
5085 2013-05-30 Tom Tromey <tromey@redhat.com>
5086
5087 * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
5088
5089 2013-05-30 Tom Tromey <tromey@redhat.com>
5090
5091 * stabsread.c (read_struct_type): Call do_cleanups along
5092 all return paths.
5093
5094 2013-05-30 Maciej W. Rozycki <macro@codesourcery.com>
5095
5096 * mips-linux-tdep.c: Adjust formatting throughout.
5097
5098 2013-05-30 Tom Tromey <tromey@redhat.com>
5099
5100 * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
5101 along all return paths.
5102
5103 2013-05-30 Tom Tromey <tromey@redhat.com>
5104
5105 * symfile.c (find_separate_debug_file): Call do_cleanups
5106 along all return paths.
5107
5108 2013-05-30 Tom Tromey <tromey@redhat.com>
5109
5110 * symtab.c (search_symbols): Introduce a null cleanup for
5111 'retval_chain'.
5112
5113 2013-05-30 Tom Tromey <tromey@redhat.com>
5114
5115 * python/py-value.c (valpy_binop): Call do_cleanups before
5116 exiting loop.
5117
5118 2013-05-30 Tom Tromey <tromey@redhat.com>
5119
5120 * python/py-prettyprint.c (print_children): Remove extra
5121 do_cleanups call.
5122
5123 2013-05-30 Tom Tromey <tromey@redhat.com>
5124
5125 * python/py-frame.c (frapy_read_var): Call do_cleanups along
5126 all return paths.
5127
5128 2013-05-30 Tom Tromey <tromey@redhat.com>
5129
5130 * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
5131 along all return paths.
5132
5133 2013-05-30 Tom Tromey <tromey@redhat.com>
5134
5135 * cli/cli-logging.c (set_logging_redirect): Unconditionally
5136 call do_cleanups.
5137
5138 2013-05-30 Tom Tromey <tromey@redhat.com>
5139
5140 * varobj.c (c_value_of_root): Call do_cleanups along all
5141 return paths.
5142
5143 2013-05-30 Tom Tromey <tromey@redhat.com>
5144
5145 * tracepoint.c (trace_dump_command): Unconditionally call
5146 do_cleanups.
5147
5148 2013-05-30 Tom Tromey <tromey@redhat.com>
5149
5150 * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
5151 do_cleanups earlier.
5152
5153 2013-05-30 Tom Tromey <tromey@redhat.com>
5154
5155 * machoread.c (macho_symfile_read): Assign first cleanup to
5156 'back_to'.
5157
5158 2013-05-30 Tom Tromey <tromey@redhat.com>
5159
5160 * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
5161
5162 2013-05-30 Tom Tromey <tromey@redhat.com>
5163
5164 * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
5165
5166 2013-05-30 Tom Tromey <tromey@redhat.com>
5167
5168 * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
5169 call discard_cleanups.
5170 (inf_ptrace_attach): Likewise.
5171
5172 2013-05-30 Tom Tromey <tromey@redhat.com>
5173
5174 * remote-mips.c (mips_exit_debug): Call do_cleanups on all
5175 return paths.
5176 (mips_initialize): Likewise.
5177 (common_open): Call do_cleanups.
5178
5179 2013-05-30 Tom Tromey <tromey@redhat.com>
5180
5181 * utils.c (internal_vproblem): Call do_cleanups.
5182
5183 2013-05-30 Tom Tromey <tromey@redhat.com>
5184
5185 * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
5186
5187 2013-05-30 Tom Tromey <tromey@redhat.com>
5188
5189 * cli/cli-script.c (setup_user_args): Don't return after error.
5190
5191 2013-05-30 Tom Tromey <tromey@redhat.com>
5192
5193 * somread.c (som_symtab_read): Call do_cleanups.
5194
5195 2013-05-30 Tom Tromey <tromey@redhat.com>
5196
5197 * printcmd.c (print_command_1): Unconditionally call do_cleanups.
5198
5199 2013-05-30 Tom Tromey <tromey@redhat.com>
5200
5201 * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
5202 * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
5203 * interps.c (interpreter_exec_cmd): Call do_cleanups.
5204 * source.c (show_substitute_path_command): Call do_cleanups.
5205 (unset_substitute_path_command, set_substitute_path_command):
5206 Likewise.
5207 * symfile.c (load_command): Call do_cleanups.
5208
5209 2013-05-30 Tom Tromey <tromey@redhat.com>
5210
5211 * contrib/cleanup_check.py: New file.
5212 * contrib/gcc-with-excheck: Add option parsing.
5213
5214 2013-05-30 Joel Brobecker <brobecker@adacore.com>
5215
5216 * windows-nat.c (windows_delete_thread): Add missing space
5217 in cast expression.
5218
5219 2013-05-30 Hafiz Abid Qadeer <abidh@codesourcery.com>
5220
5221 * inferior.c (top level): Include tilde.h.
5222 (add_inferior_command): Call tilde_expand on the value of 'exec'
5223 argument.
5224
5225 2013-05-30 Pedro Alves <pedro@codesourcery.com>
5226 Yao Qi <yao@codesourcery.com>
5227
5228 * tracepoint.c (encode_actions_1): Remove parameter 't'.
5229 Caller update.
5230 (encode_actions): Likewise.
5231 * remote.c (remote_download_tracepoint): Caller update.
5232 * tracepoint.h (encode_actions): Update declaration.
5233
5234 2013-05-30 Pedro Alves <palves@redhat.com>
5235
5236 * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
5237 pointer.
5238
5239 2013-05-30 Yao Qi <yao@codesourcery.com>
5240
5241 * remote.c (remote_check_symbols): Remove unused parameter
5242 'objfile'.
5243 Declaration update.
5244 (remote_start_remote, remote_new_objfile): Caller update.
5245
5246 2013-05-30 Yao Qi <yao@codesourcery.com>
5247
5248 * mi/mi-cmds.c (mi_cmds): Define MI command
5249 '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
5250 DEF_MI_CMD_CLI.
5251
5252 2013-05-29 Pedro Alves <palves@redhat.com>
5253
5254 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
5255 (remote_insert_watchpoint, remote_remove_watchpoint)
5256 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
5257 (remote_verify_memory, compare_sections_command)
5258 (remote_search_memory): Set the general process/thread on the
5259 remote side.
5260
5261 2013-05-29 Pedro Alves <palves@redhat.com>
5262
5263 * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
5264 (_initialize_aarch64_tdep): Don't call
5265 initialize_tdesc_aarch64_without_fpu.
5266 * features/Makefile (WHICH): Remove reference to
5267 aarch64-without-fpu.
5268 * features/aarch64-without-fpu.c: Delete file.
5269 * regformats/aarch64-without-fpu.dat: Delete file.
5270
5271 2013-05-28 Yao Qi <yao@codesourcery.com>
5272
5273 * tracepoint.c (stringify_collection_list): Remove parameter
5274 'string'.
5275 (encode_actions): Caller update. Remove local variables.
5276
5277 2013-05-24 Yao Qi <yao@codesourcery.com>
5278
5279 * tracepoint.c (TFILE_PID): Remove.
5280 (tfile_open): Don't add thread and inferior.
5281 (tfile_close): Don't set 'inferior_ptid'. Don't call
5282 exit_inferior_silent.
5283 (tfile_thread_alive): Remove.
5284 (init_tfile_ops): Don't set field 'to_thread_alive' of
5285 tfile_ops.
5286
5287 2013-05-23 Doug Evans <dje@google.com>
5288
5289 * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
5290
5291 2013-05-23 Pedro Alves <palves@redhat.com>
5292
5293 * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
5294 [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
5295 (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
5296 Only define if HAVE_SOCKETS is defined.
5297 * configure.ac: Check for sys/socket.h.
5298 * config.in, configure: Regenerate.
5299
5300 2013-05-23 Pedro Alves <palves@redhat.com>
5301
5302 * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
5303 (open_and_init_dwp_file): Use %s/pulongest instead of %u for
5304 printing uint32_t variables.
5305
5306 2013-05-23 Pedro Alves <palves@redhat.com>
5307
5308 * NEWS: Mention GDBserver range stepping support.
5309
5310 2013-05-23 Yao Qi <yao@codesourcery.com>
5311 Pedro Alves <palves@redhat.com>
5312
5313 * gdbthread.h (struct thread_control_state) <may_range_step>: New
5314 field.
5315 * infcmd.c (step_once, until_next_command): Enable range stepping.
5316 * infrun.c (displaced_step_prepare): Disable range stepping.
5317 (resume): Disable range stepping if stepping over a breakpoint or
5318 we have software watchpoints. If range stepping is enabled,
5319 assert the thread is in the stepping range.
5320 (clear_proceed_status_thread): Clear may_range_step.
5321 (handle_inferior_event): Disable range stepping as soon as we know
5322 the thread that hit the event. Re-enable it whenever we're going
5323 to step with a step range.
5324 * remote.c (struct vCont_action_support) <r>: New field.
5325 (use_range_stepping): New global.
5326 (remote_vcont_probe): Handle 'r' action.
5327 (append_resumption): Append an 'r' action if the thread may range
5328 step.
5329 (show_range_stepping): New function.
5330 (set_range_stepping): New function.
5331 (_initialize_remote): Call add_setshow_boolean_cmd to register the
5332 'set range-stepping' and 'show range-stepping' commands.
5333 * NEWS: Mention range stepping, the new vCont;r action, and the
5334 new "set/show range-stepping" commands.
5335
5336 2013-05-23 Yao Qi <yao@codesourcery.com>
5337 Pedro Alves <palves@redhat.com>
5338
5339 * remote.c (struct vCont_action_support): New struct.
5340 (struct remote_state) <support_vCont_t>: Remove field.
5341 <vCont_actions_support>: New field.
5342 (remote_vcont_probe, remote_stop_ns): Update.
5343
5344 2013-05-23 Yao Qi <yao@codesourcery.com>
5345 Pedro Alves <palves@redhat.com>
5346
5347 * gdbthread.h (pc_in_thread_step_range): New declaration.
5348 * thread.c (pc_in_thread_step_range): New function.
5349 * infrun.c (handle_inferior_event): Use it.
5350
5351 2013-05-23 Joel Brobecker <brobecker@adacore.com>
5352
5353 * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
5354 of sprintf.
5355
5356 2013-05-22 Keith Seitz <keiths@redhat.com>
5357
5358 * ada-lang.c (is_known_support_routine): Add explicit free of
5359 'func_name' from find_frame_funname.
5360 (ada_unhandled_exception_name_addr_from_raise): Add cleanups
5361 for func_name from find_frame_funname.
5362 * python/py-frame.c (frapy_name): Add explicit free of
5363 'name' from find_frame_funname.
5364 * stack.c (find_frame_funname): Add comment explaining that
5365 funcp must be freed by the caller.
5366 Return copy of symbol names instead of pointers.
5367 (print_frame): Add a cleanup for 'funname' from
5368 find_frame_funname.
5369 * stack.h (find_frame_funname): Remove "const" from
5370 'funname' parameter.
5371
5372 2013-05-22 Tom Tromey <tromey@redhat.com>
5373
5374 PR c++/15401:
5375 * c-valprint.c (c_value_print): Use value_addr for
5376 references. Convert back to reference type with value_ref.
5377
5378 2013-05-22 Eli Zaretskii <eliz@gnu.org>
5379
5380 * windows-nat.c (handle_unload_dll): Don't call solib_add for the
5381 unloaded DLL, it will be done by handle_solib_event. See
5382 http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
5383 details.
5384
5385 2013-05-22 Phil Muldoon <pmuldoon@redhat.com>
5386
5387 * ui-out.c: Create typedef ui_out_level_p and define vector
5388 operations for that type.
5389 (struct ui_out): Use a vector instead of an array.
5390 (current_level): Return level from a vector.
5391 (push_level): Create a level in a vector.
5392 (pop_level): Delete a level in a vector.
5393 (ui_out_new): Create initial level zero level, and store in a
5394 vector.
5395 (ui_out_destroy): Add vector cleanup.
5396
5397 2013-05-22 Pedro Alves <palves@redhat.com>
5398
5399 * python/python-internal.h (gdb_Py_DECREF): Tag with
5400 "ARI: editCase function".
5401
5402 2013-05-21 Paul Pluzhnikov <ppluzhnikov@google.com>
5403
5404 * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
5405
5406 2013-05-21 Pedro Alves <palves@redhat.com>
5407
5408 * python/py-prettyprint.c (apply_val_pretty_printer): Check
5409 whether PRINTER is NULL before installing a Py_DECREF cleanup.
5410 * python/py-utils.c (py_decref): Don't check for NULL before
5411 calling Py_DECREF.
5412
5413 2013-05-21 Pedro Alves <palves@redhat.com>
5414
5415 * python/py-utils.c (py_decref): Remove extra braces.
5416 (gdb_pymodule_addobject): Remove extra braces.
5417 * python-internal.h (gdb_Py_DECREF): New static inline function.
5418 (Py_DECREF): Redefine as calling gdb_Py_DECREF.
5419
5420 2013-05-21 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5421
5422 * breakpoints.c (detach_breakpoints): Do not
5423 detach breakpoints locations with loc_type bp_loc_other.
5424
5425 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5426
5427 Workaround Python 2.6.
5428 * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
5429 a block.
5430
5431 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5432
5433 Code cleanup: constification.
5434 * solib.c (solib_ops): Make return type and ops variable type const.
5435 (set_solib_ops): Make the new_ops parameter and ops variable const.
5436 (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
5437 (solib_add, solib_keep_data_in_core, clear_solib)
5438 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
5439 (reload_shared_libraries, solib_global_lookup): Make the ops variable
5440 const.
5441 * solib.h (set_solib_ops): Make the new_ops parameter const.
5442
5443 2013-05-21 Joel Brobecker <brobecker@adacore.com>
5444
5445 * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
5446 variable.
5447 (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
5448 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
5449 (SYSTEM_GDBINIT_FILES): New variables.
5450 (all): Add stamp-system-gdbinit.
5451 (stamp-system-gdbinit): New rule.
5452 (clean-system-gdbinit, install-system-gdbinit)
5453 (uninstall-system-gdbinit): New rules. Make them .PHONY.
5454 (install-only): Add dependency on install-system-gdbinit.
5455 (uninstall): Add dependency on uninstall-system-gdbinit.
5456 (clean): Add dependency on clean-system-gdbinit.
5457 * system-gdbinit/elinos.py: New file.
5458 * system-gdbinit/wrs-linux.py: New file.
5459
5460 2013-05-21 Joel Brobecker <brobecker@adacore.com>
5461
5462 * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
5463
5464 2013-05-21 Hui Zhu <hui@codesourcery.com>
5465
5466 * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
5467 * breakpoint.h (dprintf_breakpoint_ops): Add extern.
5468 * mi/mi-cmd-break.c (ctype.h): New include.
5469 (gdb_obstack.h): New include.
5470 (mi_argv_to_format, mi_cmd_break_insert_1): New.
5471 (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
5472 (mi_cmd_dprintf_insert): New.
5473 * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
5474 * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
5475
5476 2013-05-20 Tom Tromey <tromey@redhat.com>
5477
5478 * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
5479
5480 2013-05-20 Tom Tromey <tromey@redhat.com>
5481
5482 * python/py-value.c (valpy_get_dynamic_type): Simplify
5483 dynamic_type assignment. Use Py_XINCREF.
5484
5485 2013-05-20 Tom Tromey <tromey@redhat.com>
5486
5487 * python/py-type.c (typy_fields): Unconditionally decref 'r'.
5488
5489 2013-05-20 Tom Tromey <tromey@redhat.com>
5490
5491 * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
5492 (gdbpy_selected_frame): Move object-construction code
5493 out of TRY_CATCH.
5494
5495 2013-05-20 Tom Tromey <tromey@redhat.com>
5496
5497 * python/py-arch.c (gdbpy_initialize_arch): Use
5498 gdb_pymodule_addobject.
5499 * python/py-block.c (gdbpy_initialize_blocks): Use
5500 gdb_pymodule_addobject.
5501 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
5502 gdb_pymodule_addobject.
5503 * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
5504 gdb_pymodule_addobject.
5505 * python/py-event.c (gdbpy_initialize_event_generic): Use
5506 gdb_pymodule_addobject.
5507 * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
5508 gdb_pymodule_addobject.
5509 * python/py-evts.c (add_new_registry): Use
5510 gdb_pymodule_addobject.
5511 (gdbpy_initialize_py_events): Likewise.
5512 * python/py-finishbreakpoint.c
5513 (gdbpy_initialize_finishbreakpoints): Use
5514 gdb_pymodule_addobject.
5515 * python/py-frame.c (gdbpy_initialize_frames): Use
5516 gdb_pymodule_addobject.
5517 * python/py-function.c (gdbpy_initialize_functions): Use
5518 gdb_pymodule_addobject.
5519 * python/py-inferior.c (gdbpy_initialize_inferior): Use
5520 gdb_pymodule_addobject.
5521 * python/py-infthread.c (gdbpy_initialize_thread): Use
5522 gdb_pymodule_addobject.
5523 * python/py-objfile.c (gdbpy_initialize_objfile): Use
5524 gdb_pymodule_addobject.
5525 * python/py-param.c (gdbpy_initialize_parameters): Use
5526 gdb_pymodule_addobject.
5527 * python/py-progspace.c (gdbpy_initialize_pspace): Use
5528 gdb_pymodule_addobject.
5529 * python/py-symbol.c (gdbpy_initialize_symbols): Use
5530 gdb_pymodule_addobject.
5531 * python/py-symtab.c (gdbpy_initialize_symtabs): Use
5532 gdb_pymodule_addobject.
5533 * python/py-type.c (gdbpy_initialize_types): Use
5534 gdb_pymodule_addobject.
5535 * python/py-utils.c (gdb_pymodule_addobject): New function.
5536 * python/py-value.c (gdbpy_initialize_values): Use
5537 gdb_pymodule_addobject.
5538 * python/python-internal.h (gdb_pymodule_addobject): Declare.
5539 * python/python.c (_initialize_python): Use
5540 gdb_pymodule_addobject.
5541
5542 2013-05-20 Tom Tromey <tromey@redhat.com>
5543
5544 * python/py-cmd.c (cmdpy_completer): Use explicit decref.
5545 * python/py-param.c (get_set_value, get_show_value): Use
5546 explicit decrefs.
5547 * python/python.c (start_type_printers, apply_type_printers):
5548 Use explicit decrefs.
5549
5550 2013-05-20 Tom Tromey <tromey@redhat.com>
5551
5552 * python/py-evts.c (gdbpy_initialize_py_events): Don't
5553 incref the module.
5554
5555 2013-05-20 Tom Tromey <tromey@redhat.com>
5556
5557 * python/python.c (gdbpy_run_events): Decref the result
5558 of PyObject_CallObject.
5559
5560 2013-05-20 Tom Tromey <tromey@redhat.com>
5561
5562 * python/py-symtab.c (set_sal): Use
5563 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION. Return -1 on error.
5564 (symtab_and_line_to_sal_object): Update.
5565
5566 2013-05-20 Tom Tromey <tromey@redhat.com>
5567
5568 * python/py-param.c (compute_enum_values): Decref 'item'.
5569
5570 2013-05-20 Tom Tromey <tromey@redhat.com>
5571
5572 * mi/mi-main.c: Include python-internal.h.
5573 (mi_cmd_list_features): Check gdb_python_initialized.
5574 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
5575 (python_inferior_exit, python_new_objfile, add_thread_object)
5576 (delete_thread_object, py_free_inferior): Check
5577 gdb_python_initialized.
5578 * python/py-prettyprint.c (apply_val_pretty_printer): Check
5579 gdb_python_initialized.
5580 * python/py-type.c (save_objfile_types): Check
5581 gdb_python_initialized.
5582 * python/python-internal.h (gdb_python_initialized): Declare.
5583 * python/python.c (ensure_python_env): Throw exception if
5584 Python not initialized.
5585 (before_prompt_hook, source_python_script_for_objfile)
5586 (start_type_printers, apply_type_printers,
5587 free_type_printers): Check gdb_python_initialized.
5588 * varobj.c (varobj_get_display_hint)
5589 (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
5590 (install_new_value_visualizer, varobj_set_visualizer)
5591 (value_get_print_value): Check gdb_python_initialized.
5592
5593 2013-05-20 Tom Tromey <tromey@redhat.com>
5594
5595 * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
5596 Check errors.
5597 * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
5598 * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
5599 Check errors.
5600 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
5601 Check errors.
5602 * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
5603 Check errors.
5604 * python/py-event.c (gdbpy_initialize_event): Return 'int'.
5605 Check errors.
5606 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
5607 init function to return 'int'.
5608 * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
5609 Return 'int'. Check errors.
5610 * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
5611 Check errors.
5612 * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
5613 Return 'int'. Check errors.
5614 * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
5615 Check errors.
5616 * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
5617 Check errors.
5618 * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
5619 Check errors.
5620 * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
5621 Check errors.
5622 * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
5623 Check errors.
5624 * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
5625 Check errors.
5626 * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
5627 Check errors.
5628 * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
5629 Check errors.
5630 * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
5631 Check errors.
5632 * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
5633 Check errors.
5634 * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
5635 Check errors.
5636 * python/py-type.c (gdbpy_initialize_types): Return 'int'.
5637 Check errors.
5638 * python/py-value.c (gdbpy_initialize_values): Return 'int'.
5639 Check errors.
5640 * python/python-internal.h (gdbpy_initialize_auto_load,
5641 gdbpy_initialize_values, gdbpy_initialize_frames,
5642 gdbpy_initialize_symtabs, gdbpy_initialize_commands,
5643 gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
5644 gdbpy_initialize_blocks, gdbpy_initialize_types,
5645 gdbpy_initialize_functions, gdbpy_initialize_pspace,
5646 gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
5647 gdbpy_initialize_finishbreakpoints,
5648 gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
5649 gdbpy_initialize_thread, gdbpy_initialize_inferior,
5650 gdbpy_initialize_eventregistry, gdbpy_initialize_event,
5651 gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
5652 gdbpy_initialize_signal_event,
5653 gdbpy_initialize_breakpoint_event,
5654 gdbpy_initialize_continue_event,
5655 gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
5656 gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
5657 Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5658 * python/python.c (gdb_python_initialized): New global.
5659 (gdbpy_initialize_events): Return 'int'. Check errors.
5660 (_initialize_python): Check errors. Set
5661 gdb_python_initialized.
5662
5663 2013-05-20 Tom Tromey <tromey@redhat.com>
5664
5665 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
5666 Decref the reslut of PyObject_CallMethod.
5667
5668 2013-05-20 Tom Tromey <tromey@redhat.com>
5669
5670 * python/py-event.c (gdbpy_initialize_event_generic): Return
5671 early if PyType_Ready fails.
5672
5673 2013-05-20 Tom Tromey <tromey@redhat.com>
5674
5675 * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
5676 as 'default' in the switch.
5677
5678 2013-05-20 Tom Tromey <tromey@redhat.com>
5679
5680 * python/py-inferior.c (gdbpy_inferiors): Update. Hoist
5681 get_addr_from_python calls out of TRY_CATCH.
5682 (infpy_write_memory, infpy_search_memory): Likewise.
5683 * python/py-utils.c (get_addr_from_python): Return negative
5684 value on error. Use TRY_CATCH.
5685 * python/python-internal.h (get_addr_from_python): Use
5686 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5687
5688 2013-05-20 Tom Tromey <tromey@redhat.com>
5689
5690 * python/py-event.c (evpy_emit_event): Decref the
5691 result of PyObject_CallFunctionObjArgs.
5692
5693 2013-05-20 Tom Tromey <tromey@redhat.com>
5694
5695 * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
5696 Correctly decref.
5697
5698 2013-05-20 Tom Tromey <tromey@redhat.com>
5699
5700 * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
5701
5702 2013-05-20 Tom Tromey <tromey@redhat.com>
5703
5704 * python/py-event.h (gdbpy_initialize_event_generic): Use
5705 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5706 * python/py-evts.c (add_new_registry): Use
5707 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5708 * python/python-internal.h
5709 (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
5710
5711 2013-05-20 Tom Tromey <tromey@redhat.com>
5712
5713 * python/py-arch.c (archpy_disassemble): Update.
5714 * python/py-type.c (typy_get_composite, typy_lookup_typename)
5715 (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
5716 * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
5717 * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
5718 macro.
5719 (GDB_PY_HANDLE_EXCEPTION): Update.
5720 (gdbpy_convert_exception): Update. Use CPYCHECKER_SETS_EXCEPTION.
5721
5722 2013-05-20 Tom Tromey <tromey@redhat.com>
5723
5724 * python/python-internal.h (events_object_type): Remove.
5725
5726 2013-05-20 Tom Tromey <tromey@redhat.com>
5727
5728 * python/py-event.h (evpy_emit_event): Use
5729 CPYCHECKER_STEALS_REFERENCE_TO_ARG.
5730 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
5731 New macro.
5732
5733 2013-05-20 Tom Tromey <tromey@redhat.com>
5734
5735 * py-evtregistry.c (create_event_object): Decref
5736 eventregistry_object if PyList_New fails.
5737
5738 2013-05-20 Tom Tromey <tromey@redhat.com>
5739
5740 * py-cmd.c (gdbpy_string_to_argv): Check result of
5741 PyList_New.
5742
5743 2013-05-20 Tom Tromey <tromey@redhat.com>
5744
5745 * python/python.c (before_prompt_hook): Add cleanup to
5746 decref 'hook'.
5747
5748 2013-05-20 Tom Tromey <tromey@redhat.com>
5749
5750 * python/py-function.c (fnpy_init): Decref result of
5751 PyObject_GetAttrString.
5752
5753 2013-05-20 Tom Tromey <tromey@redhat.com>
5754
5755 * python/py-threadevent.c (get_event_thread): Use
5756 CPYCHECKER_RETURNS_BORROWED_REF.
5757 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
5758 New define.
5759 (pspace_to_pspace_object, objfile_to_objfile_object)
5760 (find_thread_object): Use it.
5761
5762 2013-05-20 Tom Tromey <tromey@redhat.com>
5763
5764 * python/py-arch.c (arch_object_type): Use
5765 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5766 * python/py-block.c (block_syms_iterator_object_type):
5767 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5768 * python/py-bpevent.c (breakpoint_event_object_type):
5769 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5770 * python/py-cmd.c (cmdpy_object_type): Use
5771 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5772 * python/py-continueevent.c (continue_event_object_type):
5773 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5774 * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
5775 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5776 * python/py-events.h (thread_event_object_type):
5777 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5778 * python/py-evtregistry.c (eventregistry_object_type): Use
5779 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5780 * python/py-exitedevent.c (exited_event_object_type):
5781 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5782 * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
5783 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5784 * python/py-function.c (fnpy_object_type): Use
5785 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5786 * python/py-inferior.c (inferior_object_type, membuf_object_type):
5787 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5788 * python/py-infthread.c (thread_object_type): Use
5789 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5790 * python/py-lazy-string.c (lazy_string_object_type):
5791 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5792 * python/py-newobjfileevent.c (new_objfile_event_object_type):
5793 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5794 * python/py-objfile.c (objfile_object_type): Use
5795 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5796 * python/py-param.c (parmpy_object_type):
5797 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5798 * python/py-progspace.c (pspace_object_type):
5799 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5800 * python/py-signalevent.c (signal_event_object_type):
5801 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5802 * python/py-symtab.c (symtab_object_type, sal_object_type): Use
5803 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5804 * python/py-type.c (type_object_type, field_object_type)
5805 (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5806 * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
5807 define.
5808 (value_object_type, block_object_type, symbol_object_type)
5809 (event_object_type, stop_event_object_type, breakpoint_object_type)
5810 (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5811
5812 2013-05-20 Andreas Tobler <andreas@fgznet.ch>
5813
5814 * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
5815 (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
5816
5817 2013-05-20 Doug Evans <dje@google.com>
5818
5819 When reading CU, stay in DWO. Be more tolerent of bad debug info.
5820 For Fission.
5821 * dwarf2read.c (struct dwarf2_per_cu_data): New member
5822 reading_dwo_directly.
5823 (struct signatured_type): New member dwo_unit.
5824 (struct die_reader_specs): New member comp_dir.
5825 (create_signatured_type_table_from_index): Use malloc for
5826 all_type_units instead of objfile's obstack.
5827 (create_all_type_units): Ditto.
5828 (fill_in_sig_entry_from_dwo_entry): New function.
5829 (add_type_unit): New function.
5830 (lookup_dwo_signatured_type): New function.
5831 (lookup_dwp_signatured_type): New function.
5832 (lookup_signatured_type): New arg cu. All callers updated.
5833 (init_cu_die_reader): Initialize comp_dir.
5834 (read_cutu_die_from_dwo): New arg stub_comp_dir. All callers updated.
5835 Change assert of matching type signatures to call error on mismatch.
5836 (lookup_dwo_unit): Add assert.
5837 (init_tu_and_read_dwo_dies): New function.
5838 (init_cutu_and_read_dies): Call it.
5839 (build_type_unit_groups): Handle case of no type unit groups created.
5840 (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
5841 (lookup_dwo_cutu): Tweak complaint.
5842 (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
5843 (dwarf2_per_objfile_free): Free all_type_units.
5844
5845 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5846
5847 * windows-nat.c (handle_unload_dll): Add missing empty line.
5848
5849 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5850
5851 * dwarf2read.c (prototyped_function_p): New function.
5852 (read_subroutine_type): Use it.
5853
5854 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5855
5856 * rs6000-aix-tdep.c: De-indent some example code provided
5857 as a comment.
5858
5859 2013-05-17 Edjunior Machado <emachado@linux.vnet.ibm.com>
5860
5861 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
5862 region is ok for a hardware watchpoint using the new ptrace interface
5863 on Power servers.
5864
5865 2013-05-17 Doug Evans <dje@google.com>
5866
5867 * NEWS: Mention new maintenance commands check-symtabs, and
5868 expand-symtabs, and renamed check-psymtabs.
5869 * psymtab.c (maintenance_check_psymtabs): Renamed from
5870 maintenance_check_symtabs. Only process already-expanded symbol
5871 tables.
5872 (_initialize_psymtab): Update.
5873 * symmisc.c (maintenance_check_symtabs): New function.
5874 (maintenance_expand_name_matcher): New function
5875 (maintenance_expand_file_matcher): New function
5876 (maintenance_expand_symtabs): New function.
5877 (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
5878 commands.
5879
5880 2013-05-17 Tom Tromey <tromey@redhat.com>
5881
5882 * python/py-inferior.c (infpy_read_memory): Don't call
5883 PyErr_SetString if PyObject_New fails.
5884 * python/py-frame.c (frame_info_to_frame_object): Don't call
5885 PyErr_SetString if PyObject_New fails.
5886
5887 2013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
5888
5889 * acinclude.m4: Add check for dlopen in libdl.
5890 * configure.ac: Ditto.
5891 * configure: Regenerate.
5892
5893 2013-05-17 Phil Muldoon <pmuldoon@redhat.com>
5894
5895 * frame.c (frame_stash): Convert to htab.
5896 (frame_addr_hash): New function.
5897 (frame_addr_hash_eq): New function.
5898 (frame_stash_create): Convert function to create
5899 a hash table.
5900 (frame_stash_add): Convert function to add an entry to a hash
5901 table.
5902 (frame_stash_find): Convert function to search the hash table.
5903 (frame_stash_invalidate): Convert function to empty the hash
5904 table.
5905 (get_frame_id): Only add to stash if a frame_id is created.
5906 (_initialize_frame): Call frame_stash_create.
5907
5908 2013-05-16 Yue Lu <hacklu.newborn@gmail.com> (tiny change)
5909
5910 * configure.ac: Ensure MIG is available when building for GNU Hurd
5911 hosts.
5912 * configure: Regenerate.
5913
5914 2013-05-16 Joel Brobecker <brobecker@adacore.com>
5915
5916 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
5917
5918 2013-05-16 Joel Brobecker <brobecker@adacore.com>
5919
5920 * ada-lang.c (ada_make_symbol_completion_list): Make sure
5921 all cleanups are done before returning from this function.
5922
5923 2013-05-15 Joel Brobecker <brobecker@adacore.com>
5924
5925 * utils.h: #include "exceptions.h".
5926 (enum errors): Remove partial declaration.
5927
5928 2013-05-15 Joel Brobecker <brobecker@adacore.com>
5929
5930 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
5931 * gdbarch.h, gdbarch.c: Regenerate.
5932 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
5933 handling.
5934
5935 * rs6000-aix-tdep.h: New file.
5936 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
5937 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
5938 "xml-utils.h".
5939 (struct field_info, struct ld_info_desc): New types.
5940 (ld_info32_desc, ld_info64_desc): New static constants.
5941 (struct ld_info): New type.
5942 (rs6000_aix_extract_ld_info): New function.
5943 (rs6000_aix_shared_library_to_xml): Likewise.
5944 (rs6000_aix_ld_info_to_xml): Likewise.
5945 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
5946 (rs6000_aix_init_osabi): Add call to
5947 set_gdbarch_core_xfer_shared_libraries_aix.
5948 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
5949 Remove "xml-utils.h" include.
5950 (LdInfo): Delete typedef.
5951 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
5952 Delete macros.
5953 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
5954 Adjust code accordingly.
5955 (rs6000_core_ldinfo): Delete, folded into
5956 rs6000_aix_core_xfer_shared_libraries_aix.
5957 (rs6000_xfer_shared_library): Delete.
5958 (rs6000_xfer_shared_libraries): Reimplement.
5959
5960 2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
5961
5962 * record.c (record_goto_cmdlist): New.
5963 (cmd_record_goto): Split into this ...
5964 (cmd_record_goto_begin): ... this
5965 (cmd_record_goto_end): ... and this.
5966 (_initialize_record): Change "record goto" to prefix command.
5967 Add commands for "record goto begin" and "record goto end".
5968 Add an alias for "record goto start" to "record goto begin".
5969
5970 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5971
5972 * linespec.c (convert_linespec_to_sals): New comment for
5973 SOURCE_FILENAME assignment.
5974
5975 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5976
5977 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
5978 internal_warning.
5979
5980 2013-05-14 Tom Tromey <tromey@redhat.com>
5981
5982 * eval.c (parse_and_eval_long): Make 'exp' const.
5983 * value.h (parse_and_eval_long): Update.
5984
5985 2013-05-14 Tom Tromey <tromey@redhat.com>
5986
5987 * ui-file.c (gdb_fopen): Make arguments const.
5988 * ui-file.h (gdb_fopen): Make arguments const.
5989
5990 2013-05-14 Tom Tromey <tromey@redhat.com>
5991
5992 * remote.c (remote_set_trace_notes): Make arguments const.
5993 * target.c (update_current_target): Update cast.
5994 * target.h (to_set_trace_notes): Make arguments const.
5995
5996 2013-05-14 Tom Tromey <tromey@redhat.com>
5997
5998 * go32-nat.c (go32_terminal_info): Make 'args' const.
5999 * inferior.h (child_terminal_info): Update.
6000 * inflow.c (child_terminal_info): Make 'args' const.
6001 * target.c (default_terminal_info): Make 'args' const.
6002 (debug_to_terminal_save_ours): Likewise.
6003 * target.h (struct target_ops) <to_terminal_info>: Make argument
6004 const.
6005
6006 2013-05-13 Tom Tromey <tromey@redhat.com>
6007
6008 * gcore.c (create_gcore_bfd): Make 'filename' const.
6009 * gcore.h (create_gcore_bfd): Make 'filename' const.
6010 * record-full.c (record_full_save): Make 'recfilename' const.
6011 * target.c (target_save_record): Make 'filename' const.
6012 * target.h (struct target_ops) <to_save_record>: Make 'filename'
6013 const.
6014 (target_save_record): Likewise.
6015
6016 2013-05-13 Tom Tromey <tromey@redhat.com>
6017
6018 PR gdb/15338:
6019 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
6020 ranges section has been read.
6021
6022 2013-05-13 Tom Tromey <tromey@redhat.com>
6023
6024 PR exp/15364:
6025 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
6026 STRUCTOP_PTR>: Return a not_lval value for
6027 EVAL_AVOID_SIDE_EFFECTS.
6028 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
6029 for EVAL_AVOID_SIDE_EFFECTS.
6030
6031 2013-05-13 Joel Brobecker <brobecker@adacore.com>
6032
6033 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
6034 floating point registers to register type before storing
6035 value.
6036 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
6037 Likewise.
6038
6039 2013-05-10 Joel Brobecker <brobecker@adacore.com>
6040 Tom Tromey <tromey@redhat.com>
6041
6042 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
6043 New functions.
6044 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
6045 Declare.
6046 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
6047 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
6048 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
6049 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
6050
6051 2013-05-10 Freddie Chopin <freddie_chopin@op.pl>
6052 Tom Tromey <tromey@redhat.com>
6053
6054 PR build/15414:
6055 * configure: Rebuild.
6056 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
6057 with -Wno-format.
6058
6059 2013-05-10 Pedro Alves <palves@redhat.com>
6060
6061 * remote.c (_initialize_remote): Fix spelling of
6062 qXfer:traceframe-info:read packet in packet config command.
6063
6064 2013-05-10 David Taylor <dtaylor@emc.com>
6065
6066 PR remote/15455
6067
6068 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
6069 "QTro" at start of packet.
6070
6071 2013-05-10 Joel Brobecker <brobecker@adacore.com>
6072
6073 * solib-aix.c (solib_aix_relocate_section_addresses):
6074 For the .bss section action, apply the same offset as
6075 the .data section.
6076
6077 2013-05-10 Joel Brobecker <brobecker@adacore.com>
6078
6079 * solib-aix.c (solib_aix_relocate_section_addresses):
6080 Remove FIXME comment.
6081
6082 2013-05-10 Joel Brobecker <brobecker@adacore.com>
6083
6084 PR tdep/15420:
6085 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
6086 New functions, directly copied from sparc-sol-thread.c.
6087 * sparc-sol-thread.c: Delete.
6088 * configure.ac: Remove code handling sparc-solaris-thread.c.
6089 * configure: Regenerate.
6090
6091 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
6092
6093 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
6094 filter logic.
6095 (backtrace_command): Add "no-filters" option parsing.
6096 (_initialize_stack): Alter help to reflect "no-filters" option.
6097 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
6098 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
6099 (py-frame.o): Add target
6100 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
6101 filter files.
6102 * python/python.h: Add new frame filter constants, and flag enum.
6103 (apply_frame_filter): Add definition.
6104 * python/python.c (apply_frame_filter): New non-Python
6105 enabled function.
6106 * python/py-utils.c (py_xdecref): New function.
6107 (make_cleanup_py_xdecref): Ditto.
6108 * python/py-objfile.c: Declare frame_filters dictionary.
6109 (objfpy_dealloc): Add frame_filters dealloc.
6110 (objfpy_new): Initialize frame_filters attribute.
6111 (objfile_to_objfile_object): Ditto.
6112 (objfpy_get_frame_filters): New function.
6113 (objfpy_set_frame_filters): New function.
6114 * python/py-progspace.c: Declare frame_filters dictionary.
6115 (pspy_dealloc): Add frame_filters dealloc.
6116 (pspy_new): Initialize frame_filters attribute.
6117 (pspacee_to_pspace_object): Ditto.
6118 (pspy_get_frame_filters): New function.
6119 (pspy_set_frame_filters): New function.
6120 * python/py-framefilter.c: New file.
6121 * python/lib/gdb/command/frame_filters.py: New file.
6122 * python/lib/gdb/frames.py: New file.
6123 * python/lib/gdb/__init__.py: Initialize global frame_filters
6124 dictionary
6125 * python/lib/gdb/FrameDecorator.py: New file.
6126 * python/lib/gdb/FrameIterator.py: New file.
6127 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
6128 * mi/mi-cmds.h: Declare.
6129 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
6130 --no-frame-filter logic, and Python frame filter logic.
6131 (stack_enable_frame_filters): New function.
6132 (parse_no_frame_option): Ditto.
6133 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
6134 filter logic.
6135 (mi_cmd_stack_list_locals): Ditto.
6136 (mi_cmd_stack_list_args): Ditto.
6137 (mi_cmd_stack_list_variables): Ditto.
6138 * NEWS: Add frame filter note.
6139
6140 2013-05-09 Doug Evans <dje@google.com>
6141
6142 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
6143 All callers updated.
6144 (syms_from_objfile): Ditto. Make static.
6145 (symbol_file_add_with_addrs): Renamed from
6146 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
6147 num_offsets. All callers updated.
6148 * symfile.h (syms_from_objfile): Delete.
6149
6150 * symfile.c (decrement_reading_symtab): Add assert.
6151 (increment_reading_symtab): Ditto.
6152
6153 2013-05-09 Joel Brobecker <brobecker@adacore.com>
6154
6155 * source.c (forward_search_command): Replace call to getc
6156 by call to fgetc.
6157 (reverse_search_command): Likewise.
6158
6159 2013-05-08 Doug Evans <dje@google.com>
6160
6161 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
6162 matching test.
6163
6164 2013-05-08 Joel Brobecker <brobecker@adacore.com>
6165
6166 * sol-thread.c (info_cb): Factorize the code a little.
6167
6168 2013-05-08 Joel Brobecker <brobecker@adacore.com>
6169
6170 * sol-thread.c (info_cb): Rework the output of the "maintenance
6171 info sol-threads" command a bit.
6172
6173 2013-05-08 Joel Brobecker <brobecker@adacore.com>
6174
6175 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
6176 Replace ti.ti_startfunc by ti.ti_pc.
6177
6178 2013-05-08 Joel Brobecker <brobecker@adacore.com>
6179
6180 * solib-aix.c (solib_aix_free_library_list): New function
6181 for the case where HAVE_LIBEXPAT is not defined.
6182
6183 2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
6184
6185 PR breakpoints/15413:
6186 * breakpoint.c (condition_completer): Simplify the code to
6187 disconsider multiple locations of breakpoints when completing the
6188 "condition" command.
6189
6190 2013-05-07 Pierre Muller <muller@sourceware.org>
6191
6192 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
6193 instead of <sys/wait.h>.
6194
6195 2013-05-07 Pierre Muller <muller@sourceware.org>
6196
6197 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
6198 trailing new line from warning message.
6199
6200 2013-05-07 Pierre Muller <muller@sourceware.org>
6201
6202 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
6203 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
6204
6205 2013-05-07 Joel Brobecker <brobecker@adacore.com>
6206
6207 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
6208 error message (ARI fix).
6209
6210 2013-05-07 Joel Brobecker <brobecker@adacore.com>
6211
6212 * features/library-list-aix.dtd: Replace library-list by
6213 library-list-aix.
6214 * rs6000-nat.c: Replace library-list by library-list-aix
6215 throughout.
6216 * solib-aix.c: Likewise.
6217
6218 2013-05-07 Joel Brobecker <brobecker@adacore.com>
6219
6220 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
6221 Renames TARGET_OBJECT_AIX_LIBRARIES.
6222 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
6223 TARGET_OBJECT_LIBRARIES_AIX throughout.
6224 * solib-aix.c: Likwise.
6225
6226 2013-05-07 Yao Qi <yao@codesourcery.com>
6227
6228 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
6229 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
6230
6231 2013-05-07 Yao Qi <yao@codesourcery.com>
6232
6233 * solib-dsbt.c (enable_break): Declare.
6234 (dsbt_current_sos): Remove call to enable_break2.
6235 (enable_break2): Rename to enable_break. Set solib breakpoint
6236 on '_dl_debug_state'.
6237 (enable_break): Remove.
6238
6239 2013-05-07 Luis Machado <lgustavo@codesourcery.com>
6240
6241 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
6242 debug state prior to replicating existing hardware watchpoints or
6243 breakpoints.
6244
6245 2013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
6246
6247 * gcore.c (gcore_create_callback): Ignore sections with
6248 separate_debug_objfile_backlink != NULL.
6249
6250 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
6251 Andrew Jenner <andrew@codesourcery.com>
6252 Chung-Lin Tang <cltang@codesourcery.com>
6253 Julian Brown <julian@codesourcery.com>
6254
6255 Based on the nios2-elf port from Altera Corporation.
6256
6257 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
6258 nios2-linux-tdep.o.
6259 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
6260 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
6261 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
6262 * nios2-tdep.h: New.
6263 * nios2-tdep.c: New.
6264 * nios2-linux-tdep.c: New.
6265 * features/Makefile (WHICH): Add nios2-linux.
6266 (nios2-linux-expedite): Set.
6267 * features/nios2-cpu.xml: New.
6268 * features/nios2.xml: New.
6269 * features/nios2-linux.xml: New.
6270 * features/nios2.c: New (autogenerated).
6271 * features/nios2-linux.c: New (autogenerated).
6272 * regformats/nios2-linux.dat: New (autogenerated).
6273 * NEWS (Changes since GDB 7.6): Add new Nios II targets
6274 and commands.
6275
6276 2013-05-06 Doug Evans <dje@google.com>
6277
6278 * symfile.c: Whitespace cleanup.
6279
6280 * solist.h (struct target_so_ops): New member clear_so.
6281 * solib-svr4.c (svr4_clear_so): New function.
6282 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
6283 * solib.c (clear_so): Renamed from free_so_symbols.
6284 All callers updated. Call target clear_so if it exists.
6285
6286 2013-05-06 Tom Tromey <tromey@redhat.com>
6287
6288 * ada-lang.c (ada_value_primitive_packed_val): Don't
6289 call value_incref.
6290 * value.c (set_value_parent): Incref the new parent and decref
6291 the old parent.
6292 (value_copy, value_primitive_field): Use set_value_parent.
6293
6294 2013-05-06 Tom Tromey <tromey@redhat.com>
6295
6296 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
6297 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
6298 if needed.
6299 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
6300 * dwarf2read.c (write_constant_as_bytes)
6301 (dwarf2_fetch_constant_bytes): New functions.
6302
6303 2013-05-06 Tom Tromey <tromey@redhat.com>
6304
6305 * dwarf2read.c (dwarf2_const_value_data): Remove unused
6306 parameters.
6307 (dwarf2_const_value_attr): Update.
6308
6309 2013-05-06 Tom Tromey <tromey@redhat.com>
6310
6311 * somread.c (som_symfile_offsets): Add 'const' to addrs.
6312 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
6313 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
6314 Remove declaration.
6315
6316 2013-05-06 Tom Tromey <tromey@redhat.com>
6317
6318 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
6319 objfile's obstack.
6320
6321 2013-05-06 Doug Evans <dje@google.com>
6322
6323 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
6324 * stabsread.h (process_one_symbol): Update declaration.
6325 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
6326 * elfread.c (elf_symfile_relocate_probe): Ditto.
6327 * psymtab.c (relocate_psymtabs): Ditto.
6328 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
6329 (objfile_relocate): Ditto.
6330 * objfiles.h (objfile_relocate): Update declaration.
6331 * symfile.c (relative_addr_info_to_section_offsets): Constify
6332 addrs parameter.
6333 (default_symfile_offsets): Ditto.
6334 (syms_from_objfile_1): Constify offsets parameter.
6335 (syms_from_objfile): Ditto.
6336 (symbol_file_add_with_addrs_or_offsets): Ditto.
6337 (symfile_map_offsets_to_segments): Constify data parameter.
6338 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
6339 delta parameters of member relocate.
6340 (struct sym_probe_fns): Constify new_offsets,
6341 delta parameters of member sym_relocate_probe.
6342 (struct sym_fns): Constify section_addr_info parameter of member
6343 sym_offsets.
6344 (relative_addr_info_to_section_offsets): Update declaration.
6345 (default_symfile_offsets): Ditto.
6346 (syms_from_objfile): Ditto.
6347 (symfile_map_offsets_to_segments): Ditto.
6348
6349 * symfile.c (syms_from_objfile_1): Use correct section count when
6350 objfile->sf == NULL.
6351
6352 2013-05-06 Mike Frysinger <vapier@gentoo.org>
6353
6354 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
6355
6356 2013-05-06 Doug Evans <dje@google.com>
6357
6358 * psympriv.h (struct partial_symtab): Augment comment for member
6359 section_offsets.
6360
6361 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6362
6363 Reimplement shared library support on ppc-aix...
6364 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
6365 * features/library-list-aix.dtd: New file.
6366 * solib-aix.h, solib-aix.c: New file.
6367 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
6368 (rs6000_find_toc_address_hook): Delete.
6369 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
6370 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
6371 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
6372 "xml-utils.h".
6373 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
6374 (vmap_symtab, fixup_breakpoints): Delete.
6375 (rs6000_xfer_shared_libraries): New function.
6376 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
6377 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
6378 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
6379 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
6380 (rs6000_xfer_shared_library): New function.
6381 (find_toc_address): Delete.
6382 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
6383 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
6384 * xcoffread.c (record_minimal_symbol): Reloate symbol address
6385 before creating minimal symbol. Adjust function description
6386 accordingly.
6387 (scan_xcoff_symtab): Replace call to
6388 prim_record_minimal_symbol_and_info by call to
6389 record_minimal_symbol.
6390 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
6391 around default_symfile_offsets.
6392 * configure.tgt: Add solib-aix.o to gdb_target_obs for
6393 powerpc-aix targets.
6394 * config/rs6000/nm-rs6000.h: Delete.
6395 * config/powerpc/aix.mh (NAT_FILE): Delete.
6396 (NATDEPFILES): Remove xcoffsolib.o.
6397 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
6398 (ALL_TARGET_OBS): Add solib-aix.o.
6399 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
6400 config/rs6000/nm-rs6000.h. Add solib-aix.h.
6401 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
6402 * xcoffsolib.h, xcoffsolib.c: Delete.
6403
6404 * solib.c (reload_shared_libraries): Remove reference to
6405 SOLIB_CREATE_INFERIOR_HOOK.
6406 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
6407 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
6408 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
6409 comment.
6410 * corelow.c (deprecated_core_resize_section_table): Delete.
6411 * exec.c: Remove include of xcoffsolib.h".
6412 (map_vmap, vmap): Delete.
6413 (exec_close_1): Remove references to vmap.
6414 (exec_file_attach): Remove vmap handling code, and reference
6415 to DEPRECATED_IBM6000_TARGET.
6416 (bfdsec_to_vmap): Delete.
6417 (exec_files_info): Remove block of code handling VMAP.
6418 * infcmd.c (post_create_inferior): Remove reference to
6419 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
6420 * infrun.c (follow_exec): Remove reference to
6421 SOLIB_CREATE_INFERIOR_HOOK.
6422 * stack.c (print_frame): Remove reference to PC_SOLIB.
6423 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
6424 (dsbt_relocate_main_executable): Likewise.
6425 * solib-frv.c (frv_current_sos): Likewise.
6426
6427 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6428
6429 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
6430 to target_write_memory and target_read_memory.
6431
6432 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6433
6434 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
6435 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
6436
6437 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6438
6439 * darwin-nat.c: Replace all "%x" instances in format strings
6440 into "0x%x" throughout.
6441
6442 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6443
6444 * darwin-nat.c (darwin_mourn_inferior): Replace call to
6445 gdb_assert by call to MACH_CHECK_ERROR.
6446 (darwin_attach_pid): Raise an error rather than a failed
6447 assertion when various system calls failed. Report a warning
6448 instead of raising a failed assertion when PREV_NOT is not NULL
6449 after call to mach_port_request_notification.
6450 (darwin_ptrace_me): Raise an error rather than a failed
6451 assertion when read returns nonzero.
6452
6453 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6454
6455 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
6456
6457 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6458
6459 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
6460
6461 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6462
6463 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
6464 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
6465 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
6466 a stale cleanup. Fix double free of NAME.
6467
6468 2013-05-04 Eli Zaretskii <eliz@gnu.org>
6469
6470 * windows-nat.c (windows_delete_thread): Accept an additional
6471 argument, the thread's exit code, and announce thread death when
6472 print_thread_events is non-zero and we are deleting a thread that
6473 is not the main thread.
6474 (get_windows_debug_event): Pass thread exit code to
6475 windows_delete_thread.
6476
6477 2013-05-03 Kevin Buettner <kevinb@redhat.com>
6478
6479 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
6480 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
6481 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
6482 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
6483 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
6484 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
6485 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
6486 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
6487 (gdbarch_tdep): New struct.
6488 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
6489 E_NUM_REGS.
6490 (v850e3v5_register_name): New function.
6491 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
6492 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
6493 code handling the struct return conventions for the RH850 ABI.
6494 Update all callers.
6495 (v850_eight_byte_align_p): New function.
6496 (v850_push_call_dummy): Push structs by value, not by reference
6497 for the RH850 ABI. Add support for eight byte alignment.
6498 (v850_dbtrap_breakpoint_from_pc): New function.
6499 (v850_gdbarch_init): Add ABI detection code. Register
6500 v850e3v5_register_name for the v850e3v5 architecture. Set the
6501 number of registers for v850e3v5. Register
6502 v850_dbtrap_breakpoint_from_pc as appropriate.
6503 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
6504
6505 2013-05-03 Doug Evans <dje@google.com>
6506
6507 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
6508 of bfd_count_sections.
6509 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
6510 * symfile.c (default_symfile_offsets): Ditto.
6511 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
6512 one entry, not bfd_count_sections entries.
6513
6514 2013-05-03 Kevin Buettner <kevinb@redhat.com>
6515
6516 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
6517 `save' and `restore' register groups. Don't include SPL
6518 or SPH in these groups.
6519 (rl78_dwarf_reg_to_regnum): Adjust mapping for
6520 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
6521 RL78_ES_REGNUM, and RL78_CS_REGNUM.
6522 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
6523 dwarf2_append_unwinders().
6524
6525 2013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6526
6527 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
6528 ignore SIGINT and SIGTRAP in case these internal signals are
6529 caught explicitely.
6530
6531 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6532
6533 * darwin-nat.c (darwin_read_write_inferior): Change types
6534 of parameters rdaddr and wraddr to "gdb_byte *". Change type
6535 of copy_count to "mach_msg_type_number_t".
6536 (darwin_read_dyld_info): Change type of parameter
6537 rdaddr to "gdb_byte *".
6538
6539 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6540
6541 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
6542 of &info->load_map from "char *" to "gdb_byte *".
6543
6544 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6545
6546 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
6547 from "char *" to "gdb_byte *".
6548 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
6549
6550 2013-04-30 Doug Evans <dje@google.com>
6551
6552 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
6553 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
6554 DWO stub. If DWO isn't found, just use stub.
6555 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
6556
6557 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
6558 calling init_cutu_and_read_dies.
6559
6560 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
6561
6562 * target-descriptions.c (maint_print_c_tdesc_cmd):
6563 Add case to parse structures as register types and
6564 bitfields.
6565
6566 2013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
6567
6568 * MAINTAINERS (Write After Approval): Add myself to the list.
6569
6570 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6571
6572 * sol-thread.c (rw_common): Change type of parameter "buf"
6573 to "gdb_byte *".
6574 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
6575 rw_common to "gdb_byte *" instead of "char *".
6576
6577 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6578
6579 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
6580 of local variable msym to const struct bound_minimal_symbol.
6581 Adjust use accordingly.
6582 [ti.ti_state == TD_THR_SLEEP]: Likewise.
6583
6584 2013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
6585
6586 * i386gnu-nat.c (CREG_OFFSET): New macro.
6587 (creg_offset): New array.
6588 (CREG_ADDR): Use creg_offset instead of reg_offset.
6589
6590 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6591
6592 * mep-tdep.c (mep_write_pc): Delete.
6593 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
6594 Add call to set_gdbarch_pc_regnum.
6595
6596 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6597
6598 * common/filestuff.c: Replace #include <dirent.h> by
6599 #include "gdb_dirent.h".
6600
6601 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6602
6603 * common/filestuff.c: Replace #include <sys/stat.h> by
6604 #include "gdb_stat.h".
6605
6606 2013-04-29 Pierre Muller <muller@sourceware.org>
6607
6608 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
6609 editCase function rule.
6610 (get_DW_AT_signature_type): Likewise.
6611
6612 2013-04-29 Joel Brobecker <brobecker@adacore.com>
6613
6614 * m32r-tdep.c (m32r_write_pc): Delete.
6615 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
6616 Add call to set_gdbarch_pc_regnum.
6617
6618 2013-04-29 Pierre Muller <muller@sourceware.org>
6619
6620 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
6621
6622 2013-04-29 Joel Brobecker <brobecker@adacore.com>
6623
6624 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
6625
6626 2013-04-28 Yao Qi <yao@codesourcery.com>
6627
6628 * solib-dsbt.c (fetch_loadmap): Re-indent.
6629 (displacement_from_map, enable_break2): Likewise.
6630 (dsbt_relocate_section_addresses): Likewise.
6631
6632 2013-04-26 Joel Brobecker <brobecker@adacore.com>
6633
6634 GDB 7.6 released.
6635
6636 2013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
6637
6638 PR corefiles/14983:
6639 * dwarf2read.c (process_full_comp_unit): Always create a static
6640 block.
6641
6642 2013-04-25 Hui Zhu <hui@codesourcery.com>
6643
6644 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
6645 to loc->cmd_bytecode.
6646
6647 2013-04-24 Doug Evans <dje@google.com>
6648
6649 * dwarf2read.c (setup_type_unit_groups): Fix comment.
6650
6651 2013-04-22 Keith Seitz <keiths@redhat.com>
6652
6653 * tracepoint.c (trace_save): Call the writer's start method.
6654
6655 2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
6656
6657 PR gdb/10462
6658 * cli/cli-decode.c (lookup_command): Show an error if there is no space
6659 before argument.
6660
6661 2013-04-23 Tom Tromey <tromey@redhat.com>
6662
6663 * common/filestuff.c: Check USE_WIN32API before including
6664 sys/socket.h.
6665 (HAVE_F_GETFD): New define.
6666 (mark_cloexec): Check HAVE_F_GETFD.
6667 (gdb_open_cloexec): Change 'mode' to unsigned long.
6668 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
6669 (gdb_pipe_cloexec): Check HAVE_PIPE.
6670 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
6671 long.
6672
6673 2013-04-23 Hui Zhu <hui@codesourcery.com>
6674
6675 PR gdb/15293
6676 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
6677
6678 2013-04-23 Hui Zhu <hui@codesourcery.com>
6679
6680 PR gdb/15165
6681 * breakpoint.c (dprintf_print_recreate): New.
6682 (save_breakpoints): Let it not save dprintf commands.
6683 (initialize_breakpoint_ops): Set dprintf_print_recreate.
6684
6685 2013-04-22 Tom Tromey <tromey@redhat.com>
6686
6687 PR gdb/7912:
6688 * Makefile.in (SFILES): Add filestuff.c
6689 (COMMON_OBS): Add filestuff.o.
6690 (filestuff.o): New target.
6691 * auto-load.c (auto_load_objfile_script_1): Use
6692 gdb_fopen_cloexec.
6693 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
6694 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
6695 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
6696 * common/agent.c (gdb_connect_sync_socket): Use
6697 gdb_socket_cloexec.
6698 * common/filestuff.c: New file.
6699 * common/filestuff.h: New file.
6700 * common/linux-osdata.c (linux_common_core_of_thread)
6701 (command_from_pid, commandline_from_pid, print_source_lines)
6702 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
6703 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
6704 gdb_fopen_cloexec.
6705 * common/linux-procfs.c (linux_proc_get_int)
6706 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
6707 * config.in, configure: Rebuild.
6708 * configure.ac: Don't check for sys/socket.h. Check for
6709 fdwalk, pipe2.
6710 * corelow.c (core_open): Use gdb_open_cloexec.
6711 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
6712 * fork-child.c (fork_inferior): Call close_most_fds.
6713 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
6714 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
6715 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
6716 Use gdb_fopen_cloexec.
6717 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
6718 gdb_open_cloexec.
6719 (linux_async_pipe): Use gdb_pipe_cloexec.
6720 * remote-fileio.c (remote_fileio_func_open): Use
6721 gdb_open_cloexec.
6722 * remote.c (remote_file_put, remote_file_get): Use
6723 gdb_fopen_cloexec.
6724 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
6725 close_most_fds.
6726 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
6727 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
6728 * solib.c (solib_find): Use gdb_open_cloexec.
6729 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
6730 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
6731 (tfile_open): Use gdb_open_cloexec.
6732 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
6733 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
6734 * xml-support.c (xml_fetch_content_from_file): Use
6735 gdb_fopen_cloexec.
6736 * main.c (captured_main): Call notice_open_fds.
6737
6738 2013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
6739
6740 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
6741 'char *' to 'gdb_byte *'.
6742 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
6743 'gdb_byte'.
6744
6745 2013-04-22 Yao Qi <yao@codesourcery.com>
6746
6747 * infrun.c: Fix typo in comment.
6748
6749 2013-04-22 Andrew Haley <aph@redhat.com>
6750
6751 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
6752 instead of "long".
6753
6754 2013-04-20 Yao Qi <yao@codesourcery.com>
6755
6756 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
6757 'char *' to 'gdb_byte *'. Cast the return value of
6758 'bt_ctf_get_char_array' to 'gdb_byte *'.
6759
6760 2013-04-19 Pedro Alves <palves@redhat.com>
6761
6762 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
6763 -Wpointer-sign.
6764 * configure: Regenerate.
6765
6766 2013-04-19 Pedro Alves <palves@redhat.com>
6767
6768 * ser-tcp.c (net_read_prim): Cast second argument to recv to
6769 'void *'.
6770
6771 2013-04-19 Pedro Alves <palves@redhat.com>
6772
6773 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
6774 Change type of 'myaddr' parameter to gdb_byte pointer.
6775 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
6776 to 'long long' pointer instead of to 'unsigned long long'.
6777 (monitor_write_memory_block, monitor_read_memory_single)
6778 (monitor_read_memory): Change type of 'myaddr' parameter to
6779 gdb_byte pointer.
6780
6781 2013-04-19 Pedro Alves <palves@redhat.com>
6782
6783 * record.c (validate_history_size): Make parameter 'setting'
6784 unsigned.
6785
6786 2013-04-19 Pedro Alves <palves@redhat.com>
6787
6788 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
6789 to 'gdb_byte *'.
6790
6791 2013-04-19 Pedro Alves <palves@redhat.com>
6792
6793 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
6794 local to int.
6795
6796 2013-04-19 Pedro Alves <palves@redhat.com>
6797
6798 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
6799 * ada-tasks.c (read_fat_string_value): Likewise.
6800
6801 2013-04-19 Pedro Alves <palves@redhat.com>
6802
6803 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
6804 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
6805 'offset', and adjust.
6806
6807 2013-04-19 Pedro Alves <palves@redhat.com>
6808
6809 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
6810 (read_index_from_section): Add cast to 'char *'.
6811
6812 2013-04-19 Pedro Alves <palves@redhat.com>
6813
6814 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
6815
6816 2013-04-19 Pedro Alves <palves@redhat.com>
6817
6818 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
6819
6820 2013-04-19 Pedro Alves <palves@redhat.com>
6821
6822 * record-full.c (record_full_get_bookmark): Change local 'ret'
6823 type to char * and add cast to gdb_byte *.
6824 (record_full_goto_bookmark): Handle 'bookmark' argument as a
6825 string.
6826 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
6827
6828 2013-04-19 Pedro Alves <palves@redhat.com>
6829
6830 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
6831 * python/py-prettyprint.c (print_string_repr): Change type of
6832 'output' local to char *. Add cast to gdb_byte * in
6833 LA_PRINT_STRING call.
6834 (print_children): Change type of 'output' local to char *.
6835 * python/py-value.c (valpy_string): Add cast to const char * in
6836 PyUnicode_Decode call.
6837
6838 2013-04-19 Pedro Alves <palves@redhat.com>
6839
6840 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
6841 and change its type to 'const char *'. Adjust.
6842 (mips_send_packet): Add cast to 'char *', and remove cast to
6843 'unsigned char *'.
6844 (mips_receive_packet): Remove cast to 'unsigned char *'.
6845 (mips_load_srec): Use bfd_byte.
6846 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
6847 (pmon_checkset): Make 'value' parameter unsigned.
6848
6849 2013-04-19 Pedro Alves <palves@redhat.com>
6850
6851 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
6852
6853 2013-04-19 Pedro Alves <palves@redhat.com>
6854
6855 * remote.c (remote_write_bytes_aux, compare_sections_command)
6856 (remote_read_qxfer)
6857 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
6858 (remote_hostio_readlink, remote_bfd_iovec_pread)
6859 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
6860 binary buffer, and char when buffer is used as string.
6861 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
6862 (trace_save, tfile_open, traceframe_walk_blocks)
6863 (tfile_fetch_registers): Likewise.
6864
6865 2013-04-19 Pedro Alves <palves@redhat.com>
6866
6867 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
6868 buffer and size_t size. Adjust.
6869 * ser-base.h (ser_base_write): Adjust.
6870 * ser-go32.c (cnts): Change type to size_t.
6871 (dos_write): Change prototype -- take 'void *'
6872 buffer and size_t size. Adjust.
6873 (dos_info): Print elements of 'cnts' as unsigned long.
6874 * serial.c (serial_write): Likewise.
6875 * serial.h (serial_write): Adjust.
6876 (struct serial_ops) <write>: Change prototype -- take 'void *'
6877 buffer and size_t size. Adjust.
6878
6879 2013-04-19 Pedro Alves <palves@redhat.com>
6880
6881 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
6882 gdb_byte *.
6883 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
6884
6885 2013-04-19 Pedro Alves <palves@redhat.com>
6886
6887 * alpha-tdep.c (alpha_extract_return_value): Use
6888 regcache_cooked_read_unsigned to read 'v0'.
6889
6890 2013-04-19 Pedro Alves <palves@redhat.com>
6891
6892 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
6893 parameters 'at', 'as' and 'offset' to uint32_t.
6894
6895 2013-04-19 Pedro Alves <palves@redhat.com>
6896
6897 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
6898 'is64' to signed 'int'.
6899
6900 2013-04-19 Pedro Alves <palves@redhat.com>
6901
6902 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
6903 parameter to int *.
6904
6905 2013-04-19 Pedro Alves <palves@redhat.com>
6906
6907 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
6908 'insnbuf' buffer type to unsigned int[].
6909
6910 2013-04-19 Pedro Alves <palves@redhat.com>
6911
6912 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
6913
6914 2013-04-19 Pedro Alves <palves@redhat.com>
6915
6916 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
6917 unsigned long *.
6918
6919 2013-04-19 Pedro Alves <palves@redhat.com>
6920
6921 * alpha-tdep.c (heuristic_fence_post): Change type to int.
6922 (alpha_heuristic_proc_start): Adjust to check -1 instead of
6923 UINT_MAX.
6924 * mips-tdep.c (heuristic_fence_post): Change type to int.
6925 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
6926
6927 2013-04-19 Pedro Alves <palves@redhat.com>
6928
6929 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
6930 (struct gdbarch_tdep) <cris_version>: Make unsigned.
6931 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
6932
6933 2013-04-19 Pedro Alves <palves@redhat.com>
6934
6935 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
6936 it to get a string view of the byte buffer.
6937 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
6938 type to gdb_byte *. Adjust.
6939 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
6940 Change local to char *.
6941 * solib-darwin.c (find_program_interpreter): Change return type to
6942 char *. Adjust.
6943 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
6944 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
6945 * solib-frv.c (enable_break2): Change local 'buf' to char *.
6946 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
6947 * solib-svr4.c (find_program_interpreter): Change return type to
6948 char *. Adjust.
6949 (enable_break): Change local 'interp_name' to char *.
6950 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6951 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
6952 (spu_pseudo_register_write_spu): Use char for string buffer.
6953 Adjust.
6954 (info_spu_event_command, info_spu_signal_command): Add casts to
6955 'char *'.
6956
6957 2013-04-19 Pedro Alves <palves@redhat.com>
6958
6959 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
6960 gdb_byte[].
6961 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
6962 * ada-lang.c (ada_value_assign): Use gdb_byte.
6963 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
6964 (alphanbsd_sigtramp_offset): Use gdb_byte.
6965 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
6966 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
6967 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
6968 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
6969 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
6970 * arm-tdep.c (arm_stub_unwind_sniffer)
6971 (arm_displaced_init_closure): Use gdb_byte.
6972 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
6973 (arm_default_thumb_le_breakpoint)
6974 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
6975 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
6976 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
6977 * arm-wince-tdep.c (arm_wince_le_breakpoint)
6978 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
6979 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
6980 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
6981 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
6982 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
6983 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
6984 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
6985 (cris_store_return_value, cris_extract_return_value): Use
6986 gdb_byte.
6987 (constraint): Change type of parameter to char * from signed
6988 char*. Use gdb_byte.
6989 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
6990 of local buffer to gdb_byte *.
6991 * dwarf2read.c (read_index_from_section): Use gdb_byte.
6992 (create_dwp_hash_table): Change type of locals to gdb_byte *.
6993 (add_address_entry): Change type of local buffer to gdb_byte[].
6994 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
6995 (frv_push_dummy_call): Use gdb_byte.
6996 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
6997 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
6998 (hppa_hpux_supply_save_state): Use gdb_byte.
6999 * hppa-tdep.c (hppa32_push_dummy_call)
7000 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
7001 * ia64-tdep.c (extract_bit_field, replace_bit_field)
7002 (slotN_contents, replace_slotN_contents): Change type of parameter
7003 to gdb_byte *.
7004 (fetch_instruction, ia64_pseudo_register_write)
7005 (ia64_register_to_value, ia64_value_to_register)
7006 (ia64_extract_return_value, ia64_store_return_value)
7007 (ia64_push_dummy_call): Use gdb_byte.
7008 * m32c-tdep.c (m32c_return_value): Remove cast.
7009 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
7010 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
7011 gdb_byte.
7012 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
7013 * mn10300-tdep.c (mn10300_store_return_value)
7014 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
7015 gdb_byte.
7016 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
7017 (moxie_process_record): Remove casts.
7018 * ppc-ravenscar-thread.c (supply_register_at_address)
7019 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
7020 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
7021 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
7022 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
7023 * remote.c (compare_sections_command): Use gdb_byte.
7024 * score-tdep.c (score7_free_memblock): Change type of parameter to
7025 gdb_byte *.
7026 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
7027 gdb_byte *. Use gdb_byte.
7028 (sh_push_dummy_call_fpu): Use gdb_byte.
7029 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
7030 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
7031 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
7032 Change parameter type to 'gdb_byte *'. Use gdb_byte.
7033 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
7034 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
7035 (sh64_store_return_value, sh64_register_convert_to_virtual):
7036 Change parameter type to 'gdb_byte *'. Use gdb_byte.
7037 (sh64_pseudo_register_write): Use gdb_byte.
7038 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
7039 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
7040 buffer.
7041 (irix_current_sos): Use gdb_byte.
7042 * solib-som.c (som_current_sos): Use gdb_byte.
7043 * sparc-ravenscar-thread.c (supply_register_at_address)
7044 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
7045 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
7046 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
7047 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
7048 'gdb_byte *'.
7049 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
7050 'gdb_byte *'.
7051 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
7052 * xstormy16-tdep.c (xstormy16_extract_return_value)
7053 (xstormy16_store_return_value): Change parameter type to
7054 'gdb_byte *'. Adjust.
7055 (xstormy16_push_dummy_call): Use gdb_byte.
7056 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
7057 (call0_analyze_prologue, execute_code): Use gdb_byte.
7058
7059 2013-04-19 Vladimir Kargov <kargov@gmail.com>
7060 Pedro Alves <palves@redhat.com>
7061
7062 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
7063 value contents.
7064
7065 2013-04-17 Doug Evans <dje@google.com>
7066
7067 * dwarf2read.c (struct signatured_type): New member type.
7068 (struct attribute): Replace member signatured_type with signature.
7069 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
7070 (read_call_site_scope): Call follow_die_ref instead of
7071 follow_die_ref_or_sig.
7072 (read_structure_type): Rewrite handling of signatured types.
7073 (read_enumeration_type): Ditto.
7074 (read_attribute_value): Update.
7075 (build_error_marker_type): New function.
7076 (lookup_die_type): Add assert. Rewrite handling of signatured types.
7077 Don't call error for bad types, just build an error marker type.
7078 (dump_die_shallow): Update.
7079 (follow_die_sig_1): Renamed from follow_die_sig.
7080 Don't call error for bad types, instead return NULL.
7081 (follow_die_sig): New function.
7082 (get_signatured_type, get_DW_AT_signature_type): New functions.
7083
7084 2013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
7085
7086 * aarch64-tdep.c (aarch64_write_pc): Removed.
7087 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
7088 function.
7089
7090 2013-04-17 Yao Qi <yao@codesourcery.com>
7091
7092 * top.c (print_gdb_configuration): Print configure-time
7093 parameter on using libbabeltrace or not.
7094
7095 2013-04-16 Pedro Alves <palves@redhat.com>
7096
7097 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
7098
7099 2013-04-16 Pedro Alves <palves@redhat.com>
7100
7101 * common/glibc_thread_db.h: Update from upstream glibc
7102 (git 568035b7874a099087b77f7bba3e36a1173787b0).
7103
7104 2013-04-16 Pedro Alves <palves@redhat.com>
7105
7106 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
7107 * common/glibc_thread_db.h: ... this new file ...
7108 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
7109
7110 2013-04-16 Will Newton <will.newton@gmail.com>
7111 Pedro Alves <palves@redhat.com>
7112
7113 PR build/11881
7114
7115 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
7116 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
7117 HAVE_THREAD_DB_H.
7118
7119 2013-04-16 Pedro Alves <palves@redhat.com>
7120 Eli Zaretskii <eliz@gnu.org>
7121
7122 * NEWS: Mention "set foo unlimited".
7123
7124 2013-04-15 Doug Evans <dje@google.com>
7125
7126 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
7127 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
7128 (create_dwo_cu_reader): Renamed from
7129 create_dwo_debug_info_hash_table_reader.
7130 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
7131 Remove support for multiple CUs in a DWO file.
7132 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
7133
7134 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
7135 instead of phex.
7136 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
7137 (create_dwo_in_dwp): Ditto.
7138
7139 2013-04-15 Tom Tromey <tromey@redhat.com>
7140
7141 * NEWS: Move recent entries into "since 7.6" section.
7142
7143 2013-04-15 Tom Tromey <tromey@redhat.com>
7144
7145 PR c++/13588:
7146 * NEWS: Update.
7147 * break-catch-throw.c (struct exception_catchpoint)
7148 <exception_rx, pattern>: New fields.
7149 (fetch_probe_arguments, dtor_exception_catchpoint)
7150 (check_status_exception_catchpoint)
7151 (print_one_detail_exception_catchpoint): New functions.
7152 (handle_gnu_v3_exceptions): Add "except_rx" argument.
7153 Compile regular expression if needed.
7154 (extract_exception_regexp): New function.
7155 (catch_exception_command_1): Use extract_exception_regexp.
7156 (compute_exception): Use fetch_probe_arguments.
7157 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
7158 and check_status fields.
7159 * cp-abi.c (cplus_typename_from_type_info): New function.
7160 * cp-abi.h (cplus_typename_from_type_info): Declare.
7161 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
7162 * gdb_regex.h (compile_rx_or_error): Declare.
7163 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
7164 comment.
7165 (init_gnuv3_ops): Set get_type_from_type_info field.
7166 * probe.c (compile_rx_or_error): Move...
7167 * utils.c (compile_rx_or_error): ... here.
7168
7169 2013-04-15 Tom Tromey <tromey@redhat.com>
7170
7171 PR c++/15176:
7172 * NEWS: Update.
7173 * break-catch-throw.c (compute_exception): New function.
7174 (exception_funcs): New global.
7175 (_initialize_break_catch_throw): Create $_exception.
7176 * cp-abi.c (cplus_type_from_type_info): New function.
7177 * cp-abi.h (cplus_type_from_type_info): Declare.
7178 (struct cp_abi_ops) <get_type_from_type_info>: New field.
7179 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
7180 (gnuv3_get_type_from_type_info): New functions.
7181 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
7182
7183 2013-04-15 Tom Tromey <tromey@redhat.com>
7184
7185 * break-catch-throw.c (struct exception_names): New.
7186 (exception_functions): Change type.
7187 (re_set_exception_catchpoint): Look for SDT probes.
7188
7189 2013-04-15 Tom Tromey <tromey@redhat.com>
7190
7191 PR c++/10119:
7192 * break-catch-throw.c (exception_functions): New global.
7193 (gnu_v3_exception_catchpoint_ops): Move earlier.
7194 (struct exception_catchpoint): New.
7195 (classify_exception_breakpoint): Rewrite.
7196 (re_set_exception_catchpoint): New function.
7197 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
7198 Allocate a struct exception_catchpoint.
7199 (catch_exception_command_1): Update.
7200 (initialize_throw_catchpoint_ops): Set 're_set' method.
7201
7202 2013-04-15 Tom Tromey <tromey@redhat.com>
7203
7204 * Makefile.in (SFILES): Add break-catch-throw.c
7205 (COMMON_OBS): Add break-catch-throw.o.
7206 * break-catch-throw.c: New file.
7207 * breakpoint.c: Move exception-catching code to new file.
7208 (ep_parse_optional_if_clause): No longer static.
7209 * breakpoint.h (ep_parse_optional_if_clause): Declare.
7210
7211 2013-04-15 Tom Tromey <tromey@redhat.com>
7212
7213 PR c++/9065:
7214 * NEWS: Update.
7215 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
7216 * c-exp.y (TYPEID): New token.
7217 (exp): Add new TYPEID productions.
7218 (ident_tokens): Add "typeid".
7219 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
7220 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
7221 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
7222 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
7223 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
7224 case.
7225 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
7226 (build_std_type_info_type, gnuv3_get_typeid_type)
7227 (gnuv3_get_typeid): New functions.
7228 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
7229 new fields on ABI object.
7230 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
7231 * std-operator.def (OP_TYPEID): New.
7232
7233 2013-04-15 Tom Tromey <tromey@redhat.com>
7234
7235 * elfread.c (elf_symtab_read): Install versioned symbol under
7236 unversioned name as well.
7237
7238 2013-04-15 Tom Tromey <tromey@redhat.com>
7239
7240 PR c++/11990:
7241 * c-lang.c (cplus_language_defn): Use gdb_demangle.
7242 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
7243 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
7244 (gdb_demangle): New function.
7245 * cp-support.h (gdb_demangle): Declare.
7246 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
7247 (dwarf2_name): Use gdb_demangle.
7248 * gdbtypes.c (check_stub_method): Use gdb_demangle.
7249 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
7250 suffixes from name.
7251 (gnuv3_print_method_ptr): Use gdb_demangle.
7252 * jv-lang.c (java_demangle): Use gdb_demangle.
7253 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
7254 * language.c (unk_lang_demangle): Use gdb_demangle.
7255 * symtab.c (symbol_find_demangled_name)
7256 (demangle_for_lookup): Use gdb_demangle.
7257
7258 2013-04-15 Tom Tromey <tromey@redhat.com>
7259
7260 PR c++/12824:
7261 * NEWS: Update.
7262 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
7263 New constant.
7264 (classify_exception_breakpoint): New function.
7265 (print_it_exception_catchpoint, print_one_exception_catchpoint)
7266 (print_mention_exception_catchpoint)
7267 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
7268 (catch_exception_command_1): Handle "rethrow" catchpoint.
7269 (catch_rethrow_command): New function.
7270 (_initialize_breakpoint): Add "catch rethrow" command.
7271
7272 2013-04-15 Pierre Muller <muller@sourceware.org>
7273
7274 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
7275 set_gdbarch_write_pc as deprecated anymore.
7276
7277 2013-04-15 Joel Brobecker <brobecker@adacore.com>
7278
7279 * spu-tdep.c (spu_write_pc): Add empty line after local variable
7280 declarations.
7281
7282 2013-04-13 Yao Qi <yao@codesourcery.com>
7283
7284 * ctf.c (_initialize_ctf): Include "completer.h".
7285 Call add_target_with_completer instead of add_target.
7286
7287 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
7288
7289 Fix GDB regression related to PR binutils/14813.
7290 * jit.c (mem_bfd_iovec_close): Return 0 for success.
7291 * minidebug.c (lzma_close): Add return value comment.
7292 * remote.c (remote_bfd_iovec_close): Return 0 for success.
7293 * solib-spu.c (spu_bfd_iovec_close): Likewise.
7294 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
7295
7296 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
7297
7298 * config.in: Regenerate.
7299
7300 2013-04-12 Tom Tromey <tromey@redhat.com>
7301
7302 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
7303 const.
7304 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
7305 (struct die_reader_specs) <buffer>: Likewise.
7306 (die_reader_func_ftype): Make 'info_ptr' const.
7307 (struct line_header) <include_dirs, statement_program_start,
7308 statement_program_end>: Now const.
7309 (struct file_entry) <name>: Likewise.
7310 (struct partial_die_info) <sibling>: Likewise.
7311 (struct dwarf_block) <data>: Likewise.
7312 (dwarf2_read_section): Remove cast.
7313 (dwarf2_get_section_info): Make 'bufp' const.
7314 (read_index_from_section): Constify.
7315 (dw2_get_file_names_reader): Make 'info_ptr' const.
7316 (dw2_get_primary_filename_reader): Likewise.
7317 (read_comp_unit_head): Make 'info_ptr' and return type const.
7318 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
7319 Likewise.
7320 (read_abbrev_offset): Constify.
7321 (dwarf2_create_include_psymtab): Make 'name' const.
7322 (create_debug_types_hash_table): Update.
7323 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
7324 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
7325 Constify.
7326 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
7327 (load_partial_comp_unit_reader): Make 'info_ptr' const.
7328 (read_comp_units_from_section): Constify.
7329 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
7330 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
7331 const.
7332 (dwarf2_compute_name, setup_type_unit_groups): Constify.
7333 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
7334 (create_dwp_hash_table, dwarf2_ranges_read)
7335 (dwarf2_record_block_ranges): Constify.
7336 (read_die_and_children, read_die_and_siblings_1)
7337 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
7338 const.
7339 (read_full_die_1, read_full_die): Make 'info_ptr' const.
7340 (abbrev_table_read_table): Constify.
7341 (load_partial_dies): Make 'info_ptr' const.
7342 (read_partial_die, read_attribute_value, read_attribute): Make
7343 'info_ptr' and return type const.
7344 (read_address, read_initial_length)
7345 (read_checked_initial_length_and_offset, read_offset)
7346 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
7347 const.
7348 (read_direct_string): Make 'buf' and return type const.
7349 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
7350 (read_indirect_string): Make return type const.
7351 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
7352 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
7353 'info_ptr' const.
7354 (read_str_index): Make return type const.
7355 (add_include_dir): Make 'include_dir' const.
7356 (add_file_name): Make 'name' const.
7357 (dwarf_decode_line_header): Constify.
7358 (psymtab_include_file_name): Make return type const.
7359 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
7360 (dwarf2_start_subfile): Make 'filename' const.
7361 (dwarf2_const_value_attr): Make 'bytes' const.
7362 (read_signatured_type_reader): Make 'info_ptr' const.
7363 (decode_locdesc): Constify.
7364 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
7365 const.
7366 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
7367 'mac_end', and return type const.
7368 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
7369 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
7370 type const.
7371 (per_cu_header_read_in): Constify.
7372 * symfile.h (dwarf2_get_section_info): Update.
7373
7374 2013-04-12 Tom Tromey <tromey@redhat.com>
7375
7376 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
7377
7378 2013-04-12 Eli Zaretskii <eliz@gnu.org>
7379
7380 * NEWS: Mention "show configuration", --configuration.
7381 * top.c (print_gdb_configuration): New function, displays the
7382 details about GDB configure-time parameters.
7383 (print_gdb_version): Mention "show configuration".
7384 * cli/cli-cmds.c (show_configuration): New function.
7385 (_initialize_cli_cmds): Add the "show configuration" command.
7386 * main.c (captured_main) <print_configuration>: New static var.
7387 <long_options>: Use it.
7388 If --configuration was given, call print_gdb_configuration.
7389
7390 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7391 Pedro Alves <palves@redhat.com>
7392
7393 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
7394 (generated_files): Add gcore.
7395 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
7396 HAVE_NATIVE_GCORE_HOST.
7397 (gcore): New.
7398 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
7399 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
7400 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
7401 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
7402 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
7403 Add HAVE_NATIVE_GCORE_HOST.
7404 * configure: Regenerate.
7405 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
7406 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
7407 AC_CONFIG_FILES for gcore.
7408 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
7409 gdb_have_gcore.
7410 * gdb_gcore.sh: Rename to ...
7411 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
7412 and GCORE_TRANSFORM_NAME substitutions.
7413
7414 Fix parsing tabs in ${gdb_target_obs}.
7415 * configure.tgt (gdb_have_gcore): Replace case with for and if.
7416
7417 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7418
7419 * remote.c (unpush_and_perror): Add output message final dot.
7420
7421 2013-04-11 Yao Qi <yao@codesourcery.com>
7422
7423 * tracepoint.c (tfile_interp_line): Fit parameters line and
7424 utpp in one line.
7425
7426 2013-04-10 Joel Brobecker <brobecker@adacore.com>
7427
7428 * solib.c (solib_map_sections): Remove code overwriting
7429 SO->SO_NAME with the bfd's filename.
7430
7431 2013-04-10 Pedro Alves <palves@redhat.com>
7432
7433 * cli/cli-decode.c (integer_unlimited_completer): New function.
7434 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
7435 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
7436 completer.
7437 * cli/cli-setshow.c: Include "cli/cli-utils.h".
7438 (is_unlimited_literal): New function.
7439 (do_set_command): Handle literal "unlimited" arguments.
7440 * frame.c (_initialize_frame) <set backtrace limit>: Document
7441 "unlimited".
7442 * printcmd.c (_initialize_printcmd) <set print
7443 max-symbolic-offset>: Add help text.
7444 * record-full.c (_initialize_record_full) <set record full
7445 insn-number-max>: Likewise.
7446 * record.c (_initialize_record) <set record
7447 instruction-history-size, set record function-call-history-size>:
7448 Add help text.
7449 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
7450 help text.
7451 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
7452 Likewise.
7453 * source.c (_initialize_source) <set listsize>: Add help text.
7454 * utils.c (initialize_utils) <set height, set width>: Likewise.
7455 <set pagination>: Mention "set height unlimited".
7456 * valprint.c (_initialize_valprint) <set print elements, set print
7457 repeats>: Document "unlimited".
7458
7459 2013-04-10 Pedro Alves <palves@redhat.com>
7460
7461 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
7462 instead of disconnect_tracing.
7463 * infcmd.c (detach_command, disconnect_command): Call
7464 query_if_trace_running. Adjust.
7465 * top.c: Include "tracepoint.h".
7466 (quit_target): Delete. Contents moved ...
7467 (quit_force): ... here. Wrap each stage of teardown in
7468 TRY_CATCH. Call disconnect_tracing before detaching.
7469
7470 2013-04-10 Hui Zhu <hui@codesourcery.com>
7471 Yao Qi <yao@codesourcery.com>
7472
7473 * configure.ac: Check libbabeltrace is installed.
7474 * config.in: Regenerate.
7475 * configure: Regenerate.
7476 * Makefile.in (LIBBABELTRACE): New.
7477 (CLIBS): Add LIBBABELTRACE.
7478 * ctf.c: Include "exec.h".
7479 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
7480 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
7481 (ctf_save_metadata_header): Define new type aliases in
7482 metadata.
7483 (ctf_write_header): Define event type "tsv_def" and "tp_def"
7484 in metadata. Start a new faked packet for trace status.
7485 (ctf_write_status): Write trace status to CTF.
7486 (ctf_write_uploaded_tsv): Write TSV to CTF.
7487 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
7488 (ctf_write_definition_end): End the faked packet.
7489
7490 (ctx, ctf_iter, trace_dirname): New.
7491 (start_pos): New variable.
7492 (ctf_destroy, ctf_open_dir, ctf_open): New.
7493 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
7494 macros.
7495 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
7496 (ctf_fetch_registers, ctf_xfer_partial): New.
7497 (ctf_get_trace_state_variable_value): New.
7498 (ctf_get_tpnum_from_frame_event): New.
7499 (ctf_get_traceframe_address): New.
7500 (ctf_trace_find, ctf_has_stack): New.
7501 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
7502 (ctf_get_trace_status, ctf_read_status): New.
7503 (_initialize_ctf): New.
7504 * tracepoint.c (get_tracepoint_number): New
7505 (get_uploaded_tsv): Remove 'static'.
7506 (struct traceframe_info, trace_regblock_size): Move it to ...
7507 * tracepoint.h: ... here.
7508 (get_tracepoint_number): Declare it.
7509 (get_uploaded_tsv): Declare it.
7510
7511 * NEWS: Mention new configure option.
7512
7513 2013-04-10 Pedro Alves <palves@redhat.com>
7514 Hui Zhu <hui@codesourcery.com>
7515
7516 * breakpoint.c (dprintf_re_set): New.
7517 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
7518 to dprintf_re_set.
7519
7520 2013-04-09 Joel Brobecker <brobecker@adacore.com>
7521
7522 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
7523 Remove solib-svr4.o from the list.
7524
7525 2013-04-09 Joel Brobecker <brobecker@adacore.com>
7526
7527 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
7528 Use gdb_assert_not_reached instead of invalid boolean expression.
7529
7530 2013-04-09 Pedro Alves <palves@redhat.com>
7531
7532 * remote.c (unpush_and_perror): New function.
7533 (readchar, remote_serial_write): Use it.
7534
7535 2013-04-09 Markus Metzger <markus.t.metzger@intel.com>
7536
7537 * NEWS: Mention new btrace RSP packets.
7538
7539 2013-04-08 Tom Tromey <tromey@redhat.com>
7540
7541 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
7542 long.
7543
7544 2013-04-08 Tom Tromey <tromey@redhat.com>
7545
7546 * maint.c (print_bfd_section_info): Print the section index.
7547 * symmisc.c (dump_msymbols): Print the section index.
7548
7549 2013-04-08 Tom Tromey <tromey@redhat.com>
7550
7551 PR symtab/8424:
7552 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
7553 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
7554 * breakpoint.c (resolve_sal_pc): Update.
7555 * elfread.c (elf_gnu_ifunc_record_cache): Update.
7556 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
7557 (minsym_lookup_iterator_cb): Use it.
7558 (default_read_var_value): Update.
7559 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
7560 Update.
7561 * infcmd.c (jump_command): Update.
7562 * linespec.c (minsym_found): Update.
7563 * maint.c (maintenance_translate_address): Update.
7564 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
7565 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
7566 * parse.c (write_exp_msymbol): Update.
7567 * printcmd.c (address_info): Update.
7568 * psymtab.c (find_pc_sect_psymbol): Update.
7569 (fixup_psymbol_section): Check SYMBOL_SECTION, not
7570 SYMBOL_OBJ_SECTION.
7571 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
7572 Don't initialize SYMBOL_OBJ_SECTION.
7573 * spu-tdep.c (spu_catch_start): Update.
7574 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
7575 * symmisc.c (dump_msymbols, print_symbol): Update.
7576 * symtab.c (fixup_section): Don't set 'obj_section'. Change
7577 how fallback section is computed.
7578 (fixup_symbol_section): Update.
7579 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
7580 Update.
7581 (allocate_symbol, initialize_symbol, allocate_template_symbol):
7582 Initialize SYMBOL_SECTION.
7583 * symtab.h (struct general_symbol_info) <section>: Update comment.
7584 <obj_section>: Remove.
7585 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
7586 (SYMBOL_OBJFILE): New macro.
7587
7588 2013-04-08 Tom Tromey <tromey@redhat.com>
7589
7590 * coffread.c (record_minimal_symbol): Update.
7591 * dbxread.c (record_minimal_symbol): Update.
7592 * elfread.c (record_minimal_symbol): Update.
7593 * machoread.c (macho_symtab_add_minsym): Update.
7594 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
7595 Update.
7596 * minsyms.c (prim_record_minimal_symbol): Update.
7597 (prim_record_minimal_symbol_full): Remove 'bfd_section'
7598 argument.
7599 (prim_record_minimal_symbol_and_info): Likewise.
7600 * minsyms.h (prim_record_minimal_symbol_full)
7601 (prim_record_minimal_symbol_and_info): Update.
7602 * symtab.c (allocate_symbol, initialize_symbol)
7603 (allocate_template_symbol): Initialize SYMBOL_SECTION.
7604 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
7605 Update.
7606
7607 2013-04-08 Tom Tromey <tromey@redhat.com>
7608
7609 PR symtab/8423:
7610 * solib-som.c (som_solib_section_offsets): Use BFD section
7611 indices. Set offsets for all sections.
7612 * somread.c (som_symtab_read): Compute BFD section for
7613 symbol. Use prim_record_minimal_symbol_and_info.
7614 (som_symfile_read): Fix comment.
7615 (struct find_section_offset_arg): New.
7616 (find_section_offset, set_section_index): New functions.
7617 (som_symfile_offsets): Use set_section_index to compute
7618 section indices.
7619
7620 2013-04-08 Tom Tromey <tromey@redhat.com>
7621
7622 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
7623 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
7624 gdb_bfd_section_index.
7625 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
7626 New functions.
7627 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
7628 Declare.
7629 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
7630 Update.
7631 * objfiles.c (add_to_objfile_sections_full): New function.
7632 (add_to_objfile_sections): Use it.
7633 (build_section_table): Rewrite.
7634 (objfile_relocate1): Use gdb_bfd_section_index. Update.
7635 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
7636 (struct objfile) <sections>: Update comment.
7637 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
7638 is NULL.
7639 (ALL_OBJSECTIONS): Use it.
7640 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
7641 * solib-frv.c (frv_relocate_main_executable): Update.
7642 * solib-target.c (solib_target_relocate_section_addresses):
7643 Use gdb_bfd_section_index.
7644 * symfile.c (build_section_addr_info_from_section_table):
7645 Use gdb_bfd_section_index.
7646 (build_section_addr_info_from_bfd, place_section): Likewise.
7647 * symtab.c (fixup_section): Update.
7648 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
7649
7650 2013-04-08 Tom Tromey <tromey@redhat.com>
7651
7652 * minsyms.h (struct bound_minimal_symbol): New.
7653 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
7654 Remove objfile argument.
7655 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
7656 Return bound_minimal_symbol.
7657 * minsyms.c (lookup_minimal_symbol_by_pc_1)
7658 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
7659 Return bound_minimal_symbol.
7660 (in_gnu_ifunc_stub): Update.
7661 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
7662 Remove 'objfile_p' argument.
7663 (lookup_solib_trampoline_symbol_by_pc): Update.
7664 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
7665 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
7666 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
7667 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
7668 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
7669 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
7670 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
7671 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
7672 stack.c, symtab.c, tui/tui-disasm.c: Update.
7673
7674 2013-04-08 Tom Tromey <tromey@redhat.com>
7675
7676 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
7677 Use symbol's obstack, not an objfile.
7678 * coffread.c (process_coff_symbol): Update.
7679 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
7680 * jv-lang.c (add_class_symbol): Update.
7681 * mdebugread.c (new_symbol): Update.
7682 * minsyms.c (prim_record_minimal_symbol_full)
7683 (terminate_minimal_symbol_table): Update.
7684 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
7685 * stabsread.c (define_symbol, read_enum_type): Update.
7686 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
7687 Handle Ada specially.
7688 (symbol_set_language): Add 'obstack' argument.
7689 (symbol_set_names): Update.
7690 (symbol_natural_name, symbol_demangled_name): Always use
7691 ada_decode_symbol.
7692 * symtab.h (struct general_symbol_info)
7693 <language_specific::obstack>: New field.
7694 <ada_mangled>: New field.
7695 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
7696 (symbol_set_language): Update.
7697
7698 2013-04-08 Tom Tromey <tromey@redhat.com>
7699
7700 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
7701 Take an obstack, not an objfile.
7702 (symbol_set_names): Update.
7703 * symtab.h (symbol_set_demangled_name): Update.
7704
7705 2013-04-08 Tom Tromey <tromey@redhat.com>
7706
7707 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
7708 allocate_symbol.
7709 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
7710 (read_func_scope): Call allocate_template_symbol.
7711 (new_symbol_full): Call allocate_symbol.
7712 * jit.c (finalize_symtab): Call allocate_symbol.
7713 * jv-lang.c (add_class_symbol): Call allocate_symbol.
7714 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
7715 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
7716 (common_block_end): Call allocate_symbol.
7717 * symtab.c (allocate_symbol, initialize_symbol)
7718 (allocate_template_symbol): New functions.
7719 * symtab.c (allocate_symbol, initialize_symbol)
7720 (allocate_template_symbol): Declare.
7721 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
7722
7723 2013-04-08 Pedro Alves <palves@redhat.com>
7724 Keith Seitz <keiths@redhat.com>
7725
7726 * breakpoint.c (create_breakpoint): Rename
7727 "parse_condition_and_thread" parameter to "parse_arg". Update
7728 describing comment. If !PARSE_ARG, then error out if ARG is not
7729 the empty string after extracting the location.
7730 * breakpoint.h (create_breakpoint): Rename
7731 "parse_condition_and_thread" parameter to "parse_arg".
7732
7733 2013-04-08 Aleksandar Ristovski <aristovski@qnx.com
7734
7735 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
7736
7737 2013-04-07 Yao Qi <yao@codesourcery.com>
7738
7739 * remote.c (remote_trace_find): Change type of parameters 'addr1'
7740 and 'addr2' to CORE_ADDR.
7741 * target.c (update_current_target): Update.
7742 * target.h (struct target_ops) <to_trace_find>: Change parameter
7743 type to CORE_ADDR.
7744 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
7745 'addr2' to CORE_ADDR.
7746 (tfile_trace_find): Likewise.
7747 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
7748 Change local variable 'addr' to type CORE_ADDR.
7749 * tracepoint.h (tfind_1): Update declaration.
7750
7751 2013-04-06 Eli Zaretskii <eliz@gnu.org>
7752
7753 * windows-nat.c (windows_get_absolute_argv0): Move from here...
7754 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
7755 Include main.h.
7756
7757 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
7758 here...
7759 * main.h (windows_get_absolute_argv0): ...to here.
7760
7761 2013-04-05 Doug Evans <dje@google.com>
7762
7763 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
7764 (read_cutu_die_from_dwo): Add comments.
7765 (read_structure_type): Update comment.
7766 (read_enumeration_type, read_namespace_type): Update comment.
7767 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
7768
7769 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7770
7771 Convert man pages to texinfo, new gdbinit.5 texinfo page.
7772 * Makefile.in (gdb.z): Remove.
7773 (install-only): Remove $(man1dir) and gdb.1 installation.
7774 * gdb.1: Remove.
7775
7776 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7777
7778 Fix compatibility with Linux kernel 3.8.3.
7779 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
7780 to more inner block. Remove parsing of NUMBER from outer block.
7781 Parse NUMBER only if KEYWORD has been identified.
7782
7783 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7784
7785 Fix variable name shadowing.
7786 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
7787 filename to mapsfilename and update its uses.
7788
7789 2013-04-05 Eli Zaretskii <eliz@gnu.org>
7790
7791 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
7792 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
7793 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
7794 details of the problem.
7795
7796 2013-04-04 Pedro Alves <palves@redhat.com>
7797 Hui Zhu <hui@codesourcery.com>
7798
7799 * breakpoint.c (validate_commands_for_breakpoint): If validating a
7800 tracepoint, reset its STEP_COUNT and call validate_actionline.
7801
7802 2013-04-03 Doug Evans <dje@google.com>
7803
7804 * dwarf2read.c (read_die_and_siblings_1): Renamed from
7805 read_die_and_siblings.
7806 (read_die_and_siblings): New function.
7807 (read_cutu_die_from_dwo): Dump die if requested.
7808 (read_die_and_children): Call read_full_die_1 and
7809 read_die_and_siblings_1.
7810 (read_full_die): Dump die if requested.
7811
7812 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
7813
7814 * dwarf2read.c (struct dwo_file): New member comp_dir.
7815 Rename member name to dwo_name. All uses updated.
7816 (hash_dwo_file): Include comp_dir in computation.
7817 (eq_dwo_file): Ditto.
7818 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
7819 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
7820
7821 * psymtab.c (read_psymtabs_with_fullname): Don't call
7822 psymtab_to_fullname if the basenames are different.
7823
7824 2013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7825
7826 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
7827 New entry about "fullname" presence.
7828
7829 2013-04-03 Pedro Alves <palves@redhat.com>
7830
7831 * NEWS: Mention x86_64/Cygwin as new native configuration.
7832
7833 2013-04-02 Doug Evans <dje@google.com>
7834
7835 * dwarf2read.c (read_structure_type): Fix typo in comment.
7836
7837 2013-04-02 Pedro Alves <palves@redhat.com>
7838
7839 * NEWS: Mention "set/show debug aarch64", "set/show debug
7840 coff-pe-read" and "set/show debug mach-o".
7841
7842 2013-04-02 Pedro Alves <palves@redhat.com>
7843
7844 * NEWS: Mention "set/show remote trace-buffer-size-packet".
7845
7846 2013-04-02 Eli Zaretskii <eliz@gnu.org>
7847
7848 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
7849 gdb_string.h is now in common/.
7850
7851 2013-04-02 Pedro Alves <palves@redhat.com>
7852
7853 * NEWS: Move "set debug notification" and "set trace-buffer-size"
7854 under "New options".
7855
7856 2013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7857
7858 Revert this patch:
7859 PR gdb/15275
7860 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7861
7862 2013-04-02 Pedro Alves <palves@redhat.com>
7863
7864 PR gdb/15275
7865
7866 * remote.c (send_interrupt_sequence): Use remote_serial_write.
7867 (remote_serial_write): New function.
7868 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
7869
7870 2013-04-01 Jiong Wang <jiwang@tilera.com>
7871
7872 * NEWS: Mention TILE-Gx in "New native configurations" and
7873 "New targets" sections.
7874
7875 2013-04-01 Doug Evans <dje@google.com>
7876
7877 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
7878 (process_enumeration_scope): Simplify.
7879
7880 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
7881 type_unit_group ...
7882 (struct signatured_type): ... to here.
7883 (sig_type_ptr): New typedef.
7884 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
7885 out of union 't'. All uses updated.
7886 (dw2_get_file_names_reader): Assert not called for a type unit.
7887 (dw2_get_file_names): Assert not called for a type unit or type
7888 unit group.
7889 (build_type_psymtabs_reader): Assert called for a type unit.
7890 (build_type_psymtab_dependencies): Assert called for a type unit group.
7891
7892 * dwarf2read.c (free_dwo_file): Add comment.
7893 (dwarf2_per_objfile_free): Unref dwp bfd.
7894
7895 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
7896
7897 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
7898 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
7899 (read_pe_exported_syms): Remove unused 'exportix'.
7900 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
7901 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
7902 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
7903
7904 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
7905
7906 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
7907 (print_it_watchpoint): Remove unused 'bl'.
7908 (say_where): Remove unused 'uiout'.
7909 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
7910 (bkpt_breakpoint_hit): Remove unused 'b'.
7911 (internal_bkpt_print_it): Remove unused 'uiout'.
7912 * buildsym.c (augment_type_symtab): Remove unused 'i'.
7913
7914 2013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
7915
7916 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
7917 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
7918
7919 2013-03-29 Doug Evans <dje@google.com>
7920
7921 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
7922 Delete arg is_dwp. All callers updated.
7923 (open_dwp_file): New function.
7924 (open_and_init_dwp_file): Call it.
7925 (get_dwp_file): New function.
7926 (lookup_dwo_cutu): Call it.
7927
7928 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
7929 unnecessary, cleanup.
7930
7931 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
7932
7933 * dwarf2read.c (read_cutu_die_from_dwo): New function.
7934 (lookup_dwo_unit): New function.
7935 (init_cutu_and_read_dies): Move DWO handling to new functions.
7936
7937 * dwarf2read.c (struct signatured_type): Tweak comment.
7938 (struct dwo_unit): Tweak comment.
7939 (create_debug_types_hash_table): Tweak comment. Reformat long line.
7940 (create_dwo_debug_info_hash_table): Tweak comment.
7941 (dwarf2_per_cu_offset_and_type): Tweak comment.
7942
7943 * dwarf2read.c (lookup_signatured_type): Remove complaint about
7944 missing .debug_types section.
7945
7946 2013-03-29 Yao Qi <yao@codesourcery.com>
7947
7948 * corelow.c: Include "completer.h".
7949 (_initialize_corelow): Call add_target_with_completer with
7950 argument 'filename_completer'.
7951 * tracepoint.c: Likewise.
7952 * exec.c (_initialize_exec): Likewise.
7953 * target.c (add_target): Rename to ...
7954 (add_target_with_completer): ... this. Call set_cmd_completer
7955 if parameter completer is not NULL.
7956 (add_target): New.
7957 * target.h: Include "command.h".
7958 (add_target_with_completer): Declare it.
7959
7960 2013-03-28 Joel Brobecker <brobecker@adacore.com>
7961
7962 * coffread.c (is_import_fixup_symbol): New function.
7963 (record_minimal_symbol): Use is_import_fixup_symbol to
7964 detect import fixup symbols, and discard them.
7965
7966 2013-03-28 Doug Evans <dje@google.com>
7967
7968 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
7969 types hash table until we know we need it.
7970
7971 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
7972 index numbers.
7973
7974 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
7975 All callers updated.
7976 (dw2_print_stats): Print #read CUs too.
7977 (dump_die_shallow): Print signatured types better.
7978
7979 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
7980 info_or_types_section to section. All uses updated.
7981 (struct dwo_unit): Ditto.
7982
7983 2013-03-28 Pedro Alves <palves@redhat.com>
7984
7985 * NEWS (New options): New section.
7986 (New options): Mention set/show remote trace-status-packet.
7987 * remote.c (PACKET_qTStatus): New enumeration value.
7988 (remote_get_trace_status): Skip sending qTStatus if the packet is
7989 disabled. Use packet_ok.
7990 (_initialize_remote): Register a configuration command for
7991 qTStatus packet.
7992
7993 2013-03-28 Doug Evans <dje@google.com>
7994
7995 * symfile.c (find_separate_debug_file): Add comment.
7996 (terminate_after_last_dir_separator): Tweak comment.
7997
7998 * dwarf2read.c (create_partial_symtab): Add forward decl.
7999 (create_partial_symtab): Move to be closer to other psymtab functions.
8000 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
8001
8002 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
8003 (compute_symtab_includes): Remove unnecessary forward declaration.
8004 (die_needs_namespace): Add comment marking group of functions for
8005 dwarf2 name computation.
8006
8007 * typeprint.c (_initialize_typeprint): Improve type help text.
8008
8009 * python/python.c (finish_python_initialization): Provide suggestion
8010 for how to tell gdb to find its python files.
8011
8012 2013-03-28 Pedro Alves <palves@redhat.com>
8013
8014 PR gdb/15294
8015
8016 * source.c (_initialize_source): Change back "set listsize" to an
8017 integer command.
8018
8019 2013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
8020
8021 PR gdb/15275
8022 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
8023
8024 2013-03-27 Pedro Alves <palves@redhat.com>
8025
8026 * top.c (history_size): Rename to ...
8027 (history_size_setshow_var): ... this. Add comment.
8028 (show_commands): Use readline's 'history_length' instead of
8029 computing the history length by calling history_get in a loop.
8030 (set_history_size_command): Error out for sizes over INT_MAX.
8031 Restore previous history size on invalid size.
8032 (init_history): If HISTSIZE is negative, leave the history size as
8033 zero. Add comments.
8034 (init_main): Adjust.
8035
8036 2013-03-27 Pedro Alves <palves@redhat.com>
8037
8038 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
8039 coff_pe_read" command to "set debug coff-pe-read".
8040
8041 2013-03-27 Markus Metzger <markus.t.metzger@intel.com>
8042
8043 * record.c (command_size_to_target_size): Fix size comparison.
8044 Change parameter type from pointer to integer to integer.
8045 Update all users.
8046
8047 2013-03-27 Pierre Muller <muller@sourceware.org>
8048
8049 * windows-nat.c (handle_output_debug_string): Avoid typecast
8050 from integer of different size warning.
8051
8052 2013-03-26 Joel Brobecker <brobecker@adacore.com>
8053
8054 * windows-nat.c (handle_output_debug_string): Add empty line
8055 after local block variable definition.
8056
8057 2013-03-26 Pedro Alves <palves@redhat.com>
8058
8059 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
8060 (net_open): Make 'polls' local unsigned.
8061
8062 2013-03-26 Pedro Alves <palves@redhat.com>
8063
8064 * remote.c (_initialize_remote): Make "set remoteaddresssize"
8065 a zuinteger command instead of uinteger.
8066
8067 2013-03-26 Pedro Alves <palves@redhat.com>
8068
8069 * record-full.c (record_full_insn_num): Make it unsigned.
8070 (record_full_check_insn_num, record_full_message)
8071 (record_full_registers_change, record_full_xfer_partial): Remove
8072 record_full_insn_max_num check (it's always != 0).
8073 (record_full_info, record_full_restore): Use %u as format string.
8074 (): Use %u as format string.
8075 (set_record_full_insn_max_num): Remove record_full_insn_max_num
8076 check (it's always != 0).
8077
8078 2013-03-26 Pedro Alves <palves@redhat.com>
8079
8080 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
8081 and "set dcache size" commands zuinteger instead of uinteger.
8082
8083 2013-03-26 Pedro Alves <palves@redhat.com>
8084
8085 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
8086 command zuinteger instead of uinteger.
8087
8088 2013-03-26 Pedro Alves <palves@redhat.com>
8089
8090 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
8091 zuinteger instead of uinteger.
8092
8093 2013-03-26 Pedro Alves <palves@redhat.com>
8094
8095 * record.c (record_insn_history_size_setshow_var)
8096 (record_call_history_size_setshow_var): New globals.
8097 (command_size_to_target_size): New function.
8098 (cmd_record_insn_history, cmd_record_call_history): Use
8099 command_size_to_target_size instead of cast.
8100 (validate_history_size, set_record_insn_history_size)
8101 (set_record_call_history_size): New functions.
8102 (_initialize_record): Install set_record_insn_history_size and
8103 set_record_call_history_size as "set" hooks of "set record
8104 instruction-history-size" and "set record
8105 function-call-history-size".
8106
8107 2013-03-26 Pedro Alves <palves@redhat.com>
8108
8109 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
8110 use with history_max_entries use. Remove FIXME note.
8111
8112 2013-03-26 Markus Metzger <markus.t.metzger@intel.com>
8113
8114 * record-btrace.c (record_btrace_close): Call
8115 record_btrace_auto_disable.
8116
8117 2013-03-25 Joel Brobecker <brobecker@adacore.com>
8118
8119 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
8120
8121 2013-03-25 Doug Evans <dje@google.com>
8122
8123 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
8124
8125 2013-03-25 Tom Tromey <tromey@redhat.com>
8126
8127 PR symtab/11462:
8128 * c-exp.y (exp): Add new productions for destructors after '.' and
8129 '->'.
8130 (write_destructor_name): New function.
8131
8132 2013-03-25 Tom Tromey <tromey@redhat.com>
8133
8134 PR c++/9197:
8135 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
8136 value_struct_elt, not lookup_struct_elt_type.
8137 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
8138 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
8139 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
8140
8141 2013-03-25 Yao Qi <yao@codesourcery.com>
8142
8143 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
8144 instead of '_mkdir'.
8145
8146 2013-03-23 Eli Zaretskii <eliz@gnu.org>
8147
8148 * windows-nat.c (windows_get_absolute_argv0): New function.
8149 * windows-nat.h: Add its prototype.
8150
8151 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
8152 Use IS_DIR_SEPARATOR instead of looking for a character inside
8153 SLASH_STRING. Include filenames.h.
8154 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
8155 relocate_gdb_directory works when passed gdb_program_name.
8156 Include windows-nat.h.
8157
8158 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
8159
8160 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
8161 * remote.c (trace_error): Remove the special handling of '2'.
8162 (readchar) <SERIAL_EOF>
8163 (readchar) <SERIAL_ERROR>
8164 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
8165 (remote_get_trace_status): Call throw_exception if EX is
8166 TARGET_CLOSE_ERROR.
8167 * utils.c (perror_with_name): Rename to ...
8168 (throw_perror_with_name): ... here. New parameter errcode, describe it
8169 in the function comment.
8170 (perror_with_name): New function wrapper.
8171 * utils.h (enum errors): New stub declaration.
8172 (throw_perror_with_name): New declaration.
8173
8174 2013-03-22 Pedro Alves <palves@redhat.com>
8175 Yao Qi <yao@codesourcery.com>
8176 Mark Kettenis <kettenis@gnu.org>
8177
8178 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
8179 Don't let the user set the value to UINT_MAX directly.
8180 <var_integer>: Don't let the user set the value to INT_MAX
8181 directly.
8182
8183 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
8184
8185 * remote.c (remote_unpush_target): New function.
8186 (remote_open_1): Remove two pop_target calls, update one comment, add
8187 comment to target_preopen call. Replace pop_target call by
8188 remote_unpush_target call.
8189 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
8190 pop_target calls by remote_unpush_target calls.
8191
8192 2013-03-22 Pedro Alves <palves@redhat.com>
8193
8194 * linux-nat.c (linux_child_follow_fork): Don't call
8195 linux_enable_event_reporting.
8196 (linux_handle_extended_wait): Don't call
8197 linux_enable_event_reporting.
8198
8199 2013-03-22 Pedro Alves <palves@redhat.com>
8200
8201 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
8202 use it to rewrite the trampoline buffers with type gdb_byte[], and
8203 undefine the macro. Remove char* cast.
8204
8205 2013-03-21 Doug Evans <dje@google.com>
8206
8207 New commands "mt set per-command {space,time,symtab} {on,off}".
8208 * NEWS: Add entry.
8209 * event-top.c: #include "maint.h".
8210 * main.c: #include "maint.h".
8211 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
8212 timeval-utils.h, maint.h, cli/cli-setshow.h.
8213 (per_command_time, per_command_space): New static globals.
8214 (per_command_symtab): New static global.
8215 (per_command_setlist, per_command_showlist): New static globals.
8216 (struct cmd_stats): Move here from utils.c.
8217 (set_per_command_time): Renamed from set_display_time in utils.c
8218 and moved here. All callers updated.
8219 (set_per_command_space): Renamed from set_display_space in utils.c
8220 and moved here. All callers updated.
8221 (count_symtabs_and_blocks): New function.
8222 (report_command_stats): Moved here from utils.c. Add support for
8223 printing symtab stats. Only print data if enabled before command
8224 executed.
8225 (make_command_stats_cleanup): Ditto.
8226 (sert_per_command_cmd, show_per_command_cmd): New functions.
8227 (_initialize_maint_cmds): Add new commands
8228 mt set per-command {space,time,symtab} {on,off}.
8229 * maint.h: New file.
8230 * top.c: #include "maint.h".
8231 * utils.c (reset_prompt_for_continue_wait_time): New function.
8232 (get_prompt_for_continue_wait_time): New function.
8233 * utils.h (reset_prompt_for_continue_wait_time): Declare
8234 (get_prompt_for_continue_wait_time): Declare.
8235 (make_command_stats_cleanup): Moved to maint.h.
8236 (set_display_time, set_display_space): Moved to maint.h and renamed
8237 to set_per_command_time, set_per_command_space.
8238 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
8239 parse_binary_operation and made non-static. Don't call error,
8240 just return an error marker. All callers updated.
8241 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
8242
8243 2013-03-21 Tom Tromey <tromey@redhat.com>
8244
8245 * symfile.c (alloc_section_addr_info): Update header. Don't set
8246 'num_sections' field.
8247 (build_section_addr_info_from_section_table): Set 'num_sections'.
8248 (build_section_addr_info_from_bfd): Likewise.
8249 (build_section_addr_info_from_objfile): Remove dead loop
8250 condition.
8251 (free_section_addr_info): Unconditionally call xfree.
8252 (relative_addr_info_to_section_offsets, addrs_section_sort)
8253 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
8254 condition.
8255 (syms_from_objfile_1): Remove dead 'if' condition. Check
8256 'num_sections'.
8257 (add_symbol_file_command): Set 'num_sections'.
8258 * symfile-mem.c (symbol_file_add_from_memory): Set
8259 'num_sections'.
8260 * somread.c (som_symfile_offsets): Remove dead loop condition.
8261 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
8262 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
8263
8264 2013-03-21 Tom Tromey <tromey@redhat.com>
8265
8266 * tracepoint.h (decode_agent_options): Add 'trace_string'
8267 argument.
8268 * tracepoint.c (decode_agent_options): Add 'trace_string'
8269 argument.
8270 (validate_actionline): Update.
8271 (collect_symbol): Add 'trace_string' argument.
8272 (struct add_local_symbols_data) <trace_string>: New field.
8273 (do_collect_symbol): Update.
8274 (add_local_symbols): Add 'trace_string' argument.
8275 (encode_actions_1): Update.
8276 (trace_dump_actions): Update.
8277 * dwarf2loc.c (access_memory): Update.
8278 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
8279 * ax-general.c (new_agent_expr): Update.
8280 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
8281 (gen_trace_for_return_address): Add argument.
8282 (trace_kludge, trace_string_kludge): Remove.
8283 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
8284 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
8285 (gen_trace_for_var): Add 'trace_string' argument.
8286 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
8287 (gen_printf, agent_eval_command_one): Update.
8288
8289 2013-03-21 Tom Tromey <tromey@redhat.com>
8290
8291 PR exp/15109:
8292 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
8293 Handle FILENAME token.
8294
8295 2013-03-21 Tom Tromey <tromey@redhat.com>
8296
8297 * c-exp.y (YYPRINT): Define.
8298 (c_print_token): New function.
8299
8300 2013-03-21 Tom Tromey <tromey@redhat.com>
8301
8302 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
8303
8304 2013-03-21 Yao Qi <yao@codesourcery.com>
8305
8306 * ctf.c: Include "gdb_stat.h".
8307 [USE_WIN32API]: New macro 'mkdir'.
8308 (ctf_start): Use permission bits macros if they are defined.
8309
8310 2013-03-20 Keith Seitz <keiths@redhat.com>
8311
8312 * breakpoint.h (struct breakpoint): Add comment to
8313 extra_string indicating that this member is mallod'd.
8314 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
8315
8316 2013-03-20 Pedro Alves <palves@redhat.com>
8317
8318 PR gdb/15289
8319
8320 * cli/cli-setshow.c (do_set_command)
8321 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
8322 the result of parsing the command argument. Throw error if the
8323 value is greater than UINT_MAX. Print the invalid value with
8324 plongest.
8325 <var_integer, var_zinteger>: Use LONGEST for variable holding the
8326 result of parsing the command argument. Throw error if the value
8327 is greater than INT_MAX, not greater or equal. Also throw error
8328 if the value is less than INT_MIN. Print the invalid value with
8329 plongest.
8330 <var_zuinteger_unlimited>: Throw error if the value is greater
8331 than INT_MAX, not greater or equal.
8332 (do_show_command) <var_integer, var_zinteger,
8333 var_zuinteger_unlimited>: Use %d for printing int, not %u.
8334
8335 2013-03-20 Tom Tromey <tromey@redhat.com>
8336
8337 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
8338 if possible.
8339 * dwarf2read.c (read_func_scope): Remove old FIXME.
8340 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
8341 not LOC_COMPUTED.
8342 * findvar.c (symbol_read_needs_frame, default_read_var_value):
8343 Unconditionally call via computed ops, if possible.
8344 * printcmd.c (address_info): Unconditionally call via computed ops,
8345 if possible.
8346 * stack.c (read_frame_arg): Unconditionally call via computed ops,
8347 if possible.
8348 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
8349 * tracepoint.c (scope_info): Unconditionally call via computed ops,
8350 if possible.
8351
8352 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8353 Tom Tromey <tromey@redhat.com>
8354
8355 PR symtab/8421:
8356 * coffread.c (coff_register_index): New global.
8357 (process_coff_symbol, coff_read_enum_type): Set
8358 SYMBOL_ACLASS_INDEX.
8359 (_initialize_coffread): Initialize new global.
8360 * dwarf2loc.c (locexpr_find_frame_base_location)
8361 (dwarf2_block_frame_base_locexpr_funcs)
8362 (loclist_find_frame_base_location)
8363 (dwarf2_block_frame_base_loclist_funcs): New.
8364 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
8365 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
8366 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
8367 (dwarf2_block_frame_base_loclist_funcs): New.
8368 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
8369 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
8370 globals.
8371 (read_func_scope): Update.
8372 (fixup_go_packaging, mark_common_block_symbol_computed)
8373 (var_decode_location, new_symbol_full, dwarf2_const_value):
8374 Set SYMBOL_ACLASS_INDEX.
8375 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
8376 (_initialize_dwarf2_read): Initialize new globals.
8377 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
8378 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
8379 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
8380 globals.
8381 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
8382 (_initialize_mdebugread): Initialize new globals.
8383 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
8384 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
8385 (stab_register_index, stab_regparm_index): New globals.
8386 (define_symbol, read_enum_type, common_block_end): Set
8387 SYMBOL_ACLASS_INDEX.
8388 (_initialize_stabsread): Initialize new globals.
8389 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
8390 globals.
8391 (MAX_SYMBOL_IMPLS): New define.
8392 (register_symbol_computed_impl, register_symbol_block_impl)
8393 (register_symbol_register_impl)
8394 (initialize_ordinary_address_classes): New functions.
8395 (_initialize_symtab): Call initialize_ordinary_address_classes.
8396 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
8397 (struct symbol_impl): New.
8398 (SYMBOL_ACLASS_BITS): New define.
8399 (struct symbol) <aclass, ops>: Remove fields.
8400 <aclass_index>: New field.
8401 (symbol_impls): Declare.
8402 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
8403 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
8404 (register_symbol_computed_impl, register_symbol_block_impl)
8405 (register_symbol_register_impl): Declare.
8406 (struct symbol_computed_ops): Add location_has_loclist.
8407 (struct symbol_block_ops): New.
8408 (SYMBOL_BLOCK_OPS): New.
8409 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
8410
8411 2013-03-20 Tom Tromey <tromey@redhat.com>
8412
8413 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
8414 (print_partial_symbols, recursively_search_psymtabs): Use
8415 PSYMBOL_CLASS.
8416
8417 2013-03-20 Pierre Muller <muller@sourceware.org>
8418
8419 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
8420 addtion, subtraction, multiplication and division binary operator.
8421
8422 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8423
8424 Code cleanup.
8425 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
8426 * bsd-kvm.c (bsd_kvm_close): Likewise.
8427 * bsd-uthread.c (bsd_uthread_close): Likewise.
8428 * corelow.c (core_close): Likewise.
8429 (core_close_cleanup): Remove parameter quitting from a caller.
8430 * event-top.c (async_disconnect): Likewise.
8431 * exec.c (exec_close_1): Remove parameter quitting.
8432 * go32-nat.c (go32_close): Likewise.
8433 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
8434 parameter quitting from a caller.
8435 * mips-linux-nat.c (super_close): Remove parameter quitting from the
8436 variable.
8437 (mips_linux_close): Remove parameter quitting. Remove parameter
8438 quitting from a caller.
8439 * monitor.c (monitor_close): Remove parameter quitting.
8440 * monitor.h (monitor_close): Likewise.
8441 * record-btrace.c (record_btrace_close): Likewise.
8442 * record-full.c (record_full_close): Likewise.
8443 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
8444 it also from fprintf_unfiltered.
8445 * remote-mips.c (mips_close): Remove parameter quitting.
8446 (mips_detach): Remove parameter quitting from a caller.
8447 * remote-sim.c (gdbsim_close): Remove parameter quitting.
8448 (gdbsim_close): Remove duplicate function comment. Remove parameter
8449 quitting and remove it also from printf_filtered.
8450 * remote.c (remote_close): Remove parameter quitting.
8451 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
8452 * target.c (update_current_target): Remove parameter int from to_close
8453 de_fault.
8454 (push_target, unpush_target, pop_target): Remove parameter quitting from
8455 a caller.
8456 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
8457 Remove parameter quitting from a caller.
8458 (target_preopen): Remove parameter quitting from a caller.
8459 (target_close): Remove parameter quitting. Remove parameter quitting
8460 from a caller two times. Remove parameter quitting also from
8461 fprintf_unfiltered.
8462 * target.h (struct target_ops): Remove parameter quitting and as int
8463 from fields to_xclose and to_close.
8464 (extern struct target_ops current_target):
8465 (target_close, pop_all_targets): Remove parameter quitting. Update the
8466 comment.
8467 (pop_all_targets_above): Remove parameter quitting.
8468 * top.c (quit_target): Remove parameter quitting from a caller.
8469 * tracepoint.c (tfile_close): Remove parameter quitting.
8470 * windows-nat.c (windows_close): Remove parameter quitting.
8471
8472 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
8473
8474 * windows-nat.c (handle_output_debug_string): Replace call
8475 to string_to_core_addr with call to strtoull.
8476
8477 2013-03-20 Yao Qi <yao@codesourcery.com>
8478
8479 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
8480 and write it to CTF metadata.
8481
8482 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
8483
8484 * windows-nat.c (handle_output_debug_string): Change type of n to
8485 SIZE_T to avoid crash on 64 bit systems.
8486
8487 2013-03-17 Eli Zaretskii <eliz@gnu.org>
8488
8489 * python/python-internal.h (HAVE_SNPRINTF)
8490 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
8491 about redefinition of snprintf by pyerrors.h.
8492
8493 2013-03-15 Steve Ellcey <sellcey@mips.com>
8494
8495 * remote-sim.c (sim_command_completer): Make char arguments const.
8496
8497 2013-03-15 Tom Tromey <tromey@redhat.com>
8498
8499 PR c++/15116:
8500 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
8501
8502 2013-03-14 Tom Tromey <tromey@redhat.com>
8503
8504 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
8505 New fields.
8506 (get_file_crc): Move from symfile.c.
8507 (gdb_bfd_crc): New function.
8508 * gdb_bfd.h (gdb_bfd_crc): Declare.
8509 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
8510 * symfile.c (get_file_crc): Move to gdb_bfd.c.
8511 (separate_debug_file_exists): Use gdb_bfd_crc.
8512
8513 2013-03-14 Tom Tromey <tromey@redhat.com>
8514
8515 * symfile.c (get_debug_link_info): Remove.
8516 (find_separate_debug_file_by_debuglink): Use
8517 bfd_get_debug_link_info.
8518
8519 2013-03-14 Tom Tromey <tromey@redhat.com>
8520
8521 * symtab.c (error_in_psymtab_expansion): New function.
8522 (lookup_symbol_aux_quick)
8523 (basic_lookup_transparent_type_quick): Remove "last resort"
8524 code. Use error_in_psymtab_expansion.
8525
8526 2013-03-14 Doug Evans <dje@google.com>
8527 Jan Kratochvil <jan.kratochvil@redhat.com>
8528
8529 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
8530 any successful compare_filenames_for_search or FILENAME_CMP.
8531 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
8532 * symtab.c (iterate_over_some_symtabs): Likewise.
8533
8534 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8535
8536 * source.c (print_source_lines_base): Make a local copy of
8537 symtab_to_fullname.
8538
8539 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
8540 Jan Kratochvil <jan.kratochvil@redhat.com>
8541
8542 * source.c (print_source_lines_base): Suppress "file" for TUI.
8543
8544 2013-03-14 Keith Seitz <keiths@redhat.com>
8545 Alan Matsuoka <alanm@redhat.com>
8546
8547 PR c++/15203
8548 PR c++/15210
8549 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
8550 TYPE_CODE_METHOD.
8551 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
8552 symbols.
8553
8554 2013-03-14 Yao Qi <yao@codesourcery.com>
8555
8556 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
8557 status to tfile if trace is stopped by command 'tstop'.
8558
8559 2013-03-14 Yao Qi <yao@codesourcery.com>
8560
8561 * tracepoint.c (tfile_write_status): Write trace notes and user
8562 name into tfile if they are not NULL.
8563
8564 2013-03-14 Hui Zhu <hui@codesourcery.com>
8565 Yao Qi <yao@codesourcery.com>
8566
8567 * Makefile.in (REMOTE_OBS): Add ctf.o.
8568 (SFILES): Add ctf.c.
8569 (HFILES_NO_SRCDIR): Add ctf.h.
8570 * ctf.c, ctf.h: New files.
8571 * tracepoint.c: Include 'ctf.h'.
8572 (collect_pseudocommand): Remove static.
8573 (trace_save_command): Parse option "-ctf".
8574 Produce different trace file writers per option.
8575 Adjust output message.
8576 (trace_save_tfile, trace_save_ctf): New.
8577 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
8578 * mi/mi-main.c: Include 'ctf.h'.
8579 (mi_cmd_trace_save): Handle option '-ctf'. Call either
8580 trace_save_tfile or trace_save_ctf.
8581 * NEWS: Mention these changes.
8582
8583 2013-03-14 Yao Qi <yao@codesourcery.com>
8584
8585 * tracepoint.c (trace_file_writer_xfree): New.
8586 (struct tfile_writer_data): New.
8587 (tfile_dtor, tfile_can_target_save, tfile_start): New.
8588 (tfile_write_header, tfile_write_regblock_type): New.
8589 (tfile_write_status, tfile_write_uploaded_tsv): New.
8590 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
8591 (tfile_write_raw_data, (tfile_end): New.
8592 (tfile_write_ops): New global variable.
8593 (TRACE_WRITE_R_BLOCK): New macro.
8594 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
8595 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
8596 (TRACE_WRITE_V_BLOCK): New macro.
8597 (trace_save): Add extra one parameter WRITER. Make it static.
8598 Use WRITER to writer trace.
8599 (tfile_trace_file_writer_new): New.
8600 (trace_save_command): Caller update.
8601 (trace_save_tfile): Write trace data in TFILE format.
8602 * tracepoint.h (struct trace_frame_write_ops): New.
8603 (struct trace_file_write_ops): New.
8604 (struct trace_file_writer): New.
8605 (trace_save): Remove its declaration.
8606 (trace_save_tfile): Declare it.
8607 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
8608 instead of trace_save.
8609
8610 2013-03-13 Pedro Alves <palves@redhat.com>
8611
8612 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
8613
8614 2013-03-13 Pedro Alves <palves@redhat.com>
8615
8616 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
8617 commented out code.
8618 * demangle.c (current_demangling_style_string): Make it const.
8619 (set_demangling_command): Assert the demangling style is known.
8620 Remove all handling of unknown styles. Set
8621 'current_demangling_style_string' to an element of the
8622 demangling_style_names array.
8623 (set_demangling_style): Delete.
8624 (_initialize_demangler): Set current_demangling_style_string to the
8625 element of the demangling_style_names array that corresponds to
8626 the default demangling style. Remove FIXME note. Don't call
8627 set_demangling_style.
8628 * gdb-demangle.h (set_demangling_style): Remove declaration.
8629
8630 2013-03-13 Pedro Alves <palves@redhat.com>
8631
8632 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
8633 fields const.
8634 (ada_make_symbol_completion_list): Make "text0" parameter const.
8635 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
8636 * breakpoint.c (condition_completer): Make "text" and "word"
8637 parameters const. Adjust.
8638 (check_tracepoint_command): Adjust to validate_actionline
8639 prototype change.
8640 (catch_syscall_completer): Make "text" and "word" parameters
8641 const.
8642 * cli/cli-cmds.c (show_user): Make "comname" local const.
8643 (valid_command_p): Make "command" parameter const.
8644 (alias_command): Make "alias_prefix" and "command_prefix" locals
8645 const.
8646 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
8647 (add_alias_cmd): Make "name" and "oldname" parameters const.
8648 Adjust. No longer make copy of OLDNAME.
8649 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
8650 (add_setshow_cmd_full, add_setshow_enum_cmd)
8651 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
8652 (add_setshow_filename_cmd, add_setshow_string_cmd)
8653 (add_setshow_string_noescape_cmd)
8654 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
8655 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
8656 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
8657 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
8658 Make "name" parameter const.
8659 (help_cmd): Rename "command" parameter to "arg". New const local
8660 "command".
8661 (find_cmd): Make "command" parameter const.
8662 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
8663 deprecated_cmd_warning prototype change.
8664 (undef_cmd_error): Make "cmdtype" parameter const.
8665 (lookup_cmd): Make "line" parameter const.
8666 (deprecated_cmd_warning): Change type of "text" parameter to
8667 pointer to const char, from pointer to pointer to char. Adjust.
8668 (lookup_cmd_composition): Make "text" parameter const.
8669 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
8670 parameters const.
8671 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
8672 const.
8673 * cli/cli-script.c (validate_comname): Make "tem" local const.
8674 (define_command): New const local "tem_c". Use it in calls to
8675 lookup_cmd.
8676 (document_command): Make "tem" and "comfull" locals const.
8677 (show_user_1): Make "prefix" and "name" parameters const.
8678 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
8679 const.
8680 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
8681 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
8682 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
8683 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
8684 (complete_on_enum, add_setshow_enum_cmd)
8685 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
8686 (add_setshow_filename_cmd, add_setshow_string_cmd)
8687 (add_setshow_string_noescape_cmd)
8688 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
8689 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
8690 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
8691 Change prototypes, constifying strings.
8692 * completer.c (noop_completer, filename_completer): Make "text"
8693 and "prefix" parameters const.
8694 (location_completer, expression_completer)
8695 (complete_line_internal): Make "text" and "prefix" parameters
8696 const and adjust.
8697 (command_completer, signal_completer): Make "text" and "prefix"
8698 parameters const.
8699 * completer.h (noop_completer, filename_completer)
8700 (expression_completer, location_completer, command_completer)
8701 (signal_completer): Change prototypes.
8702 * corefile.c (complete_set_gnutarget): Make "text" and "word"
8703 parameters const.
8704 * cp-abi.c (cp_abi_completer): Likewise.
8705 * expression.h (parse_expression_for_completion): Change
8706 prototype.
8707 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
8708 parameters const.
8709 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
8710 * infrun.c (handle_completer): Make "text" and "word" parameters
8711 const.
8712 * interps.c (interpreter_completer): Make "text" and "word"
8713 parameters const.
8714 * language.h (struct language_defn)
8715 <la_make_symbol_completion_list>: Make "text" and "word"
8716 parameters const.
8717 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
8718 (parse_exp_in_context): Rename to ...
8719 (parse_exp_in_context_1): ... this.
8720 (parse_exp_in_context): Reimplement, with const hack from
8721 parse_exp_1.
8722 (parse_expression_for_completion): Make "string" parameter const.
8723 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
8724 to pointer to const char. Adjust.
8725 (print_command_1): Make "exp" parameter const.
8726 (output_command): Rename to ...
8727 (output_command_const): ... this. Make "exp" parameter const.
8728 (output_command): Reimplement.
8729 (x_command): Adjust.
8730 (display_command): Rename "exp" parameter to "arg". New "exp"
8731 local, const version of "arg".
8732 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
8733 "cmd_name" local const.
8734 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
8735 call.
8736 (cmdpy_completer): Make "text" and "word" parameters const.
8737 (gdbpy_parse_command_name): Make "prefix_text2" local const.
8738 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
8739 const.
8740 * remote.c (_initialize_remote): Make "cmd_name" local const.
8741 * symtab.c (language_search_unquoted_string): Make "text" and "p"
8742 parameters const. Adjust.
8743 (completion_list_add_fields): Make "sym_text", "text" and "word"
8744 parameters const.
8745 (struct add_name_data) <sym_text, text, word>: Make fields const.
8746 (default_make_symbol_completion_list_break_on): Make "text" and
8747 "word" parameters const. Adjust locals.
8748 (default_make_symbol_completion_list)
8749 (make_symbol_completion_list, make_symbol_completion_type)
8750 (make_symbol_completion_list_fn): Make "text" and "word"
8751 parameters const.
8752 (make_file_symbol_completion_list): Make "text", "word" and
8753 "srcfile" parameters const. Adjust locals.
8754 (add_filename_to_list): Make "text" and "word" parameters const.
8755 (struct add_partial_filename_data) <text, word>: Make fields
8756 const.
8757 (make_source_files_completion_list): Make "text" and "word"
8758 parameters const.
8759 * symtab.h (default_make_symbol_completion_list_break_on)
8760 (default_make_symbol_completion_list, make_symbol_completion_list)
8761 (make_symbol_completion_type enum type_code)
8762 (make_symbol_completion_list_fn make_file_symbol_completion_list)
8763 (make_source_files_completion_list): Change prototype.
8764 * top.c (execute_command): Adjust to pass pointer to pointer to
8765 const char to lookup_cmd, and to deprecated_cmd_warning prototype
8766 change.
8767 (set_verbose): Make "cmdname" local const.
8768 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
8769 and adjust.
8770 (validate_actionline): Make "line" parameter a pointer to const
8771 char, and adjust.
8772 (encode_actions_1): Make "action_exp" local const, and adjust.
8773 (encode_actions): Adjust.
8774 (replace_comma): Delete.
8775 (trace_dump_actions): Make "action_exp" and "next_comma" locals
8776 const, and adjust. Don't frob the action string while splitting
8777 it at commas. Instead, make a copy of each split substring in
8778 turn.
8779 (trace_dump_command): Adjust to validate_actionline prototype
8780 change.
8781 * tracepoint.h (decode_agent_options, decode_agent_options)
8782 (encode_actions, validate_actionline): Change prototypes.
8783 * valprint.h (output_command): Delete declaration.
8784 (output_command_const): Declare.
8785 * value.c (function_destroyer): Cast const away in xfree call.
8786
8787 2013-03-13 Pedro Alves <palves@redhat.com>
8788
8789 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
8790 rather than casting 'const char * const *' to 'const char **'.
8791 * ada-lex.l (processInt): Make "trailer" local const. Remove
8792 'const char **' cast.
8793 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
8794 locals, and use those as strtol output pointer, instead than doing
8795 invalid casts to from 'const char **' to 'char **'.
8796 (_initialize_demangle): Remove cast.
8797 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
8798 locals, and use those as strtol output pointer, instead than doing
8799 invalid casts to from 'const char **' to 'char **'.
8800 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
8801 casts.
8802 * stap-probe.c (stap_parse_register_operand)
8803 (stap_parse_single_operand): Likewise.
8804
8805 2013-03-13 Yao Qi <yao@codesourcery.com>
8806
8807 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
8808 the last matched 'V' blcok in trace frame.
8809
8810 2013-03-12 Joel Brobecker <brobecker@adacore.com>
8811
8812 * NEWS: Create a new section for the next release branch.
8813 Rename the section of the current branch, now that it has
8814 been cut.
8815
8816 2013-03-12 Joel Brobecker <brobecker@adacore.com>
8817
8818 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
8819 * version.in: Bump version to 7.6.50.20130312-cvs.
8820
8821 2013-03-12 Keith Seitz <keiths@redhat.com>
8822
8823 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
8824 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
8825 Remove temporary copy of input string.
8826 (mi_execute_command_wrapper): Make "cmd" const.
8827 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
8828 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
8829 Use const strings.
8830 (mi_parse): Make "cmd" const.
8831 Use const strings.
8832 * mi/mi-parse.h (mi_parse): Make "cmd" const.
8833
8834 2013-03-12 Keith Seitz <keiths@redhat.com>
8835
8836 * ada-lang.c (ada_read_renaming_var_value): Pass const
8837 pointer to expression string to parse_exp_1.
8838 (create_excep_cond_exprs): Likewise.
8839 * ax-gdb.c (agent_eval_command_one): Likewise.
8840 (maint_agent_printf_command): Likewise.
8841 Constify much of the string handling/parsing.
8842 * breakpoint.c (set_breakpoint_condition): Pass const
8843 pointer to expression string to parse_exp_1.
8844 (update_watchpoint): Likewise.
8845 (parse_cmd_to_aexpr): Constify string handling.
8846 Pass const pointer to parse_exp_1.
8847 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
8848 (find_condition_and_thread): Likewise.
8849 Make TOK const.
8850 (watch_command_1): Make "arg" const.
8851 Constify string handling.
8852 Copy the expression string instead of changing the input
8853 string.
8854 (update_breakpoint_location): Pass const pointer to
8855 parse_exp_1.
8856 * eval.c (parse_and_eval_address): Make "exp" const.
8857 (parse_to_comma_and_eval): Make "expp" const.
8858 (parse_and_eval): Make "exp" const.
8859 * expression.h (parse_expression): Make argument const.
8860 (parse_exp_1): Make first argument const.
8861 * findcmd.c (parse_find_args): Treat "args" as const.
8862 * linespec.c (parse_linespec): Pass const pointer to
8863 linespec_expression_to_pc.
8864 (linespec_expression_to_pc): Make "exp_ptr" const.
8865 * parse.c (parse_exp_1): Make "stringptr" const.
8866 Make a copy of the expression to pass to parse_exp_in_context until
8867 this whole interface can be constified.
8868 (parse_expression): Make "string" const.
8869 * printcmd.c (ui_printf): Treat "arg" as const.
8870 Handle const strings.
8871 * tracepoint.c (validate_actionline): Pass const pointer to
8872 all calls to parse_exp_1.
8873 (encode_actions_1): Likewise.
8874 * value.h (parse_to_comma_and_eval): Make argument const.
8875 (parse_and_eval_address): Likewise.
8876 (parse_and_eval): Likewise.
8877 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
8878 (varobj_set_value): Likewise.
8879 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
8880 constify string handling.
8881 Pass const pointers to parse_and_eval_address and
8882 parse_to_comman_and_eval.
8883 * cli/cli-utils.c (skip_to_space): Rename to ...
8884 (skip_to_space_const): ... this. Handle const strings.
8885 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
8886 skip_to_space_const.
8887 (skip_to_space_const): Declare.
8888 * common/format.c (parse_format_string): Make "arg" const.
8889 Handle const strings.
8890 * common/format.h (parse_format_string): Make "arg" const.
8891 * gdbserver/ax.c (ax_printf): Make "format" const.
8892 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
8893 of the expression string.
8894
8895 2013-03-12 Hui Zhu <hui@codesourcery.com>
8896
8897 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
8898
8899 2013-03-12 Yao Qi <yao@codesourcery.com>
8900 Hui Zhu <hui@codesourcery.com>
8901
8902 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
8903 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
8904 DW_OP_deref_size.
8905
8906 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
8907
8908 * ada-lex.l (rules): Only recognize 'thread' as a
8909 delimiter when followed by numerals, as for c-exp.y.
8910 Use new rewind_to_char function to rewind the input for
8911 expression-delimiting tokens.
8912 (rewind_to_char): New function.
8913
8914 2013-03-11 Pedro Alves <palves@redhat.com>
8915 Jan Kratochvil <jan.kratochvil@redhat.com>
8916
8917 * configure: Regenerate.
8918 * configure.ac (check dynamic export flag): Link python test with
8919 $PYTHON_LIBS.
8920
8921 2013-03-11 Doug Evans <dje@google.com>
8922 Keith Seitz <keiths@redhat.com>
8923
8924 * linespec.c (find_linespec_symbols): Call find_function_symbols
8925 first, and then call lookup_prefix_sym/find_method.
8926
8927 2013-03-11 Pedro Alves <palves@redhat.com>
8928
8929 * charset.c (convert_between_encodings): Don't cast between
8930 different pointer to pointer types. Instead, make the 'inp' local
8931 be of the type iconv expects.
8932 (wchar_iterate): Don't cast between different pointer to pointer
8933 types. Instead, use new pointer local of the type iconv expects.
8934 * target.c (target_read_stralloc, target_fileio_read_stralloc):
8935 Add new local of type char pointer, and use it to get a
8936 char/string view of the byte buffer, instead of casting between
8937 pointer to pointer types.
8938
8939 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
8940
8941 * remote.c (remote_set_trace_buffer_size): Move != operator
8942 to the start of next line to fix an ARI warning.
8943
8944 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8945
8946 * NEWS: Add record changes.
8947
8948 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8949
8950 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
8951 the instruction history disassembly.
8952 * disasm.c (dump_insns): Omit the pc prefix, if requested.
8953 * disasm.h (DISASSEMBLY_OMIT_PC): New.
8954
8955 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8956
8957 * Makefile.in (SFILES): Add record-btrace.c
8958 (COMMON_OBS): Add record-btrace.o
8959 * record-btrace.c: New.
8960 * objfiles.c: Include btrace.h.
8961 (free_objfile): call btrace_free_objfile.
8962
8963 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8964
8965 * target.c (target_call_history, target_call_history_from,
8966 target_call_history_range): New.
8967 * target.h (target_ops) <to_call_history, to_call_history_from,
8968 to_call_history_range>: New fields.
8969 (target_call_history, target_call_history_from,
8970 target_call_history_range): New declaration.
8971 * record.c (get_call_history_modifiers, cmd_record_call_history,
8972 record_call_history_size): New.
8973 (_initialize_record): Add the "record function-call-history" command.
8974 Add "set/show record function-call-history-size" commands.
8975 * record.h (record_print_flag): New.
8976
8977 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8978
8979 * target.h (target_ops) <to_insn_history, to_insn_history_from,
8980 to_insn_history_range>: New fields.
8981 (target_insn_history): New.
8982 (target_insn_history_from): New.
8983 (target_insn_history_range): New.
8984 * target.c (target_insn_history): New.
8985 (target_insn_history_from): New.
8986 (target_insn_history_range): New.
8987 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
8988 (record_insn_history_size): New.
8989 (get_insn_number): New.
8990 (get_context_size): New.
8991 (no_chunk): New.
8992 (get_insn_history_modifiers): New.
8993 (cmd_record_insn_history): New.
8994 (_initialize_record): Add "set/show record instruction-history-size"
8995 command. Add "record instruction-history" command.
8996
8997 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8998
8999 * record.h (record_disconnect): New.
9000 (record_detach): New.
9001 (record_mourn_inferior): New.
9002 (record_kill): New.
9003 * record-full.c (record_disconnect, record_detach,
9004 record_mourn_inferior, record_kill): Move to...
9005 * record.c: ...here.
9006 (DEBUG): New.
9007 (record_stop): New.
9008 (record_unpush): New.
9009 (cmd_record_stop): Call record_stop. Replace unpush_target
9010 call with record_unpush call.
9011 (record_disconnect, record_detach): Assert that the target
9012 is of record stratum. Call record_unpush, record_stop, and
9013 DEBUG.
9014 (record_mourn_inferior, record_kill): Assert that the target
9015 is of record stratum. Call record_unpush and DEBUG.
9016
9017 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9018
9019 * record-full.h, record-full.c (record_memory_query): Rename
9020 to ...
9021 (record_full_memory_query): ...this. Update all users.
9022 (record_arch_list_add_reg): Rename to ...
9023 (record_full_arch_list_add_reg): ...this. Update all users.
9024 (record_arch_list_add_mem): Rename to ...
9025 (record_full_arch_list_add_mem): ...this. Update all users.
9026 (record_arch_list_add_end): Rename to ...
9027 (record_full_arch_list_add_end): ...this. Update all users.
9028 (record_gdb_operation_disable_set): Rename to ...
9029 (record_full_gdb_operation_disable_set): ...this.
9030 Update all users.
9031
9032 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9033
9034 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
9035 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
9036 (RECORD_IS_REPLAY): Renamed to ...
9037 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
9038 (RECORD_FILE_MAGIC): Renamed to ...
9039 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
9040 (record_mem_entry): Renamed to ...
9041 (record_full_mem_entry): ... this. Updated all users.
9042 (record_reg_entry): Renamed to ...
9043 (record_full_reg_entry): ... this. Updated all users.
9044 (record_end_entry): Renamed to ...
9045 (record_full_end_entry): ... this. Updated all users.
9046 (record_type) <record_end, record_reg, record_mem>: Renamed
9047 to ...
9048 (record_full_type) <record_full_end, record_full_reg,
9049 record_full_mem>: ... this. Updated all users.
9050 (record_entry): Renamed to ...
9051 (record_full_entry): ... this. Updated all users.
9052 (record_core_buf_entry): Renamed to ...
9053 (record_full_core_buf_entry): ... this. Updated all users.
9054 (record_core_regbuf): Renamed to ...
9055 (record_full_core_regbuf): ... this. Updated all users.
9056 (record_core_start): Renamed to ...
9057 (record_full_core_start): ... this. Updated all users.
9058 (record_core_end): Renamed to ...
9059 (record_full_core_end): ... this. Updated all users.
9060 (record_core_buf_list): Renamed to ...
9061 (record_full_core_buf_list): ... this. Updated all users.
9062 (record_first): Renamed to ...
9063 (record_full_first): ... this. Updated all users.
9064 (record_list): Renamed to ...
9065 (record_full_list): ... this. Updated all users.
9066 (record_arch_list_head): Renamed to ...
9067 (record_full_arch_list_head): ... this. Updated all users.
9068 (record_arch_list_tail): Renamed to ...
9069 (record_full_arch_list_tail): ... this. Updated all users.
9070 (record_stop_at_limit): Renamed to ...
9071 (record_full_stop_at_limit): ... this. Updated all users.
9072 (record_insn_max_num): Renamed to ...
9073 (record_full_insn_max_num): ... this. Updated all users.
9074 (record_insn_num): Renamed to ...
9075 (record_full_insn_num): ... this. Updated all users.
9076 (record_insn_count): Renamed to ...
9077 (record_full_insn_count): ... this. Updated all users.
9078 (record_ops): Renamed to ...
9079 (record_full_ops): ... this. Updated all users.
9080 (record_core_ops): Renamed to ...
9081 (record_full_core_ops): ... this. Updated all users.
9082 (set_record_cmdlist): Renamed to ...
9083 (set_record_full_cmdlist): ... this. Updated all users.
9084 (show_record_cmdlist): Renamed to ...
9085 (show_record_full_cmdlist): ... this. Updated all users.
9086 (record_cmdlist): Renamed to ...
9087 (record_full_cmdlist): ... this. Updated all users.
9088 (record_beneath_to_resume_ops): Renamed to ...
9089 (record_full_beneath_to_resume_ops): ... this. Updated all users.
9090 (record_beneath_to_resume): Renamed to ...
9091 (record_full_beneath_to_resume): ... this. Updated all users.
9092 (record_beneath_to_wait_ops): Renamed to ...
9093 (record_full_beneath_to_wait_ops): ... this. Updated all users.
9094 (record_beneath_to_wait): Renamed to ...
9095 (record_full_beneath_to_wait): ... this. Updated all users.
9096 (record_beneath_to_store_registers_ops): Renamed to ...
9097 (record_full_beneath_to_store_registers_ops): ... this.
9098 Updated all users.
9099 (record_beneath_to_store_registers): Renamed to ...
9100 (record_full_beneath_to_store_registers): ... this.
9101 Updated all users.
9102 (record_beneath_to_xfer_partial_ops): Renamed to ...
9103 (record_full_beneath_to_xfer_partial_ops): ... this.
9104 Updated all users.
9105 (record_beneath_to_xfer_partial): Renamed to ...
9106 (record_full_beneath_to_xfer_partial): ... this.
9107 Updated all users.
9108 (record_beneath_to_insert_breakpoint): Renamed to ...
9109 (record_full_beneath_to_insert_breakpoint): ... this.
9110 Updated all users.
9111 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
9112 (record_full_beneath_to_stopped_by_watchpoint): ... this.
9113 Updated all users.
9114 (record_beneath_to_stopped_data_address): Renamed to ...
9115 (record_full_beneath_to_stopped_data_address): ... this.
9116 Updated all users.
9117 (record_beneath_to_async): Renamed to ...
9118 (record_full_beneath_to_async): ... this. Updated all users.
9119 (record_goto_insn): Renamed to ...
9120 (record_full_goto_insn): ... this. Updated all users.
9121 (record_save): Renamed to ...
9122 (record_full_save): ... this. Updated all users.
9123 (record_reg_alloc): Renamed to ...
9124 (record_full_reg_alloc): ... this. Updated all users.
9125 (record_reg_release): Renamed to ...
9126 (record_full_reg_release): ... this. Updated all users.
9127 (record_mem_alloc): Renamed to ...
9128 (record_full_mem_alloc): ... this. Updated all users.
9129 (record_mem_release): Renamed to ...
9130 (record_full_mem_release): ... this. Updated all users.
9131 (record_end_alloc): Renamed to ...
9132 (record_full_end_alloc): ... this. Updated all users.
9133 (record_end_release): Renamed to ...
9134 (record_full_end_release): ... this. Updated all users.
9135 (record_entry_release): Renamed to ...
9136 (record_full_entry_release): ... this. Updated all users.
9137 (record_list_release): Renamed to ...
9138 (record_full_list_release): ... this. Updated all users.
9139 (record_list_release_following): Renamed to ...
9140 (record_full_list_release_following): ... this.
9141 Updated all users.
9142 (record_list_release_first): Renamed to ...
9143 (record_full_list_release_first): ... this. Updated all users.
9144 (record_arch_list_add): Renamed to ...
9145 (record_full_arch_list_add): ... this. Updated all users.
9146 (record_get_loc): Renamed to ...
9147 (record_full_get_loc): ... this. Updated all users.
9148 (record_check_insn_num): Renamed to ...
9149 (record_full_check_insn_num): ... this. Updated all users.
9150 (record_arch_list_cleanups): Renamed to ...
9151 (record_full_arch_list_cleanups): ... this. Updated all users.
9152 (record_message): Renamed to ...
9153 (record_full_message): ... this. Updated all users.
9154 (record_message_wrapper): Renamed to ...
9155 (record_full_message_wrapper): ... this. Updated all users.
9156 (record_message_wrapper_safe): Renamed to ...
9157 (record_full_message_wrapper_safe): ... this. Updated all users.
9158 (record_gdb_operation_disable): Renamed to ...
9159 (record_full_gdb_operation_disable): ... this. Updated all users.
9160 (record_hw_watchpoint): Renamed to ...
9161 (record_full_hw_watchpoint): ... this. Updated all users.
9162 (record_exec_insn): Renamed to ...
9163 (record_full_exec_insn): ... this. Updated all users.
9164 (record_restore): Renamed to ...
9165 (record_full_restore): ... this. Updated all users.
9166 (record_async_inferior_event_token): Renamed to ...
9167 (record_full_async_inferior_event_token): ... this.
9168 Updated all users.
9169 (record_async_inferior_event_handler): Renamed to ...
9170 (record_full_async_inferior_event_handler): ... this.
9171 Updated all users.
9172 (record_core_open_1): Renamed to ...
9173 (record_full_core_open_1): ... this. Updated all users.
9174 (record_open_1): Renamed to ...
9175 (record_full_open_1): ... this. Updated all users.
9176 (record_open): Renamed to ...
9177 (record_full_open): ... this. Updated all users.
9178 (record_close): Renamed to ...
9179 (record_full_close): ... this. Updated all users.
9180 (record_resume_step): Renamed to ...
9181 (record_full_resume_step): ... this. Updated all users.
9182 (record_resumed): Renamed to ...
9183 (record_full_resumed): ... this. Updated all users.
9184 (record_execution_dir): Renamed to ...
9185 (record_full_execution_dir): ... this. Updated all users.
9186 (record_resume): Renamed to ...
9187 (record_full_resume): ... this. Updated all users.
9188 (record_get_sig): Renamed to ...
9189 (record_full_get_sig): ... this. Updated all users.
9190 (record_sig_handler): Renamed to ...
9191 (record_full_sig_handler): ... this. Updated all users.
9192 (record_wait_cleanups): Renamed to ...
9193 (record_full_wait_cleanups): ... this. Updated all users.
9194 (record_wait_1): Renamed to ...
9195 (record_full_wait_1): ... this. Updated all users.
9196 (record_wait): Renamed to ...
9197 (record_full_wait): ... this. Updated all users.
9198 (record_stopped_by_watchpoint): Renamed to ...
9199 (record_full_stopped_by_watchpoint): ... this. Updated all users.
9200 (record_disconnect): Renamed to ...
9201 (record_full_disconnect): ... this. Updated all users.
9202 (record_detach): Renamed to ...
9203 (record_full_detach): ... this. Updated all users.
9204 (record_mourn_inferior): Renamed to ...
9205 (record_full_mourn_inferior): ... this. Updated all users.
9206 (record_kill): Renamed to ...
9207 (record_full_kill): ... this. Updated all users.
9208 (record_stopped_data_address): Renamed to ...
9209 (record_full_stopped_data_address): ... this. Updated all users.
9210 (record_registers_change): Renamed to ...
9211 (record_full_registers_change): ... this. Updated all users.
9212 (record_store_registers): Renamed to ...
9213 (record_full_store_registers): ... this. Updated all users.
9214 (record_xfer_partial): Renamed to ...
9215 (record_full_xfer_partial): ... this. Updated all users.
9216 (record_breakpoint): Renamed to ...
9217 (record_full_breakpoint): ... this. Updated all users.
9218 (record_breakpoint_p): Renamed to ...
9219 (record_full_breakpoint_p): ... this. Updated all users.
9220 (record_breakpoints): Renamed to ...
9221 (record_full_breakpoints): ... this. Updated all users.
9222 (record_sync_record_breakpoints): Renamed to ...
9223 (record_full_sync_record_breakpoints): ... this.
9224 Updated all users.
9225 (record_init_record_breakpoints): Renamed to ...
9226 (record_full_init_record_breakpoints): ... this.
9227 Updated all users.
9228 (record_insert_breakpoint): Renamed to ...
9229 (record_full_insert_breakpoint): ... this. Updated all users.
9230 (record_remove_breakpoint): Renamed to ...
9231 (record_full_remove_breakpoint): ... this. Updated all users.
9232 (record_can_execute_reverse): Renamed to ...
9233 (record_full_can_execute_reverse): ... this. Updated all users.
9234 (record_get_bookmark): Renamed to ...
9235 (record_full_get_bookmark): ... this. Updated all users.
9236 (record_goto_bookmark): Renamed to ...
9237 (record_full_goto_bookmark): ... this. Updated all users.
9238 (record_async): Renamed to ...
9239 (record_full_async): ... this. Updated all users.
9240 (record_can_async_p): Renamed to ...
9241 (record_full_can_async_p): ... this. Updated all users.
9242 (record_is_async_p): Renamed to ...
9243 (record_full_is_async_p): ... this. Updated all users.
9244 (record_execution_direction): Renamed to ...
9245 (record_full_execution_direction): ... this. Updated all users.
9246 (record_info): Renamed to ...
9247 (record_full_info): ... this. Updated all users.
9248 (record_delete): Renamed to ...
9249 (record_full_delete): ... this. Updated all users.
9250 (record_is_replaying): Renamed to ...
9251 (record_full_is_replaying): ... this. Updated all users.
9252 (record_goto_entry): Renamed to ...
9253 (record_full_goto_entry): ... this. Updated all users.
9254 (record_goto_begin): Renamed to ...
9255 (record_full_goto_begin): ... this. Updated all users.
9256 (record_goto_end): Renamed to ...
9257 (record_full_goto_end): ... this. Updated all users.
9258 (record_goto): Renamed to ...
9259 (record_full_goto): ... this. Updated all users.
9260 (init_record_ops): Renamed to ...
9261 (init_record_full_ops): ... this. Updated all users.
9262 (record_core_resume): Renamed to ...
9263 (record_full_core_resume): ... this. Updated all users.
9264 (record_core_kill): Renamed to ...
9265 (record_full_core_kill): ... this. Updated all users.
9266 (record_core_fetch_registers): Renamed to ...
9267 (record_full_core_fetch_registers): ... this. Updated all users.
9268 (record_core_prepare_to_store): Renamed to ...
9269 (record_full_core_prepare_to_store): ... this. Updated all users.
9270 (record_core_store_registers): Renamed to ...
9271 (record_full_core_store_registers): ... this. Updated all users.
9272 (record_core_xfer_partial): Renamed to ...
9273 (record_full_core_xfer_partial): ... this. Updated all users.
9274 (record_core_insert_breakpoint): Renamed to ...
9275 (record_full_core_insert_breakpoint): ... this. Updated all users.
9276 (record_core_remove_breakpoint): Renamed to ...
9277 (record_full_core_remove_breakpoint): ... this. Updated all users.
9278 (record_core_has_execution): Renamed to ...
9279 (record_full_core_has_execution): ... this. Updated all users.
9280 (init_record_core_ops): Renamed to ...
9281 (init_record_full_core_ops): ... this. Updated all users.
9282 (cmd_record_restore): Renamed to ...
9283 (cmd_record_full_restore): ... this. Updated all users.
9284 (record_save_cleanups): Renamed to ...
9285 (record_full_save_cleanups): ... this. Updated all users.
9286 (cmd_record_start): Renamed to ...
9287 (cmd_record_full_start): ... this. Updated all users.
9288 (set_record_insn_max_num): Renamed to ...
9289 (set_record_full_insn_max_num): ... this. Updated all users.
9290 (set_record_command): Renamed to ...
9291 (set_record_full_command): ... this. Updated all users.
9292 (show_record_command): Renamed to ...
9293 (show_record_full_command): ... this. Updated all users.
9294 (_initialize_record): Renamed to ...
9295 (_initialize_record_full): ... this. Updated all users.
9296
9297 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9298
9299 * record.h: Split into this and ...
9300 * record-full.h: ... this.
9301 * record.c: Split into this and ...
9302 * record-full.c: ... this.
9303 * target.h (target_ops): Add new fields to_info_record,
9304 to_save_record, to_delete_record, to_record_is_replaying,
9305 to_goto_record_begin, to_goto_record_end, to_goto_record.
9306 (target_info_record): New.
9307 (target_save_record): New.
9308 (target_supports_delete_record): New.
9309 (target_delete_record): New.
9310 (target_record_is_replaying): New.
9311 (target_goto_record_begin): New.
9312 (target_goto_record_end): New.
9313 (target_goto_record): New.
9314 * target.c (target_info_record): New.
9315 (target_save_record): New.
9316 (target_supports_delete_record): New.
9317 (target_delete_record): New.
9318 (target_record_is_replaying): New.
9319 (target_goto_record_begin): New.
9320 (target_goto_record_end): New.
9321 (target_goto_record): New.
9322 * record.h: Declare struct cmd_list_element.
9323 (record_cmdlist): New declaration.
9324 (set_record_cmdlist): New declaration.
9325 (show_record_cmdlist): New declaration.
9326 (info_record_cmdlist): New declaration.
9327 (cmd_record_goto): New declaration.
9328 * record.c: Remove unnecessary includes.
9329 Include inferior.h.
9330 (cmd_record_goto): Remove declaration.
9331 (record_cmdlist): Now extern. Initialize.
9332 (set_record_cmdlist): Now extern. Initialize.
9333 (show_record_cmdlist): Now extern. Initialize.
9334 (info_record_cmdlist): Now extern. Initialize.
9335 (find_record_target): New.
9336 (require_record_target): New.
9337 (cmd_record_start): Update.
9338 (cmd_record_delete): Remove target-specific code.
9339 Call target_delete_record.
9340 (cmd_record_stop): Unpush any record target.
9341 (set_record_insn_max_num): Move to record-full.c
9342 (set_record_command): Add comment.
9343 (show_record_command): Add comment.
9344 (info_record_command): Update comment.
9345 Remove target-specific code.
9346 Call the record target's to_info_record.
9347 (cmd_record_start): New.
9348 (cmd_record_goto): Now extern.
9349 Remove target-specific code.
9350 Call target_goto_begin, target_goto_end, or target_goto.
9351 (_initialize_record): Move record target ops initialization to
9352 record-full.c.
9353 Change "record" command help text.
9354 Move "record restore", "record set", and "record show" commands to
9355 record-full.c.
9356 * Makefile.in (SFILES): Add record-full.c.
9357 (HFILES_NO_SRCDIR): Add record-full.h.
9358 (COMMON_OBS): Add record-full.o.
9359 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
9360 * arm-tdep.c: Include record-full.h.
9361 * i386-linux-tdep.c: Include record-full.h instead of record.h.
9362 * i386-tdep.c: Include record-full.h.
9363 * infrun.c: Include record-full.h.
9364 * linux-record.c: Include record-full.h.
9365 * moxie-tdep.c: Include record-full.h.
9366 * record-full.c: Include record-full.h.
9367 Change module comment.
9368 (set_record_full_cmdlist): New.
9369 (show_record_full_cmdlist): New.
9370 (record_full_cmdlist): New.
9371 (record_goto_insn): New declaration.
9372 (record_save): New declaration.
9373 (record_check_insn_num): Change query string.
9374 (record_info): New.
9375 (record_delete): New.
9376 (record_is_replaying): New.
9377 (record_goto_entry): New.
9378 (record_goto_begin): New.
9379 (record_goto_end): New.
9380 (record_goto): New.
9381 (init_record_ops): Update.
9382 (init_record_core_ops): Update.
9383 (cmd_record_save): Rename to record_save. Remove target and arg checks.
9384 (cmd_record_start): New.
9385 (set_record_insn_max_num): Moved from record.c
9386 (set_record_full_command): New.
9387 (show_record_full_command): New.
9388 (_initialize_record_full): New.
9389
9390 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9391
9392 * target.h (add_deprecated_target_alias): New.
9393 * target.c (add_deprecated_target_alias): New.
9394
9395 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9396
9397 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
9398 and signal.h.
9399 (linux_supports_btrace): Add kernel and
9400 cpuid check.
9401 (kernel_supports_btrace): New function.
9402 (cpu_supports_btrace): New function.
9403 (intel_supports_btrace): New function.
9404
9405 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9406
9407 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
9408 * remote.c: Include btrace.h.
9409 (struct btrace_target_info): New struct.
9410 (remote_supports_btrace): New function.
9411 (send_Qbtrace): New function.
9412 (remote_enable_btrace): New function.
9413 (remote_disable_btrace): New function.
9414 (remote_teardown_btrace): New function.
9415 (remote_read_btrace): New function.
9416 (init_remote_ops): Add btrace ops.
9417 (enum <unnamed>): Add btrace packets.
9418 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
9419 (_initialize_remote): Add packet configuration for branch tracing.
9420
9421 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9422
9423 * features/btrace.dtd: New file.
9424 * Makefile.in (XMLFILES): Add btrace.dtd.
9425 * btrace.h (parse_xml_btrace): New declaration.
9426 * btrace.c: Include xml-support.h.
9427 (parse_xml_btrace): New function.
9428 (parse_xml_btrace_block): New function.
9429 (block_attributes): New struct.
9430 (btrace_attributes): New struct.
9431 (btrace_children): New struct.
9432 (btrace_elements): New struct.
9433
9434 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9435
9436 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
9437 (amd64_linux_enable_btrace): New.
9438 (amd64_linux_disable_btrace): New.
9439 (amd64_linux_teardown_btrace): New.
9440 (_initialize_amd64_linux_nat): Initialize btrace ops.
9441 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
9442 (i386_linux_enable_btrace): New.
9443 (i386_linux_disable_btrace): New.
9444 (i386_linux_teardown_btrace): New.
9445 (_initialize_i386_linux_nat): Initialize btrace ops.
9446 * config/i386/linux.mh: Add linux-btrace.o.
9447 * config/i386/linux64.mh: Add linux-btrace.o.
9448
9449 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9450
9451 * common/linux_btrace.h: New file.
9452 * common/linux_btrace.c: New file.
9453 * Makefile.in (SFILES): Add btrace.c.
9454 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
9455 (COMMON_OBS): Add btrace.o.
9456 (linux-btrace.o): New rule.
9457
9458 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9459
9460 * target.h: Include btrace.h.
9461 (struct target_ops) <to_supports_btrace, to_enable_btrace,
9462 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
9463 * target.c (target_supports_btrace): New function.
9464 (target_enable_btrace): New function.
9465 (target_disable_btrace): New function.
9466 (target_teardown_btrace): New function.
9467 (target_read_btrace): New function.
9468 * btrace.h: New file.
9469 * btrace.c: New file.
9470 * Makefile.in: Add btrace.c.
9471 * gdbthread.h: Include btrace.h.
9472 (struct thread_info): Add btrace field.
9473 * thread.c: Include btrace.h.
9474 (clear_thread_inferior_resources): Call target_teardown_btrace.
9475 * common/btrace-common.h: New file.
9476
9477 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9478
9479 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
9480 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
9481 kill_status to outer block.
9482
9483 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9484
9485 Fix entry-values if the callee called a noreturn function.
9486 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
9487 get_frame_address_in_block. Add new comment.
9488
9489 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9490
9491 Fix entry-values in C++ across CUs.
9492 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
9493 lookup_minimal_symbol. Add a comment.
9494 * dwarf2read.c
9495 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
9496 DW_AT_linkage_name.
9497
9498 2013-03-08 Yao Qi <yao@codesourcery.com>
9499
9500 * tracepoint.c (_initialize_tracepoint): Indent the code.
9501
9502 2013-03-08 Pedro Alves <palves@redhat.com>
9503
9504 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
9505 (parse_find_args, find_command): Change type of pattern buffer
9506 locals to 'gdb_byte *'.
9507
9508 2013-03-08 Stan Shebs <stan@codesourcery.com>
9509 Hafiz Abid Qadeer <abidh@codesourcery.com>
9510
9511 * NEWS: Mention set and show trace-buffer-size commands.
9512 Mention new packet.
9513 * target.h (struct target_ops): New method
9514 to_set_trace_buffer_size.
9515 (target_set_trace_buffer_size): New macro.
9516 * target.c (update_current_target): Set up new method.
9517 * tracepoint.c (trace_buffer_size): New global.
9518 (start_tracing): Send it to the target.
9519 (set_trace_buffer_size): New function.
9520 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
9521 * remote.c (remote_set_trace_buffer_size): New function.
9522 (_initialize_remote): Use it.
9523 (QTBuffer:size) New remote command.
9524 (PACKET_QTBuffer_size): New enum.
9525 (remote_protocol_features): Add an entry for
9526 PACKET_QTBuffer_size.
9527
9528 2013-03-08 Tom Tromey <tromey@redhat.com>
9529
9530 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
9531 variable.
9532
9533 2013-03-07 Pedro Alves <palves@redhat.com>
9534
9535 * target.c (target_read_stralloc, target_fileio_read_alloc):
9536 *Cast pointer to 'gdb_byte *' in target call.
9537
9538 2013-03-07 Pedro Alves <palves@redhat.com>
9539
9540 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
9541 call.
9542
9543 2013-03-07 Keith Seitz <keiths@redhat.com>
9544
9545 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
9546 (trace_pass_command): Likewise.
9547 * cli/cli-cmds.c: Include cli/cli-utils.h.
9548 (source_command): Use skip-spaces.
9549 (disassemble_command): Likewise.
9550 * findcmd.c: Include cli/cli-utils.h.
9551 (parse_find_args): Use skip_spaces.
9552 * go32-nat.c: Include cli/cli-utils.h.
9553 (go32_sldt): Use skip_spaces.
9554 (go32_sgdt): Likewise.
9555 (go32_sidt): Likewise.
9556 (go32_pde): Likewise.
9557 (go32_pte): Likewise.
9558 (go32_pte_for_address): Likewise.
9559 * infcmd.c: Include cli/cli-utils.h.
9560 (registers_info): Use skip_spaces.
9561 * linux-tdep.c (read_mapping): Use skip_spaces_const.
9562 (linux_info_proc): Likewise.
9563 * linux-thread-db.c: Include cli/cli-utils.h.
9564 (info_auto_load_libthread_db): Use skip_spaces_const.
9565 * m32r-rom.c: Include cli/cli-utils.h.
9566 (m32r_upload_command): Use skip_spaces.
9567 * maint.c: Include cli/cli-utils.h.
9568 (maintenance_translate_address): Use skip_spaces.
9569 * mi/mi-parse.c: Include cli/cli-utils.h.
9570 (mi_parse_argv): Use skip_spaces.
9571 (mi_parse): Likewise.
9572 * minsyms.c: Include cli/cli-utils.h.
9573 (msymbol_hash_iw): Use skip_spaces_const.
9574 * objc-lang.c: Include cli/cli-utils.h.
9575 (parse_selector): Use skip_spaces.
9576 (parse_method): Likewise.
9577 * python/python.c: Include cli/cli-utils.h.
9578 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
9579 (python_command)[HAVE_PYTHON]: Likewise.
9580 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
9581 * remote-m32r-sdi.c: Include cli/cli-utils.h.
9582 (m32r_load): Use skip_spaces.
9583 * serial.c: Include cli/cli-utils.h.
9584 (serial_open): Use skip_spaces_const.
9585 * stack.c: Include cli/cli-utils.h.
9586 (parse_frame_specification_1): Use skip_spaces_const.
9587 * symfile.c: Include cli/cli-utils.h.
9588 (set_ext_lang_command): Use skip_spaces.
9589 * symtab.c: Include cli/cli-utils.h.
9590 (rbreak_command): Use skip_spaces.
9591 * thread.c (thread_name_command): Use skip_spaces.
9592 * tracepoint.c (validate_actionline): Use skip_spaces.
9593 (encode_actions_1): Likewise.
9594 (trace_find_range_command): Likewise.
9595 (trace_find_outside_command): Likewise.
9596 (trace_dump_actions): Likewise.
9597
9598 2013-03-07 Pedro Alves <palves@redhat.com>
9599
9600 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
9601 * expprint.c (print_subexp_standard): Likewise.
9602 * utils.c (host_char_to_target): Likewise.
9603 * valprint.c (generic_emit_char, generic_printstr): Likewise.
9604 * varobj.c (value_get_print_value): Change type of local to char*.
9605 Cast it gdb_byte * in call to language printer.
9606
9607 2013-03-07 Pedro Alves <palves@redhat.com>
9608
9609 * charset.c (struct wchar_iterator) <input>: Change type to 'const
9610 gdb_byte *'.
9611 (make_wchar_iterator): Remove cast to char*.
9612 (wchar_iterate): Change type of local.
9613
9614 2013-03-07 Pedro Alves <palves@redhat.com>
9615
9616 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
9617 for 'regcache->register_status'.
9618
9619 2013-03-07 Pedro Alves <palves@redhat.com>
9620
9621 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
9622 int.
9623
9624 2013-03-07 Pedro Alves <palves@redhat.com>
9625
9626 * stap-probe.c (handle_stap_probe): Add cast to char*.
9627
9628 2013-03-07 Pedro Alves <palves@redhat.com>
9629
9630 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
9631 RECORD_MSGRCV>: Pass a signed variable to
9632 regcache_raw_read_signed, instead of an unsigned one.
9633
9634 2013-03-07 Pedro Alves <palves@redhat.com>
9635
9636 * remote-notif.c (notif_debug): Change type to int.
9637 * remote-notif.h (notif_debug): Likewise.
9638
9639 2013-03-07 Pedro Alves <palves@redhat.com>
9640
9641 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
9642
9643 2013-03-07 Pedro Alves <palves@redhat.com>
9644
9645 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
9646 * remote.h (hex2bin, bin2hex): ... here.
9647 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
9648
9649 2013-03-07 Eli Zaretskii <eliz@gnu.org>
9650
9651 * utils.c (initialize_utils): Improve doc strings of "set/show
9652 width", "set/show height", and "set/show pagination".
9653
9654 2013-03-06 Keith Seitz <keiths@redhat.com>
9655
9656 * ax-gdb.c (gen_printf): Make FORMAT const.
9657 * ax-gdb.h (gen_printf): Likewise.
9658 * ax-general.c (ax_string): Make STR const.
9659 * ax.h (ax_string): Likewise.
9660
9661 2013-03-06 Doug Evans <dje@google.com>
9662
9663 * elfread.c (elf_symfile_read): Move debugging printf to more
9664 logical location.
9665
9666 2013-03-06 Pedro Alves <palves@redhat.com>
9667
9668 * python/py-utils.c (target_string_to_unicode): Delete function.
9669 * python/python-internal.h (target_string_to_unicode): Delete
9670 declaration.
9671
9672 2013-03-06 Pierre Muller <muller@sourceware.org>
9673
9674 * linespec.c (get_current_search_block): ARI fix, use (void)
9675 for empty parameter list.
9676
9677 2013-03-05 Doug Evans <dje@google.com>
9678
9679 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
9680 of old ada_lookup_symbol_list. In !full_search case, don't
9681 search superblocks.
9682 (ada_lookup_symbol_list): Delete arg full_search, all callers
9683 updated. Call ada_lookup_symbol_list_worker.
9684 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
9685 * ada-lang.h (ada_lookup_symbol_list): Update.
9686 * language.h (language_defn): Update comment for
9687 la_iterate_over_symbols.
9688 * linespec.c (iterate_over_file_blocks): New function.
9689 (iterate_over_all_matching_symtabs): Call it.
9690 (lookup_prefix_sym): Ditto.
9691 (get_current_search_block): New function.
9692 (get_search_block): Delete.
9693 (find_label_symbols): Call get_current_search_block.
9694 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
9695 * symtab.c (iterate_over_symbols): Don't search superblocks.
9696
9697 2013-03-05 Yao Qi <yao@codesourcery.com>
9698
9699 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
9700 parameter VAR's type from "unsigned int" to "int".
9701 * command.h (var_zuinteger_unlimited): Update its comments.
9702 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
9703
9704 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
9705
9706 * NEWS: Mention new target x86_64-*-cygwin*.
9707
9708 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
9709
9710 * configure.host: Add x86_64-*-cygwin* as host.
9711 * configure.tgt: Add x86_64-*-cygwin* as target.
9712 * config/i386/cygwin64.mh: New file.
9713
9714 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
9715
9716 * linespec.c (decode_line_2): Fix duplicate request off by two message.
9717
9718 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
9719
9720 * linespec.c (struct linespec_canonical_name): New.
9721 (struct linespec_state): Change canonical_names type to it.
9722 (add_sal_to_sals): Change variable canonical_name to canonical. Change
9723 xrealloc element size. Initialize the different CANONICAL fields.
9724 (canonical_to_fullform): New.
9725 (filter_results): Use it. Add variables canonical, fullform and
9726 cleanup.
9727 (struct decode_line_2_item, decode_line_2_compare_items): New.
9728 (decode_line_2): Remove variables iter and item_names, add variables
9729 items and items_count. Modify the code for these new variables.
9730
9731 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
9732
9733 * coff-pe-read.c (read_pe_exported_syms): Don't return without
9734 calling do_cleanup.
9735
9736 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
9737
9738 * tracepoint.c (build_traceframe_info): Add code for byte order.
9739
9740 2013-03-02 Kevin Buettner <kevinb@redhat.com>
9741
9742 * v850-tdep.c: (v850e2_register_name): Revise system register
9743 names to match current V850E2M architecture specifications.
9744 Update register number enum comments too.
9745
9746 2013-03-01 Jiong Wang <jiwang@tilera.com>
9747 Pedro Alves <palves@redhat.com>
9748
9749 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
9750 to END_ADDR.
9751 (tilegx_skip_prologue): Limit prologue analysis to section end.
9752
9753 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9754
9755 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
9756 use it.
9757
9758 2013-03-01 Pedro Alves <palves@redhat.com>
9759
9760 Use gdb_byte for bytes from the program being debugged.
9761
9762 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
9763 Change type of local 'buf' to gdb_byte.
9764 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
9765 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
9766 * cris-tdep.c (cris_sigcontext_addr)
9767 (cris_sigtramp_frame_unwind_cache): Likewise.
9768 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
9769 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
9770 Likewise.
9771 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
9772 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
9773 (hppa32_hpux_search_dummy_call_sequence)
9774 (hppa_hpux_supply_save_state): Likewise.
9775 * hppa-linux-tdep.c (insns_match_pattern)
9776 (hppa_linux_find_global_pointer): Likewise.
9777 * hppa-tdep.c (hppa_in_function_epilogue_p)
9778 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
9779 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
9780 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
9781 (i386fbsd_collect_uthread): Likewise.
9782 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
9783 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
9784 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
9785 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
9786 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
9787 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
9788 (ia64_libunwind_frame_prev_register)
9789 (ia64_libunwind_sigtramp_frame_this_id)
9790 (ia64_find_global_pointer_from_dynamic_section)
9791 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
9792 (ia64_unwind_pc): Likewise.
9793 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
9794 * m68hc11-tdep.c (m68hc11_push_dummy_call)
9795 (m68hc11_extract_return_value): Likewise.
9796 * m68klinux-nat.c (fetch_register, store_register): Likewise.
9797 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
9798 (mep_get_insn, mep_push_dummy_call): Likewise.
9799 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
9800 (mips_linux_in_dynsym_stub): Likewise.
9801 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
9802 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
9803 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
9804 to gdb_byte.
9805 * remote-mips.c (mips_set_register): Likewise.
9806 * remote-sim.c (gdbsim_fetch_register): Likewise.
9807 * score-tdep.c (score7_fetch_inst): Change type of parameter
9808 'memblock' and local 'buf' to gdb_byte.
9809 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
9810 Change type of local 'buf' to gdb_byte. Adjust.
9811 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
9812 to gdb_byte**.
9813 (score7_analyze_prologue): Change type of 'memblock' and
9814 'memblock_ptr' locals to gdb_byte*.
9815 * sh64-tdep.c (sh64_extract_return_value)
9816 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
9817 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
9818 * solib-pa64.c (pa64_solib_create_inferior_hook)
9819 (pa64_open_symbol_file_object): Remove local 'buf'.
9820 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
9821 (som_open_symbol_file_object): Likewise.
9822 * solib-spu.c (spu_current_sos): Likewise.
9823 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
9824 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
9825 (spu_store_registers): Likewise.
9826 * target.c (debug_print_register): Likewise.
9827 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
9828 * xstormy16-tdep.c (xstormy16_store_return_value)
9829 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
9830 (xstormy16_find_jmp_table_entry): Likewise.
9831
9832 2013-03-01 Jiong Wang <jiwang@tilera.com>
9833
9834 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
9835 (tilegx_gdbarch_init): Install it.
9836
9837 2013-02-28 Tom Tromey <tromey@redhat.com>
9838
9839 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
9840 PyLong_Check.
9841
9842 2013-02-28 Doug Evans <dje@google.com>
9843
9844 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
9845 * python/python.c (gdbpy_find_pc_line): Ditto.
9846
9847 2013-02-28 Tom Tromey <tromey@redhat.com>
9848
9849 * contrib/excheck.py: New file.
9850 * contrib/exsummary.py: New file.
9851 * contrib/gcc-with-excheck: New file.
9852
9853 2013-02-28 Tom Tromey <tromey@redhat.com>
9854
9855 * python/python.c (gdbpy_print_stack): Call begin_line and
9856 fprintf_filtered inside TRY_CATCH.
9857
9858 2013-02-28 Tom Tromey <tromey@redhat.com>
9859
9860 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
9861 inside TRY_CATCH.
9862
9863 2013-02-28 Tom Tromey <tromey@redhat.com>
9864
9865 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
9866 frame_object_to_frame_info inside TRY_CATCH.
9867
9868 2013-02-28 Tom Tromey <tromey@redhat.com>
9869
9870 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
9871 TRY_CATCH.
9872
9873 2013-02-28 Tom Tromey <tromey@redhat.com>
9874
9875 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
9876
9877 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
9878
9879 * windows-nat.c: Throughout, fix format strings and casts of
9880 printf-like functions to avoid type related warnings on all
9881 platforms.
9882 (handle_output_debug_string): Fetch context information address
9883 from debug string using string_to_core_addr.
9884
9885 2013-02-27 Jiong Wang <jiwang@tilera.com>
9886
9887 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
9888 * regformats/reg-tilegx32.dat: New.
9889
9890 2013-02-27 Jiong Wang <jiwang@tilera.com>
9891
9892 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
9893
9894 2013-02-27 Jiong Wang <jiwang@tilera.com>
9895
9896 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
9897
9898 2013-02-27 Yao Qi <yao@codesourcery.com>
9899 Pedro Alves <palves@redhat.com>
9900
9901 * tracepoint.c (tfile_trace_find): For tfind
9902 pc/tp/range/outside, look for the next trace frame instead of
9903 always starting from frame 0.
9904
9905 2013-02-26 Anthony Green <green@moxielogic.com>
9906
9907 * configure.tgt: Add support for moxie-*-rtems* target.
9908
9909 2013-02-25 Pedro Alves <palves@redhat.com>
9910
9911 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
9912 warning text.
9913
9914 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
9915
9916 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
9917 if $fp is used as the virtual frame pointer.
9918
9919 2013-02-23 Alan Modra <amodra@gmail.com>
9920
9921 * elfread.c (elf_symtab_read): Do not use udata.p here to find
9922 symbol size.
9923 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
9924 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
9925 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
9926 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
9927
9928 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
9929
9930 Code cleanup.
9931 * elfread.c (build_id_bfd_get): Make the return type const.
9932 (build_id_verify): Make the check parameter const.
9933 (build_id_to_debug_filename): Make the build_id parameter and variable
9934 data const.
9935 (find_separate_debug_file_by_buildid): Make the variable build_id const.
9936
9937 2013-02-21 Alan Modra <amodra@gmail.com>
9938
9939 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
9940
9941 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
9942
9943 Add a new method 'disassemble' to gdb.Architecture class.
9944 * python/py-arch.c (archpy_disassmble): Implementation of the
9945 new method gdb.Architecture.disassemble.
9946 (arch_object_methods): Add entry for the new method.
9947
9948 2013-02-20 Jiong Wang <jiwang@tilera.com>
9949
9950 * MAINTAINERS (Write After Approval): Add myself to the list.
9951
9952 2013-02-19 Pedro Alves <palves@redhat.com>
9953
9954 Garbage collect 'struct monitor_ops'::load_routine.
9955
9956 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
9957 * monitor.c (monitor_load): No longer call
9958 current_monitor->load_routine.
9959 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
9960 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
9961 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
9962
9963 2013-02-19 Pedro Alves <palves@redhat.com>
9964
9965 PR gdb/15161
9966
9967 Harmonize with generic_load.
9968
9969 * monitor.c: Include "readline/readline.h".
9970 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
9971 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
9972 long/strtol for the 'load_offset' local. Error out if no argument
9973 is given or if too many arguments are given. Tilde expand the
9974 passed in file name.
9975
9976 2013-02-19 Kai Tietz <ktietz@redhat.com>
9977
9978 PR gdb/15161
9979 * symfile.c (load_section_data): Change type of load_offset
9980 to CORE_ADDR.
9981 (generic_load): User strtoulst instead of strtoul for conversion
9982 of load_offset.
9983
9984 2013-02-19 Jiong Wang <jiwang@tilera.com>
9985
9986 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
9987 for return address, "lr" register, saved on stack.
9988 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
9989 after we invoke tilegx_analyze_prologue.
9990
9991 2013-02-19 Jiong Wang <jiwang@tilera.com>
9992
9993 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
9994
9995 2013-02-19 Jiong Wang <jiwang@tilera.com>
9996
9997 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
9998
9999 2013-02-19 Jiong Wang <jiwang@tilera.com>
10000
10001 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
10002 (tilegx_write_pc): New function.
10003 (tilegx_cannot_reference_register): Return zero if REGNO
10004 is TILEGX_FAULTNUM_REGNUM.
10005 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
10006 (tilegx_register_name): Add handling of "faultnum" register.
10007 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
10008 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
10009 handling of TILEGX_FAULTNUM_REGNUM.
10010 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
10011
10012 2013-02-19 Jiong Wang <jiwang@tilera.com>
10013
10014 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
10015 should be aligned to 64bit.
10016
10017 2013-02-19 Kai Tietz <ktietz@redhat.com>
10018
10019 * windows-nat.c (windows_xfer_memory): Fix debug-output
10020 for LLP64.
10021
10022 2013-02-19 Lei Liu <lei.liu2@windriver.com>
10023
10024 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
10025 Don't check DSP register number if HAVE_DSP is not set.
10026
10027 2013-02-19 Alan Modra <amodra@gmail.com>
10028
10029 * elfread.c (struct build_id): Delete. Use struct elf_build_id
10030 throughout file instead.
10031 (build_id_bfd_get): Update to use new elf_tdata build_id field.
10032 Don't xmalloc return value.
10033 (build_id_verify): Similarly. Don't xfree.
10034 (build_id_to_debug_filename): Update.
10035 (find_separate_debug_file_by_buildid): Update, don't xfree.
10036
10037 2013-02-18 Tom Tromey <tromey@redhat.com>
10038
10039 PR gdb/15102:
10040 * dwarf2read.c (read_subrange_type): Use result of
10041 'check_typedef'.
10042
10043 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
10044
10045 * frame.c: Remove one extra white space after #include
10046 directive.
10047
10048 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10049
10050 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
10051
10052 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10053
10054 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
10055 and dir commands into an if block.
10056
10057 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
10058
10059 * python/py-breakpoint (struct pybp_code): Use int instead of
10060 enum type_code.
10061
10062 2013-02-15 Pedro Alves <pedro@codesourcery.com>
10063 Hafiz Abid Qadeer <abidh@codesourcery.com>
10064
10065 * NEWS: Mention new field "trace-file".
10066 * tracepoint.c (trace_status_mi): Output "trace-file" field.
10067 (tfile_open): Record the trace file's filename in the trace
10068 status.
10069 (tfile_files_info): Mention the name of the trace file.
10070 Check the "filename" field explicitely.
10071 (trace_status_command): Explicitely check "filename" field.
10072 (trace_find_command): Ditto.
10073 (trace_find_pc_command): Ditto.
10074 (trace_find_tracepoint_command): Ditto.
10075 (trace_find_line_command): Ditto.
10076 (trace_find_range_command): Ditto.
10077 (trace_find_outside_command): Ditto.
10078 * tracepoint.h (struct trace_status) <from_file>: Rename it
10079 to "filename" and make it hold the trace file's filename
10080 instead of a boolean.
10081 * remote.c (remote_get_trace_status): Initialize "filename"
10082 field with NULL instead of 0.
10083
10084 2013-02-15 Yao Qi <yao@codesourcery.com>
10085
10086 * remote.c: Fix a typo.
10087
10088 2013-02-14 Pierre Muller <muller@sourceware.org>
10089
10090 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
10091
10092 2013-02-14 Pedro Alves <palves@redhat.com>
10093
10094 * utils.c (savestring): Don't #undef it. Move function to
10095 common/common-utils.c.
10096 * common/common-utils.c: Include gdb_string.h.
10097 (savestring): Move here from utils.c.
10098 * common/common-utils.h (savestring): Declare.
10099
10100 2013-02-14 Pedro Alves <palves@redhat.com>
10101
10102 * utils.c (savestring): Rename parameter 'size' to 'len'.
10103
10104 2013-02-14 Pedro Alves <palves@redhat.com>
10105 Yufeng Zhang <yufeng.zhang@arm.com>
10106
10107 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
10108 (aarch64_inferior_data, struct aarch64_inferior_data):
10109 Delete.
10110 (struct aarch64_process_info): New.
10111 (aarch64_process_list): New global.
10112 (aarch64_find_process_pid, aarch64_add_process)
10113 (aarch64_process_info_get): New functions.
10114 (aarch64_inferior_data_get): Delete.
10115 (aarch64_process_info_get): New function.
10116 (aarch64_forget_process): New function.
10117 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
10118 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
10119 aarch64_get_debug_reg_state.
10120 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
10121 instead of linux_nat_iterate_watchpoint_lwps.
10122 (aarch64_linux_new_fork): New function.
10123 (aarch64_linux_child_post_startup_inferior): Use
10124 aarch64_forget_process instead of aarch64_init_debug_reg_state.
10125 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
10126 (aarch64_linux_remove_hw_breakpoint)
10127 (aarch64_handle_aligned_watchpoint)
10128 (aarch64_handle_unaligned_watchpoint)
10129 (aarch64_linux_insert_watchpoint)
10130 (aarch64_linux_remove_watchpoint)
10131 (aarch64_linux_stopped_data_address): Adjust to pass the current
10132 process id to aarch64_debug_reg_state.
10133 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
10134 linux_nat_new_fork hook, and aarch64_forget_process as
10135 linux_nat_forget_process hook; remove the call to
10136 register_inferior_data_with_cleanup.
10137
10138 2013-02-14 Pedro Alves <palves@redhat.com>
10139
10140 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
10141 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
10142 lval_memory.
10143
10144 2013-02-14 Pedro Alves <pedro@codesourcery.com>
10145 Hafiz Abid Qadeer <abidh@codesourcery.com>
10146
10147 * tracepoint.h (validate_trace_state_variable_name): Declare.
10148 * tracepoint.c (validate_trace_state_variable_name): New.
10149 (trace_variable_command): Parse the trace state variable's name
10150 without using parse_expression. Do several validations.
10151 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
10152 trace state variable's name with parse_expression. Validate it.
10153
10154 2013-02-14 Yao Qi <yao@codesourcery.com>
10155
10156 * infcmd.c (breakpoint_proceeded): Remove it.
10157
10158 2013-02-14 Yao Qi <yao@codesourcery.com>
10159
10160 * tracepoint.c (end_actions_pseudocommand): Make it static.
10161 (while_stepping_pseudocommand): Likewise.
10162 * tracepoint.h (end_actions_pseudocommand): Remove the
10163 declaration.
10164 (while_stepping_pseudocommand): Likewise.
10165
10166 2013-02-14 Yao Qi <yao@codesourcery.com>
10167
10168 * cli/cli-decode.c (help_cmd): Remove the declaration of
10169 "cmdlist".
10170 (help_all): Likewise.
10171
10172 2013-02-13 Pedro Alves <palves@redhat.com>
10173
10174 * amd64-linux-nat.c (update_debug_registers_callback):
10175 Update comment.
10176 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
10177 iterate_over_lwps.
10178 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
10179 i386_debug_reg_state.
10180 (amd64_linux_new_fork): New function.
10181 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
10182 linux_nat_new_fork hook, and i386_forget_process as
10183 linux_nat_forget_process hook.
10184 * i386-linux-nat.c (update_debug_registers_callback):
10185 Update comment.
10186 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
10187 iterate_over_lwps.
10188 (i386_linux_prepare_to_resume): Pass the lwp's pid to
10189 i386_debug_reg_state.
10190 (i386_linux_new_fork): New function.
10191 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
10192 linux_nat_new_fork hook, and i386_forget_process as
10193 linux_nat_forget_process hook.
10194 * i386-nat.c (i386_init_dregs): Delete.
10195 (i386_inferior_data, struct i386_inferior_data):
10196 Delete.
10197 (struct i386_process_info): New.
10198 (i386_process_list): New global.
10199 (i386_find_process_pid, i386_add_process, i386_process_info_get):
10200 New functions.
10201 (i386_inferior_data_get): Delete.
10202 (i386_process_info_get): New function.
10203 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
10204 (i386_forget_process): New function.
10205 (i386_cleanup_dregs): Rewrite.
10206 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
10207 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
10208 (i386_stopped_data_address, i386_insert_hw_breakpoint)
10209 (i386_remove_hw_breakpoint): Adjust to pass the current process id
10210 to i386_debug_reg_state.
10211 (i386_use_watchpoints): Don't register inferior data.
10212 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
10213 adjust comment.
10214 (i386_forget_process): Declare.
10215 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
10216 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
10217 New static globals.
10218 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
10219 (add_initial_lwp): New, factored out from ...
10220 (add_lwp): ... this. Don't check the number of lwps before
10221 calling linux_nat_new_thread.
10222 (linux_nat_iterate_watchpoint_lwps): Delete.
10223 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
10224 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
10225 forks and vforks.
10226 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
10227 initial lwp.
10228 (linux_nat_kill, linux_nat_mourn_inferior): Call
10229 linux_nat_forget_process.
10230 (linux_nat_set_new_fork, linux_nat_set_forget_process)
10231 (linux_nat_forget_process): New functions.
10232 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
10233 type.
10234 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
10235 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
10236 types.
10237 (linux_nat_set_new_fork, linux_nat_set_forget_process)
10238 (linux_nat_forget_process): New declarations.
10239
10240 * amd64fbsd-nat.c (super_mourn_inferior): New global.
10241 (amd64fbsd_mourn_inferior): New function.
10242 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
10243 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
10244
10245 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
10246
10247 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
10248 Adding _().
10249
10250 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
10251
10252 * aarch64-linux-nat.c (debug_reg_change_callback)
10253 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
10254 %s and phex().
10255
10256 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
10257
10258 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
10259 with LONGEST.
10260
10261 2013-02-13 Pedro Alves <palves@redhat.com>
10262 Hafiz Abid Qadeer <abidh@codesourcery.com>
10263
10264 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
10265
10266 2013-02-12 Tom Tromey <tromey@redhat.com>
10267
10268 PR symtab/11464:
10269 * c-exp.y (lex_one_token): Initialize other fields of yylval on
10270 NAME return.
10271 (classify_inner_name): Remove 'first_name' argument, add
10272 'context'. Remove unused variable.
10273 (yylex): Explicitly maintain the context type. Exit loop earlier
10274 if NAME result is seen.
10275
10276 2013-02-12 Pedro Alves <palves@redhat.com>
10277
10278 * amd64-darwin-tdep.c: Add (C) after Copyright.
10279 * cli/cli-cmds.h: Ditto.
10280 * cli/cli-decode.c: Ditto.
10281 * cli/cli-decode.h: Ditto.
10282 * cli/cli-dump.c: Ditto.
10283 * cli/cli-dump.h: Ditto.
10284 * cli/cli-interp.c: Ditto.
10285 * cli/cli-logging.c: Ditto.
10286 * cli/cli-script.c: Ditto.
10287 * cli/cli-script.h: Ditto.
10288 * cli/cli-setshow.c: Ditto.
10289 * cli/cli-setshow.h: Ditto.
10290 * cli/cli-utils.c: Ditto.
10291 * cli/cli-utils.h: Ditto.
10292 * config/alpha/nm-osf3.h: Ditto.
10293 * config/djgpp/djconfig.sh: Ditto.
10294 * config/i386/nm-fbsd.h: Ditto.
10295 * config/i386/nm-i386gnu.h: Ditto.
10296 * config/nm-linux.h: Ditto.
10297 * config/nm-nto.h: Ditto.
10298 * config/rs6000/nm-rs6000.h: Ditto.
10299 * config/sparc/nm-sol2.h: Ditto.
10300 * darwin-nat-info.c: Ditto.
10301 * dfp.c: Ditto.
10302 * dfp.h: Ditto.
10303 * gdb-demangle.h: Ditto.
10304 * i386-darwin-nat.c: Ditto.
10305 * i386-darwin-tdep.c: Ditto.
10306 * linux-fork.h: Ditto.
10307 * m32c-tdep.c: Ditto.
10308 * microblaze-linux-tdep.c: Ditto.
10309 * microblaze-rom.c: Ditto.
10310 * microblaze-tdep.c: Ditto.
10311 * microblaze-tdep.h: Ditto.
10312 * mips-linux-tdep.h: Ditto.
10313 * ppc-ravenscar-thread.c: Ditto.
10314 * ppc-ravenscar-thread.h: Ditto.
10315 * prologue-value.c: Ditto.
10316 * prologue-value.h: Ditto.
10317 * ravenscar-thread.c: Ditto.
10318 * ravenscar-thread.h: Ditto.
10319 * sparc-ravenscar-thread.c: Ditto.
10320 * sparc-ravenscar-thread.h: Ditto.
10321 * tilegx-linux-tdep.c: Ditto.
10322 * unwind_stop_reasons.def: Ditto.
10323 * windows-nat.h: Ditto.
10324 * xtensa-linux-tdep.c: Ditto.
10325 * xtensa-xtregs.c: Ditto.
10326 * regformats/regdat.sh: Ditto.
10327 * regformats/regdef.h: Ditto.
10328
10329 2013-02-12 Pedro Alves <palves@redhat.com>
10330
10331 * break-catch-sig.c: Update copyright years.
10332
10333 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
10334
10335 Add support for a destructor for ui_out data and use it to
10336 provide a ui_out destructor.
10337 * ui-out.h: Declare the new ui_out destructor.
10338 (ui_out_impl): Add a field for data destructor in ui_out_impl.
10339 * ui-out.c (default_data_destroy): Add a default data destructor
10340 which does nothing.
10341 (default_ui_out_impl): Set the new data_destroy field to
10342 default_data_destroy
10343 (uo_data_destroy): Local function which invokes the data
10344 destructor if present.
10345 (clear_table): Local function which clears the table data of a
10346 ui_out object.
10347 (ui_out_destroy): Public function which frees a ui_out object.
10348 (ui_out_table_end): Use the new clear_table function.
10349 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
10350 NULL.
10351 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
10352 to NULL.
10353
10354 2013-02-11 Doug Evans <dje@google.com>
10355
10356 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
10357 (printf_decfloat): New function. Broken out from ui_printf.
10358 Remove unnecessary code to shift the entire format string down.
10359 (printf_pointer): New function.
10360 (ui_printf): Code to print C strings, wide C strings, decfloats,
10361 and pointers moved to separate functions.
10362
10363 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
10364
10365 * valops.c (value_assign): Handling bitfield offset in
10366 `lval_internalvar_component' case.
10367
10368 2013-02-08 Doug Evans <dje@google.com>
10369
10370 * common/format.c (parse_format_string): Fix whitespace.
10371
10372 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
10373
10374 * stack.c (return_command): Work around uninitialized variable
10375 warning.
10376
10377 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
10378
10379 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
10380 number of the registers from 36 to 34.
10381
10382 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
10383
10384 * NEWS: Mention new AArch64 native and target support.
10385
10386 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
10387
10388 * MAINTAINERS (Write After Approval): Add myself.
10389
10390 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
10391 Marcus Shawcroft <marcus.shawcroft@arm.com>
10392 Nigel Stephens <nigel.stephens@arm.com>
10393 Yufeng Zhang <yufeng.zhang@arm.com>
10394
10395 * aarch64-linux-nat.c: New file.
10396 * config/aarch64/linux.mh: New file.
10397 * configure.host: Add AArch64.
10398 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
10399
10400 2013-02-07 Doug Evans <dje@google.com>
10401
10402 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
10403 disassemble command.
10404
10405 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
10406
10407 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
10408 set_gdbarch_fetch_tls_load_module_address.
10409
10410 2013-02-06 David S. Miller <davem@davemloft.net>
10411
10412 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
10413 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
10414 * value.c (struct_return_convention): New function.
10415 (using_struct_return): Implement in terms of struct_return_convention.
10416 * value.h (struct_return_convention): Declare.
10417 * stack.c (return_command): Allow successful overriding of the return
10418 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
10419
10420 2013-02-06 Tom Tromey <tromey@redhat.com>
10421
10422 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
10423 outside of TRY_CATCH.
10424
10425 2013-02-06 Yao Qi <yao@codesourcery.com>
10426
10427 * mi/mi-interp.c: Include "tracepoint.h".
10428 (mi_tsv_modified): Declare.
10429 (mi_tsv_created, mi_tsv_deleted): Update declaration.
10430 (mi_interpreter_init): Call observer_attach_tsv_modified.
10431 (mi_tsv_modified): New.
10432 (mi_tsv_created, mi_tsv_deleted): Update.
10433 * tracepoint.c (trace_variable_command): Call
10434 observer_notify_tsv_modified if the initial value of tsv is
10435 changed.
10436 (delete_trace_state_variable): Call
10437 observer_notify_tsv_deleted earlier.
10438 (trace_variable_command): Caller update.
10439 (create_tsv_from_upload): Likewise.
10440 * observer.sh: Declare "struct trace_state_variable".
10441
10442 * NEWS: Mention the new MI notification "=tsv-modified".
10443
10444 2013-02-05 Doug Evans <dje@google.com>
10445
10446 * completer.c (location_completer): Fix typo in comment.
10447
10448 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
10449
10450 * breakpoint.c (add_location_to_breakpoint): Insert the location with
10451 ADDRESS sorted.
10452
10453 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
10454
10455 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
10456 Refactor if statement to avoid trailing || operator.
10457
10458 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
10459
10460 * NEWS: Add PowerPC FreeBSD as a new native configuration.
10461
10462 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
10463
10464 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
10465 * configure.host: Add powerpc*-*-freebsd* target.
10466 * configure.tgt: Add target info for powerpc*-*-freebsd*.
10467 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
10468 * config/powerpc/fbsd.mh: New file.
10469
10470 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
10471 Denys Vlasenko <dvlasenk@redhat.com>
10472 Pedro Alves <palves@redhat.com>
10473
10474 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
10475 (struct elf_internal_linux_prpsinfo): Forward declare.
10476 * gdbarch.h, gdbarch.c: Regenerate.
10477 * linux-tdep.c: Include `cli/cli-utils.h'.
10478 (linux_fill_prpsinfo): New function.
10479 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
10480 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
10481 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
10482 depending on gdbarch pointer bitness.
10483 * ppc-linux-tdep.c: Include elf-bfd.h.
10484 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
10485 on 32-bit.
10486
10487 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10488 Marcus Shawcroft <marcus.shawcroft@arm.com>
10489 Nigel Stephens <nigel.stephens@arm.com>
10490 Yufeng Zhang <yufeng.zhang@arm.com>
10491
10492 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
10493
10494 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10495 Marcus Shawcroft <marcus.shawcroft@arm.com>
10496 Nigel Stephens <nigel.stephens@arm.com>
10497 Yufeng Zhang <yufeng.zhang@arm.com>
10498
10499 * aarch64-newlib-tdep.c: New file.
10500 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
10501 aarch64*-*-elf.
10502 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
10503 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
10504 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
10505 * osabi.c (gdb_osabi_names): Add "Newlib".
10506
10507 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10508 Marcus Shawcroft <marcus.shawcroft@arm.com>
10509 Nigel Stephens <nigel.stephens@arm.com>
10510 Yufeng Zhang <yufeng.zhang@arm.com>
10511
10512 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
10513 (ALLDEPFILES): Add aarch64-linux-tdep.c.
10514 * aarch64-linux-tdep.c: New file.
10515 * aarch64-linux-tdep.h: New file.
10516 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
10517 * configure.tgt: Add aarch64-none-linux-gnu.
10518
10519 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10520 Marcus Shawcroft <marcus.shawcroft@arm.com>
10521 Nigel Stephens <nigel.stephens@arm.com>
10522 Yufeng Zhang <yufeng.zhang@arm.com>
10523
10524 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
10525 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
10526 (ALLDEPFILES): Add aarch64-tdep.c.
10527 * aarch64-tdep.c: New file.
10528 * aarch64-tdep.h: New file.
10529 * configure.tgt: Add AArch64.
10530 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
10531 (aarch64-expedite): New definition.
10532 * features/aarch64-core.xml: New file.
10533 * features/aarch64-fpu.xml: New file.
10534 * features/aarch64-without-fpu.c: New file (generated).
10535 * features/aarch64-without-fpu.xml: New file.
10536 * features/aarch64.c: New file (generated).
10537 * features/aarch64.xml: New file.
10538 * regformats/aarch64-without-fpu.dat: New file (generated).
10539 * regformats/aarch64.dat: New file (generated).
10540
10541 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10542
10543 * contrib/expect-read1.c: New file.
10544 * contrib/expect-read1.sh: New file.
10545
10546 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10547
10548 * dwarf2read.c (file_file_name): New function with code from
10549 file_full_name.
10550 (file_full_name): Move most of the code to file_file_name.
10551 (macro_start_file): Rename variable full_name to file_name and use
10552 file_file_name for it. Add comp_dir parameter to new_macro_table.
10553 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
10554 macro_source_file->filename access by macro_source_fullname call.
10555 * macroscope.c (_initialize_macroscope): Update the new_macro_table
10556 caller.
10557 * macrotab.c (struct macro_table): New field comp_dir.
10558 (macro_include): New variables link_fullname and source_fullname.
10559 Replace any macro_source_file->filename access by macro_source_fullname
10560 call.
10561 (macro_lookup_inclusion): Remove the partial filenames checking code.
10562 (check_for_redefinition): New variables source_fullname and
10563 found_key_fullname. Replace any macro_source_file->filename access by
10564 macro_source_fullname call.
10565 (macro_undef): New variables source_fullname and key_fullname. Replace
10566 any macro_source_file->filename access by macro_source_fullname call.
10567 (macro_lookup_definition): New variables retval and source_fullname.
10568 Replace any macro_source_file->filename access by macro_source_fullname
10569 call.
10570 (foreach_macro): New variable key_fullname. Replace any
10571 macro_source_file->filename access by macro_source_fullname call.
10572 (foreach_macro_in_scope): New variable datum_fullname. Replace any
10573 macro_source_file->filename access by macro_source_fullname call.
10574 (new_macro_table): Add parameter comp_dir. Initialize T with it.
10575 (macro_source_fullname): New function.
10576 * macrotab.h (struct macro_source_file): Extent the filename field
10577 comment.
10578 (new_macro_table): New parameter comp_dir, add a comment for it.
10579 (macro_source_fullname): new declaration.
10580
10581 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10582
10583 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
10584 this_real_name to outer block. Use it also for
10585 compare_filenames_for_search.
10586 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
10587 with dw2_get_real_path for file_matcher, considering also
10588 BASENAMES_MAY_DIFFER.
10589 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
10590
10591 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10592
10593 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
10594 to the file_matcher parameter. Pass 0 to it.
10595 (dwarf2_create_include_psymtab): Copy also DIRNAME.
10596 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
10597 NULL psymtab_to_fullname result.
10598 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
10599 an expected filename instead.
10600 (expand_symtabs_matching_via_partial): Add basenames parameter to the
10601 file_matcher parameter. Call also psymtab_to_fullname, after newly
10602 considering BASENAMES_MAY_DIFFER.
10603 * source.c (rewrite_source_path): Remove static.
10604 * source.h (rewrite_source_path): New declaration.
10605 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
10606 the expand_symtabs_matching field. Comment it.
10607 * symtab.c (file_matches): New function comment. Add parameter
10608 basenames, implement it.
10609 (search_symbols_file_matches): Add basenames parameter. Update the
10610 file_matches caller.
10611 (search_symbols): Match FILES also against symtab_to_fullname.
10612 Optimize it for BASENAMES_MAY_DIFFER.
10613
10614 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10615
10616 * source.c (print_source_lines_base): Print for TUI also "fullname".
10617 * tui/tui-data.c (init_content_element): Change tui_locator_element
10618 field to full_name.
10619 * tui/tui-data.h (struct tui_locator_element): Likewise.
10620 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
10621 tui_update_locator_filename calls to tui_update_locator_fullname.
10622 Replace symtab->filename refererence by symtab_to_fullname call.
10623 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
10624 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
10625 field to full_name. Replace symtab->filename refererence by
10626 symtab_to_fullname call.
10627 (tui_show_symtab_source): Rename parameter to fullname. Change
10628 tui_locator_element field to full_name.
10629 * tui/tui-stack.c: Include source.h.
10630 (tui_set_locator_filename): Rename the declaration to ...
10631 (tui_set_locator_fullname): ... here. Rename its parameter to
10632 fullname, updates its comment.
10633 (tui_set_locator_info): Rename its parameter to fullname.
10634 (tui_set_locator_filename): Rename the definition to ...
10635 (tui_set_locator_fullname): ... here. Rename its parameter to
10636 fullname, updates its comment. Change tui_locator_element field to
10637 full_name.
10638 (tui_set_locator_info): Rename its parameter to fullname.
10639 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
10640 (tui_update_locator_filename): Rename to ...
10641 (tui_update_locator_fullname): ... here. Rename callee to
10642 tui_set_locator_fullname.
10643 (tui_show_frame_info): Replace symtab->filename refererence by
10644 symtab_to_fullname call.
10645 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
10646 (tui_update_locator_fullname): ... here.
10647 * tui/tui-winsource.c (tui_display_main): Rename the callee to
10648 tui_update_locator_fullname. Replace symtab->filename refererence by
10649 symtab_to_fullname call.
10650 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
10651 Rename the callee to tui_update_locator_fullname.
10652 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
10653
10654 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10655
10656 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
10657 by symtab_to_filename_for_display calls.
10658 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
10659 (clear_command): New variable sal_fullname, initialize it. Replace
10660 compare_filenames_for_search by filename_cmp with sal_fullname.
10661 (say_where, update_static_tracepoint): Replace symtab->filename
10662 refererences by symtab_to_filename_for_display calls.
10663 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
10664 Likewise.
10665 * dwarf2read.c: Include source.h.
10666 (fixup_go_packaging): Replace symtab->filename refererences by
10667 symtab_to_filename_for_display calls.
10668 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
10669 Replace symtab->filename refererences by symtab_to_filename_for_display
10670 calls.
10671 (create_sals_line_offset, convert_linespec_to_sals): New variable
10672 fullname, initialize it, replace symtab->filename reference by the
10673 variable.
10674 * linux-fork.c: Include source.h.
10675 (info_checkpoints_command): Replace symtab->filename refererences by
10676 symtab_to_filename_for_display calls.
10677 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
10678 by symtab_to_filename_for_display calls.
10679 * mdebugread.c: Include source.h.
10680 (psymtab_to_symtab_1): Replace symtab->filename refererences by
10681 symtab_to_filename_for_display calls.
10682 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
10683 (mi_cmd_file_list_exec_source_files): Likewise.
10684 * printcmd.c: Include source.h.
10685 (build_address_symbolic): Replace symtab->filename refererences by
10686 symtab_to_filename_for_display calls.
10687 * psymtab.c (partial_map_symtabs_matching_filename)
10688 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
10689 with psymtab_to_fullname.
10690 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
10691 by symtab_to_filename_for_display calls.
10692 (stpy_get_filename): New variable filename, initialize it, use instead
10693 of symtab->filename refererences.
10694 (salpy_str): Make variable filename const char *. Replace
10695 symtab->filename refererences by symtab_to_filename_for_display calls.
10696 * skip.c: Include source.h and filenames.h.
10697 (skip_file_command): Remove const from the symtab variable. Replace
10698 symtab->filename refererences by symtab_to_fullname call.
10699 (function_name_is_marked_for_skip): New variables searched_for_fullname
10700 and fullname. Use them to search also with symtab's fullname.
10701 * source.c (find_source_lines): Replace symtab->filename refererences
10702 by symtab_to_filename_for_display calls.
10703 (print_source_lines_base): New variable filename, use it instead of
10704 symtab->filename. Replace symtab->filename refererences by
10705 symtab_to_filename_for_display calls.
10706 (line_info, forward_search_command): Replace symtab->filename
10707 refererences by symtab_to_filename_for_display calls.
10708 (reverse_search_command): Replace symtab->filename refererences by
10709 symtab_to_filename_for_display calls. New variable filename for it.
10710 * stack.c (frame_info): Likewise.
10711 * symmisc.c: Include source.h.
10712 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
10713 (maintenance_info_symtabs): Replace symtab->filename refererences by
10714 symtab_to_filename_for_display calls.
10715 * symtab.c (iterate_over_some_symtabs): Call
10716 compare_filenames_for_search also with symtab_to_fullname.
10717 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
10718 symtab->filename refererences by symtab_to_filename_for_display calls.
10719 (find_line_symtab): Replace symtab->filename refererences by
10720 symtab_to_filename_for_display calls.
10721 (file_matches): Replace filename_cmp by compare_filenames_for_search.
10722 (print_symbol_info): Make the last parameter const char *. New
10723 variable s_filename. Use it in the function.
10724 (symtab_symbol_info): Make the last_filename variable const char *.
10725 Replace symtab->filename refererences by symtab_to_filename_for_display
10726 calls.
10727 (rbreak_command): New variable fullname. Use it. Replace
10728 symtab->filename refererence by symtab_to_filename_for_display call.
10729 * tracepoint.c (set_traceframe_context, trace_find_line_command)
10730 (print_one_static_tracepoint_marker): Replace symtab->filename
10731 refererences by symtab_to_filename_for_display calls.
10732 * tui/tui-source.c (tui_set_source_content): New variables filename and
10733 s_filename. Replace symtab->filename refererences by this variable.
10734 Replace other symtab->filename refererences by
10735 symtab_to_filename_for_display calls.
10736
10737 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
10738 Jan Kratochvil <jan.kratochvil@redhat.com>
10739
10740 Add a new variable that controls a way in which filenames are
10741 displayed.
10742 * NEWS (set filename-display): New entry.
10743 * source.c (filename_display_basename, filename_display_relative)
10744 (filename_display_absolute, filename_display_kind_names)
10745 (filename_display_string, show_filename_display_string)
10746 (symtab_to_filename_for_display): New.
10747 (_initialize_source): Added initialization of 'filename-display'
10748 variable.
10749 * source.h (symtab_to_filename_for_display): Added declaration.
10750 * stack.c (print_frame): Added new variable and calling of a new
10751 function and condition with this variable. Changed third argument of
10752 calling of a function.
10753
10754 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10755
10756 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
10757 Rename field reference filename to fullname.
10758 * tui/tui-data.h (struct tui_source_info): Rename field filename to
10759 fullname. New comment for it.
10760 * tui/tui-source.c (tui_set_source_content): Rename field reference
10761 filename to fullname. Initialize field by symtab_to_fullname now.
10762 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
10763 reference filename to fullname. Use symtab_to_fullname during
10764 comparison.
10765
10766 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10767
10768 Code cleanup.
10769 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
10770 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
10771 filename to fullname. Rename variable this_name to this_fullname.
10772 Lowercase FILENAME_CMP call.
10773 (dw2_find_symbol_file): New comment for the returned string.
10774 (dwarf2_gdb_index_functions): Rename the function to
10775 dw2_expand_symtabs_with_fullname.
10776 * psymtab.c (read_psymtabs_with_filename): Rename to ...
10777 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
10778 fullname.
10779 (psym_functions): Rename the function to read_psymtabs_with_fullname.
10780 * symfile.h (struct quick_symbol_functions): Rename field
10781 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
10782 parameter filename to fullname. Document returned string meaning for
10783 find_symbol_file.
10784 * symtab.c (find_line_symtab): Rename the called function to
10785 expand_symtabs_with_fullname.
10786
10787 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10788
10789 Code cleanup.
10790 * breakpoint.c (clear_command): Remove variable is_abs, unify the
10791 call of filename_cmp with compare_filenames_for_search.
10792 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
10793 is_abs, unify the call of FILENAME_CMP with
10794 compare_filenames_for_search. New gdb_asserts for real_path and name.
10795 Unify the call of compare_filenames_for_search with FILENAME_CMP.
10796 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
10797 * symfile.h (struct quick_symbol_functions): Extend the comment for
10798 map_symtabs_matching_filename.
10799 * symtab.c (compare_filenames_for_search): Remove the function comment
10800 relative path requirement. Handle absolute filenames, with a comment.
10801 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
10802 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
10803 real_path and name. Unify the call of compare_filenames_for_search
10804 with FILENAME_CMP.
10805 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
10806
10807 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10808
10809 Code cleanup.
10810 * breakpoint.c (print_breakpoint_location): Replace bp_location field
10811 source_file references by symtab field references. Remove variables
10812 sal and fullname.
10813 (momentary_breakpoint_from_master, add_location_to_breakpoint):
10814 (clear_command, say_where): Replace bp_location field source_file
10815 references by symtab field references.
10816 (bp_location_dtor): Remove the source_file reference.
10817 (update_static_tracepoint): Replace bp_location field source_file
10818 references by symtab field references.
10819 (breakpoint_free_objfile): New function.
10820 * breakpoint.h (struct bp_location): Extend the comment for line_number.
10821 Replace the field source_file by field symtab, extend its comment.
10822 (breakpoint_free_objfile): New declaration.
10823 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
10824 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
10825 field source_file references by symtab field references.
10826
10827 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10828
10829 Replace xfullpath calls by gdb_realpath calls.
10830 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
10831 function comment.
10832 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
10833 Remove it from the iterate_over_some_symtabs call.
10834 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
10835 Remove it from the dw2_map_expand_apply calls, remove a block handling
10836 it.
10837 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
10838 Remove it from the iterate_over_some_symtabs call.
10839 (partial_map_symtabs_matching_filename): Remove parameter full_path.
10840 Remove it from the partial_map_expand_apply calls, remove a block
10841 handling it. Drop gdb_realpath call and cleanups from the real_path
10842 handling.
10843 * source.c (openp): Drop the comment part about xfullpath. Replace
10844 xfullpath calls by gdb_realpath calls.
10845 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
10846 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
10847 from method map_symtabs_matching_filename and its comment.
10848 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
10849 gdb_realpath call.
10850 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
10851 remove it also from the function comment, remove a block handling it.
10852 Drop gdb_realpath call and cleanups from the real_path handling.
10853 (iterate_over_symtabs): Drop variable full_path and its use.
10854 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
10855 * utils.c (xfullpath): Remove.
10856 * utils.h (xfullpath): Remove.
10857
10858 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
10859
10860 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
10861 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
10862 (ALLDEPFILES): Add ppc64-tdep.c.
10863 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
10864 ppc64-tdep.o to gdb_target_obs.
10865 * ppc64-tdep.h: New file.
10866 * ppc64-tdep.c: New file.
10867 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
10868 ppc-linux-tdep.c to here.
10869 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
10870 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
10871 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
10872 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
10873 from ppc-linux-tdep.c to here.
10874 (ppc64_convert_from_func_ptr_addr): Rename from
10875 ppc64_linux_convert_from_func_ptr_addr to
10876 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
10877 here.
10878 * rs6000-tdep.c:
10879 (read_insn): Move from ppc-linux-tdep.c to here.
10880 (insns_match_pattern, insn_d_field, insn_ds_field): Move
10881 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
10882 * ppc-linux-tdep.c: Include ppc64-tdep.h.
10883 Removed above functions.
10884 (ppc_linux_init_abi): Adjust.
10885
10886 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
10887
10888 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
10889
10890 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
10891
10892 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
10893
10894 2013-02-01 Pedro Alves <palves@redhat.com>
10895
10896 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
10897 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
10898
10899 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10900
10901 * elfread.c (elf_symfile_read): Limit separate debug info additions to
10902 files with no separate debug info.
10903 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
10904 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
10905 only for files with no separate debug info.
10906
10907 2013-01-31 Tom Tromey <tromey@redhat.com>
10908
10909 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
10910 change type.
10911 (struct jit_program_space_data): Rename from jit_inferior_data.
10912 Update comments.
10913 (get_jit_program_space_data): Rename from get_jit_inferior_data.
10914 Change return type. Attach data to program space.
10915 (jit_program_space_data_cleanup): Rename from
10916 jit_inferior_data_cleanup; change argument type.
10917 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
10918 change type.
10919 (jit_register_code): Update.
10920 (jit_update_inferior_cache): Remove.
10921 (jit_breakpoint_deleted): Get jit data from the location's program
10922 space.
10923 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
10924 'ps_data', change type.
10925 (jit_inferior_init, jit_breakpoint_re_set_internal)
10926 (jit_event_handler): Update.
10927 (free_objfile_data): Get data from objfile's program space.
10928 (_initialize_jit): Update.
10929
10930 2013-01-31 Tom Tromey <tromey@redhat.com>
10931
10932 PR gdb/13987:
10933 * jit.c (struct jit_inferior_data) <cached_code_address,
10934 jit_breakpoint>: New fields.
10935 (jit_breakpoint_re_set_internal): Fix logging. Only create
10936 breakpoint if cached address has changed.
10937 (jit_update_inferior_cache, jit_breakpoint_deleted): New
10938 functions.
10939 (_initialize_jit): Register breakpoint deleted observer.
10940
10941 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10942
10943 * infrun.c (handle_syscall_event): Remove unused gdbarch.
10944 (save_infcall_suspend_state): Ifdef out unused inf.
10945 (restore_infcall_suspend_state): Ifdef out unused inf.
10946 * jit.c (jit_register_code): Remove unused i, b, inf_data.
10947 (jit_frame_sniffer): Remove unused inf_data.
10948
10949 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10950
10951 * c-exp.y (classify_inner_name): Remove unused type.
10952 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
10953 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
10954 need_escape.
10955 (c_get_string): Remove unused kind.
10956 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
10957
10958 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10959
10960 * charset.c (intermediate_encoding): Remove unused i.
10961 * completer.c (signal_completer): Remove unused i.
10962 * continuations.c (discard_my_continuations_1): Remove unused
10963 continuation_ptr.
10964 * corelow.c (core_close): Remove unuseD name.
10965 (get_core_siginfo): Remove unused pid.
10966 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
10967 i, cps.
10968 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
10969 (loclist_describe_location): Remove unused first.
10970 * event-top.c (command_line_handler): Remove unused got_eof.
10971 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
10972 (resize_section_table): Remove unused old_value.
10973 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
10974 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
10975 * i386-tdep.c (i386_process_record): Remove unused rex.
10976 * infcmd.c (get_return_value): Remove unused uiout.
10977 * jv-lang.c (type_from_class): Remove unused is_array.
10978 * jv-valprint.c (java_val_print): Remove unused i.
10979 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
10980 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
10981 * m2-typeprint.c (m2_print_type): Remove unused code.
10982 * macroexp.c (get_character_constant): Remove unused body_start.
10983 (macro_stringify): Remove unused result.
10984 * objc-lang.c (find_methods): Remove unused gdbarch.
10985 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
10986 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
10987 * stack.c (print_frame_args): Remove unused summary.
10988 * thread.c (thread_apply_command): Remove unused p.
10989 * valarith.c (value_x_unop): Remove unused mangle_ptr.
10990 * valops.c (search_struct_method): Remove unused skip.
10991 * valprint.c (generic_val_print): Remove unused byte_order.
10992 * varobj.c (varobj_update): Remove unused changed.
10993 * cli/cli-cmds.c (complete_command): Remove unused next_item.
10994 (alias_command): Remove unused c.
10995 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
10996 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
10997 format.
10998 (mi_cmd_data_write_memory): Remove unused word_format.
10999 (mi_cmd_data_write_memory_bytes): Remove unused r.
11000 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
11001 p_start, p_end.
11002 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
11003 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
11004 line_width.
11005
11006 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11007
11008 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
11009 * symtab.c (iterate_over_symtabs): Remove unused s.
11010 (find_pc_sect_symtab): Remove unused pspAce.
11011 (find_pc_sect_line): Remove unused alt_symtab.
11012 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
11013 (completion_list_add_name): Remove unused newsize.
11014
11015 2013-01-31 Tom Tromey <tromey@redhat.com>
11016
11017 PR c++/14998:
11018 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
11019 TYPE_CODE_FUNC.
11020
11021 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11022
11023 * target.c (target_read_string): Remove unused origlen.
11024
11025 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11026
11027 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
11028 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
11029 * ax-general.c (ax_print): Remove unused is_float.
11030 * blockframe.c (block_innermost_frame): Remove unused start, end.
11031 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
11032
11033 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11034
11035 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
11036 (svr4_read_so_list): Remove unused lmo.
11037 * solib-target.c (solib_target_relocate_section_addresses): Remove
11038 unused flags.
11039
11040 2013-01-30 Tom Tromey <tromey@redhat.com>
11041
11042 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
11043
11044 2013-01-30 Tom Tromey <tromey@redhat.com>
11045
11046 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
11047 * utils.c (gnu_debuglink_crc32): Remove.
11048 * utils.h (gnu_debuglink_crc32): Don't declare.
11049
11050 2013-01-30 Tom Tromey <tromey@redhat.com>
11051
11052 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
11053 (read_structure_type, read_enumeration_type): Remove cast.
11054
11055 2013-01-30 Tom Tromey <tromey@redhat.com>
11056
11057 * dwarf2read.c (read_namespace_type): Remove cast.
11058 (read_typedef): Likewise.
11059
11060 2013-01-29 Tom Tromey <tromey@redhat.com>
11061
11062 * dwarf2read.c (free_dwo_file): Remove assert.
11063
11064 2013-01-29 Tom Tromey <tromey@redhat.com>
11065
11066 * value.c (deprecated_set_value_modifiable): Remove.
11067 * value.h (deprecated_set_value_modifiable): Remove.
11068
11069 2013-01-28 Doug Evans <dje@google.com>
11070
11071 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
11072 to addresses from dwo files.
11073
11074 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
11075
11076 * valops.c (find_overload_match): Remove unused argument 'lax'.
11077 * value.h: Remove unused argument 'lax' from the declaration of
11078 find_overload_match.
11079 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
11080 to find_overload_match.
11081 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
11082 argument to find_overload_match.
11083
11084 2013-01-25 Tom Tromey <tromey@redhat.com>
11085
11086 * dwarf2read.c (processing_has_namespace_info): Remove.
11087 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
11088 (process_die, read_func_scope, dwarf2_start_symtab)
11089 (new_symbol_full): Update.
11090
11091 2013-01-25 Tom Tromey <tromey@redhat.com>
11092
11093 * cp-namespace.c (cp_set_block_scope): Remove.
11094 * cp-support.h (cp_set_block_scope): Remove.
11095 * dbxread.c: Include block.h.
11096 (cp_set_block_scope): New function.
11097 (process_one_symbol): Update.
11098 * dwarf2read.c (read_func_scope): Use block_set_scope.
11099
11100 2013-01-25 Pedro Alves <palves@redhat.com>
11101
11102 * remote.c (add_current_inferior_and_thread): Tweak comment.
11103
11104 2013-01-25 Tom Tromey <tromey@redhat.com>
11105
11106 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
11107 (cp_add_using_directive): Add 'copy_names' argument.
11108 * cp-support.h (cp_add_using_directive): Update.
11109 (struct using_direct) <import_src, import_dest, alias,
11110 declaration>: Now const.
11111 * dwarf2read.c (read_import_statement): Use obconcat.
11112 Don't copy names passed to cp_add_using_directive.
11113
11114 2013-01-25 Tom Tromey <tromey@redhat.com>
11115
11116 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
11117
11118 2013-01-25 Pedro Alves <palves@redhat.com>
11119
11120 * remote.c (stop_reply_extract_thread): New.
11121 (add_current_inferior_and_thread): New parameter 'wait_status'.
11122 Handle it.
11123 (remote_start_remote): Pass wait status to
11124 add_current_inferior_and_thread.
11125 (extended_remote_run): Update comment.
11126 (extended_remote_create_inferior_1): Pass wait status to
11127 add_current_inferior_and_thread.
11128
11129 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
11130 Ulrich Weigand <uweigand@de.ibm.com>
11131
11132 * valarith.c (value_vector_widen): New function for replicating a
11133 scalar into a vector.
11134 (value_binop): Use value_vector_widen to widen scalar to vector
11135 rather than casting, this better matches gcc C behaviour.
11136 * valops.c (value_casst): Update logic for casting between vector
11137 types, and for casting from scalar to vector, try to match gcc C
11138 behaviour.
11139 * value.h (value_vector_widen): Declare.
11140 * opencl-lang.c (opencl_value_cast): New opencl specific casting
11141 function, handle special case for casting scalar to vector.
11142 (opencl_relop): Use opencl_value_cast.
11143 (evaluate_subexp_opencl): Use opencl_value_cast instead of
11144 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
11145 in order to use opencl_value_cast.
11146
11147 2013-01-25 Yao Qi <yao@codesourcery.com>
11148
11149 * event-loop.c: Include "queue.h".
11150 (gdb_event_p): New typedef.
11151 (DECLARE_QUEUE_P): Use.
11152 (DEFINE_QUEUE_P): Use.
11153 (async_queue_event): Remove.
11154 (gdb_event_xfree): New.
11155 (initialize_event_loop): New.
11156 (process_event): Use QUEUE macros.
11157 (event_queue): Remove.
11158 (gdb_wait_for_event): Caller update.
11159 (check_async_event_handlers): Likewise.
11160 (poll_timers): Likewise.
11161 * event-loop.h (initialize_event_loop): Declare.
11162 * event-loop.c (gdb_event_xfree): New.
11163 * top.c (gdb_init): Call initialize_event_loop.
11164
11165 2013-01-25 Yao Qi <yao@codesourcery.com>
11166
11167 * event-loop.c (async_queue_event): Remove one parameter
11168 'position'. Remove code handling 'position' == TAIL.
11169 (gdb_wait_for_event): Caller update.
11170 (check_async_event_handlers): Caller update.
11171 (poll_timers): Caller update.
11172 * event-loop.h (enum queue_position): Remove.
11173
11174 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
11175
11176 * MAINTAINERS: Update my email.
11177
11178 2013-01-25 Yao Qi <yao@codesourcery.com>
11179
11180 * main.c (print_gdb_help): Remove "--epoch" from the help
11181 message.
11182
11183 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
11184
11185 * symtab.c (skip_prologue_using_sal): Consider a file
11186 change the same as an increased line number
11187
11188 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
11189
11190 * MAINTAINERS (Write After Approval): Add myself to the list.
11191
11192 2013-01-24 Tom Tromey <tromey@redhat.com>
11193
11194 * ada-lang.h (ada_decode_symbol): Make return type const.
11195 * ada-lang.c (ada_decode_symbol): Likewise.
11196
11197 2013-01-23 Doug Evans <dje@google.com>
11198
11199 * linespec.c (find_linespec_symbols): Make static.
11200
11201 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
11202
11203 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
11204 type on float conversion for complex type.
11205
11206 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
11207
11208 Add a new class gdb.Architecture which exposes GDB's
11209 internal representation of architecture via GDB Python API.
11210 * Makefile.in: Add entries corresponding to the new file
11211 python/py-arch.c.
11212 * NEWS (Python Scripting): Add entries for the new class
11213 gdb.Architecture and the new method gdb.Frame.architecture.
11214 * python/py-arch.c: Implement gdb.Architecture class.
11215 * python/py-frame.c (frapy_arch): Implement the method
11216 gdb.Frame.architecture().
11217 (frame_object_methods): Add 'architecture' to the method table.
11218 * python/python-internal.h: Add declarations of new utility
11219 functions.
11220 * python/python.c (_initialize_python): Initialize
11221 gdb.Architecture class.
11222
11223 2013-01-23 Doug Evans <dje@google.com>
11224
11225 Work around binutils/15021.
11226 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
11227 type_unit_group out of union s. All uses updated.
11228 (read_index_from_section): Watch for index version 8.
11229 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
11230 an imported symtab.
11231 (write_psymtabs_to_index): Increment version number to 8.
11232
11233 2013-01-22 Pedro Alves <palves@redhat.com>
11234
11235 * annotate.c (breakpoint_changed): Skip if breakpoint is not
11236 user-visible.
11237
11238 2013-01-22 Pedro Alves <palves@redhat.com>
11239
11240 * annotate.c (annotate_breakpoints_changed): Rename to ...
11241 (annotate_breakpoints_invalid): ... this. Make static.
11242 (breakpoint_changed): Adjust.
11243 (_initialize_annotate): Always install the observers. Install a
11244 "breakpoint_created" observer.
11245 * annotate.h (annotate_breakpoints_changed): Delete declaration.
11246 * breakpoint.c (set_breakpoint_condition)
11247 (breakpoint_set_commands, do_map_commands_command)
11248 (init_raw_breakpoint, clear_command, set_ignore_count)
11249 (enable_breakpoint_disp): No longer call
11250 annotate_breakpoints_changed.
11251
11252 2013-01-22 Pedro Alves <palves@redhat.com>
11253
11254 * annotate.c: Include "inferior.h".
11255 (frames_invalid_emitted)
11256 (breakpoints_invalid_emitted): New globals.
11257 (async_background_execution_p): New function.
11258 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
11259 emitting the annotation if it has already been emitted.
11260 (annotate_display_prompt): New function.
11261 * annotate.h (annotate_display_prompt): New declaration.
11262 * event-top.c: Include annotate.h.
11263 (display_gdb_prompt): Call annotate_display_prompt.
11264
11265 2013-01-22 Pedro Alves <palves@redhat.com>
11266
11267 * annotate.c (ignore_count_changed): Delete.
11268 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
11269 (annotate_ignore_count_change): Delete.
11270 (annotate_stopped): Don't emit a delayed breakpoints-changed
11271 annotation.
11272 * annotate.h (annotate_ignore_count_change): Delete.
11273 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
11274 annotate_ignore_count_change.
11275
11276 2013-01-22 Tom Tromey <tromey@redhat.com>
11277
11278 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
11279 require_rvalue for a register location.
11280
11281 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
11282
11283 * breakpoint.c (print_one_breakpoint_location): Add MI
11284 field 'thread-groups' when printing a breakpoint.
11285 (output_thread_groups): New function.
11286
11287 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
11288
11289 * python/lib/gdb/commands/explore.py
11290 (CompoundExplorer.explore_expr): Correct the name of a method
11291 being invoked.
11292 (ExploreTypeCommand.invoke): Add a missing 'return'.
11293
11294 2013-01-21 Tom Tromey <tromey@redhat.com>
11295
11296 * gdb_obstack.h (obconcat): Move declaration here, from...
11297 * symfile.h (obconcat): ... here.
11298 * gdb_obstack.c: New file.
11299 (obconcat): Move from...
11300 * symfile.c (obconcat): ... here.
11301 * Makefile.in (SFILES): Add gdb_obstack.c.
11302 (COMMON_OBS): Add gdb_obstack.o.
11303
11304 2013-01-21 Tom Tromey <tromey@redhat.com>
11305
11306 * symfile.h (obsavestring): Don't declare.
11307 * symfile.c (obsavestring): Remove.
11308 * ada-exp.y: Use obstack_copy0, not obsavestring.
11309 * ada-lang.c: Use obstack_copy0, not obsavestring.
11310 * coffread.c: Use obstack_copy0, not obsavestring.
11311 * cp-namespace.c: Use obstack_copy0, not obsavestring.
11312 * dbxread.c: Use obstack_copy0, not obsavestring.
11313 * dwarf2read.c: Use obstack_copy0, not obsavestring.
11314 * jit.c: Use obstack_copy0, not obsavestring.
11315 * mdebugread.c: Use obstack_copy0, not obsavestring.
11316 * psymtab.c: Use obstack_copy0, not obsavestring.
11317 * stabsread.c: Use obstack_copy0, not obsavestring.
11318 * xcoffread.c: Use obstack_copy0, not obsavestring.
11319
11320 2013-01-21 Tom Tromey <tromey@redhat.com>
11321
11322 * dwarf2read.c (fixup_go_packaging): Save package name
11323 on objfile obstack.
11324 * gdbtypes.c (init_type): Don't copy name.
11325
11326 2013-01-21 Tom Tromey <tromey@redhat.com>
11327
11328 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
11329 const.
11330 (struct attribute) <u.str>: Now const.
11331 (struct fnfieldlist) <name>: Now const.
11332 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
11333 (partial_die_parent_scope): Make return type const.
11334 (partial_die_full_name, add_partial_symbol): Update.
11335 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
11336 'name' const.
11337 (find_file_and_directory): Make 'name' and 'comp_dir' const.
11338 (read_file_scope, read_func_scope, dwarf2_add_field)
11339 (dwarf2_add_member_fn, read_structure_type)
11340 (process_enumeration_scope, read_array_type, read_module_type)
11341 (read_base_type, read_subrange_type): Update.
11342 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
11343 (new_symbol_full, guess_full_die_structure_name): Update.
11344 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
11345 (dwarf2_name): Return const type.
11346 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
11347 const.
11348
11349 2013-01-21 Tom Tromey <tromey@redhat.com>
11350
11351 * gdbtypes.c (init_type): Make 'name' const.
11352 * gdbtypes.h (init_type): Update.
11353
11354 2013-01-21 Tom Tromey <tromey@redhat.com>
11355
11356 * buildsym.c (patch_subfile_names): Use set_last_source_file.
11357 (start_symtab): Make 'name' and 'dirname' const. Use
11358 set_last_source_file.
11359 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
11360 (last_source_file): Define. Now static.
11361 (set_last_source_file, get_last_source_file): New functions.
11362 * buildsym.h (last_source_file): Don't declare.
11363 (start_symtab): Update.
11364 (set_last_source_file, get_last_source_file): Declare.
11365 * coffread.c (complete_symtab): Use set_last_source_file.
11366 (coff_end_symtab): Likewise.
11367 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
11368 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
11369 set_last_source_file.
11370 (process_one_symbol): Use get_last_source_file.
11371 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
11372 (psymtab_to_symtab_1): Use get_last_source_file.
11373 * xcoffread.c (process_linenos): Use get_last_source_file.
11374 (complete_symtab): Use set_last_source_file.
11375 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
11376 (scan_xcoff_symtab): Use set_last_source_file.
11377
11378 2013-01-21 Tom Tromey <tromey@redhat.com>
11379
11380 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
11381 (symbol_set_names): Remove casts. Handle field const-ness.
11382
11383 2013-01-21 Tom Tromey <tromey@redhat.com>
11384
11385 * dwarf2read.c (new_symbol_full): Remove cast.
11386 * symtab.c (symbol_set_demangled_name): Make 'name' const.
11387 * symtab.h (symbol_set_demangled_name): Update.
11388
11389 2013-01-21 Tom Tromey <tromey@redhat.com>
11390
11391 * main.c (captured_main): Call bfd_init.
11392
11393 2013-01-21 Tom Tromey <tromey@redhat.com>
11394
11395 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
11396 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
11397 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
11398 * NEWS: Update.
11399
11400 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
11401
11402 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
11403
11404 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
11405
11406 Fix gdb.fortran/common-block.exp crash in PIE mode.
11407 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
11408 LOC_COMMON_BLOCK.
11409 * f-valprint.c (info_common_command_for_block): Expect
11410 LOC_COMMON_BLOCK in gdb_assert.
11411 * symtab.h (struct general_symbol_info): Update comment for the
11412 common_block member.
11413 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
11414 (enum address_class): New member LOC_COMMON_BLOCK.
11415
11416 2013-01-18 David Blaikie <dblaikie@gmail.com>
11417
11418 * MAINTAINERS (Write After Approval): Add "David Blaikie".
11419
11420 2013-01-18 Tom Tromey <tromey@redhat.com>
11421
11422 PR c++/14999:
11423 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
11424 Call require_rvalue.
11425
11426 2013-01-18 Yao Qi <yao@codesourcery.com>
11427
11428 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
11429 (dbx_read_symtab): New declaration.
11430 (dbx_psymtab_to_symtab): Delete.
11431 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
11432 Rename parameter PST to SELF. Exchanged two parameters.
11433 (start_psymtab): Caller update.
11434 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
11435 (dwarf2_read_symtab): New declaration.
11436 (dwarf2_psymtab_to_symtab): Delete.
11437 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
11438 Rename parameter PST to SELF. Exchanged two parameters.
11439 (create_partial_symtab): Caller update.
11440 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
11441 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
11442 Rename parameter PST to SELF. Exchanged two parameters.
11443 (parse_partial_symbols, new_psymtab): Caller update.
11444 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
11445 two parameters.
11446 * psymtab.c (psymtab_to_symtab): Caller update.
11447 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
11448 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
11449 Rename parameter PST to SELF. Exchanged two parameters.
11450 (xcoff_start_psymtab): Caller update.
11451
11452 2013-01-18 Yao Qi <yao@codesourcery.com>
11453
11454 * infrun.c (proceed): Rename local variable 'oneproc' to
11455 'force_step'.
11456
11457 2013-01-17 Doug Evans <dje@google.com>
11458
11459 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
11460 (dw2_build_type_unit_groups): Delete. All uses updated.
11461
11462 * symtab.h (struct symbol_search): Add comment.
11463
11464 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
11465
11466 * symtab.c (compare_filenames_for_search): New comment for
11467 HAS_DRIVE_SPEC.
11468
11469 2013-01-17 Tom Tromey <tromey@redhat.com>
11470
11471 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
11472
11473 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
11474
11475 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
11476 initialize it by existing make_cleanup. Call new do_cleanups.
11477
11478 2013-01-17 Tom Tromey <tromey@redhat.com>
11479
11480 * cp-abi.c (cp_abi_completer): New function.
11481 (_initialize_cp_abi): Set completer for "set cp-abi".
11482
11483 2013-01-17 Tom Tromey <tromey@redhat.com>
11484
11485 * mem-break.c: Remove obsolete comment.
11486 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
11487
11488 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
11489
11490 * jit.c (jit_reader_load_command): Interpret the jit reader name
11491 as an absolute path if it begins with a forward slash.
11492
11493 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
11494
11495 PR gdb/14550
11496
11497 * jit.c (finalize_symtab): Ensure that only the global block has a
11498 NULL superblock.
11499
11500 2013-01-17 Pedro Alves <palves@redhat.com>
11501
11502 * acinclude.m4: Include ../config/plugins.m4,
11503 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
11504 * Makefile.in (aclocal_m4_deps): Update.
11505 * aclocal.m4: Renegerate.
11506
11507 2013-01-16 Doug Evans <dje@google.com>
11508
11509 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
11510
11511 2013-01-16 Pedro Alves <palves@redhat.com>
11512 Tom Tromey <tromey@redhat.com>
11513
11514 PR cli/7221:
11515 * NEWS: Add "catch signal".
11516 * breakpoint.c (base_breakpoint_ops): No longer static.
11517 (bpstat_explains_signal): New function.
11518 (init_catchpoint): No longer static.
11519 (base_breakpoint_explains_signal): New function.
11520 (base_breakpoint_ops): Initialize new field.
11521 * breakpoint.h (enum bpstat_signal_value): New.
11522 (struct breakpoint_ops) <explains_signal>: New field.
11523 (bpstat_explains_signal): Remove macro, declare as function.
11524 (base_breakpoint_ops, init_catchpoint): Declare.
11525 * break-catch-sig.c: New file.
11526 * inferior.h (signal_catch_update): Declare.
11527 * infrun.c (signal_catch): New global.
11528 (handle_syscall_event): Update for change to
11529 bpstat_explains_signal.
11530 (handle_inferior_event): Likewise. Always handle random signals
11531 via bpstats.
11532 (signal_cache_update): Check signal_catch.
11533 (signal_catch_update): New function.
11534 (_initialize_infrun): Initialize signal_catch.
11535 * Makefile.in (SFILES): Add break-catch-sig.c.
11536 (COMMON_OBS): Add break-catch-sig.o.
11537
11538 2013-01-16 Tom Tromey <tromey@redhat.com>
11539
11540 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
11541 (print_one_catch_solib, print_one_catch_syscall)
11542 (print_one_catch_exec, print_one_exception_catchpoint): Emit
11543 "catch-type".
11544
11545 2013-01-16 Yao Qi <yao@codesourcery.com>
11546
11547 * printcmd.c (current_display_number): Make it static.
11548
11549 2013-01-16 Yao Qi <yao@codesourcery.com>
11550
11551 * infcmd.c (step_once): Don't check '!single_inst' as it was
11552 checked before.
11553
11554 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
11555
11556 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
11557
11558 2013-01-14 Tom Tromey <tromey@redhat.com>
11559
11560 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
11561 set command.
11562 * command.h (add_setshow_string_noescape_cmd): Update.
11563 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
11564 (complete_set_gnutarget): New function.
11565 (_initialize_core): Set the "set gnutarget" completer.
11566
11567 2013-01-14 Tom Tromey <tromey@redhat.com>
11568
11569 PR symtab/14442:
11570 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
11571 (c_type_print_modifier): Likewise.
11572 * dwarf2read.c (read_tag_restrict_type): New function.
11573 (read_type_die_1): Handle DW_TAG_restrict_type.
11574 * gdbtypes.c (make_restrict_type): New function.
11575 (recursive_dump_type): Handle TYPE_RESTRICT.
11576 * gdbtypes.h (enum type_flag_values): Renumber.
11577 (enum type_instance_flag_value): Add
11578 TYPE_INSTANCE_FLAG_RESTRICT.
11579 (TYPE_RESTRICT): New macro.
11580 (make_restrict_type): Declare.
11581
11582 2013-01-14 Tom Tromey <tromey@redhat.com>
11583
11584 PR symtab/14931:
11585 * psymtab.c (struct psymtab_state): New.
11586 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
11587 functions.
11588 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
11589 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
11590
11591 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
11592 Pedro Alves <palves@redhat.com>
11593
11594 PR remote/14786
11595
11596 * remote.c (remote_threads_info): Make a copy of the reply from
11597 qfThreadInfo and use that instead of rs->buf.
11598
11599 2013-01-14 Yao Qi <yao@codesourcery.com>
11600
11601 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
11602 (dbx_psymtab_to_symtab): Likewise.
11603 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
11604 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
11605 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
11606
11607 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
11608
11609 * parse.c (parse_exp_in_context): New variable inner_chain. Call
11610 make_cleanup_restore_current_language. Call set_language. Move
11611 OLD_CHAIN and INNER_CHAIN cleanups.
11612 * utils.c (do_restore_current_language)
11613 (make_cleanup_restore_current_language): New functions.
11614 * utils.h (make_cleanup_restore_current_language): New declaration.
11615
11616 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
11617
11618 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
11619 non-existing files.
11620
11621 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
11622 non-existing files if FILENAME is already absolute.
11623
11624 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11625
11626 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
11627 fputs_filtered. Append trailing newline.
11628
11629 2013-01-11 Yao Qi <yao@codesourcery.com>
11630 Stan Shebs <stan@codesourcery.com>
11631
11632 * psymtab.c (init_psymbol_list): Clarify the comment.
11633
11634 2013-01-11 Yao Qi <yao@codesourcery.com>
11635
11636 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
11637 (update_dprintf_command_list): Assert that 'printf_line' is
11638 non-null. Remove condition check.
11639
11640 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11641
11642 Code cleanup.
11643 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
11644 type const char *.
11645 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
11646 const char *.
11647 * tui/tui-source.h (tui_source_is_displayed): Likewise.
11648
11649 2013-01-09 Anthony Green <green@moxielogic.com>
11650
11651 * cp-abi.c (cplus_print_vtable): Don't return value from void
11652 function.
11653 * ada-lang.c (re_set_catch_assert): Ditto.
11654
11655 2013-01-09 Doug Evans <dje@google.com>
11656
11657 * symfile.h (quick_symbol_functions): Delete member
11658 pre_expand_symtabs_matching. All uses removed.
11659 * dwarf2read.c (dw2_lookup_symbol): Implement.
11660 (dw2_do_expand_symtabs_matching): Delete.
11661 (dw2_pre_expand_symtabs_matching): Delete.
11662 (struct dw2_symtab_iterator): New type.
11663 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
11664 (dw2_expand_symtabs_for_function): Rewrite.
11665 (dwarf2_gdb_index_functions): Update.
11666 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
11667 (psym_functions): Update.
11668
11669 2013-01-09 Tom Tromey <tromey@redhat.com>
11670
11671 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
11672 * configure: Rebuild.
11673 * configure.ac: Add somread.o to the build if BFD has SOM
11674 support.
11675 * somread.c: Include som/aout.h, not syms.h.
11676 (som_symtab_read): Use som_external_symbol_dictionary_record.
11677 Unpack records manually.
11678 (_initialize_somread): Declare.
11679
11680 2012-01-08 Mike Frysinger <vapier@gentoo.org>
11681
11682 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
11683 Cast return_address to 64bits.
11684
11685 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
11686
11687 * printcmd.c: Remove define of function output_command.
11688 * tracepoint.c: Remove extern of function output_command.
11689 * valprint.h: (output_command): New extern.
11690
11691 2013-01-07 Tom Tromey <tromey@redhat.com>
11692
11693 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
11694 Remove.
11695 (objc_language_defn): Use c_printchar, c_printstr,
11696 c_emit_char.
11697
11698 2013-01-07 Tom Tromey <tromey@redhat.com>
11699
11700 PR cli/7719:
11701 * NEWS: Update.
11702 * ada-valprint.c (printstr, print_field_values): Remove
11703 "inspect_it" code.
11704 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
11705 code.
11706 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
11707 code.
11708 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
11709 * main.c (captured_main): Remove "epoch" argument.
11710 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
11711 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
11712 * p-valprint.c (pascal_object_print_value_fields): Remove
11713 "inspect_it" code.
11714 * printcmd.c (print_command_1): Remove 'inspect' argument.
11715 (print_command, call_command): Update.
11716 (inspect_command): Remove.
11717 (_initialize_printcmd): Make "inspect" an alias for "print".
11718 * top.c (epoch_interface): Remove.
11719 * top.h (epoch_interface): Remove.
11720 * valprint.c (user_print_options): Update.
11721 (print_converted_chars_to_obstack): Remove "inspect_it" code.
11722 * valprint.h (struct value_print_options) <inspect_it>: Remove
11723 field.
11724
11725 2013-01-04 Tom Tromey <tromey@redhat.com>
11726
11727 * valprint.h (read_string): Add 'extern'.
11728
11729 2013-01-07 Joel Brobecker <brobecker@adacore.com>
11730
11731 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
11732 used to decide whether to define darwin_read_dyld_info or not.
11733
11734 2013-01-03 Pierre Muller <muller@sourceware.org>
11735
11736 * main.c (relocate_gdb_directory): Avoid calling stat function
11737 if DIR is empty.
11738
11739 2013-01-03 Yao Qi <yao@codesourcery.com>
11740
11741 * psymtab.c (fixup_psymbol_section): Update declaration.
11742 (fixup_psymbol_section): Remove code returning value.
11743
11744 2013-01-03 Yao Qi <yao@codesourcery.com>
11745
11746 * symtab.h: Remove some out of date comments.
11747 (enum exception_event_kind): Move it ...
11748 * breakpoint.c: ... here.
11749
11750 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
11751
11752 PR gdb/14405
11753 * darwin-nat.c (darwin_read_dyld_info): Only build if
11754 TASK_DYLD_INFO_COUNT is defined.
11755 (darwin_xfer_partial): Call darwin_read_dyld_info only if
11756 TASK_DYLD_INFO_COUNT is defined.
11757
11758 2013-01-02 Tom Tromey <tromey@redhat.com>
11759
11760 * symfile.h (struct ecoff_debug_hack): Remove.
11761 * objfiles.c: Don't include mdebugread.h.
11762
11763 2013-01-02 Tom Tromey <tromey@redhat.com>
11764
11765 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
11766 * configure.ac: Check for Mach-O support in BFD. Update
11767 CONFIG_OBS.
11768 * configure: Rebuild.
11769
11770 2013-01-02 Tom Tromey <tromey@redhat.com>
11771
11772 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
11773 * configure.ac: Use GDB_AC_CHECK_BFD.
11774 * configure: Rebuild.
11775
11776 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
11777
11778 * MAINTAINERS: Update my email.
11779
11780 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11781
11782 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
11783
11784 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11785
11786 * rs6000-nat.c (bss_data_overlap): New function.
11787 (vmap_symtab): Use it to adjust the .bss section's offset.
11788
11789 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11790
11791 Update year range in copyright notice of all files.
11792
11793 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
11794
11795 * top.c (print_gdb_version): Update copyright year.
11796
11797 For older changes see ChangeLog-2012.
11798 \f
11799 Local Variables:
11800 mode: change-log
11801 left-margin: 8
11802 fill-column: 74
11803 version-control: never
11804 coding: utf-8
11805 End:
This page took 0.280888 seconds and 4 git commands to generate.